Homework 2

Author

Paul Trusela

Task 1

We are going to return to the table of the top 100 wrestlers: https://www.cagematch.net/?id=2&view=statistics. Specifically, you are going to get the ratings/comments tables for each wrestler.

import requests
from bs4 import BeautifulSoup
from urllib.parse import urlparse, parse_qs, urlencode


base_url = "https://www.cagematch.net/"

url = "https://www.cagematch.net/?id=2&view=statistics"

wrestler_rating_comments = []

response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')

print(soup.prettify())

# Extracting the wrestler links
gimmick_links = soup.find_all('a', href=True)
wrestler_urls = [base_url + link['href'].replace("&", "&") for link in gimmick_links if 'gimmick=' in link['href']]

# Debugging: Print all extracted wrestler URLs to ensure we are collecting them correctly
print("Wrestler URLs extracted:")
for url in wrestler_urls:
    print(url)

# Looping through each wrestler's URL
for wrestler_url in wrestler_urls:
    parsed_url = urlparse(wrestler_url)
    query_params = parse_qs(parsed_url.query)

    # Remove the 'gimmick' query parameter
    query_params.pop('gimmick', None)

    # Construct the new URL with page=99 to get the correct wrestler page
    new_query = urlencode(query_params, doseq=True)
    wrestler_page_url = f"{parsed_url.scheme}://{parsed_url.netloc}{parsed_url.path}?{new_query}&page=99"

    # Send the request to the wrestler's page
    wrestler_response = requests.get(wrestler_page_url)
    wrestler_soup = BeautifulSoup(wrestler_response.text, 'html.parser')

    # Extract rating and comments from the wrestler's page
    rating_comments_section = wrestler_soup.find_all('div', class_='Comment')

    # Debugging: Print the wrestler's page HTML to inspect the structure (optional)
    # print(f"HTML for {wrestler_url}:")
    # print(wrestler_soup.prettify())  # Uncomment this if needed for debugging

    for comment_div in rating_comments_section:
        # Extracting the comment text
        comment_text = comment_div.get_text(strip=True)

        # Attempt to extract the rating if it's available within the same div
        # Assuming the rating is in a specific format (e.g., inside a span with a specific class)
        rating_span = comment_div.find('span', class_='Rating')  # Modify the class if necessary
        if rating_span:
            rating = rating_span.get_text(strip=True)
        else:
            rating = 'No rating found'

        # Append the comment and rating to the list
        wrestler_rating_comments.append({
            'wrestler_url': wrestler_url,
            'comment': comment_text,
            'rating': rating
        })

# Print out all the extracted ratings and comments
for entry in wrestler_rating_comments:
    print(f"Wrestler URL: {entry['wrestler_url']}")
    print(f"Comment: {entry['comment']}")
    print(f"Rating: {entry['rating']}")
    print("-" * 40)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <link href="/2k16/css/2k16.css?20240315" rel="stylesheet" type="text/css"/>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="require-trusted-types-for 'script'; default-src 'self'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'unsafe-inline'; base-uri 'self'; form-action 'self'; object-src 'none'" http-equiv="Content-Security-Policy-Report-Only"/>
  <meta content="width=1120" name="viewport"/>
  <meta content="Internet Wrestling Database" name="description"/>
  <meta content="wrestling,wwe,raw,smackdown,wrestlemania,aew,dynamite,impact,tna,wcw,ecw,roh,wwf,njpw,ajpw,puroresu,wrestling database,wrestling news,wrestler,superstar" name="keywords"/>
  <meta content="Philip Kreikenbohm" name="author"/>
  <title>
   Statistics « Wrestlers Database « CAGEMATCH - The Internet Wrestling Database
  </title>
 </head>
 <body class="TemplateBody">
  <div class="LayoutUserAccount LayoutWidth">
   <a href="https://www.cagematch.net/de/">
    <img alt="Deutsch" class="LayoutLanguage" src="/2k16/img/german.png" title="Deutsch"/>
   </a>
   <a href="https://www.cagematch.net/en/">
    <img alt="English" class="LayoutLanguage" src="/2k16/img/english.png" title="English"/>
   </a>
   <div class="UserHeader">
    Not logged in or registered. |
    <a href="?id=872">
     Log In
    </a>
    |
    <a href="?id=871">
     Register
    </a>
    |
    <a href="?id=879">
     Password lost?
    </a>
   </div>
  </div>
  <div class="LayoutHeader">
   <div class="LayoutMainHeader LayoutWidth">
    <div class="LayoutLogo">
     <a href="?id=">
      <img alt="CAGEMATCH Logo" class="HeaderLogoLeft" src="/2k16/img/header/header_2022.webp" style="width:610px;height:100px;" title="CAGEMATCH - The Internet Wrestling Database"/>
     </a>
    </div>
    <div class="LayoutSearch">
     <form action="" id="Search" method="get">
      <input name="id" type="hidden" value="666"/>
      <input class="HeaderSearchInput" name="search" onblur="changeStateHeaderSearchBar(this,'en')" onclick="changeStateHeaderSearchBar(this,'en')" type="text" value="Search the site..."/>
      <input class="HeaderSearchButton" type="submit" value="Search"/>
     </form>
    </div>
    <div class="LayoutTopMenu">
     <div class="TopMenu">
      <ul>
       <li>
        <a href="?id=401">
         About Us
        </a>
       </li>
       <li>
        <a href="?id=900">
         Contact
        </a>
       </li>
       <li>
        <a href="?id=777">
         CAGEMATCH Team
        </a>
       </li>
       <li>
        <a href="https://www.youtube.com/user/CMPodcasts">
         YouTube
        </a>
       </li>
       <li>
        <a href="https://www.patreon.com/bePatron?u=328386">
         Patreon
        </a>
       </li>
       <ul>
       </ul>
      </ul>
     </div>
    </div>
   </div>
   <div class="LayoutMainMenu LayoutWidth">
    <div class="HeaderMenu">
     <ul>
      <li class="HeaderSubMenu">
       <a href="#">
        Wrestlers
       </a>
       <ul>
        <li>
         <a href="?id=2">
          Overview
         </a>
        </li>
        <li>
         <a href="?id=2&amp;view=workers">
          Wrestlers
         </a>
        </li>
        <li>
         <a href="?id=2&amp;view=gimmicks">
          Gimmicks
         </a>
        </li>
        <li>
         <a href="?id=2&amp;view=statistics">
          Top Lists
         </a>
        </li>
        <li>
         <a href="?id=2&amp;view=comments">
          Comments
         </a>
        </li>
        <li>
         <a href="?id=2&amp;view=changes">
          Changes
         </a>
        </li>
       </ul>
      </li>
      <li class="HeaderSubMenu">
       <a href="#">
        Events
       </a>
       <ul>
        <li>
         <a href="?id=1">
          Overview
         </a>
        </li>
        <li>
         <a href="?id=1&amp;view=results">
          Results
         </a>
        </li>
        <li>
         <a href="?id=1&amp;view=tvppv">
          TV + PPV
         </a>
        </li>
        <li>
         <a href="?id=1&amp;view=cards">
          Upcoming Shows
         </a>
        </li>
        <li>
         <a href="?id=1&amp;view=statistics">
          Top Lists
         </a>
        </li>
        <li>
         <a href="?id=1&amp;view=search">
          Advanced Search
         </a>
        </li>
        <li>
         <a href="?id=1&amp;view=comments">
          Comments
         </a>
        </li>
        <li>
         <a href="?id=1&amp;view=changes">
          Changes
         </a>
        </li>
       </ul>
      </li>
      <li class="HeaderSubMenu">
       <a href="#">
        Matches
       </a>
       <ul>
        <li>
         <a href="?id=111">
          Overview
         </a>
        </li>
        <li>
         <a href="?id=111&amp;view=list">
          Matchguide
         </a>
        </li>
        <li>
         <a href="?id=111&amp;view=statistics">
          Top Lists
         </a>
        </li>
        <li>
         <a href="?id=111&amp;view=search">
          Advanced Search
         </a>
        </li>
        <li>
         <a href="?id=111&amp;view=matchstatistics">
          Statistics
         </a>
        </li>
        <li>
         <a href="?id=111&amp;view=comments">
          Comments
         </a>
        </li>
        <li>
         <a href="?id=111&amp;view=changes">
          Changes
         </a>
        </li>
       </ul>
      </li>
      <li class="HeaderSubMenu">
       <a href="#">
        Promotions
       </a>
       <ul>
        <li>
         <a href="?id=8">
          Overview
         </a>
        </li>
        <li>
         <a href="?id=8&amp;view=promotions">
          Promotions
         </a>
        </li>
        <li>
         <a href="?id=8&amp;view=names">
          Promotion Names
         </a>
        </li>
        <li>
         <a href="?id=8&amp;view=statistics">
          Top Lists
         </a>
        </li>
        <li>
         <a href="?id=8&amp;view=comments">
          Comments
         </a>
        </li>
        <li>
         <a href="?id=8&amp;view=changes">
          Changes
         </a>
        </li>
       </ul>
      </li>
      <li class="HeaderSubMenu">
       <a href="#">
        Titles
       </a>
       <ul>
        <li>
         <a href="?id=5">
          Overview
         </a>
        </li>
        <li>
         <a href="?id=5&amp;view=names">
          Title Names
         </a>
        </li>
        <li>
         <a href="?id=5&amp;view=titlechanges">
          Title Changes
         </a>
        </li>
        <li>
         <a href="?id=5&amp;view=statistics">
          Top Lists
         </a>
        </li>
        <li>
         <a href="?id=5&amp;view=comments">
          Comments
         </a>
        </li>
        <li>
         <a href="?id=5&amp;view=changes">
          Changes
         </a>
        </li>
       </ul>
      </li>
      <li class="HeaderSubMenu">
       <a href="#">
        Databases
       </a>
       <ul>
        <li>
         <a href="?id=28">
          Tag Teams
         </a>
        </li>
        <li>
         <a href="?id=29">
          Stables
         </a>
        </li>
        <li>
         <a href="?id=93">
          Promos
         </a>
        </li>
        <li>
         <a href="?id=87">
          Feuds
         </a>
        </li>
        <li>
         <a href="?id=91">
          Rivalries
         </a>
        </li>
        <li>
         <a href="?id=26">
          Tournaments
         </a>
        </li>
        <li>
         <a href="?id=97">
          Awards
         </a>
        </li>
        <li>
         <a href="?id=65">
          Books
         </a>
        </li>
        <li>
         <a href="?id=223">
          DVDs
         </a>
        </li>
        <li>
         <a href="?id=77">
          Wrestling Games
         </a>
        </li>
        <li>
         <a href="?id=89">
          Movies
         </a>
        </li>
        <li>
         <a href="?id=66">
          Themes
         </a>
        </li>
       </ul>
      </li>
      <li class="HeaderSubMenu">
       <a href="#">
        Other
       </a>
       <ul>
        <li>
         <a href="?id=13">
          SOTW
         </a>
        </li>
        <li>
         <a href="?id=555">
          Articles
         </a>
        </li>
        <li>
         <a href="?id=128">
          Podcasts
         </a>
        </li>
        <li>
         <a href="?id=4">
          Documentaries
         </a>
        </li>
        <li>
         <a href="?id=71">
          Newsboard
         </a>
        </li>
        <li>
         <a href="?id=790">
          Changes Tracker
         </a>
        </li>
        <li>
         <a href="?view=roulette">
          Random Item
         </a>
        </li>
        <li>
         <a href="?id=68&amp;page=2">
          Ratings Center
         </a>
        </li>
        <li>
         <a href="?id=403">
          Ratings System Rules
         </a>
        </li>
        <li>
         <a href="?id=406">
          Help
         </a>
        </li>
       </ul>
      </li>
     </ul>
    </div>
   </div>
  </div>
  <div class="LayoutWidth">
   <div class="LayoutOptionsAndBody">
    <div class="LayoutOptions">
     <div class="LayoutNavigationTree">
      <div class="NavigationTree BoxBgColor">
       <span class="NavigationTreeBranch">
        <a href="?id=">
         CAGEMATCH
        </a>
       </span>
       »
       <span class="NavigationTreeBranch">
        <a href="?id=2">
         Wrestlers Database
        </a>
       </span>
       »
       <span class="NavigationTreeBranch">
        Statistics
       </span>
      </div>
     </div>
     <div class="LayoutPageOptions">
      <div>
      </div>
     </div>
    </div>
    <div class="LayoutBodyHeader">
     <h1 class="TextHeader">
      Top Lists
     </h1>
     <h2 class="TextSubHeader">
      Wrestlers Database
     </h2>
     <ul class="ContentNavigator">
      <li class="ContentNavigatorItem">
       <a href="?id=2&amp;view=overview">
        Overview
       </a>
      </li>
      <li class="ContentNavigatorItem">
       <a href="?id=2&amp;view=workers">
        Wrestlers
       </a>
      </li>
      <li class="ContentNavigatorItem">
       <a href="?id=2&amp;view=gimmicks">
        Gimmicks
       </a>
      </li>
      <li class="ContentNavigatorItem ContentNavigatorPageActive">
       <a href="?id=2&amp;view=statistics">
        Top Lists
       </a>
      </li>
      <li class="ContentNavigatorItem">
       <a href="?id=2&amp;view=comments">
        Comments
       </a>
      </li>
      <li class="ContentNavigatorItem">
       <a href="?id=2&amp;view=changes">
        Changes
       </a>
      </li>
     </ul>
    </div>
    <div class="LayoutBody">
     <div class="LayoutContent">
      <div class="Form">
       <div class="TableHeaderOn TableParametersOn">
        <form action="" method="get">
         <input name="id" type="hidden" value="2"/>
         <input name="view" type="hidden" value="statistics"/>
         <div class="FormTable">
          <div class="FormRow">
           <div class="FormElementTitle">
            Category:
           </div>
           <div class="FormElement">
            <select class="FormSelect" name="page">
             <optgroup label="Top Lists">
              <option class="FormSO" selected="" value="1">
               Top 100 with at least 100 votes
              </option>
              <option class="FormSO" value="23">
               Top 250 with at least 50 votes
              </option>
              <option class="FormSO" value="4">
               Top 500 with at least 25 votes
              </option>
              <option class="FormSO" value="3">
               Top 100 by votes
              </option>
              <option class="FormSO" value="2">
               Flop 50
              </option>
             </optgroup>
             <optgroup label="Extended Top Lists">
              <option class="FormSO" value="22">
               Top 1000
              </option>
              <option class="FormSO" value="18">
               Top 100 - active workers
              </option>
              <option class="FormSO" value="19">
               Top 100 - inactive workers
              </option>
              <option class="FormSO" value="20">
               Top 100 - male workers
              </option>
              <option class="FormSO" value="21">
               Top 100 - female workers
              </option>
              <option class="FormSO" value="5">
               Top 100 &gt;= 130 kg / 286 lbs
              </option>
              <option class="FormSO" value="6">
               Top 100 100-129 kg / 220-285 lbs
              </option>
              <option class="FormSO" value="7">
               Top 100 85-99 kg / 187-219 lbs
              </option>
              <option class="FormSO" value="8">
               Top 100 70-84 kg / 154-186 lbs
              </option>
              <option class="FormSO" value="9">
               Top 100 55-69 kg / 121-153 lbs
              </option>
              <option class="FormSO" value="17">
               Top 100 &lt; 55 kg / 120 lbs
              </option>
              <option class="FormSO" value="10">
               Top 100 &gt;= 200 cm / 6'7"
              </option>
              <option class="FormSO" value="11">
               Top 100 190-199 cm / 6'3"-6'6"
              </option>
              <option class="FormSO" value="12">
               Top 100 180-189 cm / 5'11"-6'2"
              </option>
              <option class="FormSO" value="13">
               Top 100 170-179 cm / 5'7"-5'10"
              </option>
              <option class="FormSO" value="14">
               Top 100 160-169 cm / 5'3"-5'6"
              </option>
              <option class="FormSO" value="15">
               Top 100 150-159 cm / 4'11"-5'2"
              </option>
              <option class="FormSO" value="16">
               Top 100 &lt; 150 cm / 4'10"
              </option>
             </optgroup>
            </select>
           </div>
          </div>
         </div>
         <input class="FormSubmitButton" type="submit" value="Submit"/>
         <input class="FormResetButton" type="reset" value="Reset"/>
        </form>
       </div>
      </div>
      <div class="Table">
       <div class="TableContents">
        <table class="TBase TableBorderColor">
         <tr class="THeaderRow">
          <td class="THeaderCol AlignCenter" style="width: 30px">
           #
          </td>
          <td class="THeaderCol TColSeparator">
           Gimmick
          </td>
          <td class="THeaderCol TColSeparator">
           Birthplace
          </td>
          <td class="THeaderCol TColSeparator">
           Height
          </td>
          <td class="THeaderCol TColSeparator">
           Weight
          </td>
          <td class="THeaderCol TColSeparator">
           Promotion
          </td>
          <td class="THeaderCol TColSeparator AlignRight" style="width:62px;">
           Rating
          </td>
          <td class="THeaderCol TColSeparator AlignRight" style="width:62px;">
           Votes
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           1
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=360&amp;gimmick=Kenta+Kobashi">
            Kenta Kobashi
           </a>
          </td>
          <td class="TCol TColSeparator">
           Fukuchiyama, Kyoto, Japan
          </td>
          <td class="TCol TColSeparator">
           186
          </td>
          <td class="TCol TColSeparator">
           115
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.77
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           809
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           2
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=541&amp;gimmick=Mitsuharu+Misawa">
            Mitsuharu Misawa
           </a>
          </td>
          <td class="TCol TColSeparator">
           Yubari, Hokkaido, Japan
          </td>
          <td class="TCol TColSeparator">
           185
          </td>
          <td class="TCol TColSeparator">
           110
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.76
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           684
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           3
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=10402&amp;gimmick=Mayu+Iwatani">
            Mayu Iwatani
           </a>
          </td>
          <td class="TCol TColSeparator">
           Mine, Yamaguchi, Japan
          </td>
          <td class="TCol TColSeparator">
           165
          </td>
          <td class="TCol TColSeparator">
           50
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=745">
            <img alt="World Wonder Ring Stardom" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/745__2021-.gif" title="World Wonder Ring Stardom" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.73
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           470
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           4
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=290&amp;gimmick=Toshiaki+Kawada">
            Toshiaki Kawada
           </a>
          </td>
          <td class="TCol TColSeparator">
           Fujioka, Tochigi, Japan
          </td>
          <td class="TCol TColSeparator">
           183
          </td>
          <td class="TCol TColSeparator">
           105
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.73
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           371
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           5
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=2265&amp;gimmick=Manami+Toyota">
            Manami Toyota
           </a>
          </td>
          <td class="TCol TColSeparator">
           Masuda, Shimane, Japan
          </td>
          <td class="TCol TColSeparator">
           167
          </td>
          <td class="TCol TColSeparator">
           72
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.70
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           325
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           6
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=131&amp;gimmick=Akira+Hokuto">
            Akira Hokuto
           </a>
          </td>
          <td class="TCol TColSeparator">
           Yoshikawa, Saitama, Japan
          </td>
          <td class="TCol TColSeparator">
           168
          </td>
          <td class="TCol TColSeparator">
           63
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.69
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           175
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           7
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=593&amp;gimmick=Jumbo+Tsuruta">
            Jumbo Tsuruta
           </a>
          </td>
          <td class="TCol TColSeparator">
           Yamanashi, Japan
          </td>
          <td class="TCol TColSeparator">
           194
          </td>
          <td class="TCol TColSeparator">
           127
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.65
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           247
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           8
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=4324&amp;gimmick=Kazuchika+Okada">
            Kazuchika Okada
           </a>
          </td>
          <td class="TCol TColSeparator">
           Anjo, Aichi, Japan
          </td>
          <td class="TCol TColSeparator">
           191
          </td>
          <td class="TCol TColSeparator">
           107
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.65
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1231
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           9
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1176&amp;gimmick=Hiroshi+Tanahashi">
            Hiroshi Tanahashi
           </a>
          </td>
          <td class="TCol TColSeparator">
           Ogaki, Gifu, Japan
          </td>
          <td class="TCol TColSeparator">
           181
          </td>
          <td class="TCol TColSeparator">
           101
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=7">
            <img alt="New Japan Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/7.gif" title="New Japan Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.63
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           994
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           10
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=86&amp;gimmick=Bryan+Danielson">
            Bryan Danielson
           </a>
          </td>
          <td class="TCol TColSeparator">
           Aberdeen, Washington, USA
          </td>
          <td class="TCol TColSeparator">
           173
          </td>
          <td class="TCol TColSeparator">
           89
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.61
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           2321
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           11
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=16807&amp;gimmick=Gunther">
            Gunther
           </a>
          </td>
          <td class="TCol TColSeparator">
           Wien, Österreich
          </td>
          <td class="TCol TColSeparator">
           193
          </td>
          <td class="TCol TColSeparator">
           134
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.60
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1129
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           12
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=455&amp;gimmick=Jushin+Thunder+Liger">
            Jushin Thunder Liger
           </a>
          </td>
          <td class="TCol TColSeparator">
           Hiroshima, Japan
          </td>
          <td class="TCol TColSeparator">
           170
          </td>
          <td class="TCol TColSeparator">
           92
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=7">
            <img alt="New Japan Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/7.gif" title="New Japan Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.60
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           714
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           13
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=796&amp;gimmick=Shawn+Michaels">
            Shawn Michaels
           </a>
          </td>
          <td class="TCol TColSeparator">
           Chandler, Arizona, USA
          </td>
          <td class="TCol TColSeparator">
           185
          </td>
          <td class="TCol TColSeparator">
           103
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.57
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           2097
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           14
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=2906&amp;gimmick=Kenny+Omega">
            Kenny Omega
           </a>
          </td>
          <td class="TCol TColSeparator">
           Winnipeg, Manitoba, Canada
          </td>
          <td class="TCol TColSeparator">
           183
          </td>
          <td class="TCol TColSeparator">
           99
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.56
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1655
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           15
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=930&amp;gimmick=Lou+Thesz">
            Lou Thesz
           </a>
          </td>
          <td class="TCol TColSeparator">
           Barnat, Michigan, USA
          </td>
          <td class="TCol TColSeparator">
           185
          </td>
          <td class="TCol TColSeparator">
           102
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.55
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           163
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           16
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=540&amp;gimmick=Kurt+Angle">
            Kurt Angle
           </a>
          </td>
          <td class="TCol TColSeparator">
           Pittsburgh, Pennsylvania, USA
          </td>
          <td class="TCol TColSeparator">
           178
          </td>
          <td class="TCol TColSeparator">
           100
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.54
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1431
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           17
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1944&amp;gimmick=Meiko+Satomura">
            Meiko Satomura
           </a>
          </td>
          <td class="TCol TColSeparator">
           Niigata, Japan
          </td>
          <td class="TCol TColSeparator">
           157
          </td>
          <td class="TCol TColSeparator">
           68
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.54
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           323
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           18
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=664&amp;gimmick=Paul+Heyman">
            Paul Heyman
           </a>
          </td>
          <td class="TCol TColSeparator">
           Scarsdale, New York, USA
          </td>
          <td class="TCol TColSeparator">
           180
          </td>
          <td class="TCol TColSeparator">
           106
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.53
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           889
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           19
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=497&amp;gimmick=Eddie+Guerrero">
            Eddie Guerrero
           </a>
          </td>
          <td class="TCol TColSeparator">
           El Paso, Texas, USA
          </td>
          <td class="TCol TColSeparator">
           172
          </td>
          <td class="TCol TColSeparator">
           100
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.51
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1165
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           20
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=635&amp;gimmick=Steve+Austin">
            Steve Austin
           </a>
          </td>
          <td class="TCol TColSeparator">
           Austin, Texas, USA
          </td>
          <td class="TCol TColSeparator">
           188
          </td>
          <td class="TCol TColSeparator">
           116
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.51
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1326
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           21
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=9555&amp;gimmick=IYO+SKY">
            IYO SKY
           </a>
          </td>
          <td class="TCol TColSeparator">
           Kamakura, Kanagawa, Japan
          </td>
          <td class="TCol TColSeparator">
           156
          </td>
          <td class="TCol TColSeparator">
           55
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.50
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           751
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           22
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=801&amp;gimmick=AJ+Styles">
            AJ Styles
           </a>
          </td>
          <td class="TCol TColSeparator">
           Jacksonville, North Carolina, USA
          </td>
          <td class="TCol TColSeparator">
           180
          </td>
          <td class="TCol TColSeparator">
           99
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.49
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1950
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           23
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=7522&amp;gimmick=Hiroyuki+Unno">
            Hiroyuki Unno
           </a>
          </td>
          <td class="TCol TColSeparator">
           Hatogaya, Saitama, Japan
          </td>
          <td class="TCol TColSeparator">
           173
          </td>
          <td class="TCol TColSeparator">
           76
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=7">
            <img alt="New Japan Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/7.gif" title="New Japan Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.49
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           147
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           24
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=770&amp;gimmick=Bobby+Heenan">
            Bobby Heenan
           </a>
          </td>
          <td class="TCol TColSeparator">
           Chicago, Illinois, USA
          </td>
          <td class="TCol TColSeparator">
           183
          </td>
          <td class="TCol TColSeparator">
           105
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.48
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           387
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           25
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=828&amp;gimmick=Aja+Kong">
            Aja Kong
           </a>
          </td>
          <td class="TCol TColSeparator">
           Tokyo, Japan
          </td>
          <td class="TCol TColSeparator">
           165
          </td>
          <td class="TCol TColSeparator">
           103
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.48
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           255
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           26
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1383&amp;gimmick=Gene+Okerlund">
            Gene Okerlund
           </a>
          </td>
          <td class="TCol TColSeparator">
           Robbinsdale, Minnesota, USA
          </td>
          <td class="TCol TColSeparator">
           175
          </td>
          <td class="TCol TColSeparator">
           72
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.48
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           220
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           27
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=130&amp;gimmick=Tiger+Mask+">
            Tiger Mask
           </a>
          </td>
          <td class="TCol TColSeparator">
           Shimonoseki, Yamaguchi, Japan
          </td>
          <td class="TCol TColSeparator">
           173
          </td>
          <td class="TCol TColSeparator">
           98
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=269">
            <img alt="Strong Style Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/269.gif" title="Strong Style Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.47
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           191
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           28
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=565&amp;gimmick=Bret+Hart">
            Bret Hart
           </a>
          </td>
          <td class="TCol TColSeparator">
           Calgary, Alberta, Canada
          </td>
          <td class="TCol TColSeparator">
           183
          </td>
          <td class="TCol TColSeparator">
           107
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.46
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1404
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           29
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=3776&amp;gimmick=Tetsuya+Naito">
            Tetsuya Naito
           </a>
          </td>
          <td class="TCol TColSeparator">
           Tokyo, Japan
          </td>
          <td class="TCol TColSeparator">
           180
          </td>
          <td class="TCol TColSeparator">
           102
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=7">
            <img alt="New Japan Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/7.gif" title="New Japan Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.46
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           741
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           30
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=8760&amp;gimmick=Syuri">
            Syuri
           </a>
          </td>
          <td class="TCol TColSeparator">
           Ebina, Kanagawa, Japan
          </td>
          <td class="TCol TColSeparator">
           162
          </td>
          <td class="TCol TColSeparator">
           52
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=745">
            <img alt="World Wonder Ring Stardom" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/745__2021-.gif" title="World Wonder Ring Stardom" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.46
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           257
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           31
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=946&amp;gimmick=Karl+Gotch">
            Karl Gotch
           </a>
          </td>
          <td class="TCol TColSeparator">
           Antwerpen, Antwerpen, Belgien
          </td>
          <td class="TCol TColSeparator">
           184
          </td>
          <td class="TCol TColSeparator">
           110
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.46
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           111
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           32
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1297&amp;gimmick=Minoru+Suzuki">
            Minoru Suzuki
           </a>
          </td>
          <td class="TCol TColSeparator">
           Yokohama, Kanagawa, Japan
          </td>
          <td class="TCol TColSeparator">
           178
          </td>
          <td class="TCol TColSeparator">
           102
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.45
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           718
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           33
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1202&amp;gimmick=Katsuyori+Shibata">
            Katsuyori Shibata
           </a>
          </td>
          <td class="TCol TColSeparator">
           Kuwana, Mie, Japan
          </td>
          <td class="TCol TColSeparator">
           183
          </td>
          <td class="TCol TColSeparator">
           95
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.45
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           603
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           34
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=2279&amp;gimmick=Howard+Finkel">
            Howard Finkel
           </a>
          </td>
          <td class="TCol TColSeparator">
           New York City, New York, USA
          </td>
          <td class="TCol TColSeparator">
           173
          </td>
          <td class="TCol TColSeparator">
           76
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.45
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           246
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           35
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=4919&amp;gimmick=Arisa+Nakajima">
            Arisa Nakajima
           </a>
          </td>
          <td class="TCol TColSeparator">
           Chichibu, Saitama, Japan
          </td>
          <td class="TCol TColSeparator">
           160
          </td>
          <td class="TCol TColSeparator">
           60
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.44
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           105
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           36
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=6155&amp;gimmick=Kento+Miyahara">
            Kento Miyahara
           </a>
          </td>
          <td class="TCol TColSeparator">
           Fukuoka, Japan
          </td>
          <td class="TCol TColSeparator">
           186
          </td>
          <td class="TCol TColSeparator">
           102
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=6">
            <img alt="All Japan Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/6.gif" title="All Japan Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.42
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           250
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           37
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=761&amp;gimmick=Undertaker">
            Undertaker
           </a>
          </td>
          <td class="TCol TColSeparator">
           Houston, Texas, USA
          </td>
          <td class="TCol TColSeparator">
           208
          </td>
          <td class="TCol TColSeparator">
           136
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.42
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           2412
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           38
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1210&amp;gimmick=Tomohiro+Ishii">
            Tomohiro Ishii
           </a>
          </td>
          <td class="TCol TColSeparator">
           Kawasaki, Kanagawa, Japan
          </td>
          <td class="TCol TColSeparator">
           170
          </td>
          <td class="TCol TColSeparator">
           100
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=7">
            <img alt="New Japan Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/7.gif" title="New Japan Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.41
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           754
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           39
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1214&amp;gimmick=Naomichi+Marufuji">
            Naomichi Marufuji
           </a>
          </td>
          <td class="TCol TColSeparator">
           Saitama, Japan
          </td>
          <td class="TCol TColSeparator">
           176
          </td>
          <td class="TCol TColSeparator">
           90
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=8">
            <img alt="Pro Wrestling NOAH" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/8__20210212-.gif" title="Pro Wrestling NOAH" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.40
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           459
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           40
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=2785&amp;gimmick=Asuka">
            Asuka
           </a>
          </td>
          <td class="TCol TColSeparator">
           Osaka, Japan
          </td>
          <td class="TCol TColSeparator">
           160
          </td>
          <td class="TCol TColSeparator">
           62
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.39
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           884
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           41
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=501&amp;gimmick=Terry+Funk">
            Terry Funk
           </a>
          </td>
          <td class="TCol TColSeparator">
           Hammond, Indiana, USA
          </td>
          <td class="TCol TColSeparator">
           185
          </td>
          <td class="TCol TColSeparator">
           112
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.39
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           505
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           42
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=743&amp;gimmick=Ricky+Steamboat">
            Ricky Steamboat
           </a>
          </td>
          <td class="TCol TColSeparator">
           West Point, New York, USA
          </td>
          <td class="TCol TColSeparator">
           178
          </td>
          <td class="TCol TColSeparator">
           107
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.39
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           472
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           43
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=2846&amp;gimmick=Shingo+Takagi">
            Shingo Takagi
           </a>
          </td>
          <td class="TCol TColSeparator">
           Chuo, Yamanashi, Japan
          </td>
          <td class="TCol TColSeparator">
           178
          </td>
          <td class="TCol TColSeparator">
           95
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=7">
            <img alt="New Japan Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/7.gif" title="New Japan Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.38
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           596
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           44
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1850&amp;gimmick=Katsuhiko+Nakajima">
            Katsuhiko Nakajima
           </a>
          </td>
          <td class="TCol TColSeparator">
           Fukuoka, Japan
          </td>
          <td class="TCol TColSeparator">
           175
          </td>
          <td class="TCol TColSeparator">
           87
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.37
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           312
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           45
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=748&amp;gimmick=Genichiro+Tenryu">
            Genichiro Tenryu
           </a>
          </td>
          <td class="TCol TColSeparator">
           Katsuyama, Fukui, Japan
          </td>
          <td class="TCol TColSeparator">
           189
          </td>
          <td class="TCol TColSeparator">
           120
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=644">
            <img alt="Tenryu Project" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/644.gif" title="Tenryu Project" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.36
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           191
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           46
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=9628&amp;gimmick=Hiromu+Takahashi">
            Hiromu Takahashi
           </a>
          </td>
          <td class="TCol TColSeparator">
           Hachioji, Tokyo, Japan
          </td>
          <td class="TCol TColSeparator">
           171
          </td>
          <td class="TCol TColSeparator">
           88
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=7">
            <img alt="New Japan Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/7.gif" title="New Japan Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.36
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           475
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           47
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=4588&amp;gimmick=Kota+Ibushi">
            Kota Ibushi
           </a>
          </td>
          <td class="TCol TColSeparator">
           Kagoshima, Japan
          </td>
          <td class="TCol TColSeparator">
           181
          </td>
          <td class="TCol TColSeparator">
           93
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.36
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           747
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           48
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=258&amp;gimmick=Keiji+Muto">
            Keiji Muto
           </a>
          </td>
          <td class="TCol TColSeparator">
           Fujiyoshida, Yamanashi, Japan
          </td>
          <td class="TCol TColSeparator">
           188
          </td>
          <td class="TCol TColSeparator">
           110
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=8">
            <img alt="Pro Wrestling NOAH" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/8__20210212-.gif" title="Pro Wrestling NOAH" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.36
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           369
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           49
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=6254&amp;gimmick=Masashi+Takeda">
            Masashi Takeda
           </a>
          </td>
          <td class="TCol TColSeparator">
           Machida, Tokyo, Japan
          </td>
          <td class="TCol TColSeparator">
           170
          </td>
          <td class="TCol TColSeparator">
           85
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.35
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           101
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           50
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=16563&amp;gimmick=VENY">
            VENY
           </a>
          </td>
          <td class="TCol TColSeparator">
           Yokohama, Kanagawa, Japan
          </td>
          <td class="TCol TColSeparator">
           174
          </td>
          <td class="TCol TColSeparator">
           67
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.35
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           162
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           51
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=10321&amp;gimmick=Kagetsu">
            Kagetsu
           </a>
          </td>
          <td class="TCol TColSeparator">
           Settsu, Osaka, Japan
          </td>
          <td class="TCol TColSeparator">
           159
          </td>
          <td class="TCol TColSeparator">
           62
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.34
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           125
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           52
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=621&amp;gimmick=Shinya+Hashimoto">
            Shinya Hashimoto
           </a>
          </td>
          <td class="TCol TColSeparator">
           Toki, Gifu, Japan
          </td>
          <td class="TCol TColSeparator">
           183
          </td>
          <td class="TCol TColSeparator">
           135
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.34
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           149
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           53
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=758&amp;gimmick=Chris+Jericho">
            Chris Jericho
           </a>
          </td>
          <td class="TCol TColSeparator">
           Manhasset, New York, USA
          </td>
          <td class="TCol TColSeparator">
           180
          </td>
          <td class="TCol TColSeparator">
           103
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.33
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           2211
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           54
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=7249&amp;gimmick=Yuji+Okabayashi">
            Yuji Okabayashi
           </a>
          </td>
          <td class="TCol TColSeparator">
           Nankoku, Kochi, Japan
          </td>
          <td class="TCol TColSeparator">
           175
          </td>
          <td class="TCol TColSeparator">
           120
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=117">
            <img alt="Big Japan Pro-Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/117.gif" title="Big Japan Pro-Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.33
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           131
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           55
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=4531&amp;gimmick=Johnny+Saint">
            Johnny Saint
           </a>
          </td>
          <td class="TCol TColSeparator">
           Failsworth, Greater Manchester, England, UK
          </td>
          <td class="TCol TColSeparator">
           174
          </td>
          <td class="TCol TColSeparator">
           70
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.32
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           135
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           56
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1001&amp;gimmick=Jun+Akiyama">
            Jun Akiyama
           </a>
          </td>
          <td class="TCol TColSeparator">
           Izuki, Osaka, Japan
          </td>
          <td class="TCol TColSeparator">
           188
          </td>
          <td class="TCol TColSeparator">
           110
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=118">
            <img alt="DDT Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/118__201804-.gif" title="DDT Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.32
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           265
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           57
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=15843&amp;gimmick=Mizuki">
            Mizuki
           </a>
          </td>
          <td class="TCol TColSeparator">
           Kobe, Hyogo, Japan
          </td>
          <td class="TCol TColSeparator">
           158
          </td>
          <td class="TCol TColSeparator">
           40
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1467">
            <img alt="Tokyo Joshi Pro-Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1467.gif" title="Tokyo Joshi Pro-Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.32
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           120
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           58
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=13073&amp;gimmick=Konosuke+Takeshita">
            Konosuke Takeshita
           </a>
          </td>
          <td class="TCol TColSeparator">
           Osaka, Japan
          </td>
          <td class="TCol TColSeparator">
           187
          </td>
          <td class="TCol TColSeparator">
           105
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.32
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           480
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           59
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=2899&amp;gimmick=Masaaki+Mochizuki">
            Masaaki Mochizuki
           </a>
          </td>
          <td class="TCol TColSeparator">
           Tokyo, Japan
          </td>
          <td class="TCol TColSeparator">
           175
          </td>
          <td class="TCol TColSeparator">
           85
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=96">
            <img alt="Dragongate Japan Pro-Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/96__20191204-.gif" title="Dragongate Japan Pro-Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.31
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           114
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           60
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=439&amp;gimmick=Jim+Ross">
            Jim Ross
           </a>
          </td>
          <td class="TCol TColSeparator">
           Fort Bragg, California, USA
          </td>
          <td class="TCol TColSeparator">
           183
          </td>
          <td class="TCol TColSeparator">
           110
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.31
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           659
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           61
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=440&amp;gimmick=Stan+Hansen">
            Stan Hansen
           </a>
          </td>
          <td class="TCol TColSeparator">
           Knox City, Texas, USA
          </td>
          <td class="TCol TColSeparator">
           192
          </td>
          <td class="TCol TColSeparator">
           138
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.30
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           284
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           62
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1871&amp;gimmick=Go+Shiozaki">
            Go Shiozaki
           </a>
          </td>
          <td class="TCol TColSeparator">
           Kumamoto, Japan
          </td>
          <td class="TCol TColSeparator">
           183
          </td>
          <td class="TCol TColSeparator">
           110
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=8">
            <img alt="Pro Wrestling NOAH" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/8__20210212-.gif" title="Pro Wrestling NOAH" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.30
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           342
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           63
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=243&amp;gimmick=Bruno+Sammartino">
            Bruno Sammartino
           </a>
          </td>
          <td class="TCol TColSeparator">
           Pizzoferrato, Abruzzen, Italien
          </td>
          <td class="TCol TColSeparator">
           178
          </td>
          <td class="TCol TColSeparator">
           120
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.29
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           229
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           64
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=13179&amp;gimmick=Ilja+Dragunov">
            Ilja Dragunov
           </a>
          </td>
          <td class="TCol TColSeparator">
           Moskau, Russland
          </td>
          <td class="TCol TColSeparator">
           175
          </td>
          <td class="TCol TColSeparator">
           85
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.28
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           568
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           65
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=14028&amp;gimmick=Will+Ospreay">
            Will Ospreay
           </a>
          </td>
          <td class="TCol TColSeparator">
           Rainham, Essex, England, UK
          </td>
          <td class="TCol TColSeparator">
           185
          </td>
          <td class="TCol TColSeparator">
           100
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.27
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1208
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           66
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=9189&amp;gimmick=Cesar+Duran">
            Cesar Duran
           </a>
          </td>
          <td class="TCol TColSeparator">
           Madrid, Spanien
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=22">
            <img alt="Major League Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/22.gif" title="Major League Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.27
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           124
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           67
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=736&amp;gimmick=Jun+Kasai">
            Jun Kasai
           </a>
          </td>
          <td class="TCol TColSeparator">
           Obihiro, Hokkaido, Japan
          </td>
          <td class="TCol TColSeparator">
           173
          </td>
          <td class="TCol TColSeparator">
           88
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=602">
            <img alt="Pro Wrestling FREEDOMS" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/602.gif" title="Pro Wrestling FREEDOMS" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.27
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           198
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           68
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=932&amp;gimmick=Cope+">
            Cope
           </a>
          </td>
          <td class="TCol TColSeparator">
           Orangeville, Ontario, Canada
          </td>
          <td class="TCol TColSeparator">
           193
          </td>
          <td class="TCol TColSeparator">
           108
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.26
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1799
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           69
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1602&amp;gimmick=Daisuke+Sekimoto">
            Daisuke Sekimoto
           </a>
          </td>
          <td class="TCol TColSeparator">
           Osaka, Japan
          </td>
          <td class="TCol TColSeparator">
           175
          </td>
          <td class="TCol TColSeparator">
           115
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=117">
            <img alt="Big Japan Pro-Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/117.gif" title="Big Japan Pro-Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.26
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           221
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           70
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=80&amp;gimmick=CM+Punk">
            CM Punk
           </a>
          </td>
          <td class="TCol TColSeparator">
           Chicago, Illinois, USA
          </td>
          <td class="TCol TColSeparator">
           183
          </td>
          <td class="TCol TColSeparator">
           99
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.26
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           2316
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           71
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1232&amp;gimmick=Takashi+Sugiura">
            Takashi Sugiura
           </a>
          </td>
          <td class="TCol TColSeparator">
           Nagoya, Aichi, Japan
          </td>
          <td class="TCol TColSeparator">
           178
          </td>
          <td class="TCol TColSeparator">
           89
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=8">
            <img alt="Pro Wrestling NOAH" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/8__20210212-.gif" title="Pro Wrestling NOAH" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.26
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           201
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           72
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=547&amp;gimmick=Hayabusa">
            Hayabusa
           </a>
          </td>
          <td class="TCol TColSeparator">
           Yatsushiro, Kumamoto, Japan
          </td>
          <td class="TCol TColSeparator">
           183
          </td>
          <td class="TCol TColSeparator">
           106
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.25
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           203
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           73
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=11958&amp;gimmick=Kairi+Sane">
            Kairi Sane
           </a>
          </td>
          <td class="TCol TColSeparator">
           Hikari, Yamaguchi, Japan
          </td>
          <td class="TCol TColSeparator">
           155
          </td>
          <td class="TCol TColSeparator">
           52
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.24
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           465
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           74
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=10343&amp;gimmick=Rey+Fenix++">
            Rey Fenix
           </a>
          </td>
          <td class="TCol TColSeparator">
           Mexico City, Distrito Federal, Mexiko
          </td>
          <td class="TCol TColSeparator">
           177
          </td>
          <td class="TCol TColSeparator">
           75
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.23
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           579
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           75
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1015&amp;gimmick=Curt+Hennig">
            Curt Hennig
           </a>
          </td>
          <td class="TCol TColSeparator">
           Minneapolis, Minnesota, USA
          </td>
          <td class="TCol TColSeparator">
           190
          </td>
          <td class="TCol TColSeparator">
           118
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.23
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           609
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           76
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=6&amp;gimmick=Mick+Foley">
            Mick Foley
           </a>
          </td>
          <td class="TCol TColSeparator">
           Bloomington, Indiana, USA
          </td>
          <td class="TCol TColSeparator">
           188
          </td>
          <td class="TCol TColSeparator">
           135
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.22
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1111
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           77
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=640&amp;gimmick=Randy+Savage">
            Randy Savage
           </a>
          </td>
          <td class="TCol TColSeparator">
           Columbus, Ohio, USA
          </td>
          <td class="TCol TColSeparator">
           186
          </td>
          <td class="TCol TColSeparator">
           106
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.21
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           692
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           78
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1992&amp;gimmick=Stu+Hart">
            Stu Hart
           </a>
          </td>
          <td class="TCol TColSeparator">
           Saskatoon, Saskatchewan, Canada
          </td>
          <td class="TCol TColSeparator">
           178
          </td>
          <td class="TCol TColSeparator">
           105
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.20
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           113
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           79
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=277&amp;gimmick=Owen+Hart">
            Owen Hart
           </a>
          </td>
          <td class="TCol TColSeparator">
           Calgary, Alberta, Canada
          </td>
          <td class="TCol TColSeparator">
           178
          </td>
          <td class="TCol TColSeparator">
           103
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.20
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           636
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           80
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1499&amp;gimmick=Kevin+Owens">
            Kevin Owens
           </a>
          </td>
          <td class="TCol TColSeparator">
           Saint-Jean-sur-Richelieu, Quebec, Canada
          </td>
          <td class="TCol TColSeparator">
           180
          </td>
          <td class="TCol TColSeparator">
           120
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.20
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1287
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           81
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=484&amp;gimmick=Nigel+McGuinness">
            Nigel McGuinness
           </a>
          </td>
          <td class="TCol TColSeparator">
           London, England, UK
          </td>
          <td class="TCol TColSeparator">
           185
          </td>
          <td class="TCol TColSeparator">
           102
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.20
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           481
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           82
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=10478&amp;gimmick=Arisa+Hoshiki">
            Arisa Hoshiki
           </a>
          </td>
          <td class="TCol TColSeparator">
           Funabashi, Chiba, Japan
          </td>
          <td class="TCol TColSeparator">
           167
          </td>
          <td class="TCol TColSeparator">
           52
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.19
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           102
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           83
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=15842&amp;gimmick=Miyu+Yamashita">
            Miyu Yamashita
           </a>
          </td>
          <td class="TCol TColSeparator">
           Fukuoka, Japan
          </td>
          <td class="TCol TColSeparator">
           165
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1467">
            <img alt="Tokyo Joshi Pro-Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1467.gif" title="Tokyo Joshi Pro-Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.19
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           192
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           84
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=263&amp;gimmick=Sting">
            Sting
           </a>
          </td>
          <td class="TCol TColSeparator">
           Omaha, Nebraska, USA
          </td>
          <td class="TCol TColSeparator">
           191
          </td>
          <td class="TCol TColSeparator">
           114
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.18
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1120
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           85
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1096&amp;gimmick=Antonio+Inoki">
            Antonio Inoki
           </a>
          </td>
          <td class="TCol TColSeparator">
           Yokohama, Kanagawa, Japan
          </td>
          <td class="TCol TColSeparator">
           190
          </td>
          <td class="TCol TColSeparator">
           102
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.16
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           194
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           86
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1854&amp;gimmick=HARASHIMA">
            HARASHIMA
           </a>
          </td>
          <td class="TCol TColSeparator">
           Ome, Tokyo, Japan
          </td>
          <td class="TCol TColSeparator">
           178
          </td>
          <td class="TCol TColSeparator">
           90
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=118">
            <img alt="DDT Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/118__201804-.gif" title="DDT Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.15
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           111
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           87
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=960&amp;gimmick=The+Rock">
            The Rock
           </a>
          </td>
          <td class="TCol TColSeparator">
           Hayward, California, USA
          </td>
          <td class="TCol TColSeparator">
           193
          </td>
          <td class="TCol TColSeparator">
           120
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.15
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1515
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           88
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1523&amp;gimmick=Sami+Zayn">
            Sami Zayn
           </a>
          </td>
          <td class="TCol TColSeparator">
           Laval, Quebec, Canada
          </td>
          <td class="TCol TColSeparator">
           185
          </td>
          <td class="TCol TColSeparator">
           96
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.15
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1211
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           89
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=676&amp;gimmick=Samoa+Joe">
            Samoa Joe
           </a>
          </td>
          <td class="TCol TColSeparator">
           Orange County, California, USA
          </td>
          <td class="TCol TColSeparator">
           183
          </td>
          <td class="TCol TColSeparator">
           127
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.15
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1212
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           90
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=17195&amp;gimmick=Chihiro+Hashimoto">
            Chihiro Hashimoto
           </a>
          </td>
          <td class="TCol TColSeparator">
           Sakai, Fukui, Japan
          </td>
          <td class="TCol TColSeparator">
           158
          </td>
          <td class="TCol TColSeparator">
           85
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=154">
            <img alt="Sendai Girls' Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/154.gif" title="Sendai Girls' Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.15
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           101
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           91
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=15712&amp;gimmick=Shoko+Nakajima">
            Shoko Nakajima
           </a>
          </td>
          <td class="TCol TColSeparator">
           Tsunan, Niigata, Japan
          </td>
          <td class="TCol TColSeparator">
           147
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1467">
            <img alt="Tokyo Joshi Pro-Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1467.gif" title="Tokyo Joshi Pro-Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.14
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           138
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           92
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=6653&amp;gimmick=Kenoh">
            Kenoh
           </a>
          </td>
          <td class="TCol TColSeparator">
           Tokushima, Japan
          </td>
          <td class="TCol TColSeparator">
           174
          </td>
          <td class="TCol TColSeparator">
           95
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=8">
            <img alt="Pro Wrestling NOAH" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/8__20210212-.gif" title="Pro Wrestling NOAH" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.13
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           177
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           93
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=10334&amp;gimmick=Penta">
            Penta
           </a>
          </td>
          <td class="TCol TColSeparator">
           Mexico City, Distrito Federal, Mexiko
          </td>
          <td class="TCol TColSeparator">
           180
          </td>
          <td class="TCol TColSeparator">
           87
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=1">
            <img alt="World Wrestling Entertainment" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/1.gif" title="World Wrestling Entertainment" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.13
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           630
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           94
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=9312&amp;gimmick=Hechicero+">
            Hechicero
           </a>
          </td>
          <td class="TCol TColSeparator">
           Monterrey, Nuevo Leon, Mexiko
          </td>
          <td class="TCol TColSeparator">
           176
          </td>
          <td class="TCol TColSeparator">
           94
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=78">
            <img alt="Consejo Mundial De Lucha Libre" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/78__20180914-.gif" title="Consejo Mundial De Lucha Libre" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.13
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           107
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           95
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=626&amp;gimmick=Akira+Taue">
            Akira Taue
           </a>
          </td>
          <td class="TCol TColSeparator">
           Chichibu, Saitama, Japan
          </td>
          <td class="TCol TColSeparator">
           192
          </td>
          <td class="TCol TColSeparator">
           120
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.13
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           197
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           96
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=1091&amp;gimmick=Ric+Flair">
            Ric Flair
           </a>
          </td>
          <td class="TCol TColSeparator">
           Memphis, Tennessee, USA
          </td>
          <td class="TCol TColSeparator">
           180
          </td>
          <td class="TCol TColSeparator">
           110
          </td>
          <td class="TCol TColSeparator">
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.12
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           1250
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           97
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=10904&amp;gimmick=Sareee">
            Sareee
           </a>
          </td>
          <td class="TCol TColSeparator">
           Tokyo, Japan
          </td>
          <td class="TCol TColSeparator">
           158
          </td>
          <td class="TCol TColSeparator">
           60
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=3696">
            <img alt="Sukeban" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/3696.gif" title="Sukeban" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.12
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           212
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           98
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=990&amp;gimmick=Great+Sasuke">
            Great Sasuke
           </a>
          </td>
          <td class="TCol TColSeparator">
           Morioka, Iwate, Japan
          </td>
          <td class="TCol TColSeparator">
           176
          </td>
          <td class="TCol TColSeparator">
           86
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=82">
            <img alt="Michinoku Pro Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/82.gif" title="Michinoku Pro Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.12
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           161
          </td>
         </tr>
         <tr class="TRow1">
          <td class="TCol AlignCenter TextLowlight">
           99
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=20600&amp;gimmick=Suzu+Suzuki">
            Suzu Suzuki
           </a>
          </td>
          <td class="TCol TColSeparator">
           Miyazaki, Japan
          </td>
          <td class="TCol TColSeparator">
           153
          </td>
          <td class="TCol TColSeparator">
           57
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=745">
            <img alt="World Wonder Ring Stardom" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/745__2021-.gif" title="World Wonder Ring Stardom" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.11
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           131
          </td>
         </tr>
         <tr class="TRow2">
          <td class="TCol AlignCenter TextLowlight">
           100
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=2&amp;nr=870&amp;gimmick=Chris+Hero">
            Chris Hero
           </a>
          </td>
          <td class="TCol TColSeparator">
           Dayton, Ohio, USA
          </td>
          <td class="TCol TColSeparator">
           193
          </td>
          <td class="TCol TColSeparator">
           122
          </td>
          <td class="TCol TColSeparator">
           <a href="?id=8&amp;nr=2287">
            <img alt="All Elite Wrestling" class="ImagePromotionLogoMini ImagePromotionLogo_mini" height="18" src="/site/main/img/ligen/normal/2287__20240306-.gif" title="All Elite Wrestling" width="36"/>
           </a>
          </td>
          <td class="TCol TColSeparator AlignRight">
           <span class="Rating Color9">
            9.11
           </span>
          </td>
          <td class="TCol TColSeparator AlignRight">
           721
          </td>
         </tr>
        </table>
       </div>
      </div>
     </div>
    </div>
   </div>
   <div class="LayoutCopyright">
    <div class="Impressum">
     <a href="https://www.cagematch.net">
      www.CAGEMATCH.net
     </a>
     - © 2001-2025
     <a href="mailto:webmaster@cagematch.de">
      Philip Kreikenbohm
     </a>
     -
     <a href="?id=402">
      Site Notice
     </a>
    </div>
   </div>
  </div>
  <script src="/2k16/scripts/cagematch.js?20240719">
  </script>
 </body>
</html>

Wrestler URLs extracted:
https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: jesicawrote on 04.02.2025:"https://studyx.ai/questions/4ljb19z/is-priceline-free-cancellation-within-24-hours-is-priceline-free-cancellation-within-24"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: anarchovampwrote on 27.12.2024:[10.0] "John Bradshaw famously dubbed himself a wrestling god in kayfabe, but Kenta Kobashi is probably at least a shoot demigod. He could captivate audiences on levels that have really only been surpassed by prime Michael Jackson. He was a big rugged worker, but also had surprising athleticism and almost unlimited stamina, as well as being able to tether the audience on a string around his finger. When it comes to universally beloved professional wrestlers, Kenta Kobashi has to be on the top of that list, and it's very easy to argue that throughout the 90s and 2000s, no other wrestler did more to push the art form forward. A truly revolutionary and legendary icon of the sport."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ZephsPancakeswrote on 12.12.2024:[10.0] "I personally slightly edge Misawa over Kobashi and the rest of the pillars due to Misawa being the person who introduced me to King's Road and All Japan/NOAH but Kobashi to me is still the perfect wrestler. The greatest babyface of all time, Kobashi was the definition of resilience and heart, whether it's kicking out of Tiger Drivers of delivering a Burning Hammer to cancer itself, Kobashi is someone who you cannot help but root for, no matter who is against. Some of the most legendary matches of all time along with some of the most legendary moves of all time, anytime I hear a crowd chanting "KOBASHI! KOBASHI! " I cannot help but get chills, one of the most influential wrestlers of all time, Kobashi will forever be replicated but will NEVER be duplicated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TPGwrote on 05.12.2024:[10.0] "If I'm being honest, Kobashi's probably one of my favourite babyfaces of all time. He knew how to work a match and to work the crowd, he had sensational chemistry with most of his opponents, and I think that's what makes it so hard to pick out a favourite Kobashi match. Maybe Joe VS Kobashi, sheerly for the crowd on its own, but maybe the 25/05/1992 match? I don't know. Maybe sometime this week, I'll go watch them back, but Kobashi gets a shining spot in my top 10 wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Daniel IWwrote on 03.12.2024:[5.0] "Known for his devastating chops and iconic moves like the Burning Hammer, Kobashi combined raw power with technical brilliance, setting the standard for what it means to be a true warrior in the ring. Kenta Kobashi isnt just a wrestlerhes an icon whose legacy continues to inspire fans and wrestlers worldwide."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: NightStalkerwrote on 02.11.2024:"Kobashi was my first introduction to wrestling outside of North America. All his matches were just on another level than anything I saw in WWF or NWA back then. Hands down in my top 5 of all time."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Dweeeabwrote on 27.10.2024:[10.0] "Kenta Kobashi is one of the few wrestlers from the 90s that I can go watch a match and it hold up just as well today. This man was part of some absolutely legendary matches and part of one of my favorite fueds of all time with Misawa. Not to mention some of the absolutely INSANE bumps this man took to put on amazing matches for the fans. An absolute legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Zak22wrote on 25.10.2024:[10.0] "I have no issue with people putting Kobashi number one in the all-time list, he deserves it. For me, Misawa is number one but its a 0.00001 difference between the two, and I'll happily say that Kobashi bought more emotion and intensity than Misawa, I'll also say that I think Misawa had a more consistent career and a slightly better prime. But enough about the timeless comparison, Kobashi was the best in the world for a multi-year stretch and his insane match catalogue speaks for itself, Kobashi was special and at his best, he was the perfect main eventer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TreyHalowrote on 23.10.2024:[10.0] "My favorite pillar and no doubt one of the greatest to ever lace em up, can't think of many people more deserving of that #1 spot so it puts a smile on my face to see Kobashi appreciated to this extent, so I'm dropping a 10/10 here to add onto it because it is SO so deserved, a genuine GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Cosmowrote on 10.10.2024:[10.0] "If Bryan Danielson decided to stay at McDonald's instead of wrestling sweaty dudes Kobashi would be the goat probably he can fuck my girl he's so amazing honestly"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: jrssscwrote on 07.09.2024:"Kenta Kobashi is someone I discovered recently and I am absolutely floored with this mans talents. I recently watched his 03 classic with Misawa as my first match of his and I can't wait to deep dive into the history books of this phenomenal, legendary talent."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Willie 19200wrote on 15.08.2024:[10.0] "One of the best to ever do it right behind Mitsuharu Misawa and Bryan Danielson in my opinion. The matches he's put on along with Toshiaki Kowada, Akira Taue, Mitsuharu Misawa, and many more people all over the world, it's no secret that he's definitely a game changer. It's no doubt that Kenta Kobashi has earned the right to be called "Mr. Pro Wrestling.""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Jordan Impactwrote on 13.08.2024:[10.0] "The greatest of all time. I dont know where to start with Kobashi just I dont think there has been a better wrestler to have ever stood in a ring. If you are gonna watch one Kobashi match go watch his match vs Misawa in NOAH in 2003 at the Nippon Budokan its just a masterpiece of pure pro wrestling. Should also mention Kobashi was a great example for being a pure babyface wrestler that always got the crowd behind them. And to those who say Ric Flair has the best chops in wrestling well watch Kobashi chops and then youll change your mind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: jsbortswrote on 05.08.2024:[10.0] "In my humble opinion, the greatest of the four pillars and the absolute master of everything he did. I don't understand a word of japanese, but Kenta Kobashi has made me feel more about wrestling than anyone has with all the mic time in the world. His emotion and storytelling is unmatched, and the man gave EVERYTHING in the ring. An absolute powerhouse, a legend in every respect, and one of the greatest of all time. If he isn't in your top 5 you haven't watched enough of his matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: KobashiChopMewrote on 02.08.2024:[10.0] "Kobashi is arguably the greatest wrestler of all time. Incredibly consistent throughout his entire career, and always putting on high level classics. First saw him with his match against Joe and became hooked, since then I must have watched every match I can get my hands on when it comes to Kobashi. He is, in my book. One of two people fully deserving to be called the greatest to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: nabigoyewrote on 31.07.2024:[10.0] "Aus meiner Sicht der größte aller Zeiten, der beste Face in der Geschichte von Puroresu. Es gibt nichts was er nicht konnte oder erreicht hat. Persönlich gefällt mir seine NOAH Zeit sogar besser als die in AJPW, wobei sein GHC Titelrun, welcher der vielleicht beste aller Zeiten (einzige Konkurrenz ist Okadas IWGP Titelrun) ist, natürlich hervorsticht. Zudem natürlich auch die Geschichten abseits des Rings, zwecks seines Kampfes gegen den Krebs. Ein perfekter Wrestler und sicher einer der größten aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: SigmaAngeloAsteriawrote on 28.07.2024:[10.0] "What hasn't been said about Kobashi? A very great wrestler, one of the draws of the golden era of AJPW, iconic matches with his peers (Misawa, Kawada...), and can hang out with American wrestlers. Top 5 for sure in my book"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: woolyshamblerwrote on 21.07.2024:[10.0] "a master at doing a lot with a little, kobashi could get an entire match out of his chops, his facial expressions, and his realistic selling. this makes him an incredibly consistent wrestler, not to mention how spectacular it is when he goes all out. when kobashi fights through pain after being worked over by the heel all match, you buy into every second of his comeback. you believe he really is that inhumanly tough and spirited. that's so hard to do! i love kenta kobashi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: zollstockwrote on 28.06.2024:"Ein wirklich sehr sehr guter Wrestler. Immer wenn man ihn sieht bringt er top Leistung. Noch nie ein schlechtes Match mit ihm gesehen."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: WrestlingGuruwrote on 26.05.2024:[10.0] "One of the original masters of Puroresu, have to respect that. I lvoed the response he got when he had his first U.S. match against Samoa Joe. That was the first match I ever saw of his despite hearing about him for years. Glad I took the plunge and looked up his famous battles from AJPW and NOAH. Perfect eprsonification of Strong Style from the 90's."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Pigeon Scratchwrote on 29.04.2024:[10.0] "My pick for the best to ever do it, and my absolute favorite in the entire industry. His presence, his ability to connect to the crowd, his pure, strong willed fighting spirit is legendary, something that even Mitsuharu Misawa didn't quite have due to his stoicism. To be chopped by him was an honor, to take offense from him was an honor, to lose to him was an honor. He did quite literally everything to near perfection, and made every spot in a bout count, never missing a second. His entire moveset was excellent, and he had one of the best finishers of all time. I don't think there will ever be someone who can pull off a Burning Hammer quite like Kobashi. And to think he went through so much pain while still being able to put all of his effort into every match is incredible, even going through cancer and emergency surgery, even when his knees deteriorated, he just kept going. One of the best of all time, one of the most inspirational, and there will be nothing quite like him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: arisenbywrote on 20.04.2024:[10.0] "[10.0] I think it's already been said, probably by others on this site, but this man is the Jordan of pro wrestling; the strongest contender we will ever see for Greatest of All Time with nearly no blemishes on his record. God-tier chops and lariats, good look, two of the best finishers in wrestling, and very good presence. This man beat cancer in 18 months and was able to get back from emergency surgery on both arms in less than six months. There's no words for him except 'absolute beast.'"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: BruceMarcos524wrote on 19.04.2024:[10.0] "Simply the greatest wrestler in history. No flaws, a near ideal pro-wrestler. He had epic bouts against Mitsuharu Misawa, Toshiaki Kawada, Stan Hansen, etc. He also ruled both AJPW and NOAH during his tenure. The master of knife edge chop, who wouldn't forget the chop fest between him and Kensuke Sasaki, an inspiration of many chop battles especially in Japan. Simply his amazing skill and work rate outshone most of the wrestlers in its existence. The Burning Hammer is the most visually devastating move ever that puts down most of the victims of the receiving end, an ultimate finishing move. He had one of the best and the most inspiring comebacks when he returned to the ring after he was diagnosed with cancer. He was truly overlooked in the Western media but there is no denying that no matter how much they ignore Kobashi, most of its hardcore wrestling fans will know that Kobashi is the GOAT and I definitely agree with it. For those who wanted to know more what he's capable of, I suggest watching their NOAH match against Mitsuharu Misawa on 1st of March in the year of 2003. In my opinion, the greatest wrestling match of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Oddtalkwrote on 29.03.2024:[10.0] "My number one favorite wrestler of all time. I don't think any other person has opened my eyes to the true greatness of wrestling like Kobashi has. Discovering his work was life-changing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: brettlobsingerwrote on 18.02.2024:"Yoooo Seth (Kenta Kobashi), this class was dope as hell and fun to get a little stressed every couple of days or so, thank you for the chance to learn a bunch of dope stuff."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ABQMIKEwrote on 15.02.2024:[10.0] "The Superstar. Absolute Champion. Mr. Pro Wrestling. Orange Crush. Pick a name and he fits it. He was THE guy and he was great at it. (Of the 4 pillars Kobashi and Misawa are my favorites but Kawada and Taue are pretty dang close. I wouldn't argue with anyone picking any of the others as their favorite). When I think of Kobashi I can heat a lout chop echoing out somewhere. He could have a classic match with a broom stick, he was that good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: KEIwrote on 01.02.2024:[10.0] "Mr. Pro Wrestling, Kenta Kobashi is possibly the greatest professional wrestler to ever step foot in the ring. One of my favorite performers of all time. 10 out of 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: GoldenHomieswrote on 02.01.2024:[10.0] "Kenta Kobashi simply is the greatest of all time. A beautiful special wrestler this sport will forever be indebted to."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: MegaSPSwrote on 04.12.2023:[10.0] "kenta kobashi is the best wrestler of all time. if you look into what ive rated or commented on, youll see hazuki from stardom is my favorite ever, but ill say that kenta kobashi is better than my favorite. kobashi is one of the hardest hitting, most technically sound wrestlers of all time. i promise there is a reason that kobashi is the number one ranked wrestler on this site. kenta kobashis worst match will still be the best match on the show. orange crush is the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: JediSaiyanMaster1203wrote on 18.11.2023:[10.0] "As I'm writing this comment, Kenta Kobashi is the highest rated person on this website. While I don't agree that he's number one, I can't argue against that point since Kenta Kobashi may be the greatest professional wrestler of all time. Kenta Kobashi is up there with the likes of Sting and Ricky Steamboat for the best pure babyfaces to ever step foot in the ring, his psychology and storytelling is up there for some of the best (he can get a crowd to pop by just slight, subtle facial expressions made by him), his strikes are painfully brutal to watch, some of the best chops of all time, the burning hammer is one of the best finishing moves ever, some of the best matches that have ever taken place in the ring feature him, his bouts with guys like Mitsuharu Misawa, Samoa Joe, Jun Akiyama, Stan Hansen, Steve Williams, and tons more to add (seriously...) will forever go down in history as classics. Kenta Kobashi is one of my all time favorite professional wrestlers, everything he did was incredibly solid in ever way, shape or form, a true legend in this amazing "sport.""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Roastertakerrwrote on 26.08.2023:[10.0] "Quite frankly, one of the greatest wrestlers of all time. Even though as the years will go by. People will continue to talk about him in wrestling circles, at least those who watch Puroresu. He was perfect, and his matches kept you engaged. If you asked him to put on a good match, he'd deliver, 99.9% of the time. 10/10 wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: texasyoshwrote on 23.08.2023:[10.0] "He may be the most "contemporary" out of all the Four Pillars. Not only was his rise to the top much later than his contemporaries, but his lasting spot on top of the card happening in a completely different era than Misawa. While Misawa was the Ace of AJPW, Kobashi ruled NOAH with an iron fist. He's unlike Misawa or Kawada, not really relying on his strikes as much as he weaponizes fighting spirit. Kobashi may be fighting spirit personified. It is impossible not to root for Kobashi whenever Sniper or Grand Sword starts playing, and that's perhaps by Baba's design. After all, a guy who lost time and time again for over an entire year, finally eclipsing all of his peers in the late 1990s and 2000s. Peak years are probably 1992-2005. Quite literally his time in SGA, winning the tag titles with Kikuchi, all the way through to the end of his GHC reign. Kobashi may have the "most complete" level of top matches within the four pillars, as he not only worked the numerous top stars in AJPW in high-level matches (Hansen comes to mind), but also later on in NOAH with people like Nagata, Suzuki, and Sasaki. Kobashi, while isn't my favorite pillar, is undeniable as probably "the best" out of the bunch from the sheer magnitude of his catalogue. Truly an Ironman in all ways, overcoming numerous knee injuries and CANCER to sporadically wrestle until an excellent retirement match in 2013."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Jarr4hwrote on 28.07.2023:"The greatest wrestler I've ever watched in my life, spectacular career , rivalries , feuds and title reigns."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: flipflopdoritoswrote on 23.07.2023:[10.0] "it truly feels like a gift every time i watch a match from this guy. he's 100% one of the best rounded (no pun intended) wrestlers i've ever seen. truly a legendary talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: neat o wrasslinwrote on 22.07.2023:[10.0] "Greatest wrestler of all time. There's a moment in his match against Samoa Joe where the crowd react just to a subtle change in his facial expression. The man blended psychology and athleticism better than anyone has and likely ever will."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: LGL19wrote on 28.06.2023:[10.0] "Possibly the greatest wrestler of all time, definitely the greatest Japanese wrestler of all time. Could tell amazing stories in the ring and has had some of the most amazing matches and rivalries I've ever seen and is part of probably the greatest match of all time with Misawa in 2003. He also has the greatest chop ever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: eenfish69wrote on 22.06.2023:[10.0] "Good wrestler. Put on some very good matches. Did some good work. Definitely better than any wrestler anywhere else in the world except for maybe five during his time wrestling. If I were to rate him on a scale of 1 to 10, the scale would have to be broken. If you are here looking for a reason to watch a Kobashi match, just stop reading and go watch the January 20 1997 match against Misawa. If you can't dig that then you just don't get it and probably never will. Kenta Kobashi is simply put one of the greatest in ring story tellers, hardest hitters, and hardest workers to ever wrestle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: GeneBlastKyodaiwrote on 17.06.2023:[10.0] "The epitome of fighting spirit. A literal god of professional wrestling. One of the greatest to ever lace a pair of wrestling bootsand had a banger theme to boot."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: HighFlyDeathcorewrote on 16.06.2023:[10.0] "Kenta Kobashi is one of the greatest wrestlers of all time. Constantly innovating the biz with high profile perfect matches and moves such as the Burning Hammer. His work alongside the 4 pillars as well as GHC title matches with the likes of Masahiro Chono and Minoru Suzuki make him easily the greatest GHC world champion of all time and one of the greatest champions in the history of the wrestling business. His fighting spirit is truly unmatched and the fact he could hit a moonsault even in 2003 is fucking insane. As someone said in a different comment, I can bypass the ratings if Meltzer can. Easy 12/10, one of the greatest to ever grace our sport"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TheOneAndOnlyCactuswrote on 03.04.2023:[10.0] "Kenta Kobashi is my co-favorite Japanese wrestler of all-time, and one of the greatest, if not the greatest babyface of all-time. An all-around wrestler and great technician, despite his chops being the most iconic part of his arsenal (along with the Burning Hammer). He was a towering figure, and yet you could believe that he was in trouble and root for him, so great was his selling. And his fighting spirit being unleashed is always a great sight to behold. He could have great matches with pretty much anyone, and his GHC title run was maybe the greatest world title reign of all-time. I could talk about him for days, but to keep it short, he was just damn near perfect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TripleCrownwrote on 02.04.2023:[10.0] "Kenta Kobashi is a Japanese wrestling god, plain and simple. His work alongside the likes of Misawa, Kawada, Taue & Akiyama will forever be remembered for putting Japanese wrestling on the map again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: KKeanelwrote on 25.02.2023:[10.0] "Alongside Misawa, top of the top of puroresu. Watching his matches with enormous intensity and psychology is a great privilege."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: WhatIsLooveeewrote on 24.02.2023:[10.0] "Absolutely the greatest. I enjoyed every Kenta's match I watched, he had a great look, his every move maked sense, he perfectly conveyd emotions and he was a master of storytelling, who is not for nothing considered one of the pillars, whose history is thought out to the smallest detail and is outstanding, and one of the best pro wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ajsmileswrote on 09.02.2023:[10.0] "Simply the greatest wrestler ever in terms of in-ring ability. Stiff as hell to his opponents, can take a beating himself, knows how to pop a crowd, how to structure a match and is an amazing babyface. Misawa might be better in terms of moves but Kobashi isn't an AI controlled robot in the ring like Misawa. So glad that he knew when to retire although years of going all out every night and most of all the nasty neck bumps (even though he didn't take as many of them as Misawa) certainly took his toll on him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: benh2wrote on 12.01.2023:[10.0] "Arguably the greatest to ever do it. Even in his early career during the losing streak you could tell he would make it to the top. By the time he really hit his straps in 93-94 you could almost guarantee he'd be in the best match on the card. Hard as nails with great fire and some of the best offence there's ever been, he was the ultimate babyface to a lot of fans. You couldn't help but love Kobashi. The only downside is that he had zero nights off and destroyed his knees. The fact that he still churned out all-time classics in NOAH when he should have been in a wheelchair was a marvel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: UltraNano54wrote on 03.01.2023:[10.0] "My personal favorite wrestler of all time. He has it all from the look, the charisma and the match quality. A Talent that can never be topped."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: sbg2022wrote on 18.10.2022:[10.0] "The quintessential perfect wrestler. Rating him a 10 is underrating him. But I have no choice but to give him a 10 even though that's discrediting him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: wrestlingreviewerwrote on 11.10.2022:[10.0] "One of the best baby face ever highly charasmatic If you only talk about AJPW tenure I would say he shouldn't be No 1 but if you combine that with his Noah run and ROH appearance he was real deal"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: munrapido3wrote on 23.09.2022:[10.0] "Kenta Kobashi, a man so tough he was called 'Tetsujin' or 'Iron Man' and beat kidney cancer then returned to wrestle. One of the greatest professional wrestlers and one of the greatest babyfaces ever. Just like his fellow pillars, Kobashi was a great storyteller. He was consistent, charismatic, and had great agility. He was truly a once in a lifetime talent because there's no one comparable to the Iron Man of Puroresu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Blainewrote on 01.09.2022:[10.0] "Kenta Kobashi, innovator of the Burning Hammer and one of the faces of All Japan. A once in a lifetime talent who's ring work, charisma, consistency, iconic nature, and general aura is nearly impossible to imitate in this generation. Kobashi gets wrestling. His legendary battles with Misawa, Hansen, Kawada, Taue, and Joe are stablehoods of my personal favorite matches, each having their own specific aura in storytelling. The Burning Lariat to this day remains one of the best lariats in all of wrestling, and the Burning Hammer takes its rightful place on the throne of best finishers. No man will ever match the highs Kobashi had. No man will ever earn the honor of being considered the next Kenta Kobahi. And that's a legacy to go out on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: CTFBwrote on 28.07.2022:[10.0] "Kobashi has to be up there with some of the greatest of all time. A charismatic aura like any other, A wrestling style that's hard hitting but fluid, A wrestler that is a tough son of a bitch that beat the shit outta cancer and has left a legacy unlike any other similar to Misawa. Rating him ANYTHING but a 10 is underrating."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Omnisplicerwrote on 02.05.2022:[10.0] "Easily one of the greatest of all time. My personal favourite of the AJPW four pillars and the embodiment of Kings Road."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: AdamWwrote on 06.04.2022:[10.0] "The perfect wrestler. Great look, could get the crowd invested in a match like no one else with his charisma and fighting spirit, was a master of Psychology and storytelling and is one of the biggest draws in Japanese wrestling history. His match history speaks for itself, he's in some of the best tag team and singles matches of all time. Kenta Kobashi is the Greatest Of All Time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Ratewrestlewrote on 31.01.2022:[9.0] "The man is the GOAT of professional wrestling, currently rated number one on my overall rankings. Every match i have seen of his has been beautiful"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: GriffinXwrote on 17.01.2022:[10.0] "Kobashi isn't just one of the very best to ever do it he has a legit case as the greatest ever. So many classics during his career. It says a lot he started as the weakest of the 4 pillars yer when onto be the one that rivaled Misawa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Wright15wrote on 14.12.2021:[10.0] "Kenta Kobashi is perhaps the greatest wrestler of all time. No one in history comes close when it comes to emotion and pure fighting spirit. There are fewer than ten other wrestlers in history who you can argue match him in work rate. I can only think of four others who gave everything they had each night they wrestled, no matter where on the card they were or how many people were in attendance (Ric Flair, Manami Toyota, Tomohiro Ishii, Will Ospreay). He started his career losing more than 60 matches in a row, yet he managed to get the crowd more invested in him with each loss. As he transitioned from the midcard to the main event, he was involved in some of the greatest tag matches and singles matches of the 1990s, and really of all time. As the triple crown champion, he brought the sellouts back to Budokan in a declining period for AJPW. He singlehandedly, without any strength left in his knees, turned Pro Wrestling NOAH into a major worldwide promotion in one of the greatest title reigns of all time - in an era when wrestling everywhere else in Japan was dying. Many think the Road to the Heavenly Kings began with Misawa's match against Jumbo Tsuruta (for good reason), but I think it began earlier that night, when Kobashi kicked out of Steve William's Oklahoma Stampede. And the Kings Road ended with him taking the throne, a wrestling god if there ever was one."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TigerDiverwrote on 13.11.2021:[10.0] "I found it baffling how I just discovered this man last year. Whenever I feel like wrestling is boring, I go to Kenta Kobashi. This guy is just too good. Honestly, I don't think words, paragraphs or even essays are enough to describe how incredible this guy was/is. Finding a bad Kobashi match is like a mission impossible. Because it simply doesn't exist. Seemingly infinite number of classics with his name on it. What a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: benny5bellyswrote on 27.10.2021:[10.0] "The greatest of all time in my opinion. What more can you say' Hit YouTube and start watching every match you can"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: BEER CATwrote on 13.09.2021:[9.0] "I have to give him a 9 because he's the Pillar of Heaven I always wanted to cheer the least. A legend in any sense of the word, one of the greatest resumes of all time, wildly successful in noticeably different phases of his career - I probably prefer him as a NOAH destroyer to screamin' Orange Boy, and I slightly prefer his 90's tag output to his singles matches. But there's this quality about certain mega-workrate babyfaces that prevents me from *loving* them, especially when I don't really buy them as underdogs, it's the same tiny problem I have with Shawn Michaels and Manami Toyota made worse by the fact that Kobashi was usually the biggest guy in the match. I am absolutely picking nits over the highest rated wrestler on this site, and I offer these words fully aware of that."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: MrJabroniCamelClutchwrote on 02.09.2021:[10.0] "Quite simply , the greatest professional wrestler in history of not just Japan , but arguably in history , has had almost an endless array of classic matches ( his matches against the great Mitsuharu Misawa will always stand the test of time ) , ultra tough and had a in ring fighting spirit like no one else inside the wrestling ring , i could not say i've ever seen Kobashi phone it in or had a match of low standard , simply put , the standard bearer of wrestling that virtually no one compares which only the Late Great Mitsuharu Misawa equals , simply put , no moniker suits Kobashi more than Mr. Pro Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Lalo Camposwrote on 21.08.2021:[10.0] "The greatest wrestler I have ever seen, his matches with Misawa, Joe, Hansen, Dr. Death, Taue, Kawada, Nagata, Akiyama, Takayama, Sasaki and many more is the stuff of legend, he is an icon of this sport."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: JustTapOutwrote on 04.08.2021:[10.0] "God of pro wrestling, most wrestlers today get inspiration from this man. He had classic after classic after classic in his entire career so for that, he gets a 10. I would give him a 12 if I could!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: BrayanLaPrewrote on 12.07.2021:[10.0] "There's a reason why Kenta Kobashi is currently the highest-rated wrestler on Cagematch. An absolute icon of Japanese wrestling who is revered by many as a GOAT candidate. The amount of classics he has is pretty much second to none, including his legendary rivalry with Misawa, his classic U. S. debut against Samoa Joe, and his phenomenal feud with Dr. Death. 10/10. A five-star wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: WrestlingStuffwrote on 21.06.2021:[10.0] "Kobashi is the model for every wrestler and human being. The man had no martial arts records in school or professionally, so he almost got turned down by the AJPW dojo, but he then got accepted under the condition he had to outwork everyone there and invent his own style... and he did. He entered the dojo slim and raw, and got out of there jacked and well built. I don't even need to say what happened next, you guys just see the 5 star ratings he got and the numerous belts he won, along with the Kobashi chants and worldwide love. ICON! LEGEND! KO-BA-SHI!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: JustAWrestlingFanwrote on 06.06.2021:[10.0] "The matches. The intensity. The sacrifices. Words cant describe the amazing career of Kobashi. Top star in two major companies. The single most protected super finisher of all time in the Burning hammer. Legend status."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: The A-Listerwrote on 05.05.2021:[10.0] "Fantastic wrestler. Did great as a babyface and had special connection with the crowd. His matches with Mitsuharu Misawa are legendary. GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: BH62wrote on 30.04.2021:[10.0] "Greatest pro-wrestler on Planet Earth. No one can surpass Kenta Kobashi, he embodies consistency. I cannot find a bad Kobashi matchup. Booked as an eternal looser by Giant Baba during his early years, Kobashi became an ultimate babyface and the crowd was always behind him, like his matches with Kikuchi, hello Can-Am Express. He was always under Misawa during his All Japan years and becomes the final boss of NOAH. His GHC Heavyweight run is by far the greatest in pro-wrestling history. His matches against his three Pillars mates are arguably the best ever. Not to mention Akiyama, Williams, Hansen, Tsuruta, Vader, Takayama and so many others like against Joe as classics. Wrestling machine personified. Even sidelined by injuries and f*cking cancer, he always came back. He's somehow a hero to me. When he knew he was out of the game, he retired in one of the greatest retirement matches ever. Long live Kobashi-san."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: math1823wrote on 18.04.2021:[10.0] "There are some wrestlers that have wrestled a few decades ago but who didso much for wrestling that their contribution to this sport is still being felt today, and Kenta Kobashi is one of them. He is the creator of the most legendary move in professional wrestling, the Burning Hammer, that he used 7 times, and no-one ever kicked out of it. Kobashi is the embodiment of a japanese babyface, hard-hitting, some high-flying moves, big bumps, and a natural connection with crowds that made him over anywhere he went, from Japan to ROH where his match against Joe is an all-time classic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "The Greatest Babyface of all time, the greatest finisher of all time, the greatest title reign of all time, Kobashi is the best pro wrestler ever bar none."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ProWrestlingGuy316wrote on 11.04.2021:[10.0] "In meinen Augen der beste Wrestler aller Zeiten mit einer Aura, an die nur ganz wenige herankommen. Hat so viele zeitlose Klassiker bestritten, was noch bemerkenswerter ist, wenn man bedenkt, dass er sich seit seinen zahlreichen Knie- OP's quasi wie ein Roboter bewegt und dennoch die Massen begeistern konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Ma Stump Pullerwrote on 04.04.2021:[10.0] "I think Kobashi can be spilt into two halves: AJPW Kobashi who was all about high workrate, being a wrestling machine that could do power and agility seamlessly and was easily one of the best performers of the 90's, even doing better than Misawa in some places. His beginnings as a always losing rookie built him up to the crowd as a endlessly impressing eternal babyface, even if he could never quite make that top position. NOAH Kobashi had bionic legs at that point, consistently injured, and was maybe half as physically capable as his younger years, but he just KNEW at all points what was effective and what wasn't as a babyface: he knew when to give away control in a singles match, he knew when to turn up the gas for a comeback, he knew how to play to the crowd effortlessly, and as a result he had the most success during those years despite those shortcomings: his GHC run is well renowned as being possibly one of the greatest title runs ever, with multiple amazing bouts along the way and some surprisingly great matches brought out from some rather unimpressive guys ring wise. Even in his older years he could still go in tag bouts and was very much as over as he ever was. For me, Kobashi is simply one of the greatest. Every part of wrestling from technical work to charisma to selling he understood perfectly and even if his title runs before NOAH weren't quite as big of draws as people would have expected them, he learned and adapted from those and became even greater as a result. He's one of the few wrestlers I'd say is worth every bit of hype he gets."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Golden Loverwrote on 28.03.2021:[10.0] "One of the best ever, when I first saw NOAH around 2004 or 5 it was immediately clear to me that he was THE guy. He instantly stood out and from then I have always been in awe of his power and mystique. I absolutely love Kenta Kobashi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Bad Jobberwrote on 22.03.2021:[10.0] "kobashi is the greatest of all time, he truly perfected his craft and would have been even better if not for his lingering knee problems. absolute wrestling god."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ExcitingProWrestlin3wrote on 16.03.2021:[10.0] "Whoever is rating him 6 or 7, as much as I respect your opinion, I find it difficult to believe how anyone can dislike the craft or atleast what Kenta Kobashi has done. He's undeniably in the top 3 greatest in-ring performers of all time. Truly amazing overall, and always has been. Skilled, innovative, and fantastic in ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: mamboKENTAwrote on 18.02.2021:[10.0] "The comment on here that said that there are two halves of a fan's wrestling life - before Kobashi matches nd after -- such an amazing point. As of right now, Kobashi is the GOAT. The greatest in-ring performer in the history of the sport."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: JBoogieRom28wrote on 11.02.2021:[10.0] "Wow. Someone who actually deserves to be the best on the entire website is 9. 72? Deserves way more because every Kobashi match I've ever seen delivered."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Kungwrote on 27.01.2021:[10.0] "There are two halves to every wrestling fan's life; before they've watched a Kobashi match, and after. I don't know if he's the GOAT, but he's certainly in the conversation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: dinosaurjrwrote on 05.01.2021:[10.0] "KK is a legend and has some of the most infamous and breathtaking matches in puro history, but he has (along with the other pillars) unknowingly influenced Japanese pro wrestling for the worse. Nearly every wrestler is a soulless husk of kk copying what made him successful without understanding what made him to varied results the first time I saw kk match I thought "this is the guy who no sells right" and about 15 minutes later I was thinking jesus he's catching a real beatdown it clicked to me that what made kk special was his selling (sometimes to his own detriment) but damn near every one seems to be blindingly imitating him just seeing the fighting spirit no sell/strike exchange not what built up to it or they like (Kazuchika Okada) get beat down for an painstakingly boring 20+ minutes hit a handful of big moves and win the match supposedly making their opponent look "strong in defeat" and not completely incompetent. There will never be another wrestler with such passion, selling, timing, etc. and although his legacy has left a lot imitators thier can only be one "Mr. Puroresu" 10/10 wrestler 2/10 Legacy"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: rainmakerpunkwrote on 22.10.2020:[10.0] "Kenta Kobashi in AJPW was having the best matches in the company's history, and some of the best matches in wrestling history, this trend continued in NOAH as well, this guy is seriously insane in the ring and his two year title reign is the 2nd best title reign behind only Okada's 2 year IWGP title reign, Kenta Kobashi has more than just the ability to have amazing matches and title reigns, he has so much charisma and he's so damn likeable, just has this charm, only man that can make me root against Misawa is Kobashi whenever they wrestled, and honestly seeing him lose a match hurts"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: brandon062896wrote on 18.10.2020:[10.0] "Great look, amazing ringwork. His matches are hard hitting. His work with Misawa, Kawada, Hansen, Taue and Steve Williams are a masterclass in puroresu!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Roachwrote on 02.06.2020:[10.0] "The 3rd best wrestler ever in my eyes. I do not believe there is and ever will be a person that can match the incredible intensity Kobashi brought every single time he stepped foot in a wrestling ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: VillainClubwrote on 12.05.2020:[10.0] "Was soll man hier anderes geben als 10 Punkte. Neben Misawa der beste Wrestler aller Zeiten. Es gibt nur sehr wenige, die an ihn herankommen. So viele Fantastische Matches, eine Legende im Pro Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: arrancarwrote on 22.10.2019:[10.0] "Truly one of the best wrestlers ever. Kobashi was one of the few wrestlers whose performances took me on an emotional rollercoaster. He could perfectly communicate any emotion at the necessary times, as it was easy for him to switch from 'badly beaten down hero who is just desperate to hold on to whatever little life he has remaining' to 'raging demon who is gonna destroy your entire world', and what's more, the way he switched between these roles was always totally believable. Some of his matches and his performances within them will, I'm sure, last with me forever. What, in my eyes, places Kobashi above his eternal friend and rival, Misawa, is that I think Kobashi's babyface selling was just far more sympathetic (probably because Kobashi never got superman booking like him), thus his matches were always far more engaging because Kobashi would rope me in and make me desperate to see him come out on top. Also, Misawa kind of lost his charm following the NOAH exodus, whereas Kobashi just continued having legit world-class matches, and some people would have good room to make the argument that he actually peaked in NOAH, despite his general athleticism taking a noticeable hit. Overall, this man is a true warrior and an absolutely incredible, amazing storyteller to whom (along with Kazuchika Okada) I am forever indebted to for helping me find my love for wrestling. Your love and respect for Kobashi is one of the few important litmus tests I use in order to figure out whether someone's wrestling opinions are valuable or not."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: JokeyZockeywrote on 16.09.2019:[10.0] "Der beste Wrestler aller Zeiten! Unerreichte In-Ring-Leistungen, grandioses Charisma und eine einzigartige Aura, die wohl nie mehr erreicht werden wird. Wenn ein Mann die Bezeichnung ''Wrestling-Gott'' verdient hat, dann Kenta Kobashi! Wenn ich könnte würde ich 11 Punkte (oder sogar mehr) geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TheGorgis309wrote on 15.09.2019:[10.0] "Kobashi is one of the best to ever walk the planet, and everyone that disagrees is a damn fool. What didn't this guy do? He won championships everywhere he went, pulled out five star classics almost every night, beat freaking cancer before resuming to wrestle at his same consistent level and continued to be this good into his 40s. He also invented one of the most brutal and gut wrenching moves ever, which has been mimicked the world over, but no one could perform the Hammer with the same oomph as Kobashi. Truly the trailblazer of his class."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: NEVERoverweightChampionwrote on 12.07.2019:[10.0] "Great as an underdog, great as the favorite, he could do everything. At his peak he was simply godlike, his charisma and his presence in the ring was second to none. He looked intimidating, he looked like a bear with his huge arms. His athletic abilities were very impressive for a guy his frame, he could tell great stories and had some of the best and most convincing moves. His Moonsault was unbelievable, his Burning Hammer is iconic and he is renowned for his chops but in my opinion he mostly had the best Lariat ever. So much qualities that allowed him to have a lot of legendary matches, and one of the greatest major champion reign, making him one of the greatest wrestler ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: The Sick Lebowskiwrote on 26.04.2019:[10.0] "Gehört für mich neben Rikidozan, Inoki, Baba und Misawa zu den fünf Großen des japanischen Wrestlings. Zahlreiche Klassiker und sein Standing im Puroresu sprechen da für sich. Ganz klar Höchstwertung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Slickooo7wrote on 20.04.2019:[10.0] "His fire as a baby is second to none. He has had so many great matches with so many different opponents. His connection with the audience was amazing. From beggining to end an amazing career. Such a great performer and in my opinion, the greatest wrestler to ever live."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: zephyrwrote on 16.03.2019:[10.0] "In my opinion, Kobashi is the single best wrestler of all time. Consistently great for over 10 years. The only person to ever match him is Misawa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: LandonRyanWyattwrote on 27.01.2019:[8.0] "Kobashi was very good, especially between the mid 90s and mid 00s. Very good matches with Kawada and Misawa."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Makai Clubwrote on 30.11.2018:[10.0] "The ultimate mold for what a wrestler should at least try and inspire to be like - not in the copycat way but in the way of being the greatest babyface of all time but be a total badass as well. Sympathetic but doesn't come across as a loser. Great innovator creating some of the worlds most famous moves and having some of the best matches ever. Big success in the box office too and a total major star. Can you even make an argument for anything less than a 10? Maybe I'm biased but Kobashi is a ten without a doubt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Kenta Kobashi is the greatest wrestler of all time. He was the complete package of talent and charisma. Even injuries couldn't stop him from churning out classic matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Steamboat2511wrote on 01.10.2018:[9.0] "Vielleicht die japanische Legende schlechthin. Im Ring vielleicht der technisch beste japanische Wrestler überhaupt mit zahlreichen Topmatches. Er vermochte es nahezu jeden Wrestler zu einem immer noch ansehnlichen Match zu führen. Leider ist er auch einer der Fälle, der zu lange aktiv war und am Ende (ab 2008) war die ganze Sache nicht mehr so ansehnlich. Aber auch als Fan des American Wrestling muss ich seine enorme Leistung anerkennen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Tomlou12wrote on 17.09.2018:[10.0] "One of the best and biggest stars in Japanese wrestling, Kobashi is rightfully considered a legend. The sheer amount of incredible matches this guy has delivered over the years is immeasurable much like his passion for the sport of pro wrestling. To me he's one of those wrestlers that just has an aura about him, just seeing him make his entrance gives me chills.  An excellent wrestler and one of my personal favorites."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: IsThisWrestlingwrote on 30.07.2018:[10.0] "Kenta Kobashi has to go down as, at the very least, one of the top 5 greatest wrestlers ever. Everyone wants to ride Misawa's jock, but I say that Kobashi is where it's at."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Okaro143wrote on 18.05.2018:[10.0] "No words. Just wow. I am amazed by the talent this guy had. He was one of the greatest wrestler of all time. He is definitely in the top 5 greatest along with Ric Flair, SteamBoat, Mitsuhara Misawa and Okada Kazuchika."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: LrockBesnarwrote on 26.04.2018:[10.0] "A true sportsman and the people's champ who come to the world just to wrestle. He is someone who really wrestles with his heart. People love him because he is a good and courageous man. You can understand when you look at his face that he is really honest. God bless him. He is a real legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ACRogerwrote on 30.03.2018:[10.0] "One of, or arguably the greatest wrestler in history. You could argue he's also had more classic matches than any other wrestler(maybe Misawa or Kawada). Though in my opinion, Kobashi had more charisma and natural talent than the other Four Pillars and he had a great connection with crowds, his facial expressions and emotion are second to none. Among his many accomplishments, 41 main events at Budokan, including headlining 34 sellouts, and was undoubtedly the biggest draw in All Japan behind Misawa and arguably a bigger star than him during his NOAH run.  His rivalry with Misawa is one of the greatest of all time in terms of match quality and was the defining story of his career. The only negatives you could say about Kobashi is that some of his matches set a very dangerous precedent in that many featured the dreaded head drop suplexes and drivers that ruined many wrestler's careers. The drive to outdo their previous encounters with ever increasing danger wreaked havoc on Kobashi and Misawa's bodies. Regardless, Kobashi is still, in my opinion, the greatest wrestler of all time. His charisma, drawing power, and wrestling ability are only matched by few."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: FrozenOnewrote on 15.03.2018:[10.0] "In my opinion, Kenta Kobashi is the greatest performer in the history of the Japanese professional wrestling scene. Excellent worker, master of psychology, innovator of some of the most brutal and iconic moves in history, had some of the greatest matches of all time with guys like Misawa, Sasaki, and Hansen. It should also be said that Kobashi is arguably the greatest baby face performer of all time, as he was always able to get the crowd invested in any match he participated in with his charisma, fighting spirit, and amazing facial expressions. The quintessential wrestler when it comes to in ring performances."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TheMikeThunderwrote on 18.12.2017:[10.0] "One of the greatest wrestlers of all time. One of the best babyfaces of all time. Had great fighting spirit and was a great underdog. Very charismatic. He was the best AJPW pillar in my opinion. Had some of the best matches of all time. Top 5 of all time in my opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Vancouver Victiniswrote on 22.10.2017:[10.0] "Kobashi Is probably one of the best Fiery Babyface underdogs to exist, he had charisma for days and could get you to believe he was hurt when selling. it took him a whole decade to get onto the Level of Mitsuharu Misawa to beat him for that Ace role."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: tykechandlerwrote on 19.10.2017:[10.0] "If not the best wrestler ever, then the second best (or third? can't forget about Kawada! ) The best power wrestler ever, but he blended such perfect technique and storytelling. Truly world class in every way!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: LegibleToe762wrote on 16.10.2017:[10.0] "I'd say Kobashi was almost or even on the same level in-ring as Misawa and they had some of the greatest matches of all time with each other. I'm rating Kobashi higher than Misawa due to his charisma, I genuinely think Kobashi was one of the best babyfaces ever, I've never found myself not rooting for him. His GHC run is something I intend to re-watch and he also had amazing matches in AJPW with pretty much everyone + his ROH match vs. Joe. His life after wrestling has also been entertaining and even his retirement was one of the best I've ever seen, there's nothing I can criticise him on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: The Big Blue Machinewrote on 03.10.2017:[10.0] "Fighting Spirit.  That's what Kenta Kobashi is. His enormous size combined with his stiff offense and his incredible stamina makes him one of the best wrestler that ever lived. He represents 90s' puroresu like no other."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: taabr2wrote on 10.09.2017:[10.0] "In my opinion Kenta Kobashi is the greatest worker in the history of professional wrestling. While his run as the Ace in NOAH was undeniably great it is actually his work during the early 90s when he was the young gun constantly getting beaten up by the veterans that in my favorite work of his."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: PistolPeteMattywrote on 09.08.2017:[10.0] "Simply put, Kobashi was the greatest pro wrestler of all time. He had everything from a fantastic look to near flawless in ring skills. The only person who comes close to matching him is longtime rival Misawa. To say he didn't have a character, that he could just produce big matches and nothing else is just plain foolish and sign of people just watching matches of his in a vacuum. The man was a masterful storyteller in the ring, and the ultimate babyface. Just because he wasn't an undead wizard or something doesn't men he didn't have a character or ooze charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: NikoWrestling7wrote on 04.06.2017:[10.0] "Kenta Kobashi, 50 years old today but has nearly half his age in five star matches, second only to his greatest rival, Misawa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Blood Pumpwrote on 30.03.2017:[10.0] "Of the big three that was Kobashi, Kawada and Misawa Ive always considered Kenta to be the most WWE audience friendly. I know that might sound like an insult but think about that statement; it means he knew how to work a crowd better then his friends (I'd say really only Tsuruta had him tied back in the early 90s) and tended to wrestle a more entertaining flashy match, pulling out a lot of nifty moves. However he never had a problem retaining a good pace. His wars with Misawa and Williams are sights that need to be seen, his tag matches w/ Misawa vs the Holy Demon Army (Kawada and Taue) are works of beauty and are absolutely not to be ignored."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TheRainmaker28wrote on 18.02.2017:[10.0] "It's difficult to find so many compliments to describe Kobashi. This man had everything: The charisma, the badass look, he was a amazing worker with his selling, stiff offensive, devastating moves, a great storyteller, a proved draw and what I consider, the best babyface character in history of professional wrestling. I think that no one will ever top what Kobashi did, truly establishing him self as the greatest wrestler of all-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: strongstyle77wrote on 25.01.2017:[10.0] "Wahrscheinlich der beste Wrestler aller Zeiten. Im Ring kommt nur Misawa an ihn heran. Großartige Matches gegen Misawa, Kawada, Hansen & so vielen mehr. Man brauch nicht viel zu Kobashi zu sagen, eine Legende & wahrscheinlich der beste aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Chekerwrote on 18.01.2017:[10.0] "This man was so charismatic and so great. After seeing his All Japan stuff I thought he was "just" very good but then I checked out his NOAH stuff and I personally think he peaked there. Excellent wrestler, powerhouse, storyteller, and he even took to the air sometimes! They just don't make 'em like Kobashi anymore."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Alex Maedawrote on 02.01.2017:[10.0] "Neben Misawa der beste Wrestler der Neuzeit. In allen Belangen absolut herausragend, hat sich seinen Status als Wrestling-Legende mehr als verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: NastyYaffawrote on 01.01.2017:[10.0] "An absolute legend. One of the biggest names in wrestling history, and rightfully so - Kobashi was absolutely excellent in ring worker, who showcased fighting spirit, emotion, fantastic offense, fantastic selling & great storytelling. Deserves all the respect he gets."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Puro Spiritwrote on 01.12.2016:[10.0] "The greatest in ring worker in the history of Pro Wrestling ..... bar non .... his work speaks for itself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: RainmakerF7wrote on 25.08.2016:[10.0] "From losing his first 63 matches in pro-wrestling, having incredible 5 star encounters with the likes of Stan Hansen, Steve Williams or Toshiaki Kawada, to FINALLY winning the Triple Crown title from Akira Taue in 96', having arguably the best rivalry in wrestling history with Mitsuharu Misawa, to holding the GHC title for 2 years, while selling out Budokan Hall and Tokyo Dome on numerous occasions, to BEATING A FUCKING CANCER and returning after almost 2 years in 2007, to finally ending his career in May of 2013, in what was probably the best and most memorable retirement show of all time. Folks, it doesn't get much better than this. Kenta Kobashi is indeed a legend and a first ballor hall of famer. And for me, the greatest wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: prowrestlingisrealwrote on 25.08.2016:[10.0] "There is no words that can describe the greatness of this man more than him being the GREATEST PRO WRESTLER OF ALL TIME, his devastating moveset, his charisma, how the crowd responded to him ..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Chak95wrote on 19.08.2016:[10.0] "Arguably the greatest wrestler of all time, there isn't much to say, his achievements speak for themselves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: jboyaquarwrote on 08.07.2016:[10.0] "The 'Adam Bede' of professional wrestling: blue-collar, provincial, diligent, integrity, tempestuous, honorable, upright, imperfect in his obsession in that building a bigger and stronger body for the short-term he handicapped his own lasting power. Kobashi was one of the three vertices of the triangle that supported AJPW throughout the 90s and the draw for NOAH during its most successful years. His extraordinary number of singles and tag team bouts and indelible emotional connection he made on a nation not known for their outward emotional expressions is remarkable. Perhaps the only detriment to an amazing career was the shitty entrance music that accompanied him during his most notable title reign."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: BarKing81wrote on 01.05.2016:[10.0] "Kobashi is one of the greatest wresters, and is the greatest Japanese wrestler of all time! He is a five star match machine!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Hanscydewrote on 29.04.2016:[10.0] "To me, the best wrestler of all time anywhere. There's no perfect wrestler (even though many Japanese magazines called Kobashi back then "the perfect wrestler") and if I have to nitpick one thing about Kobashi is that he never knew how to slow it down even when he was in a nothing match and that made him retire early. But despite that, there's probably no one in history that had as many all-time memorable matches as Kobashi did in All Japan and Pro Wrestling Noah. A one of a kind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: JuliTheCage87wrote on 19.03.2016:[6.0] "Rückblickend und ohne Vorkenntnisse betrachtet wäre er nur einer von vielen. Seine Skills waren schon zur damaligen Zeit nicht einmalig wenn man an Kawada oder Misawa denkt - er hat ziemlich viel Glück gehabt. Versteht mich nicht falsch, er war echt ein guter Wrestler und konnte mitreißen, aber er war weder sehr variabel noch "outstanding". So wie Bret Hart nach heutigen Standards kein herausragender Wrestler mehr wäre, ist es Kobashi im Puroresu auch nicht mehr. Ich finde es generell schwierig alte japanische Wrestler zu bewerten, da der Aspekt "Mic Work" nahezu ausnahmslos wegfällt (Sprache, Auffinden von Aufnahmen... ) - was heutzutage bspw. bei einem Shinsuke Nakamura nicht der Fall ist - und das gehört für mich bei Wrestlern einfach dazu."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ApexOfEvolutionwrote on 25.02.2016:[8.0] "Einer der ganz großen des Puroresu. Okay, Promos und Gimmick-Working sind in Japan nicht ganz so wichtig, hat aber im Gegensatz zu vielen anderen japanischen Wrestlern der 90er Jahre mehr Charisma. Die Schlachten mit Misawa oder Taue sind beeindruckend und kommen verdammt realistisch rüber und auch der Körperbau ist einem Kämpfer eher angemessen, als das Zeigen hochgezüchteter Muskelberge. Soetwas gehört zum Bodybuilding und wirkt beim Wrestling eher lächerlich. Ich finde aber auch, dass dieser von Kenta Kobashi genutzte Strongstyle die Gesundheit der Gegner zu sehr belastet. Für mich kommt es beim Wrestling auch darauf an, Aktionen hart aussehen zu lassen ohne die Gesundheit der Wrestler zu gefährden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: pingola12wrote on 28.01.2016:[9.0] "A master in the king's road style and in the strong style, his only flaw was the silly botches he did in some matches, but one true legend and one of the bests in history of Pro Wrestling"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: BlueDiamondwrote on 14.10.2015:"@JacobCass: Ich denke mal, dass du beim falschen Kenta gelandet bist. Kobashi wäre zwar ne Riesennummer, aber das ist nicht drin, Bro. ;)"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Kevin434wrote on 14.06.2015:[10.0] "Für mich der zweitbeste aller Zeiten nach Misawa, workte mit jedem ein gutes Match, er hat sich sein ganzes <leben den arsch aufgerissen fürs Wrestling, seine großartigen Matches werden wir nie vergessen, im Unterschied zu Misawa wusste er wann Zeit ist aufzuhören. Danke für alles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: RonAyyyyyyyywrote on 27.05.2015:[10.0] "Quite simply the greatest wrestler of his era, even better than Misawa in my opinion, even though he doesn't know as many moves. His signature style, techniques, and moves are now standard for strong style matches. His good matches are better than most wrestler's best, and his best matches are truly art. He literally destroyed his own body to be the greatest wrestler on earth, and became rightfully celebrated as a hero in Japan for it. My personal favorite is his tag matches with Misawa and his match with Joe, but Kobashi/Misawa 2003 I think will always be considered his best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Viper99wrote on 21.04.2015:[10.0] "Einer der besten die es jemals gab! Er hatte Super Starke Matches und ist wohl die Japanische Legende Schlechthin"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Wrestling Foreverwrote on 10.01.2015:[10.0] "@JacobCass Du verwechseltst diesen Kenta mit dem KENTA der nun als Hideo Itami auftritt. Das hier ist Kenta Kobashi der hatte zwar Indy Matches aber der ist inzwischen schon länger Inaktiv. Auch hatte Kenta Kobashi nie ein Match in Amerika bei der WWE. Kobashi ist natürlich eine absolute Legende hat viel für das japanische Wrestling getan und sein Tag Team mit Misawa dazu muss man nichts mehr posten außer Weltklasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: sevendaughterswrote on 13.12.2014:[10.0] "Kenta Kobashi is the greatest wrestler of all time. Many guys can work or do great expressions or draw you into their world. Many guys have had great matches and meant a lot to their industry and nation and many guys have drawn big houses or existed through multiple important phases in a company/many companies' histories. Kobashi has done all that and remained the most believable permanent babyface of all time. He is the only wrestler whose believability and passion can bring me to tears. He's given everything for the sport and his everything was the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: yanuswrote on 22.11.2014:[10.0] "One of the all-time greats, Kobashi excelled due to his facial expressions, selling and his ability to structure a match. Sometimes he went a little bit overboard with trying to make all his matches "epic", but I nonetheless regard him as a easy top 20 of all-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Matzinhowrote on 06.09.2014:[10.0] "In den 90er Jahren übermenschlich, Anfang des Jahrtausend immer noch gut, zum Teil sogar sehr gut, nach diversen Kleinigkeiten und schließlich der Krebs-Erkrankung gezeichnet und nur noch aus Nostalgie-Gründen ansehbar. Trotzdem ist Kobashi über die gesamte Karriere betrachtet für mich einer der besten Wrestler überhaupt und von den Four Corners sicherlich die strahlendste Säule, mitunter weil er extrem viel eingesteckt hat und mit seinem Feuereifer immer wieder zurückgekommen ist. Im Ring hat Kobashi mich nie auf ganzer Linie überzeugt. Da fand ich Kawada immer besser. Aber Kobashi ist dennoch meines Erachtens ein Genie und einer, der mit praktisch jedem Gegner ein gutes Match wrestlen konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: superpuroresuwrote on 10.05.2014:[10.0] "The greatest worker in the history of pro wrestling , his legendary matches with Mitsuharu Misawa , Stan Hansen , Steve Williams , Toshiaki Kawada ... will forever be the standard bearer of future matches"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TakerFanwrote on 08.03.2014:[10.0] "Vielleicht DIE Persönlichkeit des Wrestlings in Japan der letzten 25 Jahre. Ein Kämpfer ohne gleichen und ein Fels in der Brandung!  Kenta Kobashi hat mehr Klassiker abgeliefert als jeder andere in meinen Augenund sein Fighting Spirit wird niemals vergessen werden!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: KobashiKentawrote on 26.09.2013:[10.0] "Nach einer Wrestling Karriere, die (nur bezogen auf die Action im Ring, mehr kann ich aufgrund fehlender Japanisch Kenntnisse nicht bewerten) bis auf wenige Ausnahmen ihresgleichen sucht ist einer der größten und besten Pro Wrestler aller Zeiten abgetreten. Hierfür hat er (leider im Gegensatz zu Misawa) einen guten, passenden Zeitpunkt gefunden. Auch im gehobeneren Wrestling Alter noch zu überragenden Matches fähig, was Charisma, Technik, Selling und Härte angeht sowieso über alle Zweifel erhaben. Ich meine, auch wenn der Spruch abgedroschen ist, Kobashi hat Krebs "ge-no-sellt"! Allein dafür 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: alewrote on 11.05.2013:[10.0] "Einer der ganz Großen ist abgetreten. Es gibt wenige Menschen, die japanisches- und Wrestling generell so geprägt haben wie Kenta Kobashi. Er ist immerhin neben Muta, Liger (die kennt vorallem auch wegen ihren Auftritten außerhalb Japans) und Tiger Mask einer der Wenigen, die auch Nicht Puroreso Fans kennen dürften. Und das mit Recht. Für ihn darf es nur eine Wertung geben: 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: y94wrote on 08.02.2013:[10.0] "Unbestritten einer der besten Wrestler aller Zeiten, wobei einige seiner Matches deutlich überbewertet werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: apc24wrote on 25.11.2012:[10.0] "Kobashi is an amazing wrestler, he's been around for a while and has been working great matches from the beginning."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Leonewrote on 22.08.2012:[10.0] "If there was ever a wrestler who resembled Goku from Dragonball Z, it would be this guy.  Along with the likes of Mitsuharu Misawa and Toshiaki Kawada, Kenta Kobashi could be best described as 1 of those guys who ruined wrestling for everybody - not because he is a bad wrestler, but because he set the standard so high that very few can reach it, and anybody who has seen (and liked) his work, has very high expectations afterwards.  He wasn't just 1 of the best wrestlers in Japan, but 1 of the best in the world, and in his prime, he always delivered the goods.  Along with being incredibly strong, he was also an effective overall wrestler, performing a variety of suplexes, DDTs, kicks and powerbombs on opponents of seemingly any size and doing high flying moves such as moonsaults and leg drops.  His backhand chops are of legendary proportions, his Burning Hammer remains 1 of the most dangerous wrestling moves of all time, He innovated moves such as the double underhook DDT and the vertical suplex powerbomb, his Lariat finisher was taught to him by "The Lariat" Stan Hansen himself, his endurance and stamina makes John Zandig look like an attacking water balloon, and he has 23 5-star matches under his belt.  Conclusion: There will only ever be one Kenta Kobashi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ARIZAwrote on 15.06.2012:[10.0] "Ist natürlich heute lange nicht mehr so gut wie noch vor einigen Jahren, wo er etliche großartige Matches bestritt. Leider kann man nur 10 Punkte geben, denn er hätte auch 11 oder 12 verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Miloswrote on 14.05.2012:[10.0] "Arguably the best Japanese wrestler ever. He is the one, who made a sheer enormity on memorable matches with his one of a kind style - though and brutal, but also distinguished and dignified. Even now, in the the twilight of his career, he's still absolutely entertaining thanks to the amazing abundance of natural charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Fighter Daronwrote on 02.02.2012:[9.0] "It could be considered the best or the worst of the fourth, for me is the third."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Senajwrote on 29.01.2012:[10.0] "Eine absolute Wrestling/Puroresu Legende. Er wollte der Beste werden und hat es auch geschafft. Es ist unglaublich was er für Matches auf die Beine stellen kann. Man denke nur an sein Match gegen Kensuke Sasaki. Der absolute Wahnsinn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ShakDragoonwrote on 04.10.2011:[10.0] "Genialer Heavyweight, der einige der besten Matches abgeliefert hat, die ich je sehen durfte. Respekt außerdem dafür, dass er es über all die Jahre seiner Karriere geschafft hat, seinen Wrestlingstil zu variieren. Kenta Kobashi ist King und zum Glück wieder im Ring, wo er hingehört, wie kaum ein anderer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: The last Outlawwrote on 26.07.2011:[7.0] "Klasse Leistung, die er abgegeben hat, er hat zwar mit der Zeit nachgelassen, aber das er in dem Alter immernoch im Ring steht ist eine verneigung wert"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Top-Hardywrote on 09.06.2011:[10.0] "Eine lebende Legende. Mehr muss man dazu eig. fast nicht sagen. Wahnsinn was für Matches er alles schon rausgehauen hat. Wie er nach seiner schlimmen Krankheit zurück kam und dann noch top Leistungen gebracht hat zeigt einfach nur was für ein ausnahme Wrestler er ist. Wenn er keine 10 Punkte verdient hat wer sonst ?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: The Meanbeastwrote on 23.04.2011:[10.0] "Kenta Kobashi ist wahrlich einer der besten Wrestler auf der Welt. Er überzeugt in jedem ach so kleinen Match, bringt hundertprozentige Leistung! Seine Technik, gemischt mit seiner Härte und der Art und Weise, einem Match eine Geschichte einzuhauchen, machen aus nahezu jedem Match ein 5-Sterne-Match. Zusammen mit dem leider viel zu früh verstorbenen Mitsuharu Misawa stellte er epische Schlachten auf die Beine, und es ist nicht verwunderlich dass ihm überall auf der Welt von den Wrestling-Fans Respekt und Ehre entgegengebracht wird. Ein ganz ganz großer in diesem Geschäft, und dafür auch 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Hu-Manwrote on 24.02.2011:[10.0] "975 Five-Star Matches... oder so... unglaublicher Worker. Grandios!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Matt4Wrestlingwrote on 20.02.2011:[10.0] "Einer der größten, die ich je live sehen durfte! Seine härte und Technik sind einfach unerreicht. Es wäre schön wenn er seine Krankheiten endgültig besiegt, um nochmal zu zeigen, was in ihm steckt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Kings Roadwrote on 29.01.2011:[10.0] "Kobashi ist und bleibt der beste Wrestler aller Zeiten und ist meines Erachtens nach noch vor Legenden wie Misawa, Kawada, Muto, Hashimoto etc. zu sehen. Sein Charisma, sein Fighting Spirit und das scheinbar grenzenlose Talent haben es ihm ermöglicht auch unter schwersten Verletzungen Topleistungen zu bringen und NOAH zu tragen. Wenn sein Zustand es zulässt, würde ich gerne noch eine letzte Abschiedstour von Kobashi sehen, die im Budokan endet und ihm den Ruhestand ermöglicht, den er sicht ohne Zweifel verdient hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Rated R Champwrote on 09.12.2010:[10.0] "Knapp hinter Misawa die zweit größte Puroresu-Legende aller Zeiten. Und mit 22 5*-Matches auch der Einzige, der annähernd an erstgenannten heranreicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Berlin Dragonwrote on 18.09.2010:[10.0] "DIE Legende überhaupt. Der beste Worker aller Zeiten !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Double Jwrote on 28.08.2010:[10.0] "Eine wahre Legende und immer noch super genial im Ring. Schade dass er gerade verletzt ist, aber Kobashi hat Noah und AJPW und auch zurecht als eine der besten angesehen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Darbenwrote on 11.08.2010:[10.0] "21 5 Sterne Matches sprechen für sich. Kenne Kenta Kobashi noch nicht so lange aber dank dem Internet kann ich seine Karriere verfolge. Führt technisch saubere Aktionen durch und seine Härte ist der Wahnsinn. Mic-Work und solche Dinge sind mir nicht wichtig. wenn ich Bock auf gutes, Harters wrestling habe, dann gucke ich mir von Ihm ein Match an"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Excellence of Executionwrote on 15.07.2010:[10.0] "Es ist unglaublich, dass Kobashi (allen Widrigkeiten zum Trotz) über so viele Jahre im Ring großartige Matches und heftige Bumps zeigte und dass er bei all dem immer noch dabei ist. Sicherlich geht auch an ihm das Alter nicht spurlos vorüber. Dennoch muss man seine langjährige Qualität auf höchstem Niveau einfach anerkennen. Er produzierte zahlreiche Klassiker, die auch noch in 20 Jahren zu Matches höchster Qualität gehören werden. Dabei brachte er als einziger nahezu so viele 5 Sterne Matches auf die Beine wie Misawa. Für mich neben Misawa und wenigen anderen (Tsuruta, Hansen, Williams, Taue und Kawada) der wichtgste Mann in der (leider vergangenen) Glanzzeit des Puroresus. Und auch darüber hinaus jemand, der einfach alles gibt. Und dafür rufen die Fans zu Recht seinen Namen. Eine absolute Legende! Außerdem für mich noch vor Flair der eigentliche Großmeister des Chops."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Super Dragonwrote on 20.06.2010:[10.0] "Einer der Gründe warum ich Puroresu so liebe, deshalb 10 Punkte für Kobashi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Kenshin Uesugiwrote on 05.06.2010:[10.0] "Kobashi ist körperlich ein Wrack, er hat so viele Verletzungen erlitten und die Krebserkrankung durchgemacht, das er im Gegensatz zu früher richtig steif und unbeweglich ist. ABER wie bei der anderen Puroresu- Legende mit den zerstörten Knien, ist es die Aura, Ausstrahlung und der Spirit der den Körper vorantreibt. Ähnlich wie Muto kann er mit seinem umgestellten Stil immer noch die Leute begeistern, wobei Muto sich im Vergleich zu Kobashi ja geradezu wie ein junges Reh im Ring bewegt. Der Wille macht einiges möglich und alle Fans die ihn heute sehen und sich fragen was an dem so besonders ist, die sollen sich die alten AJPW und NOAH Matches ansehen. Darum rastet die Crowd aus, wenn Kenta Kobashi zum Ring schreitet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Fountain of Misinformationwrote on 01.05.2010:[10.0] "Heute natürlich ähnlich wie Muto durch seine Knie und anderen körperlichen Probleme recht eingeschränkt, dennoch im Rahmen seiner Möglichkeiten immer noch mit der Leidenschaft von einem ganzen Promotion-Roster dabei und vor den unzähligen Klassikern und dem Lebenswerk muss man jetzt, zu seiner aktiven Zeit, bereits ganz tief den Hut ziehen. Einfach ein Wrestler wie kein Zweiter, vor dem sogar Gevatter Tod allerhöchsten Respekt hat. Man sagt dieser hätte Kobashi einmal seinen baldigen Besuch angekündigt, Kobashi ließ ihm ausrichten dass Lariats, Chops und sogar der Burning Hammer auf ihn warten würde, heute weiß man nur dass es niemals zu diesem Treffen kam."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: RickRollwrote on 15.04.2010:[10.0] "Für mich neben Misawa der zweitbeste Wrestler der jemals ein Ring betreten kann. Ihm wird oft nachgesagt das er ein eher "kleines" Moveset hat, aberdas stimmt nicht, wirklich. Er besitzt ein sehr großes innovatives Moveset das er geschickt einzusetzen mag. Verkörpert dazu den Fighting Spirit und es macht mir immer großen Spaß ihm in einem Ring zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: DJ MaSchwrote on 05.01.2010:[10.0] "Der zur Zeit warscheinlich beste Worker der Welt. Er war der erste japanische Wrestler, der mich wirklich fasziniert hat und er hat mich zusammen mit Misawa zum Puro Fan gemacht. Ich kann mich ankein Match von ihm erinnern, indem er mich entäuscht hat. Das Niveau, was dieser Mann seit so vielen Jahren an den Tag legt ist einfach einzigartig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: daniel88wrote on 03.01.2010:[10.0] "alles andere wär ein witz, dieser mann hat einfach eine 1 verdient. schon allein die gänsehaut die ich bei seinem auftritt hatte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Mick Funkwrote on 12.11.2009:[10.0] "Gefällt mir heute so gut wie gar nicht mehr, aber die Leistung in den 90ern läßt nichts anderes als 10 Punkte zu. Ein gewaltiges Lebenswerk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: THE GAME 4-EVERwrote on 12.10.2009:[10.0] "Es gibt Wrestler die gelebt haben und leben die einfach keine wirkliche Begründung brauchen, um die 10 Punkte zu erhalten. Kobashi wäre einer von diesen. Denn all die Klassiker in den 90er, seine Comebacks nach dem Krebs und der Knieoperation, ein Mann der Fighting Spirit verkörpert und auch mit nur wenigen Moves und vielen Chops einen Klassiker aufs Parkett legen kann. Kobashi ist IMO der beste Wrestler den es bis heute gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: hatebreederwrote on 07.09.2009:[10.0] "Dieser Mann ist ein Puro-Gott! Mehr muss man nicht mehr sagen, da alles schon erwähnt ist. Eine wahre Legende. Der Inbegriff des Puroresu. Wer den besten Wrestler aller Zeiten sucht, bei dem sollte der Name Kobashi Kenta ganz vorne auf der Liste stehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: UltimatePwrote on 21.06.2009:[10.0] "Kooobaashiiii ... Der Mann mit den härtesten Chops der Welt, in jedem seiner Matches empfinde ich Mitleid für seine Gegner ... 10 Punkte für diese Legende die zum Glück noch unter uns weilt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: The Excellent of Executionwrote on 16.06.2009:[10.0] "Eine lebende Legende. Mein persönlicher Lieblingswrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Aquifelwrote on 15.06.2009:[10.0] "Lebende Legende. Sicherlich inzwischen nicht mehr ganz in Hochform, aber was dieser Mann (vor allem zusammen mit Toshiaki Kawada und Mitsuharu Misawa, R. i. P. ) im Ring veranstaltet hat, ist und bleibt für die Ewigkeit. Da spielt es nichtmal eine Rolle, dass er nicht gerade der Mann der 1000 Holds ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: theflo438wrote on 15.06.2009:[10.0] "Auch eine der Legenden, die mit dem Tod schon ein wenig in Kontakt kamen. Zum Glück überlebte er den Tumor, Misawa konnte seinem Pech nicht mehr entgehen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Mankirawrote on 13.06.2009:[9.0] "Wahnsinns Charisma, zu 100% im Match und viele epische Klassiker; ich gebe 9 Punkte, einen Punkt Abzug für das Limitieren des Movesets auf Chops"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Ryklon Stephenswrote on 06.06.2009:[10.0] "Die größte Lebende Legende im Pro-Wrestling. Was Kobashi für eine Aura besitzt ist unglaublich. Und in seinen Matches muss man Angst um die Gesundheit seiner Gegner haben. Man munkelt es seien einige japanische Rookies an den Folgen der Chop Serien gestorben. ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Eddiewrote on 02.06.2009:[10.0] "Einer der größten aller Zeiten in Japan, mehr braucht man nicht sagen für die 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Father Nelsonwrote on 01.02.2009:[9.0] "He is the best thing that happened to wrestling. Or the worst. Depends on the individual prospective."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: MrWrestlingwrote on 25.01.2009:[10.0] "Ein sehr guter Wrestler, der in letzter Zeit aber Leider oft von Verletzungen verfolgt war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Manolowrote on 31.12.2008:[10.0] "Neben Misawa und Kawada der beste AJPW-Wrestler der Neunziger. Im Gegensatz zu Misawa aber auch heute noch in der Lage, absolute Topmatches abzuliefern. Overall zweifellos einer der besten Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: caterwrote on 29.09.2008:[10.0] "Die Wrestlingmaschine schlechthin. Es ist genug über Kobashi gesagt wurden, so dass ich da nichts mehr hinzufügen muss. Was Bryan Danielson in Nordamerika ist, ist Kobashi in Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Rancorwrote on 24.07.2008:[8.0] "Ein ganz großer Pro-Wrestler, keine Frage. Mich persönlich konnte er jedoch nie so richtig mitreißen - viele Auftritte in den letzten Jahren haben diesen Eindruck nur verstärkt. Höchsten Respekt für seine Leistungen und auch das Comeback nach dem Nierenkrebs, aber mittlerweile wirkt er auf mich im Ring einfach sehr, sehr unbeweglich. Es macht mich geradezu traurig, ihn heutzutage im Ring zu sehen. Das ist nicht mehr der Kenta Kobashi, an den man sich später erinnern möchte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: e-trom995wrote on 28.06.2008:[7.0] "schließe mich daria unter mir an. Mittlerweile nicht mehr so top wie früher."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: dariawrote on 26.05.2008:[9.0] "lebt mittlerweile von seinem Heldenstatus, aber naja..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Eaterwrote on 11.05.2008:[10.0] "Ausnahmewrestler, der zurecht derart gelobt wird. Die zahlreichen Klassiker sprechen für sich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: AnFuwrote on 26.04.2008:[9.0] "Selten solche Reaktionen in Japan gehört, wie für Kobashi. Klasse Typ, ein Gesamtpaket und ein Topmatchgarant. Ganz groß!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Fran7iCwrote on 12.04.2008:[10.0] "Kannte ihn erst garnicht, aber er ist wirklich legendär!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: EvenflowDDTwrote on 26.02.2008:[10.0] "Ein Wunder das er nach den Backdropdrivern Kobashis noch lebt :D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: FiveStarwrote on 07.02.2008:[10.0] "Wahrscheinlich der vollkommenste Pro-Wrestler aller Zeiten - eine geniale Symbiose aus Ausstrahlung, Fighting Spirit und technisch hochwertigem Wrestlingkönnen. Kobashi zieht jeden Fan in seinen Bann: eine absolute Ausnahmepersönlichkeit und ein Ausnahmekämpfer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Moshpit-Hooliganwrote on 21.01.2008:[10.0] "So muß ein Wrestler sein. Technisch perfekt, gute Power Moves und stiff bis zum geht nicht mehr. Wenn man einen WWE Fan einen perfekten Wrestler zeigen möchte, dann sollte man ihn Kenta Kobashi zeigen. Bin der Meinung das er immer noch fast genau so gut ist wie früher...... meine lieblings Matches von ihn sind gegen KENTA und Steve Williams."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: jimpanse1980wrote on 01.01.2008:[10.0] "Wenn ich mir hier einige Kommentare ansehe, dann dürften Alle, die noch mit 50 oder älter im Ring stehen keine 10 P mehr bekommen, da sie ja mit dem Alter (verständlicher Weise) schwächere Leistungen zeigen. Soll man aber deswegen Männern wie Kobashi oder Flair nicht die volle Punktzahl geben? NEIN, denn sie sind Legenden und haben diesem Sport einfach so viel gegeben, dass hier nur die Bestnote stehen darf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: D-Stylewrote on 07.12.2007:[10.0] "Kobashi kann nur eine "1" gegeben werden. Die Chops, der Spirit, die Intensität im Match: Kobashi hat Gottstatus. Ganz klare 1 ohne zu zögern"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: SternessDustOmegawrote on 05.12.2007:[10.0] "Definitiv eine lebende (und endlich wieder aktive! ) Legende des Pro Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Matt Mackswrote on 04.12.2007:[10.0] "Einer der größten Puroresu Stars aller Zeiten, darauf gebe ich Brief und Siegel. Hatte bereits nur ein Jahr nach seinem Debüt seinen ersten PPV Main Event mit den AJPW Legenden Tsuruta, Tenryu und Hansen. Im goldenen Zeitalter von All Japan folgten viele weitere zusammen mit Misawa, Kawada, Williams, uvm. Auch der jahrelange Missbrauch seiner Knie konnte ihn nicht stoppen, als er 2003 nach fast zweijähriger Pause mit einem neuen Stil ("Chop-bashi") in den NOAH Ring zurückkehrte, um in den folgenden beiden Jahren die Puro-Fans erneut zu faszinieren. Selbst ein Nierentumor konnte Kobashi nicht stoppen und sein Return Match zeigte, dass mit Kobashi auch im Jahr 2008 zu rechnen sein wird, wenn es um die besten Matches und Fanreaktionen im Wrestling gehen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: LexLuger4everwrote on 21.11.2007:[10.0] "Ist in Japan definitiv eine der größten Legenden aller Zeiten, das muss man anerkennen! Schade nur, dass er in den Mainstream Bereich der US amerikanischen Ligen nie großartig involviert war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: SuperRKOwrote on 21.11.2007:[10.0] "Seine Matches muss man gesehn haben! Er schickte Omori schlafen mit seiner Bomben Clothesline und seine Matches mit KENTA einfach fabelhaft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Mediwrote on 07.09.2007:[8.0] "Sorry, aber ich habe mir noch mehr aktuellere Videos angesehen und das ist einfach nicht mehr das selbe. Nicht falsch verstehen, denn Kobashi war und ist immer noch einer der ganz großen, doch die Leistung gegenüber früher ist einfach schwächer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Steven McWheelerwrote on 27.06.2007:[8.0] "Nahezu kompletter Wrestler, leider fehlt ihm Charisma! Naja und sein Micwork kann ich nicht so beurteilen^^"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: HubertHuhnwrote on 24.06.2007:[10.0] "Perfekte Ringpsychlogie, perfektes Selling und stiff as hell! Einer der Besten-ohne Zweifel..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: King of Queenswrote on 24.06.2007:[10.0] "Man muss sich nur angucken, wie viele Klassiker es mt ihm gegeben hat, um zu wissen, das er zur absoluten Weltspitze gehört."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Knurkselwrote on 24.06.2007:[10.0] "Dieser Mann ist Pro-Wrestling, da kann man über einen Samoa Joe doch nur lachen. ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Hirnklopswrote on 24.06.2007:[8.0] "Schon saugut, aber ein klein wenig überbewertet, meiner Meinung nach. Ich kann mit diesem Japan - Käse aber auch nicht sooo viel anfangen..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: STRIGGAwrote on 24.06.2007:[10.0] "Wenn ich an Pro-Wrestling denke, ist Kenta Kobashi der erste Name, der mir in den Sinn kommt. Dieses Niveau, welches er über viele, viele Jahre gehalten hat und welches immer wieder für Traum-Matches mit immer anderen Gegnern sorgte, ist einfach nur fantastisch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Pulpulwrote on 24.06.2007:[10.0] "Kobashi ist das Maß aller Dinge. Platz 1 für ihn definitiv ein Muss, alle andere Wrestler müssen sich an Kobashi messen lassen. Kobashi ist DER Pro Wrestler, keine Frage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Sabu316wrote on 24.06.2007:[10.0] "Wrestling in Japan, wenn man daran denkt muss einem einfach der Name Kenta Kobashi einfallen. Er ist das Sinnbild für unglaubliche Matches. Leider ist er an Krebs erkrankt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: jesicawrote on 04.02.2025:"https://studyx.ai/questions/4ljb19z/is-priceline-free-cancellation-within-24-hours-is-priceline-free-cancellation-within-24"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: anarchovampwrote on 27.12.2024:[10.0] "Quite possibly the most mythical figure in wrestling and for good reason. A goat-level performer for basically his entire career, along with putting on some of the best shows at the time with NOAH as their booker, while also simultaneously functioning as their top ace when Kobashi underwent treatment for cancer. Simply put, the perfect wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ZephsPancakeswrote on 06.12.2024:[10.0] "Quite simply the greatest professional wrestler to ever live. He and Kobashi will always be 1A and 1B for me personally but Misawa always tips it. The epitome of Kings Road; Misawa, for better and unfortunately for worse, gave everything for wrestling and for NOAH. The work of Misawa will live forever, carried on in present day and will definitely be carried on in generations to come. The emotions he was able to draw from a crowd, the matches he had bell to bell, everything about him is exactly what you'd want from a professional wrestler. There will never be another Mistuharu Misawa, truly one of a kind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: bustopboywrote on 20.11.2024:[10.0] "Quite possibly the greatest wrestler to step foot into a squared circle. One of the iconic four pillars of heaven. His matches and rivalries with Kawada, Kobashi, and Tsuruta in AJPW and NOAH(which is his creation) not only defined puroresu's kings road style, but all of pro-wrestling and still influences people to this day like some of the best in Samoa Joe, GUNTHER, Eddie Kingston, etc. He certainly earned the nickname Mr. Triple Crown with his amazing title defenses and title reigns and trust me when I say those championships wore him. Nothing is more bone-chilling in wrestling than when Misawa would come out to ring in his iconic green robe and the crowd is as loud as they can just belting MI-SA-WA! MI-SA-WA! at the top of their lungs. Not even to mention his moveset of forearm strikes, the tiger drive, and emerald flowsion. He just explodes with power and is just a beautiful storyteller in the ring. Kawada finally overcoming Misawa is ultimately one of my favorite moments OAT in pro-wrestling and that is not only due to Kawada being legendary, but Misawa's ability to be a perfect pro-wrestler and play into any role that he's given or placed into based on his positioning of the match or rivalry that he is attached too. There is simply nobody like him in wrestling and he has more than defined a beautiful style of puroresu. Unfortunately, with all this said, we lost the living legend way too early and it is one of the biggest tragedies to ever happen in a ring. He gave his sport his all and he will be remembered as such and will be respected and revered for the entire history or pro-wrestling. Mitsuharu Misawa is truly a legend that will never be forgotten and he truly was the one and only emerald warrior."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ItsAllAWorkAnywaywrote on 18.11.2024:[10.0] "MISAWA! MISAWA! The guy was a legend in Japan and for good reason - This maneuvers were game-changing and he had the ability to make 50 minute matches feel like they breezed by with how well they were laid out (and while his compatriots deserve some credit, there was a reoccurring theme with great puroresu matches and matches featuring Mitsuharu Misawa.) Regrettably, he never made the same splash state-side and even more regrettably, he died in the ring following a botched suplex. His legend is hard to ignore, though, and his influence in wrestling will be felt across both sides of the Pacific for generations."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: jsbortswrote on 26.09.2024:[10.0] "Misawa has the catalogue, the moveset, the aura, the historical impact, the success in multiple companies, the success with multiple characters, the abilty to reinvent himself, and the ability to connect with audiences. Undeniably thought of as one of the most gifted wrestlers of all time for obvious reasons, and innovated countless moves and told such a wide variety of different stories. One of, if not, the best (though, for my money, my third favorite pillar! )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: perconflncnswrote on 22.08.2024:[10.0] "Greatest wrestler to ever step in a ring. The greatest triple crown champion in history, he is truly the one and only mr triple crown. Wrestling was never the same after misawa, he put every ounce of his soul in the ring every time he was between the ropes. There is only a handful of wrestlers who really could get a crowd to cheer for them like misawa, i dont think you could find a match where the roof isnt about to blow off the place from misawa chants. Truly the greatest to ever do it, a genius of wrestling in all aspects and someone every wrestler and wrestling fan should study."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Willie 19200wrote on 15.08.2024:[10.0] "In my opinion he is the best wrestler of his time and top 3 of all time. he put so much effort to change pro wrestling forever. Hell, he sacrificed his health for the sport. Him and the other 3 pillars; Kawada, Taue, and Kobashi, all worked together to make some of the best matches the wrestling world has, and may ever see, not to mention the many he had inspire to follow in his footsteps and try to be a legend just like the "Mr. Triple Crown.""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: nabigoyewrote on 11.08.2024:[10.0] "Dieser Mann hat so viel für diesen Sport getan, wie kaum ein anderer. Als Wrestler in meiner Top 3, knapp hinter Kobashi und einfach nur Weltklasse. Er war seiner Zeit weit voraus. Die Athletik, die Technik, Selling, wie man ein Match und eine Crowd worked. Seine Rivalitäten mit Kawada, Kobashi und den anderen Three Pillars generell. Alles. Für NOAH und Puroresu so viel getan und gegeben, schlussendlich sein Leben. Wir können Mitsuharu Misawa alle dankbar sein. Eine klare 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: KobashiChopMewrote on 02.08.2024:[10.0] "Misawa is another guy who you could make a very solid case for being the greatest to ever lace a pair of boots. I can see why everyone would think so, as in my opinion he is tied for first. Misawa knew how to get a crowd behind him. Every time he set foot into the ring he knew how to work. People should study Misawa tapes to try and get a better understanding of the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Zak22wrote on 28.07.2024:[10.0] "Possibly the greatest wrestler of all-time. Misawa first came to prominence under the Tiger Mask gimmick and established himself as a good grappler with some good high-flying but no one could have seen what he'd become after he took the mask off. With the mask off, Misawa became the face of All Japan, as the main guy in AJPW, Misawa was a perfect in-ring and he bought massive amounts of charisma and intensity to every match. Misawa's matches with Jumbo, Kawada, Kobashi and Akiyama were fantastic, show stealing events. Then Baba died and after some politics Misawa went on to form Pro Wrestling NOAH and make them the number 2 promotion in Japan and 3rd biggest in the world, Misawa in NOAH clearly declined but he still had great matches before his unfortunate death in the ring. I do struggle to watch Misawa landing on his head knowing what would happen, but also knowing the end of Misawa's story makes his immense highs feel even higher and makes me emotional on occasions. Misawa had the ability to make me pop off a single elbow strike... which quite frankly no one else can (well maybe Kawada), Misawa's in-ring action is exciting and gripping. RIP to the GOAT, you excited us in the ring, changed the whole industry with NOAH and left a legacy few others can compete with."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: munrapido3wrote on 10.06.2024:[10.0] "Misawa was such a once-in-a-lifetime wrestler and definitely one of the most legendary professional wrestlers in the history of wrestling. He had everything a wrestler needed; he had the charisma, he had the athleticism, he had the near-perfect moveset, he pretty much had it all. He serves as one of the best examples for young upstarts in wrestling on how to be the greatest wrestler ever. The most notable problem about Misawa was that he was too passionate about wrestling; he loved the business so much, he died in it. Not to note his notorious obsession of neck bumps which had a long-term consequence of death in 2009. It made his legacy, or atleast the legacy of King's Road style he was famous for, a bit problematic. Nonetheless, Misawa is a must-watch wrestler for new wrestling fans and should be recognized as one of pro wrestling's greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Wrestling Foreverwrote on 01.05.2024:[10.0] "Sein Tod war 2009 solch ein Schock er hinterließ eine riesige Lücke die man irgendwie nie bei NOAH richtig füllen konnte. Mitsuharu war einfach einzigartig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Pigeon Scratchwrote on 29.04.2024:[10.0] "A contender for quite literally the best wrestler of all time and one of the most important and influential, at least in Japan. He sacrificed his health, and eventually his entire life to change professional wrestling in Japan, and in turn professional wrestling as a whole. He made every match he was a part of mean something, he elevated each bout and opponent he faced and with every teammate he worked with. He is a part of some of the best matches of all time that will stand the test of time and will be endlessly rewatchable. He, alongside the Four Pillars of Heaven, were what made the best years of AJPW, and after Giant Baba's death, he was what led to creating one of the best wrestling promotions of the 2000s. He sacrificed so much for the business, and I don't think we can ever thank him enough for what he did. Thank you Misawa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Oddtalkwrote on 29.04.2024:[10.0] "Simply one of the greatest to ever step into a ring. Top five, minimum. His technical skill, ability to tell stories through the action, and his surprising athleticism make him one of the best of all time. It's a shame we lost him at all, especially when he should've retired two years before. He deserves to still be here, working behind the scenes, no longer battering his body with dangerous bumps. In a better world, that's what he's doing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: jcheng777wrote on 24.04.2024:[10.0] "Personally he is easily the greatest and most influential wrestler of all time. That match with Kawada in 94 will stand the test of time as the greatest athletic performance of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ABQMIKEwrote on 15.02.2024:[10.0] "The greatest! " I could just put that and every wrestling fan would understand. His aura, his ring style, and his love for wrestling was the complete package. Every match he had seemed big to me. I could never put my finger on it but I do know that I always loved PURO but Misawa made me appreciate it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: KEIwrote on 01.02.2024:[10.0] "Mitsuharu Misawa is personally my favorite Japanese wrestler of all time. Second is Kobashi. The fact that Misawa is one of the greatest professional wrestlers can't be disputed. 10 out of 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Wrest lingaddictionwrote on 19.01.2024:[10.0] "One of the greatest if not the greatest technical wrestlers in history. He put on banger after banger and for his efforts was rewarded with multiple top titles. When NOAH started it relied a lot on Misawa. Despite the immense pressure this must have put on him I still look at that period in his career fondly."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Ingoldwrote on 16.12.2023:"The greatest professional wrestler to ever live. I say that with no hyperbole. He is the number 1 wrestler I study."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: thewrestlinguywrote on 13.12.2023:"[10.0] This man laterally gave his life for this business his fueds are great he wrestled kings road style which is dangerous but cool he had natural charisma and a love for wrestling sad to see him go out the way he did the stuff he did in all japan and pro wrestling Noah was great a match of his i recommend watching is when he faced stan Hansen for the AJPW triple crown its just good."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Luna100wrote on 01.12.2023:[8.0] "Mitsuharu Misawa is a very overrated wrestler. While he is one of the most important wrestlers of all time, by no means is he one of the greatest wrestlers of all time. My main problem is that he has very formulaic, he can go against the formula, but he tends not to, and I know may praise him for his stoicism, and sometimes it works, but often it can just make him more dull than his contemporaries. He has a lot of good strikes, and can tell a good story, but he can still not connect more than he should."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: JediSaiyanMaster1203wrote on 19.11.2023:[10.0] "Mitsuharu Misawa is arguably the greatest professional wrestler of all time, he was one of the most consistent and prolific and has left a long lasting influence even after all these years after his death. Misawa is one of the best in ring performers ever, showcasing he can do any style you give him, showcasing his high flying abilities under the Tiger Mask gimmick he worked under, and then showcasing his storytelling and technician style during the 1990s up until his death, he was a well crafted wrestler. His rivalries are that of legends, matches and feuds that are still discussed and held as bench marks to this day whether it's his feud with Kenta Kobashi or Toshiaki Kawada, every wrestling fan is at least aware of these. He's also an innovator of tons of classic wrestling moves that are still being used by many wrestlers to this day, moves like Emerald Flowsion and Tiger Driver to name a few are moves you can see many guys nowadays using. Misawa's influence is incredibly significant, especially on the independent scene, which is amazing considering he rarely ever worked in North America, mostly sticking with Japan with a few matches outside the country. Mitsuharu Misawa is also one of the greatest sellers and bumpers of all time, going for a more realistic and subtle way than doing a more traditional or flashy way like some of his contemporaries did, which made him easier for the audiences to get behind. Overall, Mitshuaru Misawa is a legend who's impact can still be felt all around the wrestling industry for being one of the all time best to ever do it. R.I.P. Mitsharu Misawa"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: FattitudeErawrote on 31.10.2023:[10.0] "As previous comments have said, Misawa's aura coupled with his ability to make everything he did meaningful make him one of the greatest of all time. I have recently started working my way back through his match catalogue and I am yet to find a match I don't find enjoyment in. There may never be another like him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: texasyoshwrote on 21.08.2023:[10.0] "As far as personal enjoyment goes, Misawa is not my favorite "pillar" of the AJPW four. But there's something that's so undeniable when his music hits, the elbows fly, and when the crowd comes alive. It's the presence of being the Ace. And I think as far as company Aces go, Misawa is a top tier one, in two companies. Peak years are 1990-1994 for me. Super Generation Army, his quest to getting to the top of the card, is incredibly interesting to me. As booker he was dealt the hand of mismanagement and differing philosophies with Matoko, and his untimely passing removes a potential final third of his career. His entire run in AJPW is recommended watching for any pro wrestling fan, as well as some of the first years in NOAH."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ElMatadorwrote on 05.08.2023:[10.0] "Misawa wrote the book on how to put together a wrestling match. Every detail mattered, no wasted motion, genius! Anyone reading this who didn't have the privilege of growing up watching Misawa work, go back and watch him. I don't disagree with other comments that we may never see another on his level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: flipflopdoritoswrote on 25.07.2023:[10.0] "the goat. everything he did, from his demeanor, to his moveset, to his selling, his storytelling, was all perfect. i doubt we'll ever see a wrestler as good as misawa"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Fluerrewrote on 23.07.2023:"Mein persönlicher GOAT. Er hat Wrestling verändert und hat für seinen Sport gelebt (und ist auch für seinen Sport verstorben). Diese unfassbare Ausstrahlung gepaart mit technischer Finesse und Härte. Einfach seiner Zeit voraus gewesen."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: LGL19wrote on 28.06.2023:[10.0] "One of the greatest wrestlers of all time, could tell amazing stories in the ring and could keep you engaged in some amazing long matches. He had some fantastic matches with Kobashi, Kawada, Taue, Akiyama and Tsuruta. Just an unbelievable talent and i wish he was recognized more in western wresting."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: TripleCrownwrote on 01.04.2023:[10.0] "Without a doubt the greatest wrestler of all time. People talk about the likes of Flair, Steamboat, Bret Hart, Shawn Michaels, etc., but none of them are even close to being on the same level as Mitsuharu Misawa. His in-ring work was second to none. Excelled when he went under the Tiger Mask persona in AJPW and took his career to the next level by unmasking mid match. Was the top dog in AJPW throughout the 90s and left to start Pro Wrestling NOAH which overtook AJPW and even rivaled NJPW at one point in the mid 2000s. Misawa had won it all and done it all in professional wrestling. In my opinion, he is the greatest of all time. Others may come close, but nobody can take that top spot away from him in my eyes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Puro113wrote on 14.03.2023:[10.0] "There will never be another like him. He defined an era of pro wrestling with his legendary bouts with the likes of Kobashi, Kawada, Taue, Tsuruta, Akiyama, Williams, et al. His legacy is assured and his influence far reaching and monumental. He is truly one of a kind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Makai Clubwrote on 05.03.2023:[10.0] "After a lengthy period of being utterly medicore as a Satoru Sayama wannabe, Misawa's luck changed with a few shady business dealings that lead to spots being opened on the card. He lost the mask and his legacy starts from there. Suddenly, he has charisma, his wrestling has energy, purpose, orignality to it. The fans take to him to a point where only Giant Baba rivals him as the guy in All Japan's history, and it's hard to compete with that. Misawa is truly a world class wrestler. One of the greatest wrestlers of all time. A massive draw for his home promotions (AJPW and then NOAH) until his death. His wrestling needs no analysis. And while he has his flaws, his strengths are too great. His worst attributes come with his booking and promoting skills, which were flatline around being medicore to decent, argubly being helped by the foundations Baba gave him once he took the book and then created NOAH. But those periods still gave fans great memories, iconic wrestlers and famous matches to this day. Misawa is an icon. Perfect? No. But legendary nonetheless."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: KKeanelwrote on 25.02.2023:[10.0] "Tremendous individual, alongside Kobashi - a king of puroresu. It sucks that wrestling literally took his life, but in some way i'm glad that he died during something what he really loved."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: benh2wrote on 11.01.2023:[10.0] "If not the greatest, definitely in the top handful. As a worker he just had all the tools. He would tear the house down week after week and it looked like a stroll in the park for him. He had that perfect combination of natural talent and an unrelenting commitment to wrestling. Even in his earlier years he did some great work as Tiger Mask, so much so that they had to unmask him because the fans were chanting "Misawa" during his matches. Then he truly broke through and the 92-98 run was pretty much wrestling perfection, even as injuries started to pile up. Still continued to bust out all-timers in NOAH long after his body had peaked."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: TheAWF105wrote on 11.01.2023:[10.0] "One of the greatest of all time. Classics with Tsuruta, Kobashi, Kawada, Taue, and Akiyama. In my opinion, the best of the 4 Pillars. I was very late to appreciating his greatness, wish I appreciated him sooner. Really liked that he had several moves that could end the match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: amhlilhauswrote on 24.12.2022:"Misawa in my opinion is the best in ring worker ever. Everything he did in his prime looked effortless. He was obviously an all timer by 1993 and he was the obvious choice as all japan's ace."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: devwilwrote on 26.10.2022:[8.0] "I know it's sacrilege, but--after watching a lot of his best-regarded matches--I think Misawa is really overrated. Not because he was a bad wrestler (not at all), but because he's a distant third of the four AJPW pillars, behind Kobashi and Kawada. There's no denying his impact on puroresu via his AJPW feud with Tsuruta, the founding of NOAH, and so on, but I have to say: too often I find him to be kind of dull. He's got good offense and smooth reversals, but I think his selling is frankly kind of weak in my eyes and a lot of the time he weirdly looks bored to me during his own matches. I like him a lot better in tag matches than in singles matches."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: wrestlingreviewerwrote on 11.10.2022:[10.0] "The best elbow strikes ever .He was highly Athletic for a man his size and the biggest star in AJPW intense and took every bump on his head He was so influencial his death killed the King's road style and made every wrestler be a little more protective of his neck Unbelievable performer RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: benny5bellyswrote on 26.07.2022:[10.0] "He is probably my least favourite pillar but he is also in pretty much every single one of my favourite ever matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Kingmoose22wrote on 21.07.2022:[10.0] "In my own completely biased opinion Misawa is the best wrestler to ever walk the earth. He was so well rounded and so innovative in the ring. His matches were awesome and some of the best in the world. Just a fantastic performer top to bottom."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: UltraNano54wrote on 16.06.2022:[10.0] "As many have said, he is an almost perfect wrestler and a real jack of all trades with no real noteworthy weaknesses. He always knew how to put on a show and do something breathtaking."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: arrancarwrote on 13.02.2022:[10.0] "If you're like me and you form your initial opinion on Misawa based only on watching a handful of his most highly rated matches, you'll get the impression that he is a robot-like stoic character who never show emotions, never sells, and just got over because of his superman push. I still considered him an amazing wrestler, but no-one deserving of a 10/10 rating. Having now seen a good amount of his 90s AJPW work plus some of his NOAH work while he was more spry, I have to conclude this dude is one of the GOATs. His wrestling style was unlike anything else in Japan at the time he was on top, since having previously been a junior with the Tiger Mask II gimmick, he brought over a lot of impressive acrobatic and high-flying spots to his heavyweight matches. It was awesome seeing a guy of Misawa's size fly around, since his relatively large weight meant that all his flying attacks connected like absolute missiles that would obliterate his opponents or at the very least convincingly knock them down. No-one else in the AJPW main-event scene moved around like Misawa, so he was instantly a fan favourite for that reason. Then there's also his signature strikes and power moves. Misawa had a variety of absolutely fantastic suplexes, which in appropriate 90s AJPW fashion would absolutely wreck his opponents. But okay, there's Benoit, Lesnar, and Angle who were also known for their suplexes. Well, how about a wrestler known literally just for their elbows and forearms? Because Misawa would absolutely KILL with those stiff strikes he'd throw, which was usually also when he'd show his emotions getting the better of him, as he often couldn't stop himself just repeatedly smashing away at his opponent. That's the thing about Misawa: yes, he was stoic and 'collected' with his emotions, but the actual array of moves he hit showed that he was anything but complacent or uncaring. An uncaring man doesn't destroy his opponent's neck like that, or genuinely knock them senseless with a brutal strike to the face. Misawa was the handsome badass who smartly chose the right moments to show him in real pain or getting fired up, since then those emotional moments would feel far more special because of how rare they were. There's also the fact that Misawa was a fantastic seller and bumper. His selling was a lot more restrained than someone like Kobashi, who wore his emotions on his sleeve and always communicated his struggles clearly. Misawa's selling style was different (neither better nor worse), being a lot more subtle and less "showy" in the traditional pro-wrestling style, which likewise allowed him to connect with fans because he appeared more realistic with his experiences of pain and discomfort. His bumping was absolutely godly, and he sadly put his body on the line so frequently to the point it cost him his life. At the very least Misawa will never be forgotten for the legendary performances he gave alongside other fellow legends."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Ratewrestlewrote on 31.01.2022:[9.0] "One of GOAT's of professional wrestling, only behind Kenta Kobashi in my eyes. He in ring work will never be matched again"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: GriffinXwrote on 16.01.2022:[10.0] "I honestly don't know how you can look at this man and say he's not a 10. He was the top man at the time All Japan was at its peak, numerous great wrestlers talk about his influence. So many classic matches. My guess is lower ratings are "Fans" who the misconception being from Japan mean no character. Except those that watched know his character work was amazing ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: mmcoorwrote on 02.12.2021:[10.0] "Misawa is the greatest wrestler ever. ther isnt and will never be anyone like him in the world of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Okaro143wrote on 22.10.2021:[10.0] "Legendary wrestler. One of the greatest wrestler in professional wrestling history. An outstanding performer with a record 25 *****+ matches from Dave Meltzer. ACE of AJPW during it's height. Legendary rivalries with Kenta Kobashi and Toshiaki Kawada."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "He is the Ace of Wrestling, I can't say nothing new about this man, an icon of profesional wrestling and a great promoter/booker. Long Live the Esmerald Warrior"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: sami07wrote on 26.09.2021:[10.0] "He just is the best wrestler of all time in my opinion. He has an insane charisma, he is absolutely perfect in a ring, he has everything a wrestler dreams of"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: No Onewrote on 30.08.2021:[10.0] "Long live the legacy of Mitsuharu Misawa. All the legendary matches, the legendary feuds with Jumbo Tsuruta, Kenta Kobashi, Toshiaki Kawada, & Akira Taue, playing a part in the "Tiger Mask" lineage, all the moves he innovated (including my favorite move of all time: The Tiger Driver '91), being the ACE of AJPW during the legendary "Four Pillars of Heaven/King's Road" era, being the unmistakable 1990's Wrestler of the Decade, being the founder of Pro Wrestling NOAH, which is still one of the top promotions in the world after his passing, being so influential to so many male & female wrestlers that I see around the world doing moves that he created such as: Chris Hero, Tyler Bate, Toni Storm, Syuri, Kaito Kiyomiya, Konosuke Takeshita, among so many others. WOW, what a great legacy for a great man. RIP to the legendary Mitsuharu Misawa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: BH62wrote on 27.07.2021:[10.0] "He died from his passion and I think this is the way he would have want to die, like a greek soldier on the battlefield. With the three other Pillars, Mitsuharu Misawa changed my vision of wrestling. I remember being completly shocked the first time I watched a Misawa's match. He was an artist. He maybe lacked a bit of charisma in my view but reprensented to me the honor and class of pro-wrestling. The man is quiet but can destroy you in a couple of seconds. His shyness in the ring helped him to become what he was. Greatest in-ring worker of all time. Absolute classics with everybody we wrestled. Even in his later career in NOAH, Misawa was great. He was surely broken down but the passion was so deep, he had to wrestle for an audience who asked for him. Put his body on the line till the end. It's sad and also epic. All hail to Misawa-san, a wrestling genius, he has inspired so much the next generations."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: C1aranTTwrote on 26.06.2021:[10.0] "Greatest wrestler of all time, when I think of honor, class, technique & ability, Mitsuharu Misawa is no. 1"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Josh Drakewrote on 17.06.2021:[10.0] "One of my favorite wrestlers ever, I unfortunately didn't get to see his work until he was dead, but I can still safely say that Mitsuharu Misawa is the greatest worker that ever lived in this business. He is one of the finest athletic specimens in the sport. He may be 250 lbs. but he moves like a junior heavyweight, a feat only rivaled by his fellow colleague Kenta Kobashi. His matches with Kobashi and Toshiaki Kawada are made legendary not only for their performances, but because of the boom of tape trading and Dave Meltzer's affinity for Japanese wrestling. I personally would say that Misawa could outperform any of the so-called 'GOATs' that came out of the United States, and would even put money on it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Unal ERDEMIRwrote on 27.04.2021:[10.0] "In my opinion, Mitsuharu Misawa is the best ever wrestler in the world. He is the God of Puroresu. Evertyhing Misawa did was absolute special. Espeacially his elbow strikes were exclusive. His matches was pure and orgasmic to watch. Rest in peace, greatest in-ring worker of all time, Mitsuharu Misawa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "The God of Puro. The Ace of King's Road. Never forget that Misawa's. Elbow. Is. God. What can I say that hasn't already been said? His match with Bret Hart isn't as bad as people say and even though he didn't have much chemistry with Stan Hansen and could be limited in other ways, Misawa's intangibles, fan adoration, and the fantastic story of he and the Super Generation Army's rise, put the Emerald Warrior over the top. The people who gave him six stars are out of their minds and should be tiger suplexed into the sun."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ProWrestlingGuy316wrote on 12.04.2021:[9.0] "Eigentlich einer der besten Wrestler aller Zeiten und von daher sicher mit der Höchstwertung zu beurteilen. Wären da nicht die letzten Jahre seiner Karriere bzw. seines Lebens. Bis ca. 2003/04 war er noch "der" Misawa. 2005 hat er schon sehr abgebaut, war aber noch akzeptabel. Seit 2006 jedoch war es fast nur noch ein Trauerspiel, ihm zuzusehen. Sein unsäglich langer Run als GHC Heavyweight Champion war (abgesehen vom Titelgewinn-/Verlust, diese Matches waren gut) eine einzige Qual, mit anzusehen. Leider hat Misawa mit dem Leben bezahlt, dass er zu lange in den Ring gestiegen ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Golden Loverwrote on 28.03.2021:[10.0] "Probably the greatest wrestler of all time. Even his "bad" matches blow away most people's best. I love everything about him especially his moveset half of which I would havevused on my old CAWs in the old wrestling games before I had ever even seen him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: rainmakerpunkwrote on 23.03.2021:[10.0] "Wow, this guy is beyond incredible, he deserves to be in every single GOAT discussion, one of the biggest stars in wrestling history that drew huge crowds, but more important to that for GOAT discussion is how everytime he stepped in the ring it was like magic, in his prime he was having MOTY left and right, having incredible matches with the other incredible AJPW talent of the 90s, his Kobashi matches are storytelling perfection and in-ring perfection as well, likewise for his Kawada matches, the best to be Ace of a company, balanced stiff strikes, suplexes, and Junior moves, and his NOAH work was honestly good, and proved how much of a warrior he was even if he should of stopped much sooner"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Kungwrote on 21.02.2021:[10.0] "Whether he was competing in one of the greatest tag teams with Kenta Kobashi, battling Toshiaki Kawada in some of the best singles matches of all time, or totally changing the face of Japanese wrestling with the creation of Pro Wrestling Noah, Mitsuharu Misawa will go down as perhaps the greatest professional wrestler to ever live."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: DaUndatakaawrote on 28.09.2020:[10.0] "Mitsuharu Misawa is probably the greatest in-ring worker of all time. From his classics as Tiger Mask II, to his 6 Star match with former partner Toshiaki Kawada. Looking at his matches, you can see why he is the best. He also made NOAH, where guys like KENTA and Naomichi Marufuji were built. Its just sad that his life got cut short due to his determination to keep his company going."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: znezaaljwrote on 03.08.2020:[10.0] "Great in the ring, great psychology, great storytelling. This dude was magnific, every singles match is great and his rivalries with Kawada and Kobashi were absolutely legendary"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: OffensiveLariatowrote on 13.07.2020:[10.0] "A great wrestler, promoter, booker and trainer and an all-rounder like no other, the best of all time without a doubt, watching his matches is like an adrenaline rush, undoubtedly an inspiration for many wrestlers"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Roachwrote on 02.06.2020:[10.0] "The GOAT in my eyes. Nobody will ever be as good as telling a story in the ring than Misawa. He gave quite literally everything to wrestling, even his life. When dark times approached NOAH he stepped up even though he knew his body could not handle it. The fact that he wrote a note in case he ever died in the ring amazes me. He gave everything to wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: VillainClubwrote on 12.05.2020:[10.0] "Der Beste Wrestler aller Zeiten. Seine Matches sind bis heute Meisterwerke. Eine Legende des Pro Wrestling und es gibt nur sehr wenige die im Ring an seine Leistungen rann kommen. Sein Einfluss auf das Wrestling ist riesig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Ma Stump Pullerwrote on 28.03.2020:[10.0] "Not much to say, really. A guy far ahead of his time both in wrestling and in ring psychology with a superb physical presence and a moveset that was both brutal and also insanely athletic: in his prime he pumped out classic after classic like hotcakes. Even at the eclipse of his career when he was battling multiple chronic injuries, age, and doubts over the survival of his own self made wrestling company, he still could go like a man half his age. Easily one of the GOAT's."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: TheOneAndOnlyCactuswrote on 03.03.2020:[10.0] "So, this is the wrestler this website overall ranks as the GOAT, judging by his average rating. Is he mine? Nope. But I don't have a "GOAT" per say. No wrestler is perfect either, but Misawa was just so absolutely amazing. When it came to storytelling he was in the elite. He was also a gifted athlete in his prime, which allowed him to put mat classics after mat classics, with a wide range of moves and counters. He was never the most charismatic man in the Four Pillars of Heaven, yet he was the most popular for a reason. He was a badass, and his lack of emotional display at points really helped his character. His biggest flaw turned into a strength, and he rightly deserves his high ranking amongst the community. Of course, he wasn't just a wrestler, he founded NOAH, and led it to its peak in the mid-2000s, when it was arguably the best federation in the world, and definetly in Japan. If there were a Mt. Puroresu, he would be on it with Rikidosan, Baba and Inoki"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: JokeyZockeywrote on 16.09.2019:[10.0] "Der zweitbeste Wrestler aller Zeiten. Diese Bezeichnung soll auf keinen Fall etwas von Misawas Fähigkeiten entwerten, aber für mich persönlich stand er einfach immer ein winziges Stück hinter Kobashi. Dennoch war Misawa einfach etwas einzigartiges, er hatte eine Aura, eine Präsenz im Ring wie kaum ein Zweiter. Er gab alles, seinen Körper, seine Seele, sein Herz für das Wrestling und erschuf damit eine beispiellose Legacy. Die meisten 5-Star-Matches der Geschichte, unzählige zeitlose Klassiker, ein Theme Song der stets für Gänsehaut sorgt, Misawa hatte einfach alles. Es ist die wohl größte Tragödie der Wrestling-Geschichte, dass er uns unter solch unglücklichen Umständen so früh verlassen musste, 10 Jahre ist es bereits her und man merkt einfach dass das Wrestling an jenem Tag einen großen und wichtigen Teil seiner Existenz verloren hat. Doch der Emerald Emperor wird für immer in unseren Herzen weiterleben, wir werden ihn und seine Legacy nie vergessen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Residentwrote on 12.08.2019:[10.0] "I have only seen a few of his matches, but he is one of the best wrestlers I've ever seen. He was the first to do a bunch of moves and so great in the ring from what I saw. Also, my favorite wrestler to play as in the All Japan wrestling video games. Love his move set."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: FrozenOnewrote on 16.06.2019:[10.0] "The greatest Japanese "ACE" there has ever been and ever will be. Better than Jumbo, Inoki, Tanahashi, Okada, Miyahara, etc... Misawa never had the charisma of Kobashi, or the intensity of Kawada, but he possessed the technical ability no wrestler has ever had. He didn't need to be a flashy or charismatic babyface because that wasn't his role. Misawa was simply the emotionless, stoic badass that could take countless amounts of punishment, but would never stay down. There's a reason why he was rarely beaten. You could drop Misawa on his head over and over again, but he would always be able to find a way to win. His selling is just unreal, his storytelling is quite frankly otherworldly, and his offense is some of the greatest offense you will ever see in professional wrestling. Those forearm/elbow strikes were just fucking lethal man. The greatest Triple Crown Champion to ever live."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: PuroresuLoverwrote on 13.05.2019:[10.0] "What I need to say? We're talking about Mitsuharu Misawa, goddamit! This is one of the most creative wrestlers of all time, he mixes the Junior with the Puroresu Style and I simply LOVE that! Kaito Kiyomiya is so right in having this legend as his hero. Thank you for everything, Misawa, we miss you."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ZestyZuluWarriorwrote on 08.05.2019:[10.0] "He is tied with Kenta Kobashi as my favorite wrestler of all time. It is not a coincidence that he is the highest rated wrestler on this site AND the top 2 highest rated matches on this site involve him. His matches with Kenta Kobashi are some of my favorites. They were hard hitting and brutal but never dragged. This man went balls to the wall every night and delivered"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: The Sick Lebowskiwrote on 26.04.2019:[10.0] "Gehört für mich neben Rikidozan, Inoki und Baba zu den vier einflußreichsten Personen des Puroresu. Als Wrestler Weltklasse mit unzähligen starken Matches. Die Gründung und Führung von NOAH war dann sein von ihm wohl etwas ungewolltes Sahnehäubchen. Hier geht an zehn Punkten nichts vorbei."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: zephyrwrote on 16.03.2019:[10.0] "I have no idea what to even say about Misawa. Like many others, I'd have to choose between him and Kobashi if you asked me to name the greatest wrestler of all time. Tremendous."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Aurtletheturtlewrote on 11.03.2019:[10.0] "To put it simply. Mitsuharu Misawa is quite possibly the greatest professional wrestler in history who excelled in every aspect of the trade. Misawa is perhaps best known for the sheer ridiculous consistency of his in-ring work which spans decades and has some of the most unbelievable rivalries and competitions, in his catalogue of work Misawa has classics that will never be forgotten and heights that very few have ever reached. Mitsuharu Misawa's memory will live on forever. We love you Misawa-San."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: LandonRyanWyattwrote on 27.01.2019:[10.0] "Definitely the greatest Japanese wrestler of all time. Misawa was the cream of the crop in All-Japan, and no one had/has ever done it any better. A true legend, icon and inspiration in the business. One of the greatest wrestlers of all time, anywhere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: JEK 1991wrote on 31.12.2018:[10.0] "Personally I wish he wrestled more in North America. He only wrestled 5 times there. he was exciting to watch and one of best Japanese wrestlers of all time. Too bad he died in the ring. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Mitsuharu Misawa was one of the best who ever stepped into the ring. His matches are legendary, and deservedly so; many people consider his June 1994 match with Toshiaki Kawada to be 'perfect' and the best match in wrestling history. Misawa's legacy will be as the cornerstone of All Japan in the 90s, and of the founder of Pro Wrestling NOAH."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: LockeJVwrote on 03.07.2018:[10.0] "Misawa's battles with Kawada, Kobashi and Taue stood alone on top of the wrestling world for nearly two decades, and only now in 2017-2018 are certain competitors beginning to challenge their standing.  Misawa was the Ace of All Japan for a decade during what many consider the greatest era of pro-wrestling.  From his time as TIger Mask II to his upset over Jumbo, to multiple Triple Crown and GHC title reigns, to the devastating finishers he innovated, calling Misawa the greatest worker and technical wrestler of all-time is far from controversial."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Paul Allainwrote on 26.10.2017:[7.0] "A pioneer of japanese wrestling that made memories in millions of fans. You honestly have to deduce some points, as his last five years or so were noticeably lazier and less coordinate, but he remains an exceptional wrestler with a magnetic aura that will perdure."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: LegibleToe762wrote on 16.10.2017:[9.0] "He literally gave his life to puroresu and, towards the end of his career, the matches he had in the preceding years ended up almost destroying it. He held AJPW up as their ace and founded one of the Top 5, probably Top 3 puroresu companies of all time in NOAH. His in-ring skill was through the roof, one of the GOATs in that department. The only criticism I have with Misawa was his lack of facial expressions or, seemingly, charisma. It's hard to connect with him when he didn't seem to show much personality. Other than that, a true legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "The best wrestler of all time, period. No one could have so many legendary matches. He is puroresu incarnate."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ZumaZumawrote on 02.10.2017:[10.0] "Probably one of the greatest wrestlers to ever live. His sheer ability to have an amazing match under any circumstances was above and beyond amazing. RIP GOAT"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: taabr2wrote on 10.09.2017:[10.0] "Mitsuharu Misawa was the Ace of simply put the greatest period of in-ring wrestling by a company ever. He then started up one of the few companies in Japan that was actually a legitimate challenge for the big two of All Japan and New Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: TheBrainlessRobotwrote on 18.08.2017:[10.0] "One of the absolute greatest of all time. The matches that he puts on are crazy good, and if not for him we could not have the likes of CM Punk or Daniel Bryan. Rest in peace."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: tykechandlerwrote on 13.05.2017:[10.0] "Very obviously one of the greatest wrestlers ever, if not the best. He is my personal favorite. Every match is a joy to watch. If a Mt Rushmore of pro wrestlers were to exist, he would absolutely be a consensus choice to be on it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Blood Pumpwrote on 19.04.2017:[10.0] "What needs to be said about AJPWs crown jewel that hasn't already been said? Misawa's recognized as the greatest ever by many and its easy to see why. While I don't give as much credence to Dave Meltzer as others it says something that he has, bar none, the most five stars and even one of the scant few 'six' stars from the journalist. Even before he became the mega star AJPW needed he was excellent in ring. Many of his as Tiger Mask is a good example of how good he was. I will say I like Tsuruta more, but its pretty damn close to equal for me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ChilliDogzwrote on 19.02.2017:[10.0] "So Many 5 Star matches, too many to watch. What a legend, it is sad, however, that is own baby, Pro Wrestling NOAH, has been destroyed and almost ruined by the success of Current New Japan and the leaving of SUZUKI-GUN."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: TrevPuroFanwrote on 14.02.2017:[10.0] "Can't believe he's gone for 6 years now. Misawa was one of a kind. The total package imo. He could wrestle, had super stiff elbows, had a few amazing moves and the most important of them all his inring psychology was fantastic. Miss you Misawa-san."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: AJfan83wrote on 14.02.2017:[10.0] "Probably the best wrestler of Japan history, just remove the trolling that give 0 with ''ILoveRomanReigns'' nickname, it's just a troll."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Chekerwrote on 06.02.2017:[10.0] "There's not much more to say about the legendary Misawa. A wrestler ahead of his time, put on matches that still hold up by today's standards."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Puro Spiritwrote on 01.12.2016:[10.0] "One of the greatest in the history of pro wrestling ..... arguably the greatest ..... an incredible career filled with classic matches ..... gone but never forgotten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Chak95wrote on 06.09.2016:[10.0] "The Ace, Mr Triple Crown, him and Kobashi are the greatest of all time, he's had and absurd number of 5 star matches, and has probably the best move set in wrestling history, and he just oozes charisma, he is the complete package."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: AriesMarkwrote on 20.06.2016:[10.0] "Probably one of the greatest, if not THE greatest wrestlers of all time. His match with Toshiaki Kawada for the AJPW Triple Crown at the 1994 Carnival of Champions was my favourite match of all time, and nothing has yet to top it. Misawa has almost in a way ruined wrestling for me because of the fact that I hold so many of his matches in such a high standard."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: jboyaquarwrote on 20.05.2016:[10.0] "The self-assuredness, timing and class are in a league almost in his own. After a seamless transition from junior to heavy he went on to be the Ace of two different promotions from 1992 to his unfortunate passing seventeen years later. After, reportedly, Mrs. Baba's lack of commitment to the product he went on to found a promotion that was at the top of the Japanese scene throughout the mid 2000's. My only drawback would be booking issues that eventually soured the mainstream from the NOAH product."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: prowrestlingisrealwrote on 10.05.2016:[10.0] "Misawa is one of the greatest pro wrestlers of all time, Innovative, great ring skills, and a lot of 5 star matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Zedwrote on 09.05.2016:[10.0] "Wenn man sich mit dem Puroresu der 90er beschäftigt hat und den Namen Mitsuharu Misawa hört fällt einem gleich nur dieses eine Wort ein: Legende. Seine ruhige No-Nonsens Art und sein können hat die Fans begeistert, er war wahrscheinlich der Japaner mit den meisten bedeutungsvollsten Matches aller Zeiteten, wenn man Wert auf die Meltzer Sterne legt(Ich nicht).  Misawa war einfach die Perfektion des Puroresus und des Strongstyles, sein Finisher wird bis heute gefürchtet und sein Name schallt auch heute noch durch die japanischen Hallen. Meiner Meinung nach der bedeutenste Wrestler aus Japan den es gab, neben Keiji Mutoh."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Jobbswrote on 02.05.2016:[10.0] "This guy is one of the best ever! He could mix it up with anyone and just dominated AJPW as their ace in the 90s. He's had some legendary matches as well and his match vs Kobashi on March 1, 2003 in NOAH is my absolute favorite. Just a superb performer and one that will be remembered for generations. R. I. P. Misawa"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: NastyYaffawrote on 15.04.2016:[10.0] "One of the absolute greatest wrestlers of all-time. Misawa was so charismatic, the perfect ace figure, and he has been a part of some of the greatest matches ever. The best Japanese wrestler of all-time, and the 2nd best wrestler of all-time, in my opinion. Misawa = The man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: richeyedwardswrote on 15.03.2016:[10.0] "To put quite simply the best wrestler who has ever lived. Nobody has had more great matches, and the only people comparable to him are jumbo, kawada and kobashi. thank you Misawa for giving your life for pro wrestling, rest in peace emerald warrior."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ApexOfEvolutionwrote on 27.02.2016:[8.0] "Im Ring absolute 10 Punkte. Verbindet den Strongstyle hervorragend mit technisch einwandfreien Wrestling. Das ihm dieser Stil irgendwann selbst zum Verhängnis geworden ist, ist natürlich tragisch. Wenn ich mir Kämpfe von ihm ansehe bin ich immer überrascht, wie over er beim Publikum war. Für mich ist da so gut wie kein Charisma und auch keine Interaktion mit der Crowd. Vielleicht verstehe ich aber auch nur die japanische Mentalität nicht wirklich."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: meatrockit83wrote on 26.02.2016:[10.0] "One of the all time greats (my personal #2 all time).  His workrate was practically unmatched.  So sad he went the way he did as his style and his pace took its toll in the end.  In terms of the all-time greats in Japan, Misawa should be mentioned along side Rikidozan, Inoki, and Baba as the "big 4. ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: MrPogowrote on 19.02.2016:[10.0] "Was soll man zu dieser Legende schon groß sagen? Er war nicht nur einer der technisch besten Wrestler, nein, er war wohl auch der härteste Worker aller Zeiten. Keiner hat so viel eingesteckt wie er und ist trotzdem, bis zu seinem tragischen und viel zu frühern Ableben, immer wieder zurückgekommen. Er brauchte nicht rumschreien, um einen Pop von der crowd zu kriegen. Durch seine überragenden In-Ring-Fähigkeiten, aber auch durch die stoische coolnes, die er ausgestrahlt hat, war er in Japan so over wie vlt sonst nur noch ein Kobashi. Meiner Meinung nach mit deutlichem Abstand zu Kobashi und Kawada der beste der 4 corners of heaven und somit auch der beste Wrestler aller Zeiten. Wunderschöne suplessen, die wohl glaubhaftesten Strikes die man je im Wrestling gesehen hat, überzeugendes selling und in-ring-psychology, high-flying, brawling; es gab NICHTS, was Misawa NICHT konnte und es wird wohl niemals wieder einen Wrestler wie ihn geben. RIP Emerald Emperor."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Armbarmaniawrote on 01.01.2016:[10.0] "Die Größte Legende des Japanischen Wrestling und höchst wahrscheinlich auch des ganzen Sports. Am Anfang seiner Karriere als Tiger Mask Nachfolger ein großes Erbe angetreten und konnte sich selbst und seine Guten Fähigkeiten Bestätigen. dann kamen für ihn die Hochzeiten in den 90ern wo er zum Besten Wrestler der Welt wurde und auch zur Legende. Völlig Verdiente Vierundzwanzig 5* Matches und hinterließ nach seinem Tod eine große Lücke"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Kevin434wrote on 06.08.2015:[10.0] "Misawa...  Misawa... Misawa... Jedes mal Gänsehaut wenn "Spartan X" gespielt wird, wenn er in die halle kommt und alle das chanten... schön... oh stimmt ich muss ja bewerten, also:   Was soll ich schon sagen, er ist für mich DER BESTE aller Zeiten, nicht nur aus Japan, der beste aller Zeiten! Was der im Ring geleistet hat war schon einzigartig, er hat sich sein ganzes Leben den arsch nur fürs Wrestling aufgerissen, und musste dafür leider mit seinem Leben bezahlen, R. I. P. Er konnte mit absolut JEDEM ein gutes Match worken, er war einzigartig, einfach klasse und sowass wird es wahrscheinlich nie mehr in der Art geben. So viele 5 stars... so ein verdammt gutes Storytelling... DANKE, Mitsuharu, wir danken dir für alles was du für diesen Sport getan hast, deine unvergesslichen Matches mit Kobashi, Kawada und co. werden wir immer in Erinnerung behalten. Danke!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Wazzerwrote on 06.05.2015:[10.0] "Stiff, and absolutely awe inspiring in-ring style and moveset. Larger than life character and put on some of the greatest matches I've witnessed.  Not to mention giving Samoa Joe one of the stiffest elbows I've ever seen to the back of the head"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Viper99wrote on 25.04.2015:[10.0] "Mit Kobashi wohl eine der japanischen Legenden schlechthin. Er war gut im Ring und konnte die Massen bewegen! Wirklich traurig das er so früh von uns gegangen ist. R. I. P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: eldenaaaaawrote on 25.04.2015:[10.0] "He started Pro Wrestling NOAH, and give guys like KENTA, Morishima, Marufuji and so many more a stage to perform on. A man who influenced the likes of Chris Hero and CM Punk in America. Misawa passed away in 2009 rip without a doubt the best puro wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Deviantwrote on 25.01.2015:[10.0] "Talented man and an innovator. It's quite unfortunate that he died after a belly-to-back suplex, though, but after years of untreated back injuries and concussions, it was sadly inevitable.   He's started a great Japanese promotion in Pro Wrestling NOAH and may his legacy live on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: yanuswrote on 22.11.2014:[10.0] "One of the best in-ring performers of all-time. Misawa was almost always very calm and collected in the ring, almost stoic; in that regard he can almost be seen as the perfect japanese male."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ilovewrestlingwrote on 13.07.2014:[10.0] "Man muss nicht viel zu Misawa sagen. Was er in den 90ern auf die Beine gestellt hat ist einfach unglaublich. Aber selbst bis in die Mitte der 2000ern konnte mich Misawa mit seinen Matches noch wirklich begeistern. Leider wusst er nicht, wann er einen Schlusstrich unter seine großartige Karriere ziehen musste und so ist er leider viel zu früh von uns gegangen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Matzinhowrote on 30.03.2014:[10.0] "Er hätte einfach aufhören sollen. Was er zum Schluss abgeliefert hat war sowieso nicht mehr das, was ich mir beim Namen Misawa gewünscht habe. Für mich einer der verkanntesten Wrestler überhaupt, wegen Dave Meltzer. Meltzer hat seit jeher seine Ahnungslosigkeit ins Internet gestreut und damit ein Bild von japanischem Wrestling geprägt, das dem eines Menschen entspricht der sich nur japanische Wrestlingmatches ansieht und sonst keine Ahnung hat. Ich bin immer wieder verblüfft, wieviele Nachahmer er damit international findet. Wegen Meltzer und seinen fragwürdigen Ratings, die aber irgendwie kaum jemand hinterfragt der sich für "smart" hält, haftet Misawa der Nimbus des Allerbesten an. Für mich ist und war er immer die Nummer 3 bei den Four Corners, eindeutig mit viel Abstand hinter Kawada und knapp hinter Kobashi. Ein exzellenter Wrestler, der "King's Road" verkörpert hat und irgendwie mit jedem in jeder Gewichtsklasse ein gutes Match wrestlen konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: fibbingtonwrote on 19.03.2014:[10.0] "Is there much I need to say? Possibly the greatest in-ring performer in history. So many five star matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: JourneybyTrainwrote on 21.12.2013:[10.0] "My favorite wrestler ever. Hellacious looking offense, willingness to take huge bumps, perfect structuring and selling, great presence, absurdly large amount of great matches, he even has a really bad ass jacket. Also the "last 5 years" thing is ridiculous especially saying his TMII run was better, adapted his matches around his character, striking and bumping really well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Alex Maedawrote on 05.09.2013:[10.0] "Der vielleicht beste In Ring-Performer aller Zeiten. Großartiger Sportler, der wörtlich sein Leben für das Wrestling aufgab. Überlebensgroße, unsterbliche Legende, die für immer in den Herzen aller Puro-Symphatisanten weiterleben wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Lecterwrote on 05.06.2013:[9.0] "The last 5 years of his career saw him put on a number of frustratingly unsatisfactory bouts, and it's a tragedy that he felt pressured into having to keep going despite wanting to hang up the boots. That being said, his '80s and '90s stuff, plus a few select matches from the oughts (especially the big GHC match vs. Kobashi) is about as good as it gets."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: General Incompetencewrote on 11.05.2013:[10.0] "The absolute best that Japan has to offer, possibly the greatest to ever step into the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Kenshin Uesugiwrote on 15.02.2013:[10.0] "Misawa stand als eines der Symbole für eine Zeit bei AJPW und dem Puroresu allgemein in den das In-Ring Produkt nirgends auf der Welt zu übertreffen war, jedenfalls was konstanter hohe Leistung angeht. Seine ruhige Art, den im Gegensatz zu Kawada und Kobashi war er nie ein Tokun-Schreier, die Art und Finesse fast alles was im Wrestling so gibt zu beherrschen, macht ihm zum Emerald Emperor. Für mich ist es eigentlich ziemlich egal, ob Metzler ihm 35 oder 25 ***** Matches geben hat, das macht Misawa nun auch nicht größer oder besser und hat überhaupt keinen Einfluss. Ihm umgab schon zu aktiven Hochzeiten eine Aura des Besonderen, einer lebenden Legende, ein Mann der ebenso wie Kobashi von den Fans geliebt wurde und so manches Mal nach vorne gepeitscht wurde. Mit fortschreiten Alter wurde aber dann ab 2005 einem klar das der Mann eigentlich körperlich nicht mehr in einem Ring gehört, trotz immer noch überraschender Leistung. Trotz des Unfalltodes von ihm bleibt, sein Stil und Art wie er mit seinem Kollegen ein Match führt und aufbaut wegweisend für das Wrestling allgemein. Er bewies das zum einem tollen Match einfach nur zwei Wrestler braucht die sich den Arsch aufreißen um die Bude zu rocken. Das ist Mitsuharu Misawa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Cobrawrote on 14.12.2012:[10.0] "The word legend gets thrown around a lot... but a legend is exactly what Mitsuharu Misawa is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Leonewrote on 01.07.2012:[10.0] "A fantastic wrestler, promoter and innovator - Misawa had great in-ring psychology, was a great storyteller in the ring, and I like the fact that he could have finished a match with seemingly any move (and after several occasions when he accidently knocked out opponents with his elbows, it makes very exciting wrestling).  Some of the bumps he took in the ring were enough to make everyone cringe in their seats, and made all of us wonder: 1. Why he wasn't paralysed on numerous occasions, and 2. how he kept coming back for more!  He did it all to put over his opponents and make the fans happy.  When he died, it was incredibly tragic.  To say this least, he was the Anti-Cena, and just as popular for the right reasons."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ARIZAwrote on 15.06.2012:[10.0] "Neben Kobashi war er der Beste in Japan. Natürlich waren die letzen Jahre vor seinem tragischen Tod nicht mehr auf einem Niveau mit dem davor gezeigten, doch für sein Lebenswerk führt kein Weg an den 10 Punkten vorbei."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Fighter Daronwrote on 02.02.2012:[9.0] "He'd be the second best of the four pilars, but not far away from Kobashi."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: WhiteHummerDriverwrote on 16.09.2011:[10.0] "Für mich DIE Puro-Legende überhaupt! Großmeister des King's Road Style der AJPW in die goldenen 90er geführt hat. Manchmal für meinen Geschmack fast ein bisschen ZU unbesiegbar gebookt aber langweilig wars sicher nie wenn er im Ring stand. Nur in seinen späteren Jahren hat er körperlich und daher auch wrestlerisch arg nachgelassen. Letztendlich starb er leider viel zu früh im Ring, weil er nie ne Auszeit genommen hat um seinen Nacken mal zur Ruhe kommen zu lassen und dachte er müsse mit fast 50 noch Backdrops nehmen.  Trotzdem werde ich immer eine Gänsehaut bekommen, wenn ich ein altes Puro-Match anguck und "Spartan X" als Einzugsmusik ertönt, und ich werde mich immer an ihn erinnern als den Typ, der uns einen Arschvoll der geilsten und heftigsten Matches der Pro Wrestling Geschichte hinterlassen hat.  Rest in Peace Emerald Emperor"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Roseswrote on 24.05.2011:[10.0] "Misawa war wahrscheinlich der BESTE Japanische Wrestler der jemals einen Ring betreten hatte. Seine Qualitäten waren unerreicht und er starb genau dann als ich anfing mehr von Ihm sehen wollte, um genau zu sein an dem Tag als ich zum ersten mal meine Freundin traff, ich verbinde inzwischen mit ihm soviel Emotionen das mir jedesmal die Worte fehlen wenn ich es lese dass er dort starb wo er lebte, und zwar im Ring den er lebte für diesen Sport und gab jedem Fan das was er wollte. Ohne Ihn wäre Japanishces Heavyweight-Wrestling nicht einmal halb so Interessant geworden wie es in den 90 Jahren war, seine Karriere ist mit Siegen, Titeln und Awards übersät die für sich sprechen. Seine 5***** Matches lesen sich wie ein Who ist Who? Der Wrestlingszene und Als Promoter und Gründer von NoaH hat er etwas Geschaffen was mich überhaupt erst vom Mainstream gelöst hat, ohne Ihn wären Ligen wie RoH oder WxW eine weit entfernte Fantasie guter Qualität. Er brachte immer 100% und hatte wohl auch die Größte Ausstrahlung ohne ein Mikrofon in der Hand zu halten. Ich werde Ihn vermissen und Ihn immer mit meinem Glücklilchsten und meinem Traurigsten Tag verbinen v. v R. i. P. Misawa"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Rated R Champwrote on 09.12.2010:[10.0] "Der Mann konnte im Ring einfach zaubern. Zu Lebzeiten schon längst die wohl größte japanische Wrestling Legende und zu (wenn ich richtig gezählt habe) 24 *****-Matches muss man wohl nicht mehr viel sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: TigerDriver91wrote on 16.10.2010:[10.0] "Wenn es um die Frage: "Wer ist der beste Wrestler allerzeiten" geht, führt kein weg an Misawa vorbei.  Er ist ganz klar, mit großen Vorsprung der beste Wrestler allerzeiten. Exzellenter Techniker, der wirklich aus JEDEM ein gutes Match raushauen kann. Kann den High Flyer Stil gehen (Vorallem als Tiger Mask war er wirklich stark),  natürlich den technischen und of course den Stiffen.  Misawa ist einfach der beste Worker den es jemals gab und geben wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Berlin Dragonwrote on 18.09.2010:[10.0] "Eine der größten Legenden des Wrestling-Business. Er konnte wie Kobashi mit fast jedem ein gutes Match zeigen und mit Kawada oder eben Kobashi die größten Klassiker , die ich bis jetzt gesehen hab , zeigen. An seine Anzahl an 5* matches wird wohl auch kaum mehr jemand herankommen. R. I. P Misawa Mitsuharu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Manolowrote on 20.07.2010:[10.0] "Mitsuharu Misawa ist nicht mehr und nicht weniger als der beste Wrestler aller Zeiten.  Japan hatte in den 90igern insbesondere mit Kobashi, Kawada und dem von mir sehr geschätzten Hashimoto so mit das Beste, was es je im Wrestling gab.  Aber keiner kam an Misawa ran.  Leider starb der Größte aller Zeiten viel zu früh.  Sein Tod traf mich, wie es noch bei keinem anderen verstorbenen Wrestler vorher der Fall war.  Wenigstens starb er bei dem, was er über alles liebte.  Farewell, my hero !  Ruhe in Frieden, Misawa-SAN."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: VerticalDropBrainbusterwrote on 12.06.2010:[10.0] "Misawa soll kein einziges 5 Sterne Match gehabt haben? Ich bitte dich, ich musste lautstark lachen.  Gut, Meltzer hatte bei einigen 5* Matches "übertrieben", aber trotzdem hat Misawa sehr viele 5* Matches.  Egal, Misawa ist DER Inbegriff für Puroresu. Misawa konnte im Ring richtig gut überzeugen, konnte jeden Stil mitgehen. High Flying, Technik, Powerhouse, stiffness, einfach alles. Konnte mit fast jedem ein gutes Match zauberm"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: RickRollwrote on 23.03.2010:[10.0] "Der beste. Der beste Wrestler allerzeiten. Kein Bryan Danielson, kein Kobashi (auch wenn Kobashi nur knapp "schlechter" ist als Misawa ist), kein Kawada, kein Tsuruta kann Misawa das Wasser reichen. Natürlich sind Wrestler wie Tsuruta, Kawada, sowie Kobashi gut, doch ich mag Misawa einfach mehr. Technisch ist er wohl einer der besten Wrestler, hat zusammen mit Chris Hero wohl eines der größten Movesets, kann alle Stile gehen, ist stiff wie sonstwas (was man aber nur selten hört, da das Publikum ja sehr laut ist). Als Tiger Mask II war er ein klasse High Flyer sowie guter Technischer Wrestler, doch als er demaskiert wurde, wurde er Mitsuharu Misawa, den Mann den wir alle lieben. Alle seine Matches erzählten immer wieder eine neue Geschichte. Seine Rivalitäten zwischen Toshiaki Kawada, Kenta Kobashi und Jumbo Tsuruta waren die besten Fehden allerzeiten. Seine Matches waren die besten allerzeiten. Sein Match von 1997 (20/1/1997) gegen Kobashi war das beste Match allerzeiten, da kommt natürlich nicht das Match zwischen Kobashi von 2003 ran, nie. Misawa ist/war einzigartig, es wird niemals mehr solch ein Wrestler wie er geben. Er hat den Sport geliebt, auch wenn man den Fighting Spirit von ihn nicht so übel ansieht wie Kobashi. Er liebte diesen Sport einfach und er ist auch wegen dem Sport gestorben. Wirklich, weniger als 10 Punkte sind fast schon lächerlich, 9 gehen noch inordnung. Wie dem auch sei: Rest in Peace, Misawa-Sensei."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Hu-Manwrote on 15.01.2010:[10.0] "Habe Misawa durch die 5-Star Matches von Melzer kennengelernt und bin einfach nur beigeister. Ein großartiger Wrestler, der unglaublich viele starke Matches gezeigt hat. In der Vielzahl wohl für die Ewigkeit unübertroffen. Zählt für mich mit Flair, Angle, Kobashi und dem Hitman zu den besten aller Zeiten. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Super Dragonwrote on 25.12.2009:[10.0] "Misawa war ganz klar ein Wrestler den es so nie wieder geben wird, was bleibt mir noch zu sagen er war fürs Wrestling geboren und leider ist er fürs Wrestling auch zu früh vestorben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Mick Funkwrote on 12.11.2009:[10.0] "Zu Hochzeiten einfach brilliant. Etwas anderes als 10 Punkte sind trotz zuletzt schwächerer Leistungen einfach untertrieben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Rancorwrote on 25.10.2009:[10.0] "Unglaublich tragisches Ende, in den Neunzigern das Maß aller Ding. Volle Punktzahl für das Lebenswerk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: THE GAME 4-EVERwrote on 13.10.2009:[10.0] "Gibt die 10 Punkte fürs Lebenswerk. Sicherlich die letzten 5 Jahre waren nicht mehr stark aber immernoch gut. In den 90ern das Maß aller Dinge, Matches gegen Kobashi , Kawada , Tsuruta und so weiter muss man gesehen haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Matt Mackswrote on 23.09.2009:[10.0] "Misawa war einer der großartigsten japanischen Wrestler aller Zeiten, dessen generelle Lethargie der letzten Jahre seiner Karriere keinen Abbruch daran tun, dass seine Matches gegen Kenta Kobashi, Toshiaki Kawada, Jumbo Tsuruta und viele andere Stars zu dem Besten gehören, was man als Wrestlingfan gesehen haben kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: hatebreederwrote on 07.09.2009:[10.0] "DER Wrestler der 90er Jahre neben Kobashi und Kawada. Dazu der Gründer von Pro Wrestling NOAH. Mehr muss man nicht sagen. Überragender Mann. Rest in Peace, Misawa-San."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Switchbladewrote on 07.08.2009:[10.0] "Großartiger Wrestler! 10 Punkte für sein Lebenswerk, einer der besten aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Aquifelwrote on 30.06.2009:[10.0] "Absolute Legende. Sicherlich hat er, aufgrund seines Alters, nachgelassen, aber auch das kann an den 10 Punkten nichts ändern, nicht bei eínem Mann, der so viele Klassiker gewrestlet hat, der so viel Einfluss auf das Wrestling hatte. Möge er in Frieden ruhen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Sabu316wrote on 27.06.2009:[10.0] "Habe meine Wertung hiermit geändert. Bewerte nun das Lebenswerk von ihm und da spielen die letzten Jahre eine zu kleine Rolle um ihn von der 10 abzuwerten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: UltimatePwrote on 21.06.2009:[10.0] "Gründer von NOAH, einer der erfolgreichsten/besten/stiffsten Wrestler in diesem Business bzw. war er das , dem wahrsch. so schnell kein Wrestler gleich kommen wird. Mehr als 10 Punkte von meiner Seite!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Ryklon Stephenswrote on 18.06.2009:[10.0] "Es gibt eigentlich nichts mehr zu sagen was über Misawa hier nicht schon gesagt worden ist. Er gehört zu den besten was Japan an Wrestlern zu bieten hat und das ist schon ein verdammt hohes Niveau. Doch viel wichtiger ist das er mit der Gründung von NOAH eine Welt geschaffen hat, für die Großen des Sports und für die, die es noch werden wollen. Er hinterlässt ein Erbe das sich schwer tragen lässt. Ruhe in Frieden Mitsuharu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Fountain of Misinformationwrote on 17.06.2009:[10.0] "Ich sehe mich aufgrund seines frühen Todes gezwungen meinen Kommentar und meine bisherige Bewertung (zehn Punkte abzüglich zwei Punkte aufgrund der Tatsache dass die letzten Jahren nicht mehr so toll waren) zu ändern, weil ich nun sein "Lebenswerk" bewerte und deshalb geht kein Weg an dieser Wertung vorbei."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: AK-Styleswrote on 16.06.2009:[10.0] "Unglaublicher Mann. Ein Puro-Legende. Im Ring, sowie ausserhalb. Ein Innovator dieses Sportes. Ruhen in Frieden, Misawa-San."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Excellence of Executionwrote on 14.06.2009:[10.0] "Ich sage nur eins: 24 FIVE STAR MATCHES! Niemand war an mehr Five Star Matches beteiligt als Misawa. Lediglich Kenta Kobashi ist mit 22 Five Star Matches nah dran. Ansonsten klafft da eine beträchtliche Lücke - Zum Vergleich: Bret Hart und Shawn Michaels wurden je 2 Five Star Matches attestiert...... Misawa war zweifelsohne einer - wenn nicht sogar DER - beste Wrestler der Welt. Er ist eine absoloute Ikone der Wrestlingwelt und wer zu den Besten gehören will, muss dem Vergleich mit ihm wagen. Normalerweise müsste er 12 Punkte kriegen ;-) Es birgt einen kleinen Trost, dass sein Tod scheinbar plötzlich und im Ring kam - einer Umgebung, die mehr als alles andere das Schaffen von Misawa widerspiegelt. Doch leider musste auch er viel zu früh gehen ... oder auch nicht? Wer bin ich, um das zu wissen? Seine Name wird noch lange nachhallen. Denn auch im Tod ist eines sicher: Misawa IST eine Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: anglejoewrote on 14.06.2009:[10.0] "Misawa wird für immer der beste Wrestler allerzeiten bleiben. Was er geleistet hat ist unerreichbar. Ruhe in Frieden! Danke für alles..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: The Excellent of Executionwrote on 14.06.2009:[10.0] "Er war immer einer meiner Lieblinge. RIP Misawa-sama"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: mugel 187wrote on 14.06.2009:[10.0] "Als Gründer von NOAH allein schon 10 Punkte verdient. Als worker hat er sich auch 10 Punkte verdient. Mit ihm ist eine Jpanische Wrestling Legende & Ikone von uns gegeangen. Er ist auf einer Stufe mit Karl Gotch & Jumbo Tsuruta! RIP Misawa-san"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Mankirawrote on 14.06.2009:[9.0] "Ein ganz Großer ist heute von uns gegangen :( Ich gebe Misawa 9 Punkte für viele fantastische Momente und einige klassiker Matches im grünen und blau/roten Ring. Rest in Peace, we will never forget you"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Eddiewrote on 03.06.2009:[10.0] "Auf einer Stufe mit Tsuruta und Kobashi einer der Puroresu Götter, die jedes Match genial machen, einfach 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Blazewrote on 02.05.2009:[10.0] "Absolute Legende, würdiger Tiger Mask Nachfolger, einer der Grundsteinleger des heutigen dynamischen Wrestlings, Erfinder einiger großartiger Moves, top Main Eventer und die Liste geht immer weiter. Sicher einer der Kings des Wrestlings, einer der Besten aller Zeiten. Hat zu dem mit Pro Wrestling Noah eine großartige Company geschaffen. Großartiger Worker, an dem das Business im Laufe der Jahre leider seine Spuren sichtlich hinterlassen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: STRIGGAwrote on 19.10.2008:[8.0] "Einen Wrestler bewertet man bekanntermaßen nicht nur nach vergangenen Leistungen, sondern muss auch auf aktuelle Verdienste schauen. Dennoch ist Misawa eine absolute Legende und hat auch in diesem Jahrtausend noch gute Kämpfe dargeboten, weshalb ich unter Berücksichtigung der schwachen Leistungen in den letzten Jahren eine zwei gebe... er sollte wirklich langsam aufhören."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Baszdmegwrote on 07.09.2008:[10.0] "Absolute Legende und deswegen gibt es für die gesamte Karriere verdiente 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: e-trom995wrote on 22.06.2008:[6.0] "Eine Wrestling Legende, die in letzter Zeit recht gut nachgelassen hatte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: LexLuger4everwrote on 27.04.2008:[10.0] "Mitsuharu Misawa ist einer der besten Wrestler aller Zeiten und vielleicht mein All-Time Favourite aus Japan! Seine Matchserien gegen Tsuruta, Kawada, Kobashi, Marufuji und wie sie alle heißen gehören einfach zum Besten, was man jemals in einem Wrestlingring zu sehen bekam. Zudem ist er DAS Aushängeschild der goldenen 90er in Japan. Auch wenn er in den letzten Jahren ein wenig abgebaut hat, alles andere als 10 Punkte wäre ein Witz."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: AnFuwrote on 26.04.2008:[9.0] "Wahnsinnswrestler und für mich auf einer Stufe mit Kobashi. Heutzutage nervt er mich ein bisschen, aber er war klasse und es auch heute noch, zudem Besitzer einer der größten Wrestlinligen der Welt, fast die Bestnote!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Doerbenwrote on 10.04.2008:[9.0] "So, mit alternativen Bewertungsmöglichkeit ändert sich nun auch die Note die ich Misawa hier gebe - von 10 auf 9. Denn genau wie auch AnFu teile ich die Meinung von Exellence, finde aber auch das das Alter den Abzug bringt, weil ja auch die aktuelle Zeit in die Bewertung einfließt und die Sachen die er in letzer Zeit abliefert... sollte man besser verdrängen. Sobald er retired kommt aber eine 10 hierhin, für sein unglaubliches Lebenswerk."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Kaffoe 666wrote on 24.03.2008:[10.0] "Im Spätherbst seiner Karriere, sieht hoffentlich bald ein das die ME Zeiten vorbei sind... alles andere als volle Punktzahl würde ich aber NIE über das Herz bringen. Absolute Legende, Misawa hat einige meiner fav. Matches geworked!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: EvenflowDDTwrote on 26.02.2008:[8.0] "Ebenfalls eine Puro Legende in meinen Augen. Hab aber noch zu wenig von ihm gesehen um ne 1 geben zu können"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: D-Stylewrote on 07.12.2007:[8.0] "Hier musste ich lange überlegen: Auf Dauer gesehen natürlich die 1, aber in letzter Zeit (gerade gegen Joe) bietet Misawa allerdings Leistungen die schon fast 5 sind. Ich gebe dennoch die 2 weil er echt viel in seiner Karriere geleistet hat, was wirklich klasse ist. Trotzdem sollte er sich langsam zurückziehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: SternessDustOmegawrote on 05.12.2007:[8.0] "Obwohl er immer noch für ****+ Matches zu haben ist wirkt er "verbraucht". Zwischen Ž90 und Ž99 sicherlich der absolute Gott, heute "nur noch" Halbgott im Ring."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Carlito ICWwrote on 18.09.2007:[10.0] "Zwar längst nicht mehr so stark wie früher, doch einer der Legenden in Japan. Ich bin froh, dass es ihn gibt und das er NOAH gegründet hat. Danke Misawa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: FiveStarwrote on 21.07.2007:[10.0] "Der Doktor des Pro-Wrestling: Zu seiner Hochzeit technisch und wrestlerisch das Maß aller Dinge. NIEMAND hat soviele MOTY-Kandidaten gewrestlet wie Misawa. Er war die Speerspitze der Super Generation und der hochwertigsten Pro-Wrestling Ära aller Zeiten (All Japan 1990-1999)... sein Vermächtnis kann auch durch seine aktuelle schlechte körperliche Verfassung nicht angerührt werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ShakDragoonwrote on 24.06.2007:[10.0] "Eine absolute Legende des japanischen Wrestlings, die auch heute noch mit sehr guter Leistung überzeugt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Kruemelwrote on 24.06.2007:[8.0] "Insgesamt natürlich 10 Punkte, keine Frage. Aber aktuell nur noch 8"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Knurkselwrote on 24.06.2007:[10.0] "Ganz klar eine Legende, man kann echt nur jedem empfehlen sich mal alte AJPW-Sachen angucken, dann weiß man, was man vorher verpasst hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Willie 19200wrote on 03.02.2025:[10.0] "The best women's wrestler in the world and one of the best overall wrestlers in the world today. Her in-ring is unmatched in her division and her technical work is fantastic. She is an amazing worker and deserves more time in matches then she gets, she put on one of my favorite matches on a Wrestle Kingdom in less than 10 minutes, that shows how talented she is. Overall an absolutely amazing wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: wrestlingswiftiewrote on 29.01.2025:[10.0] "Best women's wrestler in the world, I've never seen a bad match from Mayu. Her improvisation ability is next level wizardry, and she's one hell of a technician."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: LJAwesome 03wrote on 18.01.2025:[10.0] "My first time seeing Mayu in Action was at Wrestle Kingdom 19 and I was instantly hooked on her and went down a rabbit hole of her matches and I can safely say she's the GOAT! From her personality, her devastating moves and everything top to bottom about her as a wrestler is so awesome to see!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: bluexywrote on 12.01.2025:[10.0] "Simply one of the best, if not the best, wrestlers of her generation. No other woman is so consistently able to meet a moment and elevate it like Mayu does."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: NiagraDriverwrote on 04.01.2025:[10.0] "She's like watching Neo in the matrix, she has mastered the artform of wrestling from the psychology, her timing and balancing chemistry with any wrestler. Its almost like its too easy for her now. I can't ever recall seeing a bad singles match from her."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: StardomIconwrote on 02.01.2025:[10.0] "Mayu Iwatani is my personal GOAT. There are wrestlers that excel in in-ring skill and wrestlers that excel in charisma, but rarely do wrestlers excel in both. Mayu is one of the very few who does. My previous all time favorite was Rob Van Dam, but I think Mayu's character work and mic skills are significantly better than his. Shawn Michaels is probably the only other wrestler who I can think of with such a high level of in-ring skill and charisma, but I give the nod to Mayu for being so stable throughout her career and coming off as an awesome person in real life."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: FutureWrestlerCelebwrote on 01.01.2025:[9.0] "Mayu Iwatani is one of the best wrestlers in the world, especially in the Joshi (Japanese women's wrestling) scene, and her contributions to Stardom are legendary. Here's a rating breakdown: In-Ring Skills: 9.5/10 - Mayu's athleticism, precision, and ability to tell emotional stories through her matches are nearly unmatched. She seamlessly blends high-flying moves with technical wrestling. Charisma: 9/10 - Her unique charm and endearing personality make her a fan favorite, while her determination in the ring shows her fighting spirit. Mic Skills: 7.5/10 - Though not primarily known for promos, her genuine and heartfelt delivery resonates with fans, especially in Japan. Finisher Impact: 9/10 - The Two-Stage Dragon Suplex is one of the most beautiful and devastating moves in wrestling, perfectly reflecting her style. Overall Presence: 9/10 - Mayu has an aura of being a true ace, representing Stardom as one of its cornerstones and elevating women's wrestling globally. Overall Rating: 9/10 - Mayu Iwatani is a masterful performer and a true icon in professional wrestling, excelling both as a singles competitor and in elevating the prestige of Joshi wrestling worldwide."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: coleeeeeeewrote on 17.11.2024:[10.0] "Mayu Iwatani is arguably if not one of the best women's wrestler of all time. And, she is the main reason i was able to get into Stardom and still be watching it till this day, and became a fan of hers after i watched a match of hers against Utami Hayashishita. And , she is pumping out some of the best matches of the year"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Pmurt2024wrote on 14.11.2024:"Mayu Iwatani, the Icon of Stardom, blends fearless high-flying with technical skill, captivating fans with her resilience and heart. A true legend, she embodies the passion and excellence of Japanese wrestling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Thenwoagedbadlywrote on 21.10.2024:[10.0] "I'm convinced I could show a Mayu match to any decent person and they would say, at least, two things: 1) She's really great at wrestling and 2) She's really loveable. That kind of instant impact just shows what a talent she is and the strength of the character she has created. She could have been a star in any era of joshi puroresu, has absolutely no weaknesses and even continues to add new notches to her belt (such as her being super heelish in 2020). Also, she's never really failed to deliver when the spotlight is on her, has carried Stardom on her back multiple times and set the stage for their most profitable period ever by crowning Utami the red belt champion (when she could have been a dick and not played ball). Long may she continue because the joshi puroresu scene will have a big hole in it when she retires."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: troyotawrote on 15.10.2024:[10.0] "In my opinion the greatest women's wrestler of all time. A lot of new fans only know her by her new stuff and her IWGP title reign, and while that reign has been great, Mayu's old stuff is even better, so i definitely recommend checking that out. Besides being an amazing wrestler she is an amazing person, and i'm sure that over the coming years we're gonna have many wrestlers debut who grew up watching Mayu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: JoseNEOwrote on 09.10.2024:[10.0] "When all is said and done, I fully expect Mayu to be considered not just the greatest female performer in the history of this sport but also one of the greatest overall wrestlers ever. Her rivalry with Kagetsu is one of the greatest of all time, her best matches are some of the greatest of all time, and her character work the story she has been through to reach the point of being called the Icon of Stardom is one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: BiosJoshiBarwrote on 08.10.2024:[10.0] "I don't think it is a stretch to say that Mayu is one of/ if not the greatest wrestlers to ever do it. She deserves all the 10s"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: dizziedwrote on 29.09.2024:[10.0] "Mayu is one of the greatest wrestlers ever (man or woman). I think there might be a dilemma with her whether to stay in Japan or to branch out to the United States like her contemporaries like Io Shirai, Asuka (Kana), Kairi, and recently Giulia have done. Her success can match the first 3 or it can be like Sareee aka Sarray where the WWE wasted a very good wrestler. Having a long reign as IWGP Women's Champion is probably enticing but the title has nowhere near the level of credibility that the AJW's WWWA World Women's Championship had in the 80's and 90's. The competition is nowhere near that level at this time. While Manami Toyota is arguably the greatest women's wrestler ever, the only thing that kept her from being absolutely the greatest women's wrestler was going to the United States and competing (although fair enough to say the competition in the United States was not good in the 80's and 90's). I think she should give it a chance but her success will be measured by her ability to connect with the American audience like Io, Asuka, Kairi, and even Giulia have."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: JordyJackswrote on 24.09.2024:[10.0] "The greatest female wrestler of all time. Nobody has consistently shown time and time again why they are held in such high regard. She can sell like very few others and has a very unique in ring style. Not only is this in ring work as a whole at the highest level possible but the high level of emotion that's put into every match is so easy to see. She truly leaves it all in the ring every time she steps between the ropes. Every match is part of the story of Stardom's Icon and I look forward to the story continuing!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Cletxawrote on 27.08.2024:[10.0] "The best female wrestler in history, ever and future. Top level. Mayu GOATANI is a little difficult to describe. SHe's the best technician you'll ever see, there's no limit to what she can do in the ring. She deserves her nickname. Icon Of Stardom."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: snazzywrote on 22.08.2024:[10.0] "The best womans wrestler of all time and the best seller of all time, man or woman. She encapsulates the best of what Joshi wrestling is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Ne4rzer0wrote on 09.08.2024:[10.0] "One of the best wrestlers in the world man or woman. I watched one of her big matches one day and instantly fell in love with her style and personality. People who don't know of her are missing out she's a 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Ismonpoikawrote on 07.08.2024:[10.0] "Perfect wrestler, 100% the style I adore. great at aerial moves and risk taking, but also remembers to sell at a top level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Sal1314wrote on 05.08.2024:[10.0] "The heart and soul of Stardom Mayu Iwatani is the definition of a wrestling prodigy, a true student of the game. She is your favorite wrestler favorite wrestler, a natural babyface with outstanding wrestling ability. I wish she would follow in the footsteps of her friends Iyo and Kairi and get more exposure to main-stream wrestling (WWE or AEW), but she will probably remain with Stardom until the end of her career. Mayu, Iyo, and Kairi were the heart of Stardom; they really helped put the promotion on the map, especially during that dark time when a match turned into a real shoot between Yoshiko and Act."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: SigmaAngeloAsteriawrote on 28.07.2024:[9.0] "Mayu Iwatani has to be the GOAT of this current Joshi generation. A very talented and skilled wrestler. Still missing a bit of the IT that made the 90s Joshi legendary. Definitely top 10 though"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Gabiwrote on 26.07.2024:[10.0] "Mayu Iwatani is the GOAT. I throw around this term quite a bit, but this time I truly believe it. She belongs in the same tier as all the greatest. Her in-ring is simply unbelievable. I could write a big paragraph to explain how good she is but Im just left speechless. You have to see it for yourself. Her selling is absolutely incredible. Her personality outside the ring also makes it so easy to root for her. Everyone loves funny and clumsy Mayu"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Aspionwrote on 22.07.2024:[10.0] "(Sorry english is not my firtst language) She is in my opinion the best wrestler in Womens history. IDK if we are going somebody that good in next years"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Itsover9000manwrote on 22.07.2024:[10.0] "What an unbelievable talent. Her selling is the best I've ever seen. She's incredibly versatile and can work pretty much any style. Her Character is extremely likeable. Honestly one of the best wresters I have ever seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Joe907wrote on 19.07.2024:[10.0] "Mayu Iwatani is the perfect professional wrestler. The ace of womens wrestling. Very good at technical wrestling and goes at high pace. Definitely one of the greatest of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: IronStarwrote on 04.05.2024:[10.0] "Mayu is just a genius of pro wrestling. Literally every time she walks into the ring, she gave me goosebumps. Her style of wrestling is so unique, I have never seen someone who wrestles like Mayu Iwatani and that's the reason why she is the greatest of all time. It is indeed a special occasion to see Mayu Iwatani wrestle in a important match. Even with the IWGP Women's Championship, the title that is not cared by NJPW, she is doing a really great job. I hope her retirement won't be before her 40's"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: JoLUVmaniawrote on 15.04.2024:[10.0] "I just started rating on Cage match and I want to give her a Ten but right now Im to eager to talk about her. When you look at the Top 10 highest rated people in match guide you see people born in the 20s 60s 80s (they rightfully deserve it) but someone born in 1993 and starting her career in 2011 and she rightfully deserves a 10. I was first introduced to Mayu when Mercedes faced her at Stardom (I know Ive seen her for a long time) That was one of my favorite Mercedes Mone match in Japan. Mayu vs IO Shirai is one of my favorite Matches ever. Purrriod. She is one of the best female wrestlers in the world, If we ever see Mayu in AEW I need to see her face Moné. I Lloyd watching her old stardom matches, and her new NJPW Matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: TripleCrownwrote on 04.04.2024:[8.0] "One of the very best Joshi and overall female wrestlers of her generation. Feels like Mayu has been around for AGES, and after a quick look... she has been doing this since 2011, which is just crazy considering she's only 31. Fantastic in-ring wrestler, I have zero knowledge of Japanese so I can't rate her ability on the mic, but pure wrestling she is just one of the very best."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Lauchlanwrote on 26.02.2024:[10.0] "The best women's wrestler in the world and one of the best wrestlers in general. Mayu personifies Icon, she is a true leader, a champion, has so much charisma and is also a genuine amazing person. She will continue to thrive whatever happens next."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: RusherBryan29wrote on 10.02.2024:[9.0] "My current favorite woman wrestler. Fantastic athlete and always give her all in matches. The definition of ace in a pro wrestling formation. One of the best pure babyface in pro wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: xmenxwrote on 15.01.2024:[10.0] "she is so Good! Ace of Yoshi, ssshe can make 5 star match so easy. good seller af, you can say she is hard working and her love for pro wrestling is real."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Wrest lingaddictionwrote on 16.11.2023:[10.0] "This woman is incredible! Aside from being one of the best wrestlers in STARDOM, she's also made her way into NJPW and won their top women's title. Just having her name mentioned along side it elevates the prestige of it by tons."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: MegaSPSwrote on 03.11.2023:[10.0] "mayu iwatani might be the best female wrestler ever, shes also easily one of the best wrestlers ever regardless of gender. she has the most for the love of the game attitude when working her matches where shell take the most insane moves when she definitely doesnt need to. shes stardoms ace for a reason, and the icon nickname is well deserved. when kairi and io left stardom, mayu practically carried the company on her back (or neck based on her insane bumps) along with kagetsu while stardom built up their next generation. no matter who has been built up or been signed, mayu has remained on top for a reason. shes arguably the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Animagowrote on 21.08.2023:[10.0] "The greatest wrestler of generation regardless of gender. Her contribution to Stardom is simply tremendous, rising from the bottom to the top of the company in an amazingly organic way. Stadom just wouldn't be where they stand now if not for their icon and ace Mayu Iwatani. She has this incredible ability to be at the same time a dominant champion and a fantastic underdog. Her repertoire of moves is just insane, she has a dazzling miw of speed excellent technical skills and hard-hitting strikes (when she serious only Syuri can surpass her in that field). Her ability to invest people in her matches through her world-class selling and bumping, her one-of-a-kind charisma and willingness to work in any position on the card makes her virtually the perfect wrestler to be at the top of major company."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ThreedomLegacywrote on 09.08.2023:[10.0] "My favorite of all time -- when it's all said and done, there will be a claim for the greatest of all time as well. She embodies everything you want in an ace but she was always better than that as "The Icon." What she was able to do for STARDOM time and time again to help get them to the level that they're at now is incredible. She's one of a kind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: gtg018wrote on 07.08.2023:[10.0] "A true athlete and fighter. She has a unique and appropriate selling style and really feels all the those impacts (especially bodyslams). She is an enjoyable wrestler to watch with her acrobatic moves. It is an admirable feature of her that she always keeps her energy high. Totally a role model in women's wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ak47al123wrote on 01.08.2023:[10.0] "Mayu Iwatini might be the best female wrestler of the last five years. She got the look, the awkward yet charismatic personality, and most importantly, excellent in-ring performance. Her dragon suplex is a thing of beauty and her selling is top-notch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: SienaArsenwrote on 02.07.2023:[10.0] "Mayu carried Stardom in her back for all year during 2020. And take all the risks basically alone to maintain things warm in the company. She proved her value, and it's unnecessary talk about her skills, charisma and in-ring performances. It's so far the best wrestler in the world today, even now, while take a backseat and let the others take place on the spolight, she's still one of big stars, always taking the attention to herself. And there's no point to make excuses to not talk good things about her, especially when take on singles matches. For me, no matter how her career could be a rollercaster sometimes, she's the only wrestler in the world I'll always give a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: NEVERoverweightChampionwrote on 29.06.2023:[9.0] "She's pretty athletic and is good at a lot of things. Being extremely flexible she can sell and bump like almost nobody else, not scared of trying some crazy/weird spots sometimes. She has a charisma of her own, being awkward, clumsy but endearing. You can always count on Mayu to do her best and make her opponent look great. One of the best female wrestlers out there and surely the soul of Stardom at this point."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: MasteroftheMatchGuide99wrote on 28.06.2023:[10.0] "Without a doubt the ace of Women's Wrestling no matter which company. Consistently delivers high-level performances, always has a charismatic aura, and can work with pretty much anyone, no matter how inexperienced or experienced they are. She's still relatively young at 30, but the fans better enjoy her while she wrestles, because the day she retires will be the day we lose a huge icon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: BigRossManWPwrote on 26.06.2023:[10.0] "The greatest women's wrestler of all time. Has been the undisputed ace of the conpany that's now the best in the world since its inception, and she's still delivering every chance she gets."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: SoaKaswrote on 23.06.2023:[8.0] "It feels like hat to give her such a "low" rating but she's just not my type of wrestler. I struggle to get into her matches and she really just doesn't capture my excitement. Really frustrating for me since I know how good everybody thinks she is but there's nothing I can do about it."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Storyline Guywrote on 08.06.2023:"The best female wrestler in the world and one of the best wrestlers in general. She's crazy athletic and has amazing wrestling style coupled with great charisma and strong babyface energy. The best part of her game is selling... oh my world she can make anyone look like a million bucks. Came to know about her last year and it took me only one match to become a fan of her (vs Io Shirai in December 2016). She's the icon of stardom for a reason."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: vaiser21wrote on 29.05.2023:[10.0] "The best women wrestler, probably the GOAT of women's wrestling, great babyface and great in-ring, there's nothing that she can't do, and she still has many years of her career ahead of her, excited to see what she does in the near future"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: RecklessOnewrote on 17.05.2023:[10.0] "One of the best wrestlers on the planet. A great ring skill coupled with a great energy of a babyface makes her the best wrestler out of her. On her example, a future star is already growing, she is surrounded by interesting girls and is not going to stop there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ZayTokyowrote on 14.04.2023:[10.0] "The John Cena of stardom and possibly womens wrestling as a whole. One of the best wrestlers of all time and she has no signs of slowing down anytime soon. 20/10 no typo needed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: TheOneAndOnlyCactuswrote on 13.04.2023:[10.0] "In my opinion, the greatest womens wrestler of the modern era. I can't express enough in just a few words how much I love Mayu Iwatani, the Icon of Stardom. Is she perfect? No, but she is athletic, she sells so well, arguably the best in the business right now at it, she is amazingly charismatic with a deep connection with the crowd, and has the knowledge of psychology and the moveset to have classics after classics with pretty much anyone she is put against. So while she is not perfect, she is as close as I can hope for anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Cyclopz007wrote on 31.03.2023:[10.0] "My absolute favourite woman's wrestler. Incredible skill, matchless charisma, and perfect style. Discovered her on ROH and was blown away to this day. 10 outta 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: GriffinXwrote on 27.03.2023:[10.0] "At a time where Stardom has a very real case at being the best wrestling on earth Mayu reminds the standard others have to live up to. Able to play both a serious ace but also a total goofball she draws fans in with everything"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: nizzyhizzywrote on 09.03.2023:[10.0] "There's not a wrestler in the world like Mayu Iwatani right now. I discovered Mayu at the end of 2020 during her great World Of Stardom run and since then she's been my favorite women's wrestler and probably my favorite women's wrestler of all time. Her matches with Takumi, Io, Utami, Kairi, Yu Ishino and a bunch of other wrestlers I'd highly recommend that you'd watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Makai Clubwrote on 05.03.2023:[8.0] "One of the few Joshi that can rival her predessors of the 1980s and 1990s. You can maybe pick apart the style and flaws of her matches but you can't fault her performances, her drive, her amazing abiltiy to make you care and root for her when she is being a bump machine. She really carried the idea of Stardom for years prior to Bushiroad coming in. And while I haven't paid attention to her recently, she was the very reason I watched Stardom after the first show. And that is the case with men. She is nothing but quality. One of the best of her peers, perhaps the best."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Daigotsuwrote on 16.01.2023:[10.0] "Mayu is an absolute genius professional wrestler. She's very good in the ring for sure; she's fast, she's athletic, her moves are great. She is on the shortlist of best sellers of all time. Her real genius is in her charisma, and her unparalleled ability to connect emotionally with her audience. I've rarely rooted for a babyface as much as I have for Mayu. She's able to make you care about professional wrestling, and the people involved. She really is a generational talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: TerwilligerTheLuchawrote on 13.01.2023:[10.0] "Legitimately one of the best professional wrestlers of all time. The absolute template for "ditzy" wrestler apart from possibly Kota Ibushi, just one of the funniest wrestlers I've come across. On top of that, her ring work is almost unparalleled. She's able to get you completely emotionally invested in any match she's in. The fact that she's not even 30 yet makes it all the more unreal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: eBentowrote on 06.11.2022:[10.0] "Mayu Iwatani is a generational talent; there won't be anyone like her in the world of Joshi Pro Wrestling for a long time and she will forever go down as THE Icon. Nobody in the whole industry is as good of a seller, nobody is as believable and charming as a babyface and nobody embodies the passionate spirit of pro wrestling quite like Mayu Iwatani."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: benny5bellyswrote on 11.10.2022:[7.0] "Mayu is very very good and although I don't watch as much Stardom as much as I used to, when I do check in on the promotion she still delivers when needed."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ScottEWrestlingwrote on 10.10.2022:[10.0] "For my money, Mayu Iwatani is the greatest of all time. If you watch her work throughout and take into consideration what she has done for STARDOM throughout her career, it's difficult to thank anyone for their success more than her or Rossy Ogawa. She has a limitless number of matches to her name that not only go down as "classics" but as all timers. Each year she never fails to at least enter one into the equation and she has proven that she is the best out of Threedom despite never being the chosen one over the likes of Io Shirai and KAIRI. Her match with Starlight Kid on the final night of the 5STAR Grand Prix identifies what makes her so special as a performer but that's only one of many. Truly the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Rivermanwrote on 16.09.2022:[10.0] "The greatest at bumping/selling in history....Oh yeah, and pretty outstanding at literally everything else too"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: BabaYagaV20wrote on 03.09.2022:[10.0] "Mayu Iwatani has been an essential part of women's wrestling for almost 10 years now. Arguably the best worker in the industry right now, she's not only the ace of STARDOM, but of the whole sport in general."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Kingmoose22wrote on 21.07.2022:[10.0] "Mayu Iwatani is one of the best wrestlers in the world today. She is without diskussion the best seller in the world. She manager to always make herself look like the underdog even against far less experienced opponents. She is in my opinion the best wrester in STARDOM."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Plume Kiddowrote on 03.07.2022:[10.0] "Mayu Iwatani is everything Joshi Puroresu is about. Mayu is the legacy of an entire generation and at the same time, the bulwark of a new era. Her in-ring skills are exceptional, so much that her contribution to the innovation of the sport is still evident today and I feel very lucky to be able to witness her career prime. She'll go down as one of the best wrestler of all time and at 29 she already tops every woman ever in the athlete toplist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: jamzell00wrote on 05.06.2022:[10.0] "It is impossible to cheer against this women. Her ability to get people to believe in her and her matches is all time great and of course she's a great worker too. Always smooth in the ring and makes her opponents look amazing with how great of a seller she is. Maybe the best in the world at looking like they just got destroyed in the ring. Somehow not even 30 yet lives up to the nickname of Icon of Stardom every step of the way. Many prefer Kairi and Io during this time period but Mayu will always be my favorite of the trio"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Wright15wrote on 26.05.2022:[10.0] "Mayu Iwatani was one of the first wrestlers of whom I became a huge fan. She was, by all accounts, the least promising rookie from Stardom's original class, yet after 11 years, she is the only one left in the company. Not only that, but she has been the ace for years. Over the last two or so years, she has surpassed Io Shirai as the best wrestler in the history of the promotion. Tomohiro Ishii is the only active wrestler that I would say is a better seller. There are very few who have taken crazier bumps for otherwise routine spots. It's difficult to think of a more natural babyface. She was one of the three or four best wrestlers in 2020, and she remains comfortably in the top 20 today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: CoolKylewrote on 13.05.2022:[10.0] "Mayu cannot be killed by conventional means. When the human race is extinct and the dust settles after all the noise and commotion from the nuclear wars there will be only silence, cockroaches and Mayu Iwatani. Greatest of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: LilKazu69wrote on 10.05.2022:[10.0] "Easily the greatest female wrestler of all time and probably the most talented wrestler in the world. Absolutely love that her story is the entire story of Stardom"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: WhatIsLooveeewrote on 01.05.2022:[10.0] "I have never been a really big fan of joshi, but I am very impressed and inspired by the story of Mayu. She was able to overcome personal socialization problems and, despite all the difficulties, succeed in his favorite thing to become one of the main faces of a successful major promotion. Mayu is a wonderful wrestler and great storyteller, whose commitment and sincerity are exciting, and the technique is impressive."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Okaro143wrote on 22.04.2022:[10.0] "One of The most outstanding female wrestler on the planet and one of my personal favorites. Very versatile wrestler with impressive striking ability, technical ability and high flying ability as well. A bit clumsy sometimes but also very charismatic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Legend003wrote on 14.12.2021:[10.0] "Was kann man noch über Mayu sagen. Sie ist sicherlich einer der besten Damen im Wrestlingbereich. Sie kann so unglaublich gute Matches worken, hat ein fantastisches Moveset und ist schon jahrelang an der Spitze von Stardom. Eine wahnsinnig starke Perfomerin, die sicherlich jeder schon einmal gesehen hat bzw. gesehen haben muss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: hothstationwrote on 13.12.2021:[10.0] "Fantastic performer all-around that is excellent at every facet of her craft; she also has that special ability to connect with the audience in a way very few do."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: twostagetommywrote on 19.11.2021:[10.0] "She has been one of the best wrestlers in the world men or female for the last half decade. Arguably the best out of threedom, can have a great match with literally anybody. Clumsy outside of the ring but perfect and graceful inside of it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: jmerchantTWMwrote on 08.08.2021:[10.0] "If Io Shirai didn't exist, Mayu Iwatani would be the undisputed best women's wrestler in the world today and there is no debating it. She's the ultimate seller in the ring, everything her opponents do to her looks absolutely excruciating. She's got a top notch move set and she's got this killer look when she gets serious. I swear she looks like she is going to murder her opponents sometimes and I love it. You watch Mayu in the ring and some of the bumps she takes and you have to wonder how she didn't break her neck taking it. She has to be made of rubber, I swear."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: blastostgwrote on 28.07.2021:[10.0] "The Ace of Stardom for good reason. The icon. In addition to her fantastic matches, her bones are seemingly made out of rubber. She seems to have no issue landing directly onto her neck, being folded in half or taking any manner of brutal bump."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Lueokawrote on 16.07.2021:[10.0] "Possibly the greatest talent that STARDOM has ever produced. Mayu has filled in all the check boxes to meet the requirements for being a complete wrestler with a depth that is only found in those that are of legendary status (deservedly so). While her earlier back catalog reveals how flawed she used to be, altogether she makes up for it when she fleshed out her entire game and lifted herself into the beloved wrestler we know today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: XIIVwrote on 05.06.2021:[10.0] "Mayu is as good as everyone says and has truly established herself as the Icon of Stardom beyond just a moniker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: VladimirPoopinwrote on 03.06.2021:[10.0] "Mayu Iwatani is the Icon of Stardom and possibly the best wrestler in Japan. She always pushes herself to go to new lengths to put on a show. This is particularly evident when facing off with other greats such as Kagetsu, Takumi Iroha, Jungle Kyona or Momo Watanabe. She has a natural charisma much needed in Stardom today, and bumps like something crazy. Mayu was with Stardom from the beginning, has been a rallying point through some dark times, and has been central to helping the organization achieve greatness. 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Suzukigunwrote on 26.03.2021:[10.0] "She's called the "Icon of Stardom" for a reason. Amazing in the ring, interesting enough on the mic and the heartbeat of Stardom."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Kungwrote on 04.02.2021:[10.0] "When it comes to joshi wrestlers, there isn't a better one today than Mayu Iwatani. She's the total package; she's great in-ring, she can hold the crowd in the palm of her hand, and she's eternally likable. She also has the smoothest arm drags on the planet. To me, she's a top 5 female wrestler right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: pierreMinnewrote on 28.01.2021:[10.0] "I can't give her another rating than a 10 for obvious reasons. She has maybe the best in ring in the world alongside Io Shirai, she puts over everyone she is in the ring with. She is a great babyface and can carry everything that moves. One of the best in the world, surely."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: EmbraceTheHatewrote on 03.01.2021:[9.0] "Honestly one of the best wrestlers around. Easily one of the greatest female competitors the sport has ever seen. As clumsy and goofy as she seems her matches show great resourceful action and a very charming and well put together talent that has a lot of crossover appeal. Her work can't be understated. She hopefully will be remembered as a legend in this great business and rightful earns that spot. Reliable worker who can lead and mentor with her ability. She should be proud."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: medousewrote on 10.12.2020:[10.0] "There will be moment, she will become a legend and a face of joshi wrestling. She already is considered as one of the best female wrestlers in the world. She's got the looks, amazing skills and she's the sweetest babyface of all time. The amount of work she put in Stardom is tremendous. I cannot imagine this company without her."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Same Old Same Oldwrote on 16.09.2020:[9.0] "Neck abuse aside, Iwatani is currently pulling out all the stops on a consistent basis, in both in ring and character performance."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ElPolloLocowrote on 29.08.2020:[8.0] "Until 2018 or so she was extremely mistake-prone to the point sometimes she got stuck in the middle of a move, something that still pops up from time to time these days. I remember in one 2017 interview Rossy Ogawa went as far as publicly call her "lazy". But after Stardom was mercilessly raided for talent she really upped her game, perhaps because she would have had no other place to work if the promotion closed down. She has cleaned up her in-ring work a lot since then and had some truly excellent matches since. Basically she carried the promotion together with Kagetsu until earlier this year, including all the dead weight of the useless foreigners. Now she's the only ace Stardom has left up her sleeve, at least until Momo Watanabe finally finds a character that suits her and the time to seriously push Konami and Tam Nakano comes. And again she seems to be giving her best when under pressure. As a character I must say I find her fake clumsy persona unconvincing at the best of times. I just cannot buy her in that role. And in spite of her huge in-ring improvement I still find her the least of the Three Daughters of Stardom."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: SpaceLionWwrote on 11.08.2020:[9.0] "Amazing wrestle person. A bit clumsy at times and definitely a bit too keen on landing on her neck, but really just possesses an endearing energy and puts on really, really fun matches and bumps with the best of them (except when she's landing on her neck please no)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: EUJBFTYwrote on 26.07.2020:[10.0] "An amazing wrestler and my favorite Joshi of all time. She has an inspiring backstory of how she went from being a hikikomori to being the Ace of the Stardom and is (in my opinion) the best female wrestler in the world today. She has the potential to be remembered as one of the all time greats in decades to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ProWrestlingGuy316wrote on 20.06.2020:[10.0] "Es gibt im Wrestling aktuell kaum Faces, die diese Rolle so gut verkörpern wie Mayu Iwatani (ich würde Tanahashi oder Kento Miyahara nennen, die in dieser Hinsicht ähnlich gut sind). Gepaart mit herausragenden Fähigkeiten im Ring ist Mayu schlicht und ergreifend eine der besten Wrestlerinnen der Welt, wenn nicht sogar die beste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: VillainClubwrote on 12.05.2020:[10.0] "Das Icon von Stardom und Zurecht das ACE. Vollkommen zurecht World of Stardom Campion. Eine der besten Wrestlerinnen der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Wrestling Foreverwrote on 14.04.2020:[10.0] "Längst eine Stardom Legende unfassbar sympathisch. Auch eine die sich nie schont und so viel drauf hat. Was hatte Sie nicht schon für Schlachten gerade die mit und gegen Io und gegen Kagetsu sind legendär."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Riggswrote on 24.02.2020:[10.0] "She is a really good face underdog. I always can see her losing a match believably and rarely think she is the favorite. However, she is an incredibly good technical wrestler and that is able to make her a believable face of Stardom. Edit: She has really shown she is one of the best in-ring Joshi right now. She is smaller and awkward outside of the ring, but inside she is amazing. And she has now taken just about every moved Io Shirai used."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Dragon Fighterwrote on 22.02.2020:[10.0] "A tremendous talent overall. A real world-class female wrestler nowadays after having seen a fair amount of her matches. She is excellent at working babyface. She has a really brutal moveset and especially the variety of her bridging suplexes (which are one of my favorite things in wrestling today). Mayu can work well with various opponents as well. She can bring intensity, bump and execute brilliant babyface comeback. She can really do everything right now as she is the Ace of Stardom after the departure of Io Shirai and Kairi Hojo. And even of all these 3 women, she is now the one I enjoy the most while the other two seem to struggle in WWE. Easily one of the best in the world and one of my favorites."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: jaykyuenwrote on 16.01.2020:[10.0] "Mayu has my favourite wrestling style and is one of the best babyfaces in the entire business, it's just impossible not to root for her. A brutal moveset, a long list of great matches and emotional moments, a great babyface aura, some of the sickest bumps you'll ever see and overall a world class talent in and out of the ring, Mayu has it all to be considered one of the best in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: CrazyCoffeewrote on 22.12.2019:[10.0] "Mayu Iwatani.  The Icon.  The Savior. The Current Ace of Stardom. The last remaining member of the Threedom still in Stardom.  Probably one of the greatest sellers and bumpers of this generation regardless of gender.  She has had amazing matches with Io Shirai.  Mainstream fans who like Io, Asuka, and Kairi, I highly recommend checking out her matches in Stardom as well as her colleagues.  And if that isn't enough, you need to check out "THE WRESTLERS: Japan's Finest Wrestlers (A VICELAND documentary about STARDOM)" which gives us a glimpse of Mayu as a person.  She loves wrestling as it is and Stardom is her.  I doubt she will ever leave there, but anything is possible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: cuervonegro83wrote on 30.08.2019:[10.0] "Mayu Iwatani the Ace of Stardom or like she saids the Icon, I really think she is one of the greatest in the world, everytime she tries a move she does it, except that time she tried to do the surfboard but was a funny moment, that's the good thing about Mayu she is great but at the same time you can feel she is a bit goofy in the way members of other stables make fun of her, is like they don't respect her, but of course they do is just part of the show. Some of her moves are so cool to see, the super kicks, her new moonsault is so beautiful and even she learn in less than a month to do the Tiger feint kick (619 for WWE fans) to use it in tag matches with Starlight kid (she also starts using the standing moonsault), showing that she always wants to learn to do new things and do better matches with her tag team partners. She is also a great seller, she had some injuries this past years so I expect she can be healthy for a long time.  Some weeks ago I watched a documentary about "STARDOM THE WRESTLERS: Japan's Finest Wrestlers", you can see it in Youtube, is from 2017 but in this video you will find some things about Mayu, I was surprise to know somethings about her past and how she is and I can only love her more.  If I had to recommend a match, obviously any match agains Io Shirai is great, but matches against Kagetsu, Momo Watanabe or Utami are also a great option, and of course any tag team match with her STARS partners are fun to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: KyleEnjoysWrestlingwrote on 05.08.2019:[8.0] "Mayu is hard for me to rate because I do like her, but there just feels like there's something missing. She's good in the ring & has some charisma, but it just feels like part of the "it factor" is missing with her. I totally understand why WWE would want Io & Kairi & would opt to pass over Mayu. I feel bad for her because she's very good... but just missing something."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: RussTShackleford46wrote on 15.02.2019:[10.0] "For a long time she was relegated by many as "3rd place in Threedom" behind Io Shirai and Kairi Hojo, but I've come around to the possibility that she very well might be the best of the 3. While her offense isn't as eye popping as Io's, she has a good technical style mixed with a bit of high flying and a fluidity that is among the best. Ranks right up there with Kota Ibushi as the best bumpers in the business, and she always makes her opponents' offense look like a million bucks. Mayu's also one of the most charismatic workers in Joshi, and has a natural underdog babyface aura that really gets crowds behind her. Easily one of the best female wrestlers in the world today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: 20SaiDa19wrote on 10.02.2019:[10.0] "Mayu is amongst the best in-ring performers in the world today. She throws some of the best suplexes and is in my opinion, the best bumper in modern wrestling; this combined with her ability to sell, means that she makes most of her opponent's offence look great. She can also play the underdog role well and can cut a decent promo; my personal favourite women's wrestler ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: LandonRyanWyattwrote on 31.01.2019:[8.0] "An underdog of underdogs in the women's division. Good wrestler, and enjoyable on a lot of levels. The future."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: TheRatemakerwrote on 24.10.2018:[10.0] "She is one of the best in the world today. Good babyface, tremendous in a ring, cut some goofy promos, the last one of the threedom still in Stardom. Her journey to reach this level is awesome too, she is an underdog in real life too. She brought the best feud in the modern era of Joshi-puroresu with Io Shirai, and she probably hold the best match of the modern era of women wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: PistolPeteMattywrote on 28.08.2017:[10.0] "Along with Kairi Hojo & Io Shirai, Mayu is one of the top three female wrestlers around today. She's an excellent underdog babyface and has the most brutal looking Dragon Suplex around. Have yet to see her deliver a bad match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: LooseExplosionwrote on 17.12.2016:[10.0] "One of the best female wrestlers on the planet and of this generation. Her salesmanship is unparalleled and her natural underdoggedness makes her one of the most sympathetic wrestlers going. Her execution is generally pretty crisp, her kicks are great, and her dives are pretty decent. I don't know any women that move as fast as she does in the ring. She reminds me a lot of Kota Ibushi, which is huge praise. Iwatani is great and deserves greater international recognition."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: martyrofevilwrote on 13.11.2016:[10.0] "My favourite wrestler in the world. She's an incredible underdog and perhaps the best bumper I've ever seen who can make even commonplace maneuvers look terrifying. She sells extremely well too, not just immediate damage but her own exhaustion as well and she can convey a lot of complex emotion through her face and body movements. She always knows what little touches to add in to really make a captivating in-ring story and if I had any flaw to say about her its that sometimes she sells me so hard on the build-up for a match that the match itself sometimes can't live up to the hype. If all that isn't enough, she's also super good at the actual "wrestling" part too with great speed, stiff strikes, beautiful suplexes, she's just the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Luv all wrestlingwrote on 10.08.2016:[9.0] "She shows good intensity, sick suplexes and the option to be a huge young star for STARDOM, which she already is."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: rustybridgewrote on 10.08.2016:[9.0] "Good intensity, great speed, very good offensive, takes bumps well and sells well. Also fun to watch and good on the mic. Current holder of 2 titles and is definitely a rapidly rising young star."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ntrlk1wrote on 06.07.2016:[9.0] "Undeniably among the best in the world.  Her offensive moves all look great, "suspension of disbelief" is not difficult with the way she lays in her kicks and suplexes.  Her bumping and selling are incredible, which make her a babyface of the highest calibre.    Her mic skills are good too, she does both sarcastic humour and serious emotion very well."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: LawDog89wrote on 29.03.2016:[8.0] "Iwatani is one of the best babyfaces working today. She shows great fire, and is a relatable and sympathetic character. Her work is very good of someone her age. She has cool moves and great athleticism. There are times when I feel like she hasn't fully grown into her body though. I know she's 23 but sometimes she moves like a bit of an awkward teenager. She is constantly getting better however and is one of the most popular wrestlers in Stardom, for good reason. One day I expect her to be a main event player. She's almost there now."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Nikkideamus Osyrenwrote on 22.11.2014:"She's got a lot of charisma.  She's a great high flyer, and she's a lot of fun to watch.  She has this spunky underdog vibe, which seems to be rare in Japan.  I'd love to see her take flight on the international stage.  She's a boat load of skill too. I think she's a tad slow at times, or, at least compared to other Joshi in her field.  But either way, she's got a lot of technical prowess, and she's highly athletic."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: YagameTheRealKingpinwrote on 29.01.2025:[10.0] "Kawada hat für mein Empfinden immer ein etwas unfaires Los gezogen. Als Teil der , , Big 3" war er immer der den zwar natürlich auch stets alle krass fanden aber auch der, der immer etwas...ich will nicht sagen belächelt wurde...aber er hatte es schon schwer mit Misawa und Kobashi. Was echt schade war, weil er ein absolutes außnahmetalemt war. Aber gut nicht umsonst wurde all das damals als Goldene Ära des Wrestlings betitelt. Viele Leute mit unglaublichen Talent. Für mich hat Kawada aber ein ganz besonderen Platz in meinem Herzen und ich schaue mir immernoch gerne Seine Matches an die noch mit einem Toaster aufgenommen wurden. Ich komme nicht herum um Kawada volle Punktzahl zu geben und an dieser Stelle nochmal danke zu sagen an eines meiner absoluten Vorbilder. Arigato Kawada-san."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Mauiwrote on 23.01.2025:[10.0] "Probably the third most popular wrestler in Japan in terms of match quality, selling and technicality. His stiff shots and receivings onto his own body are popular. So is his finisher. His battles against Misawa are stuff of legends and would they occur today, that would indeed surpass all those 6+ star matches of today and reach like 8 to 9 stars. S-Tier wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Zak22wrote on 06.10.2024:[10.0] "An incredible talent who was instrumental to the greatest main event period in wrestling history. A legendary rivalry with Misawa and his great kicks earn him a place in wrestling history. One of the most exciting and intense in-ring workers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: jsbortswrote on 26.09.2024:[10.0] "Kawada was fucking awesome. One of those wrestlers who doesn't need a reputation to precede him, he brings his intensity every time he comes to the ring and wrestles like he has something to prove. Innovator of offense, but also just a brutalistic intensity that befits pro wrestling at its top form. One of the absolute coolest to ever wrestle, and one of those wrestlers who can change people's perception of what the sport/art is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Willie 19200wrote on 01.06.2024:[10.0] "Toshiaki Kawada is one of the most influential and overall just cool wrestlers of all time. The stuff he did with Misawa, Kobashi, and Taue was legendary and revolutionary to the business. I specifically really enjoyed his rivalry with Misawa. I also feel like he is the most underrated of the 4 pillars of heaven and definitely does deserve all the credit for his work. Not to mention without a shadow of a doubt Kawada is the best kicker in the pro wrestling business. Overall one of the greatest wrestlers of all time and deserves 100% to be on the list of being one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: JediSaiyanMaster1203wrote on 30.05.2024:[10.0] "One of The Four Pillars of Heaven of All Japan, and there's a damn good reason for that. Toshiaki Kawada is easily one of the greatest professional wrestlers of all time, whether he's doing singles or tag team competition, there's very few on his level. Kawada might just be the best kicker in wrestling, up there with the likes of Bryan Danielson, he's so good that people replicate his kicks to this day (especially the "Kawada kicks, " the one where his opponents are bend over and he just kicks their face in). His rivalry with Mitsuharu Misawa is one of the all time best in this illustrious "sport" we love so much, their bout in 1994 is-arguably-the best match to ever happen in Japan or anywhere else, so good that Dave Meltzer rated it a 6 star rating (LONG before Okada and Omega, and after Flair and Steamboat's house show match). Very effective heel, always played his roles very well in matches as the evil bad guy trying to take out the other pillars or grizzled veteran trying to catch up with the youth, he is a perfect villain to anyone you put him in the ring with. His tag team with Akira Taue is one of the best of all time, having countless classic matches with many tag teams, collecting tag belts left and right, they were a perfect duo. Not to mention, while majority of All Japan's roster left to work for Pro Wrestling NOAH, he was among the very few who stayed loyal to All Japan and remained working their until retirement, proving he was a very valuable asset to the company, but not to a tribalistic route of only working in AJPW, wasn't shy away from working other promotions. Overall, Kawada is a legend in the business, he's paved the way for so many kickers and has set the bar super hight with the other Four Pillars, thanks to them for making AJPW in the 1990s, arguably, the best professional wrestling that's ever been broadcasted."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: StrongStyle2020wrote on 27.05.2024:[10.0] "Quite possibly the greatest wrestler of all time. He may not quite have the accolades or titles of others in contention, but his match resume is up there with any, and as a complete pro wrestler, I can think of no better. His often brutal matches are sold to perfection. That's right, no roll the eyes "fighting spirit" comebacks where selling goes completely out the window and you pop up from being dropped on your head to perform the next high spot within a split second; instead he battles through the pain and sells his wear and tear and pain to perfection. His feud with Misawa is legendary and you can see the roots of Genichiro Tenryu in him. Tomohiro Ishii is the closest thing to replicating his greatness in the modern day, but there is only one Dangerous K, Toshiaki Kawada. Part of the greatest tag team of all time alongside Akira Taue as Holy Demon Army, and possibly the outright greatest wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: DENDYwrote on 01.04.2024:[10.0] "In my eyes, there is no question that Toshiaki Kawada is the greatest wrestler of all time. From his work in the late 80s, up until he retired in 2010, you can find matches which rival what anyone else could put on. Kawada is known as Dangerous K for a reason, he seems genuinely dangerous in the ring, laying out brutal power moves and kicks which while not always the stiffest, still somehow seem to be the best for my money. He also sells in a way quite unlike anyone else. If you watch his bouts in the early 2000s you see a man who is hurt, but never wants to show it, the selling is subtle and calculated, with Kawada often getting angry at himself for taking the damage. While he was undoubtably the perfect foil for Mitsuharu Misawa in and out of the ring, I always found him the more intriguing of the duo, both as a character and a person. Nobody draws me into a match like Kawada, nobody makes me wince like Kawada and nobody has or will ever quite do it like Kawada. Pick any year he wrestled and find some odd matches and youll undoubtedly find a hidden gem or five in there. Go out of your way to watch Dangerous K, He is the perfect 10/10 wrestler in my opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: RusherBryan29wrote on 06.02.2024:[10.0] "My favorite of the four pillars and my favorite japanese wrestler of all time. Always give intense and aggressive performance. Complete package, natural charisma, badass look, great technical wrestling, and the best kicker in pro wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: All Cops Are Bossmanwrote on 06.01.2024:[10.0] "Half the reason I like Eddie Kingston is he rightly worships at the altar of Kawada. I am a sucker for wrestlers who kick people right in the face, and Kawada is the Michael Jordan of gamen giris. You should watch his big famous triple crown and Holy Demon Army matches but also any of his ferocious matches *against* Taue, and for something completely different his 2000s match against Mick Foley. Kawada can sports entertain too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: texasyoshwrote on 22.08.2023:[10.0] "Kawada probably has the most fascinating career out of all the four pillars. A man who really rose to his peak quite early, and stayed their well into the 2000s. While Misawa was the bonafide Ace figure, Kawada resembled something different in AJPW. Something a little more dangerous. To me, Kawada was the perfect foil to Misawa. Not only the differentiation between their striking styles, but mannerisms in the ring. Misawa can feel a little stoic, while Kawada is much more expressionable. Kawada was never the insurmountable mountain that Misawa became, but rather someone more plucky, despite being the heel for many of the native v. native matches. His best work is in the entirety of the 1990s, including also the 80s working in Footloose. Unfortunately, Kawada getting the short end of the booking stick was a constant in his career, even after the NOAH excursion, with the likes of Genichiro Tenryu and Keiji Muto becoming the top faces of the company. His 2005 Triple Crown reign is good, but it lacks a statement match unlike his prior chases for the title in the 1990s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: TESDAnt37wrote on 29.06.2023:[10.0] "Kawada is my favorite of the Four Pillars & my favorite wrestler of all time. There has never been many as tough or believable as Kawada. His feud with Misawa is the stuff of legends & rightfully so. Its a shame that his Triple Crown title runs were so snake-bit. Im sure hed be even more fondly remembered than he is. Not only that, but he is also one half of one of the best tag-teams ever with Akira Taue as the Holy Demon Army. Theres few better."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: TheOneAndOnlyCactuswrote on 12.04.2023:[10.0] "Dangerous K was a stiff motherfucker, projecting an intensity and aggressiveness rarely seen in wrestling. He would beat the piss out of anyone and torture anybody he stood in the ring with, and do it in a very creative and entertaining manner, often one that would make you root for the opponent. But don't get it twisted, he could also play as a face when needed, and regardless of roles, he was a tremendous seller too. And, something he has over any other Four Pillars Member is that he was the best in comedy too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: KKeanelwrote on 11.03.2023:[10.0] "Second best from the 4 pillars. His stiff move-set and deep in-ring psychology undoubtedly makes him one of the all-time best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Strong Zero Machinewrote on 26.02.2023:[10.0] "My favorite of the 4 pillars (1st Kawada, 2nd Kobashi, 3rd Taue and 4th Misawa yes sorry) Kawada is like Ishii or Shibata a raging bull without fear one of the best seller ever im my opinion, a great kicker, his comedy stuff in Hustle is great too, member of one of my favorite team ever with Taue. He never be the ace despite is loyalty for AJPW. If you want some great stuff from Kawada watch any Kawada Taue vs Misawa Kobashi or watch Kawada vs Williams in the final of the Champion Carnival 1994 and his match against Misawa for the triple crown championship in AJPW New Year Giant Series 1999 this is just brilliant."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: GeneBlastKyodaiwrote on 31.01.2023:[10.0] "I consider him to be one of the greatest wrestlers of all time. A godlike seller with an amazing moveset and a banger theme. He also had an unmatched aura, you knew he was going to beat the absolute tar out of someone any time he arrived, also trained Taichi, a few years ago That would have been a ratings dropper, but Taichi has really come into his own."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: benh2wrote on 11.01.2023:[9.0] "Kawada was just a beautifully intense, aggressive wrestler. Part of arguably the greatest tag team ever as well as being a tremendous Triple Crown champion in his own right. I also respect his decision to stick with AJPW after the split and we got to see more great matches with completely different workers."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: wrestlingreviewerwrote on 11.10.2022:[10.0] "He was the most aggressive of the four pillars His selling was some of the best in history.He was the best tag team wrestler as well probably the best in history and His singles career was also great with matches against Misawa, Kobashi, Taue, Stan Hansen, kojima, Williams, Jumbo being the best of the bunch an all time greats"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: munrapido3wrote on 23.09.2022:[10.0] "One of the most phenomenal Japanese wrestlers and possibly one of the most toughest in the world. The most murderous bastard in AJPW's amazing quartet nicknamed the 'Four Pillars of Heaven', Kawada is unquestionably the most brutal out of the four pillars. From the Gamengiri to the infamous Ganso Bomb, 'murderous bastard' is definitely a good nickname for him. Kawada's selling is exceptional, his ability on storytelling, and churning classics with Misawa, Tsuruta, Hansen, Kobashi, Akiyama, and others. Definitely one of the greatest wrestlers of all time, Misawa's death being the reason that he retired from wrestling entirely was depressing tho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: UWF Rules Enthusiastwrote on 24.04.2022:[10.0] "Not only was Toshiaki Kawada the best worker of the Four Pillars (Kawada, Misawa, Kobashi, Taue), but Kawada is probably the best heavyweight pro wrestler ever. He has been in countless of great matches, and he was a big reason why 1990s AJPW is some of the best pro wrestling ever. His selling was great, his striking was great, and his work was generally quite realistic for pro wrestling standards."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: GriffinXwrote on 19.01.2022:[10.0] "Think about it Kawada spent a decade chasing a win over Misawa yet the fans didn't lose faith in him. It takes a special kind of talent to keep the fans behind him. He was also a man who dared to be different in All Japan. Baba was his company to be "real" wrestling. Yet Kawada was willing to work a martial arts based style helping him stand out. And of course one of the great teams ever in the Holy Demon Army"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Denpa Popewrote on 05.01.2022:[10.0] "A legend among legends. Intense, grimy striker, superb technical wrestler, unrivaled story teller and one of the best sellers of all time. The amount of classics Kawada has behind his back is staggering. Superb at both singles and tag competition. Misawa vs Kawada is perhaps the greatest rivalry/series of matches in pro wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: benny5bellyswrote on 12.12.2021:[10.0] "There is nothing I can say that has not been said already. Just a remarkably good wrestler. Till the day I die I will never go tired of watching him in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Lakhiarfarhad91wrote on 05.11.2021:[10.0] "What I am gonna say about him is probably said already. I haven't made my top 5 greatest wrestler's list but he would easily be in my top 5. His attributes : Fantastic and brutal looking offesne + awesome facial expressions and selling ability + incredible storytelling and mastery in ring psychology."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Okaro143wrote on 22.10.2021:[10.0] "One of the most outstanding wrestler on the planet. Brutal and Sadistic style of wrestling with Lethal striking ability. One of the pillars of AJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "One of the greatest wrestlers of all time, his letal striking is legendary, one half of the HDA in AJPW and even his comedy in HUSTLE is awesome"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: BH62wrote on 27.07.2021:[10.0] "The only sad thing about Kawada he will be always in the shadow of Misawa and Kobashi despite being in my opinon the most consistant worker of the Four Pillars. From being a fan favorite with his best friend Misawa and betrayed him and turned to be the absolute vilain, it was extraordinary. Nevertheless, his fighting spirit made him an organic face just by the reactions to his big victories. He formed the greatest tag-team of all-time with Taue as well. Man was stiff as fuck and so intense, no nicknamed Dangerous K for nothing. I really like his later career, Kawada's wow to stay in All Japan in 2000 is my opinion the greatest thing he did. His later career is excellent, he stills very consistant past his 40's. His work in early 2000's was tremendous. Even at the end of his career, he could put some very good and solid matches. If he could have been wrestled one more match for the beauty of it but life has decided otherwise..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Josh Drakewrote on 27.06.2021:[10.0] "The foil to one of the greatest wrestlers that ever lived. A master of many lethal kicks. A fantastic seller who made you want to put Age of Empires I death sounds to his sells for laughs. If there ever was a solid '#3' in AJPW in the 1990's behind Mitsuharu Misawa and Kenta Kobashi, it would definitely be Toshiaki Kawada. He began his career as a sidekick to Kodo Fuyuki in Footloose before going single and having his breakthrough moments with Misawa that we all love and cherish. When Misawa died, he lost his passion for the business, sadly."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "Even when rated high, Kawada is still the most underrated of the four Kings of Heaven. His "betrayal" of high school chum Misawa led to the very finest of the Kings Road matches, Misawa and Kawada had a chemistry that is on another level and much of that was due to Kawada always pulling the very best out of Misawa. I also give him extra badass points for his dangerous and frenetic style, his missing teeth, and the fact that he didnt leave AJPW for NOAH, although it would have been great to see the storyline between he and Misawa continue. Check out literally any match he's in, it's dimes every time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Kungwrote on 21.03.2021:[10.0] "I mean, what else am I going to give Kawada? He was one of the most important wrestlers from the single greatest era in pro wrestling history, that being 80s and 90s All Japan. If you haven't watched a Kawada, just get off this site, pull up YouTube, and do it!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: rainmakerpunkwrote on 11.02.2021:[10.0] "He was vicious, intense, and dangerous, you wouldn't think just by looking but when he stepped in the ring he was always the biggest badass, he took no shit from anyone and kicked asses in brutal and physical matches, 5 star fight factory"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: CyberVolteswrote on 01.09.2020:[10.0] "Where do I even begin with Toshiaki Kawada? He is my favorite pro wrestler and I do, in fact, believe he's the greatest of all time. There's just so much to him, his wrestling style, his persona, his historical matches. While I do get why people often overlook him for either Kobashi or Misawa, since Kawada was (arguably) not as charismatic as the former nor as flashy as the latter, I'd argue that Kawada was the better worker between them (not by far, of course, but he still had the advantage). Most commenters around here have already pointed out how agressive and fearsome Kawada was in the ring, plus how good he was as a striker (mainly when it came to kicks), but it seems Kawada never gets the due recognition for his genius-level psychology: literally nothing he did on the mat was meaningless, illogical, too over-the-top or wasteful (and if it ever did seem that way, it was very obviously his opponent's fault). He always had a plan behind what he was doing, whether it was working on a limb, straight up brawling or going into technical matwork. Speaking of the latter, Kawada's is both a brilliant and straight-up underrated matworker: his past as an amateur wrestler would often shine through his moves and, to boot, Kawada has showed a deep knowledge on submission holds and stretches. As if that wasn't enough to bring legitimacy to his game, Kawada was also a formidable seller, more often than not making his opponents look great in the process. As far as his matches go, Kawada has delivered a lot of undisputable classics, as well as many great, underrated encounters. It should be noted that up to his final years, in which he had lost some steam (but not even close to what other wrestlers from his era, like Kobashi, were going through), he was still able to deliver great performances, such as when he faced Daisuke Sekimoto in 2010 (and, no, he was not carried at all). Also, let's not forget about how versatile he was: whether we're talking about of King's Road or Strong Style, Kawada's well-rounded offense worked in both scenarios. Besides, he managed to look spectacular even in matches that should be out of the left field for him, such as shoot-style matches and even in comedy-ladden 'bouts (HUSTLE really brought a different-yet-the-same Kawada to the world). And last, but not least, along with Akira Taue, he was part of one of most legendary tag teams of pro wrestling. Even though Taue was never as skilled as his partner, both had noteworthy chemistry and delivered some of the best matches in the genre. Wrapping it up, there's nobody in the business like Toshiaki Kawada, not even those who are clearly influenced by him. By the way, the comparisons I made above are in no way intended to diminish the other wrestlers (I guess we are all in the same page that the Four Heavenly Kings are the cream of the crop): they just go to show how off-the-charts Kawada was a pro wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Ma Stump Pullerwrote on 06.08.2020:[9.0] "Kawada is less iconic than the Misawa/Kobashi combo that dominated the Japanese wrestling scene, but he could go with either with them just fine and match them for pace. Granted, he wasn't the smooth and crisp technical wrestlers like they were, but focused a lot more on stiff, nasty strikes, and a roughhouse nature (much like his mentor, Tenryu) which would be imitated beyond compare by later wrestlers. As well as that hallmark, Kawada had some of the best ring psychology and selling around: he could make anything seem like a legitimately dangerous manoeuvre, and he seemed to use that a lot to make his opponents look as impressive as possible. His tag work in the Holy Demon Army is legendary also, and easily one of the more underrated tag teams, with their wealth of work towering over a lot of the teams both present and past. I'd say Kawada did well considering he never really got the top spot for long during the prime years of All-Japan and only got to the top and stayed there after everyone relevant left for NOAH. It's still a shame that he'd never got that chance, because Kawada seemed to age the best out of the Four Pillars and was having great matches up to the mid 2000's. The only thing that holds him down from being the best is, unfortunately, he didn't have the raw charisma that Misawa and Kobashi had within the ring (even if that's FAR from a downside) and that was likely what kept him away from being the ace of his respective companies."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: OffensiveLariatowrote on 13.07.2020:[10.0] "He may not be the greatest of all time for some but for me he is my favorite wrestler although I consider that Misawa the greatest of all time, but by far Kawada is the one who has made me enjoy this sport the most, his work as singles wrestler or with Taue as a Holy Demon Army is the best of the 90s"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: VillainClubwrote on 12.05.2020:[10.0] "Ein Fantastischer Wrestler mit vielen unglaublichen Matches. Einer der besten aller Zeiten, auch wenn ich ihn ein Stück hinter Misawa und Kobashi sehe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: zephyrwrote on 25.03.2020:[10.0] "Veritable wrestling legend and sadly not appreciated as much as Misawa and Kobashi despite being on the same level as them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: JokeyZockeywrote on 16.09.2019:[10.0] "Obwohl ich Kobashi und Misawa als objektiv besser sehe war Kawada schon immer mein persönlicher Favorit der Four Corners, hauptsächlich wegen seiner No-Nonsense-Attitude, die viele meiner ''späteren'' Favoriten (Shibata, Ishii, WALTER, etc. ) adaptiert haben. Doch auch zwischen den Seilen wusste Kawada stets eindrucksvoll zu überzeugen, vor allem seine Härte und sein Selling stechen hierbei sehr stark und positiv heraus. Wenn man sich seine Matches gegen Misawa ansieht und dann auf die vielen kleinen Details achtet, die Kawada in die Match-Story einbaut, zeugt das einfach von seinen Fähigkeiten in diesem Bereich. Im Tag Team mit Taue ebenfalls sehr stark, auch wenn ich davon nicht wirklich viel gesehen habe (leider). Nichts desto trotz ist und bleibt Kawada, wie die drei anderen Corner of Heaven, einfach eine absolute Legende des Wrestling-Sports."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: PuroresuLoverwrote on 26.05.2019:[10.0] "This man splits my heart along with Mitsuharu Misawa and Kenta Kobashi. His Bad Ass persona and brutal kicks are amazing, and he can perform like a true heel. Toshiaki Kawada is easily one of the greatest."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: OrangeAidCrushwrote on 24.05.2019:[10.0] "My third favorite member of the Four Corners (Behind Kobashi and Misawa), Kawada is easily one of the greatest wrestlers of all-time.  His heavy strike-based mma-style offense is one of the most iconic repertoires in the history of professional wrestling. That style combined with his toughness and athleticism propelled him to being one of the best wrestlers to ever grace the squared circle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Toshiaki Kawada was one of the best wrestles in the world in the 90s. He sometimes didn't get the praise he was due because he was overshadowed by Misawa and Kobashi, but Kawada was just as good as they were in the ring,"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: jamzell00wrote on 17.08.2018:[10.0] "Not as charismatic as Kobashi or the star like Misawa but you'll be hard pressed to find a better wrestler in history.  His ability to tell a compelling story along with his all time great offense made his matches with the other four pillars must watch. Even towards the end of his career he was still a phenomenal wrestler. Only other guy I could say that about from that era is Jun as he's still going strong. Absolute legend Kawada is"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Makai Clubwrote on 16.03.2018:[10.0] "He is arguable the best member of the four pillars. His storytelling was impeccable, his selling was exceptional and has since been emulated in great matches. Very innovative with his kicks, powerbombs strikes, mat work etc. If you ever watched the matches he had with Misawa, Kobashi and the tags, Kawada is always the highlight due to his psycholgy. Of course he isn't as charismatic as Kobashi nor was he the ace of All Japan so he doesn't get as much credit as either Misawa or Kobashi but he should get equal amount of praise, if not more."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: TheRainmaker28wrote on 25.10.2017:[10.0] "Perhabs the most underrated japanese wrestler of all-time. Kawada just had everything, from the amazing and one of the most brutal looking offensive to the amazing psychology and character work. It's a shame that him doesn't get the same praise as Kobashi and Misawa, because he always was on the same level. Kawada is definitely one of greatest of all-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: The Big Blue Machinewrote on 16.10.2017:[10.0] "There isn't much to say about someone like Toshiaki Kawada: one of the best wrestler ever existed, participant of two or three of the best matches in the history of pro-wrestling, a japanese legend. Probably one of the best powerbomb user in the world, he also taught us the beauty of the ganso bomb."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: taabr2wrote on 10.09.2017:[10.0] "One of the best asshole heels in wrestling. Toshiaki Kawada was the perfect heel and is somehow one of the best wrestlers at targeting a body part and working it over while also being one of the best sellers which mean he could play any role in a match to perfection."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: tykechandlerwrote on 15.06.2017:[10.0] "To me, easily one of the ten best wrestlers ever, and if someone argued he was top three I would not argue. Brutal strikes, stiff suplexes, great in-ring psychology--Kawada had it all. Not to mention he participated in some of the greatest matches of all-time, including my own personal favorite. He is a legend!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Chak95wrote on 27.05.2017:[10.0] "Tremendous wrestler, his singles and tag matches with Misawa, Kobashi, Taue and Akiyama are legendary, the fued he had with Misawa is arguably the best ever, and the psychology and stiffness he brought to the ring are unmatched, unfortunately he never had a great triple crown title reign until after the exodus, and in my opinion he lost too many times against Misawa. but that doesn't take anything away from his superb skills."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Blood Pumpwrote on 30.03.2017:[10.0] "With Toshiaki Kawada Ive given eleven men a ten out of ten, and as of now that's it. Kawada might be near the later half of the eleven (to be precise hes 10, just ahead of Bret) he none the less is just as significant in his own way as the others. Toshiaki might not have been the chosen Ace for All Japan like Misawa, he might not have had the kind of reactions of a Kobashi or the size of Dr. Death but he sure as hell hit harder then all of 'em. Every time Kawada kicked someone he made it look nasty. Despite likely being the smallest of the crew he was also the most frightening because of those bone crushing kicks and because of his look. Taue may have been an awkward giant, but Kawada was a demon from hell and he made sure to let anyone who stepped in that ring against him know it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: arrancarwrote on 12.02.2017:[10.0] "One of the very best. Kawada had an absolute killer offence that could/would easily cripple anyone, but he was also a fantastic actor, his facial expressions and body posture being utilised to create many exciting story-based moments regardless of whether he was playing the dominant role or the subservient role. Kawada was one of those wrestlers whose character perfectly represented aggression. Everything he did was fiery, and when he was pissed off he was REALLY pissed off. It's a shame he was overshadowed by Misawa so frequently in All Japan, as I personally felt he was a much better all-around performer who deserved a lot of the accolades and respect that Misawa otherwise received. With some of the stiffest offence ever and a fantastic ability to tell a story, Kawada is definitely one of the best wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: NastyYaffawrote on 01.01.2017:[10.0] "Toshiaki Kawada = One of the best offensive wrestlers ever, one of the best sellers ever, tremendous facial expressions, great storyteller - simply put, one of the greatest professional wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: PuroFanwrote on 22.02.2016:[10.0] "My favorite pro wrestler of all-time. His kicks are sick, he is a amazing storyteller and seller. He saved All Japan as well, after Misawa and the (almost) entire roster left the promotion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: PSachkovskywrote on 14.02.2015:[10.0] "One of Japan's greatest athletes. The man put on some incredible battles with the likes of Mitsuharu Misawa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: GulakBusickwrote on 14.02.2015:[10.0] "When discussing the absolute greatest of all time, it's difficult to pick one from a small elite group. But if I was asked to, Toshiaki Kawada is the name I would give."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: yanuswrote on 22.11.2014:[10.0] "One of my favourite wrestlers of all-time, Kawada is great in nearly every aspect of professional wrestling. I especially love his selling and his stiffness. Maybe the best guy out of all the AJPW stars in the 90's (and as anyone who has seen Misawa, Kobashi or Taue can attest, this is really high praise)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Matzinhowrote on 11.02.2014:[10.0] "Für mich der beste der Four Corners. Einfach ein ultragemeines Riesenarschloch! Wo der Kerl hintritt, da wächst buchstäblich kein Gras mehr. In seinen 40ern ist er auch langsam geworden, hat aber - ähnlich Kobashi und in meinen Augen ungleich Misawa und Taue - seinen Stil sinnvoll umgestellt und weiter gut gewrestlet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Alex Maedawrote on 05.09.2013:[10.0] "Offiziell scheint seine Karriere noch nicht vorbei sein, aber das letzte Match liegt laut Cagematch nun schon 3 Jahre zurück, also ein guter Zeitpunkt, um einen Karriererückblick zu vollziehen.  Der wahrscheinlich stiffste Wrestler seiner Zeit. Dazu kommt ein großartiges Verständnis dafür, wie man im Ring ohne Worte eine spannende, intensive Geschichte erzählt. Kawada war und ist große Klasse, spätestens ab den Nullern natürlich nicht mehr mit dem Worker zu vergleichen, der er zu Glanzzeiten mal war, aber ähnlich wie Muto, Kobashi oder, um mal ein amerikanisches Beispiel zu nennen, Austin hat er seinen Stil zu umgestellt, dass er selbst mit eingeschränktem Moveset immer noch ordentliche bis gute Matches liefern konnte. Außerdem herrschte vor allem zwischen Kawada und Misawa so eine unfassbar intesive Chemie, die letzterer wahrscheinlich sonst nur mit Kobashi erreichen und vielleicht sogar toppen konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Milopowrote on 03.09.2013:[10.0] "This man is the complete package charisma, in ring talent and range as a character."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Lecterwrote on 06.06.2013:[9.0] "A lot of people think he's considerably better than Misawa and Kobashi, but I never got into his matches the same way I did theirs. Kawada's a great wrestler with deathly kicks and a great career, but he felt more like a wrestling machine than a wrestler to me at times."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Yoyowrote on 31.12.2012:[10.0] "The best kicker and one of the toughest guys in wrestling, period. A damn great seller too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Leonewrote on 05.08.2012:[10.0] "Back in the 1990s, and even into the 2000s, Kawada Toshiaki was a war machine in professional wrestling.  His matches against the likes of Mitsuharu Misawa and Kenta Kobashi are of legendary proportions.  His kicks are like Misawa's elbows and Kobashi's backhand chops, in the sense that almost nobody else can do them to such perfection.  Slow motion of these kicks have shown us how much they hurt, but they aren't all he had to offer.  He won the All Japan Triple Crown title with a broken arm, and in the process he accidentally added 1 of the most dangerous moves of all time to his arsenal, the Ganso Bomb.  Along with his picture-perfect powerbombs and terrifying suplexes, Kawada was also the submission specialist of the All Japan Famous Five, after spending time in Canada to hone his craft early in his career.  With numerous championships, including 5 triple crown title reigns, about 18 5-star matches, and many more matches with 4 or more stars, he is a wrestler who deserves to be remembered and credited for his high quality and violent matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: WhiteHummerDriverwrote on 24.12.2011:[10.0] "Kawada war für mich Phasenweise sogar besser als Misawa und Kobashi. Kawada hat alles: Eine unglaubliche "Badass"-Ausstrahlung, stiffe Kicks, harte Aktionen und das geilste Selling seit Jumbo Tsuruta. Leider in den goldenen 90ern von AJPW unter Wert verkauft, zumindest was die Triple Crown angeht. Hat dennoch Hammermatches am Fließband produziert und ist meiner Meinung auch der einzige der alten Garde (wenn man Akiyama mal weglässt da der ja erst gegen Ende der 90er seinen hohen Status erreichte) der noch im fortgeschrittenen Alter richtig was zeigen kann (Kobashi's Körper fällt nach und nach ausseinander, Misawa war vor seinem Tod auch schon jahrelang nicht mehr wirklich fit, und Taue hat schon vor langer Zeit eingesehen, dass seine Fähigkeiten nur noch dazu reichen, die Matches der Undercard aufzupeppen).  Dangerous K - für mich für immer einer der Top 5 aller Zeiten im Puroresu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Neuhofwrote on 05.07.2011:[10.0] "Ohne, dass ich jetzt wirklich fit im Puro bin: you gotta love Toshiaki Kawada. Der Mann ist der gemeinste, böseste, härteste MF'er, den ich jemals in einem Wrestling-Ring sehen durfte. Können im Ring, Stiffness, Brutalität, unheimliches Charisma, und geradezu grenzenlose Coolness. Wird zwar allzu oft nicht mit dem Respekt behandelt, den er verdient, aber einer der größten des Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Berlin Dragonwrote on 18.09.2010:[10.0] "Der coolste Wrestler Japans. Geniale Matches mit Kobashi und Misawa , aber auch perfekt im Team mit Taue."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: BenZenwrote on 28.02.2010:[10.0] "Can't fuck with Kawada~! Mit seiner brutalen Stiffness gepaart mit der ausgestrahlten Coolness traf er schon immer einen Nerv bei mir. War an legendären Schlachten beteiligt, einer der ganz großen Repräsentanten der vielleicht stärksten Wrestlingphase mit dem All Japan der 90er und auch wenn er heutzutage nicht mehr die Leistung von früher zeigen kann, so bleibt er immer noch ein dreckiger Bastard - im absolut positiven Sinn. Von den ganzen großen All Japan-Namen von damals meine Nummer 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Kenshin Uesugiwrote on 16.01.2010:[10.0] "Ich brauche ja nicht wiederholen was die anderen User gesagt haben, Kawada ist ein verdammt harter, brutaler, genial Wrestler. Und auch wenn ich trauig bin das er nicht bei AJPW geblieben ist, so freue ich mich doch über jeden Auftritt und Kampf von " Dangerous K ". Er braucht weder mir, noch sont jemanden etwas zu beweisen. Er gehört zu den Wrestlern, wo man sich wünscht das sie nie altern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: DJ MaSchwrote on 06.01.2010:[10.0] "Ein klasse Wrestler und guter Heel. Er legt eine unglaubliche Stiffness an den Tag, die seine Matches realer wirken lassen als bei jedem anderen Wrestler der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Mick Funkwrote on 12.11.2009:[10.0] "Göttlicher Heel. Sein Stil ist genau das was mir gefällt. In Sachen Puro einer meiner absoluten Lieblinge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Fountain of Misinformationwrote on 06.10.2009:[10.0] "Ich kann mir nicht helfen, aber so langsam aber stetig baut auch Kawada ab, was in Angetracht seines Alters und der mehr als 25 Jahre im Geschäft nur allzu verständlich ist. Auch er sollte in meinen Augen den richtigen Zeitpunkt des würdevollen Rücktrittes nicht verpassen, um seiner überlebensgroßen Vergangenheit nicht zu schaden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Matt Mackswrote on 24.01.2009:[10.0] "Toshiaki Kawada ist einer meiner Lieblingswrestler aus Japan. Die harten Kicks sind sein Markenzeichen, doch auch der Rest seines Angriffsarsenals wird von Amnesty International auf einer schwarzen Liste geführt. Zusammen mit Kenta Kobashi und Mitsuharu Misawa einer der zentralen Eckpfeiler der Goldenen Ära von All Japan in den 90er Jahren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Herr der Kritikwrote on 03.12.2008:[10.0] "Wer so krass drauf ist, dass ihm Millionen Wrestlingfans aus aller Welt einen Kick als Finisher abkaufen verdient nichts anderes als 10. Nein, mal im ernst, absolut genialer Mann, kann ihn mir selbst jetzt noch im hohen Alter gut 25-30 Minuten ansehen, ohne einen Ansatz von Langeweile zu verspüren, schade nur seine Auftritte bei HUSTLE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Tomkowrote on 24.08.2008:[9.0] "Klasse Wrestler, der mich immer wieder mit seinen stiffen Kicks begeistert, aber dennoch nicht 100% überzeugt!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Kaffoe 666wrote on 25.03.2008:[10.0] "Cool und böse mit vielen geilen Aktionen und maßig starken Fight jenseits der ****. Kobashi/Kawada/Misawa/Sasaki sind so meine absoluten "1er" im Puro..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Hennewrote on 22.03.2008:[6.0] "Kawada ist sone Sache. Sicherlich kein schlechter Wrestler, aber wirklich begeistern kann er mich kaum."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: LexLuger4everwrote on 22.02.2008:[10.0] "Zählt zusammen mit Kenta Kobashi und Mitsuharu Misawa zu einem der 3 legendärsten japanischen Wrestler aus den 90er Jahren und ist gleichzeitig einer meiner absoluten Lieblingswrestler aus Japan!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: D-Stylewrote on 17.01.2008:[8.0] "Ich hätte auch die 1 gegeben wenn er sich nicht bei Hustle vollkommen zum Affen machen würde, und sich selbst etwas demontiert. Bei AJPW natürlich eine Legende, und viele Topmatches hingelegt. Sehr guter Mann"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: xspikexwrote on 19.11.2007:[10.0] "Hat im Gegensatz zum Kollegen Misawa rechzeitig aufgehört, bei jeder Tour komplett dabei zu sein und ist somit noch in der Lage klasse Matches abzuliefern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Baszdmegwrote on 19.08.2007:[10.0] "Eine der größten Japan-Legenden überhaupt. Im Westen neben Namen wie Kobashi oder Misawa leider total unerwähnt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Ryanbest316wrote on 15.12.2024:[10.0] "Manami Toyota makes all of our favourite wrestlers seem like amateurs, its hard to comment on her ability because words feel like they cheapen her fight, passion and her ability to seem like she is fighting Gods and surviving. When Manami Toyota bumps you forget wrestling is a work, one of the best of all time, and deserves to be known by every wrestling fan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Dweeeabwrote on 03.12.2024:[10.0] "The best female wrestler ever and can be argued the best wrestler ever. Probably has the best cardio in wrestling ever, her gas tank never emptied. The way her body would fold during powerbombs and Germans always made them look incredibly impactful. The jump to the top rope followed by any type of dive she decided she wanted to do was always a great spot & she continued to be great even at the end of her career putting on great matches. From videos Ive watched her work ethic was also undeniable never not putting on her absolute best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: yumin76wrote on 08.11.2024:[8.0] "Absolutely gorgeous woman and a stunning fighter. She moves with such grace and truly feels like a queen in the ring. Awesome."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Zak22wrote on 13.10.2024:[10.0] "Not all of Manami Toyota's matches are for me, sometimes because of the frantic pace. But Manami Toyota is simply the greatest women's wrestler of all time and a top 10 wrestler of all-time in the very top league. Toyota had fantastic work-rate, great highflying and speed based offense, some great power moves as well. She had some of the greatest matches of all-time. 100% legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: igskillfartwrote on 12.09.2024:[10.0] "She is one of if not the greatest wrestlers to have ever graced this planet, she has influenced a generation of talent, her high flying and technical ability legit changed the way Joshi style was, of course she deserves a 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: KobashiChopMewrote on 03.08.2024:[10.0] "She is arguably the greatest female wrestler to ever do it. It's clear how influential she was when you look at how much modern day wrestling is influenced by her body of work. Phenomenal. 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: SigmaAngeloAsteriawrote on 28.07.2024:[8.0] "Definitely a great wrestler, has her shine and her great matches, but I'd consider Yokota, Nagayo, Hokuto and Matsumoto over Toyota."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Gabiwrote on 25.07.2024:[10.0] "Manami Toyota is up there with the greatest to ever do it, and that includes the male wrestlers. She could do everything and have a 10/10 match with anyone. Perfection"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Joe907wrote on 19.07.2024:[10.0] "Manami Toyota is the greatest women's wreslter ever. The perfect professional wrestler. Great technical abilities and high flying. She is a legend and influenced the modern generation of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: JLHarmanwrote on 01.07.2024:[10.0] "How do you describe Manami Toyota? It's as simple as just the greatest female wrestler in history. Nobody did what she did in the ring, especially back then. She's one of the pioneers and an example for many female wrestlers. Her matches are unbelievable, have never aged and are still appreciated today! If you don't know this woman, check out her work !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: doobwrldwrote on 26.05.2024:[10.0] "A true pioneer for womens wrestling today not just within the Joshi based promotions we see today like STARDOM, TJPW, and Marigold, but for any womens division elsewhere. One of the standard bearers of the revolution and rise of Japanese professional wrestling in the 90s as well. A genuine candidate for greatest professional wrestler of all-time, regardless of gender."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: teenagehonvedfanwrote on 02.03.2024:[10.0] "That insane "I am the best and I also don't care" attitude. Likely better than any female wrestler even now. Maybe Io could match her."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: skillgullwrote on 29.02.2024:[10.0] "Every LGBT male person usually has one random woman who they are the biggest fan of for no reason. for me Manami Toyota is that women. One of my favorite pro wrestlers ever, one of the best of all time. The prefect pro wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: KEIwrote on 02.02.2024:[10.0] "The greatest female wrestler of all time. One of the greatest wrestlers regardless of gender. Minami Toyota is an icon of joshi puro and puroresu in general. An absolute legend. 10 out of 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: chemstarwrote on 30.01.2024:[10.0] "Easily the best female wrestler ever. Perhaps even the greatest wrestler period. Her matches with Kyoko Inoue and Akira Hokuto sold me on her and I can't recommend her enough."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Wrest lingaddictionwrote on 20.01.2024:[10.0] "For my money the greatest female wrestler of all time. She was before her time in my opinion. Toyota had a moveset and in-ring ability that could stand against the best even now. Her matches with Aja Kong were some of my favourite, same with Meiko Satamura."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: alleyallewrote on 11.01.2024:[10.0] "Go back and watch her matches. She was not only ahead of her time, but she would still be one of the best wrestlers in the world today if she was competing like she did in her prime. Absolutely fantastic. Sometimes she took risks which might have been ill-advised, but that's part of what made her so great. She's without a doubt the best female wrestler of all time, and she's in the conversation for best wrestler of all time period."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Bar786788wrote on 12.12.2023:[10.0] "Manami Toyota is my favorite wrestler of all time, and I think the greatest female wrestler of all time. The first Joshi match I watched was her versus Aja Kong, and most of the womens wrestling I had seen previously was WWE (this is about 2007), so needless to say I was blown away by the intensity, the athleticism, and the storytelling. Her matches in her prime are nothing short of art."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: JediSaiyanMaster1203wrote on 25.11.2023:[10.0] "The Greatest Female Professional Wrestler Of All Time! Seriously, how good this woman is as a wrestler is insane, it's unfair that she's so gifted. To this day, the best female rivalry is still her against Aja Kong, no other women's feud can touch it, as good as some of them are. Her matches with Aja Kong, Kyoko Inoue, Akira Hokuto, Toshiyo Yamada, Mima Shimoda to name a few, along with her tag team bouts, all speak for themselves and should be seen by anyone who appreciates professional wrestling in general. Her move set is breath taking, watching her taking nasty bumps, selling like crazy, taking all kinds of high flying risks, getting technical, there's so much to offer that she can provide and always delivers, not to mention that she's also a great storyteller, she's a very believable babyface and plays the role super well in her matches almost in the same way that a Bret Hart does. I know this phrase gets thrown around a lot, but this is 100% deserving of a title for her, Manami Toyota is a generational talent that we will never see anyone come close to being on her level of in ring talent, psychology, story telling and able to have the crowd in the palm of her hand ever again. Seriously, she's so refined and athletic, that it's almost unreal how out of this world her in ring abilities are, she makes everything look so easy and takes so many risks with no hesitation whatsoever, truly on a whole different level, no matter the race or gender. Overall, Manami Toyota is the GOAT who has a 30 year career that has influenced many talents since then, everyone should put some respect on her name!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: wrestlejackalwrote on 20.10.2023:[10.0] "The high peak excitement and danger of Manami Toyota is what makes her spectacular. The adrenaline rush that comes watching this woman crash at high speed, or deliver a devastating maneuver, is what gives me the joy and pleasure of considering Toyota as one of the absolute best. Many will simply say "She's the best" without ever telling you why. The leaps of faith with zero hesitation, the dangerous yet wildly innovative offense and her refusal to compromise made her extremely compelling in her prime. Her famed matches against Kyoko Inoue, Akira Hokuto, Aja Kong and so many others are legendary at this point. My favourite stuff has got to be the tag work during the interpromotional feuds with JWP and LLPW. The two WWWA tag championship bouts with Toshiyo Yamada against Dynamite Kansai and Mayumi Ozaki are spectacles, masterclasses in tag team wrestling. Those on top of her feud against Yamada were key to me getting deeper into the joshi scene. It's the art of it all that made Manami Toyota great. The raw emotion and danger - all learned from the innovator before her and another all time great Jaguar Yokota. Don't let either the revisionists who say she's an emotionless no-seller or the uneducated Meltzer-repeaters that never watched and will fail to explain her greatness fool you. Just watch the matches and see for yourself. She was the real deal who became one of the key pieces of the post-Crush Girls era of AJW, and I will always view her as one of the greatest wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Lutwiejwrote on 30.09.2023:[10.0] "Manami Toyota is one of the best wrestlers of all time, male or female. With a lot of 5 star matches, her bouts stand the test of time, being some of the most impressive women's matches of all time. She was always giving 100% in her matches, doing a lot of crazy moves and taking some big bumps. Great seller and always had a great connection with the audience. Truly the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: SienaArsenwrote on 05.08.2023:[10.0] "The best female wrestler of all time, and one of the best in general. She had 13 5-Star Matches in her carreer. She had no fear to be agressive, to put her limits on test every single match, to be innovating. She makes moonsaults, backflips, turnbuckles rolling pins and falling dropkicks in a age of the most wrestlers uses backsuplexes and hammerpunchs as better move. She also had a incredible balance control, jumping on the ropes without a single trace of sliping, and could be considered one of the pionners of the future "high-speed style". And she completed with good sellings. No much more to say, she's simply the best!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: jonsnoewrote on 01.06.2023:[10.0] "The best women's wrestler of all time. Her movement and her agility feel more like a man wrestler than a woman. TRUE GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: CorpusSkiptotelicumwrote on 13.05.2023:[5.0] "Fine Wrestler that has had many good matches. But theres something missing; selling. Whenever I watch a Manami match, its like i'm watching advanced AI art, sure its impressive on a technical level but theres no soul to be found. Somehow, she lacks the charm that some of the more successful american spot monkeys have. I still respect her, and maybe one day I will get it, but its not today."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: TheOneAndOnlyCactuswrote on 12.04.2023:[10.0] "The best female wrestler of all-time in my humble opinion. There's revisionists out there that will claim she had no psychology and couldn't sell. I wholeheartedly disagree here. She was a tremendous seller that could take some crazy bumps. She could squeeze out any emotional reaction from the audience at any time, she always had them in the palm of her hands. And wow, what a worker she was. Setting the standards for in-ring action for the decades to follow, insane pace and stamina in her prime, she was just a joy to see perform."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: ChrisPrattAsMariowrote on 06.03.2023:[10.0] "The greatest female wrestler of all time and one of the best wrestlers in general. Matches against Hokuto, Aja, Inoue, and Kansai always deliver and her wide array of moves is amazing. My favorite match of hers is against Akira Hokuto at Destiny 1995"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: TooDarkMarkwrote on 23.12.2022:[10.0] "One of the greatest professional wrestlers to walk this Earth. Lou Thesz, Buddy Rogers, Harley Race, Bret Hart, Manami Toyota. A real shame that many outside of Japan will never know the true genius of her work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: CJRisAwesome12wrote on 10.09.2022:[7.0] "I? ve always liked Aja Kong better because Manami? s matches just have never been as exciting. Don? t get me wrong she is still very good. Even her matches with Aja aren? t fantastic. One of them I can? t even finish because Manami won? t stop screaming. I feel like she doesn? t sell as much as her other contemporaries but maybe I just don? t notice it. Because I am decently new to Japanese wrestling. I think a 7 out of 10 currently is satisfactory. Maybe I? ll change it later once I watch a little bit more of her work."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Makai Clubwrote on 11.05.2022:[9.0] "While I don't think Toyota was the best of her generation, she could do wonderous things in the ring. And, like her peers, her longevity is underrated. She wrestled as a top level for a good while. Perhaps not twenty years like some of the male wrestlers, such as Negro Casas, Bryan Danielson, etc, did but the lack of footage doesn't skew in her favour either. But for what we seen, she has a long list of great matches against different opponents or tag team partners. Her feuds against Toshiyo Yamada and Aja Kong are well known throughout history and for good reason. But she had a lot of good matches against lesser known rivals such as Yumiko Hotta and Kaoru Ito. Her longevity was certainly helped with the hyping by Dave Meltzer and while I think she is below the likes of SHonbu Kandori, Akira Hokuto, Chigusa Nagayo, she was a quality wrestler in her own right. Someone who helped push the hyper competitive mindset that allowed for everyone to be on their top games for a period of time. That's an achievement."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Wright15wrote on 11.02.2022:[10.0] "You can make great arguments for a few different people, but I think that Manami Toyota is the best female wrestler of all time. But it's insulting to give her that label and call it a day, as she is easily one of the greatest wrestlers period. This woman was insane. I don't understand how she would do that MISSILE DPROPKICK FROM THE TOP ROPE TO THE FLOOR every single show and still wrestle for 30 years. No one has been as successfully reckless a high flyer, and honestly, no one should ever try. You can probably count on two hands the number of wrestlers with her stamina (about half of them would have been working with her in 1990s AJW by the way). To this day, she holds the distinction of participating in the fastest 60 minute draw of all time against Kyoko Inoue in 1995. Seriously, they sprinted towards the finish for a whole hour. She is proof that you don't need to be flashy outside the ring in order to get over: her soft-spoken nature in interviews never held her back. An ultimate face during her prime, she would seldom fail to get the crowd cheering. Her feuds against Toshiyo Yamada, Kyoko Inoue, and Aja Kong are legendary. It is difficult to keep track of the number of classic matches she had. Even in the 2000s, during the dark ages of joshi wrestling, she still managed to have her share of awesome matches. But most importantly, she never compromised: she always stayed true to her vision of wrestling and did it her way. Because of that, modern wrestling is only just catching up."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: NoSellwrote on 17.11.2021:[10.0] "The GOAT, the Queen of Queens. Simply the greatest female professional wrestler of all time and one of the best regardless of gender. Innovator of moves and absolutely fearless in the ring, throwing herself 100% into everything. A joy to watch her matches with Aja Kong, Kyoko Inoue, Akira Hokuto and many more. Legendary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: ActualHumanWillwrote on 28.09.2021:[10.0] "Bar none the greatest women's wrestler of all time, and arguably one of the greatest wrestlers of all time in general. Had an unrivaled career full of legendary matches, great moments, and innovative offense thats still used by many indie wrestlers to this day. A truly incredible wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "The greatest Joshi/female wrestler of all time, she is a innovator with his aerial moves, a lot of aerial wrestlers owe respect to Toyota"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: doxkevwrote on 20.06.2021:[10.0] "Best woman I've ever seen wrestle. Glad her matches are on youtube. I'm surprised other professional wrestling ladies don't mention her?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Ma Stump Pullerwrote on 05.06.2021:[9.0] "If we were discussing the prime of her career, I'd most definitely say she was a 10, no question. Fantastically agile and had a workrate that not even the vast majority of the talent today can really keep up with. Extremely innovative and consistently having world class matches, as well as being a sensational seller, especially against the monster heels at the time: no one has quite made me cringe as much as she has with some of her brutal bumps. The only gripe I'd have with 90's Toyota was that she had a tendency to just never really slow down, which is great for some but for me I like the slower paced, psychological ringwork rather than just going full steam all the time, which was a habit she consistently dipped into. Why not a 10 if she's so talented then? Well, it's the fact that she slowed down considerably in her later years (not helped by her relentless workrate wearing her down pretty fast) and couldn't really go for a good bit near the end of her career. Sure, she'd still have great matches now and then depending on who was there, but never on the level that she'd have in her better days. That for me keeps her at a 9 despite her numerous accomplishments."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Kungwrote on 29.05.2021:[10.0] "I don't think you can be hyperbolic when talking about Manami Toyota. She was ridiculously talented in the ring and she might be the best pure babyface in Joshi history next to Chigusa Nagayo. Also the Japanese Ocean Cyclone Suplex is the greatest suplex ever conceived."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Wrestling Foreverwrote on 19.04.2021:[10.0] "Eine der Joshi Legenden schlechthin. Würde sicher auch heute noch starke Matches zeigen. Trägt heute kurze Haare würde man echt nicht wiedererkennen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: axebombertsurutawrote on 18.04.2021:[10.0] "Gorgeous Moonsault, maybe the best ever in the business. Love her matched against Aja Kong especially."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: math1823wrote on 17.03.2021:[10.0] "Toyota did in the 90s what is considered "modern" today. She, alongside all of the AJW roster but I think it was even more obvious with her, was 20 years ahead of her time and she really helped women's wrestling grow in Japan and in the world. She is imo the best wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: KOtrianglewrote on 18.02.2021:[10.0] "The greatest women's wrestler of all time, her ability, and how great she in terms of storytelling or being the biggest babyface in the match, unfortunately she wasn't as popular as Aja or Bull or Hukoto for the international fans, but that doesn't change the fact about her greatness."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: rainmakerpunkwrote on 28.11.2020:[10.0] "One of the best wrestlers in history, I've seen her do some incredible moves that nobody else can really do, her offense is incredible, she's not bad at selling either, in 1995 she was the best wrestler in the entire world"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Suzukigunwrote on 07.11.2020:[10.0] "Best female wrestler ever. One of the best wrestlers ever, period, and universally regarded as such for good reason."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: BlueVinsmoke2323wrote on 01.11.2020:[10.0] "The greatest female wrestler of all time and one of the best wrestlers male or female ever in my opinion. She was a super workhorse, being part of many nonstop action matches. She? s really good as a sympathetic babyface and her selling is fantastic. Her agility is out of this world, she literally did springboard moves without even using her hands. Very revolutionary and important wrestler to the history of this sport."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Nerfair1wrote on 15.10.2020:[10.0] "Probably the best female wrestler of all time, also one of the best wrestler of all time period, she was amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: EUJBFTYwrote on 23.07.2020:[10.0] "The greatest female wrestler of all time and in the top five greatest wrestlers of all time, regardless of gender."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: OffensiveLariatowrote on 04.06.2020:[10.0] "The GOAT she is my favourite female wrestler and the second one overall after Kawada, she was a pioneer and inspired a lot of people, it's sad that a lot of people doesn't even know who she is because of the unfamiliarity of the general/mainstream public with japanese wrestling and more specifically the 90's Joshi Puroresu"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Kaswrote on 27.01.2020:[10.0] "A champion of work-rate above all else and is unmatched by anyone in that aspect. Rightly draws criticism for her lack of long-term selling and her tendency to just go-go-go at her peak, but these are aspects that were improved upon considerably from 1997 onwards. On top of this, she really does not get enough credit for other aspects of selling, like bumping, submission sequences, and FIP segments in tag matches. She was also a pioneer of a style that may not be to everyone's tastes but was incredibly ahead of her time to the point where many of her matches wouldn't look out of place even today. Top 3 women's wrestler of all time along with Hokuto and Bull."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: 20SaiDa19wrote on 14.03.2019:[10.0] "My personal favourite wrestler from the 90's. Her in-ring style was way ahead of its time and a majority of her matches, both single and tag, hold up very well today. It could also be argued that, during her prime, Manami was one of the most athletic wrestlers ever, regardless of gender."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: MitsuharuMisawawrote on 09.03.2019:[4.0] "I like Toyota but she is missing psychology in most of her matches. I do not like her famous tag team matches but like one of her singles matches with Aja Kong. She is too quick for my tastes. She is not the greatest female of all time."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Aurtletheturtlewrote on 06.03.2019:[10.0] "The greatest female wrestler to ever exist. She elevated every match she was in and every person she faced to her level and yet still no one could touch her. Manami Toyota is not just the greatest female wrestler to ever step in between the ropes, she is one of the best wrestlers to ever lace up a pair of boots regardless of gender."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: RatingsMachinewrote on 14.10.2018:[10.0] "Manami Toyota was the best female wrestler of all time, and the only one you could put on her level was Akira Hokuto. She always worked hard, she could do some incredible things in the ring, and she did it all within the confines of making a match both exciting and dramatic. If you try to argue she wasn't as a great as she was, you're only going to make yourself look foolish."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: JokeyZockeywrote on 29.11.2017:[10.0] "Die beste Frau, die jemals einen Wrestling-Ring betreten hat! Zu ihr muss man nicht viel sagen: Technisch besser als viele Männer, unzählige atemberaubende Klassiker auf die Beine gestellt und eine unvergleichliche Intensität und Charisma! Die ''fliegende Fee'' ist einfach die größte Legende des Joshi-Puro und wird uns auch jetzt nach ihrem Karriereende für immer in Erinnerung bleiben! Danke für alles Queen, genieße jetzt deinen wohlverdienten Ruhestand."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Vancouver Victiniswrote on 19.11.2017:[10.0] "Look if you can get 17 5* matches in about 4 years and 2 of those in a tag team tournament on the same night. you are perhaps the greatest wrestler on the face of the planet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Paul Allainwrote on 11.11.2017:[7.0] "Good veteran joshi, absolutely, but nowhere near a top all-time wrestler. Certainly a very good hand, but nothing overwhelmingly special, aside from great moves executions."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: UserDragon12wrote on 23.10.2017:[10.0] "I can not find words that honor everything Toyota Manami did. Seeing that some people who should know of wrestling give it a rating of 0. 0 / 10. 0 is really sad. She is a great fighter and had legendary matches, to name a few, vs kong in tokyo dome 94, vs Kaoru Ito in 97 (in this match you can highlight the sale of manami in its maximum splendor, I chose it so that its detractors close the mouth) vs toshiyo yamada hair vs hair, vs akira hokuto 9/2/95, and much more, maybe you can doubt if she is the best fighter of all time (there was a lot of competition in that then), but definitely she's a great joshi fighter, and seeing her work is something you can not miss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: taabr2wrote on 10.09.2017:[10.0] "Manami Toyota is one of the greatest workers (man or female) of all time. In the early 90s she was pulling out maneuvers that not even men in wrestling was doing at the time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Arousalswrote on 17.04.2017:[7.0] "She's had more 5 stars match than any woman in history and will definitely go down as one of the all time greats."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: SuTonwrote on 17.04.2017:[9.0] "Manami Toyota is often touted as the greatest woman wrestler ever by people with just passing knowledge of Joshi or parrots of Meltzer, but the story was different among her peers at the time of her Zenjo run with Akira Hokuto getting the bulk of the praise. There's no question Toyota was a great athlete and could go at brisk pace with fantastic stamina. She embodied the style of the promotion during her prime and worked it the faster; rapid work-rate, a ton of high spots, and screaming. Compared to her contemporaries like Aja Kong and Hokuto, the way she put her matches together sacrificed story, structure, long term selling (her climb to and more emphasized getting her shit in e. g. I hate the table spot outside stuff like where Hokuto kicks her in face for her troubles. She had explosive offense that played on her ability to convey a sense of urgency. You can say she relied mostly on her athletic ability, given the lack of notable matches after peaking. No arguments would be had if you said Toyota was one of the best offensive wrestlers ever. Toyota was a great babyface in peril and could sell an ass kicking with her facial expressions, contorting, and bumping. Her shrieking could get excessive, though. Her flaws as a worker are obvious and while she's not among the absolute best joshi wrestler of all time, she's among the best, has been involved in some of the greatest matches of all time (few wrestlers have been in more great matches), and was a great performer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: cbenson5wrote on 11.04.2017:[10.0] "Manami Toyota's work is breathtakingly beautiful.  Greatest woman's wrestler of all time and probably top 5-10 when you include the men."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: nitrop199wrote on 29.10.2016:[10.0] "She puts any other wrestler of any era to shame when it comes to trigger empathy. Incredible acting, incredible selling, she did stuff that only a few would dare to do, even today.  Had some of the greatest matches in the history of pro-wrestling.  Manami Toyota is without a doubt one of the greatest wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: TheOneWhoKnockswrote on 23.10.2016:[10.0] "Calling Toyota the greatest female wrestler of all time is not enough. She is one of the greatest wrestlers of all time, full stop. Top 5 at least even. No woman to ever enter this business, not even her AJW counterparts, have ever met her level. Her selling is wonderful, one of the best sellers of all time, she could sell any submission or strike and make it seem legitimately painful. A shit ton of charisma, got the crowd invested in her matches consistently and is also one of the best babyfaces of all time. Her high flying moves impressed also and she could hit a mean German Suplex. Only thing left to say is that she was this good while being stunningly beautiful. Not relevant but hey. She is. Toyota is almost everything you want in a wrestler. An easy 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Luv all wrestlingwrote on 10.10.2016:[10.0] "Manami Toyota has had over ten five star matches, that should tell you all about how great she was. A great tag team and singles wrestler, Toyota knew how to pace a match and she once had a great match in a RAINSTORM."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: ApexOfEvolutionwrote on 31.07.2016:[10.0] "Die " alte" Dame ist eine wahre Legende und man hat nicht das Gefühl, dass sie auch nur ein bißchen Rost angesetzt hätte. Majestätische Ausstrahlung, tolle Technik, spektakuläres Highflying und ein göttliches Selling. Einfach nur 10 Punkte wert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: ShooterMcShootwrote on 24.06.2016:[10.0] "I can't really build on the comments that have already been made describing her as the greatest women's wrestler of all time (and one of the greatest wrestlers of all time, period), because they're absolutely right, in my view."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: shimmerknockoutwrote on 07.05.2016:[10.0] "One of the, If not the greatest women's wrestler ever. A true innovator and Joshi queen, and still going strong today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Laurelleswrote on 05.05.2016:[10.0] "One of the greatest wrestlers of all time, a true innovator. Allegedly she's not as highly rated by her contemporary joshi workers, but she's a true delight to watch from my perspective."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: paijowrote on 15.07.2015:[10.0] "The anti aging lady, she's the coolest wrestler in the 90's. queen of Innovator. and amazing athlete"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Alex Maedawrote on 26.09.2013:[10.0] "Die Joshi-Legende schlechthin. Und das zurecht. Gimmick, Unterhaltungswert und Intensität im Ring habe ich so noch nie zuvor und danach so erlebt wie bei ihr."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Leonewrote on 01.07.2012:[10.0] "Along with Jaguar Yokota, this woman is in a league of her own when it comes to quality wrestling.  Back in the 1990s she lived up to the description of a wrestling martyr, selling moves incredibly well for her opponents and taking some of the sickest head drops you will ever see, even today.  Her tag matches with Toshiyo Yamada against Dynamite Kansai & Mayumi Ozaki, are legendary.  Her 1994 match against Aja Kong is a must-see, even for curious non-wrestling fans.  And a year before Shawn Michaels & Bret Hart did it at Wrestlemania, Toyota and Kyoko Inoue went 60 minutes in an awesome match.  Today, she is still a great worker, despite the competition not being in par to what it was back then), and deserves to be classified as a standard-bearer - 1 that I'm not sure will be reached anytime soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Rated R Champwrote on 15.02.2012:[10.0] "Was soll man noch großartig sagen, Toyota ist die Legende im Womenswrestling, was sie in den 90ern an Matches abgeliefert hat sucht Seinesgleichen (Aja Kong kommt vielleicht noch ran). Und auch heute ist sie, auch wenn sie natürlich abgebaut hat noch zu sehr guten Matches in der Lage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Mediwrote on 08.09.2011:[8.0] "Durch Chikara bin ich auf sie aufmerksam geworden und irgendwie würde ich sie gerne in mehr SHIMMER-Matches sehen, vor allem gegen MsChif, Melissa und Haze."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: sign squadwrote on 19.09.2010:[9.0] "Ein Punk Abzug für die Tatsache, dass sie es wie so viele andere nicht lassen kann, auch heute noch in den Ring zu steigen. Großartige Wrestlerin mit allem, was dazu gehörte und auch noch immer gehört. Besonders Mitte der 90'er in den Top 10 der besten Worker egal welchen Geschlechts, den sie konnte mit jeder Gegnerin arbeiten und sie gut aussehen lassen. Für mich damals das perfekte Rund-Um-Sorglos-Paket im Ring, an das niemand sonst ran kam."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: MaKnowrote on 21.08.2010:[10.0] "Eine atemberaubende Wrestlerin, die noch heute mit großer Leidenschaft zu Werke geht. Ich habe mehrere Klassiker gesehen und muss gestehen, dass das Rating von Melzer alles andere als übertrieben ist. Toyota ist im Damenwrestling längst eine Lichtgestalt, die für die Klasse des weiblichen Geschlechts im männerdominierten Wrestling Business wie keine Zweite steht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Raywrote on 13.08.2010:[10.0] "Legendär ist noch untertrieben um das Schaffen dieser Frau zu beschreiben. Sie ist der Gegenbeweis zur These, dass Damenwrestling immer langweilig sei."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Legionwrote on 06.05.2010:[10.0] "Was ich gesehen habe, waren einige der besten Wrestlingmatches überhaupt. Da soll noch mal einer sagen Frauenwrestling taugt nichts.  Sie ist eine Legende an die auch die meisten Männer nicht ran kommen, zumindest im amerikanischen Raum."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: ZephsPancakeswrote on 13.01.2025:[10.0] "The greatest Joshi of all time. The greatest female wrestler of all time and for me, the third greatest wrestler of all time. Akira Hokuto had it all, a fantastic look, phenomenal in ring skill, fantastic selling. There was nothing she couldn't do. It says a lot about her and her contemporaries when WCW brought them in to actually have a competitive women's division and the fact at that time, she was able to captivate that audience says a lot about how good she was. Whether its the iconic Destiny match with Manami, the underappreciated GAEA match with Meiko or the absolute bloody war with Kandori, Akira Hokuto has something for everyone and someone whose influence in wrestling will carry on for a long time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: dizziedwrote on 12.01.2025:[10.0] "Everyone has a right to their opinion, No clue what (the reviewer below me is saying) is saying. She's an icon but you give her a 7.0. Her average rating is 9.69. How does he get away with putting such a few worded explanation.... Go back and watch her matches. And reconsider your ranking. Matches with Manami Toyota, Bull Nakano, Kyoko Inoue, and Shinobu Kandori are legendary. Even the matches in the United States where she had to carry Madusa to make it a good match. All Japan Women's Wrestling did her a disservice but not letting her hold the top Women's World Championship She is absolutely a 9 or 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Anas Kingwrote on 11.12.2024:[7.0] "She's a legend in her own right. She's an icon. But when we specifically talk about in ring work rate, I think she falls short in comparison to some other greats."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: yumin76wrote on 08.11.2024:[10.0] "The best woman wrestler of all time. period. No one was such iconic, technically experienced and amazing"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: JediSaiyanMaster1203wrote on 11.10.2024:[10.0] "Akira Hokuto Is A Badass! That's all I think of when I watch her, she is just amazing. Personally, in contention with Manami Toyota for the greatest female wrestler of all time, every move she does looks picture perfect, she's an incredible storyteller, sells her ass off, she can have some of the most brutal looking match, innovated one of the coolest finishers of all time (Northern Light Bomb), made 1993 her year, rightfully nicknamed "The Dangerous Queen, " has amazing ring gear, her entrance before her match wit Aja Kong in the VTOP tournament is one of the all time best, her theme song slaps, amazing entrance gear, can blade like she's Ric Flair or Terry Funk (LOL! ) and, of course, her infamous hit list. I could seriously go on and on about how amazing she is, shame she didn't have an amazing run in WCW, but oh well, who cares? It's not like America was ready for Joshi wrestlers in the 1990s, she still has forged a great career for herself in Japan, left behind countless classic matches and feuds that will still be remembered to this day and talked about for many years to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: igskillfartwrote on 13.09.2024:[10.0] "Behind Toyota, Hokuto is one of the greatest female wrestlers to have ever graced this planet, she is the reason why i became a Joshi wrestling fan, easily one of the greatest wrestlers to have ever lived, 1993 she was probably the best wrestler not only female, but of the world. she is a true legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Gabiwrote on 07.08.2024:[10.0] "Perhaps my favorite wrestler of all time if you ask me. Akira Hokuto has a very strong case for greatest women wrestler of all time. If shes not number 1 shes definitely top 3 in all objectivity. Great character and some all time matches"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: SigmaAngeloAsteriawrote on 28.07.2024:[10.0] "Akira Hokuto is perhaps the GOAT of female wrestling altogether. A fantastic worker, hard-hitting, a good technician, good seller, basically what you want from a fantastic wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Joe907wrote on 19.07.2024:[10.0] "The dangerous queen Akira Hokuto is one of the great wrestlers ever regardless of gender. She is a legend. Hard hitting technician who can do it all in the ring. Her matches with Kandori and Toyota are some of greatest matches ever. Definitely one of the best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: SlapViperLLCwrote on 13.01.2024:[10.0] "Violence Personified! There are many wrestlers who can make wrestling look real and feel real. Akira Hokuto makes wrestling feel so perfect. The very tiny things she does. The smirks, the screams, being so brutal and so much of an arrogant foe to anyone in her path. Many wrestlers Iike Bull Nakano and Manami Toyota had their best match with Hokuto and to think she didn't even crack 500 total career matches and is considered one of the greatest of all time! Not to mention that she gave birth to the greatest finisher ever AND had one of the best entrance themes ever! We love The Dangerous Queen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "The best Women's wrestler in history? You can make a strong case for it. Even her stuff in WCW where the Japanese wrestlers usually "have a night off" were good."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: TheOneAndOnlyCactuswrote on 11.04.2023:[10.0] "Prime for prime, Akira's up there with the best of them. Her 1993 year is damn legendary, argued as the best for any wrestler, regardless of gender. Building of character, incredible matches, emotional intensity, high drama, whatever you enjoy in wrestling, she had it in her prime, and was as good as anyone you could name. If the Dangerous Queen could have avoided injuries, she probably would have been remembered as the greatest of all-time. But still, she had a great career she could be proud of. Plus she married Kensuke Sasaki, so good for her."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: benny5bellyswrote on 02.04.2023:[10.0] "An all timer and gets nowhere near the love and respect she deserves. Brings a level of intensity and believability to everything she does with more charisma then few have ever had."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: ShineyxDiverwrote on 31.03.2022:[10.0] "The Greatest of All Time. It is as simple as that. The Dangerous Queen had some particularly glorious years, with 1993 being all time and multiple 5 star matches where the crowd loved her and her wholly. A woman forged by pain and agony and the determination to be the greatest. She was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Kaswrote on 20.12.2021:[10.0] "Hokuto's 1993 is about as close to wrestling perfection as you can get. That alone makes her an all-time great. What makes her a candidate for greatest wrestler of all time is that, not only does she not have a single weak year in her (admittedly brief) career, between 1990 and 1995, she was at the very least a top 5 wrestler in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: NoSellwrote on 21.11.2021:[10.0] "I'd say if Manami Toyota didn't exist then Akira Hokuto would be the greatest female wrestler ever. Can't say that for sure because there's a lot of competition for the number 2 spot behind Toyota but she would definitely be in the conversation. Incredible performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Avadon1wrote on 21.11.2021:"One of the greatest of all time, without the injury concerns she could have been far and away the best."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Jaedynr5wrote on 26.10.2021:[10.0] "an absolute legend of the wrestling world who still carries a lot of influence now, unique look in Japan and the US, carried an imposing aura, and a phenomenal in ring worker who could work with anyone"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Lalo Camposwrote on 16.10.2021:[10.0] "One of the best Joshi wrestlers of all time, her presence was unmatched and have one of best female matches of all time with Toyota"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: BEER CATwrote on 22.09.2021:[10.0] "Hokuto's calendar year of 1993 is the highest one-year peak any wrestler has ever reached, regardless of country, time, or gender. It just doesn't get any better. Every second is maximum intensity, overflowing emotion, breakneck (heh) pace, all of it made sense in a character context, she worked with dozens of all-time greats and made everyone better. Peak Hokuto is essential viewing for anyone with even a passing interest in pro-wrestling beyond the televised Western mainstream."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Jacky Chanwrote on 03.07.2021:[10.0] "The greatest women's wrestler after Meiko Satomura, it is sad that her career was ruined by injuries & ended earlier. She has an incredible character & charisma, her entrance was really impressive, and in the ring she was GOAT, her classic matches made me a big fan puroresu, she is aggressive & the dangerous queen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: math1823wrote on 21.06.2021:[10.0] "How sad is it that her career was ruined by injuries and that she barely wrestled from 1994 to 2002, because when she did, she is easily one of the 10 best women's wrestler ever, probably even on the top 5. She had everything. Charisma, in-ring skills, popularity, connection with the crowd, able to work heel or face... Her nickname "Dangerous Queen" fitted her so well, her big matches were violent, but it was a kind of violence that is just beautiful to see. A legend is every sense of the word."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: CognacConversationwrote on 17.06.2021:[10.0] "You can easily make a case for the Dangerous Queen ranking highly in an all-time greatest wrestler list. In joshi, she was perhaps the total package. Fantastic wrestler, impeccable psychology, bundles of character, and popularity was through the roof in the 90s in Japan. Always told dramatic stories in her matches, and gave it 110% while dealing with serious injuries that plagued her career. Hokuto's gutsiness tenacity were her most endearing traits. Match-wise, the Dream Slam classic with Kandori should rank highly anywhere, but she has a long road of brilliant matches against her contemporaries like Manami Toyota, Kyoko Inoue and Mayumi Ozaki."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Kungwrote on 30.05.2021:[10.0] "While I have all the respect in the world for Manami Toyota, I genuinely believe that Akira Hokuto is the most spectacular female wrestler I've ever seen. She had the look, the intensity, the charisma, the in-ring ability, and she continues to give back and show her love for the sport even today. I can't help but watch her best matches over and over again!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: BlueVinsmoke2323wrote on 04.12.2020:[10.0] "In my top 5 wrestlers of all time male or female. Hokuto was a master of storytelling with so many classic and created 2 deadly moves (Northern Lights Bomb and Gutwrench Powerbomb). Her charisma and character were outstanding. She didn? t afraid to took risks so there? s a reason she called ? Dangerous Queen? ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: 20SaiDa19wrote on 14.03.2019:[10.0] "Although there are certainly better in-ring women wrestlers than her, very few ever, if any, can match her levels of charisma and aura. She was however still a great in-ring talent and has been involved in countless classics with numerous different opponents."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Akira Hokuto is either #1 or #2 when it comes to ranking the best women wrestlers of all time. Hokuto had an incredible work ethic, and whilst it meant that she had awesome matches, it also meant that she paid a hard price for having those awesome matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Claudio Herowrote on 03.12.2014:[10.0] "Die Ehefrau von der Legende Kensuke Sasaki ist auch heute noch in Japan extrem bekannt und beliebt. Akira Hokuta hat sich durch etliche Top Matches und auch richtigen Klassikern einen Namen gemacht. Die Fehden gegen Shinobu Kandori, Manami Toyota und Bull Nakano zählen für mich mit zu den besten Damen Matches aller Zeiten ! Für mich glatte 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: joshimaniawrote on 23.06.2013:[10.0] "One of the most intense and charismatic wrestlers in history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Leonewrote on 20.03.2013:[10.0] "A nice person in real life and a vicious wrestler in the ring, Akira Hokuto is a legend in women's wrestling.  Over the years, she wrestled in some of the most violent matches, and has bled like Ric Flair on several occasions.  She has wrestled in quality matches with numerous injuries, including a broken neck early in her career.  Her match against Shinobu Kandori at Dreamslam in 1993, remains 1 of the best sold grudge matches I have ever seen, and I say that because Hokuto's selling in it was a solid 10/10.  On top of that, she innovated several wrestling moves, including the gutwrench powerbomb and Northern Lights Bomb.  Overall, 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: WhiteHummerDriverwrote on 23.11.2012:[10.0] "Kriminell unterbewertet auf dieser Seite. Einzige Erklärung für mich ist, dass die meisten die sie hier bewerten sie nur aus WCW kennen und nie ihre wirklich großen Matches gesehen haben. Hokuto ist eine absolute Legende und zählt für mich zu den Top 5 Wrestlerinnen der 90er. Die Frau konnte alles: Brawlen, Technik, High Flying, und ihr Selling war auf einem Level das nur die wenigsten Wrestler - egal ob Mann oder Frau - je erreichen. Und egal ob in blutigen Schlachten wie gegen Shinobu Kandori, oder in Technik-Feuerwerken wie gegen Manami Toyota, Akira Hokuto war immer mit einer Leidenschaft für dieses Business und einer Toughness bei der Sache, die ebenfalls bei beiden Geschlechtern ihres Gleichen sucht. So beendete sie unter anderem ein sehr frühes Match mit einem gebrochenen oder zumindest schwer verletzten Hals, wobei sie sich selbst den Kopf in Position hielt. Des Weiteren zählt die Entwicklung der Northern Lights Bomb - die seitdem von Wrestlern wie Al Snow, Steve Corino und Hokuto's Ehemann Kensuke Sasaki benutzt wurde - zu ihren Verdiensten. Und als wär das alles noch nicht genug, ist diese Frau zudem so charismatisch, dass sie selbst Jahre nach ihrem Rücktritt zu Japans beliebtesten Celebrities gehört und ständig im Fernsehen zu sehen ist. Hier weniger als die 10 zu vergeben würde mir im Traum nicht einfallen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Zak22wrote on 08.01.2025:[10.0] "I just want to take a moment and explain why I love Jumbo Tsuruta and why I think he is a top 15 all time talent. Jumbo went from being a fantastic, technically skilled rookie wrestler in the 70s to being the power house, brawling ace of All Japan in the mid to late 80s and early 1990, bowing out from the main event picture by putting over the Four Pillars of Heaven and having the best passing of the torch match in wrestling (1990 vs Misawa). Tsuruta had great matches with Tenryu, with Misawa, with Bockwinkel (even capturing the AWA world title) and with Ric Flair, plus some great tag matches. Tsuruta was intensity and brutality in human form. For a solid decade (maybe more), Jumbo was a top 10 wrestler in the world. Tsuruta is the best possible wrestler that Giant Baba could have possibly picked to be the ace of All Japan. Jumbo optimised greatness in the 80s. And he was the first Triple Crown Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Wrest lingaddictionwrote on 26.09.2024:[10.0] "One of the best in-ring workers of not just his era but all time. With a plethora of high-level matches and opponents, he's without a doubt a ring general. His matches with the Four Pillars, Nick Bockwinkel, and pretty much any other name in wrestling from the mid to late 70s through to the 90s were phenomenal and a true testament to his training from other legends such as Giant Baba, the Funks, and Lou Thez. Jumbo epitomised AJPW and Japanese wrestling for his era and without him, the history of wrestling would suffer drastically."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Ron Ewrote on 13.06.2024:"Jumbo Tsuruta is the definition of a wrestling legend. Trained by the likes of Giant Baba and Terry Funk you can see why Jumbo made it as far as he did. Jumbo brought many qualities to the ring, size and power was a must at a whopping 6ft 4 but the fluidity in the the ring will have you in awe. Moves such as his jumping knee from the top rope and his heavy backdrop driver prove this. In my opinion Jumbo has the best and most clean looking powerslam in the business, he was one of the best workers in the world throughout the 80's and 90's and was truly instrumental to building the rise of the 4 Pillars. His matches with the likes of Tenryu in the 80s and Misawa in the early 90s are some of the best matches of all time."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: BostonIdolwrote on 01.02.2024:[10.0] "Jumbo Tsuruta was arguably one of the top five pro wrestlers in the world from the mid-seventies until the early nineties, having a string of classic matches against several generations of wrestlers. Tsuruta was a legit athlete prior to joining All Japan in the early seventies. Jumbo brought size, strength, agility, and a fluidity of movement to the ring while learning from the best workers of the era including the Funks, the Destroyer, Harley Race, and Billy Robinson. Jumbo went on to become one of the top performers of his own generation which included workers like Ric Flair, Ricky Steamboat, and Stan Hansen. Jumbo continued to have world class matches against the next generation of main eventers including Misawa, Kawada, and Kobashi. Until he was knocked out by hepatitis in late 1992, Jumbo was consistently one of the ten best workers in the world. Someone looking for highlights could start with Jumbo vs Terry Funk for the NWA title in 1976. There the still young Jumbo matches veteran champ and former tutor Funk hold for hold in arguably the best match of Terry's career on tape. The following year Jumbo had a memorable series with Billy Robinson along with classics against Harley Race and Mil Mascaras. Fast forwarding to the mid-eighties, Jumbo had classic world title matches with Ric Flair, Kerry Von Erich, and Rick Martel. From 1987-1990, Jumbo worked a series of memorable matches against Genichiro Tenryu that were the highlight of Tenryu's working career. In the nineties Jumbo put over a new generation of Japanese main eventers. He was pinned by Misawa in 1990, but he also made Kawada and Kobashi by making them look like credible threats even while defeating them. Jumbo also had a number of great tag matches, notably the feud where he and Tenryu teamed up against Riki Choshu and Yoshiaki Yatsu from 1985-1987 which yielded several of the best tag matches of the decade. Jumbo's moveset changed and expanded with the times. He was known for the lariat, the jumping knee, and the backdrop suplex, but like Harley Race, Jumbo always had more than a dozen big spots he could draw from to fill any match. He was also willing to give his opponents plenty of opportunities to look good, bumping for and selling their spots. In March 1986, Jumbo had a match with Animal Hamaguchi that was the finest exhibition of Hamaguchi's career. Animal wasn't Jumbo's peer at the time, being a lesser member of Ishin Gundan, but Jumbo made him look like a main eventer. The one match where Jumbo was less than generous was his one hour draw with Riki Choshu from late-1985, where he never made it look like Choshu could actually beat him. One assumes Baba booked the match in that fashion as he didn't fully trust Choshu enough to elevate him as Jumbo's peer, instead feeding him Tenryu, Jumbo's junior partner. It's a shame because it was their only singles match and left to his own devices, Jumbo probably would have carried Choshu to the greatest match of his career, as he did with so many others. In terms of rating, Jumbo was arguably a 10 by 1976 when he was turning out match of the year candidates with multiple opponents and he maintained that quality level through 1992, though by the early nineties All Japan had become more insular and Jumbo's role had become more limited as the franchise champion without many peers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: danzitorockwrote on 15.12.2023:[10.0] "The King of King's Road, the first ace of puroresu, Jumbo is the definition of a legend. The guy completely molded and solidified an entire style of wrestling, his contributions and importance to the sport are priceless. The man is incredibly gifted, has an amazing technique and knows how to tell a story in a match like few others. Amazing storyteller, brilliant seller, one of the best we ever had, the ultimate ace."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: WrestlingStuffwrote on 04.09.2023:[10.0] "The man became an accomplishment himself, because someone who's compared to Jumbo is meant to be greatly talented and fully committed to this business. The first japanese wrestler to be appreciated by an American audience, Tsuruta was a gifted athlete since his childhood. The perfect ace, the perfect rival, the perfect wrestler, and perfect coach and father until the end. Godspeed Jumbo, your mission was perfectly executed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: No Onewrote on 24.05.2023:[10.0] "He was the best young wrestler of the 1970's decade. He was arguably the best wrestler of the 1980's decade (in contention with Ric Flair & Ricky Steamboat). IMO, he was the best wrestler in the world for the 1990's until he unfortunately became ill, then his rival Mitsuharu Misawa took over for that accolade. He was able to change & adapt to comfortably fit in with every decade that he performed in, based on his character presentation and the type of in-ring style that he worked. He went from Young Up & Comer (1970's), to ACE of AJPW (1980's), to the Final Boss (1990's). He was the one who got The Four Pillars of Heaven over as the future of AJPW by virtually trying to kill them all the time, LOL. He is one of the greatest in-ring performers of all time. Konosuke Takeshita very much reminds me of him today. He should never be forgotten. His feuds with Genichiro Tenryu & Mitsuharu Misawa are also legendary. RIP to the legendary Jumbo Tsuruta."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: taakeferdwrote on 16.04.2023:[10.0] "Jumbo Tsuruta is the greatest professional wrestler I've ever seen. Nobody made me believe more that what was going on in the ring was a true struggle for everything he had. He was a truly believable ace and successor to the (Almost) impossible to follow Giant Baba in All Japan, but he was truly instrumental in the rise of the 4 Corners, leading all of them to their first great matches. He showed them how to build, how to tell a story and how to keep that story going across multiple matches, tours, months and years. It's the greatest shame in Japanese wrestling that the Jumbo vs. Misawa program never finished as it should have due to his illness. I think his greatest compliment came from his retirement ceremony: "It was Rikidozan who planted the tree, it was Giant Baba who made it grow, but it was Jumbo Tsuruta who allowed it to blossom""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: benh2wrote on 11.01.2023:[10.0] "If you told me Jumbo was the best wrestler ever, I probably wouldn't argue. His output was just phenomenal, 200 matches a year right up until his illness in 1992. He just had it all in the ring and it is kind of unheard of for such a big man to be one of the best sellers there's ever been. Had great offence and knew exactly how to properly build a match. The ultimate ace right through the duration of the 80's and even as the generation of the Four Pillars was starting to come in, he was still producing the best matches on the show. It's interesting to think how far into the 90's he could have gone had he not gotten sick because his output was still top drawer until he had to step away."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: MainEventMasterwrote on 26.10.2022:[10.0] "RIP to one of the greatest ever. Can be considered the perfect wrestler, the greatest ace in the history of aces (Sorry Tana). Had nothing but bangers and deserved the goddamn world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: GriffithWhitewrote on 15.10.2022:[9.0] "Jumbo Tsuruta was the MVP of AJPW after Baba was too old to be the guy. Seeing Tsuruta's rise from the plucky underdog babyface fighting alongside Baba & saving AJPW from the gaijins into a grumpy old veteran is downright phenomenal. It's slow metamorphosis which happens in such a way that it catches up to you before you even know it. Watching his classics against Tenryu I wasn't aware that he's a heel but it's so obvious in the way he worked. Jumbo happens to be one of the best sellers in this industry & had the ability to throw the best suplexes bar none. No Kurt Angle or Brock Lesnar can touch a Jumbo Tsuruta suplex. His work has not aged one bit and you can throw him into the modern japanese wrestling scene & he'll end up in the same exact place he was in AJPW. He looks like a 9 inch taller Tomohiro Ishii & if that isn't the Ace look then what is?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: texasyoshwrote on 15.07.2022:[10.0] "One of my personal favorite wrestlers to watch. A phenominal seller, and a pristine big man who could also grapple and move with ease. An all-time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: BH62wrote on 10.02.2022:[10.0] "As time is going by as I'm watching more and more of Jumbo's career, I have to say he's the GOAT. Kenta Kobashi is my true favorite wrestler but Jumbo Tsuruta was the Ace of AJPW for nearly 20 years. An artist of that sport. Baba gave him the keys of his promotion and Jumbo had the time of his life against all the world best wrestlers and putting classics all the way. Whether we was that young trailblazer in his rise or that grumpy veteran as the time went by, the crowd loved him so much. A true GOAT. Can told an intense and emotionnal story as that was brutal. True fighting spirit. His tag work was excellent as his solo run by the way. To sum it up, Jumbo Tsuruta was the backstone of the best golden era in wrestling history as he was also the top one wrestler before it. He deserves every recognition possible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: KonamiSuissewrote on 28.01.2022:[10.0] "10/10. Getting it out of the way as a premise. This man was the true successor of the legendary Giant Baba and could work a crowd like no other. Jumbo was an amazing worker, especially for someone his size, he hung around the best of the time and was still putting on timeless classics and clinics almost 20 years later, that is unreal. Tsuruta was instrumental in the rise of AJPW's 4 Pillars, especially Mitsuharu Misawa, but before them, he was the ace worker for the promotion for over a decade, always the one they could rely on, never failing to disappoint. It's seriously hard to express in words how good this guy was, I suggest everyone watch some of his matches, even in his late years before a premature death, Jumbo barely missed a beat in the ring. The crowd loved him, and I'm surprised to see that almost no one talks about him in the west, he deserves way more recognition and had no real flaws."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: GriffinXwrote on 20.01.2022:[10.0] "Jumbo is one of those guys that other wrestlers watch to learn from. A youtube video made a great point "It was only Tomomi Tsuruta's body that could topple Jumbo form his throne""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: benny5bellyswrote on 01.11.2021:[10.0] "I love Jumbo. Amazing matches through 80s and early 90s. Grumpy vicious veteran Jumbo fighting to keep his spot at the top is amazing"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "One of the greatest wrestlers of all time, the Ace of AJPW in the 80s and thanks to him, we had the Four Pillars of Heaven"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "Legendary, the Ace of AJPW who would put over the God Emerald Elbow Misawa. Sadly we were robbed of a finale to their series, as Jumbo's career and life were tragically cut short. His work as face or heel is fantastic and his matches with Tenryu are the stuff of gods."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Kungwrote on 24.03.2021:[10.0] "Although we don't talk about him as much as we should, Jumbo Tsuruta should always be included when talking about who the best Japanese wrestler was in history. Without Tsuruta's decade of brilliance in AJPW, it's hard to fathom if guys like Misawa, Kawada, Taue, or Kobashi would've even entered the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: ExcitingProWrestlin3wrote on 16.03.2021:[10.0] "One of the best storytellers, and over babyfaces at his peak. The man was simply just a phenom, a man who had carried the ace mantle for him to pass down to Misawa!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: rainmakerpunkwrote on 11.02.2021:[10.0] "He was AJPW's ace in the 80s for a good reason, in the 80s the only wrestler better was Flair, and not by much, Jumbo was elite and far ahead in the ring from what you'd expect from an 80s wrestler, storytelling master with a great big guy moveset, he set AJPW apart from every other company"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: KinchStalkerwrote on 28.08.2020:[10.0] "I can see the argument for not rating Jumbo a 10. In the 1970s, one could certainly see him less as one of the great workers of the decade and more a great dance partner who had the fortune of a platform that frequently put him against the best in the world (something of a 70s Japanese equivalent to the common narrative around mid-to-late 2000s John Cena). And the early 1980s were not a period of smooth transition for him; granted, one might rightfully point out that this was more a problem of All Japan's creative state as a whole than with Jumbo's inadequacy at his job, but a more critical observer could likewise ding him for failing to transcend more often than he did. At the end of the day, if one takes this view they will likely see Jumbo as having, at most, a great run from 1985-1992, which might not be enough for them. But while I can see this argument, I cannot agree with it. Jumbo Tsuruta played a vital role in some of the best wrestling of the 1970s. Despite being a victim of the NWA's unwillingness to give their top strap to a foreigner in the 1980s, which stunted Jumbo's growth by preventing him from resolving the first arc of his career (that is, the Japanese farm boy who could match the Americans at their own game), he still put out great matches as often as just about anybody in AJPW did at the time. And when Ishingun had their mid-80s incursion, Jumbo finally had a crop of opponents against which his mean streak could really manifest. When Choshu went crawling back to NJPW, he was able to build from what that feud had given him and create the best Jumbo: grumpy Jumbo. As far as I'm concerned, Jumbo is one of the great Japanese wrestlers, whose flaws in his case as a GOAT contender aren't really his fault, but those of the broader industry in his time. It's a testament to his greatness that, while I think the Four Pillars soared to greater heights when they built off of the SGA/Tsuruta-gun feud, I have an emotional attachment to Jumbo that I've never quite had for any of those who built upon his work. And it's one of the great shames of puroresu that the development of his hepatitis prevented Jumbo from really getting to close his career as a main-eventer on his own terms."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Ma Stump Pullerwrote on 04.07.2020:[9.0] "Massively overlooked if only for the Four Pillars coming right after him, Tsuruta was a megastar in Japan with his innovative moveset, natural charisma, and brilliant ring work. Ironically, his best years came after his physical peak in the 70's and early 80's (which were still good, but wasn't the most consistent quality wise) when he was facing off with some of All Japan's future superstars at the time. Despite being a relatively large wrestler in comparison to his peers (the only native guy who stood taller than him was Giant Baba) he wrestled like a man half his size and was easily one of the best in terms of getting the crowd invested in the match. This got much more improved in his later years when he couldn't leap around the ring and had to rely more on adapting to his opponent's style, being more stiff if required, performing heel antics against younger talent, etc. Sadly years of high workrate and hepatitis took him away from the wrestling scene and eventually took his life, but he'll always be remembered for paving the way for Misawa and others in the business with his talent. Definitely one of the most underrated wrestlers in history."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: glassS0Ldierwrote on 28.05.2020:[10.0] "He was pretty cool I guess. I like when he did his Tsuruta "OH! " taunt, always felt like him searching to the audience for validation, even if he was in the wrong. Great touch. Nice knee. Stuff like that. Yeah."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: TheGorgis309wrote on 15.09.2019:[10.0] "Although Tsuruta isn't that well known outside of Japan, he really should be more recognised. One of the best talents All Japan had ever developed, Tsuruta was a multi talented in-ring performer that could pull the best out of anyone, due to his legitimate sports background. He also helped legitimise a young Mitsuharu Misawa, another one of the GOATS in Japanese wrestling. Unfortunately, Tsuruta met a very swift and unmerciful end shortly after his retirement; had he lived longer I'm certain he could have been instrumental in the development of future talent in Japan. Go out of your way to check out his clash with Genichiro Tenryu if you can,  in fact watch all of his matches you get his hands on. He? s truly a marvel to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: LandonRyanWyattwrote on 27.01.2019:[8.0] "Tsuruta was very good for his size and style of wrestling he was able to perform. From the late 70s to late 80s, probably Japan's most recognizable figure."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Desecratedwrote on 15.01.2019:[10.0] "He can have his flaws, as noted by a lot of his work pre-Tenryu feuds. But when he hit that prime sweet-spot in 1987 to late 1991, his form was top 5 ever form. Probably thinking Misawa 94-98 and Kobashi 97-05 beats him out definitively. He had a knack for learning from different people and applying that into his skillset. When he worked with gaijins such as Hansen and Gordy, he really started to kick his snugness into a new gear for example. Same as when he worked with the Funks, Flair, Tenryu, Choshu and even Misawa. All of them gave him an extra edge. So in a sense, a true student of pro-wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: JEK 1991wrote on 17.12.2018:[10.0] "Had a great career. He was home to AJPW and sold out arenas. Very talented and big guy and knew how to maneuver in the ring. He had expose in North America when he became AWA Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: RatingsMachinewrote on 12.10.2018:[10.0] "Jumbo was a polished worker right out of the gate, that's how good he was. and it didn't take long before Jumbo was not only wrestling the top names in the business, but looking like he more than belonged in the ring with them. Jumbo was the cornerstone of All Japan in the 80s, having classic matches on a regular basis. Jumbo could still hang with the best in the business when illness brought his career to what was effectively its end; Jumbo kept wrestling, but it was only a few times a year, and strictly in the midcard comedy match where he could tag in, hit a couple of spots, and then tag back out."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Makai Clubwrote on 07.09.2018:[10.0] "JUMBO~! Extremely talented, very versatile in away where he can do a bloody brawl with Stan Hansen one show and do a 60 minute time limit with Nick Bockwinkle the next. One of the best wrestlers of his time, bar none. Very agile, very powerful and explosive, has a a unique charisma to him and very tough. Highly influential to the history of All Japan and wrestling in Japan overall."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: taabr2wrote on 10.09.2017:[10.0] "I haven't really watched much of Jumbo's work in his prime. I know he is considered by some to be the best worker in Japan in the 80s. From what I have seen of his work I can believe that statement. Jumbo helped to create the Kings Road style of wrestling in AJPW in the late 80s and early 90s which led to the greatest period of in-ring wrestling ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Blood Pumpwrote on 29.03.2017:[10.0] "Would it be a stretch to call him the Ric Flair of Japan? To me Tsuruta is the most important wrestler in the history of AJPW, surpassing even Giant Baba. Without him Misawa might not have gotten as big as he did. He and Tenryu revolutionized what wrestling was with their faster paced bout near the end of the 80s, but even before then Tsuruta was an in ring genius, wrestling unsung classics with Ric Flair, having great bouts with the Funks and having a large set of forgotten masterpieces with Billy Robinson. His most famous work maybe in the 90s, but I'd argue hes always been worht watching no matter the era he wrestled in."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: DomoDaDudewrote on 26.12.2016:[10.0] "lol some of the recent comments are clearly from people who haven't seen a lot of Jumbo. How he didn't reach his full potential when he was an top star for nearly 3 decades? He is absolutely one of the greatest pro wrestlers of all time who molded the goats after him in Misawa, Kobashi, Kawada etc. Highly influential and left a huge mark on not only Japan but wrestling in general."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: ErycK24wrote on 31.08.2016:[7.0] "First of all, R. I. P Jumbo he was gone too soon. But that brings up another point he was great but we were never able to see his full potential because of his early death. He is a huge case of what could have been like many other men in this industry that were taken too soon from us."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: TrevPuroFanwrote on 17.04.2016:[10.0] "Jumbo was the absolute MAN! This guy basically already was putting on 5 star classics a year into his career, and he's been doing so till the early 90's. His charisma was off the charts as well. Easily one of the best wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: eldenaaaaawrote on 02.09.2014:[10.0] "Only a few people outside of hardcore puro fans know about him, but he is not only the best Japanese wrestler of all time, he's arguably the best wrestler ever. Trained by Dory Funk, he was capable of going against top names like Jack Brisco and Harley Race and matching them spot for spot while learning a lot too. By the end of the 70s, some were calling him the best wrestler on earth already. One of his best feuds was against a recently-maskless Mitsuharu Misawa, in a passing of the torch of sorts, as well as several crackers against Genichiro Tenryu. Even after twenty-plus years of wrestling, he actually kept getting better and better until his retirement and eventual death."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: yanuswrote on 05.01.2014:[10.0] "Great worker, easily the best japanese wrestler in the 80's and early 90's, maybe event the best in the world. Brilliant crowd control, but also selling and impactful offense. What is shocking is how good he was, considering he was such a huge guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: RoyLucierwrote on 17.12.2013:"Best wrestler in the history of puroresu, bar none. He was the complete package. When you look up the word "strong style" in the dictionary, you should see his picture. He could go 60 minutes without losing his breath. A must see!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Sir Vida Loca IIIwrote on 10.07.2013:[8.0] "Diese Legende hat für viele die "berühmte Tür geöffnet" und war auch im Ring einer der besten seiner Zeit. Leider ist auch er viel zu jung verstorben, seine Legende aber lebt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Lecterwrote on 05.06.2013:[10.0] "JAMUPINGU NIIIIIII~! Jumbo ruled. Great matches all over the place."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Kenshin Uesugiwrote on 19.02.2013:[10.0] "Wahrlich ein wegweisender Wrestler,  mit einem für damalige Zeit schnellen Tempo als Heavyweight, der einen perfekter Sinn dafür hatte wie man spannende Matches aufbaut. Eben ein Pionier den wohl gar nicht genug dafür loben kann so schnell und zeitig die nächst Generation ins Rampenlicht gezogen zu haben. Und sie auch dementsprechend aufbaut, das gilt für Misawa, Taue, Kobashi und Kawada. Auch hatte er im Gegensatz zu einigen Behauptung, Charisma. Das lag aber mehr mit seinem ganzen Auftreten zusammen und wirkt auch nur wenn man es sehen wollte, schon allein die Mimik göttlich. Vielleicht der Größte seiner Generation. Und jetzt ALLE: ~OH! OH! OH! ~"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Leonewrote on 11.02.2013:[10.0] "When we think of who the best Japanese wrestler was in the '70s, 80s, and even the early 90s, several well known names might come up.  But the fact is, the best one was Jumbo Tsuruta.  As a former amateur wrestler who represented Japan in the 1972 Olympics in Munich, Germany - Jumbo was unlike any Japanese wrestler around in his day.  He was a tremendous size for a Japanese man, and the only other Japanese wrestler physically bigger than him was Giant Baba.  To go along with his size, he was incredibly strong.  He had the technical skill to match the likes of Dory Funk Jr & Jack Brisco in the ring, and demonstrated enough agility to perform very high dropkicks.  His storytelling and psychology were rarely matched, even to this day, and his charisma was strong enough that he was even cheered in the USA when wrestling their home talent.  By his late 30s/early 40s, he was putting on some of the best matches in the world at the time, which included his feuds against the likes of Genichiro Tenyru and a young, almost ready for the main event, Mitsuharu Misawa, who he symbolically pasted the torch to.  A fantastic singles wrestler and tag team wrestler with 1 of the best power bombs and backdrops ever, who would be just as good in this era as he was in his own."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Fighter Daronwrote on 29.01.2012:[10.0] "One of the bests ever, no excuse to not loving him. Charisma, psychology and athleticism."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: MaikBaaderwrote on 16.07.2011:[10.0] "Ein wahrer Heavyweight, ein wahrer Champion. Das war Jumbo! Im Ring war er wirklich spitze, aber nicht nur sein Moveset war gut, sondern auch seine Psychologie. Unglaublich guter Storyerzähler, der glaubwürdig sellte und erst recht glaubwürdig zuschlägte.  Ist mein Lieblingsheavyweight zusammen mit Misawa, Kobashi und Kawada. War außerdem noch der Wegbereiter für die neuen Stars. Machte aus Misawa, Kawada, Kobashi und Taue in seinen Schlachten zu einem richtigen Star!  OH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: RickRollwrote on 17.04.2010:[10.0] "Einer der besten In Ring Performer allerzeiten. Mit der glaubwürdigste Heavyweight und Triple Crown Champ allerzeiten. Tsuruta war einfach große klasse und dank ihm hat die neue "Ära" von All Japan begonnen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Obermackerwrote on 11.03.2010:[8.0] "Seine Kämpfe waren jetzt nicht so der Bringer, aber als wichtiger Champion in Japan und Nordamerika ist doch eine 8 gerechtfertigt. Charisma war früher nie die Stärke japanischer Wrestler. ;)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Mick Funkwrote on 02.10.2009:[10.0] "Massiger, großer Wrestler, der dennoch schnell und agil im Ring war und jede Aktion sehr glaubhaft rüberbringen konnte. In seiner Gewichtsklasse geht es nicht viel besser."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: FiveStarwrote on 15.06.2009:[9.0] "Der Gründungsvater des modernen Kings Road Pro-Wrestling und der Vorreiter der Super Generation. Er hat Misawa, Kobashi und Co. zu den Stars gemacht, die sie heute sind. Seine Six-Man Tag Matches mit und gegen die Four Corners of Heaven sind unvergessen, genauso wie seine Matches gegen Misawa, in denen er ihn über nacht zum Superstar gemacht hat - Jumbo, we miss you~!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Eddiewrote on 02.06.2009:[10.0] "Er definiert das, was ein Old-School Heel ist, einfach genial anzusehen und seine Erfolge sprechen Bände, 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Verbecwrote on 03.06.2008:[10.0] "Ohne jede Frage, der beste Wrestler aller Zeiten. Oh~!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[10.0] "Einer der besten und größten Wrestler ever. Er hatte keinen unerheblichen Anteil daran, dass die Himmelssäulen der 90er überhaupt diesen Status erlangten. Und er selbst war auch ein Meister seines Fachs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Pulpulwrote on 31.03.2008:[10.0] "Einer der wichtigsten Stars des Puroresu. Geniales Auftreten, fantastische Kämpfe, Jumbo war nicht nur körperlich einer der Größten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: LexLuger4everwrote on 26.03.2008:[10.0] "Eine der frühen Legenden in Japan! Der Wegbereiter für die Stars von heute, sei es Kawada, Misawa, Kobashi etc. Wer weiß, wo das japanische Wrestling heute ohne ihn stünde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Rob the bobwrote on 06.01.2008:[10.0] "Eine Legende. Weniger als 10 sind völlig unangebracht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: SternessDustOmegawrote on 05.12.2007:[10.0] "Alles andere als die volle Punktzahl währe hier nicht gerechtfertigt. Ein wahrhaft großartiger Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Rancorwrote on 10.07.2007:[10.0] "Absolute Legende des Puroresu. Eine andere Wertung kommt da nicht in Frage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Hangmanroxwrote on 30.01.2025:[10.0] "Okada is incredible. Everything he does has purpose and he understands ring psychology more than most. Super athletic and can make anyone look like a million bucks."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: WillOspreaywrote on 23.01.2025:[9.0] "the only complaint I have is that he doesn't give more in regular tv matches, but I understand, he saves his all for big matches, like for his match at world's end against Will Ospreay Kyle Fletcher. all i gotta say is this man is a living legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Anas Kingwrote on 20.01.2025:[9.0] "Honestly, there isn't much to say about him. What a talent this man is. One of my fav indy wrestlers of all time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: RantingRingGeneralwrote on 20.01.2025:[7.0] "He did better in Japan, and it's clear he went to AEW just for a retirement check, which is licit. He still brings something to the game, but you can actually see the decline. I'm curious if they're gonna take him off the title scene, and still having him on TV."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Jona5Holt on Xwrote on 18.01.2025:[10.0] "Simply one of the best of all time, changed the wrestling world with his companions during his time in New Japan, blessed to have been able to watch his career and continue to watch it. Gotta love the rainmaker"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Dkexwrote on 04.01.2025:[10.0] "Auch wenn sein AEW Run ihm zum größeren Teil nicht gerecht wurde bisher, er ist einer der besten, wenn nicht sogar der beste Wrestler der Welt. Dazu hat er eine unfassbare Ausstrahlung, sowohl In-Ring, als auch außerhalb. Die Sprachbarriere schadet ihm weniger als Anderen, ein bisschen schwerer ist es für ihn natürlich trotzdem."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: FishHookEXEwrote on 30.12.2024:[10.0] "The best finishing sequence artist in the history of pro wrestling. The absolute best wrestler of the 2010s, no question. The modern day version of a Lou Thesz, Nick Bockwinkel, or Ric Flair. From the Rainmaker Shock and the following iconic statement match against Naito, to the legendary series against Omega, his final bow in the Tokyo Dome to now in AEW, one of the all time greatest to ever do it. The only real complaint you can give is that he's one of those guys that's so damn good that you sometimes get frustrated that he doesn't do more in lesser matches. Up there in the greatest of all time category for my money."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: LJAwesome 03wrote on 25.12.2024:[9.0] "Okada is one of if not the best wrestler in the world! His time in NJPW cemented his legacy as one of the greats just based off his size, presence, & star power he embodies able to put on any type of match with perfection! Since coming over to AEW, he's impressed me even simply of his personality truly becoming the quote of "born to be a comedian, forced to lock-in as the best pro wrestler" and he does it to a tee!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ItsAllAWorkAnywaywrote on 18.12.2024:[10.0] "Okada could've remained New Japan's Ace if he had chosen to. Yet instead, he's betting on himself to find success on the opposite side of the Pacific. He's got the size, skill, and gifts that any promoter would crave across the world, and he's got the proven track record of a main eventer to deliver high-intensity, high-emotion matches. It would be nice to see him given the same chance in AEW has he had in New Japan, but that's probably an eventuality anyway."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AceHagannwrote on 26.11.2024:[9.0] "An amazing performer all around. With his heel work being always on point. He has a knack for hitting a nerve on the audience. His in-ring work is just as amazing. Okada is not far from being a synonym to a good match."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SnappleQuartzwrote on 14.11.2024:"Kazuchika Okada is wrestling excellence defined. His timing, versatility, and ability to elevate any opponent make him elite. Okada blends psychology and athleticism to create pure, unforgettable matches."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheCrowwrote on 01.11.2024:"Ich kenne Okada nur von AEW. Da finde ich ihn absolut langweilig. Kein Charisma, die rainmaiker Clotheline ist für einen finisher langweilig und auch sonst beeindruckt mich da fast nichts. Der Dropkick ist gut, das wars aber irgendwie auch schon."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheNomadMagicianwrote on 20.10.2024:"Ich verfolge kein NJPW und kenne ihn daher bloß von AEW, wo er recht wenig gemacht hat. Er hat zwar den Look und er hat ein gewisses Charisma aber im Ring habe ich bis jetzt nichts gesehen was mich irgendwie beeindruckt hätte. Hoffe das ändert sich noch bei AEW, denn wen so viele 10/10 geben, muss da noch EINIGES kommen."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TreyHalowrote on 17.10.2024:[10.0] "One of the absolute greatest to ever step foot in New Japan and while this is obviously subjective, in my opinion is responsible for the greatest championship reign of all time, just a big match machine in his prime years and even now has shown he is still fully capable when he locks in, easily a 10/10 in my opinion and an absolute all-time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: UBVenuswrote on 12.10.2024:[10.0] "Kazuchika okada is actually a generational wrestler and anybody with a brain would never speak down on my glorious king"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SlapViperLLCwrote on 12.10.2024:[0.0] "I know Okada is a big part of people's wrestling fandom and maybe my opinion on him is a bit harsh but in all honesty I found The Rainmaker boring and uninspired in many matches I watched from him even when taking that stigma I had of him away from his matches. Watching his matches with people like Tanahashi, Omega, Ibushi, Naito, Ospreay, Shibata, etc. while I found some that I thought were good, some even great, even when touching myself up on the story of the match to better understand the context I never found myself being that emersed in the match. I can usually take away my opinion on a wrestler and try to understand them better to find myself better emersed in their matches like what happened when I first saw people like Eddie Kingston, Moka Miyamoto, Kenny Omega, Mercedes Mone, etc. I wasn't initially a fan of any of them but became a fan after looking at more of their work and better realizing their style. Something about his style never clicked, I don't know if its the pacing, the moves, the flow he goes at but I can never find myself loving his work like the level I loved other people around him at the time. It's the same with people like Misawa and Toyota as well, while I have matches of theirs I love I always found that the names around them did a much better job at making me invested in their matches. Not to say that I hate them either but they never clicked with me like many people around their era clicked with me. I know I had some very choice words about Okada, some harsher than others and maybe I can be a bit harsh on him, but overall I find myself coming off of his big matches feeling like he is missing something."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: browntheclownwrote on 11.10.2024:"One of the best wrestler of the past decade. He is really great in elevating his opponents as well. His recent run in AEW has also been quite fun to watch as his comedic side is being explored more."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Moose Nuggetwrote on 27.09.2024:[9.0] "I think Okada had a great run in Japan. I first saw him in TNA, and though he had a silly gimmick that was very early in his career. New Japan really caught on fire when he became a top star in the company. I'm not of fan of what they're doing with him in AEW, and I feel like wrestling strong style so long he decided to slow down right when he's getting his biggest exposure to American audiences. Part of my rating is considering a wrestler's longevity, and I don't think Okada is going to reach the heights he did in New Japan."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kai Kantewrote on 25.09.2024:[7.0] "Ich kann Okada nur nach meinen Gesichtspunkten beurteilen, welche nach den Vorschusslorbeeren durchaus ernüchternd ausfallen. Mit 90er Jahre Skillz, mittelmäßiger Ausstrahlung und einigen geschossenen Böcken hier und da, ist hier kein Legendenstatus für mich erkennbar. Ok, sein Dropkick ist wirklich schön anzusehen aber der Rest haut mich nicht aus den Latschen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: comiligiwrote on 24.09.2024:"[9] In my opinion, Okada's greatest strength is his ability to elevate his opponents. On paper, his moveset isn't super flashy, but it gives him the ability to be incredibly adaptable and versatile, and work off anything his opponent's bringing to him. Anyone who fought Okada probably had their best match, or one of their best matches, with him. The downside of this is that I do often go away from those big matches more impressed by Okada's opponent than by Okada himself, but he more than makes up for it with his consistency by comparison. In terms of character work he's one of the best ever; not many people can go from cocky heel to dominant and confident champion to babyface fighting from underneath to goofball, but Okada makes it look easy. Sure, some people are salty that we're not getting the five star bangers in AEW yet, but I think he's more than earned a bit of an easier run away from the very top of the card, especially considering how young he was when he first got into that position."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jsbortswrote on 08.09.2024:[10.0] "While so far his American wrestling history has been less inspired, he's had one of the best 10+ year runs of any wrestler ever. He has a smoothness that makes everything feel easy for him, he's capable of some genuinely impressive athletic feats for his size, one of the best dropkicks in the history of the business, and really understands how to build his character within matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AnthoTheKIDwrote on 30.08.2024:[9.0] "Kazuchika Okada is a great wrestler, delivering good handful of matches. His comedic side in All Elite Wrestling that can be a double-edged sword especially for those who watched him in New Japan but he's great doing it and I think he loves being that fun heel but behind that facade, everybody knows who he is.A truly great master of the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Joe907wrote on 28.07.2024:[10.0] "One of the greatest wrestlers ever. Okada has it ALL. He was THE guy for NJPW in their golden years. His moveset is very good. He's had a lot of legendary matches with Omega, Naito, Tanahashi, and Shibata. His IWGP run was one of the best in modern professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Wrest lingaddictionwrote on 02.07.2024:[9.0] "Five or so years ago I would've said there would've been maybe a handful of guys better than Okada. Now not so much, while still a good wrestler it's become increasingly clear he was only doing such good matches because he was and still is being carried to a good match. His moveset is highly repetitive and is becoming less and less impactful as time goes on. At this point in his career, he's relying on his name value alone because let's face it, he's past his prime and has been for a while now. Okada in 2016 through 2019 was the man. Now, he's a somewhat credible comedy character. Could he be bumped up to a 10 again? Possibly. But what ever they're having him do now isn't gonna do it."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: rgpickwrote on 19.06.2024:[10.0] "Quite simply one of the greatest wrestlers to ever have stepped into a ring. He was The Man in what was the greatest period for NJPW and the number of incredible matches speak for themselves. So far his run in AEW has shown he can adapt to a western TV audience as well, though he will forever be linked to NJPW. A wrestler that is every bit as good as the hype would lead you believe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MasteroftheMatchGuide99wrote on 04.05.2024:[10.0] "Without a doubt is a mainstream celebrity in his home country. Not only does Okada consistently give fans amazing matches, he's also been in ads, commercials, movies, TV shows, and news shows. In fact, last month I saw a Japanese advertisement that had Okada advertising wasabi KitKats. But, his wrestling is where you really see just how amazing he is. His 4 matches against Kenny Omega have been billed as best matches in both of their careers. Okada is even a hero to some non-Japanese fans who treat him almost like a folk hero, because his skill is on another level entirely. And now that he's in AEW, just how much MORE can we see? When he retires, he'll be a legend for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: BruceMarcos524wrote on 02.05.2024:[10.0] "Don't let my bias get you through that Kazuchika Okada IMO, is the best wrestler in the world today. A total package of a wrestler that can easily adapt to any styles of wrestling. One of the biggest prototypes and assets of NJPW and rightfully so. I couldn't think what the best matches are to be recommend because he has a lot of them, like the Britannica like of catalogue matches to watch. He had great rivalries with Hiroshi Tanahashi, in which according to fans and critics is the greatest wrestling feud of all time. Who else can't forget his slew of epic matches with Kenny Omega, in which I may considered the bar of all wrestling matches. He has a great in-ring psychology and the master of dramatic selling. His moves are very calculating and most of his hits timed perfectly, hence why most of his matches are visually appealing. His dropkick has the most beautiful visual I've ever witness as a wrestling fan. A true in-ring general that can even make Toru Yano's matches a 5-star like calibre. Sometimes, he can be a POS if he didn't get the things his way, in which is pretty dope for him. His move sets and his wrestling style are widely ranged, he can go Puroresu, Lucha Libre or American wrestling. Knowing that Okada is leaving NJPW, whichever promotion he is after are the luckiest promotion in the world as they acquire one of the biggest signings in wrestling history. A once in a generation talent in pro-wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Jeezuswrote on 23.04.2024:[10.0] "[5.00/5.00]: The greatest to ever do it, there's nothing much more to say except that he's the most perfect yet traditionalist pro-wrestler that perfects his craft whenever he's in the ring, seemingly even can make chicken shit to chicken soup (his feud with Bronson Reed). There's a reason NJPW has given him an entire decade dedicated to him with one of the most prestigious reigns in the mid-late 2010s: reliability. Others have probably said more in their in-depth reviews of the man and his rivalry with Omega, Tanahashi, and Naito, and I'd agree. Up there as the Greatest of all Time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: twojswrote on 22.04.2024:"Generational talent, sad to know most don't understand what we're watching before he retires. I love what he's doing right now as a Global Ambassador with The Elite."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: UltimoMutawrote on 22.04.2024:[10.0] "It took me a while to get it. It took me a while to embrace it. Okada is one of the greatest of all time. A pro wrestling machine; smooth, athletic, powerful, technical and the aura of a champion even if he's not holding a title. Best dropkick of all time and some of the greatest Match and rivalries we've ever seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: arisenbywrote on 17.04.2024:[10.0] "[9.8] No ifs, ands, or buts about it, even if I were to just look at his New Japan run, whenever Okada hangs it up, he is going to be firmly in the conversation for greatest of all time. Amazing presence, carries himself like the biggest deal on the planet, beautifully simple yet refined moveset, and is almost guaranteed to have the best match of the card on any event he's on. This dude was able to make the character of "having a mental breakdown and getting really into balloons after losing the heavyweight championship after a 2-year long superchampion reign where you broke most of that belt's records" work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TripleCrownwrote on 04.04.2024:[10.0] "Will go down as one of the best Japanese wrestlers of all time, a true living legend. That run he had as IWGP Heavyweight Champion from 16-18 was incredible, almost every match was just pure wrestling art. First time I had ever seen Okada was during his TNA days back in 2010 or something like that, honestly just saw him as another Japanese wrestler in the US, didn't think anything of it. Was so surprised to see how much he improved when he returned to NJPW. His first look back was quite... interesting, to say the least. Blonde eyebrows did not suit him, looked really weird, so I was happy to see he changed that very quickly. But man, the guy just grew and grew and grew into something larger than life. Not a fan of his move to AEW, I feel like he should've just stayed in Japan, but obviously he wants to take a different path and we've just gotta sit back and enjoy the ride. His days of being the best wrestler in the world are kind of beyond him now though, which is a little sad to say but I think that 16-18 run really took a lot out of him. He's still one of the best wrestlers alive today, but I don't think he's capable of being number 1 anymore. Looking forward to seeing what he can do in AEW, despite the fact I'm not overly excited about him being there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Willie 19200wrote on 03.04.2024:[10.0] "There isn't much else to say other than Kazuchika Okada is one of the greatest wrestler to ever step foot in the squared circle. At the rate he is going in he could be known as the greatest wrestler of all time, I only have one problem with him: He's kind of overused, and by that I mean, look how many Wrestle Kingdoms he's been a part of the main for event, I mean he's good I get it but I don't need him shoved down my throat. But besides that I think what he did in NJPW is amazing and I'm ready to see what AEW will have him do with Continental Championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Pigeon Scratchwrote on 26.03.2024:[10.0] "I'm unfortunately a little late to the party of Kazuchika Okada, finally starting to watch more wrestling in late 2023/early 2024. My first match of his was against Bryan Danielson at Wrestle Kingdom 18, which was the best match of the night, no argument. Afterwords, I finally watched his matches with Kenny Omega, and the one match with Shibata, and holy fucking shit. There is no wonder he was placed at the top of NJPW for the longest time. No wonder he is considered one of the best world title holders of that promotion. No wonder both WWE and AEW wanted him so badly the moment he was announced to leave NJPW. No wonder he takes up 3 of the top 5 highest rated matches on Cagematch. He is the top of the best wrestlers of the modern era, and one of the most important of all time, and he still has so much gas in the tank."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: benny5bellyswrote on 10.03.2024:[10.0] "He was the ace of New Japan for near enough 10 years for a reason. Been part of some of the greatest matches of all times. Carries himself to perfection except when he had a balloon fetish."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: danzitorockwrote on 09.02.2024:[10.0] "Okada is a wrestler that was placed at the top very suddenly and in an abrupt way, basically a gamble by Gedo, but it's also probably the best gamble of all time, he was born to shine. Maybe the biggest case of succeeded industry plant of all time, Okada came back from a somehow failed excursion at TNA with a brand new look, and a gimmick that many people thought it was too "americanized", and that he was all presentation and no ring skills, but immediately he won championships, had big matches, and beat legendary opponents. He also made rivals that he would have some of the most incredible matches of all time, and proved to everybody that he was the deal. His moveset is not incredibly revolutionary or impressive, but he does the simple things in the most amazing way imaginable, and absolutely can tell a good story inside a match, like few others in history. His moves may seem basic, but the way he threats them makes his matches look the most tense ones, and the ones that look the hardest to win. The rainmaker was born to be a top guy, and I'm only thankful for all the incredible moments he proportioned me all those years, he's undeniably one of the greatest wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: KEIwrote on 01.02.2024:[10.0] "Kazuchika Okada seems to be the best modern day professional wrestler. Okada is one of the greatest, if not the greatest wrestler of his generation. His matches with Kenny Omega in 2017 made me fall in love with NJPW. 10 out of 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: VictoriaDTwrote on 27.01.2024:[10.0] "It's been a while since I have watched a NJPW match (let alone an Okada match). But this guy lives in my head rent-free, when I think of the greatest wrestlers, he always comes to my mind. Just a top-tier worker, and to think he is only 36 and has the history is does is outstanding."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Grapefruit Juicewrote on 22.01.2024:[10.0] "From everything Ive seen of Okada, hes been absolutely incredible, I am not burned out like some people may be, I love how he carries himself and how he works. A truly incredible main event SuperStar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Toumiwrote on 18.01.2024:[10.0] "My favorite modern day wrestler, he carries himself so damn well and his presentation overall drew me in initially as this final boss or major threat for anyone opposing him. And then there is the matches he is in, which are commonly sone of the best shit i've seen. He has a formula in his matches that can work so well and even when he is not using that and playing someone else's game (For example Shibata) he can still thrive and even elevate the match. He is so damn good at what he does i love watching the Rainmaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: somerandommarkwrote on 13.01.2024:[10.0] "The greatest in-ring storyteller of this generation. Looking for a guy to sell his ass off and put the other guy over as a huge threat? Okada. Looking for a guy to kick the shit out of a lovable babyface (or young boy)? Okada. Looking for a wrestler with World Champion wrestling skills, look and charisma? Kazuchika fucking Okada. My GOAT"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: The Quick Manwrote on 13.01.2024:[9.0] "What can be said about Kazuchika Okada that hasn't been said by everyone and their mum over the past 11 years and counting? Ever since the infamous Rainmaker Shock of 2012, he has been a mainstay of the forefront of professional wrestling, including a two year title reign that many consider the best world title run in modern professional wrestling. And it's hard to argue!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AdachiGaming47wrote on 08.01.2024:[10.0] "In my honest opinion, the GOAT of pro wrestling. My love for wrestling was shot dead in 2019, only watched WWE at the time. Decided to branch off into other promotions, and stumbled upon Okada V Omega, WK11. I fell down a rabbithole of Okada matches, I watched every Omega match, Tanahashi, Ibushi, Shibata, and more. Okada reignited my love for pro wrestling, and I cannot give him a rating any less than a perfect 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: dulonicdaddywrote on 02.01.2024:[7.0] "A competent top guy that you want to see lose, and in that role he is stellar. However, enduring his many runs on top, in which he wrestles pretty much the same "methodical" 4/5ths of a match before a semi-exciting yet redundant 5th, is tired. Tanahashi was an Ace that you never wanted to see dethroned. The most exciting Okada has been (outside of his new bullying young boys schtick) was when he was usurping Tana."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Wrestling Foreverwrote on 17.12.2023:[10.0] "Ach Okada kann ich nur mögen. Er ist einfach nur fantastisch im Ring. Absolut sauber geführte Moves, tolle Chemie mit vielen Gegner. Wie Tanahashi ist er bei NJPW auch ein Granat für immer klasse Matches. Auch wenn er bei CHAOS ist, das Publikum liebt ihn. Man hört immer Okada Chants. Ein super Techniker und ein würdiger IWGP Heavyweight Champion. Edit 17.12.2023 2024 wird ein interessantes Kazuchika Jahr denn sein NJPW Vertrag läuft dann aus und er hat noch nicht verlängert. Es wird interessant sein wo geht er dann hin. Ansonst er ist längst eine NJPW Legende und einer erfolgreichsten NJPW Wrestler überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: GriffinXwrote on 08.12.2023:[10.0] "Okada is an excellent wrester. He was pushed to the top very early in his career and many would have cracked the pressure. The 1 flaw I see is his habit of spamming finishers. Example when he does the rain maker now it's not just the rain maker but several short arm clotheslines happen first often with several tomestones. Worse is the money clips which he often uses as a rest hold early in the bought and than goes back to as the finish"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Tacho24wrote on 06.12.2023:[10.0] "The GOAT in my opinion, i stopped watching wrestling for 3 years until i get a look at the Okada vs Omega at WK11, i returned to watch wrestling, this time NJPW, and Okada is just simply a legend of the sport, 90% of his singles matches are classics, everytime the world title is not on him it loses value, he is simply the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[10.0] "While some might be tired of how over pushed Kazuchika Okada is nowadays, don't let that cause you to forget how amazing of a performer he is and why he is NJPW's top guy for so many years. From 2012-2019, Kazuchika Okada was build different, often having match of the year candidates every year with Hiroshi Tanahashi, Kenny Omega, Katsuyori Shibata, Kota Ibushi, Shinsuke Nakamura, Tomohiro Ishii, Minoru Suzuki, Will Ospreay, Tetsuya Naito, and so many more to name, he can hang with the best no matter who you throw at him. You watch Kazuchika Okada compete, and you can tell he's a top guy, no promoter would be foolish enough to not book him as the star of their promotion, because of how good he is. As a wrestler, he's amazing all around, possibly the best dropkick in the business, the Rainmaker is one of the best finishers of all time, incredible elbow drop, very solid in the ring, great execution, everything he does looks believable and painful, sells & bumps like crazy, durability is off the charts, cardio is in remarkable, incredible psychology and storytelling, he's a perfect wrestler. His character work as "The Rainmaker" is incredible, carries himself like a star and has godly levels of charisma, has an amazing aura and presence to him, you can just sense he's a big deal. Overall, while he may be overpushed, it's hard to not get why he is, since he's an amazing athlete and is a dependable hand for NJPW, always able to put on classics no matter who he faces, he could possibly surpass many of the greats when he retires. Remember, he's only 36 (as I'm writing this) now, imagine what he'd be capable of in his 40s, he's got a lot of years ahead of him as long as injuries don't get in the way. He's so good, WWE (reportedly) wants him and are trying their hardest to convince him to sign."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ECWCWWEAEWwrote on 13.11.2023:[9.0] "I cant fully explain why I cant give Okada a perfect 10... he's just.. not always reached me. He's not perfect, his personality can be really lackluster sometimes.. his current "I hate these children gunning for my spot" is easily his best, but sometimes he comes off like he's kind of just tired or bored or doesn't want to be where he is. He's fantastic across the board and yet the idea of calling him a top 10 great doesn't sit right with me.. not sure why, he's not remotely my favorite Japanese wrestler, and neither Tanahashi, Im more in favor of calling Shinuske or Suzuki the GOATS for their eras, and right now my all time fave in New Japan is Shingo Takagi, but Okada is undoubtedly there. Maybe I need to just rewatch some matches. But when he's great he's great, but he still has some low points"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: The Marvelous Joewrote on 17.10.2023:"Never knew what the big deal with this guy was back then. He looks like a star, but his move sets look pretty basic. Then I actually watch his matches and I got to say.... he delivers. Now, I can see why he's not only big in Japan, but in the world. His match against Omega, Shibata, and others made me a fan of his. A tad overrated, sure, but I don't care."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: KENTAfanwrote on 15.10.2023:[9.0] "Don't get me wrong, Okada is an incredible wrestler, but I do think that he's just a tad overrated. He can hang with anyone in the world, but usually, in the many classic matches he's had, his opponents seem to come across as the stars just a bit more than him (Omega, Ospreay, Naito, Shibata, Danielson). He also peaked back in 2016-2018 and just hasn't seemed quite as good as he was back then in recent years."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: CorpusSkiptotelicumwrote on 03.10.2023:[9.0] "Okada is a strange wrestler.. The Great Catalyst I like to call him, as he's someone that adapts to his opponents style and helps them elevate that to the highest degree possible; workrate epics with Omega, storytelling masterclasses with Tanahashi, being the final boss to plucky wrestlers like Naito and Ishii and more. There's a reason so many have their best matches with him, he's like the perfect canvas for them to paint that picture. That's the thing however, though it may sound strage, without that he's not particularly interesting by himself. As the years have gone by and he's gone up against everyone on the njpw roster, we've pretty much seen everything he can do. There is hope though as his work as a cranky veteran antagonising the younger generation is the most interesting he's been in years. But that will too run its course, and this probably sounds like blasphemy, but I'd love to see what he can do outside njpw full time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Innercelphwrote on 19.08.2023:[10.0] "Best wrestler of the last decade, not quite at his peak anymore but still an S-tier performer. His trilogy/quadrilogy with Kenny Omega remains my favourite rivalry of all time, and his legendary two-year reign as IWGP Heavyweight champion from June 2016 to June 2018 helped anchor my interest in NJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Lalo Camposwrote on 16.08.2023:[9.0] "One of the best in the history of New Japan Pro Wrestling and Puroresu in general, but in my opinion, he is not the absolute best wrestler in any kind. His matches with Tanahashi, Styles, Omega, Naito and others are the stuff of legend, the second best IWGP Heavyweight Champion in my books."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: BlueBrandwrote on 12.08.2023:[10.0] "For me over the past decade few wrestlers have continued to shine at the peak of the wrestling industry as brightly as Kazuchika Okada. If I had to sum up Okada's wrestling style in one word it would be versatile. His in-ring technique seamlessly blends power, agility, and technical prowess which enables him to work great with any wrestlers that he steps into the ring with, with his opponents consistently finding themselves producing some of the best matches of their careers when facing him. His pacing, storytelling and call backs within matches are second to only Kenny Omega in this day and age. Okada's legacy was built off of the back of his iconic feuds against some of the industry's greatest legends. I'd have to specifically call out his longest rivalry against Hiroshi Tanahashi, a feud that symbolized a passing of the torch from the ace of New Japan Pro-Wrestling's past to its future. Their rivalry and matches elevated both wrestlers to new heights, elevated the entire NJPW company bringing it back to prominence and in my opinion elevated professional wrestling as an art form. His other historic rivalry was with Kenny Omega, the fights between these two broke the limits and redefined what wrestling matches can be, pushing the boundaries of physicality and storytelling. All four of their legendary matches have earned universal acclaim which elevated both men on the world stage. While he has had many other incredible matches and rivalries, these two rivalries in particular really put him on the top of the modern wrestling landscape that very few will ever be able to get to."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: mooerwrote on 10.08.2023:[10.0] "Although there are many complaints about Okada being a stale headliner in New Japan, I still consider pretty much all his singles matches must watch and think that he carries himself with a level of poise that few wrestlers do. His match style is slower and less flashy than some of his contemporaries, but by and large I enjoy the slow openings as a way to pace yourself as a viewer for these longer matches. He's had as many great matches as anyone, is one of the best champions in wrestling history and in 2023 has been adding new facets to his character as an intolerant veteran fighting back younger, hungrier wrestlers, establishing them through his apparent disinterest as stars to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: bigredtalk89wrote on 24.07.2023:[7.0] "Yea, maybe I'm being a contrarian, but Meltzer over hyped him to the point where every time I watch a match of his I'm incredibly underwhelmed. The culture and language barrier doesn't help, but I feel like I'm talking to wine snobs whenever he's brought up, like if you don't think his matches are the best you just "don't understand""
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: John Brandowrote on 17.07.2023:[10.0] "Schon einer der besten Wrestler auf diesem Planeten, in den Top 3 wahrscheinlich und auf der östlichen Seite der Erde der Beste. Man kann schon sagen, dass ein Okada das Wrestling maßgeblich prägt und sich, ähnlich wie ein Omega, verewigt hat, auch durch die Schlachten mit eben Selbigem. Ich hoffe, dass er uns als Performer noch ein bisschen im Ring erhalten bleibt und uns weitere Schlachten beschert. In Japan würde ich ihn schon zu meinen Favorites zählen. Vielleicht sehen wir ihn nochmal in Nordamerika. Wer weiß!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: BigNiggleswrote on 26.06.2023:"[10.0] Truly the final boss of professional wrestling. Okadas fighting spirit, selling, charisma, and malleability is unmatched at least in todays era. He can put on a good match with anyone and his matches with Omega, Tanahashi, Ospreay, and the one with Shibata are some of the greatest matches one can view. Hes the GOAT for me."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Megastar309wrote on 22.06.2023:"Okada for me is quite simply the personification of a wrestling machine. Not watched him loads but seen his bouts with the likes of Kenny Omega & Jay White and everytime he impresses. No reliance on over-the-top spots or cringey gimmicks, the definition of the word wrestler."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Lunawrote on 14.06.2023:[10.0] "One of the greatest of all time. A special wrestler and personally one who truly broadened my horizons"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Frank Shooterwrote on 02.06.2023:[10.0] "The Wrestling God of the 2010's. You think about the best matches in the last decade and this guy has been in at least 90% of them. From his impecable In-Ring work to his stellar presentation and natural big star charisma, Okada is on the very top of the mountain."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Dancerwrote on 01.06.2023:[10.0] "Probably the best big match wrestler of all time. Him and Omega probably have 3 of the top 5 matches of all time. He's got a cool gimmick, but I can't speak for his promo ability because I don't speak Japanese, but it hardly matters. His in ring ability is top notch. I really only watch New Japan when he's in the main event."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: gargoylesmainwrote on 26.05.2023:[10.0] "Okada has been in the game a long time, but is showing new character work and branching out a bit lately, which was very needed and a sign of a top talent that can pivot when his run at the top starts getting stale. Jerk Okada is a glory to see, after years of having him as the top babyface. He is a goofball at heart, and yet a master in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: PepsiManwrote on 15.05.2023:[7.0] "A absolute athlete but I hate the fact that he's still on top and he really should have dropped the IWGP World Heavyweight Champion to Zack Sabre Jr at Hyper Battle and at the time of writing he's still champion and putting on good matches but the booking is still in 2017 yet it really shouldn't. If he had dropped it to Ospreay or Sabre Jr I would rate him higher but he's getting stale."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Erik1031wrote on 28.04.2023:[10.0] "What else could be said about this man that hasn't been said. He's one of the greatest stars NJPW has ever had. The company put all their eggs in a basket when they pushed him to the World title in 2012 and they never looked back. He's been the ace of one of their best eras, legendary feuds with Tanahashi & Omega and he's put on classics with just about every major star in the company for the last decade. He could retire tomorrow and go down in history. At age 35 still has so much to give. A true generational talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: YourKingMobwrote on 20.04.2023:[10.0] "I starting just doing a ranking of the best pro wrestlers in NJPW over the years and as far as performance in the ring, he's better than Hashimoto, Tanahashi or even Nakamura! I strain to think of someone better than him going back a long time, save for Shibata in the last 35 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: The Sick Lebowskiwrote on 12.04.2023:[6.0] "Sorry, aber ich kann die Faszination um ihn nicht verstehen. Ich gestehe ihm zu, ein richtig guter Seller zu sein, daher überhaupt eine mittelmäßige Bewertung. Offensiv kann er mich aber überhaupt nicht abholen, da finde ich ihn stinklangweilig. Kann aufgrund seines starken Sellings durchaus mit den richtigen Gegnern grandiose Matches auf die Beine stellen, aber dafür sind meiner Meinung nach durchgehend größtenteils seine Gegner verantwortlich. Warum ausgerechnet er das absolute Ace bei New Japan ist, ist mir schleierhaft."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheOneAndOnlyCactuswrote on 30.03.2023:[9.0] "Quite frankly, he is not my favorite. But, I know that any list of the greatest Japanese wrestlers of all-time would feel empty without Okada being there somewhere. While his formulaic style for the main events can feel quite repetitive, there's a reason why he does it: it works. As a wrestler, Okada is one of the most naturally gifted wrestlers that I have ever seen. An athletic beast with a lot of tools in his arsenal and natural charisma, it's easy to see why he has been at the top of the card for a decade now."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: KKeanelwrote on 12.03.2023:[10.0] "Japanese circuit needed in their 2010s generation a guy who will be continuator of symbol of greatness after golden days of Four Pillars of Heaven from 90s and 2000s. And we got it. I think I don't have to explain why I appreciate his huge talent and influence on wrestling business. All-time great - and he still can show us something iconic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ChrisPrattAsMariowrote on 03.03.2023:[10.0] "Easily one of the best, if not the best, in-ring workers of all time. He's been considered that to me since 2014 but was solidified during his 2016-2018 run as champion. Okada has two of the best rivalries in wrestling history against Kenny and Tanahashi and will never fail to bring the best out of someone. My Favorite Match is when he faced Kenny Omega at Wrestle Kingdom 11"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Okaro143wrote on 21.02.2023:[10.0] "Okada is one of the best wrestler in the world and is on many fans and pundits' list of greatest wrestlers in pro wrestling. There are only a handful of wrestlers that could match his accomplishments. Many of his matches are among my favourite match of all time (Omega Vs Okada is #1). His fourth reign as IWGP Champion is the greatest reign(any championship reign at any promotion) in professional wrestling history. This guy is the G. O. A. T. of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: wrestlingreviewerwrote on 18.02.2023:[10.0] "The way I see it the greatest wrestler of all time With the greatest wrestling match of All time and the best title run of any champion. That's why he's the goat the goat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: tommyyy1714wrote on 17.02.2023:[6.0] "Crazy to me how someone with so many all-timers under their belt can also be so underwhelming and dull. His main event style hasn't changed since like 2017, his personality rarely shows any range or dimensions and more often than not, he's an unstoppable champion which becomes tiresome."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: amaiwrote on 19.01.2023:[10.0] "quite possibly the best of all time, although he did run through a bit of a dry spell from about 2020-2022 (i blame it on the state of NJPW as a whole tbh) its very hard to deny that this guy is the complete package"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Daigotsuwrote on 16.01.2023:[10.0] "Not much to say about Okada that hasn't already been said. He's an absolute star, one of the greatest of all time. Great look, great storyteller, and his physical gifts speak for themselves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Klabauterwrote on 14.01.2023:[10.0] "By far the best wrestler in the world today and maybe even all time! Can't give him any other rathing than a 10/10. Incredible career, too, from his times as as a Young Lion on excursion in TNA getting totally wasted by them to returning and claiming the world title in one of the biggest upsets in a long, long time. And after that he only got stronger and better becoming the personification of his promotion, a promotion that presents him as the topstar he is. Many topstar in the pro wrestling world lack the trust and backing of the higher ups, but not Okada, which gives him the opportunity to not only be the best, but to show it on a regular basis. He also holds so many records and incredible stats. As of today (14.01.2023) it has been 4028 days since Okada returned from excursion on 04.01.2012; he held the top championship of NJPW (IWGP Heavyweight and IWGP World Heavyweight Championship respectively) for 1959 of those days! That's ~48% of the time!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: nWo-Joshi-Guywrote on 12.01.2023:[10.0] "Awesome look/gimmick. Amazing move-set. One of the greatest wrestlers of this or any generation. Involved in many of the best matches of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: benh2wrote on 12.01.2023:[10.0] "Pretty much the prototype for the modern wrestler. A great look, decent charisma and an all-round great worker. Sure, there are plenty of others that are far more flashy than he is but he knows how to put together an entire match (or even series) rather than just a sequence. The only issue I have is that he's give birth to the NJPW big match formula that the company now thinks all main events need to adhere to and most others can't pull it off. But all big Okada matches are sure-fire hits."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ISimon1912wrote on 31.12.2022:[10.0] "One of my favorite wrestlers ever, the guy who made me open my eyes outside the American wrestling bubble thanks to the (perfect) series against Omega in 2017, and had probably the best year a wrestler can have, one of the GOATs of our sport"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MainEventMasterwrote on 09.12.2022:[10.0] "One of the greatest ever, he just screams "main eventer" with his presence, not to mention he is an amazing wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: crs285wrote on 28.11.2022:[10.0] "Crazy that TNA messed up Okada when he was there. Okada today is truly outstanding. He has the crowds eating out of the palm of his hand every night. Charismatic guy. In the ring his psychology and how he structures his matches are second to none."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Enriquepollazzowrote on 27.11.2022:[10.0] "Only an idiot would give Okada anything less than a 10. I would like to know the brain damage that would cause a WRESTLING fan not to enjoy Okadas best matches. If those matches are among the best ever (and they are) than he's a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Vukowrote on 24.11.2022:[7.0] "Yeah I know my rating for Okada is low. I just can't watch his matchs now because this is so foreseeable that in a match, he will do the same things to win (being destroy but okay just one Rainmaker and bye). I mean if you look at the last G1, his last match of the tournament are foreseeable because NJPW books him like a god who just need one Rainmaker when Lance Archer litterally do all of this special move but just 2."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Mcbolskywrote on 22.11.2022:[9.0] "Just like Tanahashi, I understand that he is one of the all time greats but he is very repetitive. Couple dropkicks from the top rope, couple tombstones, and a couple lariats and rinse and repeat. He has a great look and is an excellent representative for NJPW but I just don't get it."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jonsnoewrote on 31.10.2022:[10.0] "One of the best Japanese pro-wrestlers of all time. His matches are amazing. His charisma and entrance feel like the Last Boss. 10/10 or 100/100."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Osiris For Allwrote on 29.08.2022:[10.0] "One of the best I've ever seen and currently my favourite. I don't know why but he consistently makes me cry with his matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: dnmtwrote on 18.08.2022:[7.0] "Kazuchika Okada is like if some advanced AI developed a perfect wrestler simulation that you could test different opponents against to assess their talent without having the simulation have any possible influence on them in the match. He is like the scientific control for NJPW. For better or worse, Okada does essentially the exact same act in every match and always meets his opponents precisely at *their* level. The clearest example I have of this is how Kaito Kiyomiya, of all people, got Okada to show more hate and fire in 2022 than pretty much any other Okada opponent this year, despite these two having zero history together other than some magazine trash talk. He has good matches with good wrestlers and bad matches with bad wrestlers. The people who love him will point to specific details of how he's changed his match structure or nuances he's added (the "wrist control" spot with Tanahashi being the first big example), but when you step back and look at that tiny detail in the larger scheme of what pro-wrestling can be, it's laughably unimportant. Virtually every big Okada match begins with ~5 minutes of perfunctory chain or mat-wrestling, followed by a few minutes of outside brawling and guardrail collisions, then a control segment where he hits his standard mid-match moves, and concludes with a series of reversals and counters and convoluted wrist-control segments to hit a Rainmaker. The most interesting thing he's done to change this up in the last few years is simply swapping in a new move for another - Landslide for the Tombstone, Emerald Flowsion for the Landslide - like a computer program trying new permutations of the same formula. His big matches (vs. Omega, for example) are the same as his standard formula, just filled in with more stuff in the appropriate spots. I never feel like he has any hatred for his opponents, never feel like he is thrown off his game, never feel like he is panicking, never feel he is trying something new. He just goes out there, runs OkadaWrestlingMatch.exe, gets his nearfalls, hits a Rainmaker and calls it a day. It looks cool as hell and can be fun but I virtually never feel that there is substance underneath it. Each match seems entirely perfunctory until he hits a counter Dropkick, which is precisely when his matches turn into the big move counter trading people love. But when you see it coming, and it keeps coming the same way it always does, what's the point? Maybe the best boring wrestler of all-time, but definitely not an all-time great in my book."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Tyler72wrote on 13.07.2022:[8.0] "Kazuchika Okada is a wrestling legend who's been a driving force behind some of the best of the best matches in NJPW and the world."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MccainJamenwrote on 02.07.2022:[10.0] "Okada is a once in a generation superstar who elevates anyone who faces him. Making him the megastar he is was one of the best decisions New japan has ever made."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: texasyoshwrote on 19.06.2022:[10.0] "Not sure what to say about Okada that hasn't been said already. He screams top guy. Fantastic mannerisms, great athleticism, and puts on some great matches. There's a reason why there's so much buzz about Okada potentially being on American television. Many people call him one of the best workers of all time, and I think there'll be a defined historiography about how Okada works, and perhaps Gedo's booking as a whole, but I feel it can fall a bit overdone and formulaic at times. Despite that, Okada is a supremely great wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SoaKaswrote on 27.05.2022:[10.0] "He is probably the best wrestler of this generation and he absolutely earned that title. Character, matches, storytelling and look are excellent and all speak top star. Okada is at the top and rightfully so."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheCoolGuywrote on 25.05.2022:[6.0] "Overrated matches that are nothing more than 30 minute spotfests. Im still gonna give him a solid rating because of he has had good matches and is a good wrestler with decent charisma. Not much more I have to say about him."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: DropingTheElbowwrote on 24.05.2022:"[10.0] Okada is the pinnacle of modern wrestling personified in one man, even with the accumulating injuries he managed to stay on top and deliver show after show."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Suzukigunwrote on 16.05.2022:[10.0] "The fact that someone recently gave this legend a 2 is hilarious. He's not one of my favorites, but anyone that knows wrestling understands how great he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: zags7000wrote on 03.05.2022:[10.0] "He's regarded as the best wrestler or at least in the top 3, for good reason. His classics with Omega helped NJPW grow worldwide and got me as a die hard fan and going back and watching the promotion. He's someone that has influenced many and everything about him screams star. Lots of charisma as well make him a once in a generation talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: PorcoRosso1wrote on 09.04.2022:[2.0] "If you ever want to know the current state of NJPW you just have to look at the Golden boy Okada; he has deteriorated into sludge these past couple of years beginning in 2018 and slowly getting worse year over year. I remember Okada from 2012-to 2017 as this great wrestler with few equals, and then I watch him now and am sadly reminded the years of NJPW main events have taken a toll on this poor guy. He simply can't have any other match than 30+ minutes of contrived kickouts of signature moves, long sequences that mean nothing because the match must reach a certain length, and an opening stanza with no bearing on the middle or end of the match. After a while, it gets tiresome to look at and with each match, Okada gets worse and worse. I look at a guy like Kenny who has moved on to Aew and has the freedom to construct his matches without adhering to the same tired formula and can safely say that since he's left the New Japan bloat I've enjoyed him so much more. Also Okada can't work when he's not on top of the card and I mean that in every sense of the word. He gets so lazy and uncaring and can't seem to bother to try something to get anyone invested, unlike Tanahashi that has worked great in the midcard even without the use of his knees. Okada stinks."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: rhys4peacewrote on 21.03.2022:[10.0] "The best wrestler in the world right now, and one of the best wrestlers in the entire televised history of the medium. Okada is the full package; incredible selling, a simple but fantastically honed moveset and a million dollar look with the charisma to match. This man elevates nearly every opponent he faces, getting good matches out of okay wrestlers, and getting the best matches you've ever seen out of the great ones. I firmly believe that by the time Okada hangs up his boots, he will have carved his position in the Mt Rushmore of professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: WorkrateOdysseywrote on 16.02.2022:[10.0] "For all the talk about Kazuchika Okada slowing down in recent years (most of it not accurate in the slightest), the truth remains that he's still having some of the best matches in the world during the early years of this fresh decade despite being the recipient of poor booking and opponents. If this is no longer his peak, it's a testament to how otherworldly his career has been. No doubt one of the best wrestlers of the 2010's and he's on a fast track to place among the all time greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: dinosaurjrwrote on 14.02.2022:[10.0] "Okada is very polarizing wrestler to some he is without a doubt a hof for his career however I don't feel like okada's had a standout year since 2018 and while he still shows gasps of greatness here and there okada has been the most overrated wrestler for at least 3 years now his body is is broken down I literally can't even remember a wrestler who broke down faster, but simultaneously I can't remember a wrestler who had more 30 minute matches of getting his shit pushed in. Okada's legacy will be kinder to him than father time is from 2012 to 2018 he was pretty much aj styles turned up to 11 sadly he hasn't (and probably won't) adapt to his physical decline and it's sad. Currently 3.5/10 Overall 9.5/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ZFIELDwrote on 10.02.2022:[6.0] "Okada's a tough one to point down. If I were rating him from roughly 2013 to 2017/2018 I would give him a 9 or a 10 even if some of his flaws have always been there. He's been a part of some of the best matches of the modern era. But if I were to only rate his work since then I would probably give him a 2 or a 3. Physically he has slowed down, wrestling so many 30 plus minute matches with the NJPW style will take its toll on someone. But the same has happened to guys like Tanahashi & Suzuki and they have adapted. Nowadays Okada is so lifeless he almost never shows any emotion anymore. The cocky pride and fire of his youth are gone and his matches have become boring slogs that suffer from the over-exposure of the NJPW main event formula. He is not totally without hope, his match with Naito a few years ago shows he can still find greatness but those instances are becoming less and less common."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ExcitingProWrestlin3wrote on 02.01.2022:[8.0] "When he's motivated he's one of the best there is. However the immense strain that's been put on his body by the booking of NJPW is very apparent. He's growing slower and he's only 34."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "A return to form for Okada, his Wrestle Kingdom match vs Ospreay was my MOTY for months. Then he developed a case of the EVIL blues. He had a pair of Shingo bouts that were great (NJ Cup and Dominion). He cranked things up in the G1 (vs Tanahashi) and hasn't shown as many signs of back problems. Okada still has the ace role locked down, and 2022 will probably be Okada-heavy. Hopefully the injuries heel up and he doens't get bogged down in EVIL or SANADA feuds."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Wright15wrote on 07.11.2021:[10.0] "One of the five best wrestlers of all time. As of 2021, I would only put Tanahashi, Thesz, Kobashi, and Flair on the same pedestal. And Okada is only just about to turn 34! No wrestler, not even Kobashi or Misawa, has had a greater number of legendary matches. I have tracked down and watched almost every incredible bout that was ever filmed, from 1980s Crush Gals AJW to Kiyoshi Tamura's height in RINGS, from Sammartino's feud with Killer Kowalski to the WALTER-Dragunov rivalry, from the American Dragon's peak in ROH to his renaissance in AEW. I have seen literally thousands of awesome matches. Kazuchika Okada was a participant in five of the six that I thought were the best. No wrestler in history comes close to his ability to build a match to a breathtaking climax. Okada is the greatest big match wrestler of all time, and he may become the greatest overall as he continues to build his legacy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MrIslamywrote on 31.10.2021:[10.0] "Kazuchika Okada is an amazing wrestler and could have 5-star matches with anything. He is one of the best workers of all time. His move set is especially good and his dropkicks are some of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: IBladeDailywrote on 21.10.2021:[9.0] "In-ring Okada is one of the greatest of all time. His matches with Omega, Shibata, Tanahashi, and many others have been undeniable classics. He holds himself as a star and, having seen him live, I can say that definitely comes across when he's in an arena. My only criticism of Okada is his inability to be interesting without a world title. He doesn't tell any stories aside from pursuing, winning, defending, and losing the title. If he's not champion, he seems directionless. It's Charlotte Flair syndrome. If your gimmick relies on you being the champion at all times, it needs some work."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Nobuo98wrote on 14.10.2021:[7.0] "Kazuchika Okada is an honours pupil, his performance and charisma are his strengths, but he has absolutely no imagination, all his matches follow the same pattern, moreover, this pattern only works in the main matches, outside the main events Okada seems completely mediocre"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SrHunterwrote on 09.10.2021:[10.0] "This guy is 29 years old, and didn't reach his peak yet, with this age he has three FREAKING 6 stars in 3 GOAT matches in my opinion, he is already one of the greatest of all time, this guy is absolutely great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Zerowrote on 25.09.2021:[6.0] "There's still nearly as much wrong with him in the ring as there is right if you analyze his actual skillset. Obviously his reputation is very high because of his list of matches that many have enjoyed over the years and it coming at a time when interest in the company was at an all time high. That said, when you dig deeper into his career, when he isn't protected by being the champion and given every opportunity to have great matches, you can see his terrible execution of submissions. You can see his massively repetitive match structures. You can see his various unsuccessful attempts at acclimating himself to different characters and places on the card. You can see all of the wasted time that pad out the beginning of even his "greatest" matches. He is the epitome of the wrestler who has all the tools and no toolbox. He has great physical abilities for the majority of his career, and for argument's sake if you break matches down into a last 5 minutes category he would be among the elite of wrestling history, you could also argue his issues with match structure and his general unwillingness to go beyond the same tired tropes as a consequence of his company moreso than himself, but even when in comparison to Tanahashi, his greatest rival he pales at these things. At the end of the day a 6 feels right for someone who has had his moments, but has largely been an albatross to the main event scene of his company throughout the years. I also look forward to seeing his return to the top for the first time in his career for 2022 as I would like to see what the now veteran version of the Rainmaker can do after a turbulent last two years that has seen his company in the greatest crisis it's been since the Rainmaker was born."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: DeathToZepedawrote on 08.09.2021:[10.0] "Okada deserves to be looked at as one of the best modern day performers anywhere and by the time he retires should be looked at as one of the best to ever do it. He's absolutely explosive in the ring and has put on too many classics to think of. He knows how to make his opponents look great while also knowing how to look like a super hero. The Rainmaker gimmick is a perfect interpretation of what a babyface should be and he rocks it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Thomas644wrote on 30.08.2021:[10.0] "He is the best In ring peformer of this Decade together with AJ Styles. he is amazing in the ring and a big Star in Japan. He is one of the Top guys in NJPW"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Lorenzo Ritaccowrote on 11.08.2021:[10.0] "Arguably the greatest wrestler of all time. Only Mitsuharu Misawa and Ric Flair can be compared to an athlete of his caliber. He's synonymous with the IWGP Heavyweight Championship, having won that title 5 times including his 720 days reign, the best championship reign in the modern era, perhaps second only to Bruno Sammartino's 2803 days reign. Okada has been the protagonist in many, many classics throughout the years, including what I consider the best match of all time against Ibushi (JAN. 4. 2020). Other outstanding matches include Katsuyori Shibata, with the latter ending his career on the highest level of intensity and performance, Hiroshi Tanahashi, and his three title's bouts with Kenny Omega. He wears the symbol of perfection par excellence, a white gear, with a coat that portrays nation's flags from around the world. He is the best in the world, after all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: FAZEDandCONFUSEDwrote on 11.08.2021:[10.0] "Okada had the unfortunate task of living up to Tanahashi and yet he's absolutely done it. That alone speaks to how incredible he is. Time will tell if he has the lasting power of quality Tanahashi has but I don't see any signs he won't."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: BrayanLaPrewrote on 06.07.2021:[10.0] "Arguably the best wrestler of his generation, Kazuchika Okada has elevated an entire company. New Japan Pro Wrestling obviously existed and thrived before him, but Okada has made it feel... Different. Even greater. There have been comparisons to countless greats, but I do believe Okada has created his own lane. IMO, the most adaptable wrestler on the planet? and arguably the best storyteller. A living legend who's barely in his prime, if he even is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Lyno123123wrote on 03.06.2021:[10.0] "(100/10)The man, The myth, The legend, And The Best wrestler on this planet earth. There is nothing much to say about him. He got the BEST charisma since Ric flair retired, The best IN RING psychology since Kenta kobashi Retired and Misawa passing away, And the best wrestler that ever held a HEAVYWEIGHT CHAMPIONSHIP belt . and NO ONE is even close. I could argue that Ishii and Hangman Page is my personal favorite wrestler. But they are not okada. He built to wrestle and he is better than any "Wrestling Genius" or any "Genetic Freak". He is the only man that already hit the GOAT status before he hit 30."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: BlakeFR37wrote on 02.06.2021:[10.0] "An excellent wrestler who helped Puroresu to be mainstream from my pov. Always a pleasure to see his matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jltwrote on 08.04.2021:[10.0] "One of the GOAT's in the business. He is amazing in the ring and should always be mentioned when people are talking about the legends of wrestling. It's probably too late for it now, but I do wish he would wrestle outside of Japan as I believe he can pull off a 3. 5* match MINIMUM with anybody if it's 1 vs 1 - as a lot of matches have been tag team recently."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Canadian117wrote on 31.03.2021:[10.0] "He's up there for the GOAT. What I wouldn't give to see him wrestle dream matches in North America. He's quite literally a god of wrestling and if any of you reading this haven't seen it, then go watch Kazuchika Okada vs Kenny Omega at Dominion 2018. Very widely considered to be the greatest wrestling match ever. Period."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MOXHAVOCwrote on 17.03.2021:[10.0] "One of the best wrestler in the world if not the best. He is perfect in Ring and literally can give a good match with any wrestler in this world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Bushidospirit22wrote on 16.03.2021:[10.0] "One of the all-time greats who accomplished so much at a young age. His record-setting pace has definitely caught up to him, and he has really struggled against his body the past couple years, but will occasionally remind why he's so highly regarded. Hopefully he recovers since he's still relatively young for a top level wrestler, and can continue to put on classics for the next decade plus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: mamboKENTAwrote on 18.02.2021:[10.0] "When it is all said and done, I sincerely believe that Kazuchika Okada will be remembered as the greatest wrestler of all time. We can probably excuse him for having a fairly weak 2019 and 2020, but when he's honed in, he's really unbeatable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: cal9099wrote on 11.02.2021:[10.0] "While 2020 wasn't his greatest year (after his absolutely stellar Wrestle Kingdom performances), Okada in my mind is still far and away the best modern wrestler there is and I believe will go down as perhaps THE best wrestler of all time if his body holds up. At 31 he's already had an amazing career, his quest for being the GOAT will now rely on his motivation and health."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: michmoose21wrote on 08.02.2021:[10.0] "A top 5 wrestler in the world. His 2020 may not have been the best, but he still had bangers with the likes of Naito, Ibushi, and Takagi. His WK match this year was fantastic with Ospreay. He also took part in some of the best matches ever against Omega."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ZSJGunWwrote on 03.02.2021:[10.0] "2020 was a not so good year for him. But he's still one of the best. Not only right now, but in history. He'll eventually come back at his max level, but he needs to get rid of the Money Clip lock. It just kills the momentum of the match most of the times he makes it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TOUGH AND HARDwrote on 30.01.2021:[8.0] "Okada Kazuchika is a man of two tales. On the one hand, he is a tremendous athlete with seemingly Olympian stamina, an incredible catalog of matches, has had 2 of the best years a wrestler has ever had (Dominion 2016 - Dominion 2018), and holds one of the most impressive list of accomplishments a professional wrestler could ever hope for. On the other hand, the first half of his (re-debuted) career was largely carried by both excellent opponents and Gedo as a top-of-the-line mouthpiece promoting him to the stars, and he often needs a passionate, vital opponent to bring out his best; he regularly leans on a frustratingly stale, repetitious, drawn-out match formula of outlasting his opponents (swelling his matches to irritating lengths), and has (with a couple exceptions) largely been coasting, post-Omega title loss. The company seems to want their golden goose to work conservatively. It all leaves an odd taste in the mouth, like some pop idol who's been constructed by an industry. Naturally, that's an unfair comparison, as--when Okada is at his best--there are few in the world that can keep up with him, and he's such a cardio-machine and an effective obstacle that he forces his opponents to work harder in the aim to overcome him. When Okada is 'on' he can be incredible. Unfortunately, post-2018, he is often churning out 30+ minute mind-numbing matches, and the company seems stubbornly against him pursuing other titles. I'm not merely arguing that he's a man with a high ceiling who's growing stale, I'm in the minority in asserting that his 2012-2016 stretch was largely overrated, and primarily carried by Tanahashi. Doing the math on this website alone, [as of the time of this post] 29 of his highest rated matches include Tanahashi. A world without Tanahashi or Omega is one in which Okada being spoken of in the "greatest" conversation is alot harder for me to stomach. If work-rate and 'match-potential', was the sole basis of a rating, Okada is a 9. 5 or 10, but Okada doesn't have the natural radiance, high levels of passion, and engaging, sympathetic magnetism I associate with the top-caliber names like Tanahashi and Kobashi (and statistically has half the popularity of the former, as a matter of record). He's no longer young or unproven enough to garner underdog sympathy. Spending a year or two in the mid-card, perhaps chasing the IC Title and helping develop other wrestlers would humanize him more. The problem with being Superman is that you become something unrelatable, and your victories lose catharsis. Okada is the most excellent, over-pushed, over-utilized, company-made champion I have ever seen, which is simultaneously an impressive feat and something that holds me back, personally. That said, he is a responsible company representative, has more than earned his spot, seems like a wonderful human being, and--on the best of days--is an absolute marvel of his craft."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: sanjurowrote on 28.01.2021:[10.0] "Admittedly his characterizations can be goofy and almost some sort of in-joke that only he gets when he's not in the title scene, but even so Okada is a once-a-generation talent, a worker with off-the-charts charisma and so great and innovative in the ring that New Japan reconfigured its entire approach to match booking around him. The latter causes some to call him overrated or limited, but that ignores how consistently he has pushed himself against a variety of opponents, especially during his IWGP reign which played like Big Match John Cena doing Bryan Danielson's 2006 ROH title run. He worked with fliers, brawlers, technical masters, juniors, and fellow all-rounder visionaries like Omega, to say nothing of how he and Tanahashi turned a multi-year feud into a consistently surprising series of five-star classics. The best big match worker since Flair, maybe of all time, and to think he's done all of this by 33 and has, barring catastrophic injury, so many years left in the tank only makes the case that he will go down as THE wrestler of his era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kungwrote on 26.01.2021:[10.0] "If you ask me, Okada is either the best or second-best wrestler of the 2010s. His run with the IWGP Heavyweight Title from 2016 to 2018 was the stuff of legends."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Euzwrote on 03.01.2021:[7.0] "The difference between Okada and let say Tanahashi is that that Tana could make a great match with anyone else on the planet, from Suwama to Wataru Inoue, while Okada only in main events and with those who are skilled with in-ring psychology and who could carry a whole match. In some of his fights Okada looks like he is lost in the fog and needs to repeat the same move couple of times which is very frustrating. Lenght of the match is not an excuse because he is considered as one of the best in the world. In my opinion he is at least one level below workers like Naito, Ibushi, Tanahashi, not to mention Kobashi or Kawada. He reached superstardom level way to soon and year 2020 showed that he is not outstanding anymore."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TsurutaOHwrote on 13.12.2020:[10.0] "Seeing Okada, I can't think of anything other than "the best wrestler of this generation". Totally flawless in practically every aspect, he is a prodigy, it is amazing how good he is, even today his fourth reign remains in everyone's memory, and it is not surprising that they refer to it when they think of him, it is really something spectacular, this year he is not doing so many things, much because of some injuries that he is still recovering, and I really hope they'll give him a break after Wrestle Kingdom, but without a doubt he is the best wrestler in the world, and will continue to be for a long time. A genius in the matter of storytelling and skills given directly by the gods, I can't look at him and not see the big star that he is printed on his forehead."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: medousewrote on 11.12.2020:[9.0] "With all respect, I think he is one of the most overrated wrestlers of the generation. Don't get me wrong. I think he is incredible wrestler, hard worker, great skillset, phenomenal gimmick, awesome promo cutter and I respect all of his accomplishments. However, during his IWGP championship title reign, he wrestled so many great wrestlers who in fact were better than him and he beat them all. His winning streak was starting to get ridiculous and that's what really made my think the way I think of him right now. Anyways, not the greatest wrestler on the planet, but definitely a great one."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JustAWrestlingFanwrote on 26.11.2020:[10.0] "He is extremely good at what he does, which is being a star. And right now he is THE star of NJPW. He has perfect in ring skills and the it factor. To have this guy ever be lower than main event would be a diservice to the guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kaswrote on 13.11.2020:[10.0] "He's been a top-level performer since 2012 and has had more great matches in these 8 years than most people manage in their whole career, and will in all likelihood continue to have great matches for about ten more years. He definitely has his problems. Pacing issues sometimes crop up in his title matches, stretching out matches longer than they perhaps should go on. His leg selling leaves a lot to be desired. He's not the best mat wrestler, in a company with workers like Ishii and Goto his strikes look bad in comparison, and his liberal use of the wrist-clutch lariat gets ridiculous sometimes. But that's where his issues stop. His general selling is incredible, whether that be exhaustion, bumping, neck selling, or arm selling. His move-set is fantastic, completely focusing on the head and neck of opponents with a finisher that has so many opportunities for counters and story-telling purposes. Above all else, his psychology and story-telling ability is excellent, showcased by his rivalries with Naito, Tanahashi, Omega, and even lesser rivals like Sanada and Suzuki. When all is said and done, Okada will likely be a candidate for the best wrestler of all time in many people's eyes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Residentwrote on 02.11.2020:[10.0] "One of the best wrestlers I have ever seen. He had the IWGP championship for a long time. But when I'd watch New Japan on AXS TV, he was always my favorite to watch. So much charisma, great on the mic, technically skilled, and a good brawler and high flyer. A complete wrestler and one of the best of all-time. Also, he has the best dropkick in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: rainmakerpunkwrote on 20.10.2020:[10.0] "The greatest pro wrestler in history, this guy is just too damn good, countless 5 star matches with a variation of opponents, not many people can take a prestigious title like the IWGP, the GOAT title, and elevate it the way he did, he elevated the title more than the title elevated him, and in his 2 year reign he had the greatest matches in history, he carried himself better than anybody I've ever seen and backed it up in the ring and still does big time, it's common for Okada to have the match of the year"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ElPolloLocowrote on 23.09.2020:[8.0] "He's damn great, but since last year I have been wondering how much Okada would be worth had he not main-evented against AJ Styles, Hiroshi Tanahashi, Tetsuya Naito etc but more modest opponents. Probably as much as Kento Mihara, meaning an 8 out of 10. With the NJPW roster becoming thinner and thinner he's been feuding with folks like Sanada, meaning not the huge talents he faced previously, and the problems started right away. That Sanada series was for me a true eye-opener about Okada, and not in a good way. This year he's been pretty lackluster but perhaps he's just taking it easy to slow down tear and wear on his body and fully recover from old injuries. Hopefully new big talent will come and we'll get the Okada of old back."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: hassan01wrote on 10.09.2020:[10.0] "Definitely the best wrestler in the world today. He is just 33 years old and has accomplished a lot . He most likely will accomplish much more accolades to his name in the years to come hopefully. Vey charismatic and a matchmaker . He steps in the ring and you know you are going to get a quality match . I am guessing he will at the very least that Okada will be tying the record for most IWGP heavyweight title reigns with Tanahashi. Wishing him nothing but luck for his remaining career for he has solidified himself as one of the best wrestlers in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: CyberVolteswrote on 29.08.2020:[7.0] "Okada is obviously good, but his accomplishments and skills as a wrestler have been vastly exaggerated for a long time now. If he's considered one of the greatest of all time nowadays, that's more of a legacy of Gedo's smart booking (to the upper card, that is) than Okada's individual merit. Add to that the fact that certain journalist, whose word is gospel to the fanbase, doesn't hide his favouritism over Okada, going as far as constantly breaking the rules of his own rating system in order to keep praising him (remember when getting 6 stars actually meant something? ), and there, a GOAT is made. To be fair, neither of those things would be enough to make Okada as well regarded as he is if he didn't have at least some substance to back it up. Okada strongest suit is his in-ring psychology: he is great at dictating the pacing of the match, adding manerisms and little touches that make it feel unique and, ultimately, he can have a good match with pretty much everybody. That said, I don't think he's off-the-charts in any of those individual things. Also, his moveset is nothing to write home about and neither is the way he applies those moves (except for that admittedly awesome dropkick he does). And while the way he can connect to the audience shouldn't be underestimated, I don't see him doing anything the true GOATs from the past didn't do much better. Maybe I've been spoiled by watching too many matches from 90s' All Japan and early NOAH. Maybe New Japan has already set the bar too high when it comes to "aces". But the so called passing of the torch to Okada, making the latter the "face" of the company, seems like a downgrade after what Tanahashi has brought to the table (in all fairness, I don't think there's anybody in the current NJPW roster who is up to the task). All in all, Okada is already regarded as one of the greatest to many fans worldwide and he continues to deliver good-to-great matches every time he enters the ring."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: znezaaljwrote on 27.08.2020:[10.0] "He is in my top 3 GOATs list no doubt. He probably has the highest star power that I have ever seen and his matches are just from another world. Even when you see him wrestle in the multi man tag team matches it makes them look special and important. He has a great promo work and he is one of the main reasons the IWGP HW Championship is as prestigious as it is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: realyoshihashiwrote on 12.07.2020:[9.0] "Not a 10 because he hasn't quite perfected the art of the Dropkick in the Lariato scale. Has great matches and is a great performer though"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: marexcelwrote on 05.07.2020:[10.0] "Kazuchika Okada ist einer der weniger Wrestler auf der Welt, bei denen jeder Gegner im Ring besser wird, wenn sie gemeinsam antreten. Benötigt ein Omega z. B. immer diese Klasse als Gegner, um richtig zu funktionieren, ist es bei Okada seine Präsenz, Ausstrahlung und oft überragende In-Ring-Arbeit, die das Match in höhere Sphären bringt. Sein Selling und Timing sind so gut, dass ich mich kaum an 4, 5 Momente erinnere, wo Sequenzen in seinen (großen) Matches konstruiert oder fake aussahen. Wäre ich des Japanischen mächtig und könnte seine Mikro-Arbeit beurteilen, wäre ich wohl endgültig ein Fanboy, aber auch so ist es er einfach Weltklasse und wohl noch lange nicht am Ende seiner Leistungsfähigkeit. Qualitätsgarantie und zurecht immer wieder ein Ankerpunkt in den NJPW-Stories. Dass das nah am Overpushing ist, mag man ihm aber nicht anlasten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Espio1332wrote on 20.04.2020:[10.0] "My favorite pro-wrestler of all time! There's not much that I could say that hasn't otherwise been said here regarding this man. All I could say is that while wrestlers like Tanahashi were what made me get interested in New Japan, Okada is who made me stay."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AndoCommandowrote on 30.03.2020:[10.0] "Even before he hit 30, Kazuchika Okada had already made a case for the greatest of all time. A key factor is NJPW's drastic increase in popularity over the last decade, Okada almost always delivers high-quality matches every time he steps foot in the ring. From 2015-2017, it was almost undeniable that he was the best in the world, bringing the best out of so many opponents. His psychology, selling and in-ring ability are all top-notch and has only grown in experience and confidence on the mic. His nonchalant and arrogance on the surface only conceal his deep passion and almost inhuman will to be New Japan's top star. He's not perfect and in the last couple years holds some recurring flaws in his craft, but as a character desiring to symbolise perfection, there might be none better. He holds the greatest world title reign, the most combined days as IWGP Champion and has been in the main event scene more than any of his contemporaries. Will very likely surpass the best ever of Japan (Kobashi, Tanahashi, Misawa, etc. ) if he hasn't already."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: kaantheviperwrote on 13.02.2020:[10.0] "He is one of the guys I can call GOAT. Amazing worker you can put him in any type of big match. He will not disappoint you. When he walks down to ring I see a god entering that squared circle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Bobbythreesixteenwrote on 06.01.2020:[10.0] "Okada ist ein unvergleichbarer Wrestler. Er hat alles was man braucht. Charismabolzen durch und durch. Und was seine Matches angeht steht keiner vor ihm. Er hat bewiesen das er eine Promotion halten kann. In der heutigen Zeit einen World Title für fast zwei Jahre zu halten ist an sich für mich undenkbar, Okada hat es aber möglich gemacht. Ich bin voll mit Lobeshymnen für ihn und kann gar nicht in Worte fassen wie Großartig er ist. Es gibt nur eine Hand voll Wrestler die ihm auf gleicher Ebene begegnen können. Ich hoffe das er diese Leistungen noch ein paar Jahre zeigen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Leon101wrote on 05.01.2020:[10.0] "Einer der besten Wrestler der je gelebt hat. Kann ein gutes Match mit jedem, aber auch wirklich jedem worken. Seine Dropkicks sind legendär, mit dem Rainmaker einen super Finisher. Einen Wrestler der mehr Starpower mitbringt habe ich noch nie gesehen, er ist der geborene ACE von NJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: 20SaiDa19wrote on 26.12.2019:[10.0] "The wrestler of the decade and considering his age, if he can stay healthy, quite possibly the greatest of all time by the time he is done. Ever since Okada was brought back from excursion, NJPW's popularity, not only in Japan, but elsewhere, has increased drastically and Okada is a key factor in that. His feud with Tanahashi is for me the best in-ring rivalry since Kobashi/Misawa, whereas his matches with Omega and Shibata are also widely considered all time greats, with his match against Shibata personally being my favourite of all time. Okada is now also comfortable on the mic, which wasn't always the case and he has shown a lot more personality recently, which was the only real criticism people had of him early on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: arrancarwrote on 26.12.2019:[10.0] "Ever since I saw this guy in 2015, I KNEW he was the best wrestler in the world, and year after year he vindicates that opinion more and more. What I love most about Okada is the passion he injects into his performances. His facial expressions are second to absolutely none. He can communicate a story perfectly with such simple visual acts. The arrogance and determination that this guy displays makes him so enthralling, and I can't help but cheer him on and even cry when he succeeds or fails. To claim that Okada "doesn't sell" reveals that you've only ever seen maybe 2 of his matches. His long-term limb selling has dramatically improved these last few year to the point that it is 'good' at worst, and his real-time general selling has been absolutely world-class going all the way back to his redebut in 2012. People often mistake his nonchalance for a lack of actual character, but that is actually PART of his character. He's a rich boy -- covered in gold, cash flying around as he enters, escorted everywhere by young boys to protect him, hand picked by Gedo, always posing and pulling off impressive moves easily, etc. But Okada is not apathetic, because when he is pushed by someone who is a real threat, he becomes scared and shocked, because his illusion is then broken. Then we see the real Okada -- eyes sharpened, nostrils flaring, teeth clenched, as if he takes on the facial structure of the devil himself. The truth is that Okada cares deeply about wrestling, and it is clear that winning is his greatest goal, so when he is made to display this secret of his, he turns into a monster that is determined to survive everything and destroy anyone. His pure wrestling skill is 10/10, second only to his story-telling. I have never felt so emotionally invested in a wrestler or any other character before, and so I truly believe him to be the greatest wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: VillainClubwrote on 23.12.2019:[10.0] "Der Beste Wrestler der Welt. Zudem ist er völlig verdient das ACE von NJ. Sein Entrance fühlt sich schon groß an und bei seinem Matches merkt man einfach, das er der Top Guy der Company ist. Er ist völlig zurecht IWGP Heavyweight Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Iceqwrote on 08.10.2019:[10.0] "Gerade der beste Wrestler der Welt. Schon seit 2012 Weltklasse und erst 31 Jahre alt. Wenn er so weiter macht, dann kann er sicherlich zu den besten Wrestler aller Zeiten gehören, wenn er das um ehrlich zu sein nicht schon bereits ist. Besonders seine Rivalitäten mit Tanahashi und Omega haben unzählige Klassiker produziert. Dazu ist er nicht nur In-Ring technisch Weltklasse sondern auch unfassbar charismatisch und sein Theme gehört auch zu meinen absoluten Lieblingen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Booker Cwrote on 03.10.2019:[10.0] "Okada ist für mich ohne Frage der zurzeit beste Wrestler der Welt. Im Gegensatz zu anderen sehr guten Wrestlern wie Johnny Gagarno, Adam Cole oder auch einen Will Ospreay fehlt aber beim nie die Substanz in den Matches. Der schmale Grad zwischen einer epischen Schlacht und einem reinen Spotfest gelingt ihm halt viel öfters."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Coop DEtatwrote on 09.09.2019:[7.0] "I would consider a higher rating if his work looked more realistic and less spotty. He is severely overrated, although I do have a high opinion of him regardless.  If the best in the world were grouped into one category, he would be just under that."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JEK 1991wrote on 09.09.2019:[10.0] "One of the very best Japanese wrestlers of all time. Is no the NJPW Champion! He was blessed and trained by some of the best Japanese wrestlers like Ultimo Dragon, Jushin Liger, Yuji Nagata and others."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: taabr2wrote on 31.08.2019:[10.0] "The best in-ring wrestler in the world today. Kazuchika Okada, much like Ric Flair back in his day, has the ability to work with pretty much every style of wrestling out there. His formula is pretty smart for a top guy as it can work as both heel or babyface and it even suits his character. If Okada needs to be the heel, he adds little subtleties to be more cocky in the ring, if Okada has to be the face he adjusts to give his opponent more shine to work on top to draw sympathy and yet it never fells out of place for Okada to switch. Also in an age where everyone does complex impressive moves, Okada is the opposite he performs simple moves impressively and yet still gets his moveset over, a true legend right there. As Ace Okada is currently leading NJPW to their most profitable period ever, so you can't deny that his push is working. Also thanks to the internet Okada is probably the most well known Japanese Ace outside of Japan. We have yet to see the end result of NJPW's push into America but Okada being on the forefront might make him one of the most important figures in wrestling histroy, we'll see about that though."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Pm Frankwrote on 27.08.2019:[10.0] "He is on another level . Maybe he is the best wrestler of this century ( I prefer Omega) he make njpw look prestigious"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheFrenchDisasterwrote on 19.08.2019:[10.0] "Actually, Kazuchika Okada is the best champion of all time and maybe the best wrestler in the world today. His rivalry with Tanahashi is like Steamboat-Flair or Austin-Rock, he always manage to have good matches. The NJPW was right to rely on him as the face of the company. Oh, and one of the best things about him is his presentation, the best announcement in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: UsualSuspectwrote on 16.08.2019:[10.0] "Greatest wrestler of all time. He always deliver great to fantastic one on one matches. Despite having a restricted moveset, he has impactful moves and he has the greatest dropkick in the buisness."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: VanguardWhowrote on 08.08.2019:[10.0] "There's very little to be said about Okada that isn't already being said constantly, but perhaps the most overlooked aspect of his brilliance is that, barring a good handful of crazier-than-normal bumps he's taken over the past year or two, his style is remarkably safe and consistent, especially for a top face in New Japan. The most essential parts of his moveset are barely taxing for his body, or the bodies of his opponents, at all; there's nothing to say he can't keep wrestling pretty much this exact style for another 10, 15, even 20 years at a push, with only very minor adjustments. Getting so over in NJPW with a style so geared towards longevity is perhaps his greatest accomplishment of all, and a testament to just how special of a wrestler he really is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[8.0] "The most overrated wrestler in the world right now. Don't get me wrong, I think he's good... but when talking about the best in the world right now? I don't think he should even be in that conversation. I think people see him through rose tinted glasses because he's constantly booked to have these epic "finisher-counter-kickout" type matches. I feel like he often looks like he's moving in molasses. I like his presentation & think he's good & appreciate him being a top guy in NJPW, but don't believe all the hype."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: NEVERoverweightChampionwrote on 01.07.2019:[10.0] "While he's maybe not the most athletic guy, the stiffest, the most technical or the absolute best in psychology or storytelling he's still definitely one of the best in all of these areas. Charismatic and goofy/funny, he learned to cut good promos and doesn't need Gedo anymore. To me his greatest quality is that he's simply the best major champion that you can have because he can work with everyone, still maintains his presence but makes sure that his opponent stays THE star of the match. He elevated the status of many wrestlers, wether they lost or not, and that's what makes a great champion. He can play many roles but he is perfect at being the final boss, the cocky and dominant champion. He's already a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Cow Manwrote on 20.05.2019:[10.0] "He works great as both a heel and face. His in ring skills are tremendous. He will certainly rank as one of the greatest to step into the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: My Bloody Doobwrote on 20.05.2019:[9.0] "Is Kazuchika Okada the greatest wrestler in the world right now? You ask everyone who regularly watches him, and an overwhelming majority would with sincerity say yes. It's hard to disagree with that sentiment because why shouldn't I agree? He's had many all time classics, can pull out great matches with zero effort and can even give shitty wrestlers probably their best match ever.. So why am I so inclined to still disagree? Mostly because of how much he rests on his laurels. There used to be a time where Okada matches were enjoyable from start to finish, but nowadays he has no problem with wasting your time in the first 10 minutes of his matches. It would be excusable if he knew how to actually grapple or even legitimately wrestle, but instead he's fine with headlocks and pointless tumbling around in the first half as long as the second half are full of counters and dramatic moves. I hate him so much for that because the second half of his matches tend to be incredible, AND he can bring out the best of his opponents. It doesn't help that he's gone through virtually the entire roster before 30 which also means his bump card is slowing down, but there still isn't an excuse in the context of just his matches. tl;dr I wish Okada would stop being such a lazy bastard."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: PuroresuLoverwrote on 13.05.2019:[10.0] "Kazuchika Okada is the very best in the world, he will be the Ace of NJPW for years! He has a complete package to be the GOAT, he has a good looking, a lot of charisma, great mic-skills, excellent in-ring skills, knows how to play a good babyface and a great heel. God, this guy's just amazing!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Garrettwrote on 09.05.2019:[10.0] "The wrestling god. Okada in his own right is a once in a century talent. When you're the longest reigning champion in the history of NJPW and has had some of the greatest matches in the history of pro wrestling with Omega and Tanahashi you can see why he is considered the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheGorgis309wrote on 21.03.2019:[10.0] "The absolute greatest wrestler in the world right now, perhaps with the exceptions of AJ Styles and Kenny Omega. Every move he delivers feels so precise and crisp and the man oozes style and charisma. A master between the ropes and will go down one day as one of the greats of his generation, and of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: zephyrwrote on 16.03.2019:[10.0] "Okada is, in my opinion, the embodiment of what it means to be a wrestling star. In my years of watching him I haven't seen him make so much as a single mistake. He exudes confidence and arrogance but does it in a way that makes him credible both as a face or a heel. Gonna go down in history as one of the all time greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Aurtletheturtlewrote on 04.03.2019:[10.0] "Ever since that fateful day on February 12th 2012, the legend of the Rainmaker has continued to grow and reach astronomical heights. Boasting unbelievable feuds and matches with Hiroshi Tanahashi, Kenny Omega, Tetsuya Naito, AJ Styles and so many more, Kazuchika Okada's star shines brighter than any other in Professional Wrestling today and it's due to Okada's dedication in his performances. Okada has shrouded himself in both the glory of gold and competition, becoming the longest ever reigning IWGP World Heavyweight Champion at over 1, 700 days as champion as well as having the most title defences in a single reign, a reign which many atest to being the Greatest Championship reign in professional wrestling history. All of this has proven why he is without a singular doubt the greatest wrestler in the world and also perhaps going to become the greatest of all-time. He proved all this before his 30th birthday. We have a bright future with the shining Rainmaker at the forefront and I am looking forward to every single moment. COME ON RAINMAKER!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kevin41182wrote on 14.02.2019:[10.0] "Okada is an extremely talented wrestler. He really embodies New Japan. Not only has he put on many 5 star matches but he also really helped raise the IWGP Heavyweight Championship to the level its regarded with today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: LandonRyanWyattwrote on 31.01.2019:[8.0] "Okada is a very good wrestler. I've very much enjoyed watching him over the past few years. This dude will one day be in every Hall of Fame he's eligible for."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AmericanNightmare96wrote on 17.01.2019:[10.0] "Okada hat sich in den letzten Jahren stark verbessert und durch seine epische 4-Matches-Serie gegen Kenny Omega bewiesen dass er zu den besten In-Ring Performern der Welt gehört."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Cibswrote on 16.01.2019:[7.0] "Okada has improved over the years, he is solid in the ring (terrible selling), although I have never seen him as that amazing wrestler that many say he is. The favoritism that exists towards New Japan has benefited him because his matches in general are the same, with a lot of pose and very boring initial minutes but exciting endings (even epic). In general he is very similar to Randy Orton but without so much hatred for the company in which he works."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: KINGwrote on 09.11.2018:[10.0] "Like a Randy Orton who improved instead of getting lazy, Okada's push to the moon paid off as New Japan discovered one of the most talented and charismatic performers of history, Okada is probably the guy with most classic matches in this decade, he always looks great with everyone, he also represents what NJPW wants as top guy, talented, good looking, charismatic, traditional but modern at the same time, every Japanese who would want to be a wrestler should look up to him, he's the best right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: RatingsMachinewrote on 14.10.2018:[10.0] "Kazuchika Okada is the best in the business. The only guy on his level, and they are both different enough that who you put ahead comes down to personal preference, is Hiroshi Tanahashi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Rasslin Ruleswrote on 07.10.2018:[10.0] "Meiner Meinung nach zurecht an der Spitze. Ich verstehe, dass manche auf Dauer leicht gelangweilt sind von ihm, allerdings trifft das bei mir gar nicht zu. Er ist ein wahrer Champion, der sich auf jeden Gegner einstellt und bei den großen Titelverteidigungen immer abliefert. Das gleiche gilt fürs G1. Er kann einfach alles im Ring, worked so sauber wie kaum einer und hat dazu schöne Trademark-Manöver(Rainmaker, Dropkick, Elbow-Drop). Im Selling für mich der weltweit beste und auch in Sachen Storytelling in der Weltelite. Außerdem schreit sein Look einfach nach Superstar. Er wird zusammen mit Naito, Omega usw. NJPW noch ganz groß machen. Ich bin echt froh seine Karriere miterleben zu können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Tomlou12wrote on 17.09.2018:[9.0] "One of the best workers out there, he's capable of having great matches with just about anybody and his rainmaker gimmick was one of the best around. While you may argue that his title rain went on too long you can't deny that it really legitimized him as a wrestler and made it feel all the more serious when he finally dropped the belt. Overall, a great wrestler that's great at working a crowd with an awesome finisher. What more can you ask for?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: KOR KOMBATwrote on 24.08.2018:[10.0] "The current ACE of NJPW doesn't fuck around. Tons of personality away from the ring and his interactions with other wrestlers over social media are hilarious. That's probably not what you want to see though. Okada has been bringing out the best in his opponents for years, even Fale has had a good match with him. This new unhinged Okada is goofy and I feel it's a much deserved break for the longest reigning IWGP champ ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: OrangeAidCrushwrote on 03.08.2018:[10.0] "What can you say about Kazuchika Okada that hasn't already been said? The only negative thing I can say about him is that he is so talented that he makes great wrestling seem effortless. You forget how amazing he is because of how consistently amazing he is.  He's absolutely incredible and and easily one of the greatest wrestlers of all-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: sign squadwrote on 24.07.2018:[10.0] "Es gibt nicht so viele, die mit so vielen Gegnern immer wieder unterschiedliche Matches haben können. Okada ist aktuell so derjenige, dessen Matches ich jemandem zeigen könnte, der kein Wrestlingfan ist, ohne mir Sorgen machen zu müssen, seine Matches wären irgendwie "albern"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: nwo4204lifewrote on 22.07.2018:[10.0] "It almost is unfair how good Okada is and that he is my age.. I can not even begin to imagine what Okada will be like in say 5 years. Already a record shatterer, a rain maker, and deserving of every accolade he has thus achieved. He paid his dues, working his way through the Young Lion's system. Go ahead and check out some footage of Okada's excursion in TNA, which was at the time partners with NJPW. It was right around that point in time when TNA was at its all time lowest, and right before the perception of professional wrestling outside of the WWE began to change. Already considered to be one of the all time greatest Japanese wrestlers of all time, considered by all who KNOW to be at least one of the top 5 wrestlers active today. Okada will be the kind of guy we tell our grandchildren about, and they just won't get it. will they?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Makai Clubwrote on 24.06.2018:[10.0] "When you think of the complete package, I think Okada. Wrestling, charisma, look, gimmick, ability to turn the crowd against him at anytime, both hateable and likable a switch of the light. Okada is no doubt one of the best wrestlers in the past 50 years. No one has gone on the run he has had, for the amount of time it took and not be a GOAT. His wrestling ability is impeccable. His entire moveset is set up to make the rainmaker, which can be considered weak, a killer move. Fantastic psychology. His crowd interactions are great, he can get the crowd marking out with a simple hand movement. His versatility it is great. His selling is fine, not great but bad either. Does have a tendency to no sell everything at the end though. He is truly on another level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SGKwrote on 17.06.2018:[10.0] "Kazuchika Okada is the most complete wrestler we've seen in the 21st century. He does not require flashy moves to entertain the audience. His moveset is well rounded and his in ring psychology is insanely good. His 4th title reign was one of the best in the history of pro wrestling, and we expect more from him in the years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: avagar44wrote on 12.06.2018:[8.0] "Okada is one of the best pro wrestlers today, he brings an aura of a big match, and has one of the best tittle reigns today, but he lacks in some aspects, first of all, he looks clumsy sometimes, his offensive (not all) doesn't look strong, his short term selling is very good, but further in the match is bad, so when he receives limb work, it doesn't matter for the match, I can rate his promo skills, but he has a good character, and he tends to be very very formulaic in his matches, almost all of them show the same patron, but, he can make those matches very very entertaiment, although they are the same, which is a very interesting characteristic, and can make look good any opponent, I only remember one boring Okada's match. He has in ring skills to improve, but he is young and have a lot of time to get better"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ohnoeswrote on 04.06.2018:[10.0] "Okada is one of the best wrestlers in the world today, if not the best. From 2013 onwards to today, he's excelled at every category, from storytelling, to pacing, to his ring-work, emoting, selling, and popping the crowd. His ring-work in particular is impressive, but even more so because none of it is particularly 'high-risk'; he's 30 as of this writing, and yet he could probably go another 15-20 years working his style. He'll adapt to his opponents and compliment their work while providing slight variations of his own so as not to become stale. And that's another one of his greatest traits: he's anything but greedy. It'd be so easy for him to showboat, yet people tend to talk a lot about how great his opponent was in most of his highest-rated matches. In the years he's been on top of NJPW, he's had plenty of memorable feuds and matches that should stand the test of time. Excellence in Okada matches are expected, and essentially always deliver. In my two decades of watching wrestling, he's currently my only five-star wrestler. There are only two slight complaints I have against him; one is that he's not always consistent about selling damage to his limbs done by his opponents. The other is that he hasn't quite connected with the crowd in the same way that certain aces or legends have. I have yet to hear a crowd chant 'O-ka-da' with the same extravagance as Misawa or Kobashi have had in their careers, although there's still plenty of time left to receive that honor."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Ranch DuBoiswrote on 20.05.2018:[10.0] "No wrestler in his generation deserves a 10 more than Kazuchika Okada, who has been the ace of NJPW not only during their resurgence in Japan but their expansion into the rest of the world. He is a wrestling chameleon, a fantastic champion that can highlight an opponent's strengths and get them over despite losing just by being in a match with him. His feuds with Omega, Tanahashi, & Naito are among the greatest of all time and are guaranteed bangers whenever they fight. Just a note, I consider Mitsuharu Misawa to be the greatest wrestler, ever. Okada hasn't surpassed him at all in my eyes, but when I compare a 30 year old Misawa to Okada now, it's clear to see how ridiculously far ahead Okada is. He will almost certainly retire as the greatest wrestler of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Gothic Bloodletterwrote on 12.05.2018:[10.0] "Kazuchika Okada is one of the greatest wrestlers of all time. Already, he is de facto the best in all parameters, and only the presence of such guys as Styles, Omega and Naito somehow make him a competition.  The greatness of Okada in the ring is a combination, an amazing hybrid of phenomenal talent, of enormous enthusiasm and a lot of experience. He is charismatic in his own way, he knows how to work with the public and cameras. The bright and unique texture of the gimmick gives all of us an incredible image, cutting into memory quickly and permanently.  His advancement fully justified. He not only puts his best on the ring every time, but also creates a remarkable media personality, speaking at various shows (not only Japanese, but also foreign ones). Love, or at least respect him and consider it equal to any of your favorite - the wrestlers like the Rainmaker are born only once in a hundred years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Adaskerrwrote on 11.05.2018:[10.0] "Gift from Wrestling Gods sent to Earth. Everything about this guy is just perfection. That? s how the face of the company should look like."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Viper99wrote on 06.05.2018:[10.0] "Ich war anfangs (12/13) kein Riesen Okada Fan und fand ihn sogar etwas Overrated! Inzwischen ist Okada auf Papier und rein Sachlich der beste Wrestler der Welt. Ich Persönlich mag Omega mehr, aber die Gott Matches am Laufenden Band sprechen einfach für Okada. Mit seinem Momentanen Title Run und mit Verteidigungen gegen Shibata, Suzuki, Naito, Marufuji, Sabre oder Tanahashi reiht er sich mit seinen 30 Jahren unter den besten Performern aller Zeiten ein. Unglaublicher Smarter Worker welcher Matches so gut Paced, aufbaut und jeden seiner Gegner wie Gold aussehen lässt. Es ist kein Zufall dass Okada in 2 meiner Liebsten Matches aller Zeiten steht (vs Shibata/ vs Omega)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: LrockBesnarwrote on 12.04.2018:[10.0] "Okada is still on his way without losing his excitement in the ring despite his full time work. He is very young and charismatic. Super talented and healthy. It may sound absurd to some people, but the only complaint i have about him is his unconcerned attitude in his matches. His facial expressions do not care much. I think he needs some more acting skills. He is able to flow like water in the ring but his characteristic features are very level. He seems a little nervous and shy to me. He has to develop himself in the direction of acting. My only wish about him also i hope that he will not suffer a injury that will harm his career. He is a man who is very serious about wrestling. Shibata was also getting serious but now he retired from wrestling for a little time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Izinwrote on 06.04.2018:[10.0] "(Review from 2014) YOUNG as HELL, works like someone with twice his experience, and has INSANE potential for the future. He has a great presence about him and has proven already to be a capable champion. Look to this guy to carry NJPW once he's ready for the next decade, even."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Sebastian Vwrote on 26.03.2018:[10.0] "Was soll man Okada anderes als 10 Punkte geben? Im Ring ist er wie Omega auch eigentlich mehr als 10 von 10. Dieser Mann liefert seit Jahren ein Weltklassematch nach dem Anderen ab und kann auch irgendwie aus jedem ein gutes Match rausholen. Er beherrscht die ganze Palette sowohl im Ring ( Technik, Strong Style, High Flying, Characterwork, Psychologie, Selling) als auch was die Rollenübernahme angeht (Face, Heel. Tweener). Zudem spielt beides bei ihm zusammen, was die Dynamik von Matches beeinflussen kann. In jeder Rolle ist er unglaublich charismatisch und fesselt die Leute vom Entrance an über teilweise ein stündige Matches hinweg. Auch hier glatte 10 von 10. Micwork kann und will ich bei einem japanischen Wrestler nicht miteinfließen lassen aber wie er die Dinge sagt wirkt auch sehr intensiv und authentisch und auch wenn ich nicht verstehen was er sagt, bringt er mit seinen ganzen Art und Weise etwas rüber. Insgesamt wie sein Nemesis Omega einer der besten Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: coolserazwrote on 11.02.2018:[10.0] "Excellent wrestler. One of the very best. Uses his moves very well,  his selling is amazing, an unselfish bumper. More importantly, he works on his gimmick and carries himself like a champion. Not just a great wrestler but a star."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheLoudMouthwrote on 08.01.2018:[10.0] "Denke, zu Okada braucht man keine großen Worte verlieren. Der Kerl ist aktuell einer der besten Performer im ganzen Business und weltweit in der Spitzenriege angekommen. Allein sein Matchguide spricht für sich. Großartiger Worker in allen Belangen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AlexRichardswrote on 28.12.2017:[10.0] "At 30 it is easy to see Okada becoming one of, if not the greatest to ever step foot in a ring.  Already set to smash every record for the IWGP title we are blessed to see this mans legendary career evolve in front of our eyes.  Once in a generation talent that has a mix of psychology, ability and charisma that we may never see again"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: GraavOfGraavwrote on 26.12.2017:[10.0] "He is only 30 years old and I already consider him a living legend. He has incredible matches that most wrestlers can only dream with."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SamTheRam28wrote on 17.12.2017:[10.0] "Okada has proven himself to be the best wrestler in the world today with countless great matches throughout his over 500 day IWGP title reign. He can wrestle any style asked of him to perfection. Look at the difference between his Omega matches, his Shibaga match, and his Fale match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: DanTalksRasslinwrote on 09.12.2017:[10.0] "Okada has already proven himself a top-shelf talent for NJPW, with a technical ring style and firm grasp of wrestling psychology and selling, as well as a confidence and swagger to match his "Rainmaker" gimmick.  And with three reigns as IWGP Heavyweight Champion under his belt, he's still young, and can only get better from here.  He's certainly come a long way since being cast as "Okato" in TNA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: benYowrote on 21.11.2017:[9.0] "K. Okada besitzt eine Aura, die nur wenige haben. Auch wenn sein Wrestling teilweise langsam und unspektakulär aussieht, so ist jede Aktion von ihm sauber und nahezu perfekt getimt ausgeführt. Ich finde das Herr Okada immer wieder zeigt was dieser "Sport" ausmacht und wie schön er sein kann. Ich denke er wird noch lange im engsten Kreise an der Spitze von NJPW sein. Verdient einer der besten der Welt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Spartak87wrote on 15.11.2017:[10.0] "One of my favorite wrestlers and simply the best wrestler in the world. Just incredible matches all of the time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Dragon Fighterwrote on 30.10.2017:[10.0] "The comment below me is laughable to take seriously. Okada without a doubt is one of the best, if not the best wrestler in the world. Countless classics since coming back to new japan in 2011. Great in-ring performances, solid mic work, have charisma. Moreover, he is already a proven big draw. His weakest point- selling- is also improved greatly. It is scaring that he is barely 30 now. I am so happy to see what happens next to him and a potential GOAT career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Paul Allainwrote on 26.10.2017:[10.0] "It's hard to explain the transformation, but a man that was once a job boy and a joke character on excursion, unleashed a mountain of charisma and of savant move arsenal, and The Rainmaker is an elite worker in japanese wrestling history. Truly inspiring perseverance."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: tykechandlerwrote on 19.10.2017:[10.0] "His matches speak for themselves. He is not only one of the greatest wrestlers working in the world right now, but one of the great of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: The Phenomenal 1551wrote on 09.10.2017:[10.0] "Subjektiv betrachtet bin ich kein Riesenfan von Okada, aber objektiv gesehen führt kein Weg an der Höchstwertung für den Rainmaker vorbei. Sein Moveset mag zwar vielleicht etwas "casual" wirken und die etwas langgezogenen Anfangsphasen in vielen seiner Matches sind auch nicht jedermanns Sache. Aber was der Mann einem im Match mit Mimik, Gestik und Selling für eine Story erzählt ist ein ums andere Mal grandios. Das Ergebnis sind diese großartigen Matches, die er vor allem in diesem Jahr, aber auch schon davor oft geworked hat. Zurecht an der Spitze von New Japan derzeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Headlockwrote on 02.10.2017:[8.0] "Ich kann ehrlich gesagt nicht begründen was ich gegen denn Rainmaker, Kazuchika Okada hab, seine Matches sprechen mich nicht wirklich an, weil er oft langsame Anfangsphasen hat, sein Charisma ist auch nicht meins und das Gimmick des Young, Cocky, Champions wurde leider durch 08/15 Ace Face getauscht, der anfängt zu heulen, wenn er verliert Großes update  Seit dem G1 wieder gefällt so gut wie 2013! Die Story im G1 das er sich immer sicherer wurde war grandios umgesetzt, was an großen Teilen an Okada lag. Seine Mimik und seine Gestik waren so gut wie lange nicht mehr und er war wieder das Cocky A-Loch in dem ich mich damals verliebt hab. Momentan gefällt er mir wieder und ich hoffe das bleibt so!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "Without a doubt, the best wrestler in the world at the moment. He could put on a 5-star match even with a doll.  No matter who his opponent will be, if Kenny Omega, Bad Luck Fale, Tomohiro Ishii or Prince Devitt, he will be able to steal the show. But aside from his storytelling skills and his terrific athletic abilities, Okada is also incredibly charismatic: he can easily get the audience to like or dislike him, and can catalyze the attention like no one."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: El Generico Apodowrote on 01.10.2017:[10.0] "Well, what can I say about Okada? I think is safe to say that he is one of the best wrestlers on the planet right now, seriously. His matches against guys like Tanahashi, Suzuki, Shibata, Nakamura, Naito and (of course) Omega, are awesome! Great in-ring work, great charisma (he really looks like a star), just a perfect Superstar. The true Ace of Universe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jcleaguewrote on 29.09.2017:[10.0] "Okada is so damn good at pro wrestling. Easily my favourite wrestler currently working, and already high on my Top 10 Overall. He has everything, fantastic storytelling and psychology, a versatile and seemingly neverending move set, great look, gimmick and manager. Okada has such a presence that he truely does feel like the 'Final Boss of New Japan'. It's incredible how much talent the guy has at just 29 years old. He is very comfortably holding the reigns as the Ace of New Japan whilst Tanahashi has transitioned into the upper midcard spot, and still has many more years of fanstastic matches and moments to look forward to."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Blood Pumpwrote on 01.09.2017:[10.0] "This is the third time Ive done a review on this guy, and after being hard nosed on giving the guy his due respect and finding excuses to not 10 him I'll finally submit that he is indeed one of the greatest of all time. To say he is the Ric Flair of this generation would be a disservice to him, hate as I do to admit it Okada might be more of a total package then even The Man. Hes not as flashy as Omega or as charismatic as Naito, he doesn't hit as heavy as Ishii or Shibata but he outclasses them all. He has phenomenal booking behind him and he hasn't had a single match during his most recent IWGP Heavyweight Title reign that hasn't been a classic. I once scoffed at those who've compared him to Misawa in terms of quality, now I'm starting to think he might actually be a little better. I don't like him more then Misawa mind you, but hes just got everything. Great character, great work mentality, an absolutely stunning dropkick and durability. I highly anticipate what this mans future holds."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Leithorwrote on 29.08.2017:[10.0] "One of the greatest wrestlers in today, he looks like he could make a 4* match with everyone, I dont know why people dont like him, normally them are just on American style (which is bringing some things from there)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AnagelLover92wrote on 20.08.2017:[10.0] "Liebe CM-Admins. Kann man mal die letzten 4 Bewertungen rauslöschen, denn diese stammen zu 99, 9% von der selben Person. Hab gerade mal geguckt, alle 4 Members haben 2 Wrestler bewertet, jeweils Okada 0 und AJ Styles 10 Punkte. Das stinkt zum Himmel und schwächt die Durchschnittsbewertung enorm. Man muss Okada ja nicht leiden können, von mir aus kann man auch eine 0 geben (persönliche Meinungen muss man akzeptieren), aber sowas das geht gar nicht. Danke"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AZackSnyderFilm96wrote on 19.08.2017:[10.0] "GOATKada! The best wrestler in the world today and that is a scary thought because he has yet to hit his prime."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheAlmightywrote on 31.07.2017:[10.0] "Ich verstehe wenn man kein Fan ist aber hinsichtlich von Okadas Leistung zeugt alles unter 8 von extremen Unwissen. Schön dass es Leute wie Rasslin Rules gibt, die noch was mit Selling und Match Story anfangen können bzw. überhaupt wissen was das ist.  Okada ist zurzeit der beste Wrestler der Welt. Er bringt mit jedem Wrestler min. 4* auf die Matte aber kratzt dieses Jahr mit fast jedem Match an den 5* wenn er sie nicht sogar erreicht oder übertrifft. Dieser Mann ist Weltklasse obwohl er so jung ist. Er hat das Selling auf ein neues Niveau gehoben und ist der sauberste Worker der Welt. Die so kritisierten Standard Moves führt er unfassbar gekonnt und glaubwürdig aus! In ein paar Jahren wird er der größte Wrestler sein den NJPW je hervorgebracht hat. Ab und zu nervt jedoch das Overbooking von Gedo. Dennoch wäre im Moment wohl eher 20 Punkte für ihn angebracht, obwohl er nicht einmal mein Lieblingswrestler ist. Seine Klasse und Genialität im Ring sind jedoch nicht von dieser Welt!  P. S. Headlock saugt sich mal wieder x-beliebige subjektive Pseudo Argumente aus den Fingern heraus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: aydings05wrote on 17.07.2017:[10.0] "Kazuchika Okada ist mit Abstand der Aktuell beste Wrestler den es gibt . Die Entwicklung die er bei NJPW gemacht ist einfach nur krass und vor allem der Moment als er Tanahashi als Ace ablöste . Noch dazu hat er ein unglaublich gutes Storytelling und kann einfach mit jedem Gegner Klassiker abliefern . Noch dazu hat er eigentlich so fast jeden Wrestling Stil drauf einfach TOP.  Was man bei ihm dazu bedenken muss ist das er auch erst 29 ist wenn er so weiter macht wird er sicherlich irgendwann neben Misawa und Kobashi zu den besten Allerzeiten gehören  10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Drew115wrote on 14.07.2017:[10.0] "Greatest wrestler in the world today in the midst of one of the greatest title reigns in pro-wrestling history. The total package."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Cleanerwrote on 02.07.2017:[10.0] "Das Aushängeschild von NJPW, ein wahnsinnig starkes Babyface, das nicht nur in seiner Heimat perfekt mit der Crowd connected. Und seine Matches sind nicht von dieser Welt. Was er alleine 2017 schon gewrestlet hat... F*ck yeah, er ist der beste der Welt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: XinJuZhaowrote on 27.06.2017:[10.0] "Der wohl mit beste Wrestler den ich kenne! Nicht nur hat er ein 6 Sterne Match bestritten gegen Kenny Omega, seine Moves sind grandios und seine Titelregentschaft ist eine der besten die ich je gesehen habe. Seine Matches sind sehr sehenswürdig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheCleanerwrote on 17.06.2017:[10.0] "This guy is soo good and he's not even reached 30's yet. Easily the best wrestler in the world. Can get a 4 star match even with a guy like Fale. His singles matches this year have all been incredible and his matches with Tanahashi are some of the all time classics. If he stays for 10 more years i believe he will go down as the greatest wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ParisTheSpiderwrote on 15.06.2017:[10.0] "Momentan der beste Wrestler auf dem Planeten. Okada liefert mehrere 5 Sterne Classics. Zweifellos der beste Performer im Pro Wrestling. Seine Matches gegen Naito, Shibata, Tanahashi und Omega sind einfach weltklasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: CorvinLEwrote on 12.06.2017:[10.0] "Dieser Typ hat sich einfach zum besten der Welt entwickelt, er zeigt ganz normale Standart Moves, wie z. B nen "Droppkick", die er einfach nochmal perfektioniert. Zusätzlich ist er für seine größe extrem beweglich. K. a warum TNA sein Talent nicht erkannten und ihn zurück nach Japan haben ziehen lassen, aber für Okada hätte es anders nich laufen können. Ohne frage ist er mein Favourite in der Wrestlingworld Rainmakeeeeer! ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: NikoWrestling7wrote on 04.06.2017:[10.0] "Kazuchika Okada is untouchable currently for me in professional wrestling. Not a bad singles match this year and I can't remember the last time I didn't enjoy a match from him, even the Fale match at Dontaku. Okada is my standard currently in wrestling. Simple as that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: PistolPeteMattywrote on 31.05.2017:[10.0] "Okada is currently the best champion in the world of wrestling, with every match for the title in his reign being amazing, and having multiple 5 star matches during said reign. He's only 29 and already the best in Japan, if not the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MingTeawrote on 30.05.2017:[10.0] "Okada is the best wrestler in the world right now. His ability to perform at this level at such a young age is incredible. Can't wait to see where his career goes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: LordGabrielwrote on 28.05.2017:[10.0] "One of the best in ring wrestlers i ever seen. Probably he can carry a good match with almost every decent wrestler. I saw some of his matches in NJPW and he is remarcable inside the ring and he is only 29 years old.  The future is bright for him if he won't suffer a a serious injury."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: richeyedwardswrote on 28.05.2017:[3.0] "Okada from 2012 up until the end of 2013 I would have given okada 9. After that however I think he has been good to terrible. He has fallen into a routine that sucks and is just sooo boring. Same opening to every match followed by 25 mins of nothing with okada not looking like he cares about anything that is happening like it does not matter. This is not in a good way like he is a cocky ace who is not taking his opponents seriously instead he just looks like he does not care and that he is doing stuff in order to make the match go long because main event matches have to go long in njpw.   The absolute worst thing about him though is that his selling it is awful. After that tana match at kopw he gave up selling a limb in any match. The opponent will work a limb like the leg or the arm during that 25 mins of nothing and then when it was time for a comeback he hits all his trademark spots without any trouble and they they go into the very silly clichéd finish sequence where they dance around each other for he rainmaker not looking in any way tired or like they have just been fighting for 35 minutes.   Nothing looks like a fight it just looks like a silly exabition with a wrestler trying to do epics but sucking at them.   Not the worst wrestler in the world but along with omega easily the most overated."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MRNwrote on 09.05.2017:[10.0] "The best wrestler in the world today. In the middle of a legendary IWGP championship title reign he's managed to make his opponents look better than ever even in defeat and make fans want to see a rematch everytime the bell rings. At only 29 years of age Kazuchika Okada is on his way to being considered one of the best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: LSEstrelawrote on 07.05.2017:[9.0] "Okada is a one of a kind. He seems to be the perfect blend of charisma, in-ring ability and promo skills. But he's not quite the phenomenon that Nakamura and AJ Styles were in Japan, so that stops him from being a 10/10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: koblandwrote on 24.04.2017:[10.0] "The best in the world right now, and he's only 29. He could quit tomorrow and I think he'd rank in the top 5 of all time, so many classics already, and it's scary to think of how many more are to come. Why is he the best? Watch any of his 5* matches and you'll see plenty of reasons, he works any style perfectly, he tells some of the best stories I've ever seen in a ring, his ability to move a crowd is currently unparalleled, and he has proven time and time again that he can work with anyone. The Rainmaker is one of the best finishers in the game right now, and the fact that it's sometimes preluded by a Tombstone Piledriver is just a testament to how strong he makes it look. The best in the world right now, and when he's done, probably the best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kamen Rider X7wrote on 15.04.2017:[10.0] "Absolutely the greatest wrestler in the world at this moment. The fact that he is only 29 makes the idea that he might not have hit his peak yet kind of amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheRainmaker28wrote on 14.04.2017:[10.0] "Okada was one of my favorite wrestlers of all-time, but after his performance against Omega and Shibata, he became the number one in my list. At the age of 29 years-old he already have a hall of fame career, with a catologue of classic matches and as one of the main responsables for New Japan getting in their feet again. Aside from that, he is a full-package wrestler, as he got the look, the charisma, the drawing abilty, a amazing in-ring work and psychology, being able to adapt and fit his style in any type of match, and he does such little things that are important to structure a match, as his amazing facial expressions and his facility to work and play his character with perfection as heel or a babyface. For a man that established him self as one the best already in his age, I have no doubt that he is going to be on the books as one the greatest wrestlers of all-time. Fantastic is the word to describe Kazuchika Okada."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: BerserkGutswrote on 14.04.2017:[10.0] "It's scary to think Okada is only 29 years old and is considered to be one of the best in the world. A big match wrestler, who adapts to any style. His rivalry with Tanahashi is legendary and the match quality are spectacular. he is only going to get better and will probably eclipse Tanahashi as the Ace of New japan. Go watch any match with Tanahashi, Omega and most recently with Shibata and see for yourself how good he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TooSweetPhilwrote on 10.04.2017:[10.0] "Hat sich vor kurzem zu meinem Absoluten Lieblingswrestler entwickelt. Okada's aktueller Titelrun ist einfach bravourös. Jedes Match ist ein absolutes MustSee und Okada zeigt immer Topleistung und varriert seinen Style immens. Sei es die psychische Schlacht mit Suzuki, das HighFlying mit Tiger Mask W, der Strong Style Krieg mit Shibata oder einfache Klassiker mit Marufuji oder Omega man kann von Okada nur Storytelling, Matchpsychologie und Selling erwarten. Mal die ganzen 5* Matches und die beste Fehde aller Zeiten mit Tanahashi außer Acht lassen. Genau wie Tanahashi überzeugt er nicht unbedingt durch das übertriebenste MoveSet sondern viel eher durch die Fähigkeit ein geiles Match auf die Beine zu stellen.  Aktuell der Beste Wrestler der Welt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: prowrestlingisrealwrote on 06.03.2017:[10.0] "I didn't think that Okada had it in him, but he proved me wrong big time in the past year, and he's still doing so by having one of the greatest world title runs in the history of the business, what a talent!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheWrestlingFanwrote on 04.03.2017:[10.0] "The new Ace of New Japan. He's capable of delivering great matches after great matches against any talent. He oozes charisma and has marketable look that will bring New Japan's value into new heights. New Japan better doesn't let their true face of company leaving anytime soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SanthoshVNwrote on 19.02.2017:[9.0] "Okada is a very great wrestler to the age he is. He is young, athletic, great technician and charismatc in the ring as well. His bouts with Karl Anderson, Tanahashi, AJ Styles and Nakamura are recommended to watch"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Segri98wrote on 11.02.2017:[10.0] "Was für ein Wrestler. Technisch begabt, Charisma ohne Ende, liefert grandiose Matches ab und verbreitet Freude. Ich liebe seinen harten, aber dennoch eleganten Stil und könnte mir stundenlang Matches angucken. Er ist absolut zurecht der amtierende IWGP Heavyweight Champion. Besser geht nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Changeling45wrote on 09.02.2017:[10.0] "The funny thing about Okada for me is, I know his shtick and routine.  He'll rarely surprise you-- you basically know what you're getting yourself into when you watch a match of his.  In some ways he's like the Japanese Randy Orton, because he doesn't necessarily have to leave his comfort zone but what he does do he does super flawlessly and smooth.  The difference in him and Orton though is Okada's greater ability to work more styles and tempos.  He's a prototype in the ring, as long as his opponent keeps up their end of the bargain and spices things up a little bit, Okada will help you get the absolute best out of each other.    And that damn dropkick."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Jobbswrote on 02.02.2017:[10.0] "This guy is only 29 years old and can be considered one of the best in the world currently. The amount of classics he's had is just incredible and even racking up 3 ***** matches with arch rival Hiroshi Tanahashi too. The guy can adapt to any style and get the crowd invested too. Have to give this guy a 10 as I have rarely seen a match of his that I didn't enjoy and honestly the guy can do it all and he's not even reached his prime yet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SomeDudeOnTheInternetwrote on 27.01.2017:[10.0] "Junge Junge.. Okada erfährt mit 29 Jahren ein unglaubliches Hoch im Wrestling Biz und er hat es zu 100% verdient. Unglaublicher Worker, charismatisch ohne Ende und viele Matches sind Mainevent tauglich. Jeder Move sieht einfach perfektioniert aus und er zählt ohnehin zu den besten Top 5 In-Ring-Performer der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: csp6713wrote on 23.01.2017:[9.0] "He's been so consistently good that Okada will get my ten the moment I see him step up his game. Even after his WK11 main event, Okada has a whole lot more to offer as a performer, once he is made the 100% star that he's made to be."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Chekerwrote on 10.01.2017:[10.0] "Kazuchika Okada was arguably given the world a bit too soon, but he soon became worthy of all of it. Okada is capable of having a great match with anyone, he has a great heel vibe, and I hope the only reason people are talking a lot more about Kenny right now is because it was his time to shine, while Okada... well, we all knew already Okada is excellent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ApexOfEvolutionwrote on 08.01.2017:[9.0] "Im Ring zur Zeit einer der besten Wrestler der Welt und der einzige, der einen Lariat als wirklich effiziente Aktion verkaufen kann. Was er gegen/mit Tanahashi und zuletzt Omega auf die Beine gestellt hat, gehört jetzt schon zu den ganz großen Klassikern. Seine Promos kann ich nicht bewerten und vom Charisma her steht er leicht hinter Tetsuya Naito oder Kenny Omega , so dass ich nur 9 Punkte vergebe."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Gravelordwrote on 08.01.2017:[10.0] "Kazuchika Okada is already one of the greatest wrestlers in the history of NJPW and yet, he is only 29 years of age. A truly special performer and somebody that an entire company can be built around with his superstar look and aura, as well as top-notch in-ring skills and a brilliant character that he plays to absolute perfection. Not only this, but it is scary to think that as good as Okada is, he can only get better over the next decade and perhaps can grow into the greatest overall performer pro wrestling has ever seen as his catalogue of classic matches continues to grow and success as Ace of NJPW becomes more and more beneficial to the entire pro wrestling landscape."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TrevPuroFanwrote on 07.01.2017:[10.0] "Okada will go down in history as one of the greatest ever. Only 29 years of age and has already so many classics on his name and already a 4 time IWGP Champion. I only expect bigger and better things for Okada in the future, as he carries New Japan on his back."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JokeyZockeywrote on 07.01.2017:[10.0] "Der Rainmaker! Ich habe ihn ja bisher immer schon als einen der besten der Welt angesehen, in meinen Top 5 war er immer sicher drin. Aber nach seiner Performance und dem Match gegen Kenny bei WK11 hat er mich endgültig überzeugt und in seinen Bann gezogen! Nun gibt es überhaupt keinen Zweifel mehr: Kazuchika Okada ist der aktuell beste Wrestler der Welt und wird es noch für viele Jahre bleiben! Im Ring 1+ mit Sternchen, Charisma in anderer Form auf demselben Level wie Nakamura, Gimmick wird perfekt ohne Makel dargestellt und die dazugehörige Ausstrahlung sucht ihresgleichen. Noch dazu ist der Jung erst 29 Jahre alt! Lass ihn noch 10-15 Jahre in dieser Form weiter machen, er wird ganz oben im Olymp des Wrestlings an der Seite von Kobashi und Misawa stehen! Am Ende seiner Karriere wird man ohne jeden Zweifel sagen können: Dieser Mann war einer der, wenn nicht vielleicht sogar der beste Wrestler, der jemals in einen Ring gestiegen ist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Rattlesnake3-16wrote on 05.01.2017:[9.0] "One of the greatest Japanese wrestler ! The leader of Chaos has a huge charisma with fantastic in-ring skills."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: NastyYaffawrote on 01.01.2017:[9.0] "People always say how TNA wasted Okada, but I don't think that's the case - he just didn't showcase that level of greatness he is now at while he was there. Right now he is definitely one helluva wrestler, one of the best in the world. He has been a part of some truly great matches vs. the likes of Minoru Suzuki, Hiroshi Tanahashi, AJ Styles, Shinsuke Nakamura & many others - and I am sure that his great match catalog will once grow as years go on, as he is only 29 years old."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Jack Londonwrote on 14.12.2016:[10.0] "Okada ist einer derjenigen, dessen Wertung hier im Board sicher nicht seine Leistung wiederspiegelt. Kazuchika Okada in 2012 ist absolut großartig, er bietet tolle Matches, beweist Charisma und wird immer sicherer in seiner Interaktion mit den anderen Größen von New Japan. Irgendwo in Orlando sollte jemand seinen Kopf gegen die Wand knallen, weil man dieses Talent so sträflich vernachlässigt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: kingbilbinwrote on 23.11.2016:[7.0] "Okada is a great worker but overrated as f*** and he canŽt be compared to Tanahashi as ace. He is not the star NJ needs despite 4 years of megapush."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JordanACEwrote on 04.11.2016:[10.0] "Rainmaker! OKADA KAZUCHIKA! This guy is so good inside the ring it's unbelievable. I am not a big fan of NJPW, but currently, he is the only reason that I tune into their PPVs (he and Kenny Omega, tbh).  I watched all of his matches with Tanahashi, and every time they delivered. Kinda reminds me of Flair vs Steamboat with Okada being Flair and Tanahashi being Steamboat. Okada is just one of the best wrestlers out there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: akm0wrote on 18.10.2016:[9.0] "Charismatic af, great in-ring worker and one of the simpliest, but coolest finisher in the buisness make Gedo's pupil what he is today. While I think he's a star and he can improve a lot being only 28, I also think that his matches have all the same build. He is not very versatile as Tanahashi and he doesn't bring something really special in the ring aside from the Rainmaker. He's also capable of doing good promos and to always entertain the crowd. Probably three years from now we'll be talking about him as THE best wrestler in the world, but right now he just need a lil bit more time and experience. However, his series of matches with Tanahashi will be forever remembered as one of the best feud ever on pair with Flair/Steambot, Kobashi/Misawa and so on."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Alex Maedawrote on 08.10.2016:[10.0] "Okada hat in den letzten 4-5 Jahren eine Entwicklung vollzogen, die ihresgleichen sucht. Vom durchaus ambitionierten, aber doch eher unauffälligen Rookie zum neuen Ace von New Japan. Tanahashi scheint nun endgültig die Fackel an ihn übergeben zu haben - und womit? Mit Recht! Okada ist einer der charismatischten Worker der Welt, haut einen MOTY-Kandidaten nach dem anderen heraus und hat sich absolut im Wrestling-Olymp etabliert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Luv all wrestlingwrote on 08.10.2016:[10.0] "Okada is the future of NJPW, a proven draw with excellent timing and charisma, Okada is always a joy to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Robert Taylorwrote on 18.08.2016:[10.0] "Wird mal Zeit für eine Aufwertung auf die 10. Er hat mittlerweile über einige Jahre bewiesen, dass er zur absoluten Leistungsspitze bei New Japan und im Wrestlinggeschäft allgemein gehört. Zahlreiche Klassiker und sehr starke Matches hat er gezeigt und zurecht hat er den IWGP Heavyweight Title bereits mehrere Male gehalten. // 13. 01. 2013: Unglaublich, was dieser Mann in einem Jahr für einen Aufstieg erlebt hat. Es spricht für seine Qualität, dass er daran nicht zerbrochen ist, sondern sich durchgesetzt hat. Das Rainmaker-Gimmick passt perfekt zu ihm und im Ring eine Bombe, wie man dieses Jahr sehen konnte. Ich hoffe in Orlando beißt sich jemand täglich in den Hintern, dass man ihn nicht richtig eingesetzt hat. Wenn er das Niveau von 2012 weiterhin halten kann, gibt es auch eine höhere Wertung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ThePhenomenal1wrote on 05.07.2016:[10.0] "Respekt! Der Typ ist 28 Jahre alt und ist einer der größten Stars in Japan. Das was er im Ring zeigt ist absolut genial. Der Rainmaker gefällt mir besonders, es ist zwar ein relativ schwacher move als finisher aber wir den rüberbringt ist der finisher sehr glaubwürdig weil er all seine Kraft in den move steckt. Ich bin auch sehr froh der rübee das er seinen Vertrag bei New Japan Pro Wrestling verlängert, denn da ist er meiner Meinung nach am besten aufgehoben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Delirious434wrote on 19.06.2016:[4.0] "I already don't think he's that kind of a big deal, and NJPW is making me dislike him even more, just like a guy down here said, Okada is the Randy Orton of New Japan, and the way NJPW Book him is horrible, winning the IWGP Heavyweight Title EVERY SINGLE FUCKING TIME!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MAGICIANwrote on 13.04.2016:[10.0] "Kazuchika Okada ist unglaublich gut, hat sich mittlerweile zu einem der 3 besten Wrestler der Welt entwickelt. Der Rainmaker ist einfach einmalig. Großartiges Gimmick, göttlich im Ring, göttliche Ausstrahlung und so viel Charisma, dass bei seinem Auftreten fast die Halle einstürzt. Wenn man dazu bedenkt, dass der Kerl erst 28 ist. Der Rainmaker gehört mittlerweile zu meinen absoluten Favoriten! Volle 10 für das beste, was NJPW derzeit zu bieten hat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: CmNag66wrote on 10.03.2016:[10.0] "Das neue Ace von New Japan und einer, wenn nicht sogar der beste Wrestler der Welt im Moment. Seine Matches sind durchgehend richtig stark, dazu kann er auch komplett verschiedene Matches zeigen (z. b. vs. Tenryu) und an Charisma mangelt es ihm ganz sicher auch nicht. Hat für mich dazu auch noch das Beste Match was ich je gesehen habe gegen Tanahashi bei WK 10 gehabt. Mit einer großartigen Leistung von ihm wo er am Ende zurecht das Zepter in die Hand bekam."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SapolBlackwrote on 03.02.2016:"Jetzt überzeuge er mich der Rainmaker!  Nach dem er seine dauer und Erzrivale bei WK10 besiegte. Umfassbar, diese Entwicklung und ein Unglaubliches Bereicherung für NJPW. Jetzt liegen die Zügeln an ihm, was er aus seiner Zukunft macht. Er ist an der Spitze angekommen."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: themadsamuraiwrote on 16.01.2016:[10.0] "A three time IWGP champion at the young age of 28, Okada really is the new ACE of new japan. Okada is so good for his age and he'll only get better as the years go by. Excited to see how good he gets in 5 to 10 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Matzinhowrote on 07.01.2016:[9.0] "Verdient (in meinen Augen nicht nur von mir) eine Aufwertung. Mit dem WK10-Sieg hat sich Okada endgültig emanzipiert und hat sich aller Kritik zum trotz, die ich ihm und seinem Stil gegenüber noch äußern könnte, doch zu einem liebgewonnenen Teil des Pro-Wrestling der Gegenwart entwickelt. 9 Punkte für jemanden, bei dem ich NOCH IMMER Luft nach oben sehe, obwohl er bereits einer der prägendsten Akteure seiner Ära ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Oddark123wrote on 06.01.2016:[9.0] "Kazuchika Okada is a man who shows how time and improvement can cultivate a talent. His transformation to the Rain Maker, was his gel moment. And from that point on he's had the right road to success. His reigns at the top of NJPW's mountain have been well deserved. He has also added to his presence by being a nice attraction to other promotions he has appeared in. With his time put in, Okada has transformed himself into a highly deserving wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Phenomenal91wrote on 10.11.2015:[10.0] "From Ultimo Dragon's protegee to TNA jobber... to the ACE of the New Era, he is truly one of the Best in the World. It was a big risk putting the title on him back in 2012, as the Japanese audiences didn't truly know what he was capable of. But it payed off... now the Rainmaker stands in the elite of puroresu: brutal, uncompromising, electrifying. His feud with Tanahashi can't be seen anywhere else in the world. And he's just getting started!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Antimasterwrote on 23.10.2015:[10.0] "Dieser Typ ist mit 27 in meinen Top 5 momentan, absolut fantastischer Wrestler. Sein Gimmick ist großartig, man nimmt ihm einfach ab, dass er der King ist, dazu diese Dropkicks zum dahinschmelzen. Er kann mit wirklich jedem ein gutes Match worken, was er beispielsweise aus Fale Anfang dieses Jahres herausgeholt hat, war unglaublich. Und das beste: Wenn alles normal läuft, hat er noch mindestens 10 Jahre auf dem Höhepunkt seiner Leistungsfähigkeit vor sich! Ich kann es kaum erwarten, mit was für Matches mich Okada in Zukunft erfreuen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kevin434wrote on 02.08.2015:[10.0] "Der für mich zurzeit sechstbeste Wrestler der Welt, ich gebe 10 Punkte, weil der wirklich einfach mit JEDEM ein gutes Match herbeizaubern kann, was für ein guter und realistischer Wrestler, und er steht zurecht jetzt schon an der Spitze New Japans. Was soll man noch groß sagen, fantastischer Worker, erfüllt alles was man als guter Wrestler in Japan braucht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Play2Xwrote on 13.04.2015:[10.0] "Klasse Selling, klasse Ausstrahlung, klasse Entwicklung: Einfach ein klasse Mann, welcher die nächsten 10 Jahre großes bringen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ShortArmLariatwrote on 11.04.2015:[10.0] "My favorite wrestler in the world today. With just 27 years, is one of the greatest wrestlers in the world. His moveset focused on the neck, the rainmaker, the way he sells his arm, his classics against Tanahashi... He has got the IT Factor and in a few years, we could be talking about the next japanese legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TAWPTierJustinwrote on 29.01.2015:[10.0] "Kazuchika Okada really has come a long way since I first watched him wrestle in TNA as nothing more than a jobber in 2010 and 2011 and even called himself Okato at one point and aligned himself with Samoa Joe for a bit for a feud with Joe and The Pope. Ever since Okada came back to New Japan after leaving TNA, he really reinvented himself, changed his look and everything, improved his wrestling a whole lot, gave himself a moniker which is The Rainmaker, and he became one of THE top 2 stars in New Japan Pro Wrestling today!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: llboxingwrote on 18.01.2015:[9.0] "Look up "It Factor" in the dictionary and you will likely see a picture of Okada.  The one Japanese star who has a legitimate chance to reach main event status in WWE, if he ever decides to jump ship.  Vince McMahon and WWE see dollar signs everytime they see this guy wrestle.  Dixie Carter is kicking herself right now for the way she misused him during his time in TNA.  Excellent look, tall for a Japanese wrestler, and elaborate costumes.  Reinvented himself with his Rainmaker gimmick of a bleach blonde rich playboy.  Good showmanship and charisma, which is sometimes missing in Japanese wrestlers.  Almost like a more youthful, Japanese version of Ric Flair.  He plays a cock and arrogant pretty boy and you would think that he would be the most hated heel in the company, and he started out that way, but quickly became a beloved anti-hero.  One of the top workers in the business, super smooth in the ring with freakish athleticism. Excellent seller, ring psychologist and a variety of cool moves.  He took a simple short arm clothesline and made it into the most feared finisher in wrestling.  Still a few years away from 30, his upside is scary.  Physique is a little on the lanky side.  I'd like to see him build some more muscle.  Some have criticized his promos but he has Gedo as his pitch man and the crowd eats up everything he says. Also speaks relatively good English.  As long as he stays healthy, will be a top draw for years to come."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JuliTheCage87wrote on 05.01.2015:[10.0] "Diese Entwicklung bei ihm ist phänomenal. Während er noch vor drei Jahren für seine Kindlichkeit belächelt wurde, gibt er jetzt einen erfahrenen, zuverlässigen, energischen, unterhaltsamen und talentierten Wrestler der Extraklasse ab. So viele 4- oder mehr Sterne-Matches hat wohl niemand zuvor in diesem jungen Alter zu verzeichnen, Respekt für diesen Jungspund."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TRMBwrote on 26.12.2014:[9.0] "Der neue Topstar Japans! Einfach rundum ein Klasse Wrestler mit Austrahlung, Charisma, Sicherheit und Selbstvertrauen, Promo technisch wirkt er sehr sicher (natürlich schwer zu beurteilen wenn man kein japanisch spricht). Nur 9 weil er halt (noch) nicht das die Klasse von Nakamura und Tanahashi hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: 8BitLegendwrote on 22.09.2014:[6.0] "Ich kritisiere kaum etwas am fantastischen NJPW-Produkt, aber Okada ist definitiv überpusht. Er hat ein ganz nettes Gimmick, kann gut wrestlen, aber in Sachen Star-Power ist er kein Tanahashi, Nakamura, Liger oder Suzuki."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: sevendaughterswrote on 31.03.2014:[10.0] "Okada can wrestle with anyone. That much is clear and I point to a string of **** or better matches by the age of 26 that testify to his in-ring ability - including the greatest wrestled feud of this decade against Hiroshi Tanahashi, which contains six matches of such absolute brilliance that it's unfair. Smooth but powerful. Convincing and sells generously. You couldn't ask for more of his ring work, really. Some people have a problem with his charisma and think that he has none; on the surface this seems true. His press conferences and post-match mic work is REALLY awkward. But the more I watch, I am convinced that this is part of his 'cocky young champion' character: that he both wants to let his wrestling speak for itself and refuse to get drawn into pithy speech feuds."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jay arewrote on 16.02.2014:[10.0] "The rainmaker has really impressed me these last two years. I love the production value of his entrances, I love his consistently very good ring work almost never having a bad match anymore and the stories he's able to tell in them. He has helped reel me in to NJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: eldenaaaaawrote on 16.02.2014:[10.0] "at only 26 years of age this man has had a lot of classics Okada is the future of wrestling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: apc24wrote on 07.01.2014:[10.0] "Okada has evolved into one of the best wrestlers in the world today. Going from a nobody jobber to a great great main eventer. He has excellent in-ring ability and can also have a great story in the ring (the man can sell) and is now the face of Japanese Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JourneybyTrainwrote on 09.12.2013:[6.0] "Okada is a decent worker with a good look, though strangely it doesn't translate well as far as in-ring presence goes. His selling can be iffy and the middle of his matches can get boring but he does have a knack for finishing stretches; though I think that's slightly negated due to having a stupid dance looking finisher."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Bluminho 93wrote on 04.12.2013:[9.0] "Okada ist jemand, bei dem man einfach alle richtig gemacht hat und auch nicht gleich einen Push abbrach, wenn etwas mal nicht perfekt klappte. Der Mann ist jetzt 26 und hat bereits alles relevante bei NJPW gewonnen, was es dort zu gewinnen gibt. Okada ist einfach ein starker Wrestler, hat ein tolles Moveset, eine Wahnsinnsaustrahlung, einen starken Manager als Sprachrohr und ist bei den Fans trotz Heel Status dermassen over, dass man nur den Hut ziehen kann. Trotzdem gebe ich erst einmal noch starke 9 Punkte und bewahre mir den einen Punkt noch auf. Denn wenn Okada nicht als Headliner im Main Event antritt, dann ist er für mich noch nicht fähig genug, Showstealer zu produzieren. Dies hat man beim diesjährigen Climax oft gesehen. Okadas Matches waren alle gut, doch im Endeffekt waren es auch nie DIE Begegnungen des jeweiligen Tages. Er konnte aus seinen Gegnern nie den ganz grossen Kracher herausbringen. Ich denke aber, dass der noch so junge Okada sich auch da noch steigert und früher oder später der beste Wrestler des Planeten sein wird und von mir die 10 Punkte erhalten wird."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ADoublewrote on 28.11.2013:[10.0] "RAINMAKAH! Okada is, purely and simply, one of the best wrestlers in the world today. And with him only being 26, he'll have many years of being one of the best to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: todd1928wrote on 12.08.2013:[10.0] "One of the finest wrestler's Japan has to offer and only 25 years old. The fact is for the next twenty years Kazuchika Okada will be one of the biggest names in wrestling. Also he has the best lariat finisher since JBL himself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: alsdncjswo34wrote on 19.07.2013:[10.0] "He has best talent, and he makes the best of his all matches. ( he makes 5 star matches in twice ) he is young and he will be greatest wrestler in the future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Leonewrote on 05.07.2013:[10.0] "From being a jobber in TNA to the IWGP heavyweight champion within 2 years, shows several possibilities - either Okada became 1 of the best improved wrestlers over the last few years, or TNA didn't know what to do with him, or they thought he wouldn't get over with the crowd in America.  I think all possibilities are correct, as Okada eventually got an extreme makeover, became the Rainmaker, and became 1 of the strongest heels in Japan right now.  His in-ring storytelling is incredibly good, he has very good athletic ability to back it up, and his matches against Hiroshi Tanahashi are a must-watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Puromanwrote on 28.06.2013:[10.0] "Was ein Superstar. Auf dem Weg zum Ace in New Japan und mit 25 Jahren den Climax, den NJ Cup und 2-mal den Heavyweight Title gewonnen. Er war Anfang 2012 so gut wie abgeschrieben, vorallem nach dem Kingdom Auftritt, aber trotzdem hat er es geschafft allen zu zeigen. Er hat auch noch so viele Jahre vor sich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Damon Strikerwrote on 15.04.2013:[9.0] "Ein wirklich starker Performer mit natürlicher diabolischer Ausstrahlung. Im Ring wirklich gut anzuschauen, inklusive tollen Dropkick."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jchiofalwrote on 14.04.2013:[10.0] "I was initially skeptical in NJPW putting the title on Okada. He didn't have very much experience at the time, and he didn't quite show that he was main event material. Now though, Okada is one of the best heels in Japan today, and is jone of the best wrestlers in the world today. I really cannot wait to see what the future has in store for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Obermackerwrote on 12.04.2013:[8.0] "Wurde trotz solider Leistung bei TNA nie richtig gepusht, aber dafür nach seiner Rückkehr nach Japan umso mehr. Ich steh auf sein "Rainmaker"-Gimmick und er fängt an, sich als Champion zu beweisen. Aufwertung: kratzt schon an einer 9, der Mann ist die Zukunft von NJPW!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kenshin Uesugiwrote on 04.02.2013:[8.0] "From Zero to Hero! " Nachdem Excursiondesaster bei TNA hat niemand Okada auf der Rechnung, der neue Lock war zuerst befremdlich, das Wrestle Kingdom Rückkehr Match schwach und die Begründung das er nun Tanahashi um den höchsten Titel herausfordert lächerlich. Daraus resultiert zu Recht große Skepsis, doch der Junge hat die Chance zu hundert Prozent genutzt und steht nun bombastisch da und überholt mal so einfach das halbe NJPW Roster in allen Belangen. Das nächste Jahr wird diesen herausragenden Wrestler gehören, der wahrlich das heißeste neue Eisen im Puro Land ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: STRIGGAwrote on 09.01.2013:[8.0] "Also Okada am 04. 01. 2012 zu New Japan zurückckehrte, war er ein veränderter Mann. Ich hätte aber niemals gedacht, dass die Veränderung so weitreichend sein würde. Aus einem ambitionierten und hochveranlagten jungen Wrestler war ein Mann mit einer unvergleichlichen Ausstrahlung geworden, der 2012 ein Blockbuster Match nach dem anderen wrestelte. Das Rainmaker Gimmick sitzt perfekt und wurde vom Publikum so schnell angenommen, dass man sich fragen musste, was eigentlich gerade passiert. Ich hoffe, Okada bleibt dem Puroresu noch lange erhalten, denn er ist in der Kürze der Zeit zu einem der wertvollsten Wrestler New Japans herangereift."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Excellence of Executionwrote on 07.01.2013:[8.0] "Gefühlt könnte ich ihm schon jetzt mehr als 8 Punkte geben. Allerdings habe ich noch nicht so viel von ihm gesehen. Als Nachfolger im Geiste von Masa Chono gefällt mir Okada aber bereits jetzt verdammt gut."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Miloswrote on 10.07.2012:[10.0] "Seit seinem Re-Debüt als Rainmaker ist er total beeindruckend. Er hat tolles Gimmick und überragende Technik - sogar in Liga, die so viele ungewöhnlich talentiert Wrestler hat. Ich meine, dass er ein der erfolgleichsten Wrestlern derzeitigen Jahrhunderts werden kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Asumawrote on 11.06.2012:[10.0] "Großartiger Rookie und möglicherweise der Newcomer 2012 in Japan.  Hat seit seiner Japanrückkehr eine unglaubliche Präsenz im Ring und nachdem er zum wiederholten mal auch seine Klasse im Ring gezeigt hat verdient er unbedingt eine Aufwertung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Heroofclownswrote on 25.05.2012:[9.0] "Okada has been great this year! He looks the be the guy to lead New Japan into the future, and I look forward to it!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Nguyen2103wrote on 05.01.2012:"So er ist zurückt von TNA und sieht einfach nur Gay aus mit den blonden Haaren ! Man sieht es ja an, das er was draufhat aber bei TNA war es einfach nur ein verlorenes Jahr ! Wenn ich NJPW wäre, würde ich es wie Dragon Gate machen, einfach ein Rookie nach Amerika schicken, in die Indi-Ligen z. B ROH, PWG etc. da lern man was siehe Tozawa !  TNA suck einfach und ich hoffe diese Liga stirb einfach nur ab"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jjchiofalowrote on 06.11.2010:[5.0] "Okada needs a good deal of work to truly become great, however I do definitely a lot of potential. I hope that he develops in TNA, and actually gets a chance to wrestle on impact"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MaKnowrote on 24.08.2010:[5.0] "Die Suicide-Sache hätte nicht unbedingt sein müssen - allgemein stellt TNA aktuell sehr wenig mit Okada an, obwohl dieser an sich ein großes Talent ist. Die Vergangenheit hat uns leider gelehrt, dass sich Japaner in großen amerikanischen Ligen nur schwerlich beweisen können. Insofern hoffe ich auch, dass er nach Ablauf seines Vertrages entweder in den Indyligen auftritt oder gleich nach Japan zurückkehrt - so oder so ist Okada bestimmt eine der künftigen Leistungsspitzen von New Japan."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Rave Dragwrote on 26.01.2025:[10.0] "Tanahashi is a legend. A locker room leader. A master. A legend who saved NJPW from the gutter and elevated so many wrestlers. I want him to win one last Climax and main belt before he retires."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Quenthi3wrote on 26.01.2025:[10.0] "I guess it's time to let a comment saying how much I appreciate Tanahashi as a wrestler and as a member of the wrestling community. He is my favourite wrestler and will always be because of his work ethic, his skills, his charisma, his will to make New Japan a better place for everyone, fans and wrestlers. It all started at Forbidden Door 2022 where he competed in the main event against Jon Moxley, I saw his presence in the ring, I saw how important he was, later I discovered his evolution by watching every edition of Wrestle Kingdom and some other matches against Minoru Suzuki, Bryan Danielson or Katsuyori Shibata, I think I know how Tanahashi evolved and all I have to say is that he's the Japanese equivalent of John Cena in terms of charisma, in temps of career and in terms of fame. It's also wonderful to observe how much he has done to pass the torch to Okada while remaining relevant in upper midcard and sometimes in main event from 2015 to 2019. His later career, despite his legs issues hasn't damaged his fighting spirit, he is now sort of All Might from BNHA, he is a symbol we all know is declining, but he does his best to secure the future of New Japan while begin there for the fans as much as possible. Thank you Tanahashi-san !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: BrettThousandwrote on 06.01.2025:[10.0] "Greatest babyface of all time and a wrestler deeply influential to me in terms of exploring different styles of wrestling outside the United States."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: anarchovampwrote on 27.12.2024:[10.0] "He's the Ace for a reason. Very few people in wrestling can say they were single-handedly the reason for saving a promotion, and that describes what Hiroshi Tanahashi did for NJPW to a tee. He simply has unmatched babyface fire and next-level in-ring psychology. When people talk about how guys like Steph Curry could come off the bench as shooters until they were 50 is basically what Tanahashi is like right now with his knees, thanks to his out of this world charisma. Easily one of the greatest of all time, and possibly the greatest."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Its Clobbering Timewrote on 18.12.2024:[10.0] "The Ace of New Japan is truly a one a kind performer, Hiroshi is one of the best babyfaces of all time. He is the John Cena of Japan. Tanahashi is the biggest new Japan star ever without a doubt and has cemented his legacy as that. He's Been a top guy for 15 Years now, he's main evented multiple wrestle kingdoms won the IGPW Heavyweight Championship 8x and is also 3x G1 climax winner. He has now took over as the President of New Japan and their couldn't be a better person to lead them into the Future. I'm Sad that one of my favorites is Retiring soon but happy i got to witness the amazing charismatic performer that he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ItsAllAWorkAnywaywrote on 10.12.2024:[10.0] "Go Ace! - I think the biggest tragedy of WWE's leadership change not happening 10 years earlier is that we never got to see the Cena/Tanahashi match (or watch them tag together) that would've been beyond colossal. Be that as it may, he dutifully served as New Japan's figurehead and was their draw for the better part of 20 years time. Age and a lifetime of bumps might be slowing him down a bit now, but his time as a main event workhorse cannot be ignored or denied."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Khalid Acewrote on 14.11.2024:[5.0] "It's actually strange for me that I give this low rating for someone I believe he's the 2nd best wrestler ever and he's the reason I started watching NJPW however his current form is a 5. I would love to see him picking up his form in the rest of the year"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TreyHalowrote on 23.10.2024:[10.0] "He's not the Ace for no reason, he has a genuine case for being the greatest to ever do it, one of the absolute deepest match catalogs you'll ever see and no doubt a big part of what put New Japan on the map on a larger scale, one of the best babyfaces ever and again, one of the easiest 10/10 ratings I'll ever dish out..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: jdep78wrote on 11.10.2024:"An all time great of this sport and quite possibly the greatest babyface of all time. However, his rating is marred by his current state. 7/10"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Nootnootwrote on 03.10.2024:[10.0] "Tanahashi is my personal GOAT, and this rating reflects his overall career and contributions to the business. The older, slower man we see today may well be a far cry from the Ace of the Universe, but his work to lug NJPW out of the dark days and get the next generation of stars over cannot go unnoticed. He can work babyface and heel (watch the 2008 Champions Carnival, it's on YouTube) and seems to still have a magnetic connection with the crowd"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: jsbortswrote on 08.09.2024:[9.0] "Tanahashi was the Ace of New Japan with an ability to only do about 10 total moves, and just an old school throwback in so many ways. He exudes charisma and is an impressive physical sight. He's able to captivate an audience and is extremely memorable, and realy knows how to put a match together; however, he's not quite exceptional at any one thing in the ring and actually has somewhat average athleticism. He absolutely was the best overall package as a wrestler, but largely due to how well he was booked. To his credit, he's always been able to live up to the level of any opponent he has."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: dizziedwrote on 11.08.2024:[8.0] "Curious as to how these ratings are done. Lots of recent ratings of 10..... Hiroshi Tanahashi during his time prior to 2020, i would say was clearly a 9 or 10, but he continues to wrestle and put on terrible matches (He is probably about a 6 now). 8.0 to average Tana before and Tana now.... I do think it is good that he realized he cant do the GI Climax anymore and allowed himself to be booked as to not get into the tournament. However, He still has put himself over way too much latin 2024......getting himself booked to beat Zack Sabre Jr for the NJPW TV title at Wrestle Kingdom. That was a self serving move.... Than to lose it to Matt Riddle, the part timer who got fired from WWE for substance abuse issues....that was also pretty lame....why not let Zack take it back from you? Fortunately it looks like Zack may win G1 Climax this year... Tana please do us a favor and stay out of Title Matches....please drop the Never Open 6 man tag team titles."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Joe907wrote on 28.07.2024:[10.0] "The ace of NJPW. Highly talented and charismatic. Tanahashi is a great technician and good high flyer. He saved NJPW in the lowest they have been to their golden years 2016-2019. He's put on some of the greatest matches ever with Okada, Omega, Ibushi, Naito, and Suzuki. Living legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Willie 19200wrote on 24.07.2024:[10.0] "Tanahashi is such a revolutionary and legendary wrestler to the business who help NJPW in some of it's darkest times. I loved his IWGP World Championship reigns and his feud with Okada and Omega was even more legendary. Later in his career he's a lot slower and now doing more booking and behind the scenes work, Tanahashi is still considered to be one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Aspionwrote on 23.07.2024:[8.0] "(Sorry english is not my firtst language) I dont like him that much like the others but still its the legend"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: djones06wrote on 03.07.2024:[10.0] "Yes Tana is older now and has stepped back from regular in ring work, his career was nonetheless spectacular and he carried his company to financial and critical success in his time at the top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ReeBoyJenkingswrote on 23.05.2024:[10.0] "While his recent work leaves much to be desired President Ace will forever be one of the greatest wrestlers to ever grace the Cerulean Blue. He's had so many classics with so many legends, a true must know figure in the greater wrestling universe"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: WrestlingStuffwrote on 16.05.2024:[10.0] "I have nothing but great things to think about when this man's name is mentioned. The hero NJPW needed when the other egotistical bums decided to leave after causing damage, leading them through the dark days. Thanks to Tana, we got Okada, we got Naito, we got Hiromu, we got Shingo, we got all those great wrestlers because Tanahashi made it possible that there was a NJPW for them to perform and for us to watch. Which is why my rate here is only 10 because this man is a wonderful figure and believe me, his funeral will be bigger than Inoki's if he ever leave us. However, it hurts to see current day Tana; his body's flabby, he moves slowly, can't jump for the High Fly Flow anymore, and constantly look like he is in pain. Soon he will end up like Nakanishi if he doesn't do something about it. Please Ace, be healthy!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: OldSchoolFan3098wrote on 10.05.2024:[9.0] "The Ace has been one of the top tier talented athletes in the world of professional wrestling for quite a long time. His work in the ring has been solid for a long time. He has the ability to still put on classic matches even at this stage in his career. The only knock against Tanahashi is that his matches against bigger opponents can feel stale at some points but the story still comes across well as a fan. Tanahashi is the Fernando Alonso of the business as he continues to evolve and do wonders as he gets older. As a long time fan of wrestling, he's one of the superstars in the industry that will make me wanna watch a show that he will be on."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Oddtalkwrote on 31.03.2024:[10.0] "He's the Ace of New Japan for a reason. Incredible skill and charisma, and puts on amazing bouts like it's nothing. He can even get great performances from wrestlers thought to be mediocre. He's not only gonna go down as arguably NJPW's greatest of all time, but as one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TripleCrownwrote on 17.03.2024:[10.0] "This man saved NJPW. Let that sink in, he saved NJPW. That era of MMA in the promotion almost killed it, if it wasn't for Tanahashi then who knows what NJPW would look like today. Has had so many classic matches, great on the mic, great look, great wrestling ability, there's literally nothing more you could ask from him. I know he toyed around with the idea of going to AJPW in mid-late 2000s but he ultimately stayed and helped the likes of Okada become the next big thing in the world of Japanese pro-wrestling. Will be interesting to see how he does in a more senior role in NJPW, unless he does something incredibly stupid then I can't see my rating for him changing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: danzitorockwrote on 10.02.2024:[10.0] "The Ace of the Universe is one of the best and most important wrestlers of all time, I don't think there's a wrestler in front of Tanahashi when it comes to New Japan Pro-Wrestling, the man absolutely revitalized the company after a really bad period, and led them to one of the best eras a wrestling company has ever had. His ring skills are incredible, and he is incredibly charismatic, have a huge storytelling ability, and it's one of the best babyfaces of all time. I think it's fair to say that Tanahashi not only completely saved New Japan, but also played a very important role on keeping puroresu popular. He's now president of New Japan and absolutely deserves the job."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: BruceMarcos524wrote on 10.02.2024:[10.0] "He was called "The Ace" of pro-wrestling for a reason. During its dark days of NJPW, where Antonio Inoki tries his wrestlers to fight against MMA fighters, Tanahashi lifted its dark days and made NJPW the best wrestling promotion in the world. He has amazing charm and enough charisma to attract the audience. The way he moves smoothly is like he is dancing ballet, that is why I never got tired watching his matches. His rivalry against Kazuchika Okada may probably be considered the best wrestling feud in history because of how rich their animosity has through the years. And no matter how many times they wrestle, it never becomes stale (unlike Cena vs Orton which we saw a load of times already). Tanahashi is also the reason why North American fans flocked to watch NJPW. His 2011-2013 run will always be unmatched. The High Fly Flow move by Tanahashi in my opinion is the best picture-perfect move on all of wrestling, aside from Eddie Guerrero's Frog Splash. No doubt he is one of my Top 10 greatest of all time and deservingly so. His matches never disappoint and truly a show-stealer of his time. Because of his influence and knowledge, the NJPW board made a right decision to appoint him as president. Surely his new role will seek greater heights for the future of NJPW, but still let's see how it goes from there. Truly a once in a century talent that can never be duplicated by anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ddtprofan4000wrote on 01.02.2024:[10.0] "The ACE , The GOAT of NJPW for a reason , He carried the company during some of its darkest days and even into his older age hes still very capable to put on a good performance and is now the president of NJPW . GO ACE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: The Quick Manwrote on 13.01.2024:[8.0] "Go Ace! Not quite the man he used to be, he is still a beloved personality who always brings the joy (especially to the women. And men like me. Look at those pictures of him in aprons and tell me that isn't the look of someone who can carry a company.) Now the President of NJPW, he may be winding down his in-ring career in the near future, now being the championship holder of a title belt that gets defended in matches that go no longer than 15 minutes."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "I'll admit that I'm not a super consistent watcher of New Japan Pro Wrestling, but when I do, I adore Hiroshi Tanahashi. Here you have a guy who is a naturally likeable babyface, with a really cool look to him, amazing ring gear and one of the best frog splashes ever. He might just be the perfect "never say die" type babyface, through his spirit fighting and knowing how to gain sympathy from the fans, he has it in spades. He's the Ace of New Japan for a reason, a very organic babyface who is viewed as NJPW's version of John Cena, but done right (saying this as a big fan of the guy). He's an incredible wrestler, storyteller and worker, having clinics with the likes of Kazuchika Okada, Kota Ibushi, Minoru Suzuki, AJ Styles, you name it, he's also a master of carrying opponents to great matches no matter how bad they might be (except Mike Bennett). While Tanahashi has been slowing down these days due to his knees being in pretty bad shape, his career and legacy speaks for itself and there will never be another Tanahashi. Also, his air guitaring is cool, it's a nice touch to make him stand out from everyone else in NJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: JBoogieRom28wrote on 29.09.2023:[10.0] "I've never really watched New Japan consistently but I can tell you that Tanahashi is undoubtedly one of the top wrestlers in the entire business. Just the way he delivers moves amazes me and he can really put on a 5-Star match. He is the best in New Japan in my opinion and he doesn't age. He has been putting on excellent matches for 20 years and doesn't show any signs of stopping. He is my 2nd Favorite in New Japan But Is The Best There."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ECWCWWEAEWwrote on 13.09.2023:[8.0] "Maybe calling him the John Cena of New Japan is a bit cruel or much, but having watched New Japan since 2014 and there only being maybe 20 or 30 matches you really need to see before that time preiod to know just everything about Tana's career I dont think its going to change how I feel about him. Very good wrestler, wondrful personality, but he's a hero only good as his villians and his matches against Naito and Suzuki are what made him at his best for me. His matches againsgt Okada of course are good but there's just so many at this point that its kind of... ok yeah, we get it. But yeah, he's possibly full package wise the greatest Japanese wrestler for the sake of longevity and legacy, but purely as a wreslter and some of his character, he's lower than a few personal favorites of mine"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Bockelitowrote on 03.09.2023:[10.0] "Tanahashi is a generational talent. The best pure babyface of this generation, achieving over 15 years what most best babyfaces can only garner during their peaks. He is technically extremely sound, almost always working methodically on a limb while making it thrilling thanks to his exciting offens and all time great facial expressions. He also has the fire, the spirit of new japan, truly captivating the audience like no other. A master of crowd control, apparently fantastic on the mic and a top 5 big match wrestler, if not top 1, of all time, he is in a rare category among his peers. And beyond his tallent and capabilities, his track record speak for itself. He built a legacy worthy of his talent if not greater. He brought new japan out of the shadows, had a record breaking title reign and had some of the best matches in the greatest stretch of in ring talent of all time. And he did all this while in his mid 30s to early 40s. I personally believe he is the Greatest of All Time, and although guys like Kobashi, Okada or Flair have a stronger Argument, in my humble opinion, no one has quite reached Tanahashi going for his final High Fly Flow."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: UltimoMutawrote on 26.08.2023:[10.0] "My answer to the question of "who is the greatest professional wrestler of all time? " Is always Hiroshi Tanahashi. I had fallen out of love with Pro Wrestling for a long time until I decided to check out Wrestle Kingdom 9 and watch this guy I'd been hearing about. I thought he was the best wrestler I'd ever seen. Then, I did my homework and my opinion of him just sky rocketed. Tanahashi has literally everything; he has an incredible look, he's technical, a master of displaying emotion and telling a story in the ring, he's a great athlete and he carried NJPW on his back and into their golden era. His body of work is of the highest quality. His rivalry with Kazuchika Okada is maybe the greatest of all time. Not to mention his work with Shinsuke Nakamura, Tetsuya Naito, Kota Ibushi and many others. A real life super hero and the greatest big match wrestler ever. The king of the Tokyo Dome. Hiroshi Tanahashi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: cal9099wrote on 18.07.2023:[10.0] "A living legend. Yes he's very beat up and worn down now but he can still use his impeccable technique and psychological knowledge of the business to put on great matches. At his peak just a joy to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Aliquickkwrote on 26.06.2023:[8.0] "'Kurt Angle said I was the Japanese Shawn Michaels... I appreciated the compliment, and at the same time thought 'damn, I've been found out! ' Hiroshi Tanahashi certainly patterns himself after and feels like Japan's Shawn Michaels. It only makes sense why he's arguably the GOAT NJPW of all time. But how do I rate him as good as Michaels? A dilemma. Here's the problem: 2023 Tanahashi hasn't adapted to his dwindling athleticism like Michaels did and readjust his style. He absolutely needs to because his top rope offense looks very sloppy and uninspiring now. I hope he adapts to his older age because it's hurting his legacy. The best ever adapt over time. His current skill level is a 6 or 7. I'm adjusting my rating to an 8 to account for what he once was."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: CorpusSkiptotelicumwrote on 26.06.2023:[10.0] "Who the fuck gives tanahashi a 1? thats gotta be wilful ignorance or trolling, since he gives charlotte a 9 and sheamus a 10. Whatever, Tana's a legend and probably the greatest japanese wrestler ever based on variety and body of work. Outside the ring, he's more important to njpw than cena and reigns combined are for wwe, he basically carried through the dark ages into the golden bushiroad age. Only then, with the best roster in the world to work with, he started to have truly legendary matches. Kind of like the inverse of the best american wrestler ever Danielson, as what youd consider his peak and were most of his best matches are in the 00s and Tana's peak was in the 10s. These days he is very broken down but can still have a good match with the right oponent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: SoaKaswrote on 23.06.2023:[7.0] "Wow ok so that's the rating I was always afraid to give. YES, Tanahashi is a legend and one of the best to ever do it, but I have to rate him based on his current skills and they are pretty much non-existent. He can still tell a story of course but the way he moves and the way he executes everything just make me sad because his age has caught up to him. OF COURSE this rating will go up when he eventually retires but till then I'm not the biggest fan of Tanahashi's wrestling."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: gargoylesmainwrote on 14.06.2023:[10.0] "Have to give this man a 10 for everything he did for Japanese wrestling and the barn burners he put on in his time. Nowadays his body is clearly wrecked, he walks like his knees are made of cement, and he's very limited in what he can do, often filling out multiman matches now or popping up to lend some star power to USA events. But that doesn't change his overall body of work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Frank Shooterwrote on 02.06.2023:[10.0] "Tanahashi not only carried NJPW on his back through its worst times, but he completely put it on a whole new level. To be compared to John Cena in terms of popularity (In Japan, at least) is something that speaks loud about how influential he has been to the business. A hell of a worker, inmense Babyface charisma that solidified him as the Ace of the 2000-early 2010's era. One of my favorites of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Leo 4 Kingwrote on 08.05.2023:[6.0] "I don't really understand all the hype around Tanahashi, he is good but I don't found him incredible and as he is ageing, he is getting most limited."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: lilrorowrote on 06.05.2023:[10.0] "If Mr. Nagata was the one who supported NJPWduring the dark ages, It was Tanahashi who set out a different set of values and erased the shadow of the dark. Ever since he was a rookie, he has held the same beliefs and has shown fans the light of hope. One of his great achievements is that he was able to completely dispel the half-baked martial arts line called "strong style""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: eenfish69wrote on 27.04.2023:[10.0] "Tanahashi is probably the single most important wrestler of the 2010s. He is the key that unlocked NJPW's boom period, that elevated and worked with so many other great wrestlers to allow NJPW to achieve such heights as it did. Without Tanahashi, the flow on effects would be immense in almost every company across the world its hard to find somewhere to start or stop. Superb worker and performer, fantastic style (albeit paying for it now as he gets older), storyteller that could feed and control the crowd depending on what the match and opponent needs to achieve the most entertaining and engaging result. Smooth and technically proficient, with a good amount of athleticism and aerial ability to be able to work with anyone or any style. Truly one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TheOneAndOnlyCactuswrote on 30.03.2023:[10.0] "One of my favorite wrestlers of all-time, in my opinion the greatest IWGP Heavyweight Champion ever, and arguably the best pure babyface of all-time. While today he is not as spritely as he used to be, and his knees are in poor shape, he can still put on performances at times that remind you why he was the Ace of NJPW. Full of personality and charisma, could fly, strike, grapple and deliver solid all-around performances where you fear for him when he is in trouble and cheer for him as he rises from the bottom to the top. I adore this man and what he has done for not just NJPW, pulling it away from the dark ages, but for wrestling as a whole."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ChrisPrattAsMariowrote on 03.03.2023:[10.0] "The greatest wrestler of all time, the greatest babyface of all time, and at minimum a top 10 in-ring worker of all time in my opinion. The only thing Tana can't do is have a bad match in his career. Even nowadays when he's obviously slowing down and his body can't hold up as well as it once could, he can still go and have a great match. My favorite match of his is against Kazuchika Okada at Wrestle Kingdom 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Suzukigunwrote on 19.02.2023:[10.0] "I mean, what's to say that hasn't already been said? The guy has a 9.7 rating with nearly a thousand votes, and he deserves it. It's so high that when you see the few low scores he has, you can't help but laugh. Everyone's entitled to their opinion, but the vast consensus is that he's every bit the beloved savior of NJPW that he's known for being. A living legend in every light, one who was flawless in his prime. Wrestlers like this come around once in a lifetime, if that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Daigotsuwrote on 16.01.2023:[10.0] "A true giant in professional wrestling. Even now, he can still go. He has a charisma that transcends culture and language. You can look at Tanahashi and see an absolute star."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: benh2wrote on 12.01.2023:[10.0] "Definitely up there in the conversation for greatest wrestler. He has an unbelievable charisma that gets everyone behind him, making him one of the best babyfaces of all time. Great psychology and selling, he fires up for his comebacks really well even if he has a fairly limited offence, which I don't really see an issue with because he always makes you pop for the actual finish rather than something half way through."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: MainEventMasterwrote on 09.12.2022:[10.0] "Might be the greatest wrestler ever, his legacy in pro wrestling will be remembered forever, saved New Japan with his amazing wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Mcbolskywrote on 22.11.2022:[8.0] "I get what he did for NJPW to get them out of the dark ages but I just don't get it with Tanahashi. He puts on a good match but has a repetitive moveset. sling blade, dragon screw, high fly flow, rinse and repeat. For his overall contribution to the business I can give him no lower than an 8/10 though"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: HighFlyDeathcorewrote on 10.11.2022:[10.0] "I mean no offense when i say this but Tanahashi is truly NJPWs answer to John Cena, except Tanahashi has always been a fucking incredible worker. His recent match with Moxley was amazing and he legit has been at the top of his game for decades. He is a once in a lifetime level of being babyface, simply the greatest in my opinion. His matches with Okada are all in my top matches list. I wont waffle more. 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: DammitChristwrote on 28.08.2022:[10.0] "Hiroshi Tanahashi is one of the best (babyface) performers of all time. It's going to be an incredibly sad day for the wrestling industry once he finally retires. Until he does (hopefully not anytime soon), GO ACE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Ramiwrote on 22.08.2022:[1.0] "I don't get it, I don't see what everyone sees in him, I don't see anything special in Tanahashi, he's just about decent in the ring, he's stuff looks rough and a bit clumsy, he looks just fine, his gimmick can be summarize as air guitar, but I don't see anything special in his matches, when I started watching New Japan, all the wrestlers and matches were as good as everyone says, but I don't get why people like Tanahashi, I've seen his matches with okada, with omega, with Suzuki and none of them has been exceptional, I just don't get him"
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: fgpfriendswrote on 04.08.2022:[10.0] "Hiroshi Tanahashi is one of the best wrestlers ever created, I love Hiroshi Tanahashi gimmick, in ring performance, his moveset is just on the other level, a lot of amazing matches, truly one of the top tier ones"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Tyler72wrote on 26.07.2022:[6.0] "Hiroshi sure has made a number of contributions to NJPW over the years, but ranking him by his in-ring skill in 2021 and 2022, I've found that his moves have been quite sloppy, and almost close to making mistakes. I've expected more from him in his matches, and his matches feel rather slow. I also feel his move set a little underwhelming, and perhaps in need of a mix up."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: zags7000wrote on 14.06.2022:[10.0] "I don't know of anybody that has captured my attention during their matches the way Tanahashi has. One of the best storytellers in the ring, I'm glued to every match. He's charismatic as well and overall, a total package. He's not as great as he used to be, and his best days are behind him but still capable of a great match. His rivalry and matches with Okada are up among the best of his generation and all time. Once in a generation star who helped save a dying company. One of the most important stars and greatest stars in wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: texasyoshwrote on 02.06.2022:[10.0] "He's the Ace for a reason. Probably was the driving factor for NJPW surviving the late 00s. An incredible wrestler who is probably the best babyface of the last 15+ years. Despite his age he still is an incredible worker who has the ability to draw babyface sympathy no matter what."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: tsdenizenwrote on 02.06.2022:[10.0] "How many guys can you say basically single-handedly saved a dying major promotion? Tanahashi is that guy. A legend among legends, his work is impeccable to this day and has been a top 10 wrestler in the world for basically the past 15 years straight without dips. I can't say that about anyone else ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Wright15wrote on 25.04.2022:[10.0] "He is the master of psychology, the man who saved New Japan, the one who brought his own take on Southern Style wrestling to prominence. A good argument can be made that Hiroshi Tanahashi is the greatest wrestler ever. I have never seen anyone captivate a crowd during a match like he does. Ever since his match with Goto in 2007, he has been able to manipulate every little emotion in the fans at his whim. His record-breaking 2011 title run is a delight to watch back. His 2012 match against Minoru Suzuki is an all-time classic in selling and psychology. His legendary years-long and multi-chapter feud with Okada will be remembered a century from now. But it was Tanahashi's 2018 campaign that made realize he might be the greatest wrestler I have ever seen. At the start of that year, it was well-known that Tanahashi had a permanently damaged rotator cuff and arthritis in his knee. Everyone thought his best days were behind him. But that year was perhaps his finest. Every big match was rife with emotion, with the fans nearly in tears, practically begging for him to have one more run at the top. Suzuki, Ibushi, Okada three times, Tanahashi wrestled as well as he ever had in all of these matches, and he showed that he wasn't going to slow down. Even today, he can have a classic bout in the main event. Precious few have been so outstanding for so long."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Brutish Dandywrote on 13.04.2022:[9.0] "Tanahashi's an outstandingly charismatic performer but the majority of his main event bouts from 2012 onwards seem to fall into Same Match, Different Day. How many more times do I need to see him do the crossbody to the floor followed by the dragon screw through the ropes, the high angle Texas cloverleaf, and then the third act that consists of a strike battle, two to four slingblades, and a high fly flow double tap that invariably gets countered? Now tell me - how many of his matches did I just describe? That said, dude's great at his job and I can't fault a formula that works."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: GreatAether531wrote on 11.04.2022:[10.0] "Maybe the greatest of all time and on my personal wrestling Mount Rushmore. No one captures the spirit of what it means to be a hero better than the Ace, and the sincere love Tanahashi is able to elicit from a crowd makes him feel like a superhero walking the earth. At the same time, he's added shades of complexity to his character that reveal he's also an all-time adaptor, switching to playing the heelish veteran at times in his feud with Okada to showcase his desperation with holding onto his Ace status or his aggression when fighting Ibushi to communicate his frustration over Ibushi's lack of commitment to the company that helped elevate him. I'm sometimes critical of the bloated epics that have weighed down New Japan's match quality in more recent years, but when Tanahashi is in the position to wrestle that sort of match, nothing compares because there just isn't anyone who matches Tanahashi's energy and emotion. The fact that he's held together by duct tape and glue and still manages to produce some of the best matches of the year when push comes to shove is a testament to how incredible he is. I don't know how many more matches he has left in him, but regardless, being able to watch Tanahashi's main event run in the 2010s rekindled my love for this crazy pastime and I'll always be thankful for it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: NeoSwas36wrote on 23.03.2022:"Tanahashi helped put NJPW on the map to where they wouldn't die. What he did for the business is remarkable, and he helped develop NJPW's training morals from utter shit to decent. Love this man, easily the greatest."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Ualightningwrote on 26.01.2022:"[10.0] A true legend and probably the reason NJPW kept going in the 2000s. Charismatic, great looking, and above all a stellar pro wrestler. It's always exciting for me to watch a Tana match even in these whacky pandemic times for New Japan. A historic IWGP H/W Champ, love the ACE!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: SauzPauzwrote on 22.01.2022:[10.0] "The ACE of New Japan. The first time i ever saw a Tanahashi match i could feel the star energy and charisma he had and plus he was good in the ring as well. A GOAT of professional wrestling. Evrey single aspect in wrestling Tana checks and it's impressive. Even though only being 45 he still great in the ring. A 10 for me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: GriffinXwrote on 20.01.2022:[10.0] "The man who saved New Japan and carried it to its latest golden era. Even know with year of wear and tear on his body he can still turn back the clock and but on a classic"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: rhys4peacewrote on 11.01.2022:[10.0] "Hiroshi Tanahashi, the once in a century talent, the ACE of New Japan Professional Wrestling and the heartthrob of thousands of men and women across Japan for the last 20 years. I can't say much about him that hasn't already been repeated ad nauseam, but I'm going to anyway, because Tanahashi deserves each and every bit of praise he has ever and will ever receive. Tana can captivate and manipulate a live audience like a potter moulds clay; his babyface comebacks in matches elicit massive roars and stamping from the crowds, and on the rare occasions he plays he heel, he has the audience booing him to hell and back. And on top of that, he's also one of the best in-ring workers in modern history. Equally skilled in bombastic showboating and gritty mat based wrestling, there's not a style or opponent that he couldn't match in his prime. Unfortunately, these last few years age and injury have swiftly crept up on him, but even in his current battered state he still stands head and shoulders above his peers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: BradJohnson34wrote on 06.01.2022:[1.0] "Despite how beloved and critically acclaimed he is, my friends and I have never understood the hype around Tana. For me, it's his move-set that really bores me--splash, dragon screw, the slingblade, and not much else. I also find his character to be static."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: NoSellwrote on 21.11.2021:[10.0] "One of, if not the greatest in ring perfomer of all time (at the very least top 5) and the man that led NJPW out of the dark mid 2000's. He's 45 still putting on classics and his rivalry with Okada is absolutely legendary. Love him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TheBeardedBaronwrote on 14.11.2021:[10.0] "I legitimately don't think there's a single aspect of wrestling that this man isn't simply outstanding in. One of the three greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: IBladeDailywrote on 20.10.2021:[10.0] "An absolute legend in his own time that will be remembered for decades after he retires. Hiroshi Tanahashi is one of the greatest in-ring workers, storytellers, white meat babyfaces and ring generals in the history of this business. His connection with fans worldwide is incredibly special. He's had all-time feuds with Kazuchika Okada, Shinsuke Nakamura, and Katsuyori Shibata. His Wrestle Kingdom main event against Kenny Omega in 2019 was nearly perfect. His G1 final match against Kota Ibushi in 2019 was the same. He can take a loss without losing any steam at all and has been extremely unselfish in putting over younger talent. There's only a few people with his accolades or abilities in the history of wrestling. He belongs in the GOAT conversation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Stern Jwrote on 06.10.2021:[8.0] "Ok I'm in the minority on this but i think Tanahashi is overrated BUT this should not detract from how good he actually is, like years ago during the late 2000s/early 2010s he was overrated and booked to be New Japan's John Cena (there's a reason LOL TANA WINS became the meme it was back in the day) but as he grew older and more experienced he showed that he honestly had mastered the basics to a point where even his usual routines have has so many variations that i can't in good faith crap on the man like i did when he was SUPER TANA. Hiroshi Tanahashi, i respect you and even though it took me a better part of almost 2 decades of watching you go from over pushed buff guy who had some of the dullest matches imaginable to being a master of subtleties and managing to even make your weaknesses non existent at this point says alot about how people can grow and change for the better and overcome preconceptions and learn...though i was still salty that one time he beat Okada when clearly it was Okada's time but hey ho i'm not allowed to critique GEDO's booking right? Tanahashi deserves all of the 5* matches he's had :)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: KENTAfanwrote on 04.10.2021:[10.0] "It? s difficult to actually articulate just how good Tana is, words can? t really do him justice. He? s indubitably one of the greatest wrestlers of all time, I don? t think that? s even debatable, he is quite simply a legend. The fact that he is STILL as good as he is, putting on 5* classics at 44 like it? s nothing, is mind blowing. Solid contender for GOAT"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: No Onewrote on 06.09.2021:[10.0] "One of the greatest professional wrestlers of all time. One of the greatest in-ring performers of all time. The ACE of NJPW. Has the aura of being the ACE as well. One of the greatest Babyface wrestlers of all time. One of the most accomplished wrestlers of the 21st Century. Legendary IWGP Heavyweight Champion. Was the greatest IWGP Heavyweight Champion of all time, until his records were broken by his legendary rival, Kazuchika Okada. Has held every modern NJPW Championship Belt currently available. Is a 3x G1 Climax Tournament Winner. Has put on matches that will withstand the "Test of Time". One of the best Ring Generals of all time. Has given his heart, body, & soul to NJPW and his body has paid a heavy price for it, as he had suffered many well known injuries. Was an outstanding all-rounder wrestler who became one of the best formulaic wrestlers, due to having to adapt his style because of the rough shape his body is in. At one point in time, was considered the very best in-ring performer in the world (from the late 2000's to the early 2010's). Legendary rivalry with Kazuchika Okada. The most reliable wrestler in NJPW history. Innovated The Sling Blade. Is still one of the top in-ring performers in the world over the age of 40. Highly charismatic. Naturally charming. Has spent his entire career with NJPW, and really helped them out of dark periods. Extremely loyal to NJPW. A Living Legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Kungwrote on 19.08.2021:[10.0] "The man who with Daniel Bryan made me the pro wrestling fan I am today. The Ace of New Japan is one of the greatest to ever lace up a pair of boots."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: FAZEDandCONFUSEDwrote on 11.08.2021:[10.0] "Might be the greatest wrestler of his era, and the case is there for all time as well. To this day he is still amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Drachmwrote on 26.07.2021:[10.0] "A living legend. Even with a beat up body and growing older he can still perform at the highest level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: BrayanLaPrewrote on 15.07.2021:[10.0] "A GOAT candidate with quite a few arguments in his favor. Hiroshi Tanahashi helped revitalize New Japan Pro Wrestling and has overcome a slew of injuries to prove that he can still hang with the best of the new generation. An icon of the industry with countless classics under his belt, Tanahashi is the epitome of a five-star wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: JMercwrote on 10.06.2021:[10.0] "One of my absolute favorites in Japan and the guy responsible for revitalizing Japanese Pro Wrestling in the past decade."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: BlakeFR37wrote on 02.06.2021:[10.0] "The Ace of NJPW. He is one of the wrestlers who makes me love Puroresu. However he's in singles action, or in tag team, that's always a pleasure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: JBWrestlingwrote on 18.04.2021:[10.0] "Hiroshi Tanahashi will go down as one of the greatest in ring performers in the history of pro wrestling. He also saved NJPW from their dark era in the mid 2000s. Even as he is in his 40s he still puts on five star matches. The day he retires will be a dark day in pro wrestling, and will be remembered as one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: math1823wrote on 05.04.2021:[10.0] "If we only speak about active wrestlers, Tanahashi is probably the best of all time. His in-ring is amazing, his promos are always fire and most importantly, this guy can tell a story like no one else and make everyone feel emotions, from his biggest fans to the people who discover him. He is probably top 5 all time, I only see Manami Toyota, Kenta Kobashi, Mitsuharu Misawa and Toshiaki Kawada who were once on his level. He has a few more years to wrestle, and even if he currently holds the NEVER title, I want him to get his hands on the new IWGP World Heavyweight title soon or later, because it would be symbolic to have the man who, alongside Okada, took the former belt from the bad situation it was in with Inoki-ism and stuff like that to the most prestigious belt in the world have that new belt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: marexcelwrote on 21.03.2021:[7.0] "Niemand wird leugnen, dass Hiroshi Tanahashi ein fachlich sehr guter Wrestler ist. Das möchte ich auch nicht, aber darüber hinaus sind da für mich doch ein paar Lücken dabei. Sein Charisma ist unstrittig, aber genauso festgefahren ist dann eben auch sein Charakter. Da tut sich nicht viel und in all den Jahren, die ich New Japan verfolge, wird er immer langweiliger. Für mich ist er kein Face, dem ich zujubeln würde. Seine Matches haben alle ein Schema und sein Moveset langweilt mich meistens etwas. Natürlich bleibt er ein guter Wrestler, aber ich kann mit ihm eher wenig anfangen - trotz seiner Klasse."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ExcitingProWrestlin3wrote on 16.03.2021:[10.0] "Tells a story, sells beautifully, lead a company out of it's dark ages with a guy like Giant Bernard and the rest of the New Japan roster, fluid in the ring, connects with audiences naturally, doesn't seem forced, has god given athletic prowess, amazing character work at his peak, WHAT AN ABSOLUTE LEGEND! Go Ace!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Bushidospirit22wrote on 16.03.2021:[10.0] "Arguably the best wrestler of the past 15 years. In addition to being so fluid in the ring, there haven't been many wrestlers in history who have been able to connect with an audience like Tanahiashi. His run as NJPW ace has been so iconic, most overlook the cocky heel work he did early in his career which is some of the best character work I've ever seen, and made me a fan immediately."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: rainmakerpunkwrote on 11.02.2021:[10.0] "The man that carried NJPW and kept it alive in its darkest days and the also one of the main reasons it thrives today, NJPW for the last 8 or 9 years has been the best promotion ever, and you could thank the ace for that, he's been having 5 star matches for many years now, he can still have them now, he has a great moveset and each move in that moveset he has truly mastered, that plus his unmatched charisma and GOAT tier psychology leads him to be a in-ring master, he's a very lovable face and is a top 5 GOAT"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Luna100wrote on 08.02.2021:[10.0] "The man who I first gravitated towards when I first started watching New Japan, when I first started watching it was for Omega vs Okada at Wrestle Kingdom, at age eleven I watched it with my dad who had seen that Omega vs Okada got 6*, he obviously wanted to watch the match, but I suggested we might as well watch the full show and it was great, and I got to his match and I saw Tanahashi; he looked like a star and I took an instant liking to him. Then I saw Naito, he portrayed his uncaring nature well and came off as arrogant and was very clearly the heel, especially as I saw him drag around the Intercontinental belt, that action disgusted me and when I heard the commentary team that Naito was planning to get rid of the IC belt I was outraged ( I cared more about the IC belt then than now after it being joined at the hip with the world belt ) and although I did not know the belt I knew I did not want to see him go. It was one of the clearest heel face divide in the whole show, he also turned out to be one of the greatest babyfaces of all time, of course it was a great match and he became my favourite wrestler in the company, even above Okada or Omega, despite not being able to understand what he was saying and I don't think they had translation either, he was still charismatic as hell. Although I eventually started to prefer other wrestlers above him, I still loved his work, I gained even more respect for Tanahashi as I learned he was one of if not the most important factors in making sure New Japan did not go under, it is sad to see him go down the card and become like Makabe or Nagata, he is such an amazing worker and I will always have him as my first NJPW favourite."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Burninghammercriticwrote on 01.02.2021:[10.0] "One of the most influential wrestlers ever. He is a master in every field that makes a wrestling match great. He helped put NJPW on the map and make it the go to company for current quality wrestling. The guy is just incredible. Id give him 11 if I could."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Thebossofthegym04wrote on 04.01.2021:[10.0] "Greatest wrestler ever. It is a fact. Tanahashi is an incredible person who commands immense respect. His contributions to pro-wrestling and NJPW in particular are enormous. He is an example of the perfect wrestler. Charisma, ring-skill, mix-skill, gimmick, storytelling are all at the highest level. He puts his soul into every match and squeezes the maximum out of the opponent, often showing the opponent on a good side. thanks to these qualities, he is able to show a good match with any opponent. Of course it's a pity that we are witnessing the decline of his career, but I really hope that at the end of his career he will be given the title rain. I will tell my children and grandchildren about this incredible person."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: michmoose21wrote on 26.11.2020:[10.0] "The ACE is a top 5 wrestler of all time in my opinion. He wrestles with so much psychology and is so amazing in the ring. You also can't forget how great he is outside the ring. Class act. He does a great job making his matches feel like a big deal. He always sells what he is supposed to and takes the right approach to the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: medousewrote on 29.10.2020:[10.0] "It's hard to find another wrestler who literally lives and breathes pro-wrestling. The hardest working guy in business and the perfect baby-face. There is no man on this planet who could hate or even dislike this guy. The true face of NJPW and because of him I started watching this company."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Scott Kobayashiwrote on 25.10.2020:[10.0] "Tanahashi is just someone who if you give anything less then a 10, then you are doing the man a disservice. With all the respect in the world to people like Nakamura and Nagata, it was Tanahashi who brought New Japan Back. And in the process gave excellent match after excellent match. Easy 10. EDIT: The BUSHIROAD main eventer should hang there head in shame. I am talking to you Tetsuya, Kota, and especially you Kazuchika, because this man is outperforming all of you. In 2020, Ibushi and Naito have been really good and Okada has been fine, but Tana has been excellent. He is still a 10 performer no matter what the guy under me said. Him, Shingo, and Suzuki are the best in New Japan this year. The 38, 43, and 52 year old are the best in the company. Wow."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: STARDOGCHAMP90wrote on 21.10.2020:[8.0] "The Ace has carved his spot in NJPW history as one of the most memorable IWGP Heavyweight champions of all time. He's been at it for years and hasn't stopped. A former 8 time IWGP Heavyweight champion, 2 time IWGP Intercontinental champion, and 3 time Never Openweight 6 Man Tag Team champion. Not to mention the gold he's won outside of New Japan. Nothing but respect for Tanahashi."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: elcompactowrote on 19.10.2020:[10.0] "One of the best competitors of this age and, indeed, of all time. His connection to the fans, his near peerless storytelling abilities and ability to remain relevant and consistently excellent in everything he does (even with a series of injuries that would've taken many to the filler matches on the card) has more than earned him a spot in the conversation for all time best. Deserving of nothing less than a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TOUGH AND HARDwrote on 03.10.2020:[10.0] "To say the current generation wouldn't have the platform they do without the near-peerless excellence and tireless sacrifices of Tanahashi Hiroshi is not a matter of opinion, it is an economic fact. NJPW's revival (from its late-2000s near-bankruptcy) and ascent to the second largest wrestling company in the world (and subsequent Bushiroad acquisition) was shouldered by this great man. A growing influx of current fans to NJPW seem more interested in raw work-rate and athletic diversity. It is precisely this basis that names like Okada are placed alongside Tanahashi as the "greatest". Tanahashi is so much more. Tanahashi is natural (superior) draw, he has presence, magnetic charisma, dynamism, has consistently kept himself in amazing shape (even despite his accumulation of serious injuries), radiates passion, can have great matches with virtually anyone (a distinction often too liberally thrown around), is dominant enough to be a threat but vulnerable and sympathetic enough to hold your interest and honor his opponent; he can work face or heel, has arguably the greatest psychology in wrestling history, and has a relationship with the fans rivaled only by the likes of Kobashi Kenta. His speech-closing slogan is literally "I LOVE YOU! ", and fans revere him, literally reaching out to kiss and hold him, wiping the sweat from his brow, children hug him, and he's loved by all demographics and age groups. Tanahashi is so much more than a catalog of impressive matches. Tanahashi is a ring general who doesn't need to lean on a drawn-out, formulaic approach, nor need an opponent to keep him interesting. He looks and feels like a champion, and even in his mid-40s is still voted (by fans) as the most popular wrestler in Japan. Tanahashi has said that it was the bodily sacrifices of men like the Dynamite Kid who inspired him to become a professional wrestler, and that he would gladly sacrifice his body to inspire the next generation of talent. Tanahashi is a natural leader, and has done far more than merely inspire a generation, he has transcended his own (such that Ibushi Kota literally refers to him as a god), and is the gold standard to measure others against. He is the most complete professional wrestler of all time, was the victor of the greatest bout I've ever seen (G1 28 Finals), and is the only man I would place higher than Kobashi Kenta. Tanahashi Hiroshi is the greatest professional wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Okaro143wrote on 21.09.2020:[10.0] "The Ace of New Japan, I can't deny how good this guy is. His matches with Okada was the reason I started watching wrestling again. He was the one that saved New Japan during their darkest moments. His rivalry with Okada is considered by many and myself as the greatest rivalry in pro wrestling history. One of the best wrestler not only in New Japan history but also in all of professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ERockwrote on 12.09.2020:[10.0] "One of the greatest wrestlers of all time. Endless charisma and in-ring ability. Even with his body breaking down he is capable of pulling you into his matches with emotion and drama. Truly a 1/100 Talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: hassan01wrote on 10.09.2020:[10.0] "The ace for a reason . His contributions to wrestling are worth praise . Very hardworking and a very very charismatic wrestler . Other than that his in ring work is very enjoyable and worth a whole lot of appreciation. He has given the fans some of the greatest wrestling matches in Japanese wrestling history . Even when he retires he will be remembered as a wrestling icon ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Ma Stump Pullerwrote on 18.07.2020:[10.0] "Tanahashi will be likely considered after his eventual retirement to be one of the greatest wrestlers in Japan ever. The guy literally held New Japan on his back for years on end while the company went through recessions, management issues, and horrible booking. Despite all of this trouble, the guy managed to make multiple amazing matches with whoever came into the ring with him. Despite his obvious physical gifts, Tanahashi is also able to bring a masterful understanding of physical psychology, and can really act as both the beloved hero or the disrespectful antagonist. He's a great seller as well, which adds to how successful his babyface run became over the years. He can make literally anyone he's facing off against look like a million bucks. Granted, while he is starting to visibly slow down (being years beyond his prime at this point considering his many injuries, a consequence for going all out for years) he is regardless still able to employ his skills and experience in the ring to still catch that magic he had years ago. Some of his early stuff isn't the greatest quality wise due to him not being experienced enough, but the vast majority of his career is full of solid, consistently great matches with all kinds of wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: jboyaquarwrote on 26.06.2020:[10.0] "One of the best-ever Babyfaces who, over-the-years, steadily picked-up his game into one of the most persuasively emotional competitors ever. Though physically he's been on-the-decline since '14, noone captures the gleeful boyish enthusiasm for this sport like this dependable twenty-year NJPW veteran. By the start of NOAH, Misawa already looked like a miserable, though obliging, curmudgeon. Similarly, Tanahashi can't fly/move-about like his past, but as his company's top draw, he has never lost his love for the game. My first-ever live Tanahashi experience was KOPW '11 in a ballet masterclass against Naito (who has also compensated well for his physical shortcomings, ) and even high in-the-rafters at Koukigan, not an enviable location, his glow was undeniable and made me forget how far-away I was. Whereas Jericho had to become a rock star to become a true professional wrestling top-draw, Tana is a rock star as a pro-wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: VillainClubwrote on 12.05.2020:[10.0] "Der Mann der mein Interesse am Wrestling wieder geweckt hat und mich nach wie vor fasziniert. Seine Matches sind, trotz seine kaputten Körpers, immer noch sehr gut. Zudem gibt es wenige die ihm im Selling das Wasser reichen können. Einer der besten Wrestler aller Zeiten. Tanahashi hat New Japan wieder aufgebaut in dem er schlicht aus jedem das beste rausgeholt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Espio1332wrote on 20.04.2020:[10.0] "When I first got into New Japan Pro Wrestling in mid 2015, Hiroshi Tanahashi was the man that really captivated my interest and truly showed me just how good NJPW is, causing me to just binge-watch his matches and as a result I learned more of the roster that way. And the more I learned about him and his role in the company, the more my respect for the man grew. He is a truly loyal company man and one of the greatest wrestlers of the past decade. While right now he is definitely past his physical prime and is held together by sheer willpower, his psychology and charisma more than makes up for it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Cleanerwrote on 03.04.2020:[10.0] "Hat mittlerweile wirklich Legendenstatus erreicht und liefert immer immer weiter grandiose Leistungen im Ring ab. Ich krieg gute Laune, wenn er nur die Arena betritt und sobald der Gong geschlagen ist hat mich "The Ace" schon in den Bann gezogen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Oregano Jacksonwrote on 16.03.2020:[10.0] "Okada certainly couldn't have carried NJPW to such heights without the foundations established by Tanahashi. Through his charisma and athleticism, The ace helped NJPW rise to prominence by constently putting on classic bouts with literally everyone with his matches with Okada being some of the absolute best of the decade. Although injury and age have slowed him down physically, he's never been more psychologically sound and now rivals Shawn Michaels as perhaps the greatest in-ring storyteller ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: jdawgwrote on 16.02.2020:[10.0] "He's just a favorite. The drama to any match he's part of is automatically elevated to super importance. Great look and moves well despite being in physical decline. Great wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: AndoCommandowrote on 23.01.2020:[10.0] "His decades-long body of work and influence on NJPW and modern Japanese wrestling makes a pretty compelling argument for the title of "Greatest Of All Time". Match structures that age like fine wine, an undeniable charisma in his presence and masterful understanding of psychology bleeding into every one of his matches. My pick for the Wrestler of the 2010's (Okada is a close 2nd)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Denpa Popewrote on 07.11.2019:[10.0] "From up and comer to prime Ace to the Legend we know now, there was no time Tanahashi was not great. Old NJPW, NOAH, New NJPW. Consistently the smartest worker with the deepest understanding of psychology, able to go at it with just about anyone and in any style. There is barely a wrestler that Tanahashi crossed roads with at this point that he did NOT have a classic match with. Though he slowed down the last couple of years, you will barely found anyone who did that as gracefully as the once in a 100 years talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Iceqwrote on 09.10.2019:[10.0] "Die Bewertungen sprechen für sich. Hat New Japan gerettet und danach Jahrelang weltklasse Performances gezeigt. Tanahashi hat natürlich in den letzten Jahren ein bisschen nachgelassen und der einzige Grund ist einfach das er älter wird. Trotzdem zeigt er auch noch jetzt geniale Matches und charismatisch ist er immer noch. Wenn es um die besten Babyfaces aller Zeiten geht gehört Tanahashi eindeutig zu Diskussion dazu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: taabr2wrote on 31.08.2019:[10.0] "Tanahashi is one of the most smartest workers in wrestling today. Probably the nest storyteller in the ring that is still active. Tanahashi is amazing at drawing sympathy from a crowd and getting them to rally behind him, however on rare occasion Tanahashi can play heel as well if need be. His run as Ace of NJPW is one of the most important periods of the promotions history, the company was near bankruptcy and Tanahashi lifted the company back into the number one spot in Japan. Now NJPW is doing the best business it ever did with Okada and Naito on top, both of whose careers was made in large part because of their relationship to Tanahashi, NJPW would not be where they are today without him. Not only was Tanahashi a top drawing level Ace but an Ace who was able to secure the future after he was gone, not many top stars can actually say that. Hiroshi Tanahashi is a wrestling legend and one of the most important figures in wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: KyleEnjoysWrestlingwrote on 30.07.2019:[10.0] "Where I think Okada is greatly overrated today, I do not say the same in regards to Tanahashi. He is a great storyteller in the ring & has a vast moveset. Has had heaps of classic matches against a plethora of different talents on the NJPW roster. And he has the best hair in wrestling today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: NEVERoverweightChampionwrote on 01.07.2019:[10.0] "A legend and one of the best of all time. Charismatic, beloved, great physique, awesome music... he is the greatest hero, the perfect babyface. He knows how to put a match together better than anyone, how to make every move feel important, he is one of the best (if not the best) in psychology. His moveset can work in every dynamic, face or heel. Even past his prime and in poor physique condition he can still put some legendary match from time to time and that's a testament to the genius he is, at the point that 2018 was probably one of his best year because he had one of the hottest underdog story I've ever seen. There is definitely nobody like The Ace, he is the soul of New Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: PuroresuLoverwrote on 14.06.2019:[10.0] "Another wrestler that I forgot to rate. Hiroshi Tanahashi is the personification of the word "perfect", he has everything to be one of the GOATs, he knows everything about wrestling, he can do everything! He is an born babyface, but can portray an awesome heel (his matches out of NJPW proves my point). Tanahashi really is the Once in a Century Talent, he has everything to be any company's Ace."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: SrHunterwrote on 26.05.2019:[10.0] "There is not much to say about this guy, just one of the greatest wrestlers of all-time and one of my favorites, simples as that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: My Bloody Doobwrote on 20.05.2019:[10.0] "There was a time when I was over Hiroshi Tanahashi. I used to think he kept winning matches that he either didn't need to or shouldn't have won. What I'm trying to say is there was probably a point where he should've stepped out from the spotlight already, or at least I thought. The character of Tanahashi presents himself as perfection, yet I would call him one of the most flawed wrestlers ever in regards to character work which is why he eventually became one of my favorite wrestlers ever. His rise to the top was by no means an easy one. From his wars against his fellow musketeers Shibata and Nakamura, to his wars with previous generation rivals like Nagata, Kojima and Mutoh to rivals after his generation like Okada and Naito. It really felt like every step of his long and painful climb to the top meant something important in the history of Puroresu. Along the way he had to step on and over people even fighting against his own hypocrisy to achieve the title of "Ace". Eventually it clicked in my head that there wasn't anyone on the roster who could've held up New Japan on their shoulders with such grace like this man. In regards to his wrestling skills, he just understands completely what it means to just "do" good pro wrestling. I don't think this comment will ever do justice to how much I appreciate this man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "The ace! Tanahashi has always been a top star in NJPW and at 42 he still puts on amazing matches. He has an huge connection to crowds and his charisma shines bright in everything he does."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: AJStylopzwrote on 06.04.2019:[10.0] "Tanahashi truly is one of the GOATs of the Puroresu scene. One of the most iconic wrestlers ever. I love his old school style of wrestling, he is a good seller for the most part, he can get to higher paces during a match, busts out some of the nastiest looking suplexes I've seen, has a tremendous finisher, he is truly one of the best. This man deserves nothing less than a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: zephyrwrote on 16.03.2019:[10.0] "The ace of the universe. The once in a century talent. In a rather interesting twists, these aren't just nicknames for a wrestler - they're factual statements. This man pretty much singlehandedly carried NJPW through and out of its darkest era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Oliver95xwrote on 01.03.2019:[7.0] "Ich mag Tanahashi. Er hat Charisma und auch soweit gute Matches. Jedoch finde ich ihn im Ring einfach zu langweilig. Ich habe das Gefühl das seine Matches immer die gleichen sind.  Als würde jedes Match mit ihm den gleichen Aufbau und die gleiche Struktur haben. Es ist einfach immer das gleiche."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Aurtletheturtlewrote on 24.02.2019:[10.0] "An underdog for the mantle of greatest of all-time. The Ace of the Universe is possibly the greatest babyface of all-time as he perhaps the only one to be universally loved throughout the entirety of his run. With endless charisma, boundless talent and unbelievable heart! It's easy to see why he is an 8 time IWGP World Heavyweight Champion when he continues to this day, in his 40s, to perform at an extrodinary level. One of the most important wrestlers in Japanese history. GO ACE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Kevin41182wrote on 14.02.2019:[10.0] ""Tana" is definitely up there for the best workers in the history of puroresu. the "ace" really knows how to put on a stellar match with anyone he's in the ring with. Not to mention he literally pulled New Japan up from the dirt that Inoki laid."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: LandonRyanWyattwrote on 27.01.2019:[8.0] "Definitely Japan's greatest sensation of this generation. Has cemented his place in wrestling history in the most positive of ways."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ReedPryorNYwrote on 17.01.2019:[10.0] "Hiroshi Tanahashi is THE big match wrestler of this generation. If you give this man a main event, you're only going to get an installment of something that is as epic as it is unique. He has worked all-time classics with so many of New Japan's finest, it is scary to think of the current match-ups he can have for the IWGP Heavyweight Title if New Japan sticks with him for a good amount of 2019. Just to name a few great matches-vs Minoru Suzuki on 10/8/2012... vs Kazuchika Okada on 4/7/2013, 1/4/2015, 1/4/2016, 8/12/2016, 5/4/2018, 8/10/2018, 9/23/2018... vs Tomohiro Ishii on 8/2/2013... vs AJ Styles on 8/14/2015... vs Shinsuke Nakamura on 8/16/2015... vs Kota Ibushi on 11/5/2017 and on 8/12/2018... with Will Ospreay vs Kenny Omega and Kota Ibushi on 12/15/2018... against Kenny Omega on 1/4/2019."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Cibswrote on 13.01.2019:[10.0] "For me Tanahashi is the last great legend of New Japan. Incredible wrestler, his storytelling and psychology are pure gold to the degree that it can become really dramatic to see him up in the ring thanks to the way he gets you involved. His matches don't need inflated ratings to feel epic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: KINGwrote on 09.11.2018:[10.0] "The Ace of the Universe, his ability to deliver epic matches with everyone is almost scary, he will bring the best out of everyone, able to be the suffering babyface against Suzuki but also the angry veteran against Ibushi, there's nothing he can't do except being a heel because nobody would dare boo him, but against Okada he proved he can be a bad guy as well, explosive and strong, with his power declining he constantly improved when it comes to psychology, at New Beginning against Suzuki he looked injured for real. A real pop icon in Japan, the Japanese not John Cena, but Hulk Hogan, but talented lol"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: RatingsMachinewrote on 15.10.2018:[10.0] "Hiroshi Tanahashi is so great that despite his physical limitations, he is still capable, through storytelling and psychology, to have incredible matches. Because Tanahashi can't do everything he used to, some people have decided that that means he isn't as a good as he used to be, but nothing could be further from the truth. Hiroshi Tanahashi is still one of the best going, and a certified legend and hall of famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Speeblewrote on 23.09.2018:[6.0] "I never really got Tanahashi when I first started watching NJPW, but I wanted to hold off judgement until I'd seen enough big matches. A couple years later, I still don't get him. His "charisma" feels really forced and the air guitar gimmick is not endearing at all. Among the elite wrestlers in NJPW, his matches often come across as the most formulaic. I can't get into a match where I can practically predict the whole thing beat-for-beat. At least Okada tries to mix up his finishing sequences. Tanahashi's contributions to the business are undeniably important, but that doesn't make me enjoy watching him as a performer any more."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: KOR KOMBATwrote on 19.08.2018:[10.0] "The best, period end of story. The Ace has been amazing for as long as I have been watching NJPW. When him and Okada get in that ring they can do no wrong."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ohnoeswrote on 31.07.2018:[8.0] "There's a lot that I like about the Ace. His music (both the old and new), his entrance, his poses, his attire, the air guitar, his likeable character, his hair. And yes, I like his in-ring work... but for the life of me, I can't figure out why I don't like him more than most. He can put on consistently good matches with almost anyone, and has had several memorable feuds and matches with the biggest names in New Japan over his lengthy career, but I usually go away from his matches not knowing what to say about them. I sometimes forget parts of his matches, and what he did in them besides his signature moves. His forearm exchanges are usually pretty weak-looking, or at least they do when the likes of Shibata, Ishii and Suzuki are there to make the entire venue hear the impact. He's deeply rooted in his own approach and philosophy to puroresu, and while I like that from Shibata, I unfairly like it less from Tanahashi. Regardless, I'm still a fan of him, and deeply respect everything he's accomplished. Tanahashi is deserving of all the praise he's given, and all the accolades bestowed upon him. He did carry New Japan when it desperately needed someone to do so, he's been such a key player for so long. When he finally retires (whenever that might be), although there are future 'aces' that will come along to carry New Japan, there won't ever be another 'Ace' quite like him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Wrestling Foreverwrote on 11.06.2018:[10.0] "Tanahashi ist immer ein Granat für fantastische Matches. Er hat es einfach drauf. Sein Wrestling Style ist unfassbar sauber und éinfach nur klasse. Sein Einmarsch ist immer ein Highlight, High Energy ist so ein klasse Song. Er ist unfassbar charismatisch, total sympatisch und einer meiner absolut Lieblings Wrestler aus Japan. Schon jetzt eine absolute NJPW Legende. Edit: 11. 06. 2018 Hiroshi sieht man nun sein Alter an und er hat schon mit einigen Verletzungen zu kämpfen trotzdem hat er es immer noch drauf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Makai Clubwrote on 02.06.2018:[10.0] "How I haven't rated Tanahashi yet, I do not know. Hiroshi Tanahashi is no doubt one of the best wrestlers in the past 20 years. Someone who has filled loads of roles, ace, passer of the touch, someone who makes other look good. He can do it all and more. Highly charismatic and the way he shows it off within the ring and in presence is something to behold. Amazing wrestler,  basically popularized the modern day new japan style. Great pacing, great structure and psychology towards all of his matches. Sometimes he spams the HFF too much and has a tendency to no sell but he makes up for it in other ways. Very good at building drama and tension within his match and has a way of sucking you into the most tamest of near falls. Saved New Japan in the mid 00's and helped usurer in a new and very successful era for New Japan. GO ACE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: InactiveGuruwrote on 01.06.2018:[8.0] "Tanahashi is known as the Ace of Japan. He is incredible in the ring and he just radiates charisma. I am hoenstly baffled why I don't like him more than I do."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ACRogerwrote on 30.03.2018:[10.0] "At a time when Japan was lacking legitimate stars, Hiroshi Tanahashi broke out in NJPW as the Ace and biggest draw in the company. His ability to connect with the crowd and draw them in is fantastic. I don't think there is anyone in the last 10 years that is better at the psychological aspects of wrestling than Tanahashi, his timing and execution is near flawless, even when racked with injuries. His rivalry with Okada brought the company back into prominence and completely reinvigorated it. There really is no aspect of wrestling that Tanahashi doesn't excel at: Promos, wrestling, charisma, crowd connection, he can do anything. He absolutely deserves all the credit for saving NJPW during the dark days and making them the best wrestling company in the world. There have and will be wrestlers who draw bigger crowds for NJPW but it none of it would have been possible without the Ace of the Universe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Gravelordwrote on 23.03.2018:[10.0] "When the novelty of Inokism began to wear off around 2003 and NJPW was left the verge of bankruptcy by 2006, many onlookers within the wrestling world were already signing the death certificates for the promotion. Even when Yuke's purchased 54% of the company and forced Antonio Inoki out, NJPW was still left without any credible stars, as the Third Generation (Yuji Nagata, Hiroyoshi Tenzan, Manabu Nakanishi, and Satoshi Kojima) had either been embarrassed and marginalized in favour of MMA fighters during Inokism or, in Kojima's case, seen the writing on the wall and left the company in protest. If NJPW was to rebuild, it needed a transcendent star akin to the famed Three Musketeers (Shinya Hashimoto, Keiji Mutoh, and Masahiro Chono) who carried NJPW to mainstream success during the 1990s. Enter Hiroshi Tanahashi. He has often referred to himself as a "Once in a Century Talent", a bold claim, but once you watch his body of work, you'll quickly come to realize he ain't bullshiting. Tanahashi is one of those rare (you might say, a Once in a Century) talents who excel at every aspect at pro wrestling, be it in-ring ability, promo skill, unique look that makes him stand out, or even a memorable entrance. However, Tanahashi's best and most important quality if his immense charisma -- that is, his ability to not only draw people to him, but to inspire and evoke emotion from fans and detractors alike (don't believe me? Just watch his match with G1 Climax match with AJ Styles; by the end, his selling has fan crying). After all, pro wrestling is all about drawing fans to come to shows, buy merchandise, and purchase subscription services. Tanahashi is not only the man most responsible for reinvigorating interest in NJPW, but he has managed to endear the product to a once untapped demographic in Japan: female fans. Tanahashi has not only cemented himself as the most important Japanese wrestler of the past 20 years, but also as one of the greatest wrestlers of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Headlockwrote on 14.03.2018:[10.0] "Tanahashi hat eine glorreiche Karriere, voller sagenhafter matches, intensiven Rivalitäten und ja beinahe schon legendären Titel Regendchaften. Tanahashi ist ein sehr guter Wrestler, der den Look und das Charisma eines Mega Stars hat. Wenn ich das Wort "Ace" höre dann kommt als erstes CIMA in den Kopf aber dann kommt Tanahashi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TheLoudMouthwrote on 08.01.2018:[10.0] "Einer der besten, glaubwürdigsten und authentischsten Seller weltweit, der sich seit gefühlten fünf Jahren auf dem Zenit seiner Karriere befindet und einfach nicht schlechter wird aufgrund seiner nahezu perfekten In-Ring-Psychologie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Dragon Fighterwrote on 05.11.2017:[10.0] "There are not enough adjectives to describe this guy. A once a century talent for sure. He carried new japan from the dark days in mid 2000 to become the best promotion in the world. A master of in ring work and psychology. Great mic work and charisma as well. Endless classics which make him big match tana. Elevated another phenomenal talent: okada. A GOAT, HOF for sure. Well deserved 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "A wrestling machine. A intensely charismatic techinician that despite a very basic moveset, can make a 5-star match thanks to his psychology, without a doubt his best weapon. Tanahashi contributed to make New Japan a thing once again between 2011 and 2016, and despite having passed the torch to Okada, at the age of 40 he is still one of the best in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TooSweetPhilwrote on 15.08.2017:[10.0] "Der Beste Wrestler Aller Zeiten. Ja das hört sich oft meistens wie eine direkte Hyperbel an, aber wer mit Hiroshi Tanahashi vertraut ist, dem dürfte diese Aussage bekannt sein. Dieser Mann ist nicht nur für NJ's Golden Age verantwortlich, sondern liefert immer noch Mal für Mal fantastische Matches. Gibt es einen besseren Big Match Performer? Nein, denn wenn Tanahashi ein Big Match hat, liefert er. Es ist atemberaubend, dass Tanahashi, trotz eigentlich nur leicht überdurchschnittlichen Move-Sets (Dragon SPLX, High Fly Flow, Slingblade) in alle seiner Matches Innovation reinbringt. Er ist dafür verantwortlich, dass Okada zum nächsten Großen Weltstar manövriert ist, denn diese beiden hatten die Beste (legit) Rivalität aller Zeiten. Gibt es jemanden der besser sellen kann als Tanahashi? Nein, denn während andere Wrestler auf schreien, schwören oder Doppel-Flips vertrauen, sellt Tanahashi konsequent, authentisch und schlicht perfekt. Was er sellen kann, kann er auch austeilen, Limb Work immer innovativ, brutal und durchgezogen. Sein Charakter-Display während seiner Matches ist einzigartig. Wenn Leute kommentieren, von wegen "der japanische John Cena" merkt man schon, wie wenig sie sich mit der Materie auseinandersetzen. Bezogen auf Gegner, Crowd und Atmosphäre kann sich Tanahashi zwischen Heel/Face wandeln und somit entweder Hope Spots oder Cocky Air Guitars performen. Wieviele All-Time Klassiker hat Tanahashi über die Jahre gezeigt? Unzählige, gegen Nakamura, Suzuki, AJ, Naito, als auch mein persönliches All-Time Favourite Match gegen Okada (WK10). Tanahashi ist wahrlich ein "Once in a Century Talent" und das zementiert ihn als einen der besten, vielleicht sogar den Besten aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: jenstererwrote on 08.07.2017:[10.0] "People giving Tanahashi low scores because "he was shoved down our throats" or because "he isn't a draw" are so clueless, that none of their opinions should ever really be valued. On top of being one of the best workers of this generation, Tana is largely responsible for NJPW's survival."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: prowrestlingisrealwrote on 08.07.2017:[10.0] "If you don't admit that Tanahashi is one of the GOAT's, you're delusional or you don't know what pro wrestling is about, great ring psychology, charismatic AF, can make himself and his opponent look good, have various classics with various opponents, He's one of the reasons why NJPW is on their feet now, and he's one of the biggest draws in recent memories, GO ACE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: LordGabrielwrote on 07.07.2017:[10.0] "In my opinion , probably the best wrestler in NJPW , every match that involves him is a gathering of tension and hard working. My favourite match with him is fore sure Tanahashi vs. Okada - Wrestle Kingdom 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Randomuser12345wrote on 22.06.2017:[10.0] "The total package, one of the best babyfaces I have ever seen. Second only to HBK in terms of creating emotion and drama in a match. Incredible mind for pacing a match, can work with anyone, incredible physique, great interviews from what translations I have seen, there's nothing he can't do. A joy to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TheRainmaker28wrote on 09.06.2017:[10.0] "LOL, I laugh about the latest comments. Tana is one of the greatest wrestlers of all-time and deserve respect for everything he did. The dude elevated Okada on 2012/2013, elevated Omega last year when losing to him for the IC title and elevated Naito on the fucking Dome and people have the courage to compare him to Cena. If you don't like Tana, you just don't like good wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: BerserkGutswrote on 14.04.2017:[10.0] "Probably one of the most important wrestlers for New Japan Pro Wrestling. Shouldering the biggest responsibility of leading the company out of the gutter back to the top. His feuds with Okada, Nakamura, Naito and many more, cemented his legacy as one of the greatest wrestlers of all time. A true professional who puts the company first and is the lifeblood of NJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Infamouswrote on 03.04.2017:[10.0] "Might be my favorite wrestler of all time. Charisma, selling, psychology, very few are on par with him on anything that makes someone a good wrestler. He is a legend and will forever be regarded as one of the greatest wrestlers of all time. Maybe even the greatest."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Blood Pumpwrote on 30.03.2017:[9.0] "Often called the Japanese Cena as far as booking is concerned, which is kind of unfair to both men really. Yeah both were booked to be gods among children when they were at top and yeah they both spend their time putting over talent more often then not now and days but the two are night and day. I'm not taking anything from Johns work ethnic but he was never good at making his opponent look good while still being put over (that has changed a little with Styles and Owens). Hiroshi and whoever he was facing both tended to look very good no matter the result. While I don't think Hiroshi is the greatest worker now or even in the late 00s (not even in NJPW) hes consistently excellent; just about always making an effort."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Mizzle Assault Antwrote on 17.03.2017:[6.0] "Tanahashi is alright but I can't help but find him very overrated. His offense is often incredibly light and stands out as a stark contrast to the heavy hitting style of most of his peers. He also has a tendency to allow his matches to on and on, past the point where they feel they have peaked. I know most don't share this opinion, just my personal feeling on the man."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: PistolPeteMattywrote on 26.02.2017:[10.0] "There isn't a person on this planet who is better in a big match scenario than Tanahashi. Easily one of the best of all time, and probably the main reason NJPW survived the 2000's."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Chekerwrote on 23.02.2017:[10.0] "THE ACE, the man responsible for the upswing in New Japan's fortunes a decade ago. Incredible wrestler, incredibly charismatic, great storyteller, just a really likable guy. I'm going to miss him when he retires. And, honestly, the comparisons to John Cena are insulting, on his best day Cena couldn't even begin to lace up Tanahashi's boots."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: SanthoshVNwrote on 19.02.2017:[10.0] "Hiroshi Tanahashi is a John Cena of New Japan. He is one of the guys who backed the company during the dark period of the company. He has the ability to pull out the best even from a low level wreslter. His rivalry with Kazuchika Okada is considered as the current best rivalry. If you are new to NJPW you should not miss Tanahasahi's matches. He is nothing but a genius"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Residentwrote on 28.01.2017:[7.0] "Tanahashi is a good wrestler for sure. But I prefer Nakamura or Okada. I heard a lot of hype on Tanahashi. I known he is a multi-time IWGP Heavyweight champion and his High Fly Flow move is a nice version of the Frog Splash. However, overall I haven't been impressed. I don't think Tanahashi would have been able to get over in the U. S. as Nakamura has and his style seems more geared to the Japanese audience. While he is a good technical wrestler, I don't think he has much charisma and from what I see, he is just average on the mic. While others like Nakamura and Okada have that charisma and to me Nakamura and Okada are better at telling a story in the ring. Yes, he has had many 5 star matches, but maybe his best days have come and gone, because in the last few years, all the matches I have seen of him have just been average except for a few and actually his tag matches with Michael "mail it in" Elgin didn't seem that great at all to me. He's still quite good, but currently I don't think he is one of the very best in New Japan (I'd give that to Okada, Naito, and Omega)."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: JonColwellwrote on 08.01.2017:[10.0] "The ACE of New Japan! His match with Naito at Wrestle Kingdom 11 will forever go down as one of the best matches in IWGP Intercontinental Championship and NJPW history. Nakamura's last match in NJPW with him in that six-man tag was the first NJPW match I ever watched, and it hooked me on as a fan of NJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: rjsbx11wrote on 07.01.2017:[10.0] "Tana's last 4 years are arguably the greatest 4 years in pro wrestling history. The only guys who had those types of runs at the top while being successful and having absolute classics like Tanahashi are Flair, Kobashi and Misawa. I have him in my top 10 all time, which doesn't have a particular order. The big issue I have is cross generations and guys who potentially landscaped the business. For me, I can't truly appreciate them because of the disconnect. When you look at the incredible matches he's had, his undeniable charisma and his ability to lead the New Japan brand back to the top of Japanese wrestling and one of the biggest wrestling promotions on the planet, he's definitely a GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Puro Spiritwrote on 21.12.2016:[10.0] "One of the greatest workers in the history of Puroresu , the man is up there with the puro gods such as Misawa and Kobashi .... a special talent that almost always delivers a classic match ....."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Undisputedwrote on 15.11.2016:[10.0] "This is a genius of Puroresu, I know is Misawa or Kobashi are more popular than Tana but this man is my favorite Japanese wrestler. Great charisma, very good ring skill and chemistry with Naito, Nakamura, Okada, Styles. Really Ace."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: MAGICIANwrote on 12.11.2016:[10.0] "Zu Hiroshi Tanahashi muss man eigentlich nicht viel sagen. Der Kobashi unserer Zeit, von 2012 bis 2015 durchgehend der beste Wrestler der Welt gewesen. Viele viele Klassiker, viele viele schöne Momente. Hat nun seinen "Ace-Status" an Okada abgegeben, ist aber wohl für uns alle für immer das ACE. Eine lebende Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: akm0wrote on 17.10.2016:[10.0] "Tanahashi is probably the best japanese wrestler right now. His knowledge of the business is as deep as it can get - just read his book - his passion is outstanding, his work is surprising, his charisma is unmatched and can work with anybody with any style. Not to mention his in-ring psychology. While he has given to the fans one of the best series of matches of the last 15 years with Okada, he also has stepped up to turn NJPW in what it is today. The crowd just loves him and for a good reason: every moves he does, has a special flavour. I remember reading that he chosed the frog splash as a finisher because it looked painful (immagine a guy who weights 103 kg/227 lb crushing down on you from the top rope at full speed) and that demostrate how much he cares about giving to the fans the feel of a real fight. He really is once in a century talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Luv all wrestlingwrote on 08.10.2016:[10.0] "Tana is a once in a century talent, even nearing 40, he can still have 5 star matches pretty easily, and is very charismatic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Viper99wrote on 25.08.2016:[10.0] "Hiroshi Tanahashi ist einer der absoluten Top Wrestler der Welt! Rein In-Ring Technisch wohl einer der TOP 3 dieser Welt. Jeder Move hat bei diesem Mann einen sinn und dies machte jedes seiner Matches mindestens Gut. Er besitzt absolutes Star Appeal und ist Japans größter Star. Einfach ein exzellenter Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: cheerupmurraywrote on 18.08.2016:[10.0] "Dave Meltzer says Tanahashi is unquestionably the best wrestler of the 2010's, I'll go one step further. Tanahashi is the greatest wrestler in the history of the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ApexOfEvolutionwrote on 18.07.2016:[9.0] "Bis vor drei/vier Jahren einer der besten Wrestler der Welt, der inzwischen leider seinen Zenit überschritten hat. Seine Matches waren immer weltklasse und er ist zu recht Rekordhalter des IWGP Heavyweight Titles. Hoffe, dass man ihn noch einige Jahre im Ring sieht, vor allem bei ROH ist er immer wieder ein Highlight."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Once in a 100 fanwrote on 07.07.2016:[10.0] "One of the greatest wrestlers in history in my honest opinion! One look at him and you'll know that he is definitely one of the top dogs in NJPW! Watching this man and his matches have reinvigorated my love with pro wrestling as he is able to adapt and work well with anyone he steps in the ring with and elevate them with his performances and the charisma that he possesses; that is not something that you can say with many wrestlers. Plus his rivalries with Kazuchika Okada and Shinsuke Nakamura are the stuff that legends are made of and are up there with rivalries like Flair & Steamboat, Bret & Shawn, Austin & Rock, Misawa & Kobashi, etc.   Truly definitely one of if not THE greatest wrestler in the world!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: DB992wrote on 17.05.2016:[9.0] "Pure emotion in the ring. I favor his battles with Okada the most. He has it all: incredible moveset, magnetic charisma and every quality to be an ace in the economy of a federation like NJPW, which he helped to rise back to the top of their game after those disastrous early 2000s."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: arrancarwrote on 05.05.2016:[10.0] "One of the greatest wrestlers of all time. The emotion he puts into his matches and the emotion he evokes from the audience is unparalleled to any other wrestler I know of. He also genuinely cares for the art of wrestling, seen in how he will devote extend periods of time after shows to seeing the fans after a wrestling show and will also work through various injuries in order to continue wrestling. So, not only an amazing wrestler but also a good person and a dedicated professional. Some of his matches rank in my very favourite, as well as in the favourites of many other wrestling fans, because all that emotion and athletic ability can't help but result in multiple absolutely incredible matches. He's had arguably the greatest rivalry of all time (or, at the very least, the greatest rivalry of the last 10-15 years) with Okada, and succeeded in also helping develop Okada into the star he is today. Tanahashi's WK9 and WK10 matches are the main reasons why Okada is my favourite wrestler, so I also have that to thank Tanahashi for. He isn't my favourite wrestler, but the effort that Tanahashi puts into his matches (and the wrestling profession in general) and the reception he elicits from live crowds puts him unquestionably as one of the best wrestlers I've ever seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: NastyYaffawrote on 15.04.2016:[10.0] "THE ACE. Tanahashi's NJPW main event run has been absolutely legendary, and he has proven to be worthy of "the ace" moniker. One of the best in-ring workers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: RainmakerF7wrote on 29.03.2016:[10.0] "There is no one like him. Unbelievable in the ring worker, incredibly charismatic with an outstanding ability to work with the crowd. He is the main reason New Japan Pro Wrestling is the second biggest (and definitely the best) wrestling promotion in the world. Truly once in a century talent. When it is all said and done, Tanahashi will be right there with Flair, Misawa, Kobashi, Michaels or Jumbo among the best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Jobbswrote on 18.03.2016:[10.0] ""THE ACE" He's done it all in New Japan and just an all around amazing athlete. Just one of the greatest of all time as well as he's been in some legendary feuds and matches and he holds the record for most IWGP Title reigns. Anytime this man is in the ring, you know you're in for a treat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: CorvinLEwrote on 08.03.2016:[8.0] "Für mich ist Tanahashi ein sehr guter Wrestler und war verdient viele Jahre das Top-Face von NJPW. Doch hat es sich mit ihm ausgelutscht, seine Matches werden etwas langweilig. Trotzdem hat er gute Matches gehabt. Sein Wrestlingstyle ist interessant und sehr schnell geführt.  Allem in allen ist er immer noch ein guter Wrestler dochverdienter weise jetzt nicht mehr das Gesicht von NJPW."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Antimasterwrote on 16.02.2016:[10.0] "Über viele Jahre DER Mann im Puroresu gewesen, jedes Jahr dutzende Top Matches. Man muss kein ganz großer Tanahashi Fan sein, was ich nicht bin, um anzuerkennen, wie großartig dieser Mann nun für mittlerweile ein Jahrzenhnt ist. Für mich auf einer Stufe mit den Besten überhaupt und für New Japan als einer der ganz wenigen nicht zu ersetzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TrevPuroFanwrote on 15.02.2016:[10.0] "Am I the only one who can't get enough of Hiroshi Tanahashi. I mean the guy is pushing 40, his injuries are starting to take a toll on him, yet everytime he steps in that ring he puts on a fantastic performance and pulls out the best out of every single one of his opponents."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: berserk589wrote on 08.01.2016:[10.0] "This guy always delivers in the big match. One of the smartest and charismatic wrestlers of this era or any other."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: hatebreederwrote on 07.01.2016:[10.0] "Ace of the Universe! Dieser Beiname kommt nicht von ungefähr. Der mit Abstand Beste bei NJPW. Nuff said.. Update 2016: In der Matchguide-Datenbank sind 6 (! ) seiner Matches in den 26 beliebtesten aller User vertreten. Das sagt einfach alles. Der Mann ist so unfassbar gut, dass es schon fast unfair ist. Ein Geschichtenerzähler, eine Legende, der Hauptgrund, warum NJPW wie Phönix aus der Asche gestiegen ist nach dem verkorksten Anfang des Jahrtausends."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Kevin434wrote on 03.01.2016:[10.0] "Er ist eine japanische Legende, einer der besten Wrestler aller zeiten. Dieser Mann ist praktisch die Definition von gutem Storytelling. Er kann mit jedem ein gutes Match worken und probemlos jeden Style mitgehen. Dazu ist er noch sehr Charismatisch. Aktuell der zweitbeste Wrestler der Welt, nach Nakamura, und er hat zurecht das Standing was er jetzt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Sundownerwrote on 02.10.2015:[7.0] "If wrestling were as popular anymore then Tanahashi would be nowhere near the level that Hashimoto, Misawa and Inoki (real aces) were at at their peak. Tanahashi is a modern ace and compared to the old days it isn't much. He is a great worker but completely overrated by the masses. His matches are pretty much the same everytime I see him."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: yanuswrote on 18.04.2015:[9.0] "Very charismatic wrestler, who structures his matches extremely well. Unfortunately, his offensive moves often look very weak."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: SapolBlackwrote on 27.03.2015:[10.0] "Wenn man heute in Japan sich um schaut, gibt es nu eine grandiösen Mann der Neuzeit. Tanahashi bringt einfach alles mit von Körperbau, Charisma , Intensität und Matchqualität ist alles Vorhanden. Der Superstar von NJPW und direkte vergleich zu John Cena von der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Taker77wrote on 09.03.2015:[10.0] "Tanahashi is so damn good, someday he should be part of the WWE Hall of Fame for his outstanding achievements.  He is the brightest star of a whole country."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: pfuschiwrote on 07.03.2015:[10.0] "The ace of Japan, almost as good as Shawn Michaels to me. Tanahashis work attic is incredible and his ringstyle is a great mix between a Bret Hart and Shawn Michaels, he does combine the best of these two legends.  He really is a total package, great in the ring, great work attic, great great great selling, great highflying moves, great outfit, great entrance theme, great body and big charisma. Everything a wrestle needs, Tanahashi has it, IŽm very happy for Tana that he was the Main-Event on the last Wrestle Kingdoms, he has the look of a main eventer, he feels like the main event, he should stay in the  Main- Event as long as his body can handle it.  The only point why I put him close behind Shawn would be that his career was not as flexible and mixed up, he didnŽt change much in the last years, everything stays the same which is the only thing I would put against Tanahashi.   Shame on all the Wrestling Organisations that they never made it happen, Shawn Michaels against Hiroshi Tanahashi, what a dreammatch that would have been. I would have been there, no matter if in Japan or USA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: llboxingwrote on 26.01.2015:[8.0] "Possibly the greatest in ring performer of his generation.  Good looks, excellent versatility, psychology, ability to sell, wide variety of moves and still has uncanny athleticism, not to mention the most chiseled physique among Japanese wrestlers. The Shawn Michaels of New Japan.  A heartthrob to female fans, a rock star to male fans, and a super hero to kids.  Still a huge draw although his John Cena-esque appeal is beginning to wear thin.  Has only a couple years left before age starts to catch up with him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Le Wrestling Fanwrote on 04.01.2015:[10.0] "What can you say about this man? He is simply amazing. Every night, every match, you see something amazing. Hiroshi Tanahashi is the best in the world today, and there is nothing, and I mean nothing, that can deny his ability as a wrestler, entertainer, and the face of Japanese wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TRMBwrote on 26.12.2014:[10.0] "Der meiner Meinung nach beste Wrestler der Welt. Er hat einfach alles. Habe ihn in Oberhausen live gesehen. Der Mann weiß genau was er tut. Jede Bewegung hat einen Sinn. Super Austrahlung, klasse Moves und vor allem einfach ein netter, cooler Typ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Matt4Wrestlingwrote on 06.11.2014:[10.0] "Ein Technik und Kraftpaket per excellence! Selten so gut getimte Aktionen gesehen und so gutes selling! nicht Umsonst das Ace von IWGP!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: flewryanwrote on 07.10.2014:[9.0] "Tanahashi!  Mehr muss man dazu wohl nicht sagen, er hat in seinem Match gegen Andy genau das gezeigt, dass ihn als Star auszeichnet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Alex Maedawrote on 29.09.2014:[10.0] "Etwas anderes als 10 Punkte kann ich hier nicht geben. Tanahashi ist der Star der Puro-Szene, NJPWs Ace Nr. 1 und das schon seit Jahren. Jetzt liegt es in den nächsten Jahren an ihm, die Fackel an Leute wie Okada weiterzureichen. Wem, wenn nicht Tanahashi, sollte das auch gelingen?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: 8BitLegendwrote on 21.09.2014:[8.0] "In der vergleichsweise kurzen Zeit die ich NJPW jetzt verfolge bereits jetzt einer meiner Faves. Ich sollte mir beizeiten mal seine Klassiker ansehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Merdalixwrote on 08.08.2014:[7.0] "An overall passable wrestler but his offence is unconvincing and his monster pushes over the years have been undeserving. Granted his selling and ring psychology are damn noteworthy."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Matzinhowrote on 28.07.2014:[10.0] "Tanahashi sieht aus wie eine japanische Videospielfigur und er wrestlet nicht den Strong Style. Trotzdem muss ich ihn würdigen als denjenigen, der zu NJPs Aushängeschild avanciert ist und die gute Phase eingeleitet hat. Er ist im Ring zwar nicht mein Typ, aber er kämpft ansehnlich und ich genieße doch seine Matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: alewrote on 15.05.2014:[10.0] "Einer der besten, die ich je gesehen hab, auch live der Wahnsinn. Ist in Japan unglaublich populär. Von daher 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: eldenaaaaawrote on 14.02.2014:[10.0] "one of my favorite in ring performers today this man is amazing at wrestling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: daniel cassidywrote on 28.01.2014:[10.0] "Simply put, the greatest package in professional wrestling today and unarguably one of the greatest in history. Hiroshi Tanahashi is, beyond a shadow of a doubt, the ultimate peak in professional wrestling, and having such an astronomical draw and following (to the likes of Hulk Hogan) is a feat that cannot be replicated. With delivery of amazing matches, many of which are on my "all time" list, and the best charisma in the business, there is no doubt in my mind that Tanahashi is one of the very best professional wrestlers to ever grace any circuit. This man has ALL of my respect forever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Bluminho 93wrote on 03.12.2013:[10.0] "Man kann ihm einfach nur 10 Punkte geben. Nakamura ist mir persönlich zwar sympathischer, aber Tanahashi ist die weltweite Nummer 1 in eigentlich allen Bereichen, die das Wrestling ausmachen. Er kannn jeden Gegner zu dessen Höchstleistungen ziehen und kann soagr spontan die Heel Rolle in einem Match annehmen, je nach Crowd Reaktion. Dass er dieses Jahr bereits in die Wrestling Observer Hall of Fame aufgenommen wurde, spricht einfach Bände. Trotz der Tatsache, dass er New Japans Topstar ist, ist er sich darüber hinaus nie zu schade, sich für andere Wrestler hinzulegen respektive diese zumindest sehr gut aussehen zu lassen. Es gibt einfach keinen Besseren und ich hoffe auf viele weitere Jahre von Tanahashi als Ace of the Universe auf Top Niveau!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: LukethePiratewrote on 17.11.2013:[10.0] "Best in the world today, and one of the best of all time. Had a plethora of 5* matches from 2011 onwards and carries himself as a top level superstar in every aspect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: joshimaniawrote on 23.06.2013:[6.0] "An acceptable but very overrated wrestler. His offense doesn't look convincing and his matches tend to be filler matwork leading into obligatory nearfalls."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Steenericowrote on 03.06.2013:[10.0] "Tanahashi ist aktuell der beste Wrestler auf der Welt, was man auch an seinem überragenden Titelrun gesehen hat, wo er einen MotY Kandidaten nach dem anderen gezeigt hat. Seine letztjährigen Matches gegen Suzuki und Okada waren für mich die beiden besten Matches des Jahres 2012 und auch dieses Jahr war er bisher an den besten Matches des Jahres beteiligt und lieferte mit seinen Titelmatches gegen Okada, Anderson und nochmals Okada schon drei Match of the Year Kandidaten ab. Etwas anderes als 10 Punkte kommt für mich bei diesem Ausnahmewrestler nicht in Frage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Kenshin Uesugiwrote on 27.04.2013:[10.0] "Bei so einem Mentor kann ja nur Gutes rauskommen, aber mal jetzt im Ernst. Tanahashi hat einfach alles, vom Körperbau, den Wrestlingfähigkeiten, der Ausstrahlung und dem Charme. Mit Nakamura, der Ace von NJPW und eine zukünftige Legende, mit vielen Gemeinsamkeiten mit seinem Mentor. Der vielleicht genauso bedeutend und groß wird wie er oder sogar ihn überragen wird, aber nur vielleicht. Edit: Hat nun endgültig die Grenze überschritten was Höchstleistungen am Stück und über Jahre angeht. Es ist einsam auf dem Olymp im NJPW, deswegen ist es auch kein Wunder das mittlerweile Nörgler und Miesmacher kommen, sie seien an dieser Stelle gegrüßt! Er sei zu lange und zu oft Champ und im Main Event, manch einer singt sogar das Lied das er der japanische John Cena ist. Mal abgesehen davon das es so ist als ob man Äpfel mit Birnen vergleicht, muss ich doch ernsthaft am Sachverstand und Logik dieser Aussage zweifeln und vehement wieder sprechen. Wenn man der Beste in fast allen Bereichen ist, dann ist das so. Punkt, Rums Bums aus die Maus!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: apc24wrote on 29.03.2013:[10.0] "Ace of the Universe! He's the face of wrestling in Japan in my opinion, he's a great, spectacular wrestler and has the ability to make a yearlong title reign seem legit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: deathsitcomwrote on 28.03.2013:[10.0] "Tanahashi ist der einzige wrestler der Welt, der mich derart begeistert, dass ich 10 Punkte rausrücken muss, obwohl ich sein gimmick absolut nicht ausstehen kann. Aber alles andere wäre einfach absurd, Anime-style und Luftgitarre hin oder her, im Ring ist er einfach perfekt. Mag sein, dass er meistens die selbe Schiene fährt, aber sie funktioniert und wird bis dato nicht langweilig. Sein title-battle mit Okada, das 5* Hammermatch gegen MiSu, wie er Anderson kürzlich zu dessen Karriere-highlight geführt hat, und generall sein Agieren als Ace von NJPW, alles großartig. Zudem hat er mir das schöne Erlebnis beschert, dass ich mir durch bloßes Erwähnen seines Namens in einer Kneipe in Tokyo über alle Sprachgrenzen hinweg Freunde gemacht habe, allein dafür ein aishite imasu!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Play2Xwrote on 21.02.2013:[10.0] "Nachdem ich mittlerweile seit 2 Jahren immer Mal wieder NJPW gucke muss ich doch sagen, dass Tanahashi Hiroshi die ganze Zeit über IMMER megastark war.  Es gibt derzeitig wohl niemanden, den ich lieber sehen würde. Außer Nakamura Shinsuke."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Fountain of Misinformationwrote on 11.02.2013:[10.0] "Bewertung vom 16. 07. 2012: Toller Wrestler, ein echter "Star", ein Frühvollendeter, das Wahnsinns-Talent seiner Generation aber sein Luftgitarrenspiel ist ziemlich mies, ich glaube das ist kein echter Rocker! Nachtrag vom 11. 02. 2013: Ich weiß nicht warum ich ihm "nur" neun Punkte gegeben habe, aktuell vielleicht der "Beste Wrestler der Welt", aber eigentlich bedarf es solcher Worte gar nicht, ein klarer elf Punkte Wrestler. Wenn er nicht die selten von mir vergebenen zehn Punkte verdient hat, wer dann?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Obermackerwrote on 11.02.2013:[10.0] "Och, Bewertung wird nicht gezählt, wenn man nix dazugeschrieben hat! Na dann begründe ich die 10 Punkte ganz einfach damit: Der beste, charismatischste, japanische Wrestler, der letzten 10 Jahre - Punkt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Spearmanwrote on 24.11.2012:[10.0] "Der defintiv beste Wrestler der Welt, ich kann mich an wenig Matches mit Tanahashi erinnern, die schlecht waren. Er hat eine Austrahlung, wie sie sonst keiner hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Tamjukwrote on 13.10.2012:[10.0] "Hiroshi Tanahashi ist der John Cena New Japans mit nur einem Unterschied: er kann wrestlen!  Charismatisch, Aussehen eines Superstars und einfach nur ein guter Wrestler.  Als Kritik kann man naturlich sagen, dass er zu formelhaft arbeitet, aber er ist eben das Gesicht New Japans, er ist schon da wo er hin will, er muss nichts riskieren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Robert Taylorwrote on 05.09.2012:[10.0] "Wenn mich jemand fragen würde wie ich das Wort Zuverlässigkeit definieren würde, dann wäre meine Antwort Hiroshi Tanahashi. Er bringt ganz einfach immer seine Leistung, meistens sogar eine sehr starke Leistung. Hat seine derzeitige Position bei New Japan absolut zu Recht inne, er hat den Look und vor allem das Können im Ring. Gehört zur absoluten Weltspitze und es gibt nicht viele, die ihm das Wasser reichen können. Dass er hier bei Cagematch nicht eine einzige Bewertung unter 8 Punkten bekommen hat, ist ein weiterer Beweis für seine Klasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Jack Londonwrote on 06.04.2012:[10.0] "Auch wenn seine Dominanz gegen Ende seines Rekord-Title-Runs doch langweilig zu werden drohte, ist jedes Match mit Tanahashi eigentlich immer mindestens gut. Er ist einfach ein Weltklasse-Worker, der auch noch ein derart großes Charisma hat, dass es auch bis zu uns nach Europa strahlt. Tanahashi ist der Grund, warum New Japan die Liga #1 in Japan ist. Den anderen großen Ligen fehlt einfach eine derartige, alles überstrahlende Figur wie Tanahashi sie es nun mal ohne Zweifel ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Aquifelwrote on 08.03.2012:[10.0] "War immer schon Sahne im Ring und er hat auch sehr viel Ausstrahlung (selbst für Europäer, die sonst eventuell nicht so viel mit Japan anfangen können), aber gerade mit seinem letzten Run als IWGP Champ hat er bewiesen, dass er nicht umsonst einer der grössten, wenn nicht gar DER grösste Star in Japan ist (momentan)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Manolowrote on 28.01.2012:[10.0] "Aktuell zweifellos der beste japanische Heavyweight. Neben seinen Fähigkeiten im Ring verfügt er auch über Charisma und ist absolut zurecht der größte Star in Japan. Mit ihm wurde das Produkt von NJPW in den letzten Jahren auch wieder viel besser als zu Beginn des Jahrtausends."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ShakDragoonwrote on 05.10.2011:[10.0] "Sehr guter Allrounder, der verdienterweise an der Spitze der New Japan Heavyweight Division steht. Ich hoffe jedoch, dass die Liga es nicht versäumt, neben ihm und Nakamura auch andere Talente dauerhaft nach oben zu pushen. Obgleich die Matches der Beiden stets für gute Unterhaltung und hochwertige In Ring Action garantieren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Rated R Champwrote on 22.09.2011:[10.0] "Tanahashi ist nun seit einigen Jahren das Aushängeschild des japanischen Marktführers und das zurecht. Im Ring ist der Mann über jeden Zweifel erhaben, er versteht es Matches aufzubauen er hat den Look und (soweit ohne Japanischkenntnisse erkennbar) auch wirklich Charisma. Der Begriff Total Package greift hier einfach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Hu-Manwrote on 24.02.2011:[10.0] "Er ist wohl DER japanische Superstar, den man in den USA mit John Cena vergleichen kann. Mit dem Unterschied, dass seine Stärken im Ring liegen und Cena eher der Mann am Mic ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: The Rated R Superstar EDGEwrote on 30.12.2010:[10.0] "Für mich zusammen mit Kenta der beste Japaner. Hat außerdem alles was ein Superstar braucht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Homicide187wrote on 03.11.2010:[8.0] "Sicherlich der Draw in Japan und auch gut im Ring und auf jeden Fall unterhaltsam. Aber sein Anime Aussehen find ich dich immer störend, wodurch ich ihn einfach nicht als den "Superhelden" oder ernsten Gegner sehen kann. Aber wie gesagt seine Matches enttäuschen eigentlich nie."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Hans Gruberwrote on 05.07.2010:[10.0] "Ganz klare 10 Punkte! Das Ace von New Japan. Nr1. Main Eventer für mindestens noch 10 Jahre, natürlich nur wenn die Kniee weiterhin mitmachen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Denzwrote on 13.06.2010:[10.0] "Ich habe mir so einige einer Matches angesehen, wie zum Beispiel das gegen Kurt Angle oder AJ Styles. Der Typ hat einen ziemlich guten Körperbau, ein sehr schneller Techniker. Viele Japan-Wrestling Fans sehen ihn als japanischen Shawn Michaels - zu recht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Erasedwrote on 22.05.2010:[10.0] "Sehr guter Technicker, der dazu noch eine große Portion Ausstrahlung hat und vom Wrestling sowie vom Entertaining auch etwas versteht. Ihm schaut man gerne zu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: T-Waynewrote on 08.04.2010:[9.0] "Super Kerl, der sich wirklich den Weg zum Maineventer in der größten japanischen Liga erkämpft hat. Tolle Aktionen und Charisma hat er dazu auch noch, schade nur, das der High Fly Flow seine Knie zerstoert hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: wotan1985wrote on 09.03.2010:[10.0] "Hiroshi ist genau das was für mich ein Heavyweight ausmacht. Einfach Perfekt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Big Bad Booty Babywrote on 28.09.2009:[9.0] "Tanahashi ist (auch wenn ich mich noch nicht lange mit Puroresu beschäftige) der wohl beste NJPW Worker zur Zeit. Er war der erste den ich mit japanischem Wrestling in Verbindung brachte und das zu Recht. Er ist super im Ring und sehr charismatisch. Er wird sicherlich noch lange New Japan repräsentieren und noch öfters den IWGP Titel halten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: homicidal cena michaelswrote on 11.07.2009:[10.0] "Derzeit bester Japaner und auch weltweit ganz vorne dabei. Zurecht mehrfach IWGP Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: The Main Eventwrote on 09.07.2009:[8.0] "Hiroshi ist mir sehr sympatisch und wrestlen kann er auf jeden Fall. Aus ihm wird hoffentlich nochmla was."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Blazewrote on 24.01.2009:[10.0] "Der absolute King von New Japan. In den letzten 3 Jahren für die Company extrem wichtig und hat riesiges Potenzial, irgendwann in einem Atemzug mit Misawa, Kobashi usw. genannt zu werden. New Japans MVP, wrestlerisch sehr gut mit einer Menge an Charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: STRIGGAwrote on 05.01.2009:[10.0] "Hiroshi Tanahashi ist für mich der beste Performer in Japan, wenn nicht sogar darüber hinaus. Er hat die Ausstrahlung eines absoluten Superstars und verhält sich auch im Ring so. Dazu kommt sein überragendes Wrestling. Einer der Vorreiter des neuen New Japan Heavyweights."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Rancorwrote on 07.12.2008:[9.0] "Tanahashi hat sich zu einem der besten, wenn nicht DEM besten Schwergewichts-Wrestler weltweit entwickelt. Er hat sich als erster seiner Generation den Status eines Superstars erarbeitet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Tomkowrote on 16.11.2008:[9.0] "Geniale Fähigkeiten, eine Menge Charisma und einen coolen Look machen diesen aufstrebenden Superstar aus, der mich aber noch ein kleines bisschen mehr überzeugen muss, damit es die 10 wird !"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: AnFuwrote on 05.06.2008:[10.0] "Cooler Typ, eigener Stil im Ring, mir gefällt einfach das Gesamtpaket Tanahashi, er leistet sehr gute Arbeit im Ring, er hat noch einiges vor sich, einer der großen Japaner jetzt schon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Rob Van Duesenschrauberwrote on 17.04.2008:[9.0] "Da muss ich meine Wertung nach oben korrigieren. Tanahashi steht bei New Japan absolut zurecht im Main Event. Denn da gehört er die nächsten Jahre hin, wenn er sein Niveau hält."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Kaffoe 666wrote on 25.03.2008:[10.0] "Mein momentaner Liebling im Puro. Tana ist einfach göttlich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: The Instant Classicwrote on 23.03.2008:[8.0] "Genialer Wrestler mit vorhandenem Charisma, das allerdings nicht an Top Leute heranreicht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: AMMOwrote on 21.12.2007:[8.0] "Zeigt andauernd starke Matches für NJPW! Wird in der Zukunft IMO noch einiges erreichen, dadurch NOCh keine volle Punktzahl, die denke ich aber sicherlich kommen wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: D-Stylewrote on 07.12.2007:[8.0] "New Japans Zukunft; er wird sich noch besser entwickeln, daher erstmal nur die 2, mit Tendenz zur 1. 2007 wird Tanahashi noch besser denke ich; seine Strong Style Matches gegen Nagata & Goto sind der erste Schritt zur NJPW Führung."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Blue Meaniewrote on 04.12.2007:[10.0] "Noch nicht so viel gesehen, aber das was ich gesehen habe war awesome. Beeindruckend guter Wrestler, der zudem auch (im Gegensatz zu vielen seiner Japan Kollegen) recht charismatisch ist und eine richtig starke Ausstrahlung hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: shannonmoorewrote on 29.07.2007:[8.0] "Wenn Japan dann Tanahashi :) Bin erst seit kurzem Fan von Japanischen Wrestling und er einer der ersten die mich intressierten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Im Ring genau das was man(Ich) haben will, den Look hat er ebenfalls und er hat mich bis jetzt mich immer bestens unterhalten, bis jetzt haben mir seine Matches gegen Nagata am Besten gefallen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RampageLitewrote on 12.02.2025:[9.0] "One of my favorite technical wrestlers, and one of the best to ever do it. He has good matches, great chemistry with a lot of people, and he's one-of-a-kind. Just an all around great in-ring competitor and just an all-around great guy. He always finds a way to put on a good match. We probably won't see him in the ring much anymore but he deserves retirement, he's worked hard in every company he's worked in. Mount Rushmore worthy wrestler, can be considered to be the GOAT."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Keithnelson18wrote on 11.02.2025:[10.0] "One of the best wrestlers in the world, probably one of the most passionate wrestlers in the world. You can tell he loves this sport and tries to give the fans a match to remember."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Nickswrote on 06.02.2025:[10.0] "He is the best fucking wrestler ever. He is phenomenal in the ring, something we will hardly ever see again, and we should all be grateful to have seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DumBBoyManwrote on 01.02.2025:"The absolute fucking greatest of all time. No debate about it. Bryan Danielson is the greatest wrestler who has ever lived."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TPGwrote on 16.01.2025:[10.0] "There's a reason people call him the best in the world. It's because he's a genius. He doesn't just do flippy-shit, and he doesn't just do all these wild acrobatics, he's a technical mastermind, and he knows how to tell a story that can apply to any company if he's allowed to be given the freedom to do it. His feud with Nigel McGuinness is considered to be the best independent wrestling feud of all time. His match with Will Ospreay is highly regarded as one of the best individual matches in the history of this business. He is consistent in the ring, his character work is great, even if some people don't realise it. One can argue that he changed the landscape of WWE, and thus, changed wrestling, bringing a revolution. In the right moment, he's one of the best on the microphone. He knows when to be funny, he knows when to be serious. He understands the business and he understands the success criteria to put on a show. Danielson has truly achieved the heights of the wrestling world, and he will almost certainly go down in its history. Danielson outside of wrestling has continuously shown he is principled and motivated not just in regard to wrestling but with regard to life as well, as he has been active in ensuring positive connection with fans and as an environmental advocate as well. He's left a practically perfect legacy within his retirement, and now he can rest easy knowing that he'll go out as one of the greatest in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheKenwynewrote on 15.01.2025:[10.0] "People that don't love Bryan Danielson are fickle and shouldn't be trusted. His body of work, despite struggles with injuries and being stranded in the indies for the first 10 years of his career is still amongst the best of any wrestler, period."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Drew115wrote on 12.01.2025:[10.0] "The rating couldn't be anything but a 10. He's genuinely just an incredible professional wrestler, even in a world of other incredible professional wrestlers. He overcame all obstacles and reached the top of the industry at WrestleMania 30. One of the all-time Independent greats, one of the all-time WWE greats, and now one of the all-time AEW greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Modestwrote on 09.01.2025:[10.0] "Bryan Danielson is my favorite wrestler of all time. Someone who I grew up watching. He's one of those guys where I feel like a lot of people won't realize what we had until he's gone. I legitimately can't remember the last time I didn't enjoy a Bryan Danielson/Daniel Bryan match, if there was ever one to begin with. There was never someone who made me feel more for the sport of professional wrestling than Bryan Danielson made me feel, he taught me that not every match needs a big soap opera story going into it, but that a story can also be told in the ring through moves, selling, counters, near-falls, etc. Some people would criticize his promo work or charisma and I can never understand why. When he's given a chance to go out and pump up the crowd and connect with the audience, he has a 100% success rate. His retirement promo from 2016, his promo the night after Wrestlemania 30, his promos against Kofi in the leadup to Kofi-Mania, his promo against Hangman after their 60-minute draw, his "When I die, my heaven will be in this ring" promo before the Ospreay match, or his promo on Swerve the week before All In 2024. And that's not to mention his matches, oh boy where do I start? He might have like 4 or 5 out of my 10 favorite matches of all time. In WWE against Cena, Punk, Lesnar, Roman, Kofi, and Styles. In Ring of Honor against Samoa Joe, KENTA, Roddy Strong, Nigel McGuinness, Homicide and Morishima. Or most recently in AEW or NJPW against Omega, Hangman Page, Eddie Kingston, Mox, Okada, ZSJ, Ospreay, Starks, Daniel Garcia or MJF. In my opinion, his match catalogue is absolutely unmatched. A timeless wrestler who will never be forgotten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TWBwrote on 08.01.2025:"Arguably the best technical wrestler of all time. His Yes movement is one of the coolest things to happen to WWE, as it forced them to swallow their pride and give fans what they wanted. His AEW run wasn't the greatest, but ending his full time career with the AEW World championship was a nice sendoff."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MEDaminewrote on 07.01.2025:[10.0] "One of the GOATs of wrestling, idk what else to say, wherever he went, he has an insane match catalogue, and wherever he went, he was a face of the company, and he proved himself even when he wasn't wanted from WWE, that's how great he is"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ozwernwrote on 07.01.2025:[10.0] "One of the greatest to ever do it. His presence has been missed in AEW even though it's only been a couple of months. Hope he makes the best decision for his health but selfishly I'd love to see him in the ring once again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Roangoddardwrote on 05.01.2025:[10.0] "Yeah, he's probably the greatest of all time. Not much I can say that everyone doesn't already know. Insane match catalogue over 3 top promotions and been the face of each of those companies. Forced his way to the top in the biggest promotion on the planet when the guys in charge didn't want him to be, the definition of undeniable. Fans can't help but love him yet his character work as a heel is equally as impressive."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: anarchovampwrote on 27.12.2024:[10.0] "Simply put, one of the greatest wrestlers of all time. Danielson is able to combine a wizard's array of technical moves and high-impact strikes with elite crowd control and connection. Genuinely the only person who has a comparable prime and longevity to him is probably LeBron James. And while he's well known for his great babyface work, and probably stands as the WWE's best "top face, " even if it was momentary, his heel work is somehow even stronger. And not only is he of the greatest minds that a worker has ever had, and showed it off as a seminal tool for his legendary in-ring career, for many people, the greatest professional wrestler they will have experienced in real-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: spacedustnebulawrote on 23.12.2024:[10.0] "Invariably the greatest wrestler to ever step into the ring. The fact that he was putting on amazing MOTY contenders at 43, after a quarter-century long career and however many neck injuries and spinal fusions he's had speaks so much to not only his physical talent but his complete and total understanding of wrestling as both a sport and an artform. For the sake of the sport I hope we do see someone at his level sometime again, but it's very unlikely anyone will be as good as the American Dragon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Its Clobbering Timewrote on 13.12.2024:[10.0] "The American Dragon Bryan Danielson is easily one of the best Wrestlers of All Time. He Has been the Top Guy at every company he's Been at. Bryan has had 3 Hall of Fame Careers In WWE, AEW & ROH/ The Indies, he is a 4x WWE Champion, 1x WWE IC Champion, 1x WWE US Champion, 2x WWE Tag Team Champion 1X AEW World Champion, 1x ROH World Champion & An 2x PWG World Champion. Bryan is also one of the best In Ring Wrestlers Ever, He Has had amazing Matches with the likes of Nigel McGuiness, Kenta & Chris Hero In Ring Of Honor & The Indies, In WWE he has had amazing matches with John Cena, AJ Styles, Brock Lesnar, Triple H, Dolph Ziggler & Kofi Kingston. In AEW & NJPW Bryan has had Dream Matches where he will Kick Your Fucking Head In with the likes of Kenny Omega, Will Ospreay, Swerve Strickland, MJF, Kazuchika Okada, Minoru Suzuki & ZSJ which is considered to be one of the best Technical Wrestling Matches of All Time. Bryan's Peak was in 2014 during the Buildup of WrestleMania 30 where he was the most loved and over wrestler in the world with the whole Yes Movement. In one of the Best Wrestling Moments of All Time Daniel Bryan Beat the Authority to become WWE World Heavyweight Championship after opening up Mania Against HHH & Main Eventing Mania against Randy Orton & Batista. Bryan Danielson is Truly one of the Best Ever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: maven loverwrote on 29.11.2024:[10.0] "The easiest 10 I've ever had to give. Is so fucking good at wrestling that he used a 5'8 (! ) body to successfully break through Vince McMahon's big-man complex; becoming among the best (if not the best) underdog champion the WWE has ever seen. He's so good that he made the otherwise-abysmal Wrestlemania 30 one of the most loved Wrestlemanias ever. He has forgotten more about nuances & maneuvers than most workers will ever know. Seems incapable of putting out a poor match, & always gave everything of himself that he could into every match & angle that he has worked, ever. Contemporary society's answer to people like Kurt Angle & Dustin Rhodes, & his presence successfully influenced new stars we've come to love today, like Mike Bailey & Konosuke Takeshita. Selfless to a borderline self-injurious fault. Uncannily, incredibly amazing & wonderful."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AceHagannwrote on 26.11.2024:[10.0] "Simply put, a beyond brilliant wrestler. A technical machine that is a master of the craft. His brilliance outside the ring is also commendable, with a flexibility to his character that allows him to shine in whatever scenario he is put in."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: lokithemadtitanwrote on 21.11.2024:"I have been watching Bryan wrestle for entire career. I have seen him wrestle live many times. I can honestly say I have never been anything but in awe of his passion and technical skill."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: wrestlingswiftiewrote on 18.11.2024:[10.0] "Bryan Danielson is nearly the perfect wrestler. He has such a relatable, fun, and realistic character that makes you feel emotion... Whether that be the small underdog not expected to succeed, or the pure-wrestling badass. I honestly believe he's up there with the likes of Bret, Shawn, and Kurt, in terms of ring work... Arguably even better."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Joelwrote on 17.11.2024:[10.0] "Bryan Danielson is truly an incredible athlete and a testament to perseverance. Scouted by Mark Henry, he faced skepticism from many, yet he never let that deter him. He consistently pushed himself, fought through challenges, and emerged as one of the greatest in-ring performers we've had the pleasure of witnessing. His journey in this business has been remarkable, and it's important that we acknowledge and celebrate his hard work, his captivating character, his powerful connection with fans, and his heartfelt promos. Despite being a punk kid at just 5'11" and under 200 lbs, he has proven that passion and talent know no size. Even after a decade in the industry, he continues to thrive and is still regarded as the best in the world. Thank you, Bryan Danielson, for inspiring us all and for being such a remarkable presence in wrestling. He truly is the man!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AlienHominidwrote on 14.11.2024:[9.0] "In-Ring Ability: 5/5, Gimmick: 1/1, Fan Connection: 1/1, Promo Skills: 0/1, Career Retrospective: 1/1, As a person: 1/1. Danielson is another wrestler I find to be incredibly polarizing in the sense that for a lot of people he just doesn't work, which is a position I've found confusing. I started truly watching wrestling around the time where Daniel Bryan was beginning to appear as a big name in WWE, and I've consistently loved him since then. He's definitely one of the more skilled workers to come out of the United States, and I feel his matches in Ring of Honor and Pro Wrestling Guerilla laid the foundation for the shift away from only "big guy" wrestling and subsequently the acceptance and praise of technical wrestling outside of Japan, Mexico, and other hotspots. Furthermore, he cemented himself during his tenure in WWE where he consistently survived WWE's attempts to put him down and proved himself as an all-timer among their biggest names. His character has remained largely the same throughout the majority of his career, a smaller, more technical underdog who was always able to surprise those watching him. He was the type of guy you rooted for in the same sense that you would have for Mick Foley or that you do now for Jey Uso or Iyo Sky. When he was a heel, he was an effective one, building connection with fans during his time as a face and then attempting to destroy it as a heel creating the perfect scorn for him, such as during the "No! " movement or his militant environmentalist persona. His AEW run has focused mostly on his current reputation as a living legend and in this sense I feel they have not properly used him, but not to the point that it effects my view of him as a character. Even today in the latter years of his career he is still sought after and he leaves pleasant memories in the minds of fans as someone who may not have always been there but was there for the love of wrestling and the fans when he was. He's been a part of some of the most memorable storylines and movements in wrestling's modern history, and not even just in the big leagues. Personally I feel that Danielson has truly achieved the heights of the wrestling world, and he will almost certainly go down in its history. Danielson outside of wrestling has continuously shown he is principled and motivated not just in regard to wrestling but with regard to life as well, as he has been active in ensuring positive connection with fans and as an environmental advocate as well. It is hard to find much to criticize about him but I decided to dock the point on promo skills because if anything his promos were not necessarily as memorable as his wrestling and his other mic skills, specifically crowd interaction, and generally because I do believe he isn't necessarily the perfect wrestler. Still, absolutely an all-time great and one that I hope continues to do more behind the scenes for the business as he is likely soon to retire."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ItsAllAWorkAnywaywrote on 13.11.2024:[10.0] "You wouldn't assume that someone under 6' and under 200 lbs could be one of the best wrestlers of all-time, but that's what Bryan Danielson has become. He spent the early part of his career working on being an excellent in-ring technician. This opened the door for him to WWE, where he began to improve massively in regards to charisma, mic skills, and developing "it" factor. Though he his now in the latter stages of his career, he can still serve as any promotion's champion and absolutely deserved his "WrestleMania" moment during WM30."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Brando Calrissianwrote on 01.11.2024:[10.0] "I don't really have much to say about Bryan Danielson except for this simple statement: Bryan Danielson is definitely THE best wrestler EVER. It is not only due to his immense skill and technical ability and his career of incredible matches, it also has to do with the fact that Danielson is the most giving and willing to do anything if it means it will improve the business. He wrestled nothing but dream matches in AEW because he wanted to push the industry and talent forward. He wanted to showcase great wrestling with all sorts of talent, including putting people like Daniel Garcia and Ricky Starks and Shane Strickland into the stratosphere with incredible matches against him. Now, hopefully Bryan can rest and recover from his insane list of injuries he has accumulated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dweeeabwrote on 27.10.2024:[10.0] "The greatest to ever do it imo. Danielson had it all in every promotion. An amazing promo, amazing character work and ofc insanely good in the ring. I used to hate technical wrestling, I thought it was boring, but Danielson completely changed my mind on the matter transitioning from submission to submission so seamlessly is incredible and pulling out a submission out of nowhere gets me as excited as a huge move. I also believe Danielson was a master at structuring matches, the pacing of his matches always felt right no matter if it was a slow build up to a crazy finish or a crazy sprint. Greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PenguinPeppewrote on 26.10.2024:[8.0] "I think that he is a truly skilled wrestler. He has always had great wrestling technique and strong promos. But his "last year" storyline was a little bit annoying."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DixieNormas1980wrote on 20.10.2024:"Brian Danielson was trained by Shawn Michaels, yet his moves are limited and he has very bad psychology in ring."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TreyHalowrote on 17.10.2024:[10.0] "In my opinion the greatest to ever do it, and he ended his career in the most "Bryan Danielson" manner of all time and in one of my favorite moments of the year, from ROH, to WWE, to AEW, he ran this shit everywhere man, his runs in these individual companies alone is what most wrestlers only pray to achieve and he did it three times over in three different places, no single hole in his game and one of the most well rounded performers ever, a perfect wrestler in every sense of the word..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NoaHS106wrote on 16.10.2024:[10.0] "Was kann ich hier noch sagen was nicht schon gesagt wurde. DER VERMUTLICH BESTE WRESTLER ALLER ZEITEN. Zudem ist er auch noch am mik gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MrBigPiecewrote on 16.10.2024:[10.0] "In my many years of watching professional wrestling I have never seen a wrestler as complete as Bryan Danielson, he can work any style you want him to and convincingly portray an underdog, the top dog, a geek, a bully, a shooter, you name it, Bryan Danielson can and probably has done it well. There are very few wrestlers who can say they've done as much as him in one major company let alone 3, not to mention anywhere he's worked he's had a good run or a memorable performance, wether it be on a hawaiian military base or the tokyo dome. The 10 rating is very overused, but personally I believe Bryan Danielson is one of the few to wholeheartedly deserve a 10 rating, and I think we should feel very honoured to have watched him as long as we did. One of the Greatest of All Time, without a doubt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: igskillfartwrote on 13.10.2024:[10.0] "What else can i say got him, his career speaks for himself, Danielson is one of if not the greatest wrestling stars to have ever laced up a pair of boots, he will be truly remembered as a wrestling legend, thank you Danielso."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CrystalXCXwrote on 08.10.2024:"No other wrestler can make what Danielson does in that ring, he is the greatest wrestler alive and he WILL kick your fucking head in."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JLHarmanwrote on 05.10.2024:[10.0] "Bryan Danielson is the GREATEST OF ALL TIME, everything seems so simple to him, it's impressive. Nobody makes me feel as much emotion as he does. He's the best wherever he is, at ROH he was the best, at WWE too, at AEW too and even at NJPW on those rare occasions. Bryan Danielson is the definition of Pro-Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cakels1wrote on 27.09.2024:[10.0] "Danielson is simply the GOAT. No ones comes close to the amount of just absolute greatness Danielson has done over his entire career. The greatest Techincal wrestler no doubt. The greatest storyteller no doubt either. No one can make you FEEL as much as Danielson does. He understands how to go in and have a great match each time. No matter face or heel. Simply put the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Nolan Greenwrote on 25.09.2024:[10.0] "The best wrestler in the world. Everything he does is great, he can make chicken salad out of chicken crap, and puts his heart and soul in every match. Even all the crap that he gets stuck in AEW, he does his best to match it good. He's the best in the world for a reason."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: justabagwrote on 20.09.2024:[10.0] "Bryan Danielson is the greatest wrestler ever. Incredible in any type of match and any type of style. Nobody can touch him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LuiVillwrote on 11.09.2024:[10.0] "Danielson, a master technician, among the best to ever to do this professional wrestling thing, is also a masterful storyteller. His matches make you feel something, demanding an investment of your emotions in the outcome. The story being told through the match is what makes him special but the wrestling ability is still able to take your breath away. With simplistic brutality and a surgeon's precision, you can believe this man is capable of beating anyone in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ItsLugerwrote on 10.09.2024:[10.0] "The greatest professional wrestler of all time. No question, no debate. He has been operating as a peak world class wrestler in every promotion, at every time period, at every era of professional wrestling he's been in. No one can equal that. Even under different wrestling philosophies, storytelling focus or in-ring focus, he excels to levels unlike anyone else. No one has ever been like Bryan Danielson."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: travis807wrote on 09.09.2024:[10.0] "Bryan Danielson has reached a level where even if hes not your personal GOAT, you dont bat an eye when someone else says hes the GOAT. His matches in 2024 are as good as hes ever had."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LMZ2020wrote on 06.09.2024:[10.0] "A first-ballot hall of famer and undisputedly one of the greatest and most important wrestlers to have ever stepped into a ring. Anything lower than a 10 would be blasphemous. EDIT: yep, Bryan Danielson is the Kendrick Lamar of professional wrestling. Just GOATed beyond any doubt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Djomowrote on 03.09.2024:"Fantastic match. Excellent stadium atmosphere. Being there in the crowd was like nothing else and I don't think it will ever be topped for myself. Easily a 10/10. Had I not been there in-person, maybe I wouldn't go the full 10; but watching this live in the crowd was absolutely peak wrestling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: mendescelticwrote on 30.08.2024:[10.0] "Look, I understand that the topic "GOAT" has a lot of names that are good choices for this title, but Danielson is just above everyone. This man has been wrestling for 23 years and he's still better than almost every single pro-wrestler in history. Everyone has a different wrestling style and every category can have it's own GOAT, mas Danielson is simply amazing and cannot be put in just one specific category. Alongside Kurt Angle and Mitsuharu Misawa, this man has proven time and time again that he's on a different level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TH0810wrote on 29.08.2024:[10.0] "Simply put, the greatest professional wrestler of all time. from ROH to WWE to AEW & NJPW, he has always been at the top of his game consistently for the last 25 years. He wasnt lying when he said he was the best wrestler in the world, and has been for the last 25 years. It has genuinely been an honor to have been alive at the same time as Bryan Danielson & Daniel Bryans active in-ring career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SCMIV440wrote on 28.08.2024:"I personally believe that Bryan Danielson (or Daniel Bryan whichever rolls off the tongue better for you) is the greatest wrestler to ever live. For me the greatest thing about him is that it doesn't matter whether it's in a garage or at Wembley Stadium: he will always give 110%. A promoter can ask him to jump and he'll ask how high. He's dominated for over 3 decades in multiple continents. This second run that he's currently on is, in my opinion, better than some wrestlers will ever do in a single career. I do understand his decision to retire but I will definitely miss him as a performer."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Decapopodwrote on 28.08.2024:"Bryan Danielson is why I love pro wrestling today. I started watching wrestling with WCW then WWE and I always liked that. But watching Danielson during is ROH run was a revolution. Since, I watched him in WWE and AEW and I always feel he was THE wrestler. There's a lot of great wrestlers but for me Danielson is the greatest american wrestler of all time."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Semicorrectwrote on 28.08.2024:[10.0] "It's hard to rate wrestlers across different eras, but Bryan Danielson is without question one of the greatest of all time. While he's had some peccadillos in his career, like overly long matches in ROH and an insistence on doing some silly story stuff in WWE and the occasional meh match, no American wrestler has been more consistently great -- and he's been great for 20+ years. Outstanding promo ability, outstanding technical ability, outstanding fire, an unparalleled ability to get fans to boo him when almost anyone else would have to be a permanent babyface given his reputation... if he's not a 10, no one is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: A 64wrote on 28.08.2024:[10.0] "If Ric Flair isn't the greatest wrestler of all time in North-America, then it's clearly Bryan Danielson. The fact that this guy Can be considered as in the top 10 best wrestlers of the decade THREE times (2000s, 2010s and 2020s) is just something nobody else can do. I'm just not ready for the greatest in-performer of all time go retire."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RaindropsOnRoseswrote on 27.08.2024:[10.0] "This man is the greatest professional wrestler of all time, bar none. The greatest at every aspect of wrestling, he is the perfect professional wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ShaneHaugheywrote on 27.08.2024:"One of the greatest wrestlers of all time. In-ring, I would say he is absolutely the best. He always knocks it out of the park and is the only wrestler to have brought me to tears of joy."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Chosen Onewrote on 27.08.2024:[8.0] "Der frühe Teil seiner Karriere ist mir unbekannt, aber ich fand ihn in NXT Season 1 sehr unterhaltsam im Tandem mit The Miz. Schade, dass die beiden sich nicht mögen, weil sie unglaublich unterhaltsam zusammen waren! Über den Rest seiner WWE-Karriere muss man wohl nichts sagen. Er war unfassbar over und das in einer Zeit, in der sonst die Fan-Reaktionen eher mäßig waren (im Vergleich zur Attitude Era vor allem). ABER sein Moveset hat mir nie so zugesagt und er war ziemlich anfällig für Verletzungen. Am meisten mochte ich ihn deshalb für seinen Witz und seine Persönlichkeit, die im storybasierten WWE am besten in Szene gesetzt wurde. In der mehr sportbasierten Liga AEW finde ich ihn leider weniger interessant."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 0nly1Boiwrote on 27.08.2024:[10.0] "How do you even describe the career and legacy of Bryan Danielson? No words could ever really describe him, you'd just have to watch his matches and just experience how special of a wrestler he is. Incomparable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GameBoyAbysswrote on 27.08.2024:[10.0] "Almost certainly the best western wrestler of all time, and a high contender for the GOAT. Is there any other wrestler with such a high proportion of bangers! ?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BigVan JimmyWangYangwrote on 26.08.2024:[10.0] "I wish I could give him a 20, at this point has cemented himself as the GOAT by a comfortable margin, NOBODY has as many all time great matches over as long of a period of time as consistently as Bryan. Man has been a top star everywhere he goes and had a whole award named after him because of just how damn good he is. Today is August 25th 2024 and earlier today Bryan won the AEW World Championship infront of 50k people in the main event of All In. Today is a good day"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MatthiasMarkingwrote on 25.08.2024:[10.0] "Best of all time man, comfortably the best babyface ever and also a sensational heel. No wrestler gets me consistently out of my seat like the american dragon"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: genericusernamewrote on 24.08.2024:[10.0] "Absolutely in the conversation for the best of all time and even as he is supposedly winding down still has a great argument for being the best wrestler in the world. Everything he does is in service of the match and the story, and his ability to connect with the crowd is top notch. That's not even getting into his ability, both as a technical wrestler and otherwise. It's going to be quite sad when he hangs it up"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Odinohkawrote on 22.08.2024:[10.0] "I'm convinced that Bryan Danielson is the best wrestler in the world. His intelligence in the ring, his positioning and his wrestling are unrivalled. Every character works with him, every opponent shines against him and he shines against everyone. He's capable of anything, he sells wonderfully, every one of his moves is credible and impactful, every one of his holds is brilliantly and precisely executed, it's a flawless performance. Both in-ring and acting. He's got it all, and it's a shame the WWE let him slip away."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ceasara63wrote on 17.08.2024:[10.0] "Bryan Danielson might honestly be the greatest professional wrestler of all time. Over twenty-five years, Danielson has been competing at such a high level and never really ever having a "prime", he's always been great and has just been getting better and better as he gets further into his career. His in-ring work alone would justify my high rating, he's had so many countless classics and is able to have a great match with virtually anybody. Looking at other stuff though, he is a severely underrated promo, he's never had one standout promo but he has an enjoyable promo style, passionate and real. He is perfect at being the underdog face, the role he's played most throughout his career, but he is also a great heel, and has the very rare ability to be able to switch between whenever necessary and make it work excellently. Countless memorable matches, memorable moments, Danielson has built a great legacy for himself in professional wrestling. Danielson has been a permanent fixture of my wrestling fandom since I was a child, he's always been one of my favorites, and even if next weekend is the end of his career, there won't ever be anybody as good as him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Willie 19200wrote on 15.08.2024:[10.0] "Without a doubt he is the best wrestler of all time. He puts on great matches and story lines everywhere, He puts on great technical matches with people like CM Punk, Zack Sabre Jr, Katsuyori Shibata, Kenny Omega, and so many more. He was also known as one great underdog story in 2014 with the fans forcing the WWE to put Bryan in the main event Wrestlemania 30. It is sad that 2024 will be his last full year in wrestling but 2024 has already been a great year for him. He revolutionized the sport and always gives 100% in the ring. Bryan Danielson has always shown compassion, Effort, and Love to Pro-Wrestling and he will go down in history as the greatest to ever do it. One other thing Danielson has is the ability to put people over. In his AEW career he's put over countless talents and has rarely been put over in feuds, but still is one of the biggest fan favorites plus one the greatest of all time. Overall Bryan Danielson is amazing and when he retires later this year it will be the end of an era for pro-wrestling. 12/10 The GOAT easily."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: UltraMark1wrote on 15.08.2024:[10.0] "There is an argument for Danielson to go down as the greatest wrestler of all time - whether it's in wwe, aew or Roh he has consistently proven himself to be the greatest- He's had classics everywhere he's gone and can elevate any talent and can give them their best matches of their career such as kofi Kingston at wrestlemania 35 - having wrote this before his match againt sweve at i all in whether he wins or loses he will go down as one of the greats"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BULLETCLUB4EVERwrote on 14.08.2024:[10.0] "One of the best wrestler in the last 20 years. A lot of classic match since he was in Ring of Honor. The tour of the last year is amazing"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KSupreme3wrote on 09.08.2024:[10.0] "Bryan Danielson will go down as one of the greatest wrestlers to ever lace up a pair of boots. The journey it took to get here was insanely treacherous. Once a student of THE Shawn Michaels, His run in early ROH is the stuff of legends, and thats before he ever stepped into a WWE ring. As Daniel Bryan, he fought tooth and nail to reach the top. The Yes movement is a testament to how much the fans loved him. Hes not built like the stereotypical Vince era superstar, which made his ascent to the top even more difficult. But he never gave up, and neither did his fans. His career almost came to a screeching halt due to injuries so severe that the doctors told him to never wrestle again. Again, he never gave up. He returned to wrestling and won multiple championships in WWE until his departure in 2021. When the American Dragon showed up in AEW, it felt like a rebirth of sorts. This run he has been on is nothing short of legendary. At this point; if you see Bryan booked for a match, you know its going to be something special. With only 3 years in AEW hes had classic matches with some of the greatest wrestlers of this generation, such as: Kenny Omega, Will Ospreay, Zack Sabre Jr., Okada, Hangman, Eddie Kingston and the list goes on. As his full time career winds down, its safe to say that Bryan is a certified Hall of Famer. It will be a devastatingly sad day when he decides to retire. A master technician that could make you tap out in many painful ways. Will not hesitate to kick your fucking head in. His Busaiku knee is iconic (as well as the LeBell/Yes Lock). Hes just someone that you want to root for. An underdog that always seems to find a way to overcome obstacles in and out the ring. I have no shame reiterating that he will be known as one of the greatest wrestlers of all time. Bryan Danielson IS Professional Wrestling. And its hard to argue against that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Connor26wrote on 08.08.2024:[10.0] "I genuinely think he could have a great match with a broom He is a legend he made my cry when he retired and when he came back Im eagerly awaiting my first live match of his at Wembley against swerve"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: lgccswrote on 07.08.2024:[10.0] "Danielson probably has the strongest case out of anyone (at least in the US) of being the absolute GOAT of the industry. So good for so long, Danielson's career is winding down but it's hard to imagine anyone passing him up on the totem pole anytime soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Prorasslinanglewrote on 05.08.2024:[10.0] "Good. Lord. What a wrestler. I would like to say this is @modernravns fault as we... discussed some matches but really I was the catalyst for it. But this was genuinely one of the most intense... wrestlers hes ever shown me. This wrestler is incredible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jsbortswrote on 05.08.2024:[10.0] "Best in-ring technician of his generation. Innovator of so much offense and makes everything look incredibly crisp despite being undersized and not a terrific athlete. Great on the mic even though it was a thought of weakness for so much of his career. Unparalleled ability to connect with the audience through in-ring work. Delivers every single time the bell rings. One of the best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: YuuRiTKwrote on 03.08.2024:[10.0] "This man is a bloody legend, whether it be in WWE, ROH or AEW, this guy is one of the greatest wrestlers of all time. I'd put him up there with Mitsuharu Misawa and AJ Styles as one of the top three wrestlers in the world. Man, how can you not like him?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "Arguably the best wrestler that is active right now. Every match he has I watch, even with people I don't really like. He gets me to enjoy matches that I never thought I would just with his presence. The world of wrestling will miss him when he finally retires, and until then we need to appreciate what we have in Bryan Danielson."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Vairawrote on 01.08.2024:[10.0] "Bryan Danielson is the best wrestler in the entire world right now. Has the best matches with anyone, cuts intense and genuine promos, has an authentic character that you can always get behind and understand. He's a technical genius, his wrestling is an art and he's a living legend. He's #1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dntbamarkwrote on 29.07.2024:[10.0] "D-Bry is one of the most technically gifted performers and one of the best pound-for-pound wrestlers working in the business today. He's a guy that practically had to claw his way to even get a shot in the WWE and made the most of it when he finally got his chance. I loved his work as "Earth's champion, " and his run in AEW has done wonders for the company."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ozzywrote on 23.07.2024:[8.0] "I firmly believe that Bryan is one of the most overrated wrestlers in the industry. No promo ability, barely any charisma, good in ring work and one of the best OF HIS ERA emphasize OF HIS ERA. He is a respectable technician and I have no belief that he isn't talented in that ring, but when I hear that he is supposedly the greatest of all time, it honestly makes me groan every time. His legacy in ROH can only be potentially matched by Punk, Cole or Joe, (Singles only so no Briscoes) which is no shame. If he were solely ROH he would absolutely recieve a 9 or 10 but you look at the rest of his career where he is more known for WWE, with wrestlers like Flair, Bret Hart, HBK, Steamboat, Macho and Angle, and he cant even come close to comparison, in ring ability or sports entertainment qualities. And that's not mentioning his lackluster waist of money that was his AEW run, where he doesn't even feel like a star, thrown into the terrible BCC. In the PG era of the 2010s, I will acknowledge that very few were on his level, but that's not necessarily a complement towards Bryan, as much as it is an insult towards the 2010s WWE locker room. But most aren't just saying he is the best in WWE history, they say he is the best of all time? I wouldn't even put him in top 25, I have made a specific spreadsheet making a point system out of number of matches, career length, the ratings people get here on Cagematch/Wrestling Data, Hall Of Fames, Meltzer ratings and what not to determine the goats of all time, (Flair is #1 BTW) and he scores 27th out of currently 1472 male wrestlers, without people like Frank Gotch, Ed Lewis, and Jim Londos having all their data being correct due to certain information being sadly lost to time. That is all without my opinion being accounted for, and I would have him far lower, potentially not even top 75. So greatest of all time? Yeah, no. When competing with Flair, Thesz, Gotch, Ed Lewis, Londos, Gorgeous George, Bryan is a foot note, and that's barely opinionated or an exaggeration."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Advocate of Inokismwrote on 18.07.2024:[10.0] "Maybe the greatest wrestler of his generation. Danielson's effect on the pro wrestling landscape has been nothing short of transformative. He changed the game forever. I don't know what other grade to give him other the highest one possible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Joe907wrote on 15.07.2024:[10.0] "Bryan Danielson is the best professional wrestler of all time. He is just a technical wizard. He went from the small indie shows to the highest mountain of professional wrestling. His wrestling is just flawless. Brings the best out of everyone. He's been doing his best work in AEW. Danielson has been on top of his game everywhere he went. GOAT wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JBruce1018wrote on 13.07.2024:[10.0] "The best professional wrestler Ive ever seen and Id argue that hes the greatest American performer ever as well. Nasty in the ring and underrated on promos (very much like Bret Hart) but his intensity and character work is outstanding as well. A must-watch performer that Im so happy has been able to return to the ring and do so at an extremely high level. Wrestlemania XXX will forever be one of my favorite events for his two spectacular performances and what a great happy ending that it had as well. Hes been awesome in AEW since he arrived and that was after making Roman Reigns on his way out of WWE. Just a brilliant artist and it will be sad when he starts to take a step back, but hes deserved it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JamesHarrowrote on 12.07.2024:[10.0] "Easily one of the best wrestlers to have ever existed from fairytale stories to WWE and dream matches in AEW. It makes me so happy to see him able to wrestle regularly again after his injuries in WWE. Regardless of where he is wrestling its just good to see him back doing what he loves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Xzaviiiwrote on 12.07.2024:[10.0] "The goat of our generation and maybe one, if not the best technical wrestler of all time. I heard someone compare wrestling to music, in this case, Bryan is really the conductor. I dare someone to find something negative about this guy, its literally impossible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ZerKOwrote on 08.07.2024:[10.0] "Bryan is the modern day GOAT for me and one of the best of all time to ever lace them up. Simple as that, and possibly this is an understatment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: bfrgwrote on 07.07.2024:[10.0] "in my opinion bryan danielson is the greatest in-ring wrestler of all time. Bryan Danielson wrestled in so many different wrestling companies and always got over while also delivering the best matches the companies has ever seen it doesnt matter who he wrestles he always bring out the best in them. Danielson almost every year had the match of the year i dont think nobody will ever be good as danielson in the ring he is special."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JTIwrote on 23.06.2024:[10.0] "The best to ever lace up a pair of boots. I'm not exaggerating when I say that Bryan Danielson is the best wrestler in the history of the industry. Where to begin? His in-ring acumen is masterful-- actually, "masterful" isn't good enough. Legendary. His in-ring acumen is legendary. Danielson is like some kind of perfect organism that can not only adapt and evolve but thrive in and even conquer any environment he gets put into. He's a chameleon who can work any style against any wrestler in the world and make it look convincing and real. Absolutely baffling that anyone could think this dude isn't one of the best on the microphone, either. Danielson is a master manipulator of the audience, able to get any kind of reaction he wants. His The New Daniel Bryan gimmick from the late 10's, with the wooden belt and indignant altruism and leading up to Kofimania, is some of the best content you'll find from that entire decade regardless of company. He works so fucking well as the plucky underdog babyface, the sniveling cowardly heel, or the kick-ass-take-names no-nonsense tweener. His short stature only enhances each of those aspects. His physique has also always been impressive, and just his physical health in general is something to behold. Aside from a few years where we weren't even sure that he could wrestle at all anymore, this dude's been wrestling on a regular basis for a quarter of a century. And the crazy thing? This year, his final year, is his best yet. That's fucking incredible. His passion and resilience are astounding. This is a man who not only "gets" pro wrestling but lives, breathes, sweats, and bleeds pro wrestling. He *is* pro wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jjrulswrote on 21.06.2024:[8.0] "Obviously great in the ring, I just have never connected with him as others have. I didn't see his 2010s run so that may impact this, I will go back some time to watch and see if this changes my opinion on him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 2pt0EcoBoostFusionwrote on 09.06.2024:[10.0] "There has been a debate within the wrestling community for many years of whether Bryan Danielson is a top 10 wrestler of all time, whether in this century or of all time. I personally believe that Danielson has all the factors to justify him being a top 10 wrestler of all time. He started wrestling before the 20th century came to a close, but he still wrestles as if he's in his prime, and this is despite him receiving many injuries to his head and neck, which have managed to put him on the shelf before, but only for 2 years from 2016-2018. Danielson has a really good and diverse move-set which makes him one of the best technicians all around, he manages to put on bangers with some of the best in the business and has also put over some great wrestlers while putting on said great matches, which helps the credibility of those he works with. Danielson has good skill on the microphone as well. His character work is great, and brought us the underdog gimmick which led to him winning the WWE Championship in 2014 at WrestleMania 30, which became "The Miracle on Bourbon Street" named by commentator Michael Cole. I still absolutely admire and really enjoyed his Heel Planetary (or whatever you want to call it) gimmick he had in WWE in 2019 and he was apart of that awesome feud which managed to bring us KofiMania, which gave another great but more underappreciated worker in Kofi Kingston an unforgettable WrestleMania moment. He joined AEW in 2021 and it is one of the BEST hires TK has ever made, it really furthered Bryan's legacy and made great moments even despite not holding the company's most prestigious world belt. This year will be the end of Danielson's Full-Time career and although he may be working part-time from some point forward in the near future, I want to thank Bryan for being one of the greatest wrestlers of all time and entertaining many of us. Here's to a perfect 10 point rating!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kai Kantewrote on 09.06.2024:[7.0] "Bei den Bewertungen schwingt natürlich die Liebe zum Underdog in Verbindung mit seiner Leidensgeschichte mit. Klar ist, er ein guter Techniker aber 50 % der Matches bestehen aus Dropkicks und Kicks. Ich bin dessen mittlerweile überdrüssig. Seine Körpergröße beschränkt sein Moveset natürlich im Gegensatz zu vielen seiner Kollegen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Zak22wrote on 09.06.2024:[10.0] "Technical master, his body of work before going to WWE showed he was one of the best in the world and his WWE and AEW run have confirmed this every year since 2010. Danielson is a top quality wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: sarahlicitywrote on 09.06.2024:[10.0] "As Danielson himself said in a promo about a year ago, Bret Hart clearly did not have the foresight when he called himself "the best there is, the best there was, and the best there ever will be". Because as much as I love Bret Hart, and I really do love Bret Hart, the plucky tiny vegan from Aberdeen, WA stands as, quite simply, the greatest professional wrestler of all time. This isnt an exaggeration; people were saying this in 2002, when Danielson was barely old enough to buy a beer after working a show, and ever since then he has gone from strength to strength. It is no surprise that he was consistently one of the most over talents during his WWE from the moment he set foot in Stamford to the time he left ten years later. A man that is so full of heart that the fans would, and did, riot for him if he didn't get the respect he deserves. A man who dragged me back into watching professional wrestling with the Miracle on Bourbon Street. A man who broke all our hearts when he had to retire, and made us cry tears of joy when he was cleared; I still get goosebumps at the crowd in Dallas pointing to the WrestleMania sign for him. But Danielson is not a man to rest on his laurels. He could've been content to phone it in for the rest of his career, coasting on a Legend Pop until he was an old man. But instead, he re-invented himself as one of the most despicable heels in the WWE, playing his part in elevating Kofi Kingston to get the respect HE deserves too. And even after that, he puts on masterpiece after masterpiece, such as the AJ Styles match in the middle of the pandemic. His move to AEW gave him another career renaissance; freed from the mores of PG television, he can spread his wings and turn back the clock fifteen years, and he does so in marvellous fashion. His matches against Page, Omega, Okada, and Sabre Jr. are modern-day masterpieces. He put on a 65-minute banger with MJF just as easily as we get dressed in the morning. And my god, that Ospreay match. Forget Match of the Year; that's a lock for Match of the Decade, and it's only 2024. A master technician, no slouch on the mic, and selfless in his promotion of others, future generations will surely look back and envy us for being able to see the American Dragon in his prime."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Stalks14wrote on 04.06.2024:[10.0] "Will Ospreay vs Bryan Danielson. Nigel McGuinness vs Bryan Danielson. Brock Lesnar vs Daniel Bryan. Kenny Omega vs Bryan Danielson. Daniel Bryan vs The Authority I Struggle to put into words how incredible and everlasting this man is. People will say that others drew more than him, had better promos than him. But no one will make you feel like Bryan Danielson will. In my opinion the greatest professional wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rassle Fanwrote on 31.05.2024:[10.0] "If there's any negative I can come up with it's that he gets injured a lot. I can't really hold that against him because he's so passionate about his craft that he puts everything he has into every match. In American wrestling he's the closest we'll ever get to another Bret Hart."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: blastermertwrote on 14.05.2024:[10.0] "Bryan did it all, does it all, and I hope will do it all and all. Maybe the best in-ring among wrestling universe, one of the best crowd engagement in history, elevating the promising others when it comes to that, he never ever disappoints when it comes to putting up a good match, hell you'd even not going to be disappointed if you expect one of the greatest matches of all time. He is my first station when I want to watch a top notch quality art in the form of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: imonmxrswrote on 13.05.2024:[10.0] "can play an admirable underdog babyface, or an absolute annoying prick of a heel. the guy is simply one of the best workers of all time, may not be the biggest of guys but his sheer work-rate and talent make up for all of that. also very good on the mic and elevates almost every single person hes in the ring with, im sure he could have a good match with a mop if he tried."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: leonconnelly652wrote on 09.05.2024:[8.0] "Honestly think he's a little overrated, he reminds me a lot of cross between Owen hart and obviously beniot but I don't think he's as good as either of them. His offense is always a little light when he's striking. Honestly I'm a bigger fan of his character work then of his in ring stuff"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: mr-peanut-butterwrote on 28.04.2024:"To me he is the best wrestler in the world at this point in time and arguably one of the best to ever do it. With Danielson matches, you get an absolute bare minimum standard of "match of the night". He brings the best out in every opponent through the pacing of his matches, the logic of the story they produce and through his own selling. He's got a small stature, but you feel like he could hurt you very badly as he is vicious and his array of submission holds is pretty scary. Just seems a terrific guy outside the ring too."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MichaelB137182wrote on 28.04.2024:[10.0] "Not here to write an essay, not here to recap his career. If you know you know if you dont then find out. Regardless his coming to the end of his career, so appreciate the matches he gives you, give the man his flowers and pray that he can still do a few super matches as there is still alot of wrestlers we need to see him go against. One Of The Greatest To Ever Do It."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: itscalledtaylorhamwrote on 24.04.2024:[10.0] "I'm not just saying this because he's the man who made me love wrestling, but Bryan Danielson is the greatest wrestler of all time. For over 20 years, this man has shown time and time again that he can work any style, face or heel, with anyone on earth and get a solid match. Hell, he could probably get 2 stars out of me, a terrible athlete who's never stepped in the ring. If you watch the early ROH shows, the commentary team knew exactly what he was going to be, and I'm honored (no pun intended) to have seen it happen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ksr31wrote on 23.04.2024:[10.0] "One of the thing i am grateful for life is that i got to watch Bryan Danielson wrestle. The Greatest wrestler of all time. There will never be anyone like him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cosmowrote on 22.04.2024:[10.0] "Bryan Danielson is the greatest wrestler to ever step in a ring he is the goat and in my mind there's not that much competition"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Oddtalkwrote on 22.04.2024:[10.0] "Danielson will go down as one of the best to ever do it. Give it another 10 years and people will be talking about him like people talk about Misawa today (but hopefully without the asterisk of a tragic end)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JustAWrestlingFanwrote on 22.04.2024:[10.0] "One of the all time greatest. He just gets it. He has mastered so many different aspects of wrestling. He has mastered the technical aspect, becoming one of the finest to watch in the world. He has mastered the storytelling aspect, dragging the viewers along for rides for years. He has mastered the art of being both the most loved face and being the most hated heel. He has mastered the art of the promo. But most importantly, he has mastered the art of getting a connection to the crowd. The fact that he has managed to climb to such heights, and still put on legendary matches to this day in spite of his injury history, he really is in that best of all time discussion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JWC122304wrote on 19.04.2024:[10.0] "You can count the amount of bad matches he has had on one hand. Every time he steps into the ring, no matter the opponent, almost a guarantee its going to be great. Truly one of the greatest to ever step foot into a wrestling ring. An incredible underdog and awesome heel. Great on mic and overall great human being. An incredible story, from premature retirement to a run of a lifetime. Will go down as one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TommySDKwrote on 17.04.2024:"The GOAT in my opinion. One of the go-to wrestlers I know I can watch to find an amazing match on any given night from both a wrestling and storytelling aspect"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: arisenbywrote on 12.04.2024:[10.0] "[9.9] Danielson is actually about as close to a perfect wrestler as you can get. Anyone putting this man outside of their top 5 in-ring hasn't seen him. Amazing in the ring, great promo, passionate, has the range to be a huge babyface or heel, the man has it all. It's going to be a sad day when he finally hangs up the boots for good, but for now, all we can do is enjoy his generational run for whatever time he has left in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: tlaustinwrote on 05.04.2024:[10.0] "Innovative, passionate, charismatic, able to produce a classic match with anyone of any wrestling style, has had all-time great matches in just about every promotion he's ever stepped into, can be the biggest babyface in the world and the most hated heel in the world whenever he needs to be either, was able to make a cartoonist vegan villain work somehow, survived some of wrestling's most famously bad booking decisions only to come out stronger, and he's still doing it better than most 2 decades into his industry-defining career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Beeebonwrote on 01.04.2024:[10.0] "I have watched plenty of Danielson's matches from all stages of his career, he really does live for wrestling and is a phenomenal performer, I don't really have much to add other than the fact he is one of my absolute favourites"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: andytuga86wrote on 30.03.2024:[4.0] "The fact that this guy is one of the most popular wrestlers of all time, is beyond me. Not really the kind of Superstar i want to se as the face of a company or the Champion. I don't like his Indie body type at all, which has become the standard model for a lot of wrestlers. That was a big downgrade for the Wrestling product in my views. I will never understood the hype for him even though i can see some charisma (kinda forced sometimes) in him and some innovative moves in the ring. Way overrated for sure."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Brutish Dandywrote on 28.03.2024:[5.0] "Quite possibly the single most overrated worker of the past fifty years, Bryan's overcompensation for his lack of physical aura and natural charisma has resulted in him chronically endangering his health with a style that he refuses to change despite having a wife and kids. That's not just being a mark for yourself, that's being an objectively bad husband and father. If he had half the smarts his supporters proclaim he would've stayed retired the first time around. I guess his matches with Morishima from twenty years ago were good though. Best wrestler ever."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Pigeon Scratchwrote on 26.03.2024:[10.0] "One of the best, ruthless, lovable men in the entire business, I can't say a single bad thing about him because he does everything so damn good. A great look, A fantastic technician and overall allrounder, one of the best promos around, and genuinely such a great guy outside of the ring through and through. Whether it's during his indie days, the top American promotions like WWE or AEW, or his occasional match in Japan, he's just absolutely incredible. I personally think he's currently in his prime, and has almost been constantly putting out banger after banger in AEW and NJPW. A personal favorite."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Michael Morbiuswrote on 27.02.2024:[10.0] "The greatest of all time. The perfcet mix of in-ring skill and promo work. Everytime he gets in a ring he is always impressive, delivers great perfomances and makes his opponents look like a million bucks. His promo are real, it looks like he means every word coming out of his mouth. He has the best babyface and heel run in the modern day WWE. His run in ROH and the indipendent early on in his carrer was phenomenal. His run in AEW has established him as the goat. He's also a true inspirational figure for overcoming the odds: despite the all injuries he suffered throughout his carrer and potential carrer ending injury in 2016 he's still here putting some of the best matches you'll ever see. Indomitable will personified. Simply a living legend and the greatest wrestler who has ever lived."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AmirTheEnforcerwrote on 26.02.2024:[10.0] "There is nothing negative that can be said about this very fine fellow, The American Dragon ticks all boxes and no matter where he is, he never fails to be jaw dropping."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TripleCrownwrote on 24.02.2024:[10.0] "I mean, come on, it's Bryan Danielson. Incredible wrestler before WWE, grew a lot character-wise within the promotion and became a huge name. He is one of the very few wrestlers you know could put on an absolutely fantastic match regardless of his opponent or the amount of people in the crowd. Injuries really took away some great years from him, but he bounced back in a huge way and is still killing it in AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Spookylol1wrote on 21.02.2024:[8.0] "He's excellent and you would be lying to yourself if you said otherwise. Shoutout to his selling in his match vs Brock Lesnar, one of the most difficult to watch matches of all time solely due to how well Bryan sold Brock's offence."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Divus Rolexuswrote on 19.02.2024:[10.0] "My personal GOAT and certainly the best American wrestler ever. No one had such a complete career everywhere in the world. He is one of the reason why I fell in love with wrestling, just the perfect wrestler. He never delivered a bad match, if you have one with Danielson, then you're not a good wrestler. His indy run in the 2000's is fantastic, straight-up classics with Nigel McGuinness, KENTA, Chris Hero, Morishima, Samoa Joe... WWE really treated him bad for the first years but they stopped to be stubborn and fully exploited his one of a kind talent. I really much appreciate his heel turn in 2018 and his world title reign at the time. And then, you have Danielson in AEW. Just perfect for now. He got a new youth and his last full time run is simply legendary. His match against Kenny Omega is my favourite one ever in AEW. He also had legendary matches with ZSJ, Adam Page and MJF. Not acknowledging Danielson's talent is just bad faith. I'm glad I got to witness his career and I sincerely think, once he retires, he'll be next to names like Kurt Angle, Bret Hart, Shawn Michaels, in the history of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wrestling Foreverwrote on 12.02.2024:[10.0] "Also wenn ich hier lese das Bryan Knochen aus Glas haben soll weil er sich nun mehrfach verletzt hat kriege ich innerlich schon eine gewaltige Wut auf solche Aussagen die sowieso nicht stimmen. Auch auf das sein Moveset bezog das es schwach sei. Hier ist nun mal die WWE und Bryan darf halt viel nicht zeigen. Damit muss ich klar kommen. Aktuell geht es ihm übrigens wieder viel besser. Er will wieder wrestlen ihm ist langweilig er vermisst es einfach und er wartet auf die Freigabe der Ärzte das er wieder aktiv in den Ring steigen kann. Alter Text: Bewerte nun seine bisher gesamte Karriere. Als ich das erste Mal damals in einem Wrestling Magazin über ihm laß war ich nicht an ihm interessiert. Da hab ich mich noch nicht fürs Indy Wrestling begeistert. Auch als er dann in der WWE bei NXT war ließ er mich kalt, doch das hat sich bald geändert. Er wurde für mich dann in Laufe seiner WWE Jahre immer interessanter und hat mich immer mehr begeistert. Inzwischen hab ich auch viele seiner Matches aus seiner Indy Zeit gesehen und man kann der Mann wrestlen. Egal ob die Matches unter 60 Minuten, 60 Minuten oder drüber sind seine Matches bei ROH sind einfach nur geil. Aber nicht nur da sondern auch bei PWG, Dragon Gate USA und sonst im Indy Bereich. Auch bei der WWE ist Daniel absolut angekommen. Zur Zeit ist er total over und hat auch schon einige wichtige Title in der WWE gewonnen. Zwar darf er vieles was er drauf hat nicht in der WWE zeigen doch das was er zeigt überzeugt auch in der WWE absolut. Charisma hat er genug, inzwischen ist er auch gut am Mikro und über seine Wrestling Fähigkeit muss man nichts mehr sagen. Edit: 09. 04. 2018 Jawohl er ist wieder aktiv im Ring egal wenn es auch im WWE Ring ist. So nun große Bitte an die Booker AJ vs Bryan Backlash 2018 ich will es einfach sehen. Edit 12.02.2024 Bryan überzeugt seit Jahren nach dem er nun bei AEW dort ist. Was ich interessant fand nach echt Jahren wurde das ROH World Title / ROH Pure Title Unification Match von ROH Unified in seinem Matchguide überboten und zwar mit dem Singles Match vs. Zack Sabre Jr. bei NJPW The New Beginning In Osaka 2024. Nach der Niederlage hat er Backstage Zack als den besten technischen Wrestler anerkannt. Bryan wird dieses Jahr 2024 seine Karriere beenden bis dahin genieße ich ihn noch im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RusherBryan29wrote on 10.02.2024:[10.0] "One of the best wrestler of all time. His in ring is always amazing, great talker, believable moveset. Also he's respectable figure in wrestling. Long live the American Dragon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: minimark215wrote on 07.02.2024:[10.0] "One of the greatest to ever do it. Great promo, can play a wide range of characters. Amazing in-ring work and technical prowess. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GhassaneJabriwrote on 02.02.2024:[10.0] "The first Bryan Danielson match I've ever watched was the 2013 match against John Cena. It was so weird to witness what I thought was a weird-looking bearded troll who non only beat the most recognizable wrestler in my native country (Morocco) but also turned out to be inspiring, entertaining, hilarious, ballsy, scary, but most of all, one of the most amazing workers in the history of professional wrestling. WWE Daniel Bryan was my initial draw towards wrestling. ROH Bryan Danielson was even better and made me fall in love with one of the best eras in ROH's history. And AEW Bryan Danielson is easily the most incredible tour de force from someone whose injuries nearly led him to never wrestle again. His body of work has a little something for everyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MattHallwrote on 31.01.2024:[8.0] "I like Daniel Bryan, he is very good in the ring and had some classics with John Cena, Triple H, Undertaker, Kane, CM Punk, or just about everyone. My favorite Bryan match was him vs. Cena at Summerslam 2013, and defeated him for the WWE championship!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kynarionwrote on 29.01.2024:[10.0] "Easily the greatest in ring performer in North America. What can you say about him that hasn't already been said ad nauseam? Electrifying"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Tragiicwrote on 27.01.2024:[10.0] "Amazing heel, amazing face, some of the best matches I've ever watched. Probably the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MaximilianBernerwrote on 27.01.2024:[6.0] "Für mich keiner der "Larger than Life" Charaktere die mich im Wrestling so begeistern, wenngleich man ihm die Qualität seiner Arbeit nicht absprechen kann. Trotz allem niemand mit dem ich mich identifizieren kann oder der mich mitreisst. Die Fans lieben seine Story so wie sie die meisten Aussenseiter Stories lieben, ich persönlich kann ihm beim besten Willen nichts abgewinnen, tut mir leid."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: packjutneywrote on 24.01.2024:[10.0] "The GOAT. I don't think I need to say anything else. This man singlehandedly got me back into wrestling on multiple occasions, and has continued to deliver. I love his WWE work, but I will say his run in AEW in terms of match quality may be one of the best runs ever? ! I wanted to throw a rating up for him now that he's almost done wrestling full-time; dude is one of the greats in and out of the ring!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Grapefruit Juicewrote on 22.01.2024:[10.0] "A fantastic worker who could get a good match out of just about anybody. Why they couldnt see what he had in him at first is insane, a workhorse and good at pretty much all aspects of the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Plebastianwrote on 07.01.2024:[10.0] "Bryan Danielson is, to me and to many others, the Perfect Wrestler. 'Best in the World' is an understatement."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Madladwrote on 07.01.2024:[10.0] "Brayan Danielson is unreal.one of the greatest american wrestlers ever. his in ring work is perfect and he's a master in psychology and makes everthing he do matter his selling is wonderful.Danielson on the mic is more than solid specially as a heel. He's just incredibe at everything he does"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: tzifeelipwrote on 05.01.2024:"By far the greatest American wrestler I have ever witnessed. I can't say of the world and I can't really talk all time but he MUST always be in that conversation. He hooks you in any time he wrestles and makes you care about him about his opponent about the match about everything. He belongs to every hall of fame there is and deserves to have the happiest of retirements and all his wishes to become true. Stay safe Bryan."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: polishsuplexwrote on 04.01.2024:"Dude's a legend. Has set the bar for the sport and the show of wrestling for his entire career. In-ring, his technicality, pacing, and versatility is incredible. His recent stints on AEW commentary are a brilliant character extension, funny, and sometimes even poignant. Only issue, and it's more of a concern, is a penchant to work through injuries, especially in light of his history. Take some rest, Dragon. You've more than earned it. Rating: A love that never ends."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Machinedwrote on 01.01.2024:[10.0] "Obviously one of the best to ever do it. Awesome technician who can really give you a good match against any kind of wrestler, and an aspect that is really underrated of him I feel like is his in-ring story-telling as in he knows very well how to play a cheating heel, a babyface underdog or just the really overconfident guy who knows he's better than his opponent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CatboyMathuswrote on 31.12.2023:[10.0] "The litteral GOAT, this guy has done it all, from king of the indies, to king of the biggest promotion ever to king of the first WWE Rival company in 20 years, he is the essence of Pro Wrestling ! This guy made me LOVE the wrestling industry, he knows how to captivate an audience, his in-ring skills are truly unmatched, he has incredible mic skills, his storytelling proved multiple times to be near perfection and is good both as a face or as a heel ! I love you Bryan"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: matt17wrote on 25.12.2023:"Greatest in-ring wrestler of all time. Michaels is a close second. Absolutely incredible in all facets of pro wrestling. Great heel, unbelieveable babyface, incredible seller, hard hitting strikes, high flying, submissions, underrated promo, awesome human being aswell, humble and always eager to give back. Absolute GOAT."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: devxntewrote on 19.12.2023:[10.0] "What can be said about Bryan Danielson that has not been said already. If there was a wrestler I would build a company around it would either be Cena, Punk, or Danielson. This man is absolutely the GOAT inside the ring and I do not think that anyone comes close. His brawling is amazing, he's one of the best technicians to ever step foot in the ring, he's super physical, he can play the underdog, he can play the face, he can be a monster weirdly enough and he can have a GREAT match with just about anyone. One of my favorite matches of all time is him going against Kofi Kingston. He made Kofi look like a million bucks and Kofi was able to have his greatest singles match of all time. His catalogue of matches is just too many to list out, but some of my favorites include Kenta at Glory by Honor, Cena at Summerslam, Kofi at Mania, Punk at Over the Limit, Aries at Testing the Limit and honestly many more. There's a reason he's so influential to wrestlers coming up. He is the best and no one comes close to him yet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Perc Anglewrote on 18.12.2023:[10.0] "In my opinion has to be the greatest to do it in ring. He had revolutionary matches for years weather in ROH or WWE or AEW he could have 5 star matches with anyone and has."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: laddermatchwrote on 17.12.2023:[10.0] "Danielson is perhaps the greatest pro wrestler to ever lace up a pair of boots. Nobody delivers in big matches better than him. His ROH run was absolutely legendary. His WWE run was absolutely legendary, and his AEW run has been absolutely legendary. He was never meant to be the star that he's become but he's so damn good that he rose above all the bullshit that was put in front of him (especially in WWE) and became a living legend. There's never gonna be another wrestler like him again so we should enjoy him while we can."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ryanbest316wrote on 15.12.2023:[10.0] "One of the best professional wrestlers in the world, maybe ever. Combines genius technical wrestling with vicious strikes and tops it off with visible passion in everything he does. You would have to struggle to have a bad match with him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: brennyomegawrote on 14.12.2023:[10.0] "The greatest professional wrestler of all time. His run in Ring of Honor/Dragon Gate completely eclipsed what was going on in the world of professional wrestling at the time. Probably my favorite run in wrestling history. It's strange to see someone peak so early in their career, but never lose that insane ability. His WWE run did start off slow with NXT and his early main roster years, however, his ability to get over with the fans easily shined through. I stopped watching wrestling between mid-to-late 2014 and late 2019, so I did miss a couple of years of his career, but going back, he was still magnificent. Even before he initially retired, there's still a strong case for being the greatest of all time. Coming back from retirement, despite changing his style a little to protect the longevity of his career, it never changed the quality of his matches. One of his best career moves was leaving WWE for AEW. He was superb in WWE, but AEW prioritizes the matches itself more than WWE. His matches with Kenny Omega, Minoru Suzuki, Eddie Kingston, and Hangman Page, all happened in 3 months, and they're still being talked about. Danielson's AEW run has "forgettable matches" but only forgettable due to the fact that they're ALL superb. It is impossible for him to have a bad match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Paul04wrote on 11.12.2023:[10.0] "You want a comedy wrestlers, a monster heel, a coward heel, a underdog babyface, a submission machine, Daniel Bryan Danielson is the GREATEST WRESTLER OF ALL TIME, it doesn't matter in what position or role you put him, he is always going to make the best, the most selfless wrestler, he doesn't mind in putting over others, it doesn't matter if is ROH, AEW, Dragon Gate, WWE, etc. he is the best to ever do it"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KKeanelwrote on 10.12.2023:[10.0] "Even if you differentiate American and Japanese circuit, Bryan Danielson must be considered by everybody as one of if not the greatest professional wrestler of all time with full aware about meaning of this term. ROH's classics with McGuiness, legendary Yes Movement and many memorable moments from WWE and now making his unfullfiled dreams real by matches with Omega, Okada, ZSJ and many others at the final chapter of his career. This guy accomplished in every matter of being a wrestler. Enormous in-ring performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: blondehog78wrote on 06.12.2023:[10.0] "One of the greatest professional wrestlers of all time. The odyssey of his career, from the earliest of ROH days to the McGuinness matches, signing with WWE and the magic of his Mania 30 journey, his retirement and magical return, to his current renaissance in AEW and putting on some of the best matches of all time, the man is a bonafide legend in this business and one who hopefully will remain putting on the best examples of his craft for years to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: No Onewrote on 30.11.2023:[10.0] "One of the greatest pro wrestlers of the 21st Century. One of the greatest in-ring performers of all time. Brillant technician. Brilliant mind for pro wrestling. One of the best Ring Generals of all time. Can have a great match with a wet mop. Legendary rivalries with Nigel McGuinness, Takeshi Morishima, Chris Hero, & KENTA. One of the main guys that built Independent Wrestling into a cult phenomenon. May be the greatest ROH World Champion of all time. Put on way too many re-watch worthy instant classics in ROH, all over the Indies, in Japan, & in the WWE. His WrestleMania XXX World Title victory is legendary. Excellent Babyface. Excellent Heel. Awesome promos. One of the greatest under 6 foot tall wrestlers ever. The "YES" Movement launched him into a new level of superstardom. I am excited to see what he does in AEW. A Living Legend. Updated: Bryan Danielson is now playing the role of a Tweener in AEW, this allows him to showcase his brilliant psychology as both a Babyface & as a Heel, while also giving him the chance to wrestle EVERYBODY. A genius. UPDATED: Nice to see that children are allowed to use the Internet. In the words of Jack Perry: "Go cry me a river.""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: chemicalcvltwrote on 26.11.2023:[10.0] "Bryan Danielson is the greatest professional wrestler of all time, there is truly nobody on his level. Every time I think he can't get better, or that he's as good as he can be he improves. Even in his final year as a full time professional wrestler he's managing to put on matches at a level that most performers could only dream of touching. I do not know if we will ever see a talent like him in the industry again.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: tobyserrawrote on 26.11.2023:[10.0] "Who's the best wrestler in the world? Bryan Danielson. Peak of wrestling skill, while still being the most gripping storytellers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Funnynameinsertwrote on 21.11.2023:"[10.0] Bryan Danielson is the greatest in-ring preformer of all time from his technical prowess of great limb work and submissions to his incredible and believable selling he truly is a once in a generation talent."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: skillgullwrote on 17.11.2023:[10.0] "Bryan Danielson is the best wrestler of all time in my opinion. He has fan investment, the booking to back it up, he's charismatic and in ring he can have a good match with everyone. The prefect professional wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JediSaiyanMaster1203wrote on 17.11.2023:[10.0] "For my money, the best in ring wrestler to emerge from the independent scene in the 2000s. Bryan Danielson is easily one of the best submission specialists/technical wrestlers to ever grace the mat. Every move he does looks picture perfect, his chain wrestling and counters are always fun to watch, he knows how to get an audience engaged in that style of wrestling like very few can. Even aside from his in ring abilities, he's shown that he can even be a good promo and showcase personality and charisma. Dare I say he's the total package? Like CM Punk, he's had amazing runs in every company he's wrestled for no matter where, giving us classic rivalries and matches with everyone from Nigel McGuiness to Ricky Starks. Overall, one of the best in ring wrestlers of all time who is underappreciated as a personality."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: nWo-Joshi-Guywrote on 14.11.2023:[10.0] "Do I think Bryan Danielson is the greatest professional wrestler ever or even just in the world today? No, I do not but I also would not be able to rate him below 10 either. His characters and his charisma are often underappreciated in my opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MrCheesyPotato37wrote on 14.11.2023:[10.0] "The greatest professional wrestler of all time. His in ring work is unmatched. His mic work is top tier. His character work is top tier"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Renat03wrote on 13.11.2023:[10.0] "My GOAT. Can work in every environment, against everyone, in any circumstances and as a good as a babyface (probably one of the best babyface run of all time towards WM30) as a heel (beginning of his ROH World Champ-run, Planet Champ, AEW/BCC work). Has one of the best work-rate ever and is very underrated on the mic' + incredible longevity. If 2024 is really his last year as a performer, we MUST see all the dream matches come true and please, TK, add this legend to the AEW World Championship's legacy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HYDROMAN93wrote on 10.11.2023:[10.0] "One of the greatest technical wrestlers ever one of my all time favorite wrestlers ever but I think its time that he hang up his boots. Hes gotten injured way too many times since signing to AEW. I after seeing the amount of injuries in AEW lately I honestly can see why WWE waters down their wrestlers it allows them to wrestle longer throughout the years and keeps them healthier though we all know That Bryan is still one of the top 5 wrestlers in the world today I think he should be given a farewell match when hes able to return and have one last match against an opponent of his choice to put over he deserves the proper send off after what hes done for wrestling as a whole. As much as it pains me to say it its time for him to hang up his boots."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: bigben123wrote on 02.11.2023:[10.0] "Greatest of all time. He has the longevity to be at peak capacity for over 2 decades. He has the resume with incredible matches against an infinite list of opponents: Nigel, Joe, KENTA, Morishima, Strong, Aries, Lowki, Cena, Punk, Styles, Reigns, Omega, Hangman, Moxley, Sabre Jr. He is an incredible promo. He has wrestled every damn style you can think of: British Catch, Strong Style, Jave Lucha, WWE Main Event, Hour draws, Indie epics++. Nobody else has ever been as perfect as the American Dragon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Speedy2332wrote on 01.11.2023:[10.0] "In my opinion the best wrestler of this century. Granted, there's still a lot of time for other wrestlers to steal that spot but he is arguably the best technical wrestler of all time and one of the greatest men to lace up a pair of boots and he is still putting on bangers every other week."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: wcwfanwrote on 20.10.2023:[10.0] "Undoubtedly one of the best to ever do it. Technically incredible and his selling is second to none, to the point where you're always worried he's really injured this time. Most of all he has that rarest of qualities in a pro-wrestler, the only of other example of which I can think of is Bret Hart, where he almost makes you forget that what you're watching is not a real sporting contest. Just a fantastic entertainer who could probably wrestle a cloth bag to a classic match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AnthoTheKIDwrote on 15.10.2023:[10.0] "Bryan Danielson. What a career renaissance in All Elite Wrestling. I mean we know that the American Dragon is fucking great but now, we can call him legendary. His bout against Zack Sabre Junior at Wrestledream was so great to see live as it was technically perfect and beautiful to watch. Smooth and all. Concerning his in-ring legacy. I think the man can do it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ThunderCloudwrote on 10.10.2023:[10.0] "Bryan Danielson is one of the absolute best wrestlers of all time. He will most likely be mainly remembered for having one of the greatest underdog runs in the WWE, but his legacy goes much deeper than just that. He is good on the mic, can play both a babyface and heel character well, and was always able to get a reaction out of the crowd. On top of that, I would say that he is in the conversation for being the best in-ring wrestler of all time. His technical wrestling ability is phenomenal, he is a good striker, he is good at selling, and he is also great at bringing intensity to a match. There are not really many, if any flaws with Bryans in-ring work, and he is always able to bring the best out of his opponent. The day he decides to retire for good will be an incredibly emotional day for wrestling fans around the world, whenever that will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: felixshanewesternwrote on 04.10.2023:[10.0] "I consider myself honoured to witness Bryan Danielson in his prime. For my money the greatest technical wrestler of all-time, and for sure one of, if not the greatest of his generation. All-timer wrestler, with countless five star matches and great moments. He's also a classy guy with no ego, to boot. Such an asset to any company he has ever worked for, simply just a LEGEND in this sport."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CorpusSkiptotelicumwrote on 03.10.2023:[10.0] "The greatest ever and it's not particularly close. This guy is the best of a generation that includes people like Joe, Nigel, Punk, AJ, Hero and Cena in the states and Tanahashi, Nakamura, Shibata, KENTA, Marufuji and Ishii over in Japan. Not only has he always been better than all of them, he's also the only one in that bunch that's still in his prime. If you consider body of work and versatility, there's nobody even in Bryan's league, the man can truly do it all; epic workrate matches, focused short tv matches, technical exhibitions, bloody brawls, spotfests, tag team, gimmick matches, base for high flyers. He can do the "sports centric" style or the melodramatic wwe style and be effective at both. He can be equally compelling as an underdog babyface or as a diabolical bully heel. He's just the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Chr1st0phwrote on 27.09.2023:[10.0] "Once Bryan is actually gone, I think we can safely say he is the greatest Wrestler in the world. Like, being the cornerstone of so many promotions, easily the most reliable guy on any roster to make a star. A long history of 3.5/5 star and above matches. It just isn't gonna be the same without him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Hatefwrote on 26.09.2023:[8.0] "Bryan has lots of ultra fans, and I do respect him for everything that he's done. but I'm sorry, he's not my type at all! i mean his wrestling style, is not my cup of tea! yes, I do love a few matches of his career, that I rated so high before, but generally, he's not more than 8 for me, because of what I've just explained."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wrestle Fan1122wrote on 17.09.2023:[10.0] "Bryan Danielson is easily among the Best Wrestlers in history (wrestling skill-wise) and has always been at the top of his game either it be at ROH, WWE & AEW. Danielson is a man who has been wrestling for over 20 years and is always among the best moments when it comes to wrestling shows. His striking, technical, aerial and old-school ability allows him to always wrestle a good match no matter what kind of opponent he is against. It is very criminal that his only 5-star matches only happened in AEW because I am very sure he has had tremendous matches in WWE & ROH. His wrestling skill is incredible on any day up to perfect on a good day. He is very adaptive either as a face, heel or a downright tweener since he has played them all to perfection. He displays that character who is passionate about wrestling and winning championships. In his heel run, he even played a character who was concerned with saving the planet from the fans (which I was very skeptical for at first). His promos, however, are weaker than his ability in the character and wrestling skill aspect, but I would say he is much better than most give him credit for. He has that ability to tell such a great story on the mic and can easily get you invested with a single promo. He is one of the most complete wrestlers of all-time and a very rare kind of wrestler so we should be grateful to even be witnessing him performing in the ring. The American Dragon is one of the best things to ever happen to Professional Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: illiteratewand1wrote on 09.09.2023:[8.0] "Can Bryan Danielson wrestle? Yes! Does he have the look and personality to be a top tier wrestling? Yes! The downside of Bryan Danielson's career is struggling to cut solid promos, and struggling to be a effective heel. Bryan Danielson's career will always be haunted by being injury prone and comparisons to Chris Benoit."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: euchre0wrote on 07.09.2023:[10.0] "He's the best and most complete package I've ever seen. I've seen a ton of Ric Flair and plenty of Shawn Michaels, and I am willing to concede that watching Danielson in real time may create a bias, but I think he's built on what those guys established."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Awes0max13wrote on 06.09.2023:[10.0] "An all-time great of the squared circle. Bryan revolutionized the world of independent wrestling and then set mainstream wrestling on fire with his uncanny skills and undeniable charisma. Classic matches year after year with a plethora all-time greats and the ability to reinvent himself in interesting ways while on the global stage, Danielson is unmatched with how influential he has been in the modern world of pro wrestling. An absolute one of a kind talent who's in-ring ability combined with his mainstream appeal & charisma is probably never going to be seen on such a large scale again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: nowayboiwrote on 26.08.2023:[10.0] "The Greatest Professional Wrestler Of All Time. When I think about Bryan Danielson I think about perfection. Seriously, is there something Bryan can't do? He's THE best in ring performer of all time. His matches always make sense and they are always being built perfectly. Dragon understands how he can put his opponents over without losing any credibility and he has put some of the greatest wrestling matches of all time with McGuinness, Morishima, Hangman, Hero and KENTA. As I said, he's THE best in ring performer of all time and probably is the best wrestler to mix in ring-work and promo-work. Every time Bryan talks, whether it is on commenatry or backstage or in ring, he always makes you belive in every word he says. The same as with his in ring work, he has put some of the best promos you can ever listen to. But in realtiy what makes Bryan Danielson so special, is his adaptability to to every wrestling style. He can do slugfest, techincal masterpiece, Puro-style matches, sprints, Hour-Long matches, hardcore, hell, even spotfest. There is way Bryan adapts himself in diffrent situation - position in company, everywhere he's ever been to, he was THE guy. In WWE he was so good that even Vince couldn't bury him. In ROH he is their greatest wrestler ever and in AEW it's only matter of time until he becomes their World Champion (and at this point he's one of their best wrestlers ever). The last thing I'll say is just look how Bryan Danielson changed the landscape of professional wrestling, Dragon inspired some of the best wrestlers that are currently active. Danielson returned from a career-ending injury so if that's not inspiring I honestly have no idea what is. Bryan Danielson is professional wrestling and professional wrestling is Bryan Danielson."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DoubleCountoutwrote on 17.08.2023:[10.0] "The greatest professional wrestler of all time. Proficient in every style, equally as entertaining as a babyface or a heel, consistently demonstrates a clearly defined understanding of pacing, timing, tempo, and overall match structure that is practically unparalleled, and capable of adapting to/getting over in any environment he is placed in."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: moxuresuwrote on 16.08.2023:[10.0] "In my opinion the greatest professional wrestler of all time. Everything he touches turns to gold. He redefined WWE's hiring policy and gives hope to wrestlers that are not 'tall enough'. From his indy days, to WWE and now in AEW he always been putting on absolute masterclasses with exceptional technique and storytelling. I'm still waiting for a proper match with Thatcher, Zack Sabre Jr. and Shibata"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BESTBOUTBOYwrote on 08.08.2023:[10.0] "Danielson is in my opinion the greatest wrestler of all time. Nobody else matches his combination of versatility, longevity and quality. Equally believable as an arrogant, vicious calculating heel or the greatest face of a generation. Danielson combines a fusion of styles from Japan and the u.k to be not only the best technical wrestler of all time but the greatest in ring story teller. For the many years he has been an active wrestler he has been in the conversation as one of if not the best wrestler in the world and his influence is already being felt in many up and comers and will be for many more years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Vanstylerwrote on 23.07.2023:[10.0] "As it is, Danielson is amazing at what he does. Whether it is imposing a memorable character in the ring, or having to wrestle for 10 minutes or 1 hour, he will do it in the best possible way because it is what he knows how to do and he does it quite well, there is nothing more to say"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: flipflopdoritoswrote on 23.07.2023:[10.0] "my pick for the greatest worker to ever live. everything, and i mean literally EVERYTHING about danielson's inring work is perfect. the big spots, the technical skill, the high-flying, the stunt jumps, the use of props, etc etc. he is truly a once-in-a-lifetime talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: s0mbr1tvwrote on 18.07.2023:"Danielson lost that push that he had spent years in WWE but he did not lose his fighting quality, without a doubt it is the measuring stick for several new talents"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Neon Aussiewrote on 02.07.2023:[10.0] "Bryan Danielson raised the bar of professional wrestling. Has been putting on absolute clinics for the last ten years. Fan reaction forced him to the top even though the executives of the biggest wrestling company in the world didnt like him. Was on a stage with all-time legends and stole the show by doing absolutely nothing. It's a travesty he hasnt been awarded more 5 star matches by the Observer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: danzitorockwrote on 20.06.2023:[10.0] "Bryan is the most gifted and talented technical wrestler of all time, his stints were legendary in both ROH, WWE and now AEW, his charisma is off the charts and the connection he generates with the audience is incredible. It is to be admired the passion he has for the sport, very beautiful to see. This guy makes a fight against any opponent good, there's no such thing as a bad match with Bryan Danielson."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: tomatoBhutanwrote on 20.06.2023:[10.0] "To this day, the pound-for-pound, hold-for-hold greatest professional wrestler I have ever seen. In my eyes, Bryan Danielson is greater than Inoki, greater than Misawa, even greater than Karl Gotch. It certainly doesn't hurt that he's also one of the best, perhaps the best, wrestlers when it comes to connecting with his audience, whether as a face or heel. I fully believe there will be wrestlers as good as Bryan Danielson in the future, but I doubt I will ever see a better wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: InsertFunnyNameHerewrote on 19.06.2023:[10.0] "My favorite wrestler of all time and quite possibly the greatest wrestler of all time. Countless classic matches with the likes of McGuinness, Styles, Omega and MJF, countless classic feuds with The Authority, Styles, and Kofi, the greatest technician of all time aside from maybe Lou Thesz. A fantastic mic worker, and ultimately a guy who made it so size doesnt matter as much in WWE. A trailblazer and a man who became the greatest in spit of everything thats ever happened to him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Egyptian Dragonwrote on 19.06.2023:[10.0] "My favorite pro wrestler of all time. He is the greatest underdog and technical wrestler in the history of pro wrestling. His power and dynamic energy in the ring and the ability to entertain and put a good match and making his opponents look good. He is a true legend that no one can ever repeat him"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: crs285wrote on 18.06.2023:[10.0] "No doubt Danielson is an all-time great. His ability to connect with a crowd is one of a kind in this generation and the yes moment cements him at this level. His in-ring work is top tier and compares well with anyone. On the mic he is great and gets the crowd to feel how he wants him to. Can be a great face or heel. Can't find one negative thing to say."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Puro113wrote on 14.06.2023:[10.0] "Bryan Danielson is quickly moving up my list of favourite ever wrestlers, hes just so good at everything. Not very many people can make you feel the way he makes you feel. He is a special talent who is soo good at every aspect of wrestling it's almost unfair. He is versatile as all hell, and can get you to love him or hate him in equal measures. He controls the crowd like a master composer, and always forces them to appreciate him. I love this guy so much man. And to think we almost got robbed of some of the best matches of his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "I think Bryan Danielson is my overall favorite American wrestler of the last 10 years. Dude has the charisma to carry him and is good on the mic, despite his style being a little too flippy flloppy and kick paddy. He's just fun to watch and gets the crowd involved."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dancerwrote on 25.05.2023:[10.0] "Danielson is one of the, if not best of all time. He is really inspiring, given his average height and problems with injury. Connects with the audience super well and is a real good promo. I'm trying to think of something that Danielson lacks. Works well in any style. Can get super-matches out of people ranging from Lesnar to MJF, and makes any character he portrays believable. Gets over wherever he goes. Beloved for a reason."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CorpritManwrote on 01.05.2023:[10.0] "As long as Danielson has been active in-ring there is an argument to be made that he is the very best in the world. Danielson to me is THE professional wrestler. I would go as far as saying that his style and eventual popularity completely changed main stream western wresting. I dont think we'd see the highs of classic ROH and NXT without him. The day he hangs up his boots for good I will cry my eyes out just like I did in 2015."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: firewalkwithmewrote on 21.04.2023:"Danielson is easily one of the best wrestlers to have ever stepped foot in a wrestling ring. He has a perfect understanding of nearly every facet of the sport, and most importantly, he loves every facet of it."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NoTanFightFanwrote on 20.04.2023:"Danielson is the GOAT as far as in ring action. He can install so much drama and action in any match. And he has to be one of the great babyface underdogs of all time. Deserving of being among the top total wrestlers ever."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Fifth Pillarwrote on 03.04.2023:[10.0] "The best to do it in my 35 years as a fan. Supreme on both sides of the heel/face divide & technically peerless."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Personanowrote on 20.03.2023:[10.0] "One of the all-time greats and a force to be reckoned with in the ring. I'm unfamiliar with a lot of his pre-WWE work in Ring of Honor but I've been trying my best to catch up on some of those must-see matches. His AEW run has been absolutely phenomenal so far and I honestly can't wait to see what else he can manage to do in his time there. Bryan Danielson is a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: misterkayfabewrote on 19.03.2023:[10.0] "One of the best of all time. Athleticism. The look. The skills on the mic. A complete package. Possibly the best technician of all time. Makes wrestling feel and look REAL in a way very few do today. His WWE stuff is not as interesting to me, but everything before and since is Godlike. Would love to see one more title run."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: mjp28wrote on 17.03.2023:[6.0] "Personally I find him pretty boring, but absolutely respect the guys skill and athleticism. He's also in pretty decent shape and has the appearance of an actual athlete, well atleast for the last 2 years as prior to that be looked like a he'd never touched a weight in his life as with many of his internet darling fat (Kevin Owens) or skinny-fat (CM Punk, Adam Cole, and Sami Zayn) contemporaries. That said at his size he is not a believable world title contender and should be feuding over a second- or third-tier title with smaller guys (not a dig on the man, I'm just a big advocate of weight classes. Weight classes---as with looking like an actual athlete---make wrestling reaslistic). Despite that, his moveset and general ringwork makes wrestling look real, well aside from his silly and contrived yes kicks. I mean how can you have such an impressive and realistic move set but have something as stupid as someone that somehow ends up on their knees mid-match and stays there as they take kick after kick after kick after kick. Keep to your realistic stuff Byran and leave that stupid move to the unrealistic contrived flippy-floppy casual-fan-kryptonite guys."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: nizzyhizzywrote on 09.03.2023:[10.0] "The GOAT. An amazing wrestler where it's almost impossible to have a bad match with him. His planet's champion gimmick is probably his best run second to 2006 ROH."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: John Brandowrote on 09.03.2023:[10.0] "Bryan Danielson-wohl einer der besten Wrestler der Welt, mindestens in den Top 10 anzusiedeln. Bryan versteht sein Handwerk sowohl technisch als auch im Matwrestling. Dazu schuf er Momente für die Ewigkeit wie das Yes-Movement, wodurch er damals so over war, dass man sich einfach gewünscht hat, er möge gewinnen. Er ist ausserdem herausragend am Mikrofon, kann gut den Heel und den Face spielen, weiß wie er die Leute treffen kann und ist halt dabei unglaublich charismatisch. Bryan ist ein exzellenter Typ und man hat das Gefühl, er hat bei AEW nochmal eine Schippe draufgelegt. Möge man noch den ein oder anderen Showstealer zu sehen bekommen und ich sage jetzt schon einmal:Danke, Daniel Bryan für deinen Beitrag im Wrestling!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ZayTokyowrote on 06.03.2023:[10.0] "the best wrestler of all time. he is legit like playing with a character on max stats for everything because he is great at everything. storytelling, technique, striking, promo, being able to carry others, and having the draw ability. my only flaw for him is his stupid theme right now, but that could be sorted. wwe, aew, roh, or really anywhere, bryan danielson will always be a 10/10 and the best wrestler ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ChrisPrattAsMariowrote on 04.03.2023:[10.0] "Greatest American (USA) born wrestler of all time and definitely a top 10 wrestler of all time. He can play a great heel that we saw with the eco friendly stint and a great face that we saw with the Yes movement. There is so much quality and quantity in his entire career considering the classics he's been in. The fact that he's been able to give out consistent great matches since 2002 is an absolute gift. My favorite match of his is against Takeshi Morishima at Manhattan Mayhem II."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Josh313wrote on 02.03.2023:[10.0] "Phenomenal babyface, just as phenomenal as a heel. Makes everything feel real whether he is the underdog you are rooting for or the rotten heel you are rooting against. Anybody that cannot have at least a good match with him should question their choice of profession"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: greaterdalewrote on 01.03.2023:[10.0] "Bryan Danielson is my absolute favorite wrestler of all time and the main reason I'm a wrestling fan to this day. Watching him get the WWE Title at Wrestlemania 30 made me fall in love with this amazing sport. An absolute wizard in the ring, a completely lovable baby face. Plus he's capable of doing doing the best technical work in the business but can also work a brutal hard hitting style too. Always a treat to watch on any card he blesses our presence on. Thank god he was able to return to the ring again"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: kewf1988wrote on 28.02.2023:[10.0] "Daniel Bryan is an amazing wrestler, who is insanely charismatic and also really good on the mic, despite his reputation for bad promos. He is really good at playing a comedic character, as well as a serious character, similar to the likes of Angle, Jericho, and Eddie Guerrero."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kbnuevewrote on 27.02.2023:[10.0] "The greatest in-ring wrestler of all time. The fact that he's acknowledged by every single wrestler alive at least as one of the 5 best to ever to do this speak volumes about how good he is"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheLegendaryEricwrote on 27.02.2023:[10.0] "Bryan Danielson is truly one of a kind, as he is just fantastic in almost every aspect of pro-wrestling whether it be his amazing in-ring abilities, his never-say-die babyface attitude or his dasterdly heel attitude. When all is said and done Bryan Danielson/Daniel Bryan will be remembered as one of the GOATs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LGL19wrote on 16.02.2023:[10.0] "Genuinely one of the best wrestlers I've ever seen, can cut passionate promos and is a great face to cheer for. Also he is quite good at playing the heel and i feel his heel run in 2019 is quite underrated. "FICKLE! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: QueenOfWrestlingwrote on 15.02.2023:[10.0] "Bryan is one of the best wrestlers ever, period. Beloved by 99% of fans, having not a single bad year on his record. He is one of the most consistent, talented and hard working wrestlers we have ever gotten. He is gods gift to wrestling, and it feels like dishonesty to give this man anything but a Ten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WrestlingFan1wrote on 10.02.2023:[10.0] "There are no words to specifically describe Bryan Danielson yet, he is the perfect fighter or the closest to being it, the true GOAT of the USA. The guy with his age and every AEW weekly leaves you with solid fights and even contenders for fights of the year, the guy since 2002 has not had a single fight that has not been in a top of the best of the year and some being the repeatedly better, a guy like this will never be seen again, every match, every story, every promo, every damn thing he does is SPECTACULAR, I highly doubt you can know exactly how good he is, but he is. ABSOLUTE GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SoaKaswrote on 08.02.2023:[10.0] "Could be on the Mount Rushmore of wrestling for any person and nobody could be mad at that or argue otherwise. From a beloved underdog-babyface to veteran to chickenshit-heel to brutal and ruthless heel, this guy can do EVERYTHING. Switching up his moveset while doing so and still seeming believable on the mic even though he has been nearly every wrestling character there is to be. Truly one of a kind and it will be a dark day when he retires from wrestling since Bryan Danielson is one of the best wrestlers/sports entertainers/just entertainers I have ever seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ZFIELDwrote on 26.01.2023:[10.0] "American Dragon has succeeded in every situation he's been put in. Underdog babyface, obnoxious heel champion, BITW technical wrestler, dumb comedy with Kane. Across a variety of promotions with differing styles and features, Dragon has made the most out of every opportunity gimmick and match. He also happens to be one of the most selfless wrestlers in the world and always focuses on making his opponent look good. The guy has never buried someone he shouldn't have, and he's never missed when it matters. G.O.A.T"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wrasslinfan619wrote on 24.01.2023:[10.0] "Top 5 wrestlers ever argue with A wall. Whether its in ROH as A top tier babyface and amazing dickhead heel, or in WWE as the leader of the yes movement which was god damn incredible, and as planet's champion, or in team hell no, or as the no man he's amazing. And in AEW as once again an amazing face and great dickhead heel, Bryan can do it all. His best matches are with Nigel, Cena, and probably Omega. He's an amazing promo too, his post-return and post-heel turn promos were his 2 best. Not much else to say he's legit the goat he doesn't just look like one."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TooDarkMarkwrote on 24.01.2023:[10.0] "I was lucky enough to watch many of his matches in NYC in ROH. Morishima, Samoa Joe, Nigel McGuinness, KENTA, Briscoes. I enjoyed his YES era immensely, and have gotten to see him continue his career in AEW, seeing him live against Kenny Omega and Chris Jericho. Of course, there are the myriad of 5-star matches on TV, with Hangman Page, Bandido, Takeshita, Anarchy in the Arena, the four way with Claudio, Jericho and Sammy, and a personal favorite, John Silver. He deserves all the accolades possible. I remember when he was going to hang it all up in 2006, because things just weren't happening for him. I'm so happy he stayed with it, and has become an all-time legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MachoHBKwrote on 23.01.2023:[6.0] "The fans sure do love cheering for this Joe Somebody who's always been as exciting to me as grilled cheese. I respect Daniel Bryan or Bryan Danielson or whatever two bland names he stuck together as far as in ring abilities go. But I never was the fan who rooted for the everyman schlub character (see; Dusty Rhodes). That kind of character just doesn't make a big impression on me. When your catchphrase is literally one word, and it ain't even a cussword... well I just want a little more excitement with my grilled cheese I guess."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GulakBusickwrote on 20.01.2023:[10.0] "I've often changed my mind on who I think is the greatest in ring performer of all time. Flair, Funk, Jumbo, Misawa, Kawada, Kobashi, Tenryu, Negro Casas. Right now I'm going with Bryan Danielson."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: guysquiteriowrote on 19.01.2023:[10.0] "Like Mr.Regal would say, Bryan Danielson is the perfect wrestler! Probably the best wrestler of all time. 2023"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Daigotsuwrote on 15.01.2023:[10.0] "One of the all-time greats. An amazing in-ring performer, with a ton of innovative offense. He has a masterful grasp of psychology and storytelling in the ring; he's really second to none as far as what goes on between the ropes is concerned. He's also a great promo and is very, very charismatic. Danielson has it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: benh2wrote on 12.01.2023:[9.0] "One of the most gifted of all time. As a pure wrestler, few wrestlers in history could touch him. His pre-WWE work was absolutely magnificent. Can work multiple styles and understands the nuances of how to work a match such as pacing and working the crowd."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Bullshark1wrote on 10.01.2023:[9.0] "One of the greatest technical wrestlers of all time. Bryan is perfection in the ring, although his gimmicks could use some work. His runs in WWE and ROH were nothing short of inspiring, and in AEW, he's making tons of major moves. Although I'm not a major fan of technical wrestling, I must give credit where credit is due. This guy is a legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BigVanKaelwrote on 31.12.2022:[10.0] "The greatest of all time, Bryan has few equals as someone who understands wrestling down to its core."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Shadow Explosionwrote on 26.12.2022:[10.0] "The Greatest Wrestler of All Time, Bryan Danielson is someone who has consistently been the best part of any promotion he's been apart of. His technical ability is second to none, very rarely does a Bryan Danielson match suck, his ability to put on some of the best matches around is astounding. His character work is fantastic, his WWE run really improved his promo & acting skills. The "New" Daniel Bryan character while a short run was fantastic and full of great promos. And now in AEW he's back to just putting fantastic matches in the name of violence. Bryan Danielson can do and has done it all, hopefully he has 1 more Japan run before he retires because it feels like he hasn't excelled the puroresu scene just yet even 23 years into his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: fruggmanwrote on 19.12.2022:[10.0] "Danielson is the Bret Hart of the current era. A technical wizard that is incapable of having a bad match, a popularity that is seemingly evergreen and one of the greatest storylines in wrestling history against The Authority in WWE. His current role in AEW of gatekeeper is a bit beneath his drawing power but his desire to put over and build younger talent against possibly the best worker alive says something to his character and skill. A legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Undertalkerwrote on 14.12.2022:[10.0] "Er ist ein ausgezeichneter Techniker und im Matwrestling herausragend. Gleichzeitig beinhaltet sein Repertoire aber auch spektakuläre Moves, und an ordentlicher Stiffness lässt er es ebenso nicht mangeln. Er ist ein Pro-Wrestler der Extraklasse! 2014 hatte ich geschrieben, dass ich ihm erst die volle Punktzahl gebe, wenn ich den Eindruck habe, dass es mehr Daniel Bryan/Bryan Danielson ist, der für seine Overness verantwortlich ist, als dass es die Yes-Chants sind. Es hat sich für mich längst klar gezeigt, dass es wesentlich mehr sein Charisma war, das ihn so over gebracht hat, und er auch ohne diverse Movements unheimlich gut ankommt. Sein Micwork hat er über die vielen Jahre auch stetig verbessert. Daher gehe ich von 9 auf 10 Punkte hoch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MainEventMasterwrote on 02.12.2022:[10.0] "Might just be the greatest wrestler of all time, this dude has worked in nearly every promotion and my god, he has made it work in all of them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Enriquepollazzowrote on 27.11.2022:[9.0] "It almost feels like 1-10 isn't enough. There needs to be a stop between 8 and 9 for guys who you respect but aren't your favorites. I appreciate Bryan, but he has never done it for me. But I feel bad giving him the same thing Id give Sammy Guevera! So he has to be a 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: li0nsaultwrote on 23.11.2022:[9.0] "Other than Yes Movement Bryan, I never felt anything special about him. Yes, as a techniker he's one of the best to ever do it, but that's about it. His mic skills are nothing outstanding, that doesn't really matter because he has natural charisma just by being himself. If I have to rate him based on his prime, I can safely say Yes Movement Bryan is one of the best thing that ever happened. Also, I gotta give him credits for being absolutely selfless, he's "underused" in AEW right now, but he only cares about having matches with young talent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mcbolskywrote on 22.11.2022:[9.0] "His run in WWE from Summerslam 2013 to Wrestlemania 2014 was probably the best face run of all time. Now in AEW he gets booked like shit which sucks but at least we have all of his past highlights to look back on."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DingDongwrote on 15.11.2022:"danielson is someone that truly can do it all. he's like a machine that just prints out free five star matches no matter who he's in the ring or in a program with. genuinely one of if not the best wrestler out there today imo"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: whiterice47wrote on 14.11.2022:"10/10 - One of the best all-around wrestlers today. He also seems like a straight up good guy, I appreciate that he hasn't bad-mouthed WWE after leaving, as those types of antics just seem petty."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: nothingleftinsidewrote on 10.11.2022:[9.0] "I haven't seen the majority of his work, but he's by far my favorite wrestler out there, and he got me to start watching wrestling weekly again after 20 years. The stuff I've seen from him in WWE and ROH has been great. Definitely seems in the lineage of great all time technical workers, like Malenko, Bret, [redacted], Angle. Possibly a 10 once he retires."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: YourKingMobwrote on 03.11.2022:[10.0] "A wrestler's wrestler and a GM's wrestler. Probably the best at the most varied aspects of wrestling in the last 50 years. For those who doubt: name another you could stick in a time machine and place him in any organization from the 70s to now and they'd excel. 1980s AAA? Mid 90s RINGS? Late 70s NJPW? Mid 80s World of Sport? He can do it all and look incredible doing it. No one else I can think of could do what I just listed, along with all his work he did in Japan, Stateside and in Europe and be as highly regarded by fans and wrestlers while doing it. Absolutely without flaw in any way that really matters. Superlative in the ring, great on the mic, elevates other wrestlers, is incredible in a faction, regularly turns unbelievably dog-$#! + angles into burnished 24k gold. There will never be another Bryan Danielson."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Sick Lebowskiwrote on 31.10.2022:[10.0] "Zugegeben, zuerst konnte ich wenig mit Danielson anfangen. Je mehr ich von ihm sehen durfte, desto mehr hatte er mich jedoch überzeugt - der Mann versteht sein Handwerk absolut, ist im Ring einer der Besten und ständig für Klassiker gut. Man merkt, dass er das Wrestling liebt und bringt dies im Ring auch gut rüber. Am Mikro ist der American Dragon auch ziemlich gut, aber keine absolute Spitze. Aber gut, wenn dein größtes Problem ist, dass du auf deinem Zeugnis bei Promos nur eine 1- bekommst, hast du keine Probleme."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheNomadMagicianwrote on 27.10.2022:[10.0] "Er bringt alles mit was es braucht, Charisma, Promoskill, Wrestlingskill, er hat den Look. Bryan Danielson ist schlicht Maineventmaterial."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: cal9099wrote on 27.10.2022:[7.0] "Without a doubt in my mind one of the most overrated wrestlers of all time. I respect the guy and his work ethic but I just don't see it! Yes I've watched some great matches of his, but people seem to fall over themselves for absolutely anything this guy does. When you compare him to another modern day legend like an Okada I think it's night and day, different stratospheres of wrestling entirely."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Blankwrote on 18.10.2022:"If there was ever a perfect wrestler, it would be Bryan Danielson. I've never seen a wrestler as versatile as he was. You want him to be a chicken shit heel? He can do that. You want him to play the roll of a bully instead? He can do that too. A sympathetic underdog babyface? No one is better. A violent tweener? A comedy character? A main eventer? A jobber? He can do all of that. His versatility extends to his in ring work too. His match with Suzuki was a hard-hitting brawl, with Nigel Mcguinness he had a series of technical masterpieces, he created comedy gold with Kenny Omega (in their PWG match, not their AEW match), he made Kane watchable in tag and trios settings, he even wrestled whatever genre Bray Wyatt likes to wrestle and was the best at that too. The best part is that he was better in many of those roles than some of the best wrestlers who specialize in them. What more can I say? He is the greatest wrestler of all time."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LTwrote on 11.10.2022:[10.0] "Einer der besten Wrestler aller Zeiten und auch menschlich eine absolute Legende. Kann im Ring nahezu jeden Stil worken und ist dazu auch noch ein guter Schauspieler und Talker. Zudem hat er eine tolle Karriere hingelegt und sich in jeder Company der Welt bewiesen. Weiß nicht wie man hier nicht auf 10 Punkte kommen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kyle135wrote on 09.10.2022:[10.0] "All-around Greatest of All Time. Does everything well and has done it nearly everywhere. Like Regal says "the perfect pro wrestler""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "A living legend who we are lucky managed to recover from his injuries to wrestle again on a full-time basis since 2018. Absolutely intense in the ring with a breath-taking style that mixes technical brilliance with great striking ability and fast pace high-flying moves used to tell great and compelling stories, he is also amazing in the character department, able to play as a wide variety of faces and heels with great results. He is very believable on the mic too, so what's not love with him?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Flame233wrote on 22.09.2022:[10.0] "The term GOAT gets a new meaning with this guy (and I'm not talking about the beard). This guy is a living legend, you just have to admire him walking into the ring with the whole arenas shaking and screaming "YES! " chants; this kind of connection to the fans is what makes him a GOAT. On top of that, his charisma and in-ring fighting skills are on the highest levels. I was so connected to Daniel Bryan, that when he left because of his injury, he left me crying. As I am a big crybaby, I was crying again when I heard his music hit when he was appointed as a GM for SmackDown. He was a right pick for Wrestlemania XXX main event winner, and oh boy what a win it was! He is one of the greatest faces in wrestling but he also had amazing heel run with the WWE title, and how he made an "EcoHeel" gimmick work is beyond me. I don't watch AEW so I can't really relate to his career there, but I know he's amazing as always, and hope he is happy there. I can only wish him the best of luck, and also wish that I can see him in WWE again one day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CMX-7wrote on 16.09.2022:[10.0] "American Dragon Bryan Danielson - The most versatile and most technical wrestler of all time, almost all of his matches are great, he tells great stories in the ring. I also want to note his acting skills - it's amazing, he can be a great cute face, a funny comedy hero! and when he is a heel, it is pure gold! He is like Chris Jericho, in any company he can show an amazing exciting match that can become a classic! I also respect his hard work and his work ethic, for which he well done. I wish him good health and all the best! )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: El Gobernablewrote on 12.09.2022:[10.0] "If he's not THE goat he's at the very least the best American wrestler of all time. Best in the world since 2006 he's gotten extremely over in every place he has wrestled, that's something very few people can say."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GwenCube64wrote on 05.09.2022:[10.0] "Despite sometimes having lackluster promos, he is probably a top 15 talent of all time and it's not even debatable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FEEBLEwrote on 01.09.2022:[10.0] "THE GREATEST OF ALL TIME! Yes, Bryan Danielson is the GOAT in my opinion. He is probably the only guy that can bring strenght, ability and emotional weight to a wrestling match. Since 2004 in ROH, Danielson has been changing wrestling in it hole form. His 2010-2021 time in WWE has it's highs and lows, but despite the booking having its issues, Bryan always was bringing unbelievable matches, and he earned a thing that no one imagined he could possibly get: the unconditional support of the crowd, either is he heel or baby face. Then, Bryan didn't renewed with WWE and finally went to AEW, where he performes till this day, and in a little more than a year, Danielson already brought CLASSICS with "Hangman" Adam Page, Jon Moxley, Kenny Omega and Daniel Garcia. Danielson is a once in a lifetime wrestler, and we need to give him credit, because this guy is one of the responsables for you be watching professional wrestling in 2022."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Matthew23clawwrote on 31.08.2022:[10.0] "Not only one of the best in ring workers ever but also one of the most lovable personalities in all of wrestling. In and out of the ring this dude entertained me countless times."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Lakhiarfarhad91wrote on 12.08.2022:[10.0] "The American Dragon Bryan Danielson is undoubtedly one of the greatest to ever step foot inside the ring. A guy who has been consistently great since the start of his career and has a massive catalog of great and classic matches. He could work a good match with the worst wrestler on the planet because of his ring work and ability to construct a match in various ways and make those matches look compelling. He mesh well with any type of pro wrestler. Be it a technical wrestler, high flyer, brawler and a giant powerhouse. Exceptional seller and can have the crowd behind him like no other. He succeeded in both the independents and in the WWE environment, if Bryan Danielson and Daniel Bryan were two different persons, both would be two of the GOATs , that's how great he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HighFlyDeathcorewrote on 07.08.2022:[10.0] "I know a lot of my ratings are ten but its easy when i review icons like this man! Bryan Danielson is easily on the mount rushmore of technical wrestling and has very few equals..He has had the best matches on nearly every show he is on. His recent match with Garcia is a brutal and incredible match. His match with Chris Sabin at PWGs Threemendous 2 show was also incredible. His WWE send-off was an incredible match also as well as the Mania Triple Threat that had came before it. Omega vs Danielson has been a classic every single time it has occured, which i believe is only twice. The hour long brawl with Hanger was a MOTY for last year. Even The Fiend vs Bryan at the rumble 2020 was pretty good. I have to say Danielson is possibly one of the best ever wrestlers and he is such a great and believable promo cutter too. One of the all time best faces and one of the all time best heels to boot! Easiest 10 i have ever awarded."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Inserthere750wrote on 04.08.2022:[10.0] "For the longest time Kenny Omega was my favorite wrestler of all time. But then I decided to check out Bryan Danielson's ROH work, it was love at first sight. Ever since then he has long surpassed Kenny Omega as my favorite wrestler, and is the reason why I love technical wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: chrisalvarezwrote on 01.08.2022:"In my opinion, the greatest wrestler to ever live. 10/10 as a face, and 10/10 as a heel. The match catalog speaks for itself."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Klauwiswrote on 31.07.2022:[10.0] "In my humble opinion, Bryan Danielson is one of the few with the legitimate claim to be one of the best in the world. In all aspect of wrestling, this man is completely excellent and I'm always excited to see him in any context. With great character work throughout WWE and AEW and delivering absolute classics with Kenny Omega, Hangman Page, Brock Lesnar, AJ Styles and so on, Bryan Danielson is gonna be remembered for years to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: pwokamalwrote on 29.07.2022:[10.0] "He's one of the if not the greatest active pro wrestler in the world. He's great as heel as well as a babyface. Best in ring, mic skills, connection with audience. Perfect wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: sbg2022wrote on 02.07.2022:[10.0] "A rare breed of the great in-ring workers who can get over like crazy. Usually, fans aren't into that "pure" style, but he has a certain air about him when he performs in the ring. He makes you invested in the match that he is in."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Liamwrote on 18.06.2022:"Maybe the greatest wrestler of all time in my opinion. Danielson just does everything near perfectly. His current run in AEW has been amazing."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dkexwrote on 08.06.2022:[10.0] "Was soll man hier schreiben? Bester Wrestler der Welt und mindestens einer der besten Gesamtpakete, je nach Geschmack sogar der Beste insgesamt. Ich glaube dass er seinen absoluten Höhepunkt bei AEW erreichen wird. Wird in Zukunft als einer der Besten aller Zeiten gelten, ohne Zweifel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NeoSwas36wrote on 04.06.2022:[10.0] "Easily the greatest wrestler from the States for me. I've never seen him in a horrific match, even when he's squashing competitors he makes them look good. A great face, even better heel. I can name so many matches of his that have stolen shows."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: texasyoshwrote on 30.05.2022:[10.0] "I mean, what can you say that hasn't been said already. Probably the greatest pure wrestler from his generation, and despite being undersized in the eyes of WWE, made a name for himself on the national level. The Washington Machine Never Breaks."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RockinRobinwrote on 30.05.2022:[10.0] "There is no doubt the Daniel Bryan/Bryan Danielson is one of the greatest wrestlers of the past 20 years. Even after his first retirement, he was already hall of fame worthy thanks to his consistent runs and getting over. In his latest recreation, he's shown a completely new re-invention that brings a physicality that many wrestlers lack in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LaothFriuswrote on 26.05.2022:[10.0] "The most tecnical wrestler of this generation, it's a shame wwe took years of his career away from us, but now he is back doing what he loves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: thrstynmsrblwrote on 07.05.2022:[10.0] "I don't know what I can say about Bryan Danielson that hasn't already been said a million times. THE best in the world. One of the greatest heels and babyfaces of the past decade or so. Legitimately in the conversation for the best wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ryanmichael25wrote on 22.04.2022:[10.0] "One of the greatest to ever do it. Not just as a wrestler, a fantastic superstar, sports entertainer, or whatever you wanna call him. Not only is he arguably a top 3 wrestler to ever live, he? s incredible on the mic, one of the best baby faces of all time, he? s also an incredible heel. A transcendent once in a lifetime talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GreatAether531wrote on 08.04.2022:[10.0] "When people look back at the first quarter of this century, it'll be obvious to everyone that Bryan Danielson was the greatest talent of this era. 8 years removed from the YES! movement, Bryan is still somehow the best in the world, having had 2 of the 5 best matches last year, and the majority of the best TV matches as well. Hardly anyone matches the sheer output of incredible matches he has in such a wide range of roles and with such a wide range of opponents, and even fewer balance the intensity and technical perfection in the ring with gripping storytelling and emotion. After having one of his best runs yet last year within a career that has no shortage of all-time great years, I cannot wait to see what's next from the man still at the top his game 20 years into it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WrestlingFan892wrote on 06.04.2022:[10.0] "Bryan Danielson is one of the best wrestlers who has ever set foot in a ring, probably the best technician in the opinion of many, a lot of charisma, mic-skills, even helping younger talent has always been his goal, without a doubt the top 5 wrestlers of the history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ThatsJustElDandywrote on 30.03.2022:[10.0] "As far as I'm concerned Bryan Danielson is the greatest wrestler of this generation. Comp him to Bret Hart, Kurt Angle, Curt Hennig, whoever. Danielson synthesizes so many styles in such a way that it's always believable and never feels gimmicky. Perhaps the most impressive aspect of Danielson's game is that he does all of this while retaining the core elements of professional wrestling: emotion and storytelling. Too often modern wrestlers veer into moves and athleticism that, while no doubt impressive, doesn't stick with you once the match ends. Heel or babyface, main event or opening match, Danielson delivers something logical and memorable. The same way older fans gush about seeing the greats of their time, so too will we who witnessed the career of Bryan Danielson."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CTFBwrote on 11.03.2022:[10.0] "When it comes to pure in-ring capabilities and unrestricted intensity in the modern era, no one beats Bryan Danielson. Seeming to get better and better every year, Bryan has shown every company that he's currently in to step up their game. Whether it's ROH, WWE, or AEW, Bryan would always have a good match even with a lacking opponent, and on a true workrate level, makes him one of the greatest of all time. But he's also got excellent mic work and entertaining characters, The New Daniel Bryan for example in his later WWE run was one of his best character works for example. As of now, no one can touch Bryan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Johnny Fletcherwrote on 05.03.2022:[10.0] "I don? t know what else I can say that hasn? t already been said. Easily the best technical wrestler in the world, possibly ever. Nails being a heel and a face, and works the crowd incredibly well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jorgeisthe1wrote on 22.02.2022:[10.0] "Bryan is my favorite wrestler right now. Yes, Undertaker will always be my all-time favorite, but Danielson is special. His range is impeccable. He can be the ultimate underdog, or he can be a narcissistic heel that thinks he is the best in the world and believes it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: robrob77wrote on 18.02.2022:[9.0] "This guy is so talented, his in-ring skills are fantastic, he is extremely charismatic, he is a great talker... Bryan Danielson is simply amazing. All-time great."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: mjs2212wrote on 12.02.2022:[10.0] "The greatest professional wrestler today. Quite possibly ever. He works great as a face or a heel, his promos are exciting and tell a good story, he has a wide array of holds and moves, his technical abilities are excellent, and he can literally put on a great match with anyone. How can you not admire Bryan Danielson? I appreciate how dedicated this man is to professional wrestling, and it really shows every time he goes out to perform. It was amazing to see him grow such a huge fanbase while he was with WWE and he currently is able to have bangers on AEW with guys I never thought he would wrestle. I've been a lifelong fan of the American Dragon, and I am proud of this."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Bryan Danielson is the greatest professional wrestler of all time. He's a technical genius, but underrated in his ability to brawl, strike, and work any style he's asked to perform. His promos are understated and slightly underwhelming, but his physical charisma and ability to tell a story and evoke character in the ring is second to none."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WhatIsLooveeewrote on 06.02.2022:[10.0] "Bryan is very good in the ring, he can make convincing speeches, he is not only a strictly technical style wrestler, but he is able to adapt to his opponent's style and show a good match with anyone, he is great both as an underdog face and as an evil heel. An incredibly talented wrestler who deserved all his triumphs. I think he's probably the best wrestler in the world right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: rishabhwrote on 31.01.2022:[10.0] "Along with CM Punk, Bryan Danielson was the guy who paved the way for indie stars to get big in the WWE. During his yes movement, not one person in the crowd wasn't chanting yes which showed he isn't just some indy darling loved by only internet wrestling fans, but someone everybody in the crowd cares about. He is also someone who can work any kind of match, great technical wrestler but also can do high flying shit. He is still doing some of his best work and hasn't lost a step."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: eltetechoriwrote on 25.01.2022:[10.0] "Bryan Danielson is one of those fighters that you love because of the way he fights, he also has a charisma that makes many support or hate him, depending on whether he is heel or face, few fighters do what he did not long ago in WWE, I wish him the best in his new facet in another place such as AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Bastionwrote on 24.01.2022:[10.0] "Er ist vielleicht der größte Wrestler aller Zeiten. Obwohl er im Ring großartig ist, übersehen die Leute oft, wie großartig er auch als Heel und Babyface ist. Im Moment arbeitet er möglicherweise auf dem höchsten Niveau, das er je hatte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Luna100wrote on 19.01.2022:[10.0] "Truely an all time great, he has had so many great matches and such a high level of success, he also has a high amount of charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GriffinXwrote on 16.01.2022:[10.0] "Wrestling fans have bad habit of tossing around the term banger or instant classic a lot but Danielson has been in 3 of the best TV matches I've since coming to AEW in Omega and the two Hangman matches. He also had a very good match with Suzuki. The guy remains a master of just about all in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PhenomenalGunwrote on 14.01.2022:[8.0] "I mean....I am a fan of his and I was excited to see him return, but he's not really been as good or as interesting as he was pre-retirement. His best work as of late has been his heel work in AEW and if he keeps on the pace he could very well be a contender for the MVP of AEW. Charisma, in-ring skills, connection to the crowd, mic skills that I don't think anyone expected when they first saw him in NXT Season 1. That being said, is he a contender for GOAT' Nah. He's good, great even, but not legendary."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NikoKillbainwrote on 01.01.2022:[10.0] "Versatility incarnate, given the roles Danielson has played, and the company's he's got over in. In 2021 alone, he had one of the greatest WrestleMania main events in years (vs Roman Reigns and Edge), then began a complete second wind on his career in AEW. The Omega, Suzuki and Page matches are legendary, though the Kingston match was overrated in my view. He's become a modern day ironman at 40 years old, without really tempering the reckless abandon of his style."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wright15wrote on 29.12.2021:[10.0] "The greatest technical wrestler of all time. Bryan Danielson is one of my all-time favorite wrestlers and is one of the best to ever do it. He is pretty much the founder of what he has termed "viscous mat wrestling." He was having five star classics in the mid-2000s, a dark age in terms of match quality outside of ROH and NOAH. His departure from ROH marked the end of the company's golden era. He was so obviously fantastic that not even WWE, with its god-awful ideas about what wrestlers should be, could keep him from the main event, despite their best efforts to bury him. Unfortunately, he was forced to tone down his style WWE, which kept many fans, unfamiliar with his prior work, from seeing the full extent of his abilities. With his resurgence in AEW, he is finally able to show, in front of a national audience, why those ROH fans would drown out venues with chants of "best in the world! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HarePage98wrote on 28.12.2021:[10.0] "WWE made me forgot what this man is all about. AEW book him as one of the GOAT's of wrestling and he is in that conversation for the new era 100%. Amazing worker and amazing as a cocky heel. He didn't have a bad match since joining AEW and I hope when is all said and done we'll talk about BD as one of GOAT's of this industry!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JonahBlackwrote on 22.12.2021:[10.0] "I would have given him a 10 for his WWE work alone, but seeing him unleashed in AEW has just left me saying "Kenny Who'""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BritishSteelwrote on 21.12.2021:[10.0] "Ich schliesse mich meinen Vorrednern an. Wenn es einen wirklich würdigen Shawn-Michaels-Nachfolger gibt, ist es Bryan Danielson! Ich gehe sogar einen Schritt weiter. Für mich rangiert er in der Hackordnung sogar noch über HBK, denn: Im Gegensatz zu Michaels fehlte es Bryan 1. nie an der richtigen Einstellung, 2. ist er als Typ glaubwürdiger und sein Gimmick sympathischer 3. stand ihm nie sein Ego im weg und 4. hatte er es nie nötig, andere hinter den Kulissen zu bescheissen. Ein absolut großartiger Techniker, der zudem nie stagniert und ständig an sich arbeitet. Ein Alllrounder, der im Ring ALLES kann. Danielson ist einer dieser so selten gewordenen Worker, die von ihrer aufrichtigen Leidenschaft fürs Wrestling getrieben werden. Einer der wenigen im aktuellen Geschäft, die komplett verstehen, worum es im Pro-Wrestling geht und wie es funktioniert. Es muss eine Freude sein, mit ihm zu arbeiten - er kann mit jedem und durch seine Fähigkeiten auch absolut jeden gut aussehen lassen. Seine Matches sind immer Hingucker mit viel Wows und Dramatik - ganz egal ob mit einem Big Man, wie seinem alten Kumpel Kane, einem Powerhouse wie Lesnar oder einem technischen Wrestler seiner Statur. Selling, Storytelling, Promos - ob als Face oder Heel - er ist immer überzeugend und mitreissend. Vince McMahon täte gut daran, Bryan absolut jede Bedingung zu erfüllen um ihn zu halten bzw. nochmal richtig Over zu bringen. Solch ein Genie wird die WWE wohl nicht mehr so schnell bekommen - die Zeit läuft. EDIT 21.12.2021: Bryan Danielson aka "The American Dragon" ist zurück und besser als je zuvor! Bei AEW ist er endlich vom engen Korsett der WWE "Sports Entertainment" Company befreit und kann wieder unbehindert zeigen, was er alles drauf hat. Ungehemmt beweist er nun eindrucksvoll, dass er wahrscheinlich als DER beste aktive Pro-Wrestler der Welt angesehen werden muss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Divine Departurewrote on 21.12.2021:[10.0] "The finest wrestler working today and top 3 of all time at the very least. Pretty insane that considering he's been going for more than 20 years and has one of the most impressive bodies of work out of anyone ever, I still think that the best is yet to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KENTAfanwrote on 20.12.2021:[10.0] "I think it's fairly undeniable at this point that Bryan is one of the greatest ever, and easily a serious contender for THE greatest of all time when it comes to quality of in-ring work alone. He used to be lacking a bit on the character side of things, but ever since he made the move to WWE he quickly came into his own in that regard. I want to be impartial, but I can't really think of anything negative to say about him at all honestly. He's just that good. ---edit--- I already had him down as a 10 given his legendary career, but after a few months into his current run in AEW, I'm blown away. This man has to be superhuman, it is absolutely insane how he went from being forced to retire several years ago to wrestling at the quality he is today. Insane. He was already an all time great in my book several years ago, but now he's on the run of his life in AEW, literally better than he has ever been. Danielson is a fucking legend. What else can I say' Easily in the top 5 wrestlers of all time in my opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Muggowrote on 18.12.2021:[10.0] "Even if his retirement in 2016 was permanent, he'd still get a 10, but now, it could possibly be an 11. His pre WWE career was the stuff of legends, being the best wrestler of a stacked indy scene in the 2000's. Then he managed to become the most over babyface in the last 15 years in WWE despite being the antithesis of a "WWE Superstar", and his popularity led him to main event 2 Wrestlemanias. Now his AEW stuff is a perfect mix of his godly technical skills he showed on the indies and his brilliant character work he showed in WWE. Only AJ Styles can hold a candle to him on the American scene in the 21st century, and even then Danielson beats him across the board."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MoonReikawrote on 17.12.2021:[10.0] "The best in his style and the best in harmonizing with other styles, a wonderful and unique wrestler as well as a man of morality and respect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BEER CATwrote on 16.12.2021:[10.0] "If Bryan Danielson quit wresting after his post-RoH World Champion hiatus his myth would forever exist as the best Indy Guy Ever. But he didn't quit - he soldiered on during the era of WWE-developed muscle dudes and John Cena-lead merch movers, became the most over babyface since Steve Austin, and won a World Title in the main event of one of the five best Wrestlemanias ever. Then he had concussion issues and, again, almost left the industry. But he didn't. He honed his biggest weakness and won the WON Award in 2018 for Best On Promos. He took his incredibly inspirational comeback and somehow turned it into one of the most compelling *heel* World Title reigns in the last half-decade. And as of, I don't know, a few hours ago' The man is still churning out Match of the Year Candidates with the same ease as if you or I were doing our laundry. Crowds were chanting "Best In The World" at this man since his bingo hall days in in 2004 - and the sentiment continues to this day. And the list of people who have done what he's done, on either side of the argument, is a very short one. Greatest technical/workrate guys ever' Bryan's recorded output stands damn well against Bret Hart, Ric Flair, Misawa/Kawada/Kobashi, Liger, Michaels, Casas, etc. The reactions he was getting at the peak of his face run are worth considering against Austin, Hogan, Bruno, Inoki, Santo, Crabtree, etc. You add the longevity and versatility of Danielson's career on top of all this and you have a legitimate Greatest of All Time Candidate. Cherish him, you will not see anything else like him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SiofraNCwrote on 16.12.2021:[10.0] "Spent a decade as the best wrestler in Ring of Honor & the American independent circuit. Spent the next decade as the best wrestler in the WWE. Went to AEW and immediately became the best wrestler there, too. Somehow Danielson has managed to be the most believable and beloved underdog, the most despicable & vicious villain, the only person outside of Kurt Angle who can switch between being a comedic midcarder and the biggest star in the world at the drop of a hat. Overall completely peerless in the last 15 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HolaDiegowrote on 09.12.2021:[10.0] "He is simply the best american wrestler of this generation. He even made himself undeniable for the WWE stooges and corporate."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dorjewrote on 05.12.2021:[10.0] "Although his promos are lacking, he is over no matter where he goes. He is at the top of his game and willing to wrestle anyone, anywhere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LivingLegendwrote on 27.11.2021:[10.0] "Easily one of the greatest ever, if not the greatest. His technical style is immaculate, and is able to get a great match out of the most mediocre of talent. His selling is great too. As a promo he can play a great face and an even better heel. His last run as WWE champ in 2018-2019 was my favourite era of his in terms of character work. One of the best to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: wewantpunkwrote on 25.11.2021:[10.0] "Er hat das Charisma, er hat das mic work und er ist ein ganz großer im Ring. Bryan Danielson macht immer Spaß. Ob in den Indies, bei seiner WWE Zeit oder nun bei AEW. Die Fanreaktion sind überwältigend. Ob einer der besten allerbesten oder nicht - der Platz in den Geschichtsbüchern ist schon lange drin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: theJAwwwrote on 13.11.2021:[10.0] "Best in the world. From his legendary ROH run, to his journeyman indies run, to his ceiling-smashing WWE run, to his already-great current AEW run. This dude finds a way to make whatever style match he needs to wrestle live up to our expectations on a consistent basis. Nobody better right now, and only a few as good in the history of the sport. No hyperbole."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Chicagotomahawkwrote on 13.11.2021:"Man is the GOAT. A technical wizard. Beloved underdog babyface, and despicable brutal heel. Everything this guy has done has been gold and he's elevated every opponent win or loss. I for one welcome our man bun overlord as he takes AEW to a level that it never would've reached without him. Sky is the limit now that he's out of that company that only caters to one guy."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FACEElmo295wrote on 11.11.2021:[4.0] "Bryan Danielson is a great wrestler, but his look is bland and isn't a believable main eventer. His charisma is pretty much non-existent, dude has no character expect I wrestle good. Still belongs in the Indy scene in my opinion, he's a great guy and I can see why he has a high rating. I liked his 2012 - 2014 run, but the best bit of that was his stuff he did with Kane. 9 out of 10 Wrestler, 4 out of 10 Look, 3 out of 10 Promo."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: flightaker321wrote on 09.11.2021:[10.0] "What can't Bryan do' He can put on great matches wherever he is including the WWE and can even be an over-the-top character."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ameridragonwrote on 07.11.2021:[10.0] "Bryan Danielson, who is in a three way tie for being my favorite wrestler of all time with Eddie Guerrero and Roddy Piper, and my inspiration for my username on here. What is there to say' If there was any doubters because of iffy WWE booking despite never having a bad match, then his recent AEW run where he is putting out amazing match after amazing match should have quelled that. Amazing technical skill that I didn't even know was possible, with great story telling and in ring psychology, and he able to put you through a gauntlet of emotions just through moves alone. His weakest element was promos, and while he'll never be to the level of a Rock or Roddy Piper, he seems to be a natural on the mic after his days as a host on Talking Smack. In my opinion he is and has been the best active wrestler in the world for years now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NoSellwrote on 07.11.2021:[10.0] "He's top 10 all time and probably the best american wrestler ever. His pre WWE run was absolutely tremendous with classics against KENTA, McGuiness, Moreshima, Shingo Takagi, basically everyone. Then, he got to WWE and even restricted by their style he still put up incredible matches against Punk, Cena, Brock, Kofi, Styles, always getting the best out of his opponents. Now in AEW he's back with no restrictions, having incredible matches every single time he's on TV. Insane worker in various styles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dy1789wrote on 31.10.2021:[9.0] "Danielson is one of the unlikely heroes of professional wrestling. One of the most endearing talents ever. He wrestles a nice intense technical style and this makes up for his size discrepancy. He knows how to garner support with his promos. One of the best of his era."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mister Cute Facewrote on 31.10.2021:[10.0] "Best in the world right now. He was born with his work boots on. He's not just an artist, but he's amazingly physically gifted."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: notme17wrote on 30.10.2021:[10.0] "Bryan is the best wrestler in the world at the moment. I didn't think anyone would be a better wrestler than Omega this year, but the run Danielson is having us legendary. Every singles match he's had in AEW has been ****1/2 or higher to me. GOAT shit"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: kashonwrote on 30.10.2021:[10.0] "I can comfortably say he's the greatest wrestler of his era, and one of the best of ANY era. He might as well be three entirely different wrestlers. The first is a legendary underdog who can sell his ass off and lead amazing comebacks that would rally any crowd anywhere in the world behind him. The second is a vicious, violent striker that can inflict damage in many ways (especially his stiff kicks and chops) honestly comes off as a badass despite not being a big guy. I can buy into him beating a wrestler of any size. The third is a technical genius that has a firm grasp of psychology and putting things in the perfect place. Anyone who argues that the psychology of the modern era isn't as good, needs to watch more Danielson."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MrIslamywrote on 30.10.2021:[10.0] "I think he might be the best in-ring worker right now. All of his post-WWE matches have been great, especially the Suzuki and Omega matches, and now the Eddie Kingston match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: EdFatherwrote on 30.10.2021:[10.0] "2021 has showed everyone what everyone already knew - that Bryan Danielson is the man. He's given 110% in every single match, from facing Jey Uso in the WWE Thunderdome to a time limit draw with Kenny Omega in-front of 20k fans, to facing Aaron Solo on Dark. Danielson is truly the best wrestler in the world, bringing out the best of every opponent in the ring - and shows no signs of stopping."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: IBladeDailywrote on 21.10.2021:[10.0] "As it relates to North America, Bryan Danielson has a very good argument as the best of his generation. He was renowned worldwide long before he signed to WWE. He seemed completely out of place at first and managed to become one of their most over and popular characters, while leading people like John Cena and Triple H to some of the best matches of their careers. After he returned from retirement, he inexplicably turned heel and became the most interesting character in WWE in years. Now that he's in AEW, he's back to his old form, his matches so far have been fantastic. His match with Kenny Omega was possibly the greatest television match I've ever seen. His match with Minoru Suzuki was completely different and incredible. All of his post-WWE matches have been different."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Residentwrote on 16.10.2021:[10.0] "One of my favorite wrestlers and one of the best technical wrestlers of all-time. I liked him as American Dragon in RoH and enjoyed him as Daniel Bryan in WWE and now better than ever and now as Bryan Danielson in AEW. So over with the crowd as you can still hear the "Yes" chants and full of charisma. But also can wrestle from technical to hard hitting and even some high flying. He has had such amazing matches since he has come to AEW. A classic with Kenmy Omega and a classic with Minoru Suzuki."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: nwachampionwrote on 15.10.2021:[10.0] "In a previous review, I had allotted the North-American GOAT spot to a certain Shawn Michaels, but the way Danielson's influence on the industry has germinated in recent times, it seems like it won't be much longer until Danielson claims the aforesaid spot, at the very least in my personal list. I had already rated him a 10 previously, but I feel like a review must concomitantly go hand-in-hand with my rating for such a legend of the industry. If anyone thinks he deserves anything less than a 10, they are either not familiar with his RoH work, or they fail to see the influence of his body of work in general. Here's an exercise for the reader-- use Cagematch to sort the 100 highest-rated matches in any given calendar year. Now find the wrestler who has the most number of matches in the "Top 100 matches" list of any given year. Bryan Danielson is the answer for the years 2006, 2007, 2008, and 2009. As a matter of fact, no other wrestler in HISTORY has achieved this feat for 4 calendar years, let alone 4 consecutive ones. I opine that he is the most consistent wrestler of all time. Not only that, he has wrestled in over 35 promotions worldwide, and has had great matches in almost all of them, barring a few when he was still just a rookie. This is a testament to his innovative wrestling style-- a hybrid of 90s AJPW strong style, European grappling, and the classic American style based on storytelling. His hybrid style enabled him to put on clinics with a variety of opponents in a variety of promotions; he can adapt his style to be a high-caliber performer suited to anyone and anywhere. There are many young up-and-coming talents who recognize this advantage of wrestling in a hybrid style like Danielson's, namely the prowess of being as versatile as possible, and as a consequence, we may occasionally hope to savor a plethora of inter-promotional dream matches in the coming years. Not to mention, all of this influence stems from how he revolutionized the American indy wrestling scene during his time in RoH, and then went on to create change in the WWE when it comes to their faith in indy wrestlers as high-caliber talent (at least while it lasted). When it will be all said and done, I am positive that Bryan Danielson will be considered by many wrestling pundits to be the greatest North American wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: kfztkfzt2021wrote on 14.10.2021:[10.0] "IMO, the best technical wrestler we ever had, and one of the best pro wrestlers of all time, if not the very best(probably the best wwe has ever had).His technical skills are truly perfect, not only that, he is well balanced in each and every wrestling area, great striking, great highflying, great selling, great on the mic, charismatic, the crowd loves him etc...Lets not forget the fact that he could have fantastic matches with basically everyone on the roster, 9.9 out of 10 times his matches were excellent.A fantastic wrestler, a true traiblazer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MaskofIo99wrote on 07.10.2021:[10.0] "One of the best wrestlers in America ever. His resume speaks for itself. Classics wherever he went. His series with McGuinness is legendary, Morishima matches are amazing as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "The best technical wrestler that I have ever seen, his matches with Nigel McGuiness are the stuff of legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Luchagang13wrote on 26.09.2021:"BD is probably one of the best technical wrestlers in the world. His indy career is so impressive it outdoes his and most other wrestlers WWE career. He's been everywhere. He's put on 5 star matches everywhere. Ive watched him since his ROH days and am so glad he got to shine in WWE breaking the moulds in every way and now with his old American dragon gimmick in AEW I cant wait to see his future work, his match against Omega was amazing. Great technician, wide knowledge of submission holds, good on the mic, charisma he's got it all"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Awalmarri317wrote on 25.09.2021:"He went back to the best of the way before WWE and his municipalities, waiting for better than he was america dragon ,"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: stacccwrote on 24.09.2021:[10.0] "When contemplating the best wresters of all time, the name Bryan Danielson must be taken into serious consideration."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Four Pillars of Hellwrote on 24.09.2021:[10.0] "At worst the second or third best wrestler of all time. Undeniable in his love for pro wrestling and what it should be, Bryan Danielson is the greatest storyteller the wrestling. world has ever seen. A bona fide wrestling genius who has had classic bouts with most of the great independent wrestlers of the 2000s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rohit Bijuwrote on 19.09.2021:[10.0] "Bryan Danielson is THE GOAT. He is the best technical wrestler ever in my opinion. He is right up there with guys like Kenta Kobashi, Hiroshi Tanahashi, Mitsuharu Misawa, Bret Hart.....He had so many great matches in WWE but his best in ring performance was from his ROH run from 2002 -2009. Now that he's in AEW I can't wait to see what Danielson has in store for us. 10/10 for the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GoldLigerwrote on 04.09.2021:[10.0] "Bryan is the best. THE best. Ever. There's arguments to be had about who can match him in the ring in terms of pure workrate, but nobody can touch the sheer versatility and variety of his career. He already proved in the 00s that he was a top-level worker that could play a good face/heel role in a match, and on that run alone he could be considered an indie legend. His WWE run however is actually why I think he's the best. He was able to make EVERYTHING he was given work, even downright terrible angles and booking, and inspire career performances out of just about everybody he worked with (Miz, Orton, Cena, HHH, Reigns, Bray, Lesnar, etc. etc. ). He got Team Hell No over, he got being brainwashed by the Wyatts over, he got angles involving Brie over just because she married him. Bryan himself improved as an overall talent too, becoming WAY better on the mic and giving himself a much better look with the beard (that went long or short as his character changed); he was able to play a heel well enough to turn a crowd that was RABID for him in 2014 & early 2018 as a face against him, and that says a lot. I have to mention his run as Smackdown GM too; his character work was so strong during that time and before we knew he was cleared I considered it a perfect way to end his career. Now, having pretty much done everything he could in WWE (multiple world titles, multiple Wrestlemania main events, got to work with almost every modern or part-time main event guy during his run), he's seemingly ready to do a run in AEW and possibly New Japan, which could be truly incredible stuff. If he retired when he vacated the belt in 2014 or when he announced his retirement on Raw, he'd still be a 10/10 and an all-timer due to how often he succeeded in just about every environment against any opponent in any kind of match, but not only did he come back and put on some amazing matches and angles once again, he's entering what could be the start of the third act of his career. He's already the best ever and he's probably going to extend his lead in the coming years. All that said, and he's also just a lovely person outside of wrestling. GOAT among GOATs. I'd give him a 12/10 if I could."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mutant34wrote on 03.09.2021:[10.0] "Daniel will be debuting at AEW and will have the chance to do another great job. He was present in ROH's best period and starred in epic moments in WWE, from the Nexus to team hell no, moments that show his versatility. If AEW allows him to play NJPW matches he could become one of the most victorious of all time, as he can still make a lot of classics."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jorhorgewrote on 01.09.2021:[9.0] "One of the best coaches of all time having impeccable style and in-ring skill giving match candidates to match of the year, the only bad thing I see were some of his storylines and his strange promises in his last world reign."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Oregano Jacksonwrote on 31.08.2021:[10.0] "I don't know about greatest of all time because I have yet to fully go through the careers of Funk, Kawada, Flair (and more), but there is no doubt in mind that Bryan Danielson is the best wrestler that I've ever seen and honestly, it's not even close."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: vaventwrote on 23.08.2021:[10.0] "There's really no negatives to be said about Daniel Bryan. He has absolutely everything you could want in a wrestler besides the size, which I would argue isn't that important. One of the best technical wrestlers of all time, capable of having great matches with just about anyone. Also has incredibly strong character work. He somehow managed to go from being the most over babyface in modern WWE, coming out of retirement from a severe injury, to creating one of the best heel characters the company has seen in a long time. That, maybe more than anything, gives him my permanent respect. He could have kept the same character and been over and well-paid for the rest of time, but he wanted to innovate and do new things, and I believe he will continue to do so as he now transitions out of WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Forerunnerwrote on 01.08.2021:[10.0] "His career is really remarkable. Looking at it is now and what could be coming next, he may go down as the greatest. We'll see. But he is undoubtedly one of the best ever. The heights he reached in WWE were unbelievable and though he did change his style to fit in there more, he absolutely pushed it forward too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BrayanLaPrewrote on 23.07.2021:[10.0] "There have been a select few wrestlers over the years who have combined storytelling and truly elite technical wrestling. Bryan Danielson is in the same tier as Kurt Angle, Chris Benoit, Eddie Guerrero, and Bret Hart in that regard. Danielson could simply make you believe that what you were watching was the only thing happening on Planet Earth at that given point in time. A versatile competitor who has legitimate classics with sports entertainers such as Bray Wyatt and John Cena, and wrestlers such as CM Punk and Nigel McGuinness. One of the best of his time and any time. 5 star wrestler, 10 out of 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: faithOfWrestlingwrote on 08.07.2021:[9.0] "My favorite wrestler of all time, one of the Top 3 best ever from an in ring standpoint in my opinion. The only reasons he did not make it to a 10 is because I felt like they could have done better with Bryans character in his WWE career and his moveset I felt was much more limited during his 1st pre-retirement run from NXT in 2010 until the Yes Movement, compared to his American Dragon ROH career. Regardless I know what he can do though, Bryan is able to work an explosive fast pace match and a calculating methodical one which is what I like about him. A good example of Bryans explosiveness in the ring is his pretty much any match during his 2013 weak link run where he just flew around the ring taking what was then known as the shield out all by himself etc. A good example of Bryans calculation is his ring psychology limb targeting especially the arms he likes to break over his shoulders, he did this both in ROH and WWE which was usually followed up by a back suplex in ROH. I do not think how good Bryan is in the ring needs to be explained any longer, but he gained so much charisma both in ROH and WWE because fans were so invested in both his badass American Dragon character ( considering he was THE GUY in ROH, along with his Final Countdown entrance you could tell ) and his WWE Yes character story about how smaller guys like him can succeed through his incredible work, he got insanely popular during his road to Wrestlemania in the storyline with the authority, definitely a future Hall Of Famer in my opinion and awesome wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: deathlockoctopuswrote on 04.07.2021:[10.0] "Should at least be in the conversation for best of all time. Really excited to see if he does one last out of WWE run and remind everyone just how great he can be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kid Rockwrote on 06.05.2021:[10.0] "Die Geigenwelt hatte Paganini, die Kunstwelt Van Gogh, die Schauspielwelt Daniel Day Lewis, die Romanwelt Marcel Proust..... und Professional Wrestling hat im Jahr 2021 Daniel Bryan/Bryan Danielson.... Die Welt und besondere das Pro Wrestling Geschäft mag sich in kritischen Zeiten befinden, doch was sich nicht ändert ist, dass Bryan nach wie vor ein Virtuose des Sports ist, ähnlich wie die oben genannten Persönlichkeiten in ihren jeweiligen Kunstformen Virtuosen waren.... Kenny Omega? Nein, Daniel Bryan ist nach wie vor der größte Pro-Wrestling-Künstler unserer Zeit.... der Beweis ist einfach... mit so gut wie jedem Gegner kann er gute bis fantastische Matches haben, er wirkt echt und nachvollziehbar in seinem Charakter und ist unglaublich wandlungsfähig... und das auf sehr überzeugende Weise... wie er als geliebter Underdog-Held nach der Comeback-Story 2018 so plötzlich wie beeindruckend zum allseits verhassten Top-Heel gewechselt und sich nur ein Jahr später bereits wieder zum umjubelten Kämpferherz wandelte, sollte als Beweis genügen, dass dieser Mann in nahezu allem was er in diesem Sport tut absolut großartig ist und es eine Freude ist ihm dabei zuzusehen. Dazu kommt der wahnsinnige menschliche Sympathiefaktor bei ihm, wie ihn nur ein Mick Foley oder Bobby Eaton zu deren Zeit vorweisen konnten.... gerade in den vergangenen Monaten hat Bryan sich eine schöne Abschiedsstory mit dem Monster-Heel Reigns gestalten können und man kann nur hoffen, sollte er tatsächlich noch ein paar Jährchen aktiv sein, bevor er endgültig Schluss macht, dass er es schafft gesund zu bleiben und dass er von den anderen Ligen, sei es New Japan, ROH oder AEW ("sigh") auch entsprechend Wert geschätzt wird. Sollte dies nun Bryans letzter Tango in der WWE gewesen sein, kann man nur sagen: Danke D-Bry, für die fantastischen Momente und tollen Erinnerungen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The A-Listerwrote on 05.05.2021:[10.0] "One of the best performers in WWE history and currently top 5 in the world. Over as hell when face, doing great job as a heel. Very nice of him to put over the likes of Cesaro and Nakamura, too. Living legend. Hopefully we somehow see him against NJPW star. Okada vs Bryan is my wet dream."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Okaro143wrote on 25.04.2021:[10.0] "Daniel Bryan is one of the best wrestler to ever perform in the WWE ring. Although most fans know him from WWE, his best years were in ROH where he had one of the best feud in professional wrestling with Nigel McGuinness. He is one of those few who are consistently delivering every single time whether in the ring or on the mic. At first I wasn't into him a lot but now I absolutely love him. Whether he is a heel or a face, he consistently gets the crowd invested in whatever he does and he consistently delivers whatever stupid promo they try to pin on him making it his own. He was voted the most OUTSTANDING wrestler of the decade (2000s) and is one of the most outstanding performers in professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kungwrote on 23.04.2021:[10.0] "The only time I cried while watching a pro wrestling show was seeing Daniel Bryan, the man who introduced me to independent wrestling, hoist the WWE and World Heavyweight Championships after defeating two WWE mainstays in the main event of WrestleMania. This man is my favorite wrestler of all time and someone who deserves every bit of love and praise he receives."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: yzarcniogmiwrote on 19.04.2021:[10.0] "Obviously he's incredible in the ring and underrated on the mic as a heel (as a babyface he's pretty bland but if the story's good he can deliver). Recent years he's fallen way off in terms of interest because he's never pushed in any real way, but then he just randomly got inserted into the Mania main event and it's a testament to his reputation and work that no one really minds."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Monehmanwrote on 14.04.2021:[7.0] "Great in ring wrestler especially while in ring of honor. Boring as hell on the mic and as a character. If it wasn't for the fact wwe pushed against him so much and got an alright storyline and some great matches he would be the most boring main eventer of the 2010s. People look past how bland he is because they like pretending he represents them or something but if you don't gaf about playing make believe all charisma he has dies. He's a fantastic in ring performer but overall hes just fine."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NahuelVerawrote on 07.04.2021:[10.0] "One of the best Technical Wrestlers of all time. I really like Daniel Bryan, he has one of the most inspiring careers i have seen. I lived the yes movement when i was 14 years old, and it really influenced me to be a fan of this great sport. This are probably de last years of his career, and i wish one last run with a world title because he really deserved that and more."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: UnendlichIstwrote on 06.04.2021:[10.0] "Einer der besten, der es je gemacht hat und immer noch ein so großartiger Wrestler, dass es manchmal traurig ist, dass er nicht besser eingesetzt wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GoodGoodSnapwrote on 24.03.2021:[10.0] "Mr. 21st Century - simple as that. From being the ace of the US independent scene for close to a decade, to becoming WWE's most universally beloved babyface in close to twenty years, Bryan Danielson/Daniel Bryan has conquered every goal there is to conquer in this industry."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JustTapOutwrote on 22.03.2021:[10.0] "Probably the only man who was worthy of being a Hall of Famer prior to their WWE run, the fact he got a pop when he won the US title showed how big he was. I truly believe he will one day be in GOAT discussions with people like Kobashi and Shawn Michaels. Ever since that little WWE Network leak saying "2021 HOF Daniel Bryan", he might be on his way to retirement and before he retires he should main event a WrestleMania and win one more world title, showing he can do anything. Thank you Bryan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RheinlandPfalzTierwrote on 03.03.2021:[9.0] "Daniel Bryan is one of the best of all time. He is very well rounded and is great in nearly every category. A loveable babyface and as a heel he absolutely nailed it. Pros : Well rounded Great babyface Very technical Great heel Great promo Cons : N/A"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Gaspardwrote on 31.01.2021:[6.0] "Never understood the hype for Bryan. The whole "YES" movement few years ago was so boring to me. Truly overrated wrestler"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Uweuwesenwrote on 25.01.2021:[10.0] "Daniel Bryan oder Bryan Danielson ist der Welt größte Independent Star der Wrestlinghistorie! Am Mikrofon gut, im Ring mit der Beste aller Zeiten. Als Heel und als Face brilliant"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: EZPickenswrote on 21.01.2021:[10.0] "Daniel Bryan is my favorite wrestler of all time. His selflessness, connection with the crowd and perseverance is unsurpassed. It is still unbelievable to me is that he had a very successful heel turn almost immediately after returning to the ring from retirement. I cried like a baby when he retired, cried even more when he returned and then was booing the hell out of him as the Planet's Champion within months of his return. I love you Daniel Bryan. I love you so hard."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: sanjurowrote on 21.01.2021:[10.0] "The most versatile American wrestler of all time, able to work as a Flair-esque heel or the greatest white-meat babyface since Kenta Kobashi. Not a consistent promo but an absolute star on the mic when it counts, and of course the most innovative, technically crisp worker to come from the early indie era. No other wrestler ever worked so hard to see just how much he could change things up, especially in his 2006 title reign where he regularly risked putting together outright bad matches just to test the boundaries. Whether a worker is a good person or not isn't really material to their quality as a wrestler, but imo it's important that Bryan is the most generous main eventer possibly in the history of the business, a man who approaches every single match from the angle of making his opponent look as good as possible and who is delighted to do the job if it helps another guy get to the next level. Eddie and Jericho may have better character work when push comes to shove but for me Bryan is the best all-rounder of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Old ride long linewrote on 18.12.2020:[8.0] "After growing up in the attitude/ruthless aggression era and holding on to it and the possibility of it coming back for a long time, I genuinely hated this guy for what I knew, and what ended up being the direction the company was gonna keep going on his back. He is one of the main reasons I stopped watching wrestling on a regular basis from 2012-2018. And it wasn? t all his fault, it was more or less watching older fans accept the incredibly boring yesyesyesyes! Chant and the type of pg13 Horse shit that was gonna follow it. He was the first guy that made me realize that the stink of the pg era was not going anywhere anytime soon. He gets an 8 because at the end of the day I know I? m just a slaty old hater. he? s had plenty of good matches but in my book matches only account for so much of the entertainment."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: medousewrote on 29.10.2020:[8.0] "I don't feel the hype on this guy and I never liked his wrestling style. His matches were rather boring. I could compare him to Zack Sabre Jr. Their wrestling style is just not my thing. However I remember his work from Ring of Honor (I don't like his WWE matches) and many matches were spectacular. He became the biggest WWE star for many years. I think he's a great wrestler but way too overrated"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: eleddie2914wrote on 29.10.2020:[8.0] "Bryan definitely deserves a 10 but with his recent work i give him an 8. Daniel just returned from a hiatus and by the looks of it he may form a tag team with Owens and then feud. I would like to see that feud and hope to come back to give him a 10."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LucaGG18wrote on 14.10.2020:[10.0] "One of the best wrestlers on the planet, well deserved. He is charismatic, excellent at the microphone and in the ring, the creator of one of the most famous movements in the world (YES! YES! YES! YES! ), he has countless great matches behind him, he is still excellent whether he is facing or heeling, and surely one of the best wrestlers in the history of the WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Legend003wrote on 10.10.2020:[10.0] "Einer der besten Wrestler der Welt. Super im Ring und am Mic. Kann alles und jeder over bringen. Ein Top-Star der WWE und zukünftiger Hall of Famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AsukaStan6969wrote on 06.09.2020:[10.0] "He's Daniel f'ing Bryan. Call him overrated or bland or whatever you want, but the fact is he was one of the very few breaths of fresh air in WWE in a time where the company had very little diversity and was very stale. He is versatile in the ring, a natural babyface that didn't need to be force fed to fans (Roman Reigns 2015-2018) in order to get over, a great heel that got fans to genuinely boo him after being the definition of a babyface for most of his time in WWE. He has some really great and innovative offense, his submission game is top notch, and his selling can make any move look like it's devastating. Truly just a fantastic wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jansen ferriswrote on 14.08.2020:[10.0] "His 2013-2014 run will never ever be forgotten. The wwe universe that was behind him, the wwe universe that turned its back on legends like batista and rey mysterio just to make sure that bryan gets his road to main event wrestlemania. The standing ovation after he won the world heavyweight champion...... let me tell you something , this was the greatest BOOM of PG era and one of the greatest moments in wwe, or even better, one of the greatest moments in wrestling history. And speaking of him, he is one hell of a technical wrestler. the older he gets, the more talented he gets in the mic. there is nothing bad you can say about him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Looper007wrote on 10.08.2020:[10.0] "A Legend even before he got to WWE, his WWE run just added to his legacy. Great babyface and Great heel, had one of the best Wrestlemania endings and had so many great matches in WWE and ROH. He's a sure fire hall of famer. Also came back from a career ending injury, to produce more great matches and career highlights. Definitely my favourite WWE wrestler since Bret Hart."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: martizzletaewrote on 22.07.2020:[10.0] "I didnt really catch him in the independent wrestling scene, but I remember that first match with him vs Chris Jericho on NXT and I became a fan. Looking at his old work, hes a brute in submissions and strikes. Seeing him now, he's toned it down for the better and has miles of peronality (look up B-Dazzle and all of him amd Kane if you don't know). Is he the weak link? No. Was he able to turn a premature firing and make it to the elite of pro wresting? Yes!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: lehaimkhwrote on 22.07.2020:[10.0] "The American Dragon is a real submission machine. I love his matches. He works out all his techniques perfectly. He has a universal style. He is awesome in the heel, face or twinner character. The best wrestler. My rating is 10 out of 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Bomber-JobberRadiowrote on 18.07.2020:[9.0] "I would have rated Daniel Bryan an 8 a couple years ago because I didn't believe he really had the charisma to get to the tippy top level. During his time away from the ring he really improved his mic skills and showed to me that he does indeed have that charisma. His in ring skills have always been top tier and no one can dispute that. The only thing keeping him away from a 10/10 is his look IMO. I don't mean that in a negative way so much, his look just doesn't stack up with other top tier people not all of that is his fault."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Inokism 4EVERwrote on 13.07.2020:[10.0] "Bryan may vert well be the best American pro wrestler if not the greatest period. What I would consider his greatest strength is versatility. You can put this man in any situation and he excels far and beyond what he was ever meant to be. He? s so good he even tricked the marks into thinking The Miz was actually good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WoopbidieScoopwrote on 12.07.2020:[10.0] "You simply can't describe this man without calling him a LEGEND. For me, Daniel is an absolute G. O. A. T and my all-time favourite wrestler. He is just so good at everything that he can do. He is an ideal wrestler. Genius in the ring, on the mic, his characters were fantastic every time. Even when he becomes somewhat of a boring babyface, he manages to put out his genius ideas like New Daniel Bryan. Daniel is the best wrestler now in WWE and he was the best ever since day one. Living legend, nothing less."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Vaxxewrote on 04.07.2020:[10.0] "10/10 THE best professional wrestler in WWE, or even anywhere else today, Daniel Bryan somehow manages to have literally everything you would want in a wrestler, amazing wrestler, crazy insane charisma thats very versatile heel or face, and a general likeable person away from the ring. He is the very reason I want to become a professional wrestler and is my favorite of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Viniciouswrote on 26.06.2020:[9.0] "Daniel Bryan will always feel like a missed opportunity considering how beloved he was at Wrestlemania 30. Lightning in a bottle doesn't appear to be happening again, but technically speaking, one of the most entertaining technical wrestlers of all time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: THATSGOTTABEKANEwrote on 12.06.2020:[10.0] "To put it simply, Daniel Bryan is still one of the best wrestlers in the world, top 5 for sure. He's the best wrestler in the WWE right now and only a handful of superstars can be considered with him at the top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: shittylittlerasslinwrote on 08.06.2020:[10.0] "For me, he is one of the greatest wrestlers of all time (possibly the best american one ever) and my favourite one. Although rumours say otherwise, I would love him to keep competing (even if it was in a monthly-basis), whether in WWE (vs. Riddle, Thatcher, O'Reilly, etc. ) or in other landscapes. I would pay to see him in a Bloodsport event, for example, or even to make a New Japan return, meshing with their new big names. Despite his peak being far away (wrestling-wise, maybe 2005-2007, and entertainment-wise around 2012-2015), he is still the best in-ring performer in the WWE today and he is still capable of producing stellar matches, despite all the physical limitations. To summarize it, he is a blessing to professional wrestling and we are truly honoured to see him in a squared circle today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: VillainClubwrote on 12.05.2020:[10.0] "Einer der besten Technischen Wrestler der Welt. Abgesehen von Zack Sabre Jr kommt da kaum jemand ran. Für mich hatte er allerdings seine beste zeit bei RoH."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Daniel Bryan ist im Ring genial, am Mic hat er sich deutlich entwickelt und auch dort ist er mittlerweile sehr gut und Charisma ist auch absolut vorhanden. In seiner Underdog Story gegen alle um Wrestlemania 30 war er perfekt eingesetzt, sehr schade das viele Verletzungen ihm noch größeres versaut haben, für mich hat sich Daniel Bryan die vollen 10 Punkte verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BastitheBrainwrote on 21.04.2020:[10.0] "Perfektion in Person. Ich tue mich mit kleinen Wrestlern immer etwas schwer. Aber der Mann brauch sich im Ring vor niemanden verstecken, sie Angle oder Shawn Michaels oder Okada."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jomosensualwrote on 05.04.2020:[10.0] "One of the best, if not the best, to ever do this. Obviously his in ring work is insane and that's what put him on the map at first and it's at the point where I think he could take my loser ass and find a way to drag me to 3. 5 stars. But man, all the other aspects of his game are so good too. People somehow still underrate him on the mic. His parody of wrestling promo on John Cena is one of my favorite ever. He also just gets how to do every gimmick he's asked and knows the exactly how to pull them off. As a heel he's think skinned and overly intense on everything single thing and as a face he somehow flips the switch and becomes the most likable and relateable person you'd ever meet even though he's a pretty unique guy IRL. If somehow you're not sold, just remember he came back from a career ending injury and was the most over face in the company and in the span of a year made himself so hated every face he was against got cheered. Then he turned back face and it was like he never turned at all. Just a master of the craft and the day he stops doing this full time will be a very, very sad day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BDDwrote on 02.03.2020:[10.0] "Daniel Bryan is one of the best wrestlers in history, when he was only 18 years old he was already one of the best writers of his time, and the further his career progressed, the more he confirmed it, placing classics in several different companies. Even after being retired for two years, he managed to return, and managed to make several incredible matches. Bryan is also very charismatic, his promos are incredible, and he can be an incredible Underdog, and he can also be a great heel, in short, he is complete, and he is a GOAT, and also one of my favorite wrestlers, and he was a the main responsible for me falling in love with wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: VanguardWhowrote on 29.01.2020:[10.0] "If Bryan was "only" one of the greatest technical wrestlers to ever live, he'd be up in the 9-10 region. If Bryan was "only" one of the most natural, endearing, and genuinely lovable faces of all time, he'd be up in the 9-10 region. If Bryan was "only" one of the most inventive, diverse, nuanced heels of all time, with the ability to do fully comedic, fully serious, fully detestable, fully "cool heel" tweener, or any point in-between, he'd be up in the 9-10 region. Being all of those things simultaneously, on top of having re-invented himself countless times throughout his career, on top of having been involved in some of the most noteworthy matches, moments, feuds, and storylines in the past two decades of wrestling, on top of having seen a level of mainstream success and crossover appeal very rarely enjoyed by American wrestlers post-Attitude era, a level almost unfathomable for an "indie darling", makes him not just special, but transcendent. He's a performer who's been years ahead of his time, perfectly on the zeitgeist of his time, and a throwback to a different time, often somehow all at once. There's a very solid argument for him as the greatest of all time. It's difficult to even make a compelling case AGAINST him being top 5-10 of all time, at a minimum. There's never been another Bryan, and there will never be another Bryan. We're very lucky to have been wrestling fans at the right time to experience his career first-hand."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rypopotamuswrote on 13.11.2019:[10.0] "Daniel Bryan has no bad matches. Daniel Bryan has no bad feuds. Even the MITB versus Big Cass is elevated to watchable and enjoyable status by the excellent in ring ability of Daniel Bryan. To come back from retirement and to go on one of the best heel runs in the modern WWE era is a testament to his dedication and skill. If he was allowed full creative control over his heel character I? m sure he? d go down in some history books as one of the greatest to ever turn heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TylerWhitewrote on 19.10.2019:[10.0] "Bryan Danielson ist für mich einer der besten Wrestler aller Zeiten. Im Ring ist sich denke ich jeder einig, dass er zu den größten aller Zeiten gehört und technisch gibt es wohl kaum einen saubereren Wrestler, doch auch als Gesamtpaket ist er einer der absolut besten überhaupt. Es fängt schon damit an, dass ich kaum einen Wrestler kenne, der besser Heel und Face verkörpern kann. Als Face ist er wirklich sehr stark und hat dieses natürliche Charisma. Besonders in seinem 2013/2014er Run als er sich endgültig als Main Eventer in der WWE durchsetzen konnte, wurde deutlich wie sehr er mit der Crowd connecten kann, weil er die Underdog-Rolle einfach auch beherscht. Allerdings finde ich ihn als Heel noch besser und das, trotz dass er so ein herausragendes Face sein kann. Besonders in seiner Zeit bei ROH war er einfach genial als der perfektionistische Heel, der alles getan hat um selbst oben zu stehen und so geil Heat ziehen konnte. Besonders in der langjährigen Rivalität mit Nigel McGuinness hatte er immer die Heel Rolle und konnte sie so authentisch verkörpern wie kein Zweiter, weil dieses Gimmick auch einfach realistisch war. Auch in der WWE hat er mit seinem 2018/2019er Titelrun als Heel noch hervorragend funktioniert und das mit einem wiederum ganz anderen Gimmick. Am Mic ist er auch unterschätzt und hat so viele hervorragende Promos gehalten. In den Indys war er in den 2000ern wahrscheinlich der größte überhaupt und hatte die besten Matches mit denen er das technische Wrestling revolutioniert hat. Gegen Nigel McGuinness, Samoa Joe, Kenta, Morishima, Roderick Strong, Chris Hero etc. Wahrscheinlich hatte er den besten ROH World Titelrun überhaupt, aber auch bei anderen Promotions konnte er sich durchsetzen und dann sogar in der WWE. Natürlich hat er seitdem nicht in Ansätzen ein so gutes Match abgeliefert (Auch wenn das gegen Punk oder der Main Event von WM 30 sehr gut waren), doch ist er einer von nur sehr wenigen, die in den 2010ern zu festen Main Eventern wurden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Iceqwrote on 09.10.2019:[10.0] "Einer der besten Wrestler des 21 Jahrhunderts. In den Indys eine absolute Legende, in jeder Promotion besonders in ROH absolut abgeliefert. Als er in die WWE gekommen ist hätte man nie gedacht, dass er zu einer der größten Stars in dieser Dekade wird. Wrestlerisch einer der besten aller Zeiten, funktioniert als Heel sowohl als auch als Face perfekt und auch seine Promos sind super. Gehört zu meinen Top 10 aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AndoCommandowrote on 12.09.2019:[10.0] "Daniel Bryan is the kind of wrestler any promotion would crave to have on their roster. He may not fit the typical mold or aesthetic look that companies look for in their talent, but his greatest asset lies in his versatility. He can work any match, have chemistry with any wrestler and succeed in any task he's given on the microphone. His matches always have a balance of strikes and grapples, with hard-hitting high-flying manoeuvres sprinkled in. A pioneer of technical wrestling with the accolades to prove it, while also an entertainer; constantly telling a story whenever he steps into the ring. His ring psychology is always present and consistent, but more than that, his ability to connect with the crowd and get an audience invested is practically unmatched today. He's succeeded at both ends of the spectrum, being the white-hot babyface that fans wouldn't stop cheering for, before playing the dastardly heel persona we all love to hate. With Daniel Bryan, you get your money's worth and more. Simply put, he's one of the best performers of his era. When he was forced to retire back in 2016, I would have still called him one of the best of his time and that it was a blessing to watch his journey: from the independent circuit, to his rise in Ring of Honor, to ultimately conquering the land of the giants in WWE. With his return to the ring in early 2018 not only are we further blessed with his explosive fun offense and fantastic character work, but Daniel further solidifies his place in the upper echelon of professional wrestling's greatest. No one doubts this man's passion, for it serves as the crux of his career. No matter what he does, he'll do it with heart."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: taabr2wrote on 31.08.2019:[10.0] "The best wrestler in WWE today. Amazing technical wrestler who can also do brawling and high flying moves very well. Bryan's best aspect is his storytelling in the ring however,  Bryan can be an amazing as either an underdog babyface or an overconfident heel. Bryan was THE GUY for US independent wrestling in the 2000s and his huge success in WWE is a big reason for WWE currently signing every independent talent they can get their hands on. Bryan is already one of the best of his generation, the only question is if he will end up right on top or near it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[9.0] "I was never on the Bryan Danielson bandwagon during his time in ROH. I looked into his matches & always found him to be pretty overrated. But when he came to WWE & found a character to compliment his in ring work is when he won me over. It's too bad his health took away years of his career & it now seems the WWE has lost most interest in him being a top guy. I think there could be a lot more to be done with his character going forward, but even if there's not, he was one of the best of the last decade."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: luchabruhwrote on 11.07.2019:[10.0] "One of the greatest ever when it? s all said and done. Daniel Bryan can work virtually any match, with any person, and make it something that you want to watch. He is a pioneer for the current style of wrestling that we have nowadays, and has accolade after accolade. When it comes to wrestlers that display their passion and love for what they do, he is very close to the top. His energy shines through in everything that he does, and has a certain brilliance to him when it comes to ring psychology, and ring presence. To see him still wrestling is a blessing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "One of the best. Stiff and technical, great storyteller, good psychology and an awesome connection to the crowd. Whether a face or a heel, he is always efficient. Incredible run in ROH, did good in Japan as well, even in WWE he can find a way to deliver a great match from time to time, even carrying a bland as hell wrestler like Kofi Kingston to a great match. He did the best he could everywhere he has gone."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ShibataWreslerwrote on 03.07.2019:[10.0] "Hands down, One of the greatest to ever step into the squared circle. Daniel Bryan is the most technically sound wrestler I have seen after Kurt Angle. Either as a heel or as a face, he knows how to catch the attention of the audience, can make them cheer for himself whenever he wants to, can get the heel heat like no one in WWE now. I'm pretty sure that I have never seen a bad match involving Daniel. He possesses great mic skills and unmatched charisma. Overall, Daniel Bryan is the definition of what a perfect wrestler should be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PuroresuLoverwrote on 01.07.2019:[10.0] "This man has a award with his name and it is for a reason. He's the fucking GOAT, he has everything to be a company's top guy, even as a heel. D-Bry's mic skills are excellent, his in-ring skills are absolutely perfect, his heel work is something that is just amazing, and he can portray an awesome underdog too. Like I said, he is perfect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TechnicalWrasslinwrote on 12.05.2019:[10.0] "Him and Brian Kendrick have A lot if Traits But with Technical Every single match and very diverse moveset moves like regal plex dragon plex Running Knee Buzzsaw lebell lock cattle muttilation and etc great singles wrestler and tag team with kane Kendrick Rowan Punk"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ErycK24wrote on 08.04.2019:[10.0] "Watching the rise of Daniel Bryan and feeling the energy that he brought to the WWE was unforgettable he was supposed to be the WWE's savior if you really think about it. Instead he is retired due to a bad neck, its crazy how things work out sometimes. Edit: Since his return he? s put on a number of solid/great matches, and has thrived as a heel, truly one of the best in the world still."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: coolserazwrote on 06.04.2019:[10.0] "Much like HBK, he has had a phenomenal career resurgence. A respected indie veteran, then an incredibly over babyface, and finally a self-righteous heel. Bryan is one of the greatest wrestlers ever and with WWE, he has proved he can handle the character side of things perfectly, heel or face."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AJStylopzwrote on 06.04.2019:[10.0] "Daniel Bryan is imo one of the best wrestlers of the last 20 years or so. He can do it all, but always focuses on havin matches with great drama, selling, targetting the injured body part of his opponents. He is a great babyface and heel, honestly he is one of my favorite wrestlers and I love him to death. He is one of the few who really is capable of guaranteed classics with the likes of AJ Styles or even CM Punk. Truely a master of the sport. Also, can't forget his phenomenal run in ROH, so many amazing matches he had there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SuaveIanDwrote on 26.01.2019:[9.0] "Incredible work, whether it's in the ring, promos and such. His technical skills is beyond the charts. Sure, WWE gave him a shitty gimmick but it's the ringwork that satisfies me."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cibswrote on 11.01.2019:[10.0] "One of the best of all time. Bryan is incredible in all aspects (ring work, charisma, promos, adaptability etc. ), a unique talent that has left a mark on all the companies where he has been and whose catalog of matches can be compared only with that of Ric Flair and, perhaps, Misawa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Viper99wrote on 01.01.2019:[10.0] "Daniel Bryan zeigt uns gerade im momentanen Run mal wieder wie Göttlich er einfach ist! In den Indys vielleicht den Beste aller Zeiten! Bei der WWE lange sehr sehr Over, manchmal sehr dumm gebooked und dann das Verletzungspech. Er trat als unglaublicher Publikumsliebling an der Spitze seiner Karriere zurück.... Dann das Comeback...... Ich war anfangs sehr enttäuscht. Nicht weil Bryan schwächer war, sondern weil er einfach so miserabel gebooked wurde! Bryan lieferte Woche für Woche tolle Matches gegen die "Neue Elite Wrestler" der WWE und wurde trotzdem in Shitty Segmente gesteckt und sah unglaublich dumm aus. Dann kam die AJ Fehde und Bryan hat sich rehabilitiert! Er ist einfach mit abstand der geilste Heel in der heutigen WWE und setzt mich in die 2008er Phase von ihm als absoluten A*schloch Heel zurück. Bryan Danielson ist einer der smartesten und Technisch versiertesten Worker aller Zeiten und wenn er die Kreative Freiheit erhält, dann ist es einfach nur großartig ihm dabei zuzusehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Amico Leonardwrote on 06.12.2018:[10.0] "Probably the Best pound for pound Wrestler of all times, fantastic on mic and on promos, great with every gimmick , from the "rookie" in NXT, to member of Nexus to "Vegan Heel" to Yes movement and nowdays with "the New Daniel Bryan" stuff. Excellent both as Heel and As Baby-Face, can have a great match with ANYBODY (even Fucking Roman Reings ahahah) , voted "Most outstanding wrestler of the decade" by Dave Meltzer , from 2001-2009... prior his run in WWE and this is fucking amazing! great feuds with anybody ... do I have to say anything yet ? only flaw he retired when he was in the full of his potential... but nowdays is recovering the lost ground... Daniel Bryan is a Gift From the Gods to the fucking World of Professional Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Stott Onewrote on 28.11.2018:[9.0] "Have a lot of love for Daniel Bryan. One of my favorite stars in WWE right now, he is a wizard in the ring. I was thrilled to hear that he was returning to wrestling and I'm excited for this new heel run. Especially because sometimes his work as a Face is a little run-of-the-mill in terms of mic work."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kaswrote on 19.11.2018:[10.0] "Daniel Bryan is in contention for the greatest wrestler of all time. From 2002-2010 he was the indies and was the biggest reason for its initial boom. Whether heel or babyface, Danielson never held back and always performed to the best of his abilities, leading to an outstanding backlog of great matches, with an astounding amount of variety. Since joining WWE he continued having fantastic matches, changing and adapting his style and becoming one of the most popular wrestlers of the modern era. A simply wonderful performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KINGwrote on 09.11.2018:[10.0] "Fantastic babyface, the best of his generation, he's just lovable, everything about him is likable, the perfect underdog story, sad that he could never have a WWE Championship reign but how he overcame his injuries and came back makes him a larger than life wrestler IMO, I love his technical style and he put on some of the best matches I've ever seen, and he's also underrated when it comes to his mic skills, as he was a very good heel in 2012, his return has been good, I don't understand why many criticize it, I understand the WWE for taking their time to see if they wanna push him or not, but the coolest thing is that he loves to wrestle above all, he didn't cry when he had to feud with Big Cass, instead he did his best to entertain us, he is THE wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JEK 1991wrote on 06.11.2018:[10.0] "I have all good to say no bad. He is an excellent wrestler especially for his small size and stature. He is like Chris Benoit and can wrestle very well. His submission holds are excellent to see. Babyface or heel he can perform well at them. Outisde of the ring is an excellent human being. Loves his fans. YES! YES! YES!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Daniel Bryan is one of the best technical wrestlers to ever grace the ring. His peak as a superstar was in WWE, although his peak when it came to match quality was during his pre-WWE days. And his mic work was very underrated. Bryan had the potential to be something special but injuries and the typically wretched WWE booking when it comes to ideas that aren't their own put paid to that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Steamboat2511wrote on 02.10.2018:[9.0] "Daniel Bryan überzeugt als ein herausragendes Gesamtpaket: Technisches Submission-Wrestling, Highflying und ausgewogene Matchführung. Während seiner größten Fehde an der Spitze der WWE bewies er zudem beinahe unendliches Charisma und wirklich gute Mic-Skills. Leider sollte es nicht lange dauern und bevor er eine längere Zeit an der WWE-Spitze stehen konnte, war Schluss mit der Vollzeit-Karriere. Zuvor ist er freilich schon im Intependet-Bereich mit herrlichen Matches und als ganz großer Könner aufgefallen. Hätte ihn sehr gerne länger an der Spitze der WWE gesehen. Mal schauen was noch kommt? !"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Tomlou12wrote on 17.09.2018:[9.0] "Though he's not had many stand out performances in recent times (largely because of who he has been put with) I can't deny that Daniel Bryan is an incredible talent and has had amazing matches, both on the indie scene as Bryan Danielson and in the WWE. He is a majorly influential technically wrestler, and you can see this influence in wrestlers such as Zack Sabre Jr today. Bryan will surely be considered a legend in years to come."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jon Kingswrote on 05.09.2018:[6.0] "Personally I'm not thrilled by his gimmick or his matches, IMO is one of the most overrated superstar of the werstling."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: meatrockit83wrote on 28.08.2018:[10.0] "Bryan Danielson is an all-time great.  Despite his lack of size, Bryan established himself as one of the greatest technical wrestlers of all time.  He became a top guy in spite of a territory not wanting him to be and actively buried him.  He has a different type of charisma, can get the job done on the mic, and his in-ring work speaks for itself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: nwo4204lifewrote on 25.08.2018:[10.0] "Daniel Bryan changed the game in WWE in a huge way. CM Punk started to break down the doors, years after Y2J had already broken down the walls. The idea was no longer about being too small to be the champion, it had become about credentials; i. e, whether years of international and independent experience meant anything in the WWE. Wrestlemania XXX was justice for Daniel, for the fans who felt cheated so many years, but it also marked a true shift. The Andre the Giant Battle Royal began, Cesaro won but never became a world champion. AJ Lee beat every girl on the roster, and lost to debuting Paige the next night on RAW. Only 3 women from the AJ Lee 14 woman Divas title match remain on the roster. It was truly an emotional roller coaster for WWE fans who support the underdog from 2011 til now. CM Punk winning our hearts only to be unceremoniously jaded and leaving. Daniel Bryan fighting to the top only to be forced into retirement, authority angles and reality TV right when lightning is sealed in the glass bottle. Only to find out 3 years later that he is actually okay to wrestle again! He may not be the same but noone would be. I hope the story ends with a happy ending, noone has ever deserved it more in the sport."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: zephyrwrote on 24.08.2018:[6.0] "Used to be one of the greatest technical wrestlers and natural babyfaces but these days he's just an average wrestler who is over because of his history."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KOR KOMBATwrote on 21.08.2018:[10.0] "One of the best. Absolutely a living legend for both his indie work and WWE stuff. The energy and excitement he brings to matches is like nothing else, just watch his war with Bray at Rumble 2014. He always has the crowd in the palm of his hand, if Bryan's in the match, it's gonna be a hot one. The best part about him though is his dedication to the craft, wrestling is his life blood."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cal Vamwrote on 15.08.2018:[10.0] "A guy you can get fully behind and appreciate his in-ring work no matter your preferences, there will always be at least one match with this guy you will fall in love with. Can work with the crowd as just a few can, he's simply one of the best this bussines has ever produced, if not the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jamzell00wrote on 07.08.2018:[10.0] "Legendary indie resume as you could make a case for him being the best wrestler of the 2000s. His wwe run is very up and down with a lot of good/great matches but nothing compared to his other work. I'm somebody who would take heel danielson every day of the week but the way he got almost the entire wwe fanbase behind him is incredible. Him coming back is still one of the happiest things I've ever seen in wrestling and he was instantly the hottest guy in ALL OF WRESTLING. Of course knowing the wwe he was put in a feud with big cass and had a lot of his heat cooled down. Yeah most of us are holding out on this Miz match but his comeback has been handled terribly. Considering how he's been booked his entire career I shouldn't be shocked lol"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SGKwrote on 17.06.2018:[10.0] "Insanely good theme song, underrated mic skills, well rounded and versatile set, ability to bring audience in his favour and being an instant main eventer- HE IS THE COMPLETE PACKAGE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: InactiveGuruwrote on 31.05.2018:[9.0] "Being completely honest with you his WWE has been boring to me but it is nice to see the best in the World finally be over on the biggest stage wrestling has to offer. One of the best technical wrestlers ever and really worthy of all the praise he get's from fans and coworkers."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Shiza kunwrote on 23.05.2018:[10.0] "Easily my favorite wrestler of the modern era. Daniel Bryan is the man that single-handedly got me invested into WWE again during his epic run starting in the summer of 2013 where he was the hottest wrestler in the company, providing great performances on a night-to-night basis. His in-ring ability is unquestioned, and, to me, he undoubtedly has great charisma as a fiery underdog that anyone can behind. It really is a shame that injuries halted his rise to the top at WM30 and even forced him to retire for 2-years, but I was really hyped to see him back. Typical of WWE though, they have booked his return pretty poorly since 'Mania, and if this doesn't change, I honestly hope he leaves for a second run on the indies or perhaps even NJPW. Luckily there is a great collection of ROH matches he's had I have yet to watch, which I am greatly looking forward to."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Chrisxyzwrote on 22.05.2018:[10.0] "Technisch Hochbegabt und er elektrisiert die Hallen jedesmal. Nach dem er von den offiziellen grünes Licht bekommen hat, hatte ich Gänsehaut. Ich wünsche mir für ihn in der WWE viele top Matches und den World Championship. Wer weiß... vielleicht bringt er die WWE nochmal zu einem ***** Match"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: lew kazamawrote on 02.05.2018:[9.0] "The most charismatic wrestler of his generation has returned to in-ring action and I truly believe this run will build onto his legacy. I'm just sad we missed out on 2 years of prime Daniel Bryan."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Oliver95xwrote on 23.03.2018:[10.0] "Ein großartiger Wrestler der immer alles gegeben hat. Habe so gut wie nie ein schlechtes Match von ihm gesehen. Jetzt wo er wieder in den Ring steigen darf, erhoffe ich mir großes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GallowayFagwrote on 21.03.2018:[10.0] "Probably the most technical wrestler of the Modern Era, and perhaps the most technical wrestler of all time. The name that consolidated the indy scene, a man capable of adapting to any style and one of the most beloved wrestlers of all time. It's good to see you back, D-Bry!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Makai Clubwrote on 09.03.2018:[10.0] "Without a doubt one of the best technical wrestlers of all time. So many classics, KENTA, Takeshi Morishima, NIgel McGuniness, CM Punk, Chris Hero. Too many to list off. He has had some of my favourite matches of all time and is one of my favourite wrestlers of all time.  The guy's abilty to adapt and change himself and still stay one of the most loved and over wrestlers of all time is uncanny, from American Dragon, to the I have 5 phase, NXT, The Hug it out stuff, YES movement. Danielson/Bryan can and has done it all. His connection with the fans is almost legendary and he will be fondly remembered as a GOAT, like he deserves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CHN325wrote on 31.01.2018:[9.0] "Likely the best technical wrestler of his generation. Got himself over in WWE despite all the odds being stacked against him. One of the best underdog stories of all time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Titansrevengerwrote on 15.01.2018:[7.0] "The more I think about the bland vanilla midget which captivated the WWE the more I hate the word yes. It has come to my attention that while Daniel may have been very good technically he was so unspectacular visually. I personally thought the yes chants were obnoxious and the man chanting them equally so. It was another case of an underwhelming performer getting over with a smarky crowd. I really felt no depth to Daniels character and actually wanted to see he the underdog get trampled over. He was a flash in the pan as WWE champion who should never been at the helm in the first place. I could not take him seriously as a main event player."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DaBigDogwrote on 14.12.2017:[10.0] "The Absolute best ever. The American Dragon, Bryan Danielson. That says it all. Hope we will see him in the ring again!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jchiofalwrote on 14.11.2017:[10.0] "Bryan is just a fantastic wrestler. He puts on the best matches in the WWE today, with his large versatile moveset. I do love the aggression that Bryan has been showing lately though. Very reminiscent of his time in RoH."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Klabauterwrote on 13.11.2017:[5.0] "Daniel Bryan ist ein sehr guter Wrestler mit mäßigem Können am Mikrofon und der Ausstrahlung eines Reissacks.  Meines Erachtens der perfekte Midcard-Wrestler. Eben der Mann, der im RIng gut ist, aber abseits des Ringes langweilig. Das fällt in der Midcard am wenigsten auf. Insofern hoffe ich, dass er bald zurückkommt und eben diese Midcard aufmischt. Aber bitte nicht mehr im Main Event. Dafür ist er - zwar nicht wrestlerisch, aber ansonsten - zu schlecht!  Daher alles in allem 6 Punkte für Daniel Bryan. //Update 13. 11. 2017 // Als General Manager leider ein ziemlich belangloser Act, konnte er Anfangs zu Talking Smack Zeiten noch einigermaßen glänzen (auch wenn da vieles schon Unfug war), so ist er jetzt nur noch der, den man rausschickt, wenn man die Crowd anheizen will, denn selbst der gelangweilteste Fan schafft es "YES! " zu chanten. - 1 Punkt => Fünf Punkte."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ianlapierrewrote on 04.11.2017:[7.0] "Daniel Bryan was one of my all time favourite wrestlers. He was fantastic in the ring. Fantastic on the mic. He had the audiences popping like no one else since Austin and The Rock. My big beef with his overall standing is that he did not have career longevity. His career also paralleled a very weak period in wrestling history."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dragon Fighterwrote on 03.11.2017:[10.0] "What can I say more about Daniel bryan ? One of the greatest American wrestlers of all time for sure. He was a key member of ROH during the heydays of the company. Since joining wwe, he continued to rise and became one of the most popular superstar in pg era. Phenomenal in ring work, psychology. Great selling. Have a lot of charisma. Super underrated on the mic as well ( he outperformed cena during the miz tv segment before summerslam 2013 ). He also can make anyone sharing the ring with him look like million bucks. Being over with both hardcore and casual fans. I can understand why someone dislikes the yes chant, but I think that is one of the best things happening recently. I don't want to write anymore. A well-deserved 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TooSweetPhilwrote on 01.07.2017:[9.0] "Leute beschreiben ihn als overrated?  Bryan weniger als 5 zu geben empfinde ich als riesige Blasphemie. Er ist im Ring einer der Besten Wrestler seiner Zeit, vielleicht sogar aller Zeiten und zeigt das. Er kann mit so gut wie jedem Gegner ein gutes Match aufstellen (wenn man Leute wie Orton zu guten Matches bringt heißt das was). Zwar sind seine ROH Matches teilweise ewige Klassiker, doch auch in der WWE kann er das mitbringen. Ein Meister des Submission Wrestling's und quasi verantwortlich für die "Wrestling Revolution" des Marktführers. Extrem charismatisch, seien es die Yes-Chants oder das Beard-Gimmick. 9 Punkte, ganz knapp abgerundet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Summerslam Fan 01wrote on 01.07.2017:[8.0] "Es gibt nicht viele Wrestler die so Krass abgefeiert und geliebt wurden wie der Kerl.  Das YES Movement bleibt unvergesslich, bei Wrestlemania den Höhepunkt seiner Karriere (aber im Schatten des Streakende an dem Abend) Im Ring sehr stark und Großartig. Am Mic Solide auf Shawn Micheals Niveau (nicht Perfekt aber Solide am Mic) Trotzdem für mich nicht jemand der an ein Gesamtpaket von einem Cm Punk rankommt. 8 P."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LordGabrielwrote on 05.06.2017:[7.0] "Good technical wrestlers , as I always said but I don't think it is enough that people would consider him one of the best ever. Honestly he's pretty overrated. In his WWE career except his match vs. Triple H at Wrestlemania 30 didn't stand out at all. These days I have seen some of his ROH matches , and yes they are better than those from WWE. He put good matches but something is missing , that entertainment which any good wrestlers should have it."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PrinceJrwrote on 16.04.2017:[10.0] "Absolut genialer Wrestler. Man muss bedenken, dieser Mann hat 9 Mal den Award für den technisch besten Wrestler bekommen und dieser Award wurde nach ihm benannt. In der WWE absolut klasse gewesen und einer der beliebtesten Wrestler seit Steve Austin und The Rock. Dennoch ist der Daniel Bryan nur ein billige Version von Bryan Danielson aus Ring of Honor. Dieser war ein Magier."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Blood Pumpwrote on 30.03.2017:[10.0] "From the day I first watched his match with KENTA (Glory By Honor) I knew Bryan was a top fiver for me, and hes done nothing but solidified that spot up until his early retirement. I occasionally see some people note that the WWE neutered him a little, on the contrary I think he shined just as brightly when given the opportunity to. His Over the Limit match with Punk and Summerslam match with Cena are two such matches I'd readily put on the same plane as his matches with KENTA, McGuinness, Morishima and Hero. I'd go so far as to say those two WWE matches are underrated in the grand scale of Danielson matches but I'm diverging just a little. Bryan was fantastic in the ring in every way you can think. He could play the good guy or bad guy equally well (a very rare trait), and I think hes made a strong case for being considered the best ever based on his extensive wrestling resume."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: IsThisWrestlingwrote on 23.03.2017:[10.0] "The greatest American wrestler of the 2000s. Every independent wrestler these days basically owes this guy their career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: strongstyle77wrote on 09.02.2017:[10.0] "Hier unter 9 Punkten zu geben ist utopisch. Eine Indy Legende & eine WWE Legende. Einer der 10 besten Wrestler aller Zeiten für mich. Musste leider viel zu früh retiren, trotzdem kann man hier nur 10 Punkte geben. Danke Dragon!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Basti2k17wrote on 07.02.2017:[7.0] "Hat mich nie wirklich überzeugt, auch nicht mit der Underdog Story von 2014. Wrestlerisch top, aber man hat ihn oft zu stark gebooked"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring: Bei WWE nicht mehr so stark wie in den Indy Ligen aber da ich ihn für den besten Wrestler der 00er Jahre halte, in den indy Ligen gebe ich ihm 10/10 (50%) Punkte.   Promos/Schauspieltalent:Eigentlich ziemlich gut. 9/10 (25%)  Charisma/Statur/Gimmick:Hatte jetzt nie den Superstar Look, und einen grauenhaften Bart der nicht zu ihm passt. 5/10 (25%)  Sind dann insgesamt 8, 5 Punkte für The American Dragon.   = 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: rjsbx11wrote on 07.01.2017:[10.0] "It's really a shame that neck and concussion robbed him of his prime earning years or we may be talking about a greatest of all time candidate. Nonetheless, Bryan Danielson was a great wrestler. On the indies, Danielson was amazing--a great technician with submission and kicks as a speciality. His cocky prick heel champion was backed up that on any given day he was the best in the ring. Seriously, watch his stuff with McGuinness, Joe, Punk, Omega and etc, he gelled with any style he matched up against. Taking his popularity and fanbase to WWE, Danielson inverted his name to Daniel Bryan and from day one he grew an organic fanbase of hardcore and casual fans. Despite reservations from WWE, Bryan grew immensely popularity through a diverse skill set and marketable image. His use of facial expressions, body language, mannerisms, voice combined that with a style of MMA-inspired strikes, holds, and general recklessness that made his stuff look fairly real, and different from most other wrestlers. He became one of the most relatable and sympathetic figures in all of wrestling up until his retirement which left fans in legitimate tears. It's a shame injuries robbed us of truly great run of Daniel Bryan the main event champion, but he left an indelible impression in pro wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ApexOfEvolutionwrote on 02.01.2017:[10.0] "Wrestlerisch ist Daniel Bryan einfach klare 10 Punkte wert, der mit jedem Gegner ein tolles Match gestalten kann. Selbst Kämpfe mit größeren und schwereren Gegenern wirkten auf mich nie unglaubwürdig. Durch seine natürliche Art kam er als Face einfach immer gut rüber, was ihm zu einer besten Storylines in der WWE der letzten Jahre verholfen hat. Schade, dass er den Hype, den er durch seinen Titelgewinn bei Wrestlemania erzielt hatte, aufgrund seiner Verletzung nicht mehr nutzen konnte. Als On-Air-Autoritätsperson hat er seine Rolle noch nicht ganz gefunden, aber mal sehen wie sich das noch entwickelt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Styles Clashwrote on 13.12.2016:[6.0] "I can understand why fans rate him so highly, but I'm not personally a fan of his work in the ring, but that's just me."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PistolPeteMattywrote on 04.11.2016:[10.0] "One of the most likable people in wrestling history, even as a heel. From his absolutely incredible run as RoH world champion, to his iconic road to Wrestlemania 30, Daniel Bryan/Bryan Danielson is hands down my favorite wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PolishPrideMMAwrote on 26.10.2016:[7.0] "Daniel Bryan ist gut, unterhaltsam und talentiert, aber er gehört für mich nicht in ein Wrestlemania Main Event. Mit ihm als World Champion bin ich einfach nicht warm geworden. Als Midcarder oder im Team mit Kane hat er mir besser gefallen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Squared Circlewrote on 21.10.2016:[5.0] "Hard worker.  Gave everything he had.  Charismatic.  Crowd loved him.  Liked his work with Kane.  That being said, he's from the recent genre of way overrated wrestlers who couldn't possible win a real fight, (see CM Punk for further details).  With a complete lack of character believability, he sits at a 5."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: croatiantwat1950wrote on 18.09.2016:[10.0] "Argubly the best technical wrestler since Benoit. He started off in ROH with a bit sloppy mic skills, but ever since arriving in WWE, he became better and better on the mic. Yes, i am also one of those who hated fan hijacking every time he didn't win something, but that is not a reason to give such a talent a 0 grade. Hopefully he gets indutced in HoF for a year or two."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: J Batistawrote on 09.09.2016:[10.0] "YES! YES! YES! Daniel Bryan/Bryan Danielson is one of the greatest wrestlers ever! And, of course, the best technician of the last decade. Too bad for his early retirement."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Marcoboowrote on 02.09.2016:[6.0] "I am honest when I am saying that DB is not my favourite Worker in history. He get a big hype in his last years with his Yes_movement. Great for him and his career. But for me he was never more than a good midcard-wrestler."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Strezemannwrote on 25.08.2016:[10.0] "Bryan became a serious contender for 'best in the world' extremely quickly, and his output in terms of showstealing matches - in just about any company, in just about any of his runs - was absurd. Since then, the workrate level featured on big-name indie promotions has gone off the chain, but Bryan was far ahead of his time, and even among top-flight talent, he stood out as being the most technical, the most visceral, and the most versatile. Even after drastically changing his style after coming to WWE, he was still the biggest workhorse there, going out of his way to please the crowds. Throughout his career, I think he overdid it; I especially think his post-surgery fixation on "testing his neck", throwing headbutts, etc. is possibly the most foolish, ignorant approach to pro wrestling ever shown by an otherwise intelligent industry veteran. But I think he crammed enough incredibly good performances into his relatively short career to be considered as good an in-ring performer as there ever was. Never in a million years would I have expected him to become a big deal in WWE, but he somehow managed to get the consistently biggest pops of anyone in over a decade, and he had an entire Wrestlemania built around him. That's pretty incredible. On top of that, his understated charisma and very underrated mic work (he was honestly pretty good even as far back as his ROH title reign) humanized him, and made him more than just an incredible wrestling machine."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ShooterMcShootwrote on 11.08.2016:[10.0] "Great worker and a really nice guy who just caught on with the crowd thanks to a large ham character. Absolutely deserved to be world champion. Since his unfortunate retirement, he's carved out quite a niche there. Personally, I think he's an outstanding color commentator. Probably the best commentator in the whole company because he comes off honest and authoritative and he sells the action with his sheer enjoyment of wrestling. Absolutely he should be at it more regularly."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sonny Blackwrote on 09.08.2016:[6.0] "Zuerst muss ich sagen das ich ihn nur aus der WWE kenne. Und da ist mir leider nicht aufgefallen das er so gut im Ring sein soll wie mir das Internet sagen will. Noch dazu hat mich sein dämliches Yes absolut zu Tode genervt deswegen hab ich ihm auch noch einen Punkt abgezogen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Legendkiller96wrote on 02.08.2016:[8.0] "Er war für mich ein richtig guter Wrestler, jedoch nicht überragend, am Anfang mochte ich den Stil, irgendwann waren es mir einfach zu viele Dropkicks. Am Mic solide bis gut, aber kein Wunder wie Punk, Heyman und co. Trotzdem over und seine Regentschaft war gut gebookt, das liegt aber mehr an der WWE als am Wrestler selbst denke ich, von mir 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Hanscydewrote on 09.07.2016:[10.0] "His accolades speak for himself. A great wrestler for a very long time. Went from being the face of indie wrestling and a founding father of Ring of Honor to headlining Wrestlemania 30 with one of the best performances in 'Mania history and being the most popular wrestler from 2013-2015. It's a shame his career got cut off so early but he'll be remembered for not only his wrestling ability but also changing the way WWE looks for in a star. An all-time great, imo."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AMHTPwrote on 21.06.2016:[8.0] "You gotta love Daniel Bryan.  There's a reason he won Wrestling Observer's award for best technical wrestler so many years running -- Bryan was the real deal, and he was already a superstar during his Ring of Honor days.  It's a pity it took him so long to gain recognition in the WWE, but his victory at WrestleMania 30 was one of the greatest and most emotional moments in the business.  Bryan wasn't the best promo in the world, but his sincerity and heart never failed to shine through, and he was a machine when it came to churning out ****+ matches."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Carrot Junkiewrote on 06.06.2016:[10.0] "Yeah.  I'm one of THOSE people.  In pro wrestling's modern "Bodyslams on Ice" world, Daniel Bryan was the rare performer who felt real.  When The American Dragon came to the WWE, he may have had to tone down his moveset, but one thing he never toned down was his fire, his passion, and the in-ring presence that far outstripped his size.  He had an uncanny ability to get the audience to suspend their disbelief and believe in him and his character.  Due to his deft technical skill, great psychology, and perfect sense of timing, his matches felt remarkably like real athletic competitions while also retaining WWE's theatrical quality.  He threw everything he had into them, and unfortunately, it cost him dearly.  The biggest tragedy in all of this was that he never reached his full mainstream crossover potential.  To paraphrase Jim Cornette, "when Daniel Bryan retired, WWE treated him like a real star for the first time in his career".  I wish he had been marketed better, but despite all of that, he's still one of my all-time favorites."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Berlynwrote on 03.06.2016:[6.0] "Overhyped. Terrible on the microphone and his character resembles that of a toddler who doesn't get their way. How we went from badasses to a little midget screaming "YES" or "NO" is beyond me. Proven to not be a draw and never had a memorable moment. Hell, his WWE title on YouTube has less views than Hogan, Rock, and Austin just standing around and talking. What does that tell you? Overall... He's good, not great."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Zedwrote on 12.05.2016:[7.0] "Mal ehrlich: Charisma hat er, ja das stimmt. Am Mikro ist er solide, jedoch unspektakulär, und sein Moveset besteht zum großteil aus Kicks. Sein WWE Run wurde seiner Indy Zeit nie gerecht, dort war er wirklich einer dar allergrößten. Ich konnte ihn in der WWE nie so wirklich akzeptieren, da ich seine Independent Zeit kenne und liebe. Meiner Meinung nach in Stamford unter wert verkauft."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TrevPuroFanwrote on 27.04.2016:[10.0] "Greatest wrestler of all time in my book. Bryan had 5 star matches 2 years into his career, and he's been having couple of them every year of his career. Every time he stepped into the ring, he brought the best out of his opponent, regardless of who it was. When wrestlers like Kurt Angle, Chris Benoit, Shawn Michaels, Undertaker, etc. all wanted a match against you in your career, you must be really damn good. Best wrestler ever, and my all time favorite. #ThankYouDanielBryan"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: killowenskillwrote on 19.04.2016:[10.0] "The man left behind him a great legacy. Who do you think when you mention the Ring of Honor? About him. Who do you think when you mention modern WWE? About him. Who do you think that the PWG mentioned earlier? Again about it. Bryan managed to shine on all the popular indy scenes and to leave a mark there.  In each match, Daniel put his soul, which is why the level of wrestling was just on top. There was disastrous match with his participation. Anyone, even the worst match, can be considered worthy. The most important contribution he made in the WWE. Bryan proved that even a man of his height, his build, can become the face of the company, which is mainly dominated by pitching steroid without special skills. The best, simply the best wrestler in the world, that's what really deserves to wear this sobriquet.  #ThankYouDanielBryan"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JordanACEwrote on 01.04.2016:[10.0] "The ultimate underdog.  Bryan is one of those guys that I just can not hate.  A brilliant wrestler and a magnificent human-being.  There's truly something great about Bryan. The lad is a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jobbswrote on 18.03.2016:[10.0] "This guy can be considered one of if not tbe greatest of all time. Just what I would call the perfect wrestler as he could do it all in the ring. So many classics over the years and was just so fun to watch as well as being the BEST Technical wrestler 8 years in a row. Just a superb individual as well and it sucked when he had to retire as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mettstetter619wrote on 12.03.2016:[10.0] "Wenn man ihm keine 10 Punkte gibt, wem dann? Ich hab selten so einen grandiosen Wrestler wie Daniel Bryan bzw Bryan Danielson gesehen. Er ist einer der Besten bzw. zeitweise meiner Meinung nach der Beste im WWE Roster gewesen. Soviel "Passion" wie er für das Wrestling hat, das ist unglaublich. Daran können sich Leute wie z. B. Lesnar ein Beispiel nehmen. Er konnte einfach alles: Wresteln, er war am Mic stark, hatte unglaublich viel Charisma... was braucht man mehr? Mein absoluter Lieblingswrestler. Schade, dass seine Karriere rum ist, aber er sollte es echt lassen, nicht dass sein Hirn noch kaputt geht..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: James Dean Wrestlingwrote on 09.03.2016:[9.0] "Sad to see him go. King in the indies. And had a great WWE run for what its worth. Did not get to shine and sucks that he didn't live up to his full potential as far has having a lengthy WWE run. But these days, we can factor in a person's entire career so it softens the blow. So many great matches and highlights but to me, Mania 30 will be the career highlight for Dbry and thats a damn good highlight if you ask me.   GodSpeed Daniel Bryan."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Longa-46wrote on 02.03.2016:[9.0] "Daniel Bryan ist einer der besten Wrestler für seine Größe. Klar hat er nicht den Körperbau, aber dafür ist er ein super Teckniker und hat eine Klasse Ausstrahlung. Am Mic ist er auch gut, das hat er bei seiner Abschiedspromo nochmal richtig gezeigt. Im Ring echt sehr gut. Ich mochte den Kerl wirklich gerne und Seine Matches waren meistens gut. Mit Bryan geht ein richtig guter Wrestler in den zu frühen Ruhestand was sehr schade ist aber aufgrund seiner gesundheitlichen Lage die richtige Entscheidung ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheLoudMouthwrote on 17.02.2016:[10.0] "Diese gottverdammten Verletzungen. Unfassbar schade, dass Danielson seine Karriere in so verhältnismäßig jungen Jahren beenden muss. Einer der besten In-Ring-Worker der letzten 20 Jahre, wenn nicht sogar der Beste. Sein Mic-Work hat er jährlich auch verbessert, vom 08/15-Langweiler zum sympathischen und authentischen Krieger. Auch wenn das Yes-Movement manchmal etwas anstrengend war: Solche Geschichten schreibt neben dem Fußball nur das Wrestling. Danke für all die tollen Matches, egal ob bei wXw, RoH oder WWE. Super Typ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LabronBenoitwrote on 12.02.2016:[10.0] "Der zurzeit beste Wrestler der Welt. Auch wenn man das in der WWE (noch) nicht sieht, er ist es auf alle Fälle. Hoffentlich hat die WWE noch einiges mit ihm vor und lässt ihn nicht fallen, denn dieser Herr ist wirklich Gold wert und könnte trotz bereits etlicher Erfolge ein noch größerer Wrestler werden, als er ohnehin schon ist! Edit vom 12. 02. 2016: Ich hatte recht behalten. Der Mann war tatsächlich Gold wert, nur wurde aufgrund seiner Verletzungen immer wieder zurückgeworfen und letztendlich hat das dann zu seinem Karriereende geführt. Sehr schade, für mich einer der besten aller Zeiten und ich finde, dass er den Legendenstatus bereits absolut verdient hat vor allem durch sein Mitwirken im Independent-Bereich. Ohne ihn gäbe es vielleicht NXT nicht in der Form, in der wir es jetzt kennen. Danke Daniel, du bist ein Vorbild!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Brainbreakerwrote on 12.02.2016:[10.0] "Er war wohl DER Indy-Wrestler seiner Zeit und hat neuerdings in der WWE endlich an Profil und Mic-Erfahrung gewonnen, dank seines Heel-Turns, während seiner WHC-Regentschaft. Heute ist er überdurchschnittlich bei Promos und (wie gewohnt) eine Augenweide im Ring. Trotz seiner Körperbaus, wird er nicht unglaubwürdig gegen die Bullys im business wirken, denn auch ein Punk und ein Michaels haben bewiesen, dass ein skinnymßiges, athletisches Äußeres nichts mit Authentizität zutun hat. Das bringen Eleganz und Technik im Ring. Wer das immer noch nicht wahrhaben will, soll sich mal das Match von Bryan und Sheamus bei Extreme Rules anschauen und entscheiden, wer dort wen zu gezogen hat. Bryan ist fantastisch und ich freu mich auf die nächsten Jahre mit ihm bei der WWE, denn Kerle wie er sind es, die die ansonsten entertainment-getriebene Branche noch sehenswert machen. EDIT (nach 2012): Nicht einmal drei Jahre waren es noch. Aber was für ein Ritt auf der Walküre war das? Yes-Movement, WWE-Title, WM-Headliner! Unglaublich! Und nun im vierten Jahr folgte der emotionale Rücktritt. Seine Tränen, die er im Schlusssegment von RAW vergoss, sind diejenigen des wohl sympatischsten Gesamtpakets eines Wrestlers, das die Branche je gesehen hat. Sein Arbeitsethos war inspirierend für seine Generation; er glänzte mit der Abwesenheit von Skandalen; seine Technik brachte ihm NEUN mal den Wrestling-Observer-Award; sein Engagement neben dem Wrestling für krebsleidende Kinder ist wohl nur mit Cena zu vergleichen; zukünftig könnte er ein role model für die öffentliche Wahrnehmung von Gehirnerschütterungen im Kontaktsport werden... die Liste könnte ich fortführen. Wir werden ihn im Ring vermissen, aber außerhalb wäre ich froh, wenn wir ihn in der ein oder anderen Form noch sehen würden. Danke, Bryan Danielson!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cybermikewrote on 10.02.2016:[9.0] "Keine Frage ein Ausgezeichneter Wrestler aber mit Sicherheit nicht "Best in the World" IMO Stark Überbewertet dennoch sehr Gut! < -- Update am 26. 08. 09: Hab ihn m ittlerweile Live gesehen, da ist er eine Ganz andere Erscheinung auf DVD kann er aber garnicht Überzeugen, mittlerweile find ich ihn Spitzenklasse aber immernoch nicht "Best in the World" trotzdem auf jeden Fall Top 5  10. 02. 2016: Wahnsinn wie ich damals über ihn gedacht habe, absolut krass da er echt einer meiner Lieblingswrestler wurde! :D Man sollte außerdem sein Retirement Datum korrigieren das wurde ja erste am 09. 02. 2016 ausgesprochen :)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NastyYaffawrote on 10.02.2016:[10.0] "During his WWE run, there were times when the commentators would call him "a goat", but for me, this man is the G. O. A. T. The Greatest of All-Time. He is without a doubt in my mind the greatest in-ring worker of all-time, and his match catalog is unbelievable. He had so many great, classic matches throughout his career. And on top of that, he is really charismatic, his promo skills are underrated (as proven in his amazing retirement speech), and perhaps most importantly, he made me believe. He got me invested in everything he did. I have nothing but respect & admiration for this man. I am grateful to have witnessed the best wrestler in the world do his thing for so many years. Thank you Daniel Bryan Danielson. There will never be anyone like you. He is, to put it simply, the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jorymanwrote on 09.02.2016:[10.0] "Daniel Bryan, one of the best wrestlers of modern era, good mov, good charisma, nice mic. He has everything to be one of the greatest of all time. However,  unfortunately he has bad health and yesterday, he said bye to the thing he loves more. Good luck bryan, you are "the man""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DanielBryan1986wrote on 09.02.2016:[10.0] "Independent war er sehr stark und kam dadurch auch klar verdient zum Marktführer. Ich finde das diese Bindung nicht gut war für Danielson. Zuerst wird er gekündigt weil er eine zu krasse Aktion vor Kamera machte. Dann kommt er aufgrund der Fans wieder zurück. Er wird WHC und hat eine Fehde mit Big Show, wo er nicht stark dargestellt wurde, nur um dann binnen Sekunden den WHC gegen Sheamus zu verlieren. Nach langer Story gewinnt er bei Wrestlemania 30 den WWE Titel. Danach verletzt er sich und gibt den Titel leider ab, er kommt wieder um Champion zu werden und wird bei WM 31 Intercontinental Champion. Wieder verliert er den Titel ohne ihn groß verteidigt zu haben. Bis jetzt warten wir Fans auf das Comeback. (Hat die WWE noch Mut ihm ins Titelgeschehen zu bringen? wenn er sich kaum darauf stets verletzt? )Edit:Nun ja leider kommt er nur noch zurück um sich zu verabschieden. Erinnert mich von der Dramatik an den Retirement von Edge. Ich wünsche mir generell etwas weniger Shows für deie WWE Wrestler im Jahr."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Best Pro Wrestling Fan Everwrote on 09.02.2016:[6.0] "He retired. I felt sorry for him because he is too young to retire. I hope he will be tranier in NXT."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kenshin Uesugiwrote on 09.02.2016:[10.0] "Seien wir ehrlich, alle die Bryan Danielson vor seinem WWE Run kannten wußten was für ein einzigartiges Juwel er ist, auch wenn einige immer wieder behauptet haben er sei zu sehr Purist und charismalos als Wrestler für den Mainstream-Bereich. Danielson darf auch mit Stolz von sich sagen überall funktioniert zu haben und das gewisse Etwas zu haben. Aber selbst seine größten Fans hätten wohl nicht gedacht welche Welle er dann in der WWE los treten würde, seine WWE Zeit macht ihn zwar als Wrestler nicht besser, aber seinen Ruhm und Legendenstatus. Er war ein Jahrhundert-Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Delirious434wrote on 09.02.2016:[10.0] "There's nothing wrong with Daniel Bryan, he's maybe THE BEST in-ring worker of the last 10 Years, he has tons of Charisma, really good Mic Skills, he's an excellent human being and the most important, HE LOVES WRESTLING MORE THAT HE LOVES HIMSELF, pretty much the exact definition of Professional Wrestling, guys like him are those that you don't want to see retiring, and that happened just minutes ago, Daniel Bryan AKA Brian Danielson retired from Pro Wrestling due to several concussions at the Age of 34, one of the saddest moments in Wrestling History.  THANK YOU DANIEL BRYAN"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BadAssChonowrote on 28.01.2016:[7.0] "Er reist mich einfach nicht mit. Obwohl er technisch sehr stark ist und auch Charisma hat kann ich mit ihm einfach nicht warm werden. Ich weiß nicht ob es an diesen bescheuerten Yes-Chants (für die er zwar nix kann) oder einfach an seinem Look, mit welchem er aussieht wie Heidis Großvater, liegt.   10 Punkte für die Technik, 7 Punkte fürs Micwork aber nur 2 Punkte für die Glaubwürdigkeit als World Champion.   Sollte die WWE ihn jedoch mehr im Midcard bzw im Cruiserweightbereich einsetzen könnte er in meiner Wertung steigen"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JeMewrote on 11.01.2016:[10.0] "Bester US-Worker des neuen Jahrtausends. Herausragende Workerate, natürliches Charisma und am Mikrofon glaubwürdig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Harlequinwrote on 11.01.2016:[7.0] "Daniel Bryan's ring work speaks volumes on its own. You don't need to muster that much effort to look up a RoH match of Bryan Danielson wrestling circles around his opponents. Daniel Bryan however is very watered down. He has enough charisma to win over the crowd, but his moveset leaves more to be desired."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: carterms354246wrote on 22.12.2015:[10.0] "I, like many others, feel that Bryan Danielson (Daniel Bryan) has a legitimate claim on being the best professional wrestler of his generation. He is among the elite to come from the independents and make it big on the grand stage. I only hope that he is just as remembered for his amazing work on the independents as he is for his work in WWE. Danielson was considered the best in the world all the way back to 2006 when he was ROH World Champion and rightfully so. The guy never has a bad showing in the ring. It was satisfying to see him become the most popular wrestler in WWE knowing that he was one of the true wrestlers to actually deserve it. The guy main evented Wrestlemania 30 and won the WWE Championship while having Randy Orton and Batista job to him. Not to mention, having Triple H job to him earlier in the night. As a Bryan Danielson fan it doesn't get any sweeter than that. *Recommended Matches* vs Nigel McGuinness @ ROH Unified 2006 and ROH Driven 2007, vs CM Punk @ WWE Over the Limit 2012. There are so many matches I could've listed. Just look at the Cagematch matchguide!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: wasder20wrote on 09.11.2015:[8.0] "Ist gut im Ring und kommt beim Publikum an. Ich kann ihm leider nicht soviel abgewinnen und fand Ihn als Heel besser."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sascha Legendkillerwrote on 16.10.2015:[6.0] "Im Ernst Leute Daniel Bryan ist gut, als Midcarder (auch mal als United Stades-, Intercontinetal- und Tag Team Champion). , aber er ist keinTopsuperstar."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cojotewrote on 13.10.2015:[10.0] "The best technician wrestler of his generation. A man that is a pleasure see in a ring, and pay for it. His skills are amazing, one of the best submission wrestlers ever. His matches and his pshycology are incredible. His career in independent wrestler is great, with greatest matches in ROH, Japan and México. One of my five favorite wrestlers ever with Bret Hart, Sting, Eddie Guerrero and CM Punk: a dream team, that Neves will happen, to Survivor Series. His gimmick of American Dragon and his Yes Movement are greatest. Thanks for all this years and for your extraordinary career, Bryan Danielson."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jacobphillipswrote on 13.09.2015:[9.0] "one of the best workers of modern time. he has the abilty to put on a great match no matter who the opponant is. his moveset in wwe however is very limited compared to his bryan danielson days which makes him even more of an impressive talent than we have seen in wwe"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mandzukic9wrote on 13.09.2015:[8.0] "Muss zugeben, dass ich im Leben nicht damit gerechnet hätte, dass Danielson eines Tages im Main Event von WM stehen und diesen auch noch gewinnen wird.  WWE (und leider auch die vielen Verletzungen) haben ihn zwar im Ring etwas gebremst, doch sein Auftreten und sein Skill am Mic sind dafür über sich hinaus gewachsen.  Dieser Mann braucht keine Yes-Chants um over zu kommen. Nur schade, dass man ihn trotz seiner "Overness" nicht seriös bookt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HeadCheesewrote on 12.09.2015:[10.0] ""American Dragon" Bryan Danielson of the awesome wrestler, might end being known as one of the greatest wrestlier soft all time. Full of charisma and wrestling ability's."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Strikerwrote on 03.09.2015:[10.0] "Er kann alles PUNKT Wer ihn nur bei der WWE gesehen hat, sollte sich mal auch seine alten Matches anschauen und erst dann über ihn Urteilen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mizzle Assault Antwrote on 22.08.2015:[10.0] "The best in WWE when he was healthy, and hopefully will be again. Also a true master in his lengthy independent run. A legitimate greatest of all time contender, this man can do it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PWCwrote on 23.06.2015:[8.0] "Daniel Bryan was no doubt a great in-ring performer. However, this guy passed through so many hurdles to get to where he was at, I don't even know where to start. Daniel Bryan was first suspended by the WWE due to him choking Justin Roberts with his tie in 2010 and it took a far cry from the fans to get his job back and make a return appearance at the Summerslam 2010 PPV. He was pushed to the main event status and it took so much BS and name calling with Stephanie McMahon labeling him as a "B+" player that the insults, being made against him, got tiring and it really made you show how the WWE really felt about him. I'm not denying he was great in the ring but, I was being fed up that other wrestlers of his physique (Rey Mysterio for an example) were never treated like that, so why now? A good solid 8 wrestler in my opinion."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rikishiwrote on 22.06.2015:[8.0] "Daniel Bryan ist schwierig zu bewerten. Im Indie-Bereich als Danielson im Ring mit Sicherheit einer der Besten. Er hat technisch so viel drauf, war aber relativ uncharismatisch und blass zu der Zeit. Ich bewerte jetzt einfach mal den Daniel Bryan in der WWE. Und der hat, was Charisma und Micwork angeht, richtig zugelegt und hier ist mittlerweile durchaus ok. Sein Aussehen ist zwar scheiße und das "Yes"-Gimmick geht mir auf die Nerven, aber sein Charisma und sein Micwork sind wirklich gut mittlerweile. Im Ring gefällt er mir aber in der WWE nicht wirklich. Er wird mMn einfach falsch eingesetzt, da er in der WWE viel zu viele Highflying Moves zeigt. Das ist aber einfach nicht seine Stärke. Seine Stärken im Ring sind wo anders. Er kann mit einem passablen Gegner zwar immer noch gute Matches zeigen, aber über **** ging für mich persönlich bisher kein einziges Daniel Bryan-Match. Nicht das Match gegen Hunter, nicht das Match gegen Wyatt, auch nicht das Match gegen Cena bei Summerslam. Am Besten fand ich bisher tatsächlich sein Match gegen Roman Reigns. Ein paar Matches gegen Ziggler, Rollins und co. bei RAW waren auch ziemlich gut, mir ist aber keins extrem im Gedächtnis geblieben. Ich hoffe wirklich, dass sie Daniel Bryan noch mal mit seinem alten Stil kämpfen lassen (der Bart und die Haare dürften auch gerne gepflegter aussehen), dann geht die Wertung auch wieder nach oben, da das Gesamtpaket wirklich in Ordnung ist. Aber so, wie man Daniel Bryan in der WWE im Ring sieht, würde ich, wenn ich nur WWE gucken würde, nicht verstehen, warum die Internet-Marks den so abfeiern."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kevin434wrote on 17.06.2015:[10.0] "AN ALLE DIE BEHAUPTEN BRYAN SEIE SCHLECHT: SCHÄMT EUCH! Dieser Mann ist so ein guter Worker, charisma hat der auch und am Mic ist der echt gut geworden, der hat sich 15 Jahre den Arsch aufgerissen, den WWE Title run und den IC Title run hat er sich verdient! Schaut doch mal seine alten ROH matches? Ein 5 star nach dem anderen, oder bryan vs Triple H bei wrestlemania, ... Dann will man mir erzählen sein Moveset wäre schlecht... wie lächerlich! Man braucht nicht immer die besten Moves um der beste zu sein, siehe Shinsuke Nakamura! Der workt klasse Matches und darum geht es. Dann sagen andere er nervt.... oh gott wie dumm muss man sein, FÜR SEIN GIMMICK KANN ER NICHTS! Das bestimmen die booker bzw. Vince! Dieser Mann ist gut, da gibt es nichts dran zu rütteln, YES YES YES!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Richiewrote on 06.06.2015:[5.0] "Ein technisch höchst anspruchsvoller Wrestler, keine Frage. Meiner Meinung nach konnte oder besser gesagt durfte er nie mehr an die großartigen Zeiten bei ROH und danach anknüpfen, in denen er überragende Skills zeigte. Ich muss ihn aber auch als Ikone von Dummbeuteln bewerten, deren Naivität und oberflächliche Hörigkeit für ein Produkt sich in einem Wort zusammenfassen lässt: "YES""
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MusSanwrote on 25.04.2015:[10.0] "Der YES MAN, einfach genial. Was soll man anderes schreiben? Ausser das er genial ist. Im Moment gibt es keinen anderen Superstar der so Over ist wie Daneil Bryan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Excellence of Executionwrote on 22.04.2015:[10.0] "Bryan Danielson ist zweifelsohne ein Indy-Phänomen. Sowohl in den in den Indies als auch in Japan als auch im kleinen Rahmen der kurzen NXT Matches sah ich nur Gutes von ihm. Er ist ein technisch immens starker Wrestler mit großartiger Körperbeherrschung. Ausstrahlung, Mic Skills und das für beides nötige selbstbewusste Auftreten hat er ebenfalls. Dennoch kann ich mir momentan kaum vorstellen, dass er in der WWE eine Main Event Rolle spielen wird. Ich kann mir beim besten Willen nicht vorstellen, dass die WWE aus ihrem muskolösen Schema ausbricht, nur weil Danielson ein toller Techniker ist. Tolle Technik allein war noch nie (! ) das Kriterium, mit dem man im "WWE Universe" zu höchsten Meriten kommt. Er bringt zwar einen Hintergrund als verdiente Indy Ikone mit. Aber im Moment ist er nur ein glorifizierter Underdog. Der legitime Nachfolger von Chris Benoit? Jener sah aus wie ein Tier! Und wer glaubt, dass das keine Rolle gespielt hat (bezogen auf seinen Erfolg in der WWE), irrt imo gewaltig. Stellt euch doch mal Danielson neben Kane oder dem Undertaker vor. Wie sollte ein Danielson denn einen Cena oder einen Triple H oder einen Undertaker besiegen? Durch Aufgabe? Das sehe ich im Moment absolut nicht im Bereich des Möglichen. Danielson braucht einen Look, der ihn auch mehr nach einem Wrestler aussehen lässt. Das ist das einzige, was ihm im Moment zu deutlich abgeht und in der WWE bedeutet aber gerade dieses Kriterium mehr als alles andere. Und das ist nie anders gewesen. Edit: Meine Fresse, lag ich da falsch. ^^ Gott sei Dank."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CAIIIAwrote on 20.04.2015:[7.0] "Einer der besten Techniker überhaupt. Aber dennoch "nur" 7 Punkte da ihm meiner Meinung nach leider alles andere zu einer All Time Legende fehlt: Charisma, Mic Skills, Entrance (nur noch nervig, typischer zeitlich begrenzter hype heut zu tage), Coolness, Ausstrahlung, Optische Erscheinung (ja, auch 2015 im Wrestlingbusiness wichtig)... Ich glaube mit einem neuen Heel Charakter irgendwann wird er besser fahren... YES Movement und "I'm the better WRESTLER than you" wird früher oder später die meisten nur noch nerven... Mich nervt es jetzt schon. Meiner Meinung nach also jetzt schon overrated und overhyped."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: eldenaaaaawrote on 14.04.2015:[10.0] "American Dragon, Bryan Danielson, Daniel Bryan, it doesn't matter what you call him. Without a doubt the best mat wrestler and striker of the last 15 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Swenson 238wrote on 12.04.2015:[10.0] "DER Mann, durch den ich zu den Indies gekommen bin! Ein absoluter Kämpfer und Techniker, der wie kein Zweiter den klassischen Ringstil mit technischen Submissions und japanischem kicklastigen Shoot-Style verbindet. Ich war im letzten Jahr so begeistert von seinem Wrestlemania-Run und dem Titelgewinn und war dadurch mehr als enttäuscht, als er sich kurz darauf verletzte. Leider ging dadurch eine Menge seines Momentums verloren und jetzt fängt er wieder "unten" an. Die Fans haben ihn jedoch nicht abgeschrieben und ich hoffe, die WWE sieht diese Reaktionen bald wieder ein und er darf erneut ums große Gold kämpfen, anstatt jetzt diverse IC-Titel-Fehden zu absolvieren.  Und gebt dem Mann verflucht nochmal sein Moveset zurück! Wie kann man jemanden wie Daniel Bryan nur auf Corner Kicks, Corner Dropkicks, seine Signature Kicks und den Running Knee-Finisher reduzieren? ! ? Selbst der Lebell Lock kommt gefühlt immer seltener zum Einsatz..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: thenoah1wrote on 12.04.2015:[9.0] "Along with Lesnar, the best worker today. His indie days are excellent, and he created some of the greatest matches this side of 90's All Japan with the likes of McGuinness and Castagnoli, in particular, and a huge bunch of others. While the match quality may have decreased a bit, his WWE days showed him to be an even greater wrestler, manifesting the greatest "underdog" character in history. Incredibly charismatic in the ring and a technician unlike any other"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RooneyDXwrote on 05.04.2015:[10.0] "Ein starker WRESTLER. Freue mich schon auf zukünftige matches gegen Ziggler, Rollins usw. Er kämpft mit PASSION, SOUL and HEART."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Devil Of Legacywrote on 21.03.2015:[6.0] "Auf die Gefahr hin, gelyncht zu werden: überbewertet. Nicht im Ring, aber am Mikrofon. Er hat für mich null Ausstrahlung und seine Promos sind bestenfalls mittelmäßig (genauso wie sein Bartwuchs). Plus: No No NO!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: test85wrote on 08.03.2015:[8.0] "Der aktuelle WWE Liebling im Netz. Bei mir steht er aber nicht so hoch im Kurs. Am Anfang seiner WWE Zeit wusste er noch mich zu überzeugen. Aktuell ist das nicht so der Fall. Hat aus meiner Sicht ein dermassen nerviges Gimmick(Goat) und die Yes Chants bringen meine Ohren zum bluten. Da schalte ich sofort den Ton ab. Wenn er darf kann er sicher aus (fast) jedem ein min. gutes Match rausholen. Eventuell hat er seinen Höhepunkt bei WM30 (ähnlich Benoit bei 20) erreicht. Lasse mich aber gerne eines besseren belehren."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Navidwrote on 07.03.2015:[8.0] "Er ist ein vorbildlicher Worker und hat etwas an sich das ihn sehr sympatisch erscheinen lässt. Leider hindert das ihn auch daran wirkliche Wandlungsfähigkeit zu zeigen. Vor allem am Mikrofon sehe ich kein weiteres Potenzial mehr, sodass er in gewisser Weise durch den Wrestlemania Mainevent 2014 seinen Karrierehöhepunkt hatte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Valiuswrote on 25.02.2015:[8.0] "würde er ernsthafter dargestellt werden und auf das nervige YES verzichten gäbe es eine noch höhere Note..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mantafahrerwrote on 28.01.2015:[10.0] "So langsam wird's dann, Herrschaften - vielleicht ist es einigen Leuten noch nicht so ganz aufgefallen, aber die Zeiten wo du ein Hüne mit mehr Muckis als Arnie Schwarzenegger ohne notwendige Ahnung von Ring-Performance sein musstest, um es im Wrestling zu schaffen, sind vorbei. Gott sei Dank, denn diese Zeiten haben verdammt vielen Performern das Leben gekostet, der Ultimate Warrior nur der letzte Fall in einer langen Reihe von Opfern. Zwar haben das einige Promoter-Großväter wie Vince McMahon noch nicht ganz verrissen, aber heutzutage geht der Trend stark in Richtung technische Wrestler, die beim Publikum sympathisch rüberkommen, aber es auch schaffen ein langes und hochqualitatives Match zu worken, selbst mit Performern die eher in Richtung Powerhouse aufgebaut sind und daher ein wenig Hilfe dazu benötigen. Daniel Bryan ist jemand, der einer der besten Worker weltweit ist, von seinem Arbeitgeber konsequent benachteiligt wird, aber trotzdem unglaublich over bei den Zuschauern ist. Jemand, der auch dieses Jahr das WM-Main-Event in allen Aspekten verdient hätte, aber aufgrund von Backstage-Politik die nächsten Monate nur noch in der Midcard herumtanzen darf. Wie er aussieht ist mir egal, sein Yes! -Ruf ist zwar manchmal nervig, war aber essentiell dazu, eine Verbindung mit dem Publikum aufzubauen. Er hat etwas genommen, was ihn einen Popularitätseinbruch bescheren sollte, und damit allen gezeigt dass man die Wrestling-Welt mit Leidenschaft und Geduld im Sturm erobern kann. So, jetzt bin ich aber fertig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mr8541wrote on 27.01.2015:[10.0] "One if the most amazing talents the Wwe has seen in many years.  It's been many years since I have seen a superstar that has such a crowd base behind him. A future hall of famer in my book."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ggultra2764wrote on 27.12.2014:[9.0] "Easily the best in-ring worker the WWE had up to when he left due to needing surgery. His everyman personality allowed fans to easily connect with him and while not up to CM Punk level, he could still cut solid promos that fans could connect with for his character. He's living proof that you don't need to be Vince McMahon's ideal big, muscular type to get over in the WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Gad Chablewrote on 24.12.2014:[10.0] "Überragender Techniker - im Ring sucht er weltweit seines Gleichen. Auch was Charisma und Mic-Work angeht, hat er eine enorme Entwicklung hinter sich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HereComesThePainwrote on 20.12.2014:[10.0] "Gibt es nicht 11 Punkte?  Bei ROH war er einfach unfassbar super. Bei WWE immer genial, vom schüchternen Anfänger über Heel bis zum Topface. Bleibt nur die Frage, ob Daniel Bryan einer der besten und unterhaltsamsten aller Zeiten ist. YES! YES! YES!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Heel MaSchwrote on 16.12.2014:[10.0] "Alles andere als zehn Punkte sind hier eigentlich ein schlechter Witz.  Seit Jahren liefert Bryan wrestlerisch die besten Leistungen in Nordamerika ab. Alle die ihm das Charisma absprechen haben die WWE Shows in den letzten Jahren offenbar nicht verfolgt. Bryan zieht Reaktionen die man sonst nur von Steve Austin kannte. Das er mittlerweile so populär und erfolgreich ist gönne ich ihm ungemein.  Bei seinen Titelgewinn im Mainevent von Wrestlemania hatte ich ehrlich Tränen in den Augen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ShawnDravenwrote on 12.12.2014:[10.0] "He is truly the best wrestler in the world, and has been for a long time. If his career is over due to the neck injury, at least he went out on top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Y2J316wrote on 28.11.2014:[7.0] "Top Wrestler keine Frage, aber sein Gimmick + das Komplette WM30 Märchen fande ich nicht so toll (mag zwar schön für die fans weil face win aber egal). Schade für ihn das er gerade als sein Run als Champ startete sich verletzte. Finde es ganz witzig das er vor den kameras AJ heiraten sollte, aber am ende Phil aka. CM Punk der glückliche war. Auf jeden fall viel Potenzial, Gimmick sollte trotzdem noch einmal überarbeitet werden."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Muyo90wrote on 23.11.2014:[7.0] "Seine YES YES Chants gehen mir zwar tierisch auf die Nerven, aber ist aktuell einer der besten Wrestler die die WWE zu bieten hat. Ich denke mit seiner Rückkehr wirds im Main Event wieder wesentlich enger zu gehen. Kann man nur hoffen, dass es bald wieder 2 World Titles geben wird."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AwesomeAlbertsenwrote on 23.10.2014:[7.0] "Im Ring echt in Ordnung, hat ein paar Wow-Momente in jedem Match, diese sind jedoch ziemlich repetitiv. Dazu ein grausames Gimmick. Cinderella-Märchen hoch zehn. Alle sind gegen ihn, aber am Ende kann er alles überwinden und gewinnt den Titel. Die Story gab es ja auch erst 10. 000 Mal, da sollte man sie definitiv noch einmal bringen. Bis zum SummerSlam '13 war das ja noch okay, aber dann wurde es echt zuviel. Außerdem scheint er sich schnell zu verletzten, was auch seinem in-Ring-Style anzurechnen ist.  Hoffe mal, dass sich bei seinem Comeback nicht alles wiederholt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: zackwoowoowooryderwrote on 18.09.2014:[10.0] "Ist für mich aktuell der Beste in der WWE, von den Ring-Skills her kann ihm keiner das Wasser reichen. Sein Gimmick als Fanliebling spielt sehr gut, aber auch sein Heel-Gimmick, welches er 2012 hatte, hat er extrem gut gespielt. Am Mic gehört er (noch) nicht zu den besten, da gibt es einige die dass besser machen als er."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HighlightHEELwrote on 29.08.2014:[10.0] "Noch immer einer der besten Wrestler der Welt. Innerhalb des Seilgevierts kann ihm eigentlich niemand das Wasser reichen. Er ist in der Lage, Wrestler zu Matches zu ziehen, die weit über ihr normales Niveau hinausgehen. Dazu kommt ein mehr als ordentliches Micwork, was nebenbei auch sein wohl größter Schwachpunkt ist. Obwohl sein Bart mir immer noch nicht wirklich gefällt, ist er zu einem Markenzeichen geworden, das wohl dauerhaft sein wird. Noch wichtiger ist natürlich das Yes-Gimmick, das man wohl mitterweile mit Stone Colds "What? " vergleichen kann - das immer noch zeitlos ist. Seine Krönung bei Wrestlemania XXX steht jetzt für immer in den Annalen, und nach seiner Rückkehr dürfte alles andere als Main Eventer für ihn ein Witz sein. Er ist eines der Gesichter, das man - vorausgesetzt, dass er gesund bleibt - in der WWE in den nächsten Jahren weiter an der Spitze sehen dürfte, und das ist auch gut so."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Antimasterwrote on 25.08.2014:[9.0] "Er ist ein herausragender Wrestler, keine Frage! Sein Charisma und seine Mic Skills sind ebenfalls stark überdurchschnittlich, er hat seine Entertainment-Fähigkeiten als Heel und in der Anger Management Story 2012 mehrfach unter Beweis gestellt. Warum also nur 9 Punkte? Erstens muss ich sagen, dass mir sein Look in den letzten Monaten überhaupt nicht zusagt, klar es ist sein Gimmick, das schlecht vermarktbare Goatface zu sein, aber trotzdem gefällt mir sein Wuschelkopf einfach nicht. Zweitens hat er sich in den letzten Monaten in seinem Moveset mehr und mehr eingeschränkt, ich habe das Gefühl, früher war er variabler. Am Ende bleibt zu sagen, dass Bryan eigentlich ein sicherer 10 Punkte Mann ist, aber mich einfach im Moment zu viele kleine Dinge an ihm stören, als dass ich ihm diese auch geben könnte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Phenomenal91wrote on 03.08.2014:[10.0] "His brilliant work on the independent circuit and Ring of Honor speaks for itself. But his treatment in WWE was disgraceful. They deliberately held him down, on camera and behind the scenes, put him in a series of ridiculous, illogical storylines that made him look foolish, and tried everything in their power to prevent him from making it to the top. But he did anyway. He shined no matter where they put him, he put on great matches against Cena and Orton, men who couldn't outwrestle him on their best day. He succeeded even though the higher ups wanted him so desperately to fail. Part of that was his talent. Another part was the overwhelming fan support. The fans love this guy because he's GOOD, not because he sells "Fruity Pebbles" and kisses Vince and Hunter's respective asses. He's proof that WWE will always be about WRESTLING, whether they want to be or not. Along with CM Punk, this man is one of the last few wrestlers left in mainstream sports entertainment. Hats off to you, Bryan Danielson. I always knew you'd make it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DieOffenbarungwrote on 03.08.2014:[6.0] "Über die Art wie er derzeit bei der WWE eingesetzt wird, will ich eigentlich lieber den Mantel  des Schweigens werfen, weil es einfach traurig ist. Der Mann hat echt Talent und zählt zurecht zu einen der Besten, aber er darf es bei der WWE nicht zeigen. Immer nur die gleichen Moves,  was leider auch wieder an hämische Cena-Kommentare erinnert. Will nicht, dass man Bryan zukünftig 5-Move-Bryan nennt, weil das hat er nicht verdient. Die WWE muss Ihn mal mehr  zeigen lassen und man muss unbedingt seine Matches anderes schreiben, dass war zuletzt ewig das Selbe und zum sterben langweilig. Dieses Super-Bryan Gimmick sollte man auch mal abschaffen, weil er sonst wirklich irgendwann wie ein Cena endet. Auch wenn er nichts dafür kann, ist seine Ring-Leistung derzeit einfach nicht gut, da muss man auch mal so ehrlich sein.  Ich meine, vergleicht man die ROH-Matches mit den WWE-Matches! Klar, andere Liga andere Handhabung, aber es ist sehr enttäuschend wie er eingesetzt wird. Mich freut sein Erfolg, aber doch nicht auf Kosten dessen was man zeigen kann. Am Mic ist er leider auch nicht gut, weswegen die Bewertung nur befriedigend ausfällt. Es tut mir leid, Daniel. :("
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jack Slaterwrote on 03.08.2014:[5.0] "Ich hatte sehr viel Zeit mir meine Gedanken zum Thema Daniel Bryan zu machen. Ich war ursprünglich mal bei 9 Punkten aufgrund seines wunderbaren Wrestlings und bin immer wieder geneigt gewesen Punkte abzuziehen. Ich konnte mir Segmente mit Bryan einfach nicht mehr antun und war von Anfang an alles andere als ein Fan. Ich habe mich vom Hype um Bryan nicht wirklich mitreißen lassen können - die Zeit nach Team Hell No, in der Bryan dann allein am Mic war haben bewiesen, dass er es einfach nicht kann. Ryback ist besser am Mic als Bryan! Sein Gimmick ist noch schlimmer als das. Der ewige Underdog... ernsthaft? Wie oft sollen wir solche Geschichten noch ertragen müssen? Und im Ring mag er gut sein, aber ich bin auch kein Fan seines Stils. Seit Bryan verletzt ist macht es mir um einiges mehr Spaß WWE zu gucken und das will schon einiges heißen. Ich muss mich sogar dazu überwinden Bryan mehr als 0 Punkte zu geben weil ich ihn einfach nicht mehr sehen will, aber ein wenig Objektivität muss einfach sein. Leider! Ich gebe daher die Hälfte aller Möglichen Punkte da ich weiß, dass er aus gutem Grund so gelobt wird und er technisch gesehen ein guter ist."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Exturnuswrote on 04.07.2014:[10.0] "In my opinion, Daniel Bryan - best wrestler in WWE. "Best of the best". There is no extra comments - look at one of his matches!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MrJamesssswrote on 05.06.2014:[10.0] "I followed him since he was in ROH, and quickly love his in ring style. He's a total package: great moveset (especially his submission holds), selling, storytelling, charisma and interaction with the crowd. I'm happy with his success in WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: L3NAwrote on 24.05.2014:[10.0] "Impecable worker with an all-around great build-up and interesting back-up story. Will definetly be a deserving Hall of Famer one day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SRwrote on 12.05.2014:[10.0] "Simply the best at the moment! Mehr muss nicht gesagt werden, steht mit Recht an der Spitze der WWE. Stark am Mic, im Ring sowieso mit das Nonplusultra!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CrIppIL3RTIRiXwrote on 19.04.2014:[9.0] "Chris Benoit 2. 0, Bryan Danielson ist eine wucht im Ring dagegen kann man nichts sagen. Sein Mic Work ist im durchschnittlichen Bereich. Sein Gimmick, obwohl welches? Meiner Meinung nach besitzt Bryan kein Gimmick, dieses "Yes Movement" was mir zur Zeit voll aufm Sack geht ist in meiner Sicht kein Gimmick. Also InRing Top, Mic Durchschnitt, Gimmick welches?  Es gibt noch zu sagen, dass Bryan aus meiner Sicht vom InRing worken nicht an die 10 Punkte herann kommt, weil es zu weinig Abwechslung gibt.  Abschließend, 9 Punkte für den besten InRing wörker in der heutigen WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BangBangwrote on 17.04.2014:[10.0] "Daniel Bryan hat bei Wrestlemania XxX bewiesen, dass er dem Mainevent gerecht werden kann. Bryan ist die Gegenwart und Zukunft von WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Slyderwrote on 16.04.2014:[10.0] "Hat mich in der WWE immer gut unterhalten. Leider kann ich nur die WWE-zeit bewerten, weil ich andere Ligen nicht sehe. Auch, wenn gerade sehr viel negative Kritik da ist, weil er in so nem' Cena-ding "moved" und plötzlich durch Hype - Hate wird, hat er immer sehr gut unterhalten. Er hat seinen Platz einfach verdient, zumindest mehr, als Part-timer, wie The Rock etc.. Mal sehen was noch mit Ihm passiert. YES! YES! YES!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Yesyesyes98wrote on 12.04.2014:[10.0] "The best superstar in years. Amazing wrestler who is also great on the mic. He deserves everything that he has gotten in the past year.  My personal favorite superstar of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Matzinhowrote on 11.04.2014:[5.0] "Ich bin mit Danielson nie warm geworden. Er ist mir zu nerdig, hat mir zu wenig Ausstrahlung und auch seine Promos sagen mir nicht zu. Mir fehlt da einfach das Charisma, da springt der Funke nicht über. Das wäre alles nicht so schlimm, wenn er wenigstens im Ring gut wäre. Auch da finde ich ihn aber allenfalls passabel. Sein wir ehrlich: jeder durchschnittliche japanische Junior kann bereits mehr als er, von den Topleuten aus Japan ganz zu schweigen. Das Problem bei Danielson ist sicherlich der Hype, der immer um ihn gemacht wurde. Dem konnte er für mich nie gerecht werden. Als reiner Wrestler ist er gut; und doch kenne ich massenweise andere, die mich besser, zum Teil auch deutlich besser unterhalten haben. Was bleibt ist ein ordentlicher Wrestler, der in der WWE gut aufgehoben ist."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Titanwrote on 10.04.2014:[10.0] "Daniel Bryan ist einer der wenigen Entertainer, die den Sprung vom Indy-Circuit in die WWE geschafft haben und dort auch erfolgreich sind. Im Ring ist Bryan jedes Mal ein technischer Leckerbissen, ein Feuerwerk an Griffen, Kontern und Spots und ein unterhaltsamer Wrestler. Von seinem Talent können sich so manch andere WWE-Worker ne dicke Scheibe abschneiden. Am Mic weiß er mittlerweile auch zu überzeugen und mit dem Yes Movement hat er nen neuen Trend gesetzt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wizz21wrote on 08.04.2014:[10.0] "Klasse Wrestler, es fehlt ihm meiner Meinung nach nur noch ein wenig an Charisma um auch in der WWE richtig durchstarten zu können. Aber das wird schon noch werden. Vorerst vergeb ich mal "nur" die Note gut, Tendenz ist aber eher steigend.   Edit:  YES! YES! YES! YES! YES! YES!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mathias Rekaschwrote on 07.04.2014:[10.0] "Derzeit, und das muss man bei aller - in meinen Augen ungerechtfertigten Kritik an seinen Mic-Skills - neidlos anerkennen, sicherlich einer der besten, wenn nicht sogar DER beste Wrestler weltweit, da er über ein Reportoire verfügt, welches nahezu grenzenlos erscheint. Man darf bei den Bewertungen auch nicht außer Acht lassen, dass er bei WWE zwar vieles, aber eben nicht alles zeigen darf und kann. Zu der Ausstrahlung und den Mic-Skills sei gesagt, dass er sicherlich nicht der unterhaltenden Schauspieler-Fraktion angehört, die in Stamford weit verbreitet ist, doch seine Ehrlichkeit und die auf einige schlicht wirkende Persönlichkeit macht einen Danielson nunmal aus und ist eben keine Schwäche, sondern einfach ein Mensch, der sich selbst darstellt. UPDATE: Im letzten Dreivierteljahr hat nun wirklich jeder Wrestlingfan merken können, was für eine Ausstrahlung Bryan hat. Dies liegt nicht an irgendwelchen Worten oder Catchphrases, die dies sicherlich untermauern, sondern einzig und allein an seinem Können im Ring und am Mikro. Er ist zu Recht derzeit einer der Top-Stars in der Company und wird sich da hoffentlich langfristig festbeißen, denn WWE braucht neue Stars."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Whitebear710wrote on 03.04.2014:[6.0] "Nichts halbes und nichts ganzes. Er mag ja technisch stark sein, allerdings ist sein Moveset sehr limitiert, sein Micwork ausbaufähig und sein Gimmick nur noch nervig. Auch optisch keine Erleuchtung. Man muss ja kein Bodybuilder sein, aber zumindest ein athletischer Körperbau würde helfen. Stattdessen sieht Bryan aus, als hätte er ein paar Pfunde zu viel un deutlich zu viele Haare. Reicht leider nur für 6 Punkte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Eagle Whiskeywrote on 31.03.2014:[7.0] "Bei Bryan will der Funke einfach nicht so richtig auf mich über springen. Ok er ist zurzeit der beste Wrestler in der WWE, seine Matches sind alle 1a dass muss ich ihm schon anrechnen. Auch sein Mic-Work und seine Mimik/Gestik hat sich in den Jahren verbessert, dennoch ist er kein Punk, HHH, Bray Watt oder S. Michaels. Ich finde Brayn einfach nur zu "brav". Da kommt nichts was sich im Kopf festsetzen würde."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ryerthi1989wrote on 31.03.2014:[10.0] "Bester Wrestler in der WWE zur Zeit und zudem schon über 10 Jahre konstant auf dem gleichen Level, wenn nicht sogar noch besser. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Shankwrote on 26.03.2014:[5.0] "I can't stand him anymore. He sucks now after becoming a brawler. Is he the best? NO!"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: deadfru5wrote on 26.03.2014:[9.0] "Fantastisch im Ring, sehr gut auch außerhalb. Muss nur aufpassen, dass er sich nicht zu sehr auf seine Kicks versteift, sonst wird's schnell zu eintönig. Ich hoffe er bekommt seinen WM-Moment, mir geht Herr Danielson im Gegensatz zu vielen anderen (noch) nicht auf die Nerven."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Steenericowrote on 06.03.2014:[8.0] "Als Bryan Danielson gefiel er mir deutlich besser, was aber natürlich nicht an ihm liegt, sondern an der WWE, wo er nicht mehr annähernd das zeigen darf, was er noch im Indybereich gezeigt hat. Da er mir als Daniel Bryan mit den Yes Chants auch etwas auf die Nerven geht und mir deswegen auch etwas die Ensthaftigkeit bei ihm fehlt, kann ich ihm leider keine bessere Punktezahl als diese hier geben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sokar Drenwrote on 02.03.2014:[5.0] "Daniel Bryan gefiel mir bis Mitte 2013 noch sehr. Doch dann ging dieses Yes-Movement los und dieses ruiniert schon fast jedes Event, da die fanboys es die ganze zeit übertreiben müssen mit den Yes-Chants. Sonst ist Daniel Bryan einer der besten Wrestler überhaupt, aber er sollte besser Heel werden um auch wieder mehr Moves zu zeigen. Denn in letzter Zeit sehen seine Matches immer gleich aus."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TakerFanwrote on 01.03.2014:[10.0] "In der Konversation um den besten Wrestler auf der Welt auf jeden Fall dabei, und das schon seit mindestens 8 Jahren. Kann jeden Stil mitgehen und ein Match auf ganz viele unterschiedliche Arten Worken. Hat für mich auch eine tolle Ausstrahlung und seine Arbeit im Ring großartig auf die WWE umgestellt ohne etwas von seiner Klasse zu verlieren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ZenHyenwrote on 01.03.2014:[9.0] "Beste Wrestler der Welt. Super Mic arbeit, gutes Gimmick. Nur der entscheidene Funke ist bei mir noch nicht übergesprungen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: spesiniwrote on 28.02.2014:[10.0] "Best technical wrestler currently in WWE. Good mic skills and awesome ring skills. His every match is awesome."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AlwaysAngrywrote on 11.02.2014:[10.0] "without a doubt the greatest wrestler of our time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Angelos81wrote on 07.02.2014:[10.0] "Es ist immer eine freude ihn zu sehen.  Einer der besten dieser Zeit wird mal Zeit dass er für längere Zeit den WWE Titel zuhalten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ratedrkowrote on 01.02.2014:[4.0] "Ich versteh den ganzen Hype um ihn nicht.  Früher war Daniel deutlich attraktiver im Ring, jetzt gibt es jede Woche nur den gleichen Scheiß.  Bedingt durch diese Yes Chants, passt halt nicht zu allen Moves, daher passt er sich an.  Am Mic auch keine große Nummer, im Vergleich zu seinen Konkurrenten sieht er da oft sehr blass aus.  Das einzige was darüber hinwegtäuscht, sind die Fans, die wegen jedem Blödsinn Yes schreien.  Diese dämlichen Yes, Yes, Yes Chants sind auch einfach nur lächerlich.  Damit machen die Fans etliche Promos und Matche zunichte.  Für mich kein Maineventer, weil er einfach zu klein, zu schwach und auch nicht das Charisma besitzt.  Absolut unglaubwürdig, wie er seine Kontrahenten deutlich dominiert, da wird die WWE hoffentlich keinen zweiten Cena kreieren..."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TAWPTierJustinwrote on 29.01.2014:[10.0] "Daniel Bryan busted his ass and made a big name for himself on the indies to the point where he was basically known as the king of the indies before he made it to the WWE. 2 years after Daniel Bryan signs with the WWE, he starts to get really over with the crowd a couple months after he started doing the YES! chants when he was a heel. Now here we are in 2014 and Daniel Bryan has literally become the most over guy since Stone Cold Steve Austin not only cause we all know he delivers and puts on the best performances every time he steps foot in the ring but because people everywhere including myself believe that he should be the face of the WWE. Daniel Bryan is truly so much more than one of a kind talent. I guarantee you that Bryan sell as much merchandise if not more than John Cena and CM Punk if WWE keeps him in the main event picture which they should and WWE needs to finally realize that so they can eventually see for themselves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Lord Regalwrote on 27.01.2014:[10.0] "Hat mich vollkommen überzeugt in allen Bereichen. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: J0KERwrote on 23.01.2014:[10.0] "GOAT - The Greatest of All Time Daniel Bryan! Daniel Bryan eines der besten technischsten Wrestler die es jemals im Wrestling gegeben hat. Seine Matches sehe ich mir gerne an und hat einen effektiven und sehr großen weit ausdehnbaren Move Set wie sonst keiner! Im Ring ist er Spitze unter 10 zu geben wäre eine Frechheit bei Daniel Bryan! Sein Mic Work mag vielleicht nicht besonders gut zu sein trotzdem ist er sehr solide bis gut und kann sich weiter entwickeln was Mikrofon betrifft. Zahlreiche Male Wrestler des Jahres zurecht verdient! Er ist die Zukunft der WWE! Ich wünsche mir das man Bryan weiter eintwickelt und zum "Top Guy in the WWE" macht. Seine Titelregentschaften in der WWE war vielleicht nicht das beste trotzdem sehe ich hell für Bryan was Titel anbelangt. Im Bereich Fehden hat er nicht besonders gute in der WWE in der ROH schon hoffen wir mal das bei Bryan etwas großes erreicht 2014!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Grischawrote on 16.01.2014:[5.0] "Wen ich ehelich bin finde ich seinen Kampfstiel eig. gut jedoch finde ich als face is er irgendwie langweilig da seine Kämpfe im prinziep gleich ablaufen und kaum spannend finde das er ein großes Move-Set hat kann ich dahe auch nicht daraus erkenne als heel sind seine Move's viel aggresiver und es ist spannender da er als heel auch nicht fast jeden Kampf gewinnt. Daraus entsteht auch eine recht schlechte Bewertung."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HalfCrabwrote on 09.01.2014:[10.0] "Best Wrestler in the World. In the history. How he mastered the execution and adaptation to any style, using that combined with sensational psychology to pull out the most exciting and complex or not matches anywhere in the world, even went to WWE and the best wrestler also turn into the most over... Bryan Danielson/Daniel Bryan is a 10 and few can be compared to him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JuliTheCage87wrote on 06.01.2014:[10.0] "Danielson. Der wohl beste rein techische Wrestler, den RoH je gesehen und genossen hat. Ein wahnsinniges Talent, dem der Weg in die Mainstreams hoffentlich nicht gelingen wird! Er würde wohl zu sehr in seinem Moveset eingeschränkt werden, da sehe ich ihn lieber vor einer kleineren, besseren Crowd bei RoH. Seine Matches sind ausnahmslos GROßARTIG! Ich bin gespannt, was die Zukunft ihm so bieten wird. EDIT: Meine Befürchtung war wohl falsch, vom NXT-Verlierer zum World Champion! Diesen Push hatte ich, aufgrund von der allseits bekannten WWE-Mentalität und den Parallelen zu Benoit nicht erwartet.  EDIT: Hey Kuma, what the hell is wrong with you? He actually HAS joined them. You're welcome."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sydalutionwrote on 04.01.2014:[9.0] "Momentan einer der besten, die die WWE im Roster hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DER Landvogtwrote on 02.01.2014:[10.0] "Ich hoffe das die WWE weiter an ihn festhält den er ist momentan der overste Wrestler auf diesem Planeten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PGsuckswrote on 26.12.2013:[10.0] "Yes Yes Yes. Er ist für mich der technisch beste Wrestler aktuell in der WWE. Ich hoffe, dass er weiterhin gepusht wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LS Incwrote on 25.12.2013:[10.0] "A good entertainer and probably the best performer of all time.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FollowTheBuzzardwrote on 24.12.2013:[9.0] "herausragend guter Wrestler mit einem sehr abwechslungsreichen und beeindruckenden Moveset. Mic-Work ist auch nicht schlecht (bis jetzt 10. 0), doch dieses Yes! Yes! Yes! -Gimmick war anfangs recht unterhaltsam aber jetzt total nervig. Dennoch eine 9. 0 tendierend zur 10. 0"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 8BitLegendwrote on 22.12.2013:[7.0] "Der Hype um ihn ist wirklich witzig und ich kann die Fans auch vollkommen verstehen, die ihn Woche für Woche laustark anfeuern. Ich mag Daniel Bryan auch, finde ihn mit seinem Understatement sehr sympathisch und finde ihn im Ring intensiv. Leider ist er aber so gar nicht der Charakter, den ich als Main Event Wrestler anerkennen kann. Da fehlt der Glamour und der Star-Appeal. Wir haben heute eine andere Zeit und bärtige, alternative Typen sind generell sehr gefragt (was ich cool finde), nur Wrestling ist halt eine andere Bühne. Da sehe ich die Shawn Michaels / Undertaker Charaktere an der Spitze. Im heutigen Roster vielleicht einen Dolph Ziggler, aber eben keinen Daniel Bryan. Deshalb eine eher moderate Wertung meinerseits."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JourneybyTrainwrote on 22.12.2013:[9.0] "Bryan Danielson is the best wrestler of his generation and the best in the world today. He's good at everything he does, has taken part in tons of great matches and sense joining the WWE has proven he's a hell of a promo. It's really nice to see him getting over."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FriarFergusonwrote on 18.12.2013:[7.0] "Man muss dem kleinen Troll eins lassen: Er ist saftig over. Seine Moves haben herbe Impact und er sellt gut. Abzüge gibts am Mic, für einige seiner Moves, denen die Glaubwürdigkeit etwas abgeht und sein Comeback No-Selling in Matches."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: yanuswrote on 17.12.2013:[10.0] "Tremendous in-ring technician, maybe the best US wrestler of the last ten years. Danielson is also underrated in the charisma/presence department, almost no one controls crowds as well as Daniel Bryan. Can be quite good on the mic - like his promos on nxt show. Probably the most "over" wrestler in the wwe post-attitude era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RJLwrote on 10.12.2013:[9.0] "A young kid that started out as a nobody and became a megastar, Daniel Bryan is truly one of the best men to ever step foot in a wrestling ring!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AriesMarkwrote on 30.11.2013:[10.0] "Absolute perfection in the ring... Need I say more, while watered down from his indie days, he still impresses in the ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dreamforcewrote on 25.11.2013:[9.0] "Daniel Bryan ist der Bret Hart der "Modern Era". Er hat das umfangreichste und spektakulärste Moveset des momentanen WWE Rosters und kann damit durchaus Fans überzeugen und begeistern. Leider war die Storyline mit Kane ein totaler Reinfall, sodass ich mehr als glücklich war, als man ihm den Weg zum WWE Championship geebnet hat, wo er auch hingehört."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BretHart83wrote on 15.11.2013:[10.0] "Für mich zusammen mit CM Punk der Grund momentan WWE anzusehn. Hervorragender Wrestler der im Ring immer alles gibt.  Hoffe allerdings das der Bart bald weg ist, oder zumindest mal gestutzt wird^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Roman Mamedovwrote on 09.11.2013:[10.0] "Best wrestler in WWE now. One of the best submission specialist. Good speed and in-ring ability."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ProRedstonewrote on 02.11.2013:[10.0] "Grandioser Wrestler, der beste in der WWE momentan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jbable84wrote on 28.10.2013:[9.0] "Daniel Bryan is living the dream. This is a guy who started from wrestling independent shows in bingo halls in front of less then 100 people to main eventing pay-per-views for the largest wrestling company in the world. Sure his promo abilities are slightly off, but that is made up for by the fact tht his gimmick is really over with the fans, he sells his spots well, and is easily the most technically-sound grappler of this generation. He's a hard worker that in no way fits the traditional wrestling look we've been force-fed and shows that anybody can be a success as long as you have passion and drive for what you do."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WCW Foreverwrote on 19.10.2013:[10.0] "Einfach nur genial der Typ, egal was er darstellt, er macht das einfach Klasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jun Kasaiwrote on 06.10.2013:[8.0] "Daniel Bryan ist zweifellos talentiert, aber viele reden ihn größer als er ist. Ein guter Wrestler, der allerdings größere Schwächen im Selling aufweist. Außerdem sagt mir sein jetziger Look überhaupt nicht zu. Am Mic hat er sich aber deutlich verbessert."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: koeddylaemmlewrote on 24.09.2013:[10.0] "The hottest act in wrestling right now is one of the most amazing talents on the market. Even with glaring charisma issues Daniel Bryan has found himself to be the center of WWE in perhaps it's most entertaining period in over a decade."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Solertiuswrote on 21.09.2013:[10.0] "Bryan ist einfach endlich zum Aushängeschild der WWE geworden und wird aus dem Mainevent auch in den nächsten Jahren wegzudenken sein. Zeigt absolut fantastische Moves, auch wenn die wegen der Ausrichtung der WWE ab und zu etwas zu sehr imme rnach dem selben Schema ablaufen. Würd mir wünschen, dass man ihm ab und zu erlaubt, seine Matches mit seinen Gegnern selber booken. Rein technisch ist alles, was er ezigt, absolut brilliant... hatte beim letzten RAW ein bombastisches Match gegen Reigns, wo er endlich mal auch in den Weeklies etwas mehr Abwechslung zeigen durfte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Toasterwrote on 19.09.2013:[10.0] "In allen belangen Weltklasse. Aktuell DER Grund WWE zu schauen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Major Tomwrote on 04.09.2013:[10.0] "Not much to say here. Probably the best wrestler of the 2000s. Future hall of famer, for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: UnforgivenSicknesswrote on 03.09.2013:[7.0] "Er ist ein guter, technischer Wrestler und wird ja gerade richtig gepusht. Das Gimmick find ich sowas von scheiße."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Roode66wrote on 30.08.2013:[9.0] "Er ist ein Beleg für einen positiven Wandel der WWE in Sachen Einsatz von ehemaligen Indywrestlern ohne übermäßige Statur. Die WWE des letzten Zahrzehnts hätte ihn niemals annährend oberhalb der Midcard eingesetzt und nun scheint er auf dem guten Weg, bald zu den ganz großen der WWE zu gehören. Hoffentlich zieht man dies durch. Bei der nächsten Mania will ich ihn mit nem World Title um seine Hüften sehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MultiXerowrote on 30.08.2013:[10.0] "Zurzeit wohl der beste Mann in der WWE. Für mich zumindest. Seine Matche sind wirklich Weltklasse, dazu zeigt er auch immer am Mic tolle Leistung. Ich hoffe, dass sein Push weiter geht, denn von ihn kann man imo einfach nicht genug kriegen. Ne Perfekte 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Giftzwergwrote on 30.08.2013:[8.0] "Gefällt mir sehr gut. Super Wrestler. der auch in der Lage zu sein scheint gute Storylines abzuliefern. Was ihm zu den 10 Punkten noch fehlt ist halt die Konstanz. Er ist gerade ganz oben angekommen und hat sicher alle Voraussetzungen, muss aber noch beweisen, daß er das jetzige Level auch ein paar Jahre halten kann."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "Ich finds einfach nur Klasse wie Bryan in den letzten Wochen over ist, hat er sich verdient. Im Ring und am Mic ein hochkaräter. Einer der besten die gerade bei der WWE unter Vertrag stehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[10.0] "Jetzt ist seine Zeit wohl endlich gekommen, nach diversen tollen Matches in der WWE fehdet er nun erneut um das große Gold der Company. Nur der Look ist derzeit fragwürdig, noch vor zwei Jahren sah er zehn Jahre jünger aus. Bryan bringt vorbildliche Leistungen sowohl im Ring als auch am Mikrofon, die Hell No Segmente waren überwiegend köstlich, wenn am Ende auch mit einem faden Beigeschmack."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: svenulreich1893wrote on 26.08.2013:[8.0] "technisch gesehen auf einer stufe mit hbk, am mic inzwischen auch überragend, aber mehr als 8 pkt gibts im moment nicht, da er diesen status, den er gerade in der wwe hat, erst einmal halten muss über jahre hinweg."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FallingStarwrote on 21.08.2013:[10.0] "Simply an amazing wrestler. After Eddie and Benoit the next proof that with the right mix of charisma and skill you don't need to be a big muscle head to reach the top of the WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rated R Punkwrote on 20.08.2013:[10.0] "Mittlerweile wirklich einer der Gründe WWE zu gucken. Von seinen Skills muss man nicht reden, er ist im Ring einer der besten, wenn nicht sogar der beste außerdem ist Daniel Bryan schon fast wirklich der Top Face der WWE er zieht unglaublich viele Pops und wird super stark aufgebaut! Das er John Cena clean besiegen durfte zeigt wohl wie viel die WWE von ihm hält mittlerweile und aus meiner Sicht könnte ich mir vorstellen, dass er die Company irgendwann mal trägt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LeonAusBOTwrote on 19.08.2013:[10.0] "Alles andere, als die volle Punktzahl wäre nicht angebracht. Einer der besten Wrestler auf unserem Planeten, dazu hat er sich im Entertainment-Bereich sensationell weiterentwickelt. Ein sau-starkes Gesamtpaket!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Palace of Wisdomwrote on 14.08.2013:[10.0] "Der vielleicht beste Techniker den die WWE hat. Daniel Bryan hat eine Gabe wie Chris Jericho. Egal mit wem er im Ring steht, er lässt ihn gut aussehen. Er kann mit schwachen Workern grandiose Matches liefern und begeistern. Am Mic hat er sich drastisch verbessert. Daniel Bryan ist ein symphatischer Mensch, der auch Leute begeistern kann die dem Wrestling nicht viel abgewinnen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NightShadowWarriorwrote on 05.08.2013:[10.0] "Technisch wie auch am Mic sehr gut und Team Hell No ist auch großartig"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GTS Punkwrote on 04.08.2013:[10.0] "Unglaublich charismatisch und dass nur mit einem Wort:YES!  Ich glaub ich muss jetzt hier nicht auschfeifend erklären warum Bryan 10 Punkte verdient.  Von HBK trainiert, seine Ringskills sind unereichbar, mittlerweile ist er wieder im Titelgeschehen, dort wo ich ihn sehen will und wer weiss vielleicht wird er mal das Aushängeschild der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Alex Maedawrote on 31.07.2013:[10.0] "Mittlerweile nicht nur einer der besten Wrestler der Welt, sondern auch in Sachen Mic Skills und Charisma einer der ganz Großen. Selbst mit seinem Comedy Gimmick im Team mit Kane hat er überzeugen können. Abgesehen davon hat er den coolsten Bart im Biz. YES!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HammertonWaywrote on 31.07.2013:[10.0] "Leading up to his WWE debut, I had heard all the stories of Bryan Danielson, on how he was hailed as the "Indy King", and how no one was a better technical or submission wrestler than him. After debuting on NXT, I was pleased to see that Daniel Bryan lived up to all of his expectations. While WWE at first poorly booked him and even fired him for a ridiculous reason, he somehow made a comeback and shocked everyone. But it felt as if every time Bryan had it big, WWE would find some way to ruin the fun. Need I mention Wrestlemania XXVIII. Somehow though, that moment was a blessing in disguise, as his popularity rose because of it. Daniel Bryan is at the peak of his popularity now, and leading up to Summerslam, he must beat John Cena cleanly and become the WWE champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Chris1201wrote on 28.07.2013:[10.0] "Einer der besten Wrestler der Welt! Mit Punk, Cesaro etc. momentan an der Spitze der Welt! Unglaubliche Matches und sehr viel Charisma!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Phoenix Downwrote on 27.07.2013:[10.0] "Es ist egal wo er wrestlet, wie er wrestlet und wen er wrestlet. Danielson liefert immer absolute Weltklasse Matches ab. Auch wenn er nicht den Look eines WWE Superstars hat, macht er das durch seine einzigartige Klasse im Ring, sein Charisma, seine Leidenschafft mehr als nur wett. Er ist in der Lage einfach alles zu Gold zu verwandeln. Er macht aus einer 18-Sekunden Niederlage bei Wrestlemania die erfolgreichste Catchphrase der letzten Jahre. Er macht aus einen zusammengewürfelten Team mit Kane einen das beste WWE Tag Teams der letzten Jahre. Daniel Bryan ist eine zukünftige Ikone des Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: babakondawrote on 21.07.2013:[4.0] "Daniel Bryan is the most overrated Superstar tha iŽve ever seen. He has zero-charisma and his mic skills are very poor. There are many Superstars in the WWE that deserve a main event push more than him. He looks and acts childish. For me he is not more than a jobbing midcarder."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Booker Cwrote on 16.07.2013:[10.0] "Daniel Bryan macht momentan einfach nur Spaß. Bryans Werdegang in der WWE ist so unglaublich faszinierend. Er macht gerade einfach aus allem Gold. Noch dazu stellt Bryan momentan DEN Wrestler dar. Es ist schon längst nicht mehr feierlich was für Ausmaße Bryans Push bisher angenommen hat. Lag ich damals falsch mit meiner Meinung? YES! YES! YES!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RawIsJerichowrote on 15.07.2013:[10.0] "Bryan is nearly perfect as an in-ring performer, his vast technical move set and countering ability is unrivaled. He's also brilliant on the mic, and plays a great character. He puts on great matches regardless of opponent and deserves to be WWE or Heavyweight champion again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Randy Owrote on 13.07.2013:[10.0] "Also im "INDY" bereich Top aber das hat wenig mit dem Main Stream zu tun. Dort muss er sich erstmal beweißen und mit seinem nicht ausreichendem vorhandenem Charsima wird es schwer. Sein look zu "billig". Im Ring dafür Top und Mic eher Durchschnittlich. Ach ja nicht das jetzt jemand glaubt ich bewerte ihn so weil ich "NXT" geschaut habe. 1. habe ich das nicht geschaut und 2. kenne ich ihn von ROH. EDIT: 9 Punkte. 13. 07 EDIT:10 POINTS! Ich bin Mittlerweile der Meinung das er genug Charisma hat und auch Mic durchaus brauchbar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sir Vida Loca IIIwrote on 10.07.2013:[9.0] "Im Ring gehört Daniel Bryan mit zu dem besten dass die WWE aktuell zu bieten hat. Er errinert (zumindest mich) auch stark an Chris Benoit, und dass liegt nicht nur am Finisher. Im Ring macht Bryan niemand etwas vor, und auch am Mic hat er sich seit er in der McMahon Company ist sehr gesteigert. Luft nach oben hat er was Promos betrifft, deshalb 9 Punkte. Wenn er sich dort noch verbessert sind ihm die 10 Punkte sicher"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Weskerwrote on 09.07.2013:[10.0] "YES! YES! YES (mehr muss man zu Daniel Bryan nicht sagen)!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kyoyowrote on 02.07.2013:[10.0] "Perfekter Wrestler, perfektes Mic-Work. Einfach einer der besten seiner Zeit und wenn er so weitermacht vielleicht einer der besten jemals"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Swarley Stinsonwrote on 28.06.2013:[10.0] "Daniel Bryan ist einfach ein Pitbull. Er ist ein super Wrestler, nur CM Punk ist "besser". Super Techniker und er holt das beste aus jedem Gegner raus. Auch sein aktuelles Gimmick passt sehr gut zu ihm, weak link ;). Er muss früher oder später der WWE Champ sein und das mehrfach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DaNiwrote on 25.06.2013:[10.0] "Mit CM Punk ist er der momentane Top Superstar der WWE. Er ist körperlich auf dem Dampfer, sieht natürlich aus und kann seinen Fightstil realistisch und klug einsetzen. Seine Matches sind mesit auf einem sehr hohen Niveau. Ich hoffe er kann seinen bevorstehenden Pusch nutzen um an die Spitze der WWE Nahrungskette zu kommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: joshimaniawrote on 23.06.2013:[10.0] "Dainel Bryan is the best wrestler in the world today combining great in-ring work and charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GabberGizmowrote on 23.06.2013:[8.0] "Daniel Bryan steigert sich immer besser in Matches und Storys ! Klasse als Einzelfighter oder im Team ! Team Hell No zum Beispiel !"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: gerybundy68wrote on 09.06.2013:[10.0] "Hat in den letzten Jahren, nach seiner Zeit im Indy-Wrestlingbereich einen absolute Traumkarriere hingelegt.  Um es kurz auf den Punkt zu bringen: für mich im Moment DAS Highlight im WWE Kader und ein der Grund die TV Shows eizuschalten. Klasse am Mic. , technisch herausragend und mit Charisma ausgestattet - die Nr. 1 bei WWE, trotz Cena, Orton usw."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AdRwrote on 06.06.2013:[9.0] "Daniel Bryan ist einer der besten Wrestler den die WWE im Moment hat. Er ist im Ring gut und hat vor allem viel Charisma und ist auch sonnst gut am Mic. Daher scheue ich mich nicht, ihm 9 Punkte zu geben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Lecterwrote on 05.06.2013:[10.0] "I'd go as far as to say that Dragon is, if not -the- best, then as good as any in-ring worker of any era in wrestling. His body of work in ROH is astounding, constantly churning out flawless performances, and his transition into WWE's US champion saw him consistently putting on the best matches in the company. That he's managed to catch fire the way he has because of his personality and promos is incredible, and combined with the fact that he still steals the show whenever given more than just a few minutes in the ring, it's safe to say that he's the American standout of the new millennium."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Robert Taylorwrote on 28.05.2013:[10.0] "Einer der Hauptgründe warum ich Indy-Wrestling jahrelang total abgefeiert habe, da er unzählige richtig starke Matches, teils sogar Klassiker in den Ring gezaubert hat. Hat praktisch nie ein schlechtes Match und kann selbst die größten Nulpen durch ein Match ziehen. Nachdem er in den Indys so viele starke Matches hatte, konnte er sich aber auch relativ schnell in der WWE etablieren und zieht heutzutage oftmals mit die lautesten Pops. Zudem regelmäßiger Lichtblick der (immer mal wieder durchwachsenen) Shows. Danielson kann viele Stile zeigen und ist dabei auch noch verdammt gut. Wieder in den Main Event mit ihm, der Mann ist Gold wert!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: believeintheshieldwrote on 02.05.2013:[7.0] "Ein guter Wrestler im Ring, allerdings Spielt er eine eher Langweilige Rolle und diese nicht einmal überzeugend, daher 7 Punkte"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: S04TIMwrote on 27.03.2013:[10.0] "Kenne ihn leider nur beschränkt aus seiner Independent-Zeit, also kann ich ihn nur aus der WWE-Zeit bewerten. Aber ich denke das kommt aufs selbe hinaus, denn Daniel Bryan ist einfach genial. Er hat sich super entwickelt, sein Micwork hat sich enorm verbessert. Über seine In-Ring Fähigkeiten brauchen wir gar nicht erst zu reden, denn er gehört zu den wrestlerisch Besten in der WWE zur Zeit! Also vollkommen verdiente 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: dudemanbearpigwrote on 16.03.2013:[10.0] "An amazing athlete and performer. Always enjoyable to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WhiteHummerDriverwrote on 03.03.2013:[10.0] "Der technisch beste Wrestler des Planeten im Moment. Das ist schon fast eine wissenschaftlich nachgewiesene Tatsache ^^ Seit 2005 hat er den Award für Best Technical Wrestler vom Observer in einem eisernen Klammergriff. Damit hat er in den Augen der Observer Redaktion Benoit sogar schon zu Lebzeiten überholt und wie ich meine zu Recht. Nicht nur ist Bryan der beste Techniker der heutigen Zeit, er bringt auch ein oft verkanntes Charisma in den Ring, das für mich weit über die kühle Konzentration eines Bret Hart, oder die Verbissenheit eines Chris Benoit hinausgeht. Schon in seiner Rolle als Heel-Champ in ROH glänzte er nicht nur durch die wohl qualitativ hochwertigste Titelregentschaft der letzten 10 Jahre (zumindest in den USA), sondern bewies, dass er auch als Charakter unterhaltsam sein kann, sei es durch Promos, oder durch Aktionen während des Matches (Publikumsinteraktion, Mimik und Ähnliches). Daran schloss er dann sogar bei WWE durch sein Veganer- und YES- bzw. NO-Gimmick an. Bryan ist seit 2006 einer meiner absoluten Lieblingswrestler und ich hoffe, dass er in Zukunft wieder etwas mehr im Singles-Bereich benutzt wird, und öfter mal Programme gegen Leute bekommt, gegen die er sein volles Potential ausspielen kann, statt gegen Riesen wie Kane oder Big Show."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AwesomeMizwrote on 23.02.2013:[8.0] "Riesiges Talent! Und bis auf seinen Bart stört mich an ihm sonst nichts! Einer der besten der WWE"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Leonewrote on 19.02.2013:[10.0] "From the home of Grunge comes Daniel Bryan, 1 of the best and most versatile technical wrestlers in the world.  A man who has traveled the world, filled the shoes of the greats with ease, and still have the ability to add his own twist to it.  Sure, he's small by WWE's expectations, but his skill, charisma and cult following have made him the star he is today, and I hope to see much more of him in years to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Irri Busenbenderwrote on 14.02.2013:[10.0] "Awesome in allem was er tut. Im Ring und am Mic das beste was er zur Zeit in der WWE gibt.  10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Diggertakerwrote on 13.02.2013:[8.0] "Indie legend, NXT punching bag and Smackdown great superstar. Had good feuds and gimmicks in the indies and averages personas and rivalries in WWE. Bryan is one of the most talented technicians in pro wrestling history. He has a unique talent."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Diesem Mann gehört die Zukunft in der WWE (wohl mit Dolph Ziggler). Er hat alles was man braucht: Charisma, exzellente In-Ring Fähigkeiten und kann fantastische Promos abhalten. Er blüht momentan bei Team Hell No vollkommen auf und die Fans liegen ihm zurecht zu Füßen. Es ist nur noch eine Frage der Zeit bis er an der Spitze steht. Absolutes Ausnahmetalent"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: cmkanewrote on 01.01.2013:[10.0] "Einer der besten Wreslter der heutigen Zeit.  Im Ring sorgt er immer für gute Matches und auch am Mic sehr unterhaltsam."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: steviecwwrote on 01.01.2013:[10.0] "FLAWLESS! Former and future World Champion, proving to be solid gold in any role the WWE might put him in. He's surely missed in ROH... but he's a real asset to WWE now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Darkiwrote on 19.12.2012:[10.0] "Zurzeit wohl der beste Wrestler auf der Welt. Bin ja eigentlich ein Fan der Big Guys, aber Daniel Bryan hat es mir einfach angetan. Er kann Wrestlen, er hat Ausstrahlung und kann mit jedem Wrestler zusammenarbeiten. Einfach The Best Wrestler in the World!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Luke1984wrote on 15.12.2012:[10.0] "Eine Indy-Legende durch und durch. Die WWE endeckte auch den Comedy-Charakter in ihm. Sollte man nicht allzu übertreiben da er neben Dolph Ziggler derzeit der beste Worker der WWE ist (und auch bleiben wird)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mar-Twrote on 06.12.2012:[10.0] "Hab ich etwas gesagt CM Punk sei das Beste das die WWE zu bieten hat? Vielleicht muss ich das nochmal überdenken denn Daniel Bryan unterhält mich mindestens genau so gut, wenn nicht sogar besser. Will ich ihn wieder als Singles Wrestler im Main Event sehen? "Yes! Yes! Yes! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Final Countdownwrote on 28.11.2012:[10.0] "Whether he's called Bryan Danielson or Daniel Bryan, "American Dragon" or "Goat Face", one thing remains the same: he's one of the greatest in-ring performers of all time.  His charisma and interview skills have also come along quite well over the course of his career, making him one of the best all-around talents in the world today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: apc24wrote on 25.11.2012:[10.0] "This so called "goat" is arguably the best wrestler in the world. His technical ability is second to none and whether he's wrestling for WWE, ROH, Japan or in Europe, he's the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: downtown2wrote on 18.11.2012:[10.0] "Wenn man sich ansieht, wie die WWE einen Chris Jericho oder Chris Benoit aufgebaut und zu echten Megastars gemacht hat, braucht man sich bei der Größe Bryan Danielsons eigentlich keine Sorgen zu machen. Das ist dann aber auch schon das einzige Manko dieses Mannes, der für mich in allen Belangen der stärkste Indy Wrestler überhaupt ist. Tolle Intensität, dadurch wahnsinnig glaubwürdige Promos und Ausstrahlung (Jeder WWE-Only Fan sollte sich hier mal seine Promos aus ROH Zeiten ansehen). Wrestlerisch auf dem höchsten nur möglichen Level, das Maß aller Dinge für Pure Wrestling Fans, vielleicht von Kurt Angle abgesehen. Wenn er gesund bleibt, müsste bei ihm alles drin sein, einer der komplettesten Athleten die ich je gesehen habe. EDIT: hat mittlerweile fast den On Air Charakter des frühen Kurt Angle, der zu seinen perfekten In Ring Skills einen unglaublich unterhaltsamen Comedy-Heel spielte und zwischen albernen Einlagen und verbissener Kampfeinstellung schier mühelos hin und her pendeln konnte. Großartige Entwicklung!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MrSmackdownwrote on 21.10.2012:[10.0] "Aus der WWE nicht mehr weg zu denken. Endlich ist er da wo er hingehört."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: alewrote on 21.09.2012:[10.0] "Indylegende :) Aber erst seit WM28 auch endgültig in der WWE angekommen, he is the new undertaker everytime he gets buried he comes back more over. Einfach unglaublich was der in letzter Zeit erreicht hat, eigentlich der einzige Grund um sich noch SmackDown oder Raw anzutun (mit Kane natürlich). Mich unterhält er einfach am besten seit The Rock oder Kurt Angle. Hoffentlich auch mal wieder im Main Event Picture zu sehen, im Ring ist er momentan sowieso der beste in der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Lampard4000wrote on 14.09.2012:[10.0] "Was soll man groß sagen? Im Ring meiner Meinung nach mit Abstand der beste Wrestler (zumindest bei der WWE, mit Indy- und anderem Wrestling beschäftige ich mich nicht) und auch am Mic gehört er zu den Top-Leuten. Er zieht Reaktionen wie kaum ein anderer. Momentan der unterhaltsamste Worker der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LM Punkwrote on 30.08.2012:[7.0] "Er ist gut im Ring und am Mikro, aber noch nicht lange genug an der Spitzte um eine gleiche bewertung wie HBK oder der Untertaker zu erhalten."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Undertaker555wrote on 26.08.2012:[10.0] "Yes! Yes! Yes! Hat der Kerl ein Potenzial und was macht die WWE? Lassen ihn den Titel bei WrestleMania in 18 Sekunden(! ) verlieren. Ich meine Daniel Bryan ist sowas von Over, die "Yes" und "No" Chants ziehen so viele Reaktionen wie bei niemand anderem in der WWE momentan. Er zeigt geile Matches , ist momentan ganz klar der beste am Mic und ein klasse Athlet. Gebt dem Kerl endlich die WWE Championship und gut! Macht's einfach WWE oder ihr verliert eines eurer Stallpferde!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ibanezwrote on 13.08.2012:[10.0] "Einfach der Top-Wrestler zur Zeit in der WWE und daher die volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Hazzanfallwrote on 12.08.2012:[10.0] "YES! YES! YES! Großartig der Mann, sowas hat die WWE wirklich gebraucht. Tolle Matches, tolle Fehden, Hammer Ausstrahlung. Hätte am Anfang echt nicht gedacht, dass er so groß wird aber es ist geschehen. Bester Mann neben Punk und daher nur Höchstwertung verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Vanniwrote on 12.08.2012:[10.0] "Vom Wrestlerischen her hätte er natürlich die Höchstpunktzahl verdient. Die bekommt bei mir aber nur jemand, der dann auch noch das gewisse Mic-Work besitzt. Daher gibt es für Bryan nur 9 Punkte, auch wenn er mich natürlich noch überzeugen kann und so ganz schnell auch die 10 bekommen kann. Edit: Das ist passiert, daher gibt es auch die 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Nouriwrote on 29.07.2012:[9.0] "Daniel Bryan verfügt über ein Gesamtpaket, das ihn berechtigterweise an die Spitze der Promotion gepusht hat: Im Ring überragend, grandiose Promos und ein gutes Charisma machen ihn zu einem der besten Superstars derzeit bei WWE. Für die volle Punktzahl fehlen ihm allerdings (noch) ein, zwei weitere Titel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheIronSheikwrote on 16.07.2012:[10.0] "Absolute Elite In-Ring, am Mic ist er sehr überzeugend und charismatisch finde ich den guten auch. Vor allem in Seiner momentanen Rolle gefällt er mir sehr gut. Über einen weiteren Titel Run seinerseits würde ich mich freuen.  -10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Fischy667wrote on 16.07.2012:[10.0] "Einer besten und komplettesten Wrestler im Mainstream."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Bloodywrote on 11.07.2012:[1.0] "Ich kann den Hype nicht verstehen, in seiner Indy Zeit gefiel er mir noch aber seit der bei der WWE gelandet ist kann ich ihm einfach gar nichts mehr abgewinnen. Er ist wohl eher eine Persönlichkeit für die Jüngere Generation von Wrestling Fans aber für mich hat er einfach nichts zu bieten."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Y2J3richowrote on 10.07.2012:[4.0] "Relativ gute In Ring skills hat der Kerl, jedoch haut mich Bryan einfach nicht vom Hocker. Ich persönlich finde Bryan war der wohl unrealistischste World Heavyweight Champion seit Rey Mysterio. Sein Körper ist das letzte was irgendwie ernst zunehmend ist an dem Kerl, ich könnte mir einen Titelsieg von ihm gar nicht anders vorstellen als mit dem Money in the Bank Koffer, ich finde seine Matches meist langweilig, und den Hype um den Jungen verstehe ich sowieso nicht, selbst das Yes Yes Yes ist unerträglich geworden, am Anfang war es ja noch amüsant, aber nach einer Zeit lang hatte ich einfach genug davon, sollen die ihm doch so ein Steve Austin Shirt machen "Arrive - YES YES YES - Leave. Sein Mic Work gefällt mir zusätzlich auch nicht, es kommt einfach nicht so gut rüber. Jedoch lieber Bryan als Randy Borton und Super Cena. Der gute Daniel ist in meinen Augen total uninteressant im Ring sowie auch von seinen Promos her, ein klassischer Fall zum Abschalten. Best in the World? ja klar, aber nicht in diesem Leben."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mizisawesomewrote on 09.07.2012:[10.0] "Kurz und knapp: Der beste Wrestler weltweit. Völlig unumstritten. So wie's aussieht, gibt es nichts, was er nicht kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: novacanewrote on 05.07.2012:[9.0] ""Nur" eine 2 für den American Dragon. Technisch erste Sahne, tolles Charisma. Kann jeden Stil mitgehen. Was mir nicht sonderlich gefällt ist sein Selling. Für eine 1 aber noch zu wenig geleistet und, wie ich denke, overrated. Wenn er sich weiter so entwickelt, ein kommender Superstar, sozusagen die Evolution von Benoit & Co. Dann steht auch die 1! - EDIT: So, nun ein Punkt Aufwertung aufgrund seiner tollen Entwicklung. Zehn Punkte haben bei mir Jericho, Bret Hart, Shawn Michaels und Konsorten - auf der Stufe ist er aber noch lange nicht. Aber was nicht ist, kann ja noch werden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Franziwrote on 03.07.2012:[10.0] "Im Ring einfach grandios. Da macht Wrestling richtig Spaß. Seinen Heel-Gimmick verkörpert er auch perfekt. Hoffentlich macht die WWE ein solches Talent nicht kaputt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LeBelle1wrote on 21.06.2012:[10.0] "Der beste Wrestler, den ich- seit ich Wrestling verfolge -gesehen habe. Dazu auch am Mic wirklich sehr stark. Klasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ARIZAwrote on 15.06.2012:[10.0] "Absolut großartiger Techniker, der auch durchaus seine Qualitäten am Mikro hat. Als Heel großartig, ich habe es bei der wXw geliebt ihn zu hassen. Ich muss zugeben, dass ich es nicht erwartet habe, dass er sich bei der WWE so durchsetzen kann, auch wenn ich es ihm natürlich absolut gönne."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 7TheEwrote on 10.06.2012:[10.0] "Ist warscheinlich der beste Wrestler In Ring den ich je gesehen habe und ich hab vieles gesehen, er steht über dem Entertaiment Quatsch, der Mann hat mit Verletzungen gewrestelt, hat sich Schlachten die 60 Minuten und länger gingen geliefert und ist eine absolute Indy-Legende.  Er mag nicht der beste am Mike sein trotzdem kann er da auch mithalten und ist nicht so ein einheitsbrei.  War vielleicht der effektiveste Heel den ROH hervorgebracht hat und auch Rolle gehalten hat, ist trotz Heel Status zu einem der beliebtesten In Ring Akteuren der Liga aufgestiegen.  Nach Sichtung einger WWE und RoH Matches kann ich die 10 nur unterstreichen (würde noch mehr geben)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Imperatorwrote on 04.06.2012:[10.0] "Sehr guter Mann, der mir durch seine große Entwicklung gefällt. Er hat einen guten Weg gefunden, das Publikum mitzureißen. In seiner aktuellen Rolle liegen wohl noch viele großartige Matches vor uns."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 123 kidwrote on 27.05.2012:[9.0] "Ich kenne ihn erst seit seiner Zeit bei der WWE und grade in der letzten Zeit hat er sich zu einem meiner absoluten Lieblinge entwickelt. Startet natürlich mit vielen Vorschusslorberen in die WWE, denen er voll und ganz gerecht geworden ist. Ich hoffe er wird nicht bald fallengelassen und kann noch lange in den oberen Regionen der WWE mitmischen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jericho is excellencewrote on 22.05.2012:[10.0] "Dass Daniel Bryan im Ring der womöglich beste zeitgenössische amerikanische Wrestler ist, das wussten die Meisten schon vor seiner WWE-Ankunft. Was nicht so deutlich abzusehen war, war das er es auch im Mainstream-Wrestling bis ganz nach oben schaffen würde. Doch seit seinem WWE-Debüt hat Bryan nicht nur zahlreiche starke Matches gezeigt, sondern auch die lautstarken "No-Charisma"-Stimmen seiner Kritiker sehr schnell verstummen lassen. Am Mikrophon konnte er als Face bereits überzeugen, und tut es jetzt als Heel noch viel mehr. Stand heute ist Bryan einer der Hauptgründe WWE zu schauen, und so bleibt mir nur zu sagen: Daniel Bryan hat sich im Mainstream-Wrestling durchgesetzt - zum Glück!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MicCheckwrote on 21.05.2012:[10.0] "Zeit für eine Aufwertung. Der Mann ist derzeit einer der besten Heels der Liga, was er regelmäßig mit tollen Promos und Matches unterstreicht. Mit Sheamus hat er bei ER endlich das lange ausgebliebene Top-Match in der WWE gezeigt, was man von einem so großartigen IN-Ring-Worker wie ihm erwartet. Wenn ich an das anstehende PPV-Match mit Punk denke,  freue ich mir einen Ast ab. D-Bry hat es sogar geschafft seine ROH-Zeit zu übertrumpfen. Wenn man sich sein WWE-Debut anschaut, bei dem er zwar talentiert aber farblos rüberkam und sich ihn jetzt anschaut, stellt man fest, dass er es geschafft hat, sich selbst auf hohem Niveau Mic und Charisma-technisch zu verbessern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Matt Mackswrote on 21.05.2012:[10.0] "Bryan ist zusammen mit CM Punk der für mich mit Abstand interessanteste und beste Wrestler der aktuellen WWE-Generation. Er könnte gegen einen Besen in den Ring steigen und es würde mich noch unterhalten, so gut ist dieser Mann, der zehn Jahre lang in Japan und den Independents (allen voran Ring Of Honor) seine Fähigkeiten entwickelt und geschliffen hatte. Es ist unglaublich befriedigend, ihn auf der größten Wrestlingbühne so erfolgreich zu sehen, so populär, so fantastisch gut. Und doch ist es wie ein Traum, denn niemand, absolut niemand hätte das vor ein paar Jahren ernsthaft gedacht. Bitte, WWE, lass mich eine lange Zeit nicht aufwachen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Franjisewrote on 19.05.2012:[10.0] "Derzeit das abolut Beste, was die WWE zu bieten hat. Sein In-Ring-Fähigkeiten sind über jeden Zweifel erhaben, da wird es auch keine zwei Meinungen geben. Und auch am Mikrofon ist Daniel Bryan unglaublich unterhaltsam, hat er gerade auf der Road to WrestleMania 28 doch viele SmackDown-Ausgaben durch seine Promos alleine getragen. Und im Gegensatz zu vielen anderen bin ich auch der Meinung, dass diese Fähigkeiten von Anfang an vorhanden waren, selbst als er noch Face war. Sein charismatisches Auftreten rundet die ganze Sache dann natürlich ab. Ganz klar, Höchstnote und 10 Punkte für Daniel Bryan!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SWObiwrote on 19.05.2012:[10.0] "Great performer in the ring, and has great mind for the business"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Hot Rod 86wrote on 03.05.2012:[10.0] "Mann der 100 Submissions, überzeugt mich am Ring und am Mic. Hat mittlerweile auch eine überzeugende charakterliche Entwicklung mitgemacht. Der Top-Mann der WWE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Smido83wrote on 03.05.2012:[10.0] "Im Ring wohl der Beste der Welt, welcher AUS JEDEM Gegner ein klasse Match herausholen kann! Am Mic durchaus gut. Auch dort weiß er was er macht! Und nun mit Bart stimmt auch die Ausstrahlung und er hebt sich damit vom Durchschnitt ab! Trozdem kann ich ihm NOCH nicht die 10 geben. Dafür muss er den Koffer erfolgreich einlösen und den Titel in einem überdurschschnittlich guten PPV Match einlösen! DANN hat er es geschafft, DANN ist er da wo er hingehört, DANN ist er eine 10! Rein von Können her und den Matches die er weltweit schon geboten hat ist er ne 15, aber um nicht nur bei den S-Marks, sondern auch bei den "Normalen Fans" anerkannt zu werden MUSS er auch in der WWE eine größere Rolle spielen, dann ist er rundum sehr gut und die 10 wert! EDIT: Nun endlich gab ihm die WWE die Zeit in einem 20+ Minuten Match zu zeigen was er wirklich kann. Dazu hat er mit seinem Heel Gimmick auch nochmal einen riesen Sprung in Sachen Mic Work und Charisma gemacht. Nachdem Michaels die WWE verlassen hat und Jericho nur noch sporadisch dabei ist, hoffe ich, dass die WWE Bryan nun als Tweener zwischen ME und Midcard einsetzt, der Talente mit klasse Matches Over bringen kann. Denn genau das wäre die perfekte Rolle für ihn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Blade Bourdeauxwrote on 22.04.2012:[10.0] "Einer der besten Wrestler derzeit aber ich denke auch, dass er sich auf einer großen Bühne noch durchsetzen und beweisen muss und da ist es egal ob WWE oder TNA. Vom Potential her sollte er es packen, schaun wir mal. Update 2011: Rauf auf 10 Punkte. Der beste Wrestler der WWE, evtl. sogar noch mehr. Ich sehe ihn auch Karrieretechnisch auf Mysterios Spuren. Das bedeutet, dass ein großer Titel mal drin ist und er sich wohl auch oft mal einen Tag Team Titel holen wird können. Leider setzten ihm Statur und Look eine WWE-natürliche Grenze die er, meiner Meinung nach, nicht wird überspringen können. Update 2012: Tja die Grenze die ich meinte hat er zwar nicht übersprungen aber er hat sie wirklich gut umgangen. Der "neue" Bryan versteht es sein Profil zu schärfen und durch seine Art vergessen zu machen, dass er nicht der große Brocken ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Tobinhowrote on 18.04.2012:[10.0] "Von 9 > 10.  YES YES YES!  Zu geil wie over er teilweise gerade ist als Heel. Die Skills waren sowieso schon super und jetzt hat man es auch endlich geschafft ihn over zu bringen. Mic Work ist auch gut, alles in allem jetzt eine 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Prodirwrote on 15.04.2012:[10.0] "The Real Best in the World. Das einzige, was man kritisieren könnte, wären seine Anhängerschaft in der WWE: recht minimal und ohne irgendwelche Kenntnisse. Er hat das perfekte Moveset, wobei man mit Finishing Moves bzw. High Impacts von ihm nicht sparsam umgehen sollte und ihm ein oder zwei mehr geben müsste, er hat die ultimativen Mic-Skills um Pops zu ziehen und sein Gimmick ist einfach perfekt auf ihn zugeschnitten. Wer ihm weniger als 10 gibt, findet sich bald in meinem eigens erfundenen Crossed Leg Lock STF wieder. ;D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BigBob91311wrote on 13.04.2012:[8.0] "I think that Daniel Bryan is one of the best workers I have ever seen, and I have seen a lot of them having been a wrestling fan for almost 50 years. However his promos and mic work leave a lot to be desired. In many respects he reminds me of wrestlers like Jack Brisco, Verne Gagne, and the Bob Backlund who was a babyface WWWF champion for almost 6 years. Great knowledgeable technical wrestlers, excellent shooters, but boringly ineffective personnas for drawing fans."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rated R Userwrote on 02.04.2012:[10.0] "Der beste Pure Wrestler der Welt, der sich in den letzten Monaten auch noch zusätzlich mit seiner Heel Performance zu meinem absoluten Fav. nach Edges Rücktritt entwickelt hat. Das hat sich auch nach dieser Demütigung gegen Squashmus (Danke Vince, erst Christian, nun Danielson... ) nicht geändert, jetzt erst recht! YES! YES! YES! YES! YES!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TeeHaawrote on 26.03.2012:[10.0] "10/10. Matchqualität und promoqualität stimmen - ein gelungener WHC-Run obendrauf... Ich denke diesem Worker gehören die nächsten 10 Jahre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 1234wrote on 25.02.2012:[10.0] "Für mich die Überraschung derzeit. Seit seinem Heelturn verkauft er sich großartig, im Ring ist er ohnehin über jeden Zweifel erhaben. Mein SmackDown! Highlight 2012."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MeisterSodowrote on 20.02.2012:[10.0] "I've seen a lot of Bryan's matches & promos in ROH. He's perfect, a giant performer that makes you dreaming. I love it, he's my favourite wrestler of all times!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cpt Dave Charismawrote on 08.02.2012:[8.0] "Neben den unbestrittenen In-Ring-Skills zeigt er nun endlich auch einmal Charisma! Gefällt mir sehr gut als Heel und auf den Weg mein Lieblings-Heel zu werden!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Fabi89wrote on 06.02.2012:[10.0] "Unglaublich begabter Mann, dem im gesamten Pro-Wrestling Bereich kaum jemand das Wasser reichen kann. Im Ring extrem stark, am Mic fähig und trotz oder gerade wegen seines eher unscheinbaren Äußeren eine wahre Ausnahmeerscheinung im Wrestlinggeschäft. Hat es entgegen meiner Erwartungen tätsichlich an die Spitze der WWE geschafft, was mich unheimlich freut. Schön, dass er inzwischen auch deutlich öfter zeigen darf, wie unglaublich ausgeprägt seine Fähigkeiten sind. Überragender Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Boggenauerwrote on 01.02.2012:[6.0] "Man kann nichts sagen Bryan ist wirklich gut im Ring, jedoch finde ich er wird in der WWE falsch aufgebaut, mir gefallen alle gut gespielten Heel Rollen sowie auch die Faces, aber bei Bryan, er gefällt mir einfach nicht von Anfang an in NXT als er diese "Kurzfehde" mit Cole hatte da hat er mir gut gefallen, so als Aggressiveres Leichtgewicht ein "Milchbubi" der auch anders kann. Mittlerweile gefällt er mir einfach gar nicht mehr, ok nach dem World Titel Gewinn dachte ich mir, "ok schauen wir mal wie er sich entwickelt" aber das Gimmick finde ich relativ schlecht der Kerl der alles versucht sein Welt Titel zu behalten, selbst wenn er das ganze Roster gegen sich aufhetzen muss, ist schon ziemlich lahm meiner Meinung nach. Das ganze YES YES YES gedudele geht mir auch mächtig aufn Keks, abgesehen davon ist er ein guter Wrestler "Best in the World" wäre jedoch zu weit hergeholt, sein Mic Work ist in Ordnung aber nicht wirklich soo gut. Von mir deshalb 6 Punkte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheEmpirewrote on 29.01.2012:[10.0] "Neben Punk und Jericho der derzeit beste Wrestler in der WWE. Bryan Fähigkeiten erstaunen mich jedesmal aufs Neue. Es geht nicht nur um seine Atlethischen Fähigkeiten beim Austeilen, sondern auch beim Einstecken. Der Wandel in Richtung Heel hat ihm auch richtig gut getan. Damit ist er für mich auf dem Weg zum eindrucksvollsten Heel-Champion des Jahres 2012 (2011 war dies Henry). Man wird zwar nach dem RR 12 neue Gegner benötigen, aber ich bin zuversichtlich, dass dies gelingt. Ob Orton oder Rhodes: Bryan braucht einen Gegner der technisch mit ihm mithalten kann oder entsprechend over bei den Fans ist. Auch dass man ihm den Titel gegeben hat zeugt von Vertrauen in den Charakter D. B. Weiter so!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Senajwrote on 28.01.2012:[8.0] "Sein In - Ring Fähigkeiten sind sehr gut. An seinem Mic Work muss er noch arbeiten. Als World Champion der WWE taugt er aber meiner Meinung nach nicht viel. Vielleicht liegt es auch daran das ein Mann seiner Statur gegen Leute wie Big Show oder Mark Henry eine ordentlichen Matches auf die Beine stellen kann. Er braucht Gegner aus seiner Gewichtsklasse, sonst wird das nichts."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Yukkowrote on 24.01.2012:[9.0] "Wenn ich das schon lese: "Ein WHC brauch schon ne gewisse Statur um ihn glaubwürdig zu machen" Rey Mysterio war WHC. Ihr wollt mir doch wohl nich erklären das DER dazu geeignet war.  Ich halte persönlich sehr viel von Bryan, da er sehr gute Leistung im Ring bringt. Seine Promos sind jetzt nicht der absolute Hammer aber das liegt auch daran, dass in der momentanen Stoy nich viel Spielraum bleibt für eine gute Promo."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Johnny-Tennerwrote on 23.01.2012:[10.0] "Ich mag Danielson, was er im Ring verbringen kann weiß jeder. Und auch seinen Charakter den er darstellt ist für mich ein absoltutes Highlight, jedes Mal wenn er vor den Bildschirm tritt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mustafawrote on 09.01.2012:[5.0] "Da stimme ich Sascha311 zu! Warum?  Weil er nicht diese gewisse Austrahlung hat und seine Promos sind auch nicht das Gelbe vom Ei.  Seitdem er Champion ist gucke ich kein Smackdown mehr. Warum?  Denn ihm fehlt die Statur zu einem Schwergewichtler, weil ein Wrestler oder generell ein Sportler muss schon einer gewissen Gewichtsklasse angehören oder mindestens so viel kg wiegen um überhaupt Anspruch auf den Titel zu haben sonst würde vielleicht jeder Boxer die Klitschkos herausforden.  Und zu guter Letzt weiß ich auch nicht wie man Daniel Bryan als Champion verkaufen sollte.  Er kann nicht jedes mal z. B. durch Roll Ups oder DQ's gewinnen. Da müssen die WWE Angestellten jeden Tag "grübeln" und Fragen stellen wie man den Jungen richtig einsetzen solle.  Z. B: Gegen Big Show wirds vielleicht SCHWER den Jungen richtig gut zu verkaufen.  Also meiner Meinung nach muss er den Titel abgeben.  Was seine Wrestlerische Fähigkeiten angeht. Nun ja, ...... die sind Gut"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sascha311wrote on 06.01.2012:[4.0] "Er ist zwar ein guter Wrestler aber überhaupt nicht geeignet für einen Main Event und erst recht nicht für die World Heavyweight Championship"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: dragonulteowrote on 06.01.2012:[9.0] "A talented wrestler but Big Show sure will defeat and grab the World HeavyWeight Championship"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Crushingwrote on 04.01.2012:[8.0] "Toller In-Ring Peformer, und auch nicht so schlecht am Mic. Bin gespannt wie sein Title Run wird. Um Booker T Zu zitieren: "That's my boy right there, D Bryan"!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: EnemyOfJusticewrote on 01.01.2012:[10.0] "Ich weiß nicht, ich kenne ihn nur von der WWE, also bitte nicht mich verteufeln, aber für den besten Wrestler der Welt halte ich schon mal nicht. Der Beste ist einfach CM Punk, aber auf jeden Fall hat der Danielson viel Talent und auch eine natürliche Ausstrahlung. Seine Leistungen am Mikrofon überzeugen mich und seine Matches gefallen mir. Doch für eine 10 reichts für mich nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sirius Van Grathwrote on 28.12.2011:[9.0] "Wirklich ein weltklasse Wrestler, aber weil seine Mic-Skills zu wünschen übrig lassen nur 9 Punkte..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Nguyen2103wrote on 26.12.2011:[9.0] "Er ist nicht der Größte, nicht der Stärkste aber verdammt nochmal er ist einer der besten Technicker der Welt. Und er ist World Heavyweight Champion ! Mir kann es scheis egal sein, was andere Leute über Ihn sagen, er hätte kein Charisma und Dies und Jenes. Das sind Leute die nicht mit Wrestling aufgewachsen sind und keine Ahnung haben was das Wrestling ausmacht. Wenn sie Entertaiment gucken wollen, sollen sie ins Kino gehen oder TV-Serien gucken, da kriegen sie ihre Unterhaltung.  Bryan`The American Dragon`Danielson is the man from Smackdown.  Leute die immer Schlecht über andere reden sind immer neider weil sie nicht imstande sind ihr leben so zu gestalten wie es wollen und deshalb merckern sie einfach nur"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jack Londonwrote on 03.12.2011:[10.0] "Bryan Danielson ist immer noch einer der besten Wrestler der Welt, auch wenn man dies in der WWE naturgemäß nicht so gut wie in den kleineren Ligen zu sehen bekommt. Mir kann auch keiner erzählen, dass Danielson langweilig am Mikrofon wär, denn bei ROH waren seine Promos immer sehr intensiv und wirkte real. Es ist eigentlich kaum möglich, mit Bryan Danielson ein schlechtes Match zu haben, deswegen verdient er sich auch die zehn Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ShakDragoonwrote on 03.10.2011:[10.0] "Einer der, wenn nicht DER beste Wrestler weltweit... kann viele Stile gehen und zeigt durchweg klasse Matches. Zudem zeigte er durch seine vielen Indie-Auftritte und die Japantouren dass ihm wirklich was am Business liegt. Natürlich konnte er seien Potential in der WWE noch nicht ansatzweise zur Geltung bringen. Wirklich wundern tut mich das allerdings auch nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Orton7wrote on 27.08.2011:[5.0] "Absolut overrated der Typ... Am Mic so gut wie gar nichts und ne Ausstrahlung wie en Apfel und der soll mal Worldchampion werden? ! ... Einzig im Ring hat er ein ganz gute Aktionen, welche ihn vor einer noch schlechteren Bewertung helfen..."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Soopawrote on 14.08.2011:[10.0] "Für mich aktuel neben CM Punk, Kurt Angle und AJ Styles der beste Aktive Wrestler.  10Punkte für In-Ring Skills, 9 Für Mic Skills und 10 für die Ausstrahlung.  Macht meiner Rechnung nach 10 Punkte ;D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Bananaramawrote on 14.08.2011:[9.0] "Im Ring gehört er sicher zu den besten auf der Welt, da können ihm nur wenige das Wasser reichen. Außerhalb des Rings besteht doch noch Potenzial nach oben, sicher wird er kein Mic Gott werden. Denn als Heel ist er einfach besser aufgehoben, aber trotzdem hat er sein ganzes Potenzial noch nicht ausgeschöpft und ich bin gespannt, wie er sich entwickelt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Nerowrote on 09.08.2011:[10.0] "Im Ring und am Mic hervorragend. Die aktuelle Fehde mit The Miz ist toll aufgebaut und ist schön anzusehen - Entertainment pur."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: treeofworldswrote on 01.08.2011:[9.0] "I'm not gonna BURY Bryan Danielson! Richtig gut in jeder Hinsicht. Ich gebe ihm jetzt mal "nur" 9 Punkte weil ich seine bisherige Großartigkeit in der WWE noch ein bisschen vermissen muss. Ich hab aber nicht die Hoffnung aufgegeben, dass da noch großes kommt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Michael Shawn Hickenbottomwrote on 31.07.2011:[8.0] "Wenn er dabei ist, mache ich sofort den Fernseher an! Jedoch nicht immer der beste, aber immer in verhältnissmäßig guter Form."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wuschl 85wrote on 31.07.2011:[8.0] "Ja.... was wird jetzt wohl mit ihm passieren nachdem er den MITB-Koffer gewonnen hat? Ich wünsche mir, dass er den Koffer lange bahalten wird und so langsam aber sicher(? ) an die Topcard herangeführt wird. Ohne jeden Zweifel ein potenzieller Maineventer, aber sieht dass die WWE auch so."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Charismatic Enigmawrote on 29.07.2011:[9.0] "Auch wenn er in der WWE nicht das zeigen darf, wozu er technisch im Stande wäre bringt Danielson einfach eine gewaltige Portion frischen Wind mit. Seine Matches sind - wenn auch im Rahmen des in der WWE erlaubten - immer ein Garant für innovative Moves und Spots. Ich hoffe, man belohnt das mit einer guten und erfolgreichen "Mr Money in the Bank" Storyline."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Auditorewrote on 28.07.2011:[10.0] "Es macht riesenspaß ihm bei seinen Matches zuzugucken. So viel Technik in einem Körper. Die einzigst verdiente Wertung: 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Benji1706wrote on 28.07.2011:[9.0] "Vom Wrestling ist Bryan mit Sicherheit eine glatte 10!  Bei WWE kommt er mir aber einfach eine Nummer zu langweilig rüber. Es fehlt einfach DIE Fehde für ihn, die seine Zukunft in der großen Liga definiert. So kann z. Zt. sein überragendes Potential nicht komplett ausgespielt werden und ich hoffe, dass er seinen Koffer bis Wrestlemania behalten darf, um sich dann spätestens auf der Road nach Miami zum Main-Eventer zu mausern."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: latinoheat4everwrote on 25.07.2011:[10.0] "Viel viel Potenzial! Im Ring zurzeit einer der besten Worker überhaupt, das wird er bei der WWE noch Beweisen. Am Mic weiß das, was ich von ihm bisher gesehen habe auch zu gefallen. Für mich vergleichbar mit einem jungen Chris Jericho, allerdings muss man abwarten, ob sein Charisma ausreicht um so viel zu erreichen wie es Y2J getan hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Play2Xwrote on 19.07.2011:[9.0] "Definitiv ein klasse Wrestler, auch wenn ich ihn erst bei NXT das erste Mal gesehen habe... Nach so einem ersten Match kann man nur von ihm überzeugt sein (vs. Chris Jericho)! Der Beste der NXTler und hoffentlich baldiger Champion!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: al2010exwrote on 19.07.2011:[10.0] "10 Punkte dafür das er zu den besten der Welt gehört und wahrscheinlich technisch der Beste ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: oschihubertwrote on 18.07.2011:[10.0] "BEST IN THE WORLD! Ich hoffe inständig das er nicht der erste MitB-Koffer-Gewinner wird der erfolglos eincasht....."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: VanderVaartwrote on 08.07.2011:[10.0] "Wrestlingneulinge sollten nicht gleich damit anfangen, ROH-Matches von Danielson zu schauen. Sieht einschlafend auch, aber die Liebe (Technik) steckt im Detail. Manchmal haut er dann aber auch kranke Spots raus oder kämpft stiff. Verstehe nicht, wieso er nicht zu den Friedenskorps gegangen ist. Lehrer sein möchte er, wenn überhaupt erst nach seiner Karriere sein. Stattdessen unterschreibt er Jahre später bei der WWE und lässt sich dort unter Wert verkaufen. Und das nur, weil er klein und etwas schmächtig ist. Ganz oben wird es kaum kämpfen dürfen, da er sonst manch einen Main-Eventer blamieren könnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LyrixFTWwrote on 08.07.2011:[7.0] "Guter Wrestler, mittelmäßig charismatisch, am Mikrofon nur bedingt aufgehoben, dennoch lieber eine Promo als Backstage Segmente, da kommt er total unglaubwürdig. Sozusagen der gespiegelte Morrsion :) Finde er ist von "Indy-Smarks" zu stark overrated, klar er ist technisch sehr rund usw. aber zum Wrestling gehört nunmal Entertainment, ausserdem gefällt mir sein Ringoutfit überhaupt nicht, er sieht extremst seltsam damit aus (Und das hatter auch vor WWE Zeiten ;)) Dennoch großen Respekt vor seiner technisch guten Skills"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: swaggsonwrote on 29.06.2011:[7.0] "Daniel Bryan schafft es immer - besonders gegen Cody Rhodes - sehr gute Matches zu bestreiten. Mir persönlich fehlt bei ihm aber der Wiedererkennungswert wie zum Beispiel bei John Morrison oder so."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Donald Duckwrote on 23.06.2011:[8.0] "Daniel Bryan ist auf jeden fall ein sehr guter Wrestler. Aber mehr als Midcarder ist er nicht für mich. Jedenfalls traue ich ihm im Moment nicht mehr zu.."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Hirnklopswrote on 03.06.2011:[10.0] "Eigentlich wollte ich null Punkte geben, einfach mal aus Spaß, aber ich kann einfach nicht. "Daniel Bryan" ist für mich einfach eine absolut coole Sau, und aktuell der einzige Grund für mich, WWE zu schauen. Ich habe unlängst ein paar Indy-Auftritte aus seiner WWE - Pause 2010 gesehen, und mir ist da wieder aufgefallen, wie unheimlich cool er ist, und wie die WWE sein durchaus vorhandenes Redetalent eigentlich nicht nutzt. Fakt ist aber, das "Daniel Bryan" das vielleicht größte Talent der Welt ist, dem nur der entsprechende Push fehlt, um das zu sein, was früher mal Ric Flair, Kurt Angle oder Chris Benoit waren. Man kann nicht weniger als 10 Punkte geben - Der Mann ist der Größte. Punkt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Meanbeastwrote on 02.06.2011:[10.0] "Also zu Bryan Danielson kann man nicht viel Negatives sagen. Er gehört wahrlich zu den technisch versiertesten Wrestlern der Welt, sein Verhalten im Ring ist nahezu fehlerfrei, seine Fähigkeit, einem Match eine Geschichte einzuverleiben, ist grandios!  Bryan Danielson gehört aus meiner Sicht zu den ganz Großen dieses Sports und ich denke bzw. hoffe dass seine Fähigkeiten auch in der WWE eines Tages gewürdigt werden (jemand der mich in einem Match schon nach 3 Minuten ausmarken lässt hat aus meiner Sicht nun mal nichts in der Midcard zu suchen)!  Von mir gibt es glatte 10 Punkte, ohne wenn und aber, fact it is!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Miloswrote on 28.04.2011:[10.0] "He's not really getting by with WWE's sports entertainment booking, but for what he'd done in independent federations he's a best one in the history for me. The existing definition of a complete wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Carnevalewrote on 25.04.2011:[9.0] "Über jeden Zweifel erhaben, von mir aber nur 9 Punkte da er sich mit dem Wechsel zur WWE selbst geschadet hat. Der Look ohne Bart ist deutlich schlechter, der Ring Name einfach beknackt und er darf mit Abstand nicht das zeigen was er kann - sehr, sehr schade. Zudem darf man trotz herausragender In-Ring Fähigkeit mangelndes Charisma leider nicht ganz vergessen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Dennizwrote on 22.04.2011:[9.0] "Bryan ist im Ring fast nicht zu toppen. Echt spitze was er zeigt. Am Mic ist aber noch ein wenig Luft nach oben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: antihiphop2002wrote on 18.04.2011:[5.0] "Wir schreiben das Jahr 2005, ein Indy Wrestler der zugegeben ein ganz guter Techniker ist trägt immer die gleiche Badehose aus den 60ern. Der Kerl ist privat auch noch ein netter Kerl und so nimmt das Unheil seinen Lauf. Die Internetfans rasten völlig aus wollen ihn am liebsten anstelle von Cena als Dauerchamp bei der WWE sehen. Wir schreiben jetzt das Jahr 2011 und Daniel Bryan ist immer noch ein sehr guter Wrestler. Aber er hat auch noch die gleiche Badehose an und den gleichen langweiligen Gesichtsausdruck wie vor Jahren im Indybereich. Natürlich kann man jetzt sagen die WWE könnte ihn doch besser einsetzten, aber sie hat ihm doch genug Chancen gegeben das das Publikum die selben Reaktionen zeigt wie z. B. bei einem CM Punk. Er hat sich und seinen Farblosen in Ring Charakter in den letzten 6 Jahren keinen cm weiter entwickelt und hat deshalb in einer Liga wie der WWE nichts verloren. Er ist einfach nur eines, langweilig. Ich kann mich nicht erinnern von ihm mal etwas gesehen zu haben was man auch nur annähernd als Promo bezeichnen darf. Wenn er nicht einen radikalen Schnitt mit seinem Outfit und Charakter macht wird er völlig verdient in einem Jahr wieder für WXW vor 100 Leuten kämpfen. Und die werden dann vermutlich immer noch den großen Star in ihm sehen der er aber nicht ist."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: C0nspiracywrote on 15.04.2011:[6.0] "Sorry spitzenwrestler aber total gäähn langweillig. Ich bewerte zu 99% den WWE Danielson da ich bis auf 5 seiner RoH Matches nichts anderes von ihm kenne. Klar mag er für viele eine Indy Legende sein , aber im Mainstream steht er noch ganz am Anfang und muss erst beweißen das er bei WWE eine solch tragende Rolle wie bei RoH spielen kann."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Maxiennewrote on 08.04.2011:[10.0] "Ich denke einer der wenigen Worker die vom WWE Publikum wieder geholt wurden.  Im Ring ganz oben. Am Mic auch gut wobei er das bei der WWE noch nich so zeigen kann.  Und Carisma bewerte ich nich so gerne kann das nich :D Aber auf jedenfall ein futur Main Eventer in der WWE. Ich hoffe bald auf eine Fehde Bryan gegen Morrison oder Edge oder Chericho wenn er wieder kommt was da für Matches entstehen würden traum :O"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DJ MaSchwrote on 07.04.2011:[10.0] "Alles andere als die Höchstnote für Bryan ist ein schlechter Witz. Der Mann ist für mich ohne Frage der beste der Welt und das schon seit einigen Jahren. Im Ring sowieso derzeit unereicht und wer ihm Charisma abspricht ist aus meiner Sicht einfach nicht mehr zu helfen. Klar kommt er bisher bei seinen WWE Auftritten nicht wie ein Topstar rüber, aber das ist auch teilweise gimmickbdedingt. Jeder, der seine Heel Promos von ROH kennt, weiss das der Mann auch absoloute weltklasse am Mic ist. Leider scheint die WWE, wie die meisten ihrer Fans, dieses Material nicht zu kennen und lässt ihn als grinsenden Nerd in der unteren Midcard vergammeln, dabei hatte er im vergangen Jahr noch einige wirklich gute Matches hingelegt und das obwohl die WWE ihm 3/4 seines Movesets verboten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: exxterwrote on 07.04.2011:[10.0] "Geil Geil Geil^^ Super Moveset, Charisma top und freu mich das er (jetzt schon einige Zeit) auch mal bei WWE länger ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Aquifelwrote on 07.04.2011:[10.0] "Wenn ich hier wieder lese, dass er kein Charisma hat... Leute, Charisma heisst keine aufdringliche Persönlichkeit oder ähnliches. Klar, Bryan ist vom Charisma kein Chris Jericho oder The Rock, aber zu sagen, er hätte keins, da fällt mir nix zu sein. Zumal er mehr Reaktionen hervorbringt (auch beim WWE Publikum! ) als über die Hälfte des restlichen Rosters. Also irgendetwas muss da wohl doch sein. Klar, am Mic ist er nicht perfekt, hat einige Schwächen, das macht er mit seiner Arbeit im Ring wieder wett. In der WWE durfte er bisher zwar nur ab und an zeigen, was er drauf hat, aber das ist nunmal eine ganze Menge. Da stört auch die Statur nicht. Ein Rey Mysterio oder Mistico (Sin Cara) haben auch keine beeindruckende Statur, was sie bei ihrem Stil aber auch nicht brauchen. Ein kleiner, wieselflinker Submission-Spezialist mit Strike-Reportoir ist keineswegs unglaubwürdig. Man muss sich nur mal im MMA Bereich umschauen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MICHAELAundMARKUS4EVERwrote on 07.04.2011:[6.0] "Edit: Guter Wrestler, aber null Charisma. Wird nie über seinen Status als Midcarder hinauskommen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HesBackwrote on 04.04.2011:[7.0] "Sehr sehr guter Wrestler aber in meinen Augen nicht das was die Internet Fanboys in ihm sehen, er wird weder das Wrestling (oder Entertainment) umkrempeln noch eine größe im Mainevent der WWE, er bleibt Midcarder mit vllt kurzzeitigen ME Aufenthalten.  Sorry aber seht es ein, die große Masse der Bevölkerung will keinen 0815 Typen der 2 meter Hünen verkloppt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Zamunerwrote on 31.03.2011:[7.0] "Ich bin kein Wrestling-Purist, vielleicht bekommt er deshalb keine 10. Aber in meinen Augen ist er nicht so überragend wie ihn jeder schreibt. Wenn man in der Internetgemeinde gegen Danielson wettert wird man ja schon verfolgt. Klar ist er unglaublich agil und hat tolle Moves. Er ist auch vielseitig und ich verstehe unter Charisma oder Ausstrahlung auch kein bombastisches Ringoutfit. Aber unter gutem Wrestling verstehe ich keine 20-minütigen Submission-Holds. Und Ausstrahlung hat er auch nicht viel. Er ist eben normal. Man könnte mir vielleicht mal erklären warum er so besonders ist. Ich hab auch ein paar ROH-Matches gesehen und glaube allen, dass er sie fasziniert. Aber wenn sich einer 5 Jahre den Arsch aufreißen muss damit er einen Ruf hat und dieser führt dann zu einer gewissen Ausstrahlung, dann ist er nicht besser als ein Edge oder Chris Jericho, die in die Halle kommen und du spürst etwas besonderes. Ich seh ihn ihm nicht den besten der Welt. Er gehört in der WWE sicherlich zu den besseren, aber es gibt bessere. Dazu ist er am Mic auch nicht herausragend. Vielleicht passt er nur nicht so gut zur WWE, aber ich glaube er ist einfach ein guter Wrestler den viele lieben und der einen guten Ruf hat. Ich würde wetten, dass 80% der Leute, die hier Lobeshymnen schreiben noch keine 3 Matches von ihm bei ROH gesehen haben. Er lebt von seinem Ruf und ist ein typischer Midcarder... Und jetzt verfolgt mich :)"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Hu-Manwrote on 28.03.2011:[10.0] "Best in the World! Was soll ich sagen? Der Mann ist unglaublich im Ring. Am Mic muss er noch zulegen und das "Daniel Bryan" Gimmick ist übel, dennoch die 10 Punkte, weil der American Dragon im Ring einfach eine Ausnahmeerscheinung ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Deathmatchwrote on 18.03.2011:[10.0] "Toller Wrestler. Er darf bei der WWE meiner Meinung nach leider noch nicht 100% zeigen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LowJomoKiwrote on 06.03.2011:[10.0] "Glatte 10 was der mann am Ring kann ist unglaublich von highflying bis brawlen, Bryan Danielson hat alles drauf und ist der absolute Allrounder. Zudem gefällt mir sein Stil des Submission-Wrestlings enorm und auch am Mic kann er zumindest mich überzeugen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Y2John Cenawrote on 05.03.2011:[7.0] "Im Ring überdurchschnittlich gut, jedoch hat mich sein Mic-Work noch gar nicht überzeugt. Außerdem finde ich, das er ein s****ß Gimmick hat. =>7 Pkt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Raven Ravnoswrote on 05.03.2011:[9.0] "Er hat die Fähigkeiten und das Publikum mag ihn, warum er keinen richtigen Push bekommt ist mir schleierhaft. Vielleicht kommt seine Zeit wenn nach WM27 wieder ein paar Plätze im Main Event frei werden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Matt4Wrestlingwrote on 19.02.2011:[10.0] "Best in the World voll und ganz! Er hat die Härte, er hat die Technik, so dass im Prinzip nur die Größe fehlt! Es wäre nur schön, wenn jetzt noch einige einsehen würden, DAS ES NICHT AUF DIE GRÖßE ANKOMMT (gell WWE;))!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sloverwrote on 18.02.2011:[10.0] "Daniel Bryan, einen Wrestler den ich bei WWE NXT als einen charismalose Wrestler warnahm. Dies änderte sich, als er beim Summerslam zurückkehrte. Der Junge hat eine super Ausstrahlung, und dazu noch super Moves drauf. Finde ih einfach genial."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ReVanwrote on 12.02.2011:[10.0] "Einfach super was dieser Mann in der wwe abliefert ^^ Er hat Charisma und gute Kämpfe sind bei ihm an der Tagesordnung ^^ Vor allem seine Kämpfe gegen Ziggler sind mir in Erinnerung geblieben. Hoffentlich sieht man noch mehr von ihm, möglicherweise auch als World-Champ?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Awezomewrote on 07.02.2011:[8.0] "Seine In-Ring Fähigkeiten sind überragend, am Mic aber total langweilig. Für mich kein Main Eventer, braucht evtl. einen ernsteren Charakter, sonst wird er ewig in der Midcard festsitzen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Yannick009wrote on 21.01.2011:[9.0] "Super In-Ring Fähigkeiten und am Mic durchaus zu ertragen. Wird noch einer der ganz Großen werden!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FGwrote on 08.01.2011:[10.0] "Nicht zu Unrecht wird er als der beste Wrestler der Welt bezeichnet. Ich lernte Bryan wie viele erst bei NXT kennen, und war direkt fasziniert vom dem Charisma( auch wenn viele meinen er habe keins) und auch (oder vor allem) von seinen In-Ring Skills in seinem Match gegen Chris Jericho. Ich habe ihn weiter gebannt verfolgt(und bei jeder seiner bei NXT immer wiederkehrenden Niederlagen auch oft genug geflucht).  Als er dann nach seiner Niederlage bei NXT erst gegen The Miz und dann unter Wade Barrett bei Raw auftauchte, war ich natürlich begeistert, doch genauso angenervt war ich dann, als ich von seinem Rauswurf aus der WWE erfuhr... BIS er beim SS wiederkam und direkt mal zwei Nexus Leute zum Tapout brachte. Danach folgte ein (meiner Meinung nach) verdienter Gewinn des US-Title, den Miz sowieso nicht brauchte, sowie ein paar klasse Matches gegen Dolph Ziggler( gerne mehr davon). Ich find zwar den Mist mit den Bellas im Mom extrem nervig, trotzdem hat sich Bryan die 10 Punkte meiner Meinung nach auf jeden Fall verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CM Edgewrote on 06.01.2011:[8.0] "Daniel Bryan ist wohl der beste Wrestler, den es in der WWE im Moment gibt. Doch warum "nur" 8 Punkte? Er schaut einfach langweilig aus. Seine Mic-Skills sind OK, mehr nicht. Falls er das noch schafft kreigt er auch 10 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Schmidi2121wrote on 26.12.2010:[10.0] "Ich weis nicht groß was ich dazu sagen soll außer WOW!  Den als ich die Matches von ihm bei Ring of Honor gesehen haben, beispielsweise gegen McGuiness oder Morishima, war ich echt Sprachlos. Der Junge ist Wrestlerisch wahrscheinlich echt das beste was es im Moment Aktiv ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Oetzi92wrote on 24.12.2010:[10.0] "Für mich der beste Wrestler zurzeit. Technisch perfekt, glaubhaft und einzigartig im Ring, bei seinen Matches kommt nie Langeweile auf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The-Game91wrote on 05.12.2010:[10.0] "Der Vorzeige Wrestler denen sich alle wünschen. Über sein wrestlerisches Talent muss ich nicht reden. Er ist einfach ein verdammt guter Techniker. Er übberascht jedes Mal mit neuen Moves und zaubert so manche Traummatches hin. Charisma besitzt er auch. Persönlich ist er mir sympathisch und das sagt schon aus ob jemand Charisma besitzt oder nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Necronwrote on 03.12.2010:[7.0] "Bryan zu bewerten fällt mir sehr schwer. Technisch ist er über jeden Zweifel erhaben und auch seine Einbindung in die Nexus-Story war in meinen Augen fantastisch. In Sachen Ausstrahlung und Gimmick-Arbeit fehlt mir persönlich da aber ne ganze Menge, um den Ex-American-Dragon als Top-Wrestler anzusehen. Ich traue Bryan aber durchaus zu, diese Schwächen in Zukunft abzubauen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RhinoRaineswrote on 23.11.2010:[9.0] "Das er ein phantastischer Wrestler ist wusste man vorher aber das er sich so gut bei WWE integriert, hätte ich nicht für möglich gehalten. Er ist, als US Champion, das passende Pendant zum arroganten und überheblichen IC Champion Dolph Ziggler. Bei beiden freue ich mich momentan auf jedes ihrer Matches!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: elcattivo83wrote on 13.11.2010:[10.0] "Der beste Wrestler den es zur Zeit gibt in der WWE. Muss sich nur noch am Mic etwas steigern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Woerpwrote on 12.11.2010:[10.0] "Endlich darf er auf der grossen Bühne und damit der ganzen Welt beweisen, dass er der beste Wrestler der Welt ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheRock 7 Champwrote on 06.11.2010:[10.0] "Ich habe seine ROH Matches gesehen und bin beeindruckt. Er ist jetzt United States Champion und ich denke das er es sehr schnell zum Main Eventer wird. Am Mic braucht er noch ein bisschen Übung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cheffewrote on 01.11.2010:[9.0] "Bryan ist definitiv einer der besten Wrestler dieser Welt. Was er im Ring abliefert ist einfach nur Toll ! Allein sein Match bei Bragging Rights gegen Dolph Ziggler war definitiv eins der besten WWE Matches des Jahres.  Ich hoffe aber das sein Mic-Work sich noch verbessert, denn da hatt er aufjedenfall noch Nachholbedarf"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MajinSitwrote on 31.10.2010:[10.0] ""Best In the World" fasst das ganze recht gut zusammen. Zumindest was seine Ring-Skills angeht. Am Mikrofon ist er auf jeden Fall solide, wirkt einfach glaubhaft und natürlich.  Natürlich ist er kein typischer WWE-Wrestler, aber trotz allem ist dieser Mann der nächste Headliner. Er muss es einfach werden. Und früher oder später wird das auch passieren, sofern die WWE sich nicht komplett von der Realität distanziert hat.  Die Tatsache dass er recht schnell den US-Title gewonnen hat deutet darauf hin, dass man ihn ihm schon wenigstens das Potential sieht, denn der schnelle Sieg eines World Titles ist trotz allem noch nicht gerechtfertigt: Zum absoluten Top-Star sollte man ihn erst über die Midcard wachsen lassen, denn die Methode "Shooting Star" (siehe Brock Lesnar) kann gut in die Hose gehen. Das wäre dann nicht weniger als eine Absolute Verschwendung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cenafan 09wrote on 27.10.2010:[10.0] "Einer der besten Wrestler der Welt. Finde seine Matches unterhaltsam und hat gute In-Ring Skills"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: C van Damwrote on 24.10.2010:[10.0] "Selbst wenn man Danielson jetzt in ein rosa Kleid stecken würde und zur Musik von ABBA zum Ring kommen lassen würde... Selbst dann würde er noch 10 Punkte bekommen. Warum? Weil man einfach weiß was Danielson wirklich kann, was er vor seiner WWE-Zeit geleistet hat und wozu er im Ring fähig ist. Mit 29 auch noch sehr jung und wenn WWE es schafft ihn weiterhin gut einzusetzen haben wir hier einen künftigen World-Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FrickinWWEfanwrote on 21.10.2010:[10.0] "Einfach ein super Kerl, einer meiner Lieblingswrestler. Kann jetzt auch nichts mehr sagen, was meine Vorredner nicht schon 10. 000mal gesagt hätten ;) Hoffe, er bleibt uns noch lange erhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Homicide187wrote on 08.10.2010:[10.0] "Best Wrestler in the World! Egal ob in den Indys oder jetzt bei WWE Danielson kann einfach überzeugen. Im Ring ist er einer der besten und am Mic ist er auch nicht schlecht bzw. kann er da durch aus unterhalten. Dazu war er letztes Jahr in der wXw einfach Wahnsinn. Ich hatte die ganze Zeit eine Gänsehaut und meine Freundin meinte der sieht ja aus wie ein griechischer Gott."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Muutzwrote on 01.10.2010:[10.0] "Gefällt mir sehr gut als Face, bin aber gespannt was er als Heel draufhat. Hoffentlich bekommt man noch viel von Ihm bei der WWE zu sehen und hoffentlich stimmt das Booking mit ihm. Btw: 7john7cena7, deine Bewertung ist lächerlich. Wenn man das liest denkt man du gibst ihm 1. 0 Punkte weil du sein Outfit nicht magst. :D. Am Mikro überragend, genauso wie im Ring. Naja jedem seine (wenn für mich auch lachhafte) Meinung"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kitanoyamawrote on 30.09.2010:[10.0] "Sein Comeback hat sehr gut eingeschlagen und er zeigte sich seither noch besser den jeh. Er ist auf gutem Wege an alte RoH-Tage anzuknüpfen sofern die WWE ihn nicht fallen lässt oder sonstwie was dazwischen kommt. Eines Tages ist er sicherlich der Main-Eventer den man sich von ihm erhofft. Er ist in meinen persönlichen Kreis meiner Lieblingswrestler aufgerückt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jerseyhoolwrote on 29.09.2010:[8.0] "Danielsons Karriere ist mit Sicherheit noch nicht im Bereich eines Superstars, soviel steht fest! Natürlich ist er ein toller Wrestler, aber im Indy-Bereich laufen da noch ganz andere Kaliber rum. Wer es im Mainstream schaffen will - denn nur dort wird nunmal das grosse Geld verdient -, muss erstmal erneut die harte Schule durchlaufen & die Massen mit Leistung und/oder Charisma fesseln. Und genau das ist in meinen Augen der Schwachunkt von Bryan: so sehr wir - also die Fans - seine Leistungen anerkennen, "nur" ein guter Wrestler zu sein, reicht nunmal nicht bei WWE! Ob es nun an seinem jungendlichen Aussehen liegt, vermag ich nicht zu sagen. Aber ich bin sicher, dass, wenn er noch ein paar Jahre im McMahon-Land wirkt, wir jezt schon auf einen künftigen Superstar blicken. Und dann gibt es auch die volle Punktezahl! ;)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Felice-del-mondowrote on 28.09.2010:[7.0] "Daniel Bryan ist ein Internetliebling der Insider Fans. Sicher hat er unheimliches Potenzial und kann ein ganz großer Star werden, doch im Moment ist er meiner Meinung nach noch weit davon entfernt. 10 Punkte sollten etablierte Megastars bekommen, kein Nobody aus der Indy Szene! Noch ist er nicht soweit !"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: El-Chupakneebraywrote on 28.09.2010:[10.0] ""BEST IN WORLD! BEST IN WORLD! " Das ist keine Phrase mit der sich ein wrestler schmückt, das ist so nah an der Wahrheit wie bei kaum jemand anderem. Nicht nur, dass er technisch im Ring brilliant ist, nein er hat sich für das Independent-Wrestling den Hintern aufgerissen wie das sonst wohl nur wenige getan haben. Jetzt also WWE und so viel lieber ich ihn woanders sehen würde: Die große Aufmerksamkeit und das bessere Gehalt hat er sich redlich verdient. Thank You, Bryan!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Ramwrote on 26.09.2010:[8.0] "Also er und Benoit sind für mich die Besten Techniker die ich je gesehen hab. Aber gerade jetzt als Danielson zum Sports Entertainment wechselte wird auch wieder klar was seine schwächen sind. Ich finde am Mic ist er vielleicht noch nicht perfect, aber er hat sich doch deutlich gesteigert. Aber was mir gar nicht an ihm gefällt ist seine Ausstrahlung. Ich finde Chris Benoit hat für mich deutlich mehr ausgestrahlt und er sah auch trotz Zahnlücke besser aus als der Herr Danielson. Bryan hat eine 10 € Frisur und eine Tribute to Cowboy Bob Orton Opahose. Das er mit so einem peinlichen Ausehen vor Millionen tritt ist einfach lächerlich. desswegen nur 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Roseswrote on 25.09.2010:[10.0] "Simply the Best! ne OK er ist nicht DER beste aber gehört definitiv zu den besten... und das mit abstand in der WWE muss er natürlich erstmal sich hoch arbeiten doch zählt für mich auch das was er davor geleistet hat und das ist einiges... seit Punk gab es glaube ich keinen so im ring grandiosen und charismatischen Typen... er passt sich seiner rolle an wie kein zweiter und füllt sie ohne wenn und aber aus... Okay ich muss zugeben am Anfang war ich auch sehr kritisch doch ähnlich wie bei Bret Hart habe ich einfach angefangen Matches zu sehn und dann fand ich ihn schon nicht mehr so schlecht doch dann auf der 16 Carat gold DVD von 2008 hat er mich so was von überzeugt. verdient nichts anderes als die best Note^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: svenheinrichwrote on 25.09.2010:[10.0] "Der beste Wrestler aus den letzten 10. 12 Jahren! ganz sicher!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MarcTrixwrote on 23.09.2010:[10.0] "Genial im Ring, Ganz gut am Mic, hat auch Charisma also alles in allem ein spitzen Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Unrated Superstarwrote on 23.09.2010:[7.0] "@7john7cena7: Das ist kein Star Wars-Theme, sondern klassische Musik (Walkürenritt von Richard Wagner... wo hat die heutige Jugend nur ihre Bildung? ). Auch ansonsten liegst du falsch. Er hat zwar nicht den Superman-Körper eines John Cenas oder auch kein metrosexuell eingölten Body a'la Randy Orton, aber das braucht er nicht. Solange er gute Matches zeigt (und das tut er) kann er nicht allzu viel falsch machen. An seinem Gimmick muss er zwar noch was feilen, aber da gibt's auch weitaus schlechtere. Und wenn's drauf ankommen würde dann würde Daniel Bryan Cena und Orton im Ring richtig alt aussehen lassen. Ähnlich wie einst William Regal Goldberg."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: taxbaxwrote on 21.09.2010:[6.0] "Natürlich von der technischen Seite her ein fantastischer Wrestler, aber meiner Meinung nach (noch? ) gnadenlos überbewertet. Für einen absoluten Top-Wrestler hat er viel zu wenig Ausstrahlung, und auch das micwork kann sich mit den Besten seiner Zunft bei weitem nicht messen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mick Funkwrote on 21.09.2010:[10.0] "Kurz weg und jetzt richtig stark zurück in der WWE. Momentan der erfrischendste Mann im Roster, der in Sachen Charisma sicherlich noch zulegen kann... selbst wenn nicht, Benoit war auch keine Charismabombe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Damon Strikerwrote on 21.09.2010:[10.0] "Unglaublicher In-Ring-Performer ohne jegliche Schwächen! Am Mikrofon solide und er strahlt ein natürliches Charisma aus. Sein Aufbau in der WWE war - bis auf die unnötige Pause - ausgezeichnet. Die Zeit wird zeigen, ob sich Bryan in der WWE etablieren kann. Er bringt jedenfalls alles mit, das dazu nötig ist. Jetzt liegt es an den Offiziellen den Weg mit ihm weiter zu gehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Pyromaticwrote on 15.09.2010:[6.0] "Mag ja sein das er einer der besten Wrestler ist, aber ein großer Entertainer wird er vermutlich nicht. In der WWE ist eine lange Zeit als Midcarder vorprogrammiert."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: sebbaewrote on 11.09.2010:[10.0] "In jeder Hinsicht... 10 Punkte wert. Kann alles im Ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AmericanDragonwrote on 07.09.2010:[10.0] "Grandioser Techniker, der seine Moves stets sauber und glaubwürdig ausführt. Hat mit Ende 20 schon mehr Klassiker produziert als so mancher Wrestler in seiner gesamten Karriere. Ich hoffe, dass er nach seiner fast schon legendären ROH Karriere seinen Platz bei WWE findet und diesen auch halten kann, da es sehr schade wäre, wenn man sein Potenzial nicht nutzen würde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Callistowrote on 05.09.2010:[10.0] "Am Mic verbessert, im Ring unter den Top 3 der Welt. Das müssen 10 Punkte sein!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Moyawrote on 02.09.2010:[8.0] "Was ich bisher gesehen habe, hat mir gefallen. Kann auf jeden Fall in die Spitze kommen, wenn man ihn denn machen lässt. Bin gespannt wie sein weiterer Weg aussehen wird!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Double Jwrote on 29.08.2010:[9.0] "Geht jeden Styl mit, ist technisch immer sauber, kommt auch glaubwürdig rüber, aber nicht mehr als glaubwürdig, und für ne 10 muss er perfekt rüberkommen!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Papa Popanzwrote on 28.08.2010:[8.0] "Klasse Wrestler, guter Look, aber was ist am Mic? Lasst ihn mal quasseln, damit er sich noch mehr als Charakter zeigen kann"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: maxiking125wrote on 23.08.2010:[10.0] "Daniel Bryan is einer der besten Wrestler der Welt. Traumeinkauf von WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Zippo83wrote on 21.08.2010:[8.0] "Er ist wohl ein sehr sehr guter Wrestler, aber zehn Punkte bekommt von mir nur jemand, der das Gesamtpaket präsentiert. Dazu hatte er bisher zu wenig Gelegenheit. Optik ist absolut furchtbar, aber er kann ja nichts dafür, wie ihn der Herrgott erschaffen hat. Übrigens find ich diese Cena-Kommentare ziemlich markig, weil Cena nichts für seine Rolle kann. Zudem hat das nichts in einer Danielson-Bewertung zu suchen. Musste ich mal loswerden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SES-Memberwrote on 20.08.2010:[9.0] "für die Indy Auftritte und siene Fehden gegen CM PUNK und Kenta kriet Er von mir schon 5 Punkte. Dazu kommt noch sein Comeback beim Summerslam das klasse war und sein Move-Set das einfach frisch und spritzig ist. Viel Charisma und keine schlechten Mic-Skills. 9 Punkte weil Er noch nihct den Durchbruch geschafft hat aber das kann ja noch kommen, bin dann auch bereit eine 10 zu geben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Perry Coxwrote on 19.08.2010:[9.0] "Dieser Junge ist unglaublich. Ich muss dazu sagen: Ich kenne den Independent Danielson nicht, nur den Daniel Bryan aus der WWE. Und was er da gezeigt hat, allein seine 2 Minuten Powerattacke beim Summerslam hat mich einfach beeindruckt. Klar, er ist nicht der größte und auch nicht der schwerste, aber wenn er wirklich in den Mainevent der WWE will, sollte er einfach weiter seine In-Ring-Skills zeigen und Optimistisch bleiben, dann schafft er es auch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Basti1989wrote on 17.08.2010:[10.0] "Hab bisher noch nicht so extrem viel von ihm gesehen, aber das was ich gesehen habe ist weltklasse. Mein Wunsch: Eine lange Fehde gegen Chris Jericho. Dann hat man die aktuell besten Wrestler der Welt im 1 gegen 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Zonenbewohnerwrote on 17.08.2010:[8.0] "Aus aktuellem Anlaß habe ich meine Meinung über Danielson geändert und meine Bewertung korrigiert :-)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Diaboluswrote on 17.08.2010:[7.0] "Technisch einwandfreier Wrestler. Konnte jetzt beim Summerslam überzeugen. Hoffentlich lässt sich die WWE ihn nicht durch die Lappen gehen wie schon einige andere Talente vor ihm! Will mehr von ihm sehen und will sehen wie er sich entwickelt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WrestlingFanDuisburgwrote on 17.08.2010:[10.0] "Im Ring ein Ausnahmekönner. Am Mic kann er auch unterhalten. WWE sollte ihn dringend zurückholen und zwar so schnell wie möglich.  @Rio123: Guck dir mal bei Youtube oder sonst wo seine Matches von Ring of Honor an."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rio123wrote on 16.08.2010:[10.0] "Vielleicht etwas verfrühte Wertung, ich habe ein Match gesehen und bin vollauf begeistert von ihm. Ich habe kaum jemand mit so einer Kraft, Geschwindigkeit und Technik gesehen, grandios!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AVFwrote on 16.08.2010:[10.0] "Klasse Techniker und hat mich mit seinen Moves und Matches immer überzeugt. Freut mich auch das er nun wieder zurück bei der WWE ist"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Exist 2 Inspirewrote on 16.08.2010:[9.0] "Ein Super Woker dem man selbst bei einem 3 Minuten Auftritt (SS) sofort ansieht das er es total drauf hat. Ich hoffe er macht seinen Weg in der WWE, ich würde ihn dort nämlich gerne noch lange und vorallem mal in längeren Matches sehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Whole FN Showwrote on 14.08.2010:[10.0] "Best in the World kommt hier nicht von ungefähr. Es tut mir für ihn Leid das seine Große Karriere von der WWE versaut wurde, aber für mich als WRESTLIN Fan ist das natürlich ein Segen das er wieder in den Indys rum tingelt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Seba09wrote on 05.08.2010:[10.0] "Best in the world... wwe sollte sich was schämen!  Technisch unschlagbar, vereint mma und ringen komibiniert mit high-flying-action."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: milliwrote on 04.08.2010:[10.0] "Ganz klar einer der besten. Der Mann der einen mit ein Paar Headlocks ne halbe Stunde unterhalten kann! Ich kann nur WWE nicht ganz verstehen ihn wegen solchen Kleinigkeiten gehen zu lassen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MaKnowrote on 10.07.2010:[7.0] "Ausgezeichneter Techniker und durchaus annehmbarer Micworker. Einziges Manko - er hat ebenso wenig Ausstrahlung wie der Großteil seiner fanatischen Fangemeinde."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Freitag Nacht Koestlichkeitwrote on 10.07.2010:[10.0] "Ein Wahnsinnskerl. Charisma das einem die Hose platzt, Mic-Skills und im Ring ein Gott. Einfach gigantisch"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Y2J Problemwrote on 03.07.2010:[6.0] "Also ich finde ihn jetzt nicht so toll! Aber es reicht aus um es zu etwas in diesem Sport zu bringen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Marcywrote on 30.06.2010:[10.0] "Der Mann, der die Zukunft der WWE sein kann. Die jetzige Entlassung ist nur ein kleiner Stolperstein, denn wer glaubt ernsthaft daran, dass Bryan nicht wieder zu WWE zurückkehren wird? Man wird mit ihm Geld verdienen und das hat ihm seine Zukunft gesichert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: sign squadwrote on 30.06.2010:[10.0] "Vielleicht kann man ihn in ein paar Jahren einen 2. Ric Flair nennen, er hat bis auf die Promo Skills alles, was einen echten Wrestler ausmacht und das klammert alles aus, was Sportsentertainment nun mal so fordert. Warum die Provokation, lieber Vorposter? Der Mann ist hoffentlich die Zukunft und wenn er dann zum Rumble wieder in der WWE sein wird, wird man ihn pushen und dann können sich die Main Streamer darüber aufregen, dass er ja soooo langweilig sei. Ich freu mich schon drauf. Endlich ein Champion mal wieder zum anfassen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Medeawrote on 30.06.2010:[2.0] "Leider kann ich ihm gar nichts abgewinnen. Ich erkenne weder seine Ausstrahlung, noch finde ich seinen Ringerstil gut, da ich eher auf andere Arten des Wrestlings stehe. Auch am Mic finde ich andere deutlich besser."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: P92wrote on 29.06.2010:[10.0] "Er hat seine Fähigkeiten vielmals in der Indy-Szene bewiesen. He proved his abilities in the Indy-Scene."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Manu Adamswrote on 21.06.2010:[7.0] "Mich überzeugt Daniel Bryan im Ring vollenst. Seine In Ring Fähigkeiten sind unglaublich und kann so ziemlich mit jedem ein ansehenliches Match abliefern. Dennoch gibt es nur 7 Punkte da mir bei ihm etwas die Mic Skills fehlen, eine sonderlich gute Ausstrahlung legt er auch nicht an den Tag."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Super Dragonwrote on 20.06.2010:[10.0] "Mein Lieblingswrestler, hält den Titel "Best Wrestler" in The World zurecht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kankurowrote on 02.06.2010:[10.0] "Über seine Ringqualitäten braucht man wohl nicht mehr viel zu sagen. Hoffe aber, dass er sie bald in der WWE mal in einem längeren Match präsentieren darf. In letzter Zeit überzeugt er zudem mit starken Promos. Und wer behauptet, dass er kein Charisma hat, muss da irgendwas an dem Begriff gewaltig falsch verstanden haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Paddywrote on 01.06.2010:[10.0] "Hätte nicht gedacht das er mich so durch NXT beeindrucken würde. Die Fehde mit The Miz wird immer Besser sowie die Fehde mit Michael Cole. Hoffentlich wird er nicht bei der WWE verrotten und wird mal ordentlich gepusht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ToZeDasCoveswrote on 24.05.2010:[10.0] "HAMMER WRESTLER.....  hoffe dass er jetzt mit seinem richtigem Gimmick (als Bryan Danielson) bei RAW auftaucht um ne fehde mit The Miz zu beginnen..... könnte geil werden xD"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Erasedwrote on 22.05.2010:[9.0] "Klasse Worker. Hoffen wir, dass er bei der WWE endlich eine Chance bekommt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jar Jar Binkswrote on 13.05.2010:[10.0] "Epik! Der vermutlich beste Wrestler den es überhaupt gibt. Er verkörpert alles was ein Wrestler braucht, ein kongenialer Mann, der mich immer wieder in seinen Bann zieht. Das Charisma dass ihm abgeschrieben wird, hat er mMn dadurch, dass er einfach nicht übertrieben wirkt und alles trotzdem extrem realistisch und emotional herüber bringt. Immer mehr fällt mir seine Glaubwürdigkeit im Ring auf und ich würde fast behaupten Danielson hat Charisma Ende nie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Italian Straight Edgewrote on 12.05.2010:[10.0] "Dieser Junge hat's einfach drauf. Nicht umsonst wird er als der "Beste der Welt" bezeichnet. Am Mic ist er, wie ich finde, nicht schlecht und an Charisma mangelt es bei ihm auch nicht (wie einige finden). Bryan hat sehr viele, außergewöhnliche (Submission-)Moves in seinem Repertoire. Er könnte der neue Chris Benoit werden, nur mit mehr Mic-Skills. Dass er bei NXT ausgeschieden ist, ist nicht weiter tragisch (außer dass wir ihn für 'ne Weile nicht mehr im TV sehen können), denn er wird es auch so (locker) in eines der Roster schaffen. Und zum Glück heißt er jetzt wieder Bryan Danielson (aber Daniel Bryan war auch akzeptabel). Die 10 Punkte hat er bei mir und sicher auch bei vielen anderen Smarks hier so gut wie sicher. Ich hoffe, dass der "American Dragon" in Kürze wieder sein Feuer speit - und zwar bei RAW oder SmackDown!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Edge96wrote on 12.05.2010:[9.0] "Technisch sicher einer der besten der Welt. Kann ihm aber keine 10 geben, da es ihm eindeutig an Charisma und Micfähigkeiten mangelt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Reiskartoffelwrote on 05.05.2010:"Ich habe auch Daniel nur ab und zu mal bei NXT gesehen. Und da er da (noch? ) nichts zeigen darf, kann ich ihn auch nicht schlecht bewerten. Wird schon seinen Grund haben, wieso er einer der besten sein soll. Wenn er mal ein längeres Match hat und sein Potenzial ausnutzen darf (wird wahrscheinlich erst in NXT storymäßig zu einem Star gemacht), dann werde ich ihn auch bewerten."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Cripplerwrote on 04.05.2010:[4.0] "Wird total überbewertet. Für mich ist er so gut wie der Durchschnitt, wenn nicht sogar etwas schlechter."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sandmannwrote on 04.05.2010:[10.0] "Best in the World und das wohl auch zurecht. Ein sehr charimatischer Wrestler der alle Stile mitgehen kann. Man muss allerdings erst mehrere Matches von ihm sehen um sein ganzes können wirklich zu begreifen. Einer der ganz großer in diesen Jahren und ein heftiger Verlust für die Indyszene. Wird aber auch seinen Weg bei WWE gehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: UndertakerChriswrote on 02.05.2010:[9.0] "Einer der genialsten Wrestler, die ich je gesehen habe! Im Ring perfekt und am Mikro auch recht gut. Hatte richtig geile Matches bei ROH. Nur jetzt bei diesem bescheuerten NXT Konzept wird er als der Schwächling dargestellt, der noch nie ein Match gewonnen hat. Dann hätten sie ihn vorher aber nicht so bejubeln sollen. Er sollte sich von der WWE losreißen udn wieder zu ROH gehen..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RickRollwrote on 24.04.2010:[8.0] "Verstand nie den Hype um Danielson. Im Ring stark, definitiv, jedoch NIE der beste Wrestler trotzdem gute In-Ring Skills, sowie gute Psychologie."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Viperwrote on 30.03.2010:[10.0] "Ich war vor der 1. Ausgabe von NXT sehr gespannt und er konnte mich komplett überzeugen. Gibt wohl keinen besseren Mann im Ring als ihn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Father Nelsonwrote on 23.03.2010:[7.0] "Why WWE? He looks so much out of place there! Even the Miz looks loke he could eat him alive!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheRatedRLegendKillerwrote on 15.03.2010:[10.0] "Wer kommt hier denn bitte auf die Idee zu sagen, das ein Danielson kein Charisma hat. Dadurch klingt man vielleicht professionell, aber wer sagt das der NXT Rookie kein Charisma besitzt, der weiß anscheinend nicht was Charisma ist. Bryan ist charismatischer als die meisten seiner WWE-Kollegen und im Ring sowieso das Beste was Nord-Amerika zu bieten hat. 10 Punkte sind hier Pflicht..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Aceonwrote on 11.03.2010:[9.0] "Einfach nur Top der Mann, hab ihn vor kurzem in zwei Matches live gesehen und muss sagen, unglaublich wie man ihn hasst als Heel, aber genau so unglaublich was er im Ring drauf hat. Ist einfach alles in allem ein super Worker. Dieser Titel " Best Wrestler in the World" existiert nicht zu unrecht ;) (auch wenn man den Satz nicht wortwörtlich nehmen sollte)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: shoopdawoopwrote on 10.03.2010:[10.0] "Von 3 Matches bei NXT hat er mich bisher JEDES mal begeistert, wrestlerisch weiß er zu begeistern und as Publikum ist auch bei jeder Aktion gespannt was er als nächstes zaubert. Sehe ihn in ein paar Jahren ganz oben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LebendeLeichewrote on 10.03.2010:[7.0] "Er hat auf jeden fall viel drauf aber kann irgendwie mich noch nicht ganz mitreisen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: rv27wrote on 06.03.2010:[10.0] "Bester Wrestler der Welt. Das sagt denk ich mal alles. Und auf ihn triffts nunmal zu. Er kann aus jedem Gegner ein gutes Match ziehen. Freu mich auf jeden Fall in der WWE zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Mountiewrote on 01.03.2010:[10.0] "Im Ring ist Bryan Danielson/Daniel Bryan das Beste, was der westliche Wrestlingkulturkreis zu bieten hat. Punkt. Und zu dem Paket an Fähigkeiten, das ihn dazu macht, gehört auch ausdrücklich ein Charisma, das ihm nur Leute absprechen, die nicht wissen oder wissen wollen, was man unter diesem Begriff eigentlich versteht. Was richtig ist, ist dass Bryan im WWE-Umfeld erst zu einem Star heranwachsen muss. Aber nachdem früh erkennbar geworden ist, dass die WWE den nötigen Push in die Richtung geben will, bin ich vollauf überzeugt, dass es damit auch was wird. Schon klar, Bryan sieht nicht aus, wie man sich den typischen WWE-Star vorstellt, aber das ist kein Hindernis, wenn der Wille da ist, diese vermeintliche Schwäche als Besonderheit zu vermarkten - siehe Foley, siehe Mysterio. Bryan fehlt noch Einiges zur WWE-Spitze? Nein, nur Zeit. Es wird wohl länger dauern, als sich die übereuphorischen Fans es wünschen, die Bryan schon dieses Jahr gern im WrestleMania-Main-Event gesehen hätten, aber Bryans Weg, das Erbe von Chris Benoit anzutreten ist vorgezeichnet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Whopperlewrote on 01.03.2010:[10.0] "Toller Wrestler! Klasse Draw der WWE. Bin durch ihn momentan am meißten gespannt auf NXT und wie die Storyline zwischen ihm und the Miz weitergeht..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Big Daddy Swrote on 01.03.2010:[10.0] "DER Gewinner der ersten NXT Folge. Die Art und Weise wie er Miz kontra gegeben hat war sensationell und zu seinen Ringfähigkeiten muss man ja nicht mehr viel sagen, die sind ja schon fast legendär. Ich geb zu, dass ich erst skeptisch war ob er als Indy-Ikone einen Stich sehen könnte in der WWE, aber nachdem was ich gesehen hab mach ich mir da überhaupt keine Sorgen mehr. Und auch wenn Miz von seinen Fähigkeiten her Bryan unterlegen ist, durch seine "Machtposition" als Mentor, der ihn immer wieder durch "Prüfungen" rasseln lässt, ist dies die vielversprechendste Zusammenstellung der ersten NXT Staffel. Gut gemacht WWE^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Rated R Superstar EDGEwrote on 27.02.2010:[10.0] "Für seine Zeit bei ROH muss ich ihm einfach 10 Punkte geben. Ich glaube nicht das er es bei der WWE zum Maineventer schaffen wird denn dafür fehlt ihm einfach das Charisma die Ausstrahlung und der Look. Seine Größe ist nicht mal das Proplem den ein Rey Mysterio, Eddie Guerrero, Chris Benoit oder auch ein Chris Jericho sind auch nicht viel größer als er Rey und Eddie sind sogar kleiner. Er hat halt einfach zu wenig Muskeln und ist zu blass. Trotzdem solte er es mit seinem Können mindestens zum IC oder US Champion schaffen. Wer weis vileicht nimmt er ja sogar mit einem Partner Miz und Show die Tag Team Titel ab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Wise Warriorwrote on 26.02.2010:[7.0] "Sorry, kann mir den laufenden Meter mit dem Sechziger-Jahre-Körperbau einfach nicht ernsthaft als Heavy-Weight-Champion vorstellen. Die Show und die Geschichten stehen beim Wrestling im vordergrund - sonst wäre es Kampfsport..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mukahidowrote on 23.02.2010:[10.0] "Meiner Meinung nach DER Wrestler schlecht hin. Hat alles was man braucht um als Wrestler erfolgreich zu sein: gute Micwork, ein gute Gespür für die Fanreaktion und ein Arsenal an Manövern das einem schwindelig wird. Die einzige Frage die sich mir noch stellt ist ob er fertig bringt ein WWE "Supestar" zu werden. Denn die Frage bleibt ob das Mainstreampublikum ihn auch annimmt , da bei diesen Personen leider zum Teil Charisma und visueller Eindruck wichtiger sind als die Fähigkeiten im Ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Switchbladewrote on 22.02.2010:[10.0] "Danielson ist klasse und charismatisch als Heel und als Face, das kann man ihm gar nicht vorwerfen. Kann ich überhaupt nicht verstehen, dass manche meinen er hätte kein Charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rated R Champwrote on 14.02.2010:[10.0] "Trägt den Spitznamen "Best in the World" nicht zu unrecht. Haben bislang noch kein einziges schlechtes Match von ihm gesehen(zugegeben, die Anzahl von Matches die ich von ihm gesehen habe hält sich in Grenzen, es waren aber mittlerweile doch einige, so dass ich mir mal ein Urteil erlaube. )und selbest Top-Leute wie der Undertaker, Triple H und Bret Hart hatten in ihren, zugegeben längeren, Karieren einige Ausfälle. Leider wird er es Aufgrund seiner Körpergröße wohl nie im Spotlight einer der Mainstream Promotion stehen. Aber wenn man mal ein Interview von ihm gelesen hat, weiß man, dass er es darauf auch gar nicht anlegt. Kleiner Anhang: Die WWE will ihn doch jetzt nicht ernsthaft Daniel Bryan nennen? ! ? Bitte nicht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KASHwrote on 24.01.2010:[10.0] "BEST IN THE WORLD ! BEST IN THE WORLD ! Den Titel hat er sich wahrhaftig erarbeitet. Zudem hat der Kerl auch noch ziemlich viel Charisma. Bin mal gespannt wie er die Stufe Main Stream aufnimmt. Denke mal er ist Shawn Michales Thronfolger in der WWE was Showstealer Matches betrifft und da er auch nie wirklich Blut benötigt um ein ***** Match zu zeigen passt er da eh hin. Ich gönne ihm das er endlich weltweitem Ruhm und Geld bekommt. WWE wird ihn garantiert nicht fehleinsetzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RoHSupporterwrote on 24.01.2010:[10.0] "Einfach das Beste was die Wrestling der Welt zu bieten hat! Einfach jedes seiner Matches sind ein absoluter Hammer, bleibt nur zu hoffen das ihn die WWE gut einsetzt und ihn nicht IC-Champ sondern WWE Champ werden lässt den besser als ein Sheamus ist er alle mal. Wenn ich 100 Punkte geben könnte würde ich ihm 100 geben aber so sind es NUR 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Instant Classicwrote on 29.11.2009:[9.0] "Wirklich einer der besten Wrestler heutzutage und mit einer Menge Charisma gesegnet. Dadurch denke ich, dass er sich doch durchsetzen wird in der WWE, auch wenn ihm der Superstar-Look fehlt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Invaderwrote on 09.11.2009:[10.0] "REally hate that he is going to wwe:( american dragon with a sting:P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Neuhofwrote on 26.10.2009:[10.0] "Lasst ihn die WWE outwrestlen, er hat das Zeug dazu, weil er einfach alles kann. Wahrlich einer der besten der Welt, ein richtig zäher Hund, ein technisches Genie, und vor allem auch eine Präsenz und eine Glaubwürdigkeit, die man nur selten sieht. Man glaubt ihm einfach, dass er sich für den besten hält. Best Wrestler In The World Today!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BaptisteZorGwrote on 21.10.2009:[7.0] "Für mich etwas "overrated" und schon allein aufgrund seiner Statur wird es für Ihn nahezu unmöglich werden in der WWE groß rauszukommen. Mich würde es jedenfalls überraschen wenn über einen besseren "Jobber-status" hinauskommt. Glaube die WWE wird Ihn mehr oder weniger verheizen. Es gibt einfach zuviele Dinge die gegen Ihn sprechen, da wäre wie beschrieben die Physis, die für mich farblose Erscheinung und zu wenig Charisma. Und jeder weiß das bei der WWE zuerst die Show und dann irgendwann mal das Wrestling kommt..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Aesopwrote on 26.09.2009:[10.0] "Bryan Danielson ist der Wohl technisch beste Wrestler den es gibt. Aber in Sachen Charisma und Ausstrahlung, also im Gesammtpaket überzeugen mich Leute wie Chris Jericho noch mehr als Danielson es schon tut. Aber trotzdem komme auch ich nicht drumherum ihm eine 10 zugeben, da seine Leistungen einfach unglaublich faszinierend sind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Muthmasterwrote on 23.09.2009:"Kein Charisma, aber sowas von kein Charisma. Im Ring auch niemals "Best in the World". Overrated bis zum geht nicht mehr. Dennoch kein schlechter im Ring."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: homicidal cena michaelswrote on 11.09.2009:[10.0] "Bryan Danielson ist ein Top Wrestler, er kann mit jedem ein sehr gutes Match zaubern. Er müsste sich aber noch an seinen Mic Skills verbessern. Viele Leute freuen sich das er zu WWE geht, aber ich nicht weil 1. Er wird nicht mehr so gute Matches haben und wird gegen Leute wie John Morrison verliren 2. Er wird von HHH untengehalten und muss mit Leuten wie z. B. Dibiasie und Rhodes in den Ring, sie gut aussehen lassen und das wars. 3. Er ist bei einer Liga die nicht mal annährend so gutes Wrestling abliefert wie Roh. Als ich gehört habe das sie Bryan sehr talentiert nennen, musst ich lachen hallo ? Sie nennen den Besten Wrestler auf der Welt und das ist ernst gemeint talentiert da sieht man was WWE denkt. Ich hoffe das er Erfolg haben wird und dann nach ein paar Jahren zu ROH zurückkehrt weil er es nicht aushält bei so einer schlechten Liga zu sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rattlesnakewrote on 05.09.2009:[10.0] "Phänomenal gute Inring-Skills. Charisma ist auch gar nicht sooo schlecht wie von einigen hier dargestellt. Wird wohl nie bei der WWE auftreten (ein Tryout hatte er ja schon), und das ist gut so. Er würde nur verheizt werden. Vinnie steht nun mal auf Steroidmonster, da hätte Danielson wohl keine Chance. Sagte ich schon, dass er phänomenal gute Inring-Skills hat? EDIT: Nun ist es doch passiert. Danielson wird bei der WWE antreten. Und ich bin darüber überhaupt nicht amused. Von seinem Repertoire wird er nun künftig eine ganze Ecke nicht mehr zeigen dürfen. Persönlich gönne ich es ihm natürlich, warum sollte einer, der ganz klar zur Weltelite gehört, nicht dahin gehen, wo er vernünftig Geld verdienen kann? Dennoch ist zu befürchten, dass er in der WWE untergeht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Turboladerwrote on 26.08.2009:"Ich verspreche mir einiges von ihm, wenn ich das hier so lese und werde meine Bewertung zu einem späteren Zeitpunkt abgeben *vormerk*"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Marco Ewrote on 12.08.2009:[9.0] "Unglaublich guter Techniker, sicher einer der besten der Welt. Was ihm zu nem wirklichen Topstar fehlt, ist einfach die Ausstrahlung. Die kämpfe die ich bisher von ihm live gesehen habe, haben mich von den Aktionen her, völlig überzeugt, doch trotzdem finde ich ihn als Person ziemlich langweilig im Ring. Kämpfe sind schön anzusehen, aber wirklich mitreißen tun sie mich nicht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Juvicidewrote on 21.07.2009:[10.0] "Wird zurecht als der beste der heutigen Zeit bezeichnet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AxXxelwrote on 03.05.2009:[9.0] "Der einzige Wrestler der wohl irgendwie zugleich under- und overrated ist und ich muss sagen beide Seiten verstehen zu können, tut aber hier nicht zur Sache. Fakt ist, dass Danielson mit jedem Mann ein tolles Match auf die Beine stellen kann und dabei noch nie uninteressant wirkte. Über sein Charisma lässt sich streiten, Alles in Allem ein toller Athlet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NickediXXLwrote on 10.04.2009:[10.0] "Er ist einfach der Beste, da fuehrt kein Weg dran vorbei!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Tomkowrote on 03.02.2009:[10.0] "Trägt nicht ohne Grund den Spitznamen "Best Wrestler in the World" !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Manolowrote on 01.01.2009:[10.0] "Best in the world. Hat in den letzten Jahren auch deutlich an Charisma gewonnen, sodass ich bei ihm keine Schwäche mehr erkennen kann. Mehr gibt es dazu nicht zu sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 150pwrote on 14.12.2008:[10.0] "Dem American Dragon Charisma abzusprechen ist lächerlich. Man erkennt gerade in diesem Jahr seine Freude, die ihm die Fans bieten und die er am Wrestling hat. Die Leistungen im Ring sind weiterhin großartig, es gibt zur Zeit kaum einen anderen, der so viele Match of the year contests aufstellen kann, bzw. aufgestellt hat, wie er. Bester Wrestler dieser Erde!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Eddiewrote on 28.11.2008:[10.0] "Simply the best in the world. Kaum einer schafft es, das die deutschen Fans es lieben, einen Superstar so zu hassen. Und es macht wirklich Spaß, wenn man bei wXw am Ringrand steht und ihm den Mittelfinger zeigt. Neben diesen Schauspiel Künsten, hat er natürlich noch viel bessere In-Ring Skills, die ihresgleichen suchen. Es bleibt hier einfach nichts anderes übrig als der Jackpot, 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Chris Herowrote on 26.11.2008:[10.0] "Für mich nur 2nd Best in the World, wie man wohl auch an meinem Nick erkennen kann. Dennoch ein hervorragender Performer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Blazewrote on 19.11.2008:[10.0] "Bryan Danielson ist ein echter Ausnahmeathlet, genau wie für mich auch ein Shawn Michaels. Wrestlerisch gesehen führt an ihm eh kein Weg vorbei, egal ob er bei PWG, ROH, Noah oder auch "nur" bei wXw ein Match bestreitet. Früher konnte er mich nicht besonders viel bis gar nicht beeindrucken, seit einiger Zeit sieht das aber ganz anders aus. Was In-Ring Skills angeht ist er für mich eh der Beste (Matchaufbau, Technik, Spannung, Dynamik, Movearsenal usw. ) und an seinen Look und Körperbau kann man sich auch gewöhnen. Es muss nicht jeder gleich eine Statur wie ein Batista oder Brock Lesnar haben, um im Wrestling erfolgreich zu werden - und das ist auch verdammt gut so. Ob er sich im Main Stream beweisen würde denke ich aber auch. Ich hoffe eigentlich nur, dass er nicht zur WWE geht, sondern vielleicht noch ein paar Jahre im Indy Bereich bleibt. Für mich bleibt er ohne jeden Zweifel mein Lieblingswrestler und BEST IN THE WORLD!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: adamwrote on 26.10.2008:[10.0] "Für sein Alter erstaunlich weit, könnte schon bald "ganz oben" stehen, obwohl er das ja eigentlich schon indirekt ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: mugel 187wrote on 02.10.2008:[10.0] "Ich mochte ihn früher einfach nicht aber seid er aus Japan zurück ist gefällt mir sein stil und können richtig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Typicalwrote on 18.09.2008:[10.0] "Wer hier weniger als 8Punkte gibt sollte nochmal überdenken, ob Wrestling der richtige Sport für ihn ist..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JohnnyCashwrote on 11.08.2008:[7.0] "Hat EINIGES drauf, sprech ich ihm gar nicht ab, aber mitreißen kann er mich nicht. Finde er packt einfach zu viele Submission-Moves und zu viel Mat-Wrestling ein. Glaub entweder ist man Fan oder halte nicht. Geb ihm aus Respekt, weil er sein Handwerk versteht, trotzdem 7 Punkte."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: wXw Fanwrote on 22.07.2008:[10.0] "Weltklasse Mann, Charisma, Micwork, In Ring Können, stimmt einfach alles beim American Dragon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Aaronwrote on 22.07.2008:[10.0] "Danielson betitelt sich selber als besten Wrestler der Welt und ich gebe ihm in dem punkt vollkommen recht! Wer behauptet Danielson habe kein Charisma, der soll sich doch am besten mal Glory By Honor V Night 2 anschauen und danach reden wir nochmal über das Thema! Für mich ist er das Maß aller Dinge!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: e-trom995wrote on 28.06.2008:[9.0] "Grandioser Wrestler. Wer weiß ob er bei der WWE unterschreibt bzw. was dann aus ihm wird... er hat aufjedenfall das Potenzial es in der Liga zu schaffen, trotzdem muss er sich erstmal beweisen!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Nedgewrote on 13.06.2008:[10.0] "Ich mag ihn und seine MAtches einfach. Er ist einfach ein Topwrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ecw foreverwrote on 02.06.2008:[6.0] "Ein genialer Wreslter, nur kann ich seine Matches nicht anschauen da er mich langweilt, er packt mich nicht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Urzawrote on 26.05.2008:[9.0] "Ein ausgezeichneter Wrestler mit tollen Skills (auch mit Charisma), ich seh' ihn gerne, aber bitte nicht in der WWE!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Matt Hardywrote on 12.05.2008:[10.0] "Ohne Zweifel der Best Wrestler in the World. Genauso überragend wie er im Ring ist, überzeugt er auch am Mic, und wer ihm Charisma abspricht hat irgendwie keine Ahnung wovon er redet. Außerdem isses so genial Danielson auszubuhen :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Eaterwrote on 11.05.2008:[10.0] "Eindeutig einer der besten technisch versierten Pro Wrestler unserer Zeit. Man muss sich nur anschauen, wie oft sein Name in MOTY-Listen oder ähnlichem erscheint."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mr Bonewrote on 11.05.2008:[6.0] "Ein Klasse Wrestler aber für mich zählt das Gesamtpaket also Charisma, Micwork, Moveset, Glaubwürdigkeit und noch vieles mehr. Imo bräuchte er mal wieder einen größeren Push und eine darauffolgende Fehde."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dave Concordiowrote on 06.05.2008:[6.0] "Im Ring gut, auch wenn sein Stil mir zu fad ist. Charisma und Ausstrahlung sucht man bei ihm vergebens."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Griesewrote on 05.05.2008:[10.0] "Nicht zu unrecht "The Best in the World". Einfach großartiger Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MemphYwrote on 18.04.2008:[8.0] "Guter Wrestler ja, kann sich aber vor allem gimmiktechnisch steigern und so charismatisch ist er auch nicht !"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Muffiwrote on 13.04.2008:[10.0] "Der beste nordamerikanische Wrestler, mehr gibts da nicht zu sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Urbaner1982wrote on 04.04.2008:[10.0] "Ganz groß. Einer der für mich absolute Ausnahmeathleten. Kann alles, zeigt alles, weiß sich zu präsentiern, Einzelgängertyp... super"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rob the bobwrote on 04.04.2008:[10.0] "Trägt zurrecht den Spitznamen "the best in the World" Kann alles mitgehen, brawlen, ein Technik feuerwehrk abfeuern oder Mattwrestling. Er kann alles mit gehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Schandmaulwrote on 17.03.2008:[6.0] "Guter Wrestler... aber imo 1. nicht sooo gut wie er selbst und seine Fans sich sehen... 2. als Heel gut, als Face imo eher schwach da er immer recht arrogant rüberkommt und das daher als Heel besser wirkt"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Lupus Immortaliswrote on 16.03.2008:[10.0] "Etwas anderes als die Höchstnote für den American Dragon geht nicht. Ich war zunächst skeptisch, da mir die aufgezeichneten Matches, die ich von ihm gesehen habe, nicht wirklich zugesagt haben. Als ich jedoch spürte, was der Mann für eine Live-Präsenz hat, verbunden mit den unglaublichen In-Ring-Fähigkeiten, dämmerte es mir: Dieser Mann ist derzeit der beste Wrestler der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: EvenflowDDTwrote on 26.02.2008:[10.0] "Seine Matches mit KENTA sind der Hammer! Einer der besten Technischen Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Amurebkuwrote on 23.02.2008:[10.0] "Dieser Wrestler ist einfach der Hammer! Der American Dragon ist für mich einer der besten Wrestler der Welt. Grandiose Matches hat er schon gezeigt. Bin gespannt was noch alles kommt. Er ist einfach klasse. Auch die Ausstrahlung ist super. Bin gespannt ob sein Weg eines Tages in eine große Liga wie die WWE oder TNAW führt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Pridewrote on 03.02.2008:[10.0] "Bryan ist in meinen Augen einer der besten Wrestler der Welt. Er hat alles, was ein guter Wrestler haben muss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Berndwrote on 14.01.2008:[10.0] "The Final Countdown als Theme geht halt gar nicht. Die 10 verhindert es aber auch nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AnFuwrote on 14.01.2008:[8.0] "Die gute alte Ausstrahlung mal wieder, sonst fehlt ihm nix (siehe Kenta Matchserie). Er ist ohne Frage Klasse, aber in der WWE hat ers auch nicht geschafft. 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Remootwrote on 05.01.2008:[8.0] "Wrestlerisch sicher einer der absolut topadressen... leider nicht mit der figur ausgestattet die mann für eine grosse Karriere (WWE) braucht. Würde wohl nur zur cruiserweights division reichen bei ihm. Schade denn mitlerweile ist auch sein micwork wirklich stark geworden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Texas Tornardowrote on 02.01.2008:[8.0] "Edit: Nach den letzten matches die ich gesehen hab gibt es doch eine 2!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AMMOwrote on 02.01.2008:[10.0] "Für mich, wenn auch nicht alleine, der beste den es momentan gibt. Seine Matches sind iwie immer verchieden, ich weiß nicht, wieso aber so ist es! Technisch natürlich absolut genial! Und auch mit einer ordentlichen Portion Charisma versehen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jimpanse1980wrote on 01.01.2008:[10.0] "Wer mit JEDEM Gegner laufend 4-5*-Matches zeigen kann, der hat nur die Höchstwertung verdient. Und alle die der Meinung sind, Danielson hätte kein Charisma und kein "echtes" Gimmick, die sollten sich dann doch lieber den Boogeymann angucken. Danielson bietet PUREs Wrestling in seiner reinsten Form und kann aber wirklich jede Gangart mitgehen. Ganz klar einer der Besten, wenn nicht sogar der Beste !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Blue Meaniewrote on 29.12.2007:[10.0] "Zwar wurde im das Charisma wohl nicht in die Kinderwiege gelegt, aber der ist der best fŽn Pure Wrestler auf diesem Planeten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kathywrote on 27.12.2007:[10.0] "Von Bryan kann man einfach nicht genug bekommen! Da stimmt einfach alles.... bloss wo soll das noch hingehen, der Junge ist gerade mal 26 Jahre jung? Tierisch genial!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rancorwrote on 11.12.2007:[10.0] "Danielson ist ein absoluter Ausnahmekönner. Die Höchstnote ist auf jeden Fall verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SternessDustOmegawrote on 06.12.2007:[10.0] "Trotz einer Hautfarbe die einem Schweizer Berghüttenkäse vor Neid noch weiter erblassen lässt: Charismatisch bis zum abwinken der Mann. Wrestlerisch muss sich glaub ich nichts mehr sagen... Ansehen und genießen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Baron-Bwrote on 20.11.2007:[10.0] "Wenn man mehrere Dutzend Matches gesehen hat und es ist kein einziges in Erinnerung geblieben, welches schlecht war und man sich zudem an eine ganze Reihe von Matches erinnern kann, die absolut herausragend waren, dann ist dieses Bewertung so und nicht anders gerechtfertigt. Ich hoffe auch nicht, dass man ihm irgendwann einmal in irgend einer Liga eines dieser lächerlich knallbunten Comic-Gimmicks verpasst, wie man es bei Austin Aries oder Jay Lethal für notwendig befunden hat. Bryan Danielson ist gut, weil er es kann, unbunt, pur und technisch herausragend. Alles andere wäre nicht Bryan Danielson."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Benny110106wrote on 17.11.2007:[8.0] "Hat die Klasse im Ring, wie früher nur Leute, wie Harley Race z. B. Er ist einfach der beste Us-Wrestler des Neuen Jahrtausend. Ich hoffe er geht nie zu WWE, da passt er nicht hin. Ich hoffe er wrestelt lange bei RoH."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Babuswrote on 14.11.2007:[8.0] "Wrestlerisch auf jeden Fall einer der besten. Aus irgendeinem Grund fieber ich beim American Dragon zwar nie wirklich mit, aber dennoch bleibt unter dem Strich die Erkenntnis, dass es wohl keine schlechten Danielson-Matches zu geben scheint. Abstriche muss ich, auch wenns einigen bestimmt nicht Recht sein wird, allerdings - wie so viele - beim Charisma machen. Intensität hat er auf jeden Fall, aber das Charisma eines Weltstars kann ich bei ihm dennoch nicht ausmachen. - Auch wenn er gefeiert wird, ist es was anderes das Manhatten Center (mit RoH-Bonus) für sich zu gewinnen oder den Madison Square Guarden zum Ausflippen zu bringen. Nichtsdestotrotz ist Danielson ein Großer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Don Fkwrote on 29.10.2007:[10.0] "Sehr geiler Wrestler aus dem mal ein ganz großer wird, wenn das noch größer geht ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Burzi1wrote on 26.10.2007:[8.0] "Mochte ihn vor einiger Zeit eigentlich nicht so, aber heute muss ich sagen: er ist einfach ein sehr guter Wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CaptainCarnagewrote on 27.09.2007:[10.0] "Viele würden von sich behaupten der beste Wrestler der Welt zu sein, aber nur einer behält dabei recht und das ist nunmal Bryan Danielson."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: caterwrote on 15.09.2007:[10.0] "Hat mir am Anfang gar nicht so besonders gefallen aber mittlerweile seh ich ihn sehr gerne. Begnadeter Techniker, der auch einen Bodyslam gut rüberbringt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Manuelwrote on 06.09.2007:[10.0] "Hab letztens ein Match gegen Kenta gesehen und nach einem Match einer meiner Fav Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Carlito Cenawrote on 05.09.2007:[10.0] "Hervorragender In Ring-Worker, mitunter das beste, was sich derzeit im Wrestling findet. Kann bei seinen Matches hervorragend begeistern und ist nebenbei auch noch ein verdammt harter Hund, enn man sich anschaut, mit welchen Verletzungen er angetreten ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Doriwrote on 11.08.2007:[10.0] "Sry, aber wer da keine 1 gibt, ist für mich fast schon ein Banause. Ich meine klar, manche mögen halt das Spot Wrestling, aber Danielson ist einfach so unglaublich gut, das ist eine 1 mit * und nichts anderes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: dariawrote on 11.08.2007:[10.0] "just genial - unvergessen YMCA in Steinhude, seine heel-promo bei der GSW in Duisburg, und wrestlen kann er auch noch"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rob Van Duesenschrauberwrote on 10.08.2007:[10.0] "Nachdem ich ein paar aktuellere Matches gesehen habe, nehm ich mein altes Urteil zurück. Höchstnote."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: shannonmoorewrote on 29.07.2007:[8.0] "Ist villeicht wirklich der beste Wrestler in der Gegenwart aber zu wenig Charisma finde ich."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Parvexwrote on 23.07.2007:[10.0] "Er hat schon nicht ganz unrecht, wenn er sich hinstellt uns sagt "Best Wrestler in the World. ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Moonbloodwrote on 28.06.2007:[10.0] "Man kann nur den Hut ziehen. Ich muß zugeben, daß mir technisches Wrestling im Grunde genommen gar nicht so sehr zusagt. Danielson weiß mich dennoch voll und ganz zu überzeugen. Die teilweise ewig-langen Chain-Wrestling-Phasen machen mir zwar nach wie vor gelegentlich zu schaffen, aber gerade die Schlußphasen seiner Kämpfe sind so gut wie immer intensiv, extrem spannend und nahezu "perfekt". Mir fällt gerade kein Match von ihm ein, das nicht mindestens das Prädikat "gut" verdient hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ShaneOwrote on 28.06.2007:[8.0] "Wahrscheinlich der besten reine Wrestler auf Gottes grüner Erder. Leider ziemlich Charismalos und nicht gut am Mic - aber hey, der Mann ist im Ring einfach eine Offenbarung!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MrFoxwrote on 26.06.2007:[8.0] "Langsam gefällt er mir richtig... guter Wrestler, leider habe ich noch nicht so viele Matches von ihm gesehen!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Grossartig im Ring, Am Mic ein Gott und ein Charisma, weswegen ich fast meine Sexuelle Orientierung geändert hätte. Festzuhalten ist, Der Mann ist ein Gott"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Trevedaswrote on 24.06.2007:[8.0] "Sollte sich beim MicWork enorm steigern, alles andere ist schon Top."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Showstopperwrote on 24.06.2007:[10.0] "Natürlich ist er am Mic kein Chris Jericho oder The Rock, aber er wirkt dennoch glaubhaft und kann dies durch seine Technik auch untermauern. Ein wahrer Mr. Wrestling!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HubertHuhnwrote on 24.06.2007:[10.0] "Der beste Wrestler auf dem Planeten zur Zeit! Kann der Beste aller Zeiten werden! Seine Heel Attitude mit "the Champ has still 5" usw. ist einfach zu geil."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wrestlingmashinewrote on 24.06.2007:[10.0] "Für mich der Beste Wrestler der Welt, neben Kurt Angle. Jedoch finde ich den American Dragon noch ein wenig besser. Ich habe Freunde, die sagen, dass seine Match eher langweilig seien, aber ich liebe seine Matches und bin ein großer Fan von ihm! Er kann wirklich jeden Move ausführen und kann so immer was neues bringen! Also von mir volle Punktzahl! Und ich hoffe, dass er nicht zur WWe oder TNA geht, sondern im Indy Bereich bleibt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: El Pargiwrote on 24.06.2007:[4.0] "Meiner Meinung nach kein Charisma. Kein spezielles Gimmick... Overrated halt. Wie Kurt Angle aber besser."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Alex Shelleywrote on 24.06.2007:[10.0] "Mein persönlicher Platz 2 - Wrestler nach Chris Hero. Gerade in 2006 mit Geld nicht zu bezahlen. Danielson ist Mr. ROH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Knurkselwrote on 24.06.2007:[10.0] "Könnten bitte auch die Leute einen Kommentar abgeben, die hier nicht mit 10 bewertet haben? ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Crown Jewelwrote on 24.06.2007:[10.0] "Hier gibs nichts zu begründen! .... einfach der beste Wrestler des Planeten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: suntan superstarwrote on 24.06.2007:[10.0] "der wrestler schlechthin. Eine wwe karriere wird auf Grund seines für ihre Verhältnisse schmächtigen Körperbaus sehr schwer werden. Dennoch wird chris benoit und kurt angle als beste wrestler bald ablösen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Anti-Championwrote on 24.06.2007:[10.0] "Im Lexikon neben dem Wort Wrestling wird in 2 oder 3 Jahren sein Foto zu sehen sein, Danielson ist 100% Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ValiumSickwrote on 24.06.2007:[10.0] "Bryan Danielson ist einfach nur göttlich. So ein Charisma gibt es nirgendswo anders, keiner zeigt so geile Promo's und im Ring ist er sehr gut! 10 Punkte von mir."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Marcwrote on 24.06.2007:[4.0] "Interessiert mich eigentlich null. Konnte mich bisher live nicht mitreißen."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: aulitwrote on 24.06.2007:[10.0] "Als Face zu Beginn farblos, als Heel weltklasse. Danielson ist einer der besten Wrestler der Welt. He never fucks up..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Keithnelson18wrote on 12.02.2025:[10.0] "One of the best wrestlers WWE has on their roster today. Most of my favorite matches in WWE involve him, he makes a match that seems alright on paper and turns it into an amazing match that makes their opponent look legit. He saved the Intercontinental Championship with his 666 Day reign was putting out banger after banger matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Purgatory753wrote on 12.02.2025:[8.0] "i really dont get why his score is so high. hes great in the ring, good on the mic, has a decent look and moveset, but nothing about him really screams "one of the best in the world." to me"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Ghaith000wrote on 11.02.2025:[10.0] ""Gunther is the best wrestler in the company currently and one of the best wrestlers in the world. He presents pure wrestling, free of clown moves. His wrestling style is considered one of the best styles in the history of the sport.""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: finbarwrote on 09.02.2025:[10.0] "one of the world's best wrestlers - a joy to watch and perhaps the greatest professional wrestler (not named Bryan Danielson) in the history of WWE. shame his WHC run has been underwhelming thus far, but give him a true David/Goliath match (see Tyler Bate, Ilja Dragunov) and sparks will fly."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Nickswrote on 06.02.2025:[10.0] "A truly incredible wrestler, who always manages to offer great matches and great performances. In terms of pure wrestling in WWE at the moment he is the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: bigredtalk89wrote on 27.01.2025:[8.0] "Gunther is objectively great, which is what makes him so tough to rate. His work rate is among the best in the world. I haven't seen a great promo from him, yet he's presented in such a way that it doesn't really matter. He's more intimidating when he's barely talking. He single-handedly has given the Intercontinental title prestige again, especially with his matches at Clash at the Castle and Wrestlemania. A throwback to a distant era, only bad booking can stop him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: driftydeadwrote on 26.01.2025:[10.0] "The best wrestler in the world, if you loved classic AJPW, early NOAH, The Four Pillars of Heaven. You will instantly love Gunther. The presence, the looks, the moves. He's got it all. Gunther would be a top wrestler in any era or timeline in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: UltraMark1wrote on 24.01.2025:[10.0] "Gunther is one of the best Wrestlers in the world but for some reason it's seems like HHH has watered him down and not let him have as good matches as we know he can have in the last year or so - his world title reign has been underwhelming unfortunately compared to his IC title reign - regardless he's still easily a 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MaNemJeffMaddoxwrote on 20.01.2025:"[10.0] This dude is a beast. Old school grit, awesome presence, a true world champion, no matter what promotion he'd be working for. Definitely one of the best in the world today, and would probably be one of the best in the world in any era of of professional wrestling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: mj2609wrote on 19.01.2025:[10.0] "An all-time great in-ring worker who would have been a main-event heel in any era of wrestling. His matches with Ilja are some of the best in the company's history and his NXT UK title run is historic. He then had one of the greatest main roster callup in the company's history and was immediately strapped up with the IC title immediately and then went on to have the greatest midcard title reigns in WWE history. Had all-time classics with Sheamus and Drew Mcintrye, and then dropped it to Sami in another WM classic. He then went on to have a killer KOTR tournament which ended with him emerging as the winner. And he is now the World Heavyweight Champion and has now added a lot of personality to his character with his promos with him becoming an overconfident smarky a-hole."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: 77mega6wrote on 19.01.2025:[6.0] "Gunther's good, no doubt--he's got solid in-ring skills and a strong presence. But I'm just not sold on him yet. Watching his matches, there's something missing to make him great. And I gotta be real, it raises an eyebrow as to why Triple H is so high on him. Don't get me wrong, I see potential, but for someone to be pushed like this, there has to be that wow factor. Let's see if he can prove me wrong, but for now, I'm not fully convinced. Border line up session from triple H and regal"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Jcoo91wrote on 16.01.2025:[3.0] "Very good in-ring wrestler but his world title reign is so boring and underwhelming. I don't see him as a "Main Eventer". His only main event on a PLE was vs. Randy Orton at Germany & Against Cody Rhodes in a champion vs.champion match. He don't add something extra to the World Title. Guy who almost never loses since arriving in WWE but still don't feel like a real main event guy. People don't take him as a Wrestlemania main event eventer even not for night 1. Almost everyone don't even put the World Heavyweight Championship at a Wrestlemania 41 main event even not for Night 1. Gunther is a good TV worker. but most of his PLE matches are not so good if you look back. I give credit to Sheamus for Gunther's hype. Great IC Champions but not a good World Champion. Even Bret Hart said he didn't liked Gunther's style and his countless chops to force a reaction from the crowd. His mic skills are ok but he is very dry. To be honest, I think Ludwig Kaiser is superior wrestler than Gunther and have much better personality and better mic skills. This rating is for Gunther's current World title reign. I think he should lose the title before WrestleMania. I don't see him as a WrestleMania main eventer even if The Rock is not part of the show."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Madripoorwrote on 15.01.2025:[10.0] "So, sooo good. One of the best in the world right now and in the near future. It's a shame than he works for a company in which he will always play second fiddle to homegrown talent, Roman above all others. He could be so much more."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: justputdanielwrote on 09.01.2025:"My current favorite. Everything he does is insanely believable and they way he controls the pacing of the match is incredible. He can put on a good match with anyone."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: NoOne2wrote on 08.01.2025:[10.0] "A powerhouse wrestler, a great wrestler and the best wrestler in WWE right now. He knows how a powerhouse should finish his match (often with a submission). He is a wrestler who, when he comes to a promotion where his moves are limited for a powerhouse, can adapt his moves very well according to the style of that promotion and in his career he has always performed wonderfully in all his matches and has always adapted his style and fighting in the ring according to the psychology of pro wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MEDaminewrote on 04.01.2025:[10.0] "An absolute force of nature in WWE, he's good at everything. His matches are mostly classics or great. His Mic-skills are very good, and they vastly improved since that feud against Miz, and reached its peak in his current WHC run, and also an underrated storyteller. His ability to connect with fans, further cements his status as a standout performer"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: AJN7wrote on 03.01.2025:[10.0] "The Ring General is the best professional wrestler on planet earth. Not much needs to be said, I absolutely love his old school style, and the gimmik of 'I can beat the shit out of you and there's nothing you can do about it'. Some things don't need to be overcomplicated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TripleCrownwrote on 27.12.2024:[9.0] "Awesome wrestler and a real throwback that was needed in this current generation of professional wrestling. The guy can go in-ring and his ability on the mic is really good. Looks so much better now he has lost a lot of weight. Really hated the Gunther name at first, as I had gotten so used to him as WALTER. But it seems like the decision paid off, and I can't really imagine calling him WALTER now. I do feel like he needs the right opponent in-ring, if you put him in there with a below average wrestler then I don't think you'll be getting a good match out of him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Its Clobbering Timewrote on 26.12.2024:[10.0] "The Best Wrestler in the world right now and has been for the last five years. Walter/Gunther Style is so amazing, i love his hard hitting style so much and it's so unique nowadays because very few wrestlers have a similar style. It's a much more old school style that is so needed in todays professional wrestling. His chops are deadly they are so vicious but that's not all he has in his move set he's also a very good technical wrestler and submission specialist and who has a plethora of holds and submissions. He also goes up top occasionally and hits a splash. I also love how he doesn't have an primary finisher and can win with any move which just shows how powerful and brutal all of his moves are. Every move he hits it looks like his appointment wont be able to get up. He has also won championships all around the world and has an really decorated career. He really put the indies especially in Europe on the map and made them must see by having some of the best matches ever. WWE thankfully does an great job with him as well making him this unstoppable monster who can't be beaten and is the longest reigning and best NXT UK and Intercontinental Champion of All time. He is Currently World Champion and i am excited to see how good his reign with the belt is gonna be and how much more prestigious it is now that Gunther is holding it. Walter is definitely the hardest hitting wrestler of all time and one of my favorites as well. He is simply the Best"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Daniel IWwrote on 03.12.2024:[10.0] "GUNTHER stands as a symbol of dominance and excellence in professional wrestling. As the "Ring General, " he brings an unmatched aura of authority, blending brutal precision with an old-school approach that commands respect. Whether delivering devastating chops or displaying his superior ring psychology, GUNTHER elevates every match hes part of. His reign as Intercontinental Champion showcases his status as one of the most dominant forces in WWE history, redefining what it means to be a champion. With discipline, power, and an undeniable presence, GUNTHER isnt just a wrestlerhes a force to be reckoned with, leaving an indelible mark on wrestlings modern era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Fejerskovwrote on 30.11.2024:[10.0] "On his way to being the GOAT. He is one of the best on the microphone his promos "with" Bret "The Hitman" Hart, Damian Priest and Goldberg is some of the best I have seen. "I hope you're a better father than you are a wrestler" Chef kiss. So good, And he is great in the ring. So great I always look forward to see a match with him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: chachuonlinewrote on 28.11.2024:[4.0] "Gunther is a good wrestler with plenty of critically acclaimed matches to his name. A well respected performer within the industry and by the fans. From the outside looking in - I honestly understand it and I understand his appeal. He's a big man who hits hard and that's rare to come by in today's landscape. What's his biggest strength, in my opinion, is that he's very consistent, he consistently has good matches. I just can't bring myself to emotionally connect with Gunther. His in-ring work is unequivocally strong, replete with power and technical accuracy, but for me, it often feels so monotonous and lacking in variety. His matches generally follow a predictable pattern of slow, methodical domination built around strikes and power moves that, while impactful, don't offer much in terms of unpredictability or excitement. This repetitive approach leaves little room for the dynamic back-and-forth action that can make matches feel emotionally engaging. While his hard-hitting style establishes him as a dominant figure, I find myself disengaged because there's little drama or variation in his performance, making it hard to fully invest in his bouts."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: AceHagannwrote on 26.11.2024:[7.0] "Gunther/Walter is a solid worker. With an immaculate presence and mic skills. A brilliant heel who always has something to say that will turn any audience against him. His matches are quite solid most of the time. Personally, I am not a big fan of his moveset, but given his size and character, it works well enough."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: darkflame4527wrote on 22.11.2024:[10.0] "Gunther is probably the most convincing in-ring worker in pro-wrestling today. His style and technical abilities are second to none. He is literally the Wilt Chamberlain of wrestlers, able to change his in-ring arsenal a seemingly infinite amount of times seamlessly. From a brutal powerhouse to a calculated submission specialist, you'll never be bummed after a Gunther match. In this phase of his career, his promo work has exponentially increased to impressive heights, with his main thing being trolling anyone who he comes across (Bret Hart, Goldberg, Sami Zayn, Cody Rhodes, etc.) His callup to the main roster has produced some of the best matches in (at least) WWE history, at Ricochet on Smackdown, CATC 2022, WM39, WM40, and many more to come. His NXT UK run at this point is arguably more impressive. His 800+ day reign as UK champion was most remembered for the forever iconic Ilja Dragunov matches, as he truly embodied a monster during that time. Before that, his indie scene work with ZSJ, Darby Allin, Will Ospreay, and a plethora more I have no clue about was also goddamn good. The only blemish on his already decorated career was his Gha-Cha-Ping gimmick, which had a really short life but was really disinteresting to view. But that really didn't have any impact on his career or on wrestling minds worldwide, so it doesn't really matter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: LittleMobinowrote on 17.11.2024:[10.0] "The best European wrestler of the last 20 years. He is wonderful in all factors and it can even be said that WWE does not deserve him because Walter deserves much more than just winning a belt and he should own all the belts of Monday night Raw."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: browntheclownwrote on 05.11.2024:[10.0] "THE RING GENERAL GUNTHER , the greatest wrestler of this generation. His mic work currently is one of the best in the company. He can have a great match with anyone. I also really appreciate his chemistry with kaiser."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Ace00wrote on 04.11.2024:[10.0] "One of the best wrestlers in the world, simple as that. His character work and mic work is meh but his in ring ability covers that. Always reliable when you need a great match"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: nabigoyewrote on 03.11.2024:[10.0] "Der beste "Wrestler-Wrestler" momentan und dies auch schon seit einiger Zeit. Walter/Gunther ist unglaublich legit, zeigt immer großartige Performances und ist einfach das Herz und Blut von diesem Sport. Die Zeit bei wxw und den indies, sowie der nxt uk titelrun sind legendär und seit dem Mainroster callup, ist er mit abstand der Mann mit den besten und konstantesten performances. Matches haben immer ein großes feel und werden nie langweilig. Ich liebe diesen Style, daher ist Gunther ganz ganz wichtig und zurecht da, wo er ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Sweet Fighter Vwrote on 25.10.2024:[10.0] "Simply put, Gunther truly is a master of his craft. About as masterful as it gets, and already one of the greatest of all time. The man has been delivering MOTY contenders every single year since arriving in NXT as WALTER back in 2019, making him a symbol of excellence and the most consistent in-ring worker during that (ongoing) span. When he talks about the ring being sacred, he means it, and he treats it exactly as such (The Ring General is such a perfectly fitting nickname). His ability to bring the very best out of anyone he gets to work with, giving them some of the best matches of their careers, is on a level only a few all-time greats can match (Shawn Michaels, Kurt Angle, Daniel Bryan, AJ Styles etc...). Whether its a PLE match or a TV match, Gunther doesn't play around and delivers just about every time he steps in the ring. His commanding, hard-hitting, methodical, no nonsense style is a treat to watch (those devastating chops and clobbering lariats never fail to leave me flabbergasted). The way he has been booked ever since NXT has been pretty much perfect and a testament to how WWE trusts him, and he never failed them nor the fans; Legendary title reign as NXT UK Champion, legendary reign as Intercontinental Champion, and now World Heavyweight Champion. On top of that, his character work and mic skills keep getting better and better, and as of now, he has become a brilliant heel. The man doesn't have the look of a mega star, but he certainly has the class and the aura of one, and his capability to elevate and bring prestige to any title he holds, is in a class of its own, just like the credibility he brings to the table as that menacing force meant to dominate. The crazy thing is, I believe he's only getting started, and I can only hope that Gunther will rule WWE for years to come and become synonymous with that World Heavyweight Championship. Give the man some high profile feuds with the likes of Roman, Brock (dream match), Seth, Punk, Cody, Bron Breakker (later), Jacob Fatu (later) among others, and I'm sure he'll turn these opportunities into gold and further cement himself as one of the greatest to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: imperiumgoatwrote on 16.10.2024:"The perfect pro-wrestler. Gunther has always been a credible cornerstone of any event he is booked on. His matches are believable, his selling is tremendous and can evoke emotion in audience from any opponent, even the most unappreciated. He can always make someone while making himself. Looking forward to how he continues to make his mark on history."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Wrestlingfan0808wrote on 14.10.2024:[10.0] "The best wrestler in the WWE and one of the best wrestlers in the world. The compete package. He can do no wrong in my eyes. Hes very adaptable in who he wrestles, his approach is very serious minded because this sport is so sacred! We need more Gunthers in the business imo. Der Ringgeneral! Guuuuuuuuuuntha!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Bigdaddytrent999wrote on 09.10.2024:[10.0] "Literally allergic to boring matches. Gunther is the total package. His in ring work is an A+, his presentation is phenomenal, his promo work is much improved to the point to where they are a strength of his. His recent promos with Bret Hard and Goldberg are some of the better in recent memory."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Saladbagelwrote on 02.10.2024:[9.0] "Gunther is one of the most consistent wrestlers in the world when in comes to good matches. His ability to end a match with a simple move, yet make it believable is an extremely rare talent in his favor. The only reason I'm not giving him a 10/10 is because he's nothing special in terms of promo and character work."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: sharkboy22wrote on 25.09.2024:[9.0] "Gunther checks all the boxes for what a great wrestler is. He has presence, his in-ring work is extremely believable and unlike so many wrestlers today, there's no wasted motion with him. Amazing worker and deserves every bit of success he has achieved in the WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: danzitorockwrote on 24.09.2024:[10.0] "There are few wrestlers who are as good at beating the hell out of someone else as Gunther/Walter, this guy is just awesome, he exhales dominance, it's a wrestler made to be protected and dominant all the time, he's super imposing, I love everything about the Ring General, a pure wrestler. Walter is simply a wrestling machine, can make a good match with anyone, and it's pretty underrated as a character, he's very charismatic. His long reigns are awesome, he demolishes people without burying them, and it's a master of psychology. In my humble opinion, this is a wrestler that would thrive in any era at any company, he's just special, a total badass. He grew up idolizing guys like Stan Hansen and Kenta Kobashi, and easily became of the best wrestlers of his generation, a purist of this beautiful sport."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Galmondiwrote on 22.09.2024:[10.0] "The best wrestler in the world today. Everything he does is absolutely perfect. Don't see anyone at his level, he's amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: probablylukewrote on 20.09.2024:"I don't think there's been a wrestler that is quite as timeless as Gunther. Not only can he have great, downright hard to watch at times matches with fellow hulking beasts of men like Drew McIntyre or Sheamus. He has the ring IQ to piece together a match with wrestlers that love to fly high like Will Ospreay, Jordan Devlin and Ricochet to name a few. But if you drop him into an All Japan in the mid 80s, you could thoroughly imagine a classic with the likes of Jumbo Tsuruta, Terry Funk or Harley Race. He perfectly knows how to brutalize an opponent in the most overpowering fashions, but I think what works best about him is his dynamic of feeling unbeatable. It lends to being able to have long lengthy title reigns with many different opponents, creating a new feeling of "it may finally change hands" until it just slips away. That pop when he finally does lose? To Sami Zayn, Ilja Dragunov, those moments are career defining. For Gunther? It's just finally means we're moving to something better."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: manamimeltzerwrote on 12.09.2024:[6.0] "A technically sound professional wrestler who's got his fundamentals down perfectly. A very good professional wrestler. I personally don't enjoy his work, at least not nearly as much as others seem to do. He hits hard and that's what I like about him, but other than that i just simply don't find his approach or his control segments compelling or interesting. He's very monotonous and has very same-ish matches with almost everybody. He just never clicked with me on an emotional level. His work feels lifeless and a bit hollow to me. Maybe someday I'll come around."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jrssscwrote on 12.09.2024:[10.0] "Honestly my favorite wrestler in WWE right now and easily top 3 favorites across all promotions. He is a beautiful call back to wrestling of old mixing in technical wrestling and brawling. He is as entertaining as one can be in the WWE and will have a legendary career for years to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DXTFwrote on 03.09.2024:[10.0] "WALTER/Gunther is a real throwback to a bygone era in wrestling; his style isn't flashy, there's no ridiculous gymnastics, and you're not going to see him wearing outlandish attires, instead you're getting a big, stern Austrian who has the power to blow out his opponent's pectoral muscle with one of his brutal chops. At the time of writing, he's been a champion in WWE for around 75% of his tenure with the company, which is just insane, and it clearly shows that the company has a lot of faith in him. I must admit that I preferred when he was on the heavier side as he looked more physically imposing but I understand why it's better for him that he's slimmed down in size, and it certainly doesn't appear to have negatively impacted his in-ring work. It's great to see a guy like Gunther around to show that, even in this day and age, the ring is sacred and treats it as such."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: nothingleftinsidewrote on 31.08.2024:[9.0] "Does he have bad matches? I certainly haven't seen one if he has. Every one delivers- hard hitting strikes, impressive throws, and sound psychology. A real throwback to the classic eras of wrestling, no-nonsense presentation and approach. Even so, his style melds well with modern wrestling styles, just see matches with Tyler Bate, Will Ospreay, Zack Sabre Jr. Adapted well to modern WWE style as well, just see matches with Sheamus, Drew, Ricochet. The only weak area for him is on the mic, and for a non-native english speaker, he does quite well, but suffers from being a bit of a one-note promo. However, he excels everywhere else so much it's not that big of a deal- when faced off with an opponent who's good on the mic, he rises to the occasion. Also, his long title runs are pretty amazing as well. C on the mic, A in the ring, A gimmick/look."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: OneSuddenBOOMwrote on 22.08.2024:[10.0] "There isn't a single weakness this man has, his development has been insane and he's easily the best wrestler in the WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DSStyleswrote on 22.08.2024:[10.0] "Neben Cesaro der mit weitem Abstand beste Wrestler, den der deutschsprachige Raum jemals herausgebracht hat. Auch wenn Gunther bzw. Walter nicht danach aussieht, aber er kann mit fast jedem ein 5 Sterne Match worken und hat es sich auch verdient, der längste Intercontinental Champion aller Zeiten zu sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: wrestlingswiftiewrote on 21.08.2024:[8.0] "Much like everyone else, I really am high on Gunther. From a match and believability standpoint, he's incredible, and I hope WWE doesn't ruin him. He's got the look of a killer, and he's always looked very intimidating. His matches? Even better... They're strong-style, hard hitting masterpieces (with some nice technical action, depending on who he's in there with.) However... His promos aren't exactly the easiest things to get through. Just slap a manager on him, and he'll be fine. Who knows? Maybe if the manager is good enough, we could be seeing the next Heyman/Lesnar pairing."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Lukeathonwrote on 20.08.2024:[10.0] "The most believable wrestler of the past 20 years for me. Nobody does it like him. I cant think of much else to say, he's just amazing, his body transformation is amazing and his friendship with Axel Dieter Jr. is amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Odinohkawrote on 20.08.2024:[10.0] "Gunther is an excellent wrestler, one of the few to make us believe that each of his moves and hits could be the last. His impact, both in terms of his character and his moves, is incredible. He masters his character and has the charisma to carry off his long reigns and his role as ultimate boss. All his matches are wrestling lessons, he doesn't hesitate to give of himself and possesses exceptional strength and stamina. I'm betting heavily on his deserved reign as world champion and wish him stories to match what he's capable of telling in the ring. He can convince everyone of what happen in the ring. A master."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: RealGrapsThomsenwrote on 18.08.2024:[10.0] "Easily one of, if not the best wrestlers alive right now. He can be technical and extremely hard hitting and stiff, can have a great match with just about anyone, and although he isnt the best promo, he has Kaiser by his side to do it for him. Extremely talented and dominant."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Luke Cypherwrote on 16.08.2024:[10.0] "Der Ringgeneral is exactly what wrestling needs in this modern era full of glorified gymnasts. No frills in his approach, just technical excellence and utter viciousness.You can count on him for a 5* match any night of the week. The weight loss has done wonders for his presentation, and his promo skills have massively improved now that he can actually express himself. Gunther is set to be a fixture in the main event scene for the next several years, and wrestling as a whole will be much better for it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Rassle Fanwrote on 13.08.2024:[9.0] "It's been a couple of years and I'm still not use to calling him Gunther. It's a fine mononym but he was Walter for so long and I was watching him all that time that it's hard to shake. Kind of like seeing Tom Brady in a Bucs uniform. Anyway, he's a throwback wrestler that the current era desperately needs. I do admire the athletic feats of the current generation but when you're seeing a top rope Spanish Fly in every match, it stops being amazing. Walter brings a grounded, literally hard hitting style that is classic wrestling that I think would make Harley Race proud."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MichaelB137182wrote on 11.08.2024:[10.0] "Probably the best wrestler in the world at this stage? Somehow manages to put on insanely good matches every single time he enters the ring. Has had some of the best regarded matches ever in NXT, and also some classics with the likes of Sheamus (multiple times) and Drew Mcintyre. Also most impressive he managed to take a IC title, a title that was barely preshow worthy in the last few years, and managed to bring so much prestige back to it that it almost feels like a world championship now. Gunther might go down as the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JacobTheSnakobwrote on 09.08.2024:[10.0] "Probably the best wrestler in the world over the last few years, can put on a great match with almost anyone. Has had some of the best matches in wrestling history. Can cut an amazing heel promo. I love the fact he doesnt have one finisher he uses to end a match, he just hits people until they dont get up. He could hold the WHC for a decade and i wouldnt care, hes just that good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JulianPera50wrote on 05.08.2024:[10.0] "Superb in-ring performer, an already legend that keeps cementing a legacy as a wrestler. His strikes are something out of this world, if I was a wrestler I would been interested on wrestling someone like Gunther and see how my body ends up after being probably defeated lol. He is an amazing athlete, shows some interesting charisma at times too, he is simply great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Dimitrisasylumwrote on 04.08.2024:[10.0] "Simply flawless. The most believable wrestler in years. He knows how to hurt and to sell the pain and always has a smug but indimidating aura about him. Absoloutely love him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ZerKOwrote on 04.08.2024:[10.0] "An outstanding performer who will be considered as one of the all-time greatest pro wrestlers in history in the future. Credibility, intensity, stamina, technique, character work, name it and Gunther has it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TrueJugoBetrugoNo1wrote on 04.08.2024:[10.0] "Der Ring General, amtierende King of the Ring sowie neue World Heavyweight Champion, Gunther. Ein wirklich unglaublicher Mann, welcher bewiesen hat, dass mit genügend Leidenschaft sowie Einsatz jedes noch so weit entfernte Ziel erreichbar ist. Egal ob man seine unglaubliche körperliche Transformation erwähnt oder die Tatsache, dass ein Mann, welcher quasi in den europäischen Indies "groß" geworden ist, nun beim Weltmarktführer den Rekord für den längsten Intercontinental Title Run hinlegen durfte, sondern auch auf der Zweitgrößten Veranstaltung des Jahres zum ersten Mal das große Gold gewinnen durfte, und dies lediglich knapp vier Monate nach seinem legendären Intercontinental Title Run. In-Ring wirklich klassisch und sehr, sehr gut. Es macht mir wirklich Spaß, Ihn im Ring zu sehen. Insbesondere seine Agilität und seine Beweglichkeit in Kombination mit seinem großen, massiven Körperbau überraschen mich immer wieder erneut. Er hat alleine in den letzten mit diversen Gegnern Match-of-the-Year-Contender hingelegt. Sein Charakter und seine Ausstrahlung unterstreichen sein Auftreten und sein vorherig größtes Manko, dass Mic-Work, konnte er auch mittlerweile für sich gewinnen, weshalb es auch hier Freude macht, Ihn mit seiner verdient überheblichen Art zu folgen. Insgesamt eine verdiente volle Punktzahl und ein verdienter Titelgewinn. Mit Sicherheit ein zukünftiger Hall of Famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Quack7183wrote on 04.08.2024:[10.0] "You did it, Gunther, you did it! I'm so proud of you. That's why you're the Ring General. Amazing. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KobashiChopMewrote on 03.08.2024:[10.0] "He is the Ring General for a reason. There is also a reason he has been a champion for... I wanna say its 80% of his WWE run so far. He is one that people should be studying when they are training in the industry, as everything he does is just so good. Certified hall of famer, and he's only just hit his prime."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Cletxawrote on 31.07.2024:[10.0] "He is one of the best wrestlers who is active. If you like Powerhouse style, you should like gunther. Give him the WHC belt and enjoy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Zak22wrote on 29.07.2024:[8.0] "Gunther is very, very good but if I dare say, ever so, slightly... overrated. Gunther can have an amazing match more often than most wrestlers but some of the matches I see people saying are amazing.... I just don't feel are that good. But look, Gunther is an incredibly talented hard hitting beast of a guy who can be damn amazing and that match in NXT UK was amazing. I've seen Gunther live and he is damn impressive and fun to watch. I'd love a Gunther run in Japan."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Willie 19200wrote on 25.07.2024:[10.0] "Gunther is the greatest in-ring competitor in WWE right now. He has proven on multiple occasions how great he truly is. From being the longest reigning NXT UK Champion and longest reigning Intercontinental Champion of all time. His matches with the likes of Sami Zayn and Ilja Dragunov will forever be known as some of the greatest matches in the history of the WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: namisuzwrote on 25.07.2024:[10.0] "I really think this guy is the best current wrestler in WWE, my opinion is he's one of the best's in pro wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Joe907wrote on 21.07.2024:[10.0] "Right now, he might be the best wreslter in the WWE. The old school wrestler with the kings road style. He is very technical and very hard hitting. Great heel and his storytelling is very good. He will bring the best out of anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Hazelyzewrote on 20.07.2024:[10.0] "Possibly my favorite big man in the business right now, and a top 5 currently active wrestler. Gunther is the man, I am so happy to see him see so much success. He makes everyone he wrestles have close to their best match, he hits hard, and he is imposing. He's clearly studied in the ways of King's Road, and I would pay an ungodly amount of money to see Gunther vs. a prime Kenta Kobashi in any arena."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Gaugekelleywrote on 19.07.2024:"Already Amassed A Hall Of Fame Career In WWE: 1x Intercontinental Champion(666 Days, Longest Ever By Over 200 Days) 1x NXT UK Champion(870 Days, Longest Ever By Over 200 Days) 1x King Of The Ring 2-0 WrestleMania Record Wins Over Future Hall Of Famers Like Drew McIntyre, Sheamus, Randy Orton, Rey Mysterio, And Kofi Kingston He Is A Perfect Representation Of Strong Style In America As He Literally Chops You Down To Size Enroute To Pinning You To The Mat"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JBruce1018wrote on 11.07.2024:[10.0] "Maybe the greatest all-around professional wrestler that Ive ever seen. Absolutely brutal in the ring, fantastic at selling his opponents offense and very good at promos, even with English not being his primary language. The greatest Intercontental Champion ever and Im sure hell do similar for the World Championship whenever he eventually gets his hands on it as well. I did not expect Walter to transform his body and everything else for Gunther, but hes done so brilliantly and really elevated his opponents even with rarely losing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: brb75wrote on 07.07.2024:[10.0] "The complete package. Probably the best wrestler in the world today. Maybe not completely as a wrestler, but as an overall performer most definitely. You can definitely see right now that he will be a HOFer. And i'm really glad that HHH gave him that push because he made the IC title most relevant since the Attitude Era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: FraterAssenayowrote on 07.07.2024:[10.0] "The best male wrestler in the business today. Give him the World Heavyweight title and let him run with it, he'll give it the prestige it so sorely lacks."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: XNoWayKemoSabeXwrote on 05.07.2024:[10.0] "His in-ring ability is top tier and his mic work has been excellent. He's never failed to put on an absolute masterpiece every time he's in the ring. Future multi-time world champ!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: dulonicdaddywrote on 26.06.2024:[7.0] "GUNTHER has been one of the absolute highlights of WWE programming for a while now, his character is such a refreshing presence on that show. In due time I think he will be regarded as one of the greats of this era, but he still has a legacy to pave."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GameBoyAbysswrote on 25.06.2024:[10.0] "GUNTHER can very easily make the argument that he is the best currently performing wrestler in any of the major promotions. Unmatched in the ring, in the last year he made the IC Title seem like the THE title on Raw, if not WWE as a whole. Every match he's thrown in to is practically required viewing, and his reign as the IC Champ made him the true final boss of RAW. If I rated him last year, his score would be closer to a 9, but the last few months have seen him improve leaps and bounds in regards to his mic work, and his now burgeoning arrival on the main event scene makes him one of the most exciting parts of WWE as a whole. Without a doubt, Gunther is a future hall of famer, and I wouldn't be surprised if he'll be looked back on as one of the best active wrestlers of the 2020s - and likely an all-timer of WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Porto627wrote on 19.06.2024:[10.0] "As we speak, we're probably dealing with the best wrestler in the world, and even in the last 5 years. The guy has 2 of the most captivating reigns of this era (NXT UK and the Intercontinental Championship). The most dominant wrestler in WWE history, in my memory I've never seen a guy so strong, talented and dominant at the same time. This guy knows how to do everything, in the ring, on the mic, with his character and his aura. A future hall of famer without a doubt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Roode66wrote on 03.06.2024:[8.0] "Gunther ist großartig. Aber ich komme immer noch nicht über den Namenswechsel hinweg. Außerdem hat dieses krasse Pferd mit dem Gewicht auch irgendwie an Charisma abgenommen. Schade."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: pm66wrote on 01.06.2024:"His character work is very well done, definitely a bad guy whose every move is intimidating, but still more than capable of beating down his opponents without any outside assistance. His character's goal of protecting the sanctity of this sport lines up with the work he does in the ring, as I think his matches are the best WWE has seen in a long time, and he certainly restored the prestige of a title that was treated as worthless in recent years. He consistently wrestles with a violent intensity that makes his matches feel like real fights instead of scripted performances. It's not cartoonishly violent or bloody for the sake of being bloody, it's just believable, hard-hitting, fun action that can turn a bad match into a good match and a good match into a MOTY candidate. I also love that he doesn't have a true finisher, because everything in his arsenal is lethal enough to take someone out. Promos used to be his only weakness, but he's gained a lot of confidence and moxie since coming up to the main roster to match his elite in-ring work. All in all, I think he's the best wrestler in the world today, and maybe one of the best to ever do it. Hopefully he can rack up some world title reigns so his kayfabe achievements can match the quality of his work."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: arihenrique11wrote on 22.05.2024:[10.0] "At 36 years old, I already consider him one of the best. His ability in the ring has never been questioned, but his evolution on the microphone is remarkable. The guy really has something different from the rest, simply insane."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: blastermertwrote on 14.05.2024:[10.0] "Gunther elevates the product he is in; show, title, etc., putting on great matches independent from who he is wrestling, but when he matches with a guy who is on the same level with him, POOF! We have a truly banger match, one of the all time greatest even. I'm still dissatisfied with his upper midcard run level currently but the management try to cook him slowly I think, that's why we don't see him at the top right now. But he deserves a run and an ultimate domination on the highest titles, I hope we get this in the near future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Chad3432wrote on 07.05.2024:[10.0] "Everything about him is incredible. His matches are brutal, hard-hitting, and believable. He has the almost superhuman ability to truly make you believe everything he is doing is real, and he truly sees every match as a real contest. His in-ring psychology and storytelling ability are incredible as he elevates everyone he works with and makes you truly want them to win. His work with the IC title reserved what felt like years of the belt meaning nothing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MarkMcMarkington2wrote on 02.05.2024:[10.0] "The absolute perfect example of a monster heel. GUNTHER would thrive in literally any era, promotion or country. A cocky German brute that hits like a truck. Love him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: cerealkillerwrote on 01.05.2024:[9.0] "Incredible old school heel wrestler. Every match feels big. Understands the sport more than most. Stands out in today's wrestling landscape."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jcheng777wrote on 24.04.2024:[10.0] "Gunther represents the pinnacle of pro wrestling in my opinion. Someone who is believable as a physical presence whilst being outstanding in the ring with incredible work-rate, he can easily put on a MOTY contender with anyone at any given time. Been a fan of his for 8 years and I cant wait to see him ascend to a very well deserved place at the top of the card. A highlight of his is the fact that he makes any move look believable as a finisher, especially with his devastating and excruciatingly painful chops."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Lesn019wrote on 15.04.2024:[10.0] "Gunther is the epitome of the perfect Powerhouse, he's not just brute force and brutality but he carries with him an arsenal of highly versatile moves that sets him apart from all the names that have ever stepped foot in wrestling. You can never expect him to be down and out in a match, he's capable of overcoming any challenge; he's also reclaimed the value of the Intercontinental title and had the greatest reign of all time with the title, he's not just great in the ring, but he's great for the company as a whole."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: HugoRoidswrote on 15.04.2024:[10.0] "My favorite wrestler of all time. Every time Gunther is on the screen, he demands your attention. I've never seen someone put on so many classics with as many people in as short of a time. I won't lie, I've only watched his WWE work, but if he was still this good in the indies then it's mental how amazing he is. His stiff, brutal, hard hitting offense is my favorite possible style. His mic work has gotten really good as well. He's simply the best wrestler alive, and one of the best wrestlers of all time. He better be a multi time world champion by the time he hangs up his boots."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: cal9099wrote on 07.04.2024:[8.0] "Great upper mid card type guy and I respect his toughness, but never really done it for me. Has had plenty of great matches but just never someone I've been excited to see despite almost always performing. Perhaps a bit one note for me with his offensive style."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GhassaneJabriwrote on 07.04.2024:[10.0] "WALTER/Gunther is one of the best wrestlers currently working today. WWE's greatest performer and attraction. The most consistently awesome wrestler who ever had to work under the WWE umbrella, every single move he pulls is incredibly threatening and effective. And it's really awesome that for his entire NXT UK and main roster runs, he has been booked as an ultra protected dominant final boss who will be dethroned by whoever the underdog will be. It worked amazingly with Ilja Dragunov during his NXT UK run, especially during their matchups that were the most eye-watering and intense WWE matches of all time. And despite my usual issues with WWE's booking, I'm confident that his run will be just fine and whoever will dethrone Gunther of his IC title will come out of it more of a star than he'd ever be. Gunther has proved to be the biggest overachiever of the main roster and also a wrestler who is totally in control of his career trajectory."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: arisenbywrote on 06.04.2024:[9.0] "[8.9] GUNTHER (or WALTER, depending on your preference) is the definition of a 'big fucking star'. In every promotion he has been in, he immediately feels like the biggest deal there (often so much so that it's to the detriment of whoever happens to be top dog before him.) His moveset is very simple, but extremely effective. It's not controversial to say that he has the best chops in wrestling right now, plus he feels like he can end a match on literally any move. Promos used to be a weak point for him, but he's significantly improved over the past year or two, making him one of the few wrestlers where it's hard to find a single weak point. He's one of the few wrestlers who I could actually stomach holding a title for over a thousand days, and that is saying something."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Nudlewrote on 05.04.2024:[10.0] "The current best wrestler in the world in my opinion. He's fantastic at literally everything that is pro-wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Zetz77wrote on 05.04.2024:[10.0] "If I were Hunter, I would put the world title on Gunther and let him carry that title for a decade, without irony, that's how good Gunther is, since Gunther appeared as a surprise at NXT UK Takeover Blackpool in 2019 he is the The best wrestler in WWE, he is possibly the only wrestler in the world without a bad match, Gunther's only flaw is that he's not called WALTER anymore, but that's a small difference."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: sarahlicitywrote on 29.03.2024:[10.0] "To borrow an oft-used phrase, Gunther "brings the feeling back" to WWE. Its no surprise that even while the main roster was faltering under McMahon, under Triple Hs supervision of WWE, he became a dependable asset to NXT. Because Gunther is a simple character, when all is said and done: hes a brick shithouse of a man who will chop you back to the stone age if you dont give him the respect he deserves. And he deserves that respect, because he truly is a shining beacon on any card that is lucky to have him. If Triple H is smart enough, he puts the belt around his waist pretty sharpish, because the only thing that will look better than the Intercontinental Championship on him is the WWE Championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Cass93wrote on 26.03.2024:[10.0] "This guy could have made it in any era, he is technically sound, he is a ring general can call everything on the spot, he has underrated promos and segments 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: CDProsProwrote on 26.03.2024:[10.0] "Zápasník, Mistr, Legenda, Generál True Ring. Intercontinental Championship is prestigious once again special thanks to this man, GUNTHER. His run as the longest NXT UK champion was glory compare his entire run in WXW as WALTER but WXW is forever be his home where he perfected this craft. His chops are the sweet sounds of toughest, his power bombs can knock off the smoothest of contortionists or mixed marital artists. His top rope splash ends reigns in elegant fashion. His facial expressions of class, surreal prowess, ramentum to lift up challengers and lack of remorse for their short comings. He is Gunther and the longest intercontinental champion since Honky Tonk Man way back to 1989. Hail Der Ring General and may his power continue through the RAW landscape like Dvorak intended. When history books is written, documented and told, Gunther will be one of the best pro wrestlers to have existed in 2010-20 hereafter. Surely the greatest intercontinental champion of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MrLuke25wrote on 19.03.2024:[10.0] "One of the few "brings prestige to [SECONDARY TITLE]" that has genuinely made the title feel more prestigious. Gunther's WWE body of work (including his run as NXT UK Champion) leave no doubt of his position as one of the best pro wrestlers in the world today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Homerwrote on 16.03.2024:"Rarely defends his championship and even tho his matches are good and fun to watch, his mic skills are upper trash. 3/10"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Alphajwrote on 09.03.2024:"10.0 My top wrestler of all time. Has all the skills, works hard and hits harder. The only downfall is losing tons of tag matches. I guess it comes with the faction but never getting pinned and not losing in singles should stand out above everything. Amazing technique can fly off the ropes has ground and stand up game plus multiple moves. The real ring general."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ultravioletshiroiwrote on 09.03.2024:[10.0] "Gunther is the perfect war machine and exactly what you want in a professional wrestler. He can make even simple strikes, grappling moves and submissions look absolutely brutal, making him one of the most dominating looking heels in the WWE. He's also a very good worker and can make his opponent look really good too when he needs to. I'd say he's easily one of the most exciting wrestlers in WWE today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Dirty Diegowrote on 07.03.2024:[10.0] "I hope this year when wwe goes to Berlin , Gunther wins the big one from either Cody or Roman, Gunther has been the best thing about wwe since triple h taking over creative and in my opinion is the best intercontinental champion of all time, his in ring work is the most believable hard hitting stuff your going to get in pro wrestling today"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GuntherHater3000wrote on 29.02.2024:""I've never liked big guys in wrestling. I get so bored of big man slapping each other. Walter's wrestling style is extremely boring to watch for me. He has some charisma and I wouldn't call him a bad wrestler but him being 5th highest rated superstar in history of WWE is ridiculous to me." he never defends his IC Title."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: tlaustinwrote on 21.02.2024:[10.0] "One could spend the rest of his life watching WALTER/Gunther matches and still not see everything he's capable of. A man of incredible cardio, power, technique, and storytelling, he is a huge monster heel with a completely sympathetic arcing narrative: he's the "serious" one here to "save wresting." He's even arrived as a great and intense promo as well, carving out a presence that any promotion lucky enough to have him will build their next ten years around. There is almost no one else in the business right now that can make you believe the way he does. It's also just so god-damn refreshing to have some in WWE that feels like anything that he does can be a finisher, instead of the Pavlovian response the typical WWE match normally puts you into."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JonathanV93wrote on 18.02.2024:[10.0] "The best wrestler in the world at the current time of this review. Excellent matches, excellent promos, there is nothing this man can do wrong. It's shocking how many PLEs WWE does not feature this man on, you are almost guaranteed an above average match when he wrestles. His moveset is flawless, and he moves with such fluidity, that it is almost impossible for him to have a bad match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ChainsawJediswrote on 16.02.2024:[10.0] "The best wrestler of the modern age, and I am still not sure we have seen what he can do yet. His matches build and build so naturally to a crescendo. He is so within his character and a tactician in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: SignPlenty44wrote on 14.02.2024:[10.0] "GUNTHER is one the best wrestlers currently. This man has literally everything with entrance, gimmick, wrestling style, promos, everything. THE RING GENERAL is such a final boss type gimmick where nobody can seem to defeat him. GUNTHER is one of my favorite wrestlers to watch on TV."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Beeebonwrote on 13.02.2024:[9.0] "Having got back into Wrestling only last year a d subscribing to the WWE network I decided to start watching the weekly programming of Raw and Smackdown starting from Jan 2022. When Gunther appeared he felt like a breath of fresh air, nothing very flashy with his style but he is hard hitting and makes his moves count. Also for a big guy he sells very well and shows a lot of in ring intelligence. I have since looked up matches of his on YouTube before he joined the WWE and have enjoyed everything I have seen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: brennyomegawrote on 12.02.2024:[10.0] "When all is said and done, GUNTHER will be up there with Daniel Bryan/Bryan Danielson and Bret Hart as the best workhorse of all time. He's not going to reach Roman/Rock/Austin/Cena levels of popularity, but everyone knows that if GUNTHER is on the card, you're in for a god damned masterwork. He can go against luchadors, cruiserweight, middle weights, heavyweights, etc, and the match will be the best of the card. Just remember all caps when you spell the man's name"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: mxkamiwrote on 11.02.2024:[10.0] "This generation's perfect wrestler. Size, presence, ability, and people are finally being able to see how great of a promo he can be. He carries himself in a way that portrays strength, discipline, and importance. He has done WONDERS for the WWE Intercontinental Title, and not gonna lie, I hope he challenges for a top strap soon and WINS, becoming a dual-champ. My partner is fairly new to wrestling, and like a lot of people didn't "get" WALTER/Gunther. Then she saw the Sheamus match. Then the Sheamus/Drew match. Then the Gable rivalry. Then the promos on Miz during their short feud. And the past two years' Rumble performances. This, is what makes WALTER/Gunther such a great pro-wrestler. The ability to get over in what he does, even to someone who hasn't been watching wrestling for decades and was a self-proclaimed hater of big-men (she's been swayed since *Bronson Reed mark now, which makes me hella proud*). Der Ring General has been a fave of mine since about 2016 when I got back into wrestling (thanks wrestling Twitter for the GIFs! ) and I still look forward to what's to come when he appears on my screen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Yesgarwrote on 07.02.2024:[10.0] "One of the best wrestlers Ive ever seen. Has solidified him self the greatest Intercontinental champion ever with banger after banger. Is always a contender for Wrestler of the year. It is very rare for Gunther/Walter to have a bad match. Even his worst matches are enjoyable, one the most underrated talkers on the mic. One my favorite things about Gunther/Walter is he makes every move look like it hurts and his versatility he doesnt have a set finisher as used a lariat close line, power-bomb, and a Firemans Carry Sit-out Bodyslam. Cant wait to see whats next hopefully by years end he is worlds champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Jabroniwrote on 06.02.2024:[10.0] "Easiest 10 you can give right now. Best technical wrestler BY FAR, better than any indie talent or anyone in Japan or Mexico. Like it or not, his promos are excellent and believable. He talks the talk and he walks the walk. Every match is a must see."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TheVoiceOfReasonwrote on 23.01.2024:[10.0] "Gunther is the prime example of "Living up to expectations." He is The Ring General for a fucking reason! His match with Sheamus at Clash at the Castle was incredible. He topped that with Sheamus & Drew McIntyre at Wrestlemania 39. A man who I think could have great matches with the likes of Bryan Danielson, Claudio Castagnoli, Seth Rollins, Brock Lesnar & AJ Styles. He would've fucking had instant classics against Kurt Angle, Arn Anderson, Ricky Steamboat, Chris Benoit, Eddie Guerrero, Chris Candido, Dean Malenko, etc."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MichaelDaviswrote on 21.01.2024:[10.0] "The only reason to check in with WWE programming in 2024. GUNTHER is a love letter to guys like Kenta Kobashi and arguably does the style just as well, although he doesn't exude the same level of charisma. The only major issue I have with GUNTHER is, well, I'd rather him be anywhere else! He's in his prime right now and could be having all-timers with guys like Shingo Takagi and Hangman Page to further his case as one of the greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KittyAlpha2424wrote on 19.01.2024:[10.0] "An excellent wrestler who both embodies and deserves the nickname that he dons on his trunks. His moveset is simple, yet brutally effective. And to add to his outstanding in-ring ability, his desire to "respect the sport" shines in his psychology, always making his matches easy to buy into. His run as Walter was already all-time as is, but his body transformation since getting to the main roster in WWE and changing his name to Gunther has, in my opinion, primed him to be an all-time great in the sport, regardless of the company. Also to note: Dvorak's "From The New World" entrance with the marble pillars is a visually and acoustically beautiful aesthetic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: The Quick Manwrote on 13.01.2024:[9.0] "Frankly, THE reason you tune into WWE's weekly programming. Endlessly talented, smash-mouth, intimidating presence, underrated promos. GUNTHER is the closest WWE has to a perfect wrestler, in my opinion."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DerRingGeneralwrote on 08.01.2024:[10.0] "One of the best giant inring performers even tho they're just in their shining era yet... We should know his price, an active champion in WWE and a guy who just made Intercontinental title get important again. He held two titles in WWE, and both are in history, they both legendary, majestic. WWE and their universe should know his price. One of future G.O.A.T's. Since the day that he became Internet Champion, defeated Will Ospreay, and held the title that Danielson, Omega etc. held, he is a future star. His moveset? Also pretty good. He makes powerbomb look too good, same for Lariat. Attire, mic skills blah blah... He's a 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: morgomirwrote on 05.01.2024:[10.0] "This guy is wrestling. A pure talent, with presence and charisma. He is capable of great matches against all kind of opponents. WWE have gold with him. After he will lose the intercontinental championship, I hope he's gonna be world heavyweight champion, or more."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: RobinsonSpecialwrote on 05.01.2024:[10.0] "I'd say he's the best wrestler in the company---if not, definitely the best champion. From a wrestling standpoint: absolute workhorse and always willing to put effort into bringing quality and elevating wrestlers in every match he does. Other champions would just show clear dominance over the opponents, but he often tries to make them look like they have a chance and that they push him to the limit. I also love how often he tries new moves and new finishes; it feels very fresh. From a character standpoint, he has a menacing presence and sense of delivering honor to the ring that makes sense. Really wish he still had his old Symphony 9 theme; I still think that fit his energy the best. Overall he's definitely brought prestige back to the championship and I'm looking forward to what he does next year and after he eventually loses the belt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TheOneAndOnlyCactuswrote on 31.12.2023:[10.0] "WALTER is an all-time great talent. An amazing powerhouse with great technical prowess, wherever he goes, he brings gold home. A mix of throwback presentation and modern action, he is obviously Austria's greatest ever wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: thedman0310wrote on 28.12.2023:[10.0] "What is there to say about Gunther that hasn't already been said? Great look, solid promo, and some of the best matches WWE has ever seen. Long may the Ring General reign!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: HfnHwrote on 26.12.2023:[10.0] "WALTER/GUNTHER has every right to be considered one of the best pro wrestlers not only of his generation but of all time. He managed to make such a simplistic style of wrestling, with body slams, submissions and strikes, look great by giving it his own special touch of brutality, especially in his deadly and iconic chops, and in a world of high-flyers and fast technical wrestlers, WALTER manages to stand out extremely well among the rest, looking like a true old-school wrestler in the modern era. Ever since I first discovered him in 2018, he has made his name known in the wrestling world with countless incredible matches against Tyler Bate, Ilja Dragunov, Pete Dunne, Tommaso Ciampa, A-Kid among others. But just when you thought he would suffer the same dreaded fate of previous NXT Call-Ups (starting with the name change), the only thing the rechristened GUNTHER lost was a ton of weight, putting him in great shape, and managed to retain every last drop of momentum he had from his historical NXT UK Run, by becoming the longest reigning Intercontinental Champion of all time. From there, he ended up putting on some of WWEs greatest matches of the past decade against Sheamus, Drew McIntyre, The Miz, Ricochet and many others as The Ring General soon became a household name in modern wrestling after years of dominating the UK Indy scene. From his commanding aura to his iconic matches to his simply brilliant in-ring prowess, I think its safe to say that GUNTHER has earned his place among the very best in wrestling and the sky is the absolute limit for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Vanstylerwrote on 21.12.2023:[10.0] "Intimidating wrestling machine. Obviously I've followed in his footsteps through independent companies and Gunther is one of the best at what he does. Every time he appears he commands respect and feels like the arrival of a final boss, a tremendous athlete."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: laddermatchwrote on 21.12.2023:[10.0] "Gunther/WALTER is the greatest big man wrestler in the business today and in my opinion the greatest Intercontinental Champion of all time. I've been on his bandwagon ever since I saw his match at Joey Janela Spring Break with PCO and I had to watch everything this guy did. His work in companies like wXw, Progress, RevPro, and OTT put him on the map. His NXT UK run was absolutely phenomenal and he had many match of the year contenders there, two of them with Ilja Dragunov. The man is simply incapable of having a bad match. He's a throwback in many ways to 1990's AJPW. His chops are very Kenta Kobashi esque. He brought the kings road style to WWE and I love him for that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Logewrote on 14.12.2023:[9.0] "Awesome (fairly) young talent who got WWE Match of the Year. Several times. And I don't even have to tell you what match he had that was match of the year for 2023, you already know it. His IC reign has made the title matter again, and if I watched him in NXT I might change my rating to a 10. I know its criminal but I haven't seen much other than a few highlights of him as Walter. I love the name Walter tho. Walter dog. Walter Clements I like monster trucks and fire trucks. Walter. I also like Gunther though. I like how Imperium are evolving as well. Probably the best heels in the WWE right now imo, although it's at that point where you do hear people cheering for them since even though they're heels they're undeniably good. Every time I see Gunther backstage he always stays true to his character, whether intentionally or not, and he truly seems to care about the art of the sport even if he doesn't show it outright and seems to not care about the history and only cares about himself."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MaelEspina94wrote on 13.12.2023:"Maybe the best Intercontinental Champion of all times and one of the Highlights of Raw, I cannot wait to see him as World Champion."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Grapefruit Juicewrote on 13.12.2023:[10.0] "The highlight of any Monday Night Raw as of writing this. Gunther is a killer and his reign has added a true sense of Legitimacy to a belt that desperately needed it. Undeniable and incredible talent in the ring, a good promo, and a truly impossible to hate gimmick. Long Reign the Ring General!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Dntbamarkwrote on 27.11.2023:[7.0] "Reminds me alot of a bigger version of Chris Benoit/Dynamite Kid. Stiff strikes, tons of suplexes and overall solid in-ring fundamentals. Like i said, he's a big dude whose really come a long way as a performer since he lost a ton of weight. His IC title reign has been solid but that title has been so devalued by the introduction of the WHC and the United States title that it's hard to bring respectability to something that's nothing more than a mid-card title. He's also not the best promo and his charisma leaves something to be desired."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JediSaiyanMaster1203wrote on 27.11.2023:[10.0] "No matter if he's WALTER or Gunther, he's the man. Always fun to watch in the ring, he's not called "The Ring General" for nothing, can get a good match out of anyone no matter his opponent, has been putting on Match of the year Candidates left and right, whether in NXT or on the main roster, Gunther just doesn't miss. Despite Triple H is doing everything he can from preventing Gunther from stealing the show every night lately, he still goes out and performs great matches. His psychology and storytelling is off the charts, knowing how to get the fans to have hope that he will lose until the end of the match when he goes for the win, no matter who he faces, he knows how to lower you in. Lately, his entire gimmick on the main roster has been perfect, well executed and has been among the best portions of the company. It's nice to see someone be against Sports Entertainment and actually value Professional Wrestling in WWE, and you can tell it's more than a gimmick to Gunther, which makes it even better. He knows how to play the role well, comes off as believable, doesn't make it corny, he has enough charisma to make it work, making it my favorite character in WWE today. Not only that, he's been the best in ring wrestler since his arrival in NXT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: skyesversionwrote on 08.11.2023:[5.0] "I mean, he's good I guess. But people are calling him the best in the world right now and I'm trying to figure out why. He can wrestle, sure, but for me a wrestler needs to be the full package. Mic skills, character, charisma. He just doesn't have those abilities. Plus, his IC title reign isn't nearly as good as people are saying it is. I don't know. Something just doesn't quite click for me. He's the Rhea Ripley of the Men's division but slightly better. Maybe I'll get the hype soon who knows. But if not I'm perfectly okay with that."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: theeternalsovereignwrote on 25.10.2023:[7.0] "Gunther hasnt been on the made card but not only is he already making a mark on the collective por wrestling world but hes making a significant impact on my own entertainment preferences. In just a few short years he has set a record for the WWE Intercontinental Championship and put on a hell of a performance at a royal rumble. As far as his attributes he has a very diverse striking and powerhouse style but itsnt afraid to leap off the ropes. He has probably the best chops in pro wrestling history and even with an accemt he gives powerful and well delivered promos. I think only time will tell to see if this is peak Gunther or if he could become even better and I will ammend my rating if he does improve but as of right now he is one of my favorite parts of Monday Night Raw if not WWE in general."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Frank Shooterwrote on 19.10.2023:[10.0] "The most legitimate badass in WWE along with Brock Lesnar. I'm so glad that WALTER has found his place in a company like WWE without losing his essence at all. Bringing the Old School European Wrestling style mixed with the classic Puroresu Strong Style of the likes of Kobashi and Misawa into the mainstream with the enough presence to be taken seriously by casual fans. This guy is not only going to break The Honky Tonk Man's IC Title reign record, but he will be the top heel to beat once Roman Reigns loses the Undisputed Championship. EDIT: He already broke the IC Title record, and I can call him without a shadow of a doubt the best wrestler in WWE today and one of my 4 top favorites along with Jay White, PAC and Meiko Satomura."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Jesse Wulfwrote on 17.10.2023:[10.0] "Does anything else really need to be said? The greatest (in ring) active wrestler alive, greatest intercontinental champion of all time, never has a match that isn't at least good quality, and he's just entered his prime as a performer, he could go at least 10 more years like this."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: AnthoTheKIDwrote on 15.10.2023:[10.0] "Der Ringgeneral lives up to his name. GUNTHER/WALTER whatever his name is in the wrestling world is an absolute living breathing methodical machine made for destruction. He puts stamps with his chops. The man looks great, the man moves fast for a man of his size and delivers bangers like it's easy peasy, an absolute pleasure to watch him in the ring, doing his work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Zlatkiiwrote on 14.10.2023:[10.0] "Man is a freaking authoritarian anomaly who puts on banger after banger so consistently. I love his damaging style of professional wrestling warfare. Heavy-hitter, huge thrower, hard grappler, unstoppable powerhouse who is my favourite professional wrestler of all-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: WOOPSwrote on 01.10.2023:[7.0] "I don't like how he is just a wrestler and nothing more. Both of his teammates are way more charismatic and are way better than he is on the mic. He should improve but it seems like WWE are fine with him being just a wrestler who puts on good matches and fecks off."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Lutwiejwrote on 20.09.2023:[10.0] "A great wrestler. The intensity and sheer brutality this guy brings to the table is mind-blowing. With a pretty basic moveset, like chops, lariats and powerbombs this guy produces some of the greatest matches of modern era, just by the ability to keep you at the edge of your seat. Also a great promo, and a good seller. Outstanding."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: The Undertalkerwrote on 20.09.2023:[9.0] "Er wirkt in seinem gesamten Auftreten ausgesprochen dominant. Im Ring scheint er unüberwindbar zu sein und alles, was er in seinen Matches anstellt, ist sehr glaubwürdig. Gunther hat einen sehr realistischen Wrestling-Stil, der ganz nach meinem Geschmack ist! Er ist im technischen Wrestling stark, aber noch mehr sticht bei ihm wahrscheinlich seine rohe Kraft sowie seine Stiffness hervor. Er führt seine Moves sehr stiff aus, besonders heftig sind natürlich seine knallharten Chops. Am meisten mag ich aber an seiner Arbeit im Ring, dass er ein Wrestlingmatch so aussehen lässt, dass sich er und sein Kontrahent tatsächlich bekämpfen und der eine den anderen wirklich überwinden und besiegen will. Seine Matches wirken nicht so, als ob zwei Worker halt ein paar spektakuläre Moves zusammen zeigen wollen und ein paar ästhetische, komplexe Konter gemeinsam ausführen wollen und irgendwann kommt der Pinfall und das wars. (Daran ist an sich nichts Schlechtes, nur finde ich, sollte das auch realistisch genug wirken.) Bei ihm aber kommt es so rüber, dass er seinen Gegner mit allen erdenklichen Mitteln und allem Ehrgeiz regelrecht niederringen will, wodurch eine hohe Dramatik und Spannung entsteht. Bei Gunther vergesse ich manchmal, dass der Sieger vorher schon feststeht und lasse mich richtig ins Match reinziehen. Unterstrichen wird sein realistischer Wrestling-Stil noch zusätzlich durch das Motto von Imperium: "Die Matte ist heilig". Also bei ihnen zählen die sportlichen Attribute und daher das, was im Ring geschieht. Ich habe allerdings auch einen Kritikpunkt an Gunthers In-Ring-Skills und zwar, dass er die Moves seiner Gegner nicht so gut sellt. Auch nach harten Moves seines Kontrahenten ist er zu schnell wieder auf den Beinen und macht unbeeindruckt weiter. Aber das ist Kritik auf hohem Niveau. Sein Micwork ist in Ordnung, aber man merkt natürlich, dass Englisch nicht seine Muttersprache ist und manches kommt etwas gezwungen daher. Ich denke aber, langfristig wird er sich da noch steigern! Dass er den Rekord vom Hony Tonk Man gebrochen hat, ist völlig verdient! Damit hat seine Intercontinental-Regentschaft auch etwas ganz Besonderes an sich."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Chr1st0phwrote on 19.09.2023:[10.0] "It's not hard to do the simple things. But when you're WALTER and the simple things are what make you different, its special. What else is there to say, it's Walter, we all know how good he is. Pure simplicity of power and tyrannical emphasis in matches. THE Wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Omegadriverwrote on 19.09.2023:[10.0] "There's nothing else to say. This man is fucking incredible and you can see he clearly loves doing this. His in ring work, physique, character work and move set fits him very well. And lastly Gunther can put incredible matches against literally anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: deceivrwrote on 10.09.2023:[10.0] "Walter Hahn is the only wrestler that I believe to be lived up to the hype in most, if not all cases, in professional wrestling fan-sites. It is not just that he is extremely talented as a wrestler, but he is, in a way, a blast from the past type figure; he has adopted his style from the likes of Akira Taue, Kenta Kobashi and Daisuke Sekimoto from Puroresu, and the likes of Steve-William Regal, Dr. Death Steve Williams, and many more of other bygone eras. His style and standard of professional wrestling, as drawn by those influences, has caused him to be a sort of Big Bang affect on the wrestling world and it's wrestlers as a whole; he has completely made people aware and drawn to a style that no one that had initially been a fan had come to fruition to seeing on the big stage. In regards to his abilities, he is one of a kind; his mix of brutish and metallic maneuvering and strikes that make him look like Gojira itself is a complete highlight. His ability to talk on the microphone and develop a character was also one of a kind, even if he had bad names like "Big Daddy Walter" or "Gha-cha-Ping! ". In an overall standard, we must remember Walter Hahn, a.k.a. Big Van Walter, WALTER, GUNTHER, or simply as Der Ringgeneral, to be one of the greatest performers of the 21st century and, perhaps, if we continue to see the run he is on, of all time. Be afraid."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Wrestling Foreverwrote on 08.09.2023:[9.0] "Gebe Walter 9 Punkte und das nicht weil ich wie er Österreicher ist sondern weil ich ihn einfach Top finde, auch ist er sehr sympathisch. Er wohnt seit Jahren in Deutschland ist aber in Wien geboren worden und er hat immer noch den österreichischen Dialekt in seinem Akzent. Walter ist eine wXw Legende und ein toller Trainer. Kann mich an kein schlechtes Match von ihm erinnern das ich bis jetzt gesehen habe. Edit 06. 04. 2018 WALTER wird immer begehrter, wo er nun überall auftaucht egal ob in England oder in der USA und egal wo er auftaucht er ist beliebt und bei seinen Gegner gefürchtet. Edit 08.09.2023 es ist soweit Gunther hat er den Rekord von Honky gebrochen und auch wenn Honky darauf nicht so ganz begeistert auf Twitter getwittert hat es ist nun halt passiert. Ich beziehe mich jetzt auf Gunther aktuelle Regentschaft."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Malarkianwrote on 05.09.2023:[10.0] "Gunther/WALTER is incredible. And while I think that there are some more spectacular wrestlers in the world, if someone told me that they thought Gunther was the best I wouldn't argue. In a day and age where everyone busts out these spectacular jaw-dropping moves nightly Gunther is throwback to guys like Stan Hansen and Jumbo Tsuruta. There's no fluff or filler and everything he does is credible and believable and serves to move the match forward to it's inevitable end."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Foxmagic3wrote on 24.08.2023:"10/10. I could give him an eleven if I wanted. The best wrestler currently as is not even close. It might be because of my preference of wrestlers being believable and working a snug, realistic style, but Gunther is the absolute most believable wrestler currently. He has to win the world championship, HE MUST."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: FattitudeErawrote on 21.08.2023:"What can be said that hasnt been below already? Arguably the best European of his generation / all time. Long time follower and fan of Walter / Gunthers work and delighted that he is thriving at the level those of us who have known of him pre-WWE always knew he would. Hopeful he breaks the record for longest IC title reign and takes his rightful place in the history books."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Lalo Camposwrote on 16.08.2023:[10.0] "The best Europan wrestler of all time, the greatest Intercontinental Champion of all time and one of the greatest wrestlers in modern history and general. A few wrestlers have his pressence, he will become World Champion in WWE soon, his matches around the world are now legendary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: mayebzachwrote on 15.08.2023:[10.0] "An incredible wrestler who would be at the top of any promotion in the world. A man who oozes charisma, toughness, and an aura of danger for his opponents. Has adapted to every style of wrestling as well. I hope we get a period of his career where he travels around the world having great matches after his WWE run is over."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: celticinvaderwrote on 07.08.2023:[8.0] "Didn't think I was going to like Gunther as much as I do given I'm not usually too keen on monster heels but he's proven to be one of the highlights of the current roster. Simple but effective move set, executed to perfection by this huge yet surprisingly athletic beast. It's always a great match when he's in the ring."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jamzell00wrote on 06.08.2023:[10.0] "Back in 2018 Walter had started getting more popular overseas as he was already a big name in germany. I could not imagine in 2023 not only would he be in the wwe but they would let him remain the same exact guy under their brand. Its lead to him being one of the best wrestlers not just in the wwe but the entire world. He's the easiest guy to book in all of wrestling. Have him kill whoever he's facing for most of the match, let them get their hope spots in, and then decide on who wins. It's such a simple match structure but how he goes about it makes him so incredibly fun to watch work. He's lead the charge in the wwe figuring out once again that big dudes hitting each other really fucking hard is the best brand of wrestling ever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ismarizviwrote on 25.07.2023:"one of the most hard hitting person in this business he got power, speed , the ability to wrestle i think he will most likely lose title in next year WrestleMania .he matches against riddle in progress, him vs sheamus, him vs sheamus vs drew all worth watching"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Gold Fistswrote on 24.07.2023:[10.0] "Gunther is great. It seems like every time I check back here, his rating has gone up a small bit and I completely understand why. I don't need to discuss the brutal chops, just one of the many great components of his matches, which regardless of length he always finds a way to make entertaining as ever. His entire Intercontinental Title run has truly brought The Ring General into the conversation for the title of GOAT, if he wasn't already there all the way back during his epic reign in NXT UK. All being said, I would LOVE to see: Gunther win the 2024 Royal Rumble and win the WHC at WMXL, or maybe even see a pop-up rematch between him and Dragunov for the IC title at SummerSlam if Ilja doesn't beat Hayes at the Great American Bash. Just an all-rounded incredible performer Gunther is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Undertaker4everwrote on 08.07.2023:[10.0] "Für mich als Österreicher natürlich ganz klar 10 Punkte! Gunther ist jetzt schon einer der Topheels der WWE und ich hoffe das er den IC Titel Rekord vom Honky Tonk Man bricht! Spätestens nächstes Jahr hoffe ich das es für ihn Richtung Mainevent geht! Ein Österreicher als World Heavyweight Champion oder vielleicht sogar als WWE Champion das hätte ich mir nie zu träumen gewagt in den 30 Jahren wo ich die Liga schon verfolge!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Loghan Morescowrote on 06.07.2023:[10.0] "A Vanguard of pro wrestling alive, the guy is just amazing at every single detail he puts out there, the perfect wrestler and superstar his theme is great his physique is great his moveset is perfect and his finisher fits him perfectly, one of the greatest intercontinental champions of all time and a future main eventer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: devourblastwrote on 03.07.2023:[10.0] "A modern day behemoth. It takes a really special athlete to make long-established moves look absolutely devastating, and GUNTHER is that special athlete. I, like many others, were less than thrilled to put it gently with the initial name change, as WALTER had become a name that was truly iconic to the NXT UK brand. However, he has done more than enough to justify the change in these recent months. He has had an absolutely brutal path of carnage while holding the IC title and is, in my opinion, deserving of becoming the new longest reigning IC champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Neon Aussiewrote on 02.07.2023:[10.0] "IMO it's a toss-up between Walter (gunther), Kenny Omega, and Will Ospreay for the best wrestler alive today. I hate that WWE has pressured him to lose weight, I like him better with some meat on his bones, but in the ring his physicality is unparalleled. Brings some realism back to the 'sport'. Walter has wrestled some of the best matches this decade has seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: RVKwrote on 28.06.2023:"One of the modern-day greats. Always puts on amazing matches and definitely a future WWE Hall of Famer."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Aylinwrote on 26.06.2023:[10.0] "One of my absolute favorites. What a fantastic heel and wrestler. He just keeps putting on remendous matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: CorpusSkiptotelicumwrote on 23.06.2023:[10.0] "The ultimate evolution of the powerhouse, WALTER (refuse to call him by the other name) excells in all aspects of wrestling. Striking, grappling and selling, but his best attribute is to make everything look ugly and real. He was on the short list for best in the world even when he mainly just wrestled in the euro circuit and had some of the best matches in WWE history when he signed with nxt. Its a real shame that he never had a proper run in njpw or even bjpw, if he did, he'd be in the goat conversation just based on body of work. Its a shame he's on the main roster now, but even then he's having great matches with established E talent and always pulls the best out of them. Glad hes getting paid though, here's hoping he comes back to wrestling outside wwe when hes done building a legacy there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: InsertFunnyNameHerewrote on 23.06.2023:[10.0] "Giving this man anything lower than a 10 would be insulting to professional wrestling. Right now he might be the best wrestler walking the Earth. His offense and moveset are the epitome of the phrase Beauty in simplicity while at the same time giving the image of a lion mauling a gazelle in a Nat Geo doc, his matches with Ilja Dragunov, Tyler Bate and Sheamus are some of the best of all time and thats no exaggeration."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Gregorian Goatwrote on 12.06.2023:"My favorite wrestler. No one else comes down the ramp and ensures that I will always have a exciting match."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: eliseyshakovwrote on 05.06.2023:[10.0] "the best wrestler in current era, his matches looks very good, and I know that he will be the future world champion. Hope WWE wont loose this talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GBoonewrote on 04.06.2023:[10.0] "Quite simply one of the best wrestlers not just in WWE, but in the world today. What makes this even more impressive with Gunther is with how little he does to get to that point. In a wrestling world where I would argue theres a certain level of overindulgence in terms of moves used, Gunther settles for powerbombs, lariats, and chops, and he makes it work because he does every single move incredibly well. Im very interested to see what future plans for him after he loses the IC Belt, as I would argue he has the POTENTIAL to be a monster heel on the level of Brock Lesnar, a sort of final boss that babyfaces have to overcome. I also appreciate the effort he has put in to ensure hell live his best life in WWE. Look at his physical appearance around NXT UK and then look at it now. Its insane."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Joshxo1newrote on 30.05.2023:[10.0] "WALTER is awesome. An authoritarian demeanour, ferocious abilities, and an old-school aura creates the greatest professional wrestler of all-time. A beast of brutality, a king of combat, a duke of damage - simply, a freaking boss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Puro113wrote on 28.05.2023:[10.0] "One of the best big men of all time at this point. Brought legitimacy and respect back to the Intercontinental title after it was treated like a prop for so long. Badass gimmick and demeanour, and always delivers in the ring. Man I love Gunther."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Dancerwrote on 24.05.2023:[10.0] "Gunther is freaking great. His in ring style meshes well with basically anyone he wrestles. He is a phenomenal heel with a really cool gimmick. Always over delivers on PPVs and is a highlight of whatever show he's on. Well deserving of the high rating he's mantained."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: churmabradawrote on 22.05.2023:"An absolute monster in the ring, he is amazing because he doesn't cheat to win, never takes shortcuts and just brutalises every opponent"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: CoachWwrote on 17.05.2023:[10.0] "This guy rules. My introduction to him was on NXT UK, and I'm happy to see his continued success. He's done a world of good for the IC Title, and I'm looking forward to his eventual ascent to the main event."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TheLegend27wrote on 13.05.2023:[10.0] "Love his matches, he is a master in a ring, one of my top 10 wrestler right now, hope to see him with a world title again in the future"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: crs285wrote on 06.05.2023:[10.0] "He is the master at the old-school hard-hitting style. He can get the best out of anyone he works with. He plays a great gimmick of trying to respect the business. Everywhere he has went he has been a star and that will probably continue on WWE's main roster"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Storyline Guywrote on 21.04.2023:[10.0] "One of the best wrestlers in the world. Arguably the best in WWE with a captivating character/gimmick- A wrestler with all the old school moves and techniques using them to perfection. I never saw Gunther have a bad match (he had a good match even with braun strowman lol). I like how his in ring style supports his gimmick. His every move is so impactful that he can use any of them as a finisher and win a match with any of them and yes he won matches with flowsion, powerbomb, splash, big boot, sleeper hold, lariat and even a CHOP - thus succouring to the character known as THE RING GENERAL. He has everything to become a world champ- the look, the in ring ability, an amazing heel persona, a great character and is the leader of IMPERIUM - one of the best factions in WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Midas23wrote on 19.04.2023:[10.0] "He is an amazing wrestler with immaculate presentation. A top talent in the business at this moment, where everything he does is captivating. His lack of flashiness is his flashiness (selling point) and I believe its an act that can be a world champion. He also ensures that his opponents do not look bad in the process and that is something I highly rate."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Tyler72wrote on 16.04.2023:[6.0] "Gunther's decent in the ring, but his offense is very repetitive. He obviously makes up for it with how strong he hits but it can become boring pretty quickly. He'd be so much better with a mix up of his move set and more variation. So much potential here to be such a better wrestler."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Iksuepsilon83mwrote on 14.04.2023:[10.0] "Als ich ihn das allererste Mal gesehen habe bildete er bei GSW mit Pascal Spalter das Team "Die Bomber". Was ein Unterschied zu heute. Er spielt seine Rolle perfekt und liefert ab. Glatte 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Flame233wrote on 08.04.2023:[10.0] "Gunther/Walter is an interesting case. I am only recently back to watching wrestling, so this guy is pretty new to me, and I have to say, I was not sure about him being good. Upon research I found out that, on his journey he got really in shape, and while I could not care less for wrestlers looks, this shows his commitment to the cause, and you can only appreciate that. He's SOMEHOW making arguably, the most boring move in wrestling ("The Chop") very entertaining, which is absolutley mindblowing to me. As of writing this comment he is WWE Intercontinental Champion, and I can say with no hesitation that he is carrying that belt proudly, and is bringing back it's prestige. It is always good to see European representation in WWE, and I don't recall having a powerful Austrian like him in the past roasters. Regretably, I cannot say much about his NXT and NXT UK runs, but I've heard only good things about them. The last good thing is having a big boy that is not absolute wood in the ring. Cannot to see more of this guy in WWE. I'm crossing my fingers for Der Ringgeneral, I'm sure that he can be a great WWE Champion one day. Edit: After WM, I can say that this guy is one of the best if not THE BEST wrestler that WWE has under their wings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Okaro143wrote on 07.04.2023:[10.0] "One of the most outstanding and domineering wrestlers on the planet. Orthodox and simple wrestling style but executed with brutality and intensity. Brings a level of physicality and savagery in his matches that you don't normally see."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: enviwrote on 06.04.2023:[10.0] "Rewriting my review because it's been 4 months since my last one and this man just seems to keep getting better as time goes on. In my eyes, GUNTHER is the best wrestler in the world. In his 299 day & counting reign with the Intercontinental Championship, he's singlehandedly brought prestige back to the title when it needed it the most. His desire to keep the mat sacred mixed with his brutal in-ring style and the aura he brings as a whole, really sells him as a man not to be fucked with. We've seen many international giants in the WWE who have followed the same path but none have captivated the audience quite like GUNTHER. His work as WALTER was impeccable and his 870 day reign as NXT UK Champion deserves a 10 in its own right. He's had incredible matches with the likes of Sheamus, Ilja Dragunov, Pete Dunne, Tyler Bate and just recently, Drew McIntyre, and I bet many more names will be added to this list as time passes. I can't wait to see him as a world champion one day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: benny5bellyswrote on 04.04.2023:[10.0] "There is a strong argument to be made that Gunther is the best wrestler in the world. He has been at an incredibly high level for at least 8 years now. It pains me that he works for a company I very rarely watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Wright15wrote on 03.04.2023:[10.0] "WALTER / Gunther has been one of the best wrestlers of the past several years, and it is great that so many people now realize why. A modern day equivalent of Don Leo Jonathan with the heaviest chops in the world, this is the kind of wrestler who could be a gigantic star in almost any era or place."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: RC505wrote on 03.04.2023:[10.0] "Truly a Profesional Wrestler with all the passion and skills. A successful pro-wrestler should have the special aura on him, which requires not only his appearance, but his promo skill, his own temperament, his clothes and moves, and his in-ring styles. These type of things make a gimmick persuasive, and Gunther/Walter's is surely persuasive. Gunther's matches are always solid. and look at how many weights this guy lost in 2022-2023 to make a good shape and extend in-ring career, with not harming his match's quality, you will see how much passion he has for prowrestling. Totally best material for wrestling. Glad we can have him in this business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Kamilahclanwrote on 02.04.2023:[7.0] "A very good wrestler that I just don't GET. His work is always solid but way too one dimensional for me and lacks variety, so almost all of his matches fall in that line and don't click with me on that level that I'd like to because he's obviously very good."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: LutherKingwrote on 01.04.2023:[10.0] "Honestly Gunther is my superstar of the moment. His wrestling, his charisma even his personality attracts even though he speaks very little. The kind of heel you like to enjoy. He mixes old and new. I hope they manage to push him to the top. And sorry for my imperfect English"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Eyapapwrote on 26.03.2023:[10.0] "Gunther is certainly the best wrestler of modern times. His matches are extraordinary, like his performance at the Royal Rumble. His gimmick is superb, and handles Imperium to perfection. Can't wait to see him world champion, because his reign as intercontinental champion is great! Even with less good wrestlers he manages to make a good match!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Wrasslinfan619wrote on 15.03.2023:[10.0] "Oh my god is GUNTHER great. He's absolutely in the top 10 best wrestlers of this generation, and perhaps in the convo for top 20 maybe 15 wrestlers ever, he's had so many classics and will continue to do so for years to come. Plus he's never had A bad theme I figured I'd mention that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Noquaswrote on 11.03.2023:[9.0] "An absolute masterclass. Classic NXT UK Championship reign, classic Intercontinental Championship reign with amazing matches against the likes of Pete Dunne, Ilja Dragunov, Sheamus, Braun Strowman... as well as his former runs in wXw for instance. Also beautiful moves and awesome physical transformation. One of the greatest of the business!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: yaboidasleeperwrote on 09.03.2023:[10.0] "To dive into a cliche, if there were any wrestler in the world who could have a match with a broom and have it considered the match of the night, Gunther/Walter is one of them. He is a man who manages to be a generational talent, and yet could've still been considered the same thing in any era of wrestling with his classic old school heel gimmick. He also probably, more than any performer today, knows how to structure a match and understands that while physical impressiveness is key, sometimes less is more. Absolutely phenomenal, and undoubtedly a shout for the best wrestler in the world right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ZayTokyowrote on 06.03.2023:[10.0] "The wrestler single handedly carrying the wwe on his back right now. His cringe inducing chops and strikes make me cringe in pain while he moves around great as a big man wrestler and can really have a match with just about everyone and make it good (if they are willing to put in the work with him) his matches with ospreay, dragunov, and bate are obvious stand outs but his matches with people like ricochet, riddle, darby all show just how great he is against everyone. easy 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TSwiftywrote on 06.03.2023:[9.0] "WALTER/Gunther is a great wrestler, but I do believe he's been massively overrated. I really don't want to knock that, because the fact that Gunther has gotten over in modern wrestling is truly awesome. We're in the age of spotfests and indie-style matches that prioritize workratel and that's the mainstream. So a guy like Gunther and his simplistic, old-school style is a breath of fresh air. My main issue with Gunther is how tired his match formula is. It's different from almost anyone else, but this is also a problem in it's own way. He lacks variety and creativity. Every match of his is structured very similarly. It was noticeable on the indies, but since coming to WWE his flaws have shown more. Gunther does have beastly strikes and power moves, but at times his offense feels underwhelming and undeserving of it's reputation. I still rate him highly because of his unique aura, look, character, and when he does live up to the hype there's nothing else like it. His matches with Ilja Dragunov are a good example of why I still consider Gunther to be a great wrestler even with the flaws I mentioned. When Gunther's good, he's really good."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KSupreme3wrote on 04.03.2023:[10.0] "The Ring General is one of the best wrestlers of these modern times. Almost every wrestler he faced were rewarded with blood clots on their chest, thanks to his insanely brutal chops. When put in a David Vs. Goliath situation, he makes a uphill battle look so devastating. He truly makes you feel bad for his opponent, which adds a bit of extra emotion to the matches. Although I wish he kept his name, I? m starting to get used to GUNTHER. I truly hope he gets to brush shoulders with the main eventers in the WWE, he? s due for a major title run. One of my new favorites. 9/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Fayzalwrote on 04.03.2023:[9.0] "He can work well with any kind of wrestler He is still imposing as hell He has given us one of the most memorable royal rumble endings of all time Whoever is in the ring with him is elevated, win or lose Amazing throwback wrestler"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: greaterdalewrote on 04.03.2023:[10.0] "Walter/Gunther has such an awesome hard hitting style. He's got some of the best chops around. It's been a pleasure seeing him rise up the WWE ranks over the past few years. I'm really hoping he breaks the Honkey Tonk Man's IC title record and then goes onto being a WWE champion. A while ago I would have thought that would be a pipe dream, but since Triple H has taken over WWE Gunther is being pushed mega hard. It's nice to see an awesome wrestler be rewarded for his hard work. Also he seems like a really cool guy too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ChrisPrattAsMariowrote on 04.03.2023:[10.0] "Pound for Pound the best in-ring worker in WWE right now. His nickname, the ring general, is definitely something he deserves. He has power, technical skills, and he comes across as an absolute star. Love his chops as they remind me of Kobashi every time. My favorite match of his is against Ilja Dragunov at Takeover 36."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: The Sick Lebowskiwrote on 18.02.2023:[10.0] "Absolut starkes Powerhouse und einer der besten Wrestler, vielleicht nicht sogar der Beste, in Europa. Zudem sowohl als Face, besonders aber als Heel gut. Er wäre einer, den ich auch gerne mal in der WWE sehen würde, aber er tendiert meines Wissens ja eher nach Japan, wo er definitiv auch sehr gut aufgehoben ist. Gehört für mich als mehrfacher Carat-Besucher schon fast unzulässig auf eine Euro-Show dazu und ich sehe ihn sehr gerne. Höchstpunktzahl. EDIT: Nun ist er also doch letztendlich in den USA bei WWE gelandet. Respekt dafür. Und auch dafür, dass er so viel abgenommen hat, wird seiner Gesundheit auf lange Zeit gut tun. Aber ich muss leider sagen, dass er mir "fetter" besser gefallen hat. Er wirkt natürlich immer noch absolut bedrohlich, aber mit seiner nun schlanken Statur weitaus nicht mehr so beeindruckend monsterhaft wie noch zu Zeiten, als ich ihn bei wXw live sehen durfte. Ich belasse es zwar bei der vollen 10, aber ein klein wenig Magie ist mittlerweile verloren gegangen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Oswuoldwrote on 16.02.2023:[10.0] "Five stars wrestler. He Is One of the best wrestler in the Planet now with Is NJPW 90' moveset and his capacity to pull up ***1/2+matches from every wrestler he fight against. I don't know what he could be able to do in NJPW. *****"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: SoaKaswrote on 08.02.2023:[10.0] "Could be a world champion in any era and hopefully will become one very soon since he's been stellar in the WWE since his arrival. When it comes to his indie-stuff, I know that he as great if not better. I personally loved him in WCPW/Defiant and I saw a little bit of his wXw run too which also seemed very good. The sky is the limit with this great old-school heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KKeanelwrote on 04.02.2023:[10.0] "One of the greatest european pro-wrestler ever. His abilities always were something special, but after losing weight they are on another level. His mic skill is growing, so future shine in bright colors for him. Future world champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: zags7000wrote on 01.02.2023:[10.0] "Consistently one of the best wrestlers in the world both before WWE and then as a member of NXT UK/NXT and now the main roster. His match with Sheamus was an unexpected classic while his series with Dragunov produced some of the greatest matches in WWE history. His match with Tyler Bate was great as well and he's done that within a somewhat short period of time producing classics everywhere he goes. He gets great heat as a foreign heel and plays the role well. Does just enough on the mic and is believable in what he says and his chops are some of the best in wrestling today. He's big but also athletic and that combination has really set him apart, especially in WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DangoDaisukiwrote on 29.01.2023:[6.0] "Ich habe mir mehrmals die besten Walter Matches angesehen und ich will sooo gerne ein 5 Sterne Erlebnis haben wie viele es haben, aber ich sehe in diesen Matches einfach nur mittelmäßige Matches und nichts außergewöhnliches. Vielleicht liegt es daran, dass ich viel zu viele stiffe japanische Matches schon gesehen habe, dass es mich einfach nicht mehr beeindruckt. Abseits von den Matches finde ich ihn auch ein wenig farblos."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Brainbreakerwrote on 12.01.2023:[9.0] "Der ehemalige Walter ist für mich gerade unter den top aktiven Wrestlern, gerade auch weil er in seiner Rolle als Ringgeneral, die er erfolgreich von Oberhausen nach Stamford exportiert hat, immer noch brilliert. Intensiv und stiff im Ring ist er, dabei immer glaubwürdig als Big Man unterwegs, und fähig aus jedem ein gutes Match rauszuholen. Nicht umsonst hat er - zusammen mit Gargano - die meisten 5* Matches bei WWE. Momentan schrammt er noch an der 10 vorbei, weil ich noch gerne sehen würde, wie er sich abseits von stereotypen Rollen, abseits von Stables, und ggf. als Face schlägt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: benh2wrote on 11.01.2023:[9.0] "A bit of a throwback and he's consistently been one of the best wrestlers in the world for nearly a decade now. Even as he's dropped weight, he's still big enough to be menacing but he can keep up with guys half his size. He also has a lot of the skills that many of today's wrestlers don't, such as pacing, positioning and feeding."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DeDogDavwrote on 05.01.2023:[10.0] "Proving to be one of the best wrestlers in the world today that can do it on any stage in any promotion. His match vs. Sheamus in Cardiff is absolute proof of this. Time for a major title."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Benwerderwrote on 01.01.2023:[10.0] "Einer der besten Wrestler überhaupt! Im mainroster aktuell eine feste Größe. Und seine Banger in denn letzten 10 Jahren sind zahlreich. Durch seine besseren Mic Skills noch knapp vor Castagnoli der beste Europäische Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BigVanKaelwrote on 29.12.2022:[10.0] "Somehow, someway, Gunther/WALTER finds a way to make his relatively limited moveset into one of the most brutal and hard hitting styles i've personally seen (definitely the most within WWE), all his matches have a special aura to them as they often end with a single almost conventional move that puts the opponent down for good. Future world champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: homunculuswrote on 25.12.2022:[10.0] "Gunther is one of, if not the, hardest hitting wrestlers of all time. Every move he does looks like it could kill the average person. He is a true professional wrestler. A master of his craft. The kind of wrestler rookies and fans will study for years to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: CMX-7wrote on 17.12.2022:[10.0] "Gunther is a real Emperor about Pro Wrestling, each of his matches is fantastic, it seems to me that any fan who saw his match to the end says to himself in his thoughts - "This match is the best on the show" or - "WOW this is the best I've seen" , He is a master of his craft and he can raise any of his opponents to the highest level!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Dr Bubatzwrote on 29.11.2022:[10.0] "Meiner Meinung nach ist Walter der beste Big Man der letzten 20 Jahre. Und das obwohl er garnicht so gigantisch ist. Er trägt einfach diese brachiale Aura mit sich. Und ein schlechtes Match hab ich auch nicht nicht gesehen. Props und weiter so. Vielleicht wird er ja den Honky tonk man ablösen als längster IC Champ ? !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GoreMarkwrote on 17.11.2022:[10.0] "I just love Walter in every single way, he's tall, strong and a heavyweight with a lot of agility. Great wrestler in every sense."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: whiterice47wrote on 14.11.2022:"8/10 Overall, I see a lot of talent and I think he is one of the most compelling wrestlers who doesn't have to say mauch."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KesagakeOKwrote on 13.11.2022:[10.0] "Everything that a big man wrestler should be. Psychology is enrapturing, work is stiff but safe, and has an aura of intimidation and menace. Everything he does is must watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Funnynamewrote on 12.11.2022:[10.0] "Gunther is beautiful in his brutality how stiff his matches get may be a turn off for some but for me it's refreshing to see I love a good dive as much as the next guy but seeing two men chop the hell out of each other is so satisfying to watch not to mention his immaculate selling great promos and star power everything put together makes him one of the best in the last 15 years"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MainEventMasterwrote on 27.10.2022:[10.0] "WALTER, not this stupid Gunther bullshit, is very much like FTR. Old school wrestler(s) that can be mix with todays suspense and thrill. He has not had a single bad match in his entire career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BigVanWalterwrote on 20.10.2022:[10.0] "Probably my favorite wrestler in the world rn. Great look, puts on consistently great matches and is a pretty good promo, especially with his super commanding voice. Hoping he beats the honky tonk mans record."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: CommisarRobewrote on 12.10.2022:[9.0] "Gunther "The Ring General" may be the best performer in Wrestling at the moment. His matches with Sheamus in 2022 have been phenomenal, his brutal style helps create a fantastically intimidating gimmick and his team with IMPERIUM is one of my favourite teams of the modern era. His current reign with the IC title is helping establish that belt as strong and respectable, a few more years like this and he could be a 10.0"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JustAWrestlingFanwrote on 09.10.2022:[10.0] "Truly one of the most terrific men in wrestling today. He has the best chops in wrestling. His power style of wrestling makes him look all the more intimidating and he has main eventer written all over him. Love that he has no set finisher. He can beat you with both powerbombs and lariats. Makes him seem legit, and makes you really pay attention as matches can end at any point."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: boraselvi7wrote on 09.10.2022:[10.0] "One of the best chops in the industry. The way he presents himself makes me take him more seriously than most wrestlers. He doesn't look like he's going to wrestle. He looks like he is going to beat the shit out of his opponent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BAILE3wrote on 09.10.2022:[10.0] "One of the best in ring performers of all time. Amazing hard-hitting powerhouse and one of the best wrestlers to come out of Europe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Rivermanwrote on 16.09.2022:[10.0] "There's no wrestler on earth that gets me more excited to watch them on a match to match basis. Inside the ring, he's a master of his craft. Beyond that, he has a great character and presence to him and executes that character equally well through matches and promos, never allowing his believability to slip for even a second. Top tier performer"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: arrancarwrote on 14.09.2022:[7.0] "I can't deny that Walter is a great wrestler when he has all aspects of his game in check, and he has a fantastic look and aura that allows him to stand out, but the idea that he's one of the best in the world or that he's had multiple 5-star classics feels immensely exaggerated. He's one of those strike-happy wrestlers who can occasionally spark a match up with his immense power, but more often than not he'll fail to truly interest me with the same old strikes and power moves. It also doesn't help that his reputation far precedes him, and now he forever has this "amazing monster destroyer" ideal to live up to, meaning that any slight screwup or underwhelming moment is amplified. I also just hate how almost all his biggest matches HAVE to centre around his arm/leg being worked over. It makes sense of course, since Walter's chops are a good portion of his offence, and weakened legs will immobilise him and lessen the effect of his immense power, but it's boring seeing the same stories being told where Walter gets "chopped down" via his limbs in basically every big match he has. Despite having good long-term selling, I also don't think Walter sells very well in real-time. He comes off as a child who has dramatically caught his finger in a cupboard door, and thus he goes from this intimidating monster to an overly weak-looking figure. And it sucks because this happens in basically every singles match he has, since I guess every opponent he ever faces HAS to put him in serious danger to the point that this weak and skittish selling comes out. This sucks, because if Walter is really this monster then I want it to be rare and feel EARNED when a wrestler manages to inflict serious pain on him to the point that he's crying out in pain, staggering, or even knocked down. His selling should be far more focussed on him getting more annoyed at his opponents' offence as opposed to constantly getting dazed and knocked down, and he should show that the level of pain he's experiencing from those attacks is more equivalent to getting a bad scratch as opposed to constantly vocalising how much pain he's in. This is just because if every single wrestler he faces is able to knock him down or stagger him, cause him to cry out in pain, and then get a bunch of hope spots against him (which especially annoys me when he's up against far lesser opponents who obviously have no chance against him), then it just wears away at Walter's "monstrous" aura. I want it to be special when someone gets anything serious off against Walter, not a customary thing. These negatives aside, I still can't deny that he has some impressive moments and usually makes for a great monster. This also means that he's a very good partner for a pure babyface to play off of. If he could just make his offence a bit more varied, tell some new stories in his big matches, and maybe learn to sell in a way more befitting a 'monster', then I'd match everyone else's hype for him."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GwenCube64wrote on 05.09.2022:[10.0] "I purposely avoid watching too much of his matches so every time I watch him, it makes me very happy and reminds me of how much I love this dude. Possibly the best big hunk of meat style wrestler in recent memory."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: UltraNano54wrote on 04.09.2022:[10.0] "He has been a 9/10 for me for a few years now but after that Sheamus match, I am now 100% certain that he has earned the full 10/10. Absolutely one of the best working today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KELLANwrote on 30.08.2022:[10.0] "Der beste deutschsprachige Wrestler, verdient beim Marktführer unter Vertrag genommen. Hatte Legendäre NXT UK Matches, inklusive ikonischem UK Title Reign. Gerade ist er als IC Champion bei Smackdown Unterwegs, auch dieser Regentschaft ist bisher unfassbar gut. Potenzial: 3x WWE World/Universal Champion - 350 Tage insgesamt - 3x US / IC Champion - 500 Tage insgesamt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Divine Departurewrote on 21.08.2022:[10.0] "WALTER is one of the best wrestlers in the world. He's equally brutal and technical when he needs to be, with a rock solid grasp on psychology and an incredible aura. It's a crime against humanity that he's signed and currently working as "Gunther" on main roster WWE, but I'm happy that he's earning the pay-check he deserves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: WrestlingFan892wrote on 20.08.2022:[10.0] "He is one of the best wrestlers in WWE today, he has a classic and unique wrestling style. His matches are interesting to watch as he has such a variety of classic moves with his height and physique. Dropkicks, moves from the top rope... and his chops have become iconic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: face painted legendwrote on 13.08.2022:[10.0] "Never saw him before the UK NXT and a match he had that people were raving about, and man I was blown away. He is a definite throwback to the days of old pro wrestler for me. He has a great persona. He looks the part. He acts the part. He's believable as all get out. And what I love most about the guy is that when he's in the ring, he doesn't do anything that someone who looks like he does shouldn't do. I don't pay as much attention as I should to his promo work, but everything else that he does so great that it doesn't really matter IMO."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JoshuaWrestling63wrote on 12.07.2022:[10.0] "Walter meiner Meinung nach "einer" der besten wrestler den die wwe aktuell hat finds nur ein bisschen schade das sie ihn umbenannt haben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: PokeSlamwrote on 06.07.2022:[10.0] "Gunther/Walter was always a good wrestler. Now that he's gotten in better shape he just seems like he's getting even better. Skys the limit for this guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: PhenomenalGunwrote on 27.06.2022:[8.0] "I liked Walter a lot more when he was fatter. It's impressive how he slimmed down, but he looked more imposing before. That aside, Walter has been responsible for some of the best indie matches of the best decade. His sheer excellence in in-ring IQ and knowing how to break down his opponents without making them look weak is to be applauded. Although, I will criticize that he can be kind of repetitive at times and doesn't really give off the presense of a star. Take Ludwig Kaiser away, and this guy will flounder like Cesaro on the main roster, talented in-ring worker but bad on the mic. Good idea keeping Ludwig with him as that guy can work pretty well himself. I don't think Walter is quite a top star yet or that close honestly but he's a great in-ring worker, that's where he excels."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: texasyoshwrote on 19.06.2022:[10.0] "Gunther/WALTER is, in my opinion one of the best workers today. Unfortunately, I think he's been watered down as 'Gunther'. Regardless, he has all the tools, and now even the physical standard to become a top guy anywhere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: eltetechoriwrote on 14.06.2022:[10.0] "This wrestler is that kind of Powerhouse that you don't expect, maybe he is not a beast of moves, but he really looks like a monster, despite his name change, he still keeps his essence."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Jacob Joneswrote on 13.06.2022:[10.0] "Walter, Gunther, whatever you call him, he is the best wrestler I have ever seen in a ring. Every move he makes has a purpose and an immense amount of impact. His punches are scary, his slams are deadly, and his slaps? They leave your chest as red as a sunburn. He? s no slouch on the mic either and every time you see him, he has the look and presence of a terminator. I expect great things out of him as the new Intercontinental champion and look forward to seeing what he can do going forward."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: FrenchPredator10wrote on 12.05.2022:[2.0] "Really don't like this guy, look really stiff and haughty in real life. I don't understand hype for this fat guy."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Tomas Montoyawrote on 29.04.2022:[10.0] "This guy is a contemporary legend. His fights are excellent and he manages to sell his gimmick perfectly. One of my all-time favorites"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: elryowrote on 13.04.2022:[4.0] "He's good, although very overrated. If you've seen one WALTER match, you've seen them all. He just slaps the shit out of his opponent. Very real, too. Would be more suited to strong style than in WWE but he is where he is. It's a shame he didn't move to the US sooner because that delay has meant his has career stagnated a lot. The fact he's only just moved 'up' to NXT shows how far behind he is."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MorbidAxiswrote on 12.04.2022:[10.0] "I? m writing this review just to make it known that his name is WALTER. I will literally never refer to him as Gunther, and I absolutely cannot understand the name change. You bring a guy up to the main roster, with an already established name and gimmick, who? s over pretty much all over the world, and change everything about him so people don? t even recognize him. He is way too good for WWE and I can? t wait for the day he leaves to wrestle for a promotion that isn? t complete trash."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: afogarty21wrote on 17.03.2022:[8.0] "Good mover for a big man, I really enjoyed him in NXT UK even though they never did a good job of building up legitimate challengers for him. Being a big man that can move I had high hopes for him in WWE, but now with his name change I can clearly see WWE will probably waste his talents."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: furkan3614wrote on 01.03.2022:[3.0] "I've never liked big guys in wrestling. I get so bored of big man slapping each other. Walter's wrestling style is extremely boring to watch for me. He has some charisma and I wouldn't call him a bad wrestler but him being 5th highest rated superstar in history of WWE is ridiculous to me."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: nWo-Joshi-Guywrote on 24.02.2022:[10.0] "WALTER is like no one else in the business today (or maybe ever). He has the amazing ability to take the style (and gimmick) of wrestling in the past and combine it with modern match structures to create something that both fans of the old and of the new can enjoy. His best matches are truly brutal and his booking in WWE (outside of the ridiculous name change) has been immense. He will no doubt go down as one of the greatest of all time. Leader of a great faction too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: SquilliamFancysonwrote on 11.02.2022:[9.0] "WALTER (fuck Gunther) is a force of nature unseen since the days of stiff monsters like Big Van Vader. He avoids falling into the pitfalls of the "big man" style, and has a technical and psychological prowess matched by few working today."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: WhatIsLooveeewrote on 06.02.2022:[10.0] "Person who creates the impression of a "final boss". His wrestling is realistic, he literally has one of the best chops in the industry. He doesn't do a lot of moves, doesn't do flips or anything extraordinary. But that's where he's great. His style is unique and you believe him. He stood out in the NXT UK and, hopefully, will have a similar role in the current NXT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GriffinXwrote on 06.02.2022:[8.0] "The new name is stupid and no I won't stop complaining about it until WWE changes it or he leaves WWE and become WALTER again. But the man is a great wrestler who has put down some brutal "beatings" in the ring"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: danzgalliwagwrote on 04.02.2022:[10.0] "Soon to go down as one of the greatest of all time. Get a few more major titles to his name, and he'll be in the same conversation as guys like Punk, Danielson, Joe, Lesnar, etc. Once he inevitably leaves NXT 2.0, hopefully we'll see WALTER take on even more of the biggest stars of the next generation. I'd sure as hell love to see him chop the shit out of MJF. Dream matches aside, WALTER is one of the very few wrestlers of today's landscape who truly make wrestling feel real. A lot can be said about that, good and bad, but reality is undoubtably an element of wrestling storytelling that often goes overlooked. In my opinion, this is the reason WALTER resonates with so many fans. His matches are so investing and so unique because his wrestling style feels so much more real than any other wrestler going today. Lesnar may have the strength, but he doesn't have the (kayfabe) brutality. Malakai may have the strikes, but he doesn't have the power. WALTER is the best of those two worlds."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: WrestlingFan1wrote on 20.01.2022:[10.0] "One of the best powerhouses in history, this wrestler has an incredible ability to sell a legitimate match, his brutality is impressive, the way he tells you a story, his athleticism with his weight, he is perhaps ahead of the stereotypes of heavy wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Rocky7wrote on 19.01.2022:[10.0] "Yes he was once known as Gha-cha-ping, and yes he's about to start life on NXT 2.0 as GUNTHER, but having followed WALTER's career over the last decade from the Big Van Walter days, he's the best big man worker of the last ten years, brutal strikes, fantastic match structures, knows how to elevate an underdog babyface. WALTER had an incredible run of over two years as the NXT UK Champion where he was near unbeatable, yet WWE decided he needed a repackaging. Oh well, at least we had what came before, and hopefully GUNTHER will be just as intimidating and incredible as WALTER was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jboyaquarwrote on 04.01.2022:[8.0] "WoW, for a guy w/ 22 matches in the past two years, and for whom hasn't oft been tested against men bigger than himself, a 9.52 rating appears awfully high. Let him become a greater workhorse roster member prior to being ranked the #23 greatest pro-wrestling talent on the entire Cagematch database. (But of course this is a Teutonic tome.) With that being said, his array of exceptionally physical contests in-which he can play the bruising beast is impressive, as was watching him close-up in Ryogoku taking a beating from Hino & especially Okabayashi. But those guys have wrestled hundreds, if not thousands (Sekimoto, ) more matches than him against all types of competitors. I can't yet rate him higher than a..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: mjs2212wrote on 14.12.2021:[10.0] "This man is unreal in every way. An absolute throwback, and he throws some of the stiffest chops I have ever seen in my life. An amazing fighting champion with a very traditional moves and look. With opponents like Pete Dunne and Ilja Dragunov, he puts on some hard-hitting matches and is almost always impressive. He would have fit in perfectly with the old school NWA back in the day, maybe even against the likes of Bruno Sammartino. There's not enough words to describe the greatness that is WALTER, he is that good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TigerDiverwrote on 22.11.2021:[10.0] "Easily my favorite guy to watch right now in modern wrestling. An absolutely incredible piece of specimen that'll fit right in any era of wrestling, no matter what setting it may have. From the old territory days of the distant past, to the cartoonish WWF Golden Era, all the way to the modern era. WALTER is the perfect pro wrestler that won't look lost for one bit no matter which time period or which place he steps into. His chops are amazingly terrifying, his size is massively impressive, and his wrestling ability is pretty much second to none. I could be here all day naming the list of all his epic matches over the decade, but I think stopping my comment right here would be a better idea."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ONESTOPwrote on 15.11.2021:[10.0] "I get surprised every time he unfolds in the ring. He has something very special about him. wish he got more tv time on ppv."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Muggowrote on 03.11.2021:[10.0] "WALTER is the best big man wrestler in the world, and you could argue he's the best in the world currently. He has an aura that very little other wrestlers have, and every single match of his feels like a war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: waddicted71wrote on 17.10.2021:[10.0] "The best wrestler in the world right now. Actually, he has been the best for a while. I'm starting to think that it is impossible for him to have a bad match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ExcitingProWrestlin3wrote on 10.10.2021:[10.0] "He was for 870 days the greatest champion of the modern era. He is WALTER. The Past, The Present, and A Staple for the next Decade."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: No Onewrote on 04.09.2021:[10.0] "Already one of the greatest in-ring performers of all time. One of the greatest big man wrestlers of all time. One of the greatest & most devastating strikers in pro wrestling history. Has the aura of being "The Final Boss". Outstanding big man seller. Feuds with Ilja Dragunov, David Starr, Jordan Devlin, Zack Sabre Jr, & British Strong Style are some of the best feuds of the last 10 years. Has put on matches that will withstand the "Test of Time". Tag Team partnership with Timothy Thatcher as "Ringkampf" was one of the best tag teams of the 2010's decade. Is extremely realistic in every match. His WWE NXT UK World Title reign is legendary and he held that title for over 870 days, which is virtually unheard of in the modern era of professional wrestling. Gained a massive cult following for his domination of the Independent Wrestling Circuit. Has translated extremely well to the WWE. One of the most protected wrestlers in the world today, for all the right reasons. Pro wrestling's version of Ivan Drago."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: LightningCutterwrote on 23.08.2021:[10.0] "Even with the limitations he's put on himself (only wanting to work NXT and primarily in the UK) he stands as one of the best in the world. His unique presence makes him stand out obviously be he completely delivers once the bell rings too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: brickhitterSamwrote on 20.08.2021:[10.0] "Best wrestler in the world right now in my opinion. I don? t think he? s ever had a bad match. All of his moves look like they hurt like hell."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BrayanLaPrewrote on 19.08.2021:[10.0] "Adjusting the standard for the average size of wrestlers in each individual era, WALTER is one of the greatest big men to ever wrestle. A technical magician with strikes that could make a barren wasteland cry, the Imperium leader is the gold standard for physical dominance in modern wrestling. Nothing he does is especially flashy, but everything he does is effective. And every match he has feels like a genuine experience. A remarkable wrestler with a truly special presence. A five-star wrestler, 10 out of 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Baybay29Vwrote on 10.05.2021:[10.0] "The best wrestler in the world right now everything he does seems so legit the dropkick, clothesline, powerbomb , suplex, splash from the top rope and of course the knife edge chop everything look like a gun shot and a believable finisher. Add to that the commanding aura, the entrance, the threatening voice.. From top to bottom the world best"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: The A-Listerwrote on 08.05.2021:[10.0] "One of the best wrestlers in the world right now. Convincible, legit and just brutal. Deserves better than being on D show no one cares about."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Kungwrote on 20.04.2021:[10.0] "WALTER might very well be the best wrestler on the planet right now. He's a great in-ring talent. He doesn't do anything that seems fake or not in line with his gimmick. Hia matches are visceral and always thrilling. And he's probably the most believable wrestler in the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jltwrote on 08.04.2021:[10.0] "Absolutely brutal and definitely devastating, WALTER is a man you would not want to face in the real world, considering most of his hits in wrestling are real, especially his chops. He has the ability to look like an absolute monster or a man who is weak but will turn in an instant and finish you. This man isn't the next Brock Lesnar, he is the first WALTER."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GoodGoodSnapwrote on 08.04.2021:[10.0] "WALTER is an anomaly in professional wrestling - not traditionally "in shape", not a high spot machine, he is simply an unkillable monster, a colossus that will beat you and beat you until you cannot stand up any more. Wrestling is best when it is a contrast of characters, and WALTER is so distinct from anyone he's against that they are elevated as a result."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KyleEnjoysWrestlingwrote on 24.03.2021:[9.0] "Currently being booked as one of the most legitimate people involved in wrestling. Because he's being kept special, he feels special -- like a true attraction who you want to pay money to see. He's excellent in the ring & is able to mix modern wrestling with an old school mentality. His matches against the likes of Bate & Dragonov in NXTUK were some of the best wrestling during their times. Because he has, to this point, stayed away from the main roster WWE, there are still heaps of potentially huge matchups for him to have. You just have to hope that he's still treated the same when (or if) Vince ever gets his hands on him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: rainmakerpunkwrote on 12.03.2021:[10.0] "Has to be in the conversation for best big man ever, his matches are so brutal, his strikes are just lethal"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: plaguespreaderwrote on 09.03.2021:[9.0] "literally encompasses every aspect of wrestling to such a comprehensive degree: brutality, technicality, presence, movement, intimidation. like johnny valentine says "I can't make them believe that wrestling is real, but I can make them believe I'm real. " who else is in this category? elite brethren. Samoa Joe, Brock Lesnar, AJ Styles, Okada, Morishima, Terry Funk, Raven, Misawa, just to name a few. Everything WALTER does matters. It makes sense. Whether it be a nefarious set of finishers for any situation (sleeper, powerbomb, golem splash) or a meticulous sequence of punishing holds, WALTER holds the title of Ring General with no weaknesses. During his run in Europe the weak chin arc was masterfully done and allowed weaker opponents such as David Starr to capitalize victories that did not look unrealistic. I'll give him his 10 once he faces Lesnar."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Burninghammercriticwrote on 27.02.2021:[10.0] "Youre not gonna see flashy flips and spins from WALTER. What he offers is something a lot more substantial: methodical strikes, grapples and submissions. Meticulously beautiful matches and terrifyingly, tantalising offense on display. WALTER is inarguably in the top 5 European wrestlers at the moment, and may actually hold that crown. His brute strength and impose are a sight to behold and make him the favourite in any contest. A modern day Hansen with more tricks. WALTER is a living legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: mamboKENTAwrote on 23.02.2021:[10.0] "WALTER is this generation's version of Samoa Joe. And if you remember how awesome Joe was in his prime, you'll see this is an awesome compliment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jchiofalwrote on 29.01.2021:[10.0] "WALTER isn't flashy or pretty. His wrestling looks like it hurts because it probably does, and yet I haven't heard anyone complain about his stuff was, nor have I heard of anyone being injured by him. Everything about his look, and wrestling is simple, but not only is it effective, but he has really great matches. He's a murder baby looking bully, and everything he does in a wrestling ring has a purpose. One of my favorites today. Everything he does looks like it could end a match"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Brett1980wrote on 17.01.2021:[9.0] "Excellent and intimidating presence. Has a great skill where he always looks dominant but leaves enough room to believe he is beatable. Has been lucky however in the sense that in NXT UK he has not been made to change his style that got him over on the indies. Has the most deadly looking chops in the business currently."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BlakeFR37wrote on 25.09.2020:[9.0] "WALTER is an excellent wrestler, big man with big moves, great leader. Great rivalries. Deserves his rank."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: NeilJungwrote on 03.05.2020:[8.0] "A 9 on the independent circuit, a 7 at a push in WWE. Previously the best heavyweight outside of Japan, whose old-fashioned style of slower, methodical power wrestling was a breath of fresh air in the late 2010s. Enjoyable in slugfests with other big men, but he excels as a big bully heel in David vs. Goliath matches with smaller opponents, and knows how to show fallibility without appearing weak or unconvincing as a dominant wrestler. Once one of the hottest free agents in the world, he has stagnated in WWE on the pointless NXT UK brand and was booked terribly in his main roster appearances. Supremely gifted but his lack of a body, throwback style, the proliferation of other large wrestlers, and his not being a native English speaker will lower his ceiling on Raw or Smackdown significantly, and he is completely wasted on NXT UK. Would be better off as a big fish in the smaller indy pond, or trying his luck in Japan."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: AndoCommandowrote on 30.03.2020:[8.0] "Fantastic when he's allowed to work his slow methodical style. Great imposing figure in the ring that can garner sympathy for any opponent. Very good long-term selling elevates his matches in the 2nd half. Very rigid, almost limited offense he'll rely on too often, making a lot of his matches feeling very similar. Never put him in Vince's hands. I like the way he chops really hard."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Bobbythreesixteenwrote on 06.01.2020:[8.0] "Der Ringgeneral ist auf jeden Fall einer der besten aus dem Europäischen Raum. Trotz seiner Größe und Statur ist er unglaublich beweglich und kann sensationelle Matches worken. Mit Walter ist bei fast jedem Gegner ein super Match vorprogrammiert. Ich habe ihn bei der wXw nur leider ein wenig zu oft gesehen und habe nicht das Gefühl das die WWE ihn großartig anders einsetzen wird und daher hat er für mich nicht mehr den riesigem Reiz wie noch vor 2-3 Jahren deshalb nur 8 Punkte aber dennoch ein wahnsinns Wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: cosmik debriswrote on 25.11.2019:[10.0] "best wrestler under wwe contract today, and among Okada and few others best wrestler in the world period. everything about WALTER works perfectly: his gimmick fits him like a glove (aided by the best and most fitting entrance theme ever), his in ring work is flawless, he's both a powerhouse and a technician and can also do some high spots (even though he doesn't need it at all), his chops have the power of a thousand exploding suns, his face expressions are always believable and for a big strong guy like he is he also knows how to sell pretty damn good. I don't see any major flaw in WALTER and I don't know why wwe doesn't just give him all the fucking belts and never make him lose again ever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Fan-since-1990wrote on 16.10.2019:[10.0] "Von Kopf bis Fuß ein absoluter Megastar. Unglaubliche Moves im Ring (er hat sogar schon 'nen 619 gezeigt! ), die bei seiner Statur echt phänomenal aussehen. Es passt alles, was er im Ring anpackt. Und WENN er anpackt, dann tut es zudem richtig weh. Seine Handkanten-Schläge sind der Wahnsinn. Als ich live in der Halle erleben durfte, wie er zuhaut, war ich echt schockiert, wie laut es war. Man konnte der Brust des Gegners dabei zusehen, wie sie von einer normalen Hautfarbe zu puterrot wechselte. Darüber hinaus ein 1a-Talker, der es komplett drauf hat, die Massen zu begeistern und dabei authentisch zu klingen. Dass sich die WWE seine Dienste gesichert hat, war ein genialer Schachzug. Und zum Glück nutzen sie ihn ja auch gut und lassen ihn nicht verkommen wie so viele andere großartige Talente."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Ibanezwrote on 27.09.2019:[9.0] "Der Mann der Stunde! Absolut überzeugende Ausstrahlung, Promos großartig und nicht zuletzt, ein sauberer und sicherer Worker! Abseits des Rings sehr sympathisch und immer zu einem kleinen Späßchen aufgelegt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Wrestlefan20wrote on 03.09.2019:[9.0] "He's pretty agile for his size and is also pretty fun to watch. His intimidating look also removed his need to cut promos, which is good."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Jordo09wrote on 02.09.2019:[9.0] "the best big man in wrestling today, he's chop are just brutal and hes matches with Bate and Dunne were some of the best ive seen in years, im glad hes in the WWE even if its NXT UK i hope he makes the jump to raw or smackdown and is pushed as an absolute beast"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: taabr2wrote on 31.08.2019:[10.0] "One of the best brawlers in wrestling today. Nearly everything this man does looks like it painful, WALTER is the best monster heel in wrestling today and we need more workers like him. WALTER was until fairly recently the best unsigned talent in the growing European wrestling scene but is now the top guy in NXT's stumbling UK division. The problem has never been with the talent on the division though and more on the execution, if WWE can right the ship I can see WALTER easily becoming the face of the branch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Kingtaeyeonwrote on 28.08.2019:[7.0] "Limited move set but has the looks of a powerhouse perfect to dominate the NXT UK scene. He'll falter on the main roster I'm almost certain but on the Indies he shined but his current run on NXT UK brings him slightly down"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: CodySquaredwrote on 18.08.2019:[8.0] "One of my favourite Wrestlers right now, but I would love to see him pick up new cooler moves because the slow, sloppy repeating powerbombs and slow methodical chops won? t hold over if he? s to make it to the main roster at all. He was a spectacle on the indies and I? m hoping the magic stays with him being in such a big promotion now."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: PuroresuLoverwrote on 13.05.2019:[10.0] "WALTER is the best european wrestler in the world, his chops are brutal as fuck, and his suplexes + big boots are very beautiful. I really wanted to see him wrestle in Japan, like in BJW or NOAH. But he's doing a good job in NXT UK. If you don't know WALTER, please, start watching his matches, 'cause you're gonna love it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: AJStylopzwrote on 07.04.2019:[9.0] "WALTER is one of my favorite wrestlers from these days. His monster work is what implaments him as a true Goliath of the business. One of the most destructive and mean motherfuckers you will ever see in the business."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Oliver95xwrote on 20.03.2019:[10.0] "Walter ist einfach nur der Wahnsinn. Sein auftreten und sein Charisma. Im Ring brutal und wenn Walter auf der Card ist, ist davon auszugehen das er das MOTN zeigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Ferdinand Fisawrote on 13.01.2019:[10.0] "Walter ist ein Star und bald not uk champion. Erwartet pure Härte und die beste sportliche Leistung des Abends denn das ist RINGKAMPF"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Cibswrote on 02.01.2019:[8.0] "A star in process. This guy is really good at what he does, his offense is brutal but he's very good at selling when he has to. He has also shown great ability to adapt to different types of opponents and styles."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: zephyrwrote on 07.12.2018:[8.0] "Old review: Being an intense and talented hoss, WALTER is no doubt on his way to being the next big thing on the indies.  New review: Probably not going to get to beat the hell out of people in WWE and most likely won't be used to his full potential. Oh well."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: RatingsMachinewrote on 22.09.2018:[7.0] "WALTER delivers some of the stiffest chops in the business, and he's riding that to an unwarranted reputation as a great worker. Take away the chops, and he's still a good worker, but no better than that. Quick; name me a great WALTER match that's not built around those chops. Don't all answer me at once."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ohnoeswrote on 17.09.2018:[7.0] "WALTER is one of the most hyped wrestlers outside of the two major promotions, and for good reason: his overwhelming stature and brutal offense (most specifically, his chops) are a sight to see. He can put on consistently good matches with almost anyone as a dominant force, but he's not invincible as he sells well when his opponents evade and counter him. It's true, however, that there are some matches where he becomes too reliant on his chops, and thus his matches become too samey. But there are certainly other matches where he mixes it up well, and the match becomes much more exciting. He doesn't live up to the hype for me, but he's close to doing so, and I do look forward to seeing the matches where he finds the right balance with his offense, with a great dance partner to work with."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jan23kidwrote on 21.08.2018:[10.0] "WALTER ist derzeit einer der besten Wrestler überhaupt. Seine Physis und seine Präsenz sind unglaublich und sein sich deutlich vom Gros der aktuellen Kollegen unterscheidendes Wrestling machen jedes Match von ihm sehenswert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GoldLigerwrote on 21.05.2018:[10.0] "WALTER to me is the best wrestler in the world today. His offense, selling, storytelling, everything, all comes together so seamlessly these days. Ever since the formation of Ringkampf, something awoke in him, and he's been on the run of a lifetime. There's no wrestler out there right now that is more likely to put on a 4 star match on any given night with any given opponent than WALTER. His work in wXw, where storylines are more consistent and the fans are more familiar with his career, has been tremendous during this same timeframe, especially against Ilja Dragunov and David Starr."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: WrestlerGewerkschaftwrote on 06.03.2018:[7.0] "Das Im-Ring Können ist ihm definitiv nicht abzusprechen, da rangiert er bei mir klar zwischen 9-10. Charisma würde ich bei ihm jetzt allerdings nicht wie meine Vorredner hoch einreihen. Bei ihm macht es die imposante Erscheinung aus, dass da der halbe Roster der wXw verblasst ist aber keine Kunst. Stellt man den Mann in die WWE, was nun mal der Gradmesser ist, wird er wohl weniger Eindruck schinden. Mic-Work find ich nicht beeindruckend bei ihm, war auch nie gut. Das Ringkampf Gimmick ist ganz nett, aber irgendwann hat man sich da auch satt gesehen. Er ist ganz sicher einer der besten Heavyweights in Europa.  Aber als weltweites Top-Wrestler-Paket zu gelten, da muss dann schon ein wenig mehr her."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KamiyaKojimawrote on 22.02.2018:[6.0] "Eine ganze Weile dachte ich, dass er viel Potenzial hat. Jedoch finde ich ihn irgendwie fast immer noch genauso solide wie vor 5 Jahren. Leider..."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: stc13wrote on 20.02.2018:[5.0] "While he's a solid worker, I find his offense and psychology to be fairly limited.  Watching his matches, I just don't feel any level of investment.  There's definitely potential here, but in my eyes he has a lot of room to develop."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Makai Clubwrote on 19.02.2018:[10.0] "He is one of the best wrestler of the past decade without doubt. Fantastic in the ring. He has some charisma and an aura of a complete bad ass. He has even shown that he can be quite comedic with his interactions with Thatcher. His single matches are great. His tag matches are great. His offence is brutal yet there is a certain art to it. The best european wrestler not called Zack Sabre Jr for a while. 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Speeblewrote on 19.02.2018:[6.0] "WALTER's chops are the most unnecessarily savage in the business. There's just no need for the level of brutality on display in his matches. Yes, it helps get over his unstoppable badass persona but wrestling is supposed to be about simulating the excitement of combat sports without actually hurting each other. He is a very solid worker but relies far too much on his chops and general ass kicking. It doesn't get me invested in his matches at all, and they often feel like they end far too abruptly. I know the guy is capable of putting on an absolute barnburner, but I haven't seen it yet. It's clear that he would get very over in Japan with his style. I hope when paired up with someone like Okada or Naito he can give me the dramatic epic I'm waiting to see."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Sebastian Vwrote on 27.01.2018:[10.0] "Im Moment in meinen Augen ganz klar einer der besten Wrestler der Welt. Im Ring ist er unantastbar und 10 Punkte reichen da eigentlich gar nicht aus bei der Bewertung. Er ist der beweglichste Big Man überhaupt, er hat gutes Selling, Ringpsychologie, er ist vielseitig und kann eigentlich jeden Stil und jeden Gegner gut aussehen lassen, er hat ein breites Moveset und er hat eine der authentischsten und stiffsten Offensiven der Welt. Zeigt reihenweise Weltklassematches und zeigt generell nie schlechte Matches. Auch ein toller Tag Team Wrestler besonders mit Thatcher. Er ist durch und durch Profi. Charisma verdient bei ihm ebenfalls 10 Punkte. Er ist eine absolut imposante Erscheinung, die die Menschen mitreißt. Micwork ist seine "Schwäche" da würde ich ihm 8 Punkte geben. Hält gute emotionale Promos, ist aber kein extrem kreativer Redner der das Rad neu erfindet. Trotzdem insgesamt 10 Punkte, da der letzte Aspekt sowie er eingesetzt wird und bei dem was er darstellt nicht so ins Gewicht fällt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TheLoudMouthwrote on 04.01.2018:[10.0] "Walter ist in der Form seines Lebens und aktuell wohl das beste Powerhouse der Welt, allein seine Agilität ist nicht von diesem Planeten. Etwas Besseres konnte dem Wrestling in Deutschland und insbesondere der wXw nicht passieren mit diesem Weltklasse-Athleten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Dragon Fighterwrote on 29.11.2017:[10.0] "Ridiculously awesome. Since finding out his work in wxw match with dragunov, he has become one of my favorite wrestlers to watch. His in ring work, psychology are outstanding. His chops are freaking sick- one of the best if not the best in the business right now. He put on a lot of great performances in 2017 so far ( with dragunov, riddle, starr, zsj, etc ). Hope he stays on the indies for a long time and continues to deliver."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BigMikewrote on 24.11.2017:[10.0] "For me wrestler of 2017, He's had a few 5 star matches in wxw and with ZSJ. He's only 30 so I hope to see him for a few years to come"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KingLagartowrote on 05.11.2017:[9.0] "This guy is amazing. Can give a very good match even with his size, wich is very difficult for some wrestler that are smaller than him"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TooSweetPhilwrote on 25.09.2017:[8.0] "WALTER! Geiler Typ der Österreicher. Früher hatte ich Probleme mich mit ihm anzufreunden, aber seine kürzlichen PROGRESS Matches gegen Matt Riddle haben meine Meinung geändert. Der Typ ist der perfekte Big Man und das zeigt er. Hart as fuck, dazu erbarmungslos, geile Facials, gutes Charisma. Mit Abstand der Beste bei RINGKAMPF und das in jedem Belangen. Hoffe ich kann ihn irgendwann auch live sehen, von mir gibt's hier schon sicher 8/10."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Sam ULwrote on 04.09.2017:[10.0] "Legitimer Nachfolger von Otto Wanz. Hat das Zeug auch in den USA zumindest bei den Indies was zu reissen! Wäre interessant, ihn mal in Japan oder bei ROH zu sehen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Mizzle Assault Antwrote on 15.08.2017:[10.0] "Ridiculously good. One of the best in the world at this moment. Just breaking into the US, which he may very well take by storm."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Fruchttigerwrote on 25.07.2017:[10.0] "In Europa geht kein Weg an Walter vorbei und auch International zahlt er zu einen gefragten Wrestler und zwar völlig zu recht. Der Ring General ist ein Unikat, es gibt kaum jemanden mit seiner Statur, Technischen Klasse und Härte. Sein authentischer Stil ist Zeitlos. Kein verstellen, kein Showman wie es in Amerika üblich ist auch wenn er mittlerweile auch gute Promos halten kann. Diesen Wrestler kann ich mir immer anschauen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DerMilanowrote on 11.12.2016:[8.0] "Einer der besten Wrestler im deutschsprachigen Raum. Seine jahrelange Erfahrung und Routine haben ihn zu einem der wichtigsten Männer der wXw gemacht. Ist ein sympathischer Typ, der sich gut um die Academy kümmert."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Viper99wrote on 24.10.2016:[10.0] "WALTER ist für mich wohl momentan mein Liebling bei der WXW. Er repräsentiert genau den Japanischen harten Stil den ich mag und kann diesen gegen jeden Gegner super rüberbringen. Er hat die krasse Statur und ist trotzdem Agil und Technisch begabt. Dazu ist er Charakterlich auch super gut und passt 1A ins momentane Ringkampf Heel Stable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Deezywrote on 16.04.2016:[10.0] "One of the best heavyweights Europe has produced in a long time. Delivers anywhere on the card, in any role. Always pleasure to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: HattuBrandwrote on 23.03.2016:[10.0] "Sehr gut, dass das Profil wieder da ist. Man sollte und darf den paar Idioten gegenüber, die sich hinter einem anonymen Profil verstecken, nicht klein beigeben.   Ich habe Walter 2015 sowohl in Borken als auch in Madgeburg gegen Ilja Dragunov gesehen und allein diese beiden Matches würden eine 10 rechtfertigen. Absolut imposante Erscheinung, technisch überzeugend. Und ich bin mir sicher, dass sein Weg bald wieder in Richtung "Unified World Title" führen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DNPwrote on 02.03.2016:[9.0] "Kurz und knapp: in meinen Augen der MVP von westside Xtreme Wrestling; nicht zuletzt, weil er auch ein internationales Prestige genießt, das Bones, Andy, Beck und Konsorten leider fehlt. Zu den Fähigkeiten muss man nicht viel sagen - Walter ist ein absolut kredibiles Monster im Ring und kann mit den Besten mithalten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BlueDiamondwrote on 21.02.2016:[10.0] "Profil reloaded oder was? Jetzt muss Big Daddy die ganzen Votes nochmal sammeln. Naja, von mir gibt es auf jeden Fall die volle Punktzahl, da Walter im Ring immer unterhaltsam ist, richtig gut brawlen kann, sowohl Face als auch Heelrollen immer erstklassig ausfüllen kann, für die wXw und allgemein das deutsche Wrestling eine Menge geleistet hat und nun mit der Double Duty auf der Tour UND in der Academy auch noch den Nachwuchs für die nächste Generation aufbaut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Mandzukic9wrote on 19.02.2016:[7.0] "Da ist sein Profil ja wieder aufgetaucht.  Walter bekommt sieben Punkte dafür, dass er eine der wichtigsten Worker im deutschen Raum ist. Er übernimmt trotz seiner wXw-Rolle als Main Eventer sehr viel Verantwortung, indem er zusätzlich noch in der Academy als Head-Coach tätig ist.  Im Ring ist Walter sehr solide. Wenn er noch ein paar Gramm abnimmt, bekommt er vielleicht noch mehr Kontrolle in seine Matches. Er ist ja auch noch in einem lernfähigen Alter.  Für einen U30-Mann versteht er das Geschäft wirklich schon extrem gut und ist für die wXw immens wichtig."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Its Clobbering Timewrote on 15.11.2024:[10.0] "Jushin Thunder Liger is the Man, he just oozes coolness, he's one of the best high flyers of all time and is one of the most important wrestlers ever. A Bunch of moves are still being used today. He's had a bunch of bangers and is an Super iconic look and amazing Wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Willie 19200wrote on 10.11.2024:[10.0] "Jushin has to be one of the most recognizable masked wrestlers right behind Rey Mysterio. He has such a cool look, fantastic in-ring skills, and is respected by wrestlers and fans all around the world. I'm also glad that he also knew the right time to retire unlike some other wrestlers. Overall Jushin is a crazy talented wrestler that I really enjoy his old matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Zak22wrote on 20.09.2024:[10.0] "One of the greatest wrestlers of all-time. Jushin "thunder" Liger is one of the most iconic wrestlers ever with his distinctive look, ground-breaking offence and incredible match catalogue. Liger had it all, he obviously was an incredible high-flyer, which was made even better by his super hero look, but his great grappling and striking ability is far to overlooked. I've watch Liger matches from NJPW, WCW, WAR, NOAH, TNA, CWA (Austria/Germany) and All Star Wrestling (UK), and in each promotion I can name at least one extremely good match he had there. Liger was also an ideas man, creating the Super J Cup and the J Crown. His matches with the Great Sasuke (especially at the first ever Super J Cup), with Mark Rocco, with Brian Pillman...they have left a hell of a legacy. Liger defined a generation of Junior Heavyweights and as a result, his appeal is inter-generational and international. One of my GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Lukeathonwrote on 20.08.2024:[10.0] "I'd argue he has the most iconic look of any wrestler that is not North American based of all time. He had it all really and is a true legend of wrestling who could still even give believable performances in his later years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: TripleCrownwrote on 08.04.2024:[10.0] "Not only is he one of the very best Japanese wrestlers of all time, he's one of the best wrestlers of all time, period. Just like Rey Mysterio, Jushin Liger changed the game for juinor heavyweight wrestlers throughout the world. The guy was just incredible, so damn fun to watch and his ability to "transform" from Jushin Liger to Kishin Liger was really well done and executed. I loved the fact he would wear a different mask and overall attire when wrestling the heavyweight guys too. Putting his wrestling aside for a moment, the guy was just a complete badass in real life. The guy had a brain tumor for crying out loud, he overcame that and still managed to perform at an elite level. Revolutionary wrestler, changed the landscape of professional wrestling forever. One of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: KEIwrote on 01.02.2024:[10.0] "He was a revolutionary performer, with one of the most memorable gimmicks. A true legend deserves a 10 out of 10 for his tremendous contributions to professional wrestling and in-ring work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Deadblowwrote on 17.01.2024:"[10] What can you say? a true Legend, a workhorse, the best Cruiserweight ever, the man who got me into watching Japanese wrestling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: The Quick Manwrote on 13.01.2024:[10.0] "Would be a 9.5, but sod it. Nobody is more beloved and respected than Jushin Thunger Liger, and it helped that he chose to retire while still in pretty decent shape and go out a legend rather than do the usual habit of slumming it up in the undercard for years as a New Japan Dad."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: JediSaiyanMaster1203wrote on 18.11.2023:[10.0] "A legendary 35 year career of giving us classic matches left and right, one of the best talents to ever get in the ring. Jushin Thunder Liger is one of the most iconic characters in professional wrestling history, his mask is easily recognizable to any fans whether in Japan or America. You could make the argument that he's the most important light heavyweight in professional wrestling history, influences countless wrestlers and many generations from Eddie Guerrero to Rey Mysterio to name a few, he's a true hero to his colleagues and fans alike, a true icon in every sense of the word. Even despite his brain tumor having him being limited to what style he can wrestle, he's found ways to wrestle for as long as he did by mixing it up and going for different in ring styles and remaining relevant for years and years. He's also an innovator who created moves that are still being used to this day (i.e. Shooting Star Press, Liger Bomb, Surfboard Stretch, Liger-plex, etc.), his influence can still be felt to this day. He's had incredible bouts with the likes of Naoki Sano, El Samurai, Koji Kanemoto, Flyin' Brian, The Great Sasuke, etc. Overall, a true legend in professional wrestling, one of the best characters and in ring performers of all time who has stayed relevant in many eras and generations and is influence is still felt to this day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: deceivrwrote on 10.09.2023:[9.0] "Moyase, moyase. Bring out your masks and fans, it's Jyushin Liger. A man whose legacy can be considered by many to be one of the most important to-date. Even when he had been in the same realm as other Lucharesu stars such as Satoru "Tiger Mask" Sayama, Yoshihiro "Ultimo Dragon" Asai and many more, Kei'ichi Yamada, who we all know as Jyushin "Thunder" Liger, had always been a stand-out among the crowd. He has even brought in a similar way to that of the mystical Tiger Mask, wherein he was made to be an advertisement for a show. Yeah, you heard me right. A show! And it was... pretty good? Well, if you can tell based on the comparisons, he definitely did change; in-fact, he looks so vast and unique compared to the original get-up they had for Yamada. One aspect of Liger's that I do have to get out of the way is that his wrestling style, even if it had evolved to make himself safer and more stable before retirement (which he did not want to have young, hence why he retired at the age that he did), he had still made himself recognized in spite of the troubles he had in his body. The Beast God transformed himself from a high-flyer with little cause and big trouble, to a striker and a technician that had built upon the rage that he had stored; a move that his trainers, Kotetsu, Kumicho and Fujinami, would be proud of, indeed. At the midst of his retirement, he had built up a reputation as a workhorse and an undeniable force within the world of Japanese professional wrestling, and for good reason too; like Sayama, Asai and the stars of AJPW and NJPW past, he had been built and transformed into a mystical being, one that would only be seen to be believed that such a person could've truly existed in the time he did. His wrestling ability surely made up for it, too. We shall remember Jyushin Liger for the evolution and processes of progression that made him what he had been ended as; an undeniable figure who truly holds the mantle of the greatest Junior Heavyweight in wrestling history. Keep raging, Liger; we shall remember you fondly."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Loghan Morescowrote on 06.07.2023:[10.0] "perhaps the greatest japanese wrestler to ever step foot inside a squared circle, the wrestler with the biggest amount of matches in wrestling history and perfect for his role, A WORKHORSE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "One of the best Japanese wrestler ever, period. One of the best cruiserweights we had in WCW in the 90's. Wish he could have stuck around longer over here."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Frank Shooterwrote on 18.05.2023:[10.0] "In my opinion, the greatest cruiserweight of all time. There wouldn't be a Rey Mysterio without Liger. Innovative, flawless in the ring, a worldwide recognizable mask and the eternal Junior Ace of NJPW. The word "legend" is not enough to describe him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: ElegantImpactwrote on 17.04.2023:[10.0] "One of the greatest of all time, Liger was a trailblazer for junior heavyweight wrestling. Completely selfless and always giving, I also love him these days on commentary as he's always super excited"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: TheOneAndOnlyCactuswrote on 30.03.2023:[10.0] "Probably the greatest Junior/Cruiserweight of All-Time, Liger is a man that pushed the boundaries of what Juniors could do in the ring and in the box office, and managed to reinvent himself to keep wrestling day-in and day-out despite suffering from a brain tumor in the middle of his prime. A trailblazer for the current crop of Juniors."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Daigotsuwrote on 16.01.2023:[10.0] "Liger is one of the best to ever do it. He's a phenomenal junior heavyweight and a true titan of the industry."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: benh2wrote on 12.01.2023:[10.0] "The greatest junior ever. Could work many styles and had such a long career that his legacy is unmatched. Incredible innovative offence along with the psychology to make it sensical. Obviously a great unique look that connected with fans through multiple eras. Even Kishin and heel Liger were great in their own right."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: MainEventMasterwrote on 02.01.2023:[10.0] "The greatest Junior Heavyweight OF ALL TIME, the legacy that this man has left behind in professional wrestling cannot be denied."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: NoSellwrote on 26.10.2022:[10.0] "An inovator, a pioneer and simply the greatest Junior Heavyweight in the history of wrestling. Delivered awesome matches literally up until his final one."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: UWF Rules Enthusiastwrote on 06.05.2022:[10.0] "Jushin Thunder Liger is arguably the greatest junior heavyweight pro wrestler ever. During the 1990s, he played a huge role in the NJPW junior heavyweight division being so popular. Many of his feuds with some of the best junior heavyweights from all over the world are classics. He was involved in some of the best junior heavyweight matches of the 1990s. He had a long career, and even when he was getting older and winding down his career, he still tried to contribute as much as he could to the matches he was involved in."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: NeoSwas36wrote on 23.03.2022:"Liger had a super goofy gimmick based off of a forgettable anime and turned it into one of the greatest ones ever. The best Junior of all time, produced some fantastic matches. Wrestled across the world and just about never had a bad match. Absolute legend, easy 10."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: GriffinXwrote on 20.01.2022:[10.0] "If you know wrestling how can you not vote Liger a 10' The man took what could of been a goofy gimmick of Superhero comes to wrestling and made it last decades. He was able to go to just about every company ever and have good matches. Also should get a lot of credit for how he rebuilt his style post 96."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: IBladeDailywrote on 08.10.2021:[10.0] "One of the all-time greatest ever in any weight division. Jushin Liger first came on to my screen when I was 11 years old in WCW. I was mesmerized. I bought Superbrawl 92 to see Pillman-Liger and was not disappointed. And Liger lost! Further, he made a remarkable transformation from inventive high-flyer to incredible mat wrestler after his cancer surgery. And, without knowing much English, he was able to translate his personality and charm to American and European audiences as easily as he connected with Japanese fans. In my opinion, the greatest junior heavyweight of all-time and one of the best to ever do it anywhere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: BlakeFR37wrote on 02.06.2021:[10.0] "That's a Ten. 10. Not like Tye Dillinger. But he's also a perfect Ten. A Better Ten. Facts. Face the Facts. Not like Curt Hawkins. But face them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Kungwrote on 21.03.2021:[10.0] "He's a 10. I know it. You know it. We all know it. Why argue with this fact? It's just true. Thank you for coming to my Ted Talk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Strong Zero Machinewrote on 14.12.2020:[10.0] "Liger is simply the best! Iconic and Legendary! Best Junior ever, best mask and a really nice guy with fans. Over 35 years in the ring and 30 years with the same gimmick. A true love story with the business, crowd and wrestlers. Thank you Mr Liger/Yamada for this 35 years and more with this commentary career thanks for everything!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: medousewrote on 10.12.2020:[10.0] "The absolute legend of japanese wrestling scene and one of the most unique personas in pro wrestling. Over 30 years in the same gear, mask and with the love of the crowd. Such dedication for this business. Technically skilled, awesome gimmick and he was still in great shape wrestling at 56 years old. Thank You Jushin for Your whole career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: rainmakerpunkwrote on 07.11.2020:[10.0] "Based on an anime character he'd become more iconic than Jushin's career is more incredible than it had any right to be, given a strange gimmick, committing and making this character his own, his odd and crazy look drew people in and his incredible talent while eyes were on him turned them to fans, he was in some of the best 90s NJPW matches, he had high level in-ring skill and top tier charisma, he's the most successful super junior ever, his legacy will live forever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Scott Kobayashiwrote on 07.07.2020:[10.0] "There are a few people in the wrestling world who giving anything less then a 10, is straight up disrespectful. Tanahashi and Undertaker for example. Liger is one of those guys. An iconic look and is one of the most revolutionary junior heavyweights ever. His battles with Sano and Sasuke helped pave the way for the likes of Matt Sydal and Ricochet. An easy 10 and the greatest junior heavyweight ever. Sorry Rey, you can be no. 2. Because Liger is king."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: PuroresuLoverwrote on 04.01.2020:[10.0] "Over 30 years of career, and were by far, the best three decades of professional wrestling. Jushin Thunder Liger is simply a legend, he was the best Junior Heavyweight to exist on planet Earth, I'm really sad that he's going to retire and I'm not mentally prepared to watch his last match. Thank you, Liger, you'll be missed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: VillainClubwrote on 23.12.2019:[10.0] "Eine Legende, bei dem man nicht unter die Top Bewertung gehen kann. Es gibt wenige, die in dem alter noch auf dem Level abliefern können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: KyleEnjoysWrestlingwrote on 01.08.2019:[10.0] "One of the most influential wrestlers of all time. Amazing in the ring from day one until now. Could work both smaller man matches & with more main event players. Helped establish WCW's cruiserweight division. Invented the shooting star press. A total legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: NEVERoverweightChampionwrote on 05.07.2019:[10.0] "One of, if not THE most iconic junior heavyweight of all time. Delivered many classics with his high flying technical style and still can put amazing matches at 54 years old. An impressive longevity for a huge legend who totally deserves the honor of retiring at the Tokyo Dome. His influence can't be understated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "The guy has stayed one of the best wrestlers in the world for over 30 years. He has slowed down a little due to age but thats to be expected after 30 years of consistant amazing wrestling without any long breaks. Has become an icon of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: zephyrwrote on 16.03.2019:[10.0] "What can you even say about Liger? He's had one of the longest, most consistently great careers in wrestling history and is still able to put on absolute banger matches at age 54. One of the all time greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: LandonRyanWyattwrote on 31.01.2019:[10.0] "A true legend that has stood the test of time. Quite possibly the best Junior heavyweight in the history of the business. Technical high flyer that will always be one of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Aurtletheturtlewrote on 03.12.2018:[10.0] "Who doesn't love this man? Absolutely can still go at 50+ years and with a reputation and history that long surpasses 99% of other wrestlers, Liger is one of the most universally cherised as well as talented wrestlers in the history of the sport. With a run through the 90s that made him into an undoubtable world class talent to be remembered for decades, Liger has managed to cement his place in the hall of fame of professional wrestling. On top of that he is a delightful person."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: SuperJrFanBoywrote on 17.11.2018:[8.0] "Jushin Liger is one of my all-time favourite wrestlers. His life story is inspiring and he has always managed to be entertraining and provide good matches when push comes to shove. I do have to admit that he is far from being the greatest Junior every as some people hail him to be. Liger has done basically everything he could, including holding titles in NJPW, CMLL, Dragon Gate and WCW not to mention the J-Crown and the fact he has technically also wrestled for WWE.  His ring work is not exactly on par with guys like Sayama, Kanemoto, Fujita or Sasuke in terms of innovation and how exciting they can be, but Liger in his prime could put out a good match against basically anyone. His matches over the IWGP Jr. Heavyweight Championship and the J-Crown stand out, as well as his matches against Brian Pillman for WCW. I am also a huge fan of his match against CIMA for the Open the Dream Gate title, altought admitely it's far from being both men's greatest performance."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: arrancarwrote on 19.10.2018:[7.0] "Hot take which will probably be excused as a 'newbie'/'attention-seeking' comment: Liger is massively overrated. I know he is a 'legend', but that's mostly just because he got pushed as such. My issue is that he simply never impressed me as much as his contemporaries. Straight up: his offence was painfully average. These days people love to say Liger "looks like he hasn't missed a step! "... but that's more a criticism of his work at his 'peak', because he NEVER looked like a proper athlete. I have honestly yet to see a match from Liger in his 90s that has shown me evidence of his supposed legendary in-ring work. The guy had creative moves, but compared to the likes of Sayama, Otani, Kanemoto, Ultimo Dragon, and Minoru Tanaka, he simply wasn't as acrobatic, intense, flexible, athletic, or energetic. Liger's limbs would flail all over the place when delivering an aerial move, and his body-shape made him look like a flying bag of potatoes. His chemistry also wasn't anything special; I can't remember too many fluidly constructed sequences he was part of. Thus I struggled getting excited for much of Liger's offence, because his movements and attacks didn't look finely polished like so many other 90s juniors. Liger still produced plenty of very good performances, but all of his 'great' matches I would argue were ones he was mostly carried in by his opponent. God, I can only imagine how heretical what I'm saying must sound to like 99% of puro fans lol. Well, let me now mention the positives of Liger: Firstly, I actually enjoy his work in the 2010s WAY more than any other era. He plays the veteran role extremely well, and because he isn't bothering with as many lame aerial attacks he is able to focus more on getting his character's passion across and showing off his power moves (which were always his speciality imo), so he's MUCH more enjoyable to watch in the current day. To my mind, Liger's 2017 match with Taichi was his greatest performance."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Jushin Liger was the best junior heavyweight/light heavyweight wrestler of the 90s and an unquestionable hall of fame-level talent. Liger was known for his flying, but he could wrestle as well, as shown by how well he adapted to having to tone his flying as the years went by."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Makai Clubwrote on 06.08.2018:[10.0] "Hard to deny his status. Whilst I prefer Kanemoto over him as the great Junior Wrestler at least in the modern time (Post 50's), he is still up there with him. Great innovator,  very adaptable to any situation whether it was him wrestling as a heel, a spot fest, fighting babyface, even comedy. He was excellent in these situations. Even if his heavyweight run is unremarkable and very short, that Muta match is a big highlight which says it all about how great Liger was in the 90's. Legendary wrestler without a doubt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: DaWizWithADwrote on 07.07.2018:[10.0] "I have a bad habit of gushing about Liger all day whenever I talk about him with my friends. If there's one word I'd use to sum him up it's consistent. He's the Jerry Rice of Wrestling, he's always been good ever since he adopted the great Jushin Liger gimmick. The look will go down in history as one of the most iconic. It's hard to appreciate it nowadays, but he truly was one of Wrestling's greatest innovators as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: TheRealAteszwrote on 10.06.2018:[10.0] "He is the best high flyer that i have ever seen. Legend but not just any legend hes a living legend for all highflyer, cruirserweight wrestler and the numbers of his fans."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: GoldLigerwrote on 21.05.2018:[10.0] "Jushin Thunder Liger is legitimately a personal hero of mine, and I say that having not gotten into pro wrestling until 2013. I actually respect him most for what he's done in his later years: adapting his style to suit his age while maintaining all the charm that only he can bring, helping and supporting Junior Heavyweights of the future, giving his all for professional wrestling. The way he overcame a full-on brain tumor and got right back into the game and adapted to that in the ring is truly inspiring, having known somebody very close that went through brain surgery. His history, his influence, his legendary body of work, his inspirational story, his love of the business, his support for the future, and my personal enjoyment of seeing veterans still have it (he's had good, great, and fantastic matches even after turning 50). Indisputably a Top 25 talent of all time, and Top 10 in Japan, but in my heart he is the #1 GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Paul Allainwrote on 06.02.2018:[10.0] "What an amazing man ! The bedazzling look and entrance are met with prime innovative skills. But the most impressive part is that is career consists of 33 years of solid-to-perfect performances, even after suffering a brain tumor ! Liger is the definition of a living legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: taabr2wrote on 10.09.2017:[10.0] "The greatest junior heavyweight in the history of NJPW and the guy can still go even today! Jushin Thunder Liger also played a role in showing American wrestling fans how good cruiserweight wrestling can be with his sporadic appearances in WCW in the 90s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: PistolPeteMattywrote on 10.06.2017:[10.0] "The greatest Junior Heavyweight of all time, and a true trailblazer of the high flying style. Nowadays, more likely to be wrestling a technically focused match than busting out Shooting Star Presses, but he aged his style well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Blood Pumpwrote on 24.04.2017:[10.0] "Ive been catching up on some of the stuff I haven't seen from Liger and Ive gotta say hes a true king of adaption and one of the greatest all rounders in the history of puroresu. He isn't a hard hitter (though his spinning wheel kick can be pretty brutal from time to time), but his technical ability is better then Benoits I'd argue. His aerial game has diminished over the years understandably but hes swapped it out for the sake of better psychology. Hes always had a butt-load of charisma and knows how to adapt better then anyone (for example one of his matches with The Great Sasuke involved Sasuke slipping on the rope and Liger making something out of it). A few days ago I was going to 9 him but it wouldn't have been fair given I hadn't watch too much from him. Now, hes pretty easily a ten out of ten. His latest work hasn't been outstanding but hes in his 50s anyone that old will be worn down."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: BerserkGutswrote on 14.04.2017:[10.0] "Nothing more needs to said about Liger that hasn't been said before. Revolutionised junior/cruiserweight wrestling in front of the biggest promotions and is still recognised world wide. At 52 years of age, he is still entertaining fans and is not slowing down any time soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: craigohwrote on 01.02.2017:[10.0] "possibly THE most influential Cruiserweight wrestler to ever grace the ring - a pioneer of so many moves and is STILL putting on good matches across the globe in his Early 50's - this man deserves the Respect he gets in this business and so much more"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Chekerwrote on 11.01.2017:[10.0] "What else is there to say about Jushin Liger, really? The man was AND IS an inspiration to so many juniors, he made a campy gimmick work, and he's a great wrestler on top of that. Not to mention he is still very good at 52 years old."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: NastyYaffawrote on 01.01.2017:[10.0] "Truly a legend, one of the greatest wrestlers of all-time. It's funny how Liger, while in mask, still could (& still can) express so much more emotion than many of the wrestlers without a mask. Incredibly charismatic, amazing in the ring - yep, Liger is amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Yoyowrote on 11.12.2016:[10.0] "Saying he's the greatest of all Jr. Heavyweights is an understatement; he's one of the best ever regardless of weight class."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Devitciiuwrote on 18.09.2016:[9.0] "Liger never seemed to have a match in North America worth talking about, but his battle with Hayabusa for the JC was amazing. I would consider Liger vs Mutah October 20, 1996 to be the quintessential wrestling match but the wrong guy went over."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Awesome1wrote on 14.05.2016:[10.0] "if you have never watched Japanese Wrestling before you will only know the a couple of them including Jushin Thunder Liger. His image is so well known and he is easily the top 3 cruiserweights of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "All time great, no question. Innovative flier but perhaps even better on the mat, a masterful technician whose influence can be seen tremendously on multiple generations of workers. Still putting out good matches to this day, incredible longevity. Honestly one of the best to ever lace up, just amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: meatrockit83wrote on 17.04.2016:[10.0] "Jushin Thunder Liger is the greatest junior heavyweight to have every lived, and that is not up for debate.  His body of work says it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: ApexOfEvolutionwrote on 31.03.2016:[8.0] "Das Manga-Gimmick ist sicherlich unterhaltsam und mit hohen Wiedererkennungswert, dazu hat er auch noch den perfekten Theme. Für mich passt das Ganze aber eher in 90er Jahre und war mir persönlich immer etwas zu übertrieben. Anerkennenswert sind sicherlich auch seine Leistungen für die Cruiserweight-Division. Die Leistungen in den letzten jahren haben altersmäßig nachgelassen, er ist aber immer noch gut in der Lage junge Worker over zu bringen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Sinestrowrote on 21.01.2016:[10.0] "Ein Idol aus meiner Kindheit, der bis heute gute bis sehr gute Matches abliefert. Sein Gimmick und sein Outfit begeistern mich bis heute, einfach richtig cool."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Oddark123wrote on 06.01.2016:[9.0] "Jushin Liger is a legend in the true sense of the word. He deserves the awe that accompanies his name. His influence and personal accomplishments across his career and all the places it has taken him is something to be proud of. If I hear Jushin Liger is wrestling I expect a solid match and it's always delivered. As his health and life changed Jushin changed with it and didn't suffer because of it. This man should always have a place in the wrestling business in some form."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Alo67wrote on 27.12.2015:[10.0] "Ich habe mir schon sehr viele matches von Liger angeschaut um jetzt ihn zu bewerten , also Liger finde ich ist Weltklasse im Ring und bringt sehr viel Charisma von sich jedes mal wenn ich Liger sehe weiß ich dass er ein starken Kampf hinlegen kann . So ein schöner Submission Spezialist . Mir gefällt er sehr gut und ist momentan mein Lieblingswrestler ich kann ihn nur in den Himmel loben einfach klasse was der Mann jedes mal macht . Und deswegen bekommt er die Höchste Punktzahl ;D ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: KimboSlicewrote on 08.09.2015:[10.0] "eigentlich wurde hier schon alles gesagt. Innovativ, revolutionär, talentiert... sucht es euch aus. Jemand, der Meilensteine für Cruiserweights legte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: New Strategywrote on 24.08.2015:[9.0] "JTL hat mich damals zusammen mit Brian Pillman zur WCW gebracht. Ihr Aufeinandertreffen bei Superbrawl 92 hat mich extrem fasziniert, so dass ich neben der WWE zum ersten Mal eine andere Wrestling-Liga auf Dauer in Augenschein genommen habe. Neben der WCW auch noch New Japan. Ein großartiger Wrestlier."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Antimasterwrote on 08.06.2015:[10.0] "Wer mit 50 noch so gut ist, so viele Meilensteine des Junior Wrestlings gesetzt hat und obendrein noch so sympathisch rüberkommt, kann nur die Höchstwertung bekommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Kevin434wrote on 02.05.2015:[10.0] "Einer der wohl wichtigsten Wrestler aller zeiten, er hat das Highfly-Wrestling revoluzioniert. Auch heute noch workt er trotz seines Alters ordentliche Matches. Er ist einer der besten Wrestler aller Zeiten, es macht immer spaß seine Matches anzusehen. Ein toller Wrestler ohne den Wrestling vielleicht garnicht so wäre wie es jetzt ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Viper99wrote on 02.04.2015:[10.0] "Er gehört absolut verdient unter die besten Light Heavyweights aller zeiten. Was dieser man einfach früher gezeigt hat und selbst heute noch zeigt ist absolut bemerkenswert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: SapolBlackwrote on 27.03.2015:[10.0] "Wenn man den besten Lightweight Wrestler alles Zeiten bestimmte müsste wäre es, Jushin Thunder Liger. Bei der wXw zum ersten mal Live gesehen und für sein jetztiges Alter immer noch in Top-Form.  Er ist gibt keinen besseren Wrestler in seiner Gewichtsklasse und hab einfach nur größten Respekt vor diesen Mann!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: JayCutlerwrote on 02.03.2015:[10.0] "Bei einigen Wrestlern sollte man die 10 Punkte gar nicht erst erklären müssen. Wir reden hier von Jushin Thunder Liger!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: eldenaaaaawrote on 02.03.2015:[10.0] "Let's be honest, the man was a legend before 2000. Since 2000, he has worked for every major wrestling company in America (outside of WWE) and Japan. Dream matches and accolades galore. Just turning 50, Liger is still going!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Shentenzawrote on 11.02.2015:[10.0] "Es gibt denke ich keinen japanischen Wrestler der eine größeren Ikone auf der ganzen Welt ist als Jushin Liger. Dazu noch ein überragender Wrestler und Performer. Ikari no juushin LIGER!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Matt4Wrestlingwrote on 18.10.2014:[10.0] "DIE Legende überhaupt aus Japan! Was soll man noch über diesen Mann schreiben! Vor Jahren ein spitzen High-Flyer, jetzt im Alter fliegt er weniger, aber wurde in einer Kombi aus High-Flyer und Techniker ein Super Komplettpaket! TOP!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Phenomenal91wrote on 04.10.2014:[10.0] "It's very appropriate that his character is an anime superhero, because this guy is capable of doing things that no other human could possibly do. What's more, he's been doing this for 30 years and is showing no signs of slowing down. He could still clean up in a major company, and I hope he does soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Wrestling Foreverwrote on 04.05.2014:[10.0] "Eine absolute Legende aus Japan und einer meiner Lieblings Wrestler aus Japan. Sein Gimmick das ja auf einen Kult Anime/Manga basiert hat er immer im Laufe seiner Karriere neu erfunden. Unmaskiert war er nur als Kishin Liger mit viel Schmicke zu sehen. Trotz seines Alter zeigt er immer noch eine klasse Leistung auch wenn die nicht mehr seine Leistung aus den 90er heranreicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Steenericowrote on 03.05.2014:[10.0] "Jushin Thunder Liger ist ein herausragender Wrestler, der nicht umsonst an massig hervorragenden Matches beteiligt war. Und auch mit seinen 49 Jahren zeigt er immer noch gute Leistungen, auch wenn diese natürlich nicht mehr an alte Zeiten herankommen. Klare 10 Punkte von mir."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Matzinhowrote on 09.02.2014:[10.0] "Liger ist Gott. Der Typ kann einfach alles und hat ein verdammt cooles Gimmick, das sowohl als Face als auch als Heel funktioniert. Liger ist einer der wenigen Ü-40er, die es immer noch drauf haben. Er hat zum richtigen Zeitpunkt seinen Stil umgestellt und liefert bis heute gute Matches ab. Klar - wie zur besten Zeit wrestlet er nicht mehr. Aber die Leistungen im Ring sind weiterhin solide und die Aura und der Coolness-Faktor halten die Wertung auf der 10. Hoffentlich macht der noch ein paar Jahre auf dem Level weiter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: CJ Duskwrote on 09.02.2014:[10.0] "Move for move one of the best wrestlers of all time and maybe the best Jr Heavyweight ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: JourneybyTrainwrote on 21.12.2013:[6.0] "Jushin Liger is a good junior heavyweight but I fail to see the brilliance of mediocre mat wrestling for 10 minutes followed by a missile dropkick. Still he's very consistent, versatile and has produced a couple of great matches (vs. Sano and the NJ/NOAH feud)."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Bluminho 93wrote on 03.12.2013:[10.0] "Man muss nur an Junior Heavyweight Wrestling allgemein denken und sieht Liger vor sich. Liger ist einfach der Wahnsinn. Er kann jeden Stil wrestlen und dabei immer tolle Matches zaubern. Da stimmt einfach alles bei ihm. Dass man sogar heute, nach fast 30 Jahren als Wrestler, sich immer noch nicht wünscht, dass Liger nur noch in Tag Matches antreten soll, weil man sich ihn nicht mehr anschauen kann, wie es bei den meisten anderen Legenden heutzutage der Fall ist, sagt eigentlich schon alles. 10 Punkte sind das Minimum für ihn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Alex Maedawrote on 30.07.2013:[10.0] "Der erste japanische Wrestler außerhalb der WWE, der mich in den Bann gezogen hat. Ist mir jetzt egal, ob ich alle seine Klassiker gesehen habe, allein seine Matches gegen Pegasus Kid/Chris Benoit (shame on me, ich hab Benoit geschrieben) und den Great Muta sowie die Tatsache, dass er die Shooting Star Press erfunden hat, würden mir ausreichen, um ihn 10 Punkte zu geben. Auch heute kann er noch ordentliche bis gute Matches abliefern und ist sich nicht zu schade, für junge Talente den Job zu machen. Einer der ganz großen Ikonen, von dem sich Wrestler weltweit sowohl optisch als auch wrestlerisch beeinflussen lassen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Play2Xwrote on 11.03.2013:[10.0] "Hat Legendenstatus, aber kann selbst als 50jähriger immernoch vernünftige Matches hinzaubern.  Jedes Mal, wenn er in den Ring steigt, kommt ein Feeling von Nostalgie auf. Muss nur sehen, dass er bald den Absprung kriegt..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Kenshin Uesugiwrote on 22.02.2013:[10.0] "Auch wenn es einige nicht glauben, aber Liger war und ist besser als Tiger Mask und was Legendstatus angeht hat er ihn eigentlich schon überholt. Eines der bekanntesten Aushängeschildern von NJPW und des Puroresu, gepaart mit allem was ein Wrestler brauch, auch wenn seine Größe ihm die Karriere als Heayweight versperrte. Aber gerade das scheint der Ansporn gewesen zu sein Leistungsmäßig Ebene zu ereichen die nun zum guten Standard gehören. Und natürlich denkt man sofort bei ihm an sein Highflying und Technik, das der Kerl aber auch Power Moves und Kraft hat sieht man erst auf den zweiten Blick. Werde nie vergessen wie er Hashimoto mit einer Liger Bomb auf die Matte donnerte. Sicherlich wie jeder Wrestler der über zwanzig Jahre im Geschäft ist nicht mehr frisch und top fit, aber immer nocht gut dabei und was man vor allem besonders hervor heben muss das er nie in seiner ganzen Laufbahn sich über andere stellte, noch heute versucht er alles um andere over zu bringen, ganz wie in der Vergangenheit. Da kann man sich doch nur ganz tief vor DEM Junior Heavyweight verneigen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: HeelJenniwrote on 05.01.2013:[10.0] "Meiner meinung nach einer der Besten aus Japan, wenn nicht sogar der Beste. Ich bin sehr froh, dass ich ihn 2010 Live erleben durfte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: FranziiXDwrote on 28.09.2012:[10.0] "Ich finde er ist einer der besten Wrestler.  einfach top!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: ARIZAwrote on 15.06.2012:[10.0] "Was Kobashi, Misawa oder Muto bei den Heavyweights sind, das ist Liger bei den Juniors. Eine absolute Legende und einer der größten des Sports."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: JerriTron 5000wrote on 04.03.2012:[10.0] "Meiner Meinung nach der beste Junior Heavyweight, den es je gab.  Außerdem einer meiner absoluten Lieblinge. Schlicht und einfach eine Legende des Puroresu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Rated R Champwrote on 05.01.2012:[10.0] "Was soll man zu Liger noch großartig sagen, der Mann ist eine absolute Legende und das nicht nur in Japan. Großartiger Worker, der seit weit mehr als 20 Jahren tolle Matches zeigt (auch wenn er heutzutage natürlich nicht mehr in Bestform ist). Das Gimmick ist dazu einfach nur kultig. Ausserdem hat er uns den Super J Cup gebracht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: jerseyhoolwrote on 29.10.2011:[10.0] "Der meiner Meinung nach beste Wrestler, den Japan je sah & sehen wird. Nichts gegen Baba, Misawa, KENTA & Co. , aber JTL ist der Beste. Punkt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Sirius Van Grathwrote on 02.10.2011:[9.0] "Mein absoluter Favorit was das japanische Wrestling angeht! Ein richtig guter Wrestler!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Kartmanwrote on 19.08.2011:[10.0] "Jushin "Thunder" Liger is a living legend, pure and simple."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Michael Shawn Hickenbottomwrote on 29.07.2011:[10.0] "Einzigartig. Perfekt. Allein seine Highflying Aktionen sind legendär. Er ist einfach ein Mythos, der Mann hinter der Maske, der die Shooting Star Press 1987 erfunden hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Hans Gruberwrote on 07.07.2011:[10.0] "DER Junior überhaupt. Ach wenn er seinen spektkulären Stil schon länger runter gefahren, und auch ansonsten nicht mehr der "frischeste" ist, an der 10 ändert das gar nichts."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: downtown2wrote on 29.03.2011:[8.0] "Um Liger richtig bewerten zu können, muss man eigentlich die japanische Wrestling-Kultur verstanden haben. Jedenfalls wird er dort aufgrund seiner Technik verehrt und war zudem in der Lage, sich den europäischen, nordamerikanischen und mexikanischen Stilen reibungslos anzupassen. Sein Äußeres ist auf der einen Seite typisch japanisch, dennoch aber sehr individuell, was ihn auch außerhalb des Rings unverwechselbar macht. Was mir hingegen nie zusagte, war die Interaktion mit dem Publikum, ein wichtiger Indikator eines echten Superstars, sowie die Außendarstellung am Mikro. Diese beiden Kritikpunkte sind aber Gesichtspunkte eines Mitteleuropäers, weshalb ich nicht beurteilen kann, ob diese für einen Japaner ebenfalls Gewicht haben. Selbst wenn, stellen sie bei diesem Ausnahme-Könner nur Makulatur da."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Teekaywrote on 22.02.2011:[4.0] "Technisch brilliant, aber seine Aufmachung ist einfach zum abgewöhnen. Wer Show machen will, sollte auch optisch etwas mehr her machen, als nur bunt zu sein..."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Damon Strikerwrote on 11.02.2011:[10.0] "Seine Hochzeit habe ich leider gar nicht so bewusst miterlebt und trotzdem gebe ich ihm natürlich die volle Punktzahl. Zum einen, weil seine Glanzleistungen der Vergangenheit unbestritten sind und zum anderen, weil er heute zu meinen Favoriten zählt und immer ein Grund ist, ein Match anzusehen. Im Ring auch nach wie vor überzeugend!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Kitanoyamawrote on 30.01.2011:[9.0] "Viel habe ich nicht von ihm gesehen, aber Wrestler, die im relativ hohen Alter noch soviel Ansehen, Stärke und Erfolge vorweisen können verdienen meinen Respekt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Lakaseywrote on 30.01.2011:[10.0] "Man muss sich vor Augen halten, welch eine Leistung er in seinem Alter noch bringt. Eine echte Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Mick Funkwrote on 17.01.2011:[10.0] "Die Überlegende trotz relativ peinlichem Power-Ranger Outfit. Wird zwar langsam auch mal Zeit aufzuhören, aber so schlimm ist es auch noch nicht, da sind noch einige andere vorher fällig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: chaoswrote on 11.01.2011:[10.0] "Der beste Junior Heavyweight den es jemals gab. Eine absolute Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: El Reywrote on 19.12.2010:[10.0] "Bester Junior Heavyweight aller Zeiten. Unglaubliche Ringübersicht und lässt seine Gegner immer gut aussehen.  Eine lebende Legende und unglaublich freundlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Necronwrote on 03.12.2010:[9.0] "Yeah! Kenne ihn zwar nur aus der Zeit, in dene japan. Wrestling auf Eurosport lief - war damalas aber mein absoluter Fave!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: yokosbrotherwrote on 15.11.2010:[10.0] "Mein Favorit bei den Japanern. Unglaubliche technische und in-ring Fähigkeiten. Gehört in einem atemzug genannt wie Bret Hart. Tolle Matches egal wo auf der Welt er aufgetreten ist. Tolles Gimmick das auch heute nicht langweilig wirkt im gegensatz zu Hogan. Hat in den 90er das Cruiseweight auch bei der WCW getragen nur fand ich in in Japan konnte er mehr zeigen. Kenne keinen einzigen schwachen Kampf von ihm und für einen der jede Woche wo aufgetreten ist will das was heißen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Finnish Nightmarewrote on 30.10.2010:[10.0] "Absolute Legende, die auch ihren Weg nach Deutschland (Bremen CWA) fand. Als Yamada schon ein Geheimtip in England (WOS)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: rockysadrianewrote on 10.09.2010:[10.0] "Japans absolute Mittelgewichts-Nummer 1 über sehr viele Jahre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Technicowrote on 25.07.2010:[7.0] "Kann mit ihm noch nicht so richtig etwas anfangen, könnte aber auch daran liegen das ich noch nicht viel von ihm gesehen habe. Allerdings das WAS ich gesehen habe gefiel mir eigentlich gut. Zb. dieses Video im Youtube mit der Stardust Press. 7 Punkte daher."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: HunterXDwrote on 23.06.2010:[9.0] "ganz klar einer der 5 bekanntesten Wrestler der welt! ein sehr Gutes gimmick und gute in ring fähigkeiten! Durch sein mitlerweile schon hohem alter nicht mehr auf dem höchsten nievau, aber trotzdem immernoch gut und gerne gesehen!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Erasedwrote on 07.06.2010:[10.0] "Verständlich, dass die Ringfähigkeit mit dem Alter sinkt. Dennoch ein erstklassiger Worker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Ywainwrote on 04.06.2010:[8.0] "Ein wirklich guter Wrestler. Aber irgendwie will bei mir persönlich da der Funke nicht überspringen. finde ihn manchmal etwas too much."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: LabronBenoitwrote on 20.05.2010:[10.0] "Meiner Meinung nach eine wahre Legende, aber nicht nur, was das japanische Wrestling betrifft!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Marco Ewrote on 10.02.2010:[10.0] "Liger ist ganz klar eine Legende! Hab ihn zwar jetzt seit längerem nicht gesehen, aber gerade in den 90érn gab es nicht viele, die sich mit ihm Messen konnten. Bin froh ihn mal Live gesehen zu haben. Hat in der CWA 2 unglaubliche Matches gegen Finlay und Schuhmann gehabt und einer meiner Lieblinge bei New Japan, zu der Zeit. Ein ganz großer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Aquifelwrote on 08.02.2010:[9.0] "In den 90ern DER Jr. Heavyweight Star Japans. High Flying, Mat Wrestling, Dramatik, Präsenz im Ring - alles Weltklasse. Doch die letzten Jahre baute Liger dann doch immer ab. Er ist immer noch besser als andere, aber so langsam ist er auch nur noch "ein Schatten seiner selbst" (klingt härter, als es gemeint ist). Demnach nur noch 9 Punkte und die Hoffnung, dass er bald in Rente geht, damit man sich seiner genialen Matches in den 90ern erinnern kann und nicht immer den schalen Beigeschmack seiner "nur noch" ordentlichen Leistungen in letzter Zeit im Kopf behält."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: T-Waynewrote on 10.01.2010:[9.0] "Aus einem Manga entsprungen und zu einem der besten Jr. Heaveyweight's überhaupt geworden. Sollte jedoch langsam ans Aufhören denken, seine Leistungen im letzten Jahr waren nicht mehr so überragend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: DJ MaSchwrote on 05.01.2010:[10.0] "Die Legende schlecht hin im Junior Heavyweight Bereich und auch heute noch einer der besten seiner Zunft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: MrSmackdownwrote on 02.12.2009:[10.0] "Absolute Legende! immernoch aktiv mit super Match Quallität und doch ziemlich einzigartig! Ich mein der man hat die Shooting Star Press erfunden!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Eddiewrote on 12.11.2009:[10.0] "Absolut wahnsinn, und wirklich geile Matches die er sehr oft auf die Matte gezaubert hat (bzw. auch immer noch tut, wenn auch nicht so oft.. ), einfach ein perfekter Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Blue Meaniewrote on 24.10.2009:[10.0] "Legendärster japanischer Cruiserweight Wrestler. Zu seiner Prime der Beste, heute aber immer noch top!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Fountain of Misinformationwrote on 14.09.2009:[10.0] "Nachwievor ein unglaublicher Wrestler, der es auch im Alter noch absolut drauf hat, quasi der Finlay von New Japan! Abgesehen davon für einen maskierten Mann, der demnach ohne Gesicht als Leinwand für seine Gefühlsregungen agieren muss, unglaublich gutes und überzeugendes Selling. Lang lebe Liger!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: homicidal cena michaelswrote on 01.07.2009:[10.0] "Jushin ist ein schneller, technischer, sehr innovtiver und sauberer Wrestler. Er zeigte früher immer hammer Matches und heute zeigt er auch noch gute Matches. Er ist einzigartig durch seinen Anzug und seiner Maske wodurch er nicht so schnell vergessen wird. Er ist eine japanische Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: BaptisteZorGwrote on 23.05.2009:[10.0] "Eine Legende, klare 10Pkt. - was anderes wäre abwegig"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Father Nelsonwrote on 01.02.2009:[10.0] "So fast and strong! An japanese enigma! I was so excited when he came to Bremen in the early 90Žs!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Miteamexicowrote on 30.01.2009:[8.0] "War auch schonmal weit besser, auch wenn er selbst heute noch super geile Leistungen zeigt. Und das in dem Alter."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Blazewrote on 03.01.2009:[10.0] "Eine absolute Legende, die für das Junior Heavyweight Wrestling unersetzbar ist. Dazu hat er mit dem Shooting Star Press den wohl schwierigsten Move im Wrestlingbusiness geschaffen. Verdammt gut. Ende der Achtziger schon sehr innovativ, in den Neunzigern der Hammer und auch heute immer noch sehr fit. Seine Einschränkungen im Stil hat er super gemeistert und wrestlet kein bisschen schlechter. Ein paar Jahre sind sicher noch drin, bevor ein Pionier des Wrestlings abtritt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: affenmannwrote on 30.11.2008:[9.0] "Der Typ ist die absolute Härte. Vielleicht der beste Junior Heavyweight aller Zeit."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: The Wise Warriorwrote on 16.09.2008:[9.0] "Lebendiger Manga-Superheld! Einig der eindimensionale Charakter verhindert die Zehn."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Fliplippwrote on 24.07.2008:[9.0] "über ihn hatte ich mich mal sehr viel informiert und muss sagen er gefällt mir aussgesprochen gut"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: gerybundy68wrote on 28.06.2008:[8.0] "In Japan absoluter Superstar. Brennt technisch gesehen ein Feuerwerk ab. Leider bei uns nur sehr selten im TV zu bestaunen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Tomkowrote on 19.06.2008:[10.0] "Überragender Wrestler! Alles andere als 10 Punkte wäre für einen so tollen Wrestler eine Beleidigung!  Ausserdem hat er der Wrestlingwelt meinen persönlichen Lieblingsmove gebracht.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: The Instant Classicwrote on 13.03.2008:[6.0] "Sicherlich eine Legende, dennoch ist seine Zeit mittlerweile abgelaufen und sollte er seine Karriere beenden, ehe er seinen Ruf noch ramponiert."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Riley Mathewswrote on 25.02.2008:[8.0] "Noch nicht so oft gesehen find ihn aber trotzdem cool. Hab gelesen er hat den Shooting Star Press erfunden , eine der besten Aktionen und sein Outfit ist völlig verrückt finde ich aber gut. So etwas gibt es leider nur in Japan."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Staniwrote on 21.02.2008:[10.0] "Mr. Junior Heavyweight himself. In den 90gern übermenschlich, heute immer noch besser als die Meisten. Alles andere als ne 1 wäre vermessen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Rob Van Duesenschrauberwrote on 08.02.2008:[10.0] "In den 90ern war er fast unmenschlich, heute ist er immernoch verflucht gut. Liger ist vielleicht DIE Jr. Heavyweight Legende schlechthin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Moshpit-Hooliganwrote on 21.01.2008:[10.0] "Gott of Junior Heavyweight Wrestling. Kommt heute zwar nicht mehr ganz an seine besten Zeiten ran, aber für sein lebenswerk muß er einfach ein "Sehr gut" bekommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: The Showstopperwrote on 14.01.2008:[10.0] "Mr. Junior Heavyweight persönlich. Mit dem Ultimo Dragon wohl derjenige, der die Jr. Heavyweights etabliert hat, und das nicht nur in Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: EvenflowDDTwrote on 31.12.2007:[10.0] "Liger kriegt von mir die 1. In seinem Alter, genieße ich trotzdem noch jedes Match von ihm. Er und Tiger Mask Sayama ebneten den Weg für die heutige Generation von Wrestlern. Schade bloß das aus dem Match mit Samoa Joe so wenig rauskam."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: AMMOwrote on 20.12.2007:[10.0] "DER Junior Hevyweighter auf der Welt. Hat Grenzen erweitert und den Weg für die zeit nach ihm geebnet. Alles als eine 1 wäre IMO fast eine Beleidigung. Wie nur wenige für mich eine wirklich klare EIns. Das geringfügige Nachlassen sorgt in seinem Alter für keinerlei Abstriche!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Texas Tornardowrote on 09.12.2007:[10.0] "Absolute Japan Legende! Für mich die Kultfigur in sachen Puro !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: D-Stylewrote on 07.12.2007:[10.0] "DIE Jr. Heavyweight Legende. Über Jahre etliche Topmatches, geniales Selling, superintensiver Wrestler, aus dem Wrestling nicht wegzudenken. Note 1"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: LexLuger4everwrote on 01.12.2007:[10.0] "Totale Legende, vor allem in Japan! Klasse Highlflyer! Hat viele denkwürdige Matches in der WCW gehabt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Excellence of Executionwrote on 31.10.2007:[10.0] "Allein die Erfindung der Shooting Star Press ist schon bald 'ne 1 Wert. Es gibt soviele großartige Japanische Wrestler, die zurecht großes Ansehen genießen. Aber Liger ist der einzige, bei dem ich es wagen würde zu sagen, dass er vielleicht der beste japanische Wrestler ist. Auf jeden Fall absolout legendär!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Steven McWheelerwrote on 31.08.2007:[10.0] "genialer Typ, Kultfigur und Highflying-Legende, Note 1 ohne Frage"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Baszdmegwrote on 17.08.2007:[10.0] "Hat den Weg für etliche Generationen nach ihm geebnet. Einer DER Top Japaner im Wrestling, aber auch in der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: ecw foreverwrote on 04.08.2007:[10.0] "Vater des Highflying. Heutzutage im Ring alles andere als genial aber der hat schon so eingies gezeigt in seienr Karriere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Carlito Cenawrote on 24.07.2007:[10.0] "Hat mir während seiner Karriere viele Klassematches gezeigt. Kult."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Obermackerwrote on 24.06.2007:[10.0] "Die Junior-Heavyweight-Legende schlechthin! Faszinierte mich von seinem ersten Match an gegen Ultimo Dragon damals auf Eurosport."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Pulpulwrote on 24.06.2007:[10.0] "Neben Tiger Mask I definitiv DER Jr. Heavyweight Japans."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Undertalkerwrote on 10.02.2025:[10.0] "Man nimmt ihn als Vorzeigefigur wahr, und viele, die nach ihm kommen, eifern ihm nach! Shawn Michaels ist in allen Bereichen überdurchschnittlich: Er hat ein ganz natürliches Charisma, das man nicht erlernen kann, sondern es muss einem in die Wiege gelegt worden sein. Er hat einen fantastischen Look, mit dem er ohnehin wie ein richtiger Superstar rüberkommt und sein Micwork ist ebenfalls hervorragend. Ich denke, Shawn Michaels' größte Stärke ist es, einen in allen Bereichen emotional mitzureißen. Nichts, was er macht, ist einem gleichgültig, sondern egal, ob es Promos, ganze Storylines oder Matches sind, man fiebert mit ihm mit. Im Ring war er ein Ausnahmeathlet, wie es ihn nur selten gibt! Er war wohl vorrangig eher ein Highflyer, und zwar ein großartiger, er konnte aber auch problemlos andere Stile mitgehen - womit man ihn, insgesamt gesehen, auch als Allrounder bezeichnen kann. Durch diese Vielschichtigkeit konnte er, wenn es zur Situation passte, auch im Mat-Wrestling beeindrucken und Matches bestreiten, in denen er z. B. ein Körperteil seines Gegners systematisch bearbeitete. Shawns Fähigkeit, einen emotional mitzureißen, spürt man in seinen Matches ganz deutlich: Diese haben ein ausgezeichnetes Storytelling und jede Menge Dramatik, und man geht begeistert mit ihm mit. Trotz dem vielen Positiven, gibt es auch was, das mir nicht so an seiner Arbeit im Ring gefällt: Ich finde, er zeigte in seinen Matches nicht immer so viele unterschiedliche Aktionen - mal hier und da irgendeinen Suplex oder Slam zusätzlich, hätten seinen Auseinandersetzungen nicht schlecht getan! Außerdem war ich nie wirklich mit seiner Schlussoffensive zufrieden. Die Chops samt Atomic Drop wirkten für mich immer zu lasch und der anschließende Scoop Slam vor seinem Top Rope Elbow war auch nicht wuchtig genug ausgeführt; ich fand es nie glaubwürdig, dass er danach bereits einen dicken Elbow vom obersten Seil durchbringen kann. Mit der Sweet Chin Music hat er jedoch einen der schönsten und kultigsten Finisher überhaupt. Andererseits ist das Storytelling in einem Match wichtiger als die Moves an sich und außerdem hat er diese für mich kleineren Mängel, durch die erwähnte Vielschichtigkeit, die er zwischen den Seilen besaß, wieder wettgemacht! Ich muss aber auch ehrlich sagen, dass ich in den Nullerjahren den Eindruck hatte, dass er nicht mehr so entschlossen bei der Sache war wie zuvor. Er hatte einen reduzierten Terminplan - ich vermute mal, das lag daran, dass er in dieser Zeit dann Familie hatte und wohl stärker auf diese konzentriert war. (Was verständlich ist.) Er wog irgendwann einfach einige Kilo zu wenig, fand ich, was seine Glaubwürdigkeit im Ring ein bisschen minderte. Ich habe also auch einige Dinge an ihm zu kritisieren. Das Positive überwiegt bei ihm aber haushoch und er ist einfach einer der größten aller Zeiten! Daher gibt es hier nach wie vor die Höchstpunktzahl!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: kelseywrote on 09.02.2025:[8.0] "Shawn Michaels is an 8 out of 10 promo, 9.5 out of 10 in the ring, Gimmick is a 7 out of 10 for me. Shawn Michaels was not pushed as much compared to his peers but when he did he failed to draw. Shawn Michaels is a legend but he is not in the top 10 of all time or anything like that. I used to enjoy Shawn Michaels but as I have gotten older he is not as good as I thought however he is still great though."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Havoc Ravewrote on 03.02.2025:[6.0] "I hate Shawn, I don't respect and appreciate him. Yes, he had more than average agility (at that time), yes, perhaps his promos were what people were looking for, it was not good, it is only praised because it was in keeping with the time and agreed with the fans. If I had to define Michaels' career with a single word it would be: overwhelming. A whole roller coaster of which people only highlight the calm moments, and what happens with the sudden turns, violent turns and the unrest that it causes, I can't believe how people overlook everything bad that this piece of shit has done to everything around him. Although it has been vindicated, that does not diminish the importance and insult of all the damage it has caused to Professional Wrestling in general. Good matches, which are usually exaggerated by everything that has happened to him, "look, poor kid, he has hit rock bottom and it's unfortunate, he deserves to be forgiven". Unremarkable character, he is just another insolent person from the Attitude Era crowd/Backstage (let's be clear, I don't mind the insolence character, I just feel that he was always used by third parties, but of course, he was more successful due to the rise of the Attitude Era), the only character I praise is the one from DX 2005-2009, he likes it because it is based more on ridiculous comedy and not on penis or sex jokes. I must admit that the best thing he has done for Professional Wrestling is being Booker, and that is why he deserved. 8.0"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: dhruboezitwrote on 26.01.2025:[10.0] "The Showstopper. I've never seen a wrestler more charismatic than Shawn Michaels. Natural ability, in-ring work and promo skills - Shawn was the full package. Exactly what a classic wrestler is supposed to be. Shawn proved that you don't need to be big and burly to become the face of the WWE. Among the all time greats and a frequent feature on the Mt. Rushmore."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ItsAllAWorkAnywaywrote on 21.01.2025:[9.0] "Shawn Michaels might not have had the size promoters craved in the '80s, but he ultimately developed the look, ring skills, and promo abilities to warrant his place atop of WWE's card through the mid 1990s. It feels like injury issues forced him out of the spotlight at a time when The Attitude Era was at its apex, which sort of hampers his overall "overness" (as well as some of the stories that came out about his behavior during the time, but whether those are warranted or not are debatable.) That said, Michaels returned to action during The Ruthless Aggression era and had a great retirement match with Flair (and a match with Hogan where, frankly, Michaels was well within his right to bump the way he did.) Michaels is now working as a coach for the WWE nowadays and is an invaluable part of NXT."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jmira17wrote on 14.01.2025:[10.0] "If AJ Styles doesn't exist, he's the GOAT. Amazing performer in any aspect, every modern wrestler have Shawn Michaels as a reference, that says it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Jesse7Kingwrote on 13.01.2025:[10.0] "Mr. Wrestlemania. What more is there to say? You could cut his career in half and they would both be stand alone hall of fame worthy. Loved as a Rocker, hated as the Heart Break Kid, loved once more as a D-Generate and respected as Showstopper. Shawn was truly born-again and to this day continues to be the humblest bonafide GOAT there ever was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MEDaminewrote on 05.01.2025:[10.0] "Arguably the GOAT of wrestling, he is more than a full package, one of the best in-ring with countless matches that should've been rated 5 stars, fantastic on the mic with many great promos, and very charismatic, he even have a move that has its legacy thanks to him, and his long career is full of memorable moments, and now as a booker he's doing a good job in NXT"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Its Clobbering Timewrote on 25.12.2024:[10.0] "My Favorite Professional Wrestler of all time. HBK has it all. He is one of the best in the ring ever he has countless amazing matches, Shawn always put on the match of the night every show he's on, i mean he is the showstopper and Mr. WrestleMania for a reason. Shawn is also amazing on the mic and and has all time promos. But HBK's best attribute is his charisma, Shawn is the most charismatic wrestler of all time. Shawn oozes swagger and has the coolest entrance and theme song of all time. Shawn also made one of the most popular moves in wrestling as famous as it is today the superkick, when Shawn hits it we know it as Sweet Chin Music which is a sick finisher. HBK also has the best attire ever his pants with the broken hearts on them are so iconic and sick. Shawn is also the leader of the most famous Faction in wrestling history in DX. Shawn also has one of the best and most famous heel turns ever when he turned on his tag team partner Marty Jannetty and threw him through the barbershop window, ending the rockers and really shot him into superstardom. Now HBK is helping out the younger talent as he is in charge of NXT. HBK is also decorated he in his 20+ Year Career HBK is an 3x WWF 1x World Heavyweight Champion, 3x Intercontinental Champion which he is also one of the best IC Champs, a 5x Tag Team Champion & a two time Royal Rumble Winner Champion Shawn never needed championships or accomplishments to show how he good he is. HBK is my Goat and will always be the reason why i love Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ecks516wrote on 12.12.2024:[10.0] "HBK is my all-time favorite wrestler, the charisma, the athleticism, the story telling, the gimmick and of course the in-ring ability. It all works and was believable. He could have a great match with anyone (even that SummerSlam match was great imo)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: AceHagannwrote on 26.11.2024:[10.0] "With only exceptions here and there, such as his Saudi Arabia match, HBK had one of the best careers a wrestler could potentially have. With iconic matches at every point. As the cherry on top (Once again, barring Saudi Arabia) is that he had one of, if not the best retirement matches of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: WWFanwrote on 17.11.2024:[10.0] "HBK is not the greatest ever, that's Hulk Hogan but Shawn was most talented all around wrestler I've ever seen for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Wrestlingfan0808wrote on 04.11.2024:[10.0] "At his peak, he made wrestling look so effortless. When he came back from a near career ending back injury, you could argue this run was even better than his first one pre injury. The showstopper. The amount of sons he had in the business today is insane. Who would have thought Shawn would be giving back the way he has by doing what hes doing with Nxt? One of the greatest wrestlers of all time who for some reason folks try to act like he wasnt all that, when he was. Yall just mad he is better than a lot of your favs. Till this day he has too many matches and moment that continue to stand the rest of time. A true trailblazer of this business and helped played a big part in the perception of how smaller would be looked at when it came to be being marquee wrestlers for the better. Played a pivotal role in every era he wrestled in. Whether it be as a tag guy, as the face of the company, it didnt matter what his role was, whatever they had Shawn do, he hit it out of the park. One of the goats for a reason."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DixieNormas1980wrote on 20.10.2024:"I was there when HBK won the Royal Rumble in 96, and I have seen many matches in person. He is the greatest of all time"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheNomadMagicianwrote on 19.10.2024:[9.0] "HBK ist sicherlich einer der beliebtesten und bekanntesten Wrestler of all Time. Auch ich habe ihn gerne gesehen, was mir immer etwas gefehlt hat, weswegen es auch hier nur 9 statt 10 Punkte gibt, ist ein etwas größeres Moveset. Das was er gemacht hat, hat er gut gemacht, guter Seller, high Ring IQ aber ein paar mehr Moves wären schon Top gewesen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TripleCrownwrote on 14.10.2024:[10.0] "In-terms of wrestling ability along with being a "character" Shawn Michaels is BY FAR the greatest wrestler the WWE has ever had. Whilst people like to say Undertaker is up there with him as the Mount Rushmore of WWE, in my opinion, HBK was just so much better and able to work week in, week out, regardless as to who his opponent was and what day of the week it was. The guy just had it all. His matches and achievements in the industry reflect that too. You could put him in any era, and he'd be a star. Obviously everybody knows his past, but he managed to turn things around and really have a renaissance. The best wrestler WWE has ever had, and probably will ever have. Easy 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dntbamarkwrote on 30.09.2024:[10.0] "Shawn is easily one of the greatest performers I've ever seen, bar none. Shawn vs Bret at WrestleMania XII, Shawn Michaels vs. The Undertaker at WrestleMania XXV, Shawn vs Triple, Shawn vs Triple H vs Chris Benoit. So many classics. Though I wasn't much of a fan of him during his initial run, Shawn really was able to experience a career renascence upon his second return and never seemed to have lost a step with age."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Zak22wrote on 23.09.2024:[9.0] "I still need to see more of Michaels but from what I've seen, his status as a legend is deserved. Shawn was inventive, athletic, slick and an all round great worker, except I think his over-bumping is a bit shit."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jsbortswrote on 19.09.2024:[10.0] "I think Shawn is missing the large catalogue of great matches that his other contemporaries do, much like Kurt Angle, but he's undeniably great, had some excellent excellent matches with Bret Hart, and really had some fun character work and promos and also took place in what's probably one of the two best retirement matches (Ric Flair/Sting). Don't think he was a fantastic promo or anyhthing but he was always charismatic on the mic, and boy could he go in the ring. But to say he isn't a 10 as a wrestler is to let his old personality get in the way of good judgement, as he is one of the best to ever lace up a pair of boots"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: maven loverwrote on 17.09.2024:[9.0] "Minus a point for the ego issues, everything else a 10/10. One of the best things to happen to WWE, ever. Could sell like crazy, knew how to work believability, psychology & emotion into matches, was uncannily athletic, had incredible longevity, had the best superkick in the business, could do hardcore spots when needed, could do comedic & serious promo work equally well, & who doesn't like D-Generation-X?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: trickwillywonkawrote on 17.09.2024:"The GOAT of wrestling. S tier in almost every department. What can be said has already been said a million times over. AND he's doing a excellent job as the NXT booker."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Jayhiggs2kwrote on 11.09.2024:[10.0] "Not only is he The best in ring performer, 8 I don't know if anyone ever sold as great as he did. He could make or break you just by selling. Just ask Hogan from SummerSlam 05"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Enchantiumwrote on 30.08.2024:[9.0] "Shawn Michaels was such a top-notch in-ring performer, he will always be regarded as one of the most known wrestlers of all time. His charisma and enthusiasm were great, and he was a very respected and good worker, especially in his feud with Bret Hart, as it showed his professionalism. However, there were instances where he showed a lack of professionalism with his match with Hulk Hogan, but I can't lie, it was funny af. Now he has moved to the booking side of NXT, and I think he is doing a very good job. He clearly understands the interest that audiences have over specific wrestlers and pushes them to become the next biggest stars. I may have rated him higher, but his return match in Saudi Arabia, which completely murdered his amazing retirement match, is the reason why."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: wrestlingswiftiewrote on 29.08.2024:[9.0] "Even though his mic skills were average (unless he was shooting from the hip, ) Shawn Michaels is the standard of what modern pro-wrestlers should try to achieve. Yes, he did the big moves that we see today (superkick, moonsault, elbow drop, etc.) But the difference is, he knew WHEN to do them. His in-ring work is brilliant, although I prefer Bret's, but I won't let that take away from the fact that Shawn was a better overall performer. He had extreme charisma and flash, cool enough to be taken seriously in pop culture. The ladies loved him, and the men wanted to be him... Nearly the perfect wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: 12psiwrote on 27.08.2024:[10.0] "Probably the greatest in-ring performer of WWE's major icons, providing some of the greatest moments on the biggest stages with the utmost commitment to his gimmick. Additionally, he's done wonders in helping to reshape WWE in the wake of the head sex-trafficker's departure. Not much else to say, Shawn is it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Chosen Onewrote on 26.08.2024:[8.0] "Finde ihn ehrlich gesagt etwas overrated. Eine Legende, natürlich, aber außerhalb vom Ring in Sachen Character Work und Promo war er nicht so interessant und bitte steinigt mich nicht, wenn ich das sage, aber sein Theme Song wurde irgendwann auch nur noch alt. Sein Kollege Triple H war in Sachen Charakter deutlich interessanter. Ironischerweise sind die beiden aber beim Booken von Wrestling-Shows umgekehrt: Triple Hs NXT hatte so gut wie keine Storylines und Gimmicks und war daher (für mich) extrem langweilig, während Shawn NXT zu einer phänomenalen Wrestling-Show aufgezogen hat. Ich finde, er ist ein besserer Booker als Triple H und das mit Abstand. In dem Aspekt finde ich ihn lustigerweise underrated!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: D2ashwrote on 26.08.2024:[10.0] "what more can I say, Shawn was always up to the task, never disappointed by this guy, we always waited for his matches but man for me even if HBK was strong in the years 2000/10 his prime for me remains the 90s what a performer, I Love this man so much"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CicconeYouthwrote on 21.08.2024:[10.0] "One of the greatest performers of all time (if not the greatest). Shawn Michaels had it all: Charisma, look, in-ring skills, the it factor. The best there is, the best there was, the best there ever will be..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: IAmAdamJaywrote on 14.08.2024:[10.0] "One of the greatest in ring performers of all time. Was able to captivate attention into anything he was doing. Could work with anybody in the locker room and a lot of the times guys got better working with Shawn. He could sell a move like nobody else. There is no one from the 90's or early 2000's who compare to Shawn Michaels."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "Had he not come out of retirement to fight for Saudi blood money, I would have rated Shawn a 10/10. But he did, and it really put a damper on the end of his career. Shawn had such the perfect end to his career, but he had to ruin that by fighting because Vince couldn't say no to that blood money... which is so unfortunate considering how good Shawn was in the ring, even towards the end of his full time run."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fakhruddin Hawariwrote on 01.08.2024:[10.0] "Shawn had two great runs in WWE (before and after his back injury). That alone made him a legend. His rivalry with Bret Hart saved New Generation Era so much. The best wrestler at that era not named Bret Hart. Then, in his second run he had so many legendary matches including two WrestleMania matches against The Undertaker. He's not called Mr. WrestleMania for nothing. He did'nt need many main event matches to prove himself as a top star."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: XNoWayKemoSabeXwrote on 24.07.2024:[10.0] "The Heartbreak Kid was a large part of my childhood. Watching DX run wild back in the day was truly something to see. I should probably take a point away because I got in trouble for telling people to "suck-it! ' and doing the crotch chop, but his in-ring work makes up for that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: woolyshamblerwrote on 21.07.2024:[3.0] "it's such a sadness that shawn is one of the most influential wrestlers in the USA, because he's the definition of a fake wrestler. his great reputation among wrestling fans today is entirely due to WWE just telling them how good he is over and over. between his love for hokey melodrama and his over-the-top (admittedly very funny) selling, shawn is unable and unwilling to portray a believable and tangible struggle unless his dance partner forces him to do so, or at least works around him. his matches frequently devolve into poorly paced clown shows saved by one or two well-timed spots. he's still had some ace matches despite this, especially with kurt at mania '21, and i have to admit he brings a kind of "Big Match Feel" even if he doesn't end up delivering in the ring."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Joe907wrote on 15.07.2024:[10.0] "The GREATEST WWE preformer of all time. He was ahead of his time in the late 80's - early 90's. Even in the 2000's after his back injury, he wrestled at the highest level and provided incredible matches. His influence to this generation of wrestlers is awesome. His selling was untouchable. Even after his wrestling career was over, he helps on the NXT brand creating the new generation of wrestlers. He is just so legendary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MatnificentMattwrote on 21.06.2024:[10.0] "Shawn was an incredible performer. He has had many matches and moments that will never be forgotten. He was amazing at selling and had an exciting move set. Both his first run and second run were amazing and his style has been emulated by many other wrestlers from different eras."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rassle Fanwrote on 16.05.2024:[7.0] "Shawn Michaels was great at bumping and selling. Two of the most important aspects to being a successful wrestler. Any trainer worth their salt will say the same. His promos were average. Nothing terrible but my hot take that will probably get me killed is that the ones he did in DX were awful. Even in kayfabe it's really sad to watch a 30 something year old man acting like a middle schooler. I actually think some of his better promos were in the AWA when the Rockers were feuding with Doug Somers and Buddy Rose. DX was the weakest point of his career with each iteration of it. 2006 was easily the worst version. If you look at the quality of his matches while being part of DX, none except the Wrestlemania 23 main event with Cena were that good. Nothing on the level of matches he'd have with Kurt Angle and the Undertaker. He's an all time great for sure but in the back of my mind I always hear Rob Van Dam during an old shoot interview where he felt HBK "dripped with insincerity""
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: texasyoshwrote on 24.04.2024:[8.0] "Michaels bodes a pretty interesting career to look at retrospectively. I think his case is largely hurt by viewing the globality of pro wrestling, as he was touted as one of the best wrestlers in the world during the peak years of his career. But does that hold up? The more you learn about the world of wrestling as a whole, the less you appreciate Shawn Michaels. Shawn's longevity in the WWF despite his numerous controversies and personal demons is legitimately fascinating, but it shows the amount of trust the office had in him to be a future player. WWF really, really tried to make him the future Face of the Company, which simply never, ever worked. Is it a testament to Shawn as a wrestler? Michaels feels incredibly formulaic as a wrestler to me. Maybe in some ways, his heelish charisma and his frantic style makes him a difficult face for me to root for. Shawn feels more at home as a heel, and I think that's where you get the best of his work. Additionally, the best Michaels matches are the ones deliberately not being led by Shawn (see vs. Mankind, vs. Undertaker HIAC). Upon his retirement and return, Michaels embraced the 'epic' style that we now see proliferated today. Sometimes it resonates with me (vs. Cena, vs. Jericho), but mostly it feels overexaggerated. For his legacy, it's genuinely arguable that Shawn has had a net-negative influence on the business as a whole, not only his period on top of the WWF being one of its lowest drawing periods ever, but inspiring a tasteless version of pro wrestling that has been accepted and triumphed by the likes of Johnny Gargano and Adam Cole. Despite that, Michaels had engaging matches at a time period where his life was spiraling out of control. It's a complicated career to look at."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SwaggerHammerwrote on 13.04.2024:"One of the greatest of all time no questions asked. Consistently put on great performances. Never was the reason behind a mad match. Always elevated others to put on the kind of match worthy of our fans."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bean1985wrote on 11.04.2024:[10.0] "The best in ring performer of all time even if we split his career in two, before and after the back injury. Multiple memorable matches, charismatic at the mic, unique acting as heel (97&DX period and feud vs Hogan are goat material). Not built to hold championships or being a commercial champion, but just to steal the show. I didnt like his second run as babyface, I truly believe that as heel he had way more impact to the show, but that was his decision. Each of the opponents he faced at the biggest stages had their best match career against him. He was always there, elevated 60year old VinMac, 50plus year old Ric Flair getting with both the match of the year award, had technical clinics with great opponents (mixing at the same time amazing technical showcase along with intense, controversial feud, in some cases with unprecenterd dynamics)l, while reducing the distance between the business and real life feuds), put over Stone Cold, Triple H, Benoit and Cena as champions, had multiple matches eligible as best match of history (vs Razor/Ladder, Hitman/Wrestlemania, Angle/Wrestlemania, Undertaker/Wrestlemania25&badblood97, ) plus another dozen standing right in the lower elite tier. Last but not least .he will remain undisputed goat also as innovator for all the special stipulation matches he started over his career. Shawn Michaels did not build this business, but was able to turn an amazing church in a Brunelleschi style basilica. Any word apart GOAT is offensive for him. Not even close. Nobody else ever delivered even a half of what HBK did. And I am being generous with proportions.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: cal9099wrote on 07.04.2024:[9.0] "Obviously a legendary figure with a bunch of classic matches under his belt, but someone that never really did it for me despite his accolades. Talk of him being the greatest of all time is pretty ridiculous to me. While his in-ring was top tier, his promo skills were never stand out."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BruceMarcos524wrote on 24.03.2024:[10.0] "There is no question that he is the greatest performer of all time. Shawn Michaels truly was ahead of its time, bringing the exciting and flashy spots in WWE from its boring ground and pounds of the past. He is very athletic and knows how to work in the ring very well. He is so good that he could even wrestle a 5-star match with a broomstick. Even with WWE's restricted environment, he can still deliver the best of matches way possible. His first run is nothing but sweet, but it is until his second run that truly provide us iconic matches to be remembered for a long time. Although he is hot-headed and prima donna in the past. Still when he sets himself in the ring, his performance was truly unmatched then. He is also considered as the guinea pig from the stipulations that WWE introduced like the Ladder match, Iron Man match, Hell in a Cell and Elimination Chamber and no doubt delivered on these first-time matches. He had also great rivalries, most notably with Bret Hart, Triple H and Chris Jericho. Some people may say he is the GOAT, as I disagree. But no doubt he belongs to the GOAT list up for debate."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fabricio Peter Canezwrote on 13.03.2024:"Without a doubt he was and still is one of the most relevant stars in the history of wrestling. He knew how to adapt to changes in generations, he always sold his fights very well and was always very technical and charismatic in the ring. It definitely deserves a 10! Thank you very much HBK!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DanParkeswrote on 12.03.2024:[10.0] "Shawn Michaels is incredible in the ring - selling and performing. He's great when he gets a mic in his hand too. I believe there is a good reason a lot of wrestlers put him as their dream match/favourite/mount Rushmore or consider him the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RitsuTa1naka69wrote on 05.03.2024:[3.0] "I think a lot of his early work pre-DX with Diesel is really good. I loved his ladder match with Ramon. But unfortunately a lot of the bad outweighs the good for me as his Attitude Era DX run has never been my favorite, and then going into the 2000s, a lot of his stuff became less and less interesting to me. I will say, the tail end of his career I will always find nostalgia for (09-10) as it was around the time I got into wrestling. But other than that, looking back, Shawn doesn't do it for me. I sadly can't comment on his booking abilities as I hate modern day NXT. His music was pretty neat, and I think his overall presentation was fantastic, especially his WrestleMania 12 entrance. A lot of his personal demons and the way he conducted himself post Montreal Screwjob soured me the most on him."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Vanstylerwrote on 22.02.2024:[10.0] "The goat. This guy right here is the reason why I became a wrestling fan in the first place. The super nice entrance with lots of fireworks, kicks to the face, charisma machine all the way, he's the perfect formula to sit your ass in the couch and watch the show all the way. His matches were banger after banger in his best times"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SJ Millerwrote on 22.02.2024:"The most influential performer of the '90s, an evergreen into his mid forties. Knew how to get fans worried about his safety as a babyface and have them throwing garbage at him as a heel, would have fit every bit as well into the Attitude era as he did into New Generation and Ruthless Aggression. Unprofessional conduct marred his reputation during his original career run but when he went long during a match, he backed it up with the performance that had everyone talking."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mizzyshawrote on 21.02.2024:[10.0] "He's perfect. Legendary moveset, legendary feuds, legendary stables, legendary matches WELL into his career...Shawn is just too overwhelmingly good at anything that encompasses professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Spookylol1wrote on 21.02.2024:[10.0] "The greatest in-ring performer of all time and it's not even close. Shawn also had the best physical storytelling ability of all time. This man could draw you in and make you believe in everything he did like no one else could."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kalinwrote on 19.02.2024:[10.0] "The man who got me into wrestling as a kid. I had the 1995 Royal Rumble on VHS and used to play it and act out every move against these stuffed wrestlers I had, using the couch as the ring and hanging over the side at the end before flipping back over and eliminating the British Bulldog to win it all. He was the perfect all around wrestler. His ring work, charisma, character work, mic skills, his entrance and music, his attire.....he was genuinely the most complete wrestler we have ever had, and I am not sure anyone will ever be able to top him as a total package."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: esr100000wrote on 08.01.2024:"One of the greatest wrestlers of all time and the most defining of his generation. Opened up so many pathways for 'the smaller guy'. His second run is incredible. You were basically guaranteed an incredible Wrestlemania match for 10 years straight."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: dulonicdaddywrote on 02.01.2024:[2.0] "I cannot recall a match that Michaels has had where he genuinely conveyed a fight. In his early years, when he was less crisp and redundant, perhaps so. In his older years, this was at least conveyed somewhat in his struggle to leave before his performative prime was gone. Post-smile returning and religion-thumping the dude always wrestled like his anus prolapsed or something - just such a naturally laughable and goofy presence in such a shameful way. Shawnzie always felt more like a circus performer than a legitimate professional wrestler. His timing was phenomenal and blah, blah, blah ... but he has always been intensely hokey. Also, his Playgirl shoot is absolutely mid. Dude didn't have the balls to show balls and that is a serious detractor for the culture."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BMWrestling17wrote on 28.12.2023:[10.0] "He could have wrestled against a broom and he would have made the match a modern classic. That's how good HBK was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MVCfanwrote on 21.12.2023:[5.0] "When i talk about technique, note my background in being both a National champion in grappling and a 2nd dan in full contact karate. His biggest weakness is how technically is kick looks, i know in most wrestling in th us wresting the on connect hard in safe place ideals.. but talk to any Fighter or even the fight choreographer in film leaning away from your kick makes it look light from what iv have seen of him he does this and all other super kicks presently is this, and it irks me it no end. Thus, i think down his rating for his negative impact on how wrestling looks in terms of realism in striking terms. This one huge issue issues aside, his match has been middling to great, studying his back Catalogue he should be a low 8 t to mid 8. Rating, but loses 3 points for my big irk I have with him. And the wider bad influence on how people work in striking in pro wrestling. People need you watch Chris Adams, the best-looking kick of that style ever in pro wrestling. The fact this gentleman is a coach finds me giggling like an over caffeinated child. Overall 5.2/10"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: greaterdalewrote on 10.12.2023:[10.0] "During his first run he was huge ass but in ring wise he was one of the best of his era. Not as good as Bret hart but he had tons of classics too. His second run was definitely better and it helps that he chilled out too. I previously subtracted a point for him being an ass and refusing to do the job a lot in his first run (also something about him not letting Vader win the WWE tile which albeit still sucks.) However, between the fact that yeah he's one of the goats and he's become an excellent booker for NXT I figured I'd come back and adjust his review to 10/10 he's definitely earned it and perhaps I was just being a contrarian for trying to find a reason to not rate him 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: crs285wrote on 03.12.2023:[9.0] "Shawn was a great wrestler. From his work with the Rockers all the way to his retirement match with the Undertaker he has always been a huge star. His in-ring action was great as was his promos and charisma. He could do comedy or seriousness depending on the situation. He had a bad reputation backstage in his early years with the Kliq. This seems to be something that changed on his return and he now helps the future in NXT."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ThomasAPTraceywrote on 28.11.2023:"My GOAT. Maybe not THE flashiest worker of all time, but without a doubt the best. Countless classic matches and moments with a plethora of opponents. No one can compare."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] ""The Heartbreak Kid" Shawn Michaels is easily in the conversation among the best in ring performers of all time. A man who's had a legendary 25 year career, starting in AWA where he started as a singles competitor until he formed the legendary tag team with Marty Jannetty, The Rockers. A tag team that was so good, and over, that the WWF had to sign them, caught the attention of Vince McMahon. Despite they got fired on their first day in WWF due to a bar fight, they got rehired sometime after, wounded up being one of the most popular tag teams in the WWF's history. Then the team split up in iconic fashion where Shawn Michaels turned heel in the infamous Barber Shop Incident, which was the beginning for Shawn Michaels as a solo competitor while the downfall of Marty Jannetty. Shawn Michaels ended up becoming Intercontinental and WWF Champion during this run in the 1990s as singles, competing with the likes of Razor Ramon and Bret Hart over the belts, matches that still feature iconic moments implanted into the brains of professional wrestling fans to this day. Sadly, Shawn Michaels injured his lower back during a casket match with The Undertaker at the Royal Rumble 1998, which lead to him retiring from in ring for awhile. Thankfully, he got his iconic comeback run in the 2000s, where he was better than ever. Shawn Michaels was easily WWE's best performer in the 2000s with not one ounce of doubt, having the match of the night whether he was main eventing or somewhere in the middle of the card, Shawn Michaels always tore the house down facing the likes of Triple H, Shelton Benjamin, Chris Jericho, The Undertaker, Kurt Angle, John Cena, Ric Flair, Jeff Hardy, Randy Orton, Edge, Rey Mysterio, and so many more to name. He ended up retiring in his final match (what do you mean he competed in 2018, that's not true) against The Undertaker at WrestleMania XXVI, ended his career on a high note. Overall, Shawn Michaels is one of the most complete wrestlers to ever step foot in the ring. He's one of the best wrestlers in the ring, was very charismatic, a great worker who could be a heel and face at any given time, really solid on the microphone, he could do anything you'd ask him to do."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: skyesversionwrote on 09.11.2023:[4.0] "Maybe if he wasn't a piece of crap in real life then he would have a higher ranking from me. He just always felt like Triple H's lackey. I personally believe that he wasn't really main event material. Mid-card, sure. But main event? Not really. I don't know. He shouldn't be in the discussion for the Greatest of all Time at all. I just don't understand the praise. As a booker, okay. But wrestler? Absolutely not. Like I know I'm just rambling but if you like Shawn Michaels you need a reality check."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Gold Fistswrote on 15.10.2023:[8.0] "No arguing that Shawn Michaels is untouchable in terms of in-ring skills, piles of charisma and simply one of the most trailblazing performers in history. But he was so damn annoying backstage in the 90s that I've gotta take a few points off. He's the sole reason that Vader didn't get the WWF push he deserved. However, I am glad that he took care of his problems and had a monumental second run of his career. He also helps his rating by being an absolutely INCREDIBLE booker for NXT lately. The last few PPVs have been outstanding. Also MOST ICONIC THEME SONG OF ALL TIME NO ANDS IFS OR BUTS"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: andytuga86wrote on 30.09.2023:[9.0] "My favourite technical wrestler: unpredictable, defiant and great showmanship. His work always seemed quite organic to me, unlike his rival Bret Hart who was more mechanical and methodical. Despite his dubious behaviour outside the ring (sometimes in it as well...), he deserves to be recognized as one of the best performers of all time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Teebawrote on 14.09.2023:[10.0] "It's crazy, when you put HBK into a video game he's one of the more boring characters to play as with his moveset being very basic, in real life though he is one of the greatest of all time. He is the perfect example of mastering the craft of selling and storytelling, his 00s run especially was full of match of the year candidates and show stealers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bockelitowrote on 04.09.2023:[8.0] "In term of In ring talent, shawn is a 10. Everyone knows how good he is, one of the best of his generation and in geenral of all time. But I just cant overlook his backstage antics. Ruining the vader match on purpose, refusing to lose to bret and many others, trying to ruin rocky and so much more."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BEER CATwrote on 02.09.2023:[7.0] "I never bought his face schtick. I think his style comes from this weird kind of post-Ricky Morton thing where he'd bump like a babyface regardless of the match and would either cheat or have these big hope spots in lieu of a hot tag (after the Rockers, of course). So Shawn was tailor made for a certain kind of story-heavy, melodramatic main event style that guys like Meltzer ate up and played great with the right booking and a big crowd. The problem was his in-ring style was so babyface and his natural personality was so heel that none of his great performances were entirely cohesive. Not just that, but his influence is NOT a positive one of modern wrestling - a lot of "bad habit" indie main event guys clearly crib from the Michaels book, Adam Cole and the Young Bucks being his most obvious disciples. I think Shawn's overrated, but I'd be a fool to think he's anything other than great. His TV stuff isn't nearly as worthwhile as his big PPV stuff, but it's big PPV stuff that people go back and watch most often. His best matches are all classics, and he was able to consistently create classic matches through three or four different career phases. And the Rockers were awesome, btw, often the best act on bad cards during the WWF's lesser early 90's shows. I don't want to grow up to be Shawn Michaels. But his Best of DVD admittedly smokes about 100 guys I like more than him."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Heartbreakkid2003wrote on 13.08.2023:[10.0] "The greatest wrestler that I have ever seen and will probably ever see. Only saw the final 3 years or so of his career but I later on as I got older went back and watched all the classics and just Loved the way he wrestled and the overall entrance. Will never be another like him once in a lifetime talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ViolenceBretwrote on 07.08.2023:[10.0] "HBK, the heartbreak kid... What a career. The premier worker of the 1990s, the show stopper, the backstage manipulator that drove people out of the WWF because of his hissy fits. Is Shawn Michaels overrated? Without a doubt, and he really couldn't handle the pressures of being the top champion of the WWE/WWF. Yet with old age comes maturity, and once our lad found Jesus Shawn mellowed out. Sure he could still be a jerk, especially dealing with fellow backstage politician Hulk Hogan. Yet a strong argument could be made that Shawn was the glue holding together the Ruthless Aggression-era. In other words, the star athlete of the 1990s was a 9.7/10. Completely insufferable, annoying, immature, perverted, but also a genius between the ropes. He gave us everything night after night. The heartbreak kid post-Jesus is an easy 10/10, mature, not needing the spotlight, slowed down but still giving high quality matches, and a great storyteller. Thus, for sheer importance and overall impact Michaels is an A+ player. Frustrating at times, but hey, that's human nature."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Khalid Acewrote on 27.07.2023:[4.0] "Shawn Michaels is possibly one of the most overrated wrestlers ever. A spot monkey with a childish finisher and humorous selling and not a very convincing facial expressions isn't what I am trying to see"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Brainbreakerwrote on 22.07.2023:[10.0] "Ohne Kommentar hatte ich hier Shawn Michaels schon im Jahr 2007 die volle Punktzahl gegeben. Sechzehn Jahre später (ich werde alt...) will ich doch noch meinen Senf zu ihm geben: HBK war DER Wrestler, der mich schon als Kind zur damaligen WWF gezogen hat. Im zarten Alter von acht Jahren beobachtete ich im Jahre 1995 seinen Aufstieg, damals noch über TV und WWF-Magazin. Wie unfassbar geflasht ich war, als ich ihn in meiner Heimatstadt Halle zu einem Houseshow-Event live sehen durfte, und wie ich mich gefreut habe, als er bei Wrestlemania 12 den Titel holte. Und dann war da noch die große Enttäuschung als er im Sommer 1997 gegen den Undertaker turnte und auf die dunkle Seite wechselte. Sieben Jahre später - ich hatte nach HBKs Turn keinen Bock mehr auf Wrestling - war ich als Jungedlicher weniger "markig", refletkierter und konnte Wrestling endlich als den Performance-Sport wahrnehmen, der er ist. Michaels war auch wieder da, war jetzt weniger Backstage-Diva und sorgte immer noch für Klassiker: seine WM20-Performence holte mich zurück, sein Klassikel mit Kurt Angle bei WM21 band mich wieder langfristig ans WWE-Produkt. Die Fehden mit Hogan, McMahon, Cena, Jericho, Flair und dem Undertaker, die allesamt legendäre Promos und Matches hervorbrachten, sind für immer in meinem Kopf eingebrannt. Und nun, dreizehn Jahre nach seinem In-Ring Abschied (die Saudi-Show können wir ja mal getrost beiseite schieben ;)), ist er einer der Hauptverantwortlichen, die die neuen Generation von WWE-Stars aufbauen und das auch noch ziemlich erfolgreich, denkt man an Cole, Gargano, Ciampa, oder Waller. Ich könnte mich jetzt in Detail-Diskussionen aufhängen, ob er mehr oder weniger zum Business beigetragen hat als etwas Bret Hart, oder ob seine Titel-Runs für die WWF kommzeriell erfolgreich waren, oder ob seine NXT-Booking annähernd an die alten NXT-Zeiten von Triple H heranreicht, oder was auch immer ... ich könnte aber auch einfach sagen: Michaels ist ganz sicher eines der besten und beständigsten Gesamtpakete, was das Business je gesehen hat und rein subjektiv ist er der Wrestler, dessen Stories und schauspielerische Fährigkeiten fast immer glaubhaft zusammenpassten und auf dessen Matches ich immer hinfiebern konnte, egal wie bescheiden die Card bei einem PPV auch aussah - denn die versprachen immer beste Unterhaltung. Danke für die Erinnerungen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MattHallwrote on 13.07.2023:[10.0] "One of the best in-ring performers ever in wrestling history. Along with John Cena, Undertaker, Stone Cold Steve Austin, The Rock, Mick Foley Triple H, Hulk Hogan, Randy Savage, Ric Flair, and Bret Hart. This guy is truly awesome, and had a very long iconic career"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: flipflopdoritoswrote on 11.07.2023:"the best in-ring performer of his generation and the #3 western in-ring performer of all time. asshole or not, that doesn't affect his rating. one of the best performers to ever grace god's green earth."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Wrasslinfan619wrote on 07.07.2023:[10.0] "Holy shit I never rated the greatest of all time, where do I start with Shawn Michaels. I'll start by saying, yes he was an asshole but anyone letting that effect their rating is weird because why would you deny that in the 90s he was A talented asshole. The 90s run is so talked about and I'll say this, the survivor series 97 match is better than the WM 12 one and Shawn is better than Bret. Oh also the ladder match with Razor was amazing and the Mankind match is underrated. Now the 2000s run, one of the best wrestlemania runs I've ever seen because he had classic after classic and got out Vince McMahon's best match because HE'S THE GOAT! This run ended with probably my 2 favorite matches ever as well with the Taker series, with the WM 25 match being my favorite match ever. The Flair match was brilliant, the Cena match on RAW is overlooked among all the other classics. HBK had consistency and consistency is key in wrasslin. HBK worked his ass off, he could have A MOTYC with Kurt Angle on WM and then like A month later have A MOTYC on RAW of all shows with Shelton Benjamin, thats why he's the greatest of all god damn time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Conquistador37wrote on 02.07.2023:[10.0] "I first caught Shawn Michaels as one half of the Midnight Rockers so, yah. Point deducted for turning on Marty at the Barber Shop (I'm still not over that ok! ? ). Point deducted for the Vader fiascoes. Point deducted for anything related to Degeneration-X post ring return. Point deducted for reasons I will not mention publicly. A tidal wave of additional bonus points because my gawd, his in ring stuff! I love to watch his career. He even started doing total squash jobs! One of the tippy top all time great in ring worker/performers. Beyond some "ugh", his entire career is very strongly recommended."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: duketsao7wrote on 02.07.2023:"The greatest in-ring general, performer, storyteller of the biggest wrestling promotion of all time. I won't talk of the famous GOAT matches, or even something like the infamous 2005 Hogan meta match. But I saw a match of him and Sid vicious from Survivor Series 96 the other day. How can anyone have such a great match with Sid of all people while being booed as a babyface by the Garden crowd. How can anyone *move* in the ring like he did in the 90s. How can anyone sell and emote like he did in the 2000s. Wrestling as we know it peaked with Shawn Michaels and now all one can do is perform flashy and dangeorus choreographed spots and movesets in trying to live this very strange posthumous existence of so called "evolved" prowrestling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Neon Aussiewrote on 02.07.2023:[7.0] "A good talent, very entertaining. Large ego. Manipulated his way to the top. Slightly overrated. Cross-eyed. Had some great matches in the 90's. Wasnt good on the mic, was immature even as a middle aged man, and had a terrible finisher that's supposed to be illegal in wrestling."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Cyclopz007wrote on 12.05.2023:[3.0] "I will never understand the reverence for this guy. He has too be the most overrated wrestler of all time. His matches are fine but there's no flair or anything that stands out for me at all. His finishing move is literally just a kick to the face, how incredibly lame and uninspired can you get? And what is this gimmick or persona supposed to be? I don't get it. He's annoying on the mic as a heel and much more so as a baby face. He's only famous because he knows how to play the backstage politics and hitch his wagon to much more talented and charismatic superstars. He was also very lucky being at the right place at the right time. He does not deserve to praise and adulation he gets. And by all accounts he's kind of a jerk in real life which as a locker room leader he has no right to be. They're the one's holding him up and he pushes them down. Not a team player, and a poor sport to boot. He really rubs me the wrong way. Possibly my least favourite wrestler of all time."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Tomstaralotwrote on 11.04.2023:"Despite always being considered to be a nightmare backstage in his early years, Shawn Michaels exemplifies what WWE's "Sports Entertainment" was and has always been about. A legendary showman and an exceptional wrestler between the ropes, he was the highlight of every show and truly earned his "Mr. WrestleMania" nickname."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Giantfan1980wrote on 09.04.2023:[10.0] "Crappy backstage personality and turning into the Axel Rose of wrestling aside, Michaels was a solid in ring performer from his Rocker days up until his retirement. Can't really think of any matches of his that sucked."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NachoManwrote on 03.04.2023:"The wrestler that made me watch the wwe. I know it's controversial but subjectively the greatest of all time"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ratart2455wrote on 31.03.2023:"Greatest in ring performer of all time. Most consistent main eventer and trustworthy for big matches and new stipulations."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mansfimwrote on 07.03.2023:"Deserves to be mentioned amongst the all time greats. He had classic matches in the golden, new generation, attitude, ruthless aggression, & PG eras."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: John Brandowrote on 04.03.2023:[10.0] "Würde ich gefragt werden, wer auf Platz 1 der besten WWE-Wrestler ist, vor Kurt Angle und vor dem Undertaker, dann würde ich antworten:Shawn Michaels! Ein überragender Performer im Ring, technisch stark, vielseitig, unheimliche SportsEntertainment-Qualitäten und ein Selling, was zwar manchmal übertrieben ist, aber nie schlecht. Am Mikrofon brilliert er ebenfalls (Who's your daddy, Montreal)! Es gibt so viele Klassiker in der WWE-bzw. Wrestlinggeschichte, an denen Michaels beteiligt war, und die ich mir immer wieder gern anschauen kann. In den 90ern kein Musterknabe gewesen, hat er sich in den 2000ern radikal verändert und neu zu sich gefunden. Shawn Michaels ist eines der besten Gesamtpakete die es gab und je geben wird im Wrestling, Feierabend!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: kewf1988wrote on 26.02.2023:[10.0] "Shawn was an amazing wrestler, who was extremely charismatic and great on the mic. He and Bret helped carry the WWF through the New Generation era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LGL19wrote on 22.02.2023:[10.0] "Arguably the greatest wrestler of all time. Barely ever had a boring or bad match and has had some of the most legendary feuds and matches with some of the other greats such as Undertaker, Bret, HHH, Cena, Razor, Jericho and many more. Also a huge influence on the way wrestlers perform today and an inspiration to them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ProWrestlingGuy316wrote on 14.02.2023:[10.0] "Kurz gesagt einer der besten Wrestler und Sports Entertainer (im positivsten Sinne) aller Zeiten. Ähnlich wie ein Kurt Angle konnte/ hatte er einfach alles: Face und Heel spielen, Promos halten, Comedy (außer die post-WWF DX), Charisma ohne Ende und in seiner Prime in der Lage, eine Mülltonne zu einem guten Match zu ziehen. Positiv ebenfalls zu erwähnen aus der Sicht seiner Kollegen, dass sich seine Einstellung in den 2000ern massiv gebessert hat. Zwar konnte er gelegentlich alte Züge zum Vorschein bringen, es war jedoch nicht immer schädlich (zum Beispiel konnte ich ihn in seiner Fehde gegen Hogan sehr gut verstehen, dass er nicht allzu erfreut über den Verlauf des Programms war)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rignowrote on 26.01.2023:[6.0] "For someone referred to as the greatest wrestler of all time, I just don't get it. Sure, he has an iconic finisher, but that's about it. Meh on the mic, meh in the ring (other than the career vs streak match)."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: IBladeDailywrote on 24.01.2023:[9.0] "As a worker and storyteller, Shawn is an easy 10. Innumerable classic matches. Some incredible feuds. As a promo, he was a 7 at best, whose best work was generally immature and broke the 4th wall. As a guy who vacated more titles than anyone else I can remember, refusing to put over people who desperately needed the rub, Shawn was a mark for himself who actively set back WWF as a whole in the mid to late 90's. D-Generation X has aged extremely badly, even if his matches during that period were excellent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: benh2wrote on 12.01.2023:[9.0] "One of the most gifted wrestlers we've ever seen. I never really cared for any of Michaels' promo or character work but bell-to-bell he was always captivating, whether it be as a babyface or heel. Quite a rare combination of flashy moves, athleticism and great selling and psychology."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CMFunk007wrote on 07.01.2023:[10.0] "Shawn Michaels is top-tier for me. I remember seeing him starting out in the AWA with Marty Jannetty as the Midnight Rockers back in the '80s. I remember believing Jannetty was the better talent, but after Jannetty tried to escape HBK by diving through the Barber Shop window, it became clear to me he didn't have the guts Shawn did after his act of cowardice. Shawn then embarked on his WWF singles career, which eventually led him to the world title. Shawn was a smaller wrestler and opened so many doors for workhorses to ascend to the top of the car. But he was more than a great worker. He was a great character, had charisma, and always tried to steal the show. His demons almost got the better of him in the late '90s, but he eventually made his way back via the nWo and started feuding with his old Dx mate, Triple H. His feud with Chris Jericho is a top-tier feud for me as well. He was finally retired by The Undertaker at Wrestlemania and has only had one bad showing since. One of the greatest of all-time for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: fruggmanwrote on 19.12.2022:[9.0] "Shawn Michaels has had such a massive influence on modern wrestling and is one of the few icons to go out on top before he lost his ability to put on amazing matches. His heel run in the late 90s paved the way for the Attitude era and his in-ring style created future megastars like Chris Jericho, Adam Cole, Seth Rollins and The Elite. Personal failings aside, HBK was a talent that comes around only once a generation."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KENTAfanwrote on 04.12.2022:[10.0] "What can I say about Shawn Michaels that hasn? t already been said? Easily one of the greatest of all time. He had it all. Stunning skill in the ring, legendary charisma and some of the greatest in ring psychology I? ve ever seen. Just a downright legend who could make just about any storyline work against any opponent. A very rare kind performer that was truly once in a lifetime. His list of achievements and classic matches speak for themselves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MainEventMasterwrote on 02.12.2022:[10.0] "One of the greatest wrestlers ever, he could have worked in any promotion in any era. His pure ability is amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KSupreme3wrote on 05.11.2022:[10.0] "HBK is one of a kind. I'm not going to talk about his early career before the injury. Let's skip to the second half of his WWE career. The way he was able to pick up the pieces and reinvent himself was insanely inspirational. Rockstar lifestyle didn't benefit him at all, but he turned it around and gave us some insanely iconic moments. Moments that are forever cemented into wrestling history. Summerslam 02. The Wrestlemania matches with Taker. The final Sweet Chin Music to Ric Flair. He provided the blueprint for a lot of next generation wrestlers that are also now very over with the crowds. Definitely one of the greatest to ever do it. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Sick Lebowskiwrote on 31.10.2022:[10.0] "Ich mag ihn absolut nicht bzw. habe es zumindest sehr lange nicht getan. Bret Hart-Fan und so. Aber er ist unbestritten einer der ganz Großen des Geschäfts. Schon bei den Rockers gehörte er zu meinen Lieblingen, auch wenn ich Marty cooler fand. Als Solo-Wrestler abseits seiner divenhaften Geschichten eigentlich durchgehend erfolgreich gewesen. Und natürlich hat Shawn dabei solche Klassiker wie die Ladder Matches gegen Razor oder die WrestleMania-Kämpfe gegen den Undertaker beschert. Die DX war ebenfalls genial, aber oftmals eine Spur zu albern für meinen Geschmack. "Unglücklicherweise" kann ich nicht anders, dem Heartbreak Kid schuldig im Sinne der Unterhaltung zu der vollen Punktzahl zu sprechen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: li0nsaultwrote on 10.10.2022:[10.0] "I believe Shawn Michaels is THE most complete professional wrestler of all time, at least in the West. His in-ring skill should never be questioned, nor his mic skills. This guy always knew he was better than everyone, maybe that's why he was unbearable as a human being, and I can't blame him. Even after his return, he knew he was too big for a championship and decided not to win any more singles titles. It's hard to talk about the greatness of HBK without ending up speechless. He's simply the greatest of all time, that's all I need to say."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: OnlyHalfTheEffinShowwrote on 26.09.2022:[9.0] "An all time great, a genuine megastar and trendsetter who set the American wrestling scene on fire and who's wrestling style and gimmicks are still being ripped off and copied to this day. Michaels reputation backstage in the 1990s as a complete douche brings him down some, but the benefit of his Ruthless Aggression era return helped wipe that slate clean."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheOneAndOnlyCactuswrote on 14.09.2022:[10.0] "You know him, you know who he is, what he's done in the ring, how great his character work was, what he's brought to the current generation. It's Shawn fucking Michaels!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: YourKingMobwrote on 07.09.2022:[6.0] "One of the best workers in the ring, with tremendous charisma, good promo skills and probably the deepest of the carny skillset back in that era. The fact that he could blade himself while being tossed out of the ring without being seen is mind blowing. However, so much of his backstage politicking poisoned wrestling for years and the fact that every single undersized indy wrestler has copied him to various extents is such a huge detriment to wrestling. Considering that only Adam Cole has pulled it off somewhat well despite the countless other failures tells you all you need to know. Even now, CM Punk is pulling a Shawn Michaels and big timing AEW to the detriment of everyone around him."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DSStyleswrote on 19.08.2022:[10.0] "Mr. Wrestlemania, The Showstopper, HeartbreakKid Shawn Michaels. Mein absoluter Lieblingswerstler aus der guten, alten Zeit. Bis zu seinem Karriereende 2010 waren sämtliche Matches von Shawn richtige Showstealer. Ich würde für diesen Wrestler am liebsten 20 Punkte vergeben, wenn ich nur könnte <3"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Benwerderwrote on 01.08.2022:[10.0] "Im Ring ein vorreiter der heutigen Generation eines Wrestlers. Damals ein star, aber man stelle sich diesen Weltklasse Wrestler mit heutigen Wrestlern vor. Es gäbe so viele herausragende Matches. 10/10 für Mr Wrestlemania und dem Showstopper"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: zachattack2023wrote on 11.07.2022:[10.0] "I think shawn is one of the best wrestler of all time he has had a lot of instant classic matches and is such a good performer and his wrestlemania matches are really good that is why he is called mr. wrestlemania"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Aliquickkwrote on 11.07.2022:[10.0] "Not sure where to begin, but this is mostly near consensus: he is the Michael Jordan of in ring wrestling, and is the greatest single wrestler I've ever seen in my life as an avid wrestling fan. This guy had 2 separate HOF worthy careers: his 80's to 90's run and his return in 2002 - 2010. He was put in every new gimmick wrestling match rollout for WWE to showcase it's potential, because he was the most skilled and trusted: the Ladder match, the Hell in a Cell match, and the Elimination Chamber match. He had the greatest WrestleMania library of work, where the most eyeballs are glued (like the Superbowl or NBA Finals), and much like Michael Jordan, remains undefeated in terms of showstopping and wrestling performances of that evening. Modern-day wrestlers model their game off Michaels, from the Young Bucks to Seth Rollins to AJ Styles, and while some of those guys are fantastic, they are not Michaels. Michaels had the most incredible selling ability you'll ever see, the ring psychology that he mastered in his 2nd run, and the athletic ability to perform any spot to enhance the match or make the other wrestler look good. He is greatly missed, forever imitated, but will never be duplicated. The GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ozzywrote on 09.07.2022:[10.0] "Shawn Michaels will in my eyes be the most skilled wrestler in history, he had a good gimmick, he could work in a tag team, stable, or as a singles star, he was willing to do the top rope moves, his few true downfall in my eyes were his substance problems and his more narsasistic nature backstage, for example the Montreal Screwjob is a clear example of what im talking about, but he has worked on that problem in more recent times so ill let it pass freely. Shawn in the Midnight Rockers was great, him and Marty could hold their own in a great way and were one of the tob draw tag teams while surrounded by the other greats of the time such as LOD, Demolition, Rock N Roll Express, and Midnight Express, and of course you have his time in D-Generation X, HHH and Shawn were great in any point with them together, with skill, comedy aspects, mic ability, and even a cool look, Chyna exentuated and filed out the missing parts of the relationship while Rick Rude didnt play as much of a role, but he was still not a bad part of it. Shawn is a multi time WWE champ, Royal Rumble Winner, and Hall of Famer for good reason"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CommisarRobewrote on 06.06.2022:[10.0] "Shawn Michaels is to me undoubtedly the greatest performer in WWE history, a master of high spots and athletic work. Michaels selling is stupendous meaning he can have a high quality match with nearly any Wrestler no matter said Wrestlers skill or experience. His consistency is only outshined by his emoting. Mr Wrestlemania, HBK whatever you want to call him he is a legend whose impact on Wrestling will last an eternity"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NeoSwas36wrote on 04.06.2022:[10.0] "Shawn really picked up after his attitude issues and outside of the ring problems. He's clearly capable of producing fantastic matches...and I really think he has an underrated promo. It's good to see that he's changed as a person too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mrmusicdogsonwrote on 03.06.2022:[10.0] "One of the greatest and most inspirational wrestlers of all time. Great all around talent and had some of the greatest matches in wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Tomas Cunhawrote on 22.04.2022:[10.0] "While I don't consider him one of my all-time favorites, there's no question that Shawn Michaels is a 10/10 wrestler. He could do it all out there against any kind of opponent, could draw sympathy as a babyface (especially in his second run), and could piss you off as a heel. Despite some attitude issues that did reflect in some pissy performances in the 90s, and while he never really set the world on fire as champion apart from his run with the WWF Title in 1996, he was a great worker who had countless classics across his "two careers"!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: WrestlingFan892wrote on 31.03.2022:[10.0] "The best wrestler in history. The idol of many young promises of Wrestling, he has always done very well and has always been very entertaining to watch. In both singles and tag team, he had mic-skills, charisma and a lot of stamina."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Pfefferminzteewrote on 29.03.2022:"Habe Shawn Michaels zuerst als kleines Kind in einem Wrestlingspiel gesehen: 'WWF Wrestlemania: The Arcade Game' und in meiner Erinnerung hatte es mindestens 20 oder mehr spielbare Wrestler im Rosterangebot. Nun es waren scheinbar nur 8. Wie trügerisch die Kindheitserinnerungen doch sein können haha. Jedenfalls wenn Shawn Michaels durchgeprügelt wurde sind Herzen aus ihm herausgefallen. Ich erinnere mich auch noch an Yokozuna, Doink, Undertaker, Lex Luger und Bret Hart. Am coolsten fand ich Shawn Michaels und Bret Hart. Ich hatte bis auf dieses Videospiel keinerlei Berührungspunkte mit Wrestling. Ich spielte es immer bei einem Freund und hätte auch alles andere gespielt, hauptsache gemeinsam was zocken. Das Spiel war durchaus gut, sehr gut sogar, doch der Funke für das Wrestling sprang noch nicht über. Irgendwann ist auch der Spaß an dem Wrestlingspiel verflogen bis 2001 war mein Leben wieder vollkommen wrestlingleer. Dann kam mein Freund wieder mit einem Wrestlingspiel an, dieses mal: 'Smackdown: Just bring it! ' aus dem Jahre 2001. Es war also noch nicht hoffnungslos mit dem Wrestling und mir, denn das Spiel machte erneut Laune. Doch wieder blieb es nur beim Wrestlingzocken. Aber der WWF-Keimling war nun gepflanzt, auch wenn es mir damals noch nicht bewusst war. Es sollten wieder einige wrestlinglose Jahre vergehen, bis ich aus spontanem Nostalgieanfall mal wieder 'Just bring it' rauskramte bei dem selben besagten Freund. Doch die Enttäuschung stellte sich schnell ein, denn die CD hat den Geist aufgegeben. Daher beschloss ich mich kurzerhand einfach ein neues Wrestlingspiel zu kaufen und zwar: 'Smackdown vs Raw 2007'. Das Spiel machte Klick. Ich war baff und begeistert wie feingeschliffen und komplex Wrestlingspiele inzwischen waren. Es hätte der Dauerbrenner werden müssen, denn es war einfach echt gut. Nur leider kam es im Freundskreis überhaupt nicht an. Zu kompliziert oder einfach zu neu und ungewohnt. Doch ich wollte mehr, mehr Wrestling. Nur wie? Genau: WrestlingSCHAUEN. Erst mal nur sporadisch auf Youtube ein paar Matches meiner Lieblingswrestler von früher wie eben Shawn Michaels, Bret Hart, Edge, Lita, Kurt Angle. Ich hatte ja keine Ahnung. Einige Jahre später begann ich dann auch die Klassiker Royale Rumbles zu schauen bis 2000-irgendwas und irgendwann hörte ich auf, denn ich war nun angefixt und wollte die Big Four. Ich begann chronologisch mit den Survivor Series, Summer Slam und Wrestlemania. Der Anfang zog sich, aber Shawn Michaels und Bret Hart enttäuschten nie. Ja und so schließt sich der Kreis, denn wäre Bret Hart und Shawn Michaels (und später Steve Austin) nicht gewesen, dann wüsste ich nicht ob ich drangeblieben wäre. Shawn Michaels hat alles was ein Wrestler braucht: Skills am Mikro, exzellentes Verkaufen der gegnerischen Aktionen, Schnelligkeit und gute Technik. Er verkörpert den Face gut, aber den Heel hervorragend. Der beste Face aller Zeiten bleibt für mich jedoch Bret Hart. Ja, ich freue mich schon auf die Attitüdenära."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Shawn was one of the most versatile and awe inspiring workers to ever do it, putting on many of my favorite matches of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: eltetechoriwrote on 05.02.2022:[10.0] "He was, is and will be one of my favorite fighters, his character at the beginning was a bit extravagant for his time and perhaps a man does not attract so much attention, but I think it was ideal to transform a HBK that for so many years was one of the best there was in the WWF / WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: rishabhwrote on 30.01.2022:[10.0] "Ignoring all his attitude problems, I think he's earned it to be called as one of the GOATs. He could carry anyone to great matches and sell his ass off if he wanted to. Although I don't like his promo work and only liked him as a performer. He's not one of my favorites but he's one of the best to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GriffinXwrote on 28.01.2022:[10.0] "My favorite WWF wrestler as a kid. Didn't matter what he was doing that was what I was invested in. Had his career truly ended in 98 he was a legend. But then you look at his second run and all he did it was amazing he had a 2nd HOF level career"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Abo96wrote on 04.01.2022:[10.0] "Unglaublich begnadeter Worker, der sowohl über eine starke Athletik, als auch über hervorragende technische Fähigkeiten und ein großartiges Selling verfügte. Glaubhaftes Babyface, aber in meinen Augen immer besser als arroganter, selbstverliebter Heel. Zwar nicht der Größte, aber dennoch auch mit sehr gutem Look für einen Main Eventer. Verantwortlich für einige der historischsten und kontroversesten Momente der Wrestlinggeschichte. Wer seine Heel-Promo in Montreal oder seine Hogan Parodie nicht kennt, sollte das unbedingt nachholen! 10 Punkte für Mr. Wrestlemania, The Heartbreak Kid Shawn Michaels."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CaptainCharisma1997wrote on 19.12.2021:[10.0] "My pick for the greatest in ring performer ever. Might be an unpopular opinion but I liked him even better post-God."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: benny5bellyswrote on 25.11.2021:[5.0] "Michaels is the David Bowie of professional wrestling, he was incredibly dull as soon as he got off the gear. Rockers Michaels was fun until he did Marty dirty, coked up HBK was ace and then he lost his smile and went away. While away he found Jesus and decided everything needed to be some sort of forced epic. The only fun thing Jesus Shawn did was oversell for Hogan."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Unrightwrote on 13.11.2021:[7.0] "I'm not going to deny that Shawn is charismatic and can put on great matches. But you just can't give a 10/10 score to someone who repeatedly refuses to do jobs or even lose championships."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: markoutssjwrote on 06.11.2021:[10.0] "One of the greatest if not the greatest in-ring performer of all time. He wasn't the prototypical WWE build but he ended up being one of the most successful and most protected wrestlers in that company in his time he was active. He had charisma and could work a crowd like the best of them. He also was a good tag team wrestler in his early days, and even in a later run with Triple H as DX. While backstage he had a bad history I think his work speaks for itself and he's one of the GOATs"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jltwrote on 21.10.2021:[10.0] "An all-time great. Shawn Michaels has always been an amazing performer, not necessarily outside of the ring, but inside the ring he would always try to put on the best match possible and there may have been a couple of downhill points in his career but he always came back. I personally really enjoyed his second run more and even his last few matches were greats that people will remember. (We're going to pretend he never returned for Saudi)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: naturalbornfarmerwrote on 12.10.2021:[10.0] "I don't know what I can say about Shawn that hasn't been said already. He's might be the greatest wrestler ever. Sure his moveset isn't as flashy as more current day wrestlers, but if it weren't for him and Jeff Hardy, I don't think the current American wrestling scene is the way it is now. He was the epitome of the cocky heel champ, and while his return run during the 2000's was amazing, his work in the 90's was some of the best character work I've ever seen from a wrestler. I don't think I have ever seen a wrester be so beloved and be so hated by the crowd, he literally always had them in the palm of his hands. In 97, he's was essentially the perfect wrestler. Charismatic, Great Promo, Amazing worker, good-looking and in great shape. There was literally nothing that could stop this guy apart from himself unfortunately. His run in the 2000's is probably what makes him such a legend to most fans. To be able to come back to wrestling after a bad back injury and four years of not taking bump, and steal the show in your first match back ins unprecedented. His feuds with Chris Jericho and The Undertaker were two of the best wrestling as a whole has ever seen. If there was a legitimate wrestling Mt. Rushmore, he'd definitely be up there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: FACEElmo295wrote on 08.10.2021:[10.0] "The greatest in-ring performer of all time. Shawn was always entertaining in the ring, and people cared for whatever he was doing. After The Rockers split HBK would go on to have two stellar runs in the WWE, the first being his 1992 - 1998 run, this was peak Shawn and he could outperform anybody on the roster. That being said I like his 2002 - 2010 run so much better, his skills may have had a bit of a decline but he was very reliable in the ring and had cleaned himself up thanks to becoming a born-again Christian in 2002. And made his WrestleMania matches must see. Seriously his WrestleMania run from 19 to 26 is pure perfection with all of those matches being 4 stars and above for me. Shawn is great on the microphone and he could make you hate, or love him with ease. The Showstopper, The Icon, The Main Event, Mr. WrestleMania. HBK lives up to all of those nicknames."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Jaedynr5wrote on 30.09.2021:[10.0] "this man is an absolute legend of the industry no matter what era of his career you look at, from his run as member of The Midnight Rockers in the AWA, to just being a member of The Rockers in the WWE, to hid amazing first from from 92 to 98, for his retirement and still being able to provide for the business, to his workhorse run in the 2000s, Shawn Michaels has too many classics to mention, too many great promos to name them all, and i can't think of one bad thing to say about him"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Zerowrote on 25.09.2021:[5.0] "One of the most wildly up and down careers I could ever imagine in wrestling, from being one of the greatest tag team wrestlers in the world, to having some of the best and most memorable matches on the biggest stages to even getting a good match out of Sid of all people, to being one of the most irritating and at times just weird promos in all of wrestling before his first retirement. Upon his return I found him to being very good on paper and a welcome return to quickly become an unbelievably insufferable presence on tv for the last 6 years of his career both as a promo and a worker in his various incarnations. Now he was feuding with Triple H and/or Vince for like 70% of that to be fair but it still doesn't completely excuse all the bad. The remnants of someone great are there and it came out for a few great great matches but even then it can't excuse the vast majority of his work that just sucked. On top of it his contributions and influence have to be considered among the worst in all of wrestling, to the point it ruined what once were some highly popular wrestlers in NXT. With someone who you could point to being a 10 or a 0 on any given night in any given role, a 5 seems more than fair."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Jorhorgewrote on 19.09.2021:[10.0] "Shawn is like an Angel Garza from the 90s and 2000s. A very complete wrestler has it all, charisma, Rin permofance, Caliber and above all good movements and a great punch. A leyend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: nwachampionwrote on 18.09.2021:[10.0] "Was he the best at each and every aspect of pro-wrestling? Definitely not. He is probably not even Top 40 technical wrestlers of all time, maybe not even Top 20 among North-American technicians. Not the best aerial/cruiserweight wrestler either. We've had several wrestlers who were far better brawlers, and a handful who were better at promos than he ever was. Why, then, do I consider him to be the greatest North-American pro-wrestler of all time? It's because he could tell a story and put on a good show with damn near everyone in the ring, and people tend to forget that wrestling is, after all, a performance art, and few could surpass Shawn as a pro-wrestler who was a performance artist. When I first got into pro-wrestling (like many kids who turned out to be pro-wrestling fans, I was introduced to the WWF promotion) when I was 7 years old, I looked at it as sports/fights that were scripted, albeit entertaining. It wasn't until I viewed Shawn-Razor at WM-10 that I realized that pro-wrestling can be more; it can be performance art-- beautiful, mesmerizing, and a spectacle. Shawn had a charisma that immediately enamored me. In retrospect, I can fully understand why Shawn has had the same effect on some of my current favorite wrestlers, from Bryan Danielson, who in a recent interview opined that Shawn was the greatest NA wrestler of all time, to Kazuchika Okada, who took stylistic influence from the Jericho-Michaels WM-19 match, to Hiroshi Tanahashi, who considers Shawn as his lifelong inspiration."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Harem20wrote on 10.09.2021:[7.0] "He? s a good wrestler and incredible performer but never liked his first run push because of his attitude backstage politics. However, his second run I enjoyed."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Josh Drakewrote on 23.08.2021:[2.0] "While undoubtedly Shawn is a very skilled worker, this does not usurp the fact that he is one of the most unprofessional, childish, and generally unideal workers in the history of the business. This comments towards Jean Pierre Lafitte, telling him that he 'should starve to death for two years' and embarrassing the WWF by getting into an unnecessary scrap with a group of marines at a bar should demonstrate just how much of a detriment he is to the reputation of any wrestling company. He hasn't really changed since his turn to Christianity either according to his former fan Shane Helms."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kerplinwrote on 10.08.2021:[10.0] "Probably the greatest in ring performer of all time. And the contribution to the business can't be ignored. When it comes to the newest generation of wrestlers, there are typically 2 people always brought up as inspirations behind them being fans, and pursuing the career, Shawn Michaels and Bret Hart. That has to mean something at this point."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Utopia95wrote on 07.08.2021:[10.0] "Shawn Michaels ist einer der besten Wrestler den es je gab, hat viele Legendere Matches abgeliefert. Vor allem das Match gegen Ric Flair bei WrestleMania 24 das für mich zu den Emotionalsten Matches gehörte die ich je gesehen habe. Das Match gehen den Undertaker bei WrestleMania 26 war überragend, und hat mir mit seinen Ausgang das Herz gebrochen großen Respekt an Shawn Michaels für diese großartige Zeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LMC2wrote on 15.07.2021:[10.0] "The Best in ring worker to ever hit WWE. I can? t think of a single bad HBK match (we? ll pretend the one at Crown Jewel never happened) Amazing heel work. His 2002-2010 run was just amazing. Not one bad mania match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BrayanLaPrewrote on 12.07.2021:[10.0] "In terms of in-ring contributions to professional wrestling, there are few who even begin to compare to "The Heartbreak Kid" Shawn Michaels. During the 1980s and 1990s, Michaels was raising the bar for athletic feats between the ropes. Between his selling, storytelling, and daredevil tactics, Michaels set a new standard that generations have attempted to reach. In the 2000s, Michaels was older, slower, and more limited by his back injury. Instead of trying to overcompensate and prove he could do the things that the X-Division was proving were possible, he became an even greater storyteller. Perhaps the best we've ever seen. Countless classics against the likes of The Undertaker (x3), Kurt Angle, Mankind, Ric Flair, Bret Hart, Razor Ramon, Chris Jericho, Triple H, John Cena... And the list goes on. A five-star wrestler, 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: faithOfWrestlingwrote on 08.07.2021:[10.0] "One of the total packaged GOATS in my opinion, if not Thee. Every single Shawn Michaels match I have ever watched Ive been super entertained, Shawn can really do anything and Charisma just flows from his *just a sexy boy* entrance and entrance music, also one half member of my favorite tag team of all time The Rockers. My 2nd favorite wrestler of all time, people give Shawn Michaels shit for him allegedly being an asshole during the 90s and a drug addict but honestly do you think theres any WWE wrestler who wasnt an an asshole and on drugs back then? Probably not. People also like to give him shit for being arrogant when somebody like Bret Hart was exactly the same way and probably many other wrestlers had big egos. Why not give them shit for it too? As far as I know I have not heard anything about Shawn abusing anyone outside the ring or anything really serious like wrestlers such as Dynamite Kid and Chris Benoit, that is a whole other level of shit people like to act like Shawn was. The show stopper deserves nothing but a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: greatmonkeywrote on 08.07.2021:[10.0] "In a far more internationally aware wrestling era of 2021 guys like Omega, Tanahashi, Styles, Ospreay, Daniels etc all have each other to compete with and to keep pushing the limits of what it means to be great in the ring. Michaels had no one except Hart within a WWF constricted North American setting and still managed to reach heights that few can even touch today. There is absolutely no reason why the matches he had in the 90s had to be as good as they turned out to be. Imagine where a talent such as prime Michaels would reach when given top level workers to compete with. After Flair, the single most influential Western wrestler to geneartions after his own day. His problematic personality in the 90s and the WWE's constant marketing of him as their GOAT are the only things going against him. But not enough to not warrant a perfect 10 score."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PrezVegetawrote on 30.06.2021:[8.0] "In the argument for the overall best ever. Had technical prowess, high flying abilities, his microphone skills were A+. The only reason why he doesn't get a full 10 rating is because his mental weaknesses which include throwing multiple temper tantrums in the middle of the ring when he didn't get his way and drug issues became a huge detriment to his career."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: juiceisloosewrote on 15.06.2021:[9.0] "One of the all time greatest. The only thing that bothered me was his stupid dx gimmick where he acted like a straight up dumbass. No bad comments about his in- ring performance, charisma and promos tho."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kungwrote on 30.05.2021:[10.0] "Up there with Kurt Angle and Bret Hart as the best all-around talent WWE has ever seen. He could talk, he could wrestle, and he could deliver on the biggest stage better than basically anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LilLandowrote on 25.05.2021:[10.0] "Not the best professional wrestler to ever step in the ring, but in WWE he certainly is. Charisma, hustle, movement, agility, Michaels is a GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rodycaz IIwrote on 18.05.2021:[10.0] "The greatest in-ring performer in the history of pro wrestling. Very charismatic and a great promo as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Uweuwesenwrote on 03.05.2021:[10.0] "Shawn Michaels ist über zig Jahre hinweg einer der besten Worker der WWE und mit verantwortlich für eine Vielzahl der besten Matches aller Zeiten! Am Mikrofon über jeden Zweifel erhaben, aber auch im Ring im Stande mehr Dramatik rüber zu bringen als wohl jeder andere Wrestler der Geschichte! Für meinen Geschmack war das vielleicht sogar etwas zu viel Drama, aber das soll hier die Bewertung nicht schmälern"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Razzydawrote on 20.04.2021:[10.0] "One of the greatest wrestlers of all time. He is the one who helped wwe to exist in early 90s because he carried the company in period of WWF vs WCW . His wrestling abilitties , his personna , his gimmick , his promos were the best that could be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: preppyrichellewrote on 15.04.2021:[10.0] "Many people have a problem with separating Shawn the person and Shawn the performer. You dont have to like the guy personally, but as a wrestler he is one of if not the greatest wrestlers of all time, period. If you ask many of the new and upcoming wrestlers today who their inspiration to even start wrestling was, most of them will say Shawn. His rivalry with Bret Hart is top 5 of all time and his WrestleMania 25 match with The Undertaker is widely regarded as the greatest match ever. He has won more match of the year awards than any wrestler ever, including match of the decade and other huge awards like feud of the decade and most inspirational wrestler of the decade. He is the co-founder of one of the greatest factions of all time, Degenration-X and one the greatest tag teams of all time, The Rockers. He is a two time hall of famer and on the top 5 greatest wrestlers list of not only many fans but his peers. While he was never the biggest draw, you could argue that he did help carry the WWF on his back in 96 when the ratings were going down the drain. I truly believe without him, Taker and Bret Hart, WCW would have beaten them a long time ago."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MrJabroniCamelClutchwrote on 12.04.2021:[10.0] "Arguably the greatest athlete in WWF/E history , though his gimmick was pretty homoerotic to some extent and his unprofessional behavior backstage was a big problem , not to mention being involved with the burial of many gifted wrestlers in the business with the cliq with his backstage politics and colluding with Vince in screwing Bret in the infamous Montreal screw job , it can never be denied he shined where it counted , importantly in the ring which is ultimately what matters the most."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Shawn michaels fanwrote on 03.04.2021:[10.0] "The greatest wrestler in wwe history. for shawn we can't say more words. He is best. the hart of wrestling HBK Shawn michaels"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KingGucciBasswrote on 29.03.2021:[3.0] "Seine Zeit in der DX war wunderbar. DX ist für mich das beste Stable der Wrestling Geschichte. Zweifellos einer der besten aller Zeiten aber einfach zu viel Politik für meinen Geschmack. Ich schaue bis heute seine Matches sehr gerne. Wäre seine Verletzung 1998 nicht dazwischengekommen hätte ich mir vorstellen können dass er der Hogan der WWF geworden wäre und für den Kollaps der Promotion gesorgt hätte."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Jaden 101 Kenwrote on 25.03.2021:[10.0] "10 out of 10 for me, my favorite wrestler of all time The GOAT aka HBK, if it was not for him I would not be watching what we call professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: AndoCommandowrote on 18.03.2021:[10.0] "He's really great. Deserves a lot of the praise he gets for both runs, We don't talk about post-2010 Shawn though."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JBoogieRom28wrote on 12.03.2021:[10.0] "I'm going to break down his WWF/WWE career for you here. (1988-1992) The Rockers were one of the most loved tag teams in history. They were just likable because they didn't have many tag teams back then. They also had a lot of energy and a cool theme song. This version of the soon-to-be HBK was probably a 6/10(1992-1995) This era of The Showstopper was probably the 3rd best version. Shawn Michaels. After he turned on Jannetty, he broke the hearts of many of The Rockers fans. This is why he was dubbed, "The Heart-Break Kid". He was a little, egotistical, annoying, and careless guy you loved to hate. He put on an instant Classic with Razor Ramon for the Intercontinental Championship but it was, unfortunately, a losing effort for him. About a month later, he won the Royal Rumble and faced his former bodyguard Diesel at Wrestlemania 1995. He lost to Diesel and took time off. This version of Michaels is a solid 8/10. (1996-1998) This was HBK's best part of his career. He had great matches with a lot of different people. He quit the WWF for a short time but ultimately came back to officiate the match of The Undertaker vs. Bret Hart. He accidentally hit Taker with a steel chair and crowned Bret Hart the champion. During this time, Bret Hart and HBK had a bitter rivalry. HBK then had to face Taker in the first-ever Hell in a Cell Match. The match was rated 5 stars by Dave Meltzer by the way. At Survivor Series 1997, HBK took on Bret Hart. We all know the result of this match as it is one of the most iconic parts of wrestling history. "The Montreal Screwjob. " Vince McMahon made sure HBK won and he screwed Bret Hart. This version of Michaels is definitely a 10/10. One of the best in history. (1998-2002) This was the era when D-X began. Shawn Michaels got injured in a casket match against The Undertaker at the 1998 Royal Rumble. He made sporadic appearances throughout here and was even a special guest referee in a Rock vs. HHH match at the year 2000 Judgement Day. This was his first retirement and I don't count it as an actual wrestling part of the story but it was still apart of his career. so it's a 6/10 for me. (2002-2004) This was Michaels' return to WWF and it was great. He returned to have one of the greatest feuds of all-time with HHH. HBK then went on to have another amazing rivalry with Y2J. He ended this era with a series of matches featuring him and HHH. I will give this version of HBK a 7/10. (2005-2007) One of the best versions of HBK. He and HHH reformed D-X and had a great feud with Legacy. He also had a Legendary feud with Hulk Hogan. D-X then had good matches with The Spirit Squad, The McMahon's, and Rated-RKO. This version is a 7/10. (2007-2010) This would be the last run Michaels had in WWE. Michaels would retire Ric Flair during this run in an emotional match. He had at least 1 match with every star during that time. He, unfortunately, retired after failing to defeat Undertaker. Entire career was a 10/10. I reached th"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Elusive12wrote on 09.02.2021:[10.0] "My favorite. He was a fantastic character and wrestler. He has multiple classic matches, most notably in WM which he was appropriately nicknamed Mr. Wrestlemania, and made countless moments. In short, he was my GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Brett1980wrote on 25.01.2021:[10.0] "For me the best to ever step foot in a WWE ring. Great all rounder and responsible for some of the greatest matches in WWE history. 1998 retirement was premature and left you wanting more and when he came back in 2002 he did not disappoint. Very rarely had a bad match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: sanjurowrote on 24.01.2021:[8.0] "Indisputably a great big match wrestler, possibly the best heel promo in WWF/E history, and one of the most influential workers of all time. He was also a primadonna who left more money on the table than maybe any other worker, messing up potentially lucrative programs with Bret Hart, Vader, Hogan (not entirely his fault) and more while devaluing belts with his constant fake injuries and hobbling numerous careers over backstage politics. It's a shame that his selling style influenced so many because he used bumps solely to call attention to himself rather than put over his opponents. But still, you can't deny his charisma or how many great matches he had, from his innovative work in the Rockers all the way to those definitive Mania matches. Hell, he even managed to drag Triple H's plodding ass to numerous classics."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Residentwrote on 22.11.2020:[10.0] "He is known as Mr. WrestleMania. "The Heartbreak Kid" Shawn Michaels is one of the best wrestlers of all-time. He had the best match at WrestleMania many years in a row. Back in the 90s, at first Ididn't care for him even though I knew he was really good. Had the classic ladder match at WrestleMania against Razor Ramon and later would go on to form DX with HHH and become a mutil time WWE Champion. But I was actually more impressed when he returned in 2002. He was better than ever in the ring and even bled more than other guys did at the time in WWE. He won the Elimination Chamber and went on to win the World Title. Later he would have more classic WrestleMania matches including 2 with the Undertaker, the second of which was supposed to be his last match and I wish he wouldn't have come back for the horrible Saudia Arabia tag team Match. But Shawn is still remember today, his mannerisms and "Sweet Chin Music" Superkick is used all the time. He is listed by many as the greatest of all-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: medousewrote on 03.11.2020:[10.0] "HBK made a huge impact on professional wrestling. He was one of the first "high-flyers" on TV. He put WWF on completely different level when it comes to wrestling skills. Great gimmick, cool looks, signature moves, the inventor of Superkick, part of D Generation-X, and he was the one who sent Ric Flair on retirement."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: eleddie2914wrote on 28.10.2020:[10.0] "Shawn Micheals is so damn talented he is great. Shawn became a legend so early in his career after his first retirement he was considered a legend . When he came won his last world title and with 8 more years wrestling he remained relevant and had great matches . Shawn is one of the greatest if not the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: znezaaljwrote on 25.10.2020:[7.0] "Ok, maybe it is just that has never connected with Shawn, but I never liked his in-ring style. Not saying that he was bad, but in my opinion it is not fair to have him in the GOAT conversation. He had great promos, but his backstage behaviour drags my rating a little bit back further."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ilovewrestling1995wrote on 23.10.2020:[10.0] "One of the best wrestlers of the world and maybe the best ever. Great moveset , he was a master in ring psychology and his matches were always exciting to watch . Too bad he never was in new japan pro wrestling , he would be way more interesting to watch him over there ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dennisiztheman02wrote on 24.09.2020:[9.0] "Shawn Michaels is a legend! He has had great matches with Bret Hart, Undertaker, HHH, John Cena, and others. His in ring skills are fantastic and has amazing charisma. However there are a few problems with Shawn one of them being his ego. Hearing stories about how he screwed great talent like PCO, Shane Douglas, etc. is very hard and him not wanting to drop the world title was ridiculous especially with the Lost Smile promo. His drug addiction nearly killed his career and his life. I will give him credit for wanting to become a better person and he's doing a good job even if some people don't believe him. Shawn Michaels is an amazing wrestler but, has huge flaws backstage and has improved on them."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Gathawkwrote on 16.09.2020:[10.0] "Absolute legend and one of the reasons I became a wrestling fan. Awesome in both face and heel roles, part of some of the best matches in the wrestling history to this very day. The only downside is that he should've stayed retired after 2010 but well, he's a WWE guy + money talks."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jansen ferriswrote on 02.09.2020:[10.0] "Some people here try So Hard To give shawn michaels a low rating, But One Thing They Have To Admit, He Was A Natural Born Talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LockeJVwrote on 18.08.2020:[6.0] "If you're going to rate someone a 9 or 10 the expectation should be the wrestler carried a promotion, sold tickets, got ratings, and was a groundbreaking talent that consistently put on great matches. Shawn Michaels certainly impacted the business with his flamboyance and technical ability, however he never came remotely close to carrying a promotion or selling tickets or getting people to tune in. If you analyze his HW title reigns, he really only had one ('96) and it was awful. Michaels, Bret Hart and the Undertaker (who many for some reason refer to as the 3 GOATS) were all in WWE at the same time - in the prime of their careers - and the promotion went to hell and was crushed by WCW because none of them could sell tickets or draw ratings. It took Austin, the Rock and Mick Foley to bring WWE back to prominence. I'd give Shawn an 8 for his tag run with Jannetty and his ICC run, but his HW title reign and his bad attitude and unwillingness to work with talent like Vader hurt the product and lost viewers. Shawn had all the talent in the world but he squandered it in his prime during his title run, at the expense of WWE. Sure, after he became a part timer, he was allowed to have "great" matches with lots of false finishes at Mania with other part timers like Flair and Undertaker, but the bottom line is Michaels' squandered his opportunity to carry a promotion and his legacy is the personification of overrated. A generous 6/10 for being an incredibly selfish performer and burying talent when he didn't even come remotely close to generating enough revenue to justify his awful behavior."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Donniewrote on 04.08.2020:[8.0] "92-97 drug addicted cunt Shawn is the best guy. Born again is a super hit and miss asshole, that had 10 killer matches that overshadowed some awful stuff."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Okaro143wrote on 30.07.2020:[10.0] "One of the best in ring performers to ever step in the WWE ring. He had an easy charisma, great looks, was able to tell amazing stories both in ring and in promos, an amazing finisher , etc. Personally a lot of fans hate him due to his behaviour but as a wrestler, he was that damn good. In my opinion, there are only a few performers that were as good as him in WWE history. Daniel Bryan, Aj Styles, Bret Hart, CM Punk. , etc."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jchiofalwrote on 30.07.2020:[5.0] "Was he one of the best American wrestlers of all time? Absolutely. His matches are still fantastic. The mediocre rating is reflective more about him as a person. He ruined the likes of Bam B Bigelow, Vader, Dean Douglas, and the future PCO. Shawn Michael's legit kicked Vader in the face after an accident in-ring, and had a temper tantrum. HBL is a legend and among the best, but is an absolute b****, and aside from Bret Hart, he hasn't done much to get the forgiveness of those whose career he destroyed because he's a man child."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Divus Rolexuswrote on 16.07.2020:[10.0] "The best performer of all-time for sure. I don't like him in the 90's (because of his backstage behavior) but I love this guy in the 00's."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Nightmare19wrote on 05.07.2020:[10.0] "the best to ever do it. his wrestling is flawless and he? s great at every aspect of pro wrestling. he? s been at the top during multiple eras too and shown he can adapt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Viniciouswrote on 26.06.2020:[10.0] "NOT the best wrestler of all-time, but I think he slides in third behind Bret Hart and Ric Flair. The nonstop narrative calling him the greatest is annoying but it shouldn't work against him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Khalid Mwrote on 08.06.2020:[7.0] "He was a great in ring worker but the greatest performer of all time? Come on! Extremely OVERRATED & apart from DX his promos were never good. To be fair he was part of one of my favorite feuds "his one with Jericho" but Jericho deserves more credit for that one from me."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Slickooo7wrote on 26.05.2020:[6.0] "I thought Shawn Michaels was at his best after his back linjury. I thought his character was better before his back injury. Never a top guy like Austin or Hogan but great in the ring and good promo when being a heel."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JuWFEAEwrote on 14.05.2020:[10.0] "Es gibt nur wenige Wrestler, die so viele 5 Sterne Matches abliefern wie HBK. Seine Promos sind noch immer gut. Er ist Defenitiv einer meiner Lieblingswrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: VillainClubwrote on 12.05.2020:[8.0] "Ein guter Wrestler mit guten Promos. Aber im Grunde hat er den Grundstein für die Heute viel zu viele über dramatischen Matches gelegt. Zudem hat er durch sein Ego vielen das leben zur Hölle gemacht, besonders in seiner ersten Karriere hälfte. Zudem wirkt sein selling oftmals übertrieben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Wrestling Foreverwrote on 03.05.2020:[10.0] "Er ist heute für viele die ihm mit langen Haaren über zig Jahre kennen nicht mehr wieder zuerkennen da er echt eine Glatze hat. Ich muss zu ihm nichts mehr erwähnen. Es ist eine absolute Wrestling Legende. Niemals wird es wieder einen wie ihm im Ring geben, HBK kann man nicht kopieren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Einer besten Wrestler aller Zeiten und auch leicht Top 10 einer der Besten Wrestler aller Zeiten. Einer der besten Wrestler vom in Ring können her der mit jedem Wrestler ein Top Match auf die Beine stellen kann und mit guten Wrestlern auch immer für absolute Klassiker zu haben, am Mic auch sehr gut und mega viel Charisma und ein perfektes Gimmick für seinen Look sowie sein Charisma. Alles in allem eine absolute Legende die sich die vollen 10 Punkte auch absolut verdient hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TNBG2381wrote on 03.04.2020:[10.0] "Shawn Michaels is the greatest American professional wrestler of all-time. What I mean by that is his in-ring ability. He wasn? t the biggest draw, he wasn? t the biggest attraction, and he wasn? t the biggest wrestler, but his in-ring work sure put him at the top of overall match quality. He made the super kick iconic and because of him tons of wrestlers still use that move today. Shawn Michaels will always be known as a pioneer and the perennial athlete in the wrestling business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: AAA3000wrote on 07.03.2020:[10.0] "Er bringt immer seine Leistung. Hat Technik. Hat Präsenz. Kann Mikro. Ja, da gibts wirklich nichts zu mosern. Zehn verdiente Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheMan89wrote on 25.02.2020:[10.0] "Shawn Michaels is hands down the greatest professional wrestler of all time. He put on wrestling match clinics for decades with the likes of Bret Hart, Stone Cold Steve Austin, Mick Foley, The Undertaker, Triple H, and Chris Jericho to name a few wrestlers. He was part of the greatest factions of all time in DX and the NWO and played a huge role in both of those factions during their existences. His retirement match against The Undertaker at WM 26 and even his match at WM 25 with Taker were some of his greatest matches. Even though he looked a little slower in his return match at Saudi teaming with Triple H against Taker and Kane, he still put on the best show he could given how long he has been out of the ring. His role as a coach and producer for NXT is awesome for the business since he has a lot of knowledge and can give advice to all of the talent that work there today. Great talent no doubt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: magiclikemikewrote on 02.01.2020:[10.0] "He is that damn good. A very strong contender for the greatest there ever was, and maybe even the greatest there ever will be--shoutout Bret Hart. Full send 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Wrestlefan20wrote on 22.11.2019:[9.0] "One of the greatest allrounders in wrestling. He had the mic skills, look, in-ring skills and charisma of a main eventer. Unfortunately, he got himself into a lot of trouble due to his behavior, which caused a lot of fans to dislike him at certain points in his career."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Cameron621129wrote on 20.08.2019:[9.0] "One of the best wrestler of all time. Incredible in ring. Superb on mic. Really funny. Enjoyable to watch. Sounds like he is annoying in real life, but he's a once in a generation talent"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[10.0] "Several best matches of all time. Emotional storyteller. Pioneer in the ring. I almost feel like the less said on HBK, the better. Simply astonishing in every sense of the word."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheV2wrote on 19.07.2019:[9.0] "Mr. Wrestlemania Shawn Michaels - one of the greatest in-ring storytellers in the business, if not the best. In the ring he was ahead of his time. He may be not everyone's favorite co-worker. But his personality didn't stop him to give amazing matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: zephyrwrote on 20.03.2019:[8.0] "Smooth in-ring worker with good charisma. One of the more overrated wrestlers but not bad by any means."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Tomaswrote on 07.03.2019:[10.0] "Excellent performer. In my personal opinion, he was better as a babyface could make an average heel look like a million bucks by selling and running on adrenaline in his unique way. Fantastic in the ring, fantastic storyteller, could cut a serious promo and could do comedy as well. Year after year had classic matches with numerous wrestlers and really is one of the best pro wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kevin41182wrote on 18.02.2019:[9.0] "Though he was extremely arrogant and unprofessional in his first run in the WWF, Michaels was and still is a great in-ring worker. I do think that he is a tad bit overrated and personally, I believe Brett was better but nonetheless, he was still one of the GOATs."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LandonRyanWyattwrote on 27.01.2019:[10.0] "By far, the standard by which every in-ring performer should be judged. The greatest performer of all time, head and shoulders above everybody else."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ShireFunPosterwrote on 22.12.2018:[8.0] "Michaels was undoubtedly a great wrestler, but I often found his in-ring style as well as his promos to be overly melodramatic. His run on top was a tough time for the WWF, but he was a part of a few classic programs (inclduing the Jericho fued in 08 which is an all-time great) and I'd have to imagine that an 8/10 rating is about as low as you can go for him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Stott Onewrote on 30.11.2018:[10.0] "There isn't much I can say about HBK that hasn't been said. He's a legend in WWE. He's a lot of people's favorite wrestler of all time. He's a great wrestler, a great entertainer, a great draw. He can pull a good match out of anybody. One of the greatest of all time, hands down."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Steamboat2511wrote on 28.11.2018:[10.0] "HBK ist auch für mich als Gesamtpaket der beste Wrestler überhaupt. Technisch ist er wirklich immer auf einem hohen Grundniveau. Hinzu kommt: Er hat Charisma (am Anfang der Karriere beinahe zu viel), er hat echte Ringpräsenz, er ist die Nummer 1 in Sachen In-Ring-Entertainment, Ringpsychologie und Matchführung. Im Laufe seiner Karriere haben sich unendlich viele Klassiker angesammelt, die ich alle immer wieder gerne ansehe. Gimmicks konnte er auch in alle Richtungen gut verkaufen (gehasster Heel, arroganter Sunnyboy, geliebter Face, Komödiant bei DX, respektierte Legende) und sein Mic-Work war in der Regel auch von feinster Qualität ("Woh's your Daddy Montreal"). HBK ist also glatte 10 Punkte wert und meine Nummer 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: aREALwrestlingfanwrote on 27.11.2018:[9.0] "If you gave HBK less than a 8 (like some people did on here), then clearly are blind, or just a dummy. HBK, despite all the backstage goings on, is one of the greatest of all time. Fly, wrestle, fight, talk.. whatever it was, HBK could do it. He was just amazing to watch, and entertaining to listen to. Should he have retired and stay gone a long time ago, and not dragged DX back over and over again? Sure. It should've stayed gone, and in the end it hurt the product. Kinda like another epic but way overused Kliq run group, the nWo. But there is no doubt the amount of amazing matches and moments HBK has put on makes him definitely a wrestling Legend, and someone who deserves AT LEAST a 8 rating on here. Some of you raters are bitter and clueless."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: hello101wrote on 09.11.2018:[10.0] "The greatest North-American wrestler of all time IMO. An all-rounder in every way, he has shown time and time again that he excels at not only utilizing the squared circle to the fullest to elicit sheer passion and emotion in his viewers, but also at bringing out the best of his wrestling opponents/rivals, no matter how average they may seem in the ring otherwise. I think that's what made HBK truly great, adapting to the strengths and weaknesses of his fellow wrestlers with whom he shared the ring. I'll go so far as to claim that even his "coming-of-retirement" match, though not a decent wrestling exhibit by any chance, will still go down in wrestling lore as the only highlight of an event which was a fiasco for the most part. The HBK of 2018 still showed signs of the unparalleled wrestling showman and match-carrier he once was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JEK 1991wrote on 26.10.2018:[10.0] "One of best wrestlers and entertainers ever in wrestling. I always loved this guy. I know he had his flawless but still he is great. I love his entrance theme and the best entrance in WWE history. he was an iconic for the New Generation era and early days of the Attitude era. The back injury made him miss a few years in wrestling but came back. The main event matches he had were incredible. He is now retired and still entertaining fans. This man quit his alcohol problems and became a born again Christian. The Heartbreak Kid. Sexy Boy!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RatingsMachinewrote on 12.10.2018:[8.0] "Shawn Michaels was a great performer who could have some exciting matches, but his style was more flash over substance, and he had plenty of flaws that get overlooked, not all of which are from his notoriously bad behaviour."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GianGwrote on 26.09.2018:[8.0] "One of the best. Unfortunately, not THE best in everyone's book. I idolized the guy as a kid, thought he was a well-rounded athlete with the arrogance and charisma to carry himself throughout matches and boy, did he deliver some great confrontations over the years. However, as I got to know him more, I gained exposure on his overall influence in backstage politics during the 90s. Three things I'll never forgive (not that it should matter) the guy for is his unwillingness to drop the title to Bret, therefore vacating it by "losing his smile, " his way TOO public relationship with Sunny and that one interview, and his mid-match Vader bullying over a miscommunication in the ring, threatening his job position and stating he'd have him fired for not proceeding along accordingly, to which Leon cried over once he went to the back. I know the Shawn Michaels of today is a totally different proposition, but old habits die hard."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Makai Clubwrote on 29.08.2018:[8.0] "Great wrestler - at times but I feel there is a disconnect between me and him. The way other people say he is the GOAT or the best ever, perfect wrestler etc I'm always stunned at why they said that. I can just see HBK as this legend of the entire business. His reputation definitely supersedes him. But saying that, he is still very good. Excellent in the role of being thrown around like a rag doll whether it's as a chicken shit heel or a fighting babyface. Perhaps a bit one note - but still great enough to let that slide. His mic skills are eh. Very competent on the mic but no promo of his has every given me a lasting impact, to be perfectly honest. And let's not mention the shitty DX promos that were considered "cool" lol. A top wrestler but is just missing a lot of things to make him an all timer in my opinion."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mtavarez727wrote on 29.08.2018:[10.0] "HBK was a one of a kind talent. He was good on the mic, could get over as a babyface or get heat as a heel, was super charismatic, controversial, and most importantly he was the greatest in-ring performer ever. HBK could work any style and could make any wrestler look good. HBK has the best resume in terms of match quality in WWE history. HBK is the greatest of all time in my opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Gary Johnsonwrote on 18.08.2018:[8.0] "Michaels hatte mir bei den Rockers schon gefallen, ich dachte damals aber nicht dass er es als Solowrestler so weit bringen würde. Sein Werdegang ist völlig nachvollziehbar er wurde nicht unnötig gepusht. Sein Können ist über jeden Zweifel erhaben auch wenn er manchmal gegnerische Moves zu sehr "sellt". Aus menschlicher Sicht war laut vieler seiner Kollegen jedenfalls eine Enttäuschung. In der DX Zeit fand ich ihn witzig. Jede Aussage und Geste saß einfach. Leider muss ich ihm 2 Punkte für sein Backstage Benehmen abziehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PuntCunisherwrote on 09.08.2018:[6.0] "Good wrestler, but nothing else about him works for me at all. I find almost every single one of his highly touted matches over rated and I found his promos and character in general to be quite boring. Combined with how big of a piece of trash he was for so long, I'm giving him this rating."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DaWizWithADwrote on 08.07.2018:[10.0] "One of the greatest all round performers in the history of Wrestling, able to go talk, and, think. His ego overshadows his in-ring talent in a lot of conversations about him but he's pretty much perfect if he's judged purely off in-ring merit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RPMX123wrote on 29.06.2018:[10.0] "Masterful storyteller, masterful moveset, masterful talker, charismatic as hell, one of the best wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Solidsnake888wrote on 08.06.2018:[10.0] "Shawn Michaels ist ein Weltklasse Mann. Stark im Ring mit tollen Moves und tonnen an Charisma. Was mir an HBK gefällt, ist die tatsache, dass er andere Wrestler stark aussehen lässt ohne das er schwach aussieht(Survivor Series 2003). Er ist verdient in der Hall of Fame und kriegt 10 verdiente Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: rjsbx11wrote on 11.02.2018:[10.0] "Shawn Michaels might be what professional wrestling is all about. Drama. Personal Troubles. Ego. But also. Storytelling. Psychology. Natural Talent. HBK is one of the greatest performers to ever lace up a pair of boots. He used to be a mess outside of those ropes but when he got in there, there was very very few better than him. His second run in the WWE is one of the best runs anyone has ever had in a wrestling promotion (those Wrestlemania matches, the moments, the heel promo in Canada). He rarely got it wrong. He may be notched off for his pill-popping, hell-raising for some but when the lights were on, few could outshine the Heartbreak Kid,"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Oliver95xwrote on 07.02.2018:[10.0] "Shawn Michaels hatte viele spektakuläre und epische Matches und ist einer der besten die es jemals geben wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CHN325wrote on 31.01.2018:[9.0] "One of the best ever inside the ring when it comes to getting you invested in a story, but his attitude and backstage politicking in his career are hard to ignore. Admittedly he redeemed himself later in his career during his final run."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ianlapierrewrote on 04.11.2017:[10.0] "He is arguably one of the all time greatest. He was a fantastic wrestler. He could draw serious heat. Later in his career he was beloved for his work ethic and humility (allowing best friend Triple H to win all the titles and hog all the limelight). He had a long career that began at the absolute perfect time - right when wrestling entertainment was taking off and PPVs become prevalent. His first Wrestlemania match with Undertaker is arguably the greatest ever. And the second wasn't far off the first one. He retired on top of his game. For me, he ranks right up there with the 5 or 6 best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: tykechandlerwrote on 19.10.2017:[10.0] "A wonderful performer and showman. He put on consistently great matches for a long period of time. However, he did have a slight tendency to oversell, and he could be somewhat formulaic. But his workrate was phenomenal, and he is certainly one of the best American wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kapuwrote on 04.10.2017:[8.0] "A great wrestler, nobody can deny that, but not the best. While in-ring ability isnŽt everything to make a good wrestler, showmanship isnŽt everything either. Shawn Michaels managed to capture the attention of basically everybody, both at the ring and backstage. HeŽs made a good job both as a face and as a heel and heŽs demonstrated his worth, but for me technically he stops a little short compared to other outstanding wrestlers. You canŽt just compare Shawn Michaels with anyone, and since itŽs top-level weŽre talking, only the best will do."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "Along with the Undertaker, the best wrestler in the history of WWE. Always very histrionic, spectacular and funny to watch, his matches were stories told with body language, athletic moves and an excellent capacity of buying the audience's attention. He retired at the best moment possible, instantly becoming a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Maniacwrote on 22.09.2017:[8.0] "Shawn Michaels is a great wrestler in the ring but not a 10, a ten signifies he was without fault, and we can all remember some less than stellar matches he had during his initial run, he took a while to get great but he managed it, on the mic however wasn't Shawn's strong suit he was passable and had a few exceptional promos besides this he carried himself with a severe attitude problem his entire career which at times ruined great matches, take his summerslam match against Hulk Hogan, everyone likes to point at Hogan for dropping out of a 3 match plan with shawn but shawn didn't do himself or anyone any favors by acting the way he did for that match. One other knock on shawn is he was never a great brawler a good one sure, but not a top level in this regard, as a technician he was good but out shined, what shawn excelled at was two things one psychology and flashiness, in his time period Shawn was one of the flashiest wrestlers ever compare what he did today he'd be considered average there lol. (that isn't a knock on shawn though) Shawn was one of the best in ring psychologists in wrestling period just not a 10."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BigMikewrote on 18.09.2017:[10.0] "One of the best wrestlers ever. His matches with Undertaker are ***** worthy. He could play the annoying heel or the perfect babyface. Don't remember the last time he had a bad match"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: taabr2wrote on 10.09.2017:[10.0] "One of the greatest workers of all time. Shawn Michaels' post injury run from 2002 until his retirement in my favorite run by a wrestler in WWE ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Viktor Vaughnwrote on 01.09.2017:[10.0] "Absoluter Top-Performer, einer der allergrößten aller Zeiten. Er hat es immer geschafft, aus jedem Gegner ein mindestens gutes Match heraus zu holen, und er hat es immer geschafft, aus jedem Zuschauer die richtige Emotion heraus zu kitzeln. Egal ob er Heel war oder Face, egal ob am Mikrofon oder im Ring, er wusste immer zu überzeugen, in allem was er gemacht hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: coolserazwrote on 06.08.2017:[9.0] "HB-Shizzle is DA MAN! When it came to wrestling and captivating the audiences, no one was as charismatic and fun to watch. His promo skills and backstage politicking go against him but he could cut a strong promo if he wanted to. Broke down several barriers for smaller wrestlers along with Bret Hart and later on Eddie Guerrero, Chris Benoit and Rey Mysterio."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: WoLFPaCKnWo1995wrote on 15.07.2017:[10.0] "Ah that's my boy Shawn lol, no seriously the heartbreak kid deserves his place in wrestling history, take notes vanilla midgets, here's a living example on how to be a small wrestler and not suck."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SrHunterwrote on 04.07.2017:[10.0] "Honestly i'm horrified to the recent low ratings to him, Michaels is one of the best wrestlers in history, at least in america, sure he was an asshole in the 90s, but his ring-work really compensates, tremendous babyface and personally i kinda like his return in 2002 more than his 1990's, busting great matches with almost everyone all the time, great feuds, moments, i think he never pulled a bad match that i remember, anyway one of the icons and inspirations of pro-wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Coltwrote on 25.06.2017:[10.0] "Es ist eigentlich überflüssig noch viel über Michaels als Wrestler und Entertainer zu sagen. Am besten gefiel er mir zweifellos zu Beginn seiner Single-Karriere in Begleitung von Sensational Sherri und mit Diesel als Bodyguard. Also, in der Zeit in die seine ersten beiden IC-Titel und der Gewinn des ersten Tag-Team-Titels fielen. Damals fand ich ihn einfach cool, er war ein Typ der gutes Aussehen, eine gewisse " Leck mich am A.... " -Einstellung, Individualität und Charisma verband. Dazu kamen seine beachtlichen Fähigkeiten im Ring. Er ist der beste Techniker aller Zeiten (sorry, Bret Hart-Fans - ich hab nie gesehen wie Bret einen Hurricanrana oder Moonsault ausführte)! Die DX revolutionierte die WWF, sie machten Sachen die man vorher in dieser Promotion nicht sah und nach der sich die Fans sehnten. Der Montreal Screwjob hatte einen Beigeschmack, aber ohne diese Geschichte und die DX wäre die WWF wohl kaum wieder in die Spur gekommen. Michaels war einer der ganz großen dieses Geschäfts."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: flashbackwrote on 06.06.2017:[3.0] "In the ring, few if any could compete with Shawn. He was without a doubt one of the most entertaining, incredible workers ever to step into a ring. As a kid, I was absolutely mesmerized and thrilled by his matches, and for a long time I was a huge fan. Now, as an adult, hearing about what he has done in his personal life, I have to detract significant points because he is such a colossal dick, maybe the biggest in the entire business. The amount of guys he has screwed over either directly or indirectly is astounding. One random example off the top of my head is Vader, who could have done amazing business with him, if Shawn hadn't been such a prima donna in the ring. Another is Hurricane Helms - apparently Shawn had a huge problem with him doing the choke slam. And Shawn calls Bret a mark? Who's the mark now HBK? And yes, of course his history with Bret - a guy that Shawn repeatedly refused to job to, and who he refused to wrestle on occasion, instead claiming he "lost his smile" and handing the belt over without actually losing it - the same thing Bret wanted to do in Montreal, but when the shoe was on Bret's foot, well then Shawn had a HUGE problem with it. Talk about hypocritical… oh and speaking of hypocrites, Shawn's "born again" status - isn't THAT convenient. Be a massive dick for decades and then find god and suddenly all is forgiven. What a joke.  Shawn sucks, and he's not deserving of the status usually given to him. Please people - don't believe the religious BS."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Arousalswrote on 17.04.2017:[10.0] "The Icon, the Showstopper, the best modern wrestler I had the honor to see perform. Could work any type of match with any opponent and had the MOTN more times than any other performer I can think of. Shawn Michaels will go down in history as truly part of the very cream of crop."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Lariatooowrote on 05.04.2017:[10.0] "The absolute best wrestler ever. I can't think of any other person who has put an as many amazing matches that has also entertained me for most of his career as much as HBK has. The only other professional wrestler that can even touch HBK is Ric Flair. Yeah, he definitely had attitude problems and was a definite prick a lot of the times in the 90s, however I do believe that he has changed (even if he does let it slip occasionally e. g. SummerSlam 05) but I can easily look past that and just enjoy his matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Blood Pumpwrote on 29.03.2017:[9.0] "Rightfully called the greatest wrestler in america (though my preferences include others like Kurt Angle, Bryan Danielson,  Ric Flair and Steve Williams among others), Shawn never let his personal demons interfere with his in ring work (Well, mostly... His match with Hogan was not very flattering). Oh hes let them run wild backstage but the man had every reason to call himself the best in ring worker in professional wrestling. That he came back in 2002 and had perhaps an even better run then his initial one (very debatable) is just outright impressive."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Summerslam Fan 01wrote on 12.03.2017:[9.0] "Der beste Wrestler aller Zeiten.  Er ist Mr Wrestlemania, nur Top Matches abgeliefert.  Wird aber nie so groß erwähnt werden wie ein Hogan, Stone Cold oder ein Undertaker.  Das liegt auch dran das er außer im Ring nicht der Hit war.  Am Mic Solide, Charisma schon viel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: R-Dizzlewrote on 03.03.2017:[10.0] "Eindeutig einer der 3 besten Wrestler aller Zeiten und wahrscheinlich der beste WWE-Wrestler aller Zeiten. Ausstrahlung, Charisma, Ringwork und Micskills alles perfekt. Absolut verdient eine 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LordGabrielwrote on 24.02.2017:[10.0] "Great entertainer ! Memorable moments in DX , memorable matches and feuds against Triple H , The Undertaker , etc. One of the best of all times , impossible to hate this guy , and also don't forget HBK was the first to participate in Hell in a cell, Elimination chamber and the contemporary ladder match so we can call him a pioneer of some current things from WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Lardo Parcelwrote on 22.02.2017:[10.0] "Shawn Michaels was a phenomenal wrestler. An innovator, he was pretty much ahead of his time. His ability, his charisma, his looks, his gimmick. Everything about him was top! One of the few wrestlers out there who deserves a rating more than 10. What a Showstopper."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: thebookermickwrote on 21.02.2017:[10.0] "Hbk has revolutionized the wrestling, he was the icon, the showstopper, the main event and always put a lot of psychology in his character. He constantly reinvented himself and has a lot of classical machs. He knew how to fight the big guys as well as the little ones. He could be a brawler but also a great technician."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hitman84wrote on 20.02.2017:[10.0] "Wow war dieser Bursche talentiert. Hätte ihm in seinen letzten Jahren noch einen ordentlichen World title run gegönnt. Für mich der beste Wrestler der 2000er und zwar mit abstand."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Chekerwrote on 15.02.2017:[10.0] "My first all time favourite wrestler. HBK, to me, at the time, was the perfect worker - great wrestler, great high flier, great seller, pretty good promo, incredibly charismatic, and a cool look to boot! My tastes have changed a little over the years but I still consider him an all time favourite of mine, and he still gets a 10 for it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Changeling45wrote on 09.02.2017:[10.0] "Shawn Michaels is the closest thing to a 'perfect' wrestler that you could come up with.  Outstanding look, radiating charisma, tremendous athlete.  Shawn can adapt to basically any style of wrestling and do it effectively.  He can perform crazy spots and gimmick matches.  He's can portray a slimey heel and scrappy underdog perfectly.   Shawn's best trait, however, is his uncanny psychology and ability to tell a story throughout the course of the match.  No one can move an audience and get them invested in a match like The Heartbreak Kid."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring:Im Ring einer der besten aller Zeiten mit unzähligen Klassikern. Hat sich in den 00er Jahren sogar noch gesteigert. Vielleicht der beste Wrestler, der den WWE Stil gehen konnte. 10/10 (50%)  Promos/Schauspieltalent: Auch seine Promos gehören zum besten was es in der WWE gab besonders stark als Anführer der DX 10/10 (25%)  Charisma/Statur/Gimmick:Hier seine einzigste schwäche . Fand ihn in den 90er zwar dort besser, aber auch nicht besonders. 07/10 (25%)  Sind dann insgesamt 9, 25 für HBK.  = 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NastyYaffawrote on 20.01.2017:[10.0] "For every wrestling fan, I am sure that there is one moment/match/thing that they can point out to when people ask them "how did you become a fan? " - Well, for me, the one moment that solidified my fandom of the pro graps was Shawn Michaels kicking Hulk Hogan w/ that Sweet Chin Music of his, in 2005. I had watched wrestling before that for quite a while, but that was the moment when I became a full-on mark for the business. For that, Michaels has a special place, and he remained my childhood hero & favorite wrestler for a long time. I was actually quite scared to do this re-watch project of his work, because my tastes in wrestling have changed throughout the years, and I thought maybe the ol' HBShizzle isn't as great as I once thought... Well, I gotta say that after re-watching many of his matches, and watching some matches of his that I had never seen before, right now I think of him even more highly than before. Is he the G. O. A. T. ? No. He isn't THE greatest, but he is without a doubt, very close to that title. He was incredible. One of my all-time favorites, and one of the greatest professional wrestlers of all-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MarkyMark0wrote on 16.01.2017:[10.0] "Despite what you think of him outside of the ring Shawn Michaels has to be one of the greatest if not THE GREATEST in ring performer of all time. Shawn Michaels was always a guy that if I found out he was in a match I'd have to watch because the match would be very entertaining. He's had so many memorable rivalries such as his rivalry with Bret Hart in 97, rivalry with Steve Austin towards the end of his run in the 90's, his rivalry with Jericho in 08, his rivalry with Triple H in 02-03 and then there are so many more to add. He's put on many many classics as well like the first ever Hell in a Cell match with Taker in 97 and his return match with Triple H in 02. Shawn Michaels has always oozed charisma and could work the ring like no other that just kept your attention all the time. You may have people say he's "overrated" but if they'd actually watch his matches they would know just how great this man truly is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JonColwellwrote on 08.01.2017:[10.0] "Mr. WrestleMania, The Poster Boy of Early 90's WWF, Major controversial character with unlimited backstage power, One of the best in-ring workers ever, played a major influence on future legend Chris Jericho and many wrestlers in the business. One of the best, 'nuff said."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Puro Spiritwrote on 01.12.2016:[10.0] "As an in ring performer they where very few who where as good as he was ....  however his reputation as a difficult person to deal with and his reputation of burying talent back in the mid 90s has left alot to be desired .... but his work in the ring was second to none .... had many classic matches with the likes of The Undertaker , Kurt Angle , Scott Hall , HHH and many more ...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Alex Maedawrote on 05.11.2016:[9.0] "Nicht mein Geschmack und meiner Meinung nach leicht überbewertet, war jedoch sicherlich ein Ausnahme-Performer (ich sage bewusst nicht Wrestler, da er aus rein sportlicher Sicht für mich " nur" solide bis gut ist) und konnte seit seinem Abgang nicht ersetzt werden. Und wird das wohl auch nie."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BankStatementwrote on 27.10.2016:[10.0] "Shawn Michaels is a superlative in-ring storyteller who never foundered to captivate the audience when he needed to the most. He's had so many classic matches that we still excessively praise today. He is also very charismatic and could cut good promos. He is easily one of the best wrestlers ever and probably the best American in-ring performer ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Justtwrote on 09.10.2016:[10.0] "THE LEGEND. Michaels is one of the icons of the professional wrestling and the inspiration for many of wrestlers today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rasslin Ruleswrote on 04.10.2016:[10.0] "Genial im Ring (10/10), in Sachen Charisma der beste aller Zeiten (10/10), am Mic grandios (9/10) und dazu ist seine Karriere voll mit prägenden Momenten (Austin's 1. Titelgewinn, Flair Retirement, 1. HiaC Match... ) und großartigen Matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TripleHBKwrote on 30.09.2016:[10.0] "Zusammen mit Y2J und Undertaker der wohl beste Wrestler, der jemals zwischen den Seilen bei der WWE stand, aber ich würde ihm den Vorzug geben. InRing Skills sind ne glatte 10 und Charisma auch (Who's your daddy Montreal). Er ist einfach der Hammer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheOneWhoKnockswrote on 14.09.2016:[10.0] "One of THE top 5 American wrestlers of all time, along with Flair, Funk, Angle and Styles, HBK is an icon in every sense of the word. A very long career of two halves, both containing legions of phenomenal matches, like the ladder classics with Razor Ramon at Mania X and Summerslam 95, his series of phenomenal matches in 1996 with opponents such as variable as Diesel, Mankind, Vader and even SID, Vs Bret Hart at Survivor Series 92 (not a fan of their iron man match though) and Vs Kurt Angle in 2005, Chris Jericho in 2003 and 2008, Triple H at Summerslam 02, Cena in 2007, Flair and Batista in 2008 and finally his greatest opponent, The Undertaker, in three of THE greatest matches of all time at Badd Blood 1997, Wrestlemania 25 and Wrestlemania 26. Also an absolute riot as a heel, particularly during his 2005 feud with Hulk Hogan, and yet could also play face brilliantly despite the horror stories of his toxic personality in the 90's. Truly one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DevilsSkywrote on 01.09.2016:[10.0] "Like many other wrestling fans, Shawn Michaels is one of my favourite wrestlers of all time. He had it all, the talent, the charisma, the character, the selling, the psychology, it's very hard to knock anything that he really does. Sure, he had his issues in the past, but he's come back from them and still managed to maintain amazing in ring work. He's just a natural in the ring, no other way of putting it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Desaster1978wrote on 24.07.2016:[10.0] "LEGENDE. Sehe mir noch heute gerne seine Matches an. Das Leitermatch bei WM 10 ist wohl das beste Match seiner Karriere aber auch die Schlachten gegen den Undertaker sind legendär."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DeMONKEYwrote on 06.07.2016:[10.0] "Was soll man zu Shawn Michaels sagen? Er ist für mich einfach das Optimalbild eines Wrestlers. Wenn man nur seine Leistungen als Worker betrachtet (seinen Charakter in den 90zigern damit ignoriert) dann gibt es vom Gesamtpaket keinen Besseren. Im Ring war er weltklasse. Sowohl was Psychologie, als auch Technik angeht war Michaels einer der besten aller Zeiten. Er war an unglaublich vielen MustSee-Matches beteiligt und hat zudem auch unglaublich sauber bzw. botchfrei geworkt. Das einzige was man evtl. bemängeln könnte ist sein Selling, auch wenn ich dieses eher legendär betrachte. Deswegen komme ich hier nicht an einer 10/10 vorbei. Am Mic. war er auch extrem gut, konnte sowohl in Comedy-Segmenten, als auch in ernsten Promos stets überzeugen. Jede Promo die ich von ihm gesehen habe war mindestens solide, dennoch würde ich ihn nicht als den besten Micworker aller Zeiten betrachten. Zudem war er im Crowdinteracting eine Wucht (siehe die RAW-Episode vom 15. 08. 2005 in Montreal). Ich tendiere hier zu einer 9/10. Außerdem war er einer der charismatischten Wrestler die ich kenne.  Dieser Mann versprüht förmlich Charisma, EGAL wo er ist. Er hat einfach immer eine Wirkung auf den Zuschauer. Selbst wenn man ihn das erste mal sieht. Auch hier komme ich nicht an einer 10/10 vorbei. Einen Extrapunkt gebe ich btw. für sein Gimmickplay. Denn egal ob Heel oder Face... Michaels hat immer abgeliefert. So komme ich insgesamt auf 10 von 10 Punkten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JordanACEwrote on 27.06.2016:[10.0] "The greatest performer of all times? Probably. Shawn's matches are some of the most epic ones ever, and the list goes on and on... From Undertaker to Stone Cold to Chris Jericho... He always puts on a great show!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CassiusGrimaldiwrote on 26.06.2016:[10.0] "Shawn Michaels is the greatest of all-time. He was the best wrestler bell to bell, one of the greatest ever on the mic, and truly knew how to sell a match/feud as either a face or heel. He made everyone who ever faced him in the ring look better than they ever looked before."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: killowenskillwrote on 25.06.2016:[9.0] "Chief representative of my favorite era in WWE, New Generation Era. Charismatic, speaking, and well, just a set of techniques impressionable. He won the hearts of many, even in the 21st century, when the ring-skill looked at worse levels than other wrestlers. I would like to put Michaels 10, and he deserves it, but I can not. Since he was on a par with the Game, cleaned of unwanted wrestlers, and hands have reached even to the Rock, the good, the more he became interested in Vince McMahon, and they had not been able to " bury" . Maybe even because of this except Michaels nobody was better at the time. You must strive for glory by any means, but not so aggressive. So 9 points. I already wrote that the personal files do not need to intervene when you evaluate this or that person, but in this case it prevented the rest. Who knows, maybe there would be a better wrestler .."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KevinZaynwrote on 23.06.2016:[10.0] "Eine der größten Legends im Buisness! Er hat grandioses InRing work vorallem was das selling angeht 10/10 . Außerdem ist er wirklich richtig gut am Mic 9, 5/10. Charisma ist auch massig vorhanden9/10 und die Ausstrahlung ist ebenfalls Wahnsinn 9, 5/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rastarazor1970wrote on 13.05.2016:[9.0] "My idea & opinion of a particular wrestler. Good guy or bad guy got to have some swagger, look good body and outfit. Know how to talk smack or shut it down, and of course have some skills, moves and ability.   Outfit: 8   Body build: 8   Swagger: 10     Smack Talker: 9     Ability: 9  Moves: 9    Single: 9   Tag Team: 8     Longevity: 9 *Comment: Big smack talker.. Good wrestler Overall Rating: 9. 7"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KingChrizzly619wrote on 16.04.2016:[10.0] "Für mich einer der besten Wrestler schlechthin... Persönliche Ausstrahlung: er lebt die texanische Coolness (9/10 Punkte): Sein Gimmick war perfekt auf ihn zugeschnitten, egal ob als Face oder als Heel, es hat gepasst (10/10). Auch bei den Moves war er einer der besten seiner Zunft, seine Sweet Chin Music bleibt unvergessen (10/10). Selbst beim Micwork kann ich keinen Kritikpunkt finden (10/10). Gibt bei mir einen Gesamtwert von 10/10 Punkten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: awesomepunkwrote on 13.04.2016:[10.0] "Wenn man an einen herrausragenden Wrestler denkt, denkt man an HBK. Jedes Match von ihn war absolut ein Highlight. Am Mic war er immer gut und seine Technik im Ring kaum zu überbieten. Seine Superkicks waren immer sehr genial und auch sonst hatte er einige Moves zu bieten. Mit seinem Karriereende ging ein Stück Wrestling verloren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ma Stump Pullerwrote on 06.04.2016:[9.0] "Though infamous for his backstage politics and generally having a very spiteful attitude towards many people, Shawn Michaels has a ability to get a good match out of anyone. Michaels has given us some of the best matches ever in the WWE/WWF with people such as Bret Hart in the legendary hour long iron man match and both of his matches with the Undertaker. Shawn has earned the right to be called " Mr Wrestlemania" and one of the all time greats in the ring. While having a massive ego, Shawn has proved time and time again that he an icon of wrestling and to say he is not is simply ridiculous."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ApexOfEvolutionwrote on 28.03.2016:[10.0] "Es gibt tatsächlich was an Shawn Michaels auszusetzen. Seinen Hang zum Overselling und natürlich seine frühen charakterlichen Mängel, die sich im Montreal Screwjob geäußert haben und auch in der Backstage-Arbeit mit der Clique, die wohl anderen Wrestlern ihre Karriere verbaut haben um sich selbst immer wieder zu pushen. Warum ich trotzdem 10 Punkte gebe? All das macht die Legende Shawn Michaels mit all ihren Ecken und Kanten aus. Der Montral Screwjob gehört inzwischen einfach zur Wrestling-Historie, er hat Bret Hart im Nachhinein nicht geschadet und die beiden haben sich ja inzwischen auch versöhnt. Shawn schien sich nach seiner Rückkehr in Wrestlinggeschäft auch privat gewandelt zu haben, weniger Egoismus an den Tag zu legen und die Bereitschaft zu haben auch andere Wrestler over zu bringen. Und sein Overselling beim Summer Slam 2005 gegen Hulk Hogan war einfach großartig und bestens geeignet den alten Superegomanen Hogan eins auszuwischen. Dazu muss man auch einfach den Wrestler Shawn Michaels für seine In Ring-Skills, seine Promos und sein Charisma 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CrackheadMcGeewrote on 17.03.2016:[10.0] "Shawn Michaels is by far one of the best wrestlers of all time, not my favorite, but still one of the best! He's been in tons and tons of matches, including the first ladder match against razor ramon which was one of the best WWF matches of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: richeyedwardswrote on 15.03.2016:[4.0] "The most overrated wrestler ever. He was good but never great, an over the top spot monkey whose best run was as the midnight rockers in the AWA and he was not even the star of the team, somebody who bought into his own hype and became even worse after he returned in 2002, putting on bloated " epics" that are a chore to sit through. He is only thought of so highly because of the wwe marketing machine. to add to all of this he is one of the worst backstage characters ever."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MAGICIANwrote on 15.03.2016:[10.0] "Shawn Michaels gehört zu den ersten und besten puren Wrestlern. Dazu hat Shawn Michaels alles, was man für einen Status als absoluten Superstar gebraucht hat: Micwork, Charisma, Ausstrahlung. Volle 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: James Dean Wrestlingwrote on 09.03.2016:[10.0] "One of my top tier greats. One of the first WWE wrestlers that hooked me in. Always have a spot for HBK. The man is a living legend and a true beast in that ring. Miss seeing him weekly but it is what is is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mizzle Assault Antwrote on 01.03.2016:[9.0] "I don't really buy HBK as the GREATEST WRESTLER OF ALL TIME. He can be overdramatic and his bumping sometimes borders on ridiculous. His promos can be hit or miss, and his backstage politics and general attitude have been, at certain times, a candidate for the worst of all time. He never drew well as champion, he killed pushes and careers in multiple decades, and he looked kind of weird in old age. BUT, I can't deny that at the end of the day I love a lot of his matches and feuds, so I'll still give him a 9 in spite of everything. But greatest of all time, I really can't get behind it."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Longa-46wrote on 15.02.2016:[10.0] "HBK, einer der besten der jemals in einen WWE Ring gestiegen ist. Hatte sehr viel Charisma, lieferte fast immer gute Leistungen ab, sein Mic Work war auch meistens immer gut. Von den Anfangsjahren bis zu seinem Karriereende hat er mir stets immer gut gefallen. Vor seiner Verletzung vielleicht noch ein bisschen besser, dennoch danach immer noch spitze. Allein die 2 WM Matches gegen den Taker waren Weltklasse und ein würdiger Abschied einer wahren Legende. Völlig verdiente 10 Punkte für HBK."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Best Pro Wrestling Fan Everwrote on 08.02.2016:[10.0] "He made me cry after his last wrestlemania match against The Undertaker. Never forgetten. The greatest technical wrestler ever. He is so funny and i'm never bored watching his promos. All of these things make him a great man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: pingola12wrote on 28.01.2016:[7.0] "Good wrestler, but he is too much oversell, I believe his ego was so huge that he wanted the attention even when was ''receiving'' the move."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HeinrichC75wrote on 20.01.2016:[6.0] "Möchte gerne seine gesamte Karriere beurteilen und nicht nur die Jahre, in denen er voll im Saft stand. Als junger Kerl sicherlich top, doch zum Ende seiner Inring-Karriere hat er mich nur noch genervt, auch wenn sein Abschiedsmatch gegen den Undertaker super war."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Zedwrote on 18.01.2016:[10.0] "Einer der allergrößten im Wrestling. Er hat alles im Wrestling erreicht was es zu erreichen gab und steht zurecht in den Top 5 der Meisten Wrestlingfans. Gibt wohl kaum einen der an so vielen denkwürdigen Matches beteiligt war Er hat die Leiter Matches und Ironman Matches berühmt gemacht, hat mit der DX die Attitude Ära eingeleitet und hat vielel Leuten zu Ruhm verholfen. Da ist es egal dass er in seiner ersten Zeit ein ziemliches Backstage-Ekel war.  Außerdem zeigte er dass man auch in einem Alter jeseits der 40er noch gute Matches zeigen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Oddark123wrote on 06.01.2016:[9.0] "The Heart Break Kid, is another man deserving of the title legend. Even when things looked over, he managed to make a comeback and be a huge part of the WWE. It would be disingenuous to ignore all the many things HBK did in his career. But also still not a perfect wrestler in some dimensions. But the man who lost his smile can still deliver a smile to the face of the fans in his retired stance. Shawn Michaels deserves respect that he worked hard to earn."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GebboWWEwrote on 29.12.2015:[10.0] "Was für ein unfassbarer Wrestler. Für mich einer der größten aller Zeiten. Nach seinem Comeback 2002 geile Matches gegen Triple H, Ric Flair, John Cena, Chris Jericho und vor allen Dingen gegen den Undertaker. Sowohl als Tag Team als auch als Singles Wrestler packte er mich bis zu seinem letzten Match 2010."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DanielBryan1986wrote on 29.11.2015:[10.0] "HBK garant für gute Matches. WM 10 das Hammer Leitermatch, WM 12 das erste Iron Man Match, WM 21 gegen Angle und WM 24 gegen Flair sowie beide WM Matches gegen Taker, würdiger hätte er nicht seine Karriere beenden können. Neben WM Matches hatte er aber eine weitere Reihe guter Matches. Seine Promos waren meist gut.  Er gefiel mir klar besser als er nach 4Jahren zurück kam, aber auch seine Anfangszeit war nicht zu verachten.  HBK ein Superstar und zurecht Legende, wo ich mir nach 5 Jahren immer noch frage, ob einer in seine Fussstapfen steigen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Double Swrote on 29.10.2015:[10.0] "Shawn Michaels hat das Wrestling geliebt. Es war egal welche Rolle er verkörperte, welchen Move er zeigte, was er dem Puplikum gab war Hingabe! . Deshalb war er so glaubwürdig. Zudem vergessen viele das er auch vielen anderen Wrestlern zu großem Ruhm verhalf. Man sehe nur die vielen Niederlagen bei Wrestlemania. Er war, er ist, und wird es immer bleiben der beste Wrestler den es jemals gab. Seine Athletik , seine Moves , sein Charisma, und sein Herz für diesem Sport danke Shawn! ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Shawn Michaels ist einer der Besten, auch wenn ich ihn wirklich mochte, hat er immer die Show gestohlen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Squared Circlewrote on 14.10.2015:[9.0] "Simply a great career.  He put everything into his character and career.  Outstanding Tag Team wrestler from his early AWA days.  He was excellent on the mic and he could carry a feud for eternity.  Overlooked as an intercontinental champ.  Innovative ring entry, which at the time was important.  He was a little over pushed for the big belt and never really quite fit that part.  All in all though, a hall of fame career."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PWCwrote on 14.09.2015:[8.0] "A great worker that was bogged down by terrible storylines near the end of his run. Anyone remember the McMahons vs. Shawn Michaels and God feud from Backlash 2006? That match was 30 minutes long and the entrances were at least 10 minutes long. It was ridiculous. But HBK was a great entertainer and a great, great wrestler overall despite these faults."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mandzukic9wrote on 13.09.2015:[10.0] "Michaels ist einfach ein Musterwrestler. Die perfekte Mischung aus In-Ring-Worker und Entertainer, die mehrere Generationen unterhalten konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jacobphillipswrote on 13.09.2015:[10.0] "one of the best, if not the best of all time. his matches were unmissable and oozing with quality. he always delievered on the biggest stage of them all and his matches against the undertaker at the grand age of 45 were exceptional. always welcome back to the and would love to see him wrestle again one day"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Elm0hwrote on 11.09.2015:[10.0] "Der einzige Superstar der es verdient gehabt hätte die Streak des Undertakers zu beenden.  Shawn Michaels ist eine Art Superstar die der WWE aktuell enorm fehlt, was sie für mich zunehmend langweiliger werden lässt.  Eigentlich muss man zu Shawn nicht viel sagen. Natürlich 10 von 10 Punkten. Eventuell lässt sich noch sagen, dass ich seinem Abschied immernoch hinterher weine :-("
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hokuto in Winterwrote on 04.09.2015:[7.0] "First let me say a once in a lifetime talent, maybe the best ever at getting decent to good matches out of bad performers, great charisma and a body of work to be proud of.  All that said, I believe Shawn Michaels is the most overrated wrestler of all time. He mastered a style which is probably the most simplified psychologically bankrupt overkill form of the art that has ever existed: the modern WWE style. Yes he was the best as what he did, but what he did was not the best. So many, in fact the overwhelming majority of hardcore fans will cite him as the best wrestler of all time, how can he be anything but massively overrated?  Shawn Michaels was a fantastic worker here are a few men and one woman who were better in the ring than him: Jumbo Tsuruta, Toshiaki Kawada, Eddy Guerrero, Akira Hokuto, Negro Casas, El Hijo Del Santo, Terry Funk, Chris Benoit, Randy Savage & Mitsuharu Misawa. That's just ten, I could probably name more. He's one of the all time greats, in the pantheon of artists of wrestling but as long as everyone is saying he's the undisputed greatest who ever lived he's the most overrated."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: sleviinwrote on 22.07.2015:[10.0] "Einer der besten die es je gab!  Absoluter WWE Superstar.  Hoffe das er irgendwann nochmal ein Comeback gibt, und er hätte es definitiv verdient gehabt undertakers streak zu brechen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DaNiwrote on 06.07.2015:[10.0] "Einer der besten Entertainer aller Zeiten. Sein Leben, seine Karriere und Passion für das Wrestlinggeschäft sind atemberaubend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ezewrote on 02.06.2015:[10.0] "Shawn Michaels - Mr. Wrestlemania.  Dass dieser Mann die 10 Punkte-Wertung bekommt dürfte niemanden verwundern.  Während seiner aktiven Zeit war er ein grandioser Worker der jedes Match bereichert und das Mainstream Wrestling der 90er revolutioniert hat.  Kleine Eigenheiten wie sein Overselling gehörten in der immerhin 25 Jahre langen Karriere zu den Markenzeichen und sind deshalb völlig in Ordnung.  Ich bin froh, dass seine schwere Rückenverletzung nicht das Ende war und wir ihn noch einige Jahre sehen konnten. Er wird mir immer sympatisch in Erinnerung bleiben, insbesondere weil er wusste wann es Zeit war zu gehen.  Er hat dem Business viel gegeben und das wissen wir Fans zu schätzen.  Danke dafür"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GlitterPrincesswrote on 31.05.2015:[10.0] "Er ist für mich der größte Wrestler aller Zeiten. The Icon ist ein würdiger Spitzname für ihn und ich denke kaum einer könnte diesen Namen tragen. Charisma, In-ring Skills, Mic Skills, alles was ein großartiger Wrestler braucht hatte er und ich freue mich immer, ihn in der WWE als Gast zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: WrestleArtswrote on 14.05.2015:[8.0] "Sehr guter, kompletter Worker (mal vom nervigem Overselling abgesehen) mit gutem Micwork. Aber so gern die WWE ihn auch als einen der Größten bezeichnet (man biegt sich die Geschichte ja gerne mal etwas zu recht, gerade mit Leuten die die WWE nie in Richtung WCW verlassen haben), fehlte HBK immer die Drawing-Power, er war nur in WWE's dunkelsten Stunden on top und seit seinem Comeback 2002 eh nie mehr als eine Special Attraction. Für sämtliche Kayfabe-Brüche im Ring und andere Bitchmoves kann man dann auch noch einen Punkt abziehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: spongesam27wrote on 12.05.2015:[10.0] "My FAVVVVORRITTTE wrestlers of alllll timme! He went from the Rockers to DX to Showstopper to Mr. Wrestlemania! He always put on a great match on any type of show! He is one of those worker that nobody else can top. My favorite match of all time that includes him is Shawn Michaels vs Undertaker at Wrestlemania 25. Honorable mentions: vs John Cena at RAW 60 Minutes Iron Man, vs Bret Hart at Wrestlemania also 60 Man Iron Man, vs Chris Jericho Ladder Match at No Mercy, and so on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: kaysguywrote on 11.05.2015:[6.0] "A mid-card wrestler with good mike skills, given a series of undeserved pushes, resulting in his holding the WWE belt during the organization's darkest period, while losing the Monday Night wars to WCW."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MusSanwrote on 27.04.2015:[10.0] "Einer der besten die , die WWe je hatte. Am geilsten fand ich seinen Finisher den Sweet Ching Music."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Viper99wrote on 21.04.2015:[10.0] "Der Showstopper, der Headliner, the Icon er ist für mich einfach DER beste ALLER ZEITEN! Ich liebe diesen Kerl einfach. Er war selbst als junger bursche im Team mit Jannetty sehr unterhaltsam und hat starke Leistungen gebracht. Über seine Singles Karriere braucht man garnicht zu reden. Einfach einer der besten In-Ring Worker aller zeiten. Er könnte aus einem Sack Reis ein starkes Match rausholen. Zu seinen unglaublichen In Ring Leistungen kommt auch noch das In Unmengen vorhandene Charisma welches er in jedem " Shawn Michaels Charakter" abrufen konnte. Sein Mic Work war auch einfach atemberuabend. Egal ob in ernsten Promos wie zb. Seine Retirement Promo, als Gehasster Heel in der Montreal Promo oder als absoluter Comey Guy in der DX Zeit. Shawn Michaels ist nicht nur Mr. Wrestlemania, er ist Mr. WRESTLING."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RooneyDXwrote on 12.04.2015:[10.0] "Shawn Michaels ist der Beweis dass man selbst wenn man verliert dennoch als Sieger hervorgeht. Mehr habe ich über diese Legende nicht zu sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: delvec19wrote on 03.04.2015:[10.0] "I knew it before he retired.  I knew it after his last match with The Undertaker.  I can safely say that Shawn Michaels is the greatest professional wrestler of all time.  How did I come to this conclusion you ask?  There is a criteria involved.  How good was he on the mic?  How good was he in the ring?  What were his accolades?  How did fans react?  There are probably tons of things to look at, but for the sake of argument, let's look at the meat of the issue.  Mic/Promo Skills Was HBK the greatest ever on the mic?  Nope.  I'd put Ric Flair and The Rock over him any day of the week.  But, Michaels was no slouch.  Watch his work as a cocky, arrogant " boy toy" when he broke free from The Rockers.  It evolved into a confident, underdog babyface when he won his first WWE World Title.  From there, he went back to the arrogant heel, only this time everyone knew when he said something, he would back it up.  Michaels followed that up by turning the WWE around with DX.  Say what you will about Steve Austin starting the " Attitude Era, " but HBK really exemplifies what that era was all about.  After his injury, he came back with a new outlook on life.  He veered away from the vulgarities and double-entendres, but his emotion was always felt.  When you watched a Shawn Michaels' promo, you believed in what he was saying.  Whether you liked it or not, he got you to feel some type of emotion towards him.  In-Ring Skills This one just isn't debatable.  Sorry.  Flair was great, but let's be honest.  He maybe had five or six moves in his repertoire.  Bret Hart?  Excellent.  Not better than Michaels.  Kurt Angle is unbelievable, too.  But Angle's best was when HBK was in the ring across from him.  Chris Benoit may have been the most intense performer in the ring I've ever seen, but even he couldn't tell a story like HBK could.  Take the best attributes of the guys I just mentioned, and you have Shawn Michaels.  HBK had dozens of moves"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: eldenaaaaawrote on 19.03.2015:[10.0] "There are not enough superlatives to describe Shawn Michaels. Though a lot of great work happened before 2000, even more great work came out of his last 10 years with the WWE. 1X World Heavyweight Champion, 4X World Tag Team Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Uap09wrote on 10.03.2015:[10.0] "Für mich persönlich das Maß aller Dinge im Wrestling. Alles andere als die Bestnote wäre zu wenig. Sowohl im Ring, als auch am Mic hervorragend. Dazu noch in der Lage wirklich jeden Gegner zu einem Top Match zu ziehen. Grandios."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: pfuschiwrote on 07.03.2015:[10.0] "Shawn will always be my No. 1, his career was so well done, simply perfect.  He really was the total package to me. Great in the ring, great on the mic, great voice, big charisma, good looks in the 90s, great body. What makes him really special to me are the little things he did like the " IŽm sorry, I love you" against Flair. Many wrestlers could have a good match with Flair but that one scene made it legendary and it was all because of Shawn.  From the start as a Rocker to his first heel run to his superbabyface run to DX to his long break to his return.  He always stood out to me as a very special guy. Every block of his career was special, ment something and was never boring.  It was a great feeling to be live at the Hall of Fame when Shawn went in. As a fan since 89 it ment a lot and for sure was the highlight of the weekend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DNPwrote on 26.02.2015:[10.0] "Wahrscheinlich der beste Wrestler, den es je gab. Im Ring unübertroffen, unglaubliches Charisma und Promos, die einen immer in den Bann zogen. Die Legende schlechthin, für Shawn Michaels kann es nicht weniger als 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: austin1987wrote on 03.02.2015:[10.0] "Ein herausragender Wreslter, war ein sehr guter Techniker. Hatte ein spitzen selling und sein Micwork war Fantastisch.  Am liebsten mochte ich ihn in den 90ern, vor allem als Heel mit der DX er konnte das Puplikum wirklich gegen sich aufbringen, sodass man ihn wirklich nur hassen konnte aber ihn irgendwie auch cool fand. Ich weiß nicht wie ich es beschreiben soll denn auch zur damaligen Heelzeit musste ich ihm irgendwie immer zujubeln ; ).  10 Punkte Top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kick-Out-At-Twowrote on 10.01.2015:[10.0] "Mhh..  Ich war nie der große Fan von ihm (Vorallem in den 90ern fande ich ihn extrem schmierig und unausstehlich ),  allerdings hat er sich , vorallem in seiner Rolle gegen Ende seine Karriere , nochmal für mich absolut gigantisch Entwickelt. (vorallem der Bart tut ihm gut :D ) Obwohl nicht zur absoluten Technick-spitze gehörend , großartiges Arsenal im Ring und krasse Aktionen , dazu wirklich einen Haufen legendärer Kämpfe. Mit den dazu wirklich guten Mikro-eigenschaften schafft er es bei mir in die 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TRMBwrote on 26.12.2014:[10.0] "Der beste Wrestler seiner Generation! Er hat genau wie Kurt Angle verstanden jeden Gegner gut aussehen zu lassen. Hatte selbst unglaubliche Austrahlung im Ring und am Mic. Dazu ein technisch perfekter Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sokar Drenwrote on 17.11.2014:[7.0] "Shawn Michaels ist unumstritten eine Legende. Jedoch finde ich, dass seine Fähigkeiten im Ring viel zu überbewertet werden, da ich ihn irgendwie nicht so gut finde. Die DX Zeiten waren aber sowieso der hammer also 7 Punkte!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Saphirwrote on 02.11.2014:[9.0] "Shawn ist gut, aber Marty fand ich besser im Ring zur Tagteam-Zeiten. Bret Hart war ebenfalls der bessere der beiden. Er hat beide ausgespielt und das weiß er auch. Ohne Janetty und Hart wäre es schwierig ein so endlos gutes Match auf die Beine zu stellen. Die zwei Rivalen hat er vergesen gehabt. Sicher hat er gute Match gegen Razor und Kurt Angle gehabt, aber es reicht nicht. Michaels vs Janetty 1993 - Bret vs Michels 1996! Ein guter Worker, den ich seit 1990 verfolgte. Er hat sich einige male Neuerfunden und auch zur Austin Zeit geglänzt.  Das Blöde war das Overacting in den 90ern, aber bei ihm schaut alles gut aus!  9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KASHwrote on 16.10.2014:[10.0] "Shawn Michaels' Karierre ist eine echte 10. Bilderbuchkarierre mit Fahrt von ganz unten bis an die Spitze. Dann der Fall, sprich Wegruf und Rückkehr als Uppercarder/Main Event Legende, der wrestlerisch nochmals eine Schippe rauflegen konnte. Es gibt unzählige Matches von ihm, die ich als Klassiker titulieren würde..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Y2J316wrote on 28.09.2014:[8.0] "Shawn ist ein super Wrestler. Mic-Skills und In-Ring Skills, alles vorhanden. Mit der D-X zur Attitude zeit zwar ein bisschen über dem Limit aber egal. Mag ihn eigentlich sehr und Matches mit Kurt und Taker und vielen anderen waren Super."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Edge and Christianwrote on 27.09.2014:[10.0] "Shawn ist eine absolute Legende!  Gegen Bret Hart eine der besten Fehden aller Zeiten geführt und mit der DX in einem der besten Teams aller Zeiten gestanden! :) Zu ihm muss man nicht viel sagen es reicht sich ein zwei Videos anzugucken und man merkt wie gut er war"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Matzinhowrote on 06.09.2014:[8.0] "Michaels ist durch viel Vitamin B bedingt zum Main Eventer und zur Legende der WWE geworden. Ich fand ihn allerdings nie so stark, wie er dargestellt wurde. Seine Selbstdarstellung hat mir immer gut gefallen, allerdings halte ich ihn für einen durchschnittlichen Promo-Sprecher und im Ring finde ich ihn auch " nur" gut. Alles in allem ein unterhaltsamer Typ, aber für mich keine Legende und auch kein Genie im Ring. Vor allem bis Mitte der 90er Jahre fand ich ihn als reinen Wrestler schwach und enttäuschend. Die vielen hohen Bewertungen seiner Matches kann ich auch nicht nachvollziehen, aber das ist halt so ein Meltzer-Ding."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CmNag66wrote on 23.07.2014:[10.0] "HBK ist für mich der Beste Wrestler allerzeiten. Er hat in seiner Karriere alles erreicht und stand immer für starke Matches und gutes Entertainment. Er hat jede Menge großartige Erinnerungswürdige Matches abegeliefert z. b. gegen den Undertaker, Chris Jericho oder Bret Hart. Er stand in 5 Wrestlemania Main Events war 4x WWE Champ und hat regelmäßig die Show gestohlen was will man mehr, klare 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Whitebear710wrote on 03.04.2014:[10.0] "Man mag von Shawn Michaels als Person halten was man will: Er ist einer der besten Wrestler aller Zeiten. Exzellente Technik, gutes Selling, Miterfinder des modernen Ladder-Matches, tolle Comedy-Segmente als Teil von DX. Ich habe ihn immer sehr gerne gesehen. Leider hat er nicht öfter einen großen Titel halten dürfen. Trotzdem: Verdiente 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: edge4everwrote on 31.03.2014:[10.0] "Einer der besten Wrestler den es gibt und verdient Hall of Famer. Shawn Michaels hat von den Rockers bis hin zu seinem letzten Match gegen den Undertaker eine super entwicklung gemacht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TakerFanwrote on 01.03.2014:[10.0] "Auf einer Stufe mit dem Undertaker oder sogar noch darüber. Einer der größten Performer in der Geschichte des Wrestlings, der rechtzeitig aufgehört hat und sich schon lange unsterblich ist. Großartig um Ring und am Microfron, in der Lage jeden gut aussehen zu lassen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HongKongPhooeywrote on 22.02.2014:[10.0] "Just another 10 for ole HBK. Pretty much everything you could want in a wrestler. Has put on some of the greatest matches of all time and somehow decided to just keep getting better as he was getting older. Truly in rare air in the wrestling world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Andr3wwrote on 07.02.2014:[10.0] "Einer, wenn nicht sogar der Beste Worker in seinem Gebiet. Egal ob Face oder Heel er unterhält mich immer noch"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Lord Regalwrote on 03.02.2014:[8.0] "Eigentlich 10 Punkte, weil alles stimmte aber sein Ego sagt mir Nein! Dazu ^^!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SweetMetalMusicwrote on 01.02.2014:[10.0] "Auch wenn eigentlich Bret Hart mein All Time Favourit ist und ich das widerwärtige Backstage Divagetue aus den 90'er von HBK verabscheue, muss ich diesen Mann als besten Wrestler aller Zeiten anerkennen. Ihn kann man wirklich als " komplett" beszeichnen. Wrestlingskills, Micwork, Charisma, ist bei ihm alles vorhanden bzw. beherrscht er so gut wie kein anderer. Selbst wenn es nie zu seinem Comback 2002 gekommen wäre, hätte er diesen Status auch schon inne gehabt, da er mit den damaligen Wrestlern aus der Zeit, wie z. B. Bret Hart, British Bulldog, Razor Ramon und dem Undertaker, unglaubliches geleistet hat und in die Geschichtbücher einging. Dass er bei seinem Comback mit den Wrestlern aus dieser Zeit, Y2J, Kurt Angle, Triple H, John Cena usw. ebenso grandiose Dinge hervorbrachte, ist natürlich mehr als phänomenal. Wer ihm keine zehn Punkte gibt, hat von Wrestling keine Ahnung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Deception946wrote on 01.02.2014:[10.0] "My Favorite Wrestler of all time, great mic skills, perfect ring skills and perfect looking"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JourneybyTrainwrote on 21.12.2013:[5.0] "Shawn Michaels was pretty charismatic as the cocky 90s heel but his post-retirement babyface run leaves a lot to be desired as a character and I find his offense and facials to be a bit to poor to pull me through most of his epic matches. Still he's produced some good stuff in his career."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LordOfLimitwrote on 11.12.2013:[10.0] "HBK ist für mich einer der wohl beste Wrestler aller Zeiten. Er ist am Mic einfach unschlagbar und im Ring kann er immer gute bis sehr Gute Leistungen vollbringen. Guter Face und noch besserer Heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kid Rockwrote on 01.12.2013:[10.0] "Shawn Michaels ist und bleibt eine der kontroversesten Figuren im Sport... ebenso wie er zurecht als schlicht einer der besten aller Zeiten in Erinnerung bleiben wird. Menschlich gesehen kann man über seine ausreichend dokumentierten Missetaten als Backstage-Person in den 90ern natürlich kaum hinwegsehen, rein auf seine Fähigkeiten als Performer beschränkt bleibt HBK auch fast 4 Jahre nach seinem Rücktritt immer noch nahezu unerreicht, auch wenn sich Leute wie CM Punk oder Daniel Bryan im aktuellen WWE-Produkt erfolgreich Mühe geben die große Lücke, die Shawn hinterlassen hat zu füllen. In den 90ern, zu seiner Prime, glänzte Michaels durch fantastische Ringleistungen und funktionierte gerade in der New-Generation-Ära als Konterpart zum Saubermann Bret Hart perfekt, ehe er als Heel mit der Gründung von DX das Geschäft nachhaltig prägte. Ich persönlich fand jedoch die Jahre 2002-2010, also nach der sensationellen Rückkehr von der eigentlich karrierebeendenden Verletzung am stärksten, da Shawn gerade dank dem sichtlichen Reifegewinn als " Total Package" einen noch stärkeren Charakter als früher zeigen und auch ohne der akrobatischen Finesse aus seinen jungen Jahren, sowohl am Mic wie auch im Ring dank der Fehden gegen HHH, dem Undertaker, Chris Jericho und John Cena sich ein umfassendes Alterswerk aufbauen konnte. Für dessen Leidenschaft, Hingabe und Einsatz kann man dem Showstopper nur danken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Giftzwergwrote on 01.12.2013:[10.0] "Alles andere als eine 10 wäre eine Beleidigung für diesen Ausnahmekönner. Ganz starker Techniker. Ganz starker Schauspieler. Hat im Gegensatz zu anderen Wrestlern seine Karriere zum richtigen Zeitpunkt (mit 45) beendet. War über 15 Jahre das Zugpferd der WWF, und konnte dies auch immer glaubhaft rüberbringen. Schade nur, daß ein Wrestler mit ähnlichem Charisma nicht in Sicht ist. Man hat ihn geliebt oder gehasst. Dazwischen gab es nichts, und das war das Faszinierende an diesem Mann. War ein Revolutionär, da er viele Dinge (Leitermatch, Screwjob, Royal Rumble als Startnummer Eins gewinnen, Titelverteidigung Royal Rumble) als Erster und teilweise auch Einziger geschafft hat, gemacht hat oder hat machen müssen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: donkitrk99wrote on 27.11.2013:[10.0] "The very best, in my opinion. I don't know enough about Japan to say so definitively, but I am getting to know enough that I am gaining confidence. His second run is the best prolonged run of Work Rate in major North American history, if not second best to Flair in NWA. Incredible matches with HHH, HHH & Benoit, Flair, Cena (best matches of his career), Angle, Jericho... and his first WM match with Undertaker ranks as my all time greatest match. Kobashi's GHC HW title run is highly regarded as the best - given Michaels' prolonged breaks and lack of championship run comparing the two is a bit like apples and oranges but they both deserve mention in this conversation. And this goes without mentioning earlier career classics against the likes of Razor Ramon and Bret Hart and Mankind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: yanuswrote on 27.11.2013:[9.0] "A little bit overrated by the casual fan. Great, maybe even the best sports entertainer in the history of this business, but not a brilliant wrestler. He always had certain weaknesses - mainly his horrible offense, which looked, like it couldn't hurt anyone and his weird facial expressions. Was much better in the 90's, but event then did some things, that pissed me off, like throwing referees out of the ring or cussing at the cameramen (as a babyface). With that being said I can't ignore the fact, that he always entertained the viewers and at the end this is what wrestling is all about."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: tgwrote on 26.11.2013:[10.0] "Einer der besten Worker, die das US-amerikanische Wrestling jemals gesehen hat. Charismatisch, talentiert im Ring und am Mikrofon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Silaswrote on 13.11.2013:[8.0] "" Heartbreak Kid" , " Showstopper" , " Mr. WrestleMania" , " The Icon" und mehr brauch man nicht über ihn sagen. Der Typ ist eine Legende. Bekommt von mir aber nur 8 Punkte weil er mich nie so richtig gepackt hat, mit dem was er tat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BestInTheWorld96wrote on 12.11.2013:[10.0] "Einfach nur der beste aller Zeiten. Dem ist nichts hinzuzufügen: 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SoRoNwrote on 11.11.2013:[10.0] "ein unglaublicher performer/entertainer/wrestler! ich vergesse nie seine worte: i will give a show you will never forget - why? because i can! und damit trifft er ins schwarze! er konnte abliefern wie kein zweiter - hatte mit fast jedem gegner ein gutes match! und alleine für die WM25 & WM26 Matches gegen den taker hätte er sich 10 punkte verdient! aber da 10 das maximum sind kann ich " nur" 10 geben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Allu kripen wahwrote on 03.11.2013:[10.0] "Very good moveset. Awesome as heel or face. As heel he is very cocky. Great wrestler who had great ending for his career at wrestlemania 26. Very good promos."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Daneraswrote on 03.11.2013:[10.0] "Wenn ich an seiner Zeit als Heartbreak Kid denke, dann muss ich immer schmunzeln. Er hat soviel Unterhaltungen gegeben, und seine typische Haltungen. Zum Beispiel an der Ecke vom Ring prellen und so akrobatisch aus dem Ring zu fliegen. Die fand ich immer genial!  Die Fehde zwischen Michael und Diesel fand ich super spannend.  Er hat viel darauf, ein richtiger Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ProRedstonewrote on 02.11.2013:[10.0] "Für mich die größte Legende des Wrestling ! Er hat mich schon immer überzeugt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PGsuckswrote on 28.10.2013:[10.0] "Er ist einfach der Beste und wird es immer bleiben. Ob als Single-Wrestler oder als Part der D-Generation X. Einfach nur Klasse. Sehr gut am Mic und technisch einer der Besten. Es ist so schade, dass er nicht mehr wrestlet. Ich finde es gut, dass er sich hin und wieder trotzdem in der WWE blicken lässt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hells Guardianwrote on 25.10.2013:[10.0] "Ich bin wirklich froh, dass ich kein Wrestler der WWE war, sondenr immer nur fan und somit HBK niemal backstage getroffen habe. Spätestens seit dem gewissen Screwjob kann man sich denken, dass der gute privat ziemlich hinterrücks sein kann. Bewerten kann und will ich jedoch nur seine on Stage Karriere und die ist ohne jeden Zweifel ihre 10 Punkte Wert. Aber als kleinen Einwand: Ich vergebe die 10 Punkte voraussichtlich nur an 4 Wrestler überhaupt, die mit ihren stärken und schwächen zusammen den perfekten Wrestler ergeben würden, denn DEN ultimativen Wrestler, gibt es für mich nicht. Auch HBK hatte seine tiefen. Meiner Ansicht nach hatte er das einzigartige Talent, jede Flasche von Gegner wie einen Meister aussehen zu lassen (also die matches unglaublich überzeugend zu verkaufen), aber sein Overacting als Heel hat für mich nicht immer das bewirkt was es sollte (also den Hass des Publikums gegen sich gezogen), sondern war zeitwillig vorhersehbar und damit langweillig auf längere Zeit. Aber wie gesagt: Den perfekten Wrestler gibt es nicht und die angesprochene Schwachstelle war kaum wahrnehmbar und eher vor seiner Nackenverletzung, als dannach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: koeddylaemmlewrote on 18.09.2013:[10.0] "Shawn Michaels is unarguably one of the greatest performers of all time. Due to attitude issues Michaels would not be remembered as fondly had he not returned to the ring in 2002, and became the WWE's most dependable performer through out that decade. This packed on with the rest of his story book career makes it nearly impossible to argue against Shawn Michaels being included in WWE's Top 5 pound-for-pound wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "Bester Wrestler den es jemals gab, legendäre Matches hat er abgeliefert allein schon das Ladder Match gegen Razor Ramon ist klasse. Dieser Mann ist eine warhaftige 10 wert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[7.0] "Kann nur kritisieren, dass er bis in ein hohes Alter aktiv war, was mir gar nicht zusagt. Mr. WrestleMania konnte mich gegen Benoit & HHH sowie gegen Angle in den Jahren 2004 und 2005 begeistern, hätte dann bloß lieber aufhören sollen. Ab einem gewissen Alter sollte man es einfach lassen, vor allem wenn man sich im Ring dann so komisch bewegt wie er oder ein Ric Flair. Die Jahre gehen halt nicht spurlos an einem vorbei."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: voicelesswrote on 24.08.2013:[10.0] "Ich wünschte man könnte 100 Punkte geben. Im Ring der beste + Am Mic sehr gut = der beste aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: UnforgivenSicknesswrote on 23.08.2013:[10.0] "Der gute, alte Shawn Michaels.... Er hat es einfach nur drauf und kommt beim Publikum gut an. Dann kam noch DX mit Triple H. Als ob die WWF gewusst hätte dass, das Tag Team so großartig rüberkommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HighlightHEELwrote on 20.08.2013:[10.0] "Einer der absolut besten Wrestler aller Zeiten. Man braucht diverse Hände, um alle seine hervorragenden Matches aufzuzählen, für alle guten fehlt definitiv die Zeit. Über viele Jahre der beste In-Ring-Worker, den die WWE hatte, noch dazu hervorragend am Mic, sowohl als Face als auch als Heel einer der besten (letzteres hat man gegen Ende leider viel zu wenig gesehen, ich liebe seine Montreal-Promo). Er hatte auf jeden Fall auch einen der würdigsten Abgänge, die sich ein Wrestler nur wünschen kann, mit einem Instant Classic und zwei weiteren starken Matches mit emotionalen Momenten bei den letzten drei Wrestlemanias. Zu schade, dass er seinen Rücktritt so ernst nimmt, ich wüsste einige interessante Match-Ups im aktuellen Roster..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: That 70s Blokewrote on 16.08.2013:[10.0] "Probably (one of) the best wrestlers that ever lived. People often think about Hulk Hogan when they think about wrestling, but nobody comes close to HBK when it comes to in-ring performing!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Chickenwingfanwrote on 14.08.2013:[10.0] "Wenn er die 10 nicht verdient hat wer dann? Ich könnte eventuell jetzt kleinlich werden und über Screwjobs oder schlechtes Backstageverhalten schreiben und Punkte abzeihen, aber nein! Shawn war einfach über einem langem Zeitraum hinweg der Beste , , Wrestler'' im ganzem WWE Roster, es hatte schon seinen Grund warum Flair sein WWE Abschiedsmatch gegen Michaels hatte. Die WWE wusste ganz genau das Shawn Michaels mit jedem ein gutes Match zaubern kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Palace of Wisdomwrote on 14.08.2013:[9.0] "Eine Legende. Wahnsinns Techniker, toller Micworker und Puplikumsliebling. HBK gehört zu den größten überhaupt und das zu Recht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: test85wrote on 02.08.2013:[10.0] "Einer der größten aller Zeiten. Er braucht dazu keine 16 oder World Titel Runs. Unvergessen seine Fehden und Matches gegen Jericho, Bret Hart, Kurt Angle, Taker usw. . Sogar als großer Bret Hart Fan habe ich ihn den Screwjob allein durch seine Leistung nach seiner Rückkehr vergeben. Mit anfang-mitte 40 noch so agil gewesen. Zwei Dinge finde ich aber schade:1. Ein letzter Titel Run um 09-10 wäre toll gewesen. 2. Drei Matches hätte ich noch gern gesehen. Und zwar gegen Eddie Guerrero, CM Punk und eines der Money Matches und zwar gegen THE ROCK."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: fcwieslawrote on 13.07.2013:[10.0] "Nicht ohne Grund mein absoluter Favorit seit knapp 17 Jahren. Man kann über ihn sagen was man möchte, aber Fakt ist dass er sich ab 2000 von seiner Persönlichkeit her geändert hat und seitdem wahrscheinlich einer der sympatischsten Wrestler in dieser Zeit ist aber das tut eh nichts zur Sache das Private. Von der In-Ring Physiologie und denen Geschichten die er im Ring erzählt gibt es keinen besseren. Am Mikrofon ist er fast perfekt und meiner Meinung nach der beste neben The Rock. Es gab mit ihm unzählige Klassiker die meistens nur durch ihn zu solchen wurden und allgemein brachte er viele heutigen Wrestlern vieles bei. Man siehe Daniel Bryan, und wo steht er nun? Tja. Jedenfalls ist er jetzt bereits eine lebende Legende und der kompletteste Superstar den es gibt, gab und geben wird. Leider gibt es halt noch zu viele Kritiker und einer davon ist die Wwe selbst indem sie HBK bisher seine Leistungen zu wenig honorierten mit z. B. dem Wwe-Titel. Darum ist er von manchen anscheinend ein bisschen unterbewertet. Nichtsdestotrotz - Keiner hat es mehr verdient den Wwe-Titel zu erringen und vorallem keiner hat es mehr verdientin der Hall of Fame zu sein. PS:Wer hier bewertet sollte sich klarmachen: Es geht bei Cagematch darum den Wrestler zu bewerten und wie gut er seinen Job macht und nicht um die private Person! Also nur die Rolle bitte bewerten, denn darum gehts schließlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sir Vida Loca IIIwrote on 07.07.2013:[10.0] "Seine ganzen Spitznamen hat er sicher nicht umsonst. Shawn Michaels ist gehört zu den besten Wrestlern die jemals einen WWE Ring betreten haben. Natürlich erbrachte er am ende seiner Karriere nicht mehr die selbe Leistung wie in seiner besten Zeit mitte der 90Žer. Trotzdem war er immer noch besser als gefühlt 95% der Rosters."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fastlane86wrote on 02.07.2013:[10.0] "Alles in allem überragend. Ich habe seine arrogante Art geliebt, dass er der ultimative Showman war. Sein Match gegen Kurt Angle bei WM 21 hat mich mit dem Wrestling wieder versöhnt.  Ich bin ja Fan von Powerhouse-Wrestlern, aber mit HBK konnte eben doch kaum jemand mithalten.  Und sein Match gegen Hogan war einfach nur witzig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: joshimaniawrote on 23.06.2013:[6.0] "Michaels was a great tag team wrestler and a very charismatic wrestler in the 80s/90s that unfortunately fell off a cliff during his post-retirement run."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Leonewrote on 25.04.2013:[10.0] "If he isn't the best wrestler in the history of pro wrestling and sports entertainment, then without a shadow of a doubt, he is in the top 10, maybe even the top 5.  Shawn Michaels is the true total package of pro wrestling.  He possesses an undeniable charisma.  He is 1 of the best sellers wrestling has ever had.  He was not only incredibly entertaining, but he could wrestle.  Boy, could he wrestle!  As a normal size man in the Big Man era, he overcame the size disadvantage.  Making even the biggest and slowest of the big men have a great match.  Against wrestlers the same size as him, he put on technical masterpieces of storytelling.  But on top of all of this - Shawn Michaels returned to the ring in 2002 after a career ending back injury, and continued to work like the casket match with the Undertaker didn't exist.  During the second half of his career, Shawn's approach to the business had evidently changed.  Before, he was more interested in holding championships.  But later, he was building up new stars by putting on great matches with them, and then jobbing to them when the time was right.  His return also created numerous dream matches, from Rob Van Dam to Chris Benoit to Chris Jericho to Ric Flair to Rey Mysterio.  He was incredibly reliable, and there was a reason why they called him the Showstopper and Mr Wrestlemania.  Because win or loss, he often stole the show.  He deserves no less than 10 from me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Louie Canderelliwrote on 20.04.2013:[10.0] "Dieser Heartbreak Kid! Mittlerweile eine Legende im Geschäft.... trotz seines Mangel an Körpermasse ein fast unbezwingbarer Athlet! Was der Mann einstecken könnte Unfassbar! Keiner konnte so schön durch den Ring fliegen wie Shawn Michaels! Ein grossartiger Techniker und ein Kämpfer ohne Grenzen... selbst als Heel mochten Ihn die Fans weil er einfach alles beherschte was Kampftechniken angeht! Zusammen mit Bret Hart und Curt Henning der Beste Athlet in der WWF.... Als Heel gefiel er mir noch besser da dieses Aufreisser Gimmick gut zu Ihn passte. Egal wie gross und stark sein Gegner war! Er konnte Ihn in die Knie zwingen... Er hatte soviele Fehden das ich gar nicht alle aufzählen kann... am meisten sticht natürlich die Skandal Fehde gegen Hart raus.... aber obwohl das charakterlich von Ihn nicht ok war, passte es doch zu Michaels wie die Faust aufs Auge... Ich war nie Fan von dieser bunten Wrestler Mode aber seine Kleidung hatte immer Stil vor allem seine Hosen mit den gebrochenen Herzen drauf.. einfach klasse :D Hat sich vom kleinen arroganten Mann zum grössten Champ entwickelt.... wenn man seine Karriere mal genau betrachtet dann hat er alles richtig gemacht (bis auf diesen Montreal Screwjob natürlich) ein grossartiger Wrestler den man immer als Main Fighter begrüsst hat!   Fazit: Der beste Wrestler der Neuzeit mit perfektem Auftreten ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: bigbossman288288wrote on 13.04.2013:[10.0] "Einer der Wrestler, der die gesamte WWE geprägt hat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: the headlinerwrote on 11.04.2013:[10.0] "einfach der beste ! niemand war so beliebt als face und so verhasst (positiv) als heel wie er ! Shawn konnte jeden Gegner mit seiner Technik gut aussehen lassen und hatte unglaubliches Charisma und erzeugte so viele Showstealer !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "What an amazing career this man had. He accomplished so much, and always stole the show, whether on the mic or in the ring. One of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Eagle Whiskeywrote on 06.03.2013:[10.0] "Einfach einer der größten in dem Business. Grandios außerhalb sowie innerhalb des Rings. Für mich nach dem Taker und Triple H der beste aller Zeiten. In den letzten 15 Jahren habe ich im TV nie weggeschaltet wenn Michaels einen Auftritt hatte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Titansrevengerwrote on 06.03.2013:[8.0] "There was a time when I hated the word HBK, but that time is gone. Shawn Michaels may have been really insecure about his spot, and he may have been the biggest jerk in wrestling attitude wise. I never found his antics with D-X entirely amusing. The guy is and was the goods in the ring, and was a tremendous talent. I do think that he is overated in alot of ways, because his bumping was a double edged sword. It made others look good, but buy default made him look to beatable at times. He was a great seller but sometimes it was overkill."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Diggertakerwrote on 13.02.2013:[10.0] "Best performer in WWE history. Very remarkable and one of the best ever. He is skilled in virtually everything in pro wrestling. A legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Definitv einer der größten Stars im Pro-Wrestling, die es je gegeben hat. Ein unglaublich charismatischer und überzeugender Wrestler, der unzählige brilliante Matches gezeigt hat. Ein Ausnametalent wie kaum ein zweiter"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HBK the gamewrote on 29.01.2013:[10.0] "der für mich größte in ring performer aller zeiten, dieser mann hat bei pay per views fast immer das beste match gezeigt. ein bischen schade das man ihm nach seiner 4 jährigen pause nicht öfters den champion titel gegeben hat. hoffe das man noch ein match von ihm sieht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CrIppIL3RTIRiXwrote on 22.01.2013:[10.0] "Shawn ist einer der größten die es jemals gab!  Er kann aus jedem Wrestler ein gutes Match zaubern.  Denkt man nur mal an Flair vs. Michaels 2008, denn das war das beste Match was Flair seid 20 Jahren hatte.  Michaels hatte ein super Abschieds Match gegen den Taker.  Die Icon des Wrestlings deshalb die 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: 8BitLegendwrote on 22.01.2013:[10.0] "War der beste aller Zeiten. Meine Lieblingsmatches, Lieblings-Storylines, Lieblings-Promos... allesamt haben mit HBK zu tun. Unglaubliche Karriere. Hat sich privat und als Charakter immer nachvollziehbar entwickelt. Das Wrestling ist ohne ihn nicht mehr das gleiche."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HeelJenniwrote on 05.01.2013:[10.0] "Er ist einer der ganz ganz großen. Er hatte aus allem immer ein gutes Match gemacht. Es gibt sehr viele unvergessliche Momente, aus seiner Zeit, an die man sich auch noch in vielen Jahren erinnern wird! Für mich einer der Besten aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: krausi001wrote on 30.12.2012:[10.0] "Zurecht steht Shawn Michaels auf Platz 1 der bestbewertesten Wrestler. Er war und wird immer der Beste sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Cobrawrote on 14.12.2012:[8.0] "Love him or hate him. Shawn Michaels is one hell of a wrestler and no one can deny that."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: dantewrote on 12.11.2012:[10.0] "Held meiner Kindheit! Hat immer sein bestes gegeben, dafür werde ich ihn immer bewundern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CMP nwrote on 31.10.2012:[10.0] "Für mich ist Shawn Michael der beste Entertainer in diesem Business. Er hat Charisma, ein Ass am Mic, dass beste Selling etc etc. Auch die wrestlerischen Fähigkeiten sind bzw. waren bei ihm gut bis sehr gut und er hat mit die besten WWE Matches aller Zeiten gezeigt. Für mich verdient Shawn Michaels 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LM Punkwrote on 30.08.2012:[10.0] "Seine Spitznamen sagen schon alles aus. Er ist und bleibt für sehr lange Zeit der Beste Wrestler und Entertainer den die WWE und Wrestlingwelt hervorgebracht hat! Viele der besten Kämpfe gehen aus sein Konto."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: QWNXZwrote on 05.06.2012:[10.0] "Shawn Michaels war einer der besten, wenn nicht der beste, der je ge-wrestlet hat. Er hat Halsbrecherische Stunts gemacht, war ein Ass am Mic, hatte die besten Fehden und hat mit seinen In-Ring Skills überzeugt. Er und HHH waren das beste Tag Team aller Zeiten! Nicht nur, dass sie zwei super Wrestler waren, sie haben auch vieles erreicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Eclipsewrote on 22.05.2012:[10.0] "Shawn Michaels ist genau das was er von sich sagt, " The very best Sports Entertainer in the World" ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NoHomewrote on 02.05.2012:[10.0] "Heartbreak Kid, Showstopper, The Icon, Mr Wrestlemania... was gibt es mehr zusagen? eine Legende"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Alex Riley 4 wwe championwrote on 09.03.2012:[10.0] "Seine " Sweet Chin Music" höre ich mir gerne an! Der beste Superkick in der Geschichte der WWE! Mr. Wrestlemania hat gegen den Undertaker, JBL, HHH, Rick Flair und viele mehr großartiges gezeigt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Man of Warwrote on 22.02.2012:[10.0] "Er war der beste Worker die die WWE je hatte seine Promos waren sehr gut seine In-Ring Skills sowieso, er war ein sicherer Worker und er hat was vom selling verstanden. Er konnte die Masse mitreißen egal wie groß die Halle und wieviele Menschen Zuhause zugesehen haben. Er brauchte keine Gürtel um ein Maineventer zu sein, er hatte das Talent dazu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Marlowewrote on 19.02.2012:[10.0] "Immer top Matches, immer top Micwork. Einer meiner absoluten Lieblingswrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fabi89wrote on 28.01.2012:[10.0] "Überragender Wrestler, über den alles gesagt ist. Wird zurecht zu den Größen der Wrestlinggeschichte gezählt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Senajwrote on 27.01.2012:[10.0] "Geniale Promos und geniale Matches. Eine der größten Legenden aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Spearmanwrote on 25.01.2012:[10.0] "Shawn Michaels wird für mich immer, der beste Mainstream-Wrestler aller Zeiten sein, auch wenn Leute wie KENTA oder Kobashi besser sind. Er war vom Anfang meiner Wrestlingzeit immer dabei und sein letztes Match gegen den Undertaker war, für mich, eines der schönsten Wrestlingmatches aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Clubbiwrote on 09.01.2012:[10.0] "Er war und ist immernoch auch wenn er nicht mich Wrestelt, einer der Besten Ever.. Shawn Thank You for the Great Moments.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Pius123wrote on 28.11.2011:[10.0] "Der beste Wrestler aller Zeiten. Der Mann hat einen Klassiker nach dem anderen geliefert. Er hat das Business geprägt wie kein zweiter. Danke , HBK"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: OdisVanNeusswrote on 27.11.2011:[10.0] "Was soll ich zu Shawn Sagen . Abgesehn von Seinem PrivatLeben. Im Ring ... Niemand ist wohl besser... Am Microfone Grante! Verdient mehr WHCs als er hat hätte er sie gewollt und das ist das große"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Franchise Playerwrote on 27.11.2011:[10.0] "Wie kann man dem Heartbreak Kid weniger als 10 Punkten geben? Ich weiß nicht. Der Mann ist DER Entertainer des Business. Charismatisch, Mictechnisch, Inring, ... alles tip top. Nicht ohne Grund einer meiner absoluten Lieblingsworker. Thank you Shawn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Teekaywrote on 27.10.2011:[10.0] "Mr. Wrestlemania. Hat schon vor 15 Jahren Techniken angewandt, die heute als heißeste Sache verkauft werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Auditorewrote on 16.10.2011:[10.0] "Er war der Revolutionär des Wrestlings. Verdammt unterhaltsam ohne ihn wäre Wrestling nicht halb so interessant geworden wie ich denke."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Big John Studdwrote on 01.10.2011:[10.0] "In meinen Augen der beste Wrestler den es jemals gegeben hat, noch vor Bret Hart, Chris Jericho oder Ric Flair. Er hat mich dadurch inspiriert das ich Wrestler werden wollte. Er kann wirklich mit jedem ein gutes Match bestreiten, selbst wenn er nur gegen ein Stück Brot kämpfen würde. Zudem hat er noch ein verdammt gutes Mic Work und ein sehr starkes Charisma. Für mich der Inbegriff des Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: cktgerwrote on 21.09.2011:[10.0] "Skandalös das hier einige ihm hier 0 oder 2 Punkte geben. Egal ob man ihn mag oder nicht. Er war einer der charismatischsten und besten Wrestler seiner Zeit. Für mich sogar der beste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Raywrote on 13.09.2011:[9.0] "Natürlich ist der Mann eine grandiose Lichtgestalt des Businesses aber fehlte er doch einfach die für mich als Fan wichtigsten 4 Jahre und dieses Manko konnte er für mich nie komplett eliminieren."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rated R Punkwrote on 06.09.2011:[10.0] "Man kann von ihn sagen was man will als Person (obwohl ich fande was News angeht er eigentlich ganz Korrekt zu sein scheint) Er ist eine Ikone, wir verdanken ihn verdammt viel. Michaels könnte denke ich selbst mit einen Toaster mindestens ein 2 Sterne Match schaffen. Er hat einfach eine Lücke hinterlassen seit er weg ist. Ring In Skills sind natürlich gut. Michaels hat immer wieder was neues gezeigt (ich erinnere mich noch an seine Crossface Zeiten) Unterhalten kann er auch wie er zu seinen DX Zeiten gezeigt hat! Charisma hatte er vorallem früher sehr viel von! Also ganz klar 10 Punkte da ich ihn persönlich noch vor Leuten wie Undertaker oder Hulk Hogan sehe ganz einfach für seine Opferung für die WWE und all den Epischen Matches die er gezeigt hat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Pink and Black Attackwrote on 24.08.2011:[10.0] "schon rocky marciano wusste, wann er abtreten muss, und shawn tat selbiges! eine wahre legende tritt dann ab, wenn alle andern es nicht erwarten, weil er überragend ist! gott gab uns shawn, und er sah, dass es gut war! shawn michales > hulk hogan, steve austin, the rock or anyone else!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Michael Shawn Hickenbottomwrote on 15.08.2011:[10.0] "Unbestritten. Etwas anderes als eine 10 ist inakzeptabel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Tribbel Eitschwrote on 14.08.2011:[9.0] "HBK ist schlichtweg eine Legende. Über Jahrzehnte hinweg an der Spitze einer Company zu stehen und sowohl als Face als auch als Heel Woche für Woche die Fans zu begeistern - das spricht eigentlich für sich.  Er hat die WWE geprägt, und das nicht nur über einen kurzen Zeitraum, sondern über Jahre hinweg. Selbst nach Verletzungspausen kommt er immer wieder zurück und überzeugt wieder. Die Sweet Chin Music kann er in quasi jeder Situation wie aus dem Nichts treffen und so ein Match beenden. Ein Hoch auf den Showstopper!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bananaramawrote on 14.08.2011:[10.0] "Ich bin kein Shawn Michaels Mark, muss aber anerkennen, dass er einer der prägendsten Gestalten innerhalb des Business ist. Er ist eigentlich das, was ein Komplettpaket ausmacht: Er besitzt Charisma, Mic Work und In-Ring Skills, die ihm selbst mit schwächeren Gegnern großartige Matches ermöglichen. Daher kann es nur eine Wertung für ihn geben: 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: albino17wrote on 29.07.2011:[10.0] "Geniale Matches, überagende Promos, seit seinem Charakterwechsel auch noch die richtige Einstellung und er hat auf dem Höhepunkt aufgehört. Ganz klar, HBK ist einer der größten Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NHJ2102wrote on 11.07.2011:[10.0] "Mr Wrestlemania ... einer der unterhaltsamsten Worker aller Zeiten! Er hat die unglaublichsten Matches geliefert... und er ist glaub ich der einzige Wrestler der wenn er verliert, von den Fans trotzdem als der Gewinner gefeiert wird... unglaubliches charisma ... HBK the enfant terrible ist einfach eine Legende"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: 7TheEwrote on 29.06.2011:[10.0] "Kann immer und aus jedem das beste raushohlen und hat das Wrestlingbuisness lange Zeit total ans limit geführt unbeschreiblich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Donald Duckwrote on 26.06.2011:[2.0] "Ich hasse Shawn Michaels wie die Pest. Mag sein, dass er gute Matches abgeliefert hat, aber Michaels als privater Mensch ist einfach nur Mist. Allein der Montreal Screwjob disqualifiziert ihn für mich. Der Tag an dem er seine Karriere beendet hat, war ein guter Tag für mich."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Showstopper45wrote on 19.06.2011:[10.0] "Ein sehr guter Worker sowohl am Mic als auch im Ring. Er hat mit seiner perfekter Mimik und Gestik immer wieder klasse Promos. @Tamam Entweder du hast keine Ahnung oder ich weiß auch nicht Shawn ist einer der Besten und zu der Aussage er hat WWE nie aus irgendeiner Misere geholfen kann ich nur lachen als Hogan ging war da Bret Hart und Shawn die die WWE bis zur Attitude Ära gehalten haben. Der Undertaker natürlich auch"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Dennizwrote on 16.06.2011:[10.0] "Für mich klar der beste Wrestler aller Zeiten. Es wird niemanden geben der jemals an HBKŽs Klasse rankommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Opalawrote on 13.06.2011:[8.0] "Ein toller Wrestler der eigentlich immer gut unterhalten hat, aber mich persönlich hat er nie wirklich angesprochen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Johnny-Tennerwrote on 16.05.2011:[10.0] "Schade das ich seine lange Karriere nie von Anfang an verfolgen konnte aber selbst oder gerade im Alter hat dieser Mann das Wrestling zu lieben Gelernt. Ewig werde ich seine Geilen Matches in erinnerung behalten. Insbesondere Mein persönliches Lieblingsmatch bei meinem ersten Wrestlemania der für mich wie ein magischer Moment war, das Match gegen Kurt Angle bei Wrestlemania 21. Er kann wirklich aus jedem Match das Maximale rausholen und ist damit nicht umsonst der vielleicht beste Wrestler aller Zeiten. Eine großartige Karriere die auch ohne viele Titelgewinne beindruckend ist. Vielleicht macht dies aber seine 4 Titelregentschaften um so bedeutsamer. Im Ring fehlte im einfach nichts sein Charakter war selbst nach 25 Jahren noch intressant und das erlebt man doch eher selten. 10 Punkte für den Wrestler mit den größten Wrestlemania Momenten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Boggenauerwrote on 12.05.2011:[10.0] "Shawn Michaels ist ein Mann der mich Persönlich noch nie wirklich angesprochen hat, dennoch muss ich ihm zugestehen das er ein herausragender Wrestler war sehr gut am Mic war und seine Promos waren nie wirklich schlecht. Michaels ist ein Mann der unglaubliche Matches bestritten hat und in viele hervorragenden Fehden verwickelt war, ein Mann wie ihn wird es so schnell nicht mehr geben, wenn ich es mir so überlege ist es dennoch schade das man ihm nicht das ein oder andere mal noch den WWE Titel halten ließ da er wirklich immer alles gab und unglaubliches Charisma verfügte. Obwohl ich nie ein Fan von ihm war muss ich sagen das der Mann ein Top Wrestler gewesen ist deshalb bekommt er von mir 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Schiggywrote on 08.05.2011:[10.0] "Für mich ohne jeden Zweifel der beste Wrestler aller Zeiten. Es wurde hier schon alles gesagt, ich muss nicht mehr vel schreiben, ausser das Shawn Michaels DIE Legende ist und ich denke, dass seine Leistungen auf ewige Zeit unerreicht bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Elvis6wrote on 20.04.2011:[9.0] "Da muß ich meinem Vorredner leider widersprechen. Hbk war an ein paar herausragenden Matches beteiligt. Natürlich braucht man dazu 2 Topleute aber nicht von ungefähr war er eben dabei. Und auf die Backstagepolitik zu kommen:Richtige Zeit u richtiger Ort eben. Und zeig mir bitte eine Firma in der man nicht die Ellbogen ausfahren muß um ganz nach oben zu kommen. Aber wenn er auch noch so intregant wäre(wie du ihn hingestellt hast) hätte man ihn ohne Können bestimmt nicht so gepusht wie er es dann wurde. Zurecht Hall of Fame"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NewGuywrote on 20.04.2011:[6.0] "Guter Worker, schöne Matches, hinterhältiger Charakter. Hat es nur durch eine "über-Leichen-gehen"-Strategie geschafft der "Held" aller S-marks zu werden. Ich denke, dass es viele viele Worker gibt, die ähnliche Match-Qualität wie Michaels an den Tag legen, aber keine Hall of Famer sind, weil sie zu ehrlich waren. Das kann keine 10 Punkte geben!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: FriarFergusonwrote on 14.04.2011:[10.0] "Am Ende war es dann doch etwas zu viel des Guten. Michaels war nicht schlecht, hatte auch immer seine starken Matches, aber gegen Ende wurde er einfach zu unglaubwürdig stark dargestellt (siehe Royal Rumble 2010) und die neue Version der DX (mit Hornswoggle) war ebenfalls lächerlich. Die zehn Punkte bleiben trotzdem indisputabel. Sicher, ähnlich wie z. B. Cena geht er bei seinen Matches meist nach Schema F und mit klassischer Offensive vor, doch im Gegensatz zu Cena ist Michaels ein wahrer Athlet, dem Man die Schmerzen und das mühevolle Comeback auch abkauft und der den Zuschauer überrascht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: exxterwrote on 10.04.2011:[10.0] "Glatte 10. Da er meine Kindheit in den 80/90er bereichert hat xD Und war Teil warum ich überhaupt Wrestling angefangen hab zu gucken. Und bis heute hatte er auch super Matches geliefert Danke Shawn :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: dsierwrote on 07.04.2011:[10.0] "Für mich der mit Abstand beste und wichtigste Worker den die WWE/WWF je hatte. So einen wie ihn wird es nie wieder geben davon bin ich überzeugt. Ausserdem hat er sich auch menschlich weiterentwickelt; vom Chaoten, der auch mit Drogenproblemen zu kämpfen hatte, ist garnichts mehr übrig geblieben, stattdessen ist Shawn Michaels jetzt Vater von zwei Kindern und glücklich verheiratet. Er hat nichts anderes als 10 Punkte verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: micha27480wrote on 06.04.2011:[8.0] "ist mir zu arogant. und sein grimmick ist auch nicht so mein fall."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kitanoyamawrote on 03.04.2011:[10.0] "Optisch nicht besonders vielsagend, aber ein absoluter Top-Star in der Geschichte der WWE. Witzig, intelligent und kämpferisch, das ist HBK wie man ihn noch lange in Erinnerung behalten wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: C0nspiracywrote on 28.03.2011:[8.0] "Im Ring ist HBK zweifellos einer der allerbesten in der bisherigen Wrestling Geschichte. Über sein können braucht man nicht diskutieren er ist das was Er sagt , der Showstealer. Ich gebe ihm aber "nur" eine 8 da es einen Top Wrestler meiner Ansicht nach auch auszeichnet sich für andere hinzulegen. Dies hat Shawn insbesonders in den 90ern oft verweigert. So bleibt es also mMn nur bei einer 8. Auch wenn Er gerade seit seinen Comeback sich nie zu schade war den "Job" für seine oftmals noch grünen Gegner zu machen. Unterm Strich werde ich HBK dennoch immer als einen der wirklich absolut besten in erinnerung behalten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Peep316wrote on 09.03.2011:[10.0] "Ehrlich gesagt gibt es hier nichts was noch nicht über Shawn Michaels gesagt wurde. Ich kann nur sagen er ist meiner Meinung einer der besten wenn nicht sogar der beste Wrestler aller Zeiten. Bei ihm kommt alles zusammen was man braucht, einzigartige Mic-Skills, unglaubliches Charisma und er gibt einfach alles was er kann wenn er im Ring steht.  Ein Inovator und Pionier und Shawn wird für immer im Gedächtnis eines wahren Wrestling-Fans bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hu-Manwrote on 24.02.2011:[10.0] "Mr. WrestleMania! The Showstopper! The Heartbreak Kid! Shawn Michaels! Egal, wie sehr er am Anfang seiner Karriere drauf war, er war einer der besten, die das Business je gesehen hat. Einer meiner All Time Favorites."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Charismatic Enigmawrote on 23.02.2011:[10.0] "Nicht nur, dass er jahrelange Erfahrung mitbringt, er ist noch immer in der Lage, sowohl am Mic als auch im Ring jederzeit eine sensationelle Leistung abzurufen. Jüngster Beweis dafür sind die Wrestlemania-Fehden gegen den Undertaker. Seine Hall of Fame Einnführung war ohnehin nur eine Frage der Zeit und ist auch schon jetzt, ein Jahr nach Karriereende, mehr als verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HBK-Xwrote on 21.02.2011:[10.0] "HBK, mein Held seid ich zum 1. mal Wrestling gesehen habe! Immer der Beste, immernoch der Beste! Ob im Ring, an Mic oder backstage! Er kann alles, vom Heel bis zum Face! Super Comedy einlagen, besonders mit DX! Ich hoffe er macht noch weiter, denn er hat es verdient nochmal WWE Champion zu werden! He is still the Showstopper, the head-liner, the main event, the Icon!  NEU: Eigentlich muss man über HBK nichts mehr sagen! Der beste Wrestler aller Zeiten! Der verdiente Hall of Famer! THE ICON!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: wolverinewrote on 17.02.2011:[10.0] "Shawn Michaels ist zweifelsohne zu einer DER Ikonen des Wrestlings geworden. Und seinen Beinamen als "Mister Wrestlemania" ist absolut berechtigt, denn ich kann mich an kein Match in den vergangenen Jahren erinnern in denen der "Showstopper" bei der größten Veranstaltung des Sports Entertainment nicht in dem besten Match zu finden war... Sein Karriereende war definitiv ein sehr wehmütiger Moment - ich hoffe darauf, dass Shawn eines Tages noch einmal in einigen bedeutsamen Matches zu finden sein wird ... und sei es nur einmal jährlich, bei seiner namensgebenden Show..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GamePrincewrote on 16.02.2011:[10.0] "Im Ring gibt es glaub niemanden, der an seine Qualität rankommt ... schlicht unschlagbar, wenn es um tolle Matches geht. Da verkommt seine restliche Perfektion fast zur Nebensache ..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dark Tomekwrote on 28.01.2011:[10.0] "Mein lieblings Wrestler #1. Also ein super Entertainer. Man muss eigentlich nicht mehr sagen, er ist einfach super."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Neuhofwrote on 24.01.2011:[10.0] "Shawn Michaels ist für mich unbestritten einer der großartigsten Wrestler, die je auf Gottes grüner Erde wandelten. Sein Charisma, sein Selling, seine Psychologie, seine Promo-Fähigkeiten, seine In-Ring-Skills, all das ist überdurchschnittlich gut. Shawn ist einer der ganz großen, der jeden Stil mitgehen konnte, den man im Mainstream braucht. Vor seiner vierjährigen Zwangspause war er ein sehr guter, aber ein extrem umstrittener Wrestler. 2002 kam er nochmal für 8 wundervolle Jahre zurück, in denen er uns noch viele, viele Klassiker schenkte. Sicherlich der Showstopper, sicherlich Mr. Wrestlemania, und gelangweilt werden kann man bei einem HBK-Match eigentlich nicht. Wenn er nicht 10 Punkte bekommt, wer dann?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: thereisonlyonewrote on 16.01.2011:[10.0] "H... B... K... The Heartbreak Kid Shawn Michaels.  Aus meiner und aus der Sicht der WWE-DVD Top 50 Superstars of all time der beste, charismatischste und beliebteste WWE-Superstar aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Prodirwrote on 14.01.2011:[10.0] "Der Mann, der Wrestling für mich definiert hat und den Technikern und High-Flyern einen großen Schub in Richtung Popularität gegeben hat. HBK ist einfach eine lebende Legende, die das Wrestling berühmt gemacht hat. Er ist nicht nur ein großartiger Entertainer, sondern auch jemand, den man im Ring auch ernst nehmen sollte, was seine Matches bei PPVs ua. gegen den undertaker gezeigt haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Lampard4000wrote on 11.01.2011:[10.0] "Super Performer, immer unterhaltent, holt aus jedem Gegner ein gutes Match aus, mit guten Gegner ein herausragendes Match (z. B. Undertaker bei WM) und wird zurecht einen Tag vor Wrestlemania in die Hall of Fame eingeführt. Vielleicht tritt er ja mal wieder regelmäßig vor die Kamera, wenn auch nicht als Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: al2010exwrote on 03.01.2011:[9.0] "Gute Promos. Konnte gute Matches abgeliefern. Bin aber nicht der größte Fan von ihm."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Matt4Wrestlingwrote on 19.12.2010:[10.0] "Immer wenn man glaubte, er sei platt, die Show sei wirklich gestoppt, immer dieses legendäre wieder auffedern auf die Füße, die extrem langen Matches im verbund der langen Erfahrung mit so gut wie jedem Stil, machten das Gesamtpaket Shawn Michaels aus!  Hinzu kommt immer sein Hang zum Kontroversen (siehe D-X und Montreal Screwjob), wobei er aber immer Glaubwürdig erschien.  Jedenfalls, ein Typ, der in Zeiten eines WWE-Champions the Miz, schmerzlich vermisst wird!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Maxiennewrote on 10.11.2010:[10.0] "Alleine für DX müsste ich ihm schon 10 geben ich liebe dies Gruppierung einfach.  Zudem einer der besten Wrestler aller Zeiten Was kann man sagen einfach ein GOTT"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: UndertakerChriswrote on 10.11.2010:[10.0] "Genau wie der Undertaker ist HBK einer der großartigsten Wrestler alles Zeiten. Es gäbe viel zu viel zu sagen als das ich es hier posten könnte. Natürlich DX, sein Fehden gegen HHH, Undertaker, McMahons... Bret Hart... HBK war einfach ein unglaublicher Wrestler! We miss you Shawn... =("
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Marth99wrote on 01.11.2010:[9.0] "einer besten Wrestler aller Zeiten schade das er das letzte mal einen Titel run vor knapp 8 Jahren hatte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheRock 7 Champwrote on 28.10.2010:[10.0] "Also HBK überzeugt mich jedes mal im Ring, er ist wirklich der beste Wrestler den ich kenne. Am Mic super, im Ring perfekt sein Tag Team mit Triple H grandios, und auch seine Fehden sind fast immer ein Kracher. Für mich der wirklich aller beste Wrestler den es je gab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Jar Jar Binkswrote on 28.10.2010:[10.0] "Shawn Michaels war der beste In-Ring Performer der WWE. Er hatte die Fähigkeit gegen jeden noch so schlechten Worker ein ansehnliches Match zu bestreiten. Außerdem war er ein riesen Entertainer. Seine frühere Zeit egal ob als Face oder Heel, seine Zeit mit Triple H als DX, seine letzten Fehden gegen Ric Flair und The Undertaker, er konnte einen fesseln und wirkte dabei unheimlich realistisch. Danke Shawn für die tollen Momente!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DJ MaSchwrote on 13.10.2010:[10.0] "Ohne Frage einer der besten aller Zeiten. War immer ein Garant für weltklasse Matches und das mit jedem Gegner. Ich hoffe, dass er nicht den gleichen Fehler begehen wird, wie z. B. ein Ric Flair und sich zu einem Comeback breitschlagen lässt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Ramwrote on 29.09.2010:[10.0] "Oh hab fast vergessen ihn Meine 10er Wertung zu geben.  The Icon, Showstopper, Mr Wrestlemania was soll man dazu noch großartig sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: StevenHLRwrote on 10.09.2010:[10.0] "Am Anfang wo ich Wrestling schaut habe fand ich Shawn nicht so gut! Aber nach den Jahren wo ich sah was dieser Mann alles geleistet hat für die Liga muss ich einfach sagen 10 hat er ganz klar verdient! Ich sehe Shawn neben Hulk Hogan der bekannteste und gleich danach kommt The Undertaker! Shawn ist einfach gut!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: rockysadrianewrote on 10.09.2010:[10.0] "Der Mann wusste ganz genau das er für die WWE unbezahlbar ist und hat es genauso oft ausgenutzt wie unter Beweis gestellt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rock93wrote on 08.09.2010:[10.0] "HBK ist für mich das, was Sports Entertainment bedeutet: Unterhaltung, ob im Ring, am Mic oder bei seinen DX-Scherzen. Jede Rolle, die ich von ihm gesehen habe, war perfekt. und deshalb kann man da nur 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: AmericanDragonwrote on 07.09.2010:[10.0] "HBK is simply the greatest Sports Entertainer in the World. Mehr braucht man zu dieser Ikone eigentlich nicht sagen. Konnte aus jedem x-beliebigen Gegner ein brauchbares Match herrausholen, war in zahlreichen Klassikern vertreten und war am Mic unschlagbar. Sein (wohl) letztes Match bei WM 26 und sein emotionaler Abchied untermauerten noch einmal, wie wir ihn in Erinnerung behalten werden. Nämlich als The Showstopper, The Incon, The Main Event."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Telecinewrote on 26.08.2010:[10.0] "Nach seinem Comeback 2002 wirklich einer der besten Wrestler, Entertainer und Persönlichkeiten, die die WWE jemals hatte. Tolle Fähigkeiten am Mikrofon konnte Shawn Michaels mit der Fähigkeit verbinden, jeden Wrestler zu einem guten Match zu ziehen. Es gab nie wirklich ein schlechtes Match mit ihm. Sein bisher letzter Run in der WWE (vom SummerSlam 09 bis Wrestlemania 26), gestaltete sich für ihn auch sehr erfolgreich, da er mit DX eine gute Fehde mit Legacy hatte und danach die Unified WWE Tag Team Titles gewann. Nach der Trennung von DX, war es auch toll, ihn noch ein wahrscheinlich letztes Mal im Royal Rumble eine tolle Performance abliefern zu sehen und über den Umweg "Elimination Chamber" PPV in eine tolle zweite Fehde gegen den Undertaker einzusteigen, die in einem sehr guten Match auf der größten aller Bühnen endete. Auch wenn sein Abschied sehr emotional war und er dies mit einem Comeback zerstören würde, bin ich doch der Meinung, dass der Showstopper noch ein bisschen Zeit übrig hätte, um noch ein wenig das zu tun, was er am besten kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jerseyhoolwrote on 26.08.2010:[10.0] "Nach dem Karriereende von HBK muss ich meine Meinung über ihn nach oben korrigieren. "The Main Event"hat wahrlich bewiesen, dass er zu Recht "Mr. Wrestlemania" genannt wird! Ein Kampf gegen den Undertaker bei WM 25, der ohne Probleme als eine der Sternstunden des Wrestling bezeichnet werden kann und ein sehr emotionales Ende gegen denselben Mann bei WM 26 in einem ebenfalls sehr guten, aber diesmal leider zu vorhersehbaren Match sind nur 2 der vielen Stationen, bei denen der Showstopper in den letzten Jahren seit meiner Erstbewertung glänzen konnte. Wie auch bei The Rock bin ich hier geneigt zu sagen, dass die Karriere viel zu früh vorbei war, aber bei einem Mann von 45 Jahren sollte man auch bedenken, dass es besser ist, auf den eigenen Füssen aus der Halle zu gehen, denn im Rollstuhl nach aussen geschoben werden zu müssen! Es war uns ein Fest, Mr. Hickenbottom! Thanks for the precious memories, we will miss you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SES-Memberwrote on 20.08.2010:[10.0] "Der Kerl ist einfach eine Wucht.  Unglaubliches Charisma und das Er in der Lage ist ein gutes Match auf die Beine zu stellen, darüber sind wir uns glaub ich alle einig. Auch nach über 20 Jahren im Buisness weis HBK noch zu unterhalten und es wird nie langweillig. Alleine wenn man mal die Fehden gegen den Taker angugt und die darauf folgenden Matches einfach nur klasse.  Er hat nicht um sonst die ganzen Namen wie Showstopper, Main Eventer u. s. w bekommen. 10 Punkte an Shawn Michaels. Thank you Shawn"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Saschwrote on 19.08.2010:[10.0] "Einer der revultionersten Wrestler der WWE das Leitermatch gegen Hall zb. war damals auf RTL2 wenn ich mich recht Erinnere der Hammer. Ich finde er hat das gewisse Etwas und finde Ihn sehr Unterhaltsam."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kaefigtierwrote on 18.08.2010:[9.0] "War immer ein sehr guter Worker, wenn er in den 90ern auch eine Primadonna backstage war, so konnte er mich im Rig oder am Mic doch meistens überzeugen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Miz 28wrote on 18.08.2010:[10.0] "Der beste Wrestler den es je gab mehr muss ich dazu nicht sagen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ray Robsonwrote on 17.08.2010:[10.0] "Wenn nicht er die zehn Punkte bekommt, wer dann? Das Total Package, von verrückten Bumps über Highflying und Brawling bis zu einem grandiosen overselling verbunden mit einem Charisma, das seinesgleichen sucht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HBK782wrote on 16.08.2010:[10.0] "War klar der beste Wrestler bislang. Eine Wrestling-Welt ohne ihn ist komisch. Seit ich Wrestling gucke (1991) war Shawn Michaels immer da. Ich freue mich für ihn, dass er nach dieser Bilderbuchkarriere ein erfülltes Leben als Familienvater führen kann. Das macht ihn auf ganzer Linie zu einem Idol. Großartiger Mann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: michiswrote on 15.08.2010:[10.0] "Wenn im Matchguide bei den TOp hudnert in den ersten 5 Matches immer der Name Shawn Michaels erscheint, muss man glaube ich nicht mehr sagen, wieso er die 10 Punkte verdient. In den letzten 25 Jahren hat er immer gut unterhalten. Seit seiner Pause war er noch um eingies stärker. Er schaffte es immer wieder ein gutes Match, zu einem sehr guten zu Machen. So einen wie ihn wird es nie wieder geben. Schade natürlich dass er nicht mehr da ist, aber es ist besser, er geht jetzt als humpelt mit 60 noch durch den Ring. So bleibt mir nur zu sagen, Danke Shawn, Danke für die vielen lustigen, spannenden, traurigen oder einfach geilen Momente in der Karriere des HBK. Wird für immer ne Legende bleiben und das zurecht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LumpiDXwrote on 21.07.2010:[10.0] "Für mich DER beste Wrestler allerzeiten. Am Mic genial, im Ring genial, es gibt einfach keinen besseren. 100%tiges Hall of Fame Mitglied"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: sebiwrote on 18.07.2010:[10.0] "Einer der Besten aller Zeiten. Er hat alles richtig gemacht, immer spannende Matches abgeliefert, teilweise die Besten aller Zeiten, er hat grandiose Promos gehalten und hat auf dem Zenit seiner Karriere aufgehört. So macht man das."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: WrestlingFanDuisburgwrote on 15.07.2010:[10.0] "Absolut Wahnsinn der Mann. Im Ring ein Genie der ein gutes Match nachdem anderen gezeigt hat. Auch am Mic absolut Klasse. Kann nur noch nicht ganz glauben, dass er seine Karriere beendet hat. HBK 4 EVER"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: samuel86wrote on 14.07.2010:[10.0] "Er hat einige der denkwürdigsten Matches aller Zeiten bestriten, nicht nur in ferner, sonder auch in naher Vergangenheit. Am Mic absolute Klasse, seine letzte Fehde mit dem Undertaker wird mir noch sehr lange in Erinnerung bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HBK1986RKOwrote on 30.06.2010:[10.0] "Unumstritten einer der besten aller Zeiten im Ring und am Mikro."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Shrinxwrote on 30.06.2010:[10.0] "Was hat der in seiner Karriere schon für Matches abgeliefert. Einfach nur genial der Mann.  Und auch wenn das Macht bei WM 26 ein wenig Bedeutung verlieren würde, hoffe ich, dass er irgendwann nochmal zurück kommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kenshin Uesugiwrote on 24.06.2010:[9.0] "Shawn Michaels hat über Jahre bewiesen das er ein Garant für gutes Wrestling ist und in der WWE so ziemlich jeden zur einen ansehnlichen Match hinkriegen kann. Ich persönlich habe Shawn Michaels zwar nie als die Ikone für den gesamten Wrestling Planeten gesehen, aber wer über Jahre es schafft trotz diverser Verletzungen, an historischen Matches beteiligt zu sein, der so viele Fans begeistern kann, der trotz eines früheren schwierigen Charakter im Alter reife zeigt und wie ein Mann hinter seinen Kollegen und Firma steht, da kann man doch nur den Hut ziehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Excellence of Executionwrote on 31.05.2010:[10.0] "Auch wenn ich die WWE momentan nur mit einem Auge verfolge, habe ich natürlich (als Hart Fan) den Angle um Hart, Wrestlemania 26 und das phänomenale Career vs Streak Match angeschaut. Und auch das anschließende RAW. Meine anfänglichen Zweifel, ob die Aussprache zwischen Hart und Michaels nichts als bloße Inszenierung war, verflogen während Michaels's (angenehm schlichter) Abschiedsrede, als er mit wenigen aber umso klareren Worten reinen Tisch machte - und sich meinen bedingungslosen Respekt vollends zurück verdient hat. Wenn Bret ihm vergeben konnte, warum soll ich das dann nicht können? ^^ Mit Shawn Michaels geht der letzte Wrestler von der großen WWF (! ) Bühne, der in den 80ern bereits mitgemischt hat und der WWF/E so lange seinen Stempel aufdrücken konnte, wie sonst wohl nur der Undertaker. Er war einer der ganz Großen. Chapeau Shawn, you are my Daddy!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: morph80wrote on 30.05.2010:[10.0] "Jeder der WWE verfolgt hat kennt ihn und seine geniale Performance, also man braucht da nicht viele Worte verlieren. Für ihn müsste man eigentlich 11 Punkte geben..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Rockerwrote on 28.05.2010:[10.0] "Er ist eine lebende Legende. Er ist mein absuluter Lieblings Wrestler. Sein Können im Ring ist sagenhaft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Erasedwrote on 23.05.2010:[10.0] "Shawn Michaels, The Icon, The Heartbreak Kid, The Showstopper. All diese Kosenamen hat er sich doch tatsächlich wirklich verdient. Jedes Jahr lieferte er exzellente Matches und Promos ab, von denen sich heute jeder Wrestler eine Scheibe abschneiden könnte. Hoch anrechnen muss man ihm seine konstante Leistung, die er über 20 Jahre an den Tag legte. Einen weiteren Punkt, den man ihm anrechnen kann: Er wusste, wann genug ist und hat seine Karriere rechtzeitig beendet und wird auch als klasse Entertainer und Technicker den Leuten im Kopf bleiben und nicht als altes Wrack, wie einige seiner Kollegen, die den richtigen Zeitpunkt um Jahrzehnte verpasst haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mathias Rekaschwrote on 20.05.2010:[10.0] "Shawn Michaels hat mich durch meine Wrestlingfan-Karriere begleitet wie kaum ein anderer. Von den Endzeiten der Rockers Anfang der 90er über den plötzlichen Turn gegen seinen Partner und der Zeit als arroganter, selbstverliebter Beau und den Wandel zum Publikumsliebling, dann zum Degenerierten und schließlich wieder zum Fanmagneten, habe ich seine Karriere ausführlich beobachtet und bin immer schon ein Fan von ihm gewesen. Wie kaum einem Zweiten gelingt es ihm Matches spannend zu gestalten, schwächere Gegner zu tragen und die Fans mit seiner Hingabe zu begeistern. Das er in seinen "wilden Zeiten" das selbst mal nicht so genau genommen hat, tut dieser Top-Bewertung keinen Abbruch. HBK bleibt für mich der beste Performer meiner Fangeneration (1991-2010) und durch sein Karriereende hinterlässt er eine spürbare Lücke bei WWE, die schwer zu stopfen sein wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Golgotawrote on 19.05.2010:[10.0] "Für mich der beste Wrestler aller Zeiten. Hätte auch gegen einen Kachelofen wrestlen können und dabei das Match of the Year abgeliefert. Shawn, ich werde dich vermissen. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TeeHaawrote on 18.05.2010:[10.0] "10/10, die Höchstnote. Das war klar, als ich das Fenster öffnete. Die Frage war nur, wie ich das Begründete. Wir können hier die alten Clique, Bret Hart und sonstige Charaktergeschichten öffnen. Wir können über Face-DX-Hornswoggle-Humor reden, der nicht Jedermans Sache war (mein Fall war's übrigens auch nicht) Das Gesamtpacket HBK: War über all die Jahre erstklassig. Was bleibt von ihm in der Endbetrachtung: Welches Attribut trifft es am ehesten: Legendär! 11/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Edge96wrote on 11.05.2010:[10.0] "Einer der allerbesten die es jemals gab! Etwas anderes als 10 Punkte kommt nicht in Frage!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Coruuswrote on 10.05.2010:[10.0] "Eine lebende Legende! Einer der größten Wrestler überhaupt! 10 Punkte was anderes kann ich einfach nicht geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: smithy1994wrote on 07.05.2010:[8.0] "Er ist eine richtige Legende der das erreicht hat was er wollte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sandmannwrote on 04.05.2010:[10.0] "Tja was soll man zum Heartbreak Kid noch sagen. In den letzten 10 Jahren wohl DER Mainstream Wrestler schlechthin. Eigentlich immer große Matches und Fehden. Wirkliche Klassiker gegen den Undertaker, Jericho, Orton, Triple H, Cena usw. Hat mit allen Großen im Ring gestanden und es verstanden der Showstopper zu sein. Das nach seiner wirklich guten Tag Team Zeit mit Jannetty auch ein paar schwarze Flecken auf seiner weißen Weste entstanden sind kann man ihm mittlerweile wohl verzeihen denke ich. Seinen wohl verdienten Ruhestand gönne ich ihm und freue mich wenn er es wirklich schafft nicht mehr zurückzukehren. Einen großen Dank an einen der besten den es je gab, gibt und geben wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Icebreakerwrote on 03.05.2010:"Flaechenbomber Meinungsfreiheit? Bei 0 Punkten für McMahon mit Begründung das er ein alter Sack ist? Erst denken, dann schreiben"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: element-41wrote on 03.05.2010:[10.0] "Was soll man da noch großartig schreiben, der Name sagt eigentlich alles. Er ist eine Legende und ein zukünftiger Hall of Famer. 10 Punkte!  Edit: Icebreaker, du schreibst mir aus der Seele."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RickRollwrote on 30.04.2010:[8.0] "Hat mich nie so wirklich "interessiert", jedoch KANN man ihn nicht seine In-Ring Qualitäten absprechen. Gehört(e) zu den besten, wenn nicht der beste wenn es um die WWE geht, jedoch gibt es (für mich jedenfalls) weit ausbessere. Hat ne dicke Lücke bei der WWE hinterlassen. EDIT: GAMBIT, wie lächerlich ist das denn? Klaust du einfach mein Kommentar von Bret Hart und ersetzt Bret mit Shawn."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Rated R Superstar EDGEwrote on 29.04.2010:[10.0] "Nur 3 gute Matches? Alles klar im Matchguide sind von den Top 100 Matches alleine 19 mit der Beteiligung von Shawn Michaels. Shawn hat 25 Jahre lang immer 110% für uns Fans gegeben und war an so vielen Klassikern beteiligt wie kein anderer. Für diese Leistung hat er auf jeden Fall 10 Punkte verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheUndertakerwrote on 29.04.2010:[10.0] "@TheJohnMorrison Es ist das Gimmick von HBK Mr. Wrestlemania zu sein, bei JEDER Wrestlemania an der er beteiligt war hat er die Show gestohlen und ich sag es auch da kann man nicht ein einziges Match herausgreifen. Nach WM 24 ist es schon schwer zwischen HBK vs Bret und HBK vs Flair zu entscheiden wenn man davon ausgeht das zu dem Zeitpunkt Naitch seine Karriere beendet hat. Zu meiner Wertung, einfach grandios, eine Legende der aus einem Kartoffelsack ein *****-Match herausholen kann.  @GAMBIT: LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOL"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Damon Strikerwrote on 29.04.2010:[10.0] "Auch ohne die Sentimentalität, die einem jetzt nach seinem Abschied zu überkommen droht, ohne Frage 10 Punkte! Hat mich seit meinem ersten Kontakt 1993 begleitet und begeistert (seine Pause war zufällig auch meine Pause vom Wrestling)! Grandios im Ring und am Mikrofon! Charisma für einen ganzen Roster und hat immer alles gegeben! Wenn man mich nach den besten Fehden/Matches im Mainstreamwrestling fragen würde, fallen mir spontan hauptsächlich solche mit Beteilung von HBK ein (u. a. die gegen Ramon, Jericho, Angle, Undertaker, Hogan, ... ). Sein nicht ganz so korrektes Verhalten in den 90er Jahren will ich ihm da einfach mal verzeihen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Reiskartoffelwrote on 29.04.2010:[10.0] "Gnadenlos UNTERbewertet, sosnt hätte er mind. 10 Punkte!  Er war eine moderne Legende. Er hat sich diesen Status hart erarbeitet. Er hatte viele legendäre Matches und es ist schade, dass er jetzt gegangen ist.  Und wenn man schon Shawn schlecht macht, dann braucht man schon eine gescheite Begründung. Weil ich weiß nicht, was man noch mehr von einem Wrestler will."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BlackXwrote on 28.04.2010:[10.0] "Mr. Wrestlemania, The Showstopper, The Icon. Genau das ist das Heartbreak Kid, Shawn Michaels. Der wohl beste In-Ring Worker den die WWF/WWE in meinen Augen je hatte. Sei es als Teil der Rockers, der nWo, D-Generation X oder Solo, HBK wusste immer im Ring und am Mic zu überzeugen. Ob er seinem Namen bei Wrestlemania gerecht wurde oder bei anderen Auftritten das Haus rockte, er lieferte immer eine gute Leistung ab. Das I-Tüpfelchen auf einer Bilderbuch Karriere bildete sein Abschied mit zwei Topfehden gegen den Deadman. Der Showstealer hat mehr als nur die Show, sondern auch die Herzen vieler Wrestlingfans gestohlen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: spankywrote on 20.04.2010:[10.0] "Der beste Wrestler für mich, da er alle wichtigen Kriterien nicht nur erfüllte, sondern bei weitem übertraf und wahrscheinlich nicht nur mir somit jedes Mal eine Wahnsinnsshow lieferte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Aquifelwrote on 20.04.2010:[10.0] "Shawn Michaels ist definitiv einer der Besten aller Zeiten. Auch wenn er Backstage wohl nicht immer der Umgänglichste gewesen sein soll (die Storys mit Bret Hart z. B. kennt ja jeder), im Ring enttäuscht er nie (zumindest, wenn man ihn nicht allzu undankbar bookt). Sein Karriereende bei Wrestlemania war emotional und seiner definitiv würdig. Schade, dass die WWE jetzt einen ihrer besten Worker verloren hat. btw. "Weil ich das Recht habe gebe ich 0 Punkte"? Wie wäre es mal mit einer Begründung? Leute rennen hier rum..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Berndwrote on 19.04.2010:[10.0] "Großartiger Performer, der mich seit Jahren langweilt. (6 Pkt) Edit: So, dann ist es also vorbei. Der beste Abgang eines WWElers aller Zeiten. Hoffentlicht versaut er es sich nicht. Und für die Karriere gibt's dann auch die 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mr Sirwrote on 19.04.2010:[10.0] "Mein ultimativer Lieblingswrestler aller Zeiten und für mich der Beste den das Business je hervorgebracht hat. Kleiner Funfact: Derzeit führt HBK hier auf Cagematch die all time Top 100 Liste der besten Wrestler an, ist an jedem der Top 5 Matches im Matchguide beteiligt gewesen, hält den ersten Platz der besten 100 Fehden mit seiner Fehde gegen Jericho und besetzt mit seiner Abschiedspromo ebenfalls Platz eins der Top 100 der Promos. Was konnte dieser Mann eigentlich NICHT?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mick Funkwrote on 15.04.2010:[10.0] "Sollte es das tatsächlich gewesen sein mit der Karriere von Michaels, dann hat er den perfekten Moment gewählt abzutreten und am Ende nochmal einen Paukenschlag abgeliefert. Man muss sich eigentlich nur die Top 100 vom Matchguide anschauen um zu sehen wie gut Michaels im Ring war. Am Mic insbesondere als Heel ebenfalls grandios. Unterm Strich der für mich persönlich beste Mainstream Wrestler aller Zeiten und so wie es im Moment beim Nachwuchs aussieht (obwohl er keinesfalls schwach ist), wird das auch für immer so bleiben. Danke Shawn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PunkZEROwrote on 15.04.2010:[10.0] "Was ein Techniker, was ein Durchhaltevermögen, was für eine bespielhafte Karriere voll Höhen und Tiefen...... was ein Wrestler. THANK YOU SHAWN"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: funkyskullwrote on 13.04.2010:[9.0] "Was soll ich sagen? Einer der Besten. Und trotz einiger Tiefschläge muss man doch sagen, dass das Niveau seiner Matches durchwegs hoch war - eine Legende. Ich werd' ihn vermissen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: coldbeer316wrote on 12.04.2010:[10.0] "Shawn Michaels! The Main Event! The Show Stopper ! Mr. Wrestlemania! Auch wenn er schon mehrere Jahre am überlegen war seine Karriere zu beenden, kam es doch für mich bei Wrestlemania sehr plötzlich! Hoffe nur das er sich nur eine weitere Auszeit nimmt und dann einen letzten großen Run bekommt! Habe ihn vom Anfang an seiner WWE Zeit gesehen und er hat mich immer gut unterhalten! Sollte es wirklich sein endgültiger Abschied gewesen sein dann wünsch ich alles gute bei seinen weiteren Projekten und das er möglichst bald in die Hall of Fame aufgenommen wird ! Danke HBK!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Master of Disasterwrote on 10.04.2010:[10.0] "The Show stopped forever.  Aber der Heartbreak Kid wird für immer unvergessen bleiben!  Sein Charisma, seine In-Ring-Skills haben ihn zum besten gemacht, was es im Wrestling gibt. Eine würdevoller Abgang.  An Icon leaved the building."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GoddeKSCwrote on 08.04.2010:[10.0] "Man kann mit einem schlechten Gewissen auf sein Verhalten in den 90ern zurückblicken, man kann den Screwjob an Bret Hart als unverzeihlich ansehen, aber man kommt nicht umher seine Klasse bei jedem Auftritt aufs Neue zu bewundern.... Ich mag zwar ein HBK-Mark sein, aber ich bin es zurecht, denn es gibt keinen Wrestler, der diesem Mann das Wasser reichen könnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Matt Mackswrote on 06.04.2010:[10.0] "Der beste Beweis dafür, dass man eben nicht Muskeln wie ein Gorilla haben muss, um in der WWE über ein Jahrzehnt an der Spitze mitspielen zu können. Michaels verdankt seinen Erfolg seinem unbestreitbar großem Charisma und seiner noch größeren Leidenschaft, die er in seine Matches legt. Mehr als jeder andere amerikanische Topstar der letzten 20 Jahre war es stets Michaels' Ziel, die Fans in seinen Matches bestmöglich zu unterhalten, was bei seinem Talent bedeutete, dass er mitverantwortlich für ein paar der größten Klassiker der Wrestlinggeschichte auf amerikanischem Boden war. Für mich persönlich gab zwischen 2002 und 2010 keinen besseren Main Event-Wrestler im WWE-Stil und sein Karriereende bei WrestleMania 26 war für mich als Wrestlingfan das Ende einer Ära."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: rey mysterio 104wrote on 05.04.2010:[10.0] "Man kann wirklich nur danke sagen für die vielen tollen Matches. Das er es im Ring drauf hat(te) zeigt das er in den ersten 5! besten Matches bei Cagematch teilgenommen hat. Das spricht für sich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PSYCHQwrote on 05.04.2010:[10.0] "Shawn Michaels! Ich denke das reicht an Bewertung... :)    @HBK: Danke!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Parlaelwrote on 05.04.2010:[10.0] "Einer der besten seines Geschäfts. Klasse am Mic und vor allem super im Ring. Unglaubliche Ausstrahlung. Er ist mMn auch derjenige, der die DX erst so wirklich interessant macht und Hunter vor allem im Ring besser dastehen lässt. Auch und vor allem alleine finde ich ihn unglaublich toll. Man denke nur an das wahnsinns Match gegen den Undertaker bei WM 25. Alles in allem ein perfektes Komplettpaket eines Wrestlers.  Update: Jetzt wo er weg ist, vermiss ich ihn fast schon. Seine Bessesenheit, des Undertakers Streak zu brechen war in den letzten Wochen vor seinem Abschied ein fester Bestandteil von RAW. Das letzte Match gegen den Taker war ein würdiger Abschluss für eine fantastische Karriere. MMn jetzt schon eine Legende. Mal schauen, wann er in der HoF landet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Cenafan 09wrote on 02.04.2010:[10.0] "Er war der beste der jemals im WWE-TV auftrat.  "Ladies and Gentlemen "The Heartbreak Kid" Shawn Michaels has left the building""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Batistawrote on 02.04.2010:[10.0] "Einfach unglaublig dieser Mann! Alles andere als 10 Punkte wären nicht gerechtfertigt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dediwrote on 02.04.2010:[10.0] "Wohl einer der besten Wrestler der Geschichte fast jedes Match ist ein Highlight . Aber nun hat er seine Karriere beendet. Thank You HBK!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Superfichte100wrote on 02.04.2010:[10.0] "Schade das er bei Wrestle Mania nicht gewonnen hat, leider hat nun seine Karriere beendet"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mc FriTzwrote on 02.04.2010:[10.0] "Der erste der großen ist von uns gegangen! Ich glaube auch das in den nächsten Jahren, welche wie The Undertaker oder Batista ihre Karriere beenden werden.   Shawn Michaels ist weiterhin einer der besten Wrestlern die es je geben wird!   Seine Karriere war mit vielen Höhepunkten bestückt.   Ich saß bei Wrestlermania 26 vor dem TV, ich konnte nicht glaub was da geschieh vor meinen Augen!     Shawn Michaels du wirst allen WWE Fans fehlen.     HBK   Mr. Wrestlemania  The Icon  The Showstopper  The Main Event   Has left the Building :(     I will miss you HBK!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: chimpwrote on 01.04.2010:[10.0] "Als Wrestler und Entertainer war er sowieso immer über alle Zweifel erhaben, aber da ich ihn hauptsächlich Anfang der 90er gesehen habe, konnte ich ihm lange nicht die Topnote geben, da er mir menschlich und professionell einfach nicht gefallen hat. Nachdem ich ihn jetzt aber auch die letzten paar Jahre verfolgt habe und insbesondere nach seiner Abschiedsrede bei RAW komme ich an der 10 einfach nicht mehr vorbei. Inzwischen ist der Mann wirklich in ALLEN belangen ein Class Act und ich werde ihn vermissen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: judgement daywrote on 01.04.2010:[10.0] "Ohne Zweifel der größte Performer, den man in der WWE bisher gesehen hat. Man muss nur die Matchguide-Datenbank ansehen, an allen fünf höchstbewerteten Matches hat Shawn Michaels teilgenommen, sie zum größten Teil sogar getragen. Nicht nur im Ring ein unglaublicher Wrestler, der technisch auch in hohem Alter noch top war, sondern auch unglaublich charismatisch und mit tollem Mic-Work. Nach seiner Rückkehr 2002 auch unglaublich sympathisch, seinen Abschied einfach hinzunehmen fällt schwer. Thank you, Shawn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The-Real-Diablowrote on 01.04.2010:[10.0] "Damit ist die Zeit des besten Performer der WWE nun endgültig vorbei. Mir bleibt kaum noch etwas zu sagen. Dieser Mann wird die größte Lücke hinterlassen, die ich mir bis heute vorstellen konnte. Auch wenn ich gehofft hätte, dass er vor seinem Ende den Streak beenden darf, war der Abschied wunderschön und ich denke und hoffe, dass wir alle diesen großartigsten Wrestler der bisherigen WWE-Geschichte (! ) in Erinnerung behalten werden. Vielleicht sehen wir ihn noch einmal als On-Air Charakter (GM? ) wieder. BTW: Ein Titlerun zum Schluss wäre nicht verkehrt gewesen, Vince :/"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rinskywrote on 01.04.2010:[10.0] "So, da es nun wirklich danach aussieht, als wäre es sein endgültiges Ende als In-Ring Performer, ist jetzt auch für mich an der Zeit eine Bewertung über ihn zu verfassen. Was soll man großartiges zu ihm und seiner Karriere sagen? Shawn war mein erster Favorit, als ich 1993 anfing Wrestling zu schauen und blieb es bis zum heutigen Tag. Sein Charisma, seine Athletik, niemand, wirklich niemand vereinte Wrestling und Sports Entertainment so gut wie er. Er war das perfekte Gesamtpaket. Kein anderer (am ehesten noch der Undertaker) schaffte es solch eine Stimmung zu erzeugen, die Marks und Smarks und alt und jung gleichermaßen zu begeistern wusste. Er war mein absoluter Held in der Jugend und ich bin so froh, dass ich erst ein paar Monate vor seinem Rücktritt, seine Biografie las und mir somit erst wieder richtig bewusst wurde, was Shawn Michaels für mich und das ganze Business bedeutet. Er wird eine große Lücke in der WWE hinterlassen. Egal wie schlecht eine Show war, wenn Shawn noch irgendwo in der Uppercard gebookt war, wusste man, dass die Show noch gerettet wird. Er war und ist zurecht der Showstopper, the Icon, the Main Event, Mr. Wrestlemania und zukünftiger Hall of Famer. Bis zur Raw Folge nach Mania bin ich nicht von einem endgültigen Abschied ausgegangen, doch Michaels Worte waren zu eindeutig um noch daran zweifeln zu können. Er macht es richtig, er verabschiedet sich auf der größtmöglichen Bühne, gegen den bestmöglichsten Gegner und das auch noch im Main Event. Danke!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LabronBenoitwrote on 31.03.2010:[10.0] "Leider musste er jetzt doch seine Karriere beenden und ich denke, dass er auch nicht mehr zurückkommt. Das wars, aber für mich bleibt er der beste Wrestler überhaupt, hab in ihm immer ein großes Vorbild gesehen und das wird auch so bleiben! HBK, YOU ARE A GOD!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JohnnyCashwrote on 31.03.2010:[10.0] "1992, im Alter von 7 Jahren, wurde ich mit dem Wrestling-Virus infiziert. Unter anderem durch meine erste Sammelkarte... natürlich von HBK. Shawn Michaels war für mich, neben dem Undertaker, Bret Hart und RVD, Wrestling. Irgendwie ist es bei mir immer noch nicht angekommen, diesen Mann von nun an gar nicht mehr zu sehen. Er war ein Allroundtalent. Unfassbare Promo's (Who's your daddy, Montreal? ) und etliche geniale Matches kennzeichnen seinen Weg. Er hat einiges an Mist gebaut, aber wer nicht? Ich hätte ihm einen letzten World-Title-run so gegönnt. Schade, dass es nicht mehr dazu kommen wird. Noch schlimmer stimmt mich, dass wohl 3-4 großartige Fehden und 5-Sterne-Matches in ihm stecken. Ich werde ihn sehr vermissen... und das kann ich sonst nur von wenigen Wrestlern behaupten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: 123 kidwrote on 31.03.2010:[10.0] "Es kann nur einen Mr. Wrestlemania geben. Das hat Shawn bei WM 26 nochmals bewiesen. Dieses Match war ein krönender Abschluss einer einmaligen Karriere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Franjisewrote on 31.03.2010:[10.0] "Der beste Wrestler aller Zeiten! Und das ist nicht nur so dahin gesagt. Es gibt kaum jemanden, der ihm Ring so ueberzeugend war wie Shawn Michaels. Er war und ist der beste In-Ring-Performer, und dazu mit schauspielerischem Talent ausgestattet, welches im Wrestlingbusiness seines Gleichen sucht. Keiner verkauft ein Leiden so wie HBK. Ausserdem ist er ein Meister am Mikrofon, verkauft jede Fehde exzellent. Und zu seiner Leistung im Seilgeviert braucht man nicht mehr viel zu sagen. Es ist unglaublich schade, dass er seine Karriere beendet. Ich werde ihn vermissen, the Icon, the Main Event, the Showstopper & MR. WRESTLEMANIA: "Heartbreak Kid" Shawn Michaels. There was never anyone any better!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RIKYwrote on 31.03.2010:[10.0] "Ganz klare, unumstrittene und gerechtfertigte 10 Punkte! Meiner Meinung nach wird jede Bewertung unter 10 einfach der Leistung des Heartbreak Kid nicht gerecht. Viele seiner Matches sind Klassiker wurden ausgezeichnet und werden vielen, wenn nicht allen, die sie gesehen haben in Erringerung bleiben. Ohne Zweifel war er ein Enfant Terrible, hat sich quergestellt war ein Egomane, das mag alles sein, ABER er hat sich, besonders nach seinem Comeback auch für Gegner hingelegt um diese over zu bringen. Seine Matches, Promos und Auftreten sprechen Bände. Ich hatte mal das Glück und die Ehre den Heartbreak Kid zu sprechen (September 2008 in Paris). Starallüren hat er keine, ist bodenständig und glaubwürdig. Er spielt den Heartbreak Kid nicht... Er IST der Heartbreak Kid. Man soll auch nicht vergessen dass seine Wrestlingschule auch den einen oder anderen Star hervorgebracht hat, nicht zuletzt Bryan Danielson, oder Daniel Bryan. Man sollte jetzt nicht den Fehler machen und irgendjemandem mit dem Showstopper zu vergleichen, denn er war, ist und wird immer einzigartig bleiben! Ich für meinen Teil werde ihn sehr vermissen. Ich bin "mit ihm aufgewachsen", durch ihn habe ich das Wrestling entdeckt. Mr. Wrestlemania: Live long and prosper!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hulksterwrote on 31.03.2010:[10.0] "Der beste Wrestler aller Zeiten. Ich kann nicht glauben das seine Karriere zuende ist. Ich hoffe dass er noch einmal zürück kommt denn es wird sehr schwer diese Lücke zu füllen. Bei seinem letzten Kampf kamen mir die Tränen den uns verschwindet der beste von der großen Bühne. Thank You Shawn Michaels, The Heart Break Kid, The Showstopper, Mr. Wrestlemania."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: risktakerwrote on 31.03.2010:[10.0] "Einer der besten Wrestler und Entertainer aller Zeiten. 10 Punkte sind für seine Kariere hochverdient. Danke HBK"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: heartbreakwrote on 31.03.2010:[10.0] "Seit 17 Jahren mein Grund um Wrestling zu schauen. Eigentlich muss man über ihn gar nicht mehr verlieren als: Er war und wird wohl auch immer der beste Wrestler aller Zeiten bleiben. Und der Rücktritt auf der Höhe seiner Karriere macht seinen Status als Legend nur noch deutlicher. Die Lücke, die er hinterlässt, ist gigantisch und ich bin mir nicht sicher, ob diese in den nächsten Jahren zu füllen ist. Machs gut Shawn. Danke für alles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Danicheckwrote on 30.03.2010:[10.0] "Er ist einer der Gründe, warum ich überhaupt angefangen hab, Wrestling anzuschauen. Er hat es verdient, so verabschiedet zu werden. Ganz klarer 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheRatedRLegendKillerwrote on 30.03.2010:[10.0] "Shawn Michaels zu bewerten ist für mich nicht schwer. Alles andere als eine 10 ist hier ganz einfach nicht zu rechtfertigen. Sein In Ring Können ist unübertroffen, egal ob Spot Wrestling, Chain Wrestling oder Mat Wrestling er hat alles drauf. Bei der Matchguide sind die ersten 5 Matches der Top 100 alle von Shawn Michaels. Er ist am Mic der Wahnsinn und einer der charismatischsten Superstars aller Zeiten. Er hat eine Ära geprägt, er war in der Zeit, als die WCW den Monday Night Raw dominierte, der einzige der die WWE noch attraktiv für die Fans machte. Wäre er nicht gewesen, würde es die WWE vielleicht gar nicht mehr geben. Seine Karriere ist der Wahnsinn. Er ist sicherlich der verdienteste Superstar der WWE und mit seinem letzten Match hat er es allen nochmal bewiesen. Es gibt ganz einfach niemanden der jemals an einen Shawn Michaels herankommen wird. Mr. Wrestlemania, the Icon, The Main Event, the Showstopper solche Namen bekommt man nicht, man verdient sie und wenn sie einer verdient hat, dann ist das Shawn Michaels. Jetzt bleibt nur noch zu sagen, Thank you Shawn und Heart Break Kid 4Ever..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LebendeLeichewrote on 30.03.2010:[10.0] "Großartiger Wrestler schon seit einigen Jahren. Ich frag mich nur warum er und HHH als DX nicht so dargestellt werden wie sie eigendlich sind, nämlich Legenden!  EDIT: Ich habe mich bisher sehr zurückgehalten die höste Punktzahl zu geben aber er hat es einfach verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Viperwrote on 30.03.2010:[10.0] "Einer der besten Wrestler überhaupt! Sehr traurig, dass er aufhört, aber ich akzeptier es. Eine lebende Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Knurkselwrote on 30.03.2010:[10.0] "Während seiner Karriere eine Legende und nach diesem Ende erst Recht. Ich hoffe nicht, dass er den gleichen Fehler macht wie ein Flair oder Hogan. Thank You Shawn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Zizouwrote on 30.03.2010:[10.0] "Sehr emotionaler Abschied. Endlich einer, der aufhört, wenn es am Schönsten ist, sprich er noch in der Lage ist ****+ Matches zu zeigen. Solch ein Abgang ist zwar immer auch schade für die Wrestlingwelt, aber die Gründe sind mehr als verständlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Buddy Hawkswrote on 30.03.2010:[10.0] "Nach Wrestlemania 26 möchte ich nun endlich eine Bewertung zum HBK abgeben. Ich habe damit gewartet weil ich mir denke, dass dies wirklich der letzte große Auftritt von Shawn Michaels gewesen ist. Sicherlich mögen in ihm noch ein paar sehr gute Matches stecken aber man sollte aufhören bevor die Kurve irgendwann wieder nach unten zeigt. Dies hat der HBK hier nun hoffentlich getan, auch wenn mir der Gedanke nicht wirklich gefällt. Neben dem Hitman und dem Undertaker war Shawn Michaels DER Wrestler meiner Kindheit und Jugend und ist es bis Heute geblieben. Die Ausstrahlung, seine Fähigkeiten am Mic und im Ring und seine Leidenschaft für dieses Business waren vorbildlich. Es war eben das Gesamtpaket was einfach stimmte und einen jedes Mal auf's neue begeistern konnte. Einen solchen Menschen nicht mehr aktiv im Ring zu sehen ist traurig, jedoch hat er es sich zu 100% verdient. Wenn es wirklich dabei bleibt und er nach diesem großen Finale nicht auch einer derer wird die wieder zurück kommen, Chapeau! Wer es nicht gesehen hat, sollte sich Wrestlemania 26 und die darauf folgende RAW Sendung ansehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kankurowrote on 30.03.2010:[10.0] "In jeder Hinsicht einer der besten und unterhaltsamsten Wrestler aller Zeiten. Eine schier endlose Liste an tollen Matches und Promos machen ihn zu einer echten Legende. Sein Abgang wird eine große Lücke hinterlassen. Thank you, Shawn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: kerschiwrote on 30.03.2010:[10.0] "Er ist einfach der Größte. Jedes gesagte Wort wäre zu viel. Icon, Main Event, Showstopper ...  Am besten gefällt er mir zwar als Heel, trotzdem bin ich heilfroh, dass Michaels uns noch so viele Jahre nach seinem Comebeck als Face unterhalten hat. Ich habe seinen Rücktritt immernoch nicht so ganz realisiert. Die Lücke, die er hinterlässt wird gigantisch sein. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: svenheinrichwrote on 30.03.2010:[10.0] "Was für ein Wrestlemania Match! Schade das er jetzt geht, hoffe aber dass er noch einmal zurück kommt und richtig aufdreht, nochmal World Champion wird und mit der DX nochmal auftrumpft, dass hätter er nach über 20 Jahren auf höchstem Niveau verdient!  Please Come Back!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Marcywrote on 30.03.2010:[10.0] "Nun ist er gegangen und die Lücke ist riesig. Zumindest die in meinem Herzen. 1993, als ich Wrestling zum ersten mal sah, war er dabei und gab 120%. 17 Jahre später war er noch immer bei 120% und hat den Abschied bekommen, den er verdient. Ich kann hier nur die Bestnote geben, für einen Mann, der das beste Gesamtpacket ist und war, was das Sports Entertainment zu bieten hat(te). Thank you Shawn! We'll never forget you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Papa Popanzwrote on 30.03.2010:[10.0] "Guter Wrestler und Entertainer - zum einen hoffe ich, dass er Wrestlemania nicht verliert, andererseits sollte er auch nicht den Streak in Gefahr bringen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: shoopdawoopwrote on 30.03.2010:[10.0] "Ich schreibe mal etwas ausfürlicher als die 2 Sätze von eben. Shawn Michaels ist für mich wahrscheinlich der kompletteste Wrestler aller Zeiten, der darüber hinaus auch noch weiß wann es Zeit ist aufzuhören. Jemand der als "Mr. Wrestlemania" bezeichnet wird nicht etwa weil er die meisten Matches gewonnen hat sondern weil er sich immer den Allerwertesten für eine super Show aufgerissen hat und dem Main Event eben die Show gestohlen hat, verdient meiner Meinung nach die allerhöchste Hochachtung. Anders als so manch anderer der nicht dazu bereit ist andere over zu bringen (Triple H) oder nur einen Haufen Spots aneinanderhängt erzählt Shawn Michaels im Ring noch Geschichten von Körper und Geist, von Herz und Verstand und von Ehrgeiz und Willen. Dass er nun in einer noch nicht mal miesen körperlichen Verfassung aufhört ist noch einmal besonders hervorzuheben, denn dies ist im Wrestling eher die Ausnahmeerscheinung wenn man sich mal die Resteverwertung drüben bei TNA anschaut. Daher Hut ab für einen Wrestler den man vielleicht nicht unbedingt vergöttern, aber dennoch sehr respektieren sollte für das was er getan und ins Rollen gebracht hat. Und das ist nun mal nichts weniger als die WWE von den frühen 90ern bis zur Attitude Era und danach nochmal für ein komplettes Jahrzehnt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: antihiphop2002wrote on 29.03.2010:[10.0] "In den 90er Jahren habe ich ihn noch gehasst wie die Pest, weil er für mich seinen damaligen Lebenswandel immer ausgestrahlt hatte und in allem was er tat Arrogant wirkte. Deshalb mochte ich ihn nicht, obwohl er damals schon ein weltklasse Wrestler gewesen ist. Doch seit seinem Comeback wirkt er ob nun im Ring oder in Interviews deutlich erwachsener. Er sieht nicht nur wesentlich Athletischer aus als in den Neunzigern, er ist es auch. Ich denke das sein Privates umdenken auch dazu geführt hat das er trotz seines Alters und der vielen wehwechen die er mit sich rum schleppt noch immer in der Lage ist jederzeit ein Macht of the Year zu bestreiten. Und wenn es das nach Wrestlemania 26 wirklich gewesen ist, dann meinen größten Respekt. Sicherlich ist er noch so gut das er wenn er sich ein bisschen schont noch 3 oder 4 Jahre auf diesem Level weiter machen kann. Aber zum richtigen Zeitpunkt aufzuhören schaffen ja auch nur ganz wenige. Und wenn er doch nur ne Pause einlegt um so besser denn jemandem wie ihm sieht man immer wieder gerne zu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fortuna1895wrote on 29.03.2010:[10.0] "Alleine heute abend hat Michaels gezeigt was für ein Wrestler er ist. Und das ist einfach nur pefekt gewesen! Die letzten Großen Matches von Shawn waren perfekt, dank ihm. Seine Karriere mag zwar nun vorbei sein, aber sein Name wird für immer in den Büchern der WWE stehen müssen! Hall of Fame 2011, ich glaube der erste steht fest, zumindest wenn er seine Karriere wirklich beendet. Nach dem Abgang habe ich daran aber keine Zweifel!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KingSvenwrote on 27.03.2010:[10.0] "In all seinen Jahren durchweg mehr als überzeugend. Er besitzt außerordentlich viel Charisma, ist ein exellenter Mic-Worker und zeigt sehr gute In-Ring-Leistungen. Auch jetzt, im Spätherbst seiner Karriere immer noch in der Lage auch schwächere Worker zu guten Matches und gegen gute Gegner Showstealer zu zeigen. Auch er zeichnet sich durch Hingabe zum Business aus so das hier 10 Punkte zu geben fast schon ein muss ist"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: 1234wrote on 26.03.2010:[6.0] "Ich fühle mich persönlich nicht sonderlich von Shawn Michaels unterhalten. Er ist zwar ohne Zweifel kein schlechter Wrestler, doch zu viele seiner Matches sind durch sein Overselling geprägt. Zudem sagt mir seine Art am Mikrofon nicht sonderlich zu. Da er aber zweifellos viel geleistet hat und auch schon gute Kämpfe bestritten hat, reicht es für die 3."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Paierowrote on 26.03.2010:[10.0] "Bevor er möglicherweise sein letztes Match seiner Karriere bestreitet, muss ich ihn doch bewertet haben. Wenn man was mit Wrestling verbinden möchte, dann ist immer einer der erstgenannten Shawn Michaels. Ich könnte noch unzählig weitere Dinge aufzählen, warum er sich eine 10. 0 hat, aber das reicht alleine schon aus!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mathonewrote on 22.03.2010:[10.0] "Sehr sehr guter Mann, was er im Moment gegen den Taker zeigt ist mit das beste ich je von ihm gesehen habe, man könnte ihn seine verbissenheit, dass er siegen will, sofort als wahr abkaufen. von daher 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Moyawrote on 15.03.2010:[10.0] "Wer es schafft, auch im fortgeschritten Alter noch spektakuläre, intensive und unterhaltsame Matches zu liefern, hat die volle Punktzahl verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Straight Edge Jerichoholicwrote on 14.03.2010:[10.0] "Ein brillianter Mann mehr kann ich dazu nicht sagen!  Mic-Work = Klasse!  In-Ring Skills = Klasse Das einzige was mich immer bisschen nervt ist das Move Overselling beim Irish Whip aber hey Shawn Michaels hat das erreicht was viele nicht erreichen werden und deshalb 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fat Mikewrote on 13.03.2010:[10.0] "In meinen Augen ist Shawn der beste Mainstream-Wrestler aller Zeiten. Charisma und Mikrofonfähigkeiten sind absolut Top und über seine herausragenden Wrestling-Skills braucht man eh kein Wort mehr verlieren. Kurzum: 10 Punkte für den Showstopper!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Galottawrote on 12.03.2010:[10.0] "Einfach ein Dauerbrenner, was soll man da noch groß begründen. Auch dieses Jahr wird er bei Wrestlemania gegen den Undertaker alle anderen in den Schatten stellen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Eazyewrote on 10.03.2010:[9.0] "Shawn Michaels hat eine beeindruckende Karriere hinter sich. Zuerst als Tag Team, dann als immer mehr ernst zu nehmender Einzelwrestler. Sein Ego war Anfangs schlimm, Ende der 90er drohte er endgültig abzustürzen, aber er kehrte 2002 zurück als besserer Mensch. Im Ring einfach eine Bombe, auch ansonsten ein charismatischer Wrestler, der seine Karriere als Legende beenden wird. Aber sein Ego war in den 90ern sehr daneben, weswegen ich ein Punkt abziehen musste, was mir aber nicht leicht fiel, ich aber schlussendlich doch durchziehen musste."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: tnawrestlingfanwrote on 10.03.2010:[5.0] "Ich kann garnichts mit dem Typen anfangen! Ich mag ihn nich, hab ihn nie gemocht.  Ich finde ihn seeehr langweilig! Mag sein das er in guter wrestler ist, aber wenn er immer wieder darüber spricht aufzuhören, dann soll er es auch entlich tun!  Im Endeffekt ist er nur eine Behinderung für aufsteigende Wrestler!"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MarcTrixwrote on 10.03.2010:[10.0] "Er ist und bleibt der beste Wrestler aller Zeiten. Genial am Mic, jede Promo von ihm ist zu genießen. Hat mit dem Undertaker das beste Wrestlingmatch aller Zeiten gemacht. Alle Matches von ihm der letzten jahre sind einfach nur spitze, Wenn er aufhört hinterlässt er ein großes loch bei wwe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Xemnaswrote on 08.03.2010:[10.0] "Dieser Wrestler ist einfach nur verdammt gut. Ich brauch eigentlich keine Gründe für diese Bewertung geben- Seine Promos, seine Matches, einfach nur Klasse. Natürlich hat er damals den Screwjob mitveranstaltet aber für mich ist es jetzt verjährt. (Für den Hitman wahrscheinlich nicht :) )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Yannick009wrote on 07.03.2010:[10.0] "Einfach ein unglaublicher Wrestler mit unglaublichen Micwork. Einer der Besten aller Zeiten..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dankowrote on 05.03.2010:[10.0] "Was soll man zu Shawn Michaels schon groß sagen? Alles was man über ihn sagen kann wurde hier schon gesagt. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DaRkwrote on 04.03.2010:[10.0] "Ein super Wrestler. Es kann schon sein, dass er altersbedingt nicht mehr so beweglich ist, aber dennoch ein super Highflyer und Techniker. Seine Promos sind ebenfalls spannend und auch glaubwürdig. Die 10-Punkte hat er auf jeden Fall verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mucs28wrote on 01.03.2010:[10.0] "Shawn Michaels, HBK, ist und bleibt einfach einer der besten Wrestler, die ich kenne. Auch in seinem hohen Alter ist er im Ring immer noch sehr, sehr gut (siehe WM XXV). Mal sehen was dieses Jahr wird. Durch sein unglaubliches Charisma ist er sehr wertvoll für die WWE. Er kann dem Zuschauer immer mal wieder eine Gänsehaut bringen, vor allem bei seinen Promos im Moment. Es lässt sich nicht bestreiten, er ist einfach mehr als GUT!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Y2Mikewrote on 28.02.2010:[10.0] "Weiß sowohl als Heel, als auch als Face volkommen zu überzeugen. Zählt trotz fortgeschrittenen Alters noch immer zu den besten Performern im gesamten Roster. Schauspielerisches Talent und Charisma ohne Ende.  Seit seinem Comeback auch charakterlich schwer in Ordnung.  Einer DER Legenden im Wrestling!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Acid Dwrote on 27.02.2010:[10.0] "Shawn war, und ist schon immer einer meiner Lieblingswrestler gewesen. Seine Matches haben mich schon damals als Kind begeistert, und sie schaffen es auch heute noch problemlos. Shawn ist einfach ein Gesammtpaket bei dem alles stimmt. In-Ring skills , Charisma, Mic Work, Finisher usw. Neben dem Undertaker, für mich, der inbegriff einer Legende. Ich freue mich auf WM 26."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sharpshooterwrote on 18.02.2010:[6.0] "Ich bin Hitman Fan, aber man kann ihm sein wrestlerisches Können und seine Mic Fahigkeiten nicht aberkennen! Hätte allerdings nach Ž98 nicht wiederkehren sollen. Aufgrund seines Alters wirkt sein Gimmick altbacken und mitleidserregend. "
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Cripplerwrote on 17.02.2010:[9.0] "Er ist eine lebende Legende , er ist schon sehr lange dabei und hat meiner Meinung nach immer etwas dazu gelernt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Evilsmilewrote on 14.02.2010:[10.0] "Der beste Wrestler aller Zeiten, er kann am besten fighten. Für die Arbeit am Micro kann man ihn nur beneiden ! Das Charisma ist spitze und der Showstopper ist ein Meister der Comedy und Witze. Heel oder Face, das ist egal, HBK rockt den Saal. Seine Ausdauer ist sehr groß, im Ring legt die Ikone richtig los.  Für klasse Technik und Highflying bekannt, spielt Michaels jeden an die Wand. Sein Gesamtpacket ist einfach das Beste ! Ach ja... persönlich und backstage natürlich äußerst bösartig, er hat schlimme Sachen angestellt... unangehme Dinge... er hat den Hulkster verspottet... er hat den Hitman betrogen und ebenfalls verspottet... er hat Pat Patterson schöne Augen gemacht oder so, damit er an die Spitze kommt (das schrieb hier jemand in seiner Bewertung)... er hat Marty Jannetty die Karriere versaut... Nächste Projekte : Dem Undertaker Leim in seinen Hut schmieren, erneut den Hitman betrügen, den Nasenhaarentferner von Triple H manipulieren, Big Show vor einem Match Abführmittel ins Essen mischen und CM Punk Juckpulver in den Bart streuen..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Manu Adamswrote on 13.02.2010:[10.0] "Shawn Michaels gehört zu den besten Wrestlern, der mit eigentlich jedem ein ordentliches Match zu Stande bringt. Man sehe sich nur seine Matchguide Liste an. Shawn hat in den letzten 8 Jahren fast 100 Matches bestritten die der Observer mit mindestens ***1/2 Sternen bewertet hat. Wer kann das noch von sich behaupten, bis vielleicht auf Kurt Angle. Ein ganz großer in diesem Sport."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: tobiasthegreatone1wrote on 13.02.2010:[10.0] "War schon immer ein von HBK, muss aber sagen das er tatsächlich einer der besten In-Ring Perfomer ist die es gibt. Als Heel genial, man erinnere sich nur mal an die " Whos your Daddy " Promo. Schon damals klasse im Team mit Marty Jannety. Und er kann auch den lustigen Typen( DX ) spielen. In sachen Entertaining und Mic-work ist er sicherlich einer der größten den die WWE je hatte. Er liefert auch heute noch Top Leistung und zeigt tolle Matches. Ich ziehe ihm einen Punkt ab da mich sein Momentanes DX Gimmick nervt EDIT : Find seinen Drang nach Taker echt gut und interessant es kommt der split von DX immer näher und deshalb gebe ich einen Punkt mehr."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: novacanewrote on 12.02.2010:[10.0] "Wahrscheinlich einer der besten Wrestler aller Zeiten. Respekt vor dem was er in seinem gesetzten Alter noch alles zeigen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: stinger89wrote on 04.02.2010:[10.0] "There is one Mr. WRESTLEMANIA.... einfach einer der komplettesten Wrestler aller Zeiten. Meiner Meinung nach hat er das beste Selling überhaupt..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Vanniwrote on 02.02.2010:[10.0] "HBK ist der erste Wrestler, der von mir die volle Punktzahl bekommt. Warum? Weil er es einfach verdient hat. Er ist im Ring einer der besten in der WWE, wenn nicht sogar der Beste mit all seiner Erfahrung. Dazu kommt, dass er eine verdammt großartige Körpersprache hat und mit Gestik und Mimik zu überzeugen weiß. Und auch am Mic können sich viele Superstars noch etwas vom Showstopper abgucken. Living legend!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GibDirDreggischwrote on 01.02.2010:[10.0] "Shawn Micheals ist wohlmöglich das kompletteste Paket, das je einen WWF/E Ring betreten hat. Ein Performer vor dem Herren in jeder Hinsicht und das seit nunmehr über 2 Jahrzehnten. Ein Mann, der nie deplaziert wirkt in dem, was er tut, der trotz seines nicht gerade furchteinflößenden Körperbaus für jeden einen glaubhaften und unberechenbaren Gegner darstellt. In-Ring-Skillz unverändert top, Charisma en masse, vom Mic-Work her der vielleicht beste Aktive, aber vor allem ist er einer der wenigen in der heutigen Zeit, der es schafft, in jedem Match, das er bestreitet, eine kleine Geschichte zu "erzählen". Das ist eine Kunst, die gar nicht hoch genug bewertet werden kann. 10 pkt nur, weil die Skala nicht höher geht ; -)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Big Bad Booty Babywrote on 30.01.2010:[10.0] "Er mag vielleicht nicht mehr so beweglich sein wie manches Indy-Talenst, aber er vereint seine technischen Fähigkeiten sowie die als Highflyer mit einem einzigartigen Gefühl für Ringpsychologie. Das ist was ihn so gut macht. Hinzu kommen noch die glaubwürdigen, tollen Promos, sowie göttliche Exemplare wie die gegen Hogan anno 2005. Michaels ist einfach das Beste was man sich im Mainstream wünschen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: asraelwrote on 30.01.2010:[8.0] "Bin bereit mir hier auch negative Bewertungen einzufangen, aber da muss man wohl durch. Objektiv betrachtet ist Shawn Michaels ein toller Wrestler, eine absolute Legende. Schon im Team mit Marty Jannetty war er spitze. Der Turn, die Zeiten als Boy Toy und die Fehden mit Razor Ramon waren klasse. Technisch kann ihm niemand was vormachen und auch am Mic erzeugt er beim Publikum immer heftige Reaktionen, ob es nun Buh-Rufe sind oder frenetische Jubelstürme. Michaels hat immer polarisiert. Eigentlich eine Schande, dass er sich für Hogan hinlegen musste, da er der eindeutig bessere Wrestler etc. zu dieser Zeit noch war. Wie gesagt, eigentlich. Die Geister, des Montreal Screwjobs und seinem Getue, dass er sich für niemanden mehr hinlege, holten ihn hier ein. Und das ist auch gut so! Muss hier einfach den jungen Bret Hart-Fan von damals auspacken! Und die letzten ein oder zwei Jahre ist er auch nur noch mit seinem traurigen Hundeblick unterwegs. Wie weit das mit der Privatperson Hickenbottom und seinem Glauben zu tun hat, kann und will ich nicht beurteilen. Bisschen glücklicher könnte sein Gimmick aber wieder werden. Fazit: ein toller Showman, Mr. Wrestlemania - aber die Survivor Series von einst wird ihn auf meiner Favourite-Liste nie nach oben bringen!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RoHSupporterwrote on 25.01.2010:[10.0] "Shawn Michaels ist einfach der größte Sports Entainer den die Welt zu bieten hat. Er ist ein guter Single Wrestler sowohl auch Tag Team Wrestler. Er kann am Mic mehr überzeugen als so manch anderer *hust* triple h *hust* Im ring kann er jetzt schon sehr lange ohne einen druchhänger die besten Leistungen des Jahres zeigen. HBK ist und bleibt der beste -10-"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: quazogenwrote on 25.01.2010:[10.0] "10 Punkte sind hier Pflicht. Seit vielen vielen Jahren steht Shawn für starke Matches, gutes Micwork und Entertainement der absoluten Weltklasse. Als Heartbreak Kid, Showstopper oder auch in der DX immer solide bis starke Leistungen. Seine vielen MOTY-Candidates (gegen Angle bei WM, Triple Threat WM, Jericho WM und nicht zuletzt sein "Return Street-Fight" gegen Triple H beim Slam 2002) machen schwache Momente mehr als nebensächlich in der Gesamtbewertung. Schwache Momente sind für mich die Fehde gegen JBL oder die 2 leider sehr schwachen Matches gegen Jericho. Schwach auf hohem Niveau.. Mr. Wrestlemania auch schon vor über 15 genial. Ein Geschenk ans Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Unrated Superstarwrote on 13.01.2010:[10.0] ""Buähähä - ich kann ihn nicht leiden" oder "Wuähähä - er hat Bret betrogen". Was sind denn das für Aussagen? Shawn schon lange dabei und kennt sich daher im Business aus. Neben dem Undertaker und Triple H ist er zur Zeit noch der einzige der alten Garde aus den 90ern, die dort bereits im Main Event standen. Außerdem ein hervorragender Worker mit enormem Ring- & Mic-Talent. Kann auch mit Grobmotorikern wie Chris Masters und Batista gute Matches zeigen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mizisawesomewrote on 10.01.2010:[9.0] "Er hat das Buisseness ganz einfach verstanden: Zeig gute Matches, auch gegen schlechte Wrestler und dir stehen alle Türen offen. Natürlich hat er genau das auch nur zu seinem Vorteil ausgenutzt. Ich gebe 9 Punkte, weil er eine echte Größe ist. Ich ziehe den Punkt zur Zehn nur ab, weil er menschlich ein Arschloch (war), weil er nur noch ein Wrack ist, der keine Ausstrahlung mehr hat. Doch einfach für die großartigen Matches, die er abliefern kann hat er eine hohe Wertung verdient."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Exist 2 Inspirewrote on 09.01.2010:[10.0] "Ein Jahrhundert Wrestler, der wie kaum ein anderer als perfektes Beispiel für einen kompletten Wrestler dient. Tolle Micskills gepaart mit einem außerordentlichem Talent fürs Selling ergeben die perfekte Mischung. Im Ring kann man HBK ebenfalls nichts vormachen, er schafft es beinahe mit jedem Wrestler ein gutes Match auf die Beine zu stellen und ist immer für einen Klassiker gut (zuletzt gegen den Undertaker bei Wrestlemania 25). An den 10 Punkten für HBK führt einfach kein Weg vorbei!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: gunniwrote on 08.01.2010:[10.0] "Wenn er nicht grade als "DX" herumblödelt und sich auf das besinnt was er ist, nämlich "The Showstopper", "Mr. Wrestlemania". Dann kann ihm KEINER das Wasser reichen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RatedRJuliwrote on 07.01.2010:[10.0] "The Icon + Mr. Wrestlemania + The Main Event =10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: hatebreederwrote on 02.01.2010:[10.0] "Der beste WWE-Style Wrestler, den es gibt. Keiner kann mehr Dramatik in ein Match bringen als der Heart Break Kid. Shawn Michaels ist ein Top-Mann und es ist traurig, dass er seit Jahren in keiner ernsten Titelfehde mehr gewesen ist. Zum Abschluss seiner Karriere würde ich es ihm aber gönnen, sich das große Gold noch einmal umzuschnallen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Aesopwrote on 01.01.2010:[10.0] "Shawn Michaels ist einfach eine Legende, als Heel in den Nenzigern feierte er seinen Durchbruch und seine Rivalität mit Hart ist eine der besten aller Zeiten, auch heute kann er noch überzeugen obwohl ich die DX nicht mag und er lieber gegen Triple H fehden sollte, ist alles andere als eine 10 für mich nicht verständlich, im Ring super, am Mic super und bei WM 25 hat er eins der besten Matches seiner Karriere abgeliefert und das will schon was heißen außerdem war seine Fehde mit Jericho im Jahre 2008 die für mich beste in dem vergangenen Jahrzehnt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: vgw77wrote on 24.12.2009:[10.0] "So oft wie kein anderer hat er die Show gestohlen, alles andere als die klare 10! wäre einfach nicht vorstellbar!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Detrituswrote on 13.12.2009:[9.0] "Wenn er irgendwann mal die Stiefel an den Nagel hängen sollte, wird der Wrestlingwelt durchaus einer der größten und besten Superstars fehlen. Allerdings befürchte ich ebenso, dass er im laufe der Zeit seine Legende zerstören könnte, wenn er nicht rechtzeitig den Absprung schafft. Klar sieht man ihn gern im Ring und seine Promos sind Weltklasse aber leider ist seine Zeit auch abgelaufen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: downtown2wrote on 02.12.2009:[10.0] "Der zweite Karriereabschnitt von Michaels ist für die Bewertung sehr wichtig, denn er ist der Entscheidendere. In der ersten Phase seiner Laufbahn ist Michaels durchaus zu einem Megastar in diesem Geschäft geworden und hielt eine Menge Gold. Jedoch erst die zweite Phase macht ihn zur Legende. Die persönliche Weiterentwicklung und die unzähligen fantastischen Matches die er seit seiner Rückehr noch an seine legendäre Karriere dranhängt, beeindrucken bis zum heutigen Tag. Wenn jemals irgendwo ein schlechter Kampf oder ein schwaches Interview von ihm auftaucht, sollte man es ins Netz stellen, denn derartiges gab es von ihm noch nie zusehen. Für mich der kompletteste Wrestler aller Zeiten und somit auch der Beste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mister MOwrote on 01.12.2009:[10.0] "Der Showstopper hat einfach alles was ein perfekter Wrestler braucht: Charisma, super Micwork, Ausstrahlung, enorm gute InRingskills (vor allem noch in so hohem Alter) und einfach die Fähigkeit die Crowd mizureißen!  Ob als Face oder Heel einfach Weltklasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MrSmackdownwrote on 30.11.2009:[10.0] "Shawn Michaels, was soll man zu ihm groß sagen. ^^ Ich wünsche mir so das er zum Ende der Karriere, welche ja nicht mehr soooo weit in der Zukunft liegen wird, noch einmal WWE Champion wird!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Okiawrote on 29.11.2009:[10.0] "Sehr guter Wrestler!  Konnte während seiner Karriere Fehden gegen alle guten WWE/WWF-Superstars führen, was nochmal Pluspunkte gibt, da die meisten Fehden sehr gelungen sind.  Sein Ego ist hoffentlich nach seinem letzten Titelverlust bzw. Anfang der 2000er wirklich gesunken und er ist nicht mehr so ein Arsch wie damals...  Das sollte aber nicht in die Bewertung mit rein..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Larskanonewrote on 23.11.2009:[10.0] "Einer der besten der da ist und der sein wird. Klasse Matches und klasse Fehden. Ein Mann mit dem man einfach viel in Verbindung bringt, wie den zahlreichen Titeln, dem Fensterwurf & dem Screwjob, diese und viele andere Gründe machen ihn zu einer lebenden Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Prince of darknesswrote on 22.11.2009:[10.0] "Ein weiteres Beispiel dafür das man auch im alter noch verdammt gute Matches abliefern kann. Zum beispiel das Wrestlemania Match gegen denn Undertaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheLoudMouthwrote on 16.11.2009:[10.0] "Wohl der Beste, der je in einem WWE-Ring stand und stehen wird. Einfach nur göttliche In-Ring Skills, gepaart mit haufenweise Charisma und guten Leistungen am Mic. Simply 10 Points."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ultrakaoswrote on 06.11.2009:[10.0] "Der wohl beste Wrestler überhaupt (meine meinung).HBK ist ein Face wie kein anderer.Am Mic zwar keine granate aber einer der Besten Techniker.Die Matches werden immer so brilliant geführt wie bei keinem anderen (außer Chris Jericho).Und auch trotz des Alter ein stabiler Körper."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Last Ridewrote on 04.11.2009:[5.0] "Er zählt zweifelsohne zu den verdientesten aktiven WWElern, sein Körper gibt immer noch einiges her, solide am Mic. Begeistert hat er mich aber nie, was die bewertung zudem runterzieht ist sein Backstageruf. Er gilt dort neben HHH als einer der unbelibtesten Worker, der beispielsweise im Gegensatz zum Undertaker jungen Talenten eher im Weg steht und lieber selbst gut aussehen will. Alles in allem nach Punktabzug wegen der vorhandene Antipathie bekommt er immerhin noch 5 Punkte. By the way, DX geht mir gewaltig auf den Sack."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Remootwrote on 03.11.2009:[10.0] "Der Beste weil Kompletteste Wrestler auf der ganzen Welt.  "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: peiler316wrote on 02.11.2009:[10.0] "Mr. WrestleMania hat es einfach drauf, er kann mit/aus jedem Wrestler das beste rausholen. Er bekommt von mir volle 10 Punkte - sorry Bret. Montreal Scew Job/4 Jahre Pause - alles egal, ein treuer Angestellter der immer 100% gibt. Die HALL OF FAME wartet auf dich Shawn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: nWoWolfpacwrote on 30.10.2009:[6.0] "Zeigt gute Matches und ist ein toller Wrestler dafür die 6 Punkte.  Bis er zu gott gefunden hat oder was auch immer er gemacht hat war er aber ein unprofessioneller Volltrtottel backstage und deswegen hier "nur" 6 Punkte"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kurt Winkelwrote on 26.10.2009:[10.0] "Der Allrounder schlechthin. Michaels hält geniale Promos und ist unglaublich gut im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PhenomaneloneMjwrote on 23.10.2009:[8.0] "Ein unglaublicher Wrestler und Performer im Ring was hat er schon alles in der WWE geleistet seine Matches mit Wrestlern wie Kurnt Angle, Bret Hart, Undertaker, Y2J usw. sind echt ganz große klassiker...allerdings kriegt er nur eine 2 wegen seinem backstage verhalten er und HHH nutzen einfahc nur ihren Status aus um junge stars unten zu halten damit sie nicht verdrängt werden..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Perry Coxwrote on 22.10.2009:[10.0] "The Showstopper, the Headliner, The Mainevent, the Icon, nicht umsonst trägt Shawn Michaels diese Namen. Seit Jahren tut er alles, sei es als Heel oder als Face, um seine Fans auf ihre Kosten zu bringen. Tolle Promos, hervorragende Matches, was will man mehr? Wenn man auf seine Karriere zurückblickt, sieht man aber auch so ein bisschen sein Ego. Viele seiner World Titel hat er nicht in normalen Matches verloren, sondern aufgegeben oder sie wurden ihm aberkannt. Oder auch der Montreal Screwjob. Aber alle diesen Sachen werten die wrestlerischen Fähigkeiten eines HBK's ab. Er ist und bleibt für immer, und zwar jetzt schon, eine Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Triple Awrote on 22.10.2009:[10.0] "Shawn Micheals ist für mich der beste Wrestler aller Zeiten, er hat einfach Charisma, beherrscht viele unterschiedliche Moves (Highflying, Mattenwrestling) und hat eine gute Ringpsychologie. Er hat sehr viele Klassiker bestritten (WM 25 gegen Undertaker, WM 24 gegen Ric Flair, WM 23 gegen Cena, WM 10 gegen Razor Ramon, usw. ). Zudem ist es unglaublich wie gut er nach seiner langen Pause (wegen seiner schweren Rückenverletzung) wieder zurück kam. Der Mann hat zudem mehrere Matcharten (z. B. Laddermatch, Hell in a Cell) populär gemacht. Seine Selling-Fähigkeiten sind auch gut, er sieht immer aus als hätte er sehr große Schmerzen, wobei er auch manchmal übertreibt. Auch am Mikrofon hat er als Face als auch als Heel stets durch gute Promos (z. B. "Who's your daddy, Montreal ? " oder auch frühe DX-Promos) unterhalten. Zudem hat er auch nicht so oft den Titel gehalten (wie z. B. Hunter), sondern auch vorallem nach seinen Comeback öfters für Talente gejobbt (z. B. Randy Orton, Mr. Kennedy). Deswegen für mich der beste Wrestler den es bisjetzt gab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fatewrote on 21.10.2009:[6.0] "Wie manche Leute bei Hogan, Triple H oder Jeff Hardy wegen diverser Backstagesachen Punkte abziehen und HBK trotzdem 10 geben können ist mir ein Rätsel. Michales hat in den 90ern so ziemlich jede Sünde im Wrestling beganngen die es zu begehen gibt. Ja er hat unglaubliches Talent, ja er ist einer der besten Entertainer aller Zeiten, aber er ist auch einer der charakterlosesten Wrestler aller Zeiten und dabei geht es nicht nur um den Screwjob."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Egtoniwrote on 17.10.2009:"Ich finde, das Shawn Michaels einer der populärsten und einflussreichsten Wrestler  überhaupt war. Desweiteren sind seine Matches immer ansehnlich."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: lostywrote on 15.10.2009:[6.0] "Tja, Shawn Michaels... Wo soll man da anfangen? Backstage-Eskapaden? Montreal-Srewjob? Die dauernde Weigerung, sich hinzulegen?   Oder bei seiner Engagement? Seinem Können? Oder bei der Fähigkeit, seit über 20 Jahren immer das MotN zu zeigen?   Ich weiß es nicht..."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: THE GAME 4-EVERwrote on 12.10.2009:[10.0] "Ist mit Abstand der beste WWE Style Wrestler der je gelebt hat. Ist wichtiger für die WWE, als jeder andere Wrestler im Roster, da er nicht nur die Fähigkeit besitzt aus einem Sack Reis ein *** Match herauszuholen sondern, im Gegensatz zu Leuten wie Triple H oder dem Undertaker auch dazu bereit ist neue Talente over zu bringen. Michaels ist selbst mit seiner angeschlagenen Gesundheit ne Klasse besser als der Rest des WWE Rosters. Es gibt Wrestler die brauchen kein Gimmcik bzw kein starkes und stehen trotzdem jahrelang an der Spitze. Michaels Gimmick mag an Glanz verloren haben gefällt mir aber noch besser als gewisse Mystery / Dead Man Gimmicks. Ist seit seinem Comeback der Got-To-Go-Guy wenn es ums Match of the Year geht. Alles andere als 10 Punkte sind ungerechtfertig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Milowrote on 06.10.2009:[5.0] "Nein,ich kann mich mit HBK einfach nicht anfreunden.  Besonderes die Geschichte mit Bret Hart kann ich ihm einfach nicht verzeihen.  Dazu halte ich seine Wrestlings Skills, ein bisschen für überbewertet.  Fünf Punkte gibt es aber trotzdem von mir.  Da er viel für das Mainstream Wrestling getan hat"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BoeserLobowrote on 05.10.2009:[9.0] "Ikone der WWE. Genial am Mic. Hat praktisch alles aus seinen Möglichkeiten gemacht. Legendär die Auftritte in der DX. Manko: hat großen Anteil am "Montreal-Screw-Job" gehabt und war/ist lange Zeit sehr egoistisch gewesen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Joschiwrote on 03.10.2009:[10.0] "Für mich neben dem Undertaker die Nummer 1 bei WWE. An die Leistung von ihm kommt im Moment niemand ran und es wird wohl auch in Zukunft niemand schaffen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Edgecutionerwrote on 01.10.2009:[10.0] "Tja, hier gibt es nicht viel zu sagen. Glatte 10 Punkte von mir.  Shawn begeistert mich nun schon seit 1992 mit seinem Wrestling-Stil, seinen Promos und überrascht mich mit seinen Leistungen im Ring heute genau wie damals. Ob bei der größten WrestleMania oder bei irgendwelchen kleinen House-Shows... HBK is simply awesome!  Match des Jahres 2009, 2008... ganz zu schweigen von seiner Zeit als Champion 1996, den vielen amüsanten DX-Runs, und und und. Wenn es nach mir ginge, könnte der HBK gerne nochmal 20 Jahre dranhängen, bis auch das letzte Haar ausgefallen ist ; ) Und da ich das jetzt einfach sagen muss, weil es MEINE MEINUNG ist und ich seit Ewigkeiten immer wieder mit Leuten über dieses Thema diskutiere: Shawn Michaels IST BESSER als Bret Hart. Diskussion beendet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Genschiwrote on 30.09.2009:[10.0] "Der Beste Wrestler aller Zeiten, keiner hat in über 20 Jahren so begeistert für HBK,   damit meine ich vorallen seine Matches, er holt immer dass beste aus jeden raus, was man auf dieser Seite kann dies auch sehr gut nachvollziehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Titanwrote on 20.09.2009:[10.0] "Michaels ist definitiv die 10 Punkte wert. Er kann nach seinem Karriereende auf eine sehr emotionale Karriere zurückblicken. Aufgrund seiner technischen Beschlagenheit und dem Ansporn immer 100% zu geben, hat er es zurecht zu den Titelgewinnen von heute und damals gebracht. Man kann Hulk Hogan, Bret Hart, The Undertaker und Shawn Michaels durchaus in einem Atemzug nennen. Er heisst schließlich nicht umsonst Mr. WrestleMania, The Showstopper and Mr. Main Event."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Peepheadwrote on 19.09.2009:[10.0] "Er hat ein verdammt gutes Mic. Er hat eine saugute Technik. Er hat Charisma. Er kann ernst sein, er kann fröhlich sein, er kann witzig sein. Das alles kann nur einer: Der Meister des Superkicks. Natürlich Michaels ist sowohl bei Marks, als auch bei Smarks berühmt, so gut wie nur an einem Platz in der Welt haben sie ihn nicht ins Herz geschlossen: Montreal xD"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DHS aka Iceman Unleashedwrote on 17.09.2009:[10.0] "Es gab viele Superstars in der Zeit von 1988 bis 2009 die man als Legenden bezeichnen kann.  Seien es Bret Hart, Hulk Hogan, The Undertaker, Stone Cold, The Rock oder wer auch immer.  Shawn Michaels war immer der Talentierteste von allen im Ring fähig sofort von Anfang an 100 Prozent zu geben und die Show zu stehlen.  Shawn Michaels hat zwar von seiner In Ring Fähigkeit eingebüßt doch er ist immernoch einer der besten Entertainer der WWE und ich wünsche ihm nocheinmal einen Letzten Titelrun."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Basket Casewrote on 15.09.2009:[9.0] "Ohne Zweifel ist Shawn Michaels einer der größten Wreslter und Entertainer aller Zeiten. Wieso also nur 9 Punkte? Da ich eher auf Brets Seite stehe und ich es trotzdem nicht 100% vergessen kann, was für ein egoistischer Sack er früher war."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: polilopwrote on 11.09.2009:[10.0] "Gehört zu meinen absoluten Lieblingswrestlern und das nicht ohne Grund.  10 Punkte sind mehr als verdient. Er ist einfach der Showstopper, da gibt es nichts weiter zu sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Gialikesashleyverymuchwrote on 10.09.2009:[5.0] "Guter Techniker, mir allerdings zu egoman und im Hinblick auf Montreal hat erŽs bei mir gelinde gesagt verschissen. Allerdings habe ich Respekt vor den Leistungen dieses Mannes."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Scotty Westwrote on 05.09.2009:[10.0] "Shawn Micheals, The Showstopper, Mr. Wrestlemania, einer der besten Wrestler die ich je gesehn hab. Sein Gimmick einfach Klasse. Seine Matches immer sehr unterhaltsam, allein wegen einer einzigen Aktion die nur eine Sekunde dauert, die Sweet Chin Music. Allein wegen diesem Move kann sich ein Match total schnell wenden, außerdem kann er die aus fast jeder Position abfeuern. Sehr viele gute Moves und man sieht immer mal wieder was neues. Einfach nur ein witziger Typ mit Carisma, vorallem seine kleinen Ausraster sind sehr lustig. So einem wie ihm kann man nur 10 Punkte geben. Leider auch schon im Fortgeschrittenem Alter und sein Abgang rückt immer näher ... er sollte meiner Meinung nach noch einen World-Title gewinnen dürfen, weil er diesen mehr als nur verdient hat und seine letzte Regentschaft einiges zurückliegt. Er soll mit einem großen Knall seiner Karriere beenden dürfen, am besten noch Ric Flair irgendwie mit einbeziehen, unter dessen Karriere The Heart Break Kid bei Wrestlemania 24 einen Schlussstrich gezogen hat. Übrigens war ein tolles Match ..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Big Crunccawrote on 03.09.2009:[10.0] "Shawn hat es einfach drauf. Selbst in seinem Alter ist er besser als 90% seiner Kollegen und er ist mein persönlicher Held."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: onlyKINGwrote on 30.08.2009:[10.0] "Seit Jahren ein unfassbarer guter Wrestler/Entertainer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Paulinawrote on 30.08.2009:[10.0] "HBK ist neben den Undertaker wohl einer der besten Wrestler zurzeit in der WWE, er gibt/gab immer alles und hat mit Undertaker ein Hammer Match bei WM25 auf die Beine gestellt. Es gibt keinen mehr der nochmal einen World Title verdienen würde als der Showstopper, damals schon als Tag Team Wrestler gerockt und nun gehört er zu den wenigen gründen RAW zu gucken, ich hoffe das er bald mit Randy Orton um den Titel fehdet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Turboladerwrote on 26.08.2009:[10.0] "Zusammen mit dem Undertaker eine Legende. Ich mag seine Persönlichkeit zwar nicht so, aber da es hier um das Ringkönnen geht, was aufjedenfall überragend ist, sind es alles in allem 10 Punkte. Seine Promos sind auch klasse, vorallem die DX Promos, da musste ich eigentlich immer mindestens schmunzeln."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: teekay86wrote on 26.08.2009:[9.0] "Man kann fragen: was fehl HBK noch damit er 10 Punkte bekommt? Nunja, zum einen ist da Montreal und zum anderen seine Backstagebeziehungen die er (wohl) zusammen mit Triple H flegt. Aber warum fällt er dann bei meiner Wertung nicht genau so weit nach unten wie Hunter? Auf der einen Seite ist er meiner Meinung nach der bessere Wrestler als HHH, was jedoch noch viel schwerer wiegt ist, das er sich im Gegensatz zu seinem Kumpel nicht zu fein dazu ist auch mal den Job zu machen"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Woerpwrote on 12.08.2009:[10.0] "Alle unvergesslichen Momente dieses Mannes hier herein zu schreiben, dafür reichen die Zeichen nicht. Eine lebende Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ryklon Stephenswrote on 11.08.2009:[10.0] "Ob man Shawn mag oder nicht er ist das Gesamtpaket was es so nur ein einziges mal gibt und in der Form nicht wieder geben wird. Er kombiniert das Wrestling mit dem Entertainment in Perfektion. Besser als ein Hogan, ein Undertaker oder ein Bret Hart."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: 108 Sternewrote on 24.07.2009:[7.0] "Shawn Michaels....schwere Bewertung für mich. Ich halte Marty Jannetty für den besseren Wrestler. Aber Shawn ist auch gut, und hat es offensichtlich geschafft über Jahre hinweg populär zu bleiben. Ich fand ihn als Heel gut, aber als Face hat er bei mirnie funktioniert; ich war immer für seinen Gegner.    Auch als Person eher ein zweifelhafter Charakter; seine Rolle beim Montreal Screwjob war erbärmlich, seine Einflussnahme mit der Clique erinnerte an das, was auch bei Hogan & co in der WCW abging, und seine plötzlichen Verletzungen, wenn er einen Titel droppen sollte zeichnen kein gutes Bild von ihm als Worker."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kreuflexwrote on 23.07.2009:[10.0] "Allein das bei den vier besten MAtches (laut Cagematch Meinung) 3 mit Shawn Michaels sind sagt eigentlich alles. Meiner MEinung nach zusammen mit Ric Flair der bester Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DevonMileswrote on 20.07.2009:[10.0] "Ich hoffe auch, dass er nochmal den Titel bekommt. Er hat ihn sich erstens auf jeden Fall verdient und zweitens kann er auch gegen so ziemlich jeden super Matches zeigen. Andere hingegen bekommen ständig Titel, aber deren Matches sind meist nicht mehr so prickelnd. Nochmal ein grosser Titlerun bevor er aufhört..... mehr als verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: chelsea-cenawrote on 19.07.2009:[10.0] "Hoffentlich darf er noch mal den WWE-Title haben! Der Mann kann jeden Wrestler pushen! Würd mich z. Bsp. über eine Fehde zwischen Swagger und HBK um den Titel freuen. Das wären klasse Matches"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: justusjonaswrote on 04.07.2009:[10.0] "Also was habe ich schon für sensationelle Matches von ihm gesehen! Vom Scheitel bis zur Sohle einfach genial der Mann. Man könnte ihm durch seien Backstagepolitik in den 90ern einen Punkt abziehen, aber er kommt nach seiner langen Auszeit geläutert zurück und zeigt bessere Matches denn je. Eindeutig 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: antitofumanwrote on 28.06.2009:[10.0] "10 punkte...was sonst"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Alorionwrote on 24.06.2009:[9.0] "In letzter Zeit gute Fehde und sehr gute Matches,  mochte ihn schon immer und er überzeugt mich immer wieder von neuem."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CMFabewrote on 15.06.2009:[10.0] "Einer der ganz ganz großen. Der zurzeit beste bei der WWE aktive Wrestler. Und den Titel kann ihm seit Jahren keiner mehr stritig machen. Kaum schwache Match und sowohl als Heel als auch als Face absolut unterhaltsam. Obwohl ich ihn ein Tick lieber als Heel sehe. Also eindeutig 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: El Reywrote on 23.05.2009:[8.0] "Ein guter Entertainer der hinter den Kulissen wie ein Politiker agiert und (zumindest damals) nur an sich denkt. Hat bei mir negative Spuren hinterlassen wegen dem was er Bret angetan hat aber glaube er bereut es oder hoffe es für ihn. Denn als wiedergeborener Christ kommt er sonst in die Hölle."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rated R Champwrote on 25.04.2009:[10.0] "Schlicht und einfach einer der Besten, wenn nicht der Beste, aller Zeiten. Das die WWE ihn seit 2002(! ) nicht mehr im Titelgeschehen berücksichtigt ist in meinen Augen schlichtweg ein Verbrechen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Eggywrote on 20.04.2009:[8.0] "Selbst im Alter und mit mehreren Verletzungsproblemen immer noch einer der besten Wrestler heutzutage. Er schafft es immer noch aus jeden Wrestler das beste herauszuholen und ein gutes Match hinzulegen.  Auch beweist er immer wieder in Promos, dass er zu den Besten gehört(jüngstes Beispiel ist die Fehde gegen Chris Jericho). Sein Match gegen den undertaker hat auch wieder gezeigt, dass er einer der besten Worker ist.    Leider muss ich ein paar Punkte abziehen, nachdem ich Bret Hart's Buch gelesen hab und die Schattenseiten des Heartbreak Kids genauer kennenlernte. Seine Technik ist in meinen Augen zwar immernoch einzigartig, aber sein Verhalten in den 90ern hält mich dann leider doch davon ab Shawn Michaels eine 10 oder 9 zu geben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SelfEsteemwrote on 19.04.2009:[10.0] "Mr. Wrestlemania, The Icon, The Showstopper, The Maineventer, HBK... egal wie man ihn nennt, er bleibt einfach eine gottgleiche Gestalt im Wrestling! Etwas anderes als 10 Punkte wären ein Witz. Ich kann auch beim besten Willen nicht verstehhen, wie man diesem Mann auch nur einen eizigen Punkt abzeiehen kann! Was soll ein Wrestler denn noch besser machen?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: heiniwrote on 10.04.2009:[10.0] "Shawn Michaels ist wohl einer der erfolgreichsten Wrestler aller Zeiten. Er hat nicht nur nahezu jeden Titel, den die WWE zu bieten hat, schon gehalten, er hat auch die besondere Fähigkeit aus seinen Gegnern die besten Matches herauszubekommen. Dies hat ihm ja auch Spitznamen wie "The Showstopper" oder "Mr. WrestleMania" eingebracht. HBK wird wohl auch eines Tages die Ehre der WWE "Hall of Fame" bekommen. Bis dahin können wir uns ja noch auf einige besondere "Heartbreak Kid-Momente" freuen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Theron083wrote on 10.04.2009:[10.0] "Einfach eine Legende. Einer der besten Wrestler aller Zeiten im Gesamtpaket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: manager1977wrote on 07.04.2009:[8.0] "Technischer Überflieger der ersten Kategorie.War bei ihm aber nicht immer sicher was ich von ihm halten soll.Die Trennung der Rockers fand ich damals überzogen gemacht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheAdaawrote on 06.04.2009:[9.0] "HBK, ich muss meine Wertung ein wenig nach oben schrauben. Historisch gesehen war Michaels an (fast) allen wichtigen Ereignissen der WWE beteiligt die für Furore sorgten. Außerdem gibt er im Ring 100% und seine Fehden waren allesamt gut bis sehr gut. Die Fehde letztes Jahr gegen Jericho war der Hammer. Alles in allem verdient HBK 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: chaoswrote on 05.04.2009:[10.0] "Absolute WWE Legende, zukünftiger Hall of Famer, Mr. Wrestlemania, The Showstopper mehr kann und braucht man über diesen einzigartigen super Wrestler wohl nicht sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Amurebkuwrote on 05.02.2009:[10.0] "HBK ist einfach eine Ikone! Ein toller Wrestler, unterhaltsam am Micro und einer der Typen die immer alles geben! Bin froh, dass die WWE immer noch einen solch Klasse Mann in den Reihen hat! Würde mir wünschen, dass er nochmal einen Run als Champion bekommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Finlay Thornwrote on 01.02.2009:[7.0] "Shawn hatte es in letzter Zeit wirklich drauf, in die spannendsten Fehden involviert zu sein. Erst die Geschichte mit Ric Flair, dann die Fehde des Jahres 2008 gegen Jericho und nun seine Storyline mit JBL, die ich wirklich gut aufgezogen finde und die neben der Legacy momentan dafür sorgt, dass mir Raw so viel Spaß macht. Es gibt zwar sicherlich einige Leute, die ich lieber mag, als den Showstopper, aber ich habe höchsten Respekt vor dem, was er geleistet hat und noch leistet."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The-Game91wrote on 01.02.2009:[10.0] "Für mich ist Shawn Michaels der beste Wrestler überhaupt. Sogar jetzt in seinem hohen Alter beweist er noch das er einiges drauf hat hoffentlich kriegt er noch seinen letzten run als Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RatedRKO84wrote on 31.01.2009:[10.0] "Der beste noch aktive Mann im Wrestling, er ist schon lange eine "lebende Legende""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Brooklyn Brawler 1985wrote on 30.01.2009:[10.0] "Skills, Mic-Work und Charisma sind einfach perfekt - glatte 10 Punkte, keine Frage!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ShakDragoonwrote on 19.01.2009:[9.0] "Legende und zukünftiger Hall Of Famer, der auch heute noch sehr gute Leistungen bringt und einen (letzten) Titelrun mehr als verdient hätte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Peiski Bombwrote on 16.01.2009:[10.0] "HBK for ever!!! Mehr kann und muss man dazu nicht sagen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Reyforever1wrote on 12.01.2009:[10.0] "Mein Lieblingswrestler , der seit Jahren die größte und beste Show macht , die die WWE zu bieten hat . Er hatte die größten Fehden , die besten Matches und das wohl unterhaltsamste Tag Team der Geschichte mit der D-Generation X. Die 10 Punkte sind völlig verdinet"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Atze20wrote on 02.01.2009:[10.0] "Mein absoluter Lieblingswrestler. Selbst wenn er grottig wäre, würde er von mir eine 1 bekommen. Aber HBK ist j auch so, einfach genial. Seine Matches in den 90ern gegen Leute wie Scott Hall, The Undertaker oder Bret Hart gehören zu den grössten Matches aller Zeiten. Im Ring ist er ein Gesamtpaket, an welches kein Wrestler dieser Welt rankommt. Er kann wie kein Zweiter eine Story erzählen und ist technisch begnadet. Am Mic auch mit das Beste, was das Business je hervorgebracht hat. Charismatisch wie kein zweiter, was man auch in der JBL Fehde sieht. EInfach perfekt. Ein Wrestling Gott"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MarcB126wrote on 26.12.2008:[10.0] "Mr. Charisma, egal wann er abtritt, er wird es mit würde, wie Ric Flair, aber bis dahin wird er alles geben und egal in welchem match es ist, alles geben. Ric vs HBK Wrestlemania match of the millenium, weil niemand hat jemals in dem Buisness so viel Herz gezeigt. Weil das ist Wrestling, das ist Entertainmant."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ScrWwe94wrote on 18.12.2008:[10.0] "Toller Mann, der tortz langjähriger Verletzung nicht aufgegeben hat. Sehr überzeugende Mic-Skills.  "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Blazewrote on 04.12.2008:[10.0] "Shawn Michaels - in meinen Augen der beste den es bis jetzt gegeben hat. Ich würde ihn auch noch weit vor The Rock oder Steve Austin stellen, wenn es darum geht, den größten Star von RAW zu ernennen. Sicher kommt er nicht an Hulk Hogan ran, wenn es um die Wichtigkeit für die Company geht, aber wer weiss wo die WWE heute ohne ihn stehen würde. In Zeiten der Montagabendkriege ist er Vince McMahon stets treu gewesen, was ich ihm hoch anrechne. Er war das Aushängeschild der WWF, ganz klar. Die wrestlerischen Fähigkeiten eines Kurt Angles oder Chris Benoits, am Mikro und von der Ausstrahlung die Klasse von The Rock in einer Person zu vereinen ist schon einmalig. Im Ring gefällt mir der HBK von vor zehn Jahren, bis auf wenige Ausnahmen, noch besser. Logisch, dass er seinen Stil im Laufe der Jahre einschränken musste. Dennoch bleibt er bei WWE definitiv weiterhin der beste und ist immer, egal mit welchem Gegner, egal an welcher Show, ein Garant für sehr gute Matches. Persönlich war er früher unterste Schublade, aber der Montreal Screwjob ist auf dem Mist von Bret Hart und Vince gewachsen. Ganz unschuldig ist er auch nicht, aber allein schuld? Definitiv nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: homicidal cena michaelswrote on 04.12.2008:[10.0] "Er ist ein hammer Wrestler am Mic sehr gut und besitzt eine enorme Ausstrahlung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MICHAELAundMARKUS4EVERwrote on 25.11.2008:[6.0] "Kurz und knapp. Hervorragender Athlet und Entertainer, aber Backstage ein arroganter Haufen. Er könnte sich öfters mal beim PPV für die neue Generation hinlegen. Seinem Standing würde dies nicht schaden."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SirJohnsonwrote on 25.11.2008:[10.0] "10 Punkte für eine lange erfolgreiche Karriere für einen der besten Sports Entertainer aller Zeiten. Seine Fehde mit Jericho war grandios!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Ayatollah of RocknRollahwrote on 24.11.2008:[10.0] "Eine der größten Gestalten aller Zeiten, revolutionierte das Wrestling, es gibt nichts über ihn was nicht schon gesagt wurde. Selbst in diesem Alter macht er, wie Mountie bereits schrieb, 90% des Lockerrooms noch was vor und zeigt ihnen wie es geht. Dazu ein begnadeter Heel mit der für mich legendärsten Montreal-Promo."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: michawrestlingfanwrote on 23.11.2008:[10.0] "Einer der besten, wenn nicht so gar DER beste, Entertainer den ich je gesehen habe! Die Fehde gegen Chris Jericho dieses Jahr war wieder einmal der beste Beweis wie wichtig er für die WWE ist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Eddiewrote on 18.11.2008:[10.0] "Volle Punktzahl, einfach vom Zeitpunkt 0 an immer in Topform, und sehr innovativer Wrestler. Er war einer derjenigen die das Ladder Match weiterbrachte, der erste im Hell in a Cell. Einfach nur genial der Wrestler, da er einfach Technik, Schnelligkeit, Mic Work, Moves und alles perfektioniert, und alles überzeugend macht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Michael Patrickswrote on 16.11.2008:[10.0] "HBK ist einfach einer der Wrestler der auch nach 15-20 Jahren noch immer begeistern kann. Auch wenn die WWE gerade andere pusht darf man ihn nie vergessen. Für mich ist Shawn aktuell der beste Techniker neben Edge in der WWE. Das Match gegen Ric Flair bei WM24 hat bewiesen das Michaels auch noch mit großen Knie und Rückenproblemen einer der besten im Ring ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GroundBreakingwrote on 12.11.2008:[10.0] "War für mich schon immer und wird für mich auch immer der beste Wrestler aller Zeiten sein. Man mag darüber gerne anderer Meinung sein, doch in diesem Fall interessiert sie mich nicht. HBK hat an etlichen Matches mit Gänsehautfaktor teilgenommen und hat mit den unterschiedlichsten Leuten wahre Klassiker auf die Beine gestellt. Er war es, der Flairs letztes Match mit so besonders gemacht hat. Ich wage es sogar so weit zu gehen zu sagen, dass ich nicht wüsste wer sonst diesen Moment so besonders hätte machen können. Genug des Lobes, den Rest kann man meiner Wertung entnehmen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CLIBwrote on 07.11.2008:[9.0] "''The Heartbreak Kid'' Seine besten zeiten sind natürlich schon vorbei, aber er zeigt immer noch spannende matches & mann merkt garnicht dass er älter wird er zeigt immer noch solche moves wie früher (z.B. Moonsault). Aber ich finde er sollte jetzt noch eine Fhede mit einem Wrestler bekommen der einen Titel hat, meiner meinung wäre es am besten wenn er mit Batista eine Fhede anfangen würde."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: fk00awrote on 06.11.2008:[10.0] "...simply the very best sportsentertainer in the world today^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: domi1984wrote on 05.11.2008:[10.0] "The Showstopper,The Headliner,The Heartbreakid,Mr. WrestleMania,The Icon,Shawn Michaels...noch fragen?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Animal360wrote on 22.10.2008:[10.0] "Hat eine enorme Ausstrahlung auf das Publikum das ihn trotz der letzten Rückschläge immer noch liebt. Hat in der Vergangenheit viel geleistet was ihm von mir eine 10 einbringt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MrWrestlingwrote on 17.10.2008:[10.0] "Einer der Charismatischten Wrestler aller Zeiten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: pildaYwrote on 17.10.2008:[10.0] "Bin schon lange ein absoluter Fan ! Montreal hin oder her ! Macht immer Spaß =)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Pinguwrote on 13.10.2008:[10.0] "Wenn ich könnte würde ich hier 20 Punkte vergeben. Lebende Legende, mehr muss man dazu nicht sagen, der heute auch zu seinen Fehlern aus den 90ern steht. Denn immer im Main Event und kein Titelgewinn... großer Respekt für einen großen Mann. Dazu am Mikro unsterblich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kolliaswrote on 09.10.2008:[10.0] "Für mich der beste Wrestler überhaupt. Ein schlechtes Match mit ihm gibts nicht, jeder noch so schlechte wird durch das Match gezogen, sodass es mindestens befriedigend wird. Die Anzahl der Klassiker mit Shawn Michaels ist kaum mehr festzuhalten, da er auch heute noch in der Lage ist ein ****-Match abzuliefern.  Abgesehen von den überragenden Ringskills hat er natürlich auch am Mikro die nötige Ausstrahlung und ist schauspielerisch definitiv ganz weit vorne dabei, das zeigt nicht zuletzt die geniale Fehde mit Jericho aus dem Jahr.  Das er hinter den Kulissen weniger freundlich war/ist mag einige vielleicht stören, mich kann das aber nicht von einem Spitzenwrestler ablenken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: StoneColdRevowrote on 07.10.2008:[9.0] "Vor ein paar Monaten gab ich Shawn Michaels eine 3. Nur bekommt er eine 2. Er ist wirklich gut im Ring und seine Promos find ich auch toll. Shawn Michaels vs. Jericho < 3"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RBoss90wrote on 06.10.2008:[8.0] "Ich mag ihn nicht als Person, aber rein objektiv bewertet ist er im Ring ein guter Entertainer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Lethal Combinationwrote on 04.10.2008:[10.0] "Wer ihn mit einer Punktzahl jenseits der 5 bewertet,der ist einfach ein Mega Mark oder er hat einfach keine Ahnung.Im Ring unglaublich.Egal wen -er zieht die meisten zu einem mindestens guten Match.In meinen Auger,der beste ,,WWE-ler''"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Scotty 2 Hottywrote on 01.10.2008:[10.0] "Großartig. Mehr braucht man zu Shawn Michaels nicht zu sagen. Wer soviele Klassiker bestritten hat und teilweise immernoch bestreitet, kann nur als Legende bezeichnet werden, die die vollen 10 Punkte verdient. Dazu sehr gut am Mikrofon und auch im fortgeschrittenen Alter eines der Highlights in der WWE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: D- Xwrote on 30.09.2008:[10.0] "Shawn Michaels is einfach der coolste Wrestler den es jemals gab und im Moment ist! Keiner ist so gut und spaßig drauf als HBK.. Er ist in jeder situation witzig und das macht ihn einfach menschlich und Sympatisch und zudem ist er ein außergewöhnlicher Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SirFlubbi42wrote on 29.09.2008:[10.0] "HBK! Inzwischen ist er ja ein gestandener Mann, doch in jeder Sekunde die er auf Sendung ist merkt man wieviel Spaß er hat. Ein hervorragender Wrestler, der sich durch seine Art und teilweises Overselling nicht überall beliebt macht, doch bei mir steht er hoch im Kurs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: nicojansonwrote on 24.09.2008:[10.0] "Einer der besten aller Zeiten. Der Showstopper hat in seiner Karriere schon so viel erreicht, ohne in den letzten Jahren viele Titel zu halten. Wird mir für immer in Erinnerung bleiben weil er einer der besten ist, ein cooles Theme und Finisher hat und bei WM XX im besten ME aller Zeiten gestanden hat und Ric Flair in den Ruhestand schickte. HBK is the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Wise Warriorwrote on 15.09.2008:[10.0] "Wird wie guter Wein immer besser: die Einbußen zu denen ihn sein Körper zwingt macht er durch Glaubwürdigkeit und Intensität wett!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Niklas1106wrote on 28.08.2008:[10.0] "HBK ist einfach ein Wrestler, der in allen Aspekten überzeugt. Er hat wrestlerisch schon eine Menge auf dem Kasten und lässt sich auch teilweise auf riskante Aktionen ein. Wenn er in den Ring steigt ist eine gute Show so gut wie sicher. Auch storyline-technisch ist er jemand, der viel Potential mit sich bringt. Die aktuelle Fehde mit Y2J ist sehr unterhaltsam und hat noch eine Menge Möglichkeiten für eine Fortführung. Hoffentlich bleibt es spannend. 10Punkte für den Showstopper, Mr Wrestlemania..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Cloverwrote on 24.08.2008:[9.0] "Wurde von Bret Hart ja als Nachmacher ohne eigenes Profil beschimpft.. kann man sehen wie man will. Kontrovers ist er jedenfalls - aber im Ring und am Mic extrem begnadet und ohnehin ein zukünftiger Hall Of Famer. Daher 9. 5 Punkte so oder so!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: nacho83wrote on 17.08.2008:[10.0] "Einer meiner ewigen Favoriten. Ein unverwechselbarer Charakter und ein Ausnahmetalent im Ring, egal ob als Heel oder Face. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kane15wrote on 14.08.2008:[10.0] "Klasse Wrestler, Super Techniker und eine Legende :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: wwegirlwrote on 13.08.2008:[10.0] "Ich liebe diesen Kerl.. Als heel mag er auch faszinieren aber als Face finde ich ihn auch nicht schlecht. Mit der DX war er unschlagbar!  Er ist einfach eine Legende und die WWE soll sich unterstehen HBK durch irgendeine bescheuerte SL schlecht zu machen oder zu versauen!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: sono fagunwrote on 06.08.2008:[10.0] "Absoluter Kracher und der eindeutige Beweis für seine Klasse war das Career-Ending-Match gegen Ric Flair."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KirKanoswrote on 02.08.2008:[5.0] "Natürlich muss man Montreal pp. mit in die Wertung einbeziehen, auch wenn das einigen Leuten nicht gefällt. Wrestlerisch und mictechnisch sicherlich einer der besten ever im Geschäft und auch eine Legende im Wrestling.(auch wenn sein selling albern wirkt und mir nicht gefällt [Lässt seine gegner schwach erscheinen]).  Aber wie gesagt....seine Eskapaden zeigen auf, was er für einen Charakter hat. Soll sich zwar mittlerweile gebessert haben, aber die Vergangenheit gehört halt zu seinem Leben dazu und muss auch bewertet werden.  "
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Moritz Weigandwrote on 01.08.2008:[10.0] "In allen Belanger einer der besten Wrestler aller Zeiten. Das Sports Entertainment kann froh sein, dass es ihn gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: squadra3wrote on 29.07.2008:[10.0] "Ego hin oder her - einer der sich immer voll für die Fans reinhaut!  Meiner Meinung nach der beste Wrestler/Entertainer aller zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rated-R Starwrote on 29.07.2008:[10.0] "Mann, was hab ich HBK in den 90ern gehasst. Lag auch daran dass ich absoluter Bret hart fan bin. Doch mittlerweile ist HBK in meinen Augen einer der besten wenn nicht sogar der Beste Wrestler in der WWE. Einfach nur klasse was er immer für Leistungen im Ring bringt. Und seit er 2004 zurückgekehrt war ist er in absoluter Topform. Ich hoffe, wir dürfen ihn noch lange im Ring sehen und hoffe noch viel mehr, dass er irgendwann nochmal Cjmap wird. Verdient hat ers auf jeden Fall.  "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ThaRealnesswrote on 26.07.2008:[10.0] "Ein Wort: Genial. 10/10 auf jeder Ebene. Hoffe das HBK dem Wrestling Business noch lange erhalten bleibt. :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: aulitwrote on 23.07.2008:[10.0] "Ich zitiere hier gerne Mal Tina Turner: "You're simply the best, better than all the rest. Better than anyone, anyone I've ever met. " Das reicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Weihnachtsmannwrote on 23.07.2008:[6.0] "Kann wenn er will gute Matches und Promos abliefern. Sein Verhalten war aber oftmals grenzwertig, dafür gibts Abzüge."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: wXw Fanwrote on 22.07.2008:[10.0] "Weltklasse Mann, auch noch im Alter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Champwrote on 22.07.2008:[6.0] "Sehr guter Wrestler, aber wegen seinem übergroßen Ego und dadurch das er nie clean verlieren kann, gibt es starke Abzüge."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sting93wrote on 22.07.2008:[10.0] "Shawn Michaels ist mein absoluter Lieblingswrestler bei der WWE und einer der besten Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: the Rockwrote on 22.07.2008:[10.0] "Shawn Michaels.... was soll man da noch großartig dazu sagen. Die WWE wäre nie da, wo sie jetzt ist, ohne einen HBK, Showstopper oder Mr. WRESTLEMANIA. Er trägt diese Spitznamen zurecht. Eines meiner ersten Matches, dass ich von ihm gesehen habe, war der 60-Min. Iron Man gegen Bret Hart (ein genialer Iron Man, den ich mir immer wieder ansehen könnte). Und durch seine genialen Fehden wie Bret Hart, Kurt Angle, Triple H oder seine aktuelle Fehde mit Y2J. Er schafft es einfach, mich immer wieder mich für ihn zu begeistern. Danke Shawn...^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Peisistratoswrote on 16.07.2008:[9.0] "Sicherlich einer der größten Wrestler unserer Zeit, allerdings gibt es aufgrund eines bestimmten Ereignisses im November 1997 nicht die volle Punktzahl ; )"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PhilippPascalUndertakerfanwrote on 11.07.2008:[4.0] "Also Shawn Michales ist cool und neben Undertaker und Triple H noch einer der echt geilen WWF- Zeit Wrestler.  Aber ich finde er wird zu sehr nach oben gedrängt. Momentan jedoch die Fehde mit Jericho und Batista war schon cool. Aber leider von mir nur eine 4 Weil ich ihn als Gegner von Batista und Undertaker nicht mochte ^^.   Sorry Michaels Fans."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ecw foreverwrote on 08.07.2008:[10.0] "Nach Bret Hart einer der beste Wrestter aller Zeiten. Für mich jedenfalls. Er hat aber die Fähigkeit jeden zu einem guten Match zu ziehen. Er gefiel mir als Face am Anfang bei den Rockers. Besonders mochte ich ihn um WM12. Auch heute noch genial. Am Mic einer der besten auch wenn nicht der beste. Seine Gimmicks sind genial und er bringt es immer gut rüber, sowie hat er die Fähigkeit den Superkick schnell auszuführen ganz gut für Segmente!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bandiwrote on 07.07.2008:[10.0] "Topwrestler, bringt immer Leistung und hat Ausstrahlung  mein absoluter Favorit  "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: andrekoenigwrote on 20.06.2008:[10.0] "Der Heartbreak Kid ist, genau wie der Undertaker, ein Mann der auf jeden Fall in die WWE Hall of Fame kommt. HBK ist einfach ein super Techniker. Er trägt den Spitznamen "the Main Event" nicht um sonst. Er ist ein Mann der so ziemlich mit jeden ein gutes Match bestreiten kann und er hat auch den Namen Showstopper mehr als verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Holly23wrote on 16.06.2008:[9.0] "Kliqmitglied  legendäre Matches    muss ich mehr sagen ?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Beastwrote on 13.06.2008:[10.0] "Er ist einfach einer Ikone! HBK is THE BEST!  "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bokthersawrote on 05.06.2008:[10.0] "Ein genialer Allrounder, der gegen jede Art von Wrestler in so ziemlich jeder Art von Stil erfolgreich antreten kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DeadHeadwrote on 03.06.2008:[9.0] "Natürlich er mag seine Macken haben und von Montreal wollen wir gar nicht erst reden aber .... Er ist halt einer der besten. Er hat tonnenweise Charisma, im Ring liefert er auch gut Matches ab, also ich denke er ist Top."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JthePwrote on 02.06.2008:[10.0] "Das beste was Wrestling zu bieten hat. Für mich hat er immer noch das beste Gesamtpaket. Überragende Fähigkeiten im Ring und am Mic. Sein Charisma ist unbeschreiblich. Ein Wrestler der Extra-Klasse. Einfach HBK"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Shawnywrote on 28.05.2008:[10.0] "Er ist mein lieblingswrestler auch wenn er schon in die Jahre gekommen ist macht er einen super Job! "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sockewrote on 24.05.2008:[10.0] "HBK is ne Legende, genial am Mic (ich sag nur DX), genial im Ring, siehe letztes Ric Flair Match bei WM24, einfach klasse halt. Ein Titel könnte man ihn mal wieder geben. Klare 10 Punkte, mehr geht ja nich :("
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Brooklyn Brawlerwrote on 16.05.2008:[10.0] "HBK. Showstopper. Mr. Wrestlemania. Hielt verdient alle Titel, von den Rockers bis heute einfach im Ring und außerhalb die Show in Person. Eine mehr als verdiente 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Haribowrote on 14.05.2008:[10.0] "Charisma, Mic-Work gepaart mit immernoch guten In-Ring-Skills. Einer der ganz großen des Sports Entertainment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: AngleClockwrote on 12.05.2008:[10.0] "Einer der besten Sports-Entertainer der Welt der wirklich alles für die Fans gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Frutzwrote on 06.05.2008:[10.0] "Ich habe ihn gehasst, geliebt, verachtet und verehrt. Seine Ringfähigkeiten sind Weltklasse, seine Micfähigkeiten - Weltklasse, er hat Ecken und Kanten in- und ausserhalb des Ringes. 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RllKllOwrote on 06.05.2008:[10.0] "Ich persönlich würde diesen Mann gerne als WWE Champion sehen, anstatt Triple H.  Am Mic stark und im Ring trotz seines Alters einer der besten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dave Concordiowrote on 06.05.2008:[10.0] "Jeder macht Fehler, HBK hat Rechenschaft abgelegt. Im Ring unglaublich gut gewesen 8okay jetzt abgebaut, aber in seinem Alter wird das wohl drinnen sein) außerdem als Entertainer unerreicht. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: azirufwrote on 29.04.2008:[10.0] "mein all time favorite! weltklasse am mic, im ring und in den promos, genial bei dx und als heel, etwas schwächer aber immer noch extrem gutes face, da kanns nur eine note geben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Tomkowrote on 22.04.2008:[10.0] "THE MAINEVENT!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Main Eventwrote on 19.04.2008:[10.0] "Einer der besten Wrestler und Entertainer der Welt! Als Tag Team mit Marty Janetty war er schon mein Favorit. Er hat IMO die richtige Aufteilung zwischen Stärke, Speed und Technik und geniales Micwork. Er ist einfach THE MAIN EVENT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kingpin39wrote on 18.04.2008:[10.0] "Gehört für mich unter die Top 5 der besten Wrestler aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: xXShawnMichaelsXxwrote on 14.04.2008:[10.0] "Wie man an meinem Namen unschwer erkennen kann ist er mein Lieblingswrestler, vor allem deswegen das HBK es schafft aus (fast) jedem ein gutes Match zu zaubern außerdem macht er nicht immer dasselbe sondern hat unterschiedliche Moves  Und eine out-of-nowwhere Sweet Chin Music ist immer gut anzusehen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: nightfallwrote on 10.04.2008:[10.0] "Einer der Besten, obwohl er im RL doch recht schwierig sein soll."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kain Wolfsheadwrote on 09.04.2008:[6.0] "So ziemlich der überbewerteste Wrestler aller Zeiten! Wobei man hier sehen kann, was gute Promotion erreichen (bzw. anrichten) kann. Mr. WrestleMania, Showstopper... Die Rockers wurden von Marty Jannetty getragen, und auch nach dem Ende des Team war er noch lange nicht auf Martys Level. Er kann sich einfach besser in Szene setzen und hatte... ausführliche Unterhaltungen... mit Pat Patterson um die Spitze zu erreichen. OK. Ist ein Gerücht. Aber könnte sich ein Gerücht und Grundlage so lange halten, wenn nicht was dran wäre? Egal. Trotz allem mag ich ihn ganz gerne. Er ist aber weit entfernt davon, der beste zu sein, wie es von vielen gerne kolportiert wird."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Pulpulwrote on 07.04.2008:[10.0] "Gehört ohne Zweifel zu den größten Wrestlern aller Zeiten. Stark im Ring, kann jeden Wrestler gut aussehen lassen und gehört wohl zu den charismatischsten Leuten, die das Sports Entertaiment je gesehen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BlackPhoenixwrote on 06.04.2008:[10.0] "er weiß einfach wie man die Leute unterhält und ist dabei noch einer der besten wrestler der Welt !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SeEn2005wrote on 04.04.2008:[10.0] "Er ist einer der denkwürdigsten und atemberaubensten Wrestler, die es gibt, wenn nicht sogar je geben wird. Das Match mit Ric Flair bei Wrestlemania war eines der besten Matches, die Michaels bestritten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MysterioMisticowrote on 03.04.2008:[10.0] "Als Wrestler einfach eine Nummer für sich. Immernoch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheROCKwrote on 03.04.2008:[10.0] "Er ist der beste Wrestler aller Zeiten. Sogar als großer Bret Hart Fan muss ich zugeben, dass Michaels einfach der Beste Wrestler aller Zeiten ist und vermutlich bleiben wird. Natürlich heißt es bei dem Titel ''Bester aller Zeiten'' immer, naja es gibt auch noch den und den. Natürlich bleibt Hogan bekannter und beliebter. Ric Flair wird erfolgreicher als Shawn Michaels bleiben, aber niemand ist und wird im Ring so lange und auf solchem Niveau wrestlen können, wie Shawn Michaels. Selbst Kurt Angle kann auf lange Sicht gesehen nicht den Standard eines HBK halten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mrkennedy1990wrote on 03.04.2008:[10.0] "Einer der wenigen Wrestler, die wirklich eine 10 verdient haben. Ganz großer Entertainer und ein mindestens genauso guter Wrestler. Kann aus fast jedem ein 4-Sterne-Match zaubern. Hoffentlich noch mindestens 10 Jahre aktiv."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Akkuswrote on 27.03.2008:[6.0] "Ist nicht so mein Fall. Klar er ist ein Superstar in der WWE der sich immer hinlegt für jüngere, aber ich kann mit ihm nichts anfangen, gebe ihn aber ne 3."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ruppiwrote on 27.03.2008:[10.0] "Aufgrund von Montreal und einigen anderen Vorfällen bin ich in Versuchung, ihm eine 0 zu geben. Aber so ist das Business. Ich finde es nicht in Ordnung, was er und Vince damals abgezogen haben, aber ich kann sie (vor allem Vince) verstehen. Und ansonsten ist Michaels einfach ein sehr guter Wrestler mit enormen Fähigkeiten im Ring, am Mic, einem enormen Charisma und einem Gimmick, dass einfach passt. Hoffe für ihn, dass er sich nicht kaputt wrestlet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Wieauchimmerwrote on 24.03.2008:"Fällt mir bei Shawn Michaels schwer eine Bewertung zu finden. Einerseits in der Lage fantastische Matches zu liefern, hat durchaus Charisma und gutes Micwork (allerdings in meinen Augen beides nicht (mehr) so überragend wie es gerne dargestellt wird), andererseits muss man sagen dass Shawn Michaels oftmals sehr unprofessionell arbeitet (siehe Hulk Hogan - dafür gibt es KEINE Entschuldigung), vermutlich auch aufgrund Backstage-Politics bzw. seines Standings auch im Gegensatz zu anderen Wrestlern regelmäßig sein Moverepertoire auspacken darf und eben auch nur gefühlte dreimal im Jahr bei ner Houseshow auftritt, also auch nicht ansatzweise die Belastung anderer Wrestler hat und er eigentlich auch in jeder Storyline (übermäßig) gut dargestellt wird."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ultimate-warrior-xwrote on 23.03.2008:[10.0] "Hat alles erreicht, was will man mehr? Der wohl best Wrestler den die WWE hat. War einer der Gründe warum ich in den 90 angefangen habe Wrestling zu schauen. Ich Hoffen wir sehen den noch viele Jahre und auch mal wieder als Champion. Never Stop this Show!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ric Flair88wrote on 20.03.2008:[10.0] "Ist heute ein ganz anderer als noch vor 10 Jahren. Von der Technik und Ringpsychologie her gesehen mit Ric Flair auf eine Stufe zu stellen. Montreal war zum Großteil nicht seine Schuld. Nach seiner Rückkehr hat er sich ganz in den Dienst der Company gestellt (siehe SummerSlam 2005) und auch kein Problem damit sich gegen aufstrebende Stars wie John Cena hinzulegen. Außerdem ist er mit über 40 noch wesentlich besser als ein Großteil des aktuellen Rosters. Michaels wird als ein ganz großer in die Geschichte des Wrestlings eingehen- vüllig zurecht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DirtiestPlayerwrote on 18.03.2008:[10.0] "Absoluter Dauerbrenner der WWE! Fand ihn besonders als Heel Anfang der 90er spitze. Für mich damals der beste Intercontinental-Champion aller Zeiten. Auch heute noch mit Top-Matches und jederzeit Mainevent-würdig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: edge-head92wrote on 17.03.2008:[8.0] "Hat in letzter Zeit etwas nachgelassen...trotzdem einer der Besten!!!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DonTwrote on 17.03.2008:[10.0] "Einer der Männer, die WWF/WWE machten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: xXJohnCenaXxwrote on 17.03.2008:[10.0] "Er ist schon seit Jahren in der höchsten Wrestlingleague im Sports Entertainment und liefert schon seit Jahren die geile Matches, was ihn zu meinem absoluten Lieblingswrestler macht "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Instant Classicwrote on 13.03.2008:[10.0] "Einfach der Showstopper und Main Eventer.  Weiß aus jedem, ein gutes Match rauszukitzeln und Segmente mit ihm sind immer ein Highlight. Hoffentlich gönnt WWE ihm irgendwann einen erneuten längeren WWE Title Run."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Timetoplaythegamewrote on 11.03.2008:[10.0] "Genialer Wrestler. HBK forever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Desperadowrote on 09.03.2008:[10.0] "Natürlich volle Punktzahl für HBK. Denn Michaels hat einfach alles, was man als Wrestler braucht. Ein grandioses Können im Ring, eine tolle Ausstrahlung und außerdem ist er so unterhaltsam. Einfach der perfekte Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: UltimateCarebearwrote on 06.03.2008:[6.0] "Er mag unzählige Klassiker abgeliert haben im Laufe seiner Karriere aber ich kann ihn einfach nicht mehr sehen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fabbowrote on 03.03.2008:[10.0] "The Showstopper. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: fzero9wrote on 02.03.2008:[10.0] "HBK ist einfach der beste"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Meanbeastwrote on 25.02.2008:[10.0] "Meiner Meinung nach die perfekte Mischung aus Techniker und Entertainer! Ist schon lange dabei und hat seinen Stellenwert bzw. seine Erfolge redlich verdient! Hut ab!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: caterwrote on 23.02.2008:[10.0] "Man mag über sein (früheres) Backstageverhalten denken, wie man will, aber man muss neidlos anerkennen, dass HBK einer der besten und unterhaltsamsten aktiven Wrestler ist. Charisma bis zum Abwinken und sicherlich kommender Hall of Famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NoSoulwrote on 16.02.2008:[10.0] "Er ist einer der wenigen, der sowohl wrestlerisch als auch durch sein Showtalent überzeugt. Seine Glanzzeit in den 90-ern war einfach fantastisch. Auch heute ist er noch gut, müsste aber mal wieder in einer guten Storyline eingebaut werden. Eine letzte Titelregentschaft und danach Karriereende fände ich gut. Er sollte auf jeden Fall den Absprung schaffen, bevor er nicht mehr auf dem hohen Niveau mithalten kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: the original chriswrote on 07.02.2008:[10.0] "legende einfach nur legende dieser mann "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fumaryuwrote on 07.02.2008:[8.0] "Technisch gut gerüstet,hatte Anfang der 90er ein klasse Image. Den Motreal-Screewjob fand ich Mist. Sieht heute körperlich etw. kaputt aus. "
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Legionwrote on 29.01.2008:[8.0] "Kontrovers ist er sicherlich, aber dennoch eine Legende und ein zukünftiger Hall of Famer. Seine Matches haben mich größtenteils immer überzeugt und das er schon so lange dabei ist verdient einfach Respekt. Wenn sich seine gesundheitlichen Probleme allerdings nicht bessern, sollte er langsam ans aufhören denken."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Reno Cortavillawrote on 21.01.2008:[10.0] "Mit der Einzige WWE'ler, der mir gefällt und gefallen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Showstopperwrote on 21.01.2008:[10.0] "Meine absolutes Idol.Er überragt so gut wie jeden,in Kategorien Micwork und In Ring Skillz.Ist der WWE immer treu geblieben.IMO der grösste Wrestler aller Zeiten.Auf zum 5 World Titel"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: AnFuwrote on 14.01.2008:[10.0] "Der Showstopper, eine Legende! Er sollte langsam aber ans Abtreten denken, ist im Ring ein Wrack! Trotzdem ein klasse Wrester und ich vergebe die Bestnote!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Joe710wrote on 08.01.2008:[10.0] "Was kann man denn noch zu HBK sagen. Was anderes als eine 1 könnte ich ihm gar nicht geben. Er hat das Buissnes geprägt wie kein zweiter und selbst durch seine Skandale, hat er sich unsterblich gemacht. Niederlagen schaden seinem Standing jetzt sowieso nicht mehr, deßhalb find ich es cool, dass er in letzter Zeit ziemlich oft gejobbt hat. Und trotzdem kann ihm fast keiner, was seine In Ring Skills und Promos betrifft, dass Wasser reichen. Michaels ist für mich Sports Entertaiment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: H B Kwrote on 08.01.2008:[10.0] "Vom Entertainment und Können her gesehen, einer der besten Wrestler der letzten 10/20 Jahre (mindetens)! "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mr sledgehammerwrote on 04.01.2008:[10.0] "Ein brillianter Techniker und einzigartiger Showman. Natürlich darf man Montreal nicht vergessen, aber wen kümmert das schon, in Momenten wenn die ganze Halle bei der Sweet Chin Music brüllt und tausende Stimmen seinen Entrance-Song mitsingen. Michaels ist der geborene Entertainer und wird wohl immer unvergessen bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Stone Cold Andywrote on 04.01.2008:[10.0] "Eine glatte 1. Viele tolle Matches machen HBK zu einem meiner Favoriten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "Verdammt war und ist der gut. Shawn Michaels kann mich immer noch sehr gut unterhalten und hat seine Erfolge auch redlich verdient. Schade, dass er und Bret Hart sich nicht verstehen-zwei so brillante Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: King of Queenswrote on 02.01.2008:[10.0] "Toller Entertainer, super Wrestler. Gehört zur absoluten Weltspitze und das nach unzähligen Verletzungen, Rückschlägen und recht hohen Alters. Sensationell!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: yogywrote on 01.01.2008:[10.0] "HBK-respekt vor ihm!Hällt sich jetzt auch schon fast 20Jahre an der Spitze und kann immer noch fantastische Matches zeigen.Mitte der 90 war er der beste Entertainer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: EvenflowDDTwrote on 31.12.2007:[8.0] "Shawn Michaels, immer wieder schön ihm zuzusehen. Egal als ob Teil der DX, Face, Heel oder sonst was. Doch irgendwann hat man genug und ich hoffe das es bald eine Storyline gibt in der Triple H gegen HBK turnt. Diese sollte mit einem "Loser Retires" - Match enden, welches Triple H als Heel gewinnt sodass HBK als Face einen Abschied kriegt denn solangsam sollte Michaels sich (zuletzt auch wegen seines Knies) überlegen aufzuhören."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hanksterwrote on 29.12.2007:[8.0] "Menschlich verachte ich ihn zutiefst. Über seine wrestlerischen Fähigkeiten gibts hingegen nichts zu sagen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MA Excellentwrote on 29.12.2007:[10.0] "Tja, Shawn Michaels, für mich eine kontroverse Figur. Ich sehe ihn in 3 Phasen : 1. Die "AWA/WWF-Rockers"-Phase, in der er im Tag-Wrestling Maßstäbe gesetzt hat; 2. Die erste Singles-Phase, in der er einer der besten IC Champions ever und ein sehr überzeugender WWF Champ war. Menschlich jedoch sehr abstoßend: sehr divenhaft, überheblich und tückisch. Hang u.U. auch mit seinem Drogenkonsum zusammen. 3. Die aktuelle Singles-Phase, nach dem gesundheitlich Supergau und mit nun gefundenem Glauben. Charakterlich völlig überzeugend, jedoch ist wrestlerisch der Zenit etwas überschritten. Ergo: Auch wenn es mir als Bret-Mark schwer fällt, eine 1 für all die Jahre hervorragendes Wrestling und Entertainment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Y2J Michaelswrote on 27.12.2007:[10.0] ""The Headliner, The Main Event, The Icon, The Heartbreak Kid" ist für mich der beste Performer in der Wrestlinggeschichte. Niemand weiß so gut wie er, wie man das Publikum in seinen Bann zieht und es zum kochen bringt. Für mich  macht das sogar den Montreal Screwjob vergessen, weil das was er für die WWE getan dagegen nur ein kleiner Ausrutscher war. Er ist für mich der beste und wird es auch immer bleiben. Nebenbei wünsche ich mir das HBK einmal wenigstens noch Champion wird. Von mir aus sogar bei Smackdown. Hauptsache er wird es nochmal"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bullit69wrote on 27.12.2007:[10.0] "Aufgrund seiner Verdienste kann man ihm ja nur 10 Punkte geben!!Aber spult schon ein paar Jahre das selbe,immernoch unterhaltsame Programm ab!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Aglaoswrote on 21.12.2007:[10.0] "Ich verbeuge mich vor dem größten Entertainer und Athleten, den die Wrestling-Welt je hervor gebracht hat! Dieser Mann hat mich unterhalten wie niemand sonst, heute noch genauso wie früher. Ich bin auch der Meinung, dass er langsam zurück treten sollte. Nicht deshalb, weil er seine Leistung nicht mehr bringen kann, sondern um zu verhindern, dass er es irgendwann wirklich nicht mehr kann. Ich möchte ihn nicht wie Ric Flair im Ring rumdümpeln sehen. Vorher ist allerdings unbedingt noch ein Rematch gegen Khali fällig. Die Niederlage gegen den wankenden Leuchtturm war IMO eine einzige Frechheit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Comptonwrote on 20.12.2007:[10.0] "Einer der besten WWE-Performer aller Zeiten, sowohl im Ring als auch außerhalb. Stieg vom Jobber zum WWE-Champion auf, revolutionierte die Wrestlingwelt mit der D-Generation X, löste sich von Drogenproblemen und kehrte nach einem vermeintlichem Karriereende vermeintlich zurück - was will man mehr?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Schandmaulwrote on 04.12.2007:[10.0] "Als Face mittlerweile etwas verbraucht. Ein Heel Turn wäre göttlich. Aber auch so. imo einer der besten aller Zeiten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: EGeraldhuebnerwrote on 01.12.2007:"Vorab ... er war (und ist) mir noch nie besonders sympatisch gewesen, also ein sehr guter und ebenso überzeugender Heel (das brauchte er allerdings nicht zu spielen, es ist sein wahres Ego - Montreal Screwjob), gestehe ihm aber zu, ein exzellenter Techniker zu sein (wenn er das zeigen will bzw. darf und vor allem muß) und ein sagenhaftes Durchhaltevermögen wie sonst kein zweiter zu besitzen ... außerdem der Meister des (glaubhaften ! ) Oversellings (z. B. gegen Undertaker ... verkauft deren Gimmiks grandios). Sollte aber langsam dem Business den Rücken kehren und eine Schauspielerkarierre anstreben, denn hier liegen inzwischen - rein altersbedingt - wirklich seine großen Stärken."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RhinoRaineswrote on 28.11.2007:[10.0] "Er ist einer der besten Wrestler aller Zeiten! Ihm kann auch der MSJ nichts anhaben, er ist und bleibt ein hervorragender Sports-Entertainer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: hoghwartwrote on 26.11.2007:[10.0] "Hat soviele Klassematches abgeliefert in seiner langen Karriere, dafür kann man ihm gar nicht genug danken. Schade, dass er wohl so schnelle keinen Titlerun mehr bekommen wird"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Heatwrote on 25.11.2007:[10.0] "Er ist es wirklich, The Mainevent, The Headliner. Leider layed er in letzter Zeit down for absolutely everybody, was ich angesichts seines immernoch vorhandenen Riesentalents schade finde. Dennoch einer der besten Wrestler der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sandman16wrote on 22.11.2007:[10.0] "Ein erstklassiger Wrestler, der ein gutes Match nach dem anderen zeigt. Bei Michaels passt alles zusammen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Masterpiecewrote on 20.11.2007:[2.0] "Shawn Michaels hat mir bei den Rockers und bis hin zur Survivor Series 1997 (Montreal Screwjob) am besten gefallen, danach muß ich ganz ehrlich sagen, ist Shawn Michaels für mich ein Hass-Objekt!"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Koitnreinawrote on 10.11.2007:[10.0] "Shawn Michaels ist einer der besten im Wrestlingbussines und ich hoffe er wird bei den Surviver Series Champ. :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rated-R-Fanwrote on 29.10.2007:[8.0] "Im Ring natürlich Weltklasse,doch am Mic nie wirklich talentiert."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Benny110106wrote on 28.10.2007:[10.0] "So sehr wie wir ihn in den 90ern gehasst haben so doll lieben wir ihn nun ;-) Michaels schafft es nun seit 20 Jahren den Fans eine reaktion aus den Leib zu prügeln ;-) Früher oftmals Grund für Randale und heute Grund für Nervenzusammenbrüchen bei den Mädels (und dass mit Haarausfall ;-) )HBK ich muss einfach sagen, du bist immernoch Top. Auch wenn wir die Montreal nie verzeihen werden die Note 1 bekommste trotzdem. Sei es einfach für die Dreitigkeit bei diesen Scheiß mitzumachen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Thomas Carlsonwrote on 28.10.2007:[10.0] "Hätte man damals ihn bewertet wo er backstage sich ziemlich daneben benahm hätte es wohl nur schlechte Noten gegeben. Erst war er Flugkünstler, dann entwickelt er eine Persönlichkeit, zementiert später seinen Status als Maiin Eventer und nach langer Verletzungspause wird er dann endgültig zur Legende. Hat er eigentlich schon mal ein schlechtes Match gehabt? Alles andere außer einer 10 kann ich ihm nicht geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mdbnasewrote on 27.10.2007:[10.0] "Immer kontrovers, aber einer der besten Entertainer und Athleten, die das Wrestling in den letzten 20 Jahren gehabt hat. Ein ganz Großer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jayem187wrote on 26.10.2007:[10.0] "The Showstopper, the Legend, the Icon ... DER Entertainer schlechthin. Montreal Screwjob hin oder her, dieser Mann ist einfach unvergleichlich. Ob am Mic oder im Ring, als Face oder als Heel, Shawn hat mich immer wieder beeindruckt und immer wieder einen draufgesetzt als ich dachte: "Da geht nix mehr! Die Spitze des Eisbergs ist erreicht. " Eigentlich schade das er im Moment wahrscheinlich seinen letzten Run bekommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CM Dannywrote on 20.10.2007:[10.0] "Er ging den Wandel im Wrestling immer voll mit. Er hat Charisma. Er ist einer der besten Entertainer am Mikrofon. Er spielt sowohl Face als auch Heel glaubhaft und tritt für das ein woran er glaubt, selbst gegen einen Hulk Hogan oder einen Mr. McMahon. Respekt! Im Ring unvergleichlich und unerreicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mugel 187wrote on 19.10.2007:[4.0] "er ist mir einfach unsympatisch(aber im ring und am mic machen ihm nur wenige was vor in der wwe)"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Cpt Dave Charismawrote on 17.10.2007:[10.0] "Eines der letzten großen Überbleibsl einer Zeit wo Wrestling noch Wrestling war und doch Entertainment.... He's the company"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Undertaker13wrote on 17.10.2007:[10.0] "Einer der besten die es zur Zeit gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: snierwrote on 06.10.2007:[10.0] "Einer der...., wenn nicht DER beste Alrounder im Ring. Außerdem ein Klasse Entertainer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Oli10wrote on 01.10.2007:[10.0] "Ist schon seit den 90ern mein absoluter Lieblingswrestler!!! Macht schon immer eine mega geile Show! HBK forever!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Wuschl 85wrote on 01.10.2007:[10.0] "Ein super Techniker. Heute noch einer der Besten bei der WWE. Er hätte sich einen neuerlichen Titelrun an der Spitze der Promotion verdient. Früher war er noch besser, sein arrogantes und selbstverliebtes Auftreten war einfach total überzeugend und kam bei mir gut an. Ich hoffe er macht noch lang weiter, denn seine Matches waren und sind immer etwas sehenswertes. Und als Teil der DX bleibt er ohnehin immer einer meiner absoluten Lieblinge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Medeawrote on 29.09.2007:[10.0] "Shawn hat eine abwechslungsreiche Karriere hinter sich und mich dabei stets mit seinem Charisma und seinen guten Moves überzeugt. Sein Ego ist sein Image und macht ihn erst zu der schillernden Persönlichkeit, die er nun einmal ist. Dass er dabei polarisiert, belebt die Szene. Er gehört für mich eindeutig zu den besten und dominantesten Wrestlern seit Mitte der 90er Jahre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: A-marwrote on 25.09.2007:[10.0] "Hoffentlich ist er schnell wieder zurück. ARE YOU READY TO COME BACK? LETS GET READY TO SUCK IT! DX"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mr Money in the bankwrote on 25.09.2007:[10.0] "Für mich die Legende schlechthin einfach der beste Wrestler und zwar in allen Belangen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dead-man-walkingwrote on 23.09.2007:[10.0] "Also,ich finde ihn einfach genial!Er hat einen coolen Stil und sieht trotz seinem Alter imme rnoch gut aus!Ausserdem hat er so eine sympathische Art....Auf jeden Fall einer meiner Lieblingswrestler^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bhanduwrote on 15.09.2007:[10.0] "Einer der besten Wrestler aller Zeiten. Fantastisch im Ring (vor allem, wenn es darum geht, den Gegner gut aussehen zu lassen). Fantastisch am Mic. Kann als Face und als Heel vollkommen überzeugen, macht hunderte kleine Dinge immer wieder richtig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Alan Smitheewrote on 14.09.2007:[10.0] "Durch den Sinneswandels den er hatte nehme ich ihn um einiges ernster als Früher und kann ihm auch die verdienten 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kennedictwrote on 06.09.2007:[10.0] "Che wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Manuelwrote on 06.09.2007:[10.0] "HBK war früher einer der besten aber jetzt gefällt er mir nicht mehr. Dieses Jahr gefiel er mir wurde aber von Randy verletzt und fällt somit lange aus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Obermackerwrote on 09.08.2007:[10.0] "Obwohl er körperlich in den letzten Jahren stark nachgelassen hat, ist er immer noch DER Performer der company, an dem sich alle anderen messen lassen müssen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TeaspoonHBKwrote on 30.07.2007:[10.0] "Neben Ric Flair die größte Wrestlinglegende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DrBreswrote on 26.07.2007:[8.0] "Genialer Wrestler, der hoffentlich bald zurückkehrt und seinen letzten verdienten Titel-Run antritt. Kann aber nicht die Note 1 vergeben, dafür gibt es einige Makel: Sein Hang zu Overselling, sein nicht ganz altersgemäßes Gimmick als Heartbreak Kid (der Mann ist über 40 und nennt sich "Kid"), die sich langsam einschleichende Eintönigkeit in seinen Matches. Sehe ihn wirklich gerne, kickt mich aber nicht mehr ganz so sehr."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: FiveStarwrote on 21.07.2007:[10.0] "Der beste "Sports Entertainer" aller Zeiten - herausragende Mischung aus technischer Fähigkeit, Wrestlingkönnen, Wrestlingverstand, Ausstrahlung und Promo-Fähigkeiten.Wenn jeder "Sports Entertainer" so wäre wie der HBK, dann könnte man sich das Produkt gut und gerne regelmäßig ansehen. Ausserdem ein Vorreiter für eine Generation von "Light Heavyweights", die den Sprung in die Main-Event Szene schafften."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: real americanwrote on 12.07.2007:[10.0] "Michaels steckt auch in seinem Alter noch viele jüngere Wrestler in die Tasche. Schon mit Marty Jannety als Rockers und in der Dx hat er mir sehr gut gefalllen. Er ist ein toller Techniker und steht auch im Micwork seinem Kumpel HHH nichts nach. Er kann auch schwache Wrestler zu guten Matches ziehen und sein Backstageverhalten hat sich ebenfalls stark verbessert. Hoffe das er noch mal einen World Title gewinnen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Baldrickwrote on 05.07.2007:[10.0] "I-K-O-N-E ! Ich habe die Rockers geliebt aber ich vergöttere Shawn Michaels! Vollblutentertainer, der mich zu absolut jedem Zeitpunkt seiner Karriere glänzend unterhalten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Blade Bourdeauxwrote on 04.07.2007:[10.0] "Über seine Fähigkeiten braucht man kein Wort zu verlieren, die sind überragend. Daher hebe ich mal hervor, dass er meiner Meinung nach der Worker ist, der es im Laufe seiner Karriere mit am besten verstanden hat sein Profil zu schärfen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Azraelwrote on 04.07.2007:[10.0] "Einer der allergrössten Wrestler aller Zeiten, der kann einfach alles. Ich hoffe sein Knie verheilt gut, damit er in alter Stärke zurückkehren kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Svaniwrote on 30.06.2007:[10.0] "Ich kann mich nicht erinnern irgendwann mal ein schlechtes Match mit Shawn Michaels gesehen zu haben. Er ist klasse am Mic, toller Techniker und als DX-Mitglied zusammen mit Triple H ist der Unterhaltungswert 100%ig abgedeckt! "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ShaneOwrote on 28.06.2007:[10.0] "Einer der Besten aller Zeiten. Den Screwjob hab ich ihm nie verziehen, aber der Mann macht das mit haufenweise Super Matches wieder weg. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Steven McWheelerwrote on 27.06.2007:[10.0] "Ich kenne niemanden,der so spannende Matches gestalten kann...(bis auf Triple H) Shawn Michaels agiert einfach sowohl als Face, als auch als Heel nahezu Perfekt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Shawn Michaelswrote on 25.06.2007:[10.0] "The Heartbreak Kid Shawn Michaels ist einfach der beste Wrestler meiner Meinung nach. Was der schon alles für geile Matches bestritten hat und wie gut der simulieren kann einfach der Hammer der Mann!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Templeton Peckwrote on 24.06.2007:[10.0] "Da ich ein großer Bret Hart Fan bin, hat er bei mir natürlich einen grossen Makel, aber objektiv betracht ist er einer der besten Wrestler der vergangen Jahre. Ich hab auch noch immer die naive Hoffnung, dass sich Michaels und sein Kumpel Levesque vielleicht irgendwann doch mal beim Hitman für Montreal entschuldigen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HHH-Stephwrote on 24.06.2007:[10.0] "Shawn Michaels is einfach der beste Wrestler aller Zeiten. Er steht schon seit über zehn Jahren im Main Event der WWE und hat sich im Ring kaum verschlechtert. Dazu kommt noch ein riesiges Charisma und ein geiler Entrance. Außerdem nach vier Jahren Auszeit wieder so aktiv wie er in den Ring zurückzukehren verdient eine Menge Respekt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Adrammelechwrote on 24.06.2007:[10.0] "Ich hab sein Image als Heartbrake Kid gehasst, aber er ist einfach einer der besten Wrestler die man im TV gesehn hat. Und das heute noch nach so vielen Jahren"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Lord Loviswrote on 24.06.2007:[10.0] "Neben Triple H und dem Undertaker einer der drei Besten der WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Der Showstopper hat es immer noch drauf, ob im Ring oder am Mic, nur hat er bei mir inzwischen den Ruf eines Finalverlierers inne. Immer dabei, aber stets verliert er! Es wird echt langsam Zeit, dass HBK nochmal den Titel holt! And if you`re not down with that, I got two words for you: suck it!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Foerstawrote on 24.06.2007:[10.0] "D-Generation-X. Ich finde das sagt alles. DIe bdien waren zusammen das geilste Stable und für sich alleine ist er wirklich ein HBK. Hoffe er bestreitet noch viele Matches mit Triple H. Sweet-Chin-Music tut im pbrigen jedesmal beim zugucken schon weh."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mr Lovewrote on 24.06.2007:[10.0] "Shawn Michaels ist einfach einer der besten Wrestler allerzeiten, er hat eine Ausstrahlung wie kein zweiter, schafft es fast jeden gegen ihm im Ring gut aussehen zu lassen, verkäuft seine Matches immer gut, ist im Ring einfach super, einer der Wrestler mit den meisten Moves. Man sollte seine Leistung einfach respektieren, vorallem in diesem Jahr, seit Anfang des Jahres hat er ja eine schwere Beinverletzung und wrestlete trotz großer Schmerzen einfach super. Er hat ja noch einen 5 Jahres Vertrag."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Nataljawrote on 24.06.2007:[10.0] "Ich bin ein sehr großer Heartbreak Kid Shawn Michaels Fan. (seit 12 Jahren)Er ist einfach der Beste...... Er macht seine Job einfach toll. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Trevedaswrote on 24.06.2007:[10.0] "Ausnahmewrestler. In sämtlichen Bereichen absolute Spitze, zudem ein vom Selling her das beste was ich je gesehen habe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Necronwrote on 24.06.2007:[10.0] "Unglaublicher Entertainer. Früher habe ich immer von einem tag team zwischen HBK und Bret Hart geträumt - erstaunlich, wie die beiden sich entwickelt haben ; ) Bemerkenswert auch sein Wandel vom PRoblemkind hin zur überverlässlichen Säule der Liga."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Elvis33wrote on 24.06.2007:[10.0] "1 letztes mal den Titel und dann könnte er langsam in Rente gehen. Bringt oft nur noch maßlos Übertriebene Aktionen, aber es ist schön das er sich immernoch so für die WWE einsetzt. Weniger als eine 1 kann man diesem Mann nicht geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Angus666wrote on 24.06.2007:[10.0] "Für mich mit der beste Wrestler überhaupt. Seine Matches sind legendär. Ohne  HBK wäre das Wrestling um eine große Persönlichkeit ärmer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TugayGwrote on 24.06.2007:[10.0] "Gibt es nichst zu sagen. Im Ring gut wie kein zweiter. Mic work auch gut. Charisma auch. Hat viele legendäre Matches bestritten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MrFoxwrote on 24.06.2007:[10.0] "Einer der besten Wrestler die es je gab. Super Moves und auch am Mic super! Sein Match bei WrestleMania 12 gegen Bret Hart ist unvergesslich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Deadman81wrote on 24.06.2007:[8.0] "Punktabzug nur aufgrund des "Montreal Screwjob".Ansonsten WWE Legende !!!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mr Wrestlemaniawrote on 24.06.2007:[10.0] "Nach The Rock der Größte Sportsentertainer den die WWE je gesehen hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Smi-48wrote on 24.06.2007:[10.0] "Egoistischer Vollblut-Entertainer. Einer der besten Wrestler aller Zeiten, mit unendlichem Entertainmentfaktor. Prägte eine Ära, öffnete die Main-Event Türen für viele Leichtgewichte, zu Recht Legende genannt. War als Heel noch besser als als Face, ist seit seiner Rückkehr 2002 etwas farblos, war früher noch besser !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: renol2007wrote on 24.06.2007:[10.0] "er ist einer der besten wrestler. DX 4ever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hit Manwrote on 24.06.2007:[10.0] "Für mich einer der besten Wrestler aller Zeiten.Steht wrestlerisch auf einer Stufe mit Leuten wie Bret Hart oder Curt Hennig.Ein kommender Hall of Famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MarkyMarkwrote on 24.06.2007:[10.0] "Damals so wahr wie heute - the very best sports entertainer in the world today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jupp365wrote on 24.06.2007:[8.0] "Kontrovers, kontroverser, HBK. Dass ich den Typen nach Montreal jemals mögen würde, hätt ich vor 10 Jahren nicht gedacht. Aber er ist ein Muss. Er ist ein genialer Wrestler und Entertainer. Nur der Namen Heartbreak Kid.... naja sollte man in diesem Alter vielleicht überdenken."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: timbo7111wrote on 24.06.2007:[8.0] "Eigentlich müsste ich hier wegen der überragenden Fähigkeiten die Höchstpunktzahl geben, aber der Screwjob und sein egomanisches Verhalten verhindern das.Daher "nur" die zweithöchste Punktzahl."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Absolut begnadeter Mic-Worker...für mich, als eher Späteinsteiger ins Wrestling, schon fast eine Legende..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Batti-starwrote on 24.06.2007:[10.0] "Für mich DER Inbegriff des Wrestling! Seit Jahrzenten immer an der Spitze der WWF(E) und das völlig zurecht. Geilster Einmarsch! "I`m just a sexy boy!"... nur der Screwjob kratzt an seiner perfekten Kariere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Groissy12344wrote on 24.06.2007:[10.0] "Genial, Genialer, Shawn MichaelsEiner meiner Top-Wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dangerouswrote on 24.06.2007:[10.0] "Seit fast 20 Jahren einer DER Stars im Business. Und er hat es immer wieder geschafft, im Blickpunkt zu stehen (Montreal, Clique, etc.). Das muss erstmal einer toppen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mr perfectwrote on 24.06.2007:[8.0] "Shawn Michaels ist einer der besten wenn nicht sogar der beste in diesem Sport er hat immer alles gegeben und hatte immer gute Fehden so das es spaß gemacht hat ihm zuzuschauen"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mediwrote on 24.06.2007:[10.0] "Heart brek kid......... ist da was nötig zu schreiben? ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Shazammmmmmmwrote on 24.06.2007:[10.0] "The best there is, the best there was and the best there ever will be!:)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Alex Shelleywrote on 24.06.2007:[10.0] "Einer der besten Wrestler aller Zeiten. Heute IMO zwar nicht mehr 24/7 der Showstopper, als der er sich auch noch selbst bezeichnet, aber wenn er mal wieder alles gibt (z. B. große PPV Matches), dann kommt meistens was ganz Großes dabei heraus. Großartiger Performer, wahnsinnige Ausstrahlung und ein wichtiger Teil der WWE Geschichte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: suntan superstarwrote on 24.06.2007:[10.0] "shawn michaels is ohne zwiefel einer der besten wrestler aller zeiten. als heel war er jedoch drauf und dran ein nature boy der neuzeit zu werden. dann kam gott :) und allesänderte sich. im ring macht ihm keiner was vor"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JBL-just a big Legendwrote on 24.06.2007:[10.0] "Shawn Michaels ist ganz klar erkennbar On The Road to WrestleMania, seit der Verletzung von Triple H erlebt er einen dritten oder vierten Frühling,er ist zur Zeit der beste Workder im Raw Roster,obwohl er die D-X alleine tragen muss oder gerade deshalb.Mister Showstopper scheint noch mal allen beweisen zu wollen,was noch alles in ihm steckt und das tut er gerade beeindruckend.Ich bin mir auch sicher,dass er bei WrestleMania ein gutes Match aus John Cena rausholt und eventuell den Titel bekom"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Vimeswrote on 24.06.2007:[10.0] "Zweifelsohne einer der besten Wrestler aller Zeiten. Der einzige in seiner Gewichtsklasse, der es geschafft hat, sich auf Dauer im Mainevent der WWE zu etablieren(zehn Jahre)! Backstage seit seiner Rückkehr 2002 erstaunlich zurückhaltend. Bemerkenswert auch seine Professionalität im Bezug auf den Screwjob. Vor allem bei seinen Auftritten in Kanada, hat er es immer wieder verstanden das Geschehene für das Buisness zu nutzen, ob in Promos oder durch austappen im Sharpshooter bei Backlash 2004."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jimpanse1980wrote on 24.06.2007:[10.0] "Seit 20 Jahren konstant einer der besten. Bringt fast jeden zu einem guten Match (z. B. Vader). Geniales MicWork, nimmt auch härteste Bumps. Ein absolutes Allroundtalent. Da verzeihen wir ihm auch den ScrewJob und andere kleine Fehltritte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: shannonmoorewrote on 24.06.2007:[10.0] "Ein grossartiger Entertainer und ein toller Wrestler. Aber bei Gott ist der mir unsympatisch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hennewrote on 24.06.2007:[10.0] "Damals mal ein richtig guter. In den letzten 2 Jahren aber mit Ausnahme der Matches gegen Angle nur noch Standardprogramm. Bis zu seiner Verletzungspause 2007 wieder ein Topjahr."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Mountiewrote on 24.06.2007:[10.0] "Ein Gottesgeschenk an das Wrestling. Auch mit seinem derzeit verletzungsbedingt stark eingeschränktem Stil noch immer besser als neun Zehntel seiner WWE-Kollegen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: zacharymahabirwrote on 11.02.2025:[10.0] "I don't think there will ever EVER be another wrestler quite like him. He's got all the tools, can work any type of match and has seen the highest of highs, when it comes to the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: volcanowrote on 07.02.2025:"Kenny Omega is the greatest of all time. If you put Kenny Omega versus anyone else with wrestling comprehension it'll be a guaranteed 4*. Kenny Omega moves like no other, sells like no other, and has psychology like no other. I would no doubt give him a 10."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Nickswrote on 06.02.2025:[10.0] "He is the best wrestler in history, all his matches are a guarantee of quality, he is simply incredible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: comicsans1007wrote on 26.01.2025:[10.0] "it's truthfully hard to think of something wrong with Kenny Omega to me. he is someone who perfectly gets professional wrestling in a way. truly a one of a kind wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: dsv the raterwrote on 21.01.2025:[10.0] "for me, easily the best wrestler in history, awesome moveset, awesome entrance, awesome name, the guy is simply the best wrestler who has ever stepped into a professional wrestling ring, something surreal, every match of his is a banger"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Ghaith000wrote on 20.01.2025:"[10.0] "Kenny Omega is one of the best wrestlers in history, if not the best. His performance in the ring and his charisma as a wrestler are proof that he is a legendary wrestler.""
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: darkflame4527wrote on 20.01.2025:[10.0] "I flip between Angle and Kenny all the time, but over 50% of the time I feel Kenny is the greatest and best in-ring worker of all time. Every match he puts on is fantastic. He has insane strength and insane speed, way ahead of his time. Not many people have both of those attributes and he uses it to the max. His in-ring psychology is brilliant. Nothing more can be said."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Jona5Holt on Xwrote on 09.01.2025:[10.0] "Truly the greatest to ever do it in my eyes. He brought me so much joy in my teen years with his work in NJPW from 2015-2019, one of the most inspirational wrestlers of all time. No one can compare to this man and there will never be another Kenny Omega. He is 1 of 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: smitwrote on 09.01.2025:[10.0] "ive always liked wrestling, ever since i was little, but i never fully loved it. it wasnt until i discovered kenny omega years ago that i truly did. i really feel everything ive learnt about wrestling and everything ive grown to love and admire stems from finding out who kenny omega is. whether its his older works or his current AEW stuff, he is my favourite. the goat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: supper momentwrote on 08.01.2025:"For me Kenny Omega always is the best, i think he can do everything in that ring and the fact is he actually can.HE IS WRESTLING GOD AND THE UNDISPUTED ONE"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: gxldenjaywrote on 08.01.2025:[10.0] "HE IS THE GOAT HE IS THE GOD OF WRESTLING HE IS INCREDIBLE HE IS BEST TO EVER DO IT HE IS KENNY FUCKING OMEGA"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: goldendolphenwrote on 08.01.2025:[10.0] "the greatest to ever do it. the greatest that will ever do it. i dont care who you think is this best. they're not kenny omega. singles, tags, trios. grappling, puro, lucha, hardcore. it doesn't matter what kind of match he's having a great one. I LOVEE YOUUU KENNY"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Ozwernwrote on 05.01.2025:[10.0] "After his performance today, really looking forward to his return (as if there was any doubt). One of the greatest to ever do it. Hope he's being presented as the big deal he is moving forward."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MEDaminewrote on 05.01.2025:[10.0] "A Great wrestler, one of the best in history, with a lot of 5 (or more) stars matches, very great in the ring and very great in the mic too, and incredibly charismatic, no matter what his age is, he's always amazing"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: spacedustnebulawrote on 05.01.2025:[10.0] "At the age of 41, wrestling for nearly a quarter-century, and nearly dying of diverticulitis, Kenny Omega can still preform as one of the best wrestlers to ever step foot between the ropes. Very, very little competition."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Heatseekerwrote on 04.01.2025:[10.0] "Omega, along with a couple other of my favorites (most notably Gunther) is the perfect of example of how when it comes to pro wrestling it's not just about what kind of moves you can pull off, but also how you do the moves. I say this because compared to most wrestlers, everything Kenny does in terms of his in-ring movements is incredibly fluid and smooth. Granted, the guy does have a pretty expansive moveset, but I guarantee you if he only had half of that moveset he would probably still be one of my favorites because of how effortless he makes each move look. He's had some absolutely amazing matches in both NJPW and AEW, he's a solid promo, and regardless of what different types of wrestling fans think of him I believe when it's all said and done he will be regarded as a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dkexwrote on 04.01.2025:[10.0] "Er ist und bleibt ein fantastischer Wrestler, es gibt kaum einen Mann, der mehr MotY-Kanditaten performed hat als er. Dazu konnte er sich bei AEW auch außerhalb des Rings verbessern, was Micwork und Storytelling angeht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: anarchovampwrote on 27.12.2024:[10.0] "Quite simply, The Best Bout Machine lives up to his name, perfectly synthesizing high workrate along with a showman's flair with everything he does. Omega is an incredibly intelligent wrestler as well, seemingly sprinkling details that go unnoticed but highly enhance the actual match itself. Extremely versatile as a character, playing a great babyface as well as an exceptional heel, while also arguably becoming the greatest gaijin in NJPW history. An unmistakable legacy that still has room to grow."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Its Clobbering Timewrote on 23.12.2024:[10.0] "Kenny Omega is that Motherfucker, he is the Greatest in ring competitor Ever and it's not close, he has countless 5 star matches and his move set is out of this world, his matches with Okada, Ospreay, Naito, Ibushi, Ishii, Danielson, Young Bucks, Jericho & Tanahashi, are some of the greatest matches of all time. Kenny has the deepest bag of all time. Anytime he's on a card he's its a guarantee that he will have match of the night. Theres a reason why he's called the best bout machine. Kenny's Peak is in New Japan where he was the Leader of the Bullet Club and took Japan by storm and is the main reason why it is so big today. He's won a bunch of titles in all sorts of Promotions like NJPW, AEW, DDT & TNA, and he's been apart of some of the most famous teams/groups in History like Bullet Club, The Elite & Golden Lovers. Kenny is also an founding member of AEW. Love him or Hate him there's no denying the impact that Kenny Omega has had on the wrestling world and that he is one of the Best Professional Wrestlers of All Time. Kenny is one of my favorite wrestlers ever so I Cant wait until he is back on my screen until then Goodbye and Goodnight Bang."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Nitrodustwrote on 23.12.2024:[10.0] "Kenny Omega is simply the most electrifying professional wrestler I believe that I have ever witnessed wrestling. His imagination athleticism are unparalleled in the business. While others may surpass him in star ratings. His ability to pull off the extraordinary indeed makes him the Best Bout Machine."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TPGwrote on 05.12.2024:[8.0] "On his best day, Omega puts out a five star classic. The stuff vs Hangman, Okada, Ospreay, his entire AEW Title run, all amazing stuff. He's a great wrestler, just not an amazing one to me. His meta humour is sometimes a little too much, there are numerous occasions where everything gets way too unrealistic and over the top, and that brings him down a bit to me. Still, plenty of good to great matches on his list you can find."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AceHagannwrote on 26.11.2024:[10.0] "One of my favorite modern wrestlers, Kenny is great all around. His work on the mic is great, he has a captivating personality, and his in-ring performances are one of the best there are currently."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ItsAllAWorkAnywaywrote on 13.11.2024:[9.0] "Kenny Omega seems to be the complete package - Good looks, good physique, and the ability to have drawn-out athletic contests. Yet in North America, people value mic skills and if there was one thing to his hindrance, it was that. Not helping things was that injuries became more commonplace after his grueling contests in Japan. That said, the hype is real for those who appreciate his athleticism - Too bad some of the detractors are more focused on comedy stuff instead."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: skylar00ashleywrote on 09.11.2024:"Kenny Omega is The Greatest of All Time his matches against okada, ibushi , ospreay, and naito are some of the greatest matches of all time. Kenny can be 50 percent healthy and still is a top 3 wrestler in the world. He can work any style you name the style he can do it he has changed wrestling for the better and thats why he is greatest ever."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: bustopboywrote on 01.11.2024:[10.0] "The greatest pro-wrestler of all-time. Bar none. All four matches with Okada, Any Ibushi match, the Naito G1 Match, Omega vs Ishii, the Tanahashi WK match, GL vs Bucks, him + Hangman vs Bucks, Omega vs Danielson, Omega vs Ospreay, Omega vs PAC, Omega vs Hangman, Omega vs Mox, Elite vs Death Triangle, not even to mention all of his other matches and his character. His storytelling is on another level He's just genuinely the coolest wrestler to ever step foot in a wrestling ring and he hits it out of the park every single time. He's simply the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: maven loverwrote on 29.10.2024:[7.0] "One of the better of the contemporary acrobatic-style wrestlers, whom still knows how to work the psychology aspect & come across serious. Kenny Omega is able to work within the high-flying paradigm & put out consistent, super-fun matches with incredible athleticism. His promos could use some work (he really, really overacts). It's nice to see that he seems to be recovering well from his medical issues, & I hope to see him back in the ring sooner rather than later."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JackBurtonsTruckwrote on 21.10.2024:[7.0] "Im not a fan of his character work or mic skills. Some of his in ring moves are cool but theres way too much standing around waiting for people and doing choreographed routines. Gymnastics style wrestling just really isnt for me. He is very skilled at it however so Im giving him a 7. Ive watched quite a few of his matches and at this point hes a channel changer for me. Id give him a 5 as a score, but I cant knock that he is good at his chosen style, even if I think its boring."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TreyHalowrote on 17.10.2024:[10.0] "In my opinion Kenny is genuinely one of, if not even the best wrestler of all time, that may sound blasphemous to some but at the end of the day it's all opinionated and I truly believe he's top 3 without a doubt, he is largely responsible for popularizing Japanese wrestling in the west, and is overall just a perfect professional wrestler, there's no holes in his game at all, from his adaptation to the styles of his opponents, to his match catalog that legitimately feels like it never ends because of the sheer amount of quality within it. He's maybe the easiest 10/10 I'll give out on here as I seriously didn't even need to think about it for a second..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Uweuwesenwrote on 15.10.2024:[10.0] "Im Ring ist Kenny Omega einer der besten Worker, den ich je gesehen habe! Seine Moves und die Chemie die er so ziemlich mit jedem Worker hat, macht ihn einfach zu einer legendären Personalie. Seine Japan Karriere habe ich nur nachträglich mitbekommen. Ein paar DDT Sachen habe ich gesehen und sie waren ebenfalls hervorragend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Vinish Singhwrote on 02.10.2024:"Kenny is the wrestler whose matches got me back into Wrestling. I was fed up of the type of wrestling which evolved in WWE in recent times, which had very less 'Actual' wrestling in them and was bored and got disinterested in wrestling. AEW rekindled my love for wrestling and Kenny was one of the prime reasons for it.. Thanks Kenny !"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Saladbagelwrote on 02.10.2024:[9.0] "Kenny Omega was a phenomenal wrestler in his prime. Getting a bad match out of him was exceedingly rare. However, his promos were often weak and his gimmicks were often standard and nothing special. Hence, I can't call him a perfect wrestler with a 10/10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: blueryuuwrote on 02.10.2024:[10.0] "A great wrestler that marked his era! It has been good seeing his evolution, from his run as IWGP intercontinental champion to his run in AEW"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dweeeabwrote on 30.09.2024:[10.0] "One of the greatest of all time. Amazing selling, in ring storytelling & moveset. Has also been part of multiple matches that I consider to be the best of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jpirtle522wrote on 26.09.2024:[10.0] "If God was a wrestler, hed be Kenny Omega. He is without a doubt the best wrestler of this generation. The matches he had in NJPW and AEW have been peak wrestling. If you wanted to get into Kenny, watch his trilogy against Kazuchika Okada."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Bluecap1998wrote on 24.09.2024:"Decent in the ring and okay on the mic but one of if not the most overrated wrestlers in modern wrestling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Icekommanderwrote on 09.09.2024:[10.0] "What can you say about Kenny Omega besides being one of the best big match wrestlers of his era? Despite injuries playing a major part of the recent past, he delivers big pay per view matches again and again. We can only hope that he comes back from his most recent health setbacks as great as ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jsbortswrote on 09.09.2024:[10.0] "If you don't enjoy Kenny Omega then we just have different views on what's good entertainment and what's fun. He's everything you want him to be and brings an intensity that is quite unmatched. If you have pre-existing views of wrestling then I understand that maybe he's not your preferred style, but of every wrestler I've shown people who don't watch wrestling, I'd say the number one guy people enjoy is Kenny. Nevermind that he's a good promo in two different languages, can put together an incredible match in his sleep, has put his body through an insane amount, and is great at every technical aspect of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Cletxawrote on 07.09.2024:[10.0] "I don't like him for no reason. I have no reason, and when I first started watching wrestling, I always supported his opponents. despite this, I still respect him. He's a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: wrestlingswiftiewrote on 28.08.2024:[8.0] "Unlike most, I actually really like Kenny. His matches are incredible and his aura is undeniable. However, he's not a 10 for these three reasons: Lack of promo ability, being... a bit too nerdy. And, hokey stuff like wrestling a little girl. He still gets an 8 from me."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Nudlewrote on 26.08.2024:[10.0] "Outside of some slightly irritating things he does (silly facials and the skip into the run which isn't necessarily bad I just don't care for it), one of the best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BULLETCLUB4EVERwrote on 19.08.2024:[10.0] "Probably the best wrestler with AJ Styles of the last 24 years. He is the belt collector, his match in NJPW are perfection. With Ibushi one of the coolest tag team ever. Great work with the Bucks and Bullet Club, top star in NJPW and in AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SephyAtticuswrote on 18.08.2024:[10.0] "After I stopped watching wrestling for several years and got back into it in 2022, I wasn't used to many of the wrestlers who boomed in popularity since I last watched, however Kenny very early on caught my attention. His charisma is through the roof, having some of the best gimmicks such as the Belt Collector, and not to mention his in ring work is fantastic. For someone with a lot of nicknames, such as The Cleaner and The Best Bout Machine, he has earned them all. I'm excited for the work he'll do when he comes back, and for now will enjoy the years of past work that I can rewatch or experience for the first time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Prorasslinanglewrote on 05.08.2024:[10.0] "A ten for me is very, very rare, but Kenny Omega is, to me, the greatest wrestler of all time, so he absolutely gets a 10. Theres not many who can call themselves the best bout machine and back it up. Well, perhaps hes the only one, and back it up he does every time he steps in the ring. God bless Kenny. Hope hes back soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KobashiChopMewrote on 05.08.2024:[9.0] "I like Kenny, I really do. I think he is one of the best things about AEW. But I also think a lot of his in ring work has sort of declined after leaving NJPW. Not to mention how this injuries he's been unfortunately having as of late have done to his career. I hope he only comes back when he is fully healthy and ready to get in the ring, because I do not want to see him on the sidelines again."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: sunnywrote on 02.08.2024:"[10.0] Personally my favourite wrestler, if you put all the Meltzer stuff he truly is one of the greates to step in a ring. He knows exactly how to get a crowd to feel something while also preforming at an exceptional level. Even with all the punk stuff that happened, kenny showed maturity and mde things right with punk on his part. i think the reason i say he is my favourite comes from his showing with hangman in 2021. Evenu injured he put on one of the best if not the best stories to come out of AEW, he put over Hangman and did his job incredibly well. Some of the things that Jim cornette say i can understand because Kenny's style of wrestling is definately not for everyone however that doesnt mean that he is a terrible wrestler. Not to mention Kenny's is literally one of the sweetest human beings ive ever seen. he has every right to be rude and entitled due to his profession but he is incredibly humble and down to earth. For me he truly is the entire package of what you want in a wrestler and also as a person :)"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Aspionwrote on 22.07.2024:[10.0] "(Sorry english is not my firtst language) The God of Wrestling. Im just having fun in all moments of his career"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Joe907wrote on 16.07.2024:[10.0] "Kenny Omega is a generational wrestler. Best bout machine. The Cleaner. He produced some of the greatest matches ever. He can adapt to any style of wrestling, lucha, technical, or strong style. His move set is insanely good. One of the greatest of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Khalid Acewrote on 22.06.2024:[6.0] "To me Kenny Omega is a top 15 in ring performers but he has declined massively since leaving NJPW. He's not giving us these great performances as he used to do. His character work was always lacking. He's not good on the microphone unlike what people keep saying."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: bfrgwrote on 10.06.2024:"Kenny Omega is the best wrestler of the modern era and one of the best wrestlers of all time also a great person."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Willie 19200wrote on 02.06.2024:[10.0] ""The Best Bout Machine" Kenny Omega is arguably one of the best wrestlers in the world. I discovered Kenny Omega very late in his career, but looking back on some of his matches, for example his matches with Kazuchika Okada, Will Ospreay, Bryan Danielson, Page, and so many more, I can see the hype in Kenny. he is easily one of the best wrestlers in the world, and personally one of my favorites."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BuStopBoYwrote on 21.05.2024:"[10.0] The greatest wrestler of the modern era and arguably of all time with his incredible in-ring work and his flashy personality, he truly is one and only best bout machine."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: shockwrote on 17.05.2024:"Simply the best wrestler in recent years in my opinion. His matches against the likes of Naito, Okada, and Jericho really got me into NJPW. I've never seen a bad Kenny Omega match. He has the perfect blend of the modern, fast-paced style while maintaining the believability of the match through his world class selling and match psychology. I think his promos are also underrated. He has a great moveset with the One Winged Angel being one of my favourite finishers ever. Obviously, it helps that it has been protected so much throughout the years, but the move looks devastating so it's believable that the match is over once he hits it. Kenny gets a perfect 10 rating from me."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: louisehelenwrote on 16.05.2024:[10.0] "I'm thinking about who doesn't love Kenny. It's not an exaggeration to say that every match he has is very exciting. When he was in Japan, he was at his peak. As a vice president at AEW, he himself said he was an incompetent vice president, but I can understand that because he really loves wrestling, these power game may not be suitable for him. When he wrestled in Japan before, I watched a few match and really noticed that he was invading TNA. He was too crazy, with a few belts, and later he was injured intermittently. I was thinking that he might retire early. I read the report during this period, he is preparing for surgery, and I don't know how his condition will be after returning. I hope he won't retire early. Retired because I really wanted to watch him compete, but health is the most important thing. Who knows what will happen in the future, or I can see him on other platforms (his favorite games), hahaha, But it's unlikely because I'm not in the United States and we can't see his game competitions here. Watching AEW wrestling takes a day to see, but I still hope he can recover, see a healthy Kenny Omega, and enjoy every match before retiring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: frankiejd88wrote on 15.05.2024:[10.0] "He consistently puts on some of the greatest matches of all time, his in-ring technical skill and understanding of psychology are near unmatched, and he can hit everything from comedy to serious and intense matches with the same level of skill. If you don't think he's one of the best I have no idea what you want out of a wrestler because he can do it all and he does."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BruceMarcos524wrote on 02.05.2024:[10.0] "He is "The Best Bout Machine" for a reason. Kenny Omega truly upgrades what a solid calibre wrestling match would be in a more brutal and more destructive nature. His matches with Kazuchika Okada are considered the standard of all wrestling matches in my opinion. Omega also has incredible stamina that could go beyond 30 minutes to over an hour and still provide us the best match possible. His move sets are very dangerous and very difficult to perform that only guys like him could only deliver. The One-Winged Angel is one of the best wrestling maneuver I've seen due to its brutality and its difficulty to use. Omega's character is obviously based on Sephiroth from Final Fantasy VII, and they even used their theme as his entrance music. He also has a great in-ring psychology, and he is known for high drama and climactic shots in which he showed excessive emotions in the match. His time in NJPW was the best version of Omega. Omega pulled the best wrestling matches that the entire wrestling would adjust to it. His matches were so good, it broke the Meltzer 5-star scale and the reason of beyond 5-star calibre matches. He was one of the best gaijins NJPW has ever signed. His time in AEW is somehow a mildly light version of NJPW but still deliver countless classic matches, now with better characterization because the company allowed him to customize their own promos and produce segments in which NJPW doesn't normally much do. Omega helped shaped the alternative wrestling world, somehow manage to divert the attention of the fans from the major wrestling company that they used to watched and changed their perspective of wrestling forever. Omega is a revolutionary athlete with solid A+ wrestling skills. He has the entire catalogue of great matches to recommend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Oddtalkwrote on 21.04.2024:[10.0] "He's gonna go down in history as one of the best of all time and one of the most important wrestlers in NJPW's history. I don't think it's up for debate."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MarkMcMarkingtonwrote on 20.04.2024:"Good in the ring, but would I put him on the level of a Kurt Angle, AJ Styles or Bryan Danielson? Not for me. I know hes an IWC favorite but he doesnt really do anything that other guys cant do, and sometimes better. One of those guys that I never got the insane hype for. His promos range from mediocre to bad."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Robot3872wrote on 17.04.2024:[10.0] "He has had a very strong impact on the industry and is a major reason why AEW exists today. When he had his match against Chris Jericho at NJPW Wrestle Kingdom 12 it turned enough heads away from the WWE product that alternatives became feasible. As far as in-ring wrestling abilities go, he is near or at the absolute top. He has a prodigious arsenal of moves at his disposal and sells well enough to make his opponents look great as well. I've never seen a bad match with Omega in it even when he worked AEW Dark matches those were still impressive. When he enters for a match it feels like a true final boss of wrestling. It is a shame he has diverticulosis hopefully he can make a full recovery from that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: DonovanBaybay229wrote on 11.04.2024:"A pretty impressive athlete but also someone who's yet to understand at almost 40 that Pro Wrestling is a work and that the point is to invest the crowd into you winning or losing not just having the most impressive physical display . His match are rarely engaging because 9 times out 10 whether he lose or win don't really matter why him and his opponents are fightingdoenst' really matter ( Will Oespreay is an example . The storylines before hand sucks his promo are so cheesy he is just embodies the flaws of his company all forms no substance ."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TripleCrownwrote on 08.04.2024:[10.0] "One of the very best wrestlers of his generation. He was a little goofy in the beginning, but really transformed into a huge star outside of the WWE bubble. Something which is very, very hard to do. When AJ was kicked out of the Bullet Club, I really thought there was no chance Kenny would be able to be on the same level as AJ. Boy was I wrong, he really took Bullet Club to another level. He's such a special wrestler, his ability on the mic is... ok, at best. He's not that good when talking, but he more than makes up for that the moment the bell rings. Incredible wrestler, has inspired a lot of folks nowadays too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: sarahlicitywrote on 29.03.2024:[10.0] "Theres a reason he calls himself the Best Bout Machine, and its not just him being braggadocious, because hes put on some of the best matches of all time. Just watch his quadrilogy of matches with Okada, some of the greatest matches to ever grace this earth. When it comes time for a big show, whether on PPV or even a special television presentation, you can always count on Kenny to pull out the stops."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Brutish Dandywrote on 28.03.2024:[6.0] "Kenny Omega is probably the most physically gifted wrestler that I just do not like. A lot of his matches just devolve into big move spam with very little rhyme or reason. I could bear this if the man's selling wasn't so goofy. I don't like the way he hits the ropes. I don't like the way he pumps his arms up and down like a cartoon character hyping himself up. I don't like how he turtles his neck and kicks his legs out like he's doing the duck walk whenever he gets punched into a corner. It's all the little things that add to me not buying him as a tangible, serious threat. I think he missed his calling in lucha libre."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Pigeon Scratchwrote on 26.03.2024:[10.0] "I can't deny that a part of the reason why he is one of my all time favorites already is his character, and the absolute nerd that he is. Of course I'm going to love the guy who works with Toby Fox and pretends to be the Terminator, and he named his finisher after Final Fantasy. But seriously, I can't think of many wrestlers who are so fucking good in what they do and can make every match hes in legendary, and just be so damn charismatic with the crowd. I can see why people think he's a tad overrated, but that honestly just depends on what you're looking for in your wrestling. Personally? I can't get enough of him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: josh man 6ixxwrote on 26.03.2024:[8.0] "the cleaner Kenny Omega is one of the best technical wrestlers of all time without a doubt. he is overhyped by a little bit but it would take one hell of a perfect human being to match his hype. His wrestling style is excellent, he has drawn eyes to NJPW and was there to pick up the slack when mainstream wrestling wasn't delivering. he was a leader of Bullet Club and made it cool again after AJ Styles left and was a founding member of AEW. the only reason he isn't a 10 is because he was never really a household name and he was never really the face of any company. his promo's also not up to par with his in-ring finesse. kenny would surely be a 10/10 wrestler if his mic work was better but it's not and because of that I can't give him more than an 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Kyle101104wrote on 20.03.2024:"Simply put, the greatest to ever live - the GOAT. Kenny Omega can and will get a good match out of anybody. Nobody can do it like him."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: charliefictionwrote on 06.03.2024:[10.0] "It's a shade dramatic to say Kenny Omega brought me back to pro wrestling after a 15-year hiatus, but it's not entirely untrue either. As a wrestler, Omega is the full package: a top-notch in-ring storyteller with an otherworldly moveset. He's a true innovator and a risk-taker. Other wrestlers are his equal (e.g., Ospreay, Danielson) but Omega's big matches hit a different level for me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Knightflywrote on 05.03.2024:"An absolute marvel of pro wrestling. When I lost interest in wrestling, Omega pulled me back. He is truly the in ring GOAT for me."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dirty Diegowrote on 03.03.2024:[7.0] "Yes he is a great in ring performer a hero to Dave melt at, has had great matches, but as a top draw like Austin, rock, cena he has no chance of reaching that level, I would not be excited if someone told me Kenny omega is performing tonight, his matches are great in Japan and Aew but sometimes its very unrealistic and kind of overkill with all them crazy moves and kick outs, that happen in his macthes"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BallOfYharnamwrote on 28.02.2024:[10.0] "As Kenny Omega almost certainly enters the twilight of his career, you have to reflect on it as a whole. Personally, I believe Kenny Omega has as good a claim of being the greatest of all time as anyone who has ever laced up a pair of boots. To this day, Kenny Omega is still the best big match wrestler in the world, and that isnt going to change until he officially announces his retirement. His 2016-2018 NJPW run is the stuff of legend. Following such a historic run, Omega made a huge gamble and signed with All Elite Wrestling, where he has been recuperating from his injuries or dealing with medical issues for seemingly most of his tenure. Even still, he has managed to have some of the best matches in company history. His in-ring style, down to the way he moves in the ring has been imitated, but never duplicated. He is a great spokesperson for joshi puroresu. He managed to have the NJPW crowd in the palm of his hand by not only delivering incredible performances, but by learning their language."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AmirTheEnforcerwrote on 21.02.2024:[10.0] "There's nothing I dislike about this fine gentleman, one of best to come out of land of maple syrup. Kenny does magic in the squared circle and he always has me glued and invested.I just hope that his health is not jeopardized and he comes back soon better than ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: RusherBryan29wrote on 08.02.2024:[10.0] "The Best Bout Machine. As Don Callis used to say "the god of pro wrestling", I think he is. Always put on great matches, even in his lowest performances. The true big match specialist. He has great look, good charisma, and solid mic skill. I also like his moveset, and he has my favorite finisher in pro wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ModernFamilyCamwrote on 08.02.2024:[10.0] "Kenny Omega is the most-talented wrestler to ever exist. The mix of power and athleticism is one weve rarely seen. When I go back and watch Bret Hart, Ric Flair, Ricky Steamboat, Shawn Michaels, Kurt Angle, and all the greats of yesteryear, I cant help but notice that Kenny took all of their talents and rolled them up into one. The technical prowess of Bret and Flair, the timing and the athleticism of Ricky and Shawn, the intensity and power of Kurt, and the physical charisma of all of them. Kenny is truly the best of all worlds, and has no weakness is in his game. Like many over the past 10-20 years cite Shawn Michaels as their big influence, you will see the next 10-20 years of new wrestlers citing Kenny Omega as their big influence."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AK1WAwrote on 23.01.2024:[10.0] "Kenny has a case for being the most complete wrestler ever (Strong-style, American, comedy, hardcore, lucha and tag-team). He's very good in all of these different styles. GOAT level performer. IMO he is the greatest of all-time. He is the greatest big match wrestler of all-time whenever you put him in a singles match on any PPV card it normally will be the best match of the night. Truly a once in a lifetime performer, there will never be another wrestler like him ever again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: benny5bellyswrote on 22.01.2024:[8.0] "Very few wrestlers have ever hit peaks like Omega did between 2016-2018 but there has been a noticeable drop off since. Some of that is down to not having the quality of opponent he did then. His character work is frustrating, he can't help himself in being goofy, if he held himself like a star he would come across so much better. I still look forward to his big matches but not at the level previously. In my opinion there is no greater trilogy of matches than the ones he had with Okada, every single one a masterpiece of pro wrestling. There are certainly elements of his game you can be critical about but I do find it interesting that lots of people expose their lack of knowledge and understanding of pro wrestling by thinking he does not tell coherent strong stories in his pro wrestling. There is unfortunately an element of new fans who just do not understand story telling in pro wrestling unless everything slows to a crawl and someone starts a monologue in the middle of a match."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BungeeBombwrote on 20.01.2024:[10.0] "One of the best wrestlers of all time and one of the reasons I got into pro wrestling to begin with, you can pretty much pick any time period on his career and he will be at an elite level, has one of the best match catalogs of all time too. Incredible athleticism with a deep knowledge of pro wrestling as art."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MichaelDaviswrote on 17.01.2024:[10.0] "Kenny Omega is my favourite wrestler of all time. He excels in so many areas and has introduced new philosophies to the sport that have proven frightening to some. There was no better big match wrestler in the second half of the 2010s than Kenny Omega, with iconic bouts against Okada, Naito and Ishii that belong on any best ever list. You know a wrestler is special when even their basic in-ring movements are recognisable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GoldenHomieswrote on 17.01.2024:[10.0] "A very special wrestler and one of a kind. One of the most influential modern wrestlers and has an absurdly amazing match catalog."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: bzgameswrote on 13.01.2024:[10.0] "He's probably the best wrestler Canada has ever produced. He wrestles a style that feels universal. Omega could have a match with any one, in any company, and it would have to be talked about in match of the year discussions. His run from 2016-early 2022 is genuinely one of the greatest stretches of wrestling ever produced. He is in the upper echelon with Punk, Okada and Danielson when we talk about the greatest wrestlers of the 2010's. I really can not sympathize with any detractors of his style. His body of work is top to bottom filled with the highest quality matches, feuds, and promos. People say he is just okay on the mic but his work in the Bullet Club was top notch, and when told to do so he can hang on the mic with some of the best in the world. In a world where every star claims they can match the heights of Attitude Era frenzy, he is one of the few who actually can."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: The Quick Manwrote on 13.01.2024:[10.0] "Possibly my favourite wrestler of the 2010s. Sadly the explosive style and main event status took its toll on him, but he is still a fantastic worker and one of the best in the world. Diverticulitis sidelining him recently and indefinitely is one of the biggest tragedies in recent wrestling memory."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MOXHAVOCwrote on 10.01.2024:[10.0] "He is known for his remarkable in-ring skills, adaptability, and narrative ability. He has some of the most incredible moves in his moveset.His matches frequently showcase extraordinary athleticism, creativity, and a deep story that we like. And his success in multiple promotions, including New Japan Pro-Wrestling and AEW, validates his status as one of our generation's top wrestlers"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: enei200wrote on 01.01.2024:[10.0] "Kenny Omega is considered one of the best wrestlers in the world in the last decade. Starting form his in-ring ability, I have never seen anyone like him. His style is a mix of hard-hitting, fast and amazing moves and strikes, and a cherry on top in the name of One Winged Angel, having a reputation of being the most protected finisher in wrestling. On top of that, having great character work and good mic-skills, Kenny is all-around good worker. But this is not all. Kenny is one of few responsible for bringing the wrestling boom that is happening today. Histime in NJPW and especially his series of matches with Okada is what brought people's attention to wrestling outside of the "Big leagues" and to the japanese wrestling as a whole. His first match with Okada is legendary and is one of the dominos that kick started the creation of AEW. Even besides his work with Okada, he has brought Bullet Club under his wing, managing to maintain it's popularity after AJ Styles left New Japan and some may say even brought more eyes to it. His story with Ibushi and Elite will forever be in my heart. Today, Omega is probably past his prime, but still manages to bring out great matches and moments for us, like his feud with Ospreay which led to two contenders to MOTY, his dream match against Danielson and a good bunch of great singles matches he had in AEW. Whatever people like him or not, there is no doubt that Omega changed wrestling and how it looks today and has left a big impact on the industry. And still, his career is, hopefully, not yet over, he can easily surprise us once again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: polygonfreemanwrote on 28.12.2023:"I hate his style of matches and the way he speaks during promos. I also do not enjoy the cult like fan base he has that automatically is at your throat when you disagree with them."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CurlyHairMetalPunkwrote on 20.12.2023:[7.0] "Kenny Omega in NJPW was deserving of all the praise he ever got strictly on wrestling matches. However, in AEW to North American viewers at home his weaknesses on the microphone are all too apparent. Furthermore, injuries and age have not been too kind to Kenny Omega. For the wrestling fan that wants to see Kenny Omega at his best get a subscription to NJPW World and watch the series of matches against Kazuchika Okada and Chris Jericho."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: thewrestlinguywrote on 19.12.2023:[10.0] "This man really is the best even if you are not a kenny omega fan you can admit how good he is. whether he is wrestling comedy hardcore lucha libre or strong style it dont matter he can do it all in the ring and he has the ability to make anyone look good. dont even get me started on his natural charisma or story telling abilities. and his runs as the belt collector or as the leader of bullet club are some of the best runs of the past 20 years. he really is the cleaner king of the deathmatch best bout machine and belt collector. my all time fav wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheDeitywrote on 13.12.2023:[9.0] "Kenny Omega is a fantastic wrestler, yet is meh on the mic. I can't give him a 10/10 since he is missing a bit of the total package in that regard, but there is no denying his skill in the ring. It's a shame he's on the older side now and has a history of injuries, but fans curious of his work can always check out his NJPW or early AEW run."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: danzitorockwrote on 06.12.2023:[10.0] "The Best Bout Machine is an incredible wrestler, really one of the greatest of all time. Everything he does sounds very smooth and perfect, and he can work literally every kind of matches. He is almost perfect as a wrestler, does everything well, very complete. Kenny is a very important guy that managed to get a lot of people to watch and be interested in Japanese wrestling, especially at his prime in New Japan, when he was the most interesting thing in the world. Incredibly influential guy, that can do an amazing work both as a face and heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[10.0] "Whenever you put Kenny Omega in the ring, he's always cooking. Seriously, this man is beyond prolific in the ring, he rarely misses. Kenny Omega is easily in an entire category by himself in the ring, this man has a very versatile move set and can work under any style of wrestling you put him in. Able to have 100% bangers in the ring with Kazuchika Okada, Tetsuya Naito, Chris Jericho, Bryan Danielson, The Young Bucks, Adam Page, MJF, Will Ospreay, Kota Ibushi, Tomohiro Ishii, etc. and whoever you can put him in the ring with, one of those special performers who can get great matches out of anyone no matter if they're near Omega's level or not. Kenny Omega's athleticism and movements are out of this world, the way he moves feels unrealistic in the sense that it's insane someone can run and jump like him, how he moves so quickly and how light he is on his feet is breathtaking. Not only that, his other biggest achievement was his involvement in having a hand in creating All Elite Wrestling, the promotion that gave me the shot in the arm to get me back to loving wrestling again, I will forever be grateful for The Elite for making AEW. You could make a strong case that Kenny's the GOAT, being he has arguable contenders for best singles, tag team and trios match, majority of his matches are among the highest rated on this site for a reason, he's that goddamn good! Overall, when Kenny Omega retires, which will be a sad day, he will go down in history as among the all time greats, up there with Flair, Steamboat, Savage, Hart, Michaels, Rock, Austin, Cena, Hogan, Punk. Bryan, etc. Goodbye *kissses hand gun* And Goodnight, BANG!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: stroostwrote on 19.11.2023:"Kenny Omega cannot have a bad match. Its just not possible in any way shape or form. Omega has done more for wrestling than most and it really shows when it matters the most. A generational talent for sure."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: nowayboiwrote on 05.11.2023:[10.0] "That motherfucker can't miss! Kenny Omega is an example of "perfect" wrestler. I don't know if he ever underdelivered in one of his matches. What makes Omega so special is the way he adapts to his opponents, to company he's working for, to every single wrestling style. Kenny also makes his opponents look like million bucks and he understands how he should be working to make himself look good and his rival. Do I even have to say anything about Cleaner's catalog of legendary matches? Kenny is in the half of Cagematch's TOP 10 best matches of all time which is fucking ridiculous. He was involved in the greatest match of all time, in the greatest Tag Team match of all time and possibly the greatest Trios match of all time. Alongside the Bucks, he is a foundator of The Elite, one of the best stables of all time. I'm seriously tired of pretending that Kenny isn't one of the greatest wrestlers of all time and I have no idea how you can give him rating below 10. By the end of his career, Kenny Omega might even surpass Bryan Danielson as the GOAT. Just amazing"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: skyesversionwrote on 02.11.2023:[6.0] "I don't think that Kenny Omega deserves the hype that he gets. Not saying he's bad or anything but why do people hype him up so much? He's just an average wrestler to me. But I digress. I can name like 5 wrestlers who are better than Kenny right now: MJF, Sammy Guevara, Will Ospreay, Kyle Fletcher, and Bryan Danielson. All amazing talents. Kenny on the other hand is just mid. Like he pulls out 5 big moves and all of a sudden he's the Bret Hart of this generation. Like what? People need to get a grip on reality, and fast."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dntbamarkwrote on 02.11.2023:[8.0] "Kenny Omega is truly a fantastic performer, he's certainly the best out the Elite. My main issue with Omega is that he's reckless and unsafe, his match with Will Osperay at FD 2023 and his match with Konosuke Takeshita at All Out were just 2 examples that I've seen where both performers were dropping eachother on their heads and being needlessly reckless in a match. You can put together a 40 minute match without killing yourself or your opponent, i'm sure there are plenty of performers out there that can do it. With that being said, it's hard to deny Omega is a fantastic performer, definitely deserving of some of the praise he's received."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: mchdavwrote on 29.10.2023:[10.0] "I cant pick out a wrestler from the past who reminds me of Kenny Omega. Hes a brutal striker with heavy knee strikes and vicious chops, whilst having an elegance to his movements that, while imitated, hasnt been duplicated. He is deceptively strong, to the point where I was hardly surprised that he nearly got Satnam Singh on his shoulders before being cut off. He is a great comedic worker and is able to engage the crowd in a variety of ways, whether this be the crowd clapping along as Kenny slaps the mat before a Topé or saying goodbye and goodnight, bang! and you cant escape! along with him. Omega is a true original. A progressive visionary for the sport who has helped bring western eyes to joshi puroresu, has been open regarding his bisexuality and has engaged in a years long romantic storyline with Kota Ibushi. Amongst his greatest in-ring achievements, he was the first ever gaijin winner of the G1 Climax, which led to the industry shaking Wrestle Kingdom 11 match against Kazuchika Okada."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: wcwfanwrote on 20.10.2023:[10.0] "I love watching Kenny Omega. Unique moves, brutal finisher which I've never seen anywhere else. He's so quick and agile in the ring and the bumps he takes - especially to the neck - are incredible, sometimes even too much but you have to respect the risks he's willing to take in the ring to entertain the fans. To me, Omega is among the best wrestlers of all time and there's no debate. This year alone the guy's had two matches i'd rank among the best I can remember watching in 30 odd years watching wrestling. Up there with Danielson as the guy I like watching most at the moment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: PontiffMJwrote on 18.10.2023:[10.0] "The greatest of wrestler of all time is never going to be a unanimous choice. It depends quite a bit on your preferences regarding wrestling style, storytelling techniques, what promotions they work in, the wrestlers they work with, etc. With all that being said, I think you can generally find much more consensus on a wrestler belonging in the GOAT conversation. For me, Kenny Omega is THE GOAT and I absolutely believe that he belongs in anyone's GOAT conversation. His in-ring ability is second to none, he's got a unique and great looking moveset, he's a top level athlete, his match catalogue is untouchable, he's had all-time matches wrestling many different styles. When it comes time for a big match, there's no one better (although Ospreay is getting very close)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MattKartonnawrote on 11.10.2023:"King of cringe. Cringe kollector. The cringiest of them all. Cringy fingers. Doll fighter. Video games lover. Anime lover. One winged angel screeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeams King of cringe. Cringe kollector. The cringiest of them all. Cringy fingers. Doll fighter. Video games lover. Anime lover. One winged angel screeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeans"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Hatefwrote on 05.10.2023:[10.0] "he's that kinda wrestler, that every wrestling company would love to have, and will try their best to hire him. for me, Kenny is a complete package of a wrestler. a clear and solid 10! this guy has a vast amount of bangers in his career, and he's bigger than some wrestling companies lonely!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: dysboatwrote on 19.09.2023:[8.0] "A shockingly impressive athlete who needs a little bit of guidance in order to be utilized optimally. In the context of an american-style wrestling show, and especially one as freeform as AEW, his weaknesses are a little more apparent. He's not the greatest on interviews, at least not in a way that's super conducive to riling up a crowd in the style of the best promos before him. He also has a proclivity for matches that run a little bit longer than necessary, which isn't always a bad thing but can occasionally make it more difficult to get him or his angles over. He also seems to always go back to the same old melodramatic storytelling ideas, which worked when he was doing the Golden Lovers with Kota Ibushi, but he hasn't really been able to pull off anything similar with the same focus since. Still, he can be a great worker under the right circumstances, given the proper direction and a strong enough vision."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: NOIZwrote on 17.09.2023:[9.0] "My absolute favorite wrestler of all time. His pacing is absolutely amazing in every match that is hard to deny. One of (if not) the best knee strike in wrestling today. There is absolutely not one match that Kenny Omega is in thats not a banger and its plain and simple from his rivals."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Saikyoprowrote on 12.09.2023:[10.0] "Kenny Omega, one of the greatest wrestler of all time and certainly the greatest of his generation but more importantly, I think when it comes to Kenny Omega, were speaking about the greatest storyteller in the history of this sport. The level of subtlety and storytelling element he puts into his matches across multiple federations and periods are unmatched to this day. Maybe the best wrestler in the world since early 2010 but its not regularly mentioned because he didnt have the famous stars ratings before mid 2010, and some people prefer to listen some haters because he use to do comedy & goofy things in addition to being one of the AEW creators and having a lot of 5+ stars, just by opposition, thats hilarious, thats why you will see so many ratings below 8 or more & some silly comments like « no selling/storytelling » just because he is with the Young Bucks who do flips and are associated with spotfests, ridiculous. That being said, his unbelievable run in AJPW junior heavyweight division + his historical run in DDT, combined to his legendary NJPW run, you add his AEW/US performances where is showing his versatility by having the best matches in every division (single, Tag, Trios, 8-man, 5v5, Hardcore) in weekly and PPV, puting others over and creating stars (Hangman, Ospreay, Takeshita), still being the attraction without being the main eventer guy who putting on 50 minutes single matchs and always around the world title picture, and you have the most complete wrestler who ever existed, an absolute legend, legendary wrestler. Look forward to more because he has always amazing things to say in the ring. Once in a lifetime performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: siradrian118wrote on 12.09.2023:[10.0] "One of the greatest of all time. Truly one of the all time great in ring performers. The legendary matches he has had with Okada, Ospreay, Danielson, Ishii, Naito, Ibushi, Tanahashi, Jericho and the great tag matches with the Bucks and all the great multiman matches. A man that can wrestle with many styles of wrestling from strong style to lucha to technical wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: illiteratewand1wrote on 09.09.2023:[7.0] "Kenny doesn't live up to the hype, he doesn't take wrestling outside of Japan seriously, and for many people he has sabotaged his legacy with highly questionable comedy wrestling and associating himself with some of the most toxic personalities in the professional wrestling world. Overpushed."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Bockelitowrote on 04.09.2023:[10.0] "In my Opinion, Kenny Omega is the single best Wrestler of All Time, tied with Okada, his greatest Rival. He had probably the best 2 year run in the Ring between jan 4 2017 and January 4 2019. And if you add the 2016 g1, you have in that span alone 10 matches that are, in my opinion, better than most all time greats best match. And in the rest of his career and you have one of the best match collection of all time. But Omega is more than just all time great matches. He had great runs as world champion of two major promotions, he helped build aew from the get go because of his reputation, reputation that he garnered because of his talent which helped popularize new japan in the west, all while being a great team worker. He was voted the second best foreing wrestler in japans history (although recency bias played a large role) and is one of the biggest wrestlers to never be in the wwe. He is also the best wrestler at both single and tags since the days of the four pillars of all japan. In total, he has, in my opinion, a strong argument to be a top 10 greatest wrestler of all time, not in the okada, kobashi, misawa, tanahashi and flair tier, but in the one just beneath. And when it comes to best all time, his stock is even better."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Foxmagic37wrote on 04.09.2023:[7.0] "Great athlete and Incredible stamina to have the kind of matches he has. But also incredibly overrated by his fan base. I get it, his matches are very good, some might say even GOAT candidates (which I don't think so). It's the constant no selling and big spot centered that doesn't do it for me. It seems like he's trying to copy AJPW's King's Road style from the 90s. There are people currently who do the same stuff he does as well, which makes the only thing stand out about him is his antics. Also, his promos suck. Overall, He's a great athlete, has had very good matches but to say he's the best in the world right now, in a world where Okada, Danielson or even Gunther are wrestling is preposterous."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ViolenceBretwrote on 07.08.2023:[9.0] "Oh Kenny Omega, your work in DDT and tomfoolery with the Young Bucks make it so hard to love you. Omega is a natural, his movements are there, he has plenty of personality, and he can tell a story in the ring. To call him a joke or devoid of talent would be a complete lie. Yet he needs to know when to slow things down and cut to the chase... When he is being serious as the cleaner or getting booed with Don Callis, things just seem right. He's an excellent world champion when paired with the right opponents. As a tag-team specialist, the Golden Lovers were topnotch, essentially taking the WWE Chuck and Billy formula to the next level. Yet when he's with the Young Bucks and playing dress-up... Totally insufferable. Regardless, Omega has had a lot of classic matches and just gives it his all nearly every week. His career is proof you don't need the WWE system to be successful in professional wrestling. The best bout machine? Not really. A natural entertainer and great athlete? Without a doubt. Feeling a 9.4/10 for Omega. Obviously this could change, but where things are, he's proven himself to be a beast in the ring. Along with CM Punk and Bryan Danielson, one of the top-players in AEW."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: juiceisloosewrote on 04.08.2023:[4.0] "Looking at his overall rating, I begin to think that I may be the only one to think that he is not the current greatest wrestler in the world. From his work in ROH to his NJPW and AEW stuff, I never got the hype about him at all. Is he a good in ring worker? Depends but mostly pretty good. Not a fan of his selling tho. Is he the best promo? . Never saw him as a promo guy. Too animated and obnoxious for my taste. Even if I excuse his other shortcomings, his character work is the worst of them all and hella cringy. Also, some of the stuff he produced in AEW are questionable and just not good. Just a bizarre dude and while solid in the ring, one of the most overrated of his era."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MDavis2001wrote on 28.07.2023:[10.0] "(03/01/2023) Called the best bout machine for a reason. From the mid 10s to the present day so many wrestlers have tried and failed to emulate Kenny Omega. From the unabashed honesty of knowing you are the best, to the moves he does and even the way he moves and hits the ropes, Kenny Omega is the peak of modern day professional wrestling. He made himself the most sought after wrestler without the aid of the WWE machine, somehow managed to make NJPW and Bullet Club relatively mainstream and has been one of the premier wrestlers for the company who ended the monopoly WWE had on the business. Kenny is an exceptional wrestler with great technical ability, brutal strikes, impressive strength, a great look and he can work almost any style. He's one of the best of all time, end of story. (19/03/2023) After much deliberation, I've come to the conclusion that Kenny is my 2nd favourite wrestler of all time, only behind Kenta Kobashi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheEnigmatic1wrote on 23.07.2023:[9.0] "I am a huge Jim Cornette fan I will say that so I can say... I actually Like Kenny Omega, maybe because I never watched his DDT stuff and much of his Golden Lover era but I can say, He has such a fun move set and can sell pretty well and his matches are so fast and exciting in Japan and AEW this man has had so many good matches and His story with Hangman was really good and he may not be an amazing english promo I will admit hearing him speak Japanese it's really entertaining and he comes off as a star when in Japan, But the thing that brings him down a point for me mainly is. The Young Bucks, I hate Kenny with the Bucks it's just eh I despise the bucks and Kenny has had good matches with them such as At Revolution but They are not good actors and it can be hard seeing them try to act and have these emotional moments. But Kenny overall is a really entertaining wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: simi99wrote on 11.07.2023:[10.0] "In a very few words... the PERFECT wrestler. The GOAT, the best wrestler of all time. I love his match, i love his personality, i love everything. Kenny Omega is really the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: John Brandowrote on 06.07.2023:[10.0] "Kenny Omega ist einer der besten Wrestler der Welt. Man denke nur an die Matches in Japan gegen Okada oder gegen Ospreay. In Nordamerika steht er bei AEW auch mit an der Spitze. Seinen Verletzungen hatte er Tribut gezollt. Gut, dass er wieder mit an Bord ist. Vielleicht macht er ja eines Tages doch noch den Schwenk zur WWE. Aber schon jetzt, das ist glaube ich sicher, hat Kenny Omega sich dick eingetragen in das große Geschichtsbuch des Wrestlings. Herzlichen Dank dafür! The Best Bout Machine!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SienaArsenwrote on 02.07.2023:[10.0] "Being the most simple and direct possible with the words, this guy is the best wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Neon Aussiewrote on 02.07.2023:[10.0] "Absolutely amazing in-ring talent. Omega and Walter have dominated the decade of the 2020's as far as in-ring talent and ability go. Phenomenal performer. Ive never watched his comedy stuff or gay stuff that Cornette talks about and dont intend to, so as far as I'm concerned he's pretty great. He's put on some of the greatest matches Ive ever witnessed. It's a tall order but I think Omega probably fits onto the 20 Greatest Wrestlers of All-Time list. Amazing considering he's never been to WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: cloutless kamiwrote on 30.06.2023:"Greatest athlete and professional wrestler to ever step in the ring. So versatile in many many styles of wrestling + lengthy prime in japan + longevity up to AEW, he is still capable of putting on insane matches. Produced bangers with Naito, Okada, Ishii, Ospreay, Kota, etc. in Japan. Then continues to impress in AEW with matches with Pac, Danielson, Hangman, and recently Ospreay (7 star banger at FD). Just watch his most recent match with Ospreay at Forbidden Door and you will see why he is the best. Add that on top of his peak athletic performances in NJPW along with his underrated character development love story with Kota, BC, and the Elite, and you've got all the reasons to say he is the best professional wrestler in the world"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: londonbeenbugginwrote on 19.06.2023:"Good physique, cool look, good athleticism, meh on the mic, but overall he has a good presentation. If he took himself a little more seriously in the ring and on the microphone, I could see the hype about him. If he was reigned in a little bit by booker/promoters, I think he could be a genuine star."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: InsertFunnyNameHerewrote on 17.06.2023:[8.0] "Ill admit this right here, Ive never gotten the hype behind Kenny Omega, I think hes really good in-ring, but not at the all-time great level like people say he is. I dont think he surpasses Bret Hart, Eddie, GUNTHER, and Danielson, I also think that he doesnt really have much he brings to the table beyond his in-ring. Hes not a physically intimidating specimen, hes not incredibly charismatic and he doesnt really have an amazing gimmick either. Ultimately I think hes probably somewhere around a 7 or 8 in my eyes."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: gargoylesmainwrote on 15.06.2023:[10.0] "The reason I got back into wrestling. He can adapt to any style of wrestling and put on an excellent match - lucha, hardcore, technical, doesn't matter, Omega can do it and do it well - and can go at an exceptional level, even now over 20 years into his career. There's a reason why so many guys have their best matches with him. He is unselfish, and always give his opponents plenty of time to shine, even when they're maybe not on his level of stardom. As a babyface, he sells the hell out of his opponents offense, and as a heel he's never afraid to eat shit to get guys like Ishii or Hangman over. Great in-ring, and out-of-ring story teller. He keeps his body in top shape, is charismatic as hell, and deservedly well loved. His obvious weakness is his hit or miss promo, but that's pretty minor in the overall body of work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dancerwrote on 01.06.2023:[10.0] "The master of being multifaceted, Omega can play a lot of roles at the top level. Great tag team guy, genuinely funny, believable heel, and lovable face. Omega is who transitioned me into appreciating all aspects of wrestling, not just WWE. Biggest complete package the sport has ever seen. Very lucky to see him compete live."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Frank Shooterwrote on 30.05.2023:[10.0] "The Best Bout Machine nickname is not enough to describe how great Kenny Omega is as a performer. Everytime there is a big match, he is going to deliver a one of a kind banger, doesn't matter the opponent. Even when the match is not as important, he is nothing less than good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SC316wrote on 16.05.2023:[10.0] "Kenny is currently my favourite wrestler active. He is top tier in everything he does. He can be in the brutal visceral matches, the technical 60 min iron man, or even a goofy comedic character. The amount of classics Kenny has produced is unmatched by anyone in history. I haven't seen a single bad let alone bland match from him. He always give it 110% and the fans can tell. Also him and Ibushi have the greatest story ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Vanstylerwrote on 08.05.2023:[10.0] "Omega is the ultimate athlete, everything he touches turns to gold and everything he attempts within the matches he does in an outstanding way. It's hard to count many wrestlers within Kenny's reach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Leo 4 Kingwrote on 08.05.2023:[5.0] "Kenny Omega is a soso wrestler, able to give a good storytelling to his match but he doesn't do it very often, I don't really like that much his moveset and is selling can be good but isn't always at all."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MehdiStarkwrote on 02.05.2023:[10.0] "No one in current decade can be better & more complete than Kenny Omega. Real GOD OF PROWRESTLING. He is great at mic, in ring & created super great stories from Golden Lovers & BC civil war to hangman omega vs Bucks & vs Jon Moxley. Seriously I wasn't his fan before AEW but now I have to admit He is the best wrestler I've ever seen during my 8 years watching wrestling. Also he motivated me to watch promotions abroad United States cause I can see real pro wrestlers not just sport entertainers"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MasteroftheMatchGuide99wrote on 02.05.2023:[10.0] "There's a reason Kenny Omega is always billed as a "Best Bout Machine." If he's in the ring with someone who can match his skill, the 5 stars system will need extra stars added to rank it. His 4 battles with Okada are legendary and his Wrestle Kingdom match against Ospreay was definitely in the contender list for MOTY. He also did great with 3 less-known wrestlers who came to AEW and delivered to make the matches far more than passable. I can understand some people don't like him because of his arrogance, but if you pass the attitude and look at the worker, you're seeing a talent that can't be surpassed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Shawderwrote on 01.05.2023:"The Best wrestler in the world in my opinion. Those matches with Okada in NJPW were gold and even after all the injuries and Vertigo, he still puts on wrestling classics."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: I like wrestling222wrote on 26.04.2023:[10.0] "The best wrestler of all time he was a key part of aew and njpw one of the most athletic wrestler and puts on the best matches"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CMFunk007wrote on 22.04.2023:[9.0] "He's a great wrestler, no doubt. Maybe even the best. But "Twinkle Toes", as Jim Cornette likes to call him, has an aura about him that just rubs me the wrong way. I do enjoy his matches, but even when he's portrayed as a babyface, I want to see him get his ass handed to him. I'll rank him highly, but he's not perfect like Meltzer thinks he is..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: dinodykewrote on 15.04.2023:[10.0] "There is very little to be said about Kenny Omega that hasn't been said by hundreds of people, already. He's a generational talent in my eyes, and the fact that his style is different from what US fans might expect isn't a barrier to how mindblowingly good he is. He's the king of in-ring psychology and knows how to inject stories into his matches incredibly wellhis tag team title reign, world title reign and accompanying story with Hangman and the Young Bucks remains one of the best-told stories in AEW history. He's not a classic wrestling storyteller and promo-cutterhis character is nuanced and subtle and his promos are more soft-spoken, but it just makes him stand out more. In the ring, he's dynamic and well-paced, and always enjoyable to watch. Also, I have to tip my hat to him to committing whole-cloth to being gay in-kayfabe and taking it seriously the whole time. The storyline with the Golden Lovers is hugely important for many queer wrestling fans, such as myself, and a significant part of it is Kenny's committment and dedication to being an ally."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: HumanJerkywrote on 08.04.2023:[9.0] "I take a point for some kinda dumb gimmick matches he was in, but aside from that I very much enjoy Kenny. I do think the comedy kinda undercuts him sometimes, esp when hes wrestling in front of NA audiences, but the man is a great worker in the ring, good on the mic, has a very interesting and unique look and hes incredibly versatile. I enjoy him quite a bit, esp for modern era style guys."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Makoto92wrote on 06.04.2023:[3.0] "Time has passed and I began to think that Kenny is kinda overrated man. Maybe he was the best in New Japan, but it's not hard to be at the top of a promotion where there's no turnover in the main event and the booker is the same overrated person. And when Kenny moves to America, all his disadvantages are apparent: he can't cut a promo like a star, he can't make good matches like a star and he is constantly being pulled by his rivals (Match with Bryan Danielson is the perfect example of this case)."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Justtwrote on 02.04.2023:[10.0] "I like Kenny. He did very stupid things in his career, like wrestle the 9-year-old and the s*x doll, but he had great matches too. Kenny had great years and was one of the most outstanding wrestlers back 2016-17, but I feel like he lost some of his magic since the departure from New Japan in 2019. A very controversial wrestler and I can see why people don't like him, but, in my opinion, he was one of the best wrestlers of the past decade."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Personanowrote on 20.03.2023:[10.0] "My personal favourite wrestler. It's pretty difficult to put into words just how great Kenny Omega is as a wrestler. He's a guy so good I struggle to bring to mind a single bad match he's ever had with anyone. That's the mark of a fantastic pro wrestler in my opinion, when a great to terrific match can be had with virtually any opponent. A lot of fans don't seem to enjoy his high-octane, somewhat dramatic style of wrestling but that's exactly what I love about him. Each time he steps into a ring you just know you're gonna see some of the fastest, most dramatic yet hard-hitting action on the planet. That breakneck style is what makes him who he is and why he's been my favourite for years at this point. 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: burningflowsionwrote on 15.03.2023:[10.0] "Kenny Omega will go down as arguably the greatest in ring talent to ever live. Personally, my vote on that would be Misawa, but Omega is the closest you could possibly get to taking that spot. There is one thing he has not done, which is go to WWE, and at this point it really doesn't matter is he never goes there, his legacy is cemented for the rest of time. Now he is not my favorite wrestler, but that is another reason these praises should not go unnoticed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KSupreme3wrote on 12.03.2023:[10.0] "Kenny Omega is a one in a lifetime talent that has yet to touch a WWE ring (as of the time of this writing). When it's all said and done...he will be celebrated as one the greatest wrestlers of all time. Without Omega there would be no AEW. The matches he's had in NJPW are of LEGEND, and are must watch if you haven't already. ESPECIALLY the matches he's had with Okada. the OWA is one of the most protected moves in pro wrestling, and besides a couple exceptions, nobody has ever kicked out of it. When Omega is on his maximum level, he puts on quite the spectacle and is always capable of putting on a 5+ star banger at any given moment. His style might not be everybody's cup of tea, but he's a compelling wrestler and is bound to entertain those who allow him to. 10/10, one of the GOATS."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KKeanelwrote on 12.03.2023:[9.0] "I have some issue with his and Bucks view on understanding, managing and organizing wrestling sphere, but from his work perspective - complete genius. Numer of glorious matches with great psychology and story consistent is incredible. We will see what future will deliver, but this could be a case of greatest non-japanese wrestler ever who never stepped foot into WWE ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jonsnoewrote on 10.03.2023:[10.0] "One of the best wrestlers I've ever seen. Amazing charisma, amazing move set, incredible work rated. When I saw most of his matches, I can expect to rate at least 8 points on this site."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ZayTokyowrote on 06.03.2023:[10.0] "alright lets be really this is the biggest draw in modern wrestling and has made the scene outside of wwe so popular and well know to a newer audience. Constant bangers constant hits no misses and he is legit someone who both in ring and on the mic rarely ever does wrong. His storytelling is near perfect too and him having some of the best matches ever says it all. easy 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ChrisPrattAsMariowrote on 04.03.2023:[10.0] "The main reason I got back into wrestling was because of this man and the great matches he had in NJPW during the mid to late 2010's. In AEW, he hasn't been able to do what he did in NJPW, but it hasn't stopped him from pulling out a classic when given the chance. Also is a great character on tv whether its as a comedy villain as he was in 2020 as world champ or as a lovable babyface as he's been since his return in 2022. My favorite match of his is against Kazuchika Okada at Wrestle Kingdom 11"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Deadmagician33wrote on 28.02.2023:[8.0] "Very overrated in my opinion, but still an amazing wrestler.. Big fan of his work in AEW with Hangman as tag champs."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: saads97wrote on 10.02.2023:[10.0] "In my opinion, hes the greatest in ring performer of all time. His matches with Okada, Naito, Tanahashi and many many more are 10/10s. I dont think weve ever seen a competitor this consistently amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ajsmileswrote on 01.02.2023:[9.0] "Amazing in-ring talent. Used to be a Young Bucks-style spotfest wrestler with constant high spots and did goofy comedy matches. However like Will Ospreay he evolved into one of the best in-ring talents of all time. People are saying he had better matches on NJPW but how the hell is he supposed to have 5-star matches every week with TV restrictions? He can do that on PPV and he does. In fact I want to have his last match with Will Ospreay on AEW. I feel like Japanese people don't care enough about them over there, they're primarily used as Westerner bait while Okada and the other Japanese guys are the main attraction for the main fan base. My favorite character of his was the heel 80s action movie villain type gimmick he used while he was AEW champion. Promos in my opinion he was never good with. You can tell he's a shy guy in real life while he's cutting them. But that doesn't take away from his greatness."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Aliquickkwrote on 01.02.2023:[9.0] "Has gotten a lot better over the years, but you have to judge the wrestler by their entire body of work, not what's happened in the last few years. Kenny in NJPW is far better than the AEW edition, and it's hard to forget the comedy wrestling he degraded himself with earlier in his career. Is a decent promo, very good performer, one of the hottest wrestlers of the last few years."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: gijoewrote on 18.01.2023:"Hard to imagine a more consistent big match man than this guy Rather than repeat what has already been said, I'll simply admit that Wherever he wrestles he puts on a helluva show"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: PhenomenalGunwrote on 15.01.2023:[9.0] "[Update from 7 to 9] To be honest, I still dislike him as a person because of how arrogant and self-centered he comes off as, but he really is a stellar in-ring worker all around. He has this explosive style that makes a lot of his matches can't miss. To be honest, I like him better in NJPW than AEW, but I suppose that goes for a lot of wrestlers I follow, just him in particular. He doesn't really need a faction or a team surrounding him to excel, he's actually better off on his own or with Ibushi. I would love to see the old-school Kenny more often rather than the "Elite" Kenny Omega. Kenny's promos aren't the best but they're pretty good, and his character is usually entertaining and surprisingly works most of the time despite various inconsistencies. Overall, he's a fantastic wrestler and the only one like him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: benh2wrote on 13.01.2023:[8.0] "Kenny, Kenny, Kenny. No doubt he is one of the best wrestlers around today, he's shown that plenty of times in Japan. When he's motivated, his work is tremendous: snappy, crisp, smooth, meaningful. But too many times he falls foul of his own obsession with his gimmick or gets too tied up in nonsensical cooperation wrestling. AEW/house show Omega is absolutely dreadful; lazy, half-paced and as a result sloppy. His promos are weak and his cadence is just strange, I can't get on board with it at all. His offence has great variety and impact but again it needs him to be motivated for it to work properly. Big match Kenny is pretty untouchable for sure but unfortunately we don't see it much anymore. If injuries are catching up, he'll need to reinvent himself if he's to continue working weekly TV."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: kenny jaksonwrote on 08.01.2023:[6.0] "Kenny is a good wrestler but he is better comedian.i dont like his face sell.his face reactions are so so fake.his body sell is so comic.just look at his legs.when he took a big bump he always shake his leg like he have heart attack or something.most of his match is Gymnastics and Trampling.his moves are always the same.he do one move over and over and over.and he is one of those wrestler who is willing to do anything for their followers and make wrestling fake and ridiculous as possible."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Malarkianwrote on 07.01.2023:[10.0] "NJPW Kenny is an 11/10, world-beater, one-of-the -best-to-ever-do-it. AEW Kenny has fallen off a bit. And by "fallen off" I mean to outstanding from years of frankly incredible. Part of the problem is age, part of it is the injuries, part of it is the production, part of it the Western style, and part of it is just the caliber of talent that he works with now being unable to keep up; e.g., the V-Trigger in NJPW looks like a killshot because the guys taking it know how to take it and sell it, whereas the AEW guys either don't know how, or are unwilling to take it because it's a "stiff" move and it comes off looking kinda weak. (Same problem Ospreay has w/ the Hidden Blade). AEW also kind of presents Kenny as some nerdy, goofy, cartoony, Wile E. Coyote-type villain and it takes away some of the gravitas of his work. Which is not to say that there's no room for that in his work - his moveset is littered with video game references, his whole Cleaner gimmick is goofy AF, but he's still presented as a killer. He's gotten better since he took time off to rest and heal his injuries, and I understand that he can't wrestle every match like it's Wrestle Kingdom and it's more about longevity, but I hope to see a little more NJPW Kenny in his AEW work. All this basically just to say Kenny is getting a 10/10 rating because what the hell else could I give him'"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: NoSellwrote on 05.01.2023:[10.0] "He is the greatest wrestler ever. I don't know what really else to say. His run from 16-18 is also the greatest peak of a wrestler ever. If I zoom through the top 20 greatest matches of all time, not just by Cagematch ratings, by my own opinion too, his name probably appears about 10 times. GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BlueBrandwrote on 05.01.2023:[10.0] "Kenny Omega is known for his work in various promotions around the world, though primarily New Japan Pro-Wrestling and All Elite Wrestling. He is widely considered one of the best wrestlers in the world and has won numerous championships and accolades throughout his career including Best Bout Machine and The Belt Collector Omega is known for his high-energy, athletic style and his ability to put on great matches with a variety of opponents. He is also known for his charisma and his ability to connect with fans. He has been involved in many of the most memorable matches and storylines in wrestling over the past few years, including his rivalries with Kota Ibushi, Kazuchika Okada, Will Ospreay and Hangman Adam Page."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: RookieBoy1wrote on 04.01.2023:"Kenny Omega has been one of the most consistently good performers of the last decade, putting up high quality matches back and forth, as well as being an esential main event figure in every promotion he has been. Agile and flashy without being over-the-top, his style perfeclty blends in with all kinds of opponents in all weight categories. He is also an historically important person for his contribution to the creation of AEW, as well as taking New Japan to international stardom in the late 2010s."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: comahanwrote on 04.01.2023:[10.0] "One of the very best to ever do it. From his days in ROH and DDT to his rise in NJPW and being the ace of AEW, he is special, not only always putting on incredible matches, but bringing emotion and top level storytelling to almost all of his big rivalries that few can match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: migrationswrote on 23.12.2022:[10.0] "There's a lot of Omega haters now a days, but I still remember him as a wierdo who shaved his forearms so it would get stubble and he could rub them on the opponents face. I saw his rise, and it was great. I saw Wrestle Kingdom 11 live and I'll never forget it. Kenny is objectively a great wrestler. His selling is incredible, he's very fast and he gives it his all. Look at the list of many top matches from 2017 onward and there is a reason why Kenny is in almost all those matches. He is that good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SimonMatveevwrote on 05.12.2022:[10.0] "Greatest wrestler of modern generation in my opinion - amazing in-ring work and moveset, bewitching charisma. No matter if it's Golden Lovers era Omega, or BC leader Omega, or AEW Omega - he kills it in every promotion he's in. Also he just seems like a cool guy to hang with, even despite recent All Out mess"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: degaretwrote on 03.12.2022:[6.0] "Klassischer Spot Wrestler. Seine Promos sind in Ordnung, aber nichts besonderes. Ich kann die guten Bewertungen nicht ganz nachvollziehen. Mit 9.5 sollte er von der Bewertung her ein Superstar sein wie The Rock, aber genau das ist er in meinen Augen eben nicht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Enriquepollazzowrote on 02.12.2022:[9.0] "Great wrestler who can have great matches with anyone. A little too goofy sometimes. Hes too good to change anything now. But wonder what he would be like solo in WWE. Just like away from his friends and longtime coworkers. That type of thing doesn't really happen much anymore. Would be interesting. Has had a 10 career when you balance things out. They give guys like Randy Orton 10's and Kenny is way better."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: amaiwrote on 27.11.2022:[10.0] "one of the best of all time, although i don? t think he? s as good as he used to be you can? t deny that 2016-2019 omega was on top of the world"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Mcbolskywrote on 22.11.2022:[10.0] "Probably has the best moveset in all of pro-wrestling and is up there with RVD for best moveset of all time. His selling is amazing, his athleticism is off the charts, and he is super strong for someone that isn't 6'6 260. The V-trigger is such a fun move to watch people take and once you see the OWA, you know it's over. Probably the most protected finisher in the history of the business. I personally prefer his matches with Naito rather than his matches with Okada. His run from 2016 up until when he got injured was GOAT worthy. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MainEventMasterwrote on 20.11.2022:[10.0] "Arguably the best wrestler of his generation, he just GETS pro wrestling, believable moves and finishers, masterful storytelling, great character, he truly makes the audience FEEL."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: YourKingMobwrote on 05.11.2022:[7.0] "A sad case of "what ifs" for most fans, for Kenny's best days were before most ever saw him wrestle. Kenny was best while he was in DDT and as a junior in in New Japan, and most fans really started watching him when he was in his heavyweight run in NJPW, which is his worst work IMO, despite what uncle Dave says. As Kenny grew into his role at heavyweight in NJPW, his worst traits ever magnified: the histrionics, the boring knee spam, the illogical match pacing, the clumsiness that made him dangerous to himself and others in the ring. Watch him before he became the leader of The Bullet Club - his best days then were long past."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CutterClubwrote on 01.11.2022:[8.0] "One of the best in the ring in this generation. One of the most mediocre on the mic and with character work. He's excellent when he keeps it in the ring, and can be a bit cringey on the mic."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Minimaniawrote on 01.11.2022:[10.0] "To me - the greatest wrestler of all time. He is perfect in every facet that I have evaluated. From an in-ring standpoint, I have seen not one person that not only does an outstanding amount of moves, but does them to perfection; his moveset is like a created wrestler you would make when you were a kid but brought to life. He also adds a little touch to everything he does to make it unique - even the way that he runs the ropes. He has even held the main title in a major promotion from the US (AEW), Japan (NJPW), and even Mexico (AAA). To start, his speed is amazing. He runs the ropes like no other. He also has amazing strength, with feats like picking Evil (around 240 lbs) up for the OWA while he was dead weight. But not only is his athleticism and move execution stellar, but also his ability to tell stories inside and outside of it. Kenny not only has mastered the art of in-ring storytelling, evident by his masterful series of matches with Kazuchika Okada, whose stories almost exclusively took place in the ring, but Kenny is also proficient in creating stories outside of the ring. Even though his feuds with Hangman Page and Kota Ibushi both have great in-ring storytelling, some of the best parts of them took place outside of the ring. Kenny, along with the Young Bucks, has also revolutionized storytelling as a whole in the world of wrestling by creating their vlog, Being The Elite. This helped them greatly on the indie scene, as it allowed them to create overarching storylines no matter what promotion they were in. While Kenny greatly shines in singles competition, he also has been part of some great tag teams throughout his career. Whether teaming with Kota Ibushi as the Golden Lovers, a tag team that blended a real-life bond and high-octane offense, or with his friend Hangman Page, whom Omega found great success with before leaving him and becoming his rival, both are iconic teams that have put on some of the greatest tag matches of all time. While those are some of the best duos Omega's been a part of, he has also been a part of some of history's greatest groups. From joining Bullet Club and rising up the ranks to become of the few people to lead the group, to breaking off and forming The Elite with the Young Bucks and various others, it seems Omega always aligned himself with the best in the business. There is not a single type of match that Omega can't excel in. He has had fantastic normal singles matches (vs Okada, Naito, Ibushi, Tanahashi, Ishii, etc.), tag team matches (Golden Lovers vs Tanahashi and Ospreay, Golden Lovers vs Young Bucks, Omega/Page vs Young Bucks), stipulation matches (deathmatches vs Mox, Ladder match vs Elgin, Stadium Stampede), and even comedy matches (various throughout DDT run). This unparalleled flexibility puts Kenny above the rest when comparing him to others. Overall, with all this combined, I believe that no one comes close to Kenny as the greatest of all time. There are no holes in his game."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: mrgosciu213wrote on 28.10.2022:"my favourite wrestler ever. one of the greatest wrestling talents ever with fantastic in-ring abilities and a lot of great matches. good promo skills, great looks and overall good wrestler."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheNomadMagicianwrote on 27.10.2022:[10.0] "Kenny Omega ist ein absolutes Gesamtpaket, er bringt den Look, die Ausstrahlung, das Können im Ring sowie Charisma und Mic-Skills mit. Habe noch nie ein mittelmäßiges oder gar schlechtes Match von ihm gesehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: texasyoshwrote on 16.10.2022:[9.0] "Kenny Omega is an incredibly influential and important wrestler in modern wrestling history, no matter if you like him or not. Kenny used to be one of the most dynamic athletes in pro wrestling, but today I find him being very same-y in the ring. His work in NJPW is the pinnacle, he had great matches both as a heavyweight and a junior. His work in DDT is also impressive, both in-ring and drawing wise. There are definite flaws with Omega, I think there's very wonky match structure in some of his modern matches, and as a promo he sounds very unnatural. Despite that he's overcome."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheStarNovaKanewrote on 11.10.2022:[10.0] "The most well-rounded wrestler of this generation without a doubt. Proves himself with doing all kinds of match types against all styles of opponents & having consistently great matches with everyone. Champion & top guy of many promotions worldwide & never has had an issue with putting others over. Anyone wrestling Omega elevates their own quality due to him making them look great in there & his opponents realizing this is a very important match for them to show off how good they can be. He's the best men's wrestler at telling a story in the ring. His timing is perfect. He's probably the biggest legend of this time period of anyone currently in their prime. The only thing he has close to a flaw is his dedication to great matches being so high that it obviously takes a toll on his body but he's in the best shape he can be in & his cardio is the highest of any wrestler I'm aware of. Maybe the best wrestler of all time? He's definitely a contender. Especially since he's the closest thing to perfection in a well-rounded wrestler as you are going to get."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheOneAndOnlyCactuswrote on 29.09.2022:[10.0] "Explosive, Dynamic, with a large arsenal of moves, impressive selling with his bumping and expressiveness. He also has played several characters that I enjoy, with a variety of promo work. Many will accuse him of being only a spot monkey, but I disagree. He is also very capable of telling great stories in the ring, and that makes him excellent"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: devwilwrote on 28.09.2022:[10.0] "He's just so explosive and dynamic, and while some of his critics might accuse him of playing things too big... this is pro wrestling, not Swedish arthouse cinema. If that's your problem with him, I hope you said the same stuff about Flair and HBK because they both also played things huge, and they're kind of unanimous legends in the ring. His expressiveness and willingness to be silly are features, not bugs. And his athleticism is pretty undeniable, and he's had all-time great matches. I can understand some quibbles about him (maybe you don't like his promos/character; I can see it), but he's a generational talent and I think refusing to acknowledge that is just willfully ignorant."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Rivermanwrote on 15.09.2022:[8.0] "Never quite understood the hype in terms of him being (one of) the best in the world. However, he's still pretty darn great with a cool moveset and amazing technical skills. Not found that emotional connection to him or his work yet but I'd like to keep trying as it'd no doubt bump this rating."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GonzoAppreciatorwrote on 07.09.2022:[10.0] "One of the greatest wrestlers to ever lace up a pair of boots, not only because of his great work rate, but also because of his masterful ability to tell a story in the ring. Kenny's promos are also really entertaining and he has a great ability to naturally jump from being serious and comedic during his promos. He helped co-found AEW which has revolutionized the wrestling business and has used his position as a top guy in AEW to help get younger wrestlers like Adam Page and Alan Angels over."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Adrian Nightwrote on 06.09.2022:[10.0] "The closest thing to a God of Pro Wrestling in the last 5 years. There's no other things to say about him..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GwenCube64wrote on 05.09.2022:[10.0] "Storytelling master, wrestling master, solid enough promo, an all time talent and can put on a solid match in his sleep."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: humanesquewrote on 28.08.2022:[10.0] "One of the best wrestlers of all time, not because of moves, but because of a thorough understanding of the kind of storytelling that makes the medium so satisfying. Not the best athlete in the world, but since wrestling requires two, put him in there with a fantastic athlete and you'll get absolute magic every time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JessieTLSwrote on 26.08.2022:[10.0] "Kenny Omega is just a perfect pro wrestler. He has won an embarassing amount of titles all over the world, and he transformed pretty everything he touched in absolute gold. He has probably the most complete and cool moveset in american wrestling, because every single manover in it is memorable. For example, he made freakin' epic the V-Trigger, a simple knee strike. He had literally 19 five-star matches, and he wrestled in the only 7 star match of all times. I saw a lot of people that criticized his acting, but in my opinion it's very entertaining and unique. He's the co-founder of All Elite Wrestling, one of the greatest promotions in the world, and his reign as AEW World Champion was great. He performed in almost every great federation: AEW, Impact, AAA, NJPW, AJPW, NWA, PWG ecc. He was elected the best wrestler of the year four times, by three different magazines. He's a 4 times world champion. He led some of the most important stables in the recent history: the Bullet Club and the Elite. I think that's enough to get a 10, isn't it?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Benwerderwrote on 05.08.2022:[10.0] "Einer der besten der Welt. Kaum einer hat so viele Klassiker, sei es in Japan, aber auch bei AEW. Er kommt wohl bald zurück, hoffe er kann noch ähnlich abliefern"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KELLANwrote on 05.08.2022:[10.0] "Kenny Omega ist ein Zweischneidiges Schwert. Er hat eine unfassbare Ausstrahlung, sieht aus wie ein Athlet und hat mit die besten Matches. Einzig und alleine seine Goofy-Gimmicks finden bei mir nicht immer anklang. Da dies jedoch ziemlich Subjektiv ist, gibt es hier dennoch die 10. Potenzial: 4(+)x AEW World Champion - 1200 Tage + insgesamt. - Main Event"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Inserthere750wrote on 04.08.2022:[10.0] "Kenny omega was my favorite wrestler of all time. The Golden Lovers storyline was the thing that got me into NJPW and other wrestling Promotions outside the WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Tyler72wrote on 29.07.2022:[8.0] "Kenny Omega definitely has one of the better move sets across the board. Always looks like he's going to make a hit. Lots of power he brings with him in the ring. His kicks always look startlingly real."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ishimoriAkirawrote on 14.06.2022:[10.0] "the single best professional wrestler of all time. Not only has he, in my opinion, put on the most matches considered for the greatest of all time, but also consistently puts on phenomenal matches. He has a style and attitude that makes him seem like a superstar and makes every match he's in seem incredible. Kenny Omega is the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: zags7000wrote on 03.05.2022:[10.0] "I don't understand why he's so polarizing but it seems that he is. To me, he's one of the best of his generation and maybe of all time. When it comes to putting on classic matches in big moments, few seem to be as reliable as Omega. His run in NJPW was one of the best and while is AEW run is slightly below that, it has still be really good. His promos might not be for everyone but I think he's underrated in that department. Maybe not consistent but I do believe he lands more than not. Among the greatest of all time overall."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Omnisplicerwrote on 02.05.2022:[10.0] "Kenny Omega has been alongside Kazuchika Okada as the face of the professional wrestling business since the mid-to-late 2010's. He is quite possibly the most complete wrestler in the world today, with the most protected finish in the One-Winged Angel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AntIsSwaggywrote on 26.04.2022:"Omega is talented, maybe not the best with his selling and reactions. However he knows what he? s doing and his ability to stay out of scandals furthers his star power. A guy everyone should want and someone who is definitely always going to give you a show."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: WrestlingFan892wrote on 15.04.2022:[10.0] "A wrestler who does nothing wrong and who any company wants, wrestles well, has mic-skills, charisma, a good manager, has formed good factions and even something unforgettable that is to continue wrestling for a long time being injured to give people a show. Living legend of Wrestling of course."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GreatAether531wrote on 08.04.2022:[9.0] "When he's at his peak, Kenny Omega is an all-time wrestler. His singles run from 2016-2018 is in the conversation for the greatest ever, he's an athletic freak with incredibly dynamic offense, and he's one of the best tag wrestlers of the past decade as his runs with Adam Page and Kota Ibushi made clear. Too often, though, Kenny Omega gets in his own way. His 'epic' style matches are some of the greatest ever, but his insistence on maintaining this style when the situational doesn't call for it has dragged down much of his more recent run while in AEW. His working through injuries probably hasn't helped either, but his run since winning the world title was where this was more obvious than anything else, outside of the moments of excellence such as in his match with Danielson. It also didn't help that his heel character just didn't feel true to himself. Kenny Omega attempting to come off as the Ric Flair-esque heel who only cares about money and fame always felt insincere, even with how hard him and Callis tried to make it work. He's still a generational talent, but without a more consistently good AEW run, I can't justify giving him the 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CTFBwrote on 11.03.2022:[10.0] "There's always been an ongoing debate on whether pro wrestling should be treated as a legitimate contest or a form of art, and when it comes to the latter, Kenny Omega is the epitome of that. Combining puroresu stiffness with video game/anime-like storytelling makes him compelling and vastly different in the American wrestling scene, and in the best way. Many people find him hard to take seriously as he did comedy in Japan, but Omega is a big exception as I feel as a worker he's extremely versatile and able to have many different types of matches and play many different types of gimmicks. He can go from a comedy match where he wrestles an inanimate object to putting on a star rating-breaking masterclass with another high-caliber talent, it's honestly crazy how much variety Omega has in his work which leads to not one match feeling samey or similar to another match in his career. Definitely a decorated talent who has gotten the accomplishments he deserved."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dendowrote on 21.02.2022:[9.0] "Kenny is a true artist in the ring and has already generated a body of work that puts him in the conversation for greatest in his generation. He falls just short of being an all-time great, and I hate to say it but his natural irrepressible goofiness is a slight detriment to his persona and occasionally his matches. Still, he is absolutely top tier in terms of dazzling offense and pure emotion when it comes to his wrestling style. His status as a leader of the new school is well-earned."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: hassan01wrote on 19.02.2022:[9.0] "An incredible wrestler and well known not only in Japan but in the states as well. He has put up some of the best matches in this decade. A very unique move-set which will impress you for sure . After a fantastic career in Japan , wishing him luck to be the top competitor in AEW as well. He has 100 percent potential to do so. EDIT: I understand he had a injury and all but his US transition was highly average. I wont go as far as entitling it as a flop. His character was inconsistent and his mic skills very average. Regardless, there were times he hit a home-run with his character work such as portraying his persona as mentally fractured who was hell bent on proving himself as the best ever on the planet and expected others to give him the same respect. This kinda waned off as he came off as a generic cocky heel playing well below second fiddle to others having a similar role (MJF, Britt, Men of the year, Team Taz and Miro) to name those that clearly outperformed him as a villain when he was the world champion sadly and his matches just never hit the same level they did in Japan except for those against Danielson and Page. He was injured ad I get that but I make the rating on basis of what actually happened rather than what was suspected to occur."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: LivingLegendwrote on 14.02.2022:[5.0] "I respect Kenny Omega and what he's accomplished in his career. However, I am not a big fan if him as a wrestler. I will give him credit first, though. He is incredibly athletic. His movements are explosive as well as impactful. That is about all the credit I can give him. While he oozes physical charisma, he has absolutely no charisma as a promo. He comes across as a complete geek and I find it very difficult to take him seriously when he talks like a comedy act every week. He struggles to construe coherent promos that make any sort of sense, and just sounds like a mumbling mess most of the time. His facial expressions are some of the most fake and overly dramatic in the business. His selling is poor. Not Young Bucks level of poor, but definitely not good. Not holding this against him at all, nor will it impact his rating, but he has definitely slowed down in recent years. He had been suffering through a myriad of injuries that clearly held him down. I would say he should maybe do one more run in AEW and then retire, lest he become a parody of himself."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Having a place on my personal Mt. Rushmore, the greatness of Kenny Omega is best summarized by his parallels to my personal GOAT Bryan Danielson. All time great in ring workers who have had their promo skills brought into question, Kenny tells gripping stories in the ring, and his heel personas as The Cleaner & Best Bout Machine were must watch characters. He's been the final boss of NJPW & AEW, and all fear The One Winged Angel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Nulltarifwrote on 08.02.2022:[9.0] "Ich kenne Omega hauptsächlich aus AEW und seinen großen NJPW Matches. Im Ring zählt er zweifelsohne zu einer der besten Wrestler der Welt. Leider gefällt er mir am Mikrophone eher weniger und wirkt dabei meistens eher cringy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: rishabhwrote on 30.01.2022:[5.0] "I remember when I first heard about Kenny Omega as a great wrestler and wanted to watch his work, but after watching quite a lot of his matches, I've yet to see a 5 star match from him which he is famous for (I've seen his matches with Okada). He is a great athlete but there's more than athleticism to be great at wrestling and that's like the only thing he is good at it. I don't like his in-ring psychology at all and I don't get invested in his work honestly. Neither do I like his goofy selling and him doing 37 V Triggers and 100 Snap dragon in a single match. I don't have change the channel heat with him but he is not someone whom I specially wanna see. His promos also come off as quite boring to me and not something I would expect from someone who is called "one of the all time greats". I'll think but I doubt I will find a more overrated wrestler than Kenny Omega."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Wright15wrote on 28.01.2022:[10.0] "Kenny Omega is unlike any other wrestler ever. Instead of finding his inspiration from wrestling history, he incorporates moves, looks, movements, and drama from art outside wrestling. There has probably never been a wrestler who paid so much attention to detail when telling a story within the ring. He makes both taxing power moves and difficult high-speed sequences look effortless. He is charismatic as hell, and his ability to speak off-the-cuff is matched by few others. He has also had a remarkable impact on the business. As evidenced by selling out Budokan in 2012, he and Ibushi took DDT, a company that would scarcely ever draw over 1, 000 fans, to the level of the other top promotions in Japan. In NJPW, his legendary feud with Okada drew attention from the west and will be remembered for decades. His match with Chris Jericho drew record foreign attendance in the Tokyo Dome and convinced Tony Khan that there was a market for another major American promotion. His main event at Wrestle Kingdom 13 against Tanahashi sold out the Tokyo Dome, and the very idea that he would main event MSG in 2019 for New Japan sold out that venue instantly. He has proven to be a tremendous draw in AEW, both before and during his outstanding title reign. Kenny Omega has solidified his status as one of the greatest wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Ameridragonwrote on 25.01.2022:[10.0] "Kenny Omega is the pure, distilled essence of the best of the high spot, high workrate style of the late 2000's-early 2010's. He does excellent story-telling with his facial expressions and over-the-top mannerisms, and while he does do a lot of high impact moves, they always fit into the story he's trying to tell in the match. I hope that he takes as much time off as he needs to return as good as ever, because I feel that he is still one of the pioneers of the style AEW is trying to have."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Shib Viciouswrote on 19.01.2022:[10.0] "In my opinion Kenny Omega is currently the best wrestler in the world. He has great character work, puts on great match after great match, makes everyone he wrestles seem like a million bucks and elevates the promotions he appears in. Then when you consider the incredible past few years he's had, he's had despite being riddled with injuries, he really does stand a class above."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GriffinXwrote on 16.01.2022:[10.0] "Still the best in the world when you look at what he did the past few years even while dealing with numerous issues physically to still put on the level of matches that he did. The man has also shown an amazing ability to work any type of style. I know his detractors will focus on his comedy stuff but like a great actor Kenny has show range over and over again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: nWo-Joshi-Guywrote on 10.01.2022:[10.0] "Hell, he has not even been 100% for his amazing AEW title run. One of, if not the, greatest wrestler of all time. Very few people can even compete with the number of mind-blowingly incredible matches this man has had. Perfectly combines slower more traditional pro-wrestling styles with quicker, more modern flair. All his moves look impactful (best knee in the business) and is also great at selling. Thoroughly entertaining as a heel on mic and knows exactly when to use comedy or maintain a serious character. The protection of the One Winged Angel creates mystique and adds to his legendary status. Amazing rivalries and he takes his gimmick from FFVII's Sephiroth too which is cool."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: wizardspalacewrote on 09.01.2022:[10.0] "Kenny is arguably the best wrestler of the 21st century. Kenny has shown he can carry companies. He feels like a big deal wherever he goes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Lucilferwrote on 08.01.2022:[10.0] "Kenny omega is the GOAT to me, his run as the cleaner in 2016-2019 is the greatest run of matches in history period no one can top it, an ability to tell stories like no other in the ring , unmatched explosiveness in the ring, daring and creative, just an absolute joy to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: NikoKillbainwrote on 01.01.2022:[10.0] "Whatever people said about Kenny not being his New Japan self is now firmly thrown in the trash. Kenny was always gonna have his moment to pull AEW forward, and 2021 provided that. Fenix, Mox, even Sami Callihan got to be a part of one of the most prestigious runs in Western wrestling in years, and still he was able to field a trememndous storyline performance alongside Hangman Page. A main event star with workhorse ability, Kenny's earned the right to take a lighter schedule going forward."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Okaro143wrote on 22.12.2021:[10.0] "Kenny Omega is one of the greatest professional wrestler in history. His four match series with Okada is the greatest series of matches any wrestler could have. All four matches broke Meltzer's 5 star scale ratings and are among my favourite matches in history. He has both the highest Meltzer rated singles (Highest rated Dave Meltzer match in history) and tag team match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: eltetechoriwrote on 18.12.2021:[10.0] "Kenny is pure wrestling gold, you fall in love with the sport watching him wrestle, plus the great character he can build, he has it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CaptainCharisma1997wrote on 17.12.2021:[7.0] "Great wrestler who is held back by his inability to play a serious character and his goofy unconvincing promo style. Was weird watching AEW this past year and seeing a guy simultaneously being a comedy chickenshit and trying to act like the best wrestler alive at the same time. He's even less believable as a babyface too, sadly."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: kennethtronwrote on 08.12.2021:[10.0] "one of the best in the world and has been champion in multiple continents and for multiple companies, , , record ppv buys as AEW champion, hall of famer, along with being one of the best storytellers ever, , , be it against Ibushi, Okada, Moxley & most recently Adam page, , i mean what are we doing here, , he has played a big part in the success of AEW which will get appreciated more with time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: fariashoffmanwrote on 06.12.2021:[10.0] "this man is awesome! I only started following it a final of last year, but it's already one of my favorites!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: HighFlyDeathcorewrote on 29.11.2021:[10.0] "The greatest wrestler of our era. A man who can get a good match out of anybody in any company. I have followed his work since 2012, i discovered it through Kenny and Generico fighting the Young Bucks. And ever since that match, i have adored his work. Through his matches with Kota to beating up AJ Styles and becoming Bullet Club leader. IWGP Champion, G1 Winner, first ever IWGP US champion and now a former AEW World Heavyweight and tag champ. *hulk hogan wcw voice* I LOVE THIS MAN"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Grechanderwrote on 14.11.2021:[10.0] "My favourite wrestler ever, and the one I consider to be the current Best In The World. His in ring skills speak for themselves, and while some people may criticise his character work, they are clearly blind to the nuances and storytelling quality of both the saga of the Golden Lovers and his multi year long story with Hangman Page. With the current state of The Elite (Post Full Gear 2021), a new amazing story seems to be on the horizon, although I hope he takes a very well deserved break until 2022."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: FACEElmo295wrote on 11.11.2021:[6.0] "Very indie-arrific move set, but in NJPW it felt controlled and they used him well. His character work isn't exactly great, just plays a generic arrogant heel and his look isn't exactly drawing new eyes to AEW. Omega is very much unknown out of the hardcore fans, and the people that watch AEW every now and again. Omega needs the right opponent in order for it to work, and whilst his matches with Okada, Naito, Ibushi and Jericho in NJPW were great, his AEW run has been naff. His ring work is exciting, but doesn't have what it takes to be a big draw in America. He lacks psychology, and feels like a spot monkey at times."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SL 02 15 02wrote on 10.11.2021:[10.0] "One of the best in ring performers of the last 15 years. His matches are always so fun to watch. One of his more underrated matches that I love is against Chris Jericho at Wrestle Kingdom."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Beneyrieywrote on 04.11.2021:[7.0] "Kenny's style very much defines a modern era of wrestling. Versatile, dramatic, with unique intelligence within the ring. I was always incredibly critical of Kenny before I saw him on AEW. Yes, he's still prone to the odd 'goofy' segment with The Elite, though whenever he steps inside the squared circle he steals the show. I'd quit like to see Kenny step away from The Elite. The Young Bucks are fine being in the group, though Kenny's better off without being a part of any team/group."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MrIslamywrote on 31.10.2021:[9.0] "I think he is slightly overrated but still up there with the bests, his in-ring work is really good but at times he can be kinda awkward on the mic. I think he would benefit more in AEW if he was more serious."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dy1789wrote on 31.10.2021:[6.0] "One of the most overrated wrestlers of this era. He is good in the ring but severely lacks charisma and is okay at best on the mic. He's had good matches in Japan but internet marks glamourize everything over there. In America his flaws really get exposed cause now promos and character work are important."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Apollomidnighterwrote on 13.10.2021:"Once in forever kind of talent and truly deserving of being in GOAT conversation. A very special and unique guy, I doubt we'll see someone like that in future if ever. Incredible to be able to watch an artist like that perform at that level."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SrHunterwrote on 11.10.2021:[10.0] "Omega is special, while his long awaited IWGP Title reign wasn't good in therms of character and builds, he never dissapointed in the ring. Every time this guys steps on a ring something special is on the way. To not acknowledge his talent you either should be blind or stupid. Omega is a guy who has literally everything a wrestler could have, look, GREAT ring work, charismatic as hell and a great talker. His comedic acts sometimes are over the top, but i will lie if i say that don't entertain me sometimes, but when it comes to WRESTLING, he is truly one of the best out there and one of my personal all-time favorites, seeing his match live with Okada at WK11 is something i will never forget in my life. Overall he is a stellar wrestler, have an arsenal of fantastic matches, with many classics and will be remembered as one of the greatest of all time, whether you like it or not."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: IBladeDailywrote on 07.10.2021:[10.0] "Kenny Omega has redefined what the trajectory for a modern wrestler can be. He has become a worldwide star outside of WWE, has drawn sold out houses on several different continents, and his match series with Kazuchika Okada is the greatest of all time, in my opinion. He has continued to reinvent himself as AEW Champion and has tirelessly dedicated himself to becoming a better character. I have no doubt that Kenny already belongs in the GOAT conversation and have a hard time imagining how he could be any less than #1 by the time he's done in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "One of the greatest wrestlers that I have ever seen, he has legendary matches in DDT, NJPW, AJPW and AEW"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: magicwrote on 28.09.2021:[10.0] "Anyone saying that Omega isn't a top tier talent by now is simply in denial. Time after time he has proven his wrestling prowess and has put on great matches with anyone he's paired up with. His offense is brutal, he can be a bit goofy but the charisma is there and the goofiness in reality doesn't take away anything from the amazing matches he has. he is good to amazing in pretty much every field in the sport, looks like a million bucks, and is the biggest indie draw since Danielson and Styles. Say what you will about his character as I can see why it isn't some people's cup of tea, but anyone who thinks this guy isn't atleast a good worker either hasn't seen any of his matches, or is just trying to be different."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Lyno123123wrote on 25.09.2021:[10.0] "(10/10 In 10-15 years people will remember Tyson Smith (A. k. A Kenny Omega) as one of the greatest wrestler in the world today. A LOT of people hated his guts because of some stuff he did in the past, but i could careless about what he did back then. His series of matches against Tanahashi, Okada, Naito, and Ibushi is in the book of "The Best matches in the last 20 Years". His Best Bout Machine "Gimmick" is NOT a gimmick. that is the BEST possible way to describe Kenny. But i gotta say one thing, the only downside of his stuff is that he is not that good of a heel because his in ring skill is overshadowed his character. He is that type of guy who you love because how good he is, and the one you hated the most because how good he is. Kenny omega is an enigma that was never seen before and that is something that A LOT of people can't comprehend. He never needed anyone opinion to tell him how good he is. The only thing he needed to do is to show up, make a series of MOTY matches, and go home. Other than that love him or hate him, He already knew that he is living rent free in your cerebral. EDIT: after watching that danielson match it solidified him as the best wrestler i have seen in the last 20 years since kenta kobashi. Amazing"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CaptainCannabiswrote on 24.09.2021:[4.0] "Massivly overrated. He is definetly a good in ring performer for big matches when someone carrys him, but hes lacking any psychology. Outside the ring he has shown that he is incapable of beeing anything but over the top and silly."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: saraiva98wrote on 24.09.2021:[10.0] "He is maybe the best wrestler ever in terms of workrate. What a wrestler! He changed the landscape of pro wrestling with his friends creating All Elite Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KENTAfanwrote on 24.09.2021:[9.0] "Kenny is awesome. In terms of sheer workrate, he's one of the greatest of all time. He's had some of the greatest matches ever and has also developed his character enough over the years to tell a compelling story whenever he feels like it His only main downside is his tendency to neglect storytelling and psychology for workrate, often spamming the same moves to the point where it just becomes annoying to watch. When he's at the top of his game though, he's one of the best."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: hello101wrote on 18.09.2021:[7.0] "His best work has undoubtedly come from his tenure in New Japan, he was a perfect 10 from 2014-2019, and he was excellent in DDT as well. However, his work in AEW and his nascent tenure in PWG have been average to good at best, in my humble opinion. He hasn't sustained a substantial feud in AEW as of yet; although I am hopeful about the culmination of his long-term angle with Adam Page in the future. His work previous to NJPW in the independent scene heavily relied on comedy and comes off as passably good. Although I am not as critical of his comedy gimmick in AEW as some others are, his faction the Elite hasn't really produced any memorable moments of legitimacy, despite them constantly touting how they are the "greatest faction in the world", which is a moniker they abuse solely for heel heat. I like his wrestling style, but since New Japan, he has delivered classic matches only a couple of times on the big stage-- his match vs PAC and the tag match vs the Young Bucks. I wish I could rate him higher, and I hope his inevitable feud with Adam Page and others is of substance, and let's say I am also hopeful there is some fantastic conclusion between Ibushi and him whenever the time permits. But until then, I have to wait and rest my rating at a solid 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: IFeelLikeAi3wrote on 12.09.2021:[4.0] "Kenny Omega is a mystifying and frustrating worker to see perform. Its unfortunate. He has all the tools to be The Best In The Woorld, but for some reason he wants to be Triple H's idea of NWA heel champion and Manami Toyota at the same time, when in reality he should be trying to be The Next Ricky Steamboat! While I did not like the work he exceled at the babyface role in New Japan Pro Wrestling as The Cleaner, an Austin like presence. Unfortunately, just like Steve Austin himself, when he became heel, he took a down turn. The only difference being the work was still good. He still has all the potential in the world, but G.O.A.T.? I Just dont think so, buddy."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GabrielHorsewrote on 08.09.2021:[10.0] "This guy is one of the best wrestlers not only of this century, but in history. He and his mates have really changed the world"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Ryanmichael25wrote on 06.09.2021:[4.0] "Not as bad as the young bucks, but still just so dang goofy & not in the funny ? haha he? s a heel your getting worked way? like the change the channel annoying way. I hope Danielson or Punk takes the Title off of him."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: No Onewrote on 01.09.2021:[10.0] "One of the greatest pro wrestlers of the 21st Century. One of the greatest in-ring performers of all time. Put on matches that will forever withstand the "Test of Time". Popularized the V-Trigger & The One-Winged Angel. Became a worldwide superstar WITHOUT the WWE. Legendary rivalry with Kazuchika Okada. Along with The Elite, brought a whole new wave of popularity to NJPW. Helped create a brand new North American Mainstream Wrestling promotion (AEW). Is an entertaining & charismatic personality. Tag Team partnership with Kota Ibushi as "The Golden Lovers" is one of the best tag teams of the last 10-15 years. Most likely the greatest Gaijin wrestler in NJPW history. Earned the right to call himself "The Best Bout Machine". Continues to produce great work in AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Upgrayeddwrote on 12.08.2021:[5.0] "Oh, how the mighty have fallen. Kenny Omega used to be a tremendous athlete, arguably the best professional wrestler still fighting full time. However, from being an icon, he became a joke. After joining AEW, Omega essentially became a joke of a wrestler. His promos became so annoying Don Callis had to be called in to do the talking for the champ. Like the Young Bucks, he took on this goofy gimmick that can't make me take him seriously whatsoever."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BadHaircutwrote on 06.08.2021:[10.0] "Loving his new character which he's correctly calibrated to actually get boos but he's still having great matches all the same. I guess it is possible to do."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: hirsty97wrote on 02.08.2021:[0.0] "This guy along with the Young Bucks represent everything I dislike about modern wrestling and AEW. Goofs like Kenny Omega exist to bastardise and satirise pro wrestling. No interview no promo is believable he churns out matches for an audience of : Dave Meltzer and his sycophants who ascribe value to what some unqualified dilettante says."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: voltxtreanwrote on 23.07.2021:[10.0] "Ein wahrer Innovator und zukunftsorientierter Kopf für das Wrestling, der nicht nur die Messlatte für Matches, sondern jetzt auch mit AEW für Promotionen höher gelegt hat. Niemand verbindet Drama und Action besser als er."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Kungwrote on 21.07.2021:[9.0] "Similar to Shinsuke Nakamura, I think Kenny's best days are somewhat behind him. However, when he was at his peak, there was no one who excited me more than "The Cleaner". In time, I might raise his score up to a 10, but his run in AEW hasn't impressed me enough to justify that to me. I still love him, though."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheBigBuwrote on 18.07.2021:[6.0] "Kenny Omega is a welcome part at any main event. He also has a pretty good look with tons of physical charisma. Issues arise when Kenny tries to do anything else. Every match he's a part of becomes an " epic tale". He cannot have anything other than a drama-filled match. While I enjoy drama-filled matches the constant stream of this kind of match gives me burnout. However, my main reason for this rating is his promo ability. For lack of a better term, Kenny's promos are "hippo shit". I believe that Kenny might have the worst promos of any main-event talent. He's one of the only wrestlers that has looked significantly worst after speaking. Honestly, My opinion on Kenny Omega would be much higher If he was mute."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Z001Awrote on 17.07.2021:[10.0] "Er sticht in einer Zeit heraus, in der es so viele hervorragende Wrestler gibt, das sagt viel über seine Fähigkeiten aus. In AEW macht er gerade einen großartigen Heel-Charakter, der vielleicht die beste Charakterarbeit ist, die er je gemacht hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Tomas Cunhawrote on 16.07.2021:[4.0] "Terrific athlete who can do some insane stuff, but so could Rey Mysterio Jr 20 years ago and he wasn't overrated to the degree Omega ever was. I don't enjoy the psychology in his matches, or the stories he's trying to tell. The execution in his promos are really weird and distract me like The Ultimate Warrior's used to, though both in their own different ways. I'll give him the athletic part, he's spectacular and one of the best, but apart from that I can safely say he's the most overrated wrestler in the entire history of wrestling."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Hillwrote on 13.07.2021:[10.0] "Without Kenny I wouldn't be watching today. I have fallen off of pro wrestling after Daniel Bryan got injured and when the Shield dissembled and I never thought I would be watching ever again. I t wasn't until I discovered New Japan Pro Wrestling and by extension Kenny Omega that I learned what pro wrestling really is: an art form used to tell stories."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AntiMatterwrote on 03.07.2021:[10.0] "Sein Übergang von NJPW zu AEW war für einige Fans eine Umstellung, aber er ist immer noch ein fantastischer Performer. AEW hat einfach nicht die Leute, die so gehen können wie er, noch haben sie die Zeit, regelmäßig große Epen zu machen. Abgesehen davon genieße ich es zu sehen, wie er mit kürzeren Matches und neuen Gegnern etwas anderes macht. Er ist immer noch erstaunlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Fayzalwrote on 28.06.2021:[5.0] "He does cool moves and is a great opponent to someone who is actually a ring general and I think his run in AEW has exposed that he isn't as great alot of us thought he was when he was back in NJPW. His promos are really cringe too and what kind of person in kayfabe talks about the amazing matches they have had, AEW on commentary even keeps on bringing up that he is a 7 star match machine when that should only be spoken about outside of a wrestling show. Nothing in his matches aside from interference are able to garner any heat and it has gotten extremely old. I have no idea how people place this guy in the same bracket as Daniel Bryan & AJ Styles when they can actually carry people to great matches. During Kennys time in AEW he has failed at this numerous times with decent opponents such as The Best Friends, Matt Sydal & FTR. Since early last year he hasn't been able to put a match together that comes close to anything he did in New Japan which just goes to show how Okada, Jay White & Tanahashi as ring generals let Kennys strong points shine but now as a face of a company has been exposed as an average guy with cool moves who struggles being a basic heel on a weekly wrestling television show. The pairing with Callis too is overrated as hell while Callis is good on the mic and spears us from having to hear some of the cringe which comes out of Omega's mouth, they have had no memorable moments together aside from Kenny telling Don to 69 him each other which is pretty sad considering there are people comparing this pairing to that of Heyman & Lesnar/Reigns which is a joke. Best thing for him would be to turn face and rely on coolness rather than corny promos and chase a title held by a Heel who can bring the best out of him"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: plaguespreaderwrote on 19.06.2021:[8.0] "Corny as hell, has only increased his dweeb persona in the years past The Cleaner character, and I don't think he's anything above average when it comes to mic skills, but he has a great body and his in-ring skills have already been talked about as being in the top tiers (i. e. I agree with the assessments of his workrate and moveset), so I won't go into that. Sorry man, he's not Shingo Takagi, he's not Marufuji, and I probably have enjoyed a wealth of performers more than I have enjoyed Omega (2013 Bray Wyatt, 2009-2011 Davey Richards, Killshot, Mil Muertes, Necro Butcher, MASADA, Toru Yano, etc. etc. etc. ) Still, I won't deny pound for pound he is probably the most all-rounded package if we take away the traditional "coolness" that someone like WALTER or 2016-2017 AJ Styles presents"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ExcitingProWrestlin3wrote on 18.06.2021:[8.0] "At his best, he's easily one of the best on the planet. But New Japan had built that story with Okada which is what lead to those amazing bouts. in AEW it's just- not quite the same, even if you love his heel work, AEW's booking makes me scratch my head at Kenny Omega's abilities, his in-ring psychology just seems off, too off for a guy as highly regarded as he is. Hopefully he can bounce back with some more great matches, with proper booking force behind him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Wrestling4Lifeewrote on 31.05.2021:[10.0] "In my opinion, Kenny Omega is the best wrestler in the world today. i mean this man just cant have a bad match. he has had a great range of comedy to very serious and hard hitting matches. he has an awesome move selection that always puts people on the edge of their seat, and his finisher is devastating! Kenny can really do it all holding 3 but technically 4 belts currently. if that doesn't say how great of a wrestler Kenny is, then i dont know what will. i recommend watching his recent work with Moxley and a handful of his G1 matches. we cant forget about his showdowns with Okada of course."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Daigotsuwrote on 21.05.2021:[10.0] "Kenny's an all-time great. His in-ring ability is absolutely scale-breakingly elite. He has good charisma, although his promo skills are only "ok". But they're good enough to carry a story, and once he gets in the ring there are very, very few who are better."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BlakeFR37wrote on 08.05.2021:[10.0] "He's a GOAT in the GOATS. I put him in my Mount Rushmore. AEW and NJPW Hall of Famer in the future. And i will tell you that he was good in the Indy circuit too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: The A-Listerwrote on 05.05.2021:[10.0] "When he's done, he's gonna be in a GOAT discussions. Incredibly talented wrestler with great characters. His work in NJPW is fantastic and matches against Okada are one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: uziwrote on 30.04.2021:[8.0] "Unlike Tanahashi, Okada, or Miyahara (despite what some might say), his BITW status depends entirely on you connecting with his very specific style of match. If we consider that neutrally and look at the rest of the aspects of his in ring work, he's at the top tier in ring but not in strong contention for the absolute best. And as ridiculous as some of the anti-Omega backlash can be, his commitment to that style can also be considered negatively. It just doesn't work for every match. Beyond work rate, he has some drawbacks. He is charismatic and good on the mic, but not always believable and prone to very over the top mannerisms and facial expressions. And his sense of humor doesn't click for me at all."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: killowenskillwrote on 28.04.2021:[6.0] "I was one of those who first noticed Omega in PWG and sincerely cheered for him in G1 26, wishing for this unlikely, but still happened triumph. He amazed me time and time again, skillfully fitting into any match and arranging a massacre with absolutely everyone. When it came to the main events, his approach worked, the big matches were truly great and some, without shame, could be called the best in modern history, but when it came to the mid-card... The first wake-up call was during a match with Beretta, when he staged a battle with a man who had not even established himself as a single wrestler yet. Later, when he was fighting people like Sabre, Sanada, who needed a special approach, Omega's ignoring their chips and stubbornly pushing his own view of wrestling started to get very annoying. Now that I've been watching him since leaving NJPW, I can see that this has taken it to a new level and has become a problem. Omega is an actor of one role, and in the case of wrestling, a wrestler of one formula. He's only good at big fights, stubbornly refusing to practice anything else. Kenny doesn't care if the opponent is technically gifted, he will not enter his field and will be completely lazy, as was the case with the same Zack. Kenny doesn't care if the wrestler isn't good enough for the "big" fights, he'll still try to get him in there, whether it's the Beretta mentioned above, which will just lead to a weird big match, or whether it's Rich Swann, which will lead to a huge failure when the exhausted wrestler botches and stops selling. Omega is incompetent in his own way, and his incompetence lies in the fact that he overestimates himself too much and doesn't try to be simpler. From Kenny's example, I understand that simplicity is a unique talent, and showing a small but well-rounded match is a very, very underrated ability that Omega simply doesn't possess. He was never my favorite wrestler, but I respected his work, but the current "five stars bites" in matches with anyone greatly spoil the impression of him. Omega has set a new fashion after a really outstanding series of matches, and it is, in all seriousness, hindering the industry. I won't take a negative view of Kenny, because his contribution is still worthy of respect, he was very good in NJPW and made a good story with many wrestlers. The reason for the revision of the rating will be a situation when his storyline with collecting belts goes too far and he will take a swing at the big Japanese promotions (NJPW, DDT, NOAH) in order to push this nonsense there. It's easier for me to bear this nonsense while he's based in North America, but something tells me that it won't be for long."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Wrestling Foreverwrote on 25.04.2021:[9.0] "Er hat eine klasse Mischung. Er kann Comedy die sehr unterhaltsam ist, er ist ein klasse Techniker der vielleicht manchmal etwas übertreibt mit den Spots und auch sonst ist er nicht immer ernst bei der Sache. Da spielt er zu sehr mit den Gegner. Doch diese Mischung mach ich an Omega. Auch sehr sympathisch und charismatisch. Ist sehr gut das er nun fest bei NJPW zu sehen sein wird. Edit: Aufwertung von 8 auf 9 Punkte hat sich die Jahre bei NJPW als Heel sehr gemacht ist bei PWG auch nach wie vor genial sein Chainsaw Spot ist so verrückt. Auch ist er großer Street Fighter und Popkultur Fan. Omega rockt. Wenn Kenny als The Cleaner auftritt sieht man sofort die Inspiration zu Albert Wesker und Mario Cobretti aus dem Kult 80er Actionfilm Cobra. Edit 25. 04. 2021 sollte er gegen Rich bei Rebellion 2021 siegen würde er auch Impact World werden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: boraseyhanwrote on 16.04.2021:[9.0] "People criticizing Kenny's promos are unacceptable. Yeah, maybe he's no Rock or anything but some of his promos are absolutely brutal. I don't even need to talk about his in-ring skills."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MrJabroniCamelClutchwrote on 12.04.2021:[5.0] "An ok wrestler , but not the damn second coming of Bret Hart or Shawn Michaels for fucksake , the man his no psychology , no story telling skills , doesn't have any idea how to convey pain or sell any of his opponents offense , yeah impressive athlete as a high flyer , but the guy is utterly fucking goofy with his finger banging and his facial expressions , there's nothing to me that he's serious about wrestling or what he's doing and he's just fucking around like an idiot , sorry but not sold on this guy , the only reason he had those classics with Okada is testament to Okada's talent to carry this jabroni to any great match."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: FightForeverwrote on 11.04.2021:[10.0] "Easy to argue hes the best in the world, in fact he's one of the best of all time! He's flawless in the ring, selling, spots, execution, brutality, etc. it's all perfect. His charisma is incredible and his mic skills are great as well! It's actually insane how good Omega is. He has had countless classics, Okada, Goto, Naito, Ibushi, and Tanahashi just to name a few. As the cleaner he was the best in the world in my opinion, and now he's top 5, if this heel character improves then he will be the best in the world"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Bushidospirit22wrote on 07.04.2021:[5.0] "Omega is an interesting person in wrestling. At his best, especially when he wrestles others that can keep up with him athletically like Naito, Ibushi, and Okada, he can put on amazing matches that are among the best in wrestling history. A good portion of his matches however, especially unimportant matches or matches against wrestlers who aren't all-time great workers, can lean in too much into either comedy or over-dramatization that completely take me out of what I'm watching. Ever since he moved over full-time to the U. S. , Kenny's most glaring flaw by far has been his character work. Although this was visible in Japan, it wasn't necessarily a major negative since more emphasis is placed on what happens in-ring. The need for a more exaggerated character to fit the U. S. style has really shone a light on how weak Kenny is at promos or effective character work, and doesn't work at all for someone who is supposed to be the world champion of a major promotion."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: michmoose21wrote on 16.02.2021:[10.0] "Simply the best in the world. Kenny is the best in-ring performer in the world as of now. Kenny can do it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Golden Loverwrote on 15.02.2021:[10.0] "One of the best in the world. One of the reasons why I got back into wrestling. Omega is phenomenal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: StrongStyle2020wrote on 05.02.2021:[10.0] "Love him or hate him, Kenny Omega is a generational talent. One of the top workers in North American history, and greatest gaijins of all time. He was an exciting talent working with and against Kota Ibushi in DDT, amongst some ROH, PWG in his early years, but blew up when he arrived in New Japan and joined Bullet Club. Golden Lovers remain one of the most talented tag teams of all time. His main event run in New Japan is what elevates him to a status of one of the best of all time. 2017/2018 Omega is simply as good as anyone you could compare to - character, work rate, storytelling, athleticism, explosiveness simply exemplary. His series with Kazuchika Okada is as good as any in history, including Misawa vs Kobashi/Kawada. A fantastic talent, who when all is said and done, could be one of the most important wrestlers of our time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: caleb mullings13wrote on 03.02.2021:[10.0] "Kenny Omega is the greatest wrestler of all time. He puts his full effort into every match and that's what makes him the best bout machine. All the dots connect with Kenny as he has the best long term storytelling of all time, everything has a purpose with him. He also is responsible for the greatest wrestling match ever (vs Okada at dominion)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Brett1980wrote on 15.01.2021:[10.0] "Quite simply the best in the past 5 or so years everything he does is great. He not only can have excellent matches but I like it when he gets a tiny bit of comedy in (like the deodorant spot vs Jericho in 2018, or the singing Teenage Dream after beating Tanahashi in 2016 and the still selling the leg after jumping) There are other examples but these are the two that stand out. It does not matter if hes wrestling Okada at the Tokyo Dome or a blow up doll in DDT he will always try to put on the best performance possible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AlexLennonPWwrote on 14.01.2021:[10.0] "People who call this man overrated are either trying to be cool or have never actually seen him wrestle. See: Okada vs Omega I, II, III & IV, Omega & Page vs The Bucks, Omega vs Tanahashi. This doesn't even scrape the surface. The man can and did wrestle a 'good' match with a 9 year old girl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: notme17wrote on 09.01.2021:[10.0] "Kenny Omega is the best wrestler in the world, and has been for about 4 years. He make lack in promo ability, but his natural charisma and wrestling ability make up for it. I think when he is finally finished he will be remembered on the same tier as Jericho, Tanahashi, Okada, and the like"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: comradevanzwrote on 07.01.2021:[3.0] "Kenny Omega is the most overrated wrestler of the decade. His matches is just spamming V-Triggers 10+ times and doing moves that adds nothing to the story. He is bad on promo. His gimmick is "guys do you remember that I've been good in Japan and wrestle Okada? " Yeah I remember, and now you are slower than ever. He tries to do puro-style matches in USA and it's look like regular cheap spotfests."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Thebossofthegym04wrote on 04.01.2021:[10.0] "One of the best wrestlers in history. And despite the fact that many hate him due to the fact that he does not show the level that he was before, this does not cancel his merits. He can show a good match against almost anyone. You can't count how many good matches he showed. And I'm not talking about his legendary matches with Okada, Ishii, Naito, Tanahashi, Young Baksami and Ibushi. And I'm damn glad that he is back to basics again after a layoff in the command division."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: RockinRobinwrote on 31.12.2020:[10.0] "Kenny Omega is one of the greatest if not the greatest active wrestler. He makes wherever he goes feel like he's the star, and his current AEW has established his ability to fight in hardcore matches, tag matches, and more. The collector storyline is just getting started, but he pulls in an audience to places like Impact. Kenny Omega is a decade defining star."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Morningsagewrote on 24.12.2020:[10.0] "Since 2016, Kenny Omega has been Wrestling's Top Star. He delivers in every single match he competes in. Graduating from a Junior Weight to Heavyweight helped him find his stride as he took out competitor after competitor on his way to winning the G1 Climax 2016. His trilogy of matches against Kazuchika Okada will go down as some of the best in the history of professional wrestling. Stepping away from New Japan to a new promotion in All Elite Wrestling, Kenny Omega reasserted his capabilities with a lengthy tag team championship run with Hangman Adam Page followed imminently with claiming the AEW World Championship. Kenny Omega's wrestling matches are immersive spectacles and truly need to be witnessed to be appreciated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: cosmik debriswrote on 23.12.2020:[7.0] "Omega is kind of a hit and miss to me. When he's facing the right opponents or finds himself into good storylines, he's an all-time tier wrestler. Everything he does looks really painful, and what he lacks in psychology (not that he's particularly bad at it, but I've seen better) he compensates with hard hits, crazy dives and an almost unlimited moveset. But I have to be honest and I cannot ignore all the bullshit he's been part of, from the comedy tag team matches with Nakazawa, to the ridiculous hardcore spotfests with Janela and Moxley. And that's just from his AEW run, thankfully I haven't seen much from his previous indie runs, but I doubt I would go crazy about it. He can be great in high-profile matches, and he is, but has proven to be rather mediocre in midcard or less important matches, and sometimes he goes too far for my own taste. Moreover, he's an average heel promo and a terrible babyface promo. The new heel persona he's portraying at the moment I'm writing this is much more interesting than the awkard babyface Kenny we've seen on Dynamite for the last several months, hopefully if he keeps a high level I'll return to appreciate him as much as I did during his NJPW peak"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Mhart2021wrote on 13.12.2020:[10.0] "Omega is absolutely at the very top of the wrestling world in terms of in ring ability and has had some of the very best performances in recent history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Moose Nuggetwrote on 09.12.2020:[4.0] "Kenny Omega is a great athlete who is a really goofy pro wrestler. It's impossible to ignore his goofy facial expressions and his prancing around. With the ring person he can have a good match but with the wrong wrestler it can be horrid. And he's one of the most boring wrestlers on the microphone. His promos are absolutely dreadful."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Rick1Pwrote on 06.12.2020:[7.0] "Let's be honest, Omega is a good wrestler. However I always found him to be overrated, his background in Japan explains that. Meltzer's permanent outcry with insane ratings helps make Omega look better than it actually is."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Scottishwrestlingfanwrote on 16.11.2020:[6.0] "Not seeing his work in Japan I can only comment on what I have seen on AEW the last year and a half. He is a good worker but also comes across as a total twat. Not a fan of all the pointing and punching the mat before running for a dive. His promos are just strange."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TekknMikeywrote on 31.10.2020:[10.0] "One of the greatest wrestlers of all time, Kenny Omega spent plenty of time paying his dues in the independent circuit before eventually becoming a major part of the Bullet Club in NJPW, which then spawned a sub-group of sorts known as The (Golden) Elite. The rest, as they say, is history. His matches with Okada became infamous among wrestling fans due to the admittedly obnoxious 6/7 star ratings from one Dave Meltzer, but now a few years on, I can confidently say their phenomenal trilogy consists of some of the best matches the sport has ever seen. With a vast array of moves named after, and even inspired by video games, a calm demeanour which can quickly turn into frantic, unhinged charisma, Omega is a true maverick of the business. Now a core part of upstart promotion AEW, Omega has further spread his unremovable fingerprints on the history of professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: medousewrote on 29.10.2020:[10.0] "This guy has the looks, charisma, skills and always does great promos. One of the best foreign wrestlers who ever worked in Japan. His matches in DDT or NJPW are legendary. Too bad he lost momentum after he left New Japan. Even though his best years are behind him, his legacy lives forever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JBoogieRom28wrote on 22.10.2020:[10.0] "Kenny Omega is one of the reasons I watch AEW and as soon as I saw The Cleaner, I was immediately like. "OMG He's AWESOME! " He puts on classics and is the best heel in AEW atm"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: rainmakerpunkwrote on 20.10.2020:[10.0] "He more than lives up to the name of "Best Bout Machine", this guy goes in the ring and has absolutely stunning matches and he can easily exceed even the highest expectations, he has an amazing moveset and he delivers each move with a certain fire and power that is unmatched, his V-Triggers look better than anybody's knee strikes, his finisher is arguably the best move ever, he has the best match ever, the best feud ever, the best tag team match ever, his character of the cleaner is top tier, and he's a VERY underrated mic worker, I like all his promos but his promo after beating Naito at the G1 26 is the 2nd best promo I heard behind only Punk's pipebomb, Omega's the 2nd GOAT behind Okada"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ilovewrestling1995wrote on 18.10.2020:[10.0] "He is the best wrestler of the world along with Aj styles, Seth rollins and Okada right now . His moveset is just pure perfection , his selling is out of this world , his matches are always fast pace and full of passion and energy and i dont even remember one bad singles match of kenny omega . They have booked his so bad on aew but i hope this is going to change because its so unfair the best wrestler of the world to be a midcarder . He should be aew world champion ASAP !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Gathawkwrote on 15.09.2020:[10.0] "Full package. Flashy in the ring with great moveset and great promo skills. Suitable to play both babyface and heel. Can't wait to see what AEW has planned for him after All Out."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Shutupwillwrote on 14.08.2020:[10.0] "This man is the whole package. You don? t need me to tell you by now how incredible of a worker Omega is, his classics with Naito and Okada among others in NJPW certainly prove that. But Omega isn? t just knees and head drops, Omega inherits so much natural charisma and the ability to tell a good story, all you have to do is watch the 2018 Bullet Club implosion leading to Omega reforming his old partnership with Kota Ibushi to see that, Omega was one of the stars of some of the best wrestling storytelling we? ve seen in over a decade and he deserves to be credited for that. Omega is now home in the US with All Elite Wrestling and is showing he makes a good TV character too and can have a good match that doesn? t have to go 30+ minutes, he? s proving to be a great tag wrestler with Adam Page (as if he didn? t prove that already with Kota Ibushi) and he continues to be one of the more interesting characters on BTE and has an incredible fan following. Omega is the whole package for a 2020 wrestler. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ilke Kurtlutepewrote on 01.08.2020:[10.0] "My all time favourite. The man who made me love this industry. One of the best wrestlers ever. His NJPW career from 2016 to 2019 is so freaking good. I hope he will get a singles push in AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jboyaquarwrote on 27.07.2020:[9.0] "A remarkable, multi-faceted talent built with a massive internal engine that gives as good as he takes, Kenny should be an alpha. He has three drawbacks that prevent me from elevating him any higher: 1) He's catty - ie. In 2010 he wasn't pleased that fellow NJPW BOSJ competitor Davey Richards (the (supposed) new 'Dynamite') was receiving more attention than him; his interviews were tinged w/ too much believable venom. (Rationally, I was on Kenny's side here, but it was off from what fans typically got during that era from the competitors. ) Also, that shoulder G1 '18 vs Ishii & the post-match... evidence of petulance. 2) He's selfish - No matter how the history between Omega/NJPW plays out, Omega chose opportunity over brand-loyalty. Omega knew that if he were to leave, he would/should lose to his contemporary and brand figurehead, Okada. NJPW took him from DDT, the fringes, and gave him opportunities no gaikokojin were ever given. Kenny's talent/his engine & the tradition and name that is NJPW built his brand, but Kenny abruptly left that company implanting the impression that he used Japan for greener pastures elsewhere. Now, if given the same opportunity, I cannot say I would not do the same exact thing. Circumstances can and have been discussed, but to me these are facts, and in traditional Japanese mores, he was disrespectful. 3) He's juvenile - I don't mean 'Being the Elite' of which I'm mostly a fan (prefer 'baby back ribs' to the Scott Colton sketches, ) but rather his facials and spirit . Sometimes it's in the deepest of waters, sometimes the most shallow, but then, watching Omega's face is akin to watching a too spaztic junior high schooler tearing at his video joystick as he attempts to evade pain-death-etc, It's silly, exaggerated and geeky, not a man. In addition, oddly, Kenny sometimes isn't as good with portraying soul in the squared circle as he is on podcasts, etc. He often comes-off as someone performing a a stylized role he has in mind for himself. It's thoughtful and full-bodied, but not really his emotional essence. Classically, is he in-ring as strong of a babyface as Tanahashi, or was he as detestable as heel Jay White (though after his very-warm sendoff Dominion '16, I still don't know why JW became such a heel... it's cool he is, but why? ) Notwithstanding my criticisms, the wrestling world is much better with Kenny Omega and his array of incredible matches, that I memorably first experienced live at Koukigan against Kai for the AJPW Jr title, than without, though I don't really like his booking of the women's division, unless he was a guiding force in turning the physically undependable, but wily and sassy, Dr. BB heel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: lehaimkhwrote on 22.07.2020:[10.0] "When Kenny first entered Bullet Club, I didn't understand his character because of his eccentric play-acting, but I never denied his ringside ability and charisma. After a while, I recognize his creativity. This is one of the best employees in the history of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Hypocrisywrote on 18.07.2020:[8.0] "Kenny Omega ist für mich schwer zu bewerten. Omega war schon um die 2010er Jahre in Ring of Honor irgendwie anders. Nirmalerweise hilft das im Wrestling ja weiter aber über ein gewisses Standing kam er dort nie hinaus und das m. E. damals auch zurecht. Bei New Japan ist er zum absoluten Star geworden gesehen davon habe ich mangels Zeit fast nichts von. Bei AEW wrestlet er irgendwie zumeist mit angezogener Handbremse.... Hin und wieder jedoch lässt er sein riesiges Potential aufblitzen.... Ich wünsche mir einen run dort als Champion... Charisma jedoch hat man oder eben nicht. Lernen kann man das nicht und abseits des Rings ist er für mich halt wenig interessant."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Kid Rockwrote on 08.07.2020:[7.0] "Kenny Omega ist für mich schwer zu bewerten: Auf der einen Seite ist er ein zweifellos fähiger, hart arbeitender und talentierter Worker, dessen Matches so gut wie nie langweilig, sondern sehr athletisch, explosiv und unterhaltsam zu betrachten sind. Mit den richtigen Gegnern (Okada, Jericho, Tanahashi) kann er auch psychologisch anspruchsvolle und durchaus "epische" Ringschlachten abliefern und sein Moveset ist ebenso interessant wie spektakulär. Auf der anderen Seite finde ich ihn als Charakter und Gimmick schwer zu greifen. Ich weiß nur, dass Omega eine Art exzentrischen, japanophilen und nerdigen Geek darstellen soll, aber das ist sehr oft mein Problem mit seiner Persönlichkeit: Er wirkt einfach ZU nerdig, ZU aufgesetzt und ZU sehr Geek, als dass ich ihn als "echte" Wrestling-Persönlichkeit ernst nehmen könnte. Dazu kommen seine oftmals viel zu übertriebenen Gesten und Mannerismen, wie die albernen Gesichtsausdrücke, das Mit-dem-Finger-Zeigen auf den Gegner, die allgemeine Zappeligkeit und das Rumgehüpfe während seinen Matches..... Omega ist mir einfach zu sehr Schein-als-Sein, dazu kommt, wie gesagt, die fehlende Persönlichkeit und damit die Nicht-Vorhandene emotionale Involvierung während seiner Kämpfe... Das macht für mich auch den Unterschied zwischen einem Kenny Omega und wahre Größen des Sports aus Vergangenheit und Gegenwart, wie bspw. Eddie Guerrero, Mick Foley, CM Punk, Daniel Bryan oder AJ Styles aus... deren Charaktere waren/sind viel ausdefinierter- und greifbarer, weswegen ich auch während ihrer Matches ehrlich mitfiebern kann/konnte. Bei Omega, trotz seiner wahnsinnigen In-Ring-Skills und seiner Athletik, fehlt mir einfach diese emotionale Verbindung und diese Authentizität (warum sieht man ihn bspw. so gut wie nie Promos halten, die seinen Charakter aufbauen könnten? .... mangelnde Skills? ) und aus diesem Grund käme ich auch nicht auf die Idee ihn als besten Wrestler der Welt zu bezeichnen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ShooterMcShootwrote on 02.06.2020:[7.0] "Omega was great in New Japan, but since then, he's declined in my estimation. His main event match with Moxley at Full Gear was overbooked in a bad way, similar to the worst things that ECW would do. Also, if he's the one responsible for the AEW women's division (by far the weakest link in AEW), then his booking/agent work would earn him a 3 at best. He's still very talented in the ring when he's not phoning it in or hamming it up with all the finger pointing and silly faces, but the more he indulges in that kind of stuff, I find the less I like his work. Seems to need a very steady hand to reign in his self-indulgent tendencies."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: nettcitywrote on 17.05.2020:[10.0] "He is the guy who got me back into wrestling again. His matches with Okada live up to the hype. I was not bored even in the hour long matches. His mic skills are only above average, but his charisma, look, past characters like the cleaner and ring skills are Elite. His long term story with Ibushi is incredible. He's been pretty good in AEW. The match with Hangman against the Young Bucks was great. He's really helped Page get over. I am waiting for his big run, either as a face or comic book heel it kick in. He is a top 3 active wrestler in the world when he's on his game."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: VillainClubwrote on 12.05.2020:[6.0] "Vor zwei Jahren hätte ich ihm wohl noch 9 Punkte geben. Aber seit seinem IWGP Heavyweight Titel gewin, hab ich mich an ihm satt gesehen. Er baut mir in vielen fällen zu viel Comedy ein, allgemein nimmt er für meinen Geschmack viele Sachen nicht ernst genug. Seine Komische Gear zu den letzten beiden WK sind besonders zu den großen Matches unnötig. Edit: Seine Matches sind, im Gegensatz zu den wirklich Fantastischen Wrestlern, beim zweiten oder dritten mal schauen oftmals deutlich schwächer. Oftmals wirken seine Matches zu gewollt "Episch" und aufgesetzt."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Wrestlefan20wrote on 11.05.2020:[8.0] "Omega is a great wrestler. Don't find him that good on the mic. Has some natural charisma. Him wanting to have a competitive match with everybody, including jobbers detracts some of his appeal."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: King of Strong Stylewrote on 09.05.2020:[10.0] "Kenny Omega ist aktuell einer der Besten Wrestler der Welt und gehört aktuell in die Top 5 der besten Wrestler und auch Gesamtpakete da er auch am Mic stark ist und Charisma hat. Absolut verdiente 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BastitheBrainwrote on 21.04.2020:[6.0] "Die Zeit bei AEW hat viel kaputt gemacht. Dazu noch die Witzmatches gegen Puppen und Kinder und so weiter. Nicht mein Fall, es geht ja nur um subjektive Einschätzungen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: rschmandt22wrote on 01.04.2020:[10.0] "One of the best wrestlers in the world. Kenny can have a good technical match, a good cruiserweight style match and a good match regardless of the nationality of his opponent. He is great at singles and tag wrestling. I think hes a future AEW World Champ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Sabu316wrote on 26.03.2020:[10.0] "Vor 12 Jahren hatte ich ihm 8 Punkte gegeben. Heute gehen leider nicht mehr als die bekannten 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Ma Stump Pullerwrote on 05.03.2020:[9.0] "Omega is, simply put, a bout machine. He's a guy who can put on high quality, high stakes matches almost every night and keep going beyond that. His high flying offence mixed with unorthodox strikes makes him quite unique. Granted, when he started off he was basically a very goofy comedy character (hell, the reason he managed to break into the Japanese scene was literally a skit he filmed) and while he had potential, he was never really pushed beyond what he could do, but eventually started to show his talent by holding the IWGP Junior Heavyweight Championship and moving up from there. I'd say his years in New Japan are his peak in terms of how consistently brilliant his matches were. It seems that in AEW they haven't quite pulled the trigger with Omega yet, but he's still having solid matches as a tag team with Hangman. Hopefully he'll eventually get to really show his talent in single competition."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Icewrote on 26.01.2020:[5.0] "I feel like he's overrated a lot, as he knows how to do a lot of spots and is very more is more as a wrestler and doesn't really respect the foundation of psychology. Is currently outshined by virtually every other main eventer in AEW."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Bobbythreesixteenwrote on 06.01.2020:[8.0] "Bei New Japan war er für mich der einzige auf Augenhöhe mit Okada. Seit er bei AEW ist gefällt er mir immer noch sehr gut, in meinen Augen jedoch hat er etwas abgebaut. Dennoch ein einzigartiger Athlet und einer der besten der Welt. Ich bin sehr gespannt was die Zukunft mit ihm noch bringen wird und es ist nur noch eine Frage der Zeit bis er auch bei AEW der Main Eventer wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Carrot Junkiewrote on 05.01.2020:[10.0] "The epitome of modern pro wrestling as a counter culture.  Omega doesn't just venture outside the norm in order to deliver the best he possibly can, he dives headlong out of it while laughing maniacally.  Whether it be naming his moves after fighting game moves, glibly calling out WWE, swiping people with brooms, or doing one-legged moonsaults after his leg has been worked over, , he's completely 100% committed to his strange, off-beat character both in and out of the ring.  Some people find him off-putting... and I'm glad they do, because it's about time wrestling inspired real emotions in people.  Combine this with an incredible amount of raw athletic ability and Omega's maybe the most exciting wrestler outside of WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Matt Mackswrote on 05.01.2020:[10.0] "Currently my favourite wrestler in the world. While he always reminds me of Brian Pillman (probably because of the hair), there is no doubt that Kenny Omega is in a league of a very select few pro wrestlers whose matches I am looking forward to every single time. Sadly I missed his rise to stardom and his run on top of the world in New Japan, but for me this only means that I can catch up on half a decade of awesome matches with him against some of the other greatest wrestlers of this era. His run in AEW so far has been a little bit underwhelming, because other wrestlers were thrust into the spotlight, but I am hopeful that 2020 is the year of Omega in North American wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AndoCommandowrote on 03.12.2019:[8.0] "Easily a 10 at his best, but the problem is he needs someone who's able to make his the best opponent and Best Bout Machine, whether it's a hybrid like Okada, a master of pacing and psychology like Naito, or one tough mother***er like Ishii"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jackleonewrote on 29.11.2019:[10.0] "I respect Kenny Omega so much! I've seen him in some obscure indie match more than 10 years ago and I remember him for playing a videogamer gimmick and having a Dr. Wily Theme. It's great that even now that he is one of the best wrestlers in the world he still uses videogames music and parodies, because it shows that he is still the same guy but now he is at the top. His career in NJPW was amazing, I hope to see him having great matches in AEW because he is my favorite in their roster and he deserves a lot of good feuds. Well, I don't think he is overrated at all, he had many years to reach the IWGP Championship and he started from the beginning. Omega vs Okada series is legendary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: alewrote on 07.11.2019:[10.0] "Ganz ehrlich der Kerl is doch genial. Unglaublich wie der einen unterhalten kann, dazu noch richtig stark im Ring eigentlich das 'total package' sowas wird man leider nie im Main Stream der Nordamerikanischen Ligen sehen, vermute ich leider :( Edit: Tja wie man sich doch täuschen kann. :D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Hippykillerzwrote on 26.10.2019:[8.0] "First saw omega back in 2008 and has improved greatly since then. His work in NJPW is untouchable and his series with okada will go down in history as one of the best ever. That being said, I can't buy him as a guy to carry a company. It might be his look, his promos, his gimmick, something doesn't click for me."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Same Old Same Oldwrote on 13.10.2019:[8.0] "Omega's work rate is phenomenal, he has charisma and can mix things up in the ring... HOWEVER, something isn't quite clicking for me with him now in the States as art of AEW. I don't know if his style or mannerisms don't automatically translate as well to the west, too much reliance of pop culture references or that the calibre of opponents so far has been a step down, which if that is the case would make the likes of Okada, Ibushi, Jericho and Ishii better workers who carried him to a better performance that true greats shouldn't need having done to them. With that said, I cannot deny his time with NJPW, effectively helping bring more western audiences to the promotions, although my favourite run for him was actually his Junior run, which balanced high-pace and comedy used quite effectively."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: laldilawrote on 13.10.2019:[5.0] "Vastly prefer comedy Omega to the best bout stuff, which really soured me on him as a performer. There's no doubt he's a talented athlete, but its hard for me to get excited for his matches. I'm hoping his brief return to DDT will be a good fun comedy match, especially since he's getting in there with one of the funniest wrestlers in the world Antonio Honda."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Iceqwrote on 08.10.2019:[10.0] "Ich freue mich für Omega, dass er endlich in Amerika regelmäßig arbeitet doch muss ich ehrlicherweise gestehen, dass er für mich in Japan besser funktioniert als sonst wo. Er ist natürlich noch immer Weltklasse doch ist der Omega aus 2016-2017 kaum wiederzuerkennen. Für mich kann er super Promos halten, geniale Matches zeigen und der einzige Kritikpunkt den ich habe ist sein manchmal zu over-the-top mäßiges Selling. Alles in allem einer der besten Wrestler der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Leonwrote on 15.09.2019:[10.0] "Neben Ibushi und Okada für mich der beste Wrestler der Welt, vielleicht aller Zeiten. Seine Matchserie mit Okada zweifellos eine der besten die es je gab. Ein absoluter Gott was Storytelling betrifft. Kann ein 5 Star Match mit absolut jedem machen. Mit dem One winged Angel hat er wahrscheinlich den glaubwürdigsten Finishing Move heutzutage. Über seine Inring Skills brauchen wir uns nicht zu unterhalten, der Mann kann alles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Coop DEtatwrote on 10.09.2019:[8.0] "Kenny Omega is overall pretty good in the ring, but not nearly as good as many label him as. Sure, he looks good when he's powerbombing 150 lb Asian man, but his work isn't as good when he's up against someone that's his size or bigger."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheV2wrote on 04.09.2019:[9.0] "Omega is surely one of the best wrestlers in today's world. Very precise and establishes a great chemistry with his opponents. His character work is great, but not at the very top in my opinion, because in my opinion it's quite unfair to compare only today's end-results of free, more independent wrestlers and by the promotion very limited wrestlers. He's very variable and this makes him an ace for every long-term wresting business. His move-set is delightful. The V-Trigger or even more precise the way he treats the V-Trigger makes it one of the best signature moves. It's simply a very precise damage dealer which combines with the rest damage. It kinda gives an early ROH feeling that winning depends more on great strategy rather than hitting the finisher as a game-ending move and makes people ask "Why didn't Big Show knock him out before? "."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: taabr2wrote on 31.08.2019:[10.0] "Kenny Omega is the best in the world today in the big match style with big moves, nearfalls and drama. One of the most explosive wrestlers there is, Kenny Omega wrestles at like 180 mph and yet amazingly is able to sustain that pacing for 30 minutes easily, he is the perfect wrestler for this generation who has become more and more desensitized to wrestling moves. Omega is probably the most well known wrestler and biggest draw outside of WWE and he will most likely be the face of the new AEW promotion. The big explosion of NJPW in the west was in large part because of Kenny Omega's run as the top gaijin in the company. Kenny Omega has already reached legend status in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: redekkerwrote on 15.08.2019:[9.0] "A spectacular wrestler who I feel is slightly overrated. Fantastic athleticism and strikes, most of his stuff looks really high impact, he is also entertaining and funny when not completely playing up the gamer stuff.  Others have put it more succinctly than I can, I don't like the "V-Trigger spam" and it feels like he gets his "usual spots" in every match."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KyleEnjoysWrestlingwrote on 01.08.2019:[9.0] "I don't think he's God's gift to wrestling that so many others see him as today, but I do think Kenny Omega is very great. He picked up the pieces of the Bullet Club when AJ departed & brought that faction to another level. His story with Kota is probably my favorite thing he's been a part of. His stuff under the DDT umbrella certainly was on the silly side, but it's forgivable. I think his matches against Okada are a bit overrated & often felt like they were trying too hard to be the finisher-counter-kickout fest that is Meltzer's wet dream. I think that style of performing leave a lot to be desired. AEW running with him as a top guy is a good place for him & I think he needs to win that company's top title soon because I think he's a better option than Jericho or Page. He's been running as a face for a very long time, but I prefer him as a heel & I'd like to see him revert to that role in AEW sooner than later."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: andrewmossighiwrote on 20.07.2019:[10.0] "A once-in-a-generation kind of wrestler who could make a case as the greatest in-ring performer of all time. Damn right I said it! There is a reason why he receives high praise from the Dave Meltzers and the Stone Cold Steve Austins of the world. Kenny Omega has inspired wrestlers coming up today his approach to wrestling. In the ring, he utilizes jaw-dropping athleticism combined with Canadian-style mat wrestling/technique, Lucha-inspired high flying, and Japanese-style hard strikes. Also, his promo ability and charisma is off the charts. As a gaijin, was given a rare opportunity by New Japan to be one of the three musketeers for the brand alongside Okada and Naito, and he used that opportunity to not only catapult himself to the IGWP Championship, but also become the most influential wrestler outside the WWE. The only criticism I have against Kenny would be the comfort in which he has received in his booking. Think about it, if he had decided to join WWE and was put in the same position as someone like Seth Rollins is in a program with an underwhelming wrestler like Baron Corbin or a part-timer like Brock Lesnar, could he deliver results while fulfilling objectives as instructed from an authority figure like Vince McMahon? Yes, he is an extraordinary talent who delivered alongside the best wrestlers anywhere, but he usually has the creative control with his booking or matches. From my perspective, it's not only the matches against the great wrestlers but also the matches against the greener or underwhelming wrestlers in tougher booking situations that make a wrestler great. Other than that, I hope we see him in a Wrestling Classic against Seth Rollins somewhere down the road."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "He is kind of a special case. A solid, entertaining guy who was either inexistent or overshadowed by Kota Ibushi during most of his career. It's only when he moved up in NJPW's heavyweight division that he began to show a true top star potential and became bigger than Ibushi. I don't know if he really can carry a company and be THE top star, it will be interesting to follow what he can do with AEW. For now I'm not convinced at all, he doesn't feel like a big deal anymore but some of that is probably due to the fact he has to build a new company. All I know is that in an environment where his potential was the most exploited, where he was in a really exciting roster, he was absolutely one of the best in his own style. An incredible performer with a deep desire to try to have really different matches on the big occasions. (wich is his greatest quality in my opinion) His selling isn't always good and sometimes he has goofy over the top facial expressions but he still improved and dropped a lot of his otaku comedy bullshit. Doesn't mean he stopped but he calmed down on that."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Jeje05wrote on 29.06.2019:[10.0] "Der beste Wrestler der welt. Was er im Ring leistet sieht man bei keinem zweiten. Jedoch sind seine mich Skills nur ok"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: llqqbbwrote on 28.05.2019:[7.0] "Was ranked a 10, but after double or nothing I can see the real Kenny Omega that just uses high spots with no real story telling or adaptability, during Kenny and Chris' match all I could see was how great Jericho is and how poor Omega is when trying to build. Through new Japan Kenny Omega can be a main event 10/10 but trying to build a company this dude's ability is a mid card champion hoping to be main event. Doesn't care about making anyone else look good as long as he looks ultimate."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: My Bloody Doobwrote on 20.05.2019:[10.0] "The level of being a fan of Kenny Omega ranges from worst wrestler ever to all time GOAT. In many ways I can see why you wouldn't like him, and yeah I would say he has some obvious flaws. His character work can be melodramatic, his selling can be spotty, and is more of a "spot" guy sure. But I still can't deny that he is one of my current favorite wrestlers in wrestling. His best quality that I love in wrestling is "energy" if I had to use a word. As soon as he steps into the ring he is constantly attracting your attention for better or for worse. From his career in DDT to New Japan, whenever he is in the ring you knew you were going to see something unique at the least. Even back to his PWG and ROH days you could tell there was something about this dude that you couldn't ignore. You can either take him or leave him, and right now he ticks all my boxes, so I'll continue to tune into him wherever he chooses to wrestle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Cow Manwrote on 19.05.2019:[8.0] "Honestly, I feel that Kenny Omega is slightly overrated. Good in-ring work, but he relies to much on "spots". His selling can also seriously lack, too. But he can talk, and can work great as both a heel or face. Overall, an 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: PuroresuLoverwrote on 13.05.2019:[6.0] "Meh, what can I say? He's just boring right now, he was very cool in the beginning, but now, he's just the same old Kenny Omega. He doesn't take wrestling seriously and that's a shame."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Garrettwrote on 07.05.2019:[10.0] "Around 2014 I lost interest in wrestling, all I watched was WWE and TNA so I got sick of all their shit and lost my passion for it. It wasn't till a few years later when a coworker told me "you have to check this guy out" watching his matches not only got me into New Japan, but it reminded me why I loved wrestling so much. His move set, his charisma, his mic skills, Kenny is the complete package and whats amazing is that he got so good that he became the biggest thing in wrestling and he didn't even need WWE to help him. Kenny opened my eyes to show me that there is so much better wrestling out there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: blackx18wrote on 02.05.2019:[10.0] "Micwork : (9/10) Wrestling : (10/10) Gimmick : (9/10) Charisma : (10/10) (38/40) = 9, 5. Meinermeinung nach auf einem Level mit Okada und somit teilen sich diese beiden den Platz als Bester Wrestler momentan. Goodbye, and Goodnight. Baam!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: The Sick Lebowskiwrote on 26.04.2019:[10.0] "In nahezu allen Situationen unterhaltsam und im Ring eine absolute Maschine. Wäre er jetzt nicht einer der Mit-Verantwortlichen für AEW hätte ich fast gesagt, dass er ein Kandidat für WWE wäre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "He really has it all. The charisma, the ring skill and he feels like a star. His one winged angel finisher has been booked great. Kenny has done awesome things and the fact that he managed to make an match with an broom an enjoyable watch speaks for itself. Going to japan has really made him into one of wrestling biggest current stars."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Matuwrote on 07.04.2019:[4.0] "Kenny Omega is in my opinion hugely overrated and his style is a big part of the problem I have with modern wrestling. The style he wrestles is goofy, spot orientated and the "storytelling" is contrived and lacks all believability and subtleness. He has had a few good matches but mostly with opponents who are far better at piecing together a match than what he is. Kenny Omega is still highly athletic capable of things not many are able to do and has made himself a huge star in the industry so I have to give him points and credit for that even though I find him to be pretty bad as a wrestler."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AJStylopzwrote on 06.04.2019:[9.0] "Kenny Omega is truly a mystery. He is the best wrestler in the world, I mean he is the whole package. Awesome talker, awesome in ring work, great athleticism, but sometimes he sells like shit and his facial expressions rarely are on point. I find him to be a very generic babyface as he lacks that fire. I think he works much better as a heel but overall he is fantastic. He's had some incredible bouts, some rlly overrated ones but overall a fantastic wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: zephyrwrote on 19.03.2019:[9.0] "There's a lot of positives to Kenny Omega. He can talk, he has charisma, and man, he can WRESTLE. At least he can if he cares. If he feels like the match he's in isn't that important he'll just come out wearing his merch and give you a 6/10 performance with nothing memorable. But whatever, he's had some of the best matches of all time so you really can't give him a super low rating."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: fernando27wrote on 15.03.2019:[10.0] "Sin dudar el mejor wrestler que vi por todo su capacidad su versatilidad su angel su desempeño no guardandose nada , esta echo en y para japon ... si solo japon puede permitirnos ver lo mejor de un luchador como este , la tierra del PURORESU talvez donde se puede ver la mejor expresion del wrestling alli dio sus epicos combates que son clasicos . Ademas se gana el respeto y hara mas grande su leyenda haber rechazado a wwe eso sera iconico ahora solo queda seguir deleitandonos de esta leyenda viviente "THE CLEANER " KENNY OMEGA"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: LIJ369wrote on 19.02.2019:[10.0] "One of the best to ever do it. Athleticism, speed, strength everything you want he? s got. Also one of the smartest and in depth thinking wrestlers in the world as well"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheMagneticDragonwrote on 02.02.2019:[10.0] "Simply one of the greatest wrestlers to ever lace up a pair of boots and is still going strong even as he is about to reach his prime."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Kyle Fisherwrote on 31.01.2019:[6.0] "Kenny Omega is extremely athletically superior to many of his peers. However, Kenny lacks any sense of a character and his goofy expressions damage his in-ring work, which while impressive from an athletic perspective does not tell a story."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Saphirwrote on 30.01.2019:[10.0] "Kenny Omega hat eine sehr gute Ausstrahlung und kann im Ring so gut wie alles, was ein Top Wrestler braucht. Vielleicht kickt er ja mal Lesnar o. ä. gepushte Übergrößen mal in gewohnter Manier ins Genick. Bei Omega sind alle Siege und Niederlagen, die ich gesehen habe überzeugend gewesen und bei ihm ist einfach alles möglich, unterhaltsam ist er auch. 10/10 Great Champion, Great Worker, Great Entertainer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: LunarGrey1wrote on 29.01.2019:[10.0] "One of the greatest wrestlers of all time, devastating finisher (The one winged angel) and devastating V-Trigger , he's changing the face of professional wrestling as we know it! Goodbye and goodnight *BANG*!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JEK 1991wrote on 29.01.2019:[10.0] "Excellent wrestler. He is the NJPW champion and is one of the best wrestlers of this modern day. Has so many signature moves. impressive wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TylerWhitewrote on 13.01.2019:[10.0] "Der vielleicht beste Wrestler aktuell überhaupt. Was er in den letzten Jahren abgeliefert hat ist einfach unglaublich. Seine Matchserie mit Okada steht auf einer ganz anderen Stufe als alle anderen Matchserien jemals und daneben hat er auch so viele großartige Matches geworkt. Er schafft es einfach immer Big Time Feeling zu kreieren, weil er einfach unglaublich charismatisch ist. Auch am Mic ist er großartig und hält großartige Promos, sogar auf japanisch. Im Ring ist er unbestritten einer der größten Wrestler aller Zeiten, der natürlich für NJPW wie gemacht ist und dort einfach welche der besten Matche überhaupt worken konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Cibswrote on 01.01.2019:[9.0] "One of the best wrestlers in the world without a doubt. Some of his matches are a bit overrated but in general he is an incredible wrestler who has evolved over the years and that's always good.  I do not give him 10 because he needs to solve a particular problem: make the first 20/25 minutes of his long matches not so boring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SuperJrFanBoywrote on 17.11.2018:[6.0] "Now, kenny Omega is a great wrestler, and that is undeniable. However, I find him to be extremely overrated. He is great, but not one of the all-time or even current greats. Kenny's Modus Operandi for big matches make them quite repetitive sometimes. He also has a bad knack for overdoing his spots and forgetting the storytelling or even forgetting to sell his knees doing dives and big strikes even when his opponents spend minutes with limb work. Speaking of the knee strikes, he also needs a new "transitional" move because as great as the V-Trigger looks and sounds it is extremely overused in every match and that takes away from the move's "mystique", for a lack of a better term. Placing him above guys like Marufuji, Miyahara, Sugiura, Okada, et al is a mistake. Omega has, however, all the makings of being an all time great and some of his matches are a testament to that. He does need to find something to make him stand out because, right now, as I see it, he is just a good ring worker with good spots, but who normally cannot make them work together in a cohesive way. When compared to more complete guys like Okada or specialists like Tanahashi, he is far from being New Japan's #1 ring worker. Not to mention that I see him as having a bad run with the IWGP Heavyweight Championship mostly due to having Cody meddling with the main events and overall treating the title as an afterthought, altought it is understandable that this is not entirely his fault."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KINGwrote on 09.11.2018:[10.0] "What can you say to Kenny Omega? You could see his talent already when he was a top guy in PWG and DDT, he was destined for greatness, but quite frankly I never expected him to get so big, so huge. He debuted in NJPW as the second guy of the Golden Lovers, he was taking the pinfalls for Ibushi and he was at Kota's side when the Golden Star was dominating the Junior division. However, the company saw thur his talent and after Balor left he was given a chance as the Bullet Club's Junior Heavyweight: he dominated the division for the whole 2015 and his feud with Kushida was great, Kenny is one helluva patient man, he left the WWE's developmental and made a name for himself. A real wrestling lover, he saw Kota's greatness and working with Ibushi brought him to Japan, where magic happened. As soon as AJ left as well, NJPW just pushed Kenny, who had a solid IC Title run and won the G1 becoming a top guy in about 5 months, the rest is history, he's the best wrestler in the world right now, capable to be a face and a heel (althrough born to be a babyface but solidified thru his heel run, like the real legends), he's constantly putting on amazing matches and he became the biggest non WWE draw since the good WCW days."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MogGuywrote on 06.11.2018:[10.0] "I'm sensing by other comments some bandwagon jumping going on here. Let me bring some honesty and bluntness into this. Kenny Omega was nothing before Japan. Nothing. Anyone who claims otherwise is either lying or is not a very good pro wrestling critic. When one of your big breaks in pro wrestling is a viral video of you wrestling a young girl who was like 12 year old or something at the time, that's not cool and unique, its weird and dangerous and she could have gotten seriously hurt. What 12 year old can learn how to correctly take a bump, let alone get an explanation that pro wrestlings not real? Come on now. Next, Kenny and Kota meet in DDT by pure chance. Had they not met, Kenny may very well have been rotting away in DDT to this day because of their tag team not taking off. So Kenny eventually gets to NJPW and gets lucky that he is selected to join Bullet Club, and the rest is history. This mans entire career has been about fate, luck and at one point being a dangerous worker (the 12 year old girl), yet the IWC bows down to him like he is the King of Gaijins or something. This man is not special, this man got lucky long ago, and with that luck he has gained notoriety and has been given tips and tricks by all the Japanese greats to improve his in-ring ability over the years. In closing, Omega is a lucky hack who was never supposed to amount to anything in professional wrestling. That's my view and this is the moment where I reveal that I meant none of what I just said (SWERVE! ) and Kenny Omega is actually one of the greatest professional wrestlers of the modern age and will no doubt go down as one of the greatest of all time when all is said and done. Thanks for taking time out of your day to read and I hope you got a few laughs out of the material I just provided during my unhealthy and completely not recommended spare time. Have a great day!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: RatingsMachinewrote on 15.10.2018:[9.0] "Kenny Omega seems to engender a passionate response from people, whether it's a positive or negative response. Kenny can obviously have some incredible matches, and to suggest it's all or mostly down to the other guy is absurd. Yet Kenny is not without his flaws; he seems to have no sense of excess, of knowing that he's going overboard with certain moves or spots. And his interviews are Rock-like in that they almost always seem so cornball, like they're a caricature of a wrestling interview. Kenny Omega is great, yes, but he's not quite the world class wrestler that a lot of people think he is."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Aurtletheturtlewrote on 15.10.2018:[10.0] "The once comedy character of Kenny Omega was never thought to reach the heights that he has today. But in the last few years Omega has managed to transform himself from a undercard comedy wrestler to the pinnacle of professional wrestling today. Using some of the most innovative and brutal offence ever before seen, Omega has built an empire for wrestling outside of the WWE and brought new eyes to companies all around the world. Officially ascending to superstardom off the back of his legendary G1 Climax victory and subsequent Wrestle Kingdom 11 challenge against Kazuchika Okada, Omega has transformed into one of the most popular and beloved wrestlers on the planet and a true defined "draw" by selling out any show he is announced on near instantly. Kenny Omega will continue to grow regardless of the stage he is on and regardless of what his naysayers try and throw against him. The Cleaner has made way for the Best Bout Machine and a new era of Professional Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: richeyedwardswrote on 11.10.2018:[0.0] "He is really not very good. I will start off with the good stuff, he is one hell of an athlete able to go at very high pace for long periods of time, and that is where the positives end. Everything he does is at a very high pace and he never slows down to give anything room to breathe. His big matches consist of him just throwing out moves when he is not being controlled by a much better talent such as tanahashi. Nothing he does tells me that he is in a wrestling match. It is all just a procession of stuff that means nothing. It can be one hell of a show or spectacle but not ever a great match usually it ends up being boring due to the matches being endless dull crap. Like a highly practiced gymnastics or dance routine not a wrestling match. His comedy is really goofy and works but only when he is not trying to be a top guy at the same time. To me his ceiling is as a undercard comedy wrestler and his progression up the cards is depressing as NJPW moves from top guys of tana, nagata to the dross of omega and okada who are much lower end talents. But people seem to love him and i cannot understand it the same way i cannot understand why people love Shawn Michaels or Kurt angle so much. Probably the worst wrestler i have ever seen along with mid 80s Swede Hanson"
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MaskedGaijinwrote on 08.10.2018:[8.0] "Ich fand Omega noch vor kurzem eher langweilig... Wie ich mich doch getäuscht habe! Momentan einer der besten der Welt. Egal in welcher Liga. Einfach Top der "Cleaner"."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jamzell00wrote on 18.09.2018:[6.0] "He's fantastic when matched with guys who can layout matches well. His stuff with Naito, Ishii, Tana etc are incredible matches. When he's expected to lead the match however it gets bad. Kenny excels at sprints and when he isn't working them he looks like shit. I want to like him a lot but the guy is a geek in and out of the ring. He can have one of my fav series of matches ever with Naito then put on dogshit performances with Goto, Cody, Page, and even his recent Ishii title match"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Tomlou12wrote on 17.09.2018:[9.0] "One of the best wrestlers in the world today. He always puts on exciting matches each time out, His feud with Okada was excellent, full of emotion and it had me invested. I am excited to see what he will do in years to come."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Oliver95xwrote on 12.09.2018:[10.0] "Einer der besten Wrestler aller Zeiten wie ich finde. Er hat Charisma und im Ring weiß er zu überzeugen. Ein gutes Move Set und er kann mit jedem ein gutes Match hinlegen. Seine Kniestöße sehen einfach nur unglaublich aus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JessePinkman1998wrote on 02.09.2018:[10.0] "Für mich zurzeit der beste Wrestler überhaupt. Jedes Match ist stark. Er hat einen so Variablen und spannenden In-Ring Stil. Und seine Matches gegen Okada Vorallem Nr. 4 gehören zu den besten Matches die ich je gesehen habe. Und er hat ein unfassbares Charisma. Ganz klar 10 von 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Robert Taylorwrote on 29.08.2018:[10.0] "Kenny Omega hat schon ein tolle Geschichte und Entwicklung hinter sich. Gehört aktuell zur absoluten Weltspitze und hat sich vom whacky-Wrestler, der Spots wie "Stop" oder den "Hadouken" zeigte zu einem absolut erntzunehmenden Wrestler entwickelt, der völlig verdient an der Spitze von New Japan angekommen ist. Ich habe ihne das erste Mal bei ROH im Jahr 2008 gesehen und hätte ihm diese Entwicklung damals nicht unbedingt zugetraut. Klar, er war damals schon talentiert und hatte auch gute Matches bei PWG aber er war halt auch ziemlich Indy. Habe ihn dann während seiner Zeit bei DDT leider aus den Augen verloren und erst wieder bei All Japan gesehen, wo er einen echt starken Run als Jr. Heavyweight Champion hingelegt hat. Auch in den Anfängen als Jr. bei New Japan konnte ich noch nicht erahnen, wohin es mal gehen wird aber man merkte dort schon, dass er sich entwickelt hat. Hat mit seinem Sieg im G1, den ich damals fieberhaft verfolgt habe, vermutlich jedem die Augen geöffnet, wie gut er überhaupt ist. Hut ab Kenny, eine tolle Geschichte und ein verdienter Platz an der Spitze des Wrestlings!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SED12345wrote on 23.07.2018:[10.0] "He? s just the best wrestler today. This man is a real wrestling god that will be treasured forever. His promos are incredible, especially when they are immediately after a 5 Star match. This man has had 10 five star (or above) matches from Dave Meltzer from the past two years. 2! He? s had classics with Kazuchika Okada, The Young Bucks, Chris Jericho, Tetsuya Naito, Juice Robinson, Tomohiro Ishii, and plenty more. He is the current IWGP World Heavyweight Champion with one of the best stories going on today with the Bullet Club Civil War. He? s also really good at Street Fighter! What a legend! And here is the scariest part of all: He? s only just begun. Goodbye and goodnight; bang!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: sign squadwrote on 21.07.2018:[10.0] "Oh wie schön, dass er nicht mehr bei DDT mit Puppen und Leitern und irgendwelchen Dödelgimmicks arbeiten muss sondern Geld verdient mit ehrlicher, harter und herausragender Arbeit. Manchmal ist es erstaunlich, was Fans so antreibt. Aber egal, ich lass mich schon wieder von ehemaligen Teammitglieder triggern. Geiler Macker einfach der Typ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Headlockwrote on 21.07.2018:[4.0] "Kenny Omega ist besser als sein Tag Team Partner, vor NJ in DDT Hätte er 9 Punkte bekommen, In All Japan wäre es ne glatte 10! Selbst als Junior in NJ wären es 7 aber wenn er als Heavyweight seine Komedie mit der Elite zeigt, kommt mir das kotzen, um es mal Diplomatisch auszudrücken, ich bin kein Fan von T-Shirt Omega und das ist leider der Omega der öfter auftritt als der ernste Omega und selbst Big Match Kenny ist ermüdent. Sein Mic Work ist auch absolut grässlich. Ich geh ich auf 4 Punkte, da ich einfach keinen Spaß mehr an Omega hab"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Cameron621129wrote on 18.07.2018:[10.0] "One of the best in the world in ring. Unarguably a superstar wrestler who can do anything and is a great storyteller. Just look at the Okada fued."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Vylkhinwrote on 17.06.2018:[10.0] "The. single. best. wrestler. in. the. fucking. world. Charismatic, amazing in the ring, great mic skills both in japanese AND english, puts on classic over classic, he can do absolutely everything. This man is the definition of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jpmoore0416wrote on 16.06.2018:[10.0] "best wrestler/performer i've seen in the 30 years I've watched... Ric Flair and Okada are close but Omega has more Charisma than anybody, unreal athlete, great promo and ring psychology ... He can tell a story in the ring that creates emotion... Heel or Baby his versatility is what really sets him apart from the others... #14 on this list is an insult"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: memebigboiwrote on 15.06.2018:[10.0] "Best fucking wrestler in the world.  If you rate him below 9 I just assume you are cheeto eatin, mountain dew drinking fat fuck who is still crying about HBK vs Taker getting 4. 75 or watching your no name promotions with "excelent" matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Makai Clubwrote on 27.05.2018:[7.0] "Edit: My impression of Omega has completely changed over the past year. Maybe that's due to different tastes or Omega just getting worse but Omgea is getting less and less appealing to me by the day. His big matches for the most part of fine but Omega is often the most annoying parts of the match due to his awful facial expressions, along with little nuances that make him frustrated to watch. He tries way too hard to get an epic, so many big moves all the fucking time. The spamming of his V-Trigger, so much fake drama in his matches. It's frustrating at times because he isn't bad and can have great matches but he isn't consistent at those great performances."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: lew kazamawrote on 02.05.2018:[9.0] "Kenny Omega is a viciously entertaining worker with a fun moveset and bizarre, villainous persona. His English promos always communicate effectively to the Japanese crowds and he has proven himself to be one of the most consistent workers on the planet today."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: rjsbx11wrote on 11.02.2018:[10.0] "With some wrestlers, you truly have to watch them on a loop to fully appreciate them. Kenny Omega is one such wrestler. Omega is a perfect blend of silly, goofy, referential while also being having outstanding ring presence, his incredible wrestling ability and his undying love for Japanese culture or wrestling. Something about Omega compels you to pay attention to him, whether it's his unparalleled selling, his ability to build drama for a match or his character work --- Omega is a must-see wrestler.  While many clamor for a WWE run, he is one of those wrestlers whose impact and reach in the industry would do fine without the casual exposure of the WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Sebastian Vwrote on 06.01.2018:[10.0] "Es ist in meinen Augen unmöglich ihm keine 10 zu geben. Im Ring ganz klar 10/10. Kaum einer hat so viele so außergewöhnlich gute Matches in der Geschichte geworked wie er. Sauberkeit der Moves, Psychologie, Breite des Movesets, Finisher.. es stimmt einfach alles bei ihm. Ausstrahlung auch ganz klar 10/10. Er kann Reaktionen ziehen wie kaum ein zweiter. Micwork würde ich 9/10 sagen, da ich noch nicht so viele Promos von ihm gesehen habe ( weil das nun mal in Japan nicht so bedeutend ist wie anderswo) um ihm 10 Punkte zu geben, aber die die ich gesehen habe wie die nach dem G1 Final waren absolut klasse. Alles in Allem einfach der beste Wrestler, den es im Moment gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheLoudMouthwrote on 05.01.2018:[10.0] "Das aktuell heißeste Eisen im Wrestling-Business. Bei seinen Top-Leistungen wären alles andere als zehn Punkte tatsächlich pure Blasphemie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Rattlesnake3-16wrote on 21.12.2017:[10.0] "Kenny Omega is simply the most famous gaijin nowadays and he deserves it. His character is charismatic, talentious and a little bit enigmatic. Furthermore, his love and respect for Japanese culture (he speaks fluently Japanese), all the references he put on his moves and character show that he is very implicated, maybe more than other gaijin. His in ring is just incredible, mixing a lot a style and influence. He also gives very good promo in his career. So I hope he will continue his ascension and become the best"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: PrinceJrwrote on 30.11.2017:[10.0] "Sein Match gegen Kazuchika Okada bei Wrestle Kingdom 11 hat mich dazu gebracht mich mehr mit New Japan Pro Wrestling zu befassen. Ich kannte die Promotion zwar vorher schon, aber durch WWE Propaganda habe ich nur WWE geguckt. Dieses Match war wahrscheinlich eines der besten Dinge, die dem Wrestling widerfahren konnte, da ich es so empfinde, dass der Hype für New Japan so groß ist wie schon lange nicht mehr nach diesem Match. Meiner Meinung nach ist Kenny die Stütze, um international durchzubrechen. Überbewertet wird er sowieso nur von den Leuten genannt, die nix anderes außer Raw und SmackDown gucken und sich schon an den Dünnschiss, der ihnen jede Woche vorgesetzt wird, gewöhnt haben. Hoffentlich entscheidet sich Kenny weiterhin noch viele Jahre bei New Japan zu bleiben, wo er auch seinen Ansprüchen eines Topstars gerecht wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: benYowrote on 21.11.2017:[10.0] "Für mich ist K. Omega ein wahres Wunder an Wrestlingkunst. Jede seiner Aktion sitzt auf den Punkt und er transportiert dabei auch noch so viele Emotionen dass man formlich eingefangen wird von der Story im Ring. Seine Ausstrahlung rund um den Charakter K. Omega ist einfach unglaublich und wird auf der ganzen Welt geliebt. Ich bin mir sicher, dass er mit genügend Freiheiten jede Wrestling-Liga auf ein neues Niveau heben würde. Ich hoffe jedoch das er noch lange bei NJPW bleiben wird. Das einzige was ich noch mehr feiern würde, wäre ein Kampf K. Omega vs. AJ Styles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Toothless192wrote on 15.11.2017:[10.0] "He is the best wrestler in the business today. He also has three 6 star matches all of them taking place this year and another near 6 star match. The man is unstoppable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dragon Fighterwrote on 14.11.2017:[10.0] "A tremendous, fantastic overall performer today. I understand someone dislike him because he is sometimes goofy or does little too much comedy, but I like everything he is doing now. Great in ring work, very good psychology. On mic, he is also phenomenal as well, I love how he put over his opponents so much before or after the match. He is really special, can make anything around him look so important, feel like a big deal. A proven big draw with the western audience and Japanese audience and he definitely has huge impact on the company's western expansion. Hopefully, he will stay in NJPW to become a legend there. To me, he is really a joy, an entertainment to watch. A 10 for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheRainmaker28wrote on 25.10.2017:[10.0] "One of the most entertaining wrestlers of this century. I can see why some people hate him, but they just can't deny his amazing talent. Amazing offensive, atletic and a very versatile wrestler. And one of the most impressive things on Kenny, was his facility to adapt his style from a Junior to a Heavyweight, just like AJ. Kenny probably will go down as one of the greatest if he keeps this rhythm over the next years. Amazing talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Solidsnake888wrote on 10.10.2017:[10.0] "Ich verfolge nicht viel Njpw, aber dieser Kerl ist einfach awesome. Ein absoluter garant für gute Matches. Vielleicht sehen wir ihn mal bei WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "One of the best at the moment, Kenny Omega is charismatic, athletic and entertaining to watch. A bridge between American and Japanese wrestling, Kenny is basically son of two worlds. He can also work a good competitive match and then have a incredibly funny comedy match. It's a shame he hasn't still won the IWGP Heavwyweight Championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Yukinoarkwrote on 04.09.2017:[10.0] "Kenny is a genius wrestler, every match he's done never looks boring to me. Though his opponent is an amateur, he knows the advantages of his opponent and he tries to show it so that the opponent has a chance to shine."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Blood Pumpwrote on 01.09.2017:[9.0] "Say what you will about his garbage run in DDT (I whole heartedly agree with Cornette as far as considering Omegas stunt with the blow up doll and little girl not only being unfunny but just plain terrible), the man has improved by leaps and bounds. Since early 2016 Kenny has seemingly made it a point to become one of the best hardest workers, and I believe hes accomplished the feat. Sure he has that DDT blemish on his record and yeah he sometimes goes from spot to spot pretty fast but as far as the latter is concerned I think that speed tends to serve his matches well. While I'm not as high on him now as I once was (hes third behind Naito and Okada in my eyes, fourth if/when Shibata returns), there's no denying his mind for a good spot is above and beyond anyone else's right now. Hes been a direct part of some of the greatest matches in history with both Okada and Naito, and has been a very steady hand otherwise. I only knock a point off because I do feel he could work on his pacing when going from spot to spot. As cool as his explosiveness is I do think he isn't exactly great at letting a big spot breathe, though hes gotten better at that."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: tykechandlerwrote on 16.08.2017:[10.0] "He can be off-putting at times with his persona and in-ring histrionics (gesturing, hand movements, etc), but there is absolutely no denying he is one of the greatest wrestlers of all-time. He can do it all, and he does it incredibly well. One of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: xPETERxwrote on 14.08.2017:[10.0] "Weniger als 10 Punkte für den aktuellen Omega, der in Regelmäßigkeit 5* Matches raushaut wären wohl Blasphemie. Es gibt einfach zu vieles was gut an ihm ist. Der Bullet Club, The Elite, das Theme, V-Trigger, SnapSuplexes, der Finisher etc. Die Gesichtsausdrücke - selbst bei sowas wie der G1-Pressekonferenz (als Ibushi nach vorne tritt, oder Suzuki an ihm vorbei läuft, oder er EVIL nachäfft). Alles unter 7 sind Hate-Bewertungen, die bloss den Durchschnitt senken sollen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: arrancarwrote on 14.08.2017:[10.0] "I quite frequently have issues with Omega. As many people have mentioned, his facial expressions, gestures, posture, and general bumps can be very overdramatic to fit his video game inspired character. It can easily come off as cheesy and even laughable, and can detract from matches that are of a high importance level. Yet somehow this guy manages to make it all feel natural by the end of the match. Omega IS the super villain. He's over the top and goofy, yet knows when to tone down his pace and be more methodical and precise with his actions. This creates a character that takes great delight in being dastardly, and is clearly in love with his own ego, but not to the point that it clouds his judgement enough to stop him from properly attempting to obtain his goals. So, while Omega can be goofy, it fits his character perfectly. There's no one else quite like him, and when he goes into serious mode he turns into a FULL-ON killer. This isn't even to mention his incredible athleticism and physicality, pulling off all sorts of crazy high-flying, technical, and power moves, all with perfect timing and technique. During the big finishing stretch of a match it's incredibly hype seeing Omega put on that big cheesy grin as he attempts to kill his opponent and put them down for the 3 count, because he really comes across being as crazy as his ridiculous grin implies. Omega is a madman that's having some of the best matches I've ever seen. One of the best in the world currently."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Efanga80wrote on 13.08.2017:[10.0] "Kenny isn't my favourite but he doesn't need to be my favourite for me to know he is one of if not the best pro wrestler right now. Every match is talked about and endless classics"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Telecinewrote on 04.08.2017:[9.0] "Ich muss sagen, ich bin echt beeindruckt von Kenny Omega. Als ich ihn vor vielleicht sieben Jahren das erste Mal bei ROH sah, hielt ich ihn für talentiert, aber nicht für jemanden, der das Potenzial hätte, irgendwann einer der Topstars des internationalen Wrestlings zu sein. Doch genau das ist er mittlerweile bei NJPW geworden. Als einer der wenigen hat er es auch geschafft, seiner komödiantischen Herkunft irgendwo treu zu bleiben und sie dennoch zu einem Stück weit hinter sich zu lassen. Mittlerweile beherrscht er ein psychlogisch durchgestyltes Match wie beispielsweise im G1 genauso perfekt wie ein Comedy Match gegen Toru Yano und das alles, ohne aufgesetzt zu wirken. Erstaunlich, was aus ihm über die Jahre geworden ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ChristianMB1wrote on 27.07.2017:[10.0] "Excellent blend of athleticism and psychology. Quite possibly the best wrestler of all time, and his brilliance is enhanced by the fact he works for a company that legitimately appreciates his talent and doesn't change him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: The Phenomenal 1551wrote on 03.07.2017:[10.0] "Meiner Meinung nach das beste Gesamtpaket im Wrestling außerhalb von WWE. Gerade was er in den letzten eineinhalb Jahren im Ring abliefert ist gefühlt oft nicht von diesem Planeten. Vor allem die großen Matches gegen Okada sprechen für sich. Auch beim G1 US Special hat er wieder abgeliefert und ist zurecht erster NJPW US Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Lee Vilenskiwrote on 20.06.2017:[10.0] "I'm not exactly sure how you can rate Kenny badly. Able to work year long, doing incredible matches on que, with phenominal mic skills, and gets over in Japan despite being Canadian.   Legit nice guy who just wants New Japan to be the business. Fantastic Wrestler to boot."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ParisTheSpiderwrote on 19.06.2017:[10.0] "Kenny Omega ist momentan der heißeste Star der ProWrestling Szene. Im Ring ist er sehr gut und hat ein tolles Moveset. Bei New japan Pro Wrestling ist er grandios. Habe schon dutzende 5 Sterne + Matches von ihm gesehen. 10 von 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: PistolPeteMattywrote on 31.05.2017:[10.0] "Probably the best wrestler in the world today that was born in North America. He's got charisma for days,  impeccable in ring ability, can cut a great promo, and has an excellent look. Omega is amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: LordGabrielwrote on 28.05.2017:[10.0] "One of the most spectacular wrestlers nowadays. I really enjoyed his matches vs. Tetsuya Naito and Kazuchika Okada (WK 11). He is an attraction for everyone and a great leader for the Bullet Club/"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: J Dwrote on 19.05.2017:[10.0] "Der beste Wrestler den es zurzeit gibt. Hat das beste Wrestlingmatch allerzeiten gegen Okada geworkt. Einer meiner absoluten favourite Wrestler und auch der Grund warum ich NJPW so liebe!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Demusawrote on 13.05.2017:[10.0] "Einer der komplettesten Wrestler die ich je gesehen habe. Wenn er keine 10er Bewertung verdient hat, dann hat sie keiner verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Richiewrote on 06.05.2017:[10.0] "Wie er ist, wie er sich gibt, was er macht... er ist das beste, was ich wahrscheinlich jemals gesehen habe! 10 Punkte und besser!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ErycK24wrote on 02.05.2017:[10.0] "Kenny Omega is the bar for wrestlers in the modern era, he is one of the best in the world both in the ring and on the mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Cleanerwrote on 28.04.2017:[10.0] "Im letzten Jahr sollten jegliche Zweifel verschwunden sein - Kenny Omega ist nicht nur einer der besten Worker dieses Planeten, sondern "the hottest thing going on", die Boxoffice-Attraction, die die WWE so gerne hätte. Er bringt mich dazu, jedes mal bei NJPW (und natürlich auch regelmäßig bei diversen Indies) einzuschalten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SteveTheBeastwrote on 21.04.2017:[10.0] "Meiner Meinung nach der beste Wrestler außerhalb der WWE Momentan, und vielleicht auch generell. Spätestens ab seinem 6-Sterne (! ) Match bei WK 11 sollte man ihn auf dem Schirm haben. Absolut großartiger Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: hasanakbaba68wrote on 08.04.2017:[9.0] "Einfach nur ein Gott! Hat bis jetzt das Beste match seines Lebens Gehabt gegen Kazuchika Okada (IWGP World Champion) 6Sterne Match Bei Wrestle Kingdom 11 Im Main Event Einfach nur Pures Gold Kann man sich immer Geben"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheCleanerwrote on 29.03.2017:[10.0] "Kenny f'n Omega is the man. His Transition from Junior Heavyweight to Heavyweight Division was awesome and he made it worth by giving a great performance against Tanahashi and winning the IC Title. His Match against Elgin was awesome at Dominion and His G1 Performances were what made him a Star after giving breathtaking Performance against Naito and got an outstanding match out of Goto, thats how good he really is. And then The Ultimate match at WK11 vs Okada. MAN OH MAN! WHAT A MATCH! Outstanding performance by Omega and Okada too. I hope he wins the title asap because he has so much momentum and so many fans in his corner and i know he will become THE CHAMPION because he has the IT factor that nobody has."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ezuvguwrote on 25.03.2017:[5.0] "Omega can be good with the right opponent, but his matches tend to go on longer than they need to. When he's actually serious in the ring and the matches are not packed with filler such as gratuitous finisher kickouts, he's every bit as good as the other New Japan heavyweights. When he does the self-indulgent stuff, it gets tiresome very quickly."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TooSweetPhilwrote on 09.03.2017:[10.0] "Im Ring einfach Weltklasse, kann wunderbare Matches aufstellen wie gegen Okada/Naito, verfügt über mehrere Stile, High Flying, Stiff und Technical und kann tolle Story's aufziehen. Dazu ein magnifikantes Move Set mit einem der besten Finisher überhaupt.  Sein Charakter gefällt mir auch, zwar kann er zum ultimativen BadAss werden wenn's nötig ist, aber auch zum Comedy Faktor werden, mit bsp. Chainsaws. Obwohl das in PWG schon überspitzt wird, ich meine sein Match gegen Ospreay hat mich zum Wegschmeißen vor'm Lachen gebracht.  Mikrofon ist zwar im Indy Bereich nicht immer gefragt, aber bei ihm definitiv eine besondere Gabe.  Bringt einen insgesamt auf die Höchstpunktzahl. The Legend is about to clean !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Changeling45wrote on 02.03.2017:[10.0] "This guy has all the tools in the world to be something truly special.  He has a great physique and can work way faster than his size should allow due to his awesome intensity and work ethic.  Awesome moveset and willingness to do whatever to put a match over.  Definitely a top performer in the world today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Chekerwrote on 23.02.2017:[10.0] "I knew Kenny Omega was money the moment I laid eyes on him, but the rate at which he's improving, even this late into his career, is impressing even me. He casually has the match of the night on any card he's in, regardless of opponent, he mastered simple heel mannerisms completely (you don't see them that much now, I still have in mind his Cleaner character before he became the de facto leader of the BC), and he has a great look (again, I liked his "junior" look better, but still). Absolutely one of the best wrestlers in the world, and he's not showing any signs of stopping anytime soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: One Winged Angelwrote on 10.02.2017:[10.0] "Kenny, Okada and Tanahashi are the top 3 wrestlers on the planet. IMO, he has surpassed both of them in the last 12 months to become the undisputed best wrestler on the planet. Incredible in the ring, great on the mic and charismatic. A fantastic all round pro wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: sakuraba3891wrote on 08.02.2017:[10.0] "Best wrestler in the world right now. So happy he stayed with NJPW and didnt go to WWE a promotion that simply has no clue how to book great wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JubileuFishwrote on 07.02.2017:[10.0] "Overral, the best in the world right now. Impecable in the ring, has a lot of charisma, and a really good mic-skill. A ten on everything."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: csp6713wrote on 23.01.2017:[9.0] "To put it shortly, Omega has IT. Something that's rare in today's wrestling. Wherever he goes, he'll be one of if not the best at what he does. Can't wait to see what happens next."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JokeyZockeywrote on 10.01.2017:[10.0] "The Cleaner! Einer der besten Wrestler der Welt aktuell und das vielleicht beste Gesamtpaket ohne Stil oder Region-Beschränkung! Im Ring nach AJ Styles der für mich zweitbeste westliche Worker der Welt, unfassbar charismatisch, so gut wie auf demselben Level wie Nakamura und trotzdem irgendwie besser über den Körper verteilt bzw. er macht mehr draus, am Mic ein Gott, er shootet gegen alles und jeden mit einer unfassbaren Intensität, sowohl auf japanisch als auch auf englisch, was ihm bei NJPW unfassbar hilft, und eine Ausstrahlung, die ihresgleichen sucht, dieser Mann verkörpert sein Gimmick mit Leib und Seele und das merkt man von der ersten Sekunde an, er lebt es förmlich! Zudem kann man sich erstens super mit ihm, der außerhalb des Rings ein ''Nerd'' in Bezug auf Videospiele, Animes, etc. ist, identifizieren und zweitens ist er einfach krass unterhaltsam, die YouTube-Videos auf dem Kanal von The Elite sprechen Bände. Zu guter Letzt hat er nun bei Wrestle Kingdom 11 das beste Wrestling-Match, das ich bisher in meinem Leben sehen durfte, geworkt, wen das nicht überzeugt, dem kann ich auch nicht helfen! Kenny ist ein Mega-Star, das ist ein Fakt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Titansrevengerwrote on 10.01.2017:[7.0] "Alright, i'll admit Omega is one very talented individual and may very well be ahead of his time. Which is saying a lot because there is a lot of innovation in the wrestling game today. Omega seems very Pillman like with a dash of Lawler. I can't explain it but he is an outlandish character who really self aggrandizes himself. He definitely knows how to get over. I would love to see how he goes over in the States."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Gloverwrote on 10.01.2017:[10.0] "An incredibly charismatic, affable, and creative professional wrestler that has made the slow climb up through the Japanese scene. From sending in tryout video to DDT from his residence in Canada to becoming one of the company's top foreign stars after forming a rivalry/partnership with Kota Ibushi to branching out to other Japanese companies and western indies like ROH and PWG to joining NJPW full time and becoming the company's top gaijin after the exodus at the beginning of 2016. He's gone from giving Zangief's Ultra Combo to a dummy to main eventing the Tokyo Dome in one of the most highly-lauded matches of this decade. I support Kenny no matter what he does, because he gives it his all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TrevPuroFanwrote on 07.01.2017:[9.0] "Kenny Omega is a incredible big match performer. When he's serious and wants to deliver, he can put on incredible matches as he's proven against Naito, Goto etc. Only reason I won't give him a 10 is because sometimes he can be goofy and not care about his matches, which leads to him underperforming vs. KUSHIDA, Shelley etc."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Brainbreakerwrote on 05.01.2017:[10.0] "Ist laut CM-Datenbank unfassbarerweise schon fast genauso lange dabei wie AJ Styles und gerade einmal 33. War lange Zeit der übersehene Star der Indy-Szene und kam trotz toller Segmente zunächst (siehe the greatest match opening in history) nicht aus dem Schatten von Leuten wie Danielson oder Tyler Black heraus. Nach seinem Sprung nach Japan wendete sich das Blatt langsam. Tollen Matches folgten, und nach dem Rauswurf von AJ Styles aus dem Bullet Club ergriff der Cleaner die Gelegenheit, um zu NJPWs größten Gaijin aufzusteigen. Ihn als talentiert zu bezeichnen wird seine gegenwärtigen Größe nicht gerecht: Er bumpt, mimt, wrestlet wie ein junger Gott. Ist immer präzise, hat eine wahnsinnige psychologische Komponente, die einfach in den Bann zieht und jedem Match eine natürliche Story zu geben scheint. Omega, in der Summe seiner In-Ring-Skills, ist ein Almagam der Stars mit denen er über die Jahre im Ring gestanden ist. Und in ihm findet sich nur das beste dieser Leute wieder. Dabei waren Danielson, Styles, Black, und viele seiner japanischen Kollegen bereits absolute Meister ihrer Zunft, doch hat Omega diese Fertigkeiten aufgesaugt und purifiziert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ApexOfEvolutionwrote on 05.01.2017:[10.0] "Neben Tetsuya Naito hat er einfach das derzeit beste Heel-Playing der Welt. Egal, ob es seine Austtrahlung, seine Promos oder auch sein Verhalten im Ring betrifft. Dazu ist er technisch einfach perfekt ausgebildet und arbeitet in einer Promotion, in der er sich perfekt entfalten kann. Hoffentlich bleibt er weiterhin bei NJPW und wird nicht irgendwann von der WWE abgeworben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: umarthegreat15wrote on 05.01.2017:[10.0] "If there is one guy who has stepped up his game big time in the last year, it is this guy. What a wrestler he's morphed into. His G1 bout with Naito and now the WK11 match vs Okada speak without needing any further explanation. One of the best around today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SamuelElJaxonwrote on 04.12.2016:[10.0] "One of my favourite independent wrestlers right now, and totally deserving of the opportunities he's been given by NJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Undisputedwrote on 17.11.2016:[9.0] "This is very good wrestler, with nice ring skill, with charisma but he is in NJPW where serious Omega is better Omega. This is not DDT, if he can be IWGP Heavyweight Champion, he must to behave like main event wrestler in NJPW."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CelticFCwrote on 09.11.2016:[7.0] "He's a reasonably good wrestler. That said, he's done some absolute garbage in his career and I don't get the major omg Kenny Omega is the best thing ever. He's a good wrestler but I find his character a bit cringe worthy especially when a babyface but as a heel his promos are slightly more cringe worthy."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KondziuuSRwrote on 30.10.2016:[10.0] "Kenny Omega is without a doubt the best wrestler in the world right now. His in ring skill is just incredible from selling to storytelling. He's also very charismatic and amazing on mic. He might easily become the greatest ever and I hope this is how it will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: 1893wrote on 27.10.2016:[10.0] "Kenny Omega ist ein absolutes Komplettpaket und sicherlich einer der besten Wrestler der Welt. Er haut immer wieder sehr starke Matches raus und ist einer der besten Talker im Geschäft. Es ist nur eine Frage der Zeit bis es endgültig ins Mainevent bei NJPW vordringt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: shosa94wrote on 18.10.2016:[10.0] "At this point, it should be safe to say that Kenny Omega is the best wrestler in the world.  The capability he's shown this year has been hinted at forever, but this year he's made good on his potential.  Best on the mic, top 5 in ring, first gaijin to ever win the G1 and damn well earned it with the two best matches of the year and arguably the best match of all time with Naito.  A sure-fire Hall of Famer right now, even just based on this year's work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: akm0wrote on 17.10.2016:[9.0] "Kenny Omega is one of a kind. He has the look, he has a ton of charisma, he has a freakin' cool moveset, the agility, the selling, the character, the mic skills and he's scary strong. The Cleaner has it all, including the ability to give to the fans 5* matches - his match with Kota Ibushi at DDT Budokan is one of my favourite ever - given him the chance. Since becaming a hvt. in Japan he stepped his game up, showing his incredible selling - moonsault with one leg, powerbomb with one arm just to sell the opponen'ts work - outstanding in-ring psychology and sheningans for ages (just look at the G1 final with Goto). What I honestly think he lacks, is the ability to be a true heel. Kenny is a lovable good guy at his core, he has that mannerism that takes from pop culture (from quoting Bison from the Street Fighter movie, to Terminator 2 references, Final Fantasy inspired finishers and singing Katy Perry) that just makes him impossible to truly hate. He's a cool heel, a bad guy you like to love. I'm waiting for his 3rd match with Kota Ibushi which it could be one of the best matches of the decade given the level of those two right now."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CulletBlubwrote on 29.09.2016:[10.0] "Zu Kenny Omega gibt es nicht viel zu sagen. Er hat den Look, ist ein sehr guter Wrestler und er hat auch gutes Micwork und Charisma, dazu kommt ein epischer Entrance, ein starkes Moveset und ich finde es gut, dass er trotz seines Erfolges so auf dem Boden geblieben ist. Außerdem ist er mit 32 Jahren noch nicht so alt und kann sich immer noch verbessern.  Charisma 10/10; In-Ring 10/10; Micwork 9/10, er ist das komplette Paket und zählt für mich zu den besten der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JordanACEwrote on 11.09.2016:[9.0] "The Cleaner, Kenny Omega! He is just too awesome. He can talk, he can wrestle, he can tell a story. What more can you ask from a wrestler? Many people call him a "spot monkey" for some weird reason.. probably his friendship with The Young Bucks (The Elite), but I don't see that. I think that he is simply amazing."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ThePhenomenal1wrote on 04.09.2016:[10.0] "Der Typ ist richtig gut im Ring und es ist nur eine Frage der Zeit bis er zum Topstar in Japan wird. Seine Moves sind genial und er führt die so präzise aus wie kein anderer, vor allem der croyt's wrath ist mega. Volle Punktzahl"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Jobbswrote on 02.09.2016:[10.0] "This man is currently in the talks of being the Best in the World and for good reason too. His performance in the G1 Climax in 2016 was just amazing and one of the best as well. His psychology and storytelling are on point but what impresses me the most about him is his selling as I love his selling in his matches. Truly going to be destined for greatness going forward."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: DevilsSkywrote on 31.08.2016:[10.0] "One of the better wrestlers of this generation, and the G1 Climax truly showed off his skills. He's got solid charisma, amazing ability and athleticism and very good selling (his leg selling during the G1 was definitely something to admire). As he said himself, he's the type of wrestler who those in NXT should learn from, because he's got a lot to offer to the wrestling business. His character work is occasionally a little inconstant, however, he is a heel, and if people don't like it then it's a pretty good way to get heat. I just can't wait to see his match against Okada at Wrestle Kingdom, no doubt it will steal the show."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: mrmctommywrote on 23.08.2016:[10.0] "A franchise guy. An endless moveset, unparalleled in-ring storytelling, and a great mix of modern douchey heel and golden age cartoony bad guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KASHwrote on 16.08.2016:[10.0] "Meine letztes 10 Punkte Kommentar zu Omega ist 5 bzw vor Edit 6 1/2 Jahre alt. Wird Zeit einen neuen Text zu ihm zu verfassen. Damals war er noch bei DDT als Semi-Komedieperformer unterwegs und hatte einen ziemlich verpöhnten Ruf unter den Indywrestlern. Heute ist er anerkanntes Heavyweight bei NJPW und sicherlich einer der schillernsten Wrestler, die nicht im Titanenland in Stamford unter Vertrag stehen. Für mich hat Omega schon immer den perfekten Wrestler verkörpert. Er hat eine sehr gesunde Einstellung zum Business, zum Publikum und zu seinen Pflichten gegenüber Fans und Zuschauern. Diese Work ethic hat ihn jetzt an die absolute Spitze von NJPW katapuliert. Er mag nicht der beste Techniker aller Zeiten sein, aber das muss und will er auch gar nicht, eben weil er weiß wie er die Massen unterhalten kann und dies tut er auch aus vollem Herzen auf seine ganz eigene weise. Die Matches, die er im letzten halben Jahr abgeliefert hat, beweisen außerdem das er doch weiß wie man Topmatches zu worken hat. Dazu kommen ausgezeichnete Fähigkeiten am Mic, sowie seine vorbildliche Präsenz in den sozialen Medien oder allgemein in der Öffentlichkeit. Das macht ihn zu einem total package. Ich denke wir werden ihn niemals bei der WWE sehen. Beweisstück Nummer 1 ist für mich seine Siegespromo nach dem Climax Erfolg. Er ist für NJPW das perfekte Bindeglied zwischen Westen und Osten, weil er beide Sprachen und beide Wrestlingfanmentalitäten berühren kann. Seine Karierre wird von hier an in Japan nur noch steiler bergauf gehen. Er liebt Japan, Japan liebt ihn und wir alle lieben Kenny Omega. Er soll weitermachen wie bisher, sein Pfad ist definitiv der richtige."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Viper99wrote on 15.08.2016:[10.0] "Wertung bleibt bei 10 jedoch update ich meinen Kommentar: Omega ist einfach in allem was er macht unglaublich gut. Jahrelanger Junior Wrestler in Japan und Spotmonkey in den Staaten. Dort bot er schon großartige Leistungen. Nun wurde er zum Leader vom Bullet Club gepusht und sollte AJ Styles vertreten. Ich wusste Omega sei großartiger, aber ich hatte dies immer belächelt da ich nie gedacht hätte er wäre so gut wie AJ. Aber im Jahre 2016 bewies er mir das gegenteil. Er ist ohne Probleme von der Junior in die Heavyweight Division aufgestiegen und hat mit seinem Charisma und Charakter einfach so einen frischen wind in die Division gebracht. Dazu hat er ohne Probleme seine großartigen Matches in der Heavyweight Division gezeigt. Es starte mit seinem Cleanen Sieg über Tanahashi, bis er etwas auf der stelle blieb und in einem Großartigen Match seinen Titel an Elgin verlor, bis er im G1 Total auftrat, MVP des Turniers wurde und in innerhalb von 1 Tag 2 5* Matches hatte. Omega beerbt AJ super. Wrestlerisch ist AJ wohl ein ticken stärker, aber Omega macht dies mit seinem Charakter und Crowdwork weg. Einer meiner Absoluten Favorites!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Uliseppwrote on 14.08.2016:[10.0] "Ich bin schon etwas länger Fan von Kenny Omega, aber nun muss ich hier auch mal meine Wertung abgeben und passend dazu gewinnt er parallel dazu den G1 Climax. Das heißt Kenny Omege ist nun endgültig im MainEvent angekommen.  Und das hat er sich auch total verdient. 10 Punkte zu geben ist vollkommen legitim, denn Kenny Omega ist im Ring eine glatte 10, er kann einfach alles im Ring. Dazu hat er ein einzigartiges Charisma, er ist nämlich total unterhaltsam und gleichzeitg eine coole Sau(Was er mit der Position als Leader vom Bullet CLub bestätigt). Omega als Bullet Club Leader passt auch total, denn er ist nicht wie ein AJ oder ein Devitt, sondern er ist auf seine Art ein super Leader für dieses Staple. Zum Mic Work: Also seine Promos sind der absolute Hammer. Er kann singen, er kann japanische Promos halten und dabei trotzdem cooler rüberkommen als manch "Ami" der eine englische Promo hält.  Fazit: Kenny Omega ist ein fantastisches Gesamtpaket(nicht nur im Ring^^). Er kann wrestlen wie ein Gott, er kann Promos halten wie ein Gott und er hat Charisma on Top.  PS: In der WWE sollte eine MainEvent Postion ein MUSS sein, da er einfach dafür der perfekte Wrestler ist. Aber in Japan als MainEventer darf er jetzt erstmal "säubern" zurecht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Hunter Dunnwrote on 14.08.2016:[10.0] "I gave him a 10 a while back and didn't comment but now I need to comment. This man will go down as possibly the greatest in ring performer of all time. His ring work, selling, timing, execution, psychology is all done perfect and makes every match special. After G1 26, if you arr giving this man under an 8 you need to reevaluate your decision to be a wrestling fan. I don't see him as any less than a 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Mathieu Virtuosowrote on 14.08.2016:[10.0] "G1 solidified him as not only one of the best workers in the entire world, but also one of the best story-tellers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Luv all wrestlingwrote on 07.08.2016:[9.0] "Kenny Omega is very talented and entertaining, he can consistently have great matches, but his character work is too cartoony to warrant the perfect score as it makes it so he will never look like a serious opponet, and this has also hurt bullet clubls value a lot."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Randomuser12345wrote on 28.06.2016:[8.0] "Kenny Omega might be a bit over the top with his idea of a bad guy, but holy shit can he go in the ring. Incredible athletic, incredible strong, he can put on an excellent match with any style of wrestler in the world. He really is the complete package, and never fails to entertain. He makes wrestling fun, which is what it's all about."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Mirajane Strauss Fanwrote on 15.05.2016:[10.0] "Kenny Omega is an eminent entity in modern Professional Wrestling.  After voluntarily cessating his relationship with the World Wrestling Entertainment automaton, Omega made himself known to Millennials around the world with an outrageous Youtube video cum audition for Dramatic Dream Team in Japan.  Since then, 'Omegaman' has corralled the accolades readily: engaging in a fun and acclaimed feud with Kota Ibushi, changing his character radically to dominate the New Japan Pro Wrestling Junior Heavyweight Division and finally besting Shinsuke Nakamura and Hiroshi Tanahashi in a one-way journey to the upper echelon.  With frequent references to video games and even Katy Perry, Omega might seem to be a true-blue comedic performer at face-value.  In reality, he is a wonderful wrestling psychologist and is versatile enough to portray a plethora of roles.  "Bullet Club is 4-4-4-4 Life, except for AJ Styles, " - that proclamation is far from ostentatious thanks to one Kenny Omega."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Mizzle Assault Antwrote on 14.05.2016:[6.0] "Omega is very hit or miss for me. Sometimes his weirdness is appealing but sometimes it doesn't come across very well for me. I also find his matches to be a mixed bag. I will give him some credit but I think he is being overrated at the moment by many."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Alex Maedawrote on 01.05.2016:[10.0] "Der schönste aktive Wrestler der Welt ist ein Kanadier! Aber das nur am Rande, Kenny Omega hat sich seinen Spot absolut verdient, er ist sehr charismatisch, weiß mit der Crowd zu spielen und kann gute bis sehr gute Matches abliefern. Er ist also ein gutes Gesamtpaket und hat trotzdem noch Raum zur Weiterentwicklung und mit seinen 30 Jahren hat er sicherlich noch das ein oder andere vor sich. UPDATE: Ganz vergessen, Kenny endlich aufzuwerten. Unglaublich vielseitig im Ring, kann jeden Stil mitgehen, vom Comedy Wrestler bis zum Leader des Top-Heel-Stables in einfach jeder Rolle überzeugend. Für mich neben Shinsuke Nakamura der derzeit charismatischte Worker der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BrentDelivinewrote on 12.03.2016:[10.0] "Spacemountain, if you're comparing Kenny Omega to Tama Tonga, you're doing something very wrong with your life and i advise you to stop it, there are people who love you and wish you'd make some right choices."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: PuroFanwrote on 22.02.2016:[8.0] "A more entertainer and comedy wrestler, hope he get a more serious now with the IWGP Intercontinental title."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Zedwrote on 19.02.2016:[9.0] "Ein Mann der eine ganze Menge kann, nicht nur im Ring. Skills sind vorhanden, Charisma auch. Und seine Comedyeinlagen unterhalten immer gut, aber auch die Ernsthaftigkeit fehlt ihm nicht. Er erinnert mich etwas an einen jüngeren Chris Jericho, der auch sehr Vielseitig zu gebrauchen war. Aufjedenfall wäre Kenny mal in der Zukunft ein guter mann für den US Mainstream."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Antimasterwrote on 16.02.2016:[10.0] "Hat sich mit dem Sieg gegen Tanahashi endgültig zu einem absoluten Top Star und Wachablöse von AJ Styles gemausert, und steht vollkommen zurecht im Main Event. Seine In-Ring Fähigkeiten sind großartig, egal ob High Flying, hammer Suplessen, brachiale Knee Strikes und Chops, verrückte Innovation (Hadouken, Chainsaw), starkes Selling urkomische Comedy (Overselling, Yoshihiko, STone Cold-Rock mit ACH, Matrix Spot mit Bryan Danielson, einfach nur göttlich). Dazu überquellendes Charisma und obendrein ein super sympathsicher und authentischer Typ. Kenny gehört im Moment in meine Top 10 der besten Worker überhaupt, und bekommt die völlig verdiente Höchstwertung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JuliTheCage87wrote on 19.01.2016:[10.0] "Zusammen mit Chuck Taylor und Colt Cabana wohl der größte Comedy-Wrestler aller Zeiten. Er hat den anderen beiden jedoch noch voraus, dass er ein besserer Wrestler mit herausragender Athletik ist. Vor allem in den letzten zwei Jahren hat er mir bei NJPW und PWG sehr gut gefallen und bei ihm muss man zugeben, dass er auch Mainstream-Potenzial hätte. UPDATE: Ein Jahr später, selbe Wertung. Ich kann gar nicht aufhören mit "fanboyen" bei ihm. Auch als ernstzunehmender Heel einer der besten seines Fachs. Wow."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Delirious434wrote on 19.01.2016:[10.0] "Kenny Omega is THE Total Package of New Japan Pro Wrestlling, he's an Awesome Wrestler, very talented, his Charisma is huge, his Mic Skills are amazing, and he's also a fun Face and a great Heel, I hope he wins the Intercontinental Championship, even tho is not against Nakamura which could be a 5 Star Match without a doubt, I still looking forward for him becoming not only the IC Champ, but the new leader of Bullet Club?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: RainmakerF7wrote on 02.10.2015:[9.0] "Kenny is the man! Seriously, this guy is absolutely amazing and probably one of the best Jr. Heavyweights in the world right now."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: eldenaaaaawrote on 23.03.2015:[10.0] "Kenny Omega should be honorary Japanese by now. He’s been focused there for nearly six years, and in 2013-14, he has had held the following titles for DDT: KO-D Openweight Championship, DDT Extreme Division Championship, KO-D 6-Man Tag Team Championship, KO-D Tag Team Championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GoToSleepwrote on 11.01.2015:[8.0] "Ein klasse Entertainer, der sowohl den Heel als auch den Face stark spielen kann. Allerdings finde ich das er manchmal ein bisschen zu viel macht und es dann übertreibt mit seiner Art. Im Ring gehört Omega zu den besten Technikern der Welt, was man vor allem beim PWG BOLA Event sehen konnte. Mal schauen ob er in Japan auch soviel zeigen kann und ob er irgendwann mal in die Heavyweight Division geht. Zu wünschen wäre es ihm."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Balls Balognawrote on 05.12.2014:[10.0] "Possibly the most entertaining wrestler of all time. This guy has it all... And enough personality for any major company's entire roster. Kenny Omega IS WRESTLING!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ThySmithywrote on 19.10.2014:[9.0] "First time watching Kenny wrestle was for PWG BOLA 2014 and I can't believe I have never seen this guy before properly! He is an amazing Wrestler and the dude fucking kills it , Also His move Croyt's Wrath is my new favorite move. OMEGA! OMEGA! OMEGA!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: bryan316wrote on 11.10.2014:[10.0] "The dude had a 5 star match with a blow up doll that alone is why Kenny Omega is a brillaint wrestler. He has great charisma, he's entertaining and he can literally have a great match with anyone or anything."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: apc24wrote on 17.12.2013:[9.0] "Very fun to watch and a very explosive wrestler. His time in Japan had made him one of my most favorite Gaijin wrestlers. He can be a little whacky or gimmicky at times though. HADOUKEN!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: 3Mendouswrote on 14.07.2013:[10.0] "A true total package: great on the microphone, great in the ring and every crowd around the world loves him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Erico Moraeswrote on 01.07.2013:[9.0] "Awesome wrestler, sells every move really well and is a great entertainer. I wish he had more chances in the US."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Kenshin Uesugiwrote on 07.02.2013:[8.0] "Mir fällt es schwer Omega nicht zu mögen den sein Charakter ist wahrlich unterhaltsam und seine Ausstrahlung überlebensgroß. Beherrscht mehr als man ihm zu traut und ist sogar noch sauberer als sein Kumpel Ibushi, ist aber zum Teil auch selber „Schuld“ das man ihm auf seine Comedy reduziert. Doch wie er bewiesen hat kann er auch anders und ist nicht nur gut darin, sondern begeistert das Publikum damit, siehe sein Run bei AJPW. Sollte man es ihm nun positiv anrechen das er deutlich vielseitiger ist und er „besser“ ist als er sich selbst präsentiert? Oder ist das gerade das Schlimme an ihm das er sich zu fest gefahren hat in seiner Ecke und sie bis zum Nerven töten abspult? Seinen Charme kann man sich schlecht entziehen, daher tendiere ich eher zum ersten Punkt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Alex Riley 4 wwe championwrote on 01.01.2013:[10.0] "Oh, ich hab selten so einen unterhaltsamen und talentierten Performer in der Wrestling Unterhaltung gesehen! Sein Kame-hame-ha ist einfach nur die Krönung eines echt starken Movesets. Ich hoffe er macht weiter, wie bisher. Er ist echt ein Großer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: OmegaIbushiwrote on 29.10.2012:[10.0] "Kenny Omega is a genius.  He has a great technique and all his match are high quality and never boring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Johnny Divinewrote on 24.01.2012:[9.0] "Au mann, den würde ich ja echt mal gerne in der WWE sehen. Ich weiß zwar nicht wie er sich da schlagen würde, aber ich gönne ihm allein schon, dass er einen fetten Vertrag bekommt. Können und Austrahlung hat er, originell ist er auch. Ich sehe eigentlich gute Chancen für ihn. Vielleicht wird das ja was mit der WWE, mit neunjährigen Kids kann er ja umgehen ;-)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ShakDragoonwrote on 04.10.2011:[8.0] "Richtig guter Techniker, der in der USA, wie auch in Japan immer überzeugen konnte. Ich freue mich, dass die internationale Wrestlingwelt dies auch anerkennt und bin gespannt, was bei ihm noch drin ist. Besonders bei NJPW würde ich ihn gern noch häufiger sehen. Gerne auch im Team mit Kota Ibushi."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Sandmannwrote on 26.08.2011:[7.0] "Kenny Omega ist sicherlich recht talentiert im Ring. Für meinen Geschmack hat der gute Kenny aber einen sehr gewöhnungsbedürftigen Stil drauf. Sein High Flying Repertoire kominiert mit den Videospiel-Moves ist irgendwie so gar nicht mein Fall. Aber der Mann ist over und wie gesagt auch nicht wirklich schlecht im Ring. Von daher ist ne gute 3 wohl ok."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Phoenix Downwrote on 18.07.2011:[7.0] "Ganz eigener Wrestling Typ der manchmal mit seinen Hadouken Moves an der Grenze zu Nervtöterei ist mich aber fast immer überzeugt und unterhält. Stark im Team mit Ibushi."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Damon Strikerwrote on 16.11.2010:[9.0] "Hebt sich mit seinem Look und Stil positiv von der Masse ab und ist dabei auch noch ein äußerst talentierter und spektakulärer Wrestler! Einzel als auch im Team mit Ibushi. Wird mal ein ganz Großer!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MaKnowrote on 21.08.2010:[6.0] "Als ich ihn anfangs bei DDT gesehen habe, hat er mich noch sehr überzeugt. Mittlerweile langweilt er mich allerdings ein wenig und vor allem die Comedyelemente in seinen Kämpfen nerven irgendwann nur noch. Ich werde ihn trotzdem weiter im Auge behalten und bin gespannt, wie er sich noch in den kommenden Jahren entwickelt."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: The Crown Jewelwrote on 11.08.2010:[8.0] "Hat eine Ausstrahlung wie man sie nur selten im Indybereich findet. Im Ring ist er auch mit dem nötigen Talent ausgestattet, so dass man in Zukunft wohl noch viel von ihm hören wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: RickRollwrote on 14.04.2010:[8.0] "Extrem Unterhaltsamer Wrestler, von dem man sich eine scheibe abschneiden kann. Manchmal ZU VIEL Comedy in eher nicht sehr comedylastigen Ligen, jedoch auch im Ring gut. Wer weiß, evtl nach den Match gegen YOSHIHIKO wirds hier ne 9 geben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Obermackerwrote on 11.01.2010:[6.0] "Zwar sehr bemüht, erzeugt überhaupt keine Reaktionen beim Publikum."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: downtown2wrote on 16.12.2009:[5.0] "Der Hype um seine Person nimmt Formen an, die ich als nüchterner Betrachter nicht mehr unterstützen kann. Er ist eine besondere Erscheinung im Ring, aber auch sehr klein und wirkt dadurch einfach etwas dürr. Seine Interviews sind oft eher peinlich oder unbeholfen. Da kann noch sehr viel draus werden, aber meine Meinung wird sich vorerst nicht überschlagen."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Mick Funkwrote on 07.12.2009:[6.0] "Zuviel Comedy und zuviel Nonsens. Im Grunde gar nicht mein Fall, objektiv muss man aber sagen, dass er schon einiges drauf hat im Ring und auch die nötige Portion Ausstrahlung für eine Mainstreamkarriere mitbringt. Abwarten..."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: DJ MaSchwrote on 26.11.2009:[7.0] "Omega ist ein Mann mit großen Potenzial. Charima hat er alle mal und auch im Ring ist er kein schlechter, doch der letzte Funke will bei mir noch nicht überspringen. Vielleicht tut er das ja jetzt bei seinem PWG World Title Run."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Eddiewrote on 24.11.2009:[7.0] "Jetzt da er einen "großen" Titel hat, ist es für mich Zeit, Stellung zu beziehen. Er ist einer derjenigen, die bei ROH on HDNet immer überzeugen, und den ich wirklich gerne im Ring sehe, aber ich hab eben leider zu wenig gesehen, bis dato 7 Punkte."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: T-Waynewrote on 14.07.2009:[9.0] "Zeigt vorallem im Team mit Ibushi eine gute bis sehr gute Leistung."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: darksaber999wrote on 07.10.2008:[10.0] "Rüttelt stark an Sitocis Status als mein Lieblingswrestler! Im Ring wirklich gut, toller athletischer Stil. Neigt zum non-sense, was ich aber idR mag. Und außerhalb des Ringes unglaublich sympatisch!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: A-marwrote on 04.10.2008:[9.0] "Super Wrestler, mit super Techniken. Den Namen King of Fallls......... Trägt er zurecht!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: STRIGGAwrote on 04.10.2008:[8.0] "Kenny Omega hat vieles. Er hat Charisma, er hat Können und er hat das gewisse etwas, was ihn aus der Masse der Independent Wrestler herausragen lässt. Ein Mann, von dem man definitiv noch mehr hören wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Tomkowrote on 04.10.2008:[8.0] "Ich habe ihn gestern schon Live gesehen, wo er schöne Aktionen gebracht hat, aber mich nicht vollkommen überzeugt hat. Die Sachen, die ich bis jetzt auf Videos gesehen habe, waren schon klasse und ich hoffe, dass ich ihn demnächst nochmal live erleben darf!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ecw foreverwrote on 18.09.2008:[7.0] "Verdammt talentiert, ausserhalb des Rings ein Gott."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BenZenwrote on 17.09.2008:[9.0] "Kenny Omega ist mein neuer Held. Absolut charismatisch, technisch versiert und dazu noch in Matches außerhalb des Rings sowas von unterhaltsam. Der Junge hat noch einiges vor sich und auch seine ersten Auftritte bei Ring Of Honor werden sicherlich nicht die letzten sein. Ich freue mich auf jedes weitere Match mit ihm."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: chachuonlinewrote on 23.01.2025:[6.0] "Lou Thesz is recognized as a pivotal figure in professional wrestling history, an although his in-ring style was very influential, his individual performances to be average compared to todays athletes. A very good and vital worker but boring for my tastes. Ultimately, Theszs contributions transcend his individual performances, making him a foundational figure in the evolution of the sport."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Anas Kingwrote on 23.01.2025:[4.0] "I think he's an influential figure on the world of pro wrestling at least in his time. However, I just can't look past the fact that he's so behind today's wrestlers when it comes to in ring work, athleticism, and psychology. Today's wrestlers are just in a different league compared to him. He wasn't a bad wrestler by any strech. I'd say he's adequate. His mic skills weren't that good either. I think he did resonate with old classic wrestling fans. But that style just isn't for me. But I'm not gonna give him a bad rating for that because while I do think he wasn't that good, He was good enough for his time."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: SZ1989wrote on 02.04.2024:[10.0] "One of the best to ever do it. Lou Thesz was classically trained in catch wrestling and was able to translate those abilities quite well to a pro-wrestling setting. Along with Karl Gotch and Billy Robinson, he had a tremendous impact on the development of Japanese wrestling and his matches with Rikidozan were probably one of the reasons why wrestling in Japan went from focusing on brawls to more technical bouts, which would later inspire the likes of Antonio Inoki. He influenced the American scene in a variety of ways and had matches with Edouard Carpentier that were incredibly influential in how North American wrestling evolved. An all-time great and a real thoroughbred as a wrestler and a person."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Wrestling Foreverwrote on 24.01.2024:[10.0] "Eine absolute Legende. Sein Vater war Ringer und brachte ihm schon in jungen Jahre viele Griffe und Würfe bei. Den Rekord als jüngster World Champion müsste er immer noch halten. War auch immer wieder in seiner aktiven Zeit Special Ref. Er gilt auch als Erfinder der Powerbomb die durch einen missglückten Piledriver entstand. Wer ihm die verpasste oder wie das passierte ist mir nicht bekannt. Angeblich war er seine ganze Wrestling Karriere Babyface und selbst im hohen Alter war er noch stark. Habe nun einige Geschichte über ihn erfahren es gibt unzählige über ihn. Ein Mann der so wichtig für das Wrestling war. Wäre schön wenn das mehr Fans zu schätzen wüssten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: CDProsProwrote on 17.01.2024:[10.0] "Named at birth, Aloysius Martin Thesz bridged his life into the art of modern technical pro wrestling and with universal rejoice for his career that began in the 1930s in Collinsville, Illinois USA & ended in 1990 officially in Hamamatsu, Shizuoka, Japan. Excellent world champion calibre grappler to becoming a larger than life, hall of famer calibre wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: ScoobyStu82wrote on 02.01.2024:"Quite literally the greatest wrestler of all time. Statistically the greatest wrestler to ever hold a major championship, with 40% of his incredibly long title reign as NWA Champion being taken up by title defences - more than anybody else to hold any major championship (yes, I did actually do the math on this)"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Ozzywrote on 16.10.2023:[10.0] "I have no clue how I didnt do Lou sooner. The absolute greatest wrestler in history. You can take into consideration everything going on in the world of wrestling during the 70s, 90s, early 2000s, now, even back in the 80s with figures like Bret Hart and HBK getting their starts, Hulk Hogan and Flair bringing new life to the sport, even back with Gorgeous George and Frank Gotch, none of them compare to the level of pure skill, and class of Lou Thesz. This man raised the entire bar of what professional wresting can and should be with a single hand in a way that hasnt been matched since or by any others than the Gold Dust Trio. Absolutely perfect. Thank you Lou."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: InsertFunnyNameHerewrote on 21.08.2023:[10.0] "A wrestling machine, an Olympic level shooter and the last man in the history of pro wrestling Id want to mess with (and that includes Lesnar and Haku) Lou Thesz is one of the most influential wrestlers of all time and the greatest technician to ever grace the ring. The guy has provided us so many moves and is a pioneer of Shoot Style."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Khalid Acewrote on 16.07.2023:[7.0] "Lou Thesz is very important figure in professional wrestling and he was good but I believe he's a 7 at best."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Neon Aussiewrote on 02.07.2023:[10.0] "Mount Rushmore of Professional Wrestling-level GOAT. In the top 5 of all-time no doubt. 'Nuff said..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: TooDarkMarkwrote on 24.01.2023:[10.0] "I only know him from Youtube, VHS, magazines, and his biography. All of which make him one of my favorite wrestlers of all time. I can watch any of his 1950's matches, and just marvel at how smart he was. How well he worked the crowd. How utterly in control he was. He's on my Mount Rushmore certainly."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Conquistador37wrote on 29.11.2022:[10.0] "You can not deny how rad it is seeing him POWERBOMB people in black & white. Lou Thesz was possibly THE most important thing to ever happen to professional wrestling in regards to the bell to bell stuff. While he was 100% a trailblazing, innovative architect of the sport, it might help to give him some somewhat modern comparisons: It's like this crazy Bret Hart/Vader hybrid before color television was even a conversation. WAY ahead of the curve. It's a CRIME that more footage of him doesn't exist. The biggest flaw we have here is almost no one was remotely close to his level, so you get a bulk of "Lou just absolutely destroying the poor guy"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: MainEventMasterwrote on 29.11.2022:[10.0] "Revolutionary wrestler, anything you see in pro wrestling nowadays, he has something to do with it, he just GOT the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Makai Clubwrote on 29.05.2022:[10.0] "What else is there to say? If there is a Mount Rushmore, I believe that Lou Thesz belongs there. In fact, he'd be the first name on it for me. His legacy as the last hooker, in a career that span from the 30s to the 80s (90s if you want to be anal about it), is legendary. And, unlike most of his peers, it was worth its name in gold. He was a true icon, a fantastic worker by the tons of matches we have in existence and a big draw for decades. So big that he was asked to hold the title while semi-retired. While they tried, the NWA never truly replaced him in terms of what he did for them. His longevity, impact and skill will forever be unmatched"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: No Onewrote on 21.10.2021:[10.0] "The single most important professional wrestler to ever exist. May be the #1 greatest professional wrestler of all time (in contention with Ric Flair). One of the greatest in-ring performers of all time. One of the greatest World Heavyweight Champions in pro wrestling history. Most likely is the greatest NWA World Heavyweight Champion of all time (in contention with Ric Flair). Set many untouchable records. Achieved INSANE career longevity. Innovated moves that are still being used to this very day: The Powerbomb, STF, Backdrop Driver, & the move that bears his own name, The Lou Thesz Press. Was the original "Wrestling Machine" who was well known for wrestling incredibly long matches that was sometimes spanned over 2 hours. Feuds with Buddy Rogers, Rikidozan, Everett Marshall, & "Wild" Bill Longson are legendary. Wrestled and defeated nearly every wrestler that existed between the 1930's-1970's. One of the main guys that helped build Japanese Wrestling into the international sensation that it became and still is to this very day. Was one of the top draws in pro wrestling between the 1930's-1960's. Is universally respected around the world, and his name carries MASSIVE weight. One of the greatest workhorses in pro wrestling history. Had the aura of being the "ACE". He WAS the NWA. Held championships around the world. Is a serious measuring stick for true greatness in professional wrestling. RIP to the legendary Lou Thesz."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Jaden 101 Kenwrote on 25.03.2021:[10.0] "10 out of 10 for me, he's a legend started, wrestling in 1932 and retired in 1990, he is one of many icons that have stepped into the ring and I want to thank him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: rainmakerpunkwrote on 07.11.2020:[10.0] "He's a fantastic wrestler, his matches have actually aged very well, he was easily the best wrestler of his era, in-ring master whose work will always be great, a master mat technician, he was also a great champion and was the face of an era, he's one of the best ever and anything under a 10 would be disrespectful"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Lunacorvawrote on 20.09.2020:"I'm not putting a rating here because this is solely in response to SchoolgirlQ, rather than a statement of my opinion on the wrestler. But regarding my so-called "Quip", as it were. That was not a Quip, it was a genuine question. Due to the number of people (Yourself NOT included, for the record, I think you gave solid reasons for your rating) giving ratings with zero context or reasoning beyond "He's a legend", or outright saying they hadn't watched him."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Jetlagwrote on 28.08.2020:[7.0] "Legendärer Wrestler, der in vielen Matches jedoch auffällig oft die gleichen Moves abspulte. Allein das alte "Ich dränge meinen Gegner ins Seil und verpasse ihm einen Cheapshot"-Spiel konnte Lou wirklich stundenlang abspielen :) Da gab es damals wirklich aufregendere Wrestler. Dennoch machte Thesz seine Sache mehr als solide und hie und da sprangen auch High-End-Leistungen, etwa ein sehr guter Kampf gegen Inoki in den 70ern heraus."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: LandonRyanWyattwrote on 03.02.2019:[10.0] "A truly iconic figure in the business. Thesz, was a true technician that could go two hours most nights and adapt to anyone else's in ring style. Lou Thesz is in the top 10 all time, anywhere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: JEK 1991wrote on 30.10.2018:[10.0] "Excellent wrestler! A legend for sure. You wouldn't see a wrestler like him anymore.  His wrestling style and moves were excellent and natural. He influenced many wrestlers over the years. It was impressive of him to wrestle at he age of 74. I wish I could have watch him on TV or live back then."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: RatingsMachinewrote on 12.10.2018:[10.0] "Lou Thesz is a genuine legend of the business, as nailed on a Hall of Famer as you can possibly get, and there is no credible reason for anyone to give him any rating other than a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Steamboat2511wrote on 02.10.2018:[8.0] "Lou Thesz kenne ich nur von alten Videos als wahre Legende und berühmten Hooker des Wrestlings. Eine faire Bewertung muss die unterschiedlichen Stile und Anforderungen im Bereich Entertainment zwischen seiner und der Jetzt-Zeit anrechnen. Hierfür hat er bereits, so weit heute noch ersichtlich, in den 70ern bemerkenswerte Matches abgeliefert. Sein Wert für die Geschichte des Wrestlings scheint mir überdies kaum überzubewerten zu sein."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Mantafahrerwrote on 24.04.2016:[10.0] "Heute vor 100 Jahren wurde dieser Mann geboren... und seit 100 Jahren gab es niemanden mehr, der das Grundkonzept des Pro-Wrestlings in so einer Reinheit, Professionalität und Ausdauer verkörperte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Super Mastodonwrote on 06.03.2016:[10.0] "In terms of being just a straight up wrestler, no gimmicks or flashy attires then Lou Thesz would easily be No. 1! Truly the greatest wrestler in his era and is one of the greatest of all time! An innovator at that as well and widely respected by his peers. Today's generation should definitely know more about him, and even for a man who was in his late 50's he could wrestle great and put over the young talents at the time! RIP."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: ShooterMcShootwrote on 04.01.2016:[10.0] "How can you rate Lou Thesz any less than a ten? Going back and watching his matches, look at how smooth he moves in the ring and really look at the way he was so good at building drama, especially his matches with Rocca. He was certainly the greatest worker of his time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Basket Casewrote on 28.01.2014:[10.0] "Einer der ganz großen, frühen Legenden dieses Sports. Weniger als die volle Punktzahl geht hier nicht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Kitanoyamawrote on 05.08.2012:[10.0] "Eine Legende welche im Ring wesentlich dafür mitverantwortlich war, das Wrestling das wurde, was es heute ist. Er war noch ein echter Kämpfer der auch ohne großes Entertaimentaufgeblase was reißen konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: MaikBaaderwrote on 11.09.2011:[10.0] "Eine unglaubliche Legende, den eigentlich jeder Wrestlingfan kennen MUSS. Ein unglaublicher Kämpfer, dessen Wrestlingmatches Ich mir heute noch in 2011 angucke. Erfinder von wirklich vielen Moves und eine unglaubliche Legende. Etwas als 10 Punkte kommt bei mir gar nicht in die Tüte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Erasedwrote on 30.05.2010:[9.0] "Die wenigen Matches, die es von ihm zu sehen gibt, sind alle wirklich interessant und empfehlenswert! Auch hoch anrechnen muss man ihm, dass er mit Mitte 70 noch ein recht ordentliches Match abgeliefert hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Showstopper45wrote on 20.03.2010:[8.0] "Absolute Legende und wenn ich mir vorstelle wie lange er gewrestlet hat dann verdient er meinen Respekt. Ganz klar einer der ganz Großen Legenden die dieses Buisness je gesehen hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: 108 Sternewrote on 25.09.2009:[9.0] "Eine der ganz großen Legenden; und selbst im hohen Alter von 74 Jahren hat er noch ein besseres Match abgeliefert als manch ein anderer mit 50."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Parvexwrote on 05.08.2009:[10.0] "Bester Wrestler aller Zeiten, was ich von ihm gesehen habe war immer topnotch. Auch im Alter hat er noch teils großartige Matches auf die Beine gestellt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Perry Coxwrote on 31.05.2008:[10.0] "Auch wenn ich erst 14 bin (und ihn deshalb nie im Ring gesehen habe), muss ich auf Grund der Titelregentschaften und allen weiteren Infos klare 10 Punkte vergeben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Brahma Bullwrote on 04.05.2008:[10.0] "Habe ihn natürlich nie im Ring erlebt aber viele bezeichnen ihn als den größten Wrestling Champion überhaupt. Auf Grund dieses Status bekommt er klare 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: LexLuger4everwrote on 24.02.2008:[10.0] "Eine der ersten frühen Legenden dieses Sports und auch wenn es schon ein halbes Jahrhundert her ist, ist Lou Thesz ein Name, den fast jeder kennt, der ein bisschen Ahnung hat! Das sagt eigentlich alles über über ihn aus!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Rated R Champwrote on 12.02.2008:[10.0] "Habe von ihm im Ring nichts mehr miterlebt, aber definitiv eine der größten Legenden des Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: real americanwrote on 27.07.2007:[10.0] "Der beste Wrestler seiner Zeit der das Wrestling prägte und dem das Business heute viel zu verdanken hat. Die Thesz Press gehört praktisch zum Standardarsenal eines Wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Nachtfalterwrote on 24.06.2007:[10.0] "Ich kenne Tapes aus den späten 70ern und den 80ern, die seine wahre Klasse zu seiner besten Zeit wohl nicht mal ansatzweise erahnen lassen. Im direkten Gegensatz zu Matt vergebe ich meine Bewertungen aber eben in allererster Linie nach der Bedeutung für das Wrestling und deswegen bekommt das Aushängeschild der NWA natürlich 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: dhruboezitwrote on 26.01.2025:[10.0] "Among the greatest professional wrestlers of all time. If not THE BEST. Prolific amateur wrestler and an Olympic gold medalist - its god given talent. Kurt Angle is an icon and an inspiration."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Big R3d Mach1n3wrote on 19.01.2025:[10.0] "An actual Olympic Gold Medal winner and a great wrestling talent in the Attitude Era. He was great when serious and the best when comedic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TWBwrote on 08.01.2025:"Kurt usually doesn't get mentioned enough about one of the WWE goats, but this man belongs on the Mt Rushmore of wrestling. He is absolutely one of the best technical wrestlers ever. I feel a lot of fans missed his TNA run because of them being WWE diehards, but Kurt really is the king of the mountain."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MEDaminewrote on 07.01.2025:[10.0] "He was the best wrestler in the world for a long time, and it makes sense thanks to his insane ring skills, other than that, he was also very entertaining with his character work and mic skills, he has a lot of unforgettable moments, he's one of the best ever, it's true, it's damn true"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: AceHagannwrote on 26.11.2024:[10.0] "An amazing performer from day one. Consistently working masterclasses of wrestling. Extremely in tune with crowds. Funny, menacing, Kurt could make it all work. As deserving of gold in professional wrestling as he was in the Olympics."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: crs285wrote on 24.11.2024:[10.0] "Honestly someone who was just built for pro wrestling. His in ring action in the early 2000s was one of the best we have seen. He could play characters well and always got a crowd to react whether it was cheering, booing or laughing. He could speak on the mic and brought such intensity. Was a star everywhere he wrestled."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: benny5bellyswrote on 28.10.2024:[8.0] "Find me a man who has more good matches while completely and utterly as off their tits as Angle. What a guy. Kurt was cracking, he has got the range to play a whole bunch of different characters while remaining true to himself, he can be slotted anywhere on the card and deliver."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: wrestlingswiftiewrote on 24.10.2024:[10.0] "Believable background, one of the best when it comes to being technically sound, and very versatile in what he can do with his character. Honestly, I don't know what you can say Kurt Angle is missing"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wrestlingfan0808wrote on 14.10.2024:[10.0] "One of my goats. I hate that Kurt said he doesnt belong in some of these all time convos because in his words he didnt wrestle long enough for a wrestling company but fuck all that. He is one of wrestlings goats. Point blank period. One the most complete wrestlers ever. A generational talent and then some"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: JackBurtonsTruckwrote on 14.10.2024:[10.0] "Kurt Angle for me is the greatest in ring performer of all time. He was incapable of having a bad match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Zak22wrote on 09.10.2024:[10.0] "Probably the greatest technical wrestler of all time and one of the most intense, work-rate wrestlers ever. Kurt had lots of great matches (although some of his so-called classics don't hit for me at all). Angle after 2009 was very much a story of decline and fading away but it happens. A great wrestler, in my top 10, can see absolutely why some would have him as the GOAT, although he isn't for me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Nolan Greenwrote on 25.09.2024:[10.0] "The best WWE wrestler. By this I mean wrestlers who made their name in WWE. So someone like Bryan Danielson doesn't count since he came from the indies. Kurt Angle was the total package. He could walk, he could talk, he could grapple, he could carry you to a good match, he could put on a five star classic, he could go from goofy to serious in the blink of an eye, he could do it all. And this is only talking about WWE. Then he went to TNA and became a madman. They didn't call him Perc Angle for nothing. Flipping off the stage onto Abyss, Moonsaulting off a cage and slightly hitting Mr. Anderson, a backstage segment where he was looking for his cloths in his underwear and then came out and put someone in an ankle lock, putting Santa Claus in an ankle lock and making a kid cry, taking 70 pills a day... of. Ok, so his career wasn't perfect and his final match with BARON CORBIN was a dud, but still. He was an amazing talent. And he did everything with a broken neck. I pour a glass of milk and salute you Kurt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: maven loverwrote on 17.09.2024:[10.0] "Bar none one of the best things to ever happen to wrestling. From a prolific background in amateur wrestling, to doing great comedy work in WWE, to working a 40-minute match with Christian & Rhyno in TNA, to working in numerous Japanese promotions, Kurt Angle has probably forgotten more things about wrestling than I'll ever learn. His longevity despite his issues with vices & his seeming ability to face pain head-on are a testament to his insane toughness & commitment to the business. Kurt is bar none one of the most well-accomplished people in the industry, & he deserved better than to be strapped with that trash Corbin match on the way out."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TMay95wrote on 14.09.2024:"Kurt Angle is probably the all-time greatest in-ring technician in the history of the business. His ability to tell a story and have a compelling match with pretty much everybody is truly amazing and how quickly he took to wrestling makes him a once in a generation talent"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jsbortswrote on 08.09.2024:[10.0] "Kurt Angle is an all time great and an incredibly important performer in North American wrestling history. He's not so much known for all his incredible matches as much as the incredibly high floor he had for each one of his contests. A 6 minute Kurt Angle match was a sight to behold just as much as his Wrestlemania matches. He truly had everything someone could have, but more than anything he had a believability in-ring that translated from his real success as a wrestler, and he was able to create a completely unique style. More than anything though, I've never seen anyone with the intensity during a wrestling match that Kurt was capable of. Truly 1 of 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: OldSchoolFan3098wrote on 06.09.2024:[10.0] "There are stars, there are superstars, and then there are the all-time greats. Kurt Angle is one of the very best to have ever stepped into a squared circle. From the moment he debuted, Angle embodied a rare combination of technical mastery, athleticism, and charisma that separated him from his peers. A legitimate Olympic gold medalist, his transition from amateur wrestling to professional wrestling was seamless, and he quickly became a fixture in main event scenes. What truly makes Kurt Angle special is how he excelled as both a heel and a babyface, often delivering top-tier performances no matter the role he was asked to play. One of Angle's most remarkable traits was his ability to elevate those around him. Whether facing legends like Shawn Michaels, Chris Benoit, or Brock Lesnar, or helping to shape the careers of newer stars like Samoa Joe and AJ Styles in TNA, Angle consistently delivered some of the greatest matches of all time. He didnt just hang with the besthe brought out the best in them. His matches werent just clinics in technical wrestling; they were emotionally charged bouts that left fans on the edge of their seats. Few performers in wrestling history have built a resume of classics spanning multiple eras, styles, and promotions like Angle did. What truly set Kurt apart was his versatility. He could be downright hilarious, famously donning a tiny cowboy hat or singing along with Stone Cold Steve Austin, but when the bell rang, there was no one more intense. His ability to switch between being an entertaining, comedic character and a fierce, no-nonsense competitor made him one of the most well-rounded performers in history. Fans believed in him whether he was an arrogant heel claiming to be the "best in the world" or the underdog babyface fighting against impossible odds. Beyond his natural talent and athleticism, Angle's passion for the business was undeniable. He worked tirelessly to improve, and even after his time in WWE, he carried that same work ethic to TNA, where he elevated the entire company to new heights. His matches with the likes of AJ Styles and Samoa Joe showcased that he still had it, even years into his career. Few wrestlers could maintain that level of performance while adapting to different styles and opponents across two major companies, but Angle did it with ease. Ultimately, Kurt Angle's legacy is one of excellence. Whether he was delivering classic bouts in WWE or redefining his career in TNA, Angle proved time and again that he was one of the greatest to ever do it. From his technical precision to his captivating promos, Kurt Angle was, and always will be, a once-in-a-lifetime performer who transcended the business and left an indelible mark on wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SourDiesel97wrote on 29.08.2024:[10.0] "The most believable wrestler to ever step in the squared circle. I'm am eternally grateful that I was alive during his peak."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Chosen Onewrote on 28.08.2024:[10.0] "Ein Talent wie dieses erlebt man nur einmal im Leben. Ich meine, wie wahrscheinlich ist es, dass ein Kurt Angle als amerikanischer Ringer mit einem gebrochenen Genick olympisches Gold gewinnt und sich danach auch noch als geborener Pro Wrestler herausstellt? Nicht nur im Ring war er eine absolute Maschine, sondern hatte direkt bei seinem Debüt schon das gewisse Etwas an sich und sich in Rekordzeit einen Charakter aufgezogen, der einfach funktioniert hat. Er war überheblich, ohne es Böse zu meinen und wurde dafür gehasst. Er war auch, wie man auf englisch sagt, ein ziemlicher Dork, also schon irgendwie ein Nerd-/Geek-Typ, aber sobald die Glocke geläutet hat, eine riesige Gefahr. Diese Gegenseitigkeit war mega unterhaltsam. Aber er konnte auch gut den American Hero spielen und zwischen Face und Heel wechseln. Zudem war er sogar als leichter Psycho ziemlich gut - seine Rivalität mit Booker T war creepy aber auch so, so witzig. Kurt Angle konnte wrestlen, konnte reden, konnte interessante Charaktere spielen, konnte einfach alles. Es gibt sehr, sehr viele Legenden im Wrestling; so viele Leute, die alle auf ihre eigene Weise unglaublich waren, und doch möchte ich behaupten, und das so objektiv wie ich nur kann, dass Kurt Angle der größte Wrestler aller Zeiten ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: D2ashwrote on 26.08.2024:[10.0] "the most successful guy, the most entertaining, the guy had everything to convince us and this guy proved to me everything I wished for, one of the guys who almost never disappointed me, the best performer, just disappointing for his departure to TNA but this guy remains for me one of the top3 best wrestlers of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Joe907wrote on 25.08.2024:[10.0] "The greatest wrestler on the mat. A super technician wrestling machine. Either the attitude era, Smackdown Six, or his TNA run, he was always entertaining and gave it his all in the ring. Kurt Angle is legendary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SavageTygerwrote on 20.08.2024:[10.0] "Kurt Angle is the greatest PURE wrestler in the history of professional wrestling obviously due to him winning a Gold Medal (with a broken freakin neck) in wrestling, he clears Bret Hart in charisma and personality, he's a better "sports entertainer" than Shawn Michaels, seamlessly able to fluctuate from face to heel, goofball to maniacal wrestling machine, and an endless list of great matches and classic moments. IMO Kurt Angle is the greatest of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: lgccswrote on 12.08.2024:[10.0] "One of the best characters in WWE history, Kurt also had the unmitigated gall to be one of the company's most technically gifted. Hilarious and menacing, the quintessential example of a wrestler you hated as a kid and appreciated more and more as you got older. Iconic catchphrases, excellent moveset, the guy managed to make his supremely basic entrance theme into a spectacle. Generational."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Willie 19200wrote on 12.08.2024:[10.0] "A man who gave 110% in the ring no matter what company he was in and a legitimate Olympic Gold Medalist. He was an awesome wrestlers with great charisma and character work. His gold medal win was also amazing to see due to him also suffering from a broken neck at the time. Overall one of the greatest wrestlers and athletes in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: wadexerowrote on 08.08.2024:[10.0] "One of the few Wrestlers ever that deserves a 10. His work from WWE to TNA was always absolute top level and PERC Angle had a next level of craziness to him. From promo's to his fueds with Brock, Benoit, Cena, Styles all amazing pieces of work. Gifted is the only way I can describe not just Kurt but being around to witness his career as it happened."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KobashiChopMewrote on 02.08.2024:[8.0] "Kurt is one of those guys that thrived with whatever he was doing. He was a great babyface. A great heel. He has unbelievable comedic timing and could really do whatever was asked of him. Had he retired a few years earlier, and not wrestled as long as he did I would rate him a 10. But unfortunately he did not, and because of this I cannot give him a 10. If I were to just rate his career from the start till 2009? Absolutely I would rate it a 10/10."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheBigRed259wrote on 31.07.2024:[10.0] "They may call Bret Hart "The Best There Is. The Best There Was. And The Best There Ever Will Be" but as far as I'm concerned, Kurt Angle owns that title. He could do everything. As good a face as he was a heel. He could wrestle, he could brawl and he could go from performing comedy skits one week to being a terrifying psychopath the next."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Danewrote on 28.07.2024:[10.0] "10/10. He can pull off any form of wrestling and make it look good. Absolutely iconic comedic timing and he's also a pretty great wrestler. his TNA run is the best tna run of all time (guess the bar is low) but his WWE run is awesome as well. Easily my goat and top 10 on everyone's list."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: socioroxowrote on 26.07.2024:"Kurt Angle is the best in-ring performer of all time. His Olympic-level technical skills translate into captivating wrestling matches. Angle's versatility is unmatched; he excels as both a heel and a babyface, though his best work was as a heel. His comedic ability and charisma further elevate his status, providing unforgettable moments. For me, Kurt Angle stands out as the best professional wrestler ever, combining athletic excellence with compelling character work like no one else."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MatnificentMattwrote on 26.07.2024:[10.0] "Believable and incredible in the ring. On his worst days, he was great on the ring and on his best days, no one could hold a candle to Angle. The man was a machine and a total badass. It didnt matter who angle wrestled, he had fantastic matches with many different wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: brb75wrote on 07.07.2024:[10.0] "His background story and the way he plowed through while having the circumstances is nothing short of insane. Plus his technical quality which is unmatched by most people. One of the top 5 ever for me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: devourblastwrote on 03.07.2024:[10.0] "One of the best all rounders ever. Could wrestle circles around basically everyone else, could talk, could be hysterical, could be intimidating. One of the most complete wrestlers ever. And he did it all with a broken freakin' neck."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LMCwrote on 23.06.2024:[10.0] "The complete package. Wrestles like a machine. Never had a bad match. Charisma machine! Shame wwe wasted his comeback run with a loss to Corbin at mania in a heatless boring match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: blastermertwrote on 14.05.2024:[10.0] "Unmatched in-ring performance, and an absolute artist from his versatile wrestling skills to his top-notch meme quality comedy and Perc run brutality. He is like a russian nested doll, what more can we say? Even his comeback and his run with Ronda was spectacular. I hope he takes where he left off with Chad Gable again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BruceMarcos524wrote on 13.05.2024:[10.0] "Kurt Angle may arguably be considered one of the greatest technical wrestlers in history. A total package of a wrestler and added bonus is being an Olympian. In-ring, he is one of the most refined performers ever, his skills are well-executed, and he is mean spirited in the ring. He has amazing matches with the likes of Brock Lesnar, Chris Benoit, Shawn Michaels, Samoa Joe, AJ Styles, etc. He is the type of guy that even fought the likes of someone bigger than him, you may still think he has a chance on beating them up. His WWE run in 1999-2006 is nothing short but incredible and memorable. His time in TNA showed the more aggressive side of Kurt Angle and willing to take risks like we never able to see him do in WWE. One of the best highlights is the moonsault from the top of the cage, one of the most picture-perfect visuals I've ever seen from Kurt. One of his biggest feats of strength is when he was able to Olympic Slam Big Show and Mark Henry despite their weight, and he could do it with ease. But one of the most unbelievable sides of Kurt especially his time in WWE is his incredible timing of comedy. The way he acted like a dork especially during his alliance with Austin will always be top WWE comedy in my eyes. Also, despite being a trooper and being the butt of the jokes, he remained respectable and reputable as he managed to redeem it when performing in the ring. Overall, a solid A+ performer and a well-rounded athlete that can do strongman, high-flying, brawler and catch-as-can wrestling. WWE's best homegrown talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: 2pt0EcoBoostFusionwrote on 30.04.2024:[10.0] "Kurt Angle is one of the best to ever grace a professional wrestling ring. Chances are, if you were a wrestler and had a bad match with Angle, you most likely weren't a good wrestler because many wrestlers have had their best match with him. Kurt Angle became a pro wrestler following his successful Olympic career and everything went beyond well for him, he made himself a mainstay in WWE's division in the early 2000s, had some good comedic moments within those years, and eventually went to TNA and had a top 5 career there putting on banger matches after banger matches. Kurt Angle returned to WWE in 2017 and was a decent General Manager for some time but eventually, they went the route of having Angle put over Baron Corbin in Angle's retirement match and although I wasn't against it at the time, it turned out to be a joke after a few years. There are many copycat gimmicks of Kurt Angle in wrestling like Chad Gable and Gable Steveson, but they can't ever lace up Kurt Angle's boots even on Kurt's worst day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: JustAWrestlingFanwrote on 22.04.2024:[10.0] "What is there to say that has not already been said? Simply one of the greatest of all time. He is legendary in-ring. He is also extremely versatile, being able to go from a masterful comedy goof one moment, to being a wrestling machine that can main event any show in a matter of seconds."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MarkMcMarkingtonwrote on 20.04.2024:"The most versatile performer EVER. Amazing matches? Check. Great promos? Check. Can be a heel or babyface? Check. Can be used as a comedy character but still be taken seriously in the ring? Check. Hes got it all. Kurt is one of the few guys I can think of that is simultaneously one of the greatest in ring guys of all time and one of the greatest promo guys too. Very underrated on the stick. I cant put him over enough. 10/10 wrestler AND entertainer."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Zaidwrote on 17.04.2024:[10.0] "One of the greatest wrestlers to ever step foot in the ring. Not only was he the complete package, but he also gave us the best run in TNA history as Perc Angle. Bro was simply a wrestling machine. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TripleCrownwrote on 05.04.2024:[10.0] "Without a doubt one of the greatest wrestlers ever. I feel like he would've been remembered even more fondly if he had stuck around with WWE instead of leaving for TNA in 2006. Some of his best work was over there in TNA and not many fans got to see it (well, of course a lot did but the wider casual audience didn't.) Absolutely in the WWE Mount Rushmore, on his day there was nobody better than Kurt Angle. Perfect in-ring, perfect on the mic, perfect look, incredible charisma, the only downside was his substance abuse problems but I can't hold that against him given his issue with a broken neck. Even when he was slowing down a bit in the mid 2010s he could still 100% go and you knew he'd put on a fantastic match regardless as to who his opponent was. WWE did him so dirty though, the retirement match against Baron Corbin was an absolute joke and was just utterly disrespectful to a legend like Kurt Angle. Aside from that, you couldn't ask for a better wrestler, picked it up so quickly and just grew into an absolute megastar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Dirty Diegowrote on 01.04.2024:[10.0] "Definitely in my top 10 , theirs not anything to critique when it comes to Kurt angle, year 2000 one of the biggest years in the wwf he won every title and the king of the ring in his rookie year, angle is the most legit athlete ever to go into pro wrestling, he picked up every aspect of the Buisness faster than anyone, he with bret hart probably the best in ring worker of all time and thats just one aspect of his many strengths, he is the total package for real sorry lex, he could do it all, he was one of the funniest ever wrestler when it came to promos, his character and charisma were up their with The rock and Stone cold, Kurt in my opinion had more 5 star matches than anyone in the wwe he got classic matches out of The rock, , Stone cold, undertaker and triple h as well as having all time classics against Brock leaner, Shawn Michaels, an styles, Samoa Joe, Benoit, Eddie g, and many others truly a very special talent"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: awesomedarkwrote on 30.03.2024:"Greatest of all time in my opinion. I think there are a lot of reasons to back this, but the main one is that he is a hell of an entertainer."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ultravioletshiroiwrote on 22.03.2024:[10.0] "One of the best, if not the best American wrestlers ever. Kurt Angle is or was an elite at both amateur and professional wrestling, and his dedication to the sport of wrestling is almost if not totally unparalleled. A true top card draw who wrestled countless 5 star matches and he can connect with the crowd whether they're shouting "you suck" chants as a heel, or cheering him as a babyface. Kurt Angle is one of the few all time greats and his matches are never boring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: mrwfxtremewrote on 16.03.2024:[10.0] "I've always been a huge fan of kurt angle work i had the chance to seen one of his first wwf matches live vs terry Taylor. in may 1999 in baltimore you could see the future star learn his craft angle matches vs chris benoit are so intense to seen angle could have a classic with anyone"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BungeeBombwrote on 15.03.2024:[10.0] "One of the goats of professional wrestling, I cant say anything about Kurt Angle that hasn't been said already great in ring and character worker that brought an level of intensity to his matches that few on this sport can do."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TallNick2wrote on 28.02.2024:[10.0] "One of the greatest to ever grace the squared circle. The man could really do it all, from being the nutjob highflying perc angle or the comedy babyface he was always insanely smooth in ring and on the mic, its a shame people doubted him as he was starting the wwf due to his size, yet was able to prove them wrong."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: gabriarewrote on 23.02.2024:"It still baffles me how someone can go from comedy hell, to beloved baby face and to absolute monster so smothly and all of that while been one of best in-ring performers of all time."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Spookylol1wrote on 21.02.2024:[10.0] "Amazing in the ring - Check Amazing on the mic - Check Amazing as both a face and a heel - Check Draws money - Check The most complete package superstar that has ever existed. It's a shame that injuries and addictions robbed us what should have been the undeniable GOAT of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: shilderwrote on 14.01.2024:[10.0] "Kurt is the actualy Greatest of all Time. Remove all bias and just look at wrestlers. Kurt has it all. Gimmick, in ring talent, mic work, looks, if a wrestler needs it then Kurt has it. Kurt Angle is the best there was, the best there is, and the best there ever will be. Better than Bret, better than Shawn, better than every other wrestler that has stepped into the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Madladwrote on 08.01.2024:[10.0] "For me Kurt Angle simply is the greatest wrestler of all time and not just that he's also the best sports entertainer maybe ever? The Rock is close ngl.Kurt had everything he was a dork and one of the most intense and scary wrestlers at the same time. His comedy act was top tier and oh my god how many wrestling classics.one of a kind talent. its amazing that Kurt didn't start pro wrestling until his 30s and yet he got over in every way on WWEs greatest roster"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: thedman0310wrote on 31.12.2023:[10.0] "The best overall wrestler in history. Peak wrestling ability combined with amazing promo work and character game. Kurt Angle is the best. It's true, it's damn true!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Grapefruit Juicewrote on 13.12.2023:[10.0] "The true GOAT of pro wrestling. The look, the charisma, the talent, Kurt Angle has everything. There is no weak points in the mans game, worked at his lowest point like a star. Im glad we still have Kurt and hes doing better, the dude deserves the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Dntbamarkwrote on 10.12.2023:[10.0] "In the ring, easily one of the best performers out there. He brought a sense of legitimacy to the sport with his athletic pedigree and could produce fantastic matches with top guys like The Rock, Triple H, Steve Austin, Brock Lesnar, Undertaker and Shawn Michaels. He also was able to hang with PREMIER workers like Chris Benoit, Eddie Guerrero and Rey Mysterio and produce countless moments and matches with them as well. Drug use, personal issues and injuries hampered him a bit as he stayed in the business longer but he was somehow able to mask that and keep himself on top for years past his shelf life. Great promo too, he was literally the total package."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheDeitywrote on 07.12.2023:[10.0] "Kurt Angle is a legitimate gold medallist who was very entertaining on the mic and surprisingly excelled as a pro wrestler very early into his career. He's easily one of the best of all time. There will likely never be another Kurt Angle, as other freak athletes have often missed some important wrestling trait by comparison, with the most notable example being Gable Steveson. Most of Kurt's matches (barring his last WWE run where he couldn't move much) still hold up very well today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kellbobwrote on 30.11.2023:[10.0] "The pure boy, loved him in the early years and his intense persona he displayed when he went bald, bless him. Hey ho, he was definitely one of the best of all time and stole the show from the overrated Cena at wrestlemania 21. So sad Cena was pushed when you had a guy who could legit spark the fooooook outta him"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: JediSaiyanMaster1203wrote on 19.11.2023:[10.0] "Kurt Angle might just be the best talent WWE has ever cooked in history, only very few can be debated. Here we have a man who actually won an Olympic Gold Medal with a broken freakin' neck, and made it part of his gimmick and ended up being a great heel when he debuted as the "heel who thinks he's a babyface." Kurt Angle was a quick learner as well, because he's that naturally gifted and has unique talents that not everyone can possess. During that time, Kurt Angle mostly did comedic stuff, and it was very funny. Whether he was spraying people with a milk truck, wearing a teeny tiny sombrero, teaching celibacy to kids, etc. he was an amazing entertainer. Kurt Angle was also apart of the "SmackDown Six" back in the day, often having incredible matches with the fellow SmackDown Six members, his tag team match with Chris Benoit against Edge and Rey Mysterio is, arguably, WWE's best tag team match of all time. As the years go on, Kurt Angle shifts to a more serious and more evil heel, from shooting a dart gun at Big Show to shave him bald, handcuff Eddie Guerrero to beat the life out of him, chasing after Sharmell to get back at Booker T, saying the most problematic things in 2006 to make a point that the fans will cheer him no matter what, etc. Kurt Angle has had countless great matches and feuds with the likes of Shawn Michaels, Eddie Guerrero, Brock Lesnar, Chris Benoit, John Cena, AJ Styles, Samoa Joe. and so many more to name, he is one of the best ring generals, one of the best technicians, great on the mic, amazing character work, very charismatic, can be a serious badass and funny goofball with ease. And of course, "Perc Angle" being one of the wildest runs a wrestler could ever have, despite his drug use was bad during that time, Kurt wrestled like he was on a whole different planet during that time, and you could tell. Overall, Kurt Angle is one of my all time favorites, he could do anything you gave him the task to do. Oh It's True, It's DAMN True!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jone2tonewrote on 03.11.2023:[10.0] "Probably the greatest to come out of the Attitude Era, and he continued to show his greatness right up until retirement. In addition to his actual wrestling ability the man could work - he understood how to work the mic, the crowd - and he picked up the pro wrestling side of his work with the kind of skill that only a natural has. Others may have made it bigger, paid a lower price for that fame, and had longer careers, but not many. Kurt's truly in a class by himself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: cioranwrote on 04.10.2023:[10.0] "Legendary. Great worker, great on the mic, strong look. Can do character work that ranges from comedic (in parts of his WWE run) to psychopathic group leader (Main event Mafia TNA run). Can wrestle in every style imaginable. Was the face of TNA and got people watching it. Has an utterly insane cagematch with Mr. Anderson (WWE Mr. Kennedy), a feud w/Double J that intermingled his real life divorce and kayfabe feud that was insane and controversial (and produced some great matches with a lot of "Are they shooting? " moments) and highly technical matches w/Benoit and others. Also more acrobatic matches that were out of this world w/HBK, and even tag stuff w/AJ Styles. Probably the most good matches of anyone in the 00s. Pretty much picks up where Hart and Benoit left off as the best worker in the biz."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LGL19wrote on 03.08.2023:[10.0] "I think Kurt Angle is probably top 3 greatest wrestlers of all time in ring, his technical ability, his psychology and his explosive movement is incredible. He was also one of the most charismatic performers ever as well, he could be funny or serious and could always play an awesome heel whether it be the cocky olympic gold medalist or a psychotic wrestling machine and he was a lovable babyface and you could get behind him. He barely if ever had a bad match and had great in ring chemistry with almost everyone and even at his worst with his addiction struggles (Perc Angle) he was insane in the ring. Truly one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: lakenotblakewrote on 17.07.2023:"Kurt Angle is my favorite wrestler ever. His style of wrestling is my favorite style of wrestling. His match with HBK is sooooooo good."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: bigredtalk89wrote on 16.07.2023:[10.0] "There is no wrestler, in the history of the sport, that could play the absolutely most goofy MF'er one moment, but then be taken as a seriously as a legit tough guy in the ring moments later. It would take me all day to list all his greatest moments, while his flaws could fit into a single sentence. And what is his flaw? Well, if you followed TNA during his run, nothing, but I would argue that it's a shame that he didn't get to run his whole career in WWE. They really could have used him through the years of decline they went through. But that's not to say his TNA run was bad, he was just as good as ever, though from what I saw he did lose a bit of his goofy side. Some of the skits they had him doing would have buried most men with a tough guy rep but Kurt was just so damn good at playing the role that it didn't matter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: duketsao7wrote on 02.07.2023:"If not for his neck issues, he might have scaled even greater heights than he had. The total package (sorry, Lex). Some GOAT matches with Benoit, HBK and Lesnar."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Neon Aussiewrote on 02.07.2023:[10.0] "Wrestler of the Decade for 2000-2010. Kurt Angle brought a skillset and pedigree never before seen in WWE and combined it with an intensity and sense of realism that made him of the most entertaining and skilled wrestlers ever to step foot into the squared circle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: InsertFunnyNameHerewrote on 17.06.2023:[10.0] "Angle is my favorite and quite possibly the greatest wrestler to ever lace up a pair of boots. The ultimately complete package. Nobody could wrestle like him, few could talk like him, and few could do the things he could do. My GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Ruthless Attitudewrote on 14.06.2023:[10.0] "He just had everything going for him. He was an outstanding wrestler, a top draw performer that could steal the show at any given moment. He was amazing as a heel with thecomedic timing to his promos as well as working an intense style while also not afraid to be the butt of the joke sometimes. He became so respected as an athlete by the fans, that they was strongly behind him as a face too. This was one of those times where WWE struck gold (pun intended) the moment he debuted and they was justified when they pushed him to the title on his rookie year because in time he became the very best talent the WWE had to offer. His ability to not only have amazing matches, and adjust to any given storyline coming his way without ever looking out of character made him one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Giantfan1980wrote on 07.06.2023:[10.0] "Kurt Angle was great the moment he came into the WWFE and he had everything you wanted in a wrestler. The look, the charisma, the talent, and he could even pull off comedy stuff."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ItsToniTime89wrote on 16.05.2023:[10.0] "Einer der besten technischen Wrestler der WWE Geschichte, besser gesagt in der Geschichte des Professional Wrestlings für mich. Er kam als Olympia Sieger rüber zur WWE, wurde am Anfang von allen Seiten belächelt und hat's allen gezeigt. Nicht nur im Ring ist Angle Spitzenklasse, sondern auch am Mikrofon. Wie er regelmäßig mit den Fans geworked hat, egal ob als Face oder als Heel, war meisterhaft. Schade, dass man Angle 2019 nicht das Abschiedsmatch gegeben hat, was ein so toller Performer wie er eigentlich verdient gehabt hätte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DangoDaisukiwrote on 08.03.2023:[7.0] "Kurt Angle war schon ein guter Wrestler mit seinem Ringer Gimmick und Fähigkeiten. Ich habe in ihn aber nie einen World Champion gesehen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: kewf1988wrote on 26.02.2023:[10.0] "Kurt Angle was a complete package, who got the business extremely quickly during a time when the WWF was at its most popular. Really good in the ring, extremely charismatic, and great on the mic. He also had a great TNA run later in his career, which showed that he wasn't just a product of WWE developmental."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MilkDDTeawrote on 18.02.2023:[10.0] "On top of being undoubtedly one of the most technically proficient workers in the history of pro wrestling, this man was incredibly well-rounded in all aspects of performing in the ring. He was an intense machine that could dish out barn burners on the weekly, whilst delivering on comedic angles and goofy segments just as well as he did a series of suplexes. Angle excelled at everything thrown at him through his career, and left us with a multitude of classic matches and unforgettable moments."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: John Brandowrote on 17.02.2023:[10.0] "Kurz gesagt einer der großartigsten Wrestler überhaupt und technisch auf einem absoluten Top-Niveau. Seine Partie mit Michaels bei WrestleMania 21 war lange Zeit auch mein persönliches "GOAT"-Match. Im Mikrofon immer gut und ausgestattet mit tonnenweise Charisma. Dazu neben Austin einer meiner Lieblinge. 10 hochverdiente Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KKeanelwrote on 12.02.2023:[10.0] "Brilliant indvidual. His run between 2002-2009 in WWE and TNA was great example of him as a entertaining TV persona and technical machine. His last run 2017-2019 as a GM and occasional in-ring appearances wasn't good (especially losing retirment match to Corbin), but overall he has to be consider in all-time best group."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: benh2wrote on 20.01.2023:[10.0] "One of the all-time great wrestlers. Technically so smooth and accomplished but a rarity in that he came from amateur wrestling and picked up all the unique aspects of pro wrestling almost instantly. Developed great psychology, understood how to pace a match, fed superbly for his opponents, knew where to be in the ring for upcoming spots and had a lovely believable moveset. Learned a variety of styles and had quickly evolved from the guy who could only have good technical matches. Character work was shaky to start with but after a couple of years he'd mastered that as well and was both a great babyface and heel, as well as growing into one of the better guys on the mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: dripwrote on 19.12.2022:[10.0] "IMO one of the most complete wrestlers ever, he's got it all he can talk, sell, and work his ass off in the ring. Definitely top 10 all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MainEventMasterwrote on 02.12.2022:[10.0] "One of the most insane, awesome, and just plain greatest wrestlers ever. This dude just constantly put on amazing matches and his promos were entertaining as shit too. A fucking gem Kurt Angle was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Enriquepollazzowrote on 30.11.2022:[10.0] "Would have been a easy 10 if he never went to TNA. They took the humor out of his character and treated him like a MMA badass and the matches were good but that's not as good for his character. They didn't have the star power though so its not like he had SCSA and Undertaker to play off anymore."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jmira17wrote on 27.10.2022:"Amazing wrestler top 5 for sure and his promos are incredible, he can everything, he can do any character, he can perform in every promotion, he can give a 5 star match with anyone..... What a legend!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LTwrote on 12.10.2022:[10.0] "Im Ring kann man für Prime Angle einen Case für den GOAT machen und auch der Story character war meistens genial. Er war auch ai von WWE sehr unterhaltsam"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RavenCrow75wrote on 06.10.2022:[7.0] "For the most part I will be basing my Wrestler ratings on five criteria four of which are based on in-ring ability and the last on charisma. I believe these five criteria are pro wrestling's version of Tommy Lasorda's criteria of "five points" in baseball. For pro wrestling those five criteria are power, speed, technical ability, hardcore & charisma. Kurt Angle's scores: Power: 7 Speed: 7 Technical: 10 Hardcore: 6 Charisma: 7 for a total of 37 and an average of 7.4 rounded down to 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "The most complete wrestler I have ever seen. As a serious or comedic character, as a face or a heel, mat-based, hardcore or fast pace action, there is no aspect of wrestling where he isn? t at least good. What a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: GM56 Championwrote on 23.09.2022:[10.0] "A true wrestling machine. Sometimes goofy, but mostly a force to be reckoned with, especially back in 2005 - 2006. One of the best to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SoomerSloomwrote on 20.09.2022:[10.0] "My all-time favourite wrestler. He was a complete package with minimal training, an incredible worker with a near-perfect legit background, a great character, a fun promo, a despicable heel, a beloved babyface, and the only guy that gets told he sucks as a term of respect and endearment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ProWrestlingGuy316wrote on 16.09.2022:[10.0] "Auf den Punkt gebracht einer der Besten aller Zeiten. Er konnte so ziemlich alles: Promos halten, Heel und Face gleich gut spielen, unterhaltsame Comedy und auch ernst sein sowie in seiner Prime in der Lage, selbst eine Mülltonne zu einem soliden Match zu ziehen. Musste seinem Lebensstil und Verletzungen in den letzten Jahren Tribut zollen, hat aber noch rechtzeitig den Absprung geschafft. Er hat es verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KSupreme3wrote on 27.08.2022:[10.0] "Kurt Angle is one of the greatest technical wrestlers to ever do it. He had the greatest rookie run in WWE history. Olympic gold medalist, won many championships in multiple promotions and classic matches worth rewatching. Truly loved him as a heel. He knew how to turn the crazy on. The man knew how to draw heat. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: face painted legendwrote on 25.08.2022:[10.0] "One of the very best all around performers to ever lace them up. Excellent at every single thing he did. He was a wrestling machine in the ring, he could cut a great promo, he could be as serious as it got, or he could be as funny as it got. He's also one of the elite few who because he won an olympic gold medal with a broken freakin' neck and was a shoot amateur wrestler could have that kinda aforementioned range with his character at the time he had it, and it not get criticized because of what he was capable of doing once the bell rang. I think if it was anyone else they'd get laughed at right out of the building no questions asked. Can't say enough good things about Kurt and how great he was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: nothingleftinsidewrote on 08.08.2022:[10.0] "It's hard for me to find a criticism of Kurt Angle. Almost right from the beginning, he was one of the best in the ring- from workrate, to pacing, to psychology, to execution, to pantomime, to facial expressions, he was among the best in his era. Even when he was strung out on drugs the performances he gave were the envy of most everyone else on the card. His redemption arc, overcoming addiction and neck trauma, working class background, and olympic gold medal only add to the aura of a true american hero and overall amazing person. His promo work is also good. They were worried at WWE what they were going to do with this goofy, bland dork but he was able to take what little personality he had and make it work for him. He's not Steve Austin, but pretty much every talking segment he was ever in holds up today. A great babyface but even better heel, Kurt is the guy you like to boo when he's on the mic but cheer in the ring. He gave over 100% every single time he went out there. A+ worker, A on the mic, A- look. I think he gets overlooked as one of the all time greats but he's got it where it counts- everywhere. Any category, any era, he stands up to the best of them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: zachattack2023wrote on 26.07.2022:[10.0] "I think kurt is one of the best wrestlers ever and he had some instant classic matches. He had a great run in wwe and tna he was just one of the pure wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Muggowrote on 15.07.2022:[10.0] "Prime Kurt Angle is the closest a Wrestler can get to perfection. World Class in-ring skills, a great look, great mic work and Charisma, and an intensity and legitimacy that very few, if anyone has ever had. His only issues was that he was on a timer due to his past injuries, and the drug issues those injuries caused."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: sbg2022wrote on 11.07.2022:[10.0] "Kurt Angle is a wrestling machine. I mean to win a gold medal with a BROKEN FREAKIN' NECK is extraordinary. His matches in the WWF with Chris Benoit were legendary. His feud with Samoa Joe in TNA was incredible. I mean, Angle at 53 years old, can still IMO put on a quality match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BAILE3wrote on 01.07.2022:[10.0] "The BEST in ring performer of ALL TIME. He was that damn good. Amazing technical wrestler who worked with anyone in any style. One of the rare wrestlers which have barely any bad matches. Inspired the next generation of technical wrestlers due to how good he was. Not to mention how fucking charismatic he is, he can cut any sort of promo and it? s guaranteed to be good. He is one of the funniest wrestlers ever. He? s gotta be in my top 10 simply just for his days in TNA. When he was Perc Angle he was unstoppable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Rahul77wrote on 21.05.2022:[10.0] "One of the best wrestler of all time and one the wrestler among my mount Rushmore with AJ Styles, Eddie Guerrero and Shingo Takagi. Pro wrestling's only gold medalist have gained one the overall best performer of all time and will be in everyone's top 10. He is machine in the ring and will goofy outside as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Thibaultwrote on 19.05.2022:[6.0] "Kurt Angle was a good storyteller, and a very good technical wrestler, but he didn't have the level of precision, coordination, intensity and style of the greatest wrestlers of his generation, in my opinion."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Maxkappelnwrote on 14.05.2022:[10.0] "Der beste Wrestler des neuen Jahrtausends. Vielseitig einsetzbar. Die Matches sind immer Ein Ereignis. Am Mikrofon top. Selbst als Comedy Act überzeugend. Der letzte Run in WWE zwar nicht Mehr so gut, aber lag an seinen Verletzungen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Tomas Cunhawrote on 22.04.2022:[10.0] "I don't think I've ever seen anyone able to be such a goofball in backstage segments, and then come across as such a badass in-ring. Angle could elevate many of the guys he worked with, and he's unquestionably one of the greatest ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Pertinaxwrote on 11.04.2022:[10.0] "One of the GOATs of not only amateur wrestling but pro wrestling/sports entertainment. Kurt Angle was a real natural for the business and caught on to it almost instantly. He was responsible for some of the matches in WWE/TNA history. 10/10 for just his wrestling ability, but add to that his tremendous charisma and comedic timing and you have the perfect professional wrestler. I don't think there will be another quite like him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Conquistador37wrote on 02.03.2022:[10.0] "Of all of the WWF/E main eventers over all of the decades, Kurt Angle is right there with Bret Hart and Shawn Michaels in terms of in ring ability and to me - excels both in watchability. So yah, my favorite WWF/E main eventer of all time. Angle always put in his everything (sometimes to a fault in regards to his body) and made the WWF/E and wrestling altogether a far better place when it came to bell to bell action. Hell of an entertainer as well (with some stuff that really felt like a parody of Bob Backlund) dork ass Kurt Angle is comedy GOLD. One of my all time faves. No true flaws, only some unfortunate injuries and personal decisions that *almost* derailed his career (but didn't! ). Highest of recommendations."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: GriffinXwrote on 03.02.2022:[10.0] "Kurt took all the drive and passion he had to be the best athlete in the Olympic wrestling tournament made him one of the best pro wrestlers to ever do it. Guy loved to get in the ring he would have a great match with just about anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BrayanLaPrewrote on 31.01.2022:[10.0] "The absolute epitome of what I love about professional wrestling. In the ring, one of the absolute best in the history of the industry. Technically immaculate, freakishly athletic, and in possession of an unbelievable blend of power and agility. As a storyteller, the same is true. As a character, few have ever been able to flip the switch between face and heel, let alone goofy and serious, like Angle was able to. Throw in iconic matches and feuds with the likes of Shawn Michaels, Chris Benoit, The Undertaker, Brock Lesnar, AJ Styles, Eddie Guerrero, and Triple H, and Angle has as complete a résumé as anyone I have seen. If a discussion about the GOAT is being held, then Angle deserves to at least be mentioned. A five-star, 10 out of 10 professional wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: rishabhwrote on 31.01.2022:[10.0] "The fact that he transitioned from being an olympic athlete to a professional wrestler in a short time is already a big accomplishment. As far as his wrestling is concerned he was an exceptional talent and a really all round performer. He could be given any role and he would be great it. There aren't many who are greater than this man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Abo96wrote on 04.01.2022:[10.0] "Kann in einem Moment unglaublich witzig sein und im nächsten Moment einer der größten Badasses im Business. Wahnsinnig unterhaltsam zu jeder Phase seiner Karriere, ob am Mikrofon oder im Ring. Hatte fantastische Matches sowohl bei der WWE, als auch bei TNA. Dazu natürlich extrem glaubwürdig durch seine Zeit und Erfolge als Amateuerringer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CaptainCharisma1997wrote on 17.12.2021:[10.0] "One of the most ingenious performers ever; a true wrestling prodigy. Fucking hilarious yet totally believable and serious as both a face and a heel and obviously incredible in the ring. He sucks"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CoolKylewrote on 23.11.2021:[10.0] "Kurt Angle might actually be the best all around pro wrestler ever to do it when you think about it. That's hyperbole but he's legitimately someone who could do it all. He could be a clown, a world champion wrestling machine, an evil villain, and you always believed it. I"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: FACEElmo295wrote on 06.10.2021:[10.0] "The fact Angle transitioned from freestyle wrestling to professional wrestling with pure ease just shows how good he is. The guy remains for my money the best mat wrestler ever in professional wrestling. Not only that he knew what to do in order to work the crowd, his charisma is second to none and I loved all those comedic segments Angle did. But maybe after that he got even better as his character became more serious, and it worked thanks to how good he is. Also he won a gold medal with a broken freakin' neck!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: No Onewrote on 04.09.2021:[10.0] "One of the greatest built from scratch WWE Wrestlers of all time. The greatest wrestler to ever make the transition from Amateur Wrestling to Professional Wrestling. The most successful first year of any wrestler in WWE history (in contention with Brock Lesnar). One of the greatest in-ring performers of all time. Popularized The Angle Slam & The Ankle Lock. Feuds with Chris Benoit & Brock Lesnar are legendary. Put on matches against Shawn Michaels, Steve Austin, Chris Benoit, Brock Lesnar, Rey Mysterio Jr, & Edge that will always withstand the "Test of Time". Had memorable matches in TNA against AJ Styles, Samoa Joe, Abyss, & Jeff Jarrett, amongst others. Became one of the best Ring Generals of all time. Gave it his all in every match. Gave way too many re-watch worthy instant classic matches in the WWE, TNA, & in NJPW. Held the WWE, TNA, & IWGP World Championships. The rightful 2000's Wrestler of the Decade. Was my favorite wrestler of the 2000's decade. His career in both WWE & TNA are equally legendary. Highly charismatic. Excellent Babyface. Excellent Heel. Excellent promos. Could be a totally hilarious goofball & then turn into a vicious, near psychotic killer. Amateur Wrestling Legend that became a true Professional Wrestling Legend... Oh it's true, it's damn true!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Tomatowrote on 27.07.2021:[10.0] "He was one of the best wrestlers of all time. Excellent in the ring, charismatic, great on the mic and had so many great matches. And he won a gold medal with a broken freakin' neck (crazy, right? )."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: texasyoshwrote on 18.07.2021:[10.0] "My bitch in a suplex Bitch, hadouken Fifty grand show, mmmm, bitch I'm so stupid Young BasedGod fucked the bitch with handles My swag like Goldust, no homo, ten bitches Swag Steve Austin, call me Kurt Angle Ankle-lock my bitch, she don't wanna pay me Flex a suplex, with the crew neck With a hundred bands, bitch don't disrespect"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Kurt Angle always seemed like one of those guys who could be great at anything he put his mind to, and luckily for us that thing was wrestling. There was no facet of the wrestling business Kurt Angle wasn't elite at. He was an amazing-- amazing-- worker, a phenomenal promo, great character. He was the whole package in a way that almost no wrestler was. He wasn't just good at everything, he was elite at everything. All-time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kungwrote on 30.05.2021:[10.0] "You can make an argument that Kurt Angle might be the greatest total package of a wrestler who ever lived. He was stellar in the ring, he was absolutely fantastic on the mic, and he had countless legendary moments within WWE that it's genuinely hard to think of what he couldn't do at a high level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Rodycaz IIwrote on 18.05.2021:[10.0] "Truly one of the all-time greats. Greatest technical worker in the history of the business, entertaining gimmick, solid promo; the guy had it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Chechblue20wrote on 02.05.2021:[10.0] "One of the very best wrestlers of all time. He was amazing in the ring and was the best wrestler for WWE during the time where they pushed big monsters and did not focus on wrestling much. Will always be a legend, but it is unfortunate his last match was against Boring Corbin. He deserved a much better farewell."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BuddySchultzwrote on 29.03.2021:[10.0] "Whether this cat be drinking milk or wearing silk, he's one of the best to ever do it. He was the best at being a condescending nerd, the best at being an all-round beast, and the best at being our hero. I've worded that as if he's no longer alive. He is, but he's also retired. My granddad, who isn't alive, thought his name was 'Coat Hanger'. Rest in peace dude, and long live Kurt Angle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ExcitingProWrestlin3wrote on 25.03.2021:[10.0] "THE WRESTLING MACHINE. Easily one of the greatest of all time, great technical worker, could entertain, could really fire up a crowd. Very good, nothing more to say."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KENTAfanwrote on 14.03.2021:[10.0] "Kurt Angle in his prime is simply the greatest pure wrestler of all time. It? s true, it? s damn true. Nobody moved as well as he could and made moves look as deadly yet casual as he did. On top of that, he? s also one of the greatest talkers of all time, hugely underrated in that regard. He was one of the greatest heels in an era of many all time great heels. I could go on and on, but the truth is anyone who has a functioning brain and had watched a Kurt Angle match (well a pre-2017 match anyways) knows what I? m talking about. He was just a once in a lifetime athlete"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Uweuwesenwrote on 26.01.2021:[10.0] "Kurt Angle hat immer 100% gegeben! Als Ringer, als Midcardworker zu Beginn und komplett bis zum Ende als GM. Das war wohl auch sein Verhängnis. Ein Gesamtpaket wie man es nur selten erlebt, in allen Belangen! It? s true, it? s damn true"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: sanjurowrote on 24.01.2021:[10.0] "It's impressive enough that Kurt transitioned from legit Olympic wrestling to the pro style in no time. That he turned out to be one of the best promos of the modern WWE era is absolutely wild. And for a guy who originally told Vince he couldn't ever lose a match to preserve his reputation, it's amazing that he proved to be so great as a buffoonish character, neck-and-neck with Eddie and Jericho as the funniest worker to ever be a main event-level talent. Too many great matches with too many opponents to name, and only bad timing kept him from being able to have clinics with even more guys who stopped just before him (Bret, Owen) or came just after his prime (Bryan, ZSJ). Helped define the Ruthless Aggression era and then all but singlehandedly elevated TNA before that company's mismanagement dragged him down. Almost all of Dixie-era TNA's great matches outside the X Division and tag scene involve him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Old ride long linewrote on 16.12.2020:[10.0] "One of The greatest ? technical? wrestlers of all time. But unlike a lot of guys that were technical wrestlers, Kurt angle could actually deliver on the microphone. Wether he was playing the dopey idiot or Olympic hero. Baby face or heel the guy always entertained. His matches with the undertaker, Brock lesnar, big show, hhh, Austin, and Chris Jericho were all time classics. I truly believe if he stayed with the wwe he might have made his way into the G. O. A. T conversation. I would rank Kurt in the top 15-20 all time and definitely a top 10 personal favorite."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: rainmakerpunkwrote on 25.10.2020:[10.0] "Kurt Angle shouldn't be as good as he is, honestly it's mind boggling how good he is, for somebody who didn't spend his whole life training to be a pro wrestler to be this damn good is crazy, Kurt Angle went from being an olympian to just picking up pro wrestling and being one of the best to do it, he quickly mastered the in-ring aspect and what's more surprising is he perfected the entertainment side of wrestling, have more character and mic skills and charisma than just about anyone"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: brandon062896wrote on 18.10.2020:[10.0] "Outstanding wrestler and a legitimate tough guy to boot. His matches never disappoint. Being well versed in grappling and submissions, his matches are a technical showcase. Top that off with remarkable endurance and charisma, we have a one of a kind athlete"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SSEighty7wrote on 21.09.2020:[10.0] "One of the greatest wrestler to ever step foot in the ring. May be one of the most well-rounded wrestlers of all time. He can be a goofy face, cowardly heel, bad ass face, psychotic heel, and even a lovable authority figure. In the ring, he can adapt to any style, and has put on classics for a number of years. WWE-only fans may not realize this, but his 06-10 career in TNA actually rivals his WWE tenure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Donniewrote on 04.08.2020:[8.0] "If you only ever watched his peak WWF/E work, you'd think he's one of the greatest to ever do it. But when you actually watch all of it, you'll find a deranged cripple that had one match type and had to be dragged kicking and screaming by better men (AJ/Joe/Jarrett) into something different. When he was on, he was the man, but man when he off he was trash."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: martizzletaewrote on 22.07.2020:[10.0] "One of my personal favorites of all time! The man is a jack of all trades. Starts off as a goofy straight-laced guy, months later wins the world title and becomes a wrestling machine, putting out classic after classic, and could still find the time to be seriously entertaining"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: sabbathbloodysabbathwrote on 09.07.2020:[10.0] "I don't think it's much of a shock that he turned out to be great in the ring, but I don't think anyone could have predicted how entertaining his character would become as well, especially considering his gimmick is "wrestler. " I loved him on the mic almost as much as I loved him in the ring. Angle was one of the best parts of the Attitude Era, and that continued into the Ruthless Aggression era as well. One of the reasons I consider 2000-2004 to be WWE's peak."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Conorwrote on 16.05.2020:[10.0] "Kurt Angle was one of the greatest ring technicians of all time. Could be a great babyface, but was a far better heel. Had a wonderful sense of comedic timing and great character work. Had great matches with just about anyone; AJ Styles, Brock Lesnar, Chris Benoit, Eddie Guerrero, HBK, Samoa Joe, Steve Austin, Undertaker... etc. One of the greatest of all time and one of my favorites."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wrestlefan20wrote on 11.05.2020:[10.0] "One of the most talented wrestlers of all time. Had plenty of great matches, can play a comedic and serious heel really well and is also very entertaining to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TNBG2381wrote on 05.04.2020:[10.0] "Kurt Angle is one of the most talented wrestlers to ever step foot in a ring. What proves that is how quick his transition was from amateur wrestling to professional wrestling. His arrogant entitled gimmick made him one of the best heels in the wrestling business and his matches with Chris Benoit, Eddie Guerrero, and Shawn Michaels are legendary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: AAA3000wrote on 07.03.2020:[10.0] "Kurt "German Suplex" Angle. Angles Vielseitigkeit habe ich gemocht. Er war technisch gut und hat exzellent Matches geführt. Am Mikro konnte er auch was. War auch mal witzig. Egal ob Heel oder Face. Kurt Angle konnte alles, nur leider keinen richtig würdigen Abschied bekommen von der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheGorgis309wrote on 01.10.2019:[10.0] "Kurt Angle was the best damn wrestler going for about the entirety of the 2000s and leading into the 2010s as well, and I will battle anyone who challenges that notion. The total package, great technical wrestler, excellent mic skills that also get underrated a bit because of his mush mouth style of speaking and off course charismatic as hell, the three things that are key to my enjoyment of a wrestler. He was also a great seller and also had great comedic timing that has lead to so many funny moments through the years. Although his last years as a wrestler weren't that great, don't let that subtract from your enjoyment of the Olympic Hero. Oh it's true. It's damn true."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[10.0] "Everyone uses the "fish to water" analogy when talking about Kurt entering the world of pro wrestling & that analogy is right on the money. Kurt could do it all: heel, face, comedy, intensity, in ring work.... he was spectacular in every sense of the word."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CM Guevarawrote on 24.07.2019:[10.0] "Einer meiner absoluten Lieblingswrestler. Interessant ist bei Kurt Angle, dass er trotz seines sportlichen Hintergrunds zunächst ein Star war, aufgrund seiner schauspielerischen und komödiantischen Talente. Bei seinen Fehden gegen Triple H & Stephanie McMahon sowie gegen Steve Austin war es weniger die wrestlerische Qualität der Matches als die extrem unterhaltsamen Storylines, die die Fans begeisterten. Mit der Erfahrung wurde auch er besser im Ring, sodass er für einige Jahre der technisch beste Wrestler der WWE war. Erinnert sei an Matches gegen Brock Lesnar, Rey Mysterio und Shawn Michaels. Als er sich mit der WWE verkrachte und sich dem Himmelfahrtskommando TNA anschloss, war er noch immer einer der besten Wrestler auf der Welt und so lieferte er auch dort, trotz teils diffuser Stories, hervorragende Leistungen ab gegen Samoa Joe, Mr. Kennedy/Anderson (den er zu seinem wohl besten Match überhaupt zog) oder Sting. Nicht vergessen werden darf natürlich sein ewiger Rivale AJ Styles, die sich über die Jahre in ca. einem Dutzend PPV-Matches gegenüberstanden und nie enttäuschten. Bei seinem zweiten WWE-Run war er dann weit über seinen Zenit hinaus und er wurde nur noch sporadisch eingesetzt, leider wurde ihm auch kein ganz großer Abschied zum Ende der Karriere geschenkt. Ein genialer Wrestler am Mikrofon und im Ring!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wrestling Foreverwrote on 08.04.2019:[10.0] "Er ist eine Wrestling Machine die es schafft auch aus weniger guten Wrestler gute Matches herauszubekommen. Er ist eine WWF/WWE und TNA Legende der Mann hat fast alles gewonnen und so viel erreicht aber er sollte langsam aufhören. Leider ist er süchtig nach Wrestling trotzdem sollte er an seine Familie und seine Kinder denken. Er plagte sich nun auch mit einen gutartigen Tumor durch die Jahre, hat Nackenverletungen und sonstige Probleme am Körper sein Wrestling und seine Schlachten im Ring hinterlassen Spuren an seinem Körper. Er soll dieses Jahr als Aktiver aufhören ich möchte ihn nicht im Rollstuhl sehen. Edit 08. 04. 2019 Wenn das gegen Corbin sein wirklich letztes Match war dann war es richtig jetzt wirklich aufzuhören. Eine Legend ist Kurt längst aber der Körper ist doch längst kaputt darum soll er jetzt echt nicht doch wieder in den Ring steigen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: zephyrwrote on 16.03.2019:[10.0] "My rating for Angle represents his matches and character work pre-2010. The time when he was genuinely the single best mat wrestler in the world and could rock both a comedy gimmick or a serious break-your-body wrestler gimmick. Recent matches are obviously not up to his old quality anymore because he's almost 50 and hasn't been too kind to his own body over the years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Steamboat2511wrote on 05.12.2018:[9.0] "Kurt Angle ist einer der genialsten Wrestler der Geschichte. Technisch kommen da nur sehr wenige heran. Und so gibt es zahlreiche spannende und hochklassige Matches, die dem Fan in Erinnerung bleiben. Persönlichkeit hat er durchaus auch, wenn gleich er nicht sonderlich viele Facetten zeigt. Am meisten überzeuggt hat er mich stets als Heel. Am Mic zeigt er sich zwar solide, gehört hier aber sicher nicht zu den größten Könnern überhaupt. Als Fan des technischen Wrestlings gehört Angle für mich aber ins oberste Regal und in meine Top 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Stott Onewrote on 27.11.2018:[10.0] "A man who excels at both the entertainment and wrestling sides of the business, Kurt Angle is one of my favorite wrestlers. His work in both WWE and TNA include amazing match after amazing match. His matches with Brock Lesnar, Triple H, The Rock, AJ Styles, and dozens more are great to re-watch even decades later."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RatingsMachinewrote on 22.09.2018:[7.0] "I've never thought of Kurt Angle as this awesome, all-time great worker. He just had too many issues for me to put him in that top tier of the best workers in the business. These issues included inconsistent selling, over reliance on certain spots, and some of the worst looking punches I've ever seen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Tomlou12wrote on 17.09.2018:[10.0] "Not much to say here, just a legendary wrestler who deserves all the praise I can give. Watch his matches with Benoit and Lesnar and tell me otherwise."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: JEK 1991wrote on 12.09.2018:[10.0] "One of my favorite wrestlers of all time. Very talented in the ring and 1000% gifted. Even though he started his career older, he had the charisma and strength to perform in the ring. He was electrifying the crowds during the attitude era. Excellent feuds with Tazz, Chris Jericho, Steve Austin, Undertaker, Rock, Triple H, Brock Lesnar and Eddie Guerrero, etc.  My favorite time of him was in 2000. I didn't like when Edge shaved his head. Also he is great on the mic and great entertainer. He was always exciting to watch. There were challenges in his career like neck injuries but he overcame them. When left WWE, WWE totally forgot about and blacklisted him for years. He was great in TNA as well. When he came back to WWE because of being inducted in the hall of fame he was no longer blacklisted. Everything changed! It is great that he still wrestles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: pappahousewrote on 04.09.2018:[9.0] "Ein absolut herausragender Wrestler, ein guter Heel, ein guter Face. Kraft, Technik Kurt Angle hatte und hat alles was es braucht, um zu einer absoluten Legende zu werden. Ich hoffe, dass seine Pause als General Manager nun heißt, dass er sich wieder fit für einen Vollzeitjob macht. Einen der besten Moonsaults im Wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Makai Clubwrote on 01.08.2018:[6.0] "I have an on and off love for Kurt Angle. There are times where he is tremendous, where he can be a technical genius and times where he is very annoying to watch. There are times in his career - like his TNA run for example, where he would just be lazy and has no substances to him. He would just spam suplexes and basically have spot fests every time and it would just leave loads to be desired. I feel his match structure - or lack thereof make his matches suffer. Like his Benoit matches. He does have his great matches like his Austin feud but I'm generally hit and miss unfortunately."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Alex Maedawrote on 28.07.2018:[10.0] "Kurt Angle bewegt sich nun schon seit Jahren zwischen Genie und Wahnsinn, in jüngerer Vergangenheit war es jedoch meist nur noch Wahnsinn. Angle ist ein absoluter Ausnahmeathlet, das steht außer Frage. Unheimlich stark im Ring, ein guter Redner, der sowohl Comedy als auch den ernsten Stil gehen kann, dazu (ganz wichtig! ) funktioniert er als Heel genauso gut wie als Babyface. Der größte Kritikpunkt, den ich an ihm habe, ist seine Zeit nach der WWE-Karriere. Die ersten Jahre bei TNA mögen noch ordentlich gewesen sein, wobei auch das ein oder andere starke Match herauskam, doch mittlerweile hat Angle deutlich seinen Zenit überschritten. Aber leider gehört Kurt auch zu der Reihe von Wrestlern, die es verpassen, rechtzeitig aufzuhören und wohnur durch gravierende Verletzungen, die ich ihm nicht wünsche, zur Vernunft gebracht werden können. Über das Lebenswerk als Wrestler gesehen, reichen die wirklichen großartigen Leistungen zu Hochzeiten für gute 8 Punkte. UPDATE: Solange das Tag Team-Match mit Ronda sein letzter In Ring-Auftritt war, bleibt die 10 stehen. Ich kann ihm einfach keine Punkte abziehen. Er ist großartig. Oh, er war auch im Greatest Rumble. Egal. Hör jetzt einfach auf und bleib General Manager."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LrockBesnarwrote on 22.04.2018:[10.0] "Yugo, you are probably a little child who is a student of elementary school. The wrestler you call that sloppy is a 1996 Olympic gold medalist. He is a true WRESTLING legend in every way. Not only in Pro wrestlng. (lol).  You probably only watched him at WM34. He's generally funny on microphone and amazing wrestler in the ring. You do not have to love him of course but what you say things about him are not true at all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: test85wrote on 16.04.2018:[9.0] "Für viele ist er der Beste Wrestler aller Zeiten in der WWE und im US Main Stream Bereich. Sicher gehört er zum Kreis Wrestler (u. a. Y2J, Hbk, Hitman, Styles) die sogar mit einem Sack Kartoffel ein gutes Match zeigen können. Aber so ähnlich wie bei Punk will mir bei ihm der Funke nicht ganz zünden. Einer der dieser Typen die sowohl als Heel als auch als Face funktionieren. Update: Aktuell würde ich auf 8 Pkt abrunden. Sein In Ring Comeback gefällt mir momentan überhaupt nicht. Er wirkt irgendwie hölzig. Aber am Ende seiner Karriere wird sicher eine 10 stehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Oliver95xwrote on 23.03.2018:[10.0] "Einer der besten Techniker der Wrestlinggeschichte. Kurt Angle hat einige großartige Matches in seiner Karriere abgeliefert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jackleonewrote on 03.03.2018:[10.0] "One of my favorite wrestlers. Great technical skills, amazing character, good mic skills. He had everything to be a top star in the Wrestling Business and he is also charismatic outside the ring. Recommended matches: Wrestlemania match vs Shawn Michaels, everything in the feud Angle vs Benoit, Angle vs Samoa Joe series."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CHN325wrote on 04.02.2018:[9.0] "One of the best pure wrestlers of his generation, Kurt Angle could get a great match out of a broom. Highly athletic, always willing to put his body on the line. Suffered through a ton of injury issues because of this. Good to great mic skills, could do comedy well if need be."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TylerWhitewrote on 29.01.2018:[9.0] "Einer der besten Wrestler aller Zeiten. Im Ring ist er grandios gewesen und das in einer Zeit, zu der es generell viele gute Techniker gab von denen er sich trotzdem abheben konnte. Sein Charisma ist auch unglaublich und sein Gimmick war auch immer mega gut und natürlich einfach passend. Am mic ist er auch nie schlecht gewesen und konnte sich auch immer verbessern und einige sehr gute Promos halten. Außerdem hat er mit "You Suck" einen der größten Chants der Wrestlinggeschichte etabliert und in meinen Augen zusammen mit seinem richtig guten Theme Song auch den Besten. Er konnte ziemlich gut die Face-Rolle spielen aber noch besser die Heel Rolle und er war generell einfach ein starkes gesamtpaket. Einer der Besten Wrestler aller Zeiten. 10/10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ianlapierrewrote on 04.11.2017:[9.0] "Kurt Angle was one of the greatest wrestlers in WWE history before he departed and spent a decade wrestling in TNA. The only knock on Angle (who really was a complete package) was that he spent way too long away from the big leagues. One of the greatest 15 of all time, his legacy will suffer because of this absence."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: taabr2wrote on 10.09.2017:[10.0] "Another one of my favorites. Kurt Angle was designed to be a wrestler. Angle's debut was in late 1999 but by the end of 2000 Angle was legit one of the best wrestlers in the world. It is amazing to see how he rapidly improved in all the difference aspect in wrestling in terms of character work, mic skills and in-ring ability in such a short time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: flashbackwrote on 06.06.2017:[10.0] "Phenomenal worker, hilarious on the mic - and very impressive the way he transitioned from amateur to pro wrestling (and apparently in record time, making it even more impressive). Seems like he could be a great comedic actor - the way he played the oblivious / dumb American champion so perfectly was a refreshing twist on how WWE usually portrays patriotic characters (aka the ultimate good guy). I really respect his reasons for going to TNA (a reduced work schedule) - but sadly the stink of that company has tarnished pretty much everyone that ever dropped in, regardless of what they did there. While I hate WWE, it is good to see him back there so hopefully he can either end on a high note, or stick around in a non-wrestling capacity, cause he is still gold on the mic and could be a huge asset to the company."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TrevPuroFanwrote on 04.04.2017:[7.0] "I don't think I agree with my good friend NastyYaffa that Kurt Angle is a totally bad wrestler, but I do agree that he is really overrated. He used to be one of my absolute favorites when I was younger, but as I grew up and my taste in wrestling has changed alot, I don't really see him as an all time great anymore. He has great mat/technical ability, but his psychology in his matches are very hit and miss, and he spammed too much not needed moves into his matches. I can't give him a complete 1, cause I think he has had some good matches, but I think a 7 is the highest I can go. I still have tons of respect for The Olympic Gold Medalist though, and his matches are still fun to watch"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SuTonwrote on 01.04.2017:[7.0] "Kurt Angle used to be good a long time ago, but even then he had holes in his game that kept him from being called great like selling, not giving spots breathing room to make them meaningful, repetition of moves that diminish their value, awkward transitions, and he could give a lifeless performance at times despite the pace he took. He doesn't have a lot of great matches and got worse after time until he was awful. His matches became the epitome of the epic main event style and what I didn't like about them. At his best, he was a great athlete, had better guys in the ring to accentuate his strengths and hide his flaws, hit some good suplexes, and worked at a fast pace that made for good short matches. Not an all time great like people thought he would be early in his career, but it's true he could be great at times."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Blood Pumpwrote on 29.03.2017:[10.0] "My favorite professional wrestler. He may not be the best, he may not be what he once was but hes always been at worst good. At his best though? Holy Christ was he amazing! He had so many great matches between 2002 and 2007 (Including my all time favorite with him vs Michaels at WM 21). He was an excellent wrestler, had an undeniable charisma, fantastic sense of humor, a unique look and could flip the switch between goofy and serious at the snap of the fingers. He was the jack of all trades and master at all, save maybe for in ring psychology but in all honesty he made up for that with his intensity (which was second only to Chris Benoits)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Owenwrote on 02.03.2017:[10.0] "Probably the greatest pure wrestler ever. Going over his qualifications seems like beating a dead horse. Simply put, he is awesome."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: coolserazwrote on 13.02.2017:[10.0] "In my mind, the best wrestler ever. Can be goofy, serious, intimidating, likable, detestable. Extremely charismatic, a very good promo and a tremendous athlete. All this did come at a heavy price but I am happy he is clean and at a better place now. A deserving headliner of WWE Hall of Fame in 2017."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: steviecwwrote on 13.02.2017:[10.0] "One of the greatest of all time from the Olympics, to WWE, to TNA to a brief but very welcome run across the UK independent scene of ICW, RPW and WCPW. His world titles, gold medals, triple crowns, tournament victories and grand slam wins all illustrate a pretty perfect wrestling career. He deserves the WWE HOF and he deserves his legacy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Changeling45wrote on 09.02.2017:[10.0] "Kurt Angle is god's gift to wrestling.  The fact that he was putting on top tier matches with WWE's main event talent with nothing more than a years worth of wrestling training is mind boggling.  Not long into his career he had already crafted a great character, working everything from funny babyface to cutthroat heel effortlessly.  He's the most gifted athlete in the history of pro-wrestling, a tremendous mat worker, submission specialist and suplex machine.  He is the most intense worker I've ever seen in the ring.  He's willing to do almost anything, all the while actually being able to do almost anything asked of him.  If not for working the majority of his career with lackluster talent in TNA, I don't doubt that he could've had one of the best catalogs of matches ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Titansrevengerwrote on 04.02.2017:[9.0] "Kurt Angle is the best wrestler that I have ever seen. From the very beginning he picked up every aspect of the game. He could talk he could work and was entertaining as hell. Plus he had the Olympic gimmick which was very marketable. I feel that Kurt burned out far to quickly and that the only reason he is not considered the GOAT is because a large portion of his body of work was in TNA land. If Kurt Angle had stayed healthy and wise he would be where John Cena is today and more over then a galaxy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Real Raterwrote on 01.02.2017:[9.0] "Ring: Klar in den 00er Jahren 10 Punkte, aber leider hat er bei TNA einfach etwas abgebaut dehalb 9/10 Punkte. (50%) Promos/Schauspieltalent:Klar gut aber auch nicht so besonders. 7/10 (25%) Charisma/Statur/Gimmick:Konnte super den Olympic Hero rüberbringen 9/10 . (25%) Sind dann insgesamt 8, 5 Punkte für The Wrestling Machine.  = 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: strongstyle77wrote on 17.01.2017:[10.0] "Auf jeden Fall in meiner Top 10 Wrestler of all Time. Einzigartiger Wrestler, das perfekte Gesamtpaket. Freu mich, dass er die HoF Class 2017 Main Eventen darf, hat er sich auf jeden Fall verdient. 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: rjsbx11wrote on 06.01.2017:[10.0] "The first of his ilk, to make the smooth and seamless transition from the amateur ranks to the professional wrestling. From his debut match in 1999 Survivor Series, you could tell that the mat skills would translate but what about the character. He ran with the initial reactions, and became a white meat, hokey, disingenuous, clean living blowhard and from there Kurt Angle became a staple in the WWF. Angle's rookie year is among some of the best,  and each year he showed evolutions in his character. His work in the ring remained elite, with great bouts against Brock, Benoit, HBK, Triple H, etc. Whether he was the funny over the top dork or the uber intense wrestling machine he would end his WWE tenure on, remaining over in all capacities. Then he began a whole new legacy in TNA, becoming one of their faces a decade with clashes against Joe, Styles and Sting which led to a TNA Hall of Fame induction. Now, enjoying a twilight run which include indy matchups and for some hopeful fans, a return to the WWE. Kurt Angle was one the most complete packages in all of professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ApexOfEvolutionwrote on 28.12.2016:[7.0] "Technisch sicherlich einer der besten Wrestler überhaupt. Liefert auch im höheren Alter noch tolle Matches ab, auch wenn er verletzungsbedingt etwas kürzer treten muss. Funktioniert als Heel immer großartig, aber als Face finde ich ihn teilweise zu pathetisch dargestellt, mit diesem "Ein-Mann-muss-tun-was-ein-Mann-tun-muss"-Getue, aber wahrscheinlich kommt das in den USA gut an. Am Mic ist er okay, wenn auch nicht überragend und auch die Ausstrahlung ist durchaus in Ordnung, zieht mich aber nicht in ihren Bann."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SanthoshVNwrote on 09.12.2016:[9.0] "Kurt Angle is one of my favorite all time wrestlers. He is powerful, charismatic, energetic, athletic in the ring. He was of the guy who made me to give a damn about TNA. He is 48 now and still proving in the indies that he is still capable of outwrestle anybody. Looking foward him to end his career in big leagues than small independent scenes"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: WrestlingFan1112wrote on 23.10.2016:[10.0] "Ich sehe bei ihm keine Schwächen. Technisch ist er 1a und egal ob als Heel oder als Face, er macht es immer sehr gut! Und obwohl er nicht mehr der Jüngste ist workt er ein super Match nachdem anderen. Am Mic hat er sicher was drauf, keine Frage! 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: croatiantwat1950wrote on 18.09.2016:[10.0] "Probably the most complete wrestler of the 21st century. Every feud/promo/match he had in WWE was a must watch. A freaking broken neck and won the gold medal, had masterpieces of matches with Rock, Lesnar, Cena and Taker. He kinda lost his momentum in TNA but hey, he is simply old. From one side he can be silly, fun and charismatic and from the other he can be a machine on a rampage. I hope he returns to WWE as either a wrestler or a manager, doesn't matter, he deserves a gigantic pop if nothing else."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DanTalksRasslinwrote on 12.09.2016:[10.0] "Already having had a legendary career as an NCAA and amateur wrestler - culminating with a gold medal win at the 1996 Olympic Games in Atlanta - Angle made as smooth a transition to the world of pro wrestling as you could ever hope for.  Not only was he able to adapt his legitimate wrestling skill to the squared circle in an effective manner, he also developed a strong level of mic skill and character work, and was able to adapt his persona in seemingly any direction called for, whether portraying an elite wrestling machine or a goofy whitebread babyface.  Held nearly every title he was eligible for in both WWE and TNA (as well as a run with the splintered IWGP Heavyweight Title) while putting on consistently strong matches with virtually any opponent, and has already deservedly claimed a spot in the TNA Hall of Fame (inductions to the WWE and Professional Wrestling Halls of Fame will no doubt be forthcoming)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Chak95wrote on 19.08.2016:[9.0] "Kurt Angle for me is one of the top 3 greatest in ring performers in WWE history, and the second best technical wrestler, and he was very good on the mic too, i rarely watched him in TNA so i rate him only for his WWE run."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Devitciiuwrote on 30.07.2016:[6.0] "Kurt's mic skills significantly detracted from how I view him as wrestler but that's not my only problem with him. In ring, he could go for sure but while his athleticism was incredible, his story telling always suffered as a result."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ErycK24wrote on 15.07.2016:[10.0] "In my opinion, Kurt Angle is one of the most intense wrestlers in history. Angle can be a great face and even better heal. In the conversation of the greatest wrestlers of all time I feel that Angle should be more in the conversation than he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: NHJ2190wrote on 22.06.2016:[10.0] "Für mich der größte Skandal dass die WWE Kurt Angle gehen lassen hat. Der Mann hatte einfach alles. Charisma bis nach Meppen. Im Ring zweifelsohne einer der besten aller Zeiten. Weltklasse Matches am Fließband in denen er häufig durchschnittliche Wrestler zu Topleistungen gezogen hat. War als Face wie auch als Heel absolut erträglich und hat aus jeder seiner Fehden das beste herausgeholt. Ich vermisse ihn immer noch und hoffe inständig dass es nochmals zu einem Mania Match kommt zwischen ihm und The Beast Brock Lesnar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Sick Lebowskiwrote on 13.06.2016:[10.0] "Gehört für mich zu den ringstärksten Wrestlern des Planeten, vorherige Goldmedaillen-Ringerkarriere sei Dank. Hat auch sehr viel Charisma und wirkt sowohl als arroganter, fieser Heel als auch in Comedy-Skits sehr gut. Top-Mann!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Chosen Onewrote on 09.06.2016:[10.0] "Kurt Angle is very good in the ring. He can do really anything. He is a great Technician and brawler. Angle has had some of my favorite matches with Shane McMahon, Brock Lesnar, and many, many more. His gimmick in WWE as a gold medalist was very good and the stable with the Worlds Greatest Tag Team was very good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: EGeraldhuebnerwrote on 30.04.2016:"Kurt Angle - Wrestling Machine ... oder auch "gilt als Ric Flair der Neuzeit, weil er es schafft selbst gegen schwächere Gegner sehenswerte und gegen gute Wrestler fantastische Matches in Serie zu zeigen", - tja, das kann ich nur unterschreiben. Ich wurde aber sogar noch weiter gehen und ihn direkt mit Chris Benoit vergleichen. Beide sind bzw. waren nicht sehr groß, aber durchtrainiert und beide hatten alles, was man für das Wrestling braucht. Damit meine ich aber weniger reines Schowtalent, oder Begabung zum Entertainer, denn hier lag Angle eindeutig immer vor Benoit. Sondern einfach die ringerischen Vorraussetzungen. Wie kleine Terrier verbissen sie sich in ihre jeweiligen Gegner und selbst die "WoW - Momente" dabei waren nie besser oder schwächer. Ich gehe sogar soweit, zu sagen, von beiden habe ich noch nie in ihrer Karriere schlechte Matches gesehen. Man muß dafür allerdings auch die Catcher Variante bevorzugen. Denn nur Posing, viel labern oder Geschichten verkaufen, das können andere bereits genug. Zu Angle ist klar, er hat auch schauspielerische, komödiantische Fähigkeiten. Benoit fehlte das leider sehr. Ich wünsche ihm jedenfalls noch viele Erfolge, denn alles, was er bisher schon erreicht hat, war eindeutig verdient. Und das ist selten der Fall."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Mean Smark Callouswrote on 16.04.2016:[9.0] "Legit Olympic Gold Medalist. Very exciting performer, saw him do a superplex off the top of a steel cage once to thunderous (for a TNA crowd) HOLY SHIT chants. Makes a much better heel than face IMO. One of the greatest Wrestlers who may never be in the WWE HOF. Not that he doesn't belong of course. But you know how Vince is. I dunno, we will see."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Zedwrote on 17.03.2016:[10.0] "Technisch wohl einame Spitze gwesen, heutzutage alters und verletzungsbeding nur noch auf Sparflamme unterwegs, aber das ist ok. Charismatisch war er auch, er konnte sogar über sich selbst lachen, nahm sich selbst oft auf den Arm. Eine Ausstrahlung wie kaum ein zweiter, verkaufte Matches, brachte alles gut rüber was er konnte. Einfach ein glaubwürdiger Charakter. SO sollten Wrestler sein, so und nicht anders. Legendärer Mann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MAGICIANwrote on 29.02.2016:[10.0] "Kurt Angle kann von seriös bis Comedy alles, Kurt Angle kann im Ring alle Stile und hat ein Moveset, mit dem man ein ganzes Roster füllen kann. Dazu charismatisch, sehr gut am Mic und technisch wenn nicht sogar der beste aller Zeiten zu seiner Prime. Unfassbar guter Wrestler, unfassbar guter Superstar. Bitte was kann Kurt Angle nicht?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheLoudMouthwrote on 18.02.2016:[8.0] "Bei Kurt Angle ist eine Bewertung sehr schwierig. Klar gehört er zu den Top-Wrestlern der Welt, und am Mic ist er auch nicht gerade schlecht, aber er hat mich im Ring eher gelangweilt und nie in seinen Bann gezogen. (Bewertung 5. 0 vom 11. 04. 2010) --- UPDATE: Aufstufung auf 8 Punkte. Angle konnte mich zwar weiterhin nicht flashen, aber fünf Punkte sind für einen Top-Performer wie ihn einfach nicht nachvollziehbar."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Mantafahrerwrote on 27.01.2016:[10.0] ""Kurt Angle ist einer der schlechtesten Wrestler aller Zeiten, er hat kein Talent" oh mein Gott, solche Bewertungen sind hoffentlich Satire. Kurt Angle war die Ruthless-Aggression-Era, war und ist nach wie vor ein eiskalter Profi und ist einer der, wenn nicht sogar DER beste Pro-Wrestler aller Zeiten. Wenn der Mann kein Talent hat, dann gibt es keinen talentierten Wrestler auf der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Phenomenal91wrote on 24.12.2015:[10.0] "THE best wrestler to come from an amateur/collegiate background. We had some great amateurs/collegiates that turned pro, but NONE of them were ever as consistently entertaining as Angle. Of course he was a genius in the ring, capable of taking on every wrestler of every style. But he could also be comedic or dramatic with ease. Personality and mic skills were never a problem for Angle. He's done more in one career than most get to do in two or three. It appears as though, after suffering numerous career threatening injuries, he's finally going to finish his career. It's one to be proud of. Wrestler of the Decade? It's true. It's DAMN true."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Penkerwrote on 19.12.2015:[10.0] "10 Punkte vergebe ich nur selten. Aber bei Kurt Angle bleibt mir nix anderes übrig. Mir fällt eigentlich nicht wirklich jemand ein, der besser ist als er. Sowohl die In-Ring-Fähigkeiten als auch die Mic-Skills lassen kaum Raum zur Kritik. Er hat soviele Top-Matches gezeigt und hatte soviele große Momente in Promos. Ich war nie ausgewiesener Angle-Fan, aber was anderes als 10 Punkte kann ich guten Gewissens nicht geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Y2J316wrote on 16.10.2015:[10.0] "Kurt Angle für mich ist der beste reine Wrestler aller zeiten. Seine Matches waren einfach immer 5-Star. Sein comedy gimmick anfang der 00er war pures gold. Schade das er nicht mehr in der wwe ist. Hoffe es kommt noch zu einem letzten run. Oh its true its damn true. (Alte Wertung vom 28. 09. 14) @Sascha Legendkiller was fürn Armleuchter bist du denn? 2 Punkte mit ner Begründung das er kein Talent hat? Der Typ kann was wenige können, und das ist Matches verkaufen bzw. Spannung aufbauen. Er könnte selbst Hornswoggle zu einem 5 Sterne Match reißen. 2 Punkte zu vergeben lässt darauf schließen das du 1 oder 2 Arschtritte zu viel gekriegt hast...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sascha Legendkillerwrote on 16.10.2015:[2.0] "Kurt Angle ist einer der schlechtesten Wrestler aller Zeiten und wurde zu sehr überbewertet. Da hilft auch seine Goldmedallie von den olympischen Spielen von 1996 nicht Ich habe zwar auch nie gemocht( unter anderem auch wegen seinem Angriff auf Maria. ), aber das tut nichts zur Sache Kurt Angle hat einfach kein Talent. Etwas Kraft und das war alles."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: mdrecordswrote on 30.08.2015:[10.0] "A legend of the business Kurt Angle is one of, if not the best wrestler ever. Amazing technician who has had so many classic matches. His character has stood the test of time and has always been a great heel or face. Excellent on the mic and with his promos Kurt's passion seaped through his character and transformed him into a superstar of the wrestling world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ShooterMcShootwrote on 11.08.2015:[10.0] "He really should retire now for the sake of his own health, but Kurt is a great worker who could cut a serious promo or a comedic promo. He was the complete package. He could be a face or a heel. One of the most talented workers of the last 20 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RooneyDXwrote on 30.06.2015:[10.0] "bin kein großer Fan von ihm aber er hats halt drauf und zwar so gut dass er eigentlich die Streak 2006 hätte beenden können so wie Undertaker es wünschte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: reene82wrote on 27.06.2015:[10.0] "Wenn mann seine beste Zeit betrachtet kann mann dem nur ne 10 geben. Ein Tier vor dem Herrn. Ein Kraftpaktet ohne Gleichen. Ich wette der hätte Anfang-Mitte der 2000er aus der Kalten gut 50 Klimmzüge oder mehr schaffen können. Mit dem sportlichen Hintergrund absolut dazu geeignet jeden zu einem gutem Match zu ziehen. Ein Weltklasse Athlet. Am Mic auch völlig in Ordnung, wenn nich sogar überdurchschnittlich. Ich mag den einfach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: PWCwrote on 21.06.2015:[9.0] "People watch wrestling to see professionals wrestle and not amateurs and Kurt Angle was no amateur. Kurt Angle was great. The crowd chanting "You Suck! " in cue to his theme song was great. I would give him a 10 but, I don't remember him really doing anything of note during his time in TNA. That whole cheating angle between him, Karen Angle and Jeff Jarrett was awful."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Triple Hwrote on 16.05.2015:[10.0] "Kurt Angle ist einer der besten Wrestler der Welt. Wer das abstreitet hat keine Ahnung vom Wrestlingsport. Durch seine Freistil Ringer Erfahrung vor dem Wrestling natürlich auch irgendwie prädestiniert diesen Sport zu betreiben. Seine Zeit in der WWE war die beste in seiner Karriere und ich bin mir sicher, das er irgendwann auch in die Hall of Fame der WWE eingeführt wird. Besonders in Erinnerung ist mir sein Match mit Brock Lesnar geblieben, welches noch nicht einmal sein bestes war, aber dort konnte man sehen wie perfekt zwei Ringermaschinen im Ring agieren können. Allerdings muss man auch erkennen, das sich seine aktive Zeit dem Ende neigt. Das, was ich in letzter Zeit von ihm im Ring bei TNA sehe, ist ein Kurt Angle, der nur noch auf 50% läuft, bzw. nur noch auf 50% laufen kann, weil er durch seine früheren Verletzungen doch schon stark gelitten hat. Gerade im HWS Bereich musste Angle stark einstecken und er will es auch sicherlich nicht mehr riskieren noch einmal einen Rückschlag zu erleiden. Er sollte mit Würde abtreten, bevor es ein all zu krasses gesundheitliches Ende nimmt. Es würde mich freuen ihn zum Ende seiner Karriere noch mal in der WWE zu sehen, es muss nicht als aktiver sein sondern könnte auch die Rolle als General Manager bei Smackdown oder RAW sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wazzerwrote on 06.05.2015:[10.0] "Watching him in the ring actually gets me excited, because he's so accurate and precise, it's mesmerizing. His matches have a shoot kind of feel to them, and you just know if he wanted to, he could pin you to the mat no problem, but he's a great worker too. 10 points simply because his in ring skill will never be seen in the business again"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MusSanwrote on 05.05.2015:[10.0] "Der Typ ist und bleibt eine Legende. Seine Zeit bei der WWE fande ich richtig klasse. Bei TNA finde ich ihn auch klasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: eldenaaaaawrote on 28.02.2015:[10.0] "Does he really need a summary? Fine. Held every belt in WWE & TNA, former IWGP Third Belt Champion, 5 star matches with some of the biggest names and a technical genius."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Le Wrestling Fanwrote on 11.01.2015:[1.0] "Angle is a great wrestler, or he used to be. Don't get me wrong, I respect the man, but I think his time is up, and the rest's time has come. It's time for a newer generation of younger, hungrier athletes. He looks old now, and after all the injuries, honestly, it's time to retire. We will remember Angle, and I wish him good luck in his possible last year. Again, don't get me wrong."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TRMBwrote on 26.12.2014:[10.0] "Einer der besten Wrestler aller Zeiten. Angle wusste immer zu überzeigen ob als nerviger "Ich bin ein Olympia Held"-Heel oder einfach als "Ich bin der Beste, lebt damit"-Heel oder als "American Hero"-Face. Angle versteht es wie kein anderen jeden Gegner stark aussehen zu lassen ohne seine eigene Stärke zu verlieren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Matzinhowrote on 23.10.2014:[10.0] "Das Faszinierende an Angle ist doch, dass er trotz seiner ringerischen Brillianz ein Komplettpaket als Wrestler und Entertainer ist. Dieser Typ ist unterhaltsam, charakterstark, ist in unzählige Rollen geschlüpft, ist kein Genie am Mikro aber doch ausdruckssicher und er hat einen guten, glaubhaften look. Vor allem ist er als reiner Wrestler meines Erachtens ohne Vergleich. Niemand wrestled so realistisch und glaubwürdig wie Angle und hat trotzdem noch die Fähigkeit, ein Match unterhaltsam, dramatisch, episch zu inszenieren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Bloodywrote on 19.10.2014:[10.0] "Kurt Angle ist das beste, was professionelles Wrestling zu bieten hat. Nicht nur seine Technik ist überragend, nein auch seine Fehden beweisen das er der beste ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RavenEffectwrote on 29.07.2014:[10.0] "Kurt Angle is everything pro wrestling should be proud about. The man, who has defined exellence in ring work. The man, who has deserved all success in his career. The, man who is one of definitions of the perfect all-around talent, as Angle could do everything and work with anybody with anykind of style, like high-flying, technical or brawling styles, and could really work both as a heel or face."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Man of Steelwrote on 03.07.2014:[10.0] "Eigentlich DAS Gesamtpaket dieser Tage, ich frag mich nur was zwischen ihm und Vince schief gelaufen ist denn bei den Trotteln von TNA ist er einfach nur verschwendet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SimonSoSwrote on 27.05.2014:[10.0] "Kurt Angle ist einer der besten Wrestler aller Zeiten. Jedes seiner Matches ist einzigartig und zeigt, dass er ein kreativer Allrounder ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: superpuroresuwrote on 24.05.2014:[10.0] "One of the greatest workers in American pro wrestling history , his matches with Shawn Michaels , Chris Benoit , Stone Cold Steve Austin , Samoa Joe are classics , his intensity , workrate , consistency is what makes him so special."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Big Gunzwrote on 15.04.2014:[10.0] "An all around amazing wrestler. Excellent in the ring, great on the mic & is one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Viper99wrote on 04.04.2014:[10.0] "Er ist einer der besten die es jemals gab. Er kann jeden Wrestling Stil und hat dadurch auch 5* Matches gegen Shawn Michaels, Rey Mysterio und Brock Lesnar gezeigt. Ich hoffe er kommt irgendwann in die WWE Hall of Fame denn das hatt er sich einfach verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Jack Slaterwrote on 03.03.2014:[10.0] "Ich schaue kein TNA, daher weiß ich nicht wie gut er noch ist - von dem was ich kenne halte ich es für unmöglich weniger als 9 zu geben. Ich mag einfach die Ex Ringer die auch in diesem Stil wrestlen. Angle ist das Musterbeispiel für einen Top Wrestler. Er kann im Ring alles was man braucht und hat von Natur aus riesiges Charisma. Sein Heel Run und die "U Suck" Rufe haben sich unglaublich in mein Gedächtnis gebrannt und seine Matches mit Lesnar waren ganz ganz großes Kino (da trafen 2 meiner All Time Favorites aufeinander und tja, ich bin auch nur ein Mark :D)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jay arewrote on 16.02.2014:[10.0] "Kurt has put on some absolutely fantastic matches throughout his career and can even perform at a high level still. I don't think there's any better as far as in ring work goes, he's done it across numerous promotions for a number of years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: WrestleArtswrote on 15.12.2013:[10.0] "Einer der besten Wrestler unserer Zeit, ein Total Package. Toll im Ring, kann jeden Style mitgehen, stark am Mic, gute schauspielerische Qualitäten. Auch ein toller Ringer, unglaubliche Kondition und technisch sehr stark. Ist ohne Gewicht abzukochen im Schwergewicht angetreten, und wurde trotz körperlicher Unterlegenheit Weltmeister und gewann die Goldmedaille."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ADoublewrote on 30.11.2013:[10.0] "Without a doubt, Kurt will go down in history as one of the greatest of all time. He's had no end of incredible, classic matches throughout his career, especially the matches he had with Samoa Joe, Chris Benoit, and Shawn  Michaels. He was also extremely entertaining in his WWE run, and was definetely one of the funnier main eventers they ever had who could switch on a dime to a deadly serious killer of an athlete. He appears to be slowing down and is likely beginning to be too beat up and old to keep going much longer, but he's had an incredible career to look back on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Undertalkerwrote on 14.11.2013:[10.0] "Er ist, egal ob bei WWE oder TNA, im Ring einfach spitze und versteht es wie nur wenige, Dramatik und Spannung ins Match zu bringen. Er opfert sich wirklich fürs Wrestling auf, ist perfektionistisch und daher wohl auch äußerst selbstkritisch. Diese Eigenschaften führten bereits dazu, dass er gesundheitlich angeschlagen ist. Bei diesem Ehrgeizling hat man Angst, dass ihm irgendwann mal was Schlimmeres widerfährt. Hoffentlich lernt er es noch, sich auch mal zurückzunehmen, sodass er noch eine Weile in einen Wrestlingring steigen kann, uns weiterhin mit tollen Leistungen erfeut und es ihm auch noch im fortgeschrittenen Alter gutgeht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RawIsJerichowrote on 17.10.2013:[10.0] "The man is a machine, simply one of the best technical wrestlers to ever perform."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HighlightHEELwrote on 19.09.2013:[10.0] "Technisch, auch aufgrund seines Backgrounds, mit der beste Wrestler aller Zeiten. Im Ring kann ihm bis heute kaum jemand was vormachen, einer der wenigen Menschen, wegen dem ich mir einzelne TNA-Matches anschaue (man sieht aber auch, dass er langsam älter wird). Seine großen Matches lassen sich gar nicht alle aufzählen, Auseinandersetzungen mit Michaels, Lesnar und weiteren sind zu nennen. In seiner WWE-Zeit nahezu immer im und um den Main Event zuhause, einfach ob seiner Qualitäten, die sich auch im Unterhaltungsgrad (der Mann konnte wirklich lustig sein! ) niederschlugen. Am Mikro in oberen Gefilden, wenn auch recht weit entfernt von den besten Rednern im Business. War mir immer zutiefst sympathisch, sein Abgang aus der WWE 2006 war etwas, was mich wirklich geärgert hat. Ich habe ja noch immer die leise Hoffnung, dass er irgendwann noch für ein paar Matches zur WWE zurückkehrt, und werde diese wohl erst aufgeben, wenn er wirklich Schluss macht. Einer meiner Lieblinge, oh itŽs true!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[9.0] "Einer der Besten überhaupt! Hatte tolle Matches mit Undertaker, Benoit, HBK, Lesnar u. v. m. und ist eines der Lichter am dunklen TNA-Himmel, allerdings derzeit nicht aktiv (Reha o. ä. ). Für TNA und seine "Selbstzerstörung" gibt es Punktabzüge. Niemand ist perfekt, selbst ein Goldmedaillenträger nicht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HammertonWaywrote on 23.08.2013:[10.0] "What needs to be said about this man. Kurt Angle is one of the greatest wrestlers of all time and nothing will ever change that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: voicelesswrote on 19.08.2013:[10.0] "Seine Ringstil ist eine Augenweide. Ich liebe es diesem Wrestling-Genie zuzusehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sir Vida Loca IIIwrote on 10.07.2013:[7.0] "Kurt Angle war einer der besten Wrestler aller Zeiten! Leider hat er in den letzten jahren abgebaut, was auch sein "geschundener Körper" meiner Meinung nach deutlich zeigt. Am Mic war er durchaus unterhaltsam, kann in dieser belange jedoch nicht an die großen (Y2J, Rock, Punk) heranreichen. Bis vor 2-3 Jahren hätte er trotzdem, allein aufgrund seiner Ringskills 10 Punkte bekommen, da er da aber wie erwähnt nachgelassen hat bekommt er noch 7 (gute) Punkte."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HooliNerdwrote on 10.04.2013:[8.0] "Der echte Ringer der sich in der Wrestlingwelt gefunden hat und dieses Buisness lebt. Egal ob bei der WWE oder bei TNA. Er ist ein Original."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sentenzawrote on 02.04.2013:[10.0] "Shoot Kommentare hin oder her, Angle ist auch heute noch einer der Besten technischen Wrestler die es gibt, schafft es aus jedem Gegner das Beste rauszuholen und mir bleiben seine Kämpfe gegen Benoit, HBK, Lesnar, Guerrero oder Samoa Joe in Erinnerung. Ich hoffe wirklich das man ihn irgendwie nochmal in der WWE sehen wird, wenn ich an Matches gegen Bryan, Punk oder Ziggler denke werde ich ganz heiß darauf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Leonewrote on 21.03.2013:[10.0] "He is a shell of his former self, age has caught up with him and the injuries have unfortunately piled up, but he is still an excellent wrestler.  In his prime, he was probably the best technical wrestler in the world, and only a handful of others in the history of pro wrestling could rival him on that.  To go along with his incredible technical skill, he is also very strong for his size, excellent at selling and storytelling, a great risk taker, and on the mic he is brilliant, particularly when he played an over-confident, yet goofy heel who liked to liked to act superior and put down hometown sport teams everywhere he went, it was great!  He is at a stage in his career where he has nothing left to prove - and very few wrestlers who started at 29/30 could say the same thing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: JuliTheCage87wrote on 13.03.2013:[10.0] "Der beste Wrestler aller Zeiten. Vor allem in der WWE erstaunte er das Publikum ein um's andere Mal in FIGHTS gegen Brock Lesnar, Big Show und zahlreiche andere Gegner. Langsam sollte er seine Karriere jedoch beenden, bei TNA baut er zurzeit ganz schön ab...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: 8BitLegendwrote on 11.03.2013:[8.0] "Kanns immer noch. Aus dem TNA Main Event kaum wegzudenken, auch wenn ich das Comedy Element der frühen WWE-Zeit etwas vermisse. Würde heute aber auch nicht mehr so passen, da sein Real Life einiges an Tragik zu bieten hatte und man ihm den verbissenen Sportler daher mehr abnimmt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: dudemanbearpigwrote on 10.03.2013:[9.0] "Kurt Angle may be a half-crippled steroid freak, but he's a wrestling machine. He really brings the intensity in big matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Bowlenwrote on 27.02.2013:[10.0] "Für mich der wahre "Best in the World", da er nicht nur im Ring fantastisch ist und trotz aller Verletzungen nur leicht abgebaut hat, sondern auch immer funktioniert - ob nun als Face, ernster Schurke oder als Comedy-Heel. Zudem kann man bei ihm auch nicht von einem Ex-WWE'ler sprechen, der sich im etwas unstressigeren Nest TNA niedergelassen hat. Er hat sich immer mit der Company identifiziert und dort geholfen, wo er wie auch immer gebraucht wurde. Ich würde ihn liebend gerne in der TNA HoF sehen, bin ihm aber auch nicht böse, wenn er nach Vertragsende nochmal für einen kurzen Run zur WWE geht und dort eingeführt wird, schließlich hatte er in Stamford sechs gute Jahre, als man das Produkt noch gut schauen konnte. It's true..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Diggertakerwrote on 14.02.2013:[10.0] "A wrestling and a submission machine. A legend that wrestling needs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: downtown2wrote on 14.02.2013:[10.0] "Der kompletteste Wrestler aller Zeiten. Perfekter Techniker, innovativer Highflyer, er funktioniert als ernsthafter Heel und als Comedy Heel, sowie als Face. Er macht jeden Gegner im Ring besser und hat noch nie auch nur einen schlechten Kampf abgeliefert. Selbst am Mikro ist keine Schwäche zu erkennen, wo er ebenfalls annähernd so versiert ist, wie im Ring. Sein Ehrgeiz und seine Entschlossenheit sind kein Schauspiel, sondern immer voller Ernst, ein absoluter Profi. Großes Charisma erschließt sich daraus, allerhöchstens in diesem Punkt noch von Shawn Michaels übertroffen, ansonsten als Gesamtpaket konkurrenzlos. EDIT: Langsam wäre es an der Zeit aufzuhören, bevor die ruhmreiche Karriere Kratzer bekommt, wie bei Flair oder Funk, denn an die Topleistungen vergangener Jahre kommt er mittlerweile nicht mehr ran. Die Knochen werdens ihm danken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Cobrawrote on 14.12.2012:[10.0] "I have never been a huge fan of the Kurt Angle character. But man can he wrestle. I always look forward to seeing any of his matches as he brings out the best in everyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Titanwrote on 04.10.2012:[10.0] "Kurt Angle zählt auf jeden Fall zu den am versiertesten Wrestlern im Wrestling-Zirkus. Im Ring ist er technisch immer ganz fein, am Mic ist er auch unterhaltsam und er hat auch die Gabe, eine Geschichte gut zu erzählen und sie somit zu verkaufen. So etwas findet man nicht alle Tage!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wolkywrote on 20.09.2012:[10.0] "Kurt Angle. Was kann man groß sagen, einer der Besten aller Zeiten. Großartig im Ring, ganz eigener Stil und technisch einfach perfekt. Am Mic gut, toller Schauspieler, charismatisch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Fahqallwrote on 30.08.2012:[10.0] "Es gibt keine positiven Dinge mehr, die hier noch nicht genannt wurden... unbestritten der Beste ever!  Und selbst nach recht langer Überlegung fällt mir kein Kritikpunkt ein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LM Punkwrote on 30.08.2012:[9.0] "Super Techniker, aber um 10 Punkte zu erhalten fehlt irgendwie was."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DaNiwrote on 17.07.2012:[10.0] "Kurt Angle gehört für mich zu den größten Wrestlern aller Zeiten.  Ein technisch herausragender Worker mit genügend Kraft und Masse um bein den Großen mitzuhalten.  Er überzeugt als Face und Heel.  Gerade in den Jahren 2002 und 2003 war er für mich das Aushängeschilder der WWE Company.  Ich würde mir wünschen, ihn wieder bei der WWE zu sehen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Booker Cwrote on 02.06.2012:[8.0] "Der RVD Effekt hat Angle mittlerweile eingeholt. Seine Matches sind zwar immer noch gut, doch sie wiederholen sich ständig. Darum stellt Angle für mich nicht mehr einen der momentan besten Wrestler der Welt dar. Das ist aber auch verständlich, wenn man sich mal sein Alter und seine diversen Verletzungen vor Augen hält."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Rated R means Attitudewrote on 01.06.2012:[10.0] "Seine In Ring Leistungen sind grandios, immerhin war er ja auch Olympiasieger. Die Umstellung von der olympischen Disziplin zum Entertainment war für ihn kein Problem, war er doch nicht lange nach seinem Debut schon WWE Champion. Seine Leistungen haben auch bei TNA nicht nachgelassen und da er auch am Micro überzeugt gibt es 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Eclipsewrote on 22.05.2012:[10.0] "Im Ring wahrlich einer der besten, wenn nicht der Beste aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: VanderVaartwrote on 24.04.2012:[8.0] "Als ehemaliger Olympiasieger schaffte er es schnell in die wichtigsten Kämpfe. Die Umstellung ist ihm nicht anzumerken. Redetalent ist super, egal ob er nun Comedy (Rap) zeigen soll oder es um alles geht. Bei Houseshows scheint er sich aber etwas schonen zu wollen, da er zu viele Comedyelemente einbaut."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DragonSleeperwrote on 21.04.2012:[10.0] "Muss man die 10 Punkte wirklich begründen? Einfach einer der besten Wrestler aller Zeite der noch jetzt nach den vielen jahren geniale Matches aus sich rausholt. Schade dass er nicht zu Olympia kann, das wäre mal interessant gewesen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: alewrote on 14.04.2012:[10.0] "Vieleicht der beste Wrestler aller Zeiten, dazu noch charismatisch und ein extrem guter Heel. Konnte aber auch als Face überzeugen (Invasion Storyline). Bringt also alles für eine 10 mit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: NoHomewrote on 20.03.2012:[9.0] "Zu WWE Zeiten für mich eine absolute Legende. Es hat einfach alles gepasst. Ring In technisch einer der Besten keine Frage.  Mic Skills hervorragend. Und auch sein Hang zur Selbstironie fand ich sehr unterhaltsam.  1 Punkt Abzug muss ich geben da ich ihn bei TNA nicht mehr verfolge"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kid Rockwrote on 09.03.2012:[9.0] "Der Gimmick-Zusatz "Wrestling Machine" ist bei ihm Programm; Kurt Angle ist ein brandstarker Athlet, der selbst jetzt, nach 12 körperlich enorm fordernden Jahren, zahlreichen Nacken-Verletzungen und nicht mehr ganz jungen 43 Jahren, immer noch wie kein zweiter in der Lage ist absolut mitreißende und enorm intensive Kämpfe auf die Beine zu stellen, egal ob es sich bei seinem Gegner um einen Weltklasse-Athlet oder einem Besenstiel handelt. Neben den unbestreitbaren In-Ring-Fähigkeiten kommen noch eine Menge Charisma und schauspielerisches Talent, die Angle sowohl als harten Hund, wie auch als nerdige Comedy-Figur mit augenzwinkerndem Hang zur Selbstironie absolut glaubhaft rüberkommen lassen dazu. Ein besseres Komplettpaket wird man im amerikanischen Wrestling kaum wo anders finden und ich persönliche habe mich durch Angle immer blendend unterhalten lassen, so dass ich auch gewillt bin, ihm den einen oder anderen realitätsfremden Kommentar aus der Vergangenheit, gerade in Richtung WWE zu verzeihen. Zugleich hoffe ich aber auch, dass der Mann den deutlichen Raubbau an seinem Körper reduzieren kann um nicht eines Tages im Rollstuhl zu landen und stattdessen gesund und glücklich auf eine unvergleichliche Karriere zurückblicken zu können, die in der Tat eine der unterhaltsamsten und abwechslungsreichsten im Pro-Wrestling darstellt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Randy Owrote on 13.02.2012:[10.0] "Für mich gehört er zu den Besten 5 Wrestler auf dieser Welt. Ein jammer das er nicht auf dem Level gekommen ist wie ein Steve Austin oder ein The Rock. Verdient hätte er es auf jeden fall. Das einzigste was mir auch nur teilweise nicht an Kurt gefällt sind seine Gimmicks. Bsw, das im Jahre 2006 bei WWE, das hätte nicht sein müssen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KoZywrote on 07.10.2011:[10.0] "Der meiner Meinung nach beste Wrestler aller Zeiten. Sowohl Face als auch Heel überragend, wobei er als Heel am besten rüberkommt. Am Mic auch sehr gut. Unzählige geniale Matches bestritten. Schade, dass er durch seine Verletzungen so oft gebremst wurde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: what89wrote on 06.10.2011:[10.0] "Einer der besten Techniker.  Mic-Work genial.  Unzählige unfassbar geile Matches.  Für mich einer der grössten Wrestler überhaupt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sirius Van Grathwrote on 03.10.2011:[10.0] "Ein wirklich großartiger Ringtechniker! Das erste Match, dass ich je sah war das Ironman Match gegen Lesnar und beide haben mich sofort überzeugt. Vorallem Angle, weil er einfach einer der besten Submission- und Technik-Wrestler aller Zeiten ist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Brainbreakerwrote on 30.09.2011:[10.0] "Wenn es sonst schon wenig Gründe gibt, TNA einzuschalten, dann ist doch wenigstens Kurt Angle einer davon. Sicher könnte ich mich hier auslassen, dass er trotz seines übergroßen Talents nie der ganz große Superstar bei WWE geworden ist. Das ist aber auch egal. Jericho war es auch nie. Stattdessen muss ich sagen, dass Angle mich immer unterhält, wenn er im Ring ist. Ein Garant für starke Matches jedweder Art. TNA weiß ihn immerhin an die Spitze zu setzen, auch wenn mich seine Storys net jucken; bei WWE hatte er jedoch die besseren: Unvergessen die Schlachten gegen Austin, Lesnar, Taker oder Michaels, weil sie doch in der WWE besser eingebettet wurden. Das waren noch Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Bananaramawrote on 09.09.2011:[8.0] "Eins vorneweg, ich finde ihn bei weitem nicht so gut wie er häufig gemacht wird. Er war im Ring sicher ganz ordentlich, hatte einige gute Matches, am Mic war er nicht schlecht, aber ... ich kann ihm nicht so wirklich was abgewinnen. Schon alleine sein In-Ring Stil fand ich ziemlich langweilig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Rated R Punkwrote on 06.09.2011:[10.0] "Kurt Angle ist wohl einer der Top Superstars der WWE, der aber leider (vorallem 2004 in der Fehde gegen Big Show) zu oft als lächerlich dargestellt worden ist (was denke ich der Grund ist wieso er trotzdem nicht so hoch im Kurse ist wie z. B ein Shawn Michaels) Seine Ring Leistungen sind umstritten ganz klar! Er ist der beste Techniker auf diesen Planten finde ich, und auch in anderen Bereichen kann er überzeugen (z. B als Hardcore Wrestler rund um 2006) am Mic glänzt Kurt durch Perfektion wie ich finde vorallem in Comedy Segments (I make your ankle hurt :D)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Franjisewrote on 17.07.2011:[10.0] "Ehrilch gesagt überrascht es mich, dass Kurt Angle insgesamt hier keine höhere Wertung erhält. Denn Kurt ist ein Wrestler wie er im Buche steht. Über seine In-Ring-Skills kann es gar keine zwei Meinungen geben, Angle ist im Stande, so gut wie jeden Wrestler zu einem guten bis sehr guten Match zu ziehen. Und was den Entertainmen-Faktor angeht, stielt er auch vielen die Show. Der ehemalige (und zukünftige? ) Olympionike verfügt über großartiges schauspielerisches und vor allem komödiantisches Talent und überzeugt am Mikrofon auf ganzer Linie. Keine Frage, Kurt Angle verdient 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: NHJ2102wrote on 11.07.2011:[10.0] "Einer der unglaublichsten Wrestler die es je gab. Unterhaltung Pur ob im Ring oder am Mic einfach erstklassig der Kerl, würd ihn gerne wieder bei der WWE sehen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: WWE4evermaybewrote on 11.07.2011:[10.0] "Tja, was soll man zu ihm noch sagen? Einer der besten Wrestler der Welt. Wahnsinniger Kraftaufwand, na gut, er ist ja ehemaliger Ringer. Sein German Suplex sieht immer fantastisch aus. Der Ankle Lock Kult. Schade, dass er nicht mehr für die WWE wrestlet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: UndertakerChriswrote on 08.07.2011:[9.0] "Es dürfte bekannt sein, dass Angle jeden, sei es der Great Khali, John Cena oder sonst jemand, einfach jeden, der im Ring jetzt nicht der spektakulärste ist, spitzenklasse darstehen lassen kann, was natürlich auch an Angles Ringfähigkeiten liegt. Betrachtet man nun seine WWE und seine TNA Zeit, dann sind es doch zwei große Gegensätze. In der WWE noch lautstark mit "you suck" begleitet, ist er bei TNA mehrfacher World Champ und könnte die Firma mit einer Hand allein anführen (als Wrestler natürlich). Wirklich viel möchte ich hier nciht schreiben, nur, dass dieser Mann verdammt viel Respekt für seine harte Arbeit und seine unglaublich genialen Matches verdient. Leider hat es ihn zu TNA verschlagen... obwohl es in der WWE bestimmt keinen Platz für ihn mehr geben würde, aber das ist ein anderes Thema."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Donald Duckwrote on 23.06.2011:[10.0] "Kurt Angle ist einer der besten Wrestler aller Zeiten. Leider zerstört er seine Legende in der TNA mit sinnlosen Storylines."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: trlichwrote on 13.06.2011:[10.0] "Gibt ständig 110%. 10Punkte weil 11 nicht zur Auswahl stehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheRock 7 Champwrote on 08.06.2011:[10.0] "It's True, it's damn true! Kurt Angle ist ein grandioser Athlet mit vielen Fähigkeiten. Ob früher in der WWE/F oder heute bei TNAW, ob am Mic oder im Ring, dieser Kerl überzeugt mich immer und immer wieder! Was er zeigt ist wahres Wrestling und was noch dazu kommt ist seine Goldmedalie. Respekt, nicht jeder schafft das! Er ist ein Grund wieso ich TNAW ein wenig verfolge und wieso die Liga noch nicht ganz zu Grunde gegangen ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kykloswrote on 04.06.2011:[10.0] "Kurt Angle gehört für mich im Ring zu den besten fünf Wrestlern und Micworkern seiner Generation.  Zudem kann er auch in den verschiedensten Rollen völlig überzeugen. Sei es in Comedy-Segmenten, als fixierte "Wrestling Machine", als Führungsfigur eines Stables oder als General Manager. Volle Punktzahl für einen der komplettesten Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jericho is excellencewrote on 25.04.2011:[10.0] "Angle's schier krankhafter Drang zum Perfektionismus ist so beängstigend, dass man sich immer mehr Sorgen um seine Gesundheit machen muss. Auf der anderen Seite ist es genau dieser Perfektionismus, der Angle zu einem der besten und unterhaltsamsten In-Ring Worker aller Zeiten macht. Angle ist ein Tier, eine Wrestlingmaschine. Seine Ausdauer scheint grenzenlos zu sein und seine Matches sind von einer Intensität geprägt die man sonst nur bei Benoit bewundern durfte. Und genau dies lässt einen bangen, da das Wrestling wie Angle es betreibt wohl auch von ihm einige Jahre seines Lebens genommen haben dürfte. Nichtsdestotrotz ist es jedesmal eine Freude ein Match des Olympisches Goldmedaillisten zu sehen. Ausserhalb des Rings ist Angle auch am Mikrophon ein Genie, das, ähnlich wie Rocky, rumalbern und Witze machen kann, genau so wie intensive hasserfüllte Promos halten. Diese aussergewöhnlichen Fähigkeiten machen Kurt zu einem der komplettesten Worker aller Zeiten, der sowohl als Heel wie als Face immer unterhält. Zurecht mehrfacher World-Champion. Angle hätte meiner Meinung nach die Fähigkeiten gehabt ein neuer Rock zu werden und das neue Aushängeschild der WWE zu werden. Schade dass er zu TNA gegangen ist, auch wenn er mit seinen Leistungen dort immer noch begeistern kann. 10 Punkte für dieses Ausnahmetalent. Müsste ich ihn mit einem Wort beschreiben, wäre es: Intensität. Und genau die vermisse ich heutzutage bei den meisten Workern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MICHAELAundMARKUS4EVERwrote on 07.04.2011:[10.0] "Perfektes Wrestling vereint mit viel Charisma. Angle kann von sich behaupten der beste Pure-Wrestler zu sein. Klare 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Johnny-Tennerwrote on 05.04.2011:[9.0] "Für mich keine 10 Punkte mehr! Früher wo er noch in der WWE war hat er Matches geliefert an die ich mich heute noch erinnern kann in der TNA verblasst für mich das Erscheinungsbild vom Olympic Hero. Allein die Abänderung seines Themes hat ihn für mich zu einer Witzfigur mit HipHop Musik gemacht. Kurt Angle ist ein guter Athlet sein Mic-Work ist grandios aber irgendwie hat man seit seinen Debut in der TNA zu viel an seinem Gimmick geändert. Ich ignoriere mal TNA Wrestling und geb ihn 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: C0nspiracywrote on 27.03.2011:[10.0] "Kurt Angle ist einer der Sorte "Einer aus einer Million. Er ist im Ring und am Mic sowas von glaubwürdig. Sein Wrestling ist das beste das es gibt. Kein anderer beherscht es so gut in puncto Ring Psychologie und Storytelling wie Kurt Angle. Man muss ihn nichtmal mögen um ihn sich anzusehen, jeder der etwas Verstand besitzt muss ihn zumindest im Ring respektiern. Für mich der beste Ring Wrestler ob aktiv oder inaktiv. Its true..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Michael Shawn Hickenbottomwrote on 14.03.2011:[10.0] "Nach HBK und Jericho einer der ganz großen im professionellen Wrestlinggeschäft! :D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Y2J Problemwrote on 13.03.2011:[10.0] "Wie schon unter dem "Wissenswertes" Abschnitt gesagt: "gilt als "Ric Flair der Neuzeit", weil er es schafft selbst gegen schwächere Gegner sehenswerte und gegen gute Wrestler fantastische Matches in Serie zu zeigen " 'nuff said!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Matt4Wrestlingwrote on 27.02.2011:[10.0] "Ein wahrer Top-Athlet, der schon alles erreicht hat, was es zu erreichen gibt. Selbst jetzt, in seinem Alter, könnte es noch einmal zum Titel reichen. Top!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: sebi 201wrote on 03.02.2011:[10.0] "Ein perfekter Techniker . Matches gegen Eddie oder Chris Benoit legendär, Sehe sie heut5 noch gerne . Bei TNA immoment in der Storyline gut, aber wird sonst falsch eingesetzt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Showstopper1wrote on 03.02.2011:[10.0] "Als ich 2005 durch Tele 5 wieder zurück zum Wrestling gekommen bin, ist mir sofort Kurt Angle aufgefallen, der mich mit seinem Charisma und seinen wrestlerischen Fähigkeiten im nu begeistert hat. Mein allererster PPV war dann Wrestlemania und das *****Match gegen Shawn Michaels. Dieser Mann ist für mich das Nonplusultra im Professional Wrestling, it`s true, it`s damn true!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: GamePrincewrote on 27.01.2011:[10.0] "Ich kenne ihn zwar nur durch seine WWE-Karriere, aber die alleine reicht vollkommen aus um eine Wertung von 10 Punkten zu rechtfertigen.  Seine Matches sind teilweise der Hammer und sein Gimmick ... ach, dieser Typ ist einfach ein Monstrum von einem Wrestler. Besser gehts fast nicht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: cagefighterwrote on 02.01.2011:[10.0] "Einfach einer der besten und perfektesten ( In Sachen gimmick, style) Wrestler die es gibt, gab und geben wird. Kurt Angle war früher ein Vorzeige Athlet, wenn eine Kritiker mal ein gutes Match sehen will. Konnte man eigentlich nix falsch machen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Schmidi2121wrote on 31.12.2010:[10.0] "Für mich einer der besten Wrestler dieser Zeit.  Er hat echt alles was man braucht.  Und Technisch gesehen ist er wahrscheinlich der beste der je einen TNA oder WWE Ring betreten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Woerpwrote on 21.11.2010:[10.0] "Einer der besten Wrestler aller Zeiten. Wer Wrestling liebt muss Kurt Angle Vergöttern. Punkt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Rated R Champwrote on 06.11.2010:[10.0] "Wrestlerrich sicher der Beste unserer Zeit, sein an Besessenheit grenzender Ehrgeiz in allem was er tut, ist zwar manchmal schon beängstigend, verdient aber dennoch größten Respekt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jjchiofalowrote on 06.11.2010:[10.0] "Kurt Angle is the best wrestler in TNA's history. This Olympic legend brings his experience to TNA to form a man that is possibly the best wrestler in wrestling history. Hands down."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: stallownagewrote on 03.11.2010:[10.0] "Der wohl kompletteste Wrestler in Nordamerika to date. Als Face sowie als Heel erstklassig und dabei immer unglaublich charismatisch. Im Ring sowie am Mic ein Gott. Haut selbst mit 41 Jahren noch Match of the Year Candidates raus, wie bspw. gehen Anderson bei Lockdown. Eine andere Wertung als die 10 kann es für diesen Mann nicht geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DeutscheMarkenbutterwrote on 01.11.2010:[10.0] "wahrlich ein genialer techniker! seine mic-skills haben sich stets verbessert und als heel auch top!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Marth99wrote on 01.11.2010:[10.0] "Mein persöhnlicher leiblings Wrestler, weil er selbst aus Leute wie Mark Henry ein gutes Match raus holen kann. und weil er der beste Heel ist den die Menschheit jegesehen hat. Dann noch der unglaubliche Moonsault. Seine unglaublich geilen Angle Lock Konter und natürlich sein Matten Wrestling ist legendär"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: GabberGizmowrote on 28.10.2010:[9.0] "Kurt Angle ist ne reine Kampfmaschine ! Immer vollen Einsatz ! Immer 100 % !"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: struppowrote on 28.10.2010:[10.0] "Der Beste den es jemals gab. Es gibt keinen Kompletteren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Homicide187wrote on 18.10.2010:[10.0] "Egal ob in WWE oder in TNA Kurt Angle zeigt immer und mit jedem tolle Matches! Wie viele schöne Matches hat er uns schon beschert und dazu noch sein Gespür und das ganze drum herum. Er hat für mich das beste Gesamtpacket im Mainstream der letzten 10 Jahre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Ramwrote on 26.09.2010:[9.0] "Als Angle in der WWE war fand ich ihn einfach nur Spitze, wenn ich nur zurück denke an Michaels vs. Angle bei Wrestlemania 21 dann denke ich weniger als 10 Punkte ist nicht möglich. Am Mic hat der Milchbubie was drauf und er strahlte halt mit seiner Athletischen Figur immer etwas besonderes aus. Nicht zu vergessen seine Goldmedalie die sein Markenzeichen war und eigentlich schon ein großen Teil seines Gimicks ausmachten. In der TNA passt er irgendwie einfach so gut hin wie der FC Bayern in der 3ten Bundesliga."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Pyromaticwrote on 17.09.2010:[10.0] "Einer der besten Wrestler und Entertainer aller Zeiten. Wenn er in den Ring steigt, wird man nie enttäuscht. Er lässt selbst die Schlechten gut aussehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MaKnowrote on 25.08.2010:[9.0] "Vor zehn Jahren hat mich Kurt Angle als jemand begeistert, der sowohl sprachlich, als auch im Ring ein absolutes Naturtalent ist. Heutzutage hat er leider viel von seinem Charisma und seiner herrlich selbstironischen Art verloren - ob das nun am Gimmick oder an der Liga liegt weiß ich nicht, jedenfalls hat sich meiner Ansicht nach bereits seit 2005/2006 in dieser Hinsicht ein Abwärtstrend angedeutet. Seine Kämpfe finde ich im übrigen auch längst nicht mehr so stark wie vor sechs oder sieben Jahren. Alles in allem bleibt Angle nach wie vor ein herausragender Athlet, für die zehn Punkte reicht mir seine Leistung aktuell allerdings nicht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Jack Londonwrote on 18.08.2010:[10.0] "Über ihn muss eigentlich nichts gesagt werden. Tolle Ausstrahlung, tolle Matches. Einer der besten Wrestler überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Mountiewrote on 18.08.2010:[10.0] "Die schier unendlich lange Liste an Matchguide-Einträgen spricht für sich, hinzu kommt dass Angle eben nicht nur wrestlen kann, sondern auch in Sachen Charisma und Redetalent herausragt. Angle hat es zwar nie zum unumstrittenen Superstar auf Hogan/Austin/Rock-Niveau gebracht, aber das Schicksal teilt er mit genug anderen. Der Drang zur Perfektion, koste es, was es wolle, ist bei Angle aber so übertrieben ausgeprägt, dass es ihm schon zu Lebzeiten den Anschein einer tragischen Figur gibt, um deren Wohlergehen man sich ernste Sorgen machen muss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: anglejoewrote on 14.08.2010:[10.0] "Kurt Angle ist der beste Wrestler der Welt und auch einer der erfolgreichsten überhaupt. In der WWE gewann er schon 6 World Title und ist der erste und einzige WWE, WCW, World Heavyweight (WWE) Champion und TNA World Champion überhaupt. Hinzu kommt noch die Goldmedallie. Er zeigte mit Benoit, Owen und Bret wohl die besten Matches in der WWE und zeigt ebenfalls jetzt schon tolle Matches bei TNAW. Nicht nur das er ausgezeichnet wrestlen kann, er hat sogar sehr gute Mic-Skills egal ob Heel oder Face."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheRock902102wrote on 04.08.2010:[10.0] "Unbestritten einer der besten im Ring aller Zeiten, neben leuten wie Shawn Michaels und Bret Heart.  Dazu noch sehr charismatisch, super Promos, seine Fehden waren immer erstklassig.  Er fehlt der WWE wie kaum ein anderer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: triplealexwrote on 22.07.2010:[10.0] "Kurt Angle ist für mich der beste Wrestler im Mainstream Bereich. Er hatte sowohl bei TNA als auch bei WWE einfach geniale Matches und zeigt fast immer wenn er in den Ring steigt eine sehr gute Leistung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Carnevalewrote on 18.07.2010:[10.0] "Ich finde einen Vergleich mit Indy Leuten wie Danielson immer schwierig, da diese sich meist komplett auf ihr Match konzentrieren können, im Gegensatz zu "Mainstream" Wrestlern. Konnte Angle anfangs nie viel abgewinnen, aber mittlerweile sind auch mir die Augen geöffnet - technisch vielleicht der Beste überhaupt zu dieser Zeit, kann so gut wie jeden Gegner zu einem klasse Match ziehen und kann auch ganz schön harte Aktionen einstecken (Moonsault vom Steel Cage)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HBK1986RKOwrote on 17.07.2010:[10.0] "Einfach ein Held. Hätte Ich zum Anfang nie gedacht seiner Karriere, dass aus ihm mal so ein Star wird. Als Heel gut aber persönlich gefällt er mir als Face besser. You Suck Kurt. Starke Karriere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: homicidal cena michaelswrote on 10.07.2010:[8.0] "Für einen Mainstream Wrestler ist Angle der Oberhammer und das Beste was man sich angucken kann, aber er wrestlet auch zu viel mit Headlocks und Standardmoves. Er macht keine schweren Einroller wie ein Bryan und hat auch nicht das größte Moveset. Ein guter Indy Wrestler ist halt mit nichts zu vergleichen und da wirkt sogar ein Kurt Angle langweilig und einfallslos. Aber er versteht ein Match zu leiten und bringt noch recht gute Sachen mit rein und sein Mic Work ist auch gut."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Hans Gruberwrote on 05.07.2010:[10.0] "Ein Total Package. Gut am Mic, überragend im Ring, lässt jeden seiner Gegner gut aussehen. Wird nur leider auch nicht jünger."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Shrinxwrote on 29.06.2010:[10.0] "Wenn ich an die Matches mit Shawn Michaels denke, dann merkt man schnell was die WWE mal war und jetzt ist.  Angle ist einer der besten Wrestler aller Zeiten. Toll dass er wieder da ist bei TNA"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Riley Mathewswrote on 05.06.2010:[10.0] "Ist von einem Weltklasseringer zu einen Weltklassewrestler geworden. Hat ein gutes Mic-Work hat Charisma und im Ring einer der Besten. Klare 10P.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: El-Chupakneebraywrote on 25.05.2010:[10.0] "Vermutlich ist Kurt Angle tatsächlich der beste Wrestler in der Welt. Einen solchen Output an hochkarätigen Matches haben die wenigsten und dazu hat er wohl alles was man im Mainstream braucht um Erfolg zu haben. Angle kann man gegen einen Sack Kartoffeln wrestlen lassen und ich würde es sehen wollen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Erasedwrote on 22.05.2010:[10.0] "Seine Matches sind immer schön mit anzusehen. Egal, gegen welchen Gegner. Auch heute noch ein hervorragender Technicker, der auch mit dem Mikrophon umgehen kann. Zusammen: Ein perfekter Entertainer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Golgotawrote on 19.05.2010:[10.0] "Für mich wird er immer King-Kurt bleiben. Mochte ihn als Heel in früheren Zeiten lieber. Seine Matches sind aber quasi ausnahmslos in der Königsklasse anzusiedeln. Intensity, Integrity, Intelligence!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: catch34wrote on 16.05.2010:[10.0] "Großartiger Wrestler. Hat sich damals nach seinem Einstieg in die WWE schon nach einem Jahr die Anlagen eines waschechten Main-Eventers angeeignet. Im Ring gibt es bis heute nicht viele, die in der Lage sind, immer konstant gute Matches gegen fast jeden denkbaren Gegner abzuliefern. Am Mic ebenfalls unglaublich stark, wobei er hier aber auch verschiedene Facetten zeigen kann. Mir gefällt der Heel-Douchebag-Comedy-Kurt (bis Ende 2002-Anfang 2003 etwa) aber immernoch am besten. In dieser Version meiner absoluter Lieblingswrestler neben Shawn Michaels. Einer meiner Lieblingsmomente während dieser Phase ist seine Reaktion, als Edge ihm bei Backlash die Haare rasierte :D. Hat aber auch bereits in seiner WWE-Zeit bewiesen, das er als Face funktioniert. Ganz klare 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sandmannwrote on 04.05.2010:[9.0] "Ach der gute Kurt. Im Ring ein wirklich guter Wrestler. Wirklich erstaunlich wie er sich seit seinem Debut gegen Tazz damals entwickelt hat. Charismabombe, wirklich guter Inring Performer und verdienter World Champion bei WWE und TNA. Ich hoffe für ihn das er irgendwann den Absprung schafft und ein wenig mehr an seine Gesundheit denkt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Damon Strikerwrote on 30.04.2010:[9.0] "Im Ring gehört er zu den ganz großen unserer Zeit. Hinzu kommt reichlich Charisma und sein schauspielerisches Talent! Allerdings ist mir der todernste Angle nicht ganz so lieb, wie der Angle, der den schmalen Grad zwischen Ernsthaftigkeit und Comedy einst so gut gemeistert hat! Würde ihn auch lieber woanders als bei TNA sehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Baldrickwrote on 20.04.2010:[10.0] "Dieser Mann ist eine Maschine. Wrestlet seit über einem Jahrzehnt fast durchgehend auf konsequent hohem Niveau und ist zudem ein hochbegater Wanderer auf der gesamten Entertainment-Skala. Trotz seines nicht enden wollenden Raubbaus am eigenen Körper hoffe ich, dass dieser Mann dem Wrestling noch lange erhalten bleibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: NewGuywrote on 17.04.2010:[10.0] "@ Sandmann: Sein Debut gegen Tazz? Er hatte doch sein WWE Debut gegen Shawn Stasiak bei den Series 99 oder?  Was kann man zu Kurt Angle sagen? Eine Goldmedallie bei den Olympischen Spielen bekommt man nicht geschenkt! In-Ring also einfach nur Top! Und was die Mic Skills angeht, da kann er auch noch ordentlich auffahren, weshalb ich ihm gut und gerne 10 Punkte gebe!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Batistawrote on 02.04.2010:[10.0] "Kurt Angle ist klasse! Ich mag ihn, für mich vom wrestlerischem her Top 3 auf der Welt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: antihiphop2002wrote on 28.03.2010:[8.0] "Im Ring obwohl er meiner meinung nach etwas nachgelassen hat eine wenn nicht die Granate überhaupt. Aber sein Micwork gefällt mir einfach nicht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: 1234wrote on 25.03.2010:[10.0] "Einer der unterhaltsamsten Wrestler, die ich je gesehen habe. Bei ihm stimmt alles, er kann gut wrestlen, bringt interessante Promos und ist zudem noch natürlich charismatisch. Außerdem hat er dasss, was so vielen Leuten fehlt, nämlich das gewisse Etwas."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Mizisawesomewrote on 21.03.2010:[10.0] "Ich sah gerade, dass ich diesen einen meiner Lieblingswrestler noch gar nicht bewertet habe. 10 Punkte natürlich. Bei Kurt Angle kann man gar nicht weniger geben. Seine Mic-Skills sind gut, seine In-Ring-Skills sind ganz einfach mal perfekt und er bringt zudem die Fähigkeit mit alle möglichen Rollen zu spielen in die er "gesteckt" wird. Kurz und knapp: Ein perfekter Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LabronBenoitwrote on 18.03.2010:[10.0] "Ja, er ist einer der besten Wrestler der Welt, wenn nicht sogar der Beste. Gut, ich hab seine Matches hauptsächlich in der WWE verfolgt, da mich TNA nicht so wirklich interessiert, aber ich glaube nicht, dass er arg nachgelassen hat und jemals nachlassen wird. Er hat einen einzigartigen Wrestling-Stil und ich glaube, dass er einer der besten Wrestler aller Zeiten wird!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: element-41wrote on 18.03.2010:[10.0] "Kurt Angle ist meiner Meinung nach der beste Wrestler der Welt. Er wird nicht umsonst als "Greatest Wrestler in the World" angesagt, da ist was Wahres dran. Er ist und bleibt die Nummer 1. Er schafft es selbst schwache Wrestler richtig stark aussehen zu lassen und macht aus Matches mit wenig Erwartungen großartige Spektakel. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Papa Popanzwrote on 18.03.2010:[6.0] "Sehr guter Wrestler... aber als Typ sagt er mir so gar nicht zu"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Schnubbelchen-Exwrote on 16.03.2010:[10.0] "Kurt Angle ist und bleibt mit abstand der beste Wrestler ever. Schade nur das er nach TNA gegangen ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kennedy Olivenwrote on 14.03.2010:[10.0] "Ich kann diesen Typen überhaupt nicht leiden, aber er ist ein so verdammt guter Wrestler das 10 Punkte einfach angebracht sind. Was der aus so manchen anderen für Matches rausgehauen hat. Boaahh. Egal mit wem er hat gute bis fantastische Leistung gezeigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Eddiewrote on 14.03.2010:[8.0] "In der Neuzeit einer der aller besten, so einfach ist es. Allerdings manchmal irgendwie überheblich im Ring, zumindest wirkt es so wenn er gegen "schwächere" Gegner kämpft, und dass unabhängig vom Gimmick, und mittlerweile sowieso nicht mehr auf der Ebene wie damals bei der WWE, 2003 zum Beispiel.. 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: wotan1985wrote on 09.03.2010:[10.0] "Kurt ist der einzige grund TNA zuschauen mehr muss man gar nicht sagen. Wenn man seine Matches kennt weiss man auch warum."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Rated R Superstar EDGEwrote on 08.03.2010:[10.0] "Kurt Angle ist neben Chris Jericho wohl der kompletteste Wrestler den es gibt. Zu schade das er erst mit 29 angefangen hat. Hätte er 10 Jahre früher angefangen wäre er wohl ein genauso großer Star wie Steve Austin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: rv27wrote on 07.03.2010:[10.0] "Ich zähle ihn neben Leuten wie Danielson und Quakenbush oder auch Great Muta zu den besten der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Fat Mikewrote on 04.03.2010:[10.0] "Kurt Angle ist eines der wenigen Komplettpakete im Business. Sowohl im Ring, als auch am Mikrofon gehört er zweifellos zu den besten seiner Zunft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Neubauteneinsturzwrote on 23.02.2010:[10.0] "Er mag seinen Zenith überschritten haben, aber Kurt Angle ist immer noch einer der besten Wrestler auf dem Planeten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The-Real-Diablowrote on 11.02.2010:[10.0] "Für mich ist Kurt einer der besten Wrestler aller Zeiten. Trotz seines geschundenen Körpers bietet er den Fans Woche für Woche das beste vom besten. Er kann so ziemlich jeden Stil mitgehen und sein Matchguide beinhaltet nicht nur ein erinnerungswürdiges Match. Hinzu kommt, dass erauch in Sachen Charisma und Micwork sehr gut ist. Einziges Manko, was man nennen könnte, wäre, dass er nie zu diesem "absoluten" Superstar wie ein The Rock oder wie ein Austin geworden ist. Das ändern aber nichts daran, dass dieser Mann locker die Höchpunktzahl verdient hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: tnawrestlingfanwrote on 09.02.2010:[10.0] "einfach wirklich der beste wrestler der welt! vieleicht nicht am mic, aber im ring umso mehr. er wird gut als heel eingesetzt und als face in der wwe mochte ich ihn auch. 10p"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Aesopwrote on 28.01.2010:[10.0] "Angle ist im Ring großartig und auch seine Promos sind cool, deshalb erlaube ich mir jetzt sein Privatleben und sein Backstageverhalten mal nicht zu berücksichtigen und deshalb bekommt er die 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheROCKwrote on 22.01.2010:[10.0] "Hätte es jemals das Match Kurt Angle vs. Bret Hart (beide auf Karrierehöhepunkt! ) gegeben, wäre das 10-Punkte System wohl zu klein geworden. Sei's drum. One of The Best There Is, One of The Best There Was & One of The Best There Ever Will Be. Not ''THE BEST'' but ''ONE OF THE BEST''. Danke Kurt für alles und speziell für WrestleMania 21 und No Way Out 2006. Fans wissen was ich meine."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ThePopewrote on 17.01.2010:[10.0] "er ist einfach das perfekte gesamtpaket und er war in der wwe mein absoluter fav und bei tna gefällt er mir genau so gut. er ist meiner meinung nach der beste heel den die wrestlingwelt je gesehen hat. you suck im positiven sinne;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Hu-Manwrote on 17.01.2010:[10.0] "Mein persönlicher Held. Im Gesamtpaket das beste, was das Pro Wrestling zu bieten hat. Unglaublich charismatisch, spielt jede Rolle perfekt (ob Heel, Face oder Comedy), wird am Mic zur Zeit lediglich von Jericho und Foley überboten und hat die perfekten Wrestling Skills. Keiner kann Psychologie, Intensität, Technik und Show so gut kombinieren wie er. Darüber hinaus ist er einer der wenigen, der mit jedem Wrestler gute Matches zeigen kann, egal wie schlecht sein Gegner auch sein mag. Der Flair der heutigen Zeit. It's real! It's damn real!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KASHwrote on 13.01.2010:[10.0] "Mein all time #2 favourite nach Jericho. Einer der besten Wrestler aller Zeiten, am Mic kam er auch immer super aus meiner Perspektive. Den MUSS man einfach mögen. Der Wechsel von WWE zu TNAW war für alle Angle Fans wohl das beste. Ich finde seitdem er soviel Masse verloren hat passt er super in die X-Division. Heute ist er irgendwie ein richtiger X-Divison Wrestler, der trotzdem noch der beste Techniker ist. Im Prinzip ist er heute besser denje. Er kann wirklich mit Stock und Stein Action zwischen die Seile bringen. Legende..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HeartBKwrote on 13.01.2010:[10.0] "Einer meiner absoluten Lieblingswrestler! Wahrscheinlich einer der besten Wrestler von TNA. Technisch Stark, Unterhaltsam, Charismatisch. Er kann aus jedem Wrestlingmatch was rausholen. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheRockwrote on 12.01.2010:[10.0] "Lieblingswrestler, technisch einfach hervorragend und auch unterhalten kann er mich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RatedRJuliwrote on 07.01.2010:[8.0] "Sehr guter Wrestler der jetzt auch in der Fehde gegen Wolfe glänzen kann"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Denzwrote on 04.01.2010:[10.0] "Ganz klar, er hat TNAW auf das nächste Level gebracht, um mit WWE besser konkurrieren zu können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Telecinewrote on 26.12.2009:[9.0] "Einer der besten Wrestler der Welt, der sowohl gutes Mic Work, als auch gutes Wrestling beherrscht. Ab und zu zeigt er mal leichte Schwächen beim Selling und auch er sollte sich überlegen, wie lange man mit einem geschwächten Nacken noch Wrestling machen sollte. Auf der anderen Seite hat er bei TNA natürlich nicht so einen schweren Terminplan, aber Matches gegen Desmond Wolfe können dem Körper schon einiges abverlangen. Wenn er nochmal zu WWE zurückkehren sollte, dann wäre das sicherlich eine große Nummer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: StefanKwrote on 11.12.2009:[9.0] "starker Wrestler mit genialen Mic-Fähigkeiten. Charismatisch und einfach nur genial"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: brianpillmanwrote on 27.11.2009:[10.0] "Meiner Meinung nach der beste (da kompletteste) aktive Wrestler im Business. 100 % Glaubwürdigkeit im Ring, zudem sehr gut am Mic. Großes schauspielerisches Talent, das er leider nur sehr wenig zeigen darf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Cloverwrote on 25.11.2009:[10.0] "Ich liebe diesen Mann im Ring! Er ist für mich die Ikone schlechthin! Allerdings hasse ich es, wie er mit seinem Körper umgeht.. und seine Gier nach diesem Sport wird ihn körperlich irgendwann noch kaputt machen... dann aber hoffe ich, passiert es in einem WWE-Ring... denn da gehört er hin ;-) ANGLE RULES! and SUCKS gleichzeitig - eben eine zukünftige Legende par excellence! WE WANT ANGLE! WE WANT ANGLE! :-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Cheffewrote on 19.11.2009:[10.0] "Er ist einfach einer der besten Wrestler die noch Aktiv sind, vielleicht sogar der Beste. Seine Ring Skills und Mic Works sind einfach Fantastisch. Er schafft es mit einem durchschnittlichen Wrestler ein Hammer Match zu machen. Sieht aber immer mehr "kaputt" aus. Vielleicht wirds bald auch mal Zeit schluss zu machen, was ich aber nicht hoffe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Matt Mackswrote on 17.11.2009:[10.0] "Auch zehn Jahre nach seinem Debüt, dem Wechsel zu TNAW und einem zunehmend kaputten Körper bietet Kurt Angle das volle Programm für mich als Wrestlingfan. Er ist ein fantastischer Wrestler mit Allround-Qualitäten, dass er jeden Stil mitgehen kann. Er ist ein sehr guter Micworker, der gleichermaßen in Comedysegmenten und in ernsten Promos eine gute Figur abgibt. Dass er außerhalb des Rings manchmal eine Schraube locker hat, gehört wahrscheinlich dazu -- die Gradwanderung zwischen Genie und Wahnsinn ist schließlich nicht nur bei ihm zu erkennen. Es ist schon irgendwo einzigartig, dass ein Mann praktisch seit seinem Debüt in jedem Jahr an mindestens einem Match Of The Year-Kandidaten beteiligt ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CJodlerwrote on 13.11.2009:[10.0] "Für mich nach wie vor der beste Wrestler den es derzeit gibt. Ist in einem Atemzug mit Bret Hart oder auch Mick Foley zu erwähnen, weil er in jedem Match alles gibt und mit jedem Gegner (mag der auch noch so schlecht sein) eine super Show liefert. Machte bei WM21 gegen Michaels das beste Match, das ich je gesehen habe. Hat körperlich zwar abgebaut, kann aber immernoch sein ganzes Talent im Ring ausschöpfen. Auch Privat wieder alles im Lot. Super Kurt, ich wusste, dass du unschuldig bist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Ultrakaoswrote on 06.11.2009:[10.0] "Angle ist nach wie vor eine Klasse für sich. Er hat immernoch Klasse Matches. Er hat immer noch den Matchüberblick wie kein anderer. Angle ist einer meienr große nFavoriten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Theron083wrote on 28.10.2009:[9.0] "Immer noch fantastische Matches. Aber immer auch ein seltsamer Kerl irgendwie. :D"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kurt Winkelwrote on 20.10.2009:[10.0] "Kurt Angle kann alles, was ein Wrestler können muss. Er ist sehr überzeugend im Ring, gibt hervorragende Promos, und spielt seine Rollen glaubwürdig, ob Heel oder Face."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BoeserLobowrote on 05.10.2009:[10.0] "Der wahrscheinlich beste Wrestler der letzten 10 Jahre. Hat allerdings ausserhalb des Rings immer wieder Schlagzeilen, welche dem Sport und seinem Standing nicht gerade gut tun. Auch am Mic absolut überzeugend. Kann sowohl den Face als auch (noch besser) den Heel geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Edgecutionerwrote on 02.10.2009:[10.0] "Angle steht seit 9 Jahren im Main Event bei WWE und TNA, gewann unzählige Titel und ist technisch nach wie vor absolute Weltklasse... it's true, it's damn true."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Big Bad Booty Babywrote on 25.09.2009:[9.0] "Vor sechs, sieben Jahren war er einer der, wenn nicht der beste Wrestler der Welt. Da er sich jedoch so schwer schindet, lässt er langsam aber sich nach und ich bin mir nicht sicher, wie lange er das noch durchhalten wird. Zwischenzeitlich errinnert er mich an einen kranken, alten Mann. Trotzdem hat er es immernoch drauf und ist besser als alle anderen TNA-Main Eventer (außer vielleicht Styles und Joe, aber der hängt ja mittlerweile wieder in der X-Division rum)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Orton7wrote on 23.09.2009:[10.0] "Kurt Angle verkörpert den Heel wirklich perfekt und fehlt mir persönlich bei der WWE schon sehr, da ich TNA nicht gucke..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wichtgestaltwrote on 21.09.2009:[10.0] "Auch wenn Kurt Angle seinen Zenit mittlerweile überschritten hat ist er "IMO" immernoch der beste Wrestler in diesem Jahrzehnt. Wenn er wirklich noch der "Rick Flair der Neuzeit" ist, dann freue ich mich auf noch weitere 20 mit ihm in Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Hirnklopswrote on 17.09.2009:[10.0] "Der vielleicht beste Heel, den die WWE nach dem Million Dollar Man hatte. Bei TNA immerhin noch sehr stark, wrestlerisch sowieso über jeden Zweifel erhaben, das er abseits des Ringes ein Freak ist, lassen wir mal so stehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ghostwrote on 16.09.2009:[9.0] "Meiner Meinung etwas overrated. Natürlich ist er zurecht Main-Eventer - hat Intensität, Glaubwürdigkeit aber auch Humor zugleich, guter Schauspieler - sehr überzeugender Heel. Dennoch würde ich ihn nicht auf die ganz höchste Stufe der Bewertung setzen, der endgültige Coolness-Faktor fehlt mir einwenig.. ist aber vielleicht auch Geschmackssache/Subjektiv. EDIT: Erhöhe auf 9, da er bei TNA einfach "The Whole F***N Show" ist. haha!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: gharwrote on 15.09.2009:[9.0] "Kurt ist einfach einer der besten Wrestler die es je gab. Leider ist er bei TNA und auch wenn ich TNA ganz super finde und auch wöchentlich verfolge, gehört so ein Top Wrestler einfach in die WWE, wo er auch vor einem entsprechenden Publikum seine Leistungen zeigen kann (z. B. Wrestlemania 25 mit 70. 000+ Zuschauern). Deshalb auch nur 9 Punkte für Sexy Kurt"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Basket Casewrote on 15.09.2009:[10.0] "TNA verfolge ich nicht, aber früher bei der WWE einfach grandios. Am besten fand ich ihn zur Zeit der Invasion an Austins und Vinces Seite. Diese Segmente waren goldwert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: mongowrote on 14.09.2009:[10.0] "Was soll man noch sagen. Kurt Angle IST Pro-Wrestling! Einer der besten Wrestler aller Zeiten, wenn nicht sogar DER beste Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Joeevil123wrote on 11.09.2009:[10.0] "Gehört definitiv in die Top fünf aller Zeiten!  Er verkörpert das Wrestling wie kaum ein anderer. Weltklasse In-Ring Leistung , super am Mic und auch alles andere passt. Wer hier nicht Wertungen im oberen Bereich gibt , hat mit Wrestling nichts am Hut!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Atze19wrote on 29.08.2009:[10.0] "Genial im Ring, ein toller Redner und darüberhinaus bringt er eine Glaubwürdigkeit an den Tag wie sonst niemand. Seine Erfolge kommen sicher nicht von ungefähr. Wahrhaftig eine "Wrestling Machine". Volle Punktzahl"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: teekay86wrote on 25.08.2009:[10.0] "Einer der Besten seiner Zunft. Über seine In-Ring Fähigkeiten müssen wohl keine Worte verloren werden. Genau so Stark schafft er es am Mic und durch sein Charisma im allgemeinen einen Heel zu verkörpern den man wirklich gerne sieht. Und da TNA ein wenig von Total Nonstop Angel abgewichen ist, ist er auch nicht mehr so überpräsent das man alleine deswegen von ihm genervt ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DJ MaSchwrote on 22.08.2009:[10.0] "Man kann über den Privatmenschen Angle denken wie man will, ich persönlich halte ihn auch für einen egoistischen, eingebildeten, drogenabhängigen Gestörten, aber man bewertet hier den Worker Kurt Angle. Im Ring ist er überagend, was natürlich mit dem Hintergrund kein Wunder ist. Am Mic ist er saustark. Das Gimick passt und auch vor Charisma strotzt er einfach nur so. Für mich ist Angle einer, wenn nicht gar der beste Wrestler der Welt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Ryklon Stephenswrote on 15.08.2009:"Womit soll man bei Kurt Angle anfangen. Auf der einen Seite ist da dieser unglaublich fantastische Wrestler, der in seiner Karriere für sehr viel Aufsehen gesorgt hat. Doch auf der anderen scheint als wäre Angle ein kranker Mensch der dringend Hilfe bräuchte. Jede neue News über ihn bringt den privaten Absturz immer deutlicher ans Licht. Ihm wäre zu wünschen das er einen Weg heraus aus dem Loch findet, bevor es zu spät ist."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SirJohnsonwrote on 15.08.2009:[8.0] "Leider in den letzten Jahren etwas nachgelassen, was mich aber nicht davon abhält, mir mit Freude seine Matches anzusehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Lowflyerwrote on 24.07.2009:[10.0] "Angle ist ein großartiger Wrestler und im Gegensatz zu vielen anderen In-Ring Giganten ein unterhaltsamer Micworker der in ernsten und komischen Angles überzeugt. Auch wenn ich kein Fan von ihm bin, muss ich ihm objektiv gesehen die 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Vanniwrote on 11.07.2009:[10.0] "Eigentlich kann und muss man ihn schon als besten Wrestler aller Zeiten bezeichnen. Im Ring unglaublich technisch begabt, am Mic sowohl als Heel als auch als Face überzeugend und einfach nur stark, wobei er als Heel in seiner arroganten Art mehr überzeugen kann. Ansonsten gibt es einfach nicht viele Superstars, die im Gesamtpaket nah an Kurt Angle heran kommen, der im professionellen Wrestling eigentlich schon das Non-Plus-Ultra ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TRBM1981wrote on 01.07.2009:[9.0] "Kurt Angle ist der seit Jahren beste technische Wrestler der Welt"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Juvicidewrote on 29.06.2009:[10.0] "Ohne Zweifel ein Top Wrestler, aber wenn er so weitermacht, wird er seine Enkelkinder nicht mehr erleben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: pain99wrote on 22.06.2009:[10.0] "Wenn man einmal zur Kenntnis nimmt das unter den Top 10 Matches in der WWE mindestens 5 mit seiner Beteiligung waren. Gibt es eigendlich nur eine Punkt Zahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: heiniwrote on 17.06.2009:[10.0] "Angle ist einer der besten Techniker aller Zeiten. Bewundernswert ist auch seine Fähigkeit sehr gute Matches zu liefern. Auch ist er einfach der beste Heel den die WWE je hatte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CMFabewrote on 15.06.2009:[10.0] "Ich kann nicht verstehen warum die Wrestling machine soweit hinten in der TOP 100 Reihe ist. Meiner Meinung nach der beste aktive Wrestler unserer Zeit. Es war richtig das er zu TNA gewechselt ist. Aber ich denke trotzdem das er jetzt langsam zurück kommen sollte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Excellence of Executionwrote on 25.05.2009:[9.0] "Sicherlich auch heute noch einer der besten Wrestler aus nordamerikanischen Gefilden. Allerdings muss er sich imo zu oft mit Gegnern messen, die gar nicht seiner Kragenweite entsprechen, wodurch wirklich erinnerungswürdige Matches selten werden. Auf der anderen Seite weiß Kurt aber selbst Matches gegen weit Talentlosere aufzuwerten. Ich würde eine Rückkehr zur WWE begrüßen, weil er bei TNA schon längst alles erreicht hat. Zudem müsste TNA dann mal andere technisch beschlagene Herren an die Spitze bringen, um diese Lücke zu füllen. Aber ob die in Orlando das auch so sehen ...."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: polilopwrote on 24.05.2009:[10.0] "Wahrscheinlich einer der besten Techniker, den es gibt. Allerdings sollte er mal wieder ein bisschen zulegen, finde ihn momentan etwas zu schmal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Aquifelwrote on 03.05.2009:[10.0] "Egal ob man ihn und sein Gimmick leiden kann oder nicht, er ist definitiv einer der besten Worker aller Zeiten. Egal ob WWE oder TNA, seine Matches überzeugen einfach und wie er seine Rolle spielt, ist ebenfalls erste Sahne. Wer etwas anderes behauptet hat gelinde gesagt keine Ahnung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The-Game91wrote on 02.02.2009:[10.0] "Einer der besten Techniker überhaupt. In der WWE ein Main Eventer und auch bei TNA ein Zugpferd"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RatedRKO84wrote on 31.01.2009:[10.0] "Am Mic, im Ring, als Heel einfach glänzend. Was soll man von ihm noch mehr erwarten er macht einen Super Job, er bringt den Heel sehr gut und überzeugend herüber, am Mic zeigt er ebenfalls viel Einsatz und überzeugt mich dort auch. Am besten aber im Ring, seine Technik ist einfach unfassbar, aber was soll man von einem Olympiasieger auch anderes erwarten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BaptisteZorGwrote on 27.01.2009:[10.0] "Kurz und bündig - Kurt Angle ist einer der, wenn nicht sogar der Beste Wrestler den ich bisher in aktion sehen durfte. Als Heel am Mic ein absoluter Heat-magnet und über seine InRingskills braucht man glaub ich garnet erst diskutieren. ne glatte 10, alles andere wäre nicht gerecht"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Mick Funkwrote on 26.01.2009:[10.0] "Sehr starker Worker. Der größte Verlust überhaupt für WWE, dass er zur Konkurenz ging. Tolle Technik, 2 super Finisher und auch gute Ausstrahlung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ShakDragoonwrote on 20.01.2009:[10.0] "Ohne Zweifel einer der besten Wrestler ever! Technik top, Ringpsychologie top und auch Mic-Work top! Bei TNA wird er im Moment ganz gut eingesetzt und ich hoffe, das bleibt so."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HBK RVD Y2Jwrote on 16.01.2009:[10.0] "Einfach spitzen klasse. Er ist für mich einer der besten technischen Wrestler die es gibt. Sowohl als Face oder als Heel er ist immer super!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: User191wrote on 15.01.2009:[10.0] "Im Ring gehört er zu den Top 10 aller Zeiten und am Mic überzeugt er auch vollkommen (zumindest wenn er ein Heel ist), der es sogar schaffen würde bei seinem Heimatpublikum Heat zu ziehen. Allerdings sollte Angle mehr auf seinen Körper hören und nicht noch einmal über 200 Kämpfe im Jahr bestreiten müssen, da er aufgrund seiner "Besessenheit" vom Wrestling viele Verletzungen mitgeschleppt hat, die normalerweise eine kleine Pause notwendig gemacht hätten (allerdings geht dies nicht in die Bewertung ein, da es nur um den Wrestler Kurt Angle geht und nicht um den Privatmensch)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Blazewrote on 14.01.2009:[10.0] "Absoluter Top Wrestler. Innerhalb kürzester Zeit hat sich er sich bei WWF/WWE nicht nur einfach gut etablieren können, sondern stieg so schnell wie kaum ein anderer in den Main Event auf. Wofür andere Worker ganze Karrieren benötigen, brauchte Angle nur wenige Jahre, was zeigt, dass er einfach eine Ausnahme ist. Im Ring hat er schon den ein oder anderen zu den besten Matches seiner Karriere verholfen und ist auch am Mic sehr weit oben anzusiedeln. Bei ihm vereinen sich wrestlerisches Können, Look und Mic Work auf höchstem Niveau. Bei WWE schon der Hammer, jetzt bei TNA gefällt er mir noch mal ne Ecke besser. Er hat im Ring ein Feuer, was ich bei vielen WWE Main Eventern einfach überhaupt nicht erkennen kann und wrestlet zur Zeit spektakulärer als je zuvor. Kurt Angle schont seinen Körper absolut kein bisschen und spielt daher auf einem Level, was nur extrem wenige Wrestler erreichen. Auch wenn er TNA noch mehr ins Rampenlicht rücken wollte und ihm das noch nicht ganz gelungen ist, hat die Company einen Schritt nach vorne gemacht. Was kann man außer 10 Punkten anders geben? !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Tomkowrote on 06.01.2009:[6.0] "War sicherlich einer der besten Wrestler weltweit, doch diese Zeit ist nun schon lange vorbei. Heute ist er nur noch ein Schatten seiner selbst und wie viele nur aufgrund seines Namens TNAW-Main-Eventer!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Smoky63wrote on 05.01.2009:[10.0] "Trotz seiner physischen Blessuren und Verletzungen schafft es der Mann, immer wieder tolle Matches zu zeigen... ich vermisse die Zeiten Angle vs. Benoit"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Atze20wrote on 02.01.2009:[10.0] "Angle ist schlicht und ergreifend überragend. Zwar hat er seinen grossartigen Zenit ein wenig überschritten, weiss aber noch immer zu überzeugen. Am Mic grossartig, charismatisch und glaubwürdig wie sonst Niemand. Darüberhinaus grosse Erfolge. Hat glaube ich alles gewonnen, was man so im Buiz gewinnen kann. Das einzige Total Package, dass ich kenne. Klare 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MarcB126wrote on 26.12.2008:[10.0] "Der beste Performer den das Wrestling je gesehen hat. Jedes seiner Matches waren der Hammer. WE SEE YOU SOON IN WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Felice-del-mondowrote on 26.12.2008:[9.0] "attitude era als comedy face ganz amüsant... gebe nur 9 pkte da er die meiste ziet heel war :P... aber sein commitment für diesen job ist einzigartig!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Huzerwrote on 18.12.2008:[10.0] "Super toller Wrestler, nicht sogar einer der besten. Ich mag ihn einfach und die Fehden mit ihm sind immer interessant."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Charismatic Enigma4000wrote on 13.12.2008:[7.0] "Im Ring großartig, außerhalb kann ich ihn nicht leiden."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Flame286wrote on 09.12.2008:[5.0] "Schonlange nicht mehr das was er mal war. Nur noch langweilig und die Sache mit der MEM ist auch nicht besonderst."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The System Failedwrote on 14.11.2008:[10.0] "Kurt Angle ist ein grandioser Wrestler, der eine unglaubliche Technik und sehr gutes Mic-Work perfekt vereint. Einer meiner absoluten Lieblings-Wrestler und der einzige Grund, warum ich angefangen habe, TNA zu schauen und zu verfolgen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Akkuswrote on 08.11.2008:[7.0] "Im Ring ganz klar ein Gott, ich konnte mich aber nie so richtig mit ihm anfreunden! Ztrotzdem 7 Punkte weil er halt so geil im Ring ist."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: alkoholiKAwrote on 17.10.2008:[10.0] "Einer der besten aller Zeiten. Über seine In-Ring Qualitäten kann man nicht streiten. Einfach weltklasse. Und auch am Mic absolut spitze. Leider wird er wohl aufgrund seines Ergeizes demnächst einige Abstriche machen müssen. Hoffentlich wird er den Wrestling Fans noch lange erhalten bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MrWrestlingwrote on 05.10.2008:[10.0] "Einer der besten Wrestler. Bei WWE jedoch um Welten besser als bei TNA!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Instant Classicwrote on 05.10.2008:[1.0] "Ziemlich overrated. Hat seinen Höhepunkt schon lange hinter sich und überzeugt nicht mehr - weder im Ring noch am Mikrofon."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: StoneColdRevowrote on 29.09.2008:[7.0] "Kurt Angle ist ein wirklich guter Wrestler, keine Frage. Aber ich finde nix an ihn, was mich aufspringen lässt und sagt "Wow, das ist doch mal ein geiler Wrestler. " Aber von mir bekommt er noch 7 Punkte. ^^"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Hijo Rudiciowrote on 24.09.2008:[10.0] "Ich kenne niemanden, der augenblicklich besser wäre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Ric Flair88wrote on 18.09.2008:[10.0] "was soll man über Kurt Angle sagen? Er ist aus meiner Sicht das Idealbild eines Professional Wrestlers. Seine Leistungen im Ring sind atemberaubend wie seine Matches gegen Shawn Michaels, Chris Benoit oder auch Samoa Joe zeigen. Er kann jeden wrestler zu einer vernünftigen Leistung ziehen und bringt auch noch haufenweise Charisma mit. Ein Kurt Angle braucht aber eigtl gar kein Mic denn er erzählt seine Geschichte perfekt IM ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Weihnachtsmannwrote on 14.08.2008:[8.0] "Gut im Ring, seine Gimmicks konnten mich aber nie wirklich fesseln. Für seine guten Leistungen im Ring gibt es aber dennoch 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Rated-RKOwrote on 13.08.2008:[10.0] "Ein bewundernswerter Techinker der sein Werk versteht. Für TNAW ist er eine große Bereicherung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Grissomwrote on 12.08.2008:[10.0] "Einer der besten und ehrgeizigsten Wrestler die es gibt und der immer 100% gibt, leider ohne rücksicht auf seine Gesundheit zu nehmen. Ich hoffe noch auf ca. 2-3 gute Jahre für Kurt in denen er vor schlimmeren verletzungen verschont bleibt und dannach wäre der richtige Zeitpunkt aufzuhören."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Edibaswrote on 04.08.2008:[8.0] "Sicherlich einer der besten technischen Wrestler aller Zeiten. Allerdings übertreibt es Angle mit seiner Liebe zum Sport und riskiert dabei seine Gesundheit. Man muss ihm nur einmal in die Augen schauen und muss sich dabei fragen wie weit Angle eigentlich vom hier und jetzt entfernt ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: WerderBremenwrote on 14.07.2008:[10.0] "Ich denke, dass es nicht schwer ist Kurt Angle "You suck" zuzurufen und gleichzietig nur zu staunen, was er uns im Ring bietet. Es ist unglaublich, was er für Feuerweke allein abbrennen kann. Hinzu kommt, dass er am Mikro auch immer einen guten Eintruck macht und seine Fehden (fast) immer interessant sind. Ich persönlich mag Wrestler, die starke Signatures oder starke Holdmoves draufhaben... : Und Kurt Angle hat beides. Sein Angle Lock ist auf jeden Fall mit der härteste Aufgabegriff überhaupt und hat (oftmals leider) schon so einige zum Abklopfen gebracht! Eine Klasse Aktion eines echter Main-Eventers eben! Das Einzige was es auszusetzten gibt: Kurt, was suchst du bei TNA? Komm doch zurück zur WWE! Da wirst du wieder herausstechen und mich beeindrucken!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LordTrailerwrote on 16.06.2008:[9.0] "Für mich ein Ric Flair Effekt. Klar, einer der besten Wrestler aller Zeiten und auch am Mic eine Bombe. Aber ich bin mir nicht sicher, ob er sich einen Gefallen tut weiter im Ring zu stehen. Nicht, weil er es nicht mehr drauf hat, sondern weil sein Körper schon arg geschunden ist. Seine Interviews auch im Ring werden zudem immer wirrer. Wenn er zurücktritt kriegt er zur Zeit sicherlich eine 10, so muß ich nochmal leicht abwerten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: John Morrisonwrote on 14.06.2008:[10.0] "Für mich der beste Wrestler aller Zeiten! Unvergesslich sein Match bei WM XI! It's True!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Know Nothingwrote on 13.06.2008:[10.0] "Extrem guter Wrestler und super Micwork! Ich liebte ihn. Achja: Kurt You Suck! You Suck! You Suck!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: gerybundy68wrote on 08.06.2008:[8.0] "DER Wrestler von TNA. Nervt ab und zu mit seinen Shoots gegen die WWE in Interviews. Hat das nicht nötig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: JohnnyCashwrote on 28.05.2008:[9.0] "Angle ist für mich DAS Gesamtpaktet. Find ihn am Micro überzeugend & im Ring sensationell. Was er Backstage treibt interessiert mich hier jetzt nicht. Ist allerdings leider nicht mehr so stark wie noch für 3, 4 Jahren aber immer noch über jeden Zweilfel erhaben => 1-"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MemphYwrote on 17.05.2008:[10.0] "Tja.... man möge sich seine matches anguggen und 10p geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: King of Queenswrote on 15.05.2008:[8.0] "Starker Wrestler. Charismatisch, gut am Mic und bei TNA die letzte Zeit leider völlig überpusht. Mindert zwar seine Leistung nicht, aber ist einfach ein Nervfaktor, der hoffentlich abklingen wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DanielBryan1986wrote on 13.05.2008:[8.0] "Ein etwas zu schneller Aufstieg 2000. Beim Hell in a Cell bei Armageddon mit viel Glück als Überlebender. Mit Kämpfen gegen Chris Benoit, Eddie Guerrero und besonders Shawn Michaels Top! Kurt Angle bei TNA einer der Führungspersonen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: xXShawnMichaelsXxwrote on 10.05.2008:[10.0] "Er hat den Namen "Wrestling Machine" zurecht, ich muss zugeben ich bin keiner der TNA regelmäßig verfolgt, aber allein seine Art bei der WWE/WWF hat mich überzeugt ihm 10 Punkte zu geben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Bekiffskiwrote on 08.05.2008:[9.0] "So, jetzt mal ehrlich. Kurt Angle ist, unumstreitbar, derzeit der beste Techniker neben vielleicht Danielson oder Haas. Aber dennoch nur 9 Punkte, weil er charakterlich einfach nur ein Kotzbrocken ist. Ende."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Desperadowrote on 26.04.2008:[10.0] "Imo ist der Mensch Kurt Angle ein arroganter, von sich selbst eingenommener Mistkerl, aber trotzdem muss man den Wrestler Kurt Angle einfach toll finden. Angle ist für mich einfach der beste Techniker im Main Stream Wrestling, einfach unglaublich der Typ. Außerdem ist er als Face und als Heel gut, kann in jeder Rolle überzeugen und gute Promos halten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: John of Gauntwrote on 24.04.2008:[9.0] "Einer meiner All-Time-Favourites. Einer der technisch besten Wrestler die es überhaupt gibt, der auch immer wieder für gute und lustige Promos gut ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: e-trom995wrote on 21.04.2008:[10.0] "Zum glück hat er sein altes WWE/WWF Gimmick vom "Weichei" aufgegeben. Schade, dass er jetzt bei TNA ist, aus meiner Sicht würde er der WWE gut tun."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Domiwrote on 20.04.2008:[10.0] "meiner Meinung nach hat die WWE einen absoluten TOPMANN gehen lassen denn für mich hat er super Mic Work, klasse Techniker aber naja kein Einzelfall"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ButchIncwrote on 12.04.2008:[10.0] "Weniger als die volle Punktzahl geht hier mal gar nicht. Oh, it's true, it's damn true! Nicht nur ist er einer der besten Pro-Wrestler, die je einen Ring gestiegen sind, auch spielt er seine Rollen perfekt. Heel, Face, Comedy, Ernsthaftigkeit, scheiß egal. Angle hat alles drauf. Mic-Work? Auch das. Ich glaube, es gibt nicht allzuviele Leute, die wirklich eine solche Anzahl an guten Matches gezeigt haben, und das auch noch egal mit welchem Gegner. Ich könnte ihm einen Punkt-Abzug geben, da ich trotzdem kein wirklicher Angle-Fan bin, aber man muss sich seine Leistungen einfach eingestehen, und auch nur objektiv verdient er nicht weniger als 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Amurebkuwrote on 09.04.2008:[8.0] "Einer der absolut besten Wrestler die es gibt. Seine Matches sind immer unterhaltsam. Auch wenn es mal gegen schwächere Gegner geht, lässt Kurt Angle dieses Match echt gut aussehen. Ich fand ihn trotz allem in der WWE besser aufgehoben. In der TNAW nervt er nur noch. Ob mit seinen Promos oder auch mit seinen privaten Äußerungen. Er macht sich teils mit seinen "Geschichten" selbst lächerlich. Noch zu WWE-Zeiten hätte er eine klare 1 bekommen. Jetzt reicht es nur noch zu einer ganz knappen und schlechten 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Joe710wrote on 04.04.2008:[6.0] "Als er zu TNA gewechselt, war es fast als wäre eine Bombe eingeschlagen. Damals dachte ich wirklich, er würde die Promotion viel weiter bringen, als sie heute ist. Bei der WWE stand Angle immer hinter Leuten wie HHH, HBK dem Undertaker usw. Und ich glaube, dies war auch der Grund, warum er jeden Abend, das beste Match bestritt, weil er sich beweisen wollte. Bei TNA bekommt er aber irgendwie alles geschenkt und hat meiner Meinung nach sehr stark nachgelassen. So hart es klingt, ich habe langsam echt genug von ihm. Und das liegt nicht an seinen tollen Heel-Skills, es ist nähmlich so, dass ich TNA gar nicht mehr verfolge. Und jeder der ein Interview von Angle, der letzen paar Monate mitgekriegt hat, wird merken, dass er ein ziemlicher Träumer ist."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Urbaner1982wrote on 26.03.2008:[6.0] "Die 3 begründe ich auch gerne: Zur Zeit einfach "DER" überbewerteste Wrestler überhaupt! Er kam nach TNA... super. Er legte sich mit Joe an... super. Er wurde Champ... auch gut. Aber dann... legte er seinen "Ego Trip" an. Wenn Leute wie Styles oder Tomko ihn nicht geholfen hätten, wäre jemand anderes Champ geworden. Bei Match gegen Kaz hab ich gemerkt, dass er nichts mehr taugt: Kaz zeigt eine Aktion nach der anderen, Angle sellt nur... zeigt zwar gute Near Falls... aber dann... Olympic Slam... Angle Lock... Kaz tappt aus. What? Wer hat den Müll gebookt?"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Unrated Superstarwrote on 21.03.2008:[6.0] "Wrestlerisch natürlich ein Genie, obwohl ich Chris Benoit und HBK noch um Ecken besser finde. Gimmick-mäßig gleicht er jedoch einer Schlaftablette und am Mic ist er auch nicht so der Bringer. Ist bei TNA jetzt das, wogegen er in Interviews immer wettert: nämlich Mr. Backstage, was Triple H bekanntlich in der WWE ist. Shootet mir in letzter Zeit auch zu sehr gegen die WWE und hypt TNA in den Himmel, obwohl die fast den gleichen Mist bauen. Tja, er macht eben nur seinen Job als TNA-Zugpferd... allerdings hört man von John Cena und HHH nie solche Shoot-Paraden in Richtung TNA."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MBLegendwrote on 21.03.2008:[10.0] "Für mich der beste Wrestler aller Zeiten. Gutes Mic Work. Super Techniker. High flying Elemente. Charismatisch. Der Inbegriff des Pro Wrestlers. Er hat in letzter Zeit leider etwas abgebaut, aber noch immer in der Lage gute Matches abzuliefern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: edgeheadwrote on 20.03.2008:[8.0] "In seiner Blütezeit von 2001-2005 war er ohne Zweifel einer der besten Wrestler bei WWE, hat jedoch seit 2006 und vor allem seit seinem Wechsel zu TNA stark abgebaut. Er zeigt zwar immer noch gute Matches, jedoch nicht mehr auf dem Niveau früherer Zeiten, am Alter liegt das auf keinen Fall (siehe HBK u. a. ). Nervt mich zur Zeit auch nur noch, als TNA Champion und Shooter gegen WWE. Dennoch aufgrund seines definitiv vorhandenen wrestlerischen Könnens im guten Bereich."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: McKnupwrote on 16.03.2008:[4.0] "gefällt mir bei TNA nicht! Eig note 3 aber für diese interviews und shoots gegen HHH und HBK und durch sein backstageverhalten nur ne 4!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheBastion90wrote on 15.03.2008:[2.0] "Ich respektiere ihn für seine Leistung, doch nicht für sein Backstage Verhalten und alles andere... Der Typ geht mir auf die Nerven sobald der nur Ansatzweise im Bild ist. WWE zur Attitude Zeit ok, Angle vs. Brock Lesnar, ok aber dann war Schluss bei mir."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LexLuger4everwrote on 11.03.2008:[10.0] "Zusammen mit Chris Benoit einer der besten In-Ring Performer aller Zeiten! Zudem sowohl als Heel als auch als Face überzeugend, auch sein Mic-Work ist ordentlich! Seit 2005 gefällt er mir zwar nicht mehr ganz so gut, doch aufgrund der überragenden Jahre 2000-2004 muss ich ihm ja fast schon die 10 Punkte geben, egal, was danach kam oder noch kommen wird!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Aaronwrote on 04.03.2008:[6.0] "Früher der beste technische Wrestler, derzeit aber nur noch schwach im Ring und nicht mehr sein früheres ICH! Er kann diesen anspruchsvollen Stil einfach nicht halten! Leider..."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: AnFuwrote on 02.03.2008:[10.0] "Kurt Angle ist ein klasse Wrestler. Sicher hat er nachgelassen, aber sein Match im Tokyo Dome gegen Nagata war klasse und er hat gezeigt, was er noch kann. Cooler Typ, Olympiasieger, Bestnote!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Showstopperwrote on 21.01.2008:[10.0] "Tja... Was soll ich zu Kurt grossartig sagen. Bin froh, dass ich seinen kometenhaften Aufstieg zum Topstar verfolgen durfte. Darf in der TNA endlich längere Zeit die Fackel tragen. Go Kurt. Der beste Worker der letzten 10 Jahre im Pro Wrestling und überhaupt einer der grössten Wrestler ever. The Total Package eben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Garvinwrote on 15.01.2008:[10.0] "Allein die Tatsache, dass er es geschafft hat, innerhalb von knapp sechs Jahren über 100 sehenswürdige Matches zu liefern, macht ihn erstklassig. Wenn man bedenkt, dass er einer der charismatischsten und unterhaltsamsten ist, dann wäre alles andere als eine 1 nicht richtig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: devilsoldierwrote on 07.01.2008:[8.0] "Früher gefiel er mir richtig gut, aber bei TNA wird er zu sehr zum Star gepuscht, langweilt schon. Konnte Talente so gut hoch bringen aber muss als "Überwrestler" dastehen. 3 Titel gleichzeitig- BITTE wie real!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Stone Cold Andywrote on 05.01.2008:[8.0] "Hat seit dem Wechsel zu TNA stark nachgelassen. Verdient für seine großartigen Leistungen in der WWF/WWE dennoch eine 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Yetiwrote on 30.12.2007:[10.0] "Ein Großartiger Wrestler, keine Frage, deshalb auch die Benotung, aber spätestens mit 50 ist der Typ ein körperliches Wrack, wenn er es jetzt denn noch nicht ist. Nach seinem Rücktritt befürchte ich, dass man noch viel über ihn hören wird..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MA Excellentwrote on 29.12.2007:[10.0] "Bester Wrestler der Gegenwart, in Sachen Mat- bzw- Submission-Wrestling unübertroffen. Sehr anpassungsfähiger Stil und somit kontinuierlich gute Matches, unabhängig vom Stil des Gegners. Auch seine Promos grenzen an Genialität. Was vielleicht ein wenig fehlt ist die Face-Qualität, Heat bekommt er i. d. R. als Heel bzw. Tweener."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Y2J Michaelswrote on 27.12.2007:[8.0] "Super Wrestler keine Frage, nur leider in der falschen Promotion. Die WWE hat ihn besser eingesetzt und so konnte er sein ganzes Talent an den Tag legen. Deshalb "nur" eine 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Bullit69wrote on 26.12.2007:[10.0] "Wahrlich einer der besten Wrestler der Welt! Zudem noch richtig lustig(Attitude Era) und unterhaltend! Sollte ja auch in einem WWE Film mitspielen aber naja vllt schafft er es ja auch so! :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: mr sledgehammerwrote on 25.12.2007:[10.0] "Für mich der beste Wrestler den das Business je hervorgebracht hat. Er ist sowohl ein begnadeter Techniker als auch eine kräftige Wrestlingmachine. War immer der überzeugenste, arroganteste Heel der WWE und auch bei TNAW sind seine Matches legendär. 10 PUNKTE FÜR ANGLE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Pinguwrote on 16.12.2007:[6.0] "Seit dem Verlassen der WWE nur mehr Mittelmaß, außerdem so ehrgeizig, dass es schon übertrieben ist. Das wird er eines Tages durch eine schwere Verletzung oder den Rollstuhl bezahlen!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Comptonwrote on 03.12.2007:[10.0] "Man kann es nicht anders sagen: Kurt Angle sollte mit dem Wrestling aufhören. Jetzt. Sofort. Je früher, desto besser. Denn vom Olympiasieger gab es schon seit Langem keine schönen Backstage-Nachrichten mehr. Er SOLLTE jetzt aufhören, nur um Schlimmeres vorzubeugen. Immerhin hat er in seiner Karriere schon so ziemlich alles erreicht. Und alle, die ihn kennen, brauchen keine 20-World-Title-Gewinne von ihm, um zu sagen, dass Kurt Angle einer der besten Wrestler aller Zeiten ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Pumuckel1980wrote on 26.11.2007:[2.0] "Angle kann meiner Meinung nichts als seine Belly to Belly und German Suplexes, sowie den Angle Slam abgesehen von seinem lächerlichen Moonsault der zu 90 % ins Leere geht, sorry"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Haukewrote on 25.11.2007:[6.0] "Technisch sicher brillant. Aber irgendwie nicht mein Fall."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Mr Wrestlemaniawrote on 18.11.2007:[10.0] "Seit Wrestlemania 21 hab ich denn wahren "Wrestling God" bewundert. Aber zurzeit ist der vollig bekloppt. Er nimmt das Wrestling viel zu ernst"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Maxi22wrote on 30.10.2007:[10.0] "Angles Matches waren fast alle großartig und auch sein Micwork ist herausragend. Vielleicht kein Topstar a la Hogan, Rock, Austin, etc. , aber einer meiner Lie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Benny110106wrote on 28.10.2007:[10.0] "Wohl der beste Wrestler der jeh im Ring stand. Aufgrunddessen eine 1+, aber leider schaffte er es nie eine Liga wie Hogan oder Flair zu tragen, daher nur eine 1 ;-))))"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: FloriGPunktwrote on 24.10.2007:[10.0] "Absolut genialer Submission-Wrestler! Macht am Mike viel Spaß und hatte in der WWE eine super Musik zum Mitsingen.... Gefiel/Gefällt mir als Heel am besten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kreuflexwrote on 24.10.2007:[10.0] "Vielleicht der beste Wrestler der Welt... Komm endlich zurück zur WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Winnie The Poohwrote on 24.10.2007:[10.0] "einer meiner absoluten Lieblingswrestler. Seine Matches waren immer sehr ansehlich. Ich fand es immer unglaublich, wie stark er Reaktionen bei den Fans hervorrufen konnte. Und seine Matches... Hammer :-) Schade das er bei WWE weg ist, aber gilt nun bei der TNA als absolutes Zugpferd. Schon geil. Aber will endlich TNA regelmäßig und aktuell im deutschen TV sehen :-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CM Dannywrote on 20.10.2007:[8.0] "An Kurt gibt es fast nichts auszusetzen. Da ich aber seinen selbstzerstörerische Art nicht unterstütze gibts nur eine 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Bhanduwrote on 08.10.2007:[8.0] "Die perfekte Mischaung aus hervorragendem Wrestler und Entertainer. Hat bei WWE alles erreicht, was es zu erreichen gibt. Kennt leider wohl seine Grenzen nicht - da kommt ihm das leichtere Schedule bei TNA sicher entgegen. Macht zuletzt wieder einen fitteren Eindruck. Leidet bei TNA derzeit allerdings unter schlechtem Booking!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Jericho Onewrote on 04.10.2007:[10.0] "Der beste Wrestler den ich im Ring gesehen habe! Sein Micwork finde ich persönlich nicht so ansprechend, er bringt seine "Message" trotzdem rüber. Trotz dieser Einschränkung gebe ich im eine 1, weil er im Ring diese Defizite wieder weg macht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Oli10wrote on 02.10.2007:[8.0] "Hat mir im Ring immer gut gefallen! Schade das er nicht mehr in der WWE ist!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: dariawrote on 30.09.2007:[10.0] "es fällt schwer, ihm nicht die volle Punktzahl zu geben... er ist schon jetzt eine Legende"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Nick Toxicwrote on 21.09.2007:[10.0] "Hab ihn nur einmal Live im Ring "bestaunen" dürfen. Der Mann ist WRESTLING durch und durch. Ein Topwrestler, wenn nicht sogar der beste Wrestler in den USA. Ansonsten finde ich seine Arbeit in den TV-Shows einfach nur großartig..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: morpheuswrote on 15.09.2007:[8.0] "Der vielleicht kompletteste Wrestler aller Zeiten Technik , Kraft , Schnelligkeit sind top. Normalerweise müsste er alles dominieren. Sollte aber besser auf sich aufpassen ( gesundheit ) . also keine frage ne glatte 10 fürs können aber nur 6 für die Ausstrahlung macht 8 points."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Alan Smitheewrote on 14.09.2007:[8.0] "Seit ein paar Jahren gehört Angle zu den Leuten den ich nicht im Dunkeln über den Weg laufen möchte aber er ist ein Weltklasse Wrestler, doch für die völlig Wahnsinnige Heel-Version von Angle will ich einfach keine 10er Wertung geben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DannyGeigwrote on 06.09.2007:[10.0] "Genialer Mann als Wrestler unübertreflich was er für Matches auf die Beine gestellt hat, dieser Mann schafft es auch aus einem nicht so begabten Wrestler ein Hammer Match rauszuholen. Und mit sehr begabten Superstars stellt er Match of the Year Kanditaten auf. Kurt Angle einer der besten im Ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Manuelwrote on 06.09.2007:[10.0] "Einer der besten Technischen Wrestler vielleicht nicht schon der beste neben Chris Benoit damals."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Obermackerwrote on 03.09.2007:[10.0] "Hat den Sprung vom Amateurringer zum Pro-Wrestler vollzogen wie kein anderer und deckt mittlerweile alle Facetten dieses Sportes hervorragend ab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: shannonmoorewrote on 07.08.2007:[10.0] "Toller Wrestler aber wenn man so zurück schaut war er trotz alles Erfolge NIE der Topstar einer Liga."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jerseyhoolwrote on 31.07.2007:[10.0] "nur ein wort: fantastisch! dieser mann IST wrestling! und vince mcmahon wird sich wohl auf ewig fuer seinen abgang verfluchen! ich hoffe, dass uns kurt noch lange, lange erhalten bleibt & unterhaelt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: FiveStarwrote on 21.07.2007:[8.0] "Zweifellos einer der besten puren Athleten unseres Sports - seine Zeit als brüllende Wrestling-Machine war eher unvorteilhaft bzw. hat sein vorhandenes Charisma nicht ausgeschöpft, aber in letzter Zeit gefällt er mir als "Mr. Total Nonstop Angle" wieder richtig, richtig gut."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HHH-Stephwrote on 11.07.2007:[10.0] "einer der besten technischen Wrestler der Welt... zeigt unglaubliche Ringleistungen und besitzt auch gutes Micwork und Charisma"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Anti-Championwrote on 07.07.2007:[10.0] "Spitze im Ring und am Micwork. Einer der wenigen Wrestler in Amerika die in der Lage sind 5 Sterne Matches zu zeigen (auch wenn es länger her ist)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: PuroDragonwrote on 04.07.2007:[8.0] "Der Junge ist einfach nur noch Krank, sowohl Körper als auch Geist. Trotzdem sollte man seine früheren Erfolge und Leistungen beachten, deswegen gibts von mir eine Zwei"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Blade Bourdeauxwrote on 01.07.2007:[10.0] "Der Mann ist einfach Spitze, ob es nun in seinen letzten Storylines in der WWE, oder seine Ankunft bei TNA waren. Ob er nun den Durchgeknallten sehr gut spielt, oder ob er es wirklich ist, ich sehe ihn wirlich gerne."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DrBreswrote on 29.06.2007:[10.0] "Sehr unvernünftig seinem Körper gegenüber... aber sonst gibbet nichts zu meckern. Einer der besten Techniker überhaupt, auch seine Mic-Skills und Promos sind genial... legendär... der Rap-Battle mit Cena!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ShaneOwrote on 28.06.2007:[6.0] "Ich find ihn irgendwie langweilig. Hat für mich nichts besonderes. Mehr als German Suplexes, Angle Slams und Angle Locks zeigt er nicht - für meinen Geschmack nichts besonderes!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Foerstawrote on 24.06.2007:[10.0] "Hat seine beste Zeit hinter sich, doch die scheint noch weit über ihn gen Himmel, denn im Moment ist er ziemlich langweilig geworden und es wirkt so, als ob er nur noch aus Langeweile zu TNA gegangen ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Der Kaschwrote on 24.06.2007:[10.0] "Kurt Angle ist einer der wehnigen allround talentierten Wrestler. Vieleicht ist der Angle Lock nicht der anspruchsvollste Move jedoch passt er zu seinem Gymmik. Sein 1. match gegen Samoa Joe und Michaels waren perfect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HCN007wrote on 24.06.2007:[10.0] "Kurt Angle ist DIE LEGENDE des Wrestlings schlechthin. Schade, das er grade bei TNAW ist, denn ei der WWE hat er das Zeug jeden, und damit meine ich jeden zu bezwingen und wie er das mit Henry hingekriegt hat einfach GenialOLYMPIC HERO=WRESTLING MACHINE=THE ONE AND ONLY LEGEND"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Der beste Wrestler aller Zeiten! It's Truth ... It's Truth !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Chris Cagewrote on 24.06.2007:[8.0] "Ich muss mich Deadman81 und anderen anschließen, zwar ist er ein absolut hervorragender Wrestler, doch er nimmt das Wrestling viel zu ernst und wird es nicht mehr weit in diesem Buisness schaffen wenn er so weiter macht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Deadman81wrote on 24.06.2007:[8.0] "Einer der besten Wrestler überhaupt ! Super Techniker, Riesen Performer. Befindet sich ( durch seine Verletzungen) momentan leider auf dem Selbstzerstörungspfad. "
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Hunter2007wrote on 24.06.2007:[8.0] "Ein guter Wrestler , der aus jedem Match ein tolles Match macht , nur manchmal sind die Matches ein bisschen schwächer als man vermutet."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wrestlingmashinewrote on 24.06.2007:[10.0] "Der Beste Wrestler der Welt und vielleicht aller Zeiten. Bisher auf jeden Fall. Seine Promos gefallen mir auch sehr vor allem die in der Cena Fehde. Als er gerappt hat! Einfach göttlich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: renol2007wrote on 24.06.2007:[10.0] "Kurt Angle ist einer der besten Wrestler aller Zeiter!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: hostrodwrote on 24.06.2007:[10.0] "Immer auf der Gratwanderung zwischen Genialität und Wahnsinn. Zur absoluten Nummer Eins wird er bei mir aber nie - er nimmt das Geschäft zu ernst, und deshalb empfinde ich ihn als Spaßbremse :o)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jupp365wrote on 24.06.2007:[10.0] "Spitzen Wrestler, geniale Ausstrahlung, einfach das Rundum-Paket schlechthin. Ich hätte gerne ein Match zwischen ihm und einem Bret Hart in seinen besten Jahren gesehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: timbo7111wrote on 24.06.2007:[10.0] "Hat sich 10 Punkte redlich verdient. Gucke erst seit kurzem wieder Wrestling (habe nach WM XI oder XII aufgehört zu gucken) und hatte Angle vorher nie im Ring gesehen. Selbst mich als absoluten Oldschoolfan hat er total überzeugt. Unglaublich dieser Mann!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: D3adm4nwrote on 24.06.2007:[8.0] "Mag ihn persönlich nicht, muss aber seine herausragenden Leistungen und Verdienste honorieren..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sharkwrote on 24.06.2007:[6.0] "Wrestlerisch nartürlich eine Wucht aber es gibt auch bessere... und seine Gimmicks haben mich persönlich nie so überzeugt...."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Mediwrote on 24.06.2007:[8.0] "Sorry Leute...... seine Techniken und Leistungen sind natürlich vom feinsten, versteht mich da bitte nicht falsch, aber irgendwie konnte er mich nie über all' die Jahre SO überzeugen, dass ich gesagt hätte: "Ja, er ist DER ABSOLUTE oder zumindest richtig unter meinen Top 10 auch nur. ""
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Carsteinwrote on 24.06.2007:[10.0] "Glaub is bei keinem so leicht die 1 zu geben denn Angle ist einfach das Total Package ohne große Defizite"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DasMwrote on 24.06.2007:[8.0] "Kontrovers, da eigentlich eine 10 die Mindestwertung sein sollte, eine 1 aber, weil hier der Mensch Kurt Angle zugrunde geht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: mdbnasewrote on 24.06.2007:[10.0] "Technisch genial, und nicht umsonst Goldmedaillengewinner bei den Olympischen Spielen. Seine Leistungen sprechen für sich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sancezzwrote on 24.06.2007:[10.0] "Einer der besten Wrestler die ich in meinem ganzen Leben gesehen habe. Er kann noch mehr. Einer, der unbedingt einen Push braucht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Steven McWheelerwrote on 24.06.2007:[8.0] "Für mich zwar der beste Wrestler der Welt, also rein kampftechnisch gesehen, und auch mit dem nötigen Charisma etc. ausgestattet, jedoch ist der Typ krankhaft veranlagt, überergeizig und irgendwie komplett durch, deshalb keine Höchstnote"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sandman16wrote on 24.06.2007:[10.0] "Was anderes als eine 10 kann man nicht geben. Ein erstklassiger Techniker und überhaupt einer der besten Wrestler auf der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Vimeswrote on 24.06.2007:[6.0] "Kurt ist ohne Frage neben Chris Benoit und Shawn Michaels DER In-Ring-Performer der WWE. Allerdings hat er aus meiner Sicht das Charisma eines Backsteins und seine Promos fand ich nie wirklich amüsant(außer in der Fehde gegen Cena). Darüber hinaus ist der Ankle Lock der langweiligste(und technisch anspruchsloseste) Finisher den es gibt(vielleicht abgesehen von dem Sleeper Hold)."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jimpanse1980wrote on 24.06.2007:[8.0] "In der WWE TOP, bei TNA aber noch nicht wirklich was gerissen außer ein paar gute Matches mit Joe. Hat den Titel noch nicht verdient, wird TNA aber weiter nach oben bringen und das ist auch sein Job. Ein MMA/UFC-Figt gegen Lesnar wäre noch interessant."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Blue Meaniewrote on 24.06.2007:[10.0] "Er erträumte sich der beste Wrestler aller Zeiten zu werden und dieser Traum wurde ihm erfüllt! Er ist der wohl beste Allrounder ever, auch am Mic ist er IMO wirklich gut, denn in der WWE konnte er als "Olympic Hero" mit zahlreichen Promos überzeugen. Als "Wrestling Mashine" passt es ohnehin nicht mehr, dass er lange und gute Promos hält, sowieso hört sich seine Stimme durch diesen Mundschutz jetzt immer so komisch an ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Thomas Carlsonwrote on 24.06.2007:[10.0] "Wahrscheinlich zerstört er sich weiterhin selbst aber der Kerl hat Talent, Charisma, das Aussehen usw. Alles andere als eine 10 kann ich hier nicht geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: BatteryofSoundwrote on 17.12.2024:[6.0] "Wow, recently there were some opinions that are so close to my heart. I thought everyone thought Satomura-san was a great wrestler. The better than the best like Macho Man said. Well, I don't think so. At the beginning of her career, it was pure imp, angry eyes, this face angry at the world, a sea of emotion. As time passed and Meiko Satomura became... a normal, nonchalant, kind of indifferent, emotionless wrestler that you don't want to worry about. It's like she doesn't care. There's no doubt that her strikes and punches are great, moves are less, but... I'm watching Meiko's matches this year - I know how they're going to end, no matter how hard her opponents try. I just hope Emi Sakura beats her, it's the right thing to do for what she said about Emi. And in her farewell match, she'll probably lose to Chihiro. That's all I have to say about Meiko Satomura."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: chachuonlinewrote on 14.12.2024:[6.0] "Meiko Satomura is obviously talented, but, for me, does not reach that "all-time" level with her matches. There's something missing which keeps her from being the legend I believe she should have been. Her in-ring work is strong-powerful strikes and sharp submissions-but it often lacks that spark or those unpredictability moments that makes a match one never forgets. It's hard to not consider "what ifs" of her career: what if she'd taken greater risks and pushed for more earthshaking matches? Instead, she is a wrestler that was at the brink of some big something but never fully broke through into it."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: manamimeltzerwrote on 14.12.2024:[6.0] "A legend in the game but I don't think her in-ring output quite matches her reputation, and when it comes to the amount of great matches she has had and her consistency, I think she's a mixed bag for me. A talented performer with a not so impressive catalog unfortunately."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Anas Kingwrote on 11.12.2024:[6.0] "I think she's a good wrestler. There are some matches of hers that I LOVE, but for the most part I think she is a one trick ponny. I don't think she has depth. I don't think she has range. Her hard hitting style is good though. But I just think in terms of pure in ring work, she's slightly overrated."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: saorifan52wrote on 28.11.2024:"One of, if not the, greatest to ever do it. Very mean in the ring, yet knows how to make every move and moment feel important to every match. The actual "Final boss" and someone who understands what wrestling is supposed to be, to an unreal degree."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Joe907wrote on 19.07.2024:[10.0] "Meiko Satomura is a LEGEND of wrestling. Awesome striker and great technician in the ring. She produced some of the greatest matches of all time. From the late 90's to the 2010's she was always on top. She is an all time great"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: StardomIconwrote on 25.05.2024:[10.0] "The original owner of the "Final Boss" moniker, Meiko Satomura is a legend. If you have never watched the documentary Gaea Girls, watch for free on archive.org. The film documents what joshi go through to make it as wrestlers, and also provides insight into a young Meiko Satomura's mindset on her pursuit of greatness. Now, on to why I rate Meiko a 10. She has an intimidating look and intimidating kicks to match. Everything she does look believable and painful. She doesn't perform moves for the sake of doing something flashy. Instead, she looks like she is in a legitimate competition and is trying to win a battle. Meiko is the closest wrestler we'll likely ever see to someone like Bret Hart in terms of execution and believability."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: JulianPera50wrote on 06.03.2024:[9.0] "Disagree with some of the comments here. Never saw nothing of her before WWE, and the little I watched from her match with Roxanne was amazing. An incredible athlete for her age, amazing strikes and hits that looked legit, bringing the old school style to the modern wrestling. Its such a shame that after losing the NXT UK Women's Championship and wrestling Roxanne, she just dissapeared from WWE television. Wish she would come back for one more run on the main roster."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Chipy4848wrote on 17.10.2023:"I wont give a rating cause Im very conflicted. She is a great worker. But watching her dropkick her trainees teeth in because the cameras were on her has no place in the sport idc who you are or how skilled you are. Seriously go look up the video, the trainee almost got her face caved in."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Daley Hwrote on 14.10.2023:[10.0] "Without a doubt, "The Final Boss" Meiko Satomura is a joshi legend in every sense of the word. And she's still going strong, even well into her 40s! Would love to see her go up against the likes of Charlotte Flair, Becky Lynch, or even Asuka in WWE. Any match between one of those 3 and Meiko would most certainly be a dream match!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: WrestlingBullwrote on 03.09.2023:[10.0] "Meiko Satomura is the definition of Final Boss for real. One hell of a talented, fast, hard hitting, charismatic and classy woman. Inside the ring, she is a true machine, outside the ring she carries herself very elegantly. Always well dressed. That definitely brings a nice touch to her character. Almost three decades of excellence, I can't say anything else."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: TheOneAndOnlyCactuswrote on 06.04.2023:[10.0] "What is there to say about her that hasn't been said already? Started in 1995 and is still going strong. Hard-working, intense in the ring, quite tough, great technical wrestler, can get the best out of anyone in the ring, Meiko is a phenomenon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Nissan420wrote on 01.04.2023:"Please do yourselves a favour and watch the GAEA documentary (GAEA Girls) it's on YouTube and other sources, This will show you what Satomura was really like, A disgusting thug and abuser, She shouldn't get the credit she does, She's awful."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: JeanneLafont94wrote on 07.03.2023:[8.0] "A legend. Her NXT passage is very cool, we feel that she is the final boss of the game. She is on a good cruising speed. She now helps young people to build themselves."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: KKeanelwrote on 25.02.2023:[10.0] "Down to earth one of the greatest individual not only of female, but overall of japanese wrestling. Magical fighter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: CoolKylewrote on 16.01.2023:[10.0] "She's totally one of the best workers of the 10s. Male and female. One of the absolute best offensive wrestlers ever, and her consistency is almost unmatched (from what I've watched thus far). She doesn't have as many classics as you might expect from someone of her reputation, but the amount of really good matches over a 25+ year period now is colossal. Plus she seems to somehow never get injured."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: eltetechoriwrote on 21.11.2022:[10.0] "Undoubtedly, a very good fighter. Watching her fight I realized that the Japanese style is really good, no matter the genre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Okaro143wrote on 05.09.2022:[9.0] "Probably the best female in ring worker in NXT UK division and my favourite NXT UK Women champion. A bonfide legend and one of the best female workers in the history."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Stern Jwrote on 02.07.2022:[10.0] "For my money, the greatest Women's wrestler to ever do it, carried on evolving the style she learnt from the mid to late 90s and just got better with age, for me her run from 2012 to current has been THE MOST CONSISTANT i've ever seen somebody perform at her level (along side people like Omega and Okada who are well known for this) also Rock Your Life Away is a banger \m/"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: HowardRatnerwrote on 24.06.2022:"Meiko Satomura is an incredible wrestler that never fails to succeed on putting great matches on a regular basis."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: texasyoshwrote on 19.06.2022:[10.0] "Meiko Satomura is nicknamed The Final Boss for a reason. Meiko is still an unbelievable wrestler in her 40s, and has had a fantastic career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: jamzell00wrote on 11.05.2022:[10.0] "I sometimes forget Meiko is in the wwe and of all places wwe uk. She's a living legend and has consistently put on great matches for the last 20 years. If you see a UK wrestler in the wwe there's a good chance Meiko got the best match of their careers out of them. The Uk wrestling scene kind of took her as one of their own the last few years which is another funny story entirely. I'm interested if theyll ever move her past nxt uk because she's so above that brand but I have 0 faith in her doing well on the main roster"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: bigbluewrote on 06.05.2022:"Absolutely great! Just what the company needs! Have been starting to lose my faith with WWE over recent, but Meiko really is special, the future is bright for her!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: CTFBwrote on 11.03.2022:[10.0] "The perfect example of a talent too good to be working for a company so sub-par, and on top of that, on a show barely anyone watches. Meiko has shown people she's a legend as her decades of excellent work is finally starting to be recognized. It's a shame WWE has ruined WALTER and I feel it's gonna be the same with Meiko in her eventual call up, but as of now, she's one of the best female workers currently going."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: demixForeverwrote on 18.08.2021:[10.0] "It's not just the NXT UK connection, but I see her and WALTER in a similar light in that they just give off Final Boss vibes, except Meiko isn't a giant like WALTER, she just has an aura about her that makes her and her matches so intense."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: doxkevwrote on 20.06.2021:[10.0] "Another awesome Japanese lady. I hope wwe doesn't ruin her like they are Asuka. She has already wrestled Asuka in some fantastic matches. One of her matches against Io in Japan is one of the best matches I've ever seen men or women. Her matches with Kay Lee Ray have been very entertaining. She wants to face cf, Sasha, and Io. Would love to see the latter two. cf is too protected and severely overrated and I would be very surprised if they gave her a loss against Meiko"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Kungwrote on 23.04.2021:[10.0] "What is there to say about Meiko Satomura that hasn't already been said? She's supremely talented in the ring. She's helped cultivate fantastic talents like DASH Chisako and Kagetsu. And she carries herself as the star that she has been for so long. The folks over at NXT UK should thank their lucky star that they have the Living Legend in their ranks."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Residentwrote on 06.03.2021:[8.0] "I hadn't heard of her until the Mae Young Classic. I enjoy matches of Japanese female wrestlers like Manami Toyota (my favorite), Bull Nakano, and others. But Satomura matches at the Mae Young Classic were just average, except for her match against Toni Storm. But since then, I have seen a few Satomuras matches on YouTube and I liked them. Then I really enjoyed Satomura's match against Kay Lee Ray. My favorite recent female match."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Jetlagwrote on 02.09.2020:[10.0] "Seit 1998 weltklasse. Danach gab es einige Leistungstiefs, bedingt durch den Niedergang des Damenwrestling in Japan, aber seit ca. 2006 ist sie die beste Frau im Wrestlingring weltweit und hat mitunter die präziseste und härteste Offensive, die es gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Wrestling Foreverwrote on 08.07.2020:[10.0] "Heute einige Meiko Satomura Matches die ich sehen wollte ergänzt gerade von GAEA Japan wo sie zum Stammroster gehörten. Eine der besten Joshis überhaupt ist immer noch total fit, fast nie verletzt und hat es einfach drauf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: cuervonegro83wrote on 03.11.2019:[10.0] "I'm not a fan of giving a 10, but when we speak about a living legend like Meiko the only option is to give a 10, she always is going to give tough matches, great impacts and I always love her scorpion rising move. Any match of Meiko is worth watching. Also she is bringing new big stars like Chihiro Hashimoto and Sendai Girls keep the puroresu classic style in their matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: joyadamswrote on 10.09.2019:[10.0] "The female reference in wrestling. Among her moves, the european uppercut is very well applied and strongly efficient"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: KyleEnjoysWrestlingwrote on 06.08.2019:[9.0] "A magnificent veteran & extremely crisp in the ring. She can hold hew own with just about any style match someone wants to throw her way. More than impressed in the Mae Young Classic."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: ElPolloLocowrote on 03.06.2019:[9.0] "I'd like to highlight one thing about Meiko Satomura. Despite being close to 40 and having spent over half her life in the wrestling business (! ) she still has amazing work ethics. She will go out even in front of a minuscule crowd and give them their money worth instead of merely pocketing their money and do the absolute bare minimum like she could do. That takes complete dedication and puts a lot of so called legends to shame. These days she doesn't look as good as she used to and age and a long list of injuries are catching up with her but she still goes out there, gives the fans a good match and somehow even manages to make her opponents look good. Io Shirai may be the best lady wrestler I have ever seen in my life, but Meiko is surely one of the hardest working and most dedicated wrestlers, regardless of gender, I have see in my life."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: ZestyZuluWarriorwrote on 06.02.2019:[10.0] "A very easy argument could be made that Meiko is the greatest women's wrestler of all time. She's an absolute trail blazer and legend in Japan and, while never really breaking out in the US, has real fame. Her move set is awesome and intense and she's put on some phenomenal matches. Let's not forget that she's nearing 40! And she still moves like she's young!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: LandonRyanWyattwrote on 31.01.2019:[8.0] "Another "good" one who sometimes receives too much credit though. Her moves and matches are tough to watch at times. Good though for pushing 40."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: RatingsMachinewrote on 15.10.2018:[10.0] "Meiko Satomura is the best female wrestler in the business, and she has been for quite some time. It's great to see her getting exposure in the US as part of the second Mae Young Classic, and I hope that at least one or two fans are excited enough by what they see to check out some of her work in Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: CognacConversationwrote on 02.07.2018:[10.0] "She has been the cornerstone of joshi puroresu for nearly 2 decades now. Chigusa Nagayo's top trainee from the super talented original GAEA class of rookies. Her big victory against the legendary Aja Kong in April 1999 was perhaps the moment a star was born. Satomura would continue to hone her craft, delivering great singles matches and many awesome GAEA-style tag team sprints. Her stiff kicks, speed, submissions and amazingly diverse moveset have established her as perhaps the best woman wrestler in the world today (yes, I'd put her above Io Shirai). What's remarkable is that she has not slowed down one bit. The wear and tear of joshi's high impact workrate has left many a great wrestler broken down by their mid to late 30s. But not Satomura, who continues to blaze a path whether it's running her own promotion or training the next generation of rookies in Sendai. In recent years, Meiko has gained increased international recognition with matches in the US and UK, slowly re-establishing joshi's great reputation after a number of rather dark years in the mid 00s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: SNKwrote on 11.08.2017:[10.0] "Doesn't get any better than Big Match Meiko. She's quick, powerful, makes everything look legit and can technical wrestle or strike as good as anyone. Best female worker in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: rjsbx11wrote on 28.06.2017:[8.0] "Satomura is everything a Joshi wrestler should inspire to be, she has some of the most believable offense with sharp kicks and brutally laced uppercuts. She could've been considered one of the best working a few years ago but she's still a hell of a talent."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Luv all wrestlingwrote on 17.09.2016:[10.0] "Satomaru is a veteran in the peak of her career, having multiple motyc in 2015, and 1 or 2 in 2016, not only this but she is also owner of Sendai Girls, a solid Joshi indie fed. Satomaru is a future legend with a very long, respectable and crazy career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: ErycK24wrote on 15.07.2016:[8.0] "She is one of the best female performers in the world that is for sure. However, I don't think she deserves an 9 or 10 rating."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: ntrlk1wrote on 06.07.2016:[9.0] "The archetype of a joshi wrestler.  Everything she does looks legit.  With that being said, she is equally adept doing "beautiful wrestling" as she is engaging in strong-style strike exchanges.  There's a case to be made that she's the best female wrestler currently working anywhere in the world."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Nemoflowwrote on 04.09.2015:[10.0] "Unter den vielen japanischen 5-Sterne Wrestlerinnen ist sie einfach die Königin für mich. 90% ihrer Kämpfe sind eine Offenbarung und ein Dutzend davon, sollten in keinem Lehrfilm fehlen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: CJ Duskwrote on 24.03.2014:[9.0] "Great as a single or tag team wrestler. What she lacks in personality she more then makes up for with her power moves and technical wrestling skills."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Kings Roadwrote on 25.03.2011:[10.0] "Für mich ist Satomura seit Jahren die ungeschlagene Nr. 1 der japanischen Wrestlerinnen (und dadurch eigentlich auch weltweit). Unvergessen sind für mich die Ringschlachten mit Aja Kong bei GAEA. Gleichzeitig hat sie mit SENDAI wirklich ein tolles Projekt ins Leben gerufen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Rancorwrote on 13.12.2007:"Müsste eigentlich schon für ihren denkwürdigen Auftritt in der "GAEA Girls" Doku die Höchstpunktzahl bekommen. Hab sie aber nie im Ring gesehen..."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: wrestlingswiftiewrote on 29.01.2025:[10.0] "It's illegal to not have this guy on your Mount Rushmore of managers at this point. He was a fun booker, not the best businessman but I digress. His booking philosophy was great, his promos are AMAZING, even though they could get a little repetitive at times. I like how he always finds a way to reinvent himself while staying the exact same -- how does that happen?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Anas Kingwrote on 20.01.2025:[4.0] "Just like my rating for Bobby Heenan, I acknowledge (no pun intended) all the good work he's done in the past, and still doing within the current wwe environment, I just can't give high ratings to the people that I don't think are good human beings. He's one of the most selfish people in the business. I will never forget how bad he was treating Tommy Dreamer. And even in the current day, I hate how bias he is. He's the reason why the bloodline story has not ended yet. He's the reason why people like Solo Sikoa are getting all the push."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: maven loverwrote on 16.01.2025:[10.0] "Irrevocably one of the best things that's happened to wrestling, ever. Look no further than the pops this guy is able to elicit from every show he speaks at to get a sense for how utterly loved this guy is in the wrestling community. Was a headlining figure for the legendary ECW, has managed numerous notable names, & every promo that he shoots is super impassioned. His love for the business is clear as day while he still occasionally takes bumps well into his fifties. I don't have enough good things to say about Heyman."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: MEDaminewrote on 07.01.2025:[10.0] "Undeniably the greatest manager in pro wrestling history, he's one of the best wrestling personalities in the mic, and is incredibly charismatic, and most of his managerial experiences were great success"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: GameBoyAbysswrote on 19.12.2024:[8.0] "Within the scripted environment of the WWE, Paul Heyman is far and away the best manager, maybe, ever, and the amount he'd added to The Bloodline's story and to the industry as a whole is laudable. Outside that scripted environment, his antics range from utterly selfish and self-serving (ECW pay disputes) to ridiculously stupid (turning the self immolation of a man into a joke to prop up Roman Reigns). I like Heyman, but it sucks that the man himself is so unlikeable."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: KKeanelwrote on 21.11.2024:[7.0] "I will stick to my philosophy of rating people on this site, which includes their in-ring and outside the ring influence on the wrestling industry. First part of that holds you back from giving Paul Heyman anything under 10. His talent to carry compelling storylines on his back with credibility in his voice manner is just incredible till this day, ESPECIALLY today when talents are generic and "changingchannelgenic" in this sphere af. His child, ECW (which we know after reebranding from "Eastern" to "Extreme"), changed the wrestling world forever and his contribution to elevate a skill of understanding the wrestling industry throught many generations of wrestlers in undeniable. However, his actions off the spotlight during the time makes me feel uncomfortable when I rarely see him next to the ECW legends. He lied to them about his partership with Vince, he literally BEGGED him to save his company and was far late with the paychecks. His ignorance regarding CTE and other health issues is disgusting when you look up on how many guys from his company are no longer with us. Ambigious case in my eyes - one of the best managers in pro-wrestling history, whose actions on the backstage shouldn't be forgotten."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Brando Calrissianwrote on 05.11.2024:[10.0] "Paul Heyman is one of the greatest creative minds and eyes for talent the wrestling world has ever had. Say what you want about his time running ECW and not paying talent, but he clearly was able to constantly find the best talent the world had to offer. Everytime he was brought into WWE or other promotions to run creative and give his ideas, he always focused on the most talented people above anything else. And then Heyman as a manager is perhaps the best in history. An absolute GOD on the microphone who is able to build up every single person he is put with. Whether it be building them up as his client, or building them up against his client. Heyman knows what is best for the wrestling business, and always seems to go towards that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: JackBurtonsTruckwrote on 14.10.2024:[10.0] "For me he is the greatest on the mic. His contributions are endless, his mind for the business is one of the greatest, and he is just so damn likable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: TripleCrownwrote on 05.10.2024:[10.0] "Without a doubt, Paul Heyman is one of the most important figures in the entire history of wrestling. The man just gets it, he understands everything. Not saying he's perfect, because no booker or backstage personnel is, but it's no coincidence he is loved by many. Many people have stories about him in ECW, sure he did some shady things... I personally don't agree with the bad cheques and whatnot, but he has contributed so much to the business. Whether it be a manager, promoter, commentator, writer, on-screen gm, name it and he has excelled. We will never see another figure like Paul Heyman in the wrestling industry. Truly one of a kind, a master of everything."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: AnthoTheKIDwrote on 30.08.2024:[10.0] "Absolutely brilliant. That's all I have to say. From his work in WCW as a part of the Dangerous Alliance handpicking Steve Austin to be part of it to his days with Brock Lesnar and more recently with Roman Reigns, the man is a genius."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Odinohkawrote on 18.08.2024:[10.0] "He can make everyone a star. His work with Roman was insane and make Roman the biggest star he deserved to be. The clan was the best thing that happened to WWE since a long time and Paul made this happened. His acting skills are amazing and his love for wrestling are contagious. What a chance we have him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: gilmoregirlswrote on 13.08.2024:[6.0] "His current managerial work with The Bloodline is spectacularly overrated and undynamic. It's the same sh*t week in and week out. All of his promos are the same. He is a drab character now. His managerial/on-screen stuff in the past was very good, but this current stuff is boring AF. You wear the same suit every week and say the same lines. BORING!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rassle Fanwrote on 12.08.2024:[6.0] "He was a great manager in WCW and led the Dangerous Alliance which is a criminally underrated stable. As booker of ECW he opened the door for wrestlers that led to bigger and better things by giving them a proper platform. Mick Foley, Austin, Jericho, et. al. He's also one of the main reasons why ECW went out of business even though he was personally being bankrolled by Vince McMahon. The Forever Hardcore documentary revealed a lot and even the WWE produced Rise and Fall of ECW had some people saying point blank Paul never lied to the fans but he did lie to certain talent. He wouldn't pay the ones he knew couldn't leave. Remember that next time his hall of fame speech is shown when he gives a rah rah speech about ECW never dying. It is dead, in fact. He's a great part of Roman Reigns and the bloodline but that expiration date has long since passed. I think he's deserving of the hall of fame but I could never give him a 10 because he's usually full of shit with bits of truth scattered about."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: dulonicdaddywrote on 26.06.2024:[0.0] "I think that this database should have a separate ratings/lists category for wrestlers and managers/personalities. Due to the nature of this site I'll rate Heyman as a wrestler. Goofy AF bump taker, super solid pleading, that's about it I mean cool."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: doobwrldwrote on 26.05.2024:[10.0] "The wrestling genius. The man who has changed the way many of us fans, and even executives in the business see professional wrestling. Not only was he a great figure behind the scenes, causing a shift and a revolution of professional wrestling in the 90s with ECW that is still reverberated and inspired from today, he was amazing when given the opportunity to showcase his skills and knowledge of wrestling on the camera as well. Nobody has ever been better on the microphone, and nobody has ever been more intelligent than Paul. One of, if not the best thing to happen to professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: An Wrestling Guy12wrote on 12.05.2024:[10.0] "A good talker. A good manager A good promoter. A lotta charismatic. Brutally honest. The guy has everything. Nothing wrong with Paul. He got everything. A complete package as a manager. Charisma? 10/10. Mic skills? 98/10. Promoting level? 12/10. Honesty? %100."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: StardomIconwrote on 12.05.2024:[10.0] "Here's a quote from Roman Reigns in case anyone has any confusion about Paul Heyman's mark on the business: "It's difficult to cut a promo about the greatest promo in the history of the business". Not only is Paul Heyman one of the greatest talkers in wrestling history, he also has an eye for talent like no one in the history of the business. To quote Roman again, "The Tribal Chief doesn't happen if I'm not with the Wiseman". Many talented yet struggling wrestlers found a platform to be themselves and explore their definitive gimmick while working for or with Paul Heyman. Here's a short list of wrestlers that either debuted to a larger audience under Heyman or re-invented their gimmick under Heyman: Stone Cold Steve Austin, Shane Douglas, Chris Jericho, Rey Mysterio Jr., Chris Candido, Rhino, The Dudley Boys, Rob Van Dam, Jerry Lynn, Yoshihiro Tajiri, Mick Foley and many others. There's a reason why people still chant "E-C Dub" despite ECW closing its doors over two decades ago. Paul Heyman introduced so much more to the world of North American wrestling than the hardcore style - he introduced North American wrestling fans to lucha libre and Japanese strong style as well. Many of Paul's concepts were stolen by Vince McMahon while many of his talents were stolen by Eric Bischoff. Whatever your opinion of Paul Heyman is, you certainly have an opinion of him, which is the ultimate goal of anybody involved in the wrestling business. As for me, I'm an admitted and unabashed kool aid drinker because Paul Heyman is the reason I went from liking wrestling to loving wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ismarizviwrote on 08.05.2024:[10.0] "The man who introduce extreme to wrestling industry.A man who make many stars from his promotion and help them to reach high points.One of the best talkers and managers in the game.And a intresting catchphrase Ladies and gentleman my name is Paul Heyman"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: chaqudemuswrote on 30.04.2024:[3.0] "His mannerisms are so stupid and exaggerated. His promo's don't do it for me at all. I don't get it; he comes across as someone who would be good at selling salami and noodles at the corner shop but in wrestling he ruins things for me. I dislike the whole bloodline stuff and Hey man is probably the reason. I wish I liked him as much as most people do but he's just grating to me. I once saw a duck in a pond. His face annoys me. It's hard to express why I give him a three but the website makes me do it. Oh lord, remember the time he said Brock Lesnar? The way he stares at Roman like he wants to lick him is too much. He reminds me of a cross between a meatball and Super Mario. What else to say? English isn't my first language so I apologize if I made some mistakes in my comment."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: bzgameswrote on 12.04.2024:[4.0] "A vastly over rated manager. His gimmick is that of a savvy businessman when he ironically has only been able to sell one product, Brock Lesnar. A solid promo but his work as a manager actively hindered some of the talents he worked with and his run as the "Wise Man" with Roman has been fine but I challenge anyone to find a moment that was truly elevated by his involvement. An inspired booker, but I can't give a man kudos for being strapped to the rocket that is Roman Reigns and was Brock Lesnar."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Pigeon Scratchwrote on 11.04.2024:[10.0] "Paul Heyman's career isn't perfect, heaven's no, but frankly I don't even really wanna talk about the negatives of this man. He is one of the most important promoters and bookers of 90's professional wrestling, if not the most important promoter and booker of all time. He was able to practically change the rule book on writing a show, with the focus on showcasing strengths, hiding weaknesses, allowing diversity in his roster instead of just pushing the biggest and tallest, and pushing the envelope during a time when the biggest companies didn't even do so until years later. Some of the most important stars of both WCW and WWF/WWE came through ECW. He's also one of the best commentators of all time simply during his time as such in 2001 alone. Frankly I'd rather have Jim Ross and Paul Heyman instead of Lawler. Last but not least, he is one of the best managers of all time, from his days in WCW all the way to his managerial role of the Bloodline, he's always been fantastic as a manager. And of course, he is one of the best promos of all times, and truly and influential artist in his promos. He is simply one of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: 2pt0EcoBoostFusionwrote on 06.04.2024:[10.0] "Paul Heyman really did define what managers should be; Exciting, Charismatic, full of Character, and just every good checkbox you can check off. He is also a genius within the industry in terms of booking and promoting, giving wrestling fans some great works and making ECW into what it was back in the day and making it's influence still felt today. He helped many wrestlers grow into superstars and managed some of the biggest names in the industry. CM Punk, Brock Lesnar, Roman Reigns, you name it. Although I have my criticisms of the WWE Hall Of Fame and there's many names that shouldn't be in there, Paul Heyman is not one of those names and absolutely 100% deserves his induction, very happy for Mr. Heyman. Here's to the legacy and legend of Paul Heyman and hopefully he stays around the business because his contributions to wrestling will never be forgotten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: sarahlicitywrote on 29.03.2024:[10.0] "One of the greatest men to pick up a microphone. As a promoter, it was a shame that his self-admitted bad business sense got in the way of his unimpeachable eye for talent, because just look at the ECW alumni that we all love nearly three decades on. As a booker, he brought us the SmackDown Six. As a manager, he elevated so many men, filling in the gaps in his clients promo skills. His entry in the 2024 Hall of Fame is truly well deserved."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: mtorrealba99wrote on 12.03.2024:[10.0] "Paul Heyman is truly a wrestling genius, he's one of the greatest managers of all time, doing amazing work in WCW and also in WWE in recent years with top guys like Brock Lesnar, CM Punk and Roman Reigns. As a booker, he also proved to be pretty effective in ECW, hiding the weaknesses and highlighting the strenghts of his wrestlers. An all-around legend of this business, and a very skilled talker who still gives us great TV."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: JediSaiyanMaster1203wrote on 20.11.2023:[10.0] "Man, where do I begin with The Wise Man? Paul Heyman is arguably the greatest manager, promos, booker and mind of all time. He has always been a great manager no matter what promotion he was in, whether it's WCW or WWE, he's always been able to do his best to make his guys look good. In WCW, he was doing great as Paul E. Dangerously, managing one of the best factions of all time, The Dangerous Alliance, he even was a commentator during his tenure, teaming with Jim Ross before both commentated together in WWF in 2001. Then he goes to start his own promotion, ECW, which the influence and impact on the promotion can still be felt to this day. While ECW may have moments in it's history that haven't aged well, it's mostly been a great independent promotion that changed North American professional wrestling forever, giving us countless stars and old timers still showing they got it from Rob Van Dam, Taz, Jerry Lynn, The Dudley Boyz, Cactus Jack, Terry Funk, Eddie Guerrero, Rey Mysterio, Chris Jericho, Chris Benoit, and many more, along with one of the greatest commentators of all time in Joey Styles and even having Don Callis as Cyrus. Then he goes to the WWE and becomes the master mind behind the legendary "SmackDown Six, " featuring amazing matches every week on SmackDown between the likes of Chris Benoit, Eddie Guerrero, Chavo Guerrero, Kurt Angle, Edge and Rey Mysterio all having matches against eachother in one way or another, even gracing us with some of the best WWE matches of all time. Thanks to Paul Heyman, most of these guys went on to become stars in WWE and made Vince see their worth. Aside from that, he was also commentating with Jim Ross, and I'd argue that this duo is the best commentary duo in WWE's history if they got to last longer, their natural chemistry and how they argued with eachother over characters and making it sound like they mean it was great, along with all the smartass remarks and insults Paul gave to Jim Ross was so much fun to listen to. Paul Heyman has also managed tons of stars in WWE whether it's Brock Lesnar, Kurt Angle, CM Punk, Roman Reigns, he's always made it work out well (except for guys like RyBack and Curtis Axel, and sadly Cesaro). Overall, Paul Heyman is one of the best figures in professional wrestling who is an undoubtably a legend, easily top 3 managers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: FattitudeErawrote on 31.10.2023:[10.0] "Quite possibly the greatest mind in the history of pro-wrestling. Additionally, Paul Heyman the character is quite possibly the greatest on screen manager (/advocate /special counsel) of all time. A key part of so many classic and entertaining moments, storylines over a near 4 decade long career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Logewrote on 30.10.2023:[10.0] "IM A PAUL HEYMAN GUY! YEah. I said it! Hes the best manager ever imo, Mr. ECW, A fun booker, an awesome on screen performer, and also the best member of the Bloodline. I said it! I said it again! I said I said it again! He helped build Brock Lesnar, and helped build Roman Reigns into being a watchable character again. I love his antics when hes by the ring, constantly screaming for Brock or Punk or Roman or whoever the fuck, and recently at house shows ive seen clips of him running at fans trying to fight them, which is fucking awesome. He should do that on TV. I liked his match with CM Skunk, even if it was kinda sad. Paul Heyman is in an exclusive club of only a couple of people who have successfully gotten a three count out of a Cocky Pin. Paul Heyman was able to predict Steve Austin's rise as the top guy all the way back in 1992, which is fucking insane and that alone should immortalize Heyman as someone with an unbeatable eye for talent. Hes a genius, simply put. He has a crystal ball for a brain, and definitely deserves that Wise Man nickname I see on his page. I Admit hes had a couple misses in WWE, such as Ryback, but still. Put some respect on Paul's name, and acknowledge your Tribal Wise Man. I wanna watch some Paul Heyman interviews now, probably has some wise things to say."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: GeneBlastKyodaiwrote on 07.10.2023:[7.0] "As a Booker and promoter, Paul Heyman is great. His work as ECW promoter is some of the best in professional wrestling, he was also incredibly good as a manager. The issue is that as a manager (especially for Roman Reigns.) he becomes stale easily and rarely receives comeuppance unlike Jimmy Hart and Bobby Heenan. This seems to be a trend with a lot of todays managers and he rarely receives the comeuppance of his client losing. This means that his rating does go down in my eyes from a 10 to a 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Ozzywrote on 20.07.2023:[10.0] "The single greatest manager of all time, plenty of world champs to his name, held the third biggest promotion for a time, and gained an entire cult in a way with the ECW fanbase by his own accord. The greatest on the mic, knows what the people wanted, if he only had the money ECW wouldve easily taken WCW, TNA, and NJPWs spots as the 2nd biggest promotion within their time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: KTG1515wrote on 03.07.2023:[6.0] "Great talker and manager, but a terrible booker, and allegedly isn't the greatest person ever. Heyman is a legend, there is no disputing it, but he's far from perfect."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: crs285wrote on 02.07.2023:[10.0] "Ran the biggest indy promotion ever in ECW to insane heights in the 90s and since then has filled multiple non wrestling roles greatly in WWE. Nothing this man cant do backstage. One of the best in terms of mic skills."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ItsToniTime89wrote on 22.06.2023:[10.0] "Legendär, mehr gibts zu Paul Heyman eigentlich nicht zu sagen. Paul ist für mich persönlich einer der besten Producer, Manager im Wrestling Business. Seine Promos muss man einfach genießen, denn er kann mit der Crowd so genial arbeiten, wie selten ein anderer. Hoffentlich bleibt uns Paul noch Jahrzehnte im Business erhalten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: GonzoAppreciatorwrote on 21.06.2023:[5.0] "As an onscreen talent the man is one of the most consistently entertaining talkers in the last 30 years, but behind the scenes the guy is a shameless dirtbag who treated all of the ECW talent like trash and exploited them every chance he got."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: danzitorockwrote on 20.06.2023:[10.0] "Simply indisputable, Heyman is one of the greatest and best voices in pro-wrestling of all time. His skill as a promoter is exorbitant, and his mic skill is obviously one of the best in history. A legendary great mind of the industry throughout its history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Dancerwrote on 24.05.2023:[10.0] "Legendary. He's been cutting the same promo for a decade and he still makes it feel unique. Makes every match feel special. Can't rate him anything lower than a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Leo 4 Kingwrote on 08.05.2023:[6.0] "I don't understand why everybody say he is a genius, he is a good talker but far from the bests. I often find his work lazy and I rarely find him interesting"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: AidanArcherwrote on 18.04.2023:[10.0] "Amazing manager, promoter, booker, backstage helper, mentor, you name it. He's even got some decent in-ring skills if you can find those hidden gem matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Kamilahclanwrote on 02.04.2023:[6.0] "Heyman has been at the every least has always been good but I find his work with Brock and roman to be quite overrated, he has been doing the same thing for years and cutting the same damn promos for years."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: John Brandowrote on 03.03.2023:"Erstmal nur ein Kommentar: Ich bin großer Fan von Paul Heyman und werde es immer bleiben. Er gehört definitiv zu den besten Mic-Workern im Business und ist mein Favourite diesbezüglich. Er weiß wie das Geschäft funktioniert und hat seinen Platz im Wrestling-Olymp sicher. Sein rhetorisches Können sucht seinesgleichen und ich stimme überein, dass er auch eine Karriere in der Politik hätte anstreben können. Als Beistand seiner Klienten immer feierungswürdig und unterhaltsam. Als Wrestler kann man ihn nicht bewerten, ich tue mir auch schwer, jetzt Punkte zu vergeben.Auch abseits ein cooler Typ! In dem Sinne: Ladies and Gentlemen, my Name is Paul Heyman!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: AlDente01wrote on 16.09.2022:[10.0] "Oratorical genius. Paul is able to portray anyone as a star. He could advertise a sack of potatoes and we would have goosebumps. I doubt there is anything else to say. I can't wait to see who's going to make a star next."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Flame233wrote on 12.09.2022:[10.0] "There is not much to say about this guy. He's great; propably the greatest speaker in WCW/ECW/WWE history. Give this man a mic, and creative freedom and he will make even Nia Jax or James Ellsworh a champion material. Just a wonderful charisma skills; and his expierience certainly helps."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: zachattack2023wrote on 26.07.2022:[10.0] "One of the best managers of all time and his mic skill are on a different level. Next to add to it he was the promoter of the great ECW just a legend that wasn't a wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Leth99wrote on 24.07.2022:[8.0] "Giving him an 8 because despite being an amazing talker, an amazing manager and a great commentator, he was an horrible booker. Someone I would listen to for an hour"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: TheLegendaryEricwrote on 22.05.2022:[10.0] "Arguably the greatest heel manager of all time, whether it be Brock Lesnar, CM Punk or Roman Reigns, Paul Heyman knows exactly how to make them feel like the final boss of their division."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Conquistador37wrote on 16.04.2022:[10.0] "In wrestling, "they" expect someone to be able to make chicken salad from chicken s#it. Paul Heyman could probably make thanksgiving dinner complete with dessert from aforementioned fowl fecal matter. His manager skills were always on point, as far back as the mid/late 80's. His commentary has always been underrated and even the earlier material ages well ("WHAM! "). Has a genius mind for booking and built an empire on his unparalleled ability to hide the negatives and accentuate the positives. Was seemingly born to be in the business. A passion and sincerity rivaled by few. A notable liar though and a terrible finance guy. Also, Paul saved pro wrestling in the 90's and readied it for the turn of the century more than anyone. If ECW was never created, the chances of the WWF ever living long enough to become the WWE is V E R Y debatable. 9.75 rounded up."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: afogarty21wrote on 14.04.2022:[10.0] "Anyone giving this guy anything less than an 8 really needs to evaluate their eyesight and ears. This guy is possibly the greatest manager/on screen guys in the history of the business. Outstanding booker as well, I feel like his talent was wasted on being stuck to Brock Lesnar for the most of his WWE run though. He could've got a lot more people over."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: WrestlingFan892wrote on 06.04.2022:[10.0] "I cannot speak ill of this person, everything he has come to do has been done well. He has taken wrestlers to a higher level by doing everything, speaking on the mic and stealing the image, there you can see how he has done it with Big Show, Brock Lesnar and now he is trying to make Roman a better champion by doing everything well at the mic and in front of the cameras. Without a doubt I think he is a top 3 manager in WWE history along with Bobby Heenan and Paul Bearer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: arrancarwrote on 04.04.2022:[3.0] "I haven't seen his ECW work, but having seen Heyman's promos and work as a manager in both old and new WWE, I have to say that he's one of the most melodramatic goofballs I've ever seen, and genuinely a pretty awful on-screen performer as a result.. He tries to make every single facial expression the most overacted thing imaginable, and he must think that doing so enhances whatever he's reacting to, but instead it just makes the entire scenario at hand feel phoney because of how terrible his acting is. I do enjoy how eloquent he can be on the mic whenever he's *not* trying to impersonate a high-school theatre actor, but far too often I remember him most for his absurd facial expressions, his awfully croaky and ear-piercing screams, and his absolutely moronic dialogue. If this guy just had a good amount of SUBTLY then he'd probably be one of the best managers ever, because he has proven that he can be very captivating on the mic when he wants to, but he's always just been too concerned with getting himself over in the cheapest and most obvious ways possible, which has severely held him back and wasted his one talent. His ridiculously over-the-top current work with Roman ("Rise up my Tribal Chief! ") is some of the hokiest acting I've genuinely ever seen in a wrestling. I won't speak for his supposed genius related to his booking and other backstage work, but as a pure performer I can comfortably say he was extremely bad and mostly just highlighted the worst parts of American wrestling."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: BigDickWrestling69wrote on 31.03.2022:"Paul Heyman is indeed a goofball, but we are watching wrestling after all. An amazing talent on the microphone and as a booker, but should never ever be in charge of anything financial."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: tbdolicwrote on 24.02.2022:"The best manager that ever was, and possibly ever will be. I highly recommend watching his documentary on Peacock -- it is so enlightening to see how he got to where he is. He has the best natural talent on a mic that I have ever seen."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: DangoDaisukiwrote on 13.02.2022:[6.0] "Ich mag Paul Heyman nicht, ich finde ihn als Manager auch wirklich nervig und wenn er spricht hat es nie mein Interesse. Ich kann aber seine Arbeit und besonders sein Booking wertschätzen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Quite simply put, the best manager of all time. A wrestling genius who elevates every performer he manages, Paul is a well of charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: jltwrote on 26.09.2021:[8.0] "Heyman is one hell of a talker. He could probably get anyone over if he tried. Also a good booker, just look at ECW and when he took control of RAW in 2019."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: CoolKylewrote on 11.09.2021:[8.0] "As an on-screen character, he is one of the best on the microphone but also one of the best 'actors'. He just sells everything perfectly. Just don't let him take care of the fucking money."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Daigotsuwrote on 19.06.2021:[9.0] "Truly a great manager and personality. Paul Heyman was a treat to watch. He was great at putting over his guys and angles."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The A-Listerwrote on 08.05.2021:[9.0] "One of the best managers ever. Did great at ECW, did great with Lesnar, Punk, Reigns. Has some bad work like Ryback but it doesn't matter. He's a great talker too."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: StrongStyle2020wrote on 04.05.2021:[10.0] "One of the greatest managers of all time, and best talkers in the business. Could sell ice to an eskimo, so talking fans into the building could be done in his sleep. Fantastic booker and promoter previously with ECW, he had a huge influence on the Attitude Era. More recently, Brock Lesnar's second run simply would not be what it was, without Heyman as the mouthpiece. Absolutely irreplaceable in that role. Quite simply a legend and will be up there in history as one of the top managers and promos the business has ever seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: medousewrote on 09.11.2020:[10.0] "The best new era wrestling manager. Also he was a great booker and he created ECW. His dedication for this business is incredible. I remember when I was watching some old ECW for the first time and Paul E. Dangerously had a backstage promo. First, I thought he was a wrestler. Out of all the guys I saw that night he got most of my attention. There is something about Paul that everything he says and does has a legit credibility. When he says, he's gonna put on a show that's gonna blow your mind - that what's going to happen. He made huge stars out of guys like Brock Lesnar, CM Punk, RVD, Steve Austin, TAZ and many more. He was the best on the mic, in commentary, in ringside. There will never be another guy like Paul Heyman. This dude is a true diamond."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Okaro143wrote on 24.09.2020:[9.0] "Paul Heyman is one of the greatest manager of all time. Everytime he speaks, he keeps the fans engage to him and even in ringside, his reactions gives a realistic feeling. He doesn't interfere and that's what I really like about his character. Can't rate him 10 as he isn't exactly a wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Bloodshot03wrote on 30.08.2020:[5.0] "I used to really enjoy Paul Heyman as a character but over the last few years he's really become insufferable. I do have to say it's interesting that he's now paired with Roman Reigns, but with WWE's recent storytelling I'm sure that will end in dissapointment."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Paul Heyman ist ein absoluter genialer Manager der am Mic absolut genial ist und gerade in Kombination mit Brock Lesnar komplett überzeugen kann. Außerdem ist Heyman auch hinter den Kulissen ein sehr guter. Alles in allem verdient er sich die vollen 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: TheV2wrote on 30.09.2019:"*Because he's not a wrestler, I don't rate him. * If I had to pick the best talker in the wrestling business, I'd choose Paul Heyman. As a manager/advocate he helped out a lot of wrestlers who needed a voice. Heyman is a very smart and precise talker. With ease he builds up a great structure for the stories he tells and every point has its purpose. Without repetitive stories his promos would almost never disappoint. His real life personality gives his promos just the right amount of real emotions. As a booker he was very open-minded and he was very eager to give newer generations with new styles opportunities and this way a lot of great wrestlers emerged in the mainstream scene. However ECW definitely had its trashy touch, both in a positive, but even in a negative way. I like Heyman as a character more than as a booker, however he still is a great booker."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Kritlawrote on 19.08.2019:[7.0] "Auch wenn er nach wie vor seine Schützlinge (derzeit Lesnar) trägt, so sind es leider auch besonders seine catchphrases welche mit der Zeit nur noch anstrengen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: KyleEnjoysWrestlingwrote on 07.08.2019:[8.0] "Paul Heyman is not the savior of wrestling that people like to paint him as. ECW had a lot of good aspects to it, but people often forget all the bad that went with it. And from silly comedy, low brow Jerry Springer-type drama, & mindless brawls; there was plenty of bad. Overall I do think Heyman is great & especially in his older age, he has learned from the road he's traveled & he's a good addition to the Lesnar character."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Kevin41182wrote on 19.03.2019:[8.0] "Heyman is somewhat of a rennicance man. Hes a great manager, great booker, but an awful businessman. Heyman has helped many wrestlers really find themselves such as CM Punk, Brock Lesnar and many more."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: RatingsMachinewrote on 12.10.2018:[8.0] "As a manager, Heyman was really good. As a booker, Heyman was great, a genius at getting the most out of the least and being able to camouflage a worker's weaknesses. But as a businessman, the fate of ECW speaks for itself."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Billwrote on 22.08.2018:[10.0] "Paul Heyman is one of the best things to happen to wrestling. He was an excellent promoter and he was an excellent booker. WWE literally get him to manage their top tallent to get them more over. Without Paul Heyman, I know I wouldn't be watching wrestling today, and I'm sure that is the same for many others too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Excellence of Executionwrote on 21.08.2018:[10.0] "Für mich neben Jim Cornette der beste Mic Worker und Manager aller Zeiten! Wenn auch anders gelagert. Während Jim Cornette es fertig bringt, gleichzeitig eloquent und vulgär und somit unfassbar scharfzüngig zu sein, so ist es bei Heyman die Intensität und sein untrügerisches Gespür für Timing, um seinen Worten Gewicht zu geben. Ein super Redner mit unangetasteten Rampensau Qualitäten. Volle Punktzahl!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Cameron621129wrote on 17.07.2018:[10.0] "One of the smartest wrestling minds. One of the best promos. One of the best managers. One of the best colour commentators. One of the best salesmen. One of the best storytellers. An all time great at whatever he would do."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: CHN325wrote on 31.01.2018:[9.0] "One of the best "advocates" and one of the smartest minds in wrestling when it comes to scouting talent and seeing potential. No one makes something feel bigger and more epic that Paul E. Unfiltered Paul is the be Paul."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Chosen Onewrote on 19.12.2017:[10.0] "Undoubtedly the greatest manager of all time. He can cut a promo like no other. He can get anybody over and he does an exceptional job at being Brock Lesnar's manager."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Summerslam Fan 01wrote on 15.12.2017:[10.0] "Paul Heyman ist der beste Micworker in der Wrestling Geschichte. Unvergessliche Promos, der Mann kann aus jeder kleinen Promo etwas besonderes rüberbringen. Als Manager von Lesnar Grandios, beide sind Goldwert zusammen, hatte leider auch viele Klienten die scheiterten wie Ryback, Curtis Axel oder Cesaro was aber nicht an ihm sondern am Booking lag, und nicht zu vergessen der Mann der Cm Punk so groß machte. Er ist kein Bobby Heenan aber er ist ohne zweifel ein Zukünftiger Hall of Famer. Danke Paul"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Dragon Fighterwrote on 20.11.2017:[10.0] "Every time heyman cuts a promo, everyone should stop to watch him. Just freaking phenomenal on microphone. He can hype the match, the feud and easily become the best part of any show he takes part in. He knows how to put over his opponents on mic. Just watch his promo on AJ Styles, he just put the phenomenal one to another level for sure. As a booker, he was excellent as well. His booking during 90s in ecw and in Smackdown in 2002-2003 was wonderful. ECW became the hottest brand at that time while Smackdown beat the shit out of Raw and became the best product wwe had with the SD 6. One of the greatest managers of all time easily. A well-deserved 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: taabr2wrote on 10.09.2017:[10.0] "One of the best managers in wrestling history and one of the best wrestling minds, Paul Heyman is responsible for some of the best booking in wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Doctoriusefulwrote on 10.08.2017:[10.0] "Paul Heyman kann dir die Bedienungsanleitung von Klopapier vorlesen; und du hängst dabei bei jedem einzelnem seiner Worte an seinen Lippen. Und das kann er immer und immer wieder wiederholen, bis du der Meinung bist Klopapier ist die grandioseste Sache aller Zeiten. So viel zu den Mic-Skills von Paul Heyman. Hinter den Kulissen wohl einer der weniger Leute, die tatsächlich verstanden haben wie Wrestling wirklich funktioniert (im Gegensatz zu Vince z. B. :>). Er hat das Wrestling in den 90ern mit der ECW revolutioniert und damit einen entscheidenden Anteil an der Entstehung der Attitude-Ära gehabt, sowie das Wrestling bis heute nachhaltig geprägt. Der Kerl könnte eigentlich jederzeit in die Politik wechseln, mit seinem Verständniss für Rhetorik und Psychologie, und würde sich im nu etablieren. Alles andere als 10 Punkte wäre ein Witz für Paul Heyman. Der Kerl gehört nicht in die WWE Hall of Fame, sondern in den Wrestlingolymp."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: marexcelwrote on 20.06.2017:[10.0] "Für mich eine der großartigsten On-Air-Autoritätspersonen und Manager aller Zeiten. Als Booker hat er die 90er geprägt. Hat eine brutale Mastermind-Austrahlung und ist wie für’s Wrestling gemacht. Sehr eloquent, aber eben ohne abgehoben zu sein. Lebt natürlich auch von seinem ECW-Vermächtnis, aber hat auch heute so manche Zeit der WWE geprägt.  Seine Rhetorik ist oft genial, auch wenn sich seine Promos hin und wieder wiederholen. Für diese Booking-Einbahnstraßen ist er sicherlich der falsche Ansprechpartner. So ist und bleibt Paul Heyman eine absolut herausragende Figur des Wrestlings seit den 90ern, der hoffentlich in der Zukunft auch mal wieder ein paar Talente statt Lesnar over bringen darf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: IWasTherewrote on 25.04.2017:[6.0] "Paul was one of the cream of the crop in the area of the best talkers of this business, but nowadays his endlessly repeated act as Brock's advocate has grown particularly stale."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: SteveTheBeastwrote on 21.04.2017:[8.0] "Er ist einer der besten am Mic die es jemals geben wird. Normalerweise absolut klare 10 Punkte, aber umso mehr ist es schade, dass er momentan nur für den Part-Timer redet und seine Skills dafür benutzt, um einen jungen, guten Heel ins Main Event zu pushen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The X Factorwrote on 04.02.2017:[6.0] "I like Heyman. I really do. But, he's become very stale lately, basically going from a guy who always seemed to have a plan, a scheme, and a plot going on behind the scenes, to basically being Brock Lesnar's mouthpiece only... and saying exactly the same things every promo."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Real Raterwrote on 21.01.2017:[10.0] "NewNemo, hat absolut recht, als Wrestler wäre es sehr merkwürdig ihn zu bewerten.  Aber ich gebe ihm trotzdem 10 Punkte als Typ. weil er die Wrestling-Welt mit seinen ECW Storylines revolutionierte und weil er überragende Promos halten kann und seine Klienten zu Top-Heels machen kann. Wahrscheinlich einer der ganz wenigen die eine 10 verdient hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: NewNemowrote on 17.01.2017:"[Stand 17. 01. 2017] Ich finde es schwierig das Paul Heyman auf Platz 4 der besten ->Wrestler<- im Cagematch ist. Ich finde als Wrestler kann man ihn einfach nicht beurteilen. Ich finde er ist ein Spitzen Mic-Worker und Promoter. Aber wenn ich die selben Maßstäbe wie bei einem Wrestler anlege wäre seine Bewertung: Entrance: 1/10 ++ Look: 2/10 ++ In-Ring Skills: 0/10 ++ Mic-Work: 10/10 ++ Persönliche Sympathie: 8/10 ++ Gesamt: 4, 2 also 4.  Das wird ihm allerdings nicht gerecht. Daher fände ich es super eine eigene Bewertungskategorie für Promoter/ Valets/ Backstageverantworliche etc. einzuführen. Diese in einem gemeinschaftlichen Kontext zu Bewerten wäre meiner Meinung nach passender.  In dieser Kategorie würde Paul Heyman von mir 9 Punkte erhalten!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Speeblewrote on 10.01.2017:[2.0] "Paul Heyman's promos are consistently painful to sit through. Just an absolutely cartoonish level of over-acting, and he spends far too much time screaming his lungs out like he's about to burst. Even without the poor delivery, the content of his promos are nothing to write home about and mostly just consist of generic WWE-speak and catchphrases."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rasslin Ruleswrote on 08.01.2017:[8.0] "ECW ist nicht mein Fall, aber revolutionär war er damit damals schon. Allerdings wird er oft so dargestellt als hätte er mit ECW allein das Wrestling revolutioniert. Ein Großteil kam einfach von anderen Ligen und er war nicht allein für die ECW verantwortlich. Als Kommentator gefällt er mir nicht, dafür umso mehr als Booker bei Smackdown. Für mich war das die beste Phase seiner Karriere. Als Manager von Punk und Lesnar find ich ihn am Mic zwar genial aber auf Dauer echt nicht unterhaltsam auch er von sich selber überzeugt ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: rjsbx11wrote on 08.01.2017:[10.0] "As a worker/manager, Heyman is simply one of the best. He's such a natural slimy promoter who can mix ruthlessness and eloquence seamlessly. Outside of Cesaro and Axel, he can really sell his talent and does his best to create symbiotic relationship that can a story his often less then charisma saavy clients can not. As a wrestling mind, Heyman is exceptional at reading the landscape and identifying what the audience he is booking for wants at a given time. He didn't bat 1. 000 as ECW booker, but he knew what the audience would respond to and he booked accordingly. As business, he was pretty shotty, with his payment of star being very infrequent. From a booking standpoint though he's very good. Similarly in 2002, as much as Heyman gets love for Smackdown being a great show for in-ring action, to me his biggest achievement is recognizing how badly WWE needed new stars. The first half of 2002 was an awful period for regression, and a lot of the stars that took things forward for the next five years broke out of the ether under his booking.  He's move away from that role which is keeps him in good graces with the WWE, and anytime the man has a mic he's going to put on a show."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: JonColwellwrote on 08.01.2017:[10.0] "I've always had a lot of respect for Paul and what he has done for the business. Taking a company away from the NWA, making it into something special, and getting it mainstream just blows me away. It has been said that there would be no Attitude Era without ECW's Influence, and I believe that to be very much true. He's always been an amazing talker, one of the best to give promos, and a great down-to-earth guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rog Fulacewrote on 17.12.2016:[7.0] "Didn't pay talent, promos tend to devolve into the same thing, and a lot of his earlier stuff is just plain embarrassing to watch."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Steelitowrote on 03.12.2016:[6.0] "His promos are very redundant and he's poor with paying his talent. If he's going to be rated a 9 as a "worker, " we might as well say that his Tuxedo Match with Cornette was a poor display of wrestling ability and was more of a comedy match with Cornette excelling at selling the match."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: AtticusFinchwrote on 25.11.2016:[9.0] "Absolutely one of the best managers/hype men in wrestling history. Lately, his Brock Lesnar shtick is getting a bit old, but whenever he gets out of that, he's fantastic. Great mind for the business too, even if it meant some questionable tactics as a promoter/booker. He helped make a lot of guys realize their potential and become superstars. He's had some flops under his wing such as Cesaro and Curtis Axel, but it's hard to put him at fault when he's not given creative control over that. A great villain, a great mind, and a great promo."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: CelticFCwrote on 11.11.2016:[8.0] "Think to give a non-wrestler a 10 under a listing of workers is pretty tough to justify personally. I've seen most of his WWE work so I'm not going to comment on what he did before I was born in WCW or his role as promoter, in ECW. Paul is entertaining, he is engaging, and to quote Jim Cornette "he could turn Genghis Khan babyface. " He's good at that, that being said, so are a lot of guys who actually wrestle. Chris Jericho can get the word it, a clipboard, a list, a scarf, and a pot plant over, all in the space of a year. He can wrestle as well. Paul is great on the microphone but he doesn't wrestle."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rattlesnake3-16wrote on 09.11.2016:[9.0] "I like the man, his promo and his very professional attitude ! Sad for him he has to speak for Brock and that is not very interesting, always the same things eat sleep Heyman repeat... Maybe ten when he will change his protégé !"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: jackleonewrote on 05.11.2016:[10.0] "There are a lot of reasons why I consider him the best manager of all time (or one of the best). He is always strong in this role in modern age, where managers are not influential as in the '80s. I never saw Heyman fail, in WCW was unbelievably good, in ECW he was the boss, in WWE he always reinvented himself and put over many wrestlers, the most famous is Brock Lesnar and they are a perfect combination (the menacing client and the talkative manager). I can't judge the behind the scenes, but he seems a genuine genious of the Business. I have a lot of respect for Heyman and he inspired me so many times with his speechs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: AidenSioniswrote on 31.08.2016:[5.0] "I don't know why I don't like Paul Heyman. I liked him when he was a rival of CM Punk but right now the only thing he does is shouting BROOOOOCK LEEEESNAR. or shouting the Beast or saying thou shalt non intentionally provoke Brock Lesnar.  He is just saying some overused lines."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Titansrevengerwrote on 28.08.2016:[9.0] "Paul E Heyman is the greatest promoter not named Vince McMahon. His promo skills are just so riveting and he can be so passionate about anything. I bet Heyman could put over Toothpaste to Isaac Yankem. As a villain there is none better then Heyman. I do think he is one of the few managers to turn face and be successful at it, even though he did it maybe twice in his entire career. I loved his interactions with Jim Ross and Missy Hyatt in WCW. Paul Heyman also helped change wrestling's landscape with ECW, even though it was a failure in the sense that it didn't last, it was evolutionary. I would rank Heyman higher but the guy was also a real shyster in real life. So he loses points in that regard."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: test85wrote on 18.08.2016:[10.0] "In den 90er ein Genie. Sei es seine Darstellung des Paul E. in der WCW oder später mit der ECW. Etliche Ideen umgesetzt die später von den größeren Ligen geklaut wurden. Zudem gab er auch den nicht so großen Charakteren (Y2J, Malenko, Benoit, Guerrero usw. ) oder damals weniger erfolgreichen (Austin, Foley, Raven) eine Chance sich zu beweisen. Auch seine erste Zeit in der WWE war stark. Auch seine Zeit mit Punk & Lesnar sollte nicht unerwähnt bleiben. Am Mic großartig. Doch leider war er auch einer seiner größten Feinde. Er fuhr die ECW geschäftlich gegen die Mauer. Zudem finde ich das er sich am Mic in letzter Zeit immer wieder wiederholt. Die Promos kommen einen immer wieder bekannt vor. Trotzdem ein zukünftiger HoF Kandidat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Strezemannwrote on 04.08.2016:[9.0] "Heyman's undoubtedly one of the best talkers of all time, and a very influential figure in the business even if separated from that fact. Historically, it's hard to argue against him being a great on-screen presence, having done a more than adequate job whether introducing his client Brock Lesnar to the world, taking part in an ultimately botched invasion, or representing his brand, ECW, whether it be in ECW or WWE. The only thing keeping him from a 10 is booking. He has just had -nothing- to work with for the past several years. To the point that I'm actually having a hard time appreciating just how well he can work a mic. Because, by god, is it ever tiring to hear about how strong and dangerous Brock Lesnar is. I really feel like Heyman's part of that deal has run its course - after the previous Heyman guys were completely overlooked because of how Heyman had to keep harping on his Lesnar connection, I figured they'd eventually move him away so that he could have fun or interesting interactions with other people on the roster, but no. To me, he's just white noise at the moment, so that takes him down a peg."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ApexOfEvolutionwrote on 31.07.2016:[10.0] "DAS Mastermind des Wrestlings, das den schmierigen aber -meistens- loyalen Advokaten seiner Klienten grundsätzlich glaubhaft rüberbringt. Seine Promos sind immer wieder weltklasse. War schon einmal eine nur Durchschnitt? Kann mich an keine erinnern. Gerade im Gespann mit Brock Lesnar absolut herausragend. In der Kombi mit CM Punk kam er leider nicht so überragend rüber, aber das lag einfach daran, dass sich zwei hervorragende Redner gegenseitig die Show gestohlen haben. Naja, und über seine Storylines, die er für die ECW entwickelt hat, muss man kein Wort mehr verlieren. Er hat die WWE geradezu in die Attitude Era gezwungen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: sashabanksfanwrote on 26.07.2016:[10.0] "Best manager and microphone in WWE history. I hope he extends his contract and keeps helping Brock Lesnar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: CrushBanoncawrote on 15.07.2016:[10.0] "The greatest manager of all time. The greatest microphone worker of all time. The greatest booker of all time (as shown through ECW and 2002-03 Smackdown, which may be the best period in WWE history). No one comes close to Paul Heyman in any of these areas. Not even his shoddy business skills can prevent me from giving this legend a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: horseman5wrote on 26.05.2016:[8.0] "he's #1? he's not a wrestler. Not near the manager or color guy Bobby Heenan was. ECW had good matches. But the booking was not that great."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: EGeraldhuebnerwrote on 28.04.2016:"Das erste mal, als ich etwas von Mr. Paul Heyman sah, war, als er sich noch "Paul E. Dangerously" nannte. Dabei dachte ich immer, es war als Manager der Hollywood Blondes (Brian Pillman und Steve Austin ... als er noch Haare hatte ^^) und vor ECW Zeiten. Aber anscheinend bringe ich da gerade etwas durcheinander, denn jene Zeitangaben, wann es dieses Team gab und seine Arbeit bei der ECW stimmen nicht überein. Danach sehr oft in verschiedenen Dokumentationen oder Filmen zum Thema. Wrestler sprachen mit Respekt von ihm, einige sehen in ihm sogar eine Vaterfigur. Auch er selbst kam immer interessant und sympathisch rüber. Das machte natürlich neugierig ... heute weiß ich, was Wrestling ihm alles zu verdanken hat. Als Begleitung von Leuten wie Brock Lesnar natürlich nicht so gut, aber wie andere hier schon sagten, man kann einem Manager nicht die Schuld dafür geben, das man seinen jeweiligen Schützling nicht mag. Lieber verlasse ich mich auf das, was ich sehe, sehen konnte, was andere, die ihn offenbar besser kennen, über ihn sagen ... vor allem, was er geleistet hat. Tja, und das ist Weltklasse."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Jrod3160wrote on 17.04.2016:[10.0] "Fantastic on the mic and the best manager of all time IMO if you can hype up curtis axel you know your great lol and ECW was great and hes the man who brought it to us and please put this guy on the announce team and in creative because he knows what hes doing"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Mean Smark Callouswrote on 15.04.2016:[10.0] "The ratings don't lie, everybody marks out for this guy. I've been a Paul Heyman guy since he was Pau E Dangerously in WCW (man I'm old) and he excelled at drawing heat from the fans and his broadcast partners. Him and Jim Ross were so funny together it was sometimes hard to tell if their heat was legit or not, which is what good wrestling work does it keeps you guessing. Changed Wrestling forever when he took over ECW, and blew everybody's balls off with hardcore action that The Other Guys weren't doing, and that most Americans didn't know the Japanese had been doing for years. Not to mention all the controversy. I remember the Heatwave incident, being shocked at how vulgar the Dudleys were being. Continued his uncanny gift for gab with WWE following the unfortunate demise of ECW. So good on the mic you're disappointed when he stops talking. I could (and have) listened to him talk about the Biz for hours. Quite possibly the most interesting man in Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: WrestlingNerdwrote on 29.03.2016:[10.0] "Paul Heyman, einfach ein Mastermind. Alles unter 10 Punkte könnte ich mit meinem Gewissen gar nicht vereinbaren. Hat Wrestling mit der ECW revolutioniert. Einer der besten Booker ever. Dazu am Mic unangefochten die Nummer 1. Er weiß einfach, wie und was man zu sagen hat. Die "Heyman Guys" sind meistens sehr erfolgreich unter ihm. Siehe z. B. Lesnar und CM Punk. Deswegen... 10 Punkte = sehr gut.  Guter Mann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: TheLoudMouthwrote on 17.02.2016:[10.0] "In Bezug auf sein überragendes Mic-Work kann man quasi nicht genug Superlative einbauen. Die Glaubwürdigkeit in Person und eine lebende Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: NoNamewrote on 30.01.2016:[10.0] "Das größte Wrestlingmind der Geschichte! Ich glaube nicht, dass es jemals wieder sojemanden wie Paul Heyman geben wird! Ein booking-Genie, ein großartiger Manager und Charisma wie kaum ein Anderer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: callousedwrote on 28.01.2016:[10.0] "Paul Heyman has one of the best minds in the history of wrestling. Yes, ECW fell apart. That was a case of it getting too big too fast. He is the last great promo in WWE, so cherish him while he is here."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Strikerwrote on 19.01.2016:"Ich kannte ihn ein bisshen aus seiner ECW und Smack Down Zeit und schon da bietete er Großes Kino an. Mittlerweile ist er ja nur als Manager von Brock Lesnar zu sehen und man muss sagen er ist besser denn je. Sein MicWork ist einzigartig. Seine Gesichtszüge und seine Mimick perfekt."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Harlequinwrote on 11.01.2016:[9.0] "Absolute bastard, step-child of Penn Jillette. This guy is a genius when it comes to wrestling and what it needs. His product ECW set forward the sort of grungy attitude that WWE inevitably picked up for themselves, and found success. He is nothing short of amazing when it comes to his in-ring persona. He could talk circles around every member of the current roster and honestly anyone in this business today. There is something actually wrong with you if you don't like Heyman's work."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Desaster1978wrote on 13.12.2015:[10.0] "Einer der genialsten Mic-Worker aller Zeiten. Er sollte ein Stable bekommen so wie in den 80ern Bobby Heenan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Salted85wrote on 02.12.2015:[10.0] "Grandioses Micwork! Ich freue mich über jede Promo von ihm und bin in der heutigen WWE-Zeit dankbar dafür, dass er die Glaubwürdigkeit in den Promos am Leben erhält. Danke auch für die ECW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: DemiGodwrote on 03.11.2015:[9.0] "Ein unglaublich wortgewandter Micworker. Als Manager hoch unterhaltsam. An der Seite von Brock Lesnar ist er die Sahnehaube auf dem Kuchen und vertritt seinen "Client" am Mic mit einer Ausstrahlung die nur wenige so in diese Grundstimmung lenken könnten. Meiner Meinung nach einer der besten Manager die sich in der WWE tummelten. Auch als Booker hat er mit der ECW Trends und Konzepte nach vorne getrieben, die heute in vielen Ligen als Standart durchgehen und gerne genutzt werden. Ob diese immer die Sinnigsten waren (so hört der Spaß bei einer gewissen menge schierer Gewalt doch auf) lässt sich mit Sicherheit diskutieren. Allerdings scheint auch dies in gewissen dimensionen Leute zu begeistern. Über Meinungen lässt sich generell Streiten, aber so seh ich die Sache."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Klabauterwrote on 13.10.2015:[10.0] "Paul Heyman ist eindeutig der beste Manager aller Zeiten. Am Mikrofon reicht ihm kaum einer das Wasser und als Manager hat er Größen wie CM Punk und Brock Lesnar. Er ist The One behind the One in Twenty One and One! Alles andere als für den besten seiner Zunft die Höchstwertung zu vergeben wäre ungerechtfertigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: WrestleArtswrote on 25.09.2015:[9.0] "Großartiger, revolutionärer Booker und Motivational Speaker, schlechter Geschäftsmann, und guter On-Air Character, am Mic jedoch etwas zu cheesy und "seinfeldish"."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: jacobphillipswrote on 13.09.2015:[10.0] "best promoter in pro wrestling history. best manager in pro wrestling history. one of the best talkers on the mic and he can provoke a reaction from the poorest of crowds. this is testament to his his amazing talents especially as a heel"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: austin1987wrote on 03.09.2015:[10.0] "Ich mag den Kerl. Ohne ihn hätte es wahrscheinlich nicht die Attitude Era gegeben, denn hätte es die ECW, welche damals meiner Meinung nach genial war, nicht gegeben wäre die WWF vielleicht nie auf die Idee gekommen so einen Weg einzuschlagen. Außerdem hat er meinen Lieblingswrestler "geformt" denn er war dafür verantwortlich, dass Austin bereits vor der WWF gute promos abgegeben hat, und somit bereits vorher schon den Weg für den Stone Cold Charakter geebnet. Auch Mick Foley konnte sich dort entwickeln immerhin hat man ihn ja aufgrund seines harten Wrestlingstils bei der WCW doch etwas eingeschränkt. In der ECW durfte er sich dann austoben und sich weiterentwickeln - der Rest sollte bekannt sein. Aus diesen Gründen kann ich Heyman nur 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Nigglesojanicwrote on 12.08.2015:[10.0] "WOW... Es gibt wohl keinen, der seine Promos mit solch einem Tempo und solch einer Intensität abhält wie "The Advocat of the Beast Incarnate". Dazu am Mic sicher und fehlerfrei wie sonst nur der Undertaker. Eine eindeutige 10 von mir."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Der Bjoernwrote on 11.08.2015:[8.0] "Einer der wichtigsten Männer im Wrestlingbusiness! Hätte es seine ECW Storylines und Ideen nicht gegeben, würde heutzutage was im Wrestling fehlen, denn mit seinen gut durchdachten Idden revolutionierte er die Wrestling-Welt. Auch die Zeit als SmackDown General Manager wusste absolut zu begeistern. Davon mal abgesehen ist er der perfekte Manager für Brock Lesnar. Er und "The Beast" harmonieren einfach grossartig miteinander! Und am Mikrofon macht ihn keiner was nach. Egal, was er am Mic von sich gibt, du kaufst es ihn zu 100% ab!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ShooterMcShootwrote on 10.08.2015:[10.0] "Great talker and booker. Not a great businessman, but a guy I would look to for advice on how to write wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Kndheal3wrote on 28.07.2015:[7.0] "Ich finde ihn nicht wirklich besonders. Gut. Seine MicWork ist einer der besten aber sobald der Richtige vor ihm ist wie Beispiel der Undertaker bekommt er ja weiche Knie. Was mir auffällt seit Jahren.... Er geht immer die meiste Zeit Undertaker auf die Nerven. 7 Punkte wegen der MicWork."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: GlitterPrincesswrote on 08.06.2015:[10.0] "Es gibt nichts besseres als Paul Heyman am Mic! Er und das Mikrophone sind ein Traumpaar. Ich freue mich über jede Promo von ihm und er hat in all den Jahren nichts verlernt. Ein toller Manager, wenn nicht sogar der Beste"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Ezewrote on 02.06.2015:[10.0] "Paul E. Dangerously war ein Genie der die Stimmen der Wrestling Fans gehört hat und mit Extreme Championship Wrestling das Spiel seinerzeit neu erfand.  Das die WWE in ihm einen der größten Köpfe des Sports Entertainment verpflichtet hat dürfte kein Zweifel sein.  Zusammen mit Lesnar meiner Meinung nach das beste Worker-Manager Team seit Paul Bearer und dem Undertaker.  Stets ein geniales Mouthpiece, was jede einzelne Promo von ihm beweist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Movadowrote on 29.05.2015:[8.0] "Heyman ist zweifelsfrei eine der wichtigsten Personen im US-Wrestling der letzten 25 Jahre gewesen. Ein begnadeter Manager und das egal zu welcher Zeit. Er hat es verstanden und versteht es heute noch die Rolle am Ring perfekt zu spielen und ist wahrscheinlich der "overste" Heelmanager aller Zeiten. Aber er war kein guter Geschäftsmann und auch das von vielen so hoch gelobte ECW-Booking war an manchen Stellen nicht so toll wie es viele gerne sehen. Ich gehe sogar soweit zu sagen das man diesem Booking den heutigen UV-Schrott a la IWA-MS oder CZW verdankt, da sein Booking und der Hardcore-Style einzig durch solche Stilmittel gesteigert werden konnten. Als Mann am Rand unantastbar eine 10, aber als Geschäftsmann und Booker maximal eine 6. Alles in allem halte ich eine 8 für vollkommen gerechtfertigt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Wazzerwrote on 06.05.2015:[10.0] "Best promoter of all time. ECW was an absolute masterpiece and he revolutionized the business with it. Best wrestling mind in history in my opinion, just not a great budget planner."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Zedwrote on 05.05.2015:[10.0] "Als Kommentator einsame Klasse. Als Manager und Sprachrohr für wenig charismatische Muskelberge einsame Klasse. Als Booker und Revoluzer einsame Klasse. Mur mit dem Geld konnte er zu ECW Zeiten nicht umgehen, aber das ist nur ein kleiner Fehler von ihm. Ansonsten ist Paul E. einer der genialsten Köpfe im Business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: MusSanwrote on 26.04.2015:[10.0] "Der beste Mannager in der Geschichte der WWE. Es gibt keinen in der WWE der besser am Microphon ist als Paul Heyman. Er hat mehr als 10 Punkte verdient, aber weil 10 Punkte das Maximum sind kriegt er 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: NastyYaffawrote on 20.04.2015:[9.0] "Amazing talent on the microphone. Quite possibly a top-5 mic worker in the history. And I absolutely LOVE his duo w/ Brock Lesnar. My favorite pairing in wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: JayCutlerwrote on 07.03.2015:[10.0] "Wenn sein Schützling scheiße ist, kann man ihm wenigstens zuschauen. Bester Manager aller Zeiten. Und ich bewerte ihn nur als Manager, da ich die ECW-Zeit nicht miterlebt habe und aus Mangel an Interesse an Hardcore-"Wrestling" auch nie verfolgt habe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: GoToSleepwrote on 07.02.2015:[10.0] "Ladies and gentleman, my name is Paul Heyman" Ach ja, schon der Beginn seiner Promos ist so stark und mittlerweile für mich schon Kult geworden. Paul Heyman ist DER beste Manager den die WWE jemals hatte und er beweist es bei Brock Lesnar auch weiterhin. Und nicht nur Lesnar selbst, sich seine Gegner profitierten enorm von Heyman, da er selbst die gewendet over bringt, obwohl er sie grade in Grund und Boden redet. Ausserdem ist er backstage Rob fantastischer Booker, der vor allem die ECW damals groß gemacht hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: hosswrote on 27.01.2015:[10.0] "Dieser Mann ist Wahnsinn. Am Mic ne 10, alsManager ne 10, als Macher von ECW ne 10. Solche Typen braucht das Wrestling. Das einzige Manko ist wohl ds er nicht Geschäftsmann genug ist, sonst hätte man die ECW sicher weiterführen können wenn man einiges da professionalisiert hätte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: DerLandvogwrote on 22.01.2015:[10.0] "Der Typ zieht mich bei jeder seiner Promos in den Bann. Unglaublich stark am MIC und auch als Manager. Jeder, der an seiner Seite arbeitet, darf sich auf viel Erfolg freuen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Triple Hwrote on 05.01.2015:[10.0] "Man kann diesen Paul Heyman lieben oder hassen er ist und bleibt das Mastermind im Wrestlinggeschäft. Fies, hinterhältig aber dann auch wieder mal sympatisch. Er beherrscht alle Faceten des Sport Entertainment. Als ich ihn zum ersten mal sah habe ich ihn nicht gemocht, aber durch Wrestling Network und die Doku über ihn ist er bei mir in ein ganz anderes Licht gerückt. Ohne Ihn wäre auch ein Brock Lesnar ohne Glanz in der WWE geblieben. Die stärkste Zeit ist und bleibt wohl seine ECW Timeline. Ich hoffe er bleibt dem Sports Entertainment noch lange erhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ggultra2764wrote on 27.12.2014:[10.0] "One of the all-time greats as both a manager and booker. The guy is one of the best presently at cutting excellent promos that make him come across as a slimey guy you would want to legitimately beat up. His booking of ECW and the WWE's Smackdown brand for 2003 is stuff that American pro wrestling needs more of instead of the shenanigans that promoters like Dixie Carter and Vince McMahon pull off."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: HereComesThePainwrote on 20.12.2014:[10.0] "Muss ich ernsthaft ins Detail gehen? Na eben. Wieso muss ich hier überhaupt 100 Zeichen verwenden..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Sokar Drenwrote on 05.12.2014:[10.0] "Das größte Genie im Wrestling Business! Desweiteren ist Paul Heyman auch ein sehr guter Manager, denn seine Heyman Guys werden durch seine Promos perfekt unterstützt und machen eigentlich jede Show unterhaltsamer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Y2J316wrote on 28.11.2014:[9.0] "Großartiger Manager und auch ein Genie als Besitzer von ECW. Mag ihn als Manager sehr. Vor allem als Manager von Lesnar und Punk pures Gold. Sein Run mit Cesaro war mehr oder weniger ziemlich misserabel. Hoffe das er noch ein weilchen bei WWE bleibt und weitere coole Promos von sich gibt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Mantafahrerwrote on 12.11.2014:[5.0] "Paul Heyman als Booker ist für einige der brilliantesten, aber auch schwachsinnigsten Aktionen in der Geschichte des Wrestling-Business verantwortlich. Hat die ECW groß gemacht, seine Fehlentscheidungen waren meiner Meinung nach aber auch der Untergang der Liga. Generell passend zu seinem Heel-Charakter ein unglaublich unsympathischer Typ, was aber perfekt zu Lesnar passt. Andere Paul Heyman-Guys hatten nicht so ein Glück und ihn als Manager zu haben brachte ihnen gar nichts. Das Einzige, was ich richtig korrekt an Paulie finde, ist sein Mic-Work, welches eines der besten ist das ich je erleben durfte."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: 8BitLegendwrote on 12.11.2014:[6.0] "Leidenschaftlicher, erfahrener aber bzgl. der Intelligenz überschätzter Wrestling-Allrounder. Meister der billigen Heat, kann gut provozieren, ist dabei aber selten wirklich glaubwürdig. Kennt keine geschmacklichen Grenzen und würde auch seine Großmutter verkaufen, wenn der Preis stimmt. Hat einen Teil seiner Kredibilität durch die missglückten Heyman-Guy Geschichten verspielt. Curtis Axel und Ryback hatten genauso wenig davon. Lesnar und Heyman passen aber ganz gut zusammen. In der Rolle kann er gerne bleiben."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: GlobalSportsGamerwrote on 20.10.2014:[10.0] "No one comes close to him on the mic. Amazing. Works the crowd and can make you cheer or boo him on a moments notice. A true legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: zackwoowoowooryderwrote on 16.10.2014:[10.0] "Das größte Genie im Sport-Entertainment-Bereich. Egal ob als Manager, als GM oder als Besitzer von ECW, Heyman war immer richtig stark. Er kann Superstars egal wie weit unten sie sind immer groß rausbringen. Und reden kann der Mann wie kein zweiter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Titanwrote on 21.09.2014:[10.0] "Paul Heyman kann man zweifelsohne als Mastermind im Wrestling-Business bezeichnen. Wie er damals ECW auf den Radar gebracht hat und wie sein Einfluss das Business verändert hat ist historisch. Booking-Technisch hat er zwar nicht immer alles richtig gemacht, aber größtenteils schon. Zudem ist er ein unglaublich unterhaltsamer Mic-Worker, der zusammen mit Jericho, Punk und Edge den Olymp der Mic-Worker bildet. An Lesnars Seite und davor an Punks Seite war er sehr gut aufgehoben. Wenn ich könnte würde ich auch mehr als 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Viper99wrote on 17.09.2014:[10.0] "Ich freue mich immer drauf wenn ich ihn bei Raw sehe denn da kann ich mir sicher sein das 10 Minuten Unterhaltung kommt.  Er ist wohl der beste Non Wrestler der letzten (min. ) 7 Jahre!  Und an der Seite von Lesnar perfekt aufgehoben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Phenomenal91wrote on 06.09.2014:[10.0] "As manager, promoter, commentator, on air official, the man is absolutely without peer. He succeeded in the business by playing by its rules as a manager, and later by breaking just about all of them with ECW. Now, after a near 30 year career in the wrestling business, having raised a mighty empire and brought it down, having guided several young superstars to greatness, all the while being phenomenally entertaining no matter what role they put him in... he's still going full speed ahead. He's not slowing down any time soon, and hopefully, if the WWE is smart, they'll allow him a greater say in what goes on behind the scenes. For the artist formerly known as Paul E. Dangerously, wrestling's not just a business, it's the greatest show on Earth."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: HighlightHEELwrote on 03.09.2014:[10.0] "The Best in the World at what he does. Im Moment kann niemand, aber absolut niemand Paul Heyman am Mikro das Wasser reichen, wenn er eine Promo of the Year an die andere reiht. Seine Rolle als Advokat und schmieriger Manager von Lesnar, vorher auch von Punk und anderen, ist die in der heutigen WWE perfekte für ihn, von der auch zumindest Lesnar gewaltig profitiert. Sorgt für Kontroversen, wenn die Smart Marks unter den Fans ihn feiern und die Marks ihn ausbuhen, was zeigt, wie gut er polarisieren kann. Als der Mann hinter ECW hat er auch schon seinen Teil Wrestlinggeschichte geschrieben, als Booker war er auch in der Anfangszeit von SmackDown nach der Trennung der Roster verantwortlich für einige tolle Shows und Momente. Das, für das ich ihn am Wenigsten im Gedächtnis habe, ist seine Zeit als Kommentator, und auch da war er bei weitem nicht schlecht. Eine der prägenden Figuren des Wrestling-Business, und das ist bis heute so."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Detective Maskwrote on 18.07.2014:[10.0] "Since he was a heel when he became SmackDown GM a decade ago, I didn't like him when I was still a kid. Amazing how things have changed.   As a heel manager, he does a wonderful job at delivering promos on the mic. I'm also impressed at how he can take on topics that would seem to be unrelated to each other and turn it into one amazing promo. In particular, the way he connected CM Punk's real-life firing to his WM 29 loss, then link it further to hype Undertaker vs. Lesnar at WM 30, was just brilliant."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Hirnklopswrote on 29.04.2014:[8.0] "Netter Booker, mieser Geschäftsmann. Was er aber kann, und das wirklich wie kein Zweiter, ist Reden. Ich höre diesem Mann einfach gerne zu, er kann so unglaublich, unglaublich geile Reden halten, das ist sowas von... Absolut genial. Ich glaube zwar nicht, das er aus Scheiße Gold machen kann, und er ist auch definitiv nicht der Messiahs, den manche in ihm sehen, aber er ist ein endgeiler Redner und ein Manager aus dem Level von Bobby Heenan."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Jack Slaterwrote on 22.04.2014:[10.0] "Warum habe ich den Kerl nie bewertet? Ich sage nur so viel. "MY CLIENT BROCK LESNAR CONQUERED THE STREAK". Dieses Segment wird mir wohl auf ewig im Kopf bleiben und auch wenn er einfach die ganze Zeit nur das selbe von sich gegeben hat - er hat damit dem Ende der Streak noch einmal einen Stempel aufgedrückt. Die alte ECW, die Wrestler die er gemanaged hat, sein Micwork, seine Arbeit als Kommentator, sein Booking, sein generelles Auftreten, seine Arbeit als General Manager von SD, seine legendären Promos... Paul Heyman ist wohl der beste Non-Wrestler den ich jemals im Wrestling Geschäft gesehen habe und er ist eindeutig der beste Manager aller Zeiten. 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Blade Bourdeauxwrote on 11.04.2014:[10.0] "My Name is... = die Halle buht! Paul Heyman hat das Erbe von Bobby Heenan wahrhaft angetreten. Man kann ihn in jeder Situation raus schicken, mit seinem Gefühl für die Crowd wird fast immer eine Top Promo heraus kommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: TheKingOfSwingwrote on 11.04.2014:[10.0] "I wish i could give an 12 for the greatest manager of all time, but sadly the highest I could give him is a 10. Everything Paul Heyman touches turns to gold, everything he says inches the people to the edge of their seats, everything he produces leads to a great moment in the industry, and its all because of the hard work. Just as an example of his immense skill, was this Monday night on the Raw after Mania, as not only did Heyman get the biggest boos for ending the streak with "The Conquerer, BROCCCKKK LEESSSSNARR", but he also got this biggest pop as the surprise manager for Cesaro. Heyman can do it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Brainbreakerwrote on 09.04.2014:[10.0] ""My name is Paul Heyman! " Ach Paul... du, der großartigste unter allen Managern... du, der begabteste aller Redner... du, der es wie sonst nur Vince McMahon vermag, Matches allein mit Mimik und Körpersprache vom Ringrand aus Bedeutung zu verleihen... du, der am Kommentatorenpult so ziemlichen jeden ausstach... du, der das mutigste Konkurrenzprodukt zur damaligen WWF aufbaute... du, der einfach die Ahnung und Erfahrung hat, zu bewerten wer es wirklich verdient hat gepusht zu werden... ja Paul, du verdienst irgendwann einen Platz in der Hall of Fame!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Whitebear710wrote on 08.04.2014:[10.0] "Glatte 10. Als Manager der absolut beste, er besticht mit giftigen Promos, die jede Fehde aufpeppen. Seine recht eigene Stimme finde ich persönlich sehr passend. Wenn er ein Mikrofon zur Hand nimmt und anfängt zu sprechen, wünscht man ihm gleich einen Big Boot auf die Zwölf - Ziel erreicht. Keine Frage, volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Slyderwrote on 18.03.2014:[10.0] "Wohl DER beste Manager aller Zeiten.  Sorry, dass ich die Attitude-era nicht durchlebt hab, sonst wäre meine Wahl sicher schwerer gewesen. :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Foleysbabytoywrote on 27.02.2014:[10.0] "Großartiger und leidenschaftlicher Promoter. Sehr guter Kommentator. An der Seite von Punk und Lesnar Gold wert. Aus Ryback kann allerdings auch Herr Dangerously nicht viel herausholen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: AriesMarkwrote on 21.02.2014:[10.0] "Paul Heyman is by far the best heel manager in the business today. I could put an argument in for Zeb Colter, but he's still not on Heyman's level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: J0KERwrote on 23.01.2014:[10.0] "Paul Heyman aka. Paul E Dangerously! Paul Heyman wohlmöglich der beste Manager die es im Wrestling gegeben. Hat Stars wie CM Punk, Brock Lesnar, Rey Mysterio, Rob Van Dam, Chris Jericho, Chris Benoit und viele mehr hervorgebracht. Seine Promos konnten bei diesem Mann einfach nicht schlecht werden. Im Endeffekt kam jedes mal eine spitzen Promo zu Stande. Im Mikrofon der Beste der Beste der Besten. Keiner schlägt Paul E Dangerously was Mic Work betrifft! Ebenfalls ein Super Booker und Writer. Am Kommentatoren Pult wusste er auch zu überzeugen wie in all seiner Promos. Die Mimik die er hat kann keiner toppen er ist einfach die Stimme des Wrestlings! Am Ende bin ich auch ein Paul Heyman Guy!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ShawnDravenwrote on 04.01.2014:[10.0] "Best manager in the history of the business. Also one of the greatest minds."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: davidrh115wrote on 02.01.2014:[10.0] "Dieser Mann ist einfach der Hammer in Sachen Wrestling. Er pusht fast jeden Wrestler an die Spitze !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Silaswrote on 23.11.2013:[10.0] "Der Mann ist lebende Wrestlinggeschichte. Mit seinen ECW Storylines erfand er, mitte der 90er das Wrestling neu. Dazu ein gutes Auge für Talente ( CM Punk, Lesnar) und ist auch als "on-air"-Manager unglaublich unterhaltsam. Paul Heyman ist Wrestling!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: LatinoheatEGwrote on 20.11.2013:[10.0] "Seine Heel-Arbeit ist unvergleichlich. Die Art in der Paul Heyman die Zuschauer gegen sich und seine "Klienten" aufwiegeln kann ist so gut, dass man 10 Punkte geben muss. Für mich ein baldiger Hall of Famer. Hoffentlich bleibt er noch lange im Geschehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Goldberg82wrote on 15.11.2013:[10.0] "In der WCW hatte Heyman aka Paul E. Dangerously ein 80er Jahre Yuppie-Gimmick und ist immer mit einem für unsere Zeiten riesen Handy rumgerannt. Dieses hat er gerne für seine Schützlinge eingesetzt. Heyman kam damals schon gut als Manager der Dangerous Alliance rüber. Unglaublich was Heyman bei der ECW aufgebaut hat. Mit wenig Geld und sehr guten Workern hat er das moderne Wrestling revolutioniert. Er war mit erwachsenen Storylines, Hardcore-Wrestling vom feinsten und einer sehr guten Cruiserweight-Division einer der Wegbereiter für die Attitude Era in der WWF. Leider ging die ECW nach Streit mit TNN (Verlust des TV-Slots) in der WWE auf. Seit dem ist Paul Heyman dort als General-Manager, als Manager (von Größen wie CM Punk oder Brock Lesnar) tätig und macht dies Großartig. Einer der größten Brains im Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Cooliganwrote on 14.10.2013:[10.0] "Lange Zeit gab es keine Manager mehr, die mit ihren Wrestlern an den Ring gegangen sind und sich durch ihre Mithilfe beim Publikum unbeliebt gemacht haben. Paul Heyman macht seinen Job gut und die WWE bräuchte mehr Leute wie ihn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: koeddylaemmlewrote on 19.09.2013:[10.0] "One of the absolute geniuses of wrestling. Adds something special every time he is involved."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: indyfanwrote on 07.09.2013:[9.0] "Er hätte von mir eine 10 bekommen, wenn ernicht so ein mieser Geschäftsmann wäre. Er ist ein Wrestlinggenie! Er hat es von ganz unten nach ganz oben geschafft (und leider auch wieder zurück). Wer sich The Rise of ECW angesehen hat und zugleich noch die unabhängige Szene des Sports ein bisschen besser kennt, der muss gestehen: Heyman ist genial. Ich selbst kann hier auch nur darauf eingehen, da ich zu Zeiten der original ECW noch kein solcher Wrestlingfan war und somit die Stimmung aus der Zeit auch nicht mitbekommen habe. Das was er jedoch an den Tag legt ist bis heute 1A. Möglicherweise der beste Booker/Writer im US Amerikanischen Raum."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Alex Maedawrote on 30.08.2013:[10.0] "Einer der besten Redner aller Zeiten. Hat nicht nur eine jederzeit wiedererkennbare Mimik und Gestik, sondern jede Promo, die er hält, hat einen meist tiefergehenden, teilweise sogar auf private Hintergründe beruhbaren Sinn. Er lebt nicht von Phrasen, Cheap Heat/Pops, kleinen Witzchen oder sonstigen gern verwendeten Stilmitten, sondern von Inhalt. Heyman spricht das aus, was er denkt und überspringt mehrmals die Grenze zwischen On Air-und Privatperson, gerade in der Fehde gegen CM Punk blüht er erneut richtig auf und haut gehaltvolle Promos raus, die von niemand anderes als ihm kommen können. Paul Heyman ist einzigartig und unersetzbar. Das hat die Zeit vor seinem WWE-Comeback gezeigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "Klasse Mastermind, und klasse am Mic. Ich bin ein Paul Heyman Guy"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[8.0] "Anfang des Jahrtausends als WWF-Kommentator relativ nervig, aber er schafft es perfekt, den Heel zu verkörpern, ob nun als Manager oder GM. Unausstehlich, genial und unterhaltend. Zudem eine Schlüsselfigur der ECW und somit auch des amerikanischen Wrestlings."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Leonewrote on 12.08.2013:[10.0] "Give Paul Heyman millions of dollars, a wrestling promotion, and somebody who can work on the business side of things for him, and he would be the greatest Wrestling Promoter in the world.  On top of this, he's a fantastic manager and great on the mic.  When a wrestler is taken under the wing of Paul Heyman, 9 times out of 10, they become either a star or a very memorable wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: MrFisch5wrote on 28.07.2013:[10.0] "Ich weiss echt nicht wie man hier etwas anderes als 10 Punkte geben kann. Der Mann macht in seiner Rolle einfach alles richtig sowohl früher als auch heute. Am Mic ist er ein Gott und als Heel Manger besser als kein anderer. Für mich einer der Gründe die WWE zu verfolgen, THIS MAN IS A GOD."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: KKorppuwrote on 20.07.2013:[10.0] "Best speaker ever to hold a microphone in a ring. Creative genious. When in a role where his weaknesses are not exposed, he is the best there is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Erico Moraeswrote on 01.07.2013:[10.0] "Just perfect, nobody can do his role as he always did!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Evan Callawaywrote on 21.06.2013:[10.0] "The greatest manager ever. Paul has been doing an awesome job with Brock Lesnar and Curtis Axel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: TheWALLwrote on 15.05.2013:[10.0] "Wie kann jemand ihm nur 1nen Punkt geben. =/ NUr ein kleines Kind, was nichts von Wrestling versteht und keine Heels mag kann so etwas machen. Er ist der beste am Mikrofon in der Geschichte des Wrestlings er hat alles was man als Perfekter Manager braucht. Ohne ihn gäbe es z. B. keinen CM Punk keinen Brock Lesnar oder RVD. Er ist unverzichtbar in diesem Geschäft. Und JEDER wirklich JEDER Wrestler hätte ihn an seiner Seite, was sogar ein Babyface wie Kofi Kingston Gestern zugegeben hatte. HEYMAN=ERFOLG ERFOLG=EINE NEUE LEGENDE DIESES SPORTS.  #HeymanGuy#"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: believeintheshieldwrote on 02.05.2013:[10.0] "Was er mit ECW geschafft hat muss ihm erstmal einer nachmachen. Ein Hervorragender Booker, Writer und Promoter. Durchdachte Storylines die einen fast immer mitgerissen haben, das verdient 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: dudemanbearpigwrote on 10.03.2013:[9.0] "An excellent manager, announcer, and booker, but not a good promoter."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Golgotawrote on 28.02.2013:[10.0] "Unterhält mit jedem einzelnen Auftritt. Das Business fließt durch sein Blut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Irri Busenbenderwrote on 05.02.2013:[10.0] "Der beste WWE Manager aller Zeiten und der Promogott schlecht hin. Alles andere als 10 Punkte wäre ne Frechheit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: rey mysterio 104wrote on 29.01.2013:[10.0] "Ich kann nichts zu seiner Zeit als Promoter sein, aber als Manager einfach sehr stark in seiner Rolle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Valerionwrote on 10.10.2012:[10.0] "schmierigster Typ im Business, Promo-Gott und der Schöpfer der alten ECW. DANKE PAUL HEYMAN!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Woerpwrote on 01.10.2012:[7.0] "Ich kenn ihn von seiner ECW Zeit nicht, eigentlich kenn ich nur seine Programme mit Brock Lesnar und als WWE Kommentator. Aber das was ich gesehen habe, ist nicht schlecht."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: BlueDiamondwrote on 11.09.2012:[10.0] "Er ist als Gründer eine glatte eins und als Manager hat er jeder Story und jedem Klienten unglaublich viel gebracht. Der perfekte Widerling in jeder Story."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Hankinswrote on 11.08.2012:[10.0] "Für mich der beste Manager im Wrestling. Schade, dass man ihn nur noch so selten zusehen bekommt. Er hat ein unglaublich gutes Gespür für Situationen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: jchiofalwrote on 07.08.2012:[10.0] "Paul Heyman is a wrestling legend. He ran perhaps the greatest American wrestling promotion, is one of the best managers in pro wrestling history, and is one of the best on the microphone in pro wrestling history. Heyman has made an impact on proessional wrestling which will never be rivalled."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ARIZAwrote on 15.06.2012:[10.0] "Sowohl hinter den Kulissen, wo er aus dem ECW-Roster absolut alles herausgeholt hat, was möglich war, als auch als Manager oder Kommentator richtig gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Franchise Playerwrote on 04.06.2012:[10.0] "Ich habe es noch nie zu einer Person im Wrestling gesagt aber: Ich bewundere diesen Mann! Ich liebe Heymans Arbeit! Genie, Mikrogott und ein unglaublicher Sinn Fürs Wrestling. Nur mit Kohle konnte Paul E. nicht umgehen^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: themuhwrote on 25.05.2012:[10.0] "He has the best speaking ability in wrestling. No doubt about it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Baldrickwrote on 11.05.2012:[10.0] "Ein Gespür für den richtigen Zeitgeist und das Wrestling allgemein, dass noch immer seinesgleichen sucht.  Zudem glüht jedes Mikro, dass er in die Hand nimmt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Senajwrote on 28.01.2012:[10.0] "Was wäre das Wrestling ohne Paul Heyman? Ohne ihn wäre es auf jeden Fall nicht das Gleiche. Er hat geholfen das Business zu revolutionieren. Schade das er nicht mehr bei der WWE zu sehen ist. Bring him back!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: jerseyhoolwrote on 16.11.2011:[10.0] "Paul Heyman ist ein Fall für das Geschichtsbuch: genialer Booker & grandios am Mic. Aber leider auch unbeholfen, wenn man den betriebswirtschaftlichen Aspekt zu Rate zieht (irgendwie musste die ECW ja pleite gehen)! Als Kommentator mit seiner Stimme, die am Rande des geistigen Wahnsinns schwankte, göttlich, als Manager einer der Besten. Ungeachtet aller Differenzen & Unstimmigkeiten, die seinen Umgang mit anderen & ihn selbst betreffen, ein grosser Verlust für das amerikanische Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Sirius Van Grathwrote on 03.10.2011:[10.0] "Der beste Booker aller Zeiten! Es ist wirklich kein Wunder, dass er in der Mitte der 90'er immer zum besten Booker gewählt wurde. Mit der ECW hat er das Hardcore-Wrestling sowie das Wrestling selber revoluzioniert! Schade, dass er nun nichtmehr im Wrestling-Buisness ist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: VanderVaartwrote on 18.09.2011:[6.0] "Paul Heyman ist der innovativste Booker aller Zeiten. Schneller, höher, kreativer, spektakulärer und teils zu extrem. So krass war`s. Die ECW konnte deshalb nicht Mainstream und wirtschaftlich erfolgreich sein, weil der WWF oder/ und WCW-Zuschauer sonst einen Herzinfarkt bekommen hätte. Infolgedessen verwehrte er vielen Wrestlern dann die Gage und redete sich "genial" raus.  Das ging solange gut, bis die Liga ihre Pforten schließen musste. Im Knast ging er dafür nie."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Er war ein Master Mind! Seine Ideen waren fast immer Genial und er spricht wirklich allen Wrestlingfans aus der Seele! Einen Punkt Abzug dafür das er jedoch nicht besonders gut mit Finanzen ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: thedominancewrote on 22.08.2011:[10.0] "Paul Heyman ist wirklich ein Mastermind! Also Dixie Carter sollte sich wirklich in den A.... beissen! Mit ihm (da bin ich mir sicher) wäre bei TNA etwas mehr mit Genuss zu geniessen! Über seine Sache in der ECW brauch man sicher nix mehr sagen und auch in der WWE war er gut zu ertragen! Als Booker ist er sowieso ein Gott! ich glaube in seinem Geschäft ist er der beste seiner Art, von daher denke ich das 10 Punkte gerechtfertigt sind!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: devilsoldierwrote on 30.07.2011:[6.0] "MMMMHHHHH schwierig. Alle Welt findet er hat es drauf und versteht das Geschäft und kann alles in Gold verwandeln und ist ja auch der Wrestlingkenner vor dem Herrn. Sicher hat er gute Ideen und hat auch viel im Geschäft bewegt aber eben nicht auf Dauer. Wenn er ja ach so toll ist warum ging dann die ECW kaputt und warum ist OVW unter seine Ideen nicht über den regionalen Sektor aufgestiegen? Sicher kann er was aber ich glaube einfach auf Dauer und im Mainstreambereich bei den richtig großen setzt er sich nicht durch. Heyman funktioniert 2 bis 3 Jahre dann spricht er nur noch Marks an aber nicht die breite Masse. Und die macht eben leider das Geschäft aus. Edit: Ich weiß das OVW als Entwicklungsliga diente, aber die ausverkauften Shows müssen ja nicht von HeymanŽs Ideen kommen sondern könnten auch daher kommen das die Leute wussten das zukünftige WWE Stars dort auftreten, mit Leuten die schon Stars sind und zum Training zurück beordert wurden bzw manchmal sogar bei einigen Shows aktuelle Stars. Erfahren werden wir das wohl nie genau. Ich möchte Herrn Heyman auch nicht sein Talent als Booker kleinmachen aber ich denke eben auf Dauer fährt er sich fest und schafft es nicht den Mainstream zu erobern. Ähnlich ROH die sicher geiles Wrestling bieten (sogar sehr geil) aber nicht für 3 bis 4 Millionen TV Zuschauer auf Dauer und Ratings zählen leider nun mal am Markt."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: y94wrote on 30.07.2011:"An meinen Vorredner: Die OVW diente zu Heymans Zeiten als reine "Farmliga" der WWE. Die WWE will in diesen Ligen junge Talente auf einen Einsatz in den großen TV Shows vorbereiten, bzw. vor einem bewusst klein gehaltenen Publikum deren "Mainstreamtauglichkeit" überprüfen. An einer überregionalen Vermarktung besteht/bestand daher, seitens der WWE, keinerlei Interesse. Unter Heymans Leitung fanden die Veranstaltungen der OVW trotzdem regelmäßig vor ausverkauftem Haus statt. So viel also dazu.  Die ECW fand aus finanziellen Gründen ihr Ende. Der Geschäftsmann Paul Heyman trägt dafür die (Mit) Verantwortung. Der Booker Paul Heyman dagegen setzte mit seinen Shows bis zuletzt Maßstäbe und leitete mit seinen Ideen einen vollständigen Paradigmenwechsel im amerikanischen Wrestling ein. Ohne einen Querdenker wie Heyman wäre die Attitude Ära in ihrer bekannten Form vollkommen undenkbar gewesen."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: 7TheEwrote on 03.07.2011:[10.0] "Das Mastermind der Gott und einfach der beste im Hintergrund von Wrestling!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: C0nspiracywrote on 27.03.2011:[9.0] "Paul Heyman ist eine der Wichtigsten Wrestling Persönlichkeiten. Er ist sehr klug auch wenn er in den Sendungen , vorzugsweise der WWE oftmals als holpriger unaufgeräumter Manager herumtingelte. Er hat die ECW am Leben erhalten und sich eine treue Fangemeinde erarbeitet. Er ist in der Geschichte des Pro WrestlingŽs nicht wegzudenken. Im augenblick scheint er dem Wrestling fernzubleiben aber ich denke wir haben noch nicht das letzte von Paul Heyman gesehen. Er ist so verrückt das sich niemand wundern würde sollte er wieder eine Liga eröffnen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Whole Fucking Showwrote on 02.03.2011:[10.0] "Der Mann, der von diesem Business am meisten versteht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: LabronBenoitwrote on 14.07.2010:[10.0] "Das Booking-Genie schlechthin. Wäre dieser Mann noch bei der WWE... ach Gott, was hätten wir da wohl für geile Storylines in den letzten Monaten und Jahren gehabt. Immerhin wären die Leute für sowas ja bei der WWE durchaus vorhanden. Bin ja mal gespannt, ob das mit TNA klappt. Wenn ja, werde ich TNA wohl öfter verfolgen, denn zurzeit interessiert mich ja das ganze nicht so sehr. Aber nochmal zu Paul Heyman: Ich hoffe, dass wir ihn alle nochmal irgendwo als Booker sehen können, vielleicht sogar in einer On-Air Rolle, wer weiß, wer weiß ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Kitanoyamawrote on 14.07.2010:[10.0] "Nach allem was ich von ihm gelesen, gesehen und/oder gehört habe ist er einer der absoluten Respektspersonen im Wrestling-Buisness dessen Aktionen allerdings zum Teil wie ein zweischneidiges Schwert sind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: CM Dannywrote on 10.06.2010:[10.0] "Als Geschäftsmann vielleicht wirklich unbrauchbar, aber als "Mind" absolut unerreichbar. Er hat die Wrestling-Welt verändert und die Big Two fast schon gezwungen, ihren Stil zu ändern. Thank you Paul!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Erasedwrote on 30.05.2010:[10.0] "Wohl der beste Booker in der Wrestlinggeschichte! Auch als Manager und Color-Kommentator wirkte er ständig gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Lesnarwrote on 08.04.2010:[10.0] "Der für mich beste booker aller zeiten. Der man weiß einfach alles und vorallem was die leute sehen wollen. Schade das er nicht mehr die positionen von damals einnimmt. Würde mir vorallem ein comeback als supporter eines neulings wünschen. wie er damals Lesnar hochgepusht und dargestellt hat war einfach göttlich. Ich erinnere mich noch an das hell in a cell match wo er neben der zelle rumlief und mit seiner unverwechselbaren stimme 30 minuten rumschrie. Eine Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rinskywrote on 04.04.2010:[10.0] "Es gibt glaube ich keinen, der es besser versteht, das zu bieten was die Fans wirklich sehen wollen, als Paul Heyman. Ich hoffe, dass er noch irgendwann einmal die Chance bekommt bzw. wahrnimmt in einer größeren Liga als Headbooker zu arbeiten. Wenn nicht, dann doch zumindest eine Manager oder Authority Figure Rolle, denn auch in diesem Bereich hat er schon oft genug bewiesen, dass Paul E. es einfach drauf hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: BlackXwrote on 02.04.2010:[10.0] "The evil genius. Neben Vince McMahon das größte Mastermind im Wrestlinggeschäft. Was er mit der ECW geschaffen hatte, ist für die Ewigkeit bestimmt. Dazu muss man seinen Einfluss auf die WWE/WWF und WCW in den 90ern hoch anrechnen. Klare volle Punkte für Paul E."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Manu Adamswrote on 02.04.2010:[10.0] "Paul Heyman ist ein Allrounder außerhalb des Ringes. Machte seine arbeiten, die man ihm gab, entweder als Kommentator oder General Manager stets ausgezeichnet. Zudem war er der Chairman der ECW, hat eine außergewöhnliche Stimme die mir gefällt. Dem Mann muss man einfach die verdiente Höchstnote geben. Was dieser für die ECW, WCW & WWE geleistet hatte ist unglaublich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Eddiewrote on 15.03.2010:[10.0] "Hatte gute Storylines, war ein klasse GM, er ist einfach sehr präsent On-Air. Ich find den Mann klasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Carnevalewrote on 11.03.2010:[10.0] "Ach ja, Paul Heyman. Wie schade dass er nicht mehr in einer wichtigen Position ist. Wenn TNA Russo durch ihn ersetzen würde, wäre der Monday Night War wirklich eine gefährliche Geschichte für WWE. Denn Heyman zählt zu den absolut besten Bookern und Writern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Fat Mikewrote on 09.03.2010:[10.0] "Für mich ist Paul Heyman der beste Booker im Business. Seine Storylines waren überwiegend überzeugend und spannend und er wusste immer wie er seine Worker darstellen musste um ihre Schwächen zu verdecken (z. B. Sandman). Doch auch als On-Air Persönlichkeit ist er sehr unterhaltsam. Schade das er sich in der WWE mit seiner Meinung und Einstellung nicht durchsetzen konnte, denn dann wäre das Produkt wohl um einiges besser."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Aquifelwrote on 08.02.2010:[10.0] "Auch wenn ich die ECW für überbewertet halte, Heyman stand vor allem für zwei Dinge: Innovation und Mut zum Unkonventionellen. Sicherlich nicht der größte Geschäftsmann, aber als Booker und von seinen Ideen her einer der größten im Biz. Dazu on-screen sehr stark."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Telecinewrote on 17.01.2010:[9.0] "Was kann dieser Mann nicht? Er hatte gutes Booking drauf, gutes Mic Work und konnte sogar kommentieren, obwohl er den Job angeblich gehasst hat. Dass er zu TNA geht, hat er mehrfach in Interviews abgelehnt und ich denke, solange Russo dort ist, wird das auch so bleiben. Wenn TNA allerdings Russo durch Heyman austauscht, könnte es was werden. Dennoch würde ich es erst glauben, wenn man ihn entweder dort im TV sieht oder es News oder Statements von TNA zu seiner Vetragsunterzeichnung gibt. Alles andere ist in meinen Augen Wunschdenken."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Aesopwrote on 20.12.2009:[10.0] "Heyman hat die ECW gegründet, und die hat gute Matches geliefert. Er hat das Wrestling revolutioniert, ihm können wir Wrestling für ältere verdanken. Vielleicht hat er die WWE auch dazu gebracht härter zu werden. Neben seinen guten Leistungen als Booker war er auch als Kommentator während der Invasionss-Story klasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: nwowrote on 11.12.2009:[10.0] "Wurde eigentlich schon alles gesagt. Er hatte das Talent aus Wrestlern, die es in anderen Ligen noch nicht mal als Jobber geschafft hätten, Superstars zu machen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: downtown2wrote on 18.11.2009:[10.0] "Ein großer Geschichtenerzähler und der trickreichste, kreativste Promoter aller Zeiten. Wie er aus einem Zwerg wie Taz eine Kampfmaschine, aus dem Nullapostel Sandman eine Hardcore Legende, aus einem ausstrahlungslosen WCW Undercarder die Galionsfigur Raven oder aus einem Team zweier Moppelchen die Kultformation Public Enemy machte muss man ihm hoch anrechnen. Er hat wirklich aus jedem ihm jemals unterstehenden Wrestler das absolute Maximum herausgeholt, ebenso wie aus seiner Bingohalle. Zudem einer der mutigsten und widerspänstigsten Figuren, die je den Wrestlingzirkus betreten haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: mrfantasickwrote on 05.11.2009:[10.0] "Was er bei der ECW abgeliefert hat, war einfach nur fantstisch und genial. Und auch als Manager und Kommentator ein richtig guter und verlässlicher Mann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Basket Casewrote on 15.09.2009:[10.0] "Das Mastermind des Wrestling schlechthin. Ich würde ihn gerne wieder irgendwo als Booker, Manager oder Kommentator sehen. Egal was, egal wo."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: User191wrote on 27.08.2009:[10.0] "Als Promoter und Booker schaffte er es eine kleine Liga zur Messlatte im Hardcore Wrestling zu machen, die selbst heute ein hohes Ansehen bei den alten Fans hat. Als Kommentator, Manager und General Manager konnte er ebenfalls vollkommen überzeugen. Heyman ist einer der wichtigsten Männer in der Wrestlinggeschichte. Er muss niemanden mehr etwas beweisen, allerdings wäre er, in jeder Rolle, eine echte Verstärkung für die entsprechende Liga und daher wäre ein Comeback sehr wünschenswert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: BaptisteZorGwrote on 24.05.2009:[10.0] "Ob als Kommentator, bei der ECW oder an der Seite von Lesnar - Heyman war stets genial und ein Meister seines Fachs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The-Game91wrote on 04.02.2009:[10.0] "Ein Gott am Mic. Seine Ausstrahlung ist unglaublich. Es gab keinen besseren Booker als Paul Heyman."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Father Nelsonwrote on 01.02.2009:[10.0] "One of the two greatest minds in the history of Pro-Wrestling!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: domi1984wrote on 20.11.2008:[10.0] "Einfach Weltklasse! Neben Bischof und Vince einer der 3 WrestlingGÖTTER!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Baszdmegwrote on 07.09.2008:[10.0] "Hat ECW zu der Promotion gemacht, die man heute noch liebt. Dazu noch ein fantastischer Kommentator und guter Manager mit großen Comedy-Skills."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Blue Meaniewrote on 17.08.2008:[10.0] "Vater der ECW, klasse am Mic und als Booker spitze. Wäre er kein so miserabler Geschäftsmann, hätte er ECW noch viele Jahre weiter erfolgreich führen können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Marcywrote on 02.08.2008:[10.0] "Eigentlich wurde schon alles gesagt, ein absoluer Meister im Aufbau von Gimmicks und Wrestlern. Mit einem guten Finanzberater würde er wohl jeder Zeit wieder eine konkurenzfähige Liga aufbauen können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: theflo438wrote on 14.07.2008:[10.0] "War wohl DER beste Booker aller Zeiten. Thank you Paul!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Sick Lebowskiwrote on 28.06.2008:[10.0] "Einer der kreativsten Leute in diesem Business. Schade, dass er nicht genau so ein Händchen für die finanzielle Seite des Wrestling wie für das Wrestling selber hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: dariawrote on 26.05.2008:[9.0] "tja, da fehlt mir wieder die 1, 5 - ganz sicher die volle Punktzahl für die Kreativität und die Leidenschaft, mit der er die ECW zur Legende gemacht hat - Punktabzug allerdings dafür, dass er 's gegen den Baum gesetzt hat und seine Arbeit bei der WWE. Und damit auch hier das alternative Bewertungsprogrammm genutzt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ecw foreverwrote on 24.05.2008:[9.0] "Genialer Promoter der leider Pech hatte in seiner Karriere, eventuell kann er was neues starten, wäre echt cool."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Green Arrow Banditwrote on 20.05.2008:[10.0] "Er hat sozusagen aus einem Haufen Schrott eine richtig gute Liga gemacht und die ECW wird ihm noch bis in die Ewigkeiten nachtrauern"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Akkuswrote on 17.05.2008:[10.0] "Er ist ein Gott, er hat die ECW zu dem gemacht was ich liebte! Leider sah man seien Arbeit an der neuen ECW nicht für gut an und warf ihn raus, er ist und bleibt aber ein Gott! Thanks Paul E!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Mr Money in the bankwrote on 19.03.2008:[10.0] "Paul Heyman ist in jeder hinsicht ein recht genialer Mann . Mit der ECW hat er das Wrestling revolutioniert und auch später hat er sich durch seine fantastischen Promos und shoots hervorgetan . Glatte 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Fabbowrote on 03.03.2008:[10.0] "Mastermind des Wrestling in den 90ern. Dazu genialer Kommentator, Manager und Booker. Jede Liga könnte froh sein Heyman in ihren Reihen zu haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rated R Champwrote on 13.02.2008:[10.0] "Toller Booker, toller Schauspieler und hatte auch immer gute Ideen(die Vince McMahon ihn leider nicht verwirklichen ließ)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: therockingkingwrote on 10.02.2008:[10.0] "Der beste Booker, den es gibt und vielleicht jemals gegenben hat. Paul Heyman hat mit der ECW etwas für die Ewigkeit geschaffen. Er war mit dieser Promotion immer am Puls der Zeit und manchmal sogar darüber hinaus. Er hat realistische Charaktere und ernsthafte Storys entwickelt (eine Revolution des Wrestlings). Er hat das Hardcore- und das Highflying-Wrestling salonfähig gemacht. Er hat als erster das Internet für seine Promotion entdeckt. Die ECW-Shows waren die ersten auf DVD. Paul Heyman ist ein Booking-Gott, schade nur, dass er von Finanzen keine Ahnung hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Juvicidewrote on 07.02.2008:[10.0] "Paul Heyman: Als Booker einfach nur genial und auch in sonstigen Formen vor der Kamera sehr gut. Einzig seine kurze Zeit als Kommentator bei WWE hat mir nicht so gefallen, aber davon sehe ich bei der Notengebung jetzt mal ab. Schade, dass er von WWECW nicht die Freiheiten bekommen hat, die er gebraucht hätte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: affenmannwrote on 27.01.2008:[10.0] "In einer gerechten Welt wäre er jetzt da, wo McMahon nun ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ghostwrote on 21.12.2007:[10.0] "Mastermind der ECW - ich weiss jetzt nicht genau wieviel damals "von seiner Feder" stammte - aber die original ECW war auf jedenfall Hammer - sehr kreativ, sehr innovativ - Top!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Matt Mackswrote on 06.12.2007:[10.0] "Als Promoter ständig zwischen Genie und Wahnsinn, womit er die Zulassungsprüfung für die Hall Of Fame der besten Promoter aller Zeiten bestanden hat. Als Manager und Kommentator ebenfalls einer der besten, weil er ein fantastischer Redner gewesen ist und über immenses Hintergrundwissen über das Wrestling verfügt, welches er in seine Promos eingearbeitet hat. Zu schade, dass Leute mit eigener Persönlichkeit in der heutigen nationalen Wrestling-Landschaft nicht mehr gefragt sind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Robert Taylorwrote on 08.10.2007:[10.0] "Einfach ein Genie - Ein Gott! Hinter den Kulissen der wohl beste Mann den es gibt, allein die ECW spricht für sich. Super Gespür für Talente, der auch weiß wie man bestimmte Leute einsetzt und over bringt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Cloverwrote on 02.10.2007:[8.0] "Hat eine Wrestlingliga kreiert, die neue Maßstäbe (eben auch für die Fans) gesetzt hat. Dafür werde (sicherlich nicht nur) ich ihm ewig dankbar sein. Aber für seine letzten Jahre gibts Punktabzug: 9 Punkte..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Solid Snakewrote on 22.09.2007:[10.0] "Sein Gespür für Talente ist unheimlich. Ohne ihn würden viele Wrestler, die in der WWE Legenden sind, nicht geben. bzw. nicht in der WWE sein u m überhaupt Legenden werden zu können. Die WWE hat einen Fehler gemacht und ihn entlassen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: nacho83wrote on 13.08.2007:[10.0] "Neben Cornette wohl einer der allerbesten Booker ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Steven McWheelerwrote on 18.07.2007:[8.0] "Mastermind und 2. bester Non-Wrestler Heel aller Zeiten (wobei Vince ja Semi ist), aber zur Note 1 fehlt Faceleistung"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Babuswrote on 09.07.2007:[10.0] "Ob vor den Kameras oder hinter den Kulissen, Paul Heyman ist in jedem Fall ein Mastermind. Natürlich kann man auch bei ihm nicht jede Booking-Entscheidung nachvollziehen, aber objektiv betrachtet liegt das Niveau beinahe jeder Show, an der Heyman bookingtechnisch beteiligt ist, deutlich über dem Gewohntem."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ShaneOwrote on 29.06.2007:[8.0] "Der genialste Booker im Wrestling Business. Leider hat er fürs finanzielle absolut null Gespür. Wenn man es schafft, das Leute einem Balls Mahoney zujubeln, kann man nur genial sein."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Thomas Carlsonwrote on 26.06.2007:[10.0] "Wenn jemand was aus Balls Mahoney und Gary Wolfe macht obwohl beide so talentiert sind wie Viscera dann muss er gut sein. Hat eigentlich aus wenig einiges gemacht. Immer wieder hat er für frischen Wind gesorgt mit kontroversen Angles. Finanziell hatte er leider nur das Talent von Theo Waigel. Das war sein Untergang. Danach sehr gut in allen Rollen in der man ein Mikrofon benötigt und natürlich der endgültige Aufstieg der OVW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Der wahrscheinlich genialste Kopf im Wrestling Business!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Ganz klar! Das größte Genie im Wrestling Geschäft!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Showstopperwrote on 24.06.2007:[10.0] "Das Evil Genius des Wrestling. Top Booker, top Manager, aber leider ein hundsmiserabler Geschäftsmann. Hat durch seine ECW die Wrestlinggeschichte definitiv beeinflusst."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Dieser Mann ist einfach nur Kult. Als Manager und Booker ein absolutes Genie, der die ECW so groß rausgebracht hat, das viele Leute dieser Zeit immer noch nachtrauern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: matzemuenchwrote on 24.06.2007:[10.0] "The Evil Genius..... für mich ist der Mann einer derbesten überhaupt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Sancezzwrote on 24.06.2007:[10.0] "Hat die (alte) ECW zu dem gemacht, was sie war. Leider darf er in der neuen ECW nicht arbeiten wie er will und kann. Meiner Meinung nach macht er die besten Storylines der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Sandman16wrote on 24.06.2007:[10.0] "Er ist für mich das absolut größte Genie des Wrestlings! Was er mit seiner ECW aufgebaut hat, kann man nur als genial bezeichnen und ist wohl nicht wiederholbar. Wenn es die originale ECW heute noch geben würde, wäre sie sicherlich auf einer Stufe mit der WWE. Paul Heyman hat eine der legendärsten Ligen der Welt geformt, der man einfach hinterher trauern muß. Schade, dass es so endete."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Mountiewrote on 24.06.2007:[10.0] "Hat aus einer Liga voller nüchtern betrachtet mediokrer Wrestler ein großartiges Gesamtprodukt geformt, dem bis heute nachgetrauert wird. Was für ein anderes Wort als "genial" kann man dafür finden? Obendrein ein exzellentes Sprachrohr."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: BenZenwrote on 24.06.2007:[10.0] "Wie kaum ein anderer verstand (bzw. versteht) es Heyman immer wieder durch kontroverse und neuartige Angles die Zuschauer zu fesseln. Seine damaligen Innovationen in der ECW waren zu der Zeit einfach unglaublich und wurden nicht umsonst in unzähliger Form von den großen Ligen kopiert und übernommen. Ein absolutes Mastermind, dass unbedingt wieder eine Promotion unter seiner Kontrolle braucht ..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: wrestlingswiftiewrote on 29.01.2025:[10.0] "No offense Hamza Tufail, I get that we all have our own opinions, but you're out of your goddamn mind. "I think he lacked charisma." Eddie Guerrero? Get the fuck outta here! Eddie had such a great range, much like what I said about Mick Foley earlier today. He could make you laugh. He could definitely make you cry. He could be a beloved babyface, and a dastardly heel... I think you need to do more research. Now, moving on from that, Eddie's matches don't really need to be explained. His bouts against Benoit, Angle, Jericho, Mysterio, and Lesnar are still being talked about today because of how ahead-of-it's-time they are."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Anas Kingwrote on 20.01.2025:[5.0] "I think he's one of the most popular and influential latino wrestlers of all time. I love him as an in ring performer. He had so many banger matches, and it's a shame that he was taken away from us that early. However, I think he lacked charisma, I also don't think he was any special when it comes to mic work. Though, I'll admit his promo with Brock before No Way Out was incredible. It was very emotional, and apparently it made Brock tear up when he went backstage. But other than that, I've never been the biggest fan of his personality, and mic work."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Havoc Ravewrote on 18.01.2025:[10.0] "Defining Eddie is difficult, not because he is bad, not because he is an "Indy gem" or whatever. It's difficult because everything that can be said has already been said, extremely complete regardless of the place or the rival, everything can work, in Mic Skills without a doubt legendary, regardless of whether the mood is bussiness, serious or simply informal, a whole example of what a career has to be, one of my favorites, this opinion deserves to end with a phrase to think about (created by me)...Oh Eddie... What would life be like if you were still here."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Its Clobbering Timewrote on 06.12.2024:[10.0] "Eddie had it all man, the look, the charisma, amazing in the ring and most importantly connection with the fans. Eddie had an legendary career from tearing up it in WCW Cruiserweight Division and NJPW Junior Heavyweight Division and ECW. Eddie Really became one of the best ever when he signed with WWE. Eddie could play a underdog feel good babyface a guy you wanna root for and an lying cheating & Stealing heel to perfection. Eddie was taken from us to soon but was still able to leave lasting impact on the world. Viva La Raza"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Taibhsewrote on 22.11.2024:[10.0] "Quite simply, Eddie Guerrero is the reason I am a wrestling fan. I was flipping through channels as a 7-year-old on a Saturday morning, and I happened upon Los Guerreros vs The World's Greatest Tag Team from the previous night's SmackDown. I saw Eddie do something I'd never seen before - a combined headscissors and armdrag on both Haas and Benjamin - and I was hooked. In the years after that, his promos and matches continued to bring me laughter and amazement, and he truly had it all - the look, the athleticism, comedy, drama, workrate, etc. etc. He was an all-rounder to a degree that I'm not sure has been equalled since. He was taken from us far too soon and it was a terrible waste. Wrestling has been poorer without him ever since. RIP."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Wrestlingfan0808wrote on 10.11.2024:[10.0] "He excelled in every role he played. Good guy, bad guy, it didnt matter. One of the blueprints on how the narrative on small wrestlers have changed over the years even tho he was pretty jacked for his size. The impact he made in the industry continues to be felt today. One of a kind"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: JackBurtonsTruckwrote on 14.10.2024:[10.0] "One of the few to have everything. The body, the brains, the charisma, the skill, the athleticism. His highlight reals are a thing of beauty and he is imitated more than most, but never duplicated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TripleCrownwrote on 06.10.2024:[10.0] "One of the very few wrestlers who could captivate an audience and have the ability to be an incredibly good wrestler. Eddie was an all round perfect wrestler, the only other two like that (from the US) were Shawn Michaels and Kurt Angle. Eddie belongs in that class. Worked his ass off for so long, from teaming with Art Barr in Mexico, being Black Tiger II in NJPW, a little short stint in ECW, making an impact in WCW and finally going to WWE and winning the WWE Championship. Oozed charisma and could back it up in-ring whenever he needed to. You could see he was declining a little during his final year or two, but it didn't stop him from putting on classic matches that are still talked about. One of the greatest to ever do it, and truly paved a way for smaller guys in wrestling. Eddie Guerrero is and will forever be a legend in professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Nolan Greenwrote on 25.09.2024:[10.0] "The best member of The Radicalz. He was as good of a wrestler as Chris Benoit and Dean Malenko, but he could actually talk unlike all the other members. His matches with Rey Mysterio were great including their legendary Halloween Havoc 1997 match. In WWE, Eddie was probably the first of the group to get over because of his pairing with Chyna and run as European champion. He was a part of that four way match at No Way Out 2001 and best Test at WrestleMania X7, but that match was not great because Test got caught in the ropes and Eddie actually got kicked in the face. But then he had a run in with the law that forced him to go to the indies and almost ended his life. That's when he became the hero we know him as today as he worked his way back into WWE and won the intercontinental title from Rob Van Dam. This included that ladder match before he went to Smackdown with Benoit and was a part of the Smackdown 6 with nephew Chavo. He also became the first US champion when they revived it. After that he became #1 contender for the WWE champion, Brock Lesnar. The promo he gave about his redemption is his best promo and my eye still get watery every time I watch it. This led to him winning the title and completing his redemption arc. A true legend that made everything he was involved in great. Yes, including taking one of the sickest blade jobs every during his title reign and his feud with Rey in 2005 over Dominik before his death. Eddie could do no wrong."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: dangfoolianwrote on 21.09.2024:[10.0] "My all time favorite wrestler. From his classic bouts in ECW against Dean Malenko, being the gold standard of all the cruiserweights in WCW, and carrying that over in WWF, Eddie was almost always must see TV. A legend that we tragically lost too soon, and was, in my opinion, the last truly extraordinary professional wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: jsbortswrote on 08.09.2024:[10.0] "Eddie was good at every single aspect of wrestling and probably had more charisma than anyone in the business who never left for Hollywood. Eddies the reason a lot of people got interested in wrestling, myself included, and is truly one of the greatest to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: CrayJeVwrote on 01.09.2024:"Eddie was a genius in the ring and wrestled with an intensity unlike many before and after him. His match with Brock Lesnar at Unforgiven will always be one of my favorites simply for the pop Eddie got for winning"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: SCMIV440wrote on 28.08.2024:"For me, Eddie is one of a few wrestlers that is able to evoke such a visceral reaction as not just a babyface but as a heel. While a lot of his career happened when I was quite young, he was very much one of my favorites growing up. Now, as an adult, it's super fun to go back and dissect what he does on the mic and in-ring. Speaking of on the mic, I firmly believe that his addiction promo in the lead up to No Way Out 2003 is the greatest promo of all time. While I do not expect every one to agree with that sentiment I just felt like it deserved a mention"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Joe907wrote on 25.08.2024:[10.0] "One of the most talented wreatlers of all time. Great technical wrestler and high flyer. He's very charismatic. His matches with the Smackdown 6 were amazing. All time legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KayfabeZonewrote on 18.08.2024:[10.0] "Very unique talent. Eddie could easily make you cheer or boo him and his work in the ring speaks for itself. It's a shame he was taken from us way too soon. He was still so young and had much more to offer inside the ropes. A legend that should never be forgotten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ITGfromDiscwrote on 09.08.2024:[10.0] "you kidding me? this man is one of the most charismatic wrestlers in the ring, cutting a promo, and can work heel and face with the crowd. His talent is unapparelled, and while his career was cut short by his heart faliure, he is without a doubt a very influential wrestler for many current stars."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ceasara63wrote on 04.08.2024:[10.0] "Eddie Guerrero is, in my humble opinion, the perfect wrestler. He is one of the greatest of all time, and as an aspiring wrestler myself, one of my biggest inspirations. He can go toe-to-toe with any wrestler, any era, and hold his own, if not outshine them. He has an abundance of charisma, and a connection with the audience that very few wrestlers have. He can play both sides of the face-heel spectrum and be one of the best you've ever seen at both. In his prime, nobody could match up to him. Just a minute ago when I was ranking Edge, I questioned if there was anyone as well-rounded as he is, and the answer to that question is Eddie Guerrero. He had already built up a massive legacy for himself before his untimely passing in November 2005, and had that not happened, I can't even begin to imagine how much further he could've gone. He is an inspiration, he is a hero, he's one of my favorites of all time, viva la raza."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: jennegatronwrote on 04.08.2024:[10.0] "1997 Eddie Guerrero could be time traveled to any era of wrestling to this day and his game and his character would shine. How anyone can have that mullet and that facial hair and also be the hottest thing in the world is proof that Eddie radiates a level of charisma you can't teach. His moves are so truly timeless and also ahead of their time, it's an absolute joy to watch him wrestle. His feud with Rey Mysterio Jr & the commentary he did in the lead up to Starrcade vs Dean Malenko in wcw 1997 feel like must watch tv. When he's a coward or a cheater, it's so fun to boo him, and when he strings together an unbelievably beautiful string of moves, culminating in a frog splash it feels like perfection. Rest in peace Eddie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KobashiChopMewrote on 03.08.2024:[10.0] "Its unfair how Eddie was taken from us so soon. He was one of the best to ever do it in the WWE, and I don't think you can find anyone that will differ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BizarroMaskwrote on 02.08.2024:[10.0] "VIVA LA RAZA! One of the greatest of all time , very enjoyable heel , maybe the best character in wrestling world. We miss you Eddie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Zak22wrote on 19.07.2024:[9.0] "At his peak, Eddie was the best in the world, no question. But what was his peak? Some will say 2002-2005 in WWE but I'd say 1997-1998 in WCW, he was a show stealer, technical and athletic perfection. Look, Eddie was not perfect and some of his matches were mid but to do what he could do, you have to respect it."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Open The Vaultwrote on 15.07.2024:[10.0] "It is criminal to give someone like Eddie Guerrero below a 10. Another legendary wrestler who stamped their name into wrestling history books. He's worked CMLL, WCW/NWA, AWA, AAA, NJPW, ECW, WWA, ROH, IWA Mid-South, OVW, & WWA. He traveled the world and got into so many promotions it was no wonder he was so good. Great moveset, Amazing charisma and an ability to get to the hearts of fans if given the chance. His early years were pretty damn good and he seemed like a natural. He was really showcased with ECW and managed to become a rising star in the states. WCW had huge hopes for him, hell he was talked about for a World Title run around 1995 to 1996! They had a lot of trust in him but a lot of politics relegated him to the mid to lower mid card before leaving WCW with the Rascalz to join the WWF/E. There he would create a legacy. Becoming "Latino Heat" and doing the best work of his career! He sadly passed unexpectedly in 2005 which was absolutely tragic to the wrestling world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: OldSchoolFan3098wrote on 14.06.2024:[10.0] "Eddie Guerrero, one of the most electrifying performers in the history of professional wrestling, was a true gem who captured the hearts of fans worldwide. What made Eddie special was his unparalleled versatility. He could play any role with such authenticity, whether as a lovable hero or a cunning villain. Eddie had the unique ability to make you laugh one moment and gasp in awe the next. His "Latino Heat" persona was iconic, and his catchphrase "I Lie, I Cheat, I Steal" became a beloved mantra, embodying his cheeky, rule-bending charisma. What really endeared Eddie to us fans was his incredible in-ring ability. Every match he was part of felt like a masterclass in wrestling. He delivered classics against legends like Rey Mysterio, Kurt Angle, and Brock Lesnar, showcasing his technical prowess, high-flying agility, and psychological acumen. His match against Brock Lesnar at No Way Out 2004, where he won the WWE Championship, is etched in the memories of wrestling fans like myself as a true underdog story. Eddie's matches were more than just physical contests; they were stories filled with emotion, drama, and spectacle. Beyond his wrestling skills, Eddie's personal story resonated deeply with fans. His battles with addiction and his journey to redemption were well-known, making his triumphs all the more poignant. Eddie was open about his struggles, which made his fans root for him even harder. We saw a man who fought his demons and emerged victorious, both inside and outside the ring. This vulnerability and honesty made him relatable and even more lovable. When Eddie would connect with the audience, you could feel the genuine bond he had with his fans. In the end, what made Eddie Guerrero truly special was his heart. He poured his soul into every performance, and you could see how much he loved wrestling and his fans. Eddie's infectious energy, his trademark grin, and his sheer passion for the business left a lasting impact on everyone who watched him. Even today, years after his untimely passing, Eddie's legacy lives on, reminding us of the joy he brought and the lasting impression he made on the world of professional wrestling. Eddie Guerrero wasn't just a wrestler; he was a hero, an entertainer, and a beloved figure whose spirit continues to inspire."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: doobwrldwrote on 26.05.2024:[10.0] "It irritates my soul whenever I watch professional wrestling, and a commentator boldly and almost disrespectfully proclaims a wrestler as the next Eddie Guerrero. While I think for these wrestlers, it is top tier admiration and endearing, there simply put, will NEVER be another Eddie Guerrero. Once in a generation talent, truly one of a kind in every aspect in the ring. Need a good match with another star? Eddie. Need to elevate a new talent? Eddie. Want a great opener to set up for your event? Eddie. Need a good midcard match that doesnt dull out the crowd? Eddie. Need a blockbuster main-event that will be talked about after its all said and done? Eddie. Promo? Eddie. He could really do it all, and his impact not just on professional wrestling, but modern lucha libre will forever be talked about. Its all for good reason. Eddie was not just an amazing talent, but a pure soul who fought so valiantly and desperately to take back his life beyond wrestling. Ultimately, it was all for nothing, as it was way too tragically cut short. Eddie will always be a legend, and he is missed dearly every day by fans, wrestlers, and executives alike. Viva La Raza."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Tommysalami21wrote on 16.05.2024:[10.0] "Eddie Guerrero is one of if not the best in the ring. A man who could use any wrestling style whether its grappling or highflying. He is truly one of the goats.RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: crs285wrote on 28.04.2024:[10.0] "Eddie Guerrero was amazing in the ring and was one of the most charismatic wrestlers of his generation. He managed to stand out everywhere he went due to his in ring excellence in every facet of wrestling and his mic skills being great. Lost his life too soon otherwise who knows what he could have accomplished."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Willie 19200wrote on 27.04.2024:[9.0] "Eddie Guerrero is overall one of the most charismatic and talented wrestlers in all of wrestling, from his many great matches with Chris Benoit, to his high flying classics with Rey Mysterio, to having technical classics with other legends like Kurt Angle. Guerrero is a man who can do it all; Entertainment, Techincal Wrestling, Lucha Libre, and even the look of a world champion. It's safe to say that Eddie Guerrero is one of the best and overall well liked wrestler in this industry."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ABQMIKEwrote on 25.04.2024:[10.0] "He was wrestling. He could do it all. He concentrated on every action and made everything count. His mannerisms in his heel work were top notch. I personally loved his heel work more than his face work although that was a lot of fun too. His knowing when to put the speed and impact before the point of attack was matched by only a few. He could draw you in just walking to the ring with his cocky, smug look knowing he was going to give you the show of your life no matter the opponent. It was almost a hate me now but once this match is done you'll love me. I adored his early work with Art Barr & as Black Tiger. I knew he sealed his ultimate status once he got into his groove in WCW. 10+"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ultravioletshiroiwrote on 13.04.2024:[10.0] "Eddie Guerrero had it all. He could work, he could act, he had charisma, he had the physique, and he could get over in any role creative assigns him. Although he couldn't do a chokeslam or a 450 splash, he obviously didn't need to. He still had a great moveset for a wrestler of his size. Eddie was a major draw on Smackdown and one of the first smaller wrestlers to main event and win the WWE title! Eddie Guerrero helped pave the way for other luchadores aspiring to be main event stars. Eddie was also a great in-ring storyteller and one of the few wrestlers who could get over while making cheating a big part of his gimmick as a babyface."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Dirty Diegowrote on 11.03.2024:[10.0] "One of my favourite wrestlers of all time had it all one of the greatest in ring technicians ever, and his charisma and character work was up their with the best the Latino heat gimmick, the lie cheat steal gimmick and his underdog gimmick that helped him win the big one still missed to this day"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Svenlesswrote on 21.02.2024:[10.0] "Eddie hat mich zum Wrestling gebracht durch ihm hab ich das Sports Entertainment lieben gelernt .Es gab für mich kein besseren der sowohl als Heel und Face so großartig Performen konnte wie er. Für mich Persönlich ist Eddie Guerrero GOAT.. Mit ihm verbinde ich meine Wrestling Jugend viele tolle und auch traurige Momente. Viva La Raza Eddie Rest in Power Legenden sterben nie!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: easypacwrote on 17.02.2024:[10.0] "The most charismatic, charming and likable wrestler of all time in my opinion. Eddie had that It factor that just draws people in, rather he was a lovable and funny underdog baby face or a dramatic and paranoid heel. The best undersized wrestler of all time, managing to crack the main event scene in WWE and become the WWE champion at 5 foot 8, in a time where that was unheard of. He could wrestle any style against any opponent, rather it be strong style, lucha, technical or sports entertainment. He brought the best out in everyone and got a lot of peoples best matches during the Ruthless Aggression era, which is one of the best eras in wrestling history. Eddie wrestled in Japan, Mexico and America and mastered the different styles of all of them. He mastered the art of cheating in wrestling matches better than any wrestler ever has or ever will. He could cheat as a baby face and get the crowd to laugh and love him even more, which is a very hard thing to do. He had one of the best physiques of all time in a time where the physiques were insane in the WWE, Steroids definitely played a role but nonetheless there is no magic pill and you cant look like that without a large amount of hard work. Overall there is a reason why people still talk about him to this day and will talk about him for the rest of time, Latino Heat Forever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BruceMarcos524wrote on 23.01.2024:[10.0] "Viva La Raza! Eddie Guerrero is one of my favourite wrestlers when I was a kid. No doubt he is one of the all-time great performers in this sport. One of the smoothest wrestlers in the planet and every move he delivered is a thing of beauty. One of the guys who broke barriers on the WWE in terms of size. A much-accomplished star that even makes Shawn Michaels jealous. One of his best moments is when he defeats Brock Lesnar to win the WWE championship, a very emotional celebratory win for Eddie. No doubt his charm and charisma are truly unmatched, and no one can ever duplicate the personality of Eddie. His way of fooling the referees with a steel chair spot to disqualify his opponents is dope and funny to watch up to this day. Promo-wise, he is one of the most passionate talkers on the planet and I remember his promo with Brock Lesnar on how he dealt his demons and how he is addicted to it will always be one of the best promos in Eddie's career. His Three Amigos is well damn smooth, and his Frog Splash is one of the best picture-perfect moves in all of wrestling. Although Eddie is no longer with us, his legacy remains forever. I miss you Eddie every time I think about you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TheVoiceOfReasonwrote on 12.12.2023:[10.0] "Special. If I could describe Eddie Guerrero in one word, it would be special. In ring, promos, you name it, he had it all. From teaming with "Love Machine" Art Barr in AAA, (another guy lost too soon) to his match with Chris Benoit in the 1994 J-Cup, Dean Malenko in ECW, or his 1997 Halloween Havoc match with Rey Mysterio. THAT match is a must-see match. Even his stuff in the WWF/E with the Radicalz, the Smackdown Six, his numerous championships. Eddie Guerrero will live on forever. A 10 does not do this man justice."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: JediSaiyanMaster1203wrote on 19.11.2023:[10.0] "Eddie Guerrero is one of the all time greatest wrestlers and one of my all time favorites, he truly was the complete package as a wrestler. Even before he developed his personality in WWE, he was a fun cruiserweight to watch in WCW feuding with Rey Mysterio and having one of the all time best matches under 15 minutes at Halloween Havoc 1997, and having great back and fourths with Dean Malenko in ECW, showcasing his in ring prowess, he's in a completely separate class of his own like most of the greats are. Even was one of the og ROH wrestlers when it first got started, even having matches with CM Punk before he came back to WWE. While he did have his first WWE run part of The Radicalz, his WWE run truly starts, in my mind, when he came back in 2002 when he took part in the legendary "SmackDown Six" Era, one of the all time best eras in professional wrestling ever, a truly iconic time period on SmackDown showcasing all 6 wrestlers talents, an impactful run despite only lasting about a year. Then Eddie Guerrero gains more and more steam in 2003, and eventually becomes WWE Champion in 2004 in one of the most iconic moments of all time, the build up being legendary with his iconic "No one is going to ever take away my Latino Heat again" promo (a promo so good, Brock Lesnar cried backstage over Eddie's story). Then 2005 hits, and he turns heel and has an incredible run as a bad guy, cutting amazing promos and having a rather interesting feud with Rey Mysterio. Sadly, this didn't last long since he passed away late that year due to heart failure, it's also unfortunate because there were plans of him winning the World Heavyweight Championship down the line and even having a dream match with Shawn Michaels at the next year's WrestleMania. Overall, Eddie Guerrero is in high reverence for a reason, he was a great wrestler that was highly admired by everyone for who he was as a wrestler and as a person, there's not a single day that passes by that I miss him. R.I.P. Eddie Guerrero"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Dntbamarkwrote on 02.11.2023:[9.0] "Eddie was one of the greats. At just 5-8, he was a small man in a big man's game and wasn't about to let that stop him from doing everything he could to reach the very top of the business. Eddie was a true ring general who displayed versatility and character as he could succeed as an underdog babyface or a vindictive and sadistic villian, he could also wrestle any style and use his natural charisma to keep the crowd engaged and invested in his programs. Eddie achieved everything there was to achieve in wrestling before his life was tragically cut short at 38 years old. For years, the business worked Eddie to the bone and Eddie pushed himself to carry the load at the expense of his body and mind. Often times, towards the end of his life, you'd hear stories of Eddie not being able to walk or hunched over from exhaustion. To combat that, Eddie turned to steroids and blew himself up to the point to where his body looked almost too big for his sub-6 foot frame to handle. Eventually all the steroids and exhaustion caused his heart to give out and he became yet another victim of this fucked up carny business that chews performers up and spits them out. At 38 years old, he had his entire life ahead of him and I remember exactly where I was when I found out that he had passed away. As a fan, it was heartbreaking, I miss Eddie to this day and he's one of the one's that I wish would have just quit the business and saved his life, rather than continuing to work himself to death because he felt he had to."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DangoDaisukiwrote on 24.10.2023:[7.0] "Ich habe manchmal das Gefühl das der sehr große Hype um Eddie Guerrero erst nach dem viel zu frühen Tod kam. Natürlich ist Eddie ein guter Wrestler mit Charisma, jedoch war er für mich nie einer der ganz großen. Erst recht nicht als er bei WWE angefangen hatte, fand ich ihn sogar des öfteren eher langweilig. Trotzdem viel Respekt für seine Karriere und besonders früher galt er als eines der großen Talente."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: SavageTygerwrote on 04.10.2023:[10.0] "Eddie Guerrero was the total package. He had every tool a professional wrestler could have: charisma, look, promo ability, could play both hero and villain roles, and be exceptional at both. His list of great matches is seemingly endless and spans every promotion from Triple-A, to ECW, WCW, and of course WWF/E. Eddie is one of those guys I know was amazing but every time I watch his matches I am still amazed at how effortless he made everything look."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Okaro143wrote on 24.09.2023:[10.0] "The wrestling world lost him too soon. He was insanely charismatic, incredibly gifted in the ring, had one of the best gimmicks in the business and was insanely over with the crowd. There has been a lot of great workers in WWE that have come after Eddie but there has never been another Eddie like figure yet. One of the most beloved Wrestlers in WWE history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KingLeonardwrote on 02.09.2023:[10.0] "I started watching wrestling in 2007 when I was 6, but I went back and watched a lot of Eddie's matches. I often think about how great it would've been if I had grown up watching Eddie Guerrero. One of the best wrestlers ever both on the mic and in the ring, Rest in Peace Latino Heat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: JaseonSkahmanwrote on 27.07.2023:[10.0] "Eddie Guerrero was an incredible wrestler who left an indelible mark on the world of professional wrestling. His charisma, skill, and passion made him a fan favourite and a true legend in the ring. When Eddie stepped into the squared circle, you couldn't help but be captivated by his presence. He had a natural charm that drew you in, and once the match started, he would take you on a rollercoaster ride of emotions. Whether he was playing the heel or the beloved face, Eddie always knew how to connect with the audience. In terms of in-ring ability, Eddie was simply phenomenal. He possessed a rare combination of agility, strength, and technical prowess. His high-flying manoeuvres and lightning-fast speed showcased his athleticism, while his powerful moves demonstrated his raw strength. Every match he had was a masterclass in storytelling, with Eddie effortlessly adapting to his opponents and creating memorable moments. But what truly set Eddie apart was his ability to evoke genuine emotions. Whether he was playing the hero fighting against all odds or the cunning villain looking to cheat his way to victory, he had a way of making you feel invested in the outcome. His feuds were intense, and you couldn't help but be emotionally invested in his battles. Sadly, Eddie's life was cut short far too soon, but his legacy lives on. His impact on the wrestling industry cannot be overstated. Eddie Guerrero will forever be remembered as one of the greatest performers to step foot in the ring, a true inspiration to aspiring wrestlers and a beloved figure in the hearts of fans worldwide. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KroKrowrote on 16.07.2023:[10.0] "By far one of greatest pro wrestlers in the history of pro wrestling as either a heel or a face. His time in ECW, WCW, and WWE/F are all legendry, sadly His life and career had seen some dark moments on His 38 years on earth, RIP. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "Eddie was very good in WCW, then after some rehab time, became very great in the WWF but unfortunately, his body gave out in 2005 and just when he was hitting his absolute peak best."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ReedPryorNYwrote on 31.05.2023:[10.0] "Eddies humility in the face of greatness makes him one of the best to ever compete in a wrestling ring. An embarrassed bully against Rey Mysterio, a career rival against Malenko, a mentor to CM Punk, a trailblazer as Latino Heat, the premiere influence to Mercedes Moné, David to Brock Lesnars Goliath, a friend to Jericho, and the man who went toe to toe with Kurt Angle. Guerrero said of one of his peers he worked for the match, not for himself. No one did so better than Eddie; God still watches over him and always will. He lives on in Rey, Dominik, Punk, Angle, Bradshaw, Chavo, and all those who knew and respected him. An embodiment of what it means to grow up in front of everyone, Eddie Guerrero did so with grace and unmatched precision. Never forgotten Viva La Raza."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: cobrenzoswrote on 01.03.2023:[10.0] "He was literally perfect at everything, one of the greatests out there ever, his charisma his ring skill, his mic skill, all were awesome one of the most talented wrestlers ever for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KKeanelwrote on 26.02.2023:[10.0] "How would I define Eddie's whole career with two words? Complete wrestler. He achieved every attribute which helped him to become one of the greatest who ever entered wrestling industry. Definitely gone too soon, but he had enough time to show us his talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: kewf1988wrote on 26.02.2023:[10.0] "Eddie was a complete package in that he had amazing in-ring ability, was extremely charismatic, was great on the mic, and had a great look."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: benh2wrote on 12.01.2023:[9.0] "Eddie was a magician in the ring. So unbelievably smooth that he could carry anyone to a watchable match. Was often the recipient of some crazy spots because he could position and feed himself like few others. By the latter stages of his career he also started to show off his charisma with some tremendous promo and character work."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TooDarkMarkwrote on 22.12.2022:[10.0] "My favorite match of all time is a Terry Funk versus Eddie Guerrero match from WCW Saturday Night in 1989. Eddie was a jobber, was advised by his family to not do the match, but Funk gave him a lot of offense, and I became a fan overnight. I didnt even SEE him wrestle again until the 1994 PPV match when he teamed with Art Barr against Octagon and El Hijo Del Santo. Another AMAZING match. Then I watched him in ECW and WCW become a beloved world wide star, and cried the night he died in 2004. He always combined his amazing ability to move with his unmatched charisma in the ring. A true legend of this sport."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "I miss him, he was so good. His wrestling ability was fantastic, and his promo work was generational."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: jonsnoewrote on 14.11.2022:[10.0] "LATINO HEAT, LIE CHEAT STEAL. A very entertaining wrestler, with amazing charisma, mic, and move-set. I smile and laugh whenever I watched his creative cheat tactic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: xnviuswrote on 16.10.2022:[10.0] "lie, cheat & steal. one of the greatest of all time. sadly taken too soon. his legacy has lived on til this day. charismatic, entertaining, and of course, an AMAZING seller. one of a kind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: RavenCrow75wrote on 06.10.2022:[7.0] "For the most part I will be basing my Wrestler ratings on five criteria four of which are based on in-ring ability and the last on charisma. I believe these five criteria are pro wrestling's version of Tommy Lasorda's criteria of "five points" in baseball. For pro wrestling those five criteria are power, speed, technical ability, hardcore & charisma. Eddie's scores: Power: 6 Speed: 8 Technical: 8 Hardcore: 6 Charisma: 8 for a total of 36 and an average of 7.2 rounded down to 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: nothingleftinsidewrote on 17.09.2022:[10.0] "It's really hard for me to choose between 9 and 10 here. For me, a 10 has to be not only an all time great, but also someone who is historically significant or otherwise had a large impact on the business. Eddie has two things working against him here- he was inconsistent and his career wasn't very long. However, he's had longevity despite being dead. He is often mentioned on wrestling broadcasts to this day and his influence can be felt in contemporary wrestling over 15 years later. Longevity and relevance is what I'm judging here so I think he passes that, and if a 20 year career is good enough for Bret Hart, who I consider a 10, it's good enough or Eddie. This brings us to his other fault- inconsistency. This definitely is hard to measure. It's hard for me to remember the bad matches he was in, bad promos, angles, and how much time off due to substance abuse problems. You always remember the good rather than the bad, and Eddie managed to be notable in every run he had, including CMLL, AAA, New Japan, and ECW. There isn't much that was *memorably* bad, and there are a lot of truly bad workers (like Chyna) Eddie made look great, so I think he passes that test too. If you're reading this, you already know how good the guy was. Although he had a few main-event runs, he was never "main event material" for the time period and he knew it. These days he would have held the wwe universal championship for a year+. His look eventually became his undoing as he bulked up to try and seem like a contender. I hope everyone's glad those days are over, because it cost us a guy like this and countless others. Great promo, in any situation. Off the cuff, in an interview, on the mic in the ring, scripted, unscripted, it didn't matter. Again, he made other people look better just by being involved in a segment with them. His most admirable talent was his body language, pantomime, whatever you want to call it. A lost art that is also hard to teach. Probably the best "in between the moves" guy of his era. A+ promo, A worker, A- look. We lost him right before he would have given us his best work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rahul77wrote on 21.05.2022:[10.0] "One of the best wrestler of all time and one the wrestler among my mount Rushmore with Kurt Angle, AJ Styles and Shingo Takagi. Best overall performer of all time give him mic he will make it gold as he always have made his matches gold. his facial expressions are priceless he have always proved his doubters wrong from Mexico Japan to USA. Latino heat have stolen everyone's heart and is living among us forever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Thanliswrote on 29.04.2022:[10.0] "Great talker, truly great wrestler who had both technical ability in multiple styles and brilliant storytelling. One of the best to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rvlandingwrote on 26.04.2022:[10.0] "Infectious energy on the microphone, and good at adapting to any style in the ring depending on who he was working with. Truly someone who was capable of anything."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BAILE3wrote on 06.04.2022:[10.0] "What is there not to love about Eddie Guerrero? A top 5 in ring performer of all time, incredibly charismatic and an amazing character. Truly gone to soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: eltetechoriwrote on 06.04.2022:[10.0] "Eddie is a great man, a great person that I wish he had not left here, he is a fighter that even today is still missed, at least we can remember all his achievements."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Conquistador37wrote on 16.02.2022:[10.0] "One of the easiest watches ever, from the humble beginnings to the ECW mat classics to his untimely demise. All things Eddie Guerrero is strongly recommended. One of professional wrestling's true greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: SquilliamFancysonwrote on 11.02.2022:[9.0] "Gone far too soon, Eddie was a talent matched by few. His infectious swagger and ability to structure a match made him top tier during his career."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: GriffinXwrote on 06.02.2022:[10.0] "One of the very best to ever do it. And the rare type that was a big name in Mexicio, Japan and the USA. So many talents try to do what Eddie do so easily."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: SL 02 15 02wrote on 05.11.2021:[10.0] "One of the best in ring competitors ever. Rest in Peace "Latino Heat" Eddie Guerrero. Eddie vs Kurt at WM in 2004 is an all-time classic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: FACEElmo295wrote on 31.10.2021:[9.0] "Incredibly entertaining inside and outside of the ring. His match with Rey at Halloween Havoc 97 is the stuff of legend. Once he got to WWE he slowly made the rise to the top. Early Eddie in the WWF was really fun with his Mamacita storyline with Chyna which remains one of the best things ever in WWE. The dude was incredibly good in the ring, and knew what to do in order to make the crowd care. He did lose a step or two in the ring after his car accident, but he still kept going. When Eddie finally won the title it became one of the best feel good moments in WWE. Sadly Eddie passed way before his time, what can I say he lied, he cheated, he stole our hearts. Forever in my heart, R.I.P. Latino Heat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BrayanLaPrewrote on 09.07.2021:[10.0] "I don't think there has ever been a wrestler who could make you laugh, make you genuinely despise them, and make you unapologetically love them as easily as Eddie Guerrero. For as technically proficient and sublimely athletic as he was, Guerrero's legacy is that he connected with the crowd. He could turn even the most basic of matches into something you'd be talking about for the next 24+ hours. His crab walks to the corner to hug Chyna, his iconic chair tactics, his low rider... The list of unique character traits is endless. The absolute complete package and one of the true GOAT contenders for American wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: juiceisloosewrote on 04.07.2021:[10.0] "He was the total package: could work, could talk, had tons of charisma and confidence, was entertaining, had a good attitude from what i've heard. He was very diverse, he could be involved in both comedic angles and also be very intense and serious. It's just sad that he abused his body for so long, didn't take a break from the incredibly unhealthy working conditions and eventually paid the ultimate price."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: thebigmilkmanwrote on 22.06.2021:[6.0] "This may be one that I'll have to rewrite when I get more familiar with his work but with what I've seen between 1998-2002 he's a solid 6 in my eyes. Which I'd consider 6 to be pretty good"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Eddie truly was a legendary worker. He consistently pulled great matches off and really forced the powers that be to push him up the card. And once there, he became one of the very great characters in the history of the business. An icon in every sense of hte word."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: mjs2212wrote on 22.05.2021:[10.0] "Eddie Guerrero is easily one of the greatest wrestlers to ever lace up a pear of boots. Whether he was a face or a heel, he was able to get the crowd's attention and he always put on great matches with the likes of Rey, Chavo, Benoit, Malenko, etc. Always stood out no matter what angle or gimmick he was working with and he is responsible for some of the best (and funniest) moments in wrestling. I highly recommend any newcomer to wrestling go out of their way to watch any match, segment, or anything involving Latino Heat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Ma Stump Pullerwrote on 12.05.2021:[10.0] "Eddie was one of my favourite guys growing up, and it ain't hard to see why. In WCW dude was probably one of the best in ring performers there, smooth highflyer with a mix of great technical work, and then you had his later Fed stuff where he was able to sort out his charisma issues and became one of the BEST performers and wrestlers around, able to wrestle to a elite level while also masterfully grasping how to work as a face or as a heel seamlessly, to the point that he could do heel acts (like winning matches by DQ or cheating) as a face and still get momentous cheers. Solid promo, electrifying in how he could work a crowd with the simplest of things but could also turn the gas on when it mattered. Sadly the latter part of his career is a steep decline as Eddie's issues with the damage he'd done with years of addiction and the effects of being on the road catch up with him hard, and he doesn't have that same spark that he had in previous years. Regardless, Eddie is for me one of the best ever, a perfect combination of charisma, selling, performance, and workrate all thrown together in a combination that few can match, let alone surpass."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: AnBwrote on 16.04.2021:[10.0] "I don't know if there's anything to say about Eddie that hasn't already been said a thousand times. Brilliant performer and entertainer. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Uweuwesenwrote on 16.02.2021:[10.0] "Eddie wusste zu überzeugen: als cruiserweight, als heavyweight, also Heel, als Face, als Singles und als Tag Team Worker. Sowohl im Ring als auch am Mic über lange Zeit Top Notch! Ein kompletter Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Old ride long linewrote on 22.12.2020:[9.0] "Rest In Peace Eddie. I think people like to think of his title run as a token run but I honestly believe he would have more runs with the title if it wasn? t for his untimely death. He could go in the ring and was one of the best ever on the mic he just got cut off before he could get to that all time great status."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Hawksrule996wrote on 03.11.2020:[10.0] "He just had it all great wrestler in the ring with all kinds of different match and just so much personality And charisma in and out of the ring definitely one of the greatest of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: RandySavagePowerwrote on 30.09.2020:[10.0] "Eddie Guerrero ist einer der beispiele neben Leiten wie Daniel Bryan das man auch unter 1, 80 ein Erfolgreicher Wrestler werden kann. Am Mic sehr gut gewesen und im Ring eine Legende. Leider einer von vielen Wrestlern die zu früh starben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Donniewrote on 12.08.2020:[10.0] "Maybe the GOAT when all is said and done. In ring, he was unmatched. On the mic, he was unmatched. He had it all, and very few could even dream of touching him, let alone actually doing it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: martizzletaewrote on 23.07.2020:[10.0] "The man was amazing! He could make you laugh, cheer him, hate him, and feel for him, whatever Eddie wanted to get out of the crowd, he got it. I miss him"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Khalid Acewrote on 19.06.2020:[6.0] "I think Eddie was good & he entertained all of us but I never thought he was at the top list of the greatest ever like alot of people claim that he is. I thought he was better in the ring in his time pre WWE but he grew up to be better on the mic in WWE."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Residentwrote on 07.05.2020:[10.0] "One of the best ever. He had amazing charisma and a great personality. Awesome on the mic and also awesome in the ring. On the short list of one of the best ever on the mic as well as one of the best ever in-ring as well. From Mexico to ECW to WCW to WWE he excelled everywhere he went, despite his smaller size and is remembered fondly by everyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TNBG2381wrote on 05.04.2020:[10.0] "Eddie Guerrero is the definition of being way ahead of his time! Eddie was excellent in every facet of the wrestling business and his body of work proves just that. He had wonderful charisma and everyone just loved him. His personality was infectious and his death was one of the saddest days in the history of wrestling. Every time I think of Eddie I think of his classic matches with the likes of Kurt Angle, Brock Lesnar, and Rey Mysterio. I think the downfall of Chris Benoit after Guerrero? s death proves how great of a person Eddie was! RIP Eddie Guerrero."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Conorwrote on 23.03.2020:[10.0] "In a way it? s a shame that Eddie didn? t get a main event push til a couple years before he died, but in another way, it was the perfect end to an amazing career. I think if he hadn? t passed away, he? d have had at least one or maybe two more World Title runs. To me, Eddie was one of the best of all time. It was a pleasure watching his work rate and storytelling in the ring. And it was his character and mic work that made him one of my favorites. There will never be another Eddie Guerrero."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: AAA3000wrote on 07.03.2020:[6.0] "Es ist vielleicht nicht fair. Aber ich bewerte Eddie nach meinem subjektiven Empfinden. Alles andere spielt da für mich keine Rolle. Er war ein guter, aber oft einfach nur Midcard. Dean Malenko fand ich technisch wesentlich stärker."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: OrangeCrush00wrote on 03.02.2020:[10.0] "Eddie Guerrero was an extremely talented pro wrestler. Eddie was far from overrated, his matches are still among the best in the business to this day. Eddie had great mic skills and also could work face and heel perfect. Another reason why Eddie is so great it the fact of how small he was, but he would work as if he was a big man. He never let his size define him in the ring which is a hard task since he had to wrestle so many giants like Brock Lesnar. Eddie was an inspiration to many wrestlers today which is not a surprise since he was so great. Unfortunately in the end Eddies demons caught up with him but latino heat burns forever. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: AstanaNorwrote on 17.11.2019:[10.0] "Einer, wenn nicht sogar, der Beste/n Wrestler der letzten Jahrzehnte! Die Matches die er abgeliefert hat waren der Hammer. z. B. die Story und die anschließende Fehde mit Rey Mysterio war so gut umgesetzt. Eddie war, ist und wird auch immer eine Legende bleiben! Sein Latino Heat Gimmick und sein 'I lie, I cheat, I steal' wird immer legendär bleben. Und auch deswegen, wegen seiner Leistung im Ring und auch am Mic, seinen Storylines und seinem Gimmick, bekommt er 10 verdiente Punkte! R. I. P. Eddie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[7.0] "I think his untimely death leads people to look back on him with rosier glasses that what is deserved. I like him & think he was good, but I always found him a far cry from one of the best ever. He always felt like a good midcarder & next to Benoit, he always felt like a step down."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: mdkarlwrote on 17.06.2019:[10.0] "eddi probably battled drug demons a lot of his career... and im sure it held him back from some pushes to the top of the card that he deserved when on... he was an amazing performer combinding an intense fire with a great set of high flying spectacular moves and a real ring psychology id put him in the top 20 all time performers ive seen... its just too bad that the drug situation effected him too much and took him too soon"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: zephyrwrote on 19.03.2019:[9.0] "Innovative and massively talented in the ring; excellent character work, great charisma, big influence on an entire generation of wrestlers."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: LandonRyanWyattwrote on 31.01.2019:[10.0] "One of the greatest wrestlers of his generation, and too many, of all time. Latino Heat could deliver in a lot of ways other guys couldn't, but unfortunately he wrestled more of his own demons than his in ring opponents. But still, nonetheless, was crisp and charismatic every single time he stepped through the ropes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Steamboat2511wrote on 05.12.2018:[9.0] "Latino Heat ist eine einzigartige Mischung, die sowohl mit Personality, als auch Matchqualität überzeugen konnte. Im Ring gehörte er auf jeden Fall zu den großen Könnern, sowohl in Sachen Technik, als auch in Sachen Storytelling. Als Extrazugabe oft mit "Lie, Cheat, Steal" Finish. Durchaus sind dabei einige Klassiker (gegen Kurt Angle u. a. ) entstanden. Leider war er nur kurz Maineventer und ist viel zu früh von uns gegangen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: JEK 1991wrote on 02.11.2018:[10.0] "Loved this guy. He was excellent because of his size and statue he overcame many challenges in the wrestling world. He was a gifted individual from a wrestling family. He is a pioneer of high flying. Guerrero could sellouts main events. He got bigger in muscles as his career went on. Its unfortunate that he died so young. it was a shock. RIP Eddie!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: RatingsMachinewrote on 11.10.2018:[9.0] "Eddy Guerrero was a tremendous worker, who never got the push in WCW that his talent deserved, and who only managed to 'get' the performance side of wrestling when his body was starting to break down. Eddy was a proven draw in Mexico and he proved himself to be a major ratings draw in the US during his admittedly soap operish feud with Rey Mysterio."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Oliver95xwrote on 27.09.2018:[10.0] "Eddie war sehr gut im Ring und hatte Charisma wie kein anderer. Ein perfekter vorzeige Wrestler. Sein Gimmick war einfach nur genial."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: pappahousewrote on 06.09.2018:[9.0] "I lie, I cheat, I steal. Der komplette Entertainer, der komplette Wrestler. Einfach ein Meister seines Fachs. Leider haben der Alkohol und die Steroide sein Herz porös werden lassen, so dass er so jung diese Welt verlassen musste."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DaWizWithADwrote on 07.07.2018:[10.0] "He pretty much has everything you could want from a wrestler. He could work, talk, had a great physique, and by all accounts had a good attitude."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: InactiveGuruwrote on 22.04.2018:[10.0] "Now this a performer, heaps of charisma, confident in the ring and could deliver a great promo. One of the best technical wrestlers while also being one of funniest characters in the WWE during his Mamacita run in WWE. Great all rounder, not many will dispute this 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Viper99wrote on 11.02.2018:[10.0] "Durch seine Körperliche Größe hätte er es eigentlich, in der damaligen Zeit, nie in der WWE zum World Champion bringen können, aber Eddie Guerrero war so ein fantastischer Wrestler und und eine ganz große Persönlichkeit welche so beliebt wie kaum ein anderer , bei den Fans, war und deshalb sich den großen Erfolg hat sichern können. Einer der besten Techniker aller Zeiten, einer der lustigsten Performer aller Zeiten, super Charismatisch, tolle Ausstrahlung und einfach eine super Sympatische Person. R. I. P Eddie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: CHN325wrote on 01.02.2018:[9.0] "One of the best pure workers in the business, who died way too young. He left a legacy that will never be forgotten as a charismatic cruiserweight that did not look out of place against the big boys, always finding creative ways to get the win."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MoongooseMoxwrote on 10.01.2018:[10.0] "You could probably count on one hand the number of wrestlers in the business that are better than Eddie Guerrero. There have been better wrestlers than him as well as better talkers but he is one of the few men in history to have all those qualities and execute them consistently throughout his entire career. Not much i can really say that hasn't already been covered in the comments below. My personal favourite wrestler of all time taken from us far too soon but his legacy remains as an inspiration to present and future generations of performers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: LatinoHeat93wrote on 04.01.2018:[10.0] "Mein Lieblingswrestler Latino Heat! Durch ihn bin ich Wrestlingfan geworden am Mic einer der besten! Technisch stark Super High Flyer(siehe AAA, WCW) Er war zwar nicht. der Technisch beste Wrstler aber für mich ganz klar einer der Beste Entertainer den die Wrestling Welt je hatte! Leider viel zu früh verstorben  R. I. P Eddie Legenden sterben nie! VIVA LA RAZA"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ianlapierrewrote on 04.11.2017:[7.0] "Eddie Guerrero should have had another 5 to 10 years left in the tank when he died. He was one of my all time favourites in WCW. He had so many fantastic matches and later in his career became entertaining outside the ring."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: taabr2wrote on 10.09.2017:[10.0] "Eddie Guerrero is the first wrestler that I called my favorite when I was still a mark. The guy's charisma is ridiculous and I could never help but root for him no matter what nefarious things he did. One of the few wrestlers who was able to keep a consistence level to his in-ring work. No matter what his role he could always play a great character. One of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: flashbackwrote on 06.06.2017:[10.0] "Incredible worker with an endearing smile and a huge heart (I mean that sincerely) - you could not NOT like the guy. His smile could win you over instantly, and his work was undeniable. While I appreciate WWE for giving Vicki a job, the way they integrated Eddie into storylines after his death was just a travesty, shameful. Do not believe for a second that it was what "Eddie would have wanted" - the only person that gets to say that is his wife, and unless all those angles were her idea, the WWE NEVER should have dared to go there. One of the more shameful things they have ever done for a guy they claimed to love so much. That company is exactly like Vince - devoid of class and absolutely clueless."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Blood Pumpwrote on 30.03.2017:[9.0] "A wrestlers death has ever brought me to tears once. Back in 2005 I was still a big WWE mark despite growing more into the actual wrestling aspect of things, and Eddie was my then favorite behind Kurt Angle. I was seventeen when he passed and it hit me hard. How could a guy who wrestled so well and was only in his late 30s die the way he did? Well, kids, the past has a way of catching up sadly. Anyways with time (and in part due to all the eddiexploitation) Ive cooled on Eddie. He was a fantastic athlete in his time but not really ever the best of his time or company (except maybe ECW, but that was more of a pit stop to WCW then anything (Actually thinking about it he might've been the best in WCW, not that the higher ups like Bischoff would've given you a chance to know)). That being said he was very close to the top."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: One Winged Angelwrote on 10.02.2017:[10.0] "My favorite wrestler of all time, his ability to entertain whether it be in the ring or in the mic in hand is second to none. Fantastic in the ring, amazing on the mic and charisma for days, IMO the perfect wrestler. There will never be another Eddie Guerrero. GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Real Raterwrote on 21.01.2017:[8.0] "Ring: Im Ring nicht so gut wie er gemacht wird, aber trotzdem ein guter. 8/10 (50%)  Promos/Schauspieltalent:Auch seine Promos waren immer sehr gut. 8/10 (25%)  Charisma/Statur/Gimmick:Fand ihn immer sehr Charismatisch, als Latino Heat. 9/10 (25%)  Sind dann insgesamt 8, 25 für Eddie, finde er wird hier etwas besser gemacht, als er ist, aus verständlichen Gründen, aber das soll nicht der Sinn einer Bewertung sein, aber natürlich auch von mir RIP.  = 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MarkyMark0wrote on 16.01.2017:[9.0] "I have very fond memories of Eddie Guerrero as he was one of my favorites when I was younger. Eddie could captivate an audience with his in ring skills and charisma like no other. Many people like to say he wasn't over but I think his run in the early to mid-2000's prove otherwise when he started to do his Lie, Cheat, Steal gimmick. The gimmick was great and it really helped to boost his career to new height. Guerrero had many classics wherever he went from ECW to WCW to the WWE. I recall so many great matches he was in like his last ECW match that he had with Malenko and his great match at Halloween Havoc 97 with Rey Mysterio which really got me into the cruiserweights and of course his match with Brock Lesnar. I know the match itself wasn't the greatest but Eddie played the perfect underdog to Brock's beast and him defeating Brock for the Undisputed Championship was such a feel good moment. I still remember the day that Eddie died as it was a sad day for me as well as many wrestling fans. Eddie was a great man as well as wrestler and will always be remembered as an all time great."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: rjsbx11wrote on 07.01.2017:[10.0] "Eddie was one of those guys who was really good at everything. He was a great wrestler. A charismatic promo and personality. He could play a great heel. He could play a great babyface. He did creative things few others would think to do. And people loved him. He was unique. He definitely deserved his run with the WWE title. Even if he wasn't "THE" guy, he was always going to be one of those guys who people would remember fondly for years afterwards. It's hard to compare him to anyone. He was the total package, he could make laugh, cry and most of all, invested in anything he was, including a ladder match for the custody of human child. Dying in your career saints a man, but Eddie Guerrero is deserving of the GOAT labels people shed upon him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Puro Spiritwrote on 11.12.2016:[10.0] "Eddie was such a great performer , the guy had all the qualities to be a huge draw in the business and about to reach his prime before sadly dying from a heart attack from years of drug problems and steroid use , Eddie had it all , a wonderful in ring worker , charisma , charm and most important of all a connection with the fans ..... unforgettable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Jobbswrote on 07.12.2016:[10.0] "Easily my favorite North American wrestler as the guy had it all. Tremendous in ring psychology and just nailed it down to perfection especially as a heel. Could work either Face or Heel role extremely well and did tremendous limb work when needed and his way of getting the crowd in a match was awesome as well. Viva La Raza! Latino Heat 4Ever!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Mouthwrote on 26.10.2016:[10.0] "Ach Eddie. Hier wurde schon alles über Dich gesagt. Du bist einer der besten ever. Bin immer noch sehr traurig, dass Du nicht mehr unter uns weilst."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "Der erste Wrestler mit dem ich mich jemals identifizieren konnte/wollte. Sein Tod hat mich dazu gebracht, aufzuhören, Wrestling zu schauen. Es war für mich einfach nicht mehr das selbe ohne Eddie. Kaum zu glauben, dass er schon seit fast 11 Jahren tot ist. Seine Comedy-Promos/Segmente waren einfach jedes Mal unterhaltsam. Seine Fehden mit Rey, Angle, Chavo, JBL waren wahnsinnig unterhaltsam. Sein EG-Armband liegt auf meinem Schreibtisch, das "IŽm you Papi"-Shirt trage ich heute noch und Eddie wird ewig in meinen Gedanken sein, wenns ums Wrestling geht.   Viva La Raza!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: NHJ2190wrote on 22.06.2016:[10.0] "Selten einen charismatischeren Wrestler erlebt als Eddie Guerrero. Dazu noch überragende Ringfähigkeiten, ein Typ der ein Gimmick von Vorne bis Hinten komplett ausgefüllt hat. Mochte ihn als Face deutlich lieber als zu seinem Ende als Heel. Die prägenden Erinnerungen bleiben vor allem sein Titelgewinn gegen Brock Lesnar sowie sein Cheat Win mit dem Schuh gegen Kurt Angle bei der Mania XX. In diesem Sinne "Im your Papi" 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Sick Lebowskiwrote on 13.06.2016:[10.0] "Einer meiner absoluten Lieblingswrestler. Als Face kann man ihn nur lieben, als Heel nur hassen und in Comedy-Segmenten nur über ihn lachen. Im Ring dazu ebenfalls sehr gut. Einer der größten Verluste der Wrestlingwelt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Luv all wrestlingwrote on 05.06.2016:[9.0] "Latino heat Eddie Guerreo would be a perfect 10, but he came up with the custody of dominik ladder match story citing wrestling should be like a soap opera"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DB992wrote on 12.05.2016:[10.0] "The best ever hands down. Could cut any kind of promo, could perform well against basically anyone in the ring. Died way too soon and gained way too less as far as championships are concerd, but his will still go down as one of the truly remarkable legacies in the business. VIVA LA RAZA!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: JordanACEwrote on 23.04.2016:[10.0] "Lie, Cheat and Steal. Eddie Guerrero is a true legend. His matches were great, the gimmick was great, and over-all, Eddie is one of my all time favorites. He was just flawless. VIVA LA RAZA!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Jrod3160wrote on 17.04.2016:[10.0] "This guy was flawless throughout his entire career his character was fantastic charisma off the charts mic skills were good and wrestling was perfect nothing better than eddie RIP VIVA LA RAZA"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: NastyYaffawrote on 15.04.2016:[10.0] "When I was a kid, Eddie was my favorite. And that hasn't changed. Eddie was an absolutely special performer, in every sense of the word. In the ring he was A+, his character work was A+, and he has cut some of my favorite WWE promos of all-time, as well. R. I. P. The legend of Eddie Guerrero will never die!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ApexOfEvolutionwrote on 30.03.2016:[10.0] "Einer der charismatischsten Wrestler aller Zeiten. Der Bart, die Frisur, alles passte perfekt zu seiner Rolle und man hatte das Gefühl, dass er sich nicht sonderlich verstellen musste. Dazu im Ring ein solider Worker und guter Techniker mit spektakulären Momenten. Leider viel zu früh von uns gegangen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Zedwrote on 21.03.2016:[8.0] "Meiner Meinung nach wurde Eddie nach seinem ableben zu sehr verehrt. Als er noch lebte fielen solche Bezeichnungen wie"einer der größten" oder "einer der charismatischten" eher selten. Natürlich gehörte er immer zu den besseren Wrestlern, jedoch gab es auch viel Luft nach oben, gerade am Mikro. Mich hat er nie hundertprozentig überzeugt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: rodberrywrote on 21.02.2016:[10.0] ""He's the greatest wrestler, EVER. He's better than Ric Flair. He's better than Stone Cold. He's better than me", says CM Punk.  What to add to his words? Probably the most outstanding wrestler to ever walk on this Earth. Became one the best technical wrestlers of his generation, one of the best luchadores, one of the best talkers, one of the most charismatic. One of the most hated heels in the 90s in Mexico and the ultimate cool heel in WWE, vanilla technical wrestler in ECW, loose cannon in wCw and then able to literally do whatever he wanted with the public in the latter half of his carreer: hated one day, loved unconditionally the other. Ultimate underdog and vicious psychopath heel. A man who strived to be the best man and worker he could be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Desaster1978wrote on 13.12.2015:[9.0] "Hervorragender Wrestler, auch am Mic Super. Habe Seinen WWE-Titelgewinn live gesehen und abgefeiert. Auch schon in der WCW waren seine Matches jedes Mal ein Highlight. Einzig die Zeit mit der lwo hätte es nicht gebraucht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DarylDixon84wrote on 21.11.2015:[8.0] "Eddie war herrvoragend im Ring! Unterhaltsam Psychologisch einwandfrei und je nach Charakter ein hingucker bzw aufreger. Er hatte Charisma das nur vonm wenigen überboten wurde, sein Micwork bringt es daher bei mir nur auf 8 Punkte, da hatte er defizite bzw eine Art die mich nicht mitreissen konnte. Egal Eddie ist schmerzlich vermisst und einer seines kalibers ist derzeit nicht vorhanden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DanielBryan1986wrote on 13.11.2015:[10.0] "Seine ECW Zeit fand ich jetzt nicht ganz so toll, außnahme das Match gegen Malenko. WCW guter Start relativ schnell US Champion, gegen Wrestler wie Benoit, Malenko, Jericho, Mysterio und Psychosis immer gut. Mit seinem Wechsel zur WWE begann für mich dann der Spaß Faktor richtig. Sei es mit Chyna oder Chavo. Jedoch so richtig genial fand ich ihn ab der Fehde mit Big Show 2003, 2005 habe ich ihn gehasst wegen der Story mit Rey(war sehr glaubwürdig umgesetzt). Mich erreichte die Nachricht vom Tot damals in der Schule, es war wie ein Schlag hatte ihn wenige Tage vorher noch gegen Mr Kennedy gesehen.  Eddie du fehlst immer noch sehr in der Wrestling Szene. Du wirst niemals vergessen. Viva La Raza"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Cojotewrote on 13.10.2015:[10.0] "One of the best lucha libre wrestlers ever. The most charismatic latin wrestler that ever wrestled in WWE, ECW or WCW. Remembered for his technician skills and his great charisma. His matches in the Cruiserweight division of WCW are the best. His match versus Brock Lesnar for the WWE championship will ever be remembered, a match with a incredible tempo and pshychology. His match with Art Barr (they are Los Grincos Locos) versus El Hijo del Santo and Octagonón are one of the best tag team matches ever. One of my five favorite wrestlers ever with Bret Hart, Sting, CM Punk and Bryan Danielson: a dream team, that never will happen, to Survivor Series. Ever remembered for his great work: Thanks for all this years and for your extraordinary career,  Eddie Guerreo: Viva La Raza!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Wrestle fanboywrote on 10.10.2015:[9.0] ""Latino Heat" from El Paso, Texas was a truly the greatest luchador and a wrestler that ever lives in this god's green earth, his cocky personality and agile moves amaze all the fans of this industry and don't forget that he is one of the best ECW World Television champion, his war with "Shooter" Dean Malenko was never ever be forgotten"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rikishiwrote on 25.06.2015:[10.0] "Für diese Legende kann es nur die volle Puntzahl geben! Im Ring sehr gut, unglaublich charismatisch und am Mikro auch gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: PWCwrote on 24.06.2015:[10.0] "A wrestler so idiosyncratic that there will never anybody else like Eddie Guerrero. The limousine, the Lie, Cheat and Stealing mannerisms. A perfect 10 when it came to charisma, great matches, and his passing in 2005 was no unexpected, that the fans went from hating him after his Dominik storyline with Rey Mysterio's son in the Summer of that year to all of sudden passing away and well you get the picture. Viva la Eddie Guerrero. One of my favorites and still is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Wrestling Foreverwrote on 12.06.2015:[10.0] "Wie ich Eddie nach wie vor vermisse. Niemand kann ihn in der WWE ersetzen er war einzigartig. Es sind nicht nur seine Matchqualitäten, es sind auch seine Streiche er war berüchtig bei den Kollegen und Freunden für seine Streiche vor und hinter der Kamera. Eine absolute Legende die alles konnte. Viel zu früh verstorben und absolut zu Recht in der WWE Hall of Fame gelandet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Triple Hwrote on 16.04.2015:[10.0] "Zu Eddie Guerrero muss man eigentlich nicht mehr viel sagen. In seinen besten zeiten hat er gewrestelt wie von einm anderen Stern. Auch sein Cousin Chavo ist gut, aber an Eddie wird er nie heran kommen. Leider einer unter vielen Wrestlern, der viel zu früh aus dem Leben geschieden ist. Er wurde zurecht im Jahr 2006 in die Hall of Fame der WWE aufgenommen. Auch heute noch sind seine Matches auf WWE Network eine Anschauung wert. Ich verfolge zur Zeit die Entwicklung von Lucha Underground auf El Rey Network. Was dort an Athletik und Können gezeigt wird, lässt so manche Show von der WWE in einem blassen Licht erscheinen und trägt sehr die wrestlerische Handschrift eines ihrer besten Söhne. R. I. P. Eddie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Claudio Herowrote on 03.03.2015:[10.0] "Zu Eddie braucht man eigentlich wirklich nichts mehr sagen, für mich einer der größten aller Zeiten in allen Belangen ... Für mich klare 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Hyperwrote on 25.12.2014:[10.0] "Da brauch ich nicht lange zu überlegen, er war und wird immer meine Nummer 1 sein. Genial am Mic und ne echte Charisma Bombe. Im Ring gibt es fast keinen, der ihm das Wasser reichen kann, er hat alles, was einen guten Westler aus macht.  Es ist so schade, dass er schon so früh verstorben ist und es tut auch jetzt noch, fast 10 Jahre später, noch so extrem weh, das er von uns gegangen ist, aber er wird mir immer in guter Erinnerung bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Y2J316wrote on 28.11.2014:[10.0] "Auch Eddie ist einer meiner Lieblings Wrestler. Errinner mich immer gerne and seine Fehde mit Rey. Speziell wird mir immer das WM-21 match in errinerung bleiben. Leider ist er schon von uns gegangen. Hätte ihn gerne heute noch gesehen. Auch er ist zurrecht in der Hall of Fame gelandet. Eddie RIP."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Muyo90wrote on 23.11.2014:[10.0] "Eine Legende. Der beste mexikanische Wrestler überhaupt. Hatte enormen Unterhaltungsfaktor und das nicht nur aus Wrestlingsicht. Gab ein wesentlich besseres Bild als Face ab. Legendär bleibt die Geschichte mit dem Schuh gegen Kurt Angle bei WM20. Schade dass er so früh gestorben ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: EG1991wrote on 15.11.2014:[10.0] "Eddie Guerrero... Latino Heat... 9 Jahre ist es nun also her das wohl einer der besten In Ring Worker von uns gegangen ist. Für mich ist und bleibt er einer der besten Wrestler die die WWE je gesehen hat. Seine Cleverniss im Ring und sein können sind schon sehr sehr gut gewesen. Mir hat vor allem sein Gimmick rund um 2000 aber natürlich auch das " I Lie I Cheat I Steal " Gimmick sehr gefallen. Er wusste immer zu Unterhalten egal wer ihm Gegenüberstand. Wäre dieser plötzliche Todesfall nicht gewesen dann wäre Eddie wohl heute noch im Ring. Ich denke das er damals im Jahre 2004 völlig zurecht in den Main Event gepusht wurde und dort auch heute noch zu finden wäre. Gerade das Match gegen Brock Lesnar bei No Way Out 2004 aber auch das Match gegen Kurt Angle bei Wrestlemania XX scheinen Vince und Co aber erst voll von Ihm überzeugt zu haben. Dazu dieses Können am Mikro... Unfassbar gut meiner Meinung nach. Würde er noch Leben dann hätte er wohl noch den ein oder anderen World Title gewonnen. Für mich klare 10 Punkte was anderes kann man Ihm auch nicht geben. Danke für diese tollen Momente Eddie Guerrero... R. I. P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: hitman18wrote on 12.11.2014:[10.0] "War als ich zum Wrestling gekommen bin WWE Champion und war da sofort mein Lieblings Charakter und blieb dies auch bis zu seinem Ende.  RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: AlwaysAngrywrote on 24.05.2014:[10.0] "Eddie is without a doubt one of the if not the greatest wrestlers in the world as he perfectly combined Japanese. Mexican. American Indy, and American mainstream, to make the almost perfect wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: sevendaughterswrote on 19.05.2014:[10.0] "How badly WWE could use someone like Eddie right now; star quality, great natural ability to be loved and hated, works a great match and learned to cut good promos. Really miss this guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: J0KERwrote on 10.05.2014:[10.0] "Ich find die Bewertung etwas überbewertet welches ich vom Tod von Eddie ausgehe. Der Mann war das gesamt Paket der WWE. Keine Ecken und Kanten nichts hat bei ihm gefehlt. Sein In Ring Skill ist sehr gut und sein Gimmick ebenfalls. Am Mikrofon ist er stark aber nicht der beste macht aber immer wieder Spaß ihn zuzuhören weil er dieses Unterhaltungsfaktor hat welches er uns presentierte. Er war eine Charisma Bombe und hat alles erfüllt was ein Main Eventer gebraucht hat. Der WrestleMania XX Moment mit Chris Benoit und Eddie Guerrero wird niemals vergessen einfach ein schönes Moment. Er hätte ruhig noch mehr Championships gewinnen können welches aber nicht zu Stande kam wegen dem früheren Tod von Eddie Guerrero.  Verdienter Hall Of Famer R. I. P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KobashiKentawrote on 23.04.2014:[10.0] "Einer der ganz wenigen, die wirklich alles konnten. Großartiger Techniker, großartiger Highflyer. Überzeugte sowohl in technischeren Matches, konnte Hardcore, selbst in Comedy-Matches hat er mit all seinem Charme, Humor und Charisma immer herausragen können. Wurde für meine Begriffe damals eigentlich sogar viel zu spät in den Mainevent gepusht, umso schöner war dann allerdings sein Titelgewinn 2003 gegen Lesnar und das Match mit Angle/der abschließende Jubel mit Benoit bei WM XX. Eddie hat durch sein viel zu frühes Dahinscheiden leider ein Riesenloch in der Wrestling Welt hinterlassen, vor allem wenn man bedenkt, dass er noch locker 5-10 Jahre auf einem Toplevel performen hätte können. Einer der größten aller Zeiten! 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Undertalkerwrote on 29.03.2014:[10.0] "Er hatte unheimlich viel Charisma, war witzig sowie unterhaltsam und somit ein Entertainer der Extraklasse. Seine In-Ring-Skills waren auch hervorragend, obwohl ich finde, dass es da noch bessere Wrestler gibt. Er überzeugte nicht nur in WWE, sondern auch in vielen anderen Ligen. Obendrein hatte er noch eine außerordentliche Leidenschaft und Liebe für das Business zu eigen. Einen " neuen Eddie Guerrero" wird es niemals geben: Eddie hatte einen derart einzigartigen Charakter, sodass er für das Wrestling-Business einfach nicht ersetzbar ist. Darin zeigt sich seine Großartigkeit!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Lord Regalwrote on 22.01.2014:[10.0] "In allen Bereichen absolut hervorragend. 10 Punkte. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: JourneybyTrainwrote on 22.12.2013:[7.0] "Eddie's peak performances are great, he cut some of the best promos ever at the tail end of his career and generally looked excellent in the ring. Depth wise his body of work leaves a lot to be desired but his performances are to strong to warrant below a 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Nazirul Takashiwrote on 13.11.2013:[10.0] "It's been 8 years since the last time we saw Eddie inside a Wrestling Ring. Maybe he's no longer with us, but his matches and talent will always be remembered. RIP Eddie. Viva La Raza!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Daneraswrote on 03.11.2013:[9.0] "Er konnte wirklich sehr gut kämpfen, und hatte viel Talent. Seine Gimmicks fand ich leider nicht so spannend, aber ich habe mich immer auf seine Matches gefreut. Seine Todesnachricht kam total unerwartet. So ein guter Wrestler, schade!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Hells Guardianwrote on 25.10.2013:[9.0] "Der einzige für mich, der sogar HBK und Y2J am Mic hätte ausstechen können! Ich habe es förmlich geliebt, ihn zu hassen (wenn ihr versteht was ich meine) und als Face hatte er einen unglaublichen Charme. Ich kann ihn nichtmal für die Teilweise lächerlich übertriebenen Sotrylines nen Punkt abziehen (wie z. B. die Kiste mit Rays Sohn 2005), da er nicht wirklich einfluss darauf gehabt haben dürfte, aber das beste aus der rolle geholt haben dürfte. Den Punkt abzug bekommt er auch nicht für seine Drogenprobleme, da er bewiesen hat, das Menschen sich ändern können und er immer zu seinen Fehlern gestanden hat. Den Punkt abzug, gebe ich dafür, das er im ring nur gegen wirlich gute Gegner voll aus sich raus gehen konnte. Bei unterdurchschnittlichen Wrestlern, schien er mir nichtmal großartig versucht zu haben, was rauszu holen. En HBK oder Undertaker konnte das besser verkaufen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: HighlightHEELwrote on 19.09.2013:[10.0] "Technisch gesehen, das Highflying, die Fähigkeiten, die er als Athlet hatte: im Ring war Eddie das absolute " Total Package" . Am Mikro gut und unterhaltend, das Gimmick machte über eine Zeit lang großen Spaß und alles zusammen führte zu einem großen Moment bei No Way Out 2004 und einem noch größeren bei WM20. Auch im Tag Team mit Neffe Chavo richtig gut. Auch wenn Eddie, trotz Anerkennung aller Fähigkeiten, nie im Kreis meiner absoluten Lieblinge war, ist sein Tod natürlich eines der traurigsten Kapitel der Wrestling-Geschichte, was ich miterleben konnte/musste. Die Ausschlachtung seines Erbes durch die WWE ist etwas, was ich " meiner" Liga auch immer übel genommen habe und übel nehmen werde. Seine Einführung in die Hall of Fame und das dazugehörige Video verursachen bei mir immer noch Gänsehaut und eine gewisse Traurigkeit. Viva la Raza (forever)!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: pentiwrote on 15.09.2013:[10.0] "Ein Klasse Wrestler- wahrscheinlich der beste Highflyer und Micworker der Geschichte ich glaube keiner bringt sich so souverän rüber wie er es tat (was auch sein später Turn zum Heel zeigt). Leider ging er viel zu früh von uns"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: bounthykiller1987wrote on 12.09.2013:[10.0] "Leider viel zu früh gestorben. allein seine Fehde gegen JBL .. amazing... La Vida Loca"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Alex Maedawrote on 31.07.2013:[10.0] "Wenn ich die zwei Worte " Sports Entertainment" höre, denke ich als erstes an ihn und Chris Jericho. Denn beide waren bzw. sind genau das: sowohl großartige Sportler als auch Entertainer, die ihresgleichen suchen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Sir Vida Loca IIIwrote on 07.07.2013:[10.0] "Meiner Meinung nach einer der besten Wrestler aller Zeiten, wenn nicht gar DER beste ever. Aber dies ist meist Subjektiv. Im Ring machte Eddie niemand etwas vor, er konnte jeden Stiel gehen und aus so gut wie jedem gegner ein gutes Match heraus holen. Am Mic sieht es nicht anders aus, Eddie vermochte es wie kaum ein anderer Emotionen zu vermitteln und mit der Crowd zu spielen. R. I. P. Eddie Guerrero"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BeNerowrote on 07.07.2013:[10.0] "Im Ring einer der besten aller Zeiten mit einem absolut genialem Gimmick dazu. Unglaublich charismatisch und er war überall einsetzbar ob im Main Event, Midcard oder Tag Team Division. Auch wenn er leider viel zu früh verstorben ist, ist er verdient eine Legende, da Guerrero einfach nur einzigartig und unersetzbar war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Charismatic Enigmawrote on 26.05.2013:[10.0] "Klasse Techniker, Charisma bis oben hin und ein Entertainer aus Leidenschaft. Hab vor Kurzem seine Autobiografie gelesen und seitdem ist mein Respekt vor dem Mann noch mehr gewachsen. Was der durchgemacht hat, ist wirklich Wahnsinn. Trotz aller Dämonen hat er die Kraft gefunden, weiter zu kämpfen, auch wenn er den Kampf letztlich doch verlor. Nur die Besten sterben jung. Rest in Peace!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: christianpecevskiwrote on 22.05.2013:[10.0] "Ein top Wrestler und Entertainer. Seine matches haben immer spaß gemacht und waren sehr nett anzuschauen. Ruhe in Frieden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BenutzernamenBraucheIchNichtwrote on 05.05.2013:[8.0] "Es werden maximal 1500 Zeichen gespeichert, daher beginne ich gar nicht all die Leistungen, die er erbracht aufzuzählen und befasse mich mit den Dingen, die zu dieser " unterdurchschnittlichen" Bewertung Eddies führten. Ich finde es traurig, dass sein Tod noch so lange danach ausgeschlachtet wurde, egal ob für Chavo, Vickie oder Rey. Zudem - auch wenn er es sich in/nach all den Jahren verdient hat - bin ich kein großer Freund des Hypes vor seinem Tod. Als WWE-Champ wollte ich ihn eig. nie sehen. Latino Heat: He lies, he cheats and steals - super Gimmick für einen, der diverse Midcard-Titel gewinnen und halten konnte. Auch die Los Guerreros waren eines der besten Teams, der letzten 10 Jahre! Alles was jedoch nach WM XX passierte, sagt mir ganz und gar nicht zu und nervte nur noch..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Golgotawrote on 23.03.2013:[8.0] "Toller Mensch, guter Wrestler und Mic-Worker. Den Giganten, den hier viele beschreiben, sehe ich allerdings nicht in ihm."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "My favorite wrestler of all time. An amazing performer all-around, who is definitely missed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Kevin Steenwrote on 15.11.2012:[10.0] "Er ist und wird immer mein Lieblingswrestler bleiben. Egal was Eddie gemacht hat, es hat mir eigentlich immer gefallen. Er konnte die lustigen und ernsten Sachen perfekt spielen und war im Ring auch ein richtig Guter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: FranziiXDwrote on 28.09.2012:[10.0] "einer der besten und mitreißendsten wrestler ever . richtig gut im ring ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Kid Rockwrote on 19.09.2012:[10.0] "Eddie Guerrero war und ist heute noch der Wrestler, mit dem ich mich emotional am meisten verbunden fühlte/fühle. Als ich 2003 über Smackdown mit dem Wrestling angefangen habe, war Eddie sofort mein großer Held. Seine Schlitzohrigkeit, sein Humor, sein unglaublich einnehmender Charme; Kaum einer war mir in dem Buisness je sympathischer als Eddie. Er war einer dieser Performer die immer authentisch rüber kamen und es schafften den Zuschauer emotional zu packen und mitzureißen. So auch bei Latino Heat, bei dem ich immer mitgefiebert habe, sei es als er den WWE-Titel gewann, was so ziemlich meinen allerersten Mark-Out überhaupt darstellte, während der brutalen Fehde mit JBL oder mit dem grandiosen Heel-Turn samt anschließender Rivalität gegen Rey Mysterio. Nicht zu unterschätzen die vielen großartigen Matches und Karrieremomente vor seiner Hochzeit 2003/2004 als " Lie, Cheat, Steal" -Rabauke. Eddie war schlicht einer der besten die es je gab. Großartiger Techniker, überaus passabel am Mic und mit viel Charisma gesegnet, hätte Eddie zweifellos noch einiges bewegen können, hätte er sich nicht viel zu früh und völlig unerwartet aus dieser Welt verabschieden müssen. Sein Tod war für mich in der Tat eine große Tragödie und selbst jetzt nach all den Jahren fehlt er mir immer noch sehr. In dem Sinne: Danke für alles Eddie und ruhe in Frieden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: LM Punkwrote on 30.08.2012:[8.0] "Er war schon gut, aber ich war jetzt nie ein grosser Fan von Eddie. In der Zeit als er Champ war, habe ich auch iergendwei das intresse am Wrestlingverloren, das lag jetzt nich an ihm, aber am gesamtpaktet. Vergleicht man ihn mit Leuten wie HBK, Y2J oder dem Undertaker so hat er doch irgendwie nichte deren Legendenstatus. Sein Gimmik war aber total passend für Eddie und er hat das richtig gut rüber gebrach. Im Ring war er auch überzeugend."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: phippowrote on 19.08.2012:[10.0] "Ist für mich einer der besten, wenn nicht der beste Entertainer der WWE. Großartiger Wrestler und auch am Mikrofon sehr stark! Leider aber viel zu früh von uns gegangen! RIP EDDIE GUERRERO"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Kitanoyamawrote on 07.08.2012:[10.0] "Teilweise schließe ich mich der Meinung der meisten User an, das seine Popularität gerade nach seinem leider viel zu frühen Tod in die Höhe schoss, aber dennoch kann und muss ich mit Fug und Recht sagen, das er zu Recht zu den besten seines Fachs zählt. Sein Wrestling als solches war nur unwesentlich besser als die meisten, aber er verstand es, sich, seine Moves, sein ganzes Auftreten, so zu verpacken, das man sich sicher sein konnte, das man unterhalten wird. Das war nicht immer der Fall, aber meistens. Das er auch unter seinen direkten Kollegen sehr geschätzt wie beliebt war, unterstreicht sein Leben, seinen Wandel usw. . Ich denke schon das er mit 10 Punkten angemessen gewürdigt wird, da er, trotz einiger Makel, zu denjenigen gehörte, die am besten was von ihrem Handwerk verstanden. Viva la Raza! R. I. P. Eddie!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: alewrote on 28.06.2012:[10.0] "Ich denke über Eddie Guerrero gibts es nichts zu sagen was nicht schon gesagt wurde. Im Ring war er einer der besten die jemals die Bühne des Mainstream Wrestling betreten und natürlich auch jemand der unglaublich Heat als Heel ziehen konnte. Generell am Mic für einen technisch extrem begabten Wrestler sehr stark (vlt nicht so stark wie Jericho aber trotzdem) daher gibt es wohl nichts anderes als 10 Punkte für Latino Heat.  R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Hirnklopswrote on 28.04.2012:[8.0] "Saustarker Wrestler, natürliches Charisma, gute Promos, cooles Gimmick... Er hat sein Leben am Limit gelebt, was man auch an seiner Frisur sieht: Ein absoluter Grenzgang zwischen derbem Ruhrpott-Look und der unerschütterbaren zeitlosen Coolnes eines VoKuHiLa."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: WDE John Masonwrote on 25.04.2012:[10.0] "Eddie Guerrero war einfach das komplett Paket.  Als ich 2004 angefangen habe Wrestling zu gucken hat mich Eddie sofort mit seinem Charisma seiner gesamten Art begeistert und seine Ringskills just awesome einer der besten und diese Wertung hat nichts mit seinem Tod zu tun.  Wer diesem Mann eine schlechte Note gibt hat entweder keine Ahnung vom Wrestling oder ihn nie im Ring gesehen.  Man hat ihm angemerkt das er für das Wrestling gelebt hat und wie viel Leidenschaft er für das Business hatte.  Eddie fehlt einfach in der WWE R. I. P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Franjisewrote on 31.03.2012:[10.0] "Eddie Guerrero war einer der allerbesten seines Fachs. Im Seilgeviert lieferte er stets großartige Leistungen ab, sowohl technisch als auch in Sachen Ringpsychologie war Eddie einfach großartig. Dazu kamen natürlich sein unglaubliches Charisma und die überragenden Mic-Skills, die, egal ob Face oder Heel, immer zu unterhalten wussten. Keine Frage, mit Eddie Guerrero hat die Wrestling-Welt einen der Allergrößten dieses Sports viel zu früh verloren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Fighter Daronwrote on 02.02.2012:[8.0] "Just like Chris Jericho, great worker, but overrated as hell."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Clubbiwrote on 06.01.2012:[10.0] "Eddie Guerrero der für mich Beste Wrestler mit Jericho und 1, 2 andere der letzten Jahre, seine Gimmicks waren einfach nur Geil alleine nur die WWE Gimmicks einfach Göttlich am Mic war er auch immer Gott. Leider blieb auch er nicht von den Drogen verschont die obwohl er seit Jahren Clean war, im Endeffekt das Leben leider gekostet haben. Einfach ein Super Mann mit großen Herz wie man auch auf Der Eddie Guerrero Viva La Raza DVD sieht und auch bei seiner Story DVD. Wir werden wohl auch die nächsten Jahre keinen haben der an seine Stelle tritt. RIP Eddie We Miss You!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: 7TheEwrote on 20.11.2011:[8.0] "In-Ring, Mikework und Charistmatechnisch eine 10 Punkte angelegenheit.  Die Gründe warum es nur 8 Punkte sind liegt für mich daran, dass ich ihn leider nie dauerhaft On Top gesehen habe und leider auch seinen Wordtitel Run nicht so gut fand.  Ansonsten mag ich seine Frisur nicht!  Und er war auch nicht immer der Drogenfreiste, Drogen im Wrestlingbuisness wirken nie Positiv, siehe Jeff, oder andere.  Deswegen verdiente 8 Punkte für einen der besten Entertainer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: thereisonlyonewrote on 02.11.2011:[10.0] "Eduardo Guerrero, auch er war Einer, der mir das Wreslinggucken zur Freude gemacht hat. Gerade sein Lie, Cheat 'n Steal Gimmick war das amüsanteste seiner Zeit. Dazu hat er die Sunset Flip Powerbomb (zumindest in der WWE) über die Leiter großgemacht und grandioses mit ihr, dem HiLo etc. einiges angestellt. Viva La Raza, Rest in Peace und schönen Tag noch!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: cookie monsterwrote on 27.10.2011:[10.0] "Einer der besten und großartigesten Menschen. Und vorallem Klasse Wrestler besonders technisch und auch Unterhaltung. Ohne ihn fehlt echt etwas bei WWE, da nur Trash Wrestler sind wie NXT"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KoZywrote on 07.10.2011:[10.0] "Mein Lieblingswrestler. Es hat einfach spaß gemacht Eddie zuzuschauen, egal ob im Ring oder am Mikro. Er hat alles immer mit Herz gemacht und das hat man gespürt. Seine Fehden mit Angle und mit Rey fand ich besonders gut. Und egal ob als Face oder als Heel er hat alle Rollen perfekt beherrscht. Und er hat das Publikum einfach an sich gebunden. Das hat man gemerkt, als z. B im Ladder Match gegen Rey das Publikum mit Eddie Chants anfing, obwohl er Heel war...  Einfach nur Schade, dass er so früh gestorben ist. Ein riesiger Verlust der WWE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Seehundwrote on 14.09.2011:[10.0] "Für mich war und ist Eddie der beste Wrestler aller Zeiten. Ich hatte schon recht früh angefangen Wrestling zu sehen konnte mich jedoch nur an einzelne Szenen mit dem Undertaker erinnern. danach war für mich bestimmt Zehn Jahre lang Schluss mit dem Wrestling, bis ich irgendwann im Jahr 2003 oder 2004 wieder damit anfing es regelmäßig zu schauen und bis heute auch noch tue. Eddie wurde durch sein riesiges Charisma, sein tolles Gimmick, sein unglaubliches Wrestling und natürlich durch sein verschmitztes Lächeln schnell zu meinem Lieblinge. Sein Tod kam auch für mich sehr überraschen und bis heute kommen mir die Tränen wenn ich mal wieder am Schluss der Viva La Razza DVD angekommen bin. Eddie Ruhe in Frieden wir vermissen dich"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Eddie hat bis heute eine Lücke hinterlassen die keiner Füllen konnte! Er konnte Schauspielern und Wrestlen wie kein Zweiter! Sein Mic Work war awesome und auch Charisma hatte Latino Heat im vollen Maßen! Leider wegen seiner Drogengeschichte (von der er Gott sei Dank los kam) ziemlich lange unten gehalten (er wäre bestimmt noch früher WWE Champ geworden) Eddie konnte auch als Face sowie als Heel überzeugen, seine Fehde gegen Rey war seine beste Heel Fehde finde ich! Ich hätte ihn gerne nochmal als Champion gesehen..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Fall Out Boywrote on 28.08.2011:[8.0] "Der Kerl konnte schauspielern wie kaum ein anderer und auch im Ring war er großartig. Trotzdem fand ich seine Gimmicks immer ziemlich übertrieben und schnell sehr nervig. Micwork für mich eher mittelmäßig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: CM Punk und Edgewrote on 26.08.2011:[10.0] "Immer wenn er bei Smackdown auftauchte und die Show noch so schlecht wahr, hatte man doch einen Grund sie zu sehen. Er hatte einfach Charisma pur, und im Ring sowieso einer der besten. Was ich nicht alles geben würde um noch einmal ein Match von ihm zu sehen, er ist einfach klasse. In diesem Sinne volle 10 Punkte für Eddie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: GTS Punkwrote on 19.08.2011:[10.0] "Ich kann es nicht verstehen für diesen legendären Hall of Famer weniger als 8. 00 Punkte zu vergeben. Er war einer der ganz großen im Wrestling. Tolles Gimmick, spektaküläre Moves! Wie er sich immer aufeinmal hinlegte und Refere irritierte war einfach fantastisch! Er wird immer einer meiner Lieblingswrestler sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Bananaramawrote on 14.08.2011:[10.0] "Gerade als ich wieder anfing Wrestling aktiv zu verfolgen, war er mit einer der interessantesten Charaktere. Er war es, der mich überhaupt wieder aufs Wrestling gebracht. Seine ganze Art, sein Gimmick bleibt unerreicht, dazu ist er einer der wenigen Akteure, die in jeder Rolle überzeugen können und es schaffen innerhalb weniger Wochen das Publikum gegen sich aufbringen zu können. Im Ring gehört er sicherlich zur Elite des Sports, daher kann es für diese Legende nur 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MaikBaaderwrote on 29.07.2011:[10.0] "Ob er überbewertet ist aufgrund seines Todes? Nein. Black Tiger, beziehungsweise Eddie Guerrero hatte alles was man als Mainstreamwrestler brauch: Micwork, sehr, sehr viel Charisma und natürlich die wrestlerischen Fähigkeiten. Er war definitiv einer der besten Performer, der je ein WWE-Ring betreten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: latinoheat4everwrote on 29.07.2011:[10.0] "Eduardo Gory Guerrero Llanes ist für mich persönlich der beste Wrestler aller Zeiten. Immerhin bin ich durch ihn ein Fan dieses Business geworden, welches mir so viele schöne Erinnerungen bereitet hat. In seiner Hochzeit 2004 bin ich zufällig beim Zappen bei Smackdown gelandet und alles was ich dort gesehen habe war ganz nett. Ein Undertaker, den eine beeindruckende Aura umgab, ein Kurt Angle, der ein klasse Athlet war, doch dann kam besagter Eddie Guerrero in den Ring mit einem unwiderstehlichen und ansteckendem Lächeln. Dann begann sein Match und ich war fasziniert von jeder Bewegung, die er vollführte, besonders von den Spielchen die er mit seinen Gegnern trieb. Er zauberte ein Lächeln in das Gesicht eines jeden Fans in der Halle und so erging es mir auch. Hinzu kamen seine unvergleichlichen Fähigkeiten im Ring, er beherrschte alle Wrestlingstile dieser Welt und konnte jeden seiner Gegner besser aussehen lassen, als sie de facto eigentlich waren. Eddie war ein Performer, bei dem man die Leidenschaft, die er für dieses Business empfand, spüren konnte und zwar sogar durch den Fernsehbildschirm hindurch. Es hat einfach Spaß gemacht ihm zuzuschauen. Ich bedauere es wirklich sehr, dass ich nicht einmal 2 volle Jahre sein unvergleichliches Talent genießen durfte, doch ich bin dankbar für jedes Match mit seiner Beteiligung, dass ich noch bestaunen durfte. Danke Eddie!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Titanwrote on 20.07.2011:[10.0] "Eddie ist für mich eine Legende. Er hatte diese natürliche Ausstrahlung und das Talent die Leute zu unterhalten und mitzureißen, egal ob er als Heel oder Face die Halle betrat. Sein Tod ist ein großer Verlust für die Wrestlingwelt gewesen und bis heute hat es keiner so wirklich geschafft ihn 1:1 zu ersetzen..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: thegreatone388wrote on 17.07.2011:[10.0] "Warum steht hier bei Eddies Karriereende der 11. 11. wo er doch am 13. 11. gestorben ist? !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: LyrixFTWwrote on 08.07.2011:[9.0] ""I lie, I cheat, I steal" Und wie er gestohlen hat, nämlich Millionen gelangweilter Fan's, denn wenn Eddie die Halle betratt kam immer Stimmung auf, Technisch klasse, charismatisch, aber kein erredetes Charisma sondern dieses angeborene etwas das z. B. Jackson hat obwohl der sowohl im Ring als auch am Mic schlecht ist. Wenn er Face war und sich am Mikrofon ins Fäustchen gelacht hat konnte man nur mitgrinsen und als Heel war er glaubwürdig wie es nur wenige schaffen.  Einzig der Akzent(Den ich eigentlich sehr gern mag) hat in Kombination mit den manchmal fast zu emotionalen Promos verhindert hier die 1.  Ein großartiger Wrestler der immer noch im Ring stehen sollte :( RIP"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Donald Duckwrote on 26.06.2011:[7.0] "Eddie Guerrero war ein guter Wrestler, keine Frage.. aber für mich ist er keine wirkliche Legende. Er war schon damals ein ganz normaler Wrestler. Denke dass man ihn heute nur so feiert weil er viel zu früh gestorben ist."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: exxterwrote on 17.04.2011:[10.0] "Grandios im Ring, äußerst unterhaltsam und vor Ausstrahlung nur so strotzend, das Mainstream Wrestling hat uns in den letzten Jahrzehnten beschert hat. Tragisch, dass dieser Mensch viel zu früh gehen musste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: C0nspiracywrote on 28.03.2011:[7.0] "Eine meiner absoluten Faves , abzüge gibts eigendlich nur beim Micwork das mir zu übertrieben war, ansonsten hab ich bei Eddie wirklich nichts auszusetzen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Hu-Manwrote on 24.02.2011:[10.0] "Wer hat ihn nicht geliebt! ? An Charisma ist er wohl unübertroffen. Ein toller Worker mit einem unfassbaren Unterhaltungspotential. R. I. P. Eddie!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Schmidi2121wrote on 31.12.2010:[10.0] "Über ihn braucht man nicht viele Worte zu verlieren.  Einer der Größten die es je gab. Und einer der besten Entertainer die ich je gesehen habe. R. I. P. Eddie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KazhiusKlaywrote on 19.12.2010:[10.0] "Einer der besten aller Zeiten! Hatte leider nicht lange das Vergnügen ihn zu "erleben", da er wie bekannt viel zu früh verstorben ist. :( Hab aber bis heute fast alle seine Karrierehighlights gesehen und bin so noch ein größerer Fan geworden. Technisch und charismatisch TOP ! R. I. P Eddie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Cheffewrote on 01.11.2010:[10.0] "Dieser Mann war einfach nur Unglaublich. Seine In-Ring Skills, sein Mic-Work, sein Gimmick.. , Alles Fantastisch ! Gehört definitiv zu meinen TOP 5 Wrestlern aller Zeiten.  Ich habe glaube ich noch nie soviel Leid empfunden, bei einem Menschen der außerhalb meines Familienkreises gestorben ist. Bald ist es schon 5 Jahre her...  Thank you, Eddie RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Aesopwrote on 18.10.2010:[10.0] "Eddie war ein genialer Wrestler, der als Face, aber noch viel mehr als Heel überzeugen kann. Im Ring war er einer der besten Highflyer und Techniker den die WWE je hatte. Leider ist er viel zu früh verstorben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: C van Damwrote on 16.10.2010:[10.0] "Im Ring Top, am Mic Top, einfach in allen Belangen Top. Das war Eddie Guerrero. Leider hat seinen verdienten Platz viel zu spät bekommen und ist viel zu früh von uns gegangen um zu zeigen, das er auch dauerhaft ganz oben bei den Großen mitspielen könnte. Wahnnsin dieser Mann!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DJ MaSchwrote on 03.10.2010:[8.0] "Ein klasse Wrestler mit massenweise Charisma, der wegen seines viel zu frühen Ablebens IMO ein kleines bisschen overhypt ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: LabronBenoitwrote on 30.09.2010:[10.0] "Hab mir vor kurzem die Eddie Guerrero DVD angeguckt und dort hat man einfach nochmal gesehen, was für ein unglaublicher Wrestler Eddie Guerrero doch war. Für mich einer der Besten aller Zeiten! Und bald sind es schon 5 Jahre ohne ihm... Eddies beste Zeit wäre denk ich noch gekommen. Ruhe in Frieden Eddie, deine Matches bleiben für immer in Erinnerung. VIVA LA RAZA!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Ramwrote on 29.09.2010:[10.0] "Er war der Grund warum ich Wrestling geschaut hab , er war der erste den ich gut fand und er war der erste Wrestler den ich hasste. (aus Mark sicht natürlich) Beste Man am Mic, toller Techniker, hammer Gimmick. Er ist der Beste Mexicanische Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: jupp365wrote on 27.08.2010:[5.0] "Klar er hatte Charisma und konnte wrestlen, aber mich persönlich konnte er im Mainevent nie überzeugen."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Saschwrote on 19.08.2010:[10.0] "10 Punkte als Wrestler Schauspieler und eigenen Ideen (I lie I cheat I steel) Gimmick welches er von seinem Hund ableitete und damit sich selbst neu Erfand und sich meiner Meinung nach in die Herzen der Fans wrestelte! Zur WCW Zeit hatte er tolle Fehden mit Chris Benoit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Mountiewrote on 18.08.2010:[10.0] "Klar, bei Eddie ist die Gefahr, dass man ihn wegen seinem frühen Tod im Nachhinein verklärt, aber auch mit dem Problem im Blick kann ich ihm nur die 1 geben: Toller Wrestler, Charisma-Bombe und für mich immer ein Einschaltgrund."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Aquifelwrote on 17.08.2010:[9.0] "Erstklassiger Wrestler und was das Charisma angeht wohl einer der besten, die je im Wrestling Ring standen (gerade zu WWE Zeiten). Ich denke, man hätte noch mehr Großes von ihm gesehen, wäre er nicht so früh verstorben. Andererseits würden manche ihn dann wohl auch ein bisschen weniger in den Himmel loben (was man ihm ja nicht zum Vorwurf machen kann)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Jerichoholicwrote on 04.08.2010:[10.0] "Eddie Guerrero war ohne Zweifel einer der größten Worker im Wrestling Business - und dies sage ich nicht, weil er viel zu früh von uns gegangen ist, was gerne dazu führt, das der Betreffende glorifiziert wird. In diesem Fall haben wir es aber mit einem echten Total Package zu tun. Eddie Guerrero verbindet großartiges Wrestling mit unendlich viel Charisma, eine Mischung wie man sie sonst nur bei Leuten wie Chris Jericho oder Shawn Michaels vorfindet. Latino Heat war stets ein Grund zum Einschalten, sei es wegen seiner unvergleichlichen Promos, die er sowohl sehr witzig als auch verdammt intensiv rüberbringen konnte (wie zum Beispiel in seiner brutalen Fehde gegen JBL). Daneben war er immer in der Lage, einen Showstealer auf die Beine zu stellen, egal wie der Gegner heißt. Das macht Eddie Guerrero zu einem Komplettpaktet - einzig sein früher Tod hat vermieden, dass er zu den ganz großen Champions aufsteigen konnte. Denn klar ist, dass er noch den ein oder anderen Titelrun vor sich gehabt hätte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: WrestlingFanDuisburgwrote on 01.08.2010:[10.0] "Ich verstehe nicht wieso es hier Leute gibt die teilweise nur 4 Punkte geben. Im Ring absolut Spitze. Am Mic absolut spitze. Charisma, genug vorhanden gewesen. Eddie Guerrero wusste immer zu unterhalten. Egal ob Japan, WCW oder WWE, dieser Mann war absolute Weltspitze. Ich kann mich bei ihm dennoch nicht entscheiden ob ich 9 oder 10 Punkte geben soll, da er zum Ende seiner Karriere und seines Lebens im Vergleich zu den 90ern enorm an Muskeln zu gelegt, was nicht zu ihm passte. Aber aufgrund so toller Matches die ich schon von Eddie gesehen habe und Top-Promos die ich gehört habe gebe ich ihm die 10 Punkte. Leider wie Chris Benoit, Steve Williams oder Umaga um nur ein paar zu nennen viel zu früh verstorben. RIP EDDIE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: GibDirDreggischwrote on 19.07.2010:[8.0] "Guter Mann, der jedoch durch seinen frühen Tod ein bißchen mehr glorifiziert wird, als eigentlich nötig wäre. Aber immer ein Grund einzuschalten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Eazyewrote on 19.06.2010:[10.0] "I lie, I cheat, I steal. Eddie Guerrero ist der latinoamerikanische Rock, vom Gimmick her. Klasse Techniker und ausserdem verdammt unterhaltsam. Leider konnte er sich nicht mehr World Titel um die Hüften schnallen.  Das Gesamtpacket stimmte bei Eddie, er konnte alles was man brauchte um ein perfekter Wrestler zu sein.  Leider viel zu früh von uns gegangen. † RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Boggenauerwrote on 31.05.2010:[10.0] "Eddie Guerrero der Kerl war einfach ein must see im Ring, er hatte einfach alles Grandiose in Ring skills und seine Mic-skills waren auch der Hammer, immer wenn er im Ring war hatte man was zu lachen seine Promos waren auch immer Klasse. Als Heel oder als Face einfach einmalig, Eddie war einfach ein Weltweiter Top Worker das ist sowas von wahr, ein Mann der viel zu früh verstarb ich vermisse ihn einfach. Von mir 10 Punkte, für diesen unvergesslichen Kerl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MarthaHartFanwrote on 29.05.2010:[10.0] "Ging viel zu früh von uns und hat uns immer mit coolen Matches und witzigen Segmenten unterhalten. RIP Edouardo Gory Guerrero!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Rockerwrote on 27.05.2010:[10.0] "Einer der besten Wrestler den es in der WWE gab. Auch wen er Tod ist finde ich ihn immer noch cool."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Erasedwrote on 22.05.2010:[9.0] "Alleine vom Entertaining her einer der besten in den letzten Jahren. Trotz seinen leichten Mängel im Ring muss man sagen, dass er einfach alles sauber rüberbrachte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Edge96wrote on 14.05.2010:[10.0] "Einer der besten Wrestler aller Zeiten. Als ich von seinem Tod erfahren habe war ich einfach fassungslos. RIP. Viva la raza !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Sandmannwrote on 04.05.2010:[9.0] "Latino Heat fast mit der vollen Punktzahl. Ein grandioser Techniker wenn er nicht gerade mit seinen persönlichen Problemen zu kämpfen hatte (gerade seine Matches bei ROH waren katastrophal). Ansonsten aber ein wirklich guter Wrestler der mit Lie, Cheat and Steal Gimmick bis ganz nach oben kam und zusammen mit Benoit wohl einen der schönsten Wrestlemania Momente kreierte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Damon Strikerwrote on 01.05.2010:[10.0] "Einer der schwersten Verluste für das Wrestling überhaupt! Überragende In-Ring- und Mic-Skills und ein Charisma, wie man es nur bei sehr wenigen findet! Dazu ein verdammt anständiger Mensch. Hätte ihm einen zweiten, erfolgreicheren Run als World-Champ wirklich gegönnt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Viperwrote on 30.03.2010:[10.0] "Es hat einfach am meisten Spaß gemacht ihn in und neben dem Ring zuzuschauen. Die Segmente und Matches, in denen er beteiligt war, waren einfach klasse. R. I. P. :("
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Masterpiece22wrote on 20.03.2010:[10.0] "Eddie Guerrero, viele meinen er ist durch seinen Tod etwas überbewertet, doch ich finde er hat sich die 10Punkte verdient. Ein toller Entertainer, ein noch besserer Mensch. RIP Eddie, VIVA LA RAZA!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: tobiasthegreatone1wrote on 20.03.2010:[10.0] "Er ist einer der mich als Heel und als Face beeindruckt hat mit seinem I Lie I cheat I steal gimmick hat er wirklich seine Klasse unter Beweis gestellt. Sein Heel turn gegen Rey war genial gemacht da sieht man das Booker doch was geiles erschaffen können. Er hat mich wrestlerisch jedes mal unterhalten und am Mic hat er so packende Promos gemacht. Er war einer der besten Entertainer der jemals im Ring gestanden ist. Ich habe kein Match von Eddie Guerrero gesehen was grottig war er wusste jedes mal wie er das Publikum nehmen muss und das ist einfach 10 Punkte wert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Blackbirdwrote on 16.03.2010:[8.0] "Wird, glaube ich, wegen seines frühen Todes ziemlich overrated. Von vielen hier. Ich hab mir einige seiner Matches angeschaut (also nicht wenige) und bin der Meinung, dass es für 9 oder 10 Punkte nicht ausreicht, weil's einfach bessere Wrestler gibt. Zum Micwork kann ich nichts sagen, könnte ihn vielleicht noch auf 9 hochziehen, aber im Ring konnte er mich nicht hundertprozentig überzeugen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: the king of kingswrote on 11.03.2010:[10.0] "Er war einer der besten Superstars, die das Buisness hatte, wenn nicht sogar der beste. Er hatte Charisma, gute Moves und sehr gute Fehden und Stables. Er ist für mich der beste!  A Legend never dies!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: rv27wrote on 10.03.2010:[10.0] "Ich glaube auf dieserr Welt gibt es nicht viele die ihn nicht lieben und vermissen. RIP EDDIE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: wwe cagematchwrote on 06.03.2010:[9.0] "Eddie ist einfach eine legende, ich mochte ihn schon immer und als er den WWE Titel gewann war mir klar er wird Hall of Famer! R. I. P Eddie Guerrero!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TG400wrote on 04.03.2010:[10.0] "Nur wegen ihm habe ich angefangen Wrestling zu gucken. So jemand wird es nie wieder geben. R. I. P. Eddie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Cripplerwrote on 03.03.2010:[10.0] "Ein kompletter Wrestler.  Er hat alles was einen Wrestler ausmacht.  Viva la Raza!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: tim ist gaywrote on 04.02.2010:[8.0] "Wirklich ein sehr guter Wrestler und charismatischer Micworker. Leider viel zu früh von uns gegangen......es ist einfach zu traurig, dass er passieren musste nachdem er sein Leben so positiv geändert hatte und sich den Drogen losgesagt hatte. Ich bin sicher, dass wenn er noch leben würde, wieder WWE oder WHC geworden wäre. RIP Eddie you will never be forgotten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TheUndertakerwrote on 04.02.2010:[10.0] "Eddie war wohl der Wrestler mit dem besten Gesamtpaket an Charisma und In-Ring Skills. RIP Eddie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TheROCKwrote on 22.01.2010:[9.0] "Lebte sein Leben lang für dieses Business. Bekam im Jahr 2004 die verdiente Titelregentschaft. Schon vor seinem Tod eine Legende."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: PrideFCwrote on 14.01.2010:[10.0] "Einer der komplettensten Worker. Vom Wrestling zum Micwork, von der Mimik bis zur Ausstrahlung, einfach nur Top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Schandmaulwrote on 13.01.2010:[8.0] "Wird zwar meiner Meinung nach tatsächlich oft überbewertet, aber das ändert nichts dran das er dennoch sehr gut war. Gut am Mic, sehr gut im Ring, wenn auch bei beidem nicht ganz ander Spitze."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KASHwrote on 13.01.2010:[10.0] "In eine Reihe mit Jericho und Michaels zu stellen... nen Trifactor Athlet wenn man so will : Ring Skills, Mic Work, Charisma = Entertaiment. Schade das er erst Anfang 2004 als Uppercarder etabliert wurde. Der war gerade erst oben angekommen und hätte bis heute den Main Event und die World Title Historys prägnant geprägt. Da wären bestimmt noch gute Programme gegen Benoit, Cena, Edge, RKO, HHH und co gekommen, aber hätte, wäre, wenn zählt alles nicht. Wir können uns nur an dem erfreuen was er uns hinterlassen hat und das ist ein Bilderbuch-Step-by-Step Aufstieg in den Main Stream Main Event."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Y2J Problemwrote on 04.01.2010:[10.0] "wir werden dich nich nie vergessen! einer der besten worker im Ring sowie am Mikro ist viel viel zu früh uns gegangen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Kane123wrote on 02.01.2010:[10.0] "Unglaublich witztig und super Wrestler, der verdient in der HoF ist ! R. I. P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Borkwrote on 24.12.2009:[10.0] "In meinen Augen sammeln sich immer noch Tränen, wenn ich an ihn denke. Dann schau ich mir wieder Matches von dem wohl besten Wrestler aller Zeiten an und fühle mich an genau den Tag zurückgesetzt, als ich ihn zum ersten Mal im Fernsehen sah. Von dort an eröffnete Eddie mir die Wrestlingwelt mit all seinen schmutzigen, aber auch großartigen Momenten.   Er weilt nicht mehr unter uns, aber er möge für immer in unseren Herzen sein verschmitztes Lächeln zu einem fiesen Grinsen machen, seinen Gegner mit dem Stuhl umhauen wenn der Ref nicht hinschaut, sich dann auf den Boden werfen, vor Schmerzen krümmen und letztendlich sich den Sieg ercheatet haben.   Viva la raza!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: downtown2wrote on 10.12.2009:[9.0] "Ich werde an dieser Stelle keine Trauer-10-Punkte verteilen, Guerrero hat etwas Besseres verdient, nämlich eine Rückbesinnung auf seine Leistungen zu Lebzeiten. Er war den Großteil seiner Karriere einer der besten Midcard Pure Wrestler auf dieser Erde und entwickelte in den letzten Jahren sogar noch außerordentliches schauspielerisches Talent. Diese Jahre gehören mit zum Besten, was man je bestaunen durfte. Leider hielt er den Druck als Headliner der WWE nicht aus, was ihn dafür bewundernswert menschlich machte. Großer Wrestler und noch größerer Mensch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Papa Popanzwrote on 23.11.2009:[10.0] "Genialer Entertainer Toller Wrestler Schade, dass er uns verlassen hat R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: lagunswrote on 20.11.2009:[9.0] "Also ich finde ja, das bei den Guerreros leider oft mit zweierlei Maß gemessen wird. Chavo kann machen was er will und wird immer der kleine Möchtegern sein, wärend bei Eddy schon n Splash vom Seil reicht (den konnte sogar der Warrior und das anziehen der Beine ist erstens total sinnlos und sieht zweitens noch bescheuert aus) um ihm ne 10 zu geben.  Naja, trotzdem ist er n super Wrestler und darum kriegt er auch die Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TheLoudMouthwrote on 16.11.2009:[10.0] "I LIE, I CHEAT, I STEAL! Eddie Guerrero war immer einer meiner Faves, grandios im Ring, stark am Mic und natürlich Charisma ohne Ende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: asraelwrote on 14.11.2009:[8.0] "Auch wenn ich dafür jetzt viele Minus Bewertungen bekomme: Eddie Guerrero ist so der typische Fall, wie jemand durch seinen Tod richtig verklärt wird. Ich fand Eddie die meiste Zeit grausam langweilig und uninteressant. Erst mit dem Lie Cheat Steal Gimmick fand ich ihn gut, auch seine Fehde mit Chavo war super - aber danach mit der Fehde um Reys Sohn ging man schon wieder in eine Richtung, die grauenhaft schlecht war. Eddie war ein guter Wrestler, der viele miese Gimmicks und Fehden hatte, was dann letztendlich von den relativ guten letzten Jahren überstrahlt wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: NewGuywrote on 04.11.2009:[4.0] "Ich kann dem Menschen ebenfalls keine volle Punktzahl geben! Ich schätze mal die meisten 10er Wertungen bekommt er weil sein Tod von der WWE so gepusht wurde! Keine Frage dass er viel zu früh gestorben ist und dass man ihn vermisst, andererseits will man mir wirklich erzählen er ist seit 2002 clean wenn er 2005 an Herzversagen ausgelöst durch Medikamentenmissbrauch starb? Jaja ich weiß, das ist durch den Missbrauch die Jahre zuvor passiert und er hatte damit nichts mehr am Hut aber hier ein großes naaajaaaaa von mir! Das soll man glauben? Hat jahrelang Drogen geschluckt und nichts war und nachdem er 3 Jahre lang clean war soll auf einmal aus heiterem Himmel sowas kommen? Klingt schon recht eigenartig! Außerdem war er soooo besonders auch nicht! Wie schon gesagt ich schätze der Großteil der Punkte gibs hier wegen seinem Tod und das von Leuten die andauernd meckern dass man doch "das wrestlerische" beurteilen soll..."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: gharwrote on 24.10.2009:[10.0] "Leider hab ich seine beste Zeit nicht miterlebt, da ich zu der Zeit kaum Wrestling gesehn habe. Allerdings hab ich mir viele alte Matches und Promos mit Eddie angesehn und es berührt mich immer wieder und die Augen werden feucht. Ein begnadeter Entertainer der uns noch viele tolle Momente beschert hätte ist leider viel zu früh gestorben. R. I. P. Eddie we'll never forget you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Xtreme94wrote on 21.10.2009:[10.0] "Ist echt zu Schade das er weg ist wäre toll gewesen in mal Live gesehen zu haben.  Er war wirklich ein toller Wrestler denn man eigentlich schon garnicht beschreiben kann er hat gerne Spaß bei seinen Matches gemacht und er ist immernoch ein Liebling der Fans."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Paulinawrote on 28.09.2009:[10.0] "Für mich auf jedenfall einer für den 1 mal World Champ zu wenig war. Er konnte Face und Heel perfekt spielen und konnte das Gimmick auch gut für beide seiten benutzbar machen. Wrestlerisch ganz klar einer der besten, er hatte Geniale Matches gegen Rey (da mehr die in der WCW) Chris Benoit und Kurt Angle, und noch unzählige andere, Hall of Fame war gold richtig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Matt Mackswrote on 12.09.2009:[9.0] "Eddie Guerrero war ein unglaublich charismatischer Wrestler, der zeitweilig (2003) sogar alles in den Schatten stellte, was die WWE sonst aufzubieten hatte. Er wird nach seinem tragischen Tod für meine Begriffe ein wenig zu sehr glorifiziert, weil auch bei Eddie nicht alles Gold war, was glänzt -- doch das ist auch irgendwo verständlich. Eddie sorgte 2004 für die Comeback-Story des Jahres nach seinem Sieg über Brock Lesnar, womit er (zurecht) viele treue Fans hinzugewann."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: 123 kidwrote on 03.09.2009:[10.0] "Er war mit Abstand mein Lieblingswrestler, schon allein deshalb bekommt er von mir 10 Punkte. Er war großartig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Neuhofwrote on 27.08.2009:[10.0] "Absolut nicht überschätzt, sondern einfach nur realistisch: 10 Punkte für einen sehr guten Techniker, Schauspieler, Mic-Worker, der ein super Gimmick super rüberbrachte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Weihnachtsmannwrote on 20.08.2009:[4.0] "Meiner Meinung nach total überbewertet. War zwar ein guter Techniker, leider habe ich mich aber von ihm nie unterhalten gefühlt. Weder sein Ringstil noch sein Micwork haben mich je angesprochen."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: jokingwrote on 18.08.2009:[10.0] "Eddie war ein super lustiger Typ, sein Gimmick wurde nie langweilig. Außerdem war er ein absoluter Außnahmetechniker im Ring !!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MajinSitwrote on 07.08.2009:[10.0] "Über die Toten nur Gutes heisst es doch so schön. Und bei Eddie gibt es eigentlich nur gutes zu erzählen. 11 von 10 Punkten von mir dafür^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Brainbreakerwrote on 10.07.2009:[9.0] "Eddi fehlte immer das gewisse Etwas in meinen Augen, um einer der wirklich allergrößten der Liga zu sein. Man darf nicht vergessen, dass er bis zu letzt nur bei SD! Erfolg hatte. Allerdings muss man ihm zugute halten, dass gerade seine letzten Heel-Monate überaus genial waren. Außerdem verbindet man schöne Wrestlingmomente mit ihm, ua WM20 oder die Traummatches gegen Rey oder Benoit."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Mick Funkwrote on 24.06.2009:[8.0] "Hat mir nie 100 %ig gefallen obwohl er stark im Ring war und auch sonst alles hatte was man braucht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: undertaker619wrote on 22.06.2009:[10.0] "Einer der Größten, die es je geben wird in diesem Geschäft!  Eddie hat mich zum Wrestlingfan gemacht, die erste Show, die ich von der WWE am Fernsehn verfolgt habe war 2004 als Eddie beim Judgment Day seinen WWE Titel gegen JBL verteidigt hatte.  Unglaublich Charismatischer Superstar und technisch sowie auch am Mic einer der Besten.  Es ist unglaublich traurig, dass er so früh von uns gehen musste, kaum zu glauben, dass es dieses Jahr schon 4 Jahre her ist!  Ruhe in Frieder Eddie, wir werden dich nie vergessen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Ryklon Stephenswrote on 22.06.2009:[10.0] "Eddie war jemand den man einfach lieben musste. Er war charismatisch wie kaum ein anderer und konnte sowohl als Heel als auch als Face überzeugen. Wenn man sieht wie er nach seinem Tod noch in den Köpfen der Fans weiterlebt ist das schon beeindruckend. RIP Eddie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TNA Dan Timewrote on 18.06.2009:[10.0] "Auch wenn ich die Mainstream-Produkte nicht mehr verfolge, wird er immer einer meiner Faves bleiben :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: CMFabewrote on 15.06.2009:[10.0] "Einer der besten und mein ewiger Fave. Er hat Charisma wie kein 2ter und wrestler so gut wie kaum einer. Er gehört zur Elite und ist der nicht nur erfolgreichste Mexikanische Wrestler in den USA sondern auch der beste. Einfach nur traurig das er so früh von uns ging. Immer wieder wenn ich Matche aus alten Tagen von ihm anschau bekomme ich Gänsehaut. Einfach nur eine Legende. Eddie, we miss you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Eddiewrote on 02.06.2009:[9.0] "Es gab Zeiten in denen er mir leider nicht so gut gefiel wie in der WWE mit dem Titel.. Beispiel dafür war die WCW Zeit in der er als Heel unterwegs war, zwar ein cooles, zu ihm passendes Gimmick, aber oft litten die Matches doch unter seinem Böser-Mann Charakter, dafür 1 Punkt abzug, aber 9 ist doch wohl immer nocht sehr gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BaptisteZorGwrote on 23.05.2009:[7.0] "Überbewertet durch sein frühes Ableben.  Er war ein solider, meist unterhaltsamer überdurchschnittlicher Midcarder.  Dennoch war er kein Ausnahmetalent des SportsEntertainment und somit gibts gute 7Pkt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Afroman Undertaker 619wrote on 22.05.2009:[10.0] "Eddies Frog Splash ist ein wundervoller Finisher nur schade das er gestorben ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The-Game91wrote on 12.05.2009:[10.0] "Der beste Mexikaner den die WWE jemals verpflichtet hat. Er war ein toller Wrestler und dazu noch Bomben Charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: RIKYwrote on 01.05.2009:[10.0] "Und wenn es eine 100 Punktewertung geben würde dann gäbe es 100 Punkte! Er wird schmerzlichst vermisst."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Masterpiece15wrote on 03.02.2009:[8.0] "Klar, er war nicht schlecht und konnte unterhalten. Jedoch wird er mMn durch seinen zu frühen Tod zu hoch eingestuft."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Father Nelsonwrote on 01.02.2009:[10.0] "He had so much talent! So entertaining. But he couldnŽt fight his demons!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Batista619wrote on 12.01.2009:[10.0] "Eddie ist für mich eine wahre Legende, denn Eddie war der erste Mann den ich beim Wrestling lieb gewonnen habe. Dies geschah auf seine witzige Art und sein gutes Können im Ring.  Einfach viel zu früh verstorben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: CM Dannywrote on 10.01.2009:[9.0] "Eddie ist das Paradebeispiel für das, was bei WWE nicht stimmt. Erst als er deutlich an Muskelmasse zulegte, kam der verdiente Push in den Main Event. Dabei schaffte er es, von Geschwindigkeit und Wendigkeit nicht allzu viel einzubüßen. In Sachen Entertainment natürlich einer der ganz Großen und daher trotz Heel-Aktionen unglaublich beliebt. Eddie bleibt unvergessen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: hatebreederwrote on 08.01.2009:[10.0] "Eddie war ein Wahnsinnswrestler und ein super Entertainer. Es ist wirklich traurig, dass er damals gestorben ist. Hätte sicher noch den einen oder anderen Worldtitle verdient gehabt. R. i. P. Eddie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Unrated Superstarwrote on 04.01.2009:[10.0] "Viva la Raza! Gefiel mir sowohl als Face wie auch als Heel sehr gut. Hatte zudem überzeugendes Mic-Work und starke Ring-Fähigkeiten. Wäre er nicht gestorben, wäre er 100pro World Heavyweight-Champion geworden. Eine Frechheit, dass Leute wie Chavo, Vicky und Rey versuche, aus seinem Tod noch Kapital zu schlagen. Seine Matches bei SD! waren es 2005 die mich u. a. endgültig zu einem Wrestling-Fan gemacht haben. PS. : Eddie gewann den WWE-Titel bei "No Way Out '04" und nicht bei Wrestlemania!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Excellence of Executionwrote on 02.01.2009:[9.0] "Hat an vielen Orten und Promotions einiges bis alles erreicht. Als Black Tiger in Japan mehr als sehenswert. Die Krönung seiner Karriere war wohl der Titelgewinn bei Wrestlemania. Er hätte noch lange im Main Event eine Rolle spielen können - da bin ich mir sicher. Doch leider sollte es anders kommen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ScrWwe94wrote on 18.12.2008:[10.0] "Braucht man nichts sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Huzerwrote on 18.12.2008:[10.0] "Super Mann, ich liebe ihn. Der bester Wrestler der gelebt hat. Viva la raza."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Amazing Bluewrote on 06.12.2008:[10.0] "Ich werde mich immer an Eddie erinnern, er hatte Charisma UND Ring-Skills wie kein Zweiter. Rest in Peace Eddie, we all miss you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Blazewrote on 05.12.2008:[10.0] "Eine absolute Ikone und der geborene Entertainer. Egal ob in Mexiko, Japan, ECW, WCW oder WWE, dieser Mann hat immer alles bis auf's letzte gegeben. An jeder Show mit, jedem Gegner hat er einfach immer wieder sehr gut überzeugen können. Er ist zwar kleiner als die meisten der WWE Worker gewesen, aber seine Mic Fähigkeiten und unglaubliches Charisma haben ihm neben dem wrestlerischen Können geholfen sich perfekt unter den anderen durchztusetzen. Viele sehen im Ring mit ihren Titeln gut aus oder dabei wenn sie irgendwelche Jobber squashen. Eddie war genau wie ein Benoit einfach die Verkörperung des modernen Wrestling, so wie es sein sollte. Ich hätte mich wirklich riesig gefreut wenn anstatt von einem Triple H, Bill Goldberg oder auch einem Batista öfters jemand wie Eddie im Main Event als World Champ gestanden hätte. Aber WWE ist halt ein Kinderprogramm, wo die großen, schwergewichtigen und monströsen Wrestler das Sagen haben, daran kann man nichts ändern. Schade nur, dass die Zeit mit ihm als Wrestler so kurz war, vor allem wenn man bedenkt, dass er kurz vor dem erneuten World Titlegewinn stand. Eddie Guerrero: Rest In Peace!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Chris Herowrote on 01.12.2008:[10.0] "Es wurde sicherlich zu viel Hype gemacht nach seinem Tod, bis hin zum Heavyweight-Titel-Gewinn von Rey Mysterio, das war sicherlich übertrieben. Nichts desto trotz, Eddie war immer unterhaltsam, hat immer tolle Matches abgeliefert und war vielleicht der beste Schauspieler, den die WWE je hatte. R. I. P. Eddie, we will never forget you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DayJay2kwrote on 26.11.2008:[6.0] "Einer von vielen und durch seinen Tot einfach nur überbewertet. Nicht schlecht aber auch nicht eine eins."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: SirJohnsonwrote on 22.11.2008:[6.0] "Fand ihn nicht wirklich gut. Mittlere MIttelmaß für mich. Gegen Mysterio und Angle war er gut besetzt, sonst unnötig..."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DXstarF5wrote on 13.11.2008:[10.0] "Ich möchte nur mall sagen das die Wertung von muecke gelöscht werden solte. Sie weicht sehr stark von den anderen Wertungen ab! . Und zu Eddie Guerrero er war einer der größten Wrestler er war sehr gut im Ring und hatte unglaublich viel Charisma. Er war unglaublich und hat einen mitgerissen sowas habe ich heutzutage bei keinen anderen Wrestler mehr. deswegen 10. P RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: squadra3wrote on 06.11.2008:[9.0] "Ein größer Entertainer (wie man ja jetzt sagen muss) aber die 10 gibt es nur für die größten, und da gehört er nicht ganz dazu. Wird aufgrund seines Ablebens von vielen überqualifiziert!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: stingersplashwrote on 05.11.2008:[7.0] "Er ist natürlich viel zu früh verstorben, aber ich kann dafür keinen bonus geben.  Bei ihm ist der funke zu mir irgendwie (leider) nie so richtig übergesprungen.  Sicherlich ein Top-wrestler und auch am mic sehr stark, aber wie gesagt, ich war nie ein großer fan von ihm. Für seine Fähigkeiten und das für ihn perfekte gimmick gibts aber immernoch eine 2-3."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: real americanwrote on 05.11.2008:[9.0] "Ein guter Techniker und vor allem ein Gott am Mic, durch seinen fruehen Tod aber ein bisschen ueberglorifiziert. RIP Eddie Guerrero!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Animal360wrote on 22.10.2008:[10.0] "Er lebte dieses Business und spielte seine Rollen immer erstklassig. Seine Art machte ihn Legendär und deshalb kann es nichts anderes als eine 10 geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Adamlewrote on 05.10.2008:[10.0] "Er gehörte wohl zu den beständigsten und besten Heels des Sports Entertainment. Einfach nur ein genialer Wrestler. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: mugel 187wrote on 04.10.2008:[10.0] "Wrestlerisch war er einer der besten den es im Mainstream Wrestling gab und am Mic einfach perfekt (gerade als Heel)!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MrWrestlingwrote on 30.09.2008:[10.0] "Er ist einer der besten Wrestler aller Zeiten. Ruhe in Frieden"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: doggdropwrote on 19.09.2008:[10.0] "Der Beste Latino-Wrestler der jemals einen wwe Ring betreten hat!!! im Ring war er top, er sprühte nur so mit charisma und am mi war er ein Gott-.  Ruhe In Frieden Eddie Guerrero"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MICHAELAundMARKUS4EVERwrote on 19.09.2008:[10.0] "RIP Eddie. Ein klasse Wrestler und Entertainer der sein Leben in den Griff bekam und deshalb meinen höchsten Respekt genießt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Wise Warriorwrote on 15.09.2008:[8.0] "War gut und charismatisch, aber nicht beliebig einsetztbar."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Julezwrote on 07.09.2008:[10.0] "Er zog das Publikum regelrecht in seinen Bann. Sie bejublten ihn egal ob Heel oder Face.  Die Fans liebten ihn einfach. In dem Sinne: Viva la Raza und R.I.P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: chimpwrote on 03.09.2008:[8.0] "Gut ja, aber doch ueberbewertet. Sein viel zu frueher Tod ist tragisch, hat ihm aber einen Legendenstatus eingebracht, den er sonst sicher nie erreicht haette."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: King of Queenswrote on 27.08.2008:[9.0] "Im Ring klasse, ebenso wie am Mic. Dazu sehr charismatisch und mit guten Gimmicks - egal ob als Heel oder Face. "
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MarcoR3wrote on 23.08.2008:[10.0] "Spitzen Stil, tolle Gimmik. Viva la raza Eddy. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: nicojansonwrote on 18.08.2008:[10.0] "Super Kerl, viel zu früh von uns gegangen. Hab ihn immer gern gesehen und fand seinen Spruch (bzw. Gimmick) spitzenklasse. Die Fehde gegen Rey war zwar nicht wirklich toll, doch da konnten beide ja nix für. Eddie 4Ever. I lie I cheat I steal, ja man!!!!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rated-RKOwrote on 12.08.2008:[10.0] "Er war ein super Mann das Match zwischen ihm und Brock Lesnar wo er sich dann den Titel holen konnte werde ich nie vergessen. Sowohl als Face als auch Heel super er verdient 10 Punkte  R.I.P VIVA LA RAZA"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Reyforever1wrote on 07.08.2008:[10.0] "Klasse Wrestler!!!Leider viel zu früh verstorben. Danke Eddie R.I.P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Fanthaizawrote on 05.08.2008:[10.0] "Einer der größten Wrestler. Super Technik,super Micwork,klasse Gimmick, super Fehden und auch guter Karriereverlauf. Hat es in fast allen großen Promotions geschafft und einige unvergessliche Momente zurückgelassen! Einer der ganz großen!    RIP  Latino Heat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: wXw Fanwrote on 25.07.2008:[9.0] "Sehr gutes Gesamtpaket, aufgrund seines leider viel zu frühen Todes sehr overrated."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Fliplippwrote on 24.07.2008:[8.0] "yeah Latino Style aber leider hat er jam drogen genommen und so     aber trotzdem find ich ihn gut"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BlackPhoenixwrote on 19.07.2008:[10.0] "Eddie War und Ist der Größte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: StoneColdRevowrote on 18.07.2008:[10.0] "Einfach eine Legende. Ich mochte besonders seine Comedyszenen. Besonders wo er Kurt Angle verarscht hat. Das war genial! Er hatte auch noch richtige Moves, was ja heut nicht mehr so üblich ist. Viel zu früh gestorben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Riley Mathewswrote on 29.06.2008:[10.0] "Er ist und bleibt einer der Besten allerzeiten denn er hatte alles was man in diesem Business braucht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ecw foreverwrote on 22.06.2008:[10.0] "Ein Kompletter Wrestler!! Ich sage das nicht weil er Tod ist sondern weil ich es so meine. Er konnte Richtige Old Shool machen siehe gegen Low Ki(Liga vergessen^^).Er konnte das Lucha Wrestling siehe WCW. Er konnte immer überraschen immer was neues zeigen. Leider durfte er nur selten sein ganzes Potenzial bei WWE ausschöpfen. Er war der geborene Entertainer man muss sich nur die ganzen Segmente anschauen. Sein Gimmick ist auch genial. Dieser typ war wie oben gesagt ein KOMPLETTER Wrestler. Ich vermisse ihn"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Tomkowrote on 24.05.2008:[8.0] "Ordentlicher Worker.. Nicht mehr und nicht weniger.. "
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Beastwrote on 17.05.2008:[10.0] "Latino Heat still burn! "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: homicidal cena michaelswrote on 12.05.2008:[10.0] "Hat mich immer unterhalten , er war ein wirklicher Entertainer, lustig aber auch ein klasse Wrestler. R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rated HHHwrote on 17.04.2008:[10.0] "Nahezu Perfekter Wrestler mit allem was man sich als fan wünscht. Viva La Raza !!! We miss you Eddie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Fran7iCwrote on 12.04.2008:[10.0] "Bester Wrestler den es jemals gab. Seine "I lie, I Cheat, I steal"-Comedy war grandios!  RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: mallberrywrote on 07.04.2008:[10.0] "cheat to win"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: asdfwrote on 07.04.2008:[10.0] "der beste aller zeiten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ultimate-warrior-xwrote on 03.04.2008:[10.0] "EG war einer der besten Entertainer des Wrestling. Sein Gimmick war eines der besten die es im Wrestling gab. Dazu noch das Charisma von EG und seine Fähigkeiten im Ring und schon hat man den perfekten WWE-Superstar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Perry Coxwrote on 22.03.2008:[10.0] "Ein sehr guter und beliebter Wrestler, der Tod hat ihn so tragisch getroffen!  R. I. P Eddie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Latino Heat Fanwrote on 20.03.2008:[10.0] "Du warst der beste du hast alle techniken beherrscht we miss you   R.I.P. Latino Heat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ZuluBunsenwrote on 19.03.2008:[10.0] "Kaum zu glauben, dass es schon zweieinhalb Jahre her ist. Die Begründung ist wohl klar: Ein Worker, der Zeit seines Lebens alles gegeben hat und mich, seit ich als gaaaanz kleiner Mark die WCW auf DSF gekuckt habe, begeistern konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DonTwrote on 17.03.2008:[10.0] "Ein Charisma, das seines gleichen sucht, verbunden mit einer wunderbaren Technik. Eddie - we miss you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Maikwrote on 15.03.2008:[10.0] "Eddie war immer mein Lieblingswrestler... Ich weiß noch als ich in der Schule im Internet war und gelesen hab das er gestorben is, ich hätte fast geheult. Er war im Ring super und sein Gimmick war auch immer klasse, hat mir als heel und auch als face gefallen. Echt schade das es nicht zu einer zweiten World-Titel-Regentschaft gekommen is, er hätte es verdient gehabt..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: guy whithout a namewrote on 14.03.2008:[10.0] "we miss you legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MINOtauruswrote on 10.03.2008:[10.0] "In meinen Augen DAS Zugpferd von SmackDown! von 2004 bis zu seinem viel zu frühen Tod.  Ein wirklicher Allrounder, der einfach alles glaubhaft rüberbringen konnnte; egal ob er Heel war oder Face."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Felice-del-mondowrote on 02.03.2008:[10.0] "Viva La Raza- Promos und Comedy Segmente einfach klasse, Ring-Performance einzigartig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TheMasterpiece87wrote on 21.02.2008:[10.0] "Verdientermaßen ein Hall of Famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Staniwrote on 21.02.2008:[8.0] "Ein guter Wrester, der leider zu früh ging. Konnte sehr oft überzeugen aber enttäuschte auch sehr oft. Er brauchte sehr lange, um ein für sich im amerikanischen Mainstream passendes Gimmick zu finden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: wayne666wrote on 01.02.2008:[10.0] "Eddie war die Lie-Cheat-Steal Geschichte quasi auf den leib geschrieben!  keiner kann sowas so geil rüberbringen wie eddie es konnte! RIP Eddie VIVA LA RAZA"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Stone Cold Andywrote on 04.01.2008:[10.0] "Es macht mich immer noch traurig, an ihn zu denken. Ein ganz großer Wrestler, der in meiner Anfangszeit als Wrestlingfan bei SmackDown! die Bude gerockt hat. Mit dem mexikanischen Gauner ein großartiges Gimmick und super Leistungen machen Eddie wirklich unvergesslich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MA Excellentwrote on 29.12.2007:[8.0] "Eddie Guerrero, viva la Raza... Noch heute bin ich etwas traurig, wenn ich etwas über ihn lese oder noch mal ein Match von ihm sehe. Das erste Mal fiel Eddie mir auf, als auf Eurosport asiatisches Wrestling zu sehen war und er gemeinsam mit Chris Benoit antrat. Ich dachte damals "Wow, warum holen die nicht mal solche Leute zur WWF!". So sollte es ja dann auch kommen. Er gefiel mir in den WCW Zeiten auch sehr gut, die Comedy Phase als Latino-Lover der WWF war genial wie auch die 'lie, cheat, steal' Zeit. Später dann, als man ihn in den Mainevent gepusht hat: HISTORY WAS MADE! Der Sieg gegen Brock Lesnar ist einer der besten Momente ever, genau wie der Wrestlemania Sieg gegen Angle mit dem Abschlussbild zwischen ihm und Chris, da war Wrestling wirklich mal rea"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: AMMOwrote on 20.12.2007:[10.0] "Möchte ich nicht mehr zu sagen. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Texas Tornardowrote on 17.12.2007:[10.0] "Fand ihn immer gut und lustig.Ein super Wrestler. War sehr traurig als mich die nachricht erreichte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Alan Smitheewrote on 19.11.2007:[10.0] "Eddie gehörte, zusammen mit dem rest der Radicalz, zu den Ersten Wrestlern die ich allein aufgrund des In-Ring-Talents gerne gesehen habe und in den letzten Jahren seiner Karriere hab ich dann auch den rest seines Total Package lieben gelernt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: xXJohnCenaXxwrote on 06.11.2007:[10.0] "R.I.P Eddie Guerrero - Legenden sterben nie und du warst eine Legende.Wir werden dich nie vergessen. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: antihiphop2002wrote on 29.10.2007:[10.0] "Ich war ganz schön fertig als ich von seinem Tot erfuhr. Hat mich immer begeistert. Einer der Besten im Ring, Charisma wie kein anderer, am Mic auch super klare note 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rated-R-Fanwrote on 29.10.2007:[8.0] "Er wurde meiner Meinung nach zu lang in der Midcard eingesetzt.Doch nach seinem Titelgewinn gegen Lesnar durfte er endlich seine Klasse unter Beweis stellen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: WCWlerwrote on 26.10.2007:[2.0] "Er hat mich nie unterhalten. Seine Matches waren nicht schlecht aber ich konnte mit ihm nie was anfangen. Weder in der WCW und schon gar nicht mit den sehr schlechten Storylines in der WWE."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Frommeltwrote on 15.10.2007:[10.0] "Ich vermisse ihn. Er war immer einer meiner Lieblinge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: HHH-Stephwrote on 12.10.2007:[8.0] "Ich muss sagen er war ein sehr guter Worker mit ner Menge Charisma und guten Ringfähigkeiten. Trotzdem muss ich sagen, dass ich es nicht gutheißen kann, dass, als er gestorben ist, auf einmal Jedermanns Lieblingswrestler geworden ist. Trotzdem ein guter Wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Hunter2007wrote on 04.10.2007:[10.0] "Unterhaltung vom Feinsten! Eddie hat in vielen Matches geschummelt, mal wurde er auch dabei erwischt, aber es war immer unterhaltsam. Das erste Match, dass ich im Wrestling überhaupt geguckt habe, war 2005 ein Match zwischen Rey Mysterio und Eddie. Ich hatte keinerlei Ahnung davon, doch Eddie hat mir sofort im Kampf und am Mic gefallen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Oli10wrote on 03.10.2007:[8.0] "Sehr geil! Coole Show! Latino Heat!!!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Matt Hardywrote on 03.10.2007:[10.0] "Ich galube ich vermisse keinen anderen Wrestler so wie ihn... Er war ein genialer Wrestler, konnte im Mic unterhalten und war einfach unglaublich charismatisch... war... leider... R. I. P. Eddie, nur die besten sterben jung.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Manuelwrote on 30.09.2007:[10.0] "Er war einer der ganz großen. 2004 war er mein absoluter Fav Wrestler, aber dann die Fehde gegen Rey fand ich nicht so gut. Aber trotzdem gibt es die volle Punktzahl, da er mich immer wieder mit seiner Comedy unterhalten hatte. R.I.P. Eddie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Scotty 2 Hottywrote on 20.09.2007:[8.0] "Habe Eddie immer sehr gerne gesehen. Lieber als Heel als, als Face. Sein Match und Titelgewinn gegen Brock Lesnar von No Way Out 2004 bleibt jedenfalls unvergessen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DannyGeigwrote on 06.09.2007:[10.0] "War einer der besten Superstars die es gegeben hat, auch heute kommt noch kein Superstar an Eddies Komik heran, auch sein Micwork und seine Action im Ring war begeisternt. Eddie lebt in den Herzen der Fans weiter und wird denk ich mal auch da immer einen Platz behalten. RIP Eddie Guerrero"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Berndwrote on 29.08.2007:[10.0] "Einer der besten Wrestler, die ich je gesehen habe. Unschlagbar als Heel, selbst Schwachsinn wie Latino Heat hinderte ihn nicht daran over zu werden und was er im Ring machte ergab einfach einen Sinn. Ich vermisse ihn einfach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Mirawrote on 28.08.2007:[8.0] "Wirklich wirklich gut, aber dennoch gibts immer noch einige wenige, die für mich persönlich diesen kleinen Kick besser sind oder waren.Und vielleicht ist das jetzt pietätslos, aber Zitat B A Billy Gunn "... naja , Rest in Piece" - LOL, bin fast vom Stuhl gekippt!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: shannonmoorewrote on 17.08.2007:[10.0] "Blühte erst gegen Ende seine Laufbahn auf was Comedy betrifft. Ein großartiger Wrestler und einer der dem immer etwas daher hinkenden Smackdown Brand die Treue hielt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Blue Meaniewrote on 04.08.2007:[10.0] "Sehr guter Worker in jeder Hinsicht. Gimmick, Mic Work, In-Ring Skills, alles an ihm war spitze! Ob er nun durch seinen frühen Tod overrated ist, sei mal dahingestellt. Fakt ist, dass er wirklich gut war in dem was er tat und ich denke, dass kann keiner abstreiten! RIP Eddie Guerrero 1967-2005. I will never forget you and I will always miss you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Jannikwrote on 27.07.2007:[10.0] "ein außnahme wresler und einer der wenn nich sogar DER beliebteste wrestler aller zeiten...man merkt wie sehr eddie smackdown fehlt(bestes beispiel ----> the great khali ist champion)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Blade Bourdeauxwrote on 02.07.2007:[10.0] "Immer wenn ich ihn sah, musste ich sofort lachen. Er war einfach extrem witzig und ein Worker, den man mögen musste. Dazu kamen seine Extraklasse im Ring und das Lügen, das Stehlen und das Betrügen. Ganz klare Note 1"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ShaneOwrote on 28.06.2007:[8.0] "Ich mochte Eddie. Im Ring war er gut, am Micro hat er mich auf gut gefallen. Zweimal gut - ergibt - 2! RIP Eddie"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: HCN007wrote on 24.06.2007:[10.0] "DER GRÖßTE MEXIKANISCHE WRESTLER ALLER ZEITEN-WAR SCHON ZU LEBZEITEN EINE LEGENDE; DIE FÜR SICH SPRACH-SMACKDOWN HAT ZU FRÜH IHREN GRÖßTEN STAR VERLOREN EDDIE- I MISS YOU"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Adrammelechwrote on 24.06.2007:[6.0] "Durch den überraschenden Tod ist er meinre Meinung nach überbewertet! Trotzdem respektabler Sportler."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Keiner hatte so ein Showtalent wie Eddie! Außerdem war sein Gimmick und seine Leidenschaft für das Business einzigartig! Eddie 4 life!!! I lie, I cheat, I steal..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ABOOgeymanwrote on 24.06.2007:[10.0] "Eddie war einener der besten im gesamten Business, egal ob im Ring oder am Mic und sein Gimmick war natürlich auch einfach nur genial!!!R.I.P, vielleicht sieht man sich ja eines Tages ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TugayGwrote on 24.06.2007:[10.0] "Einer der besten. Charisma volle Punkt Zahl; Mic volle Puntkzahl und Im Ring fast volle Punktzahl. Einer der nach ganz oben gehört und heute wahrscheinlich WHC wäre. Einer der nur das beste verdient. I miss you Eddie :-( "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: wrestler of the worldwrote on 24.06.2007:[10.0] "Er war einfach der beste! Seine Matches habe ich immer gerne angeguckt und sie waren auch sehr lustig, vorallem mit den Latino Heat Style. Schade, dass er so schnell von uns gehen musste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MrFoxwrote on 24.06.2007:[8.0] "Eddie ist einer meiner Lieblinge. Guter Wrestler & Entertainer. Aber trotzdem glaube ich das er wegen seines Todes oft zu hoch gelobt wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Chris Cagewrote on 24.06.2007:[10.0] "Da schließ ich mich an, auch ich habe wegen Eddie im Jahr 2004 angefangen Wrestling zu schauen. Niemand wird jemals Eddie erstetzen können. R.I.P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Mr Wrestlemaniawrote on 24.06.2007:[10.0] "Viva La Raza!!! wir werden ihn nie vergessen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: hostrodwrote on 24.06.2007:[10.0] "Dieses Schlitzohr war das Beste, was ich im Wrestling je gesehen habe! Mein absoluter Lieblingswrestler, unvergessen sein Titelgewinn bei No Way Out 2004 gegen Brock Lesnar und die Szenen bei Wrestlemania 20 mit einem feiernden Benoit. Das war der letzte große Vorhang für einen Mann, der leider viel zu früh gehen musste. Der Promo-Wallpaper von No Way Out 2004 ("Wanted for: Lying. Cheating. Stealing.") ziert auch heute noch meinen Desktop - so möchte ich ihn in Erinnerung behalten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: timbo7111wrote on 24.06.2007:[8.0] "Super Wrestler, leider habe ich ihn zu WWE-Zeiten nicht erleben dürfen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Furyawrote on 24.06.2007:[10.0] "Wirklich einer der besten Wrestler, er hatte einfach von allem etwas. Er war stehts witzig und konnte als Hell wie als Face überzeugen. Einfach einer, der viel zu früh von uns gegangen ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ShakDragoonwrote on 24.06.2007:[10.0] "Super-charismatischer Wrestler, der leider viel zu früh verstarb! R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Charismabombe, hervoragender Techniker, fantastisches Gimmick - was will man mehr...Eddie Guerrero Rest in Peace!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Raywrote on 24.06.2007:[8.0] "Für mich hatte er seine beste Zeit als Black Tiger und wurde danach immer schwächer. Sein WWE-Gimmick war wirklich ein sehr Gutes, aber für mich konnte er dann nie wieder an seine Glanzzeiten in Fernost anknüpfen. Trotzdem zu jeder Zeit ein überdurchschnittlicher Wrestler, der von jedem Attribut her in den Main-Event gehörte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Steven McWheelerwrote on 24.06.2007:[8.0] "War ein Supertyp,doch leider nach seinem viel zu frühen Tot,overrated,was ich auch nicht so toll finde,da man den Styler Eddie so in Erinnerung behalten sollte wie er war...R.I.P"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Bullit69wrote on 24.06.2007:[10.0] "Einer der Top 10 Wrestler aller Zeiten!!Leider zu früh von uns gegangen! R.I.P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Babuswrote on 24.06.2007:[8.0] "Super Wrestler und guter Entertainer, der leider viel zu früh von uns gegangen ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: UltimateCarebearwrote on 24.06.2007:[6.0] "In meinen Augen einfach nur unglaublich überschätzt. Seine Leistungen in Japan waren ohne Zweifel hervorragend doch danach gehörte er für mich immer höchstens zum Durchschnitt und es gab wohl niemanden der mir so wie er auf die Nerven gegangen ist, egal mit welchem seiner Gimmicks."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Carlito Cenawrote on 24.06.2007:[10.0] "Der "Mexicaner" schlechthin. Sein Cheat, Lie and Steal-Image konnte er so perfekt verkörpern wie kein anderer. Erstklassiger Wrestler, der leider auf dem Höhepunkt seiner Karriere die Früchte seiner Arbeit nicht mehr wirklich erleben konnte. WeŽll miss you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: wrestlingswiftiewrote on 29.01.2025:[8.0] "A little overrated, but still very good. I prefer him over The Rock, but that doesn't mean I prefer his half of the Attitude Era over The Rock's. It was repetitive, trash TV. Imagine Jerry Springer with short phony looking punches-and-kicks matches (and DQ finishes.) But back to Stone Cold himself, he was solid. Once again he is a little overrated, but it's mainly by dads who wanna relive the glory days. Pre-Rattlesnake Austin was decent in the ring, but once he went to the WWE, and got that neck injury? His match quality drastically decreased. As far as promos go, he actually was good as his famous Rattlesnake gimmick, it's just that he was just better when he was on the come up instead of when he was the top guy. The Bret match, the raw and authentic promos, I'm talking about that sweet spot from 1996-'97. But when he became the face of the company, he, much like his era, was just too repetitive to be enjoyable."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: notanothersmarkwrote on 23.01.2025:[10.0] "Can't put this any other way besides the single GREATEST wrestler to ever walk the face of this planet. He had EVERYTHING you could ask from a wrestler and more, the star power, the intensity, the toughness, the entrance, the aura, the charisma, the in-ring ability. Stone Cold will forever be the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Anas Kingwrote on 20.01.2025:[4.0] "Probably the biggest draw in pro wrestling ever. I believe he's the only wrestler who sold more merchandise than John Cena at their peaks. He wasn't a heel, he wasn't a typical babyface. He was just a badass. There's no one in the history of wrestling that used to get or gets the pops that he got in his time. Having said that, he was an average wrestler. Yes, there were some matches that were very good. But overall, his match catalogue doesn't excite me. Except for his 3:16 and a couple other promos, his mic work was also average."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 77mega6wrote on 19.01.2025:[9.0] "Stone Cold Steve Austin is the definition of "badass." The dude had an attitude that shook the entire wrestling world. His rebellious spirit and iconic "Austin 3:16" quotes are timeless. Watching him smash beers and take on the corporate world was like living a rockstar fantasy. He embodies the whole punk vibe of wrestling that resonates with anyone who wants to stick it to the man. An absolute legend in every sense!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Its Clobbering Timewrote on 10.01.2025:[10.0] "The Greatest babyface in the history of professional wrestling. Nobody was able to get the crowd to go crazy quite like Stone Cold. Once that glass shatters the whole place goes nuts and starts freaking out. Stone Cold is the most iconic wrestler of all time, from him pushing Mike Tyson, his feud with Vince & The Rock and of course him chugging beer. He has the most famous segments of all time. The Texas Rattlesnake is also amazing on the mic and in the ring, his Austin 316 promo is one of the greatest promos of all time. He's also had some banger matches with the likes of The Rock, Bret Hart, Triple H & Kurt Angle. Austin is also a 3x Royal Rumble Winner, 4x WrestleMania Main Eventer, 6x WWF Champion, 2x Intercontinental Champion, 3x WCW United States Champion, 4x Tag Team Champion & 1x King of the Ring. Stone Cold Steve Austin is without a doubt on the mount Rushmore of Wrestling. He might even be the Goat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: limvurawrote on 10.01.2025:[10.0] "The GOAT. The reason that WWE beat WCW. When that glass breaks, it's your ass. More iconic moments have happened involving SCSA than anyone else in the business. It's a shame that Owen botched that pile driver because Austin probably had 3-4 years left in the tank. Austin vs Cena, Batista, Orton, would have all been money."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LJED1983wrote on 26.12.2024:[10.0] "The only wrestler that provided me with the feeling that we were about to see a real fight. The intensity this man had has not been replicated or matched. If only wrestlers today had his kick-ass attitude. The best character ever in wrestling, and a damn good wrestler too. Simply awesome!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 5GumGuywrote on 02.12.2024:[10.0] "Pound-for-pound, the undisputed greatest wrestler of all time. You want the full package? This is the man right here, because there isnt a damn thing he cant do, and thats the bottom line because Stone Cold said so."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: AceHagannwrote on 26.11.2024:[10.0] "The undisputable greatest wrestler of his time. His attitude era run isn't filled with highlights, it is a single, immense highlight. Iconic promos, iconic matches, iconic moments, he has it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ZombieBombwrote on 21.11.2024:[10.0] "Maximum aura, biggest draw in wrestling history, best promo of all time, and a great in ring worker. Stone Cold is the absolute GOAT and it's hard to argue anybody else."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ItsAllAWorkAnywaywrote on 13.11.2024:[10.0] "Don't get it twisted - The nWo were amazing and a lot of their booking helped resuscitate the wrestling industry when it was in a period of decline. Yet as the WWE were financially on the ropes, they needed to rebuild and needed a superstar. This kid from Texas named "Stunning Steve Austin" shows up after losing his job with WCW because his unrealized talent was seemingly never realized. Yet after embracing the "Stone Cold" persona, both Steve Austin and the WWE would raise themselves up to heights unseen. WWE programming went on an absolute tear in the late '90s and that's because people knew when they heard the sound of breaking glass, they knew Stone Cold was fixin' to kick some ass... And that's the bottom line!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Conquistador37wrote on 20.10.2024:[10.0] "Original Comment left on March 16th 2022: I remember him from day one in Dallas; when he was still "Steve Williams", so the nostalgia is deeply rooted. With that being said, I honestly tend to fast forward past his Stone Cold "punch brawl stomp middle finger punch brawl, stay outside the ring for 20 minutes of a 24 minute match" stuff. Prior to that - must watch wrestling, especially when he had hair! Especially any match with Bret Hart. Had off the page chemistry with Dustin Rhodes & Ricky Steamboat as well. There is also some in ring gold in 2001. Definite deductions for that whole "WHAT? " garbage though, unforgivable and beyond irritating. However, even though I fast forward through so much of the 'F stuff, and even though "What" is one of the single most WORST things in wrestling HISTORY, I still love the dude. Pre broken neck = phenomenal in ring talent, post broken neck = sports entertainment gaga, he's great at both but personally I only truly love one side of *ahem* Stunning Steve Austin. UPDATE: I deducted points before but why? He even earns bonus points for being a fantastic story teller and became an all around solid human being after he got out of the business for a while. When he was not yet severely injured, his bell to bell material ranks extremely high. I can not express how much his WCW material was/is top tier."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MatnificentMattwrote on 24.09.2024:[10.0] "In terms of entertainment, Steve Austin was the best. Whenever he made his entrance, the crowd went ballistic. He could cut the best promo and draw the crowd into everything he did no matter who he was working with. As an in ring performer he was pretty good. Before his neck injury he was a great performer and even after his neck injury, he had a brawling style that really fit the stone cold character. His presence and persona made him one of the best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kyriewrote on 21.09.2024:"One of the greatest wrestlers of all time, but unfortunately massively hampered by injuries during the peak of his career. Despite wrestling in some excellent matches in WCW and WWF, he was never the same in-ring after Owen Hart's botched piledriver. After he became WWF champion, he was de-fanged significantly on the mic, perhaps to fit in with a more goody-goody babyface image. 1996-97 Austin's allegiance was only towards himself, and he would attack anyone he pleased, face or heel. From 98 onwards however, it felt like he only went after the specific heels that wronged him - he would never go after Triple H's D-X for example, because of their babyface status. He had some iconic catchphrases, but they were all created before he became champion, outside of the obnoxious WHAT? catchphrase - compared to The Rock, who kept inventing new things month after month, year after year, it felt like Austin stagnated significantly and it's no surprise that after his surgery and return they really had no real use for Austin, as they had much better wrestlers like The Rock and Kurt Angle."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jsbortswrote on 19.09.2024:[9.0] "So Stone Cold Steve Austin is the best character that's ever been on american wrestling TV... Great promo, but as soon as he hit his peak as a character his body started breaking down, and he doesnt have the catalogue of matches to justify a very high ranking. People who enjoyed wrestling TV in the 90's will undoubtedly think of him as the greatest, and his natural charisma is off the freaking charts. His peak wasn't actually that long, and his best matches are probably in WCW against pillman and steamboat..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: SourDiesel97wrote on 29.08.2024:[9.0] "One of the greatest to ever set foot in the WWF/E . He may not of been the greatest in the ring (manly after the broken neck) but he made up for it with his charisma. If I had to rate him it would be a solid 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Chosen Onewrote on 26.08.2024:[9.0] "Er war schon gut als Stunning Steve Austin, wurde richtig interessant bei ECW und nach einer zähen Eingewöhnungszeit hat er bei der WWF endlich seinen großen Durchbruch geschafft. Selbst der Nackenbruch konnte ihn nicht stoppen, als er hoch auf der Welle geritten ist. Am beliebtesten war er während der Fehde mit Vince McMahon, aber ehrlich gesagt, fand ich ihn davor sogar etwas interessanter, als er noch wirklich "Stone Cold" war. Sein Gimmick sollte ihn so creepy wie einen Serienkiller machen und das war er. Trotzdem wurde er schnell zum Fan-Favoriten - so ist Wrestling eben. Sein erneuter Heel-Turn im Jahre 2001 gilt allgemeinhin als Fehlschlag, aber den Run fand ich auch gut. Er hat zwar mit dem bisherigen Verlauf von Storylines wenig Sinn ergeben (besonders seine Beziehung zu Triple H - von bitteren Feinden bis zu Tag Team Champions), war an sich aber auf einem handwerklichen Level extrem gut und auch wieder näher am ursprünglichen Konzept des Stone Cold-Gimmicks. Mir hat dieser Heel-Run tatsächlich sehr gut gefallen und das obwohl ich im Voraus bereits davon gehört hatte, wie schlecht er doch angeblich sei. Stone Cold war im Jahr 2001 sehr phsychotisch und aggressiv, selbst zu seinen Verbündeten und das hat ihn wieder interessant gemacht, und sein ständiges Einschüchtern anderer Leute mit "What? " war unglaublich witzig. Der wahre "Downfall" Austins kam erst im Nachhinein, als er wieder Face geturnt ist und eine langweilige Fehde mit Ric Flair hatte. Sein Charakter ist einfach stagniert; ein Bier trinkender Redneck zu sein ist eben nichts, was für immer interessant sein kann. Austin beendete seine Karriere nicht nur zu früh, sondern auch auf einem Tiefpunkt und deshalb kann ich ihm keine 10 geben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: tyotewrote on 16.08.2024:[10.0] "Steve Austin's impact on the business could never be overstated. In terms of notoriety, impact on the wrestling business, pop culture crossover during his peak, and putting butts in seats, it's hard to argue against Austin being the greatest professional wrestler of all time - all other considerations are fighting for the tie, but there is no clear superior, and likely never will be. And, uh, that's the bottom line."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Willie 19200wrote on 28.07.2024:[10.0] "A man who in my opinion, saved the wrestling business in the United States. He would put on must see television and make everything he was apart of feel important. Plus his in-ring work is underrated, sure not all of his matches are technical masterpieces but he still put on great matches with the likes of Bret Hart, The Rock, Shawn Michaels, Ect. Also the fact that he was so over with the crowd just made him so much fun to watch and I always enjoy Stone Cold."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: BizarroMaskwrote on 27.07.2024:[6.0] "A bit overrated but a good fella who makes very entertaining moments and his character makes him very lovable. But on in ring quality it in the lower average , great finisher but sometimes botched. He is like a cool version of the sandman , maybe a more hardcore side could have been intressting back in the day."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: crs285wrote on 04.07.2024:[9.0] "Stone Cold is one of the most charismatic wrestlers pro wrestling has ever seen. His feud with Mr McMahon defined an era in professional wrestling history. In the ring he was a great brawler and he had abilities to go with just about anyone and make it good. His WCW run proves the problem that WCW had with young talent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: twinkertonwrote on 24.06.2024:[10.0] "Easily the greatest "sports entertainment" style wrestler in history. His storylines with McMahon and the Rock were two of the best in the history of the medium. Easy 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Big R3d Mach1n3wrote on 17.06.2024:[10.0] "This man single-handedly changed the trajectory of how successful the WWF was going to be, I'd argue there'd be no WWE without Stone Cold Steve Austin which made me so disappointed when he didn't show up at WrestleMania XL."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: RealGrapsThomsenwrote on 26.05.2024:[10.0] "Stone Cold Steve Austin is honestly one of the all times greats in the industry. His in ring ability can range from brawling to wrestling an all time classic. He was one of the most over wrestlers in his time and still is. His character defined a whole era in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ultravioletshiroiwrote on 17.04.2024:[10.0] "One of the most over wrestlers in WWE history and for a good reason. When his music would hit in the late 90s the man would get a pop like no one else. Stone Cold matched his in-ring intensity with excellent mic work and charisma. Unfortunately he had to retire early due to an awesome injury he sustained to his spinal cord."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 2pt0EcoBoostFusionwrote on 16.04.2024:[10.0] "I don't think there's any reason to rate Steve Austin lower than a 10. Like many other wrestlers who I have given a 10, Austin is definitely deserving of getting such honor. He has always played his characters well, was a great wrestler, especially before the tragic piledriver injury he suffered in 1997, and always got a crowd behind him. I view him as the KING of the Attitude Era, I remember a few years ago watching his Attitude Era clips on YouTube, he definitely ruled that era. He also sells a lot of merch and is always a top seller every year, talk about influence! His promos were great to listen to as well. It's a shame his career was cut short as he definitely was coming into his own league before the piledriver injury mentioned previously. He definitely is a worthy Hall Of Famer and deserves this 10 rating for defining an era, inspiring generations of wrestlers, and being the face of Pro Wrestling historically and today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DonovanBaybay229wrote on 15.04.2024:[10.0] "A self explenatory 10 he is the most popular wrestler and hottest act in the history of the business ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Bean1985wrote on 11.04.2024:[7.0] "Goat level charisma shown with his Stone Cold character. Mic skills quite good, unquestionably one of the best to ever do it. In ring not bad, but way below the excellence of other guys. Career was great but very short, I feel like it lacks consistency to consider him in the elite. I like technical wrestling and entertainment, Stone Cold gave me only the latter. Respect, but not my guy."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: BruceMarcos524wrote on 07.04.2024:[9.0] "In my opinion, the biggest megastar in all of wrestling. People would say, Hulk Hogan is the most popular WWE superstar. For me, it's Stone Cold Steve Austin. One of the pillars of the WWE's best era, the Attitude Era. One of the major guys who put the pro-wrestling on mainstream. No other wrestler can have as much drawing power as Austin. He still is the biggest merchandise seller in history. His biggest asset is his mic skills. The way he trashes talks and threatens his opponents is brutal yet cool to hear. Pre-injury he was a solid in-ring worker. After the infamous neck injury at Summerslam 1997, he relies more on his promos as his move sets are limited. Still, a pretty good brawler and the way he brawls looks like a freaking badass. Austin ushers the edgier version of WWE and became one of the most watchable shows on cable network history. One of his biggest rivalries is his fellow contemporary, The Rock. Austin and Rock in my opinion, are the biggest rivalry in the history of WWE. There are lot of copycats like Trish vs Lita, Cena vs Orton, Tanahashi vs Nakamura, but no one would match the box office rivalry of Austin vs Rock. Their rivalry truly put the Attitude Era on the map. And their matches followed-up of the call by Jim Ross and Jerry Lawler, they became iconic. Nowadays, I just don't like how they used Austin in WWE. He is just there if he wants to promote something or for cheap nostalgia but when his music or shattered glass SFX hits even after many years, the crowd will still pop out of it. An above average wrestler with solid fundamentals but A+ for charisma and promos."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Dntbamarkwrote on 01.04.2024:[10.0] "Without a doubt, besides The Rock, Hulk Hogan, Bruno and Andre the Giant, one of the greatest in-ring-performers out there. He and his rivalry with Vince McMahon defined the attitude era and without a doubt, changed the wrestling landscape forever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TripleCrownwrote on 03.03.2024:[10.0] ""Stone Cold" Steve Austin is without a doubt a member of the mount rushmore of professional wrestling. Without him, who knows what the landscape of professional wrestling would look like today. Whilst Hulk Hogan helped take professional wrestling mainstream, it was Austin who took it even further and made wrestling appeal to all demographics. Great wrestler, one of the best ever on the mic, great character, the word "average" or "bad" doesn't exist when you're talking about Stone Cold."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MasteroftheMatchGuide99wrote on 09.02.2024:[10.0] "Where do I start with this crazy man? He had it all: muscles, comedy, pain-tolerance, toughness, creativity, and could go from a beer-guzzling hell raiser to ass-kissing Vinnie boy at the drop of a hat. He also had a rivalry with Vince that catapulted WWF to an insurmountable level during the Monday Night Wars. Every week, you were asking "Who's he gonna stun this time? " His constant interference in segments were great too like interrupting William Regal's narration of Hamlet, dousing the Alliance in a can of whoop-ass, dousing the Corporation in beer, and even stunned Chyna in an unseen backstage segment in 1999. He also had great acts that did involve him like kicking Booker T's tail in a supermarket of all places, helped Mick Foley with medical bills on Day 1 as CEO, made WWE get a beer budget and oh so much more. Austin could work, could kick butt, take a butt-kicking, and work the mic on the same level as Rocky, not to mention be hilarious like when he serenaded Vince and gave Kurt a kid's cowboy hat. HOF, WON, Stanley Weston award; he's deserved it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: RusherBryan29wrote on 08.02.2024:[10.0] "The peak of pro wrestler. Mix of great character and great in ring. Always entertains me in any matches or segments of him. I also enjoy his wcw work. He is one of the most important wrestler in history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Scottielstamperwrote on 21.01.2024:"10 the highest bar in my opinion. Austin had great entertaining matches and promos. He brought in fans that never would have otherwise watched. His appeal with the fans made for great crowd reactions and interactions. In the days of the Monday Night Wars Steve was the the one I wanted to see getting even with Mr.Mcmahon.That whole fighting the system and evil bosse and raising hell show was one of the greatest stories in wrestling. His runs with Bret Hart Shawn Michaels the Undertaker Mick Foley and others of the time were always good but the emotional connection that was brought in with the Mr McMahon stuff was TV gold. In my opinion Stone Cold Steve Austin is one of the greatest if not the GOAT"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Dirty Diegowrote on 12.01.2024:"Steve Austin number 1 because I can relate so much about a guy who stands up to authority and wins the stuff he did to Vince made my joystick get hard , if I had a boss I would do a lot worse to them in real life if they tried to oppress me but thats another topic all together thats on SFS Austin had the full package in my opinion he was very believable and hilarious on the microphone and was a great technician some people think he was just a brawler with limited moves which actually made him more believable in the ring I got a buzz off him stomping a mud hole and walk it dry , but as his fans know he was one of the best technical wrestler in the early mid 80, s especially in wcw and even when he was at the top in wwf he had great technical matches with Kurt angle, Chris Benoit and triple Plus Austin and Vince rivalry made the Buisness as hot as it had ever been"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: kewf1988wrote on 24.12.2023:[10.0] "Steve Austin was a very good wrestler, as in WCW he was more technical than the brawler he was as Stone Cold, which is a testament to his talent, as doing submission holds as "Stone Cold" would have been awful and not fit his gimmick whatsoever. Despite the change in styles, he remained an amazing storyteller in the ring and was an amazing mic worker and extremely charismatic, which led the WWF to eventually take the lead over WCW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ismarizviwrote on 12.12.2023:[10.0] "He is one of main reason that wwe what is today his rivalry with Bret, Rock, Vince mcmahon were all great.But in the start of his run he has to suffer with a very bad injury on his head and he had to change his style from technician to brawler.His Wcw run was good but let be honest if he stay then he will be midcarder for life.I would suggest to watch his wcw stable dangerous alliance war games match, His three matches with rock at wm.His return fight ko is also very entertaining"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: JediSaiyanMaster1203wrote on 19.11.2023:[10.0] ""Stone Cold" Steve Austin is, arguably, the biggest icon in professional wrestling history, he did so much for the business in such a short period of time that not many could make claim to, his "Austin 3:16" shirt is still worn and sold to millions to this day after all these years later. Steve Austin has always had the "IT" factor no matter what company he competed in, even if they held him back and gave him a glass ceiling. He was amazing in the Hollywood Blonds with Brian Pillman in WCW, despite Eric Bischoff didn't want them to get over, which ultimately didn't sit well with everyone in the office and the bigger names at the time. He also was part of one of the best factions of all time, The Dangerous Alliance, having an involvement in the best WarGames match to ever take place. Steve got fired via FedEx while he was injured, thankfully, Paul Heyman hired him in ECW where he let him straight up say whatever he wanted, most of them being disses to WCW and calling out how shady Eric Bischoff was, all of it was amazing and hard to believe all happened during a time when kayfabe was alive and well. He eventually leaves ECW to go compete in WWF, where he started out as the Ring master who is managed by Ted DiBiase, which wasn't a good gimmick. Steve Austin did find his true self in 1996/1997 when he unleashed the "Stone Cold" persona and cut the legendary "Austin 3:16" promo, and truly became a star after WrestleMania 13 in his match with Bret Hart, which I consider to be the best WWE match of all time. Steve Austin then gets injured by Owen Hart by accident, has to limit his style in the ring, but still remains at the top and goes on to become WWF Champion multiple times, having classics with the likes of The Rock, Triple H, The Undertaker, Mick Foley to name a few. Sadly, his time was cut short due to the neck injury he sustained in 1997. While his time at the top wasn't the longest, his impact can still be felt to this day. Overall, Steve Austin is one of the all time best professional wrestlers to ever pick up a microphone and hit the Stone Cold Stunner on anyone (one of the best finishers as well), And That's The Bottom Line, Because Stone Cold Said So!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Hatefwrote on 13.10.2023:[10.0] "the definition of an ICON! I'm not that old to remember watching him on TV, because I was born in 1999. but when I watched lots of his historic moments, matches, promos, I gotta say that this man, literally changed the whole business! his merchandises are still in the top 10 in the WWE and he's been retired since 2003 ( I mean active presence )! Vince should thank god everyday because of this man, because he literally saved the company. is there any other record that this man hasn't broken? he's always on the top 10 clips in the attitude era. his ring skills were okay in my opinion but one thing that amazed me was that, he always had the crowd on his palms! it breaks my heart when I see that his career at the top, was only 5 years! his injuries forced him to, and I think this was the price that we had to pay, to witness the iconic legend, the one and only, Steve Austin!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LegoStar97wrote on 13.10.2023:[10.0] "One of the best wrestlers in history. Imagine an alternate reality where Austin was never fired from WCW. Not only did he become a big star in the WWF, but he saved the WWF from bankruptcy. King of the Ring 1996 and WrestleMania 13 was the rise of 3:16 Austin. He gets a Hell Yeah! /10 for me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Excellence of Executionwrote on 05.10.2023:[9.0] "Wohl die Galeonsfigur der Attitude Era schlechthin und insofern ein bedeutender Mann für die WWF/WWE. Sein Stone Cold Gimmick war sehr gut, weil er darin einfach unglaublich glaubwürdig war. Seinen Brawler-Stil hat er durch Intensität und Dreistigkeit gut rüber gebracht. Wenn der Hype gestimmt hat (was eigentlich immer der Fall war) und der richtige Gegner zur Stelle war (was leider nicht immer der Fall war), dann gab's auch gute Matches. Was mich jedoch von der Höchstbewertung für Stone Cold abhält, ist die Tatsache, dass er im Ring einfach etwas zu einseitig war, was allerdings nach seiner krassen Verletzung kaum ein Vorwurf sein kann. Er war von da an halt gezwungen, seinen Stil, der ehedem durchaus auch recht technisch war, anzupassen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: elninowrote on 02.10.2023:[10.0] "An extremely easy 10. One of the greatest pro-wrestlers of all time, around during maybe the most popular time in pro-wrestling and he was a large reason for that popularity. Killed it as a heel in early days WWF before going on the greatest face run of all time, was incredible in the ring before he got his serious injury, despite that he still managed to adjust his style and put on amazing matches that will live on in wrestling memory."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Okaro143wrote on 24.09.2023:[9.0] "Due to the many injuries he suffered, Austin didn't have a long career and his in ring work could be a bit sloppy at times but yet he was able to consistently put on some of the best matches in WWE. His match against Bret Hart at WM 13, HHH in 3 Stages Of Hell and Rock at WM 17 were some of the best matches of the Attitude Era. His character as a beer drinking , redneck, authority defying SOB got so over and he took professional wrestling to its peak. I would never say that he is the best professional wrestler of all time but he was in my opinion the biggest name in professional wrestling. Rock, Cena, Hogan, Bruno Sammartino, etc. could definitely claim to be but imo Stone Cold Steve Austin just had a little bit of an edge over them."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Teebawrote on 15.09.2023:[10.0] "He changed what it meant to be a babyface, gone were the squeaky clean smiley faces and here was a no-nonsense ass kicker. It's baffling that WWE went back to the old ways when trying to make stars because all you need is a bit of heel in you to be over with the crowd, and no one did it better than Stone Cold. He was awesome in the ring too especially in his younger WCW days, those matches with Steamboat are worth anyone's time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Undertaker4everwrote on 15.07.2023:[10.0] "Der Star der Attitude Ära ohne seine 3:16 Promo wäre das alles nie so gekommen! Seine Rivalitäten mit Vince McMahon und The Rock haben das Wrestling all für alle mal verändert!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: bigredtalk89wrote on 14.07.2023:[10.0] "No one was hotter than him in history, from 98-01 he was unstoppable. Anything lower than a 9 is disingenuous, even if you didn't like him much what he was able to do with the industry in such a short amount of time is mind-blowing. As a character, no one was better, and while he was semi-limited in the ring post breaking his neck, he still put on plenty of classics till he ended his career in 2003."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Ruthless Attitudewrote on 26.06.2023:[10.0] "Without a doubt my favourite WWE megastar and I became a wrestling fan Austin leading the Attitude Era. My favourite persona in wrestling and one of the best trash talkers ever on the mic. I think only The Rock hangs with him in that department. The sad thing is that Austin was a superstar after his broken neck, and he had to retire early in his career. Before his career shortening injury against Owen Hart, he was actually a really good technical wrestler and some of favourite matches happened around 96-97 when he was just getting popular. His Wrestlemania clash with Bret Hart is among the best Mania matches in history and brutal at a time when it was less frequent making the bloodied Austin passing out to the sharpshooter all the more impactful. I've seen some of the matches he had in WCW and while they was good, he really started to shine in his short stay in ECW cutting the kind of promos that would make him a star now. His heel turn in 2001 was ill-advised because of the poor timing, but he did still have possibly have the best year of his in-ring career with his brutal match with the Rock as well has his legendary feud with Kurt Angle just as Angle was at his peak. It's sad to know that in really, at the height of his popularity his career was always on borrowed time and who knows how things could have gone without his neck break. He is the most charismatic wrestler ever and even today it is always fascinating to listen to him telling different backstage stories in podcasts and interviews. He's an icon that completely changed the business to standards that would never be reached again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: texasyoshwrote on 18.06.2023:[10.0] "It's strange to think how truly short Austin's career was compared to his contemporaries, but in 13 years, he had a pretty stellar career. Pretty much did all a wrestler would want to do, have an excellent list of matches, working in numerous countries and companies, but also become a unanimous top guy, who legitimately changed the business for one of the biggest boom periods in American wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "Austin was a great wrestler in WCW in the earl 90's. The WWF let him ratchet up his character and he became an intense main eventer, but unfortunately, things in life don't go the way we want and that botched piledriver by Owen severly hampered his ring work going forward."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Dancerwrote on 31.05.2023:[10.0] "Legendary promo. No other wrestler held the live crowd in the palm of his hand quite like Austin ever will. A product of his time and had his issues, but I cannot help but smile during every promo I rewatch. Great in ring brawler who inspired a generation. If I ever see him live, I will gladly give him a Hell Yeah if he asks for one."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Gold Fistswrote on 18.05.2023:[4.0] "I honestly see him as overrated. His mic skills especially, they were decent but definitely not best of all time like everyone says they are. The "what" catchphrase/chant never should have seen the light of day. The stunner doesn't look all that believable unless you've got Rock taking it. His in-ring was alright but nothing to go crazy about, his brawling usually sucked. He wouldn't put people over either. He ended Kane's title reign a DAY AFTER HE WON IT. The heel turn at WMX7 is grossly overrated. Basically the entirety of the Austin 3:16 garba-I mean speech, is complete mockery of Christianity. It doesn't matter what religion you are, you can't argue how wrong it is to say stuff like that just to get fame and fortune. Judging by that and the fact that he assaulted his wife, he doesn't seem like that good of a person outside of the ring either."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: danzitorockwrote on 08.04.2023:[10.0] "Stone Cold is undoubtedly one of the greatest of all time, his run at the Attitude Era is absolutely legendary and he was the biggest draw of the company at it's prime, everything about him is great, his charisma is unmatched."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: John Brandowrote on 17.02.2023:[10.0] "Endlich kann ich auch etwas zu Stone Cold schreiben. Er ist klar einer der größten Wrestler in der Geschichte der Company ohne den die WWE wohl nie die Quotenschlacht mit der WCW hätte gewinnen können. Im Ring war er nicht der Allerbeste, sein Brawling-Style passte jedoch perfekt zu ihm und der Ära. Steve bestritt viele Klassiker gegen The Rock, Bret Hart oder Triple H. Am Mikrofon haut er mich immer vom Hocker und nimmt jeden in der Halle mit. Der gute Steve ist einer meiner absoluten Lieblinge, ich bin ein großer Fan und vergebe 10 Punkte, die wohl selten eindeutiger waren. "And that's the bottom line, 'cause Stone Cold said so! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ajsmileswrote on 31.01.2023:[10.0] "Smarks can say he wasn't that good in the ring. He was completely adequate in the ring, he was even better before Owen Hart broke his neck. Watch his match with Ricky Steamboat from WCW if you want a good Stunning Steve Austin match. But the guy proved 5 star matches don't sell. Characters and angles sell. And he was a master of building a character. I still think the Stone Cold character is one of the best wrestling personas, period. He saved the WWF from getting destroyed by WCW, cut amazing promos, was part of the best segments on Raw, sold merch like hotcakes, drew ratings, drew PPV buys, put asses in seats. The pops when he came out were insane. What else do you need? "Stone Cold" Steve Austin is my favorite professional wrestler, ever. If only that heel turn didn't happen at Wrestlemania 17, I think he could've go on a little bit longer but what are you gonna do? He was still great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LivingLegendwrote on 23.01.2023:[10.0] "Too many DQ finishes hurt his output? What does that even mean? Anyways Steve Austin is one of wrestling's most defining stars that lead the way alongside The Rock during one of, if not the biggest wrestling boom ever. He was over as all hell. Back in his early he was a pretty solid wrestler but had very minimal character or personality. While his injuries slowed him down in the ring, his character work improved drastically and he became one of the most popular wrestlers ever. While he may have not had consistent 5 star classics, that's not what his era of wrestling was about. It was about drawing fans into what you were doing and making money for himself and his employer. And Steve Austin did both of those things during his surprisingly short wrestling career. It's difficult to not give Austin a perfect score for these reasons. One of the best for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: KKeanelwrote on 11.01.2023:[10.0] "The man who defined the Attitude Era. Brawling style of his matches after a serious injury and after underrated career in Japan or WCW meant that, along with a ton of charisma, he created one of the most distinctive gimmicks. Huge respect for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MainEventMasterwrote on 02.12.2022:[8.0] "As a wrestler, he was ok to good, but all-around, he is a twice in a generation spectacle that we will never see again, the second one being The Rock."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Mcbolskywrote on 22.11.2022:[10.0] "The GOAT. The reason that WWE beat WCW. When that glass breaks, it's your ass. More iconic moments have happened involving SCSA than anyone else in the business. It's a shame that Owen botched that pile driver because Austin probably had 3-4 years left in the tank. Austin vs Cena, Batista, Orton, would have all been money."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: CommisarRobewrote on 12.10.2022:[10.0] "Stone Cold Steve Austin is possibly the most important wrestler of the modern era. His feud with Vince defined the attitude era and brought down WcW, his matches against The Rock are all time classics. The Stone Cold gimmick is possibly the greatest face gimmick in modern wrestling and the stunner an incredible finisher."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: RavenCrow75wrote on 06.10.2022:[7.0] "For the most part I will be basing my Wrestler ratings on five criteria four of which are based on in-ring ability and the last on charisma. I believe these five criteria are pro wrestling's version of Tommy Lasorda's criteria of "five points" in baseball. For pro wrestling those five criteria are power, speed, technical ability, hardcore & charisma. Steve Austin's scores: Power: 7 Speed: 5 Technical: 7 Hardcore: 9 Charisma: 7 for a total of 35 and an average of 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheOneAndOnlyCactuswrote on 29.09.2022:[10.0] "As Stone Cold, he was an amazing character with good wrestling acumen before his neck injury where he turned into a Brawler. A good brawler, but one with a repetitive style during the Attitude Era. As Stunning Steve Austin, he was a very good in-ring worker, but kind of bland as a character. As Superstar Steve Austin, he was very entertaining as a character, but barely did anything in the ring. But by and large, Steve Austin managed to adapt and grow as a character and wrestler. He has done pretty much everything"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: tiger7wrote on 05.09.2022:"One of the greatest wrestlers of all time. Having a legendary legacy that was solidified in a crucial point of the wrestling industry, the franchise player in the biggest war of Vince's company, an incredible connection with an entire generation, being a very good worker that left behind him so many awesome stories in the ring, we can easily say that Stone Cold is one of the main pillons of professional wrestling and he deserve the 10 rating."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jonsnoewrote on 22.08.2022:[10.0] "The icon of WWF Attitude Era. He is the one who carries WWF to compete with WCW, without him, WWF will not be able to beat WCW in rating during the Monday Night Wars."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Leth99wrote on 24.07.2022:[8.0] "In WCW he had the in-ring work but was bad at talking. In ECW he was amazing in the ring and a great talker. In the WWF he was an amazing talker and bad in the ring for his injury. A big what if, because I wanted him to continue throughrout the ruthless aggression era"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Ozzywrote on 08.07.2022:[10.0] "Stone Cold Steve Austin pushed the boundres of what wrestling was able to be in the 90s giving way with Brian Pillman to bring us the Attitude Era, Steve is a 6 time WWE champ for a reason, and though he may not have had as long of a career due to an injury caused by a botched piledriver, he still did a lot within his career. Steve was a decent wrestler back in the USWA during the early 90s when he was Stunning Steve for the early parts of his career, bringing it to WCW he could hold his own greatly or better with Pillman as the Hollywood Blondes, it wasnt until Paul Heyman and ECW let him be who he wanted to be though that he bacame who many fans remember as the greatest to ever do it, the man known as Stone Cold was born through that promotion until Vinnie Mac swooped him up and made him into the ringmaster, that gimmick didnt work with Steve, and felt like it shouldve been a Mr Perfect replacement, but wasnt, Steve luckily had the oppertunity to change that gimmick giving us what would later be the Attitude Era with Stone Cold for the first time, and followed by the infamous Austin 3:16 promo that set him over the edge. Stone Cold is the reason for many of us fans got into wrestling, meyself included with the Booker T and Stone Cold scene in the supermarket, and thats the reason why i will allways consider him my favorite wrestler to date"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: mikeyisgoatedwrote on 29.05.2022:[10.0] "Best on promos, great look, great gimmick, great wrestler, great champion, great as heel & face, great feuds, what more can you ask for? One of the best wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: CLUCKwrote on 15.05.2022:[10.0] "he is a reason why i'm wrestling fan, my first match is him vs kurt angle in sumerslam 2001. he introduce me to wrestling and he is always be GOAT for me"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: flightaker321wrote on 29.04.2022:[10.0] "Up until when Owen Hart dropped him on his neck at Summerslam Austin was actually a very good technical wrestler, did not work the brawling style that he started working afterward. He adjusted his style to perfectly fit the Stone Cold character and still delivered classics. He also produced plenty of iconic segments, which was one of the main reasons the attitude era succeeded."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: NiceRaterwrote on 12.04.2022:[10.0] "I recently started watching back on WWF in 1997. To my shock, all of the legends I thought were the best are all slow and quite boring in the ring. Vader, The Undertaker, Mankind, Bret Hart. Almost everyone is just a step below what I remembered, and maybe this is just specifically a bad time for everyone but it's not anywhere near the level I thought. All except one. Stone Cold Steve Austin absolutely runs the show, and I mean before he's literally on top. Even just in upper card feuds, he has a passion and ability that makes him stand out from all the legends around him. He's so capable in the ring, and even more so on the mic. He knows who his character is and doesn't let others push him away from it. Then obviously, he becomes the biggest name in pro wrestling. While he might not be the best of all time on the mic, his dedication to the character and confidence to speak makes him the greatest professional wrestler in history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Real Godzillawrote on 11.04.2022:[10.0] "Legendary wrestler and probably the in-ring performer who single-handedly decided the "Monday Night Wars". Already amazing as a young up-and-comer in 80s/90s USWA and 90s WCW he became the biggest name of the Attitude era and without the doubt the biggest star of the last 25 years. Had incredible intensity and matches and there will never be another wrestler like Steve Austin ever again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: wewantpunkwrote on 07.04.2022:[10.0] "Stone Cold Steve Austin ist Sports Entertainment. Das meine ich nicht negativ. Er hat eine Ära geprägt und ist ein Wrestler wie man ihn nur einmal erlebt. Einer der größten innerhalb der WWE und er hat für legendäre Momente gesorgt. Im Ring fand ich ihn nie sehr gut, aber sein restliches können gleicht das locker aus. Am Mic ein Gott und wenn man das Glass springen hört, bekommt jeder Wrestlingfan Gänsehaut. Wie groß die Marke und der Name Stone Cold Steve Austin ist, hat der WrestleMania Main Event in diesem Jahr gezeigt. Eine ganz große Persönlichkeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: CMX-7wrote on 06.04.2022:[10.0] "Icon of the Attitude Era) The man who surpassed Hulk Hogan and Bret Hart in popularity in Pop culture! Lots of iconic matches, Lots of historic moments and segments! It's all Stone Cold Steve Austin! It was nice to see him) His return for the Match against KO after 19 years... It was great! I want to say to Steve Austin Thank you for everything! and wish him good health!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "It's hard to say anything that hasn't been said already about Steve. So much has been said about him being a great promo, and it's true, but he was also an amazing in-ring brawler. Great character work, great in-ring work, and when push comes to shove an absolute legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: OnlyHalfTheEffinShowwrote on 01.02.2022:[10.0] "A true GOAT. Steve Austin was attitude before the Attitude Era even began. Don't believe me' Check his promos in ECW as Superstar Steve or his work with Bret Hart in 1996. The entire WWF more or less managed to spring back from the doldrums of the fading New Generation on Steve's back. While he was admittedly not too much of a worker post-neck injury, Austin nonetheless managed to add so much intrigue to his matches through a combination of sheer charisma and old school psychology; Steve didn't have too many moves at this point in his career but he didn't need them.Regardless, Steve's true attractions was as a character. A 100% perma-pissed-off, beer chugging redneck who'd lay out beatings on anyone at a moments notice. Even after his retirement at Wrestlemania 19, Steve managed to stick around as a kayfabe sheriff, enforcer and other non-wrestling roles and his appearance always guarantees a pop. One of the greatest WWF Champions of all time, and a bonafide legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: rishabhwrote on 31.01.2022:[10.0] "When the WWF was struggling a lot with ratings and WCW were kicking their ass, they needed someone who would become a larger than life character and they invested in Steve Austin and the man repaid the faith by becoming one of the biggest wrestling draws in the history of wrestling. Great in the ring, exceptional on the microphone. His character is so simple yet one of my favorite of all time. He didn't do shitloads of MOVES in his WWF career but still no one can say his matches lacked anything. The legacy he has created is like none other and there can never be someone again like STONE COLD STEVE AUSTIN. OH HELL YEAHHHHH"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: eltetechoriwrote on 10.01.2022:[10.0] "Stone Cold Steve Austin is proof that a fighter can do whatever he wants in a company, as long as you play your cards well, how great Stone Cold was with his rebelliousness, that character was the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Abo96wrote on 04.01.2022:[10.0] "Der größte Draw der Wrestlinghistorie, ein absoluter Megastar. Schon in seinen jungen Jahren bei WCW als Stunning Steve ein herausragender Worker mit großem Potenzial. Dort leider immer verkannt. Bei ECW fand er dann seinen inneren Stone Cold. Legendäre Fehden und Matches gegen Bret Hart, The Rock, Mick Foley und Triple H folgten. Hauptverantwortlich für den Sieg der WWF in den Monday Night Wars durch die Fehde mit dem bösen Boss Vince. Alles andere als eine 10 wäre schwer zu vermitteln."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: CaptainCharisma1997wrote on 19.12.2021:[10.0] "My pick for the GOAT of the wrestling industry at this time. One of the absolute best characters ever and the symbol of the AE. Deceptively great as a wrestler and incredible on the stick."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: benny5bellyswrote on 03.12.2021:[10.0] "How can you not love Stone Cold' The reason so many people fell in love with this dumb sport. I am also really fond of his work in WCW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: supergenwrote on 29.11.2021:[10.0] "Probably one of the greatest to do it. Before his neck injury he was one hell of a technical wrestler. But more than his wrestling, his promos, his characters were amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TigerDiverwrote on 10.10.2021:[10.0] "There's nothing to say that haven't been said about Stone Cold Steve Austin already. The face of the Attitude Era. The man who took wrestling to arguably its highest peak. One of the single greatest wrestlers of all time. Perfect in every aspect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: FACEElmo295wrote on 06.10.2021:[10.0] "My favourite wrestler of all time. Steve Austin started out as just another midcarder in WCW, which then led to his firing since Eric Bischoff didn't think he could draw. Little did Eric know that Austin would become the biggest money draw in pro-wrestling ever. His ECW promos are gold, when he got to WWF it felt like they didn't know what to do with him until he dropped that line at King of the Ring 1996. Austin 3:16 became one of the most iconic wrestling catchphrases, and with his new badass look Stone Cold Steve Austin was born. Austin spent 1997 establishing himself as WWF's top guy, and then the Austin Era began in 1998 which kicked off Austin vs. McMahon that would help WWF in the Monday Night Wars. His rivalry with The Rock is pure gold, and he had so many classic segments and the dude is one of the best talkers in wrestling history. Am I going to give Stone Cold Steve Austin a perfect rating? OH HELL YEAH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ringmaster2000wrote on 04.10.2021:[10.0] "What can I say? It'd be dumb to say he's' good on the mic. I mean, every word he said was always believable, and his character was the most badass of all. He was someone the fans and the everyman could connect with. In the ring, his storytelling was second to none. He performed moves with meaning and believability."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Frompartsunknownwrote on 01.10.2021:[10.0] "Vermutlich der Hauptgrund warum hin und wieder ein wenig nervig sein kann, wenn man in den späten Neunzigern geboren wurde. Stone Cold Steve Austin ist eine absolute Legende in allen Belangen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Rodycaz IIwrote on 19.09.2021:[10.0] "Struck gold with the "Stone Cold" gimmick. Went from journeyman to mainstream star; not only in pro wrestling, but in entertainment in general. Hard to believe someone will ever be as over with the audience as he was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Pete Gallowswrote on 03.09.2021:[10.0] "The absolute best in my book. Stunning Steve Austin was my most favourite wrestler when I was a kid, he was so incredibly fluid in the ring, his selling, his mannerisms. Summerslam 1997 changed everything, when it comes to his ring style, which is a shame, but he worked around his injury as much as he could. But prior to that injury, he was an amazing wrestler. Great talker, great and very unique look at that time (Stone Cold look) looked legitimate, like he could actually beat you up."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: BrayanLaPrewrote on 06.07.2021:[10.0] "What a career. Before he was the iconic "Stone Cold" character, Steve Austin was regarded by many as one of the best in-ring performers in the industry. He could trade submissions, brawl with the best, and adapt his style to almost anyone. Once the injury struck and Austin had to adapt, he did that in an unprecedented way. Austin became one of the biggest stars in the history of the industry, if not No. 1. And he still continued to produce classics in the ring, even if he was limited somewhat. A master storyteller who could make you believe in truly unique ways."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: faithOfWrestlingwrote on 06.07.2021:[9.0] "I would say Stone Cold Steve Austin is the most iconic badass character persona known in wrestling, everything about his gimmick and natural ability to roast people on the mic oozed charisma. Also one of the biggest wrestling names of all time along with John Cena, Hulk Hogan etc. His only weakness if you could call it that was his in ring work which is why I could not give him a 10, he is definitely steps down from comparing to wrestlers like Shawn Michaels and Kurt Angle in that department but he was not bad either, I would actually say very underrated and far better in the ring than The Rock was. His spine buster and stun gun are on of my favorite moves and of course the Stone Cold Stunner, Stone Cold is a legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Stone Cold is a true legend, an absolute megastar. He reached a height of popularity I'm not sure I've ever seen from a wrestler, before or since. And he could work, too-- great charisma, great matches, great character. An icon of wrestling in every way."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Nick Owrote on 15.06.2021:[10.0] "Steve Austin is my favorite of all time. His mic skills and charisma were legendary. His popularity was off the charts. His feud with McMahon and HHH in the Attitude Era were legendary and that was the best time in wrestling IMO. I love Stone Cold Steve Austin abd he will forever be my favorite 10/10 wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Hillwrote on 13.06.2021:[10.0] "What more can I say that hasn't been said already? The biggest draw in the history of professional wrestling which is even more impressive given the fact that he was not on top for as long as Hogan, Bret, Shawn, or Cena. Even in his WCW days you could see his potential in his matches with Ricky Steamboat and his tag team run with Brian Pillman. When he made it to WWE he changed the future of the business with his historic rivalry against Vince McMahon . Even if he had to adapt to a brawler style due to neck injuries he still put on clinics in his epic rivalries with The Rock, Triple H, Kurt Angle, Undertaker, and Bret Hart. All of them were must watch in the late 90's Attitude Era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kungwrote on 19.04.2021:[10.0] "The greatest professional wrestler to ever compete in the WWE. There wouldn't even BE a WWE if it wasn't for this guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: AnBwrote on 17.04.2021:[10.0] "The face of the Attitude Era, no-one had the charisma Stone Cold had (has). While his brawling style might not be the most interesting, he still had some of the most memorable matches in history, and he's always going to represent what I miss in the modern WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MrJabroniCamelClutchwrote on 08.04.2021:[10.0] "The biggest star in the history of wrestling in my opinion , was the face of the Attitude Era , had all the components for the face of any company in wrestling , the look , his promos , excellent in the ring , no one in history of wrestling has ever been as important to the mainstream appeal of wrestling in the 90s than Stone Cold Steve Austin ...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Airkainewrote on 22.03.2021:[10.0] "My favorite wrestler of all time, the GOAT ! He is the reason why I want to become a Wrestler, he is my model, he is everything to me. Thank you Austin, I love you !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Canadian117wrote on 11.03.2021:[10.0] "This man right here is the wrestling GOAT. Still is and I think always will be. He changed the wrestling business forever. Yes he absolutely had some help along the way and it takes 2 to make a match but god damn there is noone in the world quite like Stone Cold Steve Austin and I don't think there ever will be again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Takerfan99wrote on 03.03.2021:[9.0] "Great gimmick and Talker. Decent in the ring and the stunner is a great finsher. One of the few to get away with a lot of vulgar language and actions as well"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: shittylittlerasslinwrote on 21.02.2021:[7.0] "INCREDIBLE as an entertainer, the face of, arguably, the best era of WWE, alongside The Rock, but with limited ring skills throughout the years, even after having a rock solid WCW career inside the ring. Nonetheless, he could hide those weaknesses better than most of his colleagues at the time."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Burninghammercriticwrote on 01.02.2021:[7.0] "He is a very popular wrestler and a promo god. His in ring skills were good but not the best. I put him over many others and he is just an awesome guy, but I cant put him above a 7 because it was more about the attitude than the actual skill. Great entertainer."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Uweuwesenwrote on 25.01.2021:[10.0] "Austin hat eine komplette Ära geprägt, wahrscheinlich wie kein anderer Wrestler in der Geschichte! Austin war ein wichtiger Teil einer Vielzahl der wichtigsten Matches der WWE Geschichte und war auch in allen wichtigen Bereichen mindestens richtig gut!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Icon is the bestwrote on 09.01.2021:[10.0] "Well first, let me talk, Steve Austin has great proms and he has very high charisma, but in his in-ring performance, for me, he's one of the best performers in history. Who says that Austin has underperformed after injury? See what Austin did after injury, his match against The Rock at WrestleMania 17, his match with Triple H, his matches against Jericho and Chris Benoit, maybe also the reason why The Rock is so famous as an in-ring performer, and it's also the reason why WWE is among us now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ManiaMan93wrote on 04.01.2021:[10.0] "The Attitude Era GOAT! How I loved the days with Monday Night RAW is War and Austin back in days. Man I would love if I could relive these days. Austin was my favourite in WWF Attitude Era days. The best thing was when he gived Vince und The Rock a Stunner."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Talisonpulidowrote on 04.12.2020:[7.0] "Great performer before the injuries. Good charisma. Once he got on top he always felt stale and repetitive to me."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: medousewrote on 04.11.2020:[10.0] "The Texas Rattlesnake Stone Cold Steve Austin. One of the most badass gimmicks in history of pro wrestling. His promos, his post match drinking beer, his famous Stunner, his famous 3:16 and that epic entrance music. I don't think there was ever a guy who electrified the crowd the way he did. Some people loved him, other hated, but everybody was reacting one way or another. This guy caught our attention the moment you saw him. Long live Stone Cold! Gimme Hell Yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Dennisiztheman02wrote on 02.11.2020:[10.0] "This man made pro wrestling popular in the late 90s and is a legend! Steve Austin is a great talker and great in the ring. Some of his noteworthy matches include his encounters with Bret Hart at Wrestlemania 13 and Survivor Series 1996, The Rock at Mania's 17 and 19, and the Undertaker at Summerslam '98. He is a great wrestler who has been over with every crowd and it would be difficult for WWE to recreate the magic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Wrestling Foreverwrote on 02.10.2020:[10.0] "Steve Austin ist eine Wrestling-Legende und hat damals im Monday Night WAR die WWF gerettet. Den durch unter anderem Austin waren die Hallen ausverkauft und sein Austin 3:16 T-Shirt ist eins der meistverkaufesten T-Shirts überhaupt. Er hat auch selbst behauptet er sein kein Techniker. Er ist einfach ein Wrestler der ging raus und unterhielt die Fans auf seine Art. Bevor er zur WWF kam war er kurz in der ECW wo er so geniale Segments sagte und sich all seinen Zorn und Frust über die WCW, Dusty, Hogan, Bischoff ausredete. Zuvor lange in der WCW wo es auch viele Erfolge gab. Als Steve zur WWF als Ringmaster kam war das Gimmick ein total Flop. Man schlug ihm neue Namen vor wo manche Namen dabei waren die so bescheuert klingen. Zu dem Namen Stone Cold ist er durch seine Frau Jeannie Clark müsste es gewesen sein gekommen. Sie brachte ihm Tee und nannte den Namen Stone Cold. Was dann kam war Geschichte. Stone Cold Steve Austin und einer der beliebtesten Wrestler war geboren. Edit: 02. 10. 2020 Was für ein Unsinn er hat nicht den Namen Steve Austin geklaut. Es war damals so das es bei WCW schon Dr. Death Steve Williams gab, und er seinen Namen umbenennen musste. Darum hat er Austin gewählt seinen Heimatstadt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ALFwrote on 02.10.2020:[4.0] "Charismatisch ja, aber ich konnte den Hype um den Typen nie nachvollziehen .... Bevor jetz einige "WHAT? " brüllen, möchte ich in Erinnerung rufen, dass Eric Bischoff ihn als "unvermarktbar " deklarierte. Vor seiner Stone-Cold-Zeit sah er für mich aus wie eine Mischung aus Nailz (Kevin Kelly) & Dan Spivey. Nichts besonderes, er war halt da. Matches meist nur Durchschnitt. Name auch nur geklaut vom Ein-Colt für alle Fälle-Mann Lee Majors. Der Ultimate Warrior konnte zwar auch nicht wrestlerisch überzeugen, war dafür aber ein Vorbild in der WWF/E für Kinder u. Jugendliche. Kann man das von "Stone Cold" Steve Austin sagen, dessen Vorbild für das Gimmick real ja der Serienkiller Richard Kucklinski war? Ich denke: Nein. Bin aber auch kein Fan der "Attitude Ära". Gab zuviele Schimpfworte da u. schlechte Storylines da, Katie Vick lässt grüßen. Pro Wrestling finde ich nur dann gut, wenn es echt Vorbilder erschafft. That's the Bottom Line!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jansen ferriswrote on 09.09.2020:[2.0] "Everything about him screams "awesome promo cutter", another way to say he was a great talker. They say his in-ring skills declined after his neck injury in 1997 but for me, austin has been a mediocre in-ring worker since the beginning of his career. His charisma will always overshadow the fact that he was one hell of a gravedigger who refused to put someone over. He was booked as a fearless badass but when the camera goes off, it's a different story. One of the biggest coward in wrestling history."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: S0L1D SNA3K3wrote on 06.09.2020:[10.0] ""Stone Cold" Steve Austin was and still is one of the most over wrestlers of all time and it is hard not to see why. From his charisma to his brilliant psychology, Austin is an easy 10 on this list. Regardless of the fact that his neck injury severely limited him in the ring, the aforementioned qualities elevated him to being one of the best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: martizzletaewrote on 22.07.2020:[10.0] "What more could be said. If you were watching wrestling in the late 90s - early 2000s, you know this is the Man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: sabbathbloodysabbathwrote on 09.07.2020:[10.0] "Remember kids, just because he wasn't a flashy technical wrestler during most of his "Stone Cold" days, it doesn't mean he wasn't consistently putting on good matches. He was one of the most entertaining brawlers in the business, with excellent ring psychology and one of the best finishers in wrestling history. And we don't even need to talk about his charisma and "bad ass" persona, since even non-wrestling fans recognize how great he was in that regard. And that glass-shattering entrance is legendary. The WWE will never be able to recreate what they had with Austin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Ma Stump Pullerwrote on 05.07.2020:[9.0] "Austin's promo work and psychology are legendary, and for good reason: he's likely the biggest star WWE has ever had in terms of overall success. Granted, his actual ring work went well down after nearly being paralysed, but I have to respect the guy for getting himself over and reinventing as more of a roughhouse brawler than the technical wrestler he actually was, and getting out of the business before he did some significant damage to himself. If discussing before his injuries, Austin was arguably the total package in terms of a great wrestler: great promo skills, strong workrate capable of going with even the best at the time (like Bret) good look, and solid appeal to audiences. Few get to that level, and few ever will in future. Even through people can wrestle better than him, they will never have his popularity, or his buying power."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: King of Strong Stylewrote on 14.06.2020:[10.0] "Der größte Star der Attitude Era und einer der größten Gründe warum die WWF den War gewinnen konnte. Sein Gimmick und Charisma als Bad Ass war absolut genial, genauso sein Mic Work auch im Ring war er sehr gut und hat in großen Matches meistens überzeugen können. Für einen der größten Draws und eines der besten Gesamtpakete aller Zeiten die vollen 10 Punkte. And that's the bottom line, 'cause Stone Cold said so!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Conorwrote on 26.03.2020:[10.0] "Definitely the most popular wrestler of his era; maybe ever. Incredible mic skills. Worked a crowd better than just about anyone. His ring skills deteriorated quite a bit after he broke his neck in 1997, but before then was actually quite good. Even after the injury he was still a master storyteller and a tough bastard. Tapped into the zeitgeist of the young blue collar generation in the 1990s and ran with it. Has an argument for being the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: AAA3000wrote on 07.03.2020:[10.0] "The Rattlesnake! Er hat die WWE wieder zu Ruhm verholfen. Bestes Gimmick nach einer langen langen Durststrecke. Seine Performance auch außerhalb des Ringes, damals einzigartig. Nur The Rock (später) kam ihm gleich, für lange Zeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: OrangeCrush00wrote on 03.02.2020:[10.0] "One of the greatest on the mic, there will never be another Stone Cold Steve Austin. He did not have many moves in his arsenal but he made up for it with his mic skills."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: OyunDeltawrote on 27.11.2019:[10.0] "He is one of the greatest icon of wrestling and true legend. He has talent, microphone skills, promo skills, good shape, good look and of course charisma. And his gimmick was awesome. His fights and feuds with Vince Mc. Mahon are really creative and successful; and that made Attitude Era great. I am not interesting in his other gimmicks in WCW but I also love his Ringmaster gimmick in WWF. I like his Ringmaster theme song and Stone Cold Steve Austin theme song. Unfortunately he had a neck injury in 1997 which caused his ring career end early. I believe that if Rattle Snake's neck didn't injure,  he could still wrestle in todays. But it's not matter, he had an awesome ring career and his career will live forever in our hearts. AND THAT'S THE BOTTOMLINE 'CAUSE STONE COLD SAID SO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Wrestlefan20wrote on 15.08.2019:[10.0] "One of the most important wrestlers in WWE history. He had the looks, charisma, gimmick and promo skills of a main eventer. Unfortunately, after his neck injury in 1997, his match quality decreased, but he was still able to put on a great match once in a while."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: KyleEnjoysWrestlingwrote on 13.08.2019:[10.0] "When you're rating someone who's such a no-brainer top tier talent, there's not much more you can add to the conversation. One of the most influential and fun-to-watch wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheFrenchDisasterwrote on 28.07.2019:[10.0] "One of the greatest of all time, certainly the most important figure in WWE. His mic-skill was damn good, and he were a part of certains great rivalries. He just needed a sound of broken glass, two fingers raised in the air, two catchphrases and a move to leave his mark in the business's history. No offense to The Rock but, for me, Stone Cold Steve Austin is the most charismatic man in all of sports entertainment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TooSweetPhilwrote on 18.07.2019:[10.0] "Nicht viel zum Rattlesnake zu sagen. Eine absolute Legende. Vielleicht der größte Badass und das Wichtigste Draw der WWE Geschichte. Das Gesicht der Attitude Ära und neben zahllosen großen Matches & Fehden stehen das gegen Hart von WM13 und das gegen Rock von WM17 als 2 der besten WWE Matches aller Zeiten hervor."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Sick Lebowskiwrote on 21.05.2019:[10.0] "Guter Wrestler, welcher mir in nahezu all seinen Karrierephasen gefallen hat. Schon im Team mit Pillman genial, danach als Singles Wrestler auch sehr ansehnlich. Sein Stone Cold-Gimmick ist ebenfalls saustark."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TylerWhitewrote on 25.03.2019:[9.0] "Für mich eine der Größten Legenden im Wrestling überhaupt. Er ist einfach das Gesicht der WWE aus der Attitude Era, der mit genialem Gimmick, genialem Micwork, soliden Matches und großartigen Fehden überzeugen konnte.  Eines der besten Gesamtpakete aller Zeiten und einer, der im Gegensatz zu The Rock gemerkt hat, wann man seine Karriere beenden sollte, was seine Karriere für mich zu einer der besten aller Zeiten macht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: zephyrwrote on 19.03.2019:[8.0] "Austin is obviously one of the most important figures in the history of wrestling as a whole. He was a damn good promo and his gimmick just suited him perfectly so everything worked well. His in-ring work wasn't quite up to par but it really didn't need to be world class because he more than made up for it and it obviously worked out pretty well."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 20SaiDa19wrote on 16.03.2019:[10.0] "It's difficult to put anyone in WWE history above Austin in terms of importance, as without him the WWF likely would have gone out of business. Austin had unparalleled levels of charisma and very few have held themselves better than he did. He was also a good in-ring talent earlier in his career, although his neck injury led to his limited in-ring style more people are aware of."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Der Commanderwrote on 11.03.2019:[10.0] "Einer meiner Top 5 Lieblingswrestler und das Gesicht der Attitude Era. Bei ihm hat alles gestimmt, Gimmick, sein Finisher (Stone Cold Stunner bester Finisher aller Zeiten ^^), seine Redeart, Micskills. Alles weniger als 10 Punkte ist ungerecht. Wenn seine Musik ertönte hat die Halle gebebt. Keiner (außer Hogan) hat die Massen so bewegt wie Austin. Seine legendären Fehden gegen Vince McMahon, HBK, The Undertaker, Mick Foley und The Rock haben letzenendes mit dazu geführt dass die WCW den Monday Night War verloren hat. "And thats the bottom line, cause Stone Cold said so! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LandonRyanWyattwrote on 31.01.2019:[10.0] "He was in the right place at the right time and was the right guy for the job. This guy took sports entertainment and professional wrestling to a whole new level. He revolutionized an entire business. He became the most popular star the business had ever seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: AsterDaviswrote on 25.01.2019:[10.0] "The greatest of all time! I can't really think of anything to else to say except that but just how it is. Hell Yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: JEK 1991wrote on 23.12.2018:[10.0] "He got me into wrestling. Growing up he was popular. Great at his moves. WCW he was starting to look great. In WWE he changed and went popular. He is the first one to give the middle finger and drink beer in the ring. He was also the first to say "I'm gonna kick your ass! " and a guy that could talk tough."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DanTalksRasslinwrote on 21.12.2018:[10.0] "Regarded as one of the all-time greats for good reason.  Prior to his neck injury, Austin was a great in-ring mechanic, and after the injury - and as his character evolved - he was able to seamlessly transition into a rugged brawling style that suited him well.  He was also an all-time great promo and was able to capture the fans' imagination with his beer-swilling, profanity-using everyman gimmick, and turned his feud with Vince McMahon - a basic story of blue collar vs. the corporate - into one of the top money draws of all time.  Unquestionably belongs, along with Bruno Sammartino and Hulk Hogan, on the Mt. Rushmore of WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Steamboat2511wrote on 29.11.2018:[10.0] "Steve Austin ist für mich der Inbegriff einer Wrestlinglegende. Er gehörte mit Sicherheit nie zu den technisch besten im Ring, wenn gleich er doch meist mithalten konnte. Das Gesamtpaket als Wrestling-Entertainer ist aber so dermaßen stimmig und überzeugend, dass mich dieser Umstand ausnahmsweise kaum stört. Als Top Player der legendären Attitude-Era gehört er zu den beliebtesten Superstars allerzeiten. Seine Persönlichkeit stellt wohl alles in den Schatten was sich sonst im Ring bewegt (neben Rocky vielleicht) und trotz dem er nicht der größte Wrestler aller Zeiten war, fallen mir zahllose legendäre Matches mit ihm ein, nicht nur die Klassiker gegen The Rock. Am Mic ebenfalls einer der ganz großen und sozusagen die Stimme der Attitude-Era. Austin jede Woche zu erleben war das höchste der Gefühle für jeden Wrestlingfan, deshalb unter dem Strich: Top 5."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Marky Whipwreckwrote on 15.11.2018:[10.0] "Simply put, he's the greatest performer of all time. He was perfect in every aspect, perfect in the ring, perfect on the mic and perfect from a charisma standpoint. I've never witnessed a better all-around performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: RatingsMachinewrote on 12.10.2018:[10.0] "What more can be said about the biggest money draw in US wrestling history? (Hogan drew for longer, but Austin's peak was so much bigger than Hogan's) Austin always worked hard, and he was a good worker who could be great, even post-injury. His interviews were great and usually entertaining as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Makai Clubwrote on 23.09.2018:[10.0] "One of the all time greats. Awesome wrestler who could be intense, emotional and sympathetic at the same time. Had tremendous amounts of charisma through his facial and body language. Not a big fan of his promos. They are pretty samey but he does them very well. He can be very comedic as well. No matter what he was asked to do, he was great at it. Even his failed heel run, he was a great heel even though the fans didn't want to boo him. Is one part of the best WWE match of all time IMO. Has loads of great/classic matches under his belt both in WWE and before. And oh, he is one of the greatest draws ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kaswrote on 14.09.2018:[10.0] "One of the greatest wrestlers to ever lace up a pair of boots. Was a fantastic technician before his neck injury, and completely changed his style to a fast-paced, aggressive brawler. Gave his absolute all whatever match he was in, I can't recall a single match where he didn't give 100%. On top of all this was a huge draw, due to his entertaining as all hell character, and unmatched mic ability, only The Rock and Roddy Piper hold up to him in that regard in my opinion. A once in a generation talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: pappahousewrote on 02.09.2018:[7.0] "Ich weiß, dass ich relativ alleine dastehe, wenn ich sage, die 9, 47 Gesamtwertung aktuell, ist völlig überbewertet. Die Catchphrases, das Mic-Work sind mehr als brillant, dass Charisma ebenfalls, aber der allerbeste Wrestler war er mit Sicherheit nicht. Die langandauernde Fehde gegen Vince McMahon war irgendwann übertrieben. Natürlich ist er ein guter Wrestler und die Lou-Thesz-Press und der Stunner waren absolut super, aber mehr als sieben Punkte kann ich nicht geben."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheRealAteszwrote on 11.06.2018:[10.0] "GIVE ME A HELL YEAH The king of the Attitude Era and the WWE. The most carismatic wrestler that i have ever seen and he is really like a beer in the real life and at the shows. In 1996 after the King of the Ring his speech is awesome "Austin 3:16 says I just whipped your ass! " that was awesome. AND THAT'S THE BOTTOM LINE, 'CAUSE STONE COLD SAID SO."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: AJStylopzwrote on 13.05.2018:[10.0] "Fucking Stone Cold man. One of the best wrestlers of all time. He was simply the man in the Attitude Era, he could talk a lot, have great matches, he was a badass with always great things to give us the fans"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Dragon Fighterwrote on 02.03.2018:[10.0] "Oh yeah, stone cold fucking steve Austin the GOAT for sure. The icon of the attitude era. Phenomenal mic skill, charisma. Really great in the ring especially before his neck injury. The rivalry with vince and rock are remembered forever. Also one of the greatest draws of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Titansrevengerwrote on 07.02.2018:[9.0] "To me the character and attitude of the Stone Cold persona of Steve Austin transends the man himself. I started watching Steve Austin as a rookie and was a mark for him day one. Steve Austin could wrestle and hang with guys like Rick Steamboat (and did just that), and make it look easy. His star was quick to burn bright and maybe even quicker to die out. I say this because when Austins star burnt at its brightest it outshown everyone, yes even Hogan. However, with all of Austins charisma, attitude and intensity, his in ring performance wasn't the same as it was when he first started out as a humble workhorse. That being said Steve Austin as the flag berrer of the WWF mother ship during the attitude era was there greatest champion to date. The closest wrestlers on par with Steve Austin as WWF champion are few and far between;maybe Hogan and the Rock his chief rival. I just rank Austin the wrestler at around an 8. 5, which can be easily rounded to a 9 given the platform and circumstances. Steve Austin had a great run, one which ironically ended far to suddenly."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: CHN325wrote on 31.01.2018:[10.0] "The Stone Cold character is the best character in wrestling history. Kick ass, take no prisoners guy who will go down as one of the biggest draws of all time. Even after his injury, when his style and ring worked slowed, no one was better at telling the story."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: taabr2wrote on 10.09.2017:[10.0] "Steve Austin used to be my favorite wrestler. His Stone Cold gimmick was absolutely brilliant and his feud with Mr. McMahon is one of my favorite rivalries in wrestling. Austin was also a very good in-ring worker and a great wrestling mind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: coolserazwrote on 22.07.2017:[10.0] "The toughest SOB to ever lace up a pair of boots. Great wrestler before an unfortunate neck injury and a very good brawler after that. Excellent promo and top class persona. Austin was THE MAN in the Attitude Era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: SrHunterwrote on 21.06.2017:[10.0] "I don't know how someone can say this guy is overrated, this sounds more like a personal view on the guy , to put it simple he just SAVED WWF and was stellar draw,  aside from that there's not much i can say about him because everyone knows who he is and what did he do for WWE, great character, i also consider him a great wrestler, his catalogue of great matches don't deny it, great mic, great catchphrases, just one of the best and a influence to many."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Lucubangetwrote on 21.06.2017:[10.0] "This fucking guy. Steve doesn't do a lot of flashy moves and always keep it simple, but what he lacked in the skill department, he projects his persona into every Televisions and compelled the world with his impeccable charisma. There will be no other."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: PathosLogosEthoswrote on 07.06.2017:[3.0] "OVERRATED *clap clap clapclapclap* OVERRATED *clap clap clapclapclap*  I've never been impressed by his in ring skill. His moveset is pretty boring, he's a mediocre seller, and nothing he does is that great. I really don't understand why he explode so much. His promo work was never that impressive to me either. He's really very cheesy on the mic. Yeah, I just don't understand why everyone liked him so much."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: PrinceJrwrote on 16.04.2017:[10.0] "Einfach zum Heulen, dass man die Zeit dieser Ikone nicht mitbekommen hat, weil man zu jung war. Eine der besten Figuren, wenn nicht die Beste, der Wrestlinggeschichte. Der Megastar schlechthin in der besten Zeit der WWF. Seine Fehde mit Vince McMahon hat alles im Wrestling verändert. Sicher eine der Top 3 Legenden der WWE-Geschichte. Heutzutage fehlen solche charismatischen Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Blood Pumpwrote on 06.04.2017:[9.0] "Had it not been for the broken neck incident I have no doubt in my mind Steve Austin would have been a ten. Hell hes pretty damn close to it as is! Despite the bad neck the rattlesnake was still able to work a hell of a match, as proven in his WM X-7 match against The Rock or his work with Triple H. His heel run post X-7 doesn't do him any favors, and the what chants are a point of annoyance I can blame him for but at this point I'm nitpicking. Steve Austin is amazing, and arguably the single most popular wrestler of all time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Changeling45wrote on 09.02.2017:[10.0] "This guy is one of the greatest ever.  THE top guy in THE hottest era of professional wrestling, ever.  One of the best promo workers to ever pick up a mic, completely lived his gimmick.  One of the most underrated in-ring competitors ever because he wasn't flashy and couldn't do acrobatics.  Austin told some of the best stories and has such a high wrestling IQ and knack for psychology that I feel goes completely unnoticed to most people."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring: Einer der besten Brawler allerzeiten, auch Technisch stark, aber nicht so stark das 10 Punkte gerecht wären. 9/10 (50%)  Promos/Schauspieltalent:Konnte super den letzten Outlaw/Redneck rüberbringen, legendär seine 3:16 Promo. 10/10 (25%)  Charisma/Statur/Gimmick:Klar hatte er Charisma und ein Super Gimmick, aber im Ring, wirkte er nie bedrohlich , für den Gegner deshalb nur 9/10 Punkte. (25%)  Sind dann insgesamt 9, 25 Punkte für die Rattlesnake.  = 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: NastyYaffawrote on 01.01.2017:[10.0] "One of the greatest wrestlers of all-time; Stone Cold is mostly known for being the man of the hottest era in wrestling - his charisma & mic skills during that era were just outstanding, and then we get to his in ring skills, which are very underrated by some. He is one of the greatest wrestlers of all-time, in ring only. Such a smart worker, gave his all, solid as a babyface, amazing as a heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: zenciaowrote on 18.12.2016:[10.0] "I concede a perfect 10 rating for Steve Austin.   Paul Heyman once spotted a young Steve Austin hitting the ropes especially hard on the indies. Even then, Austin stood out. He was the right man, at the right place, at the right time. It was his eyes, his walk to the ring, the magnetism in his movements where each act was a deliberate attempt to harm the other individual in the quickest and least elaborate way possible. The improvised promos, and carefully plotted storylines in the Attitude Era exploited these talents. Bell to bell, there was also no playing to the crowd, as seen today in a lot of modern wrestling's landscape (and the Attitude Era certainly. ) As a quick aside, whenever the "Who better? " argument between Austin, and The Rock comes up, I always side with Austin, with caveats -- Austin was the better wrestler, and more influential of the two, but The Rock was the better athlete (at the time. )  Steve Austin added credibility, and a feeling of reality to everything he touched. This feature cannot be overstated enough when you are working in an industry short on credibility, and high on skepticism. Every match felt like a real dogfight, every promo felt like it came from a real place. Kevin Nash explained this component in an interview one time. I have never heard it better explained than this: "There's two kinds of guys in this world, guys that get into a fight, and once they knock the other guy on the ground -- they show mercy, and stop. The other -- he keeps kicking while the other guy's given up on the ground. That last guy, that's your superstar. ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Puro Spiritwrote on 11.12.2016:[10.0] "The man that was the face of the Attitude era , the man that saved WWF/E from being extinct , one of if not the biggest draw in the history of US pro wrestling , it's the Texas rattle snake Stone Cold Steve Austin .... the man was the total fucking package , great worker , very good on the mic , had a great connection with the fans ..... this man was truly the franchise of the WWF at its biggest boom period in it's history ....."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "Eine lebende Legende. Seine Promos, seine Art sich zu bewegen, seine Matches. Bei Stone Cold hat alles gestimmt. Schade, dass er zu seiner Anfangszeit so verschwendet wurde, aber er war für die Attitude Era genau der richtige Mann.  Darauf ein Bier und ein Hell Yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: SlickDevilSWPwrote on 06.10.2016:[10.0] "From his days as Stunning Steve Austin, I was always a fan of his. I always felt as a member of the Dangerous Alliance he was a future WCW World Champion in the making. Sadly he never got that opportunity but once he entered the WWF and became Stone Cold, he became one of the best of all time. His work from 1996-97 rank among the best work of any performer in history, and as a heel the only one who surpassed him all time was Roddy Piper. He could deliver a hell of a match too, even at the end of his career. A fantastic all-time great for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: croatiantwat1950wrote on 22.08.2016:[9.0] "Yes, i love his Attitude era golden days and the very making of it. Yes, i love his feud with Vince, it is more than legendary. Yes, i love his feud with Dwayne, it is just as legendary as the one with Vince. Yes, he had the best gimmick in decades and amazing promo skills. But realistically, he is an average wrestler and mostly got carried by others in bouts. But hey. Memories are memories."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: SweetestThing2wrote on 11.08.2016:[9.0] "What to say about Stone Cold Steve Austin that has not been said. He is the reason WWE won the Monday Night Wars and saved the wwe in the late 90's. His mic skills are beyond most wrestlers capabilities. Austin was a guy that oozed charisma and you could believe that the character and the man were not far off from each other. He was fascinating to watch and to this day i have never seen a crowd reaction like he got. Steve Austin was excitement personified and the black tights and black boots while simple was perfect and made so much sense with the character. Also no one really talks about his in ring ability which did take a dive when he became a star but go back and watch him in WCW he had the wrestling ability. The McMahon/Austin feud is still the greatest feud of all time and Austin was lucky enough to have the greatest heel opposite of him being the maniacal boss Mr. McMahon. Steve Austin was Batman (Albeit the batman from The Dark Knight Returns) and Mr. McMahon was the Joker and it was must see TV every Week. Stone Cold Steve Austin was the greatest money maker wwe ever had and was the best beer swilling, Fingering Gesturing, Ass kicking S. O. B that the WWE has ever seen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: THE SINISTER JESTERwrote on 10.08.2016:[10.0] "The Reason WWE Won the Monday Nighy Wars, His Feud with McMahon Turned the Ratings Scale Because Nobody can Beat Steve Austin AND THATS THE BOTTOM LINE, CAUSE STONE COLD SAID SO"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Devitciiuwrote on 30.07.2016:[6.0] "I never got Austin. He was ok in the ring... until he wasn't anymore. I watched the whole attitude era unfold and just did not get the fan reaction."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Alessiowrote on 24.07.2016:[7.0] "He certainly was a huge draw but I don't enjoy watching him as others seem to. I think he's good but not great."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: JordanACEwrote on 18.06.2016:[10.0] "Austin 3:16 says I just whipped your ass! The Rattlesnake is so amazing, he was the Attitude Era. He was so good both in the ring and on the mic it's unbelieveable!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Chosen Onewrote on 11.06.2016:[10.0] ""Stone Cold" Steve Austin is the greatest wrestler in WWE history. He started off in WCW and had a great tag team with Brian Pillman that I really enjoyed. In the WWE he won some of the greatest championships and is the only person to ever win the Royal Rumble match three times. He has had some of the most memorable feuds, catchphrases, moments, and matches in history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: HeadCheesewrote on 20.05.2016:[7.0] "Steve Austin is good, my one problem is that is WWE matches are to similar with each other and when he is not wrestling a top guy he does have them look good. But, he is very charismatic and was good in WCW/ECW."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Dennis-J-Millerwrote on 15.05.2016:[10.0] "He ushered a new era... and probably the most healthy one at that! He revolutionized characters and gimmicks... and "you can't teach that"! Honestly... saying Austin is a game changer would be a big understatement. He was the pro wrestling in the second half of the 90s, and one shouldn't be surprised when the average american fan will say that he misses "those Stone Cold days". WHAT? I said "those Stone Cold days"! WHAT? ! The days when Stone Cold was on TV... WHAT? ! When Stone Cold was signed... WHAT? ! Oh... you got the general idea!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Zedwrote on 12.05.2016:[10.0] "Die WWE hat zur Attitude Era Geld gescheffelt wie niemals zuvor und danach. Wieso? Wegen Stone Cold Steve Austin. Als man 1996 den Quotenkampf gegen die WCW verlor kreierte man ein Gimmick, welches die WWE wieder vorran brachte. Welches? Stone Cold Steve Austin. Er war einfach der großartigste Wrestler aller Zeiten. Sämtliche Fehden, ob gegen Hart, Michaels, McMahon, Rock oder Angle waren die besten Fehden der dazugehörenden Jahre. Er stand in den meisten Main Events Ende der 90er und er bekam als Face die besten Publikumsreaktionen, mehr sogar als Hogan, obwohl er öfters als Heel agierte. Mit Austin hat man einen Jahrtausendcoup gelandet, der unerreicht bleibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Coltwrote on 05.04.2016:[10.0] "Ich möchte jetzt nicht übertreiben, aber ich kann mich wirklich an kein Face erinnern das die Massen so elektrisierte wie Austin. Er ist DER Anti-Held der 90er und völlig zurecht das Gesicht der erfolgreichsten Ära der Geschichte. Sein Charisma und sein Micwork waren bzw. sind erstklassig. Über seine wrestlerischen Fähigkeiten kann es keine 2 Meinungen geben. Eine der größten Legenden aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Blake Cockstawrote on 29.03.2016:[10.0] "Es müsste eine 10+ Wertung geben. Nur wenige können sich diesen Status erarbeiten wie ein Stone Cold Steve Austin. Er war der Mann der Stunde. In diesem Sinne.... , cause Stooooone Cooold (wackelnder Kopf) said so! Ich liebe ihn <3"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Residentwrote on 15.03.2016:[10.0] "Stone Cold Steve Austin is one of the best wrestlers of all-time and the biggest draw ever. If I had to pick one wrestler, I'd say he was the best ever. He was a great brawler during the Attitide Era, but many people didn't realize he was also a great technical wrestler too which was shown during his time in WCW and when he first started in the WWF. His submission match with Bret Hart was, in my opinion, the best Wrestlemanka match ever. His feud with Mr. McMahon I'd say is the biggest feud ever. He and The Rock headlined 3 Wrestlemanias. He was a King of the Ring winner, 3 time Royal Rumble winner, and a 6 time WWF World Champion. Even 16 years after the Attitude Era and 13 years after he retired, people still talk about Austin all the time and I still sometimes see Austin 3:16 shirts."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MAGICIANwrote on 15.03.2016:[10.0] "Stone Cold Steve Austin kann nichts anderes als 10 Punkte bekommen. Und warum? Cuz Stone Cold said so! Der wohl wichtigste Mann in der Geschichte für die WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: James Dean Wrestlingwrote on 09.03.2016:[10.0] "Easy, easy 10 here. Alongside Rock, he was the guy to watch in the AE era. But above that he was a great worker in WCW and entertaining as hell in ECW. But back to the WWF character we all come to love, how can you NOT love this mans work. Stone Cold just personifies bad ass and was a staple of the 90s. Another top tier WWE great of mine.   All hail Stone Cold Steve Austin!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheLoudMouthwrote on 17.02.2016:[9.0] "Genauso wie The Rock ein unfassbar starker Entertainer mit einem traumhaften Micwork. Austin war einer der charismatischsten Worker überhaupt und auch im Ring grundsolide. Hat zudem eine ganze Ära geprägt, von der man heute nur noch träumen kann."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DarylDixon84wrote on 16.02.2016:[10.0] "Es ist Stone Fu. king Cold Steve Austin... Muss man da irgendetwas dazu schreiben wenn man nicht völlig verblendet/blödet ist? Nö! Because Stone Cold said so!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Phenomenal91wrote on 11.02.2016:[10.0] "Quite possibly the most important wrestler of all time. Even bigger than Hogan. Certainly a better wrestler than Hogan. But he lived many lives before he was Stone Cold. Stunning. Ringmaster. Host of "Monday NyQuil" on ECW. His career was cut short due to a piledriver injury. But the WWF (not E) will always be synonymous with this man. Oh hell yeah."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Interceptorwrote on 11.01.2016:[10.0] "Es ist alles geschrieben worden! Schade nur, das mir persönlich aktuell so eine vergleichbare Größe fehlt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MatiasClubwrote on 16.12.2015:[10.0] "Stone Cold Steve Austin, creator of catchphrases like "ThatŽs the bottom line cause Stone Cold saido so" or "What? " or the most important "Austin 3:16". He probably was not the best wrestler in the world, but he was the most charismatic wrestler. I could compare him with Hulk Hogan, but I think he was better than the "Hulkster". When his music sounds at all the arena, the people celebrate his appearence, because he has the talent to be an entertainer. I donŽt have words that describe this guy, but he save the company, and the company is the most popular in the world thanks to him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: gerybundy68wrote on 27.10.2015:[10.0] "Sicherlich nicht der beste Wrestler aller Zeiten, hatte Steve Austin seine Stärken eindeutig in anderen Bereichen, wenn auch nicht unterschlagen werden sollte, dass er einige der denkwürdigsten Matches der Geschichte abgeliefert hat.  Seine Ausstrahlung heute so schön Charisma genannt und sein einzigartiges Mic-Work sind es, was ihn eindeutig über die Masse der Anderen heraushebt. DAS Aushängeschild der Attitude Ära bleibt einfach in bester Erinnerung mit seinen diversen Fehden, Matches und Aktionen rund um den Ring.   Trotz seine limitierten in-Ring- Fähigkeiten verdient sich Stone Cold als der Mann der die Fahne der WWE in den 90ern hoch gehalten hat, meiner Meinung nach die Pole Position unter allen Wrestling-Stars."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Mandzukic9wrote on 21.10.2015:[9.0] "Eine unfassbar geile Mic-Work, Charisma ohne Ende, eine wahnsinns Ausstrahlung und total anständiges Wrestling für seine Zeit - zumindest vor seiner Verletzung. Wenn ihm etwas gefehlt hat, war das wirklich eine außergewöhnliche Gabe im Ring und ein paar Techniken mehr auf der Matte.  Trotzdem reden wir hier von einer prägenden Figur im Pro Wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Einer meiner Lieblingslegenden, wegen seinen krassen Aktionen und seiner Einstellung. Der Beste seiner Zeit und gehört zu den Besten, der Besten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Squared Circlewrote on 14.10.2015:[6.0] "A fantastic interview, who energized the fans like no one since Hogan.  His in ring work was sloppy, rushed and unbelievable.  His title run, while successful, had the drawback of killing the ring work itself.  Wrestling became all about the interview and the match was just an afterthought.  In fact, the matches became a stepping stone to the next series of interviews.  This really took away from wrestling as a whole, and to an extent it has not yet fully recovered.  In popularity, he's an unquestionable ten.  His impact on the actual wrestling though, drags his rating down."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: WWEReignsRuleswrote on 27.09.2015:[10.0] "Einer der Charismatischen Wrestler den ich je gesehen habe, die Fehden mit The Rock oder auch mit Vince McMahon sind einfach nur der Hammer gewesen und die Attitude Era einfach die geilste Zeit in der WWF.  Für mich der größte Wrestler! HELL YEAAAH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: WWEfan802wrote on 21.09.2015:[10.0] "This man right here is a big part of my childhood, so I have no choice but to give him a biased 10 out of 10, If this was a honest review I would give him a 9 because his in ring skills was average at best, but his ability to get a crowd worked up was unbeatable, no one in today or earlier can work a crowd like this guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jacobphillipswrote on 13.09.2015:[9.0] "excellent on the mic and possibly the best character in wrestling history second only to maybe the undertaker. a real legend who defined the attitude era. the only thing preventing him from a 10 is his ring skills. still very good but many people possess better"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Yoyowrote on 09.09.2015:[10.0] "Pretty good in the ring, great on the mic and quite possibly the biggest wrestling character of all time, and one of the most memorable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ShooterMcShootwrote on 10.08.2015:[10.0] "He was the guy in the Attitude Era. Amazing performer when he was younger, but when he got older and became Stone Cold, he took it to a level that hasn't been seen since. Austin was great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Viper99wrote on 13.07.2015:[10.0] "Einer der besten Aller Zeiten und das absolute Aushängeschild während der Monday Night War zeit. Außerdem ist er einer der Gesichter der WWE allerzeiten. Er ist vielleicht kein Shawn Michaels im Ring, aber er war unglaublich Charismatisch, gut am Mic und gut im Ring!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MusSanwrote on 27.04.2015:[10.0] "Damals mein Lieblings Wrestler. Hoffentlich bestreitet er sein Comeback. Am besten gegen The Rock, das haette was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: bigdaddy1wrote on 20.01.2015:[9.0] "The change from Stunning Steve to Stone Cold really propelled his career.  Good in ring skills and unmatched on the mic.  What can you say about the biggest draw of the 90's when the Monday Night Wars were at their peak.    If he'd had made the change earlier in his career we would be talking about him along the like of Ric Flair.  On the flip side if not for that character change he'd have a 5 or 6 rating."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Y2J316wrote on 28.11.2014:[10.0] "WHAT! WHAT! , Stone Cold ist einfach WWF für mich. Er half die WCW zu besiegen und seine Fehden mit The Rock, hhh, Taker und Vince waren einfach pures gold. Im ring ok aber seine Knie waren ja auch am ende und auch sein Nacken war hin. Mic skills waren auch super. Einer meiner Favs deswegen auch 10 pkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ApexOfEvolutionwrote on 21.11.2014:[5.0] "Es ist wohl kaum eine Person so ambivalent zu bewerten wie Steve Austin. Als Wrestler hat er ein Super-Gimmick als unangepasster Redneck mit einer legendären Fehde gegen Vince McMahon. Nur leider ist dies wohl nicht nur ein Gimmick, sondern entspricht auch der Privatperson. Gewalttätiger Ehemann und passionierter Jäger sind charakterlich eher zweifelhafte Eigenschaften. Wrestler: 10Punkte; Privatmann: 0Punkte."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: austin1987wrote on 04.11.2014:[10.0] "Also ich finde diesen Mann einfach Top. Ich finde er war auch ein guter Techniker bevor er mit seinem Knie Probleme bekam, danach ein fantastischer Brawler. Super Selling, geniale Micwork. Fand ihn auch als Heel gegen Bret Hart toll. Diese Fehde ebnete meiner Meinung nach den Weg für die Attitude Era - denn ein Rücksichtloser Typ wurde Trotz seinen "unsauberen" Aktionen und Handlungen immer beliebter - das Heißt doch was. Und somit war alles nichts mehr wie früher, wo die Faces alle nur sauber kämpften und die Heels immer nur die "Bumänner" waren.  Er hatte einfach klasse Fehden und einen der besten Finischer. Für mich hat bei ihm einfach das Gesamtpaket gestimmt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LowJomoKiwrote on 15.07.2014:[10.0] "Bei Stone Cold kommen in meinen Augen nur 10 Punkte in Frage... Er war DER Star der Attitude Ära, er ist neben Foley und Rock, für mich der beste Mic Worker aller Zeiten. Im Ring war auch er ähnlich wie Rock kein Technik-Gott aber aufgrund des Gimmicks war das auch nicht zu erwarten. Sein Kampfstil passte wie die Faust aufs Auge und mal ehrlich: Niemand macht so coole Elbow Drops wie Stone Cold, mal davon abgesehen, dass ich den Stunner genial finde... 10 Punkte, fertig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DanielBryan1986wrote on 31.03.2014:[10.0] "In der WCW lange Zeit ein guter Uppercard zusammen mit Flyian Brian. Hammer Match gegen Ricky Steamboart 1994. Fall Brawl 1994 gegen Jim Duggan eine Farce. In der ECW einer der ersten Shoot Aussagen gegen Hogan die mal stimmte. In der WWF/E dann anfangs ein Midcarder der gegen Bret Hart und Shawn Michaels zum Main Eventer wurde. Ganz klar die Fehde gegen Mr. McMahon und The Rock waren die Klassiker in der Attitude Era. Steve Austin war einer der besten Wrestler aller Zeiten und zu recht Hall of Famer"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: EvilPriestwrote on 10.03.2014:[6.0] "One of the best entertainer of all times, he's very charismatic and was a great heel but his in ring was poor."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: J0KERwrote on 23.01.2014:[10.0] "The Rattlesnake Stone Cold Steve Austin! Die Ikone der Attitude Era! Jeder Fan der Wrestling schaut muss diesen Typen gesehen haben. Steve Austin ist ein Brawler und für mich eines der besten Brawler die je in den Ring gestiegen sind!  Hervorragende Fehden gegen Rock, HHH, Mankind, Taker, Hart, HBK hatte dieser Mann. In seiner Zeit wohlmöglich der beste Mic Worker die es gegeben hat. Austin lieferte jedes mal eine gute Promo ab. Hatte ebenfalls zahlreiche WrestleMania Moments und prägte die Attitude Era! Austin hatte ebenfalls den Charisma den mann als Champion gebraucht hat.  Für mich eines der Superstars die uns am meisten und am besten unterhalten hat. Einer der Ikone des Wrestlings! 3:16"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Elitemasterwrote on 14.01.2014:[2.0] "I really dislike this guy, he did beat up his wife, and thos fa**ots of the Attitude Era defend him like fanboys."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheUnderTakerwrote on 23.12.2013:[9.0] "Keine Frage, das Gesicht der Attitude Era. Im Ring nicht der größte, aber am Mic mit Jericho, Rock, Punk, usw. in meiner  Top 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 8BitLegendwrote on 22.12.2013:[7.0] "Von allen Top-Faces ihrer Zeit (Sammartino, Hogan, Shawn, Cena etc. ) finde ich Austin am farblosesten. Dieser Action Hero One-Liner Style ist eigentlich recht witzig und hat zahlreiche denkwürdige Promos hervorgebracht, aber ich konnte Austin im Ring gar nichts abgewinnen. Und es fehlte an Ebenen im Charakter. Leute wie Cena, Shawn oder Bret hatten ihre dramatischen Momente, während Austin einfach straight sein Ding durchzog ohne große Ups & Downs zu erleben, wenn man mal vom ein oder anderen Beatdown etc. absieht. Ich möchte ihn in der WWE-Geschichte nicht missen, aber zu den ganz großen zählt er in meiner Wahrnehmung nicht."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kenwrote on 25.11.2013:[10.0] "Mr. McMahon and Ric Flair have called him the greatest; there's nothing left to say."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Undertalkerwrote on 15.11.2013:[8.0] "Egal ob im Ring oder am Mikro, war ihm stets eine unheimlich hohe Intensität zu eigen. Er war unangefochten mit The Rock das Gesicht der Attitude Era. Ich denke, sein Gimmick spiegelte auch viel von seinem wirklichen Charakter wieder, und wenn jemand sich selbst spielen darf, ist er nach meiner Meinung immer am besten (vgl. CM Punk). Auch wenn er einen sehr intensiven Wrestlingstil pflegte, ist er für meinen Geschmack im Ring doch zu abwechslungslos und ich sah ihn nie wirklich gerne wrestlen. Das mag zwar auch etwas an seiner Nackenverletzung gelegen haben, aber wrestlerisch wirklich ansprechend fand ich ihn, soweit ich mich noch erinnern kann, auch davor nicht. Da ich ein Fan von anspruchsvollem Wrestling bin, zählt er nicht zu meinen Favoriten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Daneraswrote on 03.11.2013:[8.0] "Er ist knallhart, und extrem. Das war für mich zu übertrieben. Doch seine Kämpfe sind genial! Man kann deutlich viel "spüren" wie hart er zupackt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Chris1201wrote on 02.11.2013:[1.0] "Er hat mich genauso sehr unterhalten, wie meine Schreibtischlampe. Enough said."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ProRedstonewrote on 02.11.2013:[7.0] "Naja ich finde ihn eigentlich unterhaltsam, aber es gibt ganz klar bessere."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Alex Maedawrote on 05.10.2013:[10.0] "Es gibt meines Wissens kaum ein besseres Beispiel für eine perfekte Umstellung des Ringstils aufgrund schwerwiegender Verletzungen als Steve Austin. Okay, Kenta Kobashis oder Keiji Mutos Matches unterscheiden sich auch deutlich von ihren alten Klassiker, aber bei ihnen war es eher eine Reduzierung bzw. Modifikation (weniger Highflying, größerer Fokus auf Brawling/Matwrestling), Steve Austin wandelte sich vom wortkargen Techniker zum verbissenen Brawler mit Großfresse und einem Gimmick, über das man noch viele Jahrzehnte diskutieren wird. Zusammen mit Foley mein Lieblingsstar der Attitude Era und ein Mann, der meinen vollen Respekt verdient hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: koeddylaemmlewrote on 29.09.2013:[10.0] "Simply put, the baddest man in wrestling history. Stone Cold took WWE to new heights never seen and we've never been back. Austin makes a solid argument for GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kuzo Pilewrote on 13.09.2013:[10.0] "Probaly one of the greatest in-ring workers ever. He's the peak of the Attitude Era"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: BenutzernamenBraucheIchNichtwrote on 28.08.2013:[8.0] "Wenn man ihm heute nur nicht immer so viel Zeit zum Bier verpütschern gäbe..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "Das Aushängeschild der Attitude Era. im Ring gut bis sehr gut am Mic, der einzig wahre Gott, was er alles mit der Crowd anstellen konnte war unglaublich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: HighlightHEELwrote on 24.08.2013:[10.0] "Die Definition der Attitude-Ära. Ohne seinen Charakter wäre diese niemals das gewesen, was man heute als größte Zeit des Mainstream-Wrestlings kennt. Im Ring ziemlich stark, sein Stunner ist natürlich ebenso legendär wie sein Micwork. Der absolute Badass-Charakter, nicht zu vergleichen mit irgendjemand anders. Austin ist ein Kandidat für den größten Wrestler aller Zeiten und streitet sich vermutlich mit Hulk Hogan um diese Ehre. Für mich ist es klar Austin. Er hat eine Ära geprägt und sich dabei den Arsch aufgerissen und den Nacken irgendwie für 5, 6 Jahre zusammengehalten, bis dieser nicht mehr mitmachte. Seine Fehden gegen McMahon und Company, Rock, HHH sind mit das beste, was die WWE/F je geboten hat. Kaum jemand hatte es so schwer, in seiner Zeit als Heel auch als solcher anzukommen. Es ist ihm nie komplett gelungen, was aber nicht unbedingt ein Minuspunkt ist, weil es von seiner totalen Popularität kündet, bei der ihm nur Rock gefährlich nahe kommen konnte. Austin war für eine Zeit lang die WWE/F, und diese war Austin. And thatŽs the bottom line, cause Stone Cold said so."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DaNiwrote on 05.08.2013:[5.0] "Klar, Austin hat die WWE revolutioniert, seine Anti-Hero-Haltung war Grundstein für viele Wrestler, auch sein ganzes Auftreten war spitze.  Im Ring hat er mir allerdings nie gut gefallen. Bis auf seinen Stunner hatte er meiner Meinung nach absolut keine Ausstrahlung innerhalb des Rings. Seine Moves sind an einer Hand abzuzählen und nicht besonders gut.  Er ist ein Beispiel dafür, wie man auch ohne großes Wrestling einfach weit kommen kann, dafür hat er großen Respekt verdient."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Leonewrote on 02.08.2013:[10.0] "An excellent technical wrestler in his early days and an excellent brawler when his body started to limit itself through injuries.  Few wrestlers have had as significant an impact on pro wrestling within such a short space of time (13 years) like Steve Austin.  In his prime, he was 1 of the best workers you could ever hope to find.  A great seller with well polished and stylised offence, and great mic skills to go along with it.  Long before CM Punk's rebellious streak in 2011, was this 1996 King Of The Ring winner beginning to take shape as the wrestler who did everything the average american man wanted to do.  Somebody who oppressed and tormented his evil boss to breaking point.  It was 1 of the best feuds to this day, and an enormous mark on the business as a whole."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Sir Vida Loca IIIwrote on 09.07.2013:[10.0] "Der größte Wrestler allerzeiten. Da stehen selbst Ric Flair und Hulk Hogan hinten an. Flair selbst sagt bei dessen eigenen Hall of Fame einführung dass er es leid sei, immer zu hören dass Hogan der größte Wrestler allerzeiten sei, denn dies ist Stone Cold Steve Austin. Die WWE bezeichnet ihre Worker gerne als Superstars, was aber nur auf die wenigsten zutrifft. Auf Steve Austin trifft dies mehr zu als auf jeden anderen. Am Mic war er immer überzeuend, und auch im Ring war er ein solider Wrestler. Nach seiner Nackenverletzung durch Owen Hart konnte er natürlich nicht mehr an alte Leistungen anknüpfen, was verständlich ist. Steve Austin ist mittlerweile verdient in der Hall of Fame und hat sich seinen platz in der Geschichte mehr als verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Eagle Whiskeywrote on 05.07.2013:[9.0] "Kein guter Wrestler! Aber sein Gimmick traf absolut den Nerv der Zeit und wurde von Austin perfekt gespielt und verkörpert. Ganz großes Kino außerhalb des Rings und einer meiner Lieblingscharaktere."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: christianpecevskiwrote on 22.05.2013:[10.0] "Gehört zu den besten Wrestlern der Welt meiner Meinung nach. Er hat die Wrestlingwelt geprägt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: razer2195wrote on 06.05.2013:[10.0] "ich finde einfach das stone cold steve austin einer besten wrester war überhaupt seine fehden waren einfach super"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: believeintheshieldwrote on 02.05.2013:[10.0] "Einer der besten, wenn nicht sogar der beste Wreszler allerzeiten. Er hat seine Rolle richtig überzeugend gespielt und hatte Hervorragende In-Ring Fähigkeiten. Daher 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: HooliNerdwrote on 10.04.2013:[10.0] "Der Mann lebt sein Gimmick und ist für mich der "Badass" überhaupt, der jemals einen Ring betreten hat. Immer geniale Fehden und machte stets eine gute Figur."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "One of the true greats. The man who defined the Attitude Era and enabled WWE to finally overtake WCW in the Monday Night Wars. Excellent on the mic and in-ring. A true legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Diggertakerwrote on 13.02.2013:[10.0] "A violent, fearless and rude redneck with freedom of expression, Stone Cold Steve Austin, the most notable of the Attitude Era — the greatest era that WWE ever had. With an amazing fitting finisher, a monstrous persona and a glass-shattering charisma, Stone Cold is the face of attitude. He inherited this attitude to CM Punk, who makes a good profit with it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Wohl DAS Gesicht der Attitude-Ära und ausschlaggebend für den Erfolg dieser: Mit seinem Stone-Cold Gimmick hat man alles richtig gemacht und es gibt wohl kaum einen wichtigsten Moment in der Attitude-Ära, an welchem Stone Cold nicht beteiligt war. Im Ring war er immer sehr nett anzusehen und konnte geniale Promos abhalten. Definitiv zurecht in der Hall of Fame und einer der größten im Pro-Wrestling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LM Punkwrote on 30.08.2012:[10.0] "Was soll man sagen? The Man! Leider auch viel zu früh von einer schlimmen Verletzung ausgebremst."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Chris Silverwrote on 28.07.2012:[10.0] "Er ist der BESTE ! Er ist einfache der beste im Ring und sonst."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Alex Riley 4 wwe championwrote on 09.03.2012:[10.0] "Zu ihm muss man nicht mehr viel sagen. Er hat Tough Enough ein Gesicht gegeben und sein Stunner übertrifft fast alle anderen Finisher in der WWE. Überragend!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: loCCawrote on 24.02.2012:[10.0] "Der größte Star im Wrestling aller Zeiten!  Hulk Hogen? EGAL. Wie es auch scon Ric Flair sagte: Ich bin es leid immer zu hören das Hulk Hogan der größte aller Zeiten sei, denn dass ist Stone Cold Steve Austin (bei Flairs aufnahme in die Hall of Fame) Austin war am Mic sehr gut und auch im Ring wusste er zu überzeugen. Nach seiner Nackenverletzung war er im Ring natürlich nicht mehr so gut wie früher. Davor jedoch in der lage (als beispiele) Randy Orton, Cena, Barett und co alt aussehen zu lassen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Senajwrote on 28.01.2012:[10.0] "Man wird sich noch lange an Steve Austin erinnern. Seine Fehden beispielsweise gegen McMahon oder The Rock sprechen für sich. Einfach nur genial. Vielleicht ist er kein Technikgenie, dafür aber ein ausgezeichneter Brawler und hervorragend am Mic. Die Fans rasten ja immer noch aus wenn seine Musik gespielt wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Baszdmegwrote on 09.12.2011:[10.0] "Was kann man über Steve Austin sagen? Er ist für die Attitude Era das, was Hogan für seine Ära war und Cena wohl oder über für seine Ära ist. In Sachen Micwork und Crowd Interaction können ihm sehr wenige das Wasser reichen und insbesondere Anfang/Mitte der 90er hatte er im Ring mehr Talent als die meisten WCW oder WWF Wrestler. Einziges Makel vielleicht, dass er als Stone Cold nie ein wirklich überzeugender Heel sein konnte, aber wenn man es jemandem verzeihen kann, dann wohl ihm. :P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kitanoyamawrote on 22.11.2011:[9.0] "Wrestlerisch gesehen eigentlich nicht viel besser als jeder andere gute Wrestler auch. Dies gleicht er aber durch eine hervorragende Präsenz, Showarbeit und Darstellung aus. Er hat genau die richtigen Fehden geführt und war einer der prägensten Figuren in der WWE/F der späten 90er und frühen 2000er. Der Attitude-Ära sei dank und das dank wiederum Austin."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Franchise Playerwrote on 07.11.2011:[8.0] "Austin oder Cena? Dan doch eher Austin. Steve war kontrovers und das hat ihn berühmt gemacht. Er, der große Gegenspieler von Vinnie Mac. Man darf aber nicht vergessen das er vor seiner schlimmen Nackenverletzung ein ganz guter Techniker im Ring war. Später musste er zwar mehr und mehr brawlen aber das macht bei ihm relativ weniger, weil auch irgendwie zum Gimmick passt. Austin ist nicht ohne Grund einer der größten Stars in der Geschichte der Promotion aus Stamford und damit 8 Punkte an Steve Austin caused The Franchise said so."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 7TheEwrote on 07.11.2011:[8.0] "Tja Steve Austin warscheinlich von den meisten In-Ring unterschätzt war aber vor der Nackenverletzung (danke Owen R. I. P. ) auch ein guter Technischer Wrestler, am Mike hat er immer nur Phrases gedroschen genau wie Rocky, also dafür eher Minuspunkte, aber war wohl der Wrestler und das Gimmick das den Monday Night War fast im alleingang entschieden hat.  Alles im allen viel geiler als Rocky sein Dauerrivale! AND THAT'S THE BOTTOM LINE CAUSE E SAID SO!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: hhhwrote on 13.10.2011:[10.0] "Die Verkörperung der Attitude Era... Was für ein Gimmick... 10/10 Punkten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Rated R Punkwrote on 06.09.2011:[10.0] "Stone Cold ist eins der Aushänge Schilder für die WWE, er schaffte es vom langeweilligen Ringmaster zum wohl coolsten Gimmick der WWF. Als Ringmaster bewies er durchaus auch Ring Skills, Schauspielerisch hat er vorallem als Rattle Snake überzeugt und auch am Mic ist er eine coole Sau. Seine Storys waren eigentlich wirklich alle fast ausnahmelos gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Cybermikewrote on 04.09.2011:[10.0] "Hat der WWE das meiste Geld bisher eingebracht, prägte die Attitude-Ära und zeigte herausragende Matches und das alles ohne einen Anabolika-Körper, und auf dem CAGEMATCH. de Bild hat er ja sein Smoking Skull-Belt und nicht so ein Sch**** Spinner Belt ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TAWPTierJustinwrote on 29.08.2011:[10.0] "Stone Cold Steve Austin, hands down, is the greatest wrestling superstar of all time. Ric Flair said what I'm about to say right now and I agree with him 100% on this. I'm so tired of everybody saying that Hulk Hogan is the greatest superstar of all time cause clearly it's Steve Austin. Yes, Hulk Hogan was the guy that put wrestling on the map but Stone Cold put wrestling on an even bigger map and put wrestling on a whole another level. Around the late 90's and the early 2000's when Stone Cold was on top of the world, wrestling had such a big buzz and everybody was into watching wrestling and there were so many people at the time that wanted to get into the business. Not only that, but you had programs like Tough Enough and you had wrestlers appearing on TV shows a lot like Fear Factor and all them shows. I mean yeah there's always been wrestlers appearing on TV shows but nowadays and back in the Hulk Hogan days, you didn't have much of that. But anyway need I say more? It's still a no-brainer that Stone Cold Steve Austin is the greatest superstar of all time!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: GTS Punkwrote on 19.08.2011:[10.0] "Steve Austin ist eine Ikone und zurecht ein Hall of Famer. Die legendären Aufeinandertreffen mit The Rock und seine Catchphrases machten ihn zum Star der er geworden und immer noch ist. HELL YEAH sag ich nur."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Fall Out Boywrote on 19.08.2011:[8.0] "Sein Gimmick ist eines der besten aller Zeiten. Im Ring nur ein guter Brawler, ansonsten Durchschnitt. Für die Attitude Era war das aber genau richtig. Bei seinen Promos kam es gerne zu Versprechern und generell gehört er am Mic nicht zur Elite."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: VanderVaartwrote on 14.08.2011:[9.0] "Dieser Wrestler hat sich nach seiner Herkunft benannt. Das war das Ergebnis einer unkreativen und zu kurzen Namensfindung. Sein legendärer Spruch: Austin 3:16 ist intelligent, da er sich damit gegen die Kirche auflehnt. Die Zuschauer lieben ihn dafür. Danach legt er sich mit seinem Chef mal so richtig an. Nach dem Motto: Arbeitnehmerrechte müssen erkämpft werden. Beim Wrestling zählen halt nicht nur Argumente. Das Bier hätte der Nicht-Veganer mMn nicht gebraucht. Nicht ganz so schlimm, wenn auch irgendwann nervig, ist die Phrase "What? ". Seine Matches sind häufig stark, da sein Move-Reportoire zu seinem aggressiven Gimmick passt. Die Sportler-Karriere musste er abrupt, durch einen Piledriver von Owen Hart, beenden. Danach feiert er noch ein paar Comebacks als GM und noch ganz wenige In-Ring Comebacks. Die sind aber schon viele Jahre her und in diesem Alter muss er eh seinen Nacken schonen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Bananaramawrote on 14.08.2011:[10.0] "Kaum ein Superstar hat eine gesamte Ära so geprägt wie er. Allgemein war er derjenige, der die Attitude Ära überhaupt eingeläutet hat durch sein Gimmick. Im Ring war er sicherlich besser vor seiner Nackenverletzung durch Owen Hart, aber dennoch war er im Ring einer der besseren, war zu recht einer der Superstars überhaupt und prägt Crowds noch heute durch seine "What? " Chants."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: WWE4evermaybewrote on 12.08.2011:[10.0] "Dieser Mann ist und bleibt Kult. Ok, er ist nicht der Beste im Ring, aber sein Auftreten ist immer ein Augenschmaus. Er war Mitbegründer des Wrestlings, wie wir es noch heute kennen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: StoneColdStunnerwrote on 04.08.2011:[10.0] "So ziemlich der größte Wrestler aller Zeiten, dazu gibt es nur eins zu sagen: Fuck Fear, Drink Beer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: latinoheat4everwrote on 25.07.2011:[8.0] "Die Attitude-Ära ist praktisch ein Synonym für den Rattlesnake mit seinem unvergleichlichen Gimmick und seinem Mic Skills. Allerdings hat StoneCold im Ring zu viele Mankos meiner Meinung nach, um mehr als 8 Punkte zu bekommen, obwohl er sicherlich einer der größten Superstars aller Zeiten ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Tamamwrote on 13.07.2011:[10.0] "Zusammen mit The Rock der retter der WWE und daher wahrscheinlich auch der größte aller Zeiten ! Spektakuläre Matches, große Promos und jede Menge denkwürdige Momente !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: NHJ2102wrote on 11.07.2011:[8.0] "war ein unglaublicher Gewinn für die WWE und jeden Wrestlingfan... unglaublicher Mic Worker guter Wrestler er hatte alles was ein Topstar brauchte war mit The Rock der King der Company anfang des Jahrzehnts"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LyrixFTWwrote on 08.07.2011:[10.0] "Der meiner Meinung größte Star im Wrestlingbusiness, er hatte die besten Storylines und das meiste Charisma, sicherlich, im Ring war er nur mittelmäßig aber das hat bei Rock der mMn noch mal ein Stückchen schlechter im Ring ist auch niemanden gestört. Und dann gibt's da ja nch Terry...  Ausserdem ist er der WWE immer treu geblieben und war immer wieder mal zu sehen :) Das Genie's wie Heyman und Punk Fan's bzw. Bewunderer Austin's sind zeigt nur wie genial der Mann ist. Absolute Legende und der größte Sportsentertainer aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Play2Xwrote on 30.06.2011:[10.0] "Der ist cool... What? Der ist cool... What? usw. ^^ Stonecold ist einfach einer der unterhaltendsten Wrestler, die dieser Sport hervorgebracht hat! Man kann ihm nur 10 Punkte geben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Donald Duckwrote on 26.06.2011:[7.0] "Ich war noch nie ein wirklicher Fan von Stone Cold Steve Austin, konnte nie verstehen was die Leute an ihm haben. Nichtsdestotrotz respektiere ich das was er erreicht hat und der WWF/WWE eingebracht hat. The Rock fand ich immer meilenweit besser."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Dennizwrote on 16.06.2011:[10.0] "Steve Austin ist für mich ohne Zweifel mit HBK und Rocky zusammen die Spitze der WWE !  Austin ist super unterhaltsam und nie langweilig...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: FriarFergusonwrote on 08.05.2011:[10.0] "Sehr gute Mic Skills und wer ihn aus seinen alten Ringmaster zeiten kennt, weiß, dass er auch im Ring ordentlich was zu bieten hat. Ist bis heute einer der beliebtesten, erfolgreichsten und am meisten bejubelsten Charaktere im Wrestling, was auch nicht von ungefähr kommt. Ich habe selten einen Wrestler, egal ob heel oder face, mit so viel Zugkraft gesehen wie Stone Cold. Zudem hat er vielen großen Namen etwas voraus: Austin hat das Wrestling nachhaltig verändert. Seine Rolle hätten meiner Meinung nach nicht viele andere spielen können, anders als bei Hogan und Cena hatte diese nämlich ihre Ecken und Kanten, war wie auf Austin zugeschnitten und er löste damit Ungeahntes aus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: HesBackwrote on 29.03.2011:[10.0] "Kann nicht weniger als 10 Punkte geben, ohne ihn und Vince wär es möglich gewesen dases die WWE anstatt der WCW erwischt hätte. Und tut mir leid diesen Affenstall WCW braucht keine Sau"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: C0nspiracywrote on 27.03.2011:[9.0] "DER Mann der 90er und frühen 2000er. Er hat die Attitude Ärä geprägt wie kein anderer, ausserdem war er vor seiner verletzung insbesonders im Team mit Pillman ein wirklich sehr guter Wrestler. Sein wert für WWE hat ihm einen Platz in der liste der Wichtigsten Wrestler aller zeiten gesichert. Eine 10 kriegt er nicht weil Er verglichen mit einen Ric Flair zB. "nur" über 5 Jahre an der Spitze war."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jupp365wrote on 29.01.2011:[10.0] "Eine Charismagranate aller erster Güte. Meiner Meinung nach glaubhafter als The Rock. Musste seine Karriere leider viel zu früh beenden. Seine Filme gefallen mir auch sehr gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: NaGoyahwrote on 23.01.2011:[10.0] "Bester Enternainer den es je gab für mich, zwar nicht der allerbeste wrestler aber das machte er mit micwork weg, jedesmal gänsehaut feeling wenn die Scheibe klirte^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ksoldier83wrote on 16.12.2010:[9.0] "Was kann man noch über Stone Cold sagen? Eigentlich nix mehr und ich hatte nur zwischen 9 oder doch 10 geschwankt, mich dann aber doch für 9 entschieden, weil seine Matches dann doch nicht in dauerhafter Erinnerung geblieben sind, außer vielleicht das bei Wrestlemania gegen Bret Hart."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: cagefighterwrote on 30.11.2010:[10.0] "Austin! Austin! Für mich DER Mann der WWE. Zwar könnte man jetzt sagen er war Wrestlerisch limitiert( wozu ich sagen muss, seit seiner Nackenverletzung hat er einen anderen Stil gefahren, der aber vollkommen ok war und zu ihm passte), trotz allem hat er das wrestling und die wwe sehr geprägt allein durch sein vollkommen überzeugendes gimmick. ich liebte das glass splittern, denn jetzt kam Austin und alles konnte passieren! Austin! Austin!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LabronBenoitwrote on 17.11.2010:[10.0] "Jemand, der das Wrestling und das dazugehörige Entertainment von Grund auf verändert hat. Ohne Stone Cold wäre es wahrscheinlich nie zu einer Attitude-Ära gekommen! Neben The Rock der größte seiner Zeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Marth99wrote on 01.11.2010:[10.0] "Der wohl wichtigste Wrestler der WWEaller Zeiten deshalb 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: CM Dannywrote on 13.10.2010:[10.0] "Vince McMahon hat ihn als den größten Superstar aller Zeiten bezeichnet und wenn nicht Vince, wer soll das dann schon beurteilen können. Ich habe Austin zum ersten Mal in der WCW als Teil der Hollywood Blondes gesehen. Damals hatte ich noch gedacht, dass die beiden nur als Team Erfolg haben können. Damit lag ich falsch. Austin 3:16 sollte schon bald die Welt übernehmen. Was habe ich ihn beneidet, als er sich mit seinem Boss anlegen durfte und dadurch auch noch Champion wurde. Austin war genau das richtige Werkzeug gegen die Übermacht der WCW und Austin selbst dürfte es gefallen haben, sich in dieser Form an Bischoff zu rächen. Austin ist zum Symbol für eine bessere Zeit bei WWE geworden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Rated R Champwrote on 19.09.2010:[10.0] "Steve Austin ist einfach ein Phänomen für sich. Der Mann verhielt sich, vom Face-typischen Kampfgeist mal abgesehen, die meiste Zeit wie der personifizierte Heel und dennoch lagen ihm die Fans über Jahre buchstäblich zu Füßen (und das zu einer Zeit, in der Kayfabe noch einen anderen Stellenwert hatte). Ich kann nicht mal genau sagen was es war, aber Austin hatte einfach etwas, was ihn zum Inbegriff des Tweeners machte. Er konnte die Fans stets in seinen Bann ziehen und lieferte selbst mit seinen späteren Nackenproblemen noch ganz ansehnliche Leistungen im Ring ab. Definitiv einer der drei größten Namen im US Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: rockysadrianewrote on 10.09.2010:[10.0] "Der größte Goldesel der WRestlinggeschichte. Weder Hulkamania noch der Merchandising-Wahn um den weissen Rapper der dann zum Soldaten mit Turnschuhen wurde könne da mithalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Rock93wrote on 06.09.2010:[10.0] "Was gibt es da zu sagen? Dieser Mann hat das Wrestling als Entertainment revolutioniert, durch tolles Charisma, geiles Mic-Work und eine Hammer Story! Ohne ihn hätte der Monday Night War vielleicht bis heute angedauert!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: P92wrote on 28.08.2010:[10.0] "Einfach nur Kult! Einer, der das Wrestling-Business nie vergessen wird! Einer, den die Fans nie vergessen werden! Er lässt sich bei einigen Shows auch mal blicken! Raw 2010 kurz vo Wrestlemania... Er ist einfach Kult... und er ist dankbar gegenüber seinen Fans...  Treue! And thatŽs the Bottom line... cause STONE COLD said so!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: royalonewrote on 18.08.2010:[10.0] "Hat der WWE sehr viel geld gebracht und wie er am micgearbeitet und mit dem publikum gespielt hat war meisterlich.  weniger als ne 10 geht nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Titanwrote on 21.06.2010:[10.0] "Man muss an dieser Stelle einfach volle Punktzahl geben. Steve Austin ist eine lebende Legende im Wrestling-Biz und sorgte mit seinen Matches, Promos und Fehden immer wieder für Furore in der Attitude Ära. Ein klasse Gimmick, welches man heute so nicht mehr finden wird!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Weltywrote on 02.06.2010:[10.0] "Steve Austin ist einfach der Größte für mich, durch seine doch sehr normale Kleidung ist aus diesem Gimmick des Stone cold einfach eine lange und überzeugende Karriere geworden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: morph80wrote on 30.05.2010:[10.0] "Lebende Legende, Hall of Fame Mitglied, Raw Superstar Of The Decade, hat einige der besten Fehden abgeliefert, am Mic einer der Besten und im Ring immer sehenswert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Golgotawrote on 23.05.2010:[10.0] "Allein für den besten Finisher aller Zeiten bekommt er von mir die 10. Gimme a hell yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Erasedwrote on 22.05.2010:[9.0] "Stone Cold Steve Austin, eine wahre Legende und Kultfigur der WWF/WWE. Seine Reden waren immer packend, spektakulär und unterhaltsam. Einer der größten Wrestler überhaupt"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Edge96wrote on 14.05.2010:[10.0] "Einer meiner absoluten Lieblingswrestler. OK, im Ring sicher nicht der beste, aber es gibt auch deutlich schlechtere. Dafür sein Gimmick, Charisma und Micwork umso besser. War sicher einer der Hauptgründe warum die WWE die Monday Night Wars gewonnen hat. Sein Stinkefinger und seine Sprüche sind einfach legendär. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: RockerDropperwrote on 12.05.2010:[6.0] "Hui, der Flächenbomber sorgt für Zündstoff! :) Okay, dann meine Meinung: Austin überbewertet, seine Wirkung nostalgisch verklärt? Definitiv. Es stimmt, das die ersten 1, 2 Jahre nWo sicher weit innovativer waren/mehr bewegt haben als ein Austin, der sich ellenlange Wortgefechte mit McMahon lieferte. Beliebt war er trotzdem, besonders in den USA; in einem Land, in dem Flüche mit einem Piepston versehen wurden kam es einfach an, das sich jemand wie ein Asi benimmt, flucht, den Stinkefinger zeigt und Bier säuft, alles zur besten Sendezeit. Nicht niveauvoll, sondern ein gezielter Tabubruch, den die WWF damals als Mittel gegen WCW einsetzte; und Austin war der beste, den sie für den Job hatten. Wie Bishoff sagte: er war der große Fisch in einem damals eher kleinen Teich. Wrestlerisch ist Austin zu WWE-Zeiten eher schwach gewesen; er war schon vorher kein Ass, aber die Verletzungen haben ihn noch weiter runtergezogen, ausgereicht hat es aber für sein Gimmick allemal. Auch wenn ich das Spiel mit der Obszönität nicht schätze, kann ich seine Wirkung nicht völlig leugnen. Wir bewerten nicht die rein technischen Fähigkeiten, sondern das Gesamtpaket; und Showtalent gehört halt seit jeher zum Pro-Wrestling, deshalb gebe ich Austin zumindest 6 Punkte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Sandmannwrote on 04.05.2010:[7.0] "Ich war nie ein großer Austin Fan. WEnn dann noch eher zu seiner Zeit mit Pillman als Hollywood Blondes. Im Ring sicherlich nicht mehr als durschnittlich aber er hat es einfach verstanden ein Gimmick zu finden das wirklich zu ihm passte und das er gut verkaufen konnte. Von daher ist er auch zu Recht der beliebteste Wrestler aller Zeiten geworden."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Damon Strikerwrote on 01.05.2010:[9.0] "Sein "Stone Cold"-Charakter mag zwar einer der Hauptgründe für den Erfolg der Attidude Ära sein, mich sprach er aber nicht so sehr an. Erinnere mich ehrlich gesagt lieber an seine Zeit in der WCW als Stunning Steve Austin. Insgesamt natürlich ein großartiger Mic-Worker und auch im Ring ganz gut. Trotzdem reicht es bei mir nicht für die volle Punktzahl!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Mizisawesomewrote on 25.04.2010:"@Der Flaechenbomber: Du nennst hier schon Gründe die mindestens eine 6 im Punktesystem rechtfertigen würden (der Teil mit Gesicht der Attitude-Ära usw. ) und doch gibst du ihm nur 3 Punkte weil seine In-Ring-Skills nicht so toll waren. Klar war Austin ne Sandman-Kopie. Aber er hat seine Rolle immer gut gespielt, er wusste immer zu unterhalten und wie auch du schon sagtest: Ein Cena is auch nicht anders. Schon allein, der Punkt das diese beiden Worker beim Publikum ziemlich over sind zeigt doch, dass du nicht ganz verstanden hast was nen guten Wrestler am Ende wirklich ausmacht."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Matt Mackswrote on 06.04.2010:[10.0] "Steve Austin ist einer der größten Stars des Wrestlings überhaupt und der Superstar der 90er Jahre. Sicherlich profitierte er davon, dass er das richtige Gimmick und den richtigen Widersacher zur richtigen Zeit hatte, aber manche Menschen vergessen gerne, dass man nur aus den richtigen Zutaten noch lange kein Meistergericht zusammenkochen kann. Austins Qualitäten am Mikro, seine Intensität als Charakter und im Ring, sein fühlbarer Willen, immer 100% zu geben -- all das spielte eine ebenso große Rolle wie das Gimmick. Sein Karriereende auf Grund der Nackenverletzung war eigentlich schade, aber das erlaubte es ihm auch, mehr oder weniger auf dem Höhepunkt seiner Karriere abzutreten (wie auch Langzeitrivale und Freund The Rock), so dass sich die Fans immer an seine Hochzeit erinnern werden, wenn sie an ihn denken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Cloverwrote on 06.04.2010:[9.0] "Geniales Gimmick, wrestlerisch aber nur Mittelmaß. Dennoch ein idealer Verkäufer seiner Rolle - aber wer wäre das nicht, wenn man sich zu fast 100% selbst darstellen darf ;-) .. so WHAT? ! 9 Punkte (minus 1 wegen Ringskills)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: KingSvenwrote on 27.03.2010:[9.0] "Eigentlich schwierig zu bewerten. Natürlich genialer Mic-Worker der die heutige WWE quasi im damaligen War überleben ließ und die Attitude-Ära begründete. Mit wahnsinnigen Charisma ausgestattet, die Fans liegen ihm auch heute noch zu Füßen. Ebenfalls eine absolute Legende im Ring und er wusste auch wann es Zeit ist aufzuhören. Eigentlich klare 10 Punkte, jedoch überzeugten mich seine In-Ring Leistungen nicht wirklich. Zwar nicht schlecht aber auch nicht weltklasse so dass hier 9 Punkte für mich angebracht sind."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: element-41wrote on 18.03.2010:[10.0] "Ich machs mal kurz: Hammer Charisma, Hammer Mic Work. Im Ring auch gut. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Papa Popanzwrote on 18.03.2010:[10.0] "10 points and thatŽs the bottom line - cuz Stone Cold said so"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Straight Edge Jerichoholicwrote on 16.03.2010:[10.0] "Stone Cold 3:16 says 10 Points for a Damn Legend! Hell Yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Moyawrote on 15.03.2010:[10.0] "Konnte die Massen begeistern und hinter sich ziehen wie kaum ein Zweiter. Wahnsinn welche Reaktionen er hervorgerufen hat. Seine Kämpfe waren immer intensiv, und seinen Finisher finde ich einfach klasse. Schade das er "relativ früh" seine Karriere beendet hat. Gehört ganz sicher zu den Großen des Geschäfts!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: rv27wrote on 10.03.2010:[10.0] "Er ist das Gesicht der Attitude Ära und einfach ein Großartiger Entertainer und Wrestler. MIt ihm wurde damals jede RAW Sendung zu etwas ganz besonderen. Schade das er nicht mehr da ist. Könnte mir in gut als RAW GM Vorstellen oder sowas in der Art."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MJ Goldbergwrote on 09.03.2010:[10.0] "Mit Ihm und seinem letzten Gimmick wäre die WCW niemals gestorben, schade das man sein Potenzial nicht erkannt hat! Respekt an die WWE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: VanZan82wrote on 07.03.2010:[9.0] "habe grad WM17 gegen the rock geguckt.... muss miene bewertung einfach ändern! ... hammer match!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Charismatic Enigmawrote on 25.02.2010:[10.0] "Wahrlich "the toughest a**hole being in the WWE" und dank brilliantem Auftreten der Star der Attitude Ära. Kam im Vergleich zu The Rock einfach noch ne Spur intensiver rüber, was wohl auch am Gimmick lag. Aber wie Matt Macks schon sagte, muss man auch einen Typen haben, der dieses auch rüber bringt. Steve Austin - eine Legende, die die Zeiten überdauert, und von der man auch noch in x Jahren reden wird, auch wenn er nicht ständig irgendwo auftaucht, wie so mancher "Brother" - Hell Yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: SweetMetalMusicwrote on 21.02.2010:[10.0] "Der Mann, der dem Business die erfolgreichste Zeit bescherte und den Monday Night War entschied. Wrestlerisch war er vor seiner Nackenverletzung ein feiner Techniker danach war er mehr ein Brawler, allerdings war er trotzdem noch zu hervorragenden Matches fähig, wie z. B. gegen The Rock, Kurt Angle, Triple H oder Mick Foley. Am Mic ist wohl nur The Rock besser als er sonst keiner. Seine Fehden waren alle grandios, ebenso wie seine Catchphrases. Wenn er die Höchstwertung nicht verdient hätte, dann hätte sie niemand verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: WrestlingFanDuisburgwrote on 20.02.2010:[9.0] "Steve Austin ist eine Legende und nicht zu Unrecht in der HoF. Jedoch kann ich ihm keine zehn Punkte geben, da er seinen Wrestlingstil im Laufe der Karriere ins negative entwickelt hat. Fand ihn zu Beginn seiner Ära mit dem KotR Gewinn am besten. Hat damals technisch sehr überzeugt. Natürlich am Mic total genial aber trotzdem reicht es für die Legende nicht zu zehn Punkten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Aquifelwrote on 08.02.2010:[9.0] "Früher hat er bewiesen, dass er ein ein guter Wrestler war. Als er dann so richtig in Fahrt gekommen war, gerade in Sachen Gimmick und Ringpräsenz, war er leider etwas eingeschränkter. Deshalb reicht es auch nur für 9 Punkte, denn so legendär vieles war, so repitativ war es oft auch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Exist 2 Inspirewrote on 07.02.2010:[10.0] "Zu Steve Austin ist mittlerweile wohl alles gesagt. Der vielleicht größte Wrestling Star aller Zeiten. Da kann man nur 10 Punkte geben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Super Dragonwrote on 28.01.2010:[10.0] "Stone Cold ist eine Legende er war der wichtigste begründer der Attitude Era, seine fehnde mit Vinnie Mac ist unvergesslich sowohl auch die Fehnde mit The Rock von diesem Mann wierd man noch in Hundert Jahren noch sprechen und er ist zurecht in der HOF, and thats the bottom line couse Stone Cold said so."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Rated R Superstar EDGEwrote on 23.01.2010:[10.0] "Ich kann ihn auch nicht so richtig leiden erkenne aber trotzdem seine Klasse. Er hat ein sehr gutes Mic-work und zumindest durchschnitliche in ring Leistungen und vorallem hat er unglaublich viel für die WWF/E getahen und das gehört gewürdigt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheROCKwrote on 22.01.2010:[10.0] "Stone Cold war natürlich zur richtigen Zeit am richtigen Ort. Ließ sich von schlimmsten Verletzungen nicht beirren und riss sich den Ar*** so auf, dass er der größte Superstar der Attitude-Ära wurde. Für mich einer der größten Überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: KASHwrote on 13.01.2010:[10.0] "10 Punkte: Aber in einem anderen Sinne wie für alle üblichen 10 Punkte Leute. Finde bescheuert wenn Leute hier meckern das Austin zu einseitig war mit seinem Brawlen. Euch ist schon bewusst das er durchaus ein guter Techniker war (1996 und davor) ? Euch ist dann auch noch bewusst das es ab 1997 nicht mehr um Technik ging. Der Mann hat mit dem Brawlen das Wrestling revolutioniert und verändert wie Hogan es getan hat. Er hat das US TV binnen kurzer Zeit umgestellt und durch seine Charakterausrichtung, die er perfekt rübergebracht hat, die WWE gerettet. Das alles ging fast von einem Mann und dem Programm um ihn herrum aus. Mal ehrlich ? ! Zu der Zeit mochte doch jeder miteinmal Brawls. Das war wie ein aufleben von Bud Spencer und Terrence Hill mit bösen Wörtern :D.... > Entertaiment im Begriffssinn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DJ MaSchwrote on 03.01.2010:[10.0] "Klar Austin war technisch kein Benoit, aber trotzdem im Stande gegen naheuzu jeden Gegner ein gutes Match rauszuholen. Er verstand es wie kein anderer sein Gimmick zu verkaufen und war einer der besten Mic-Worker aller Zeiten. Er ist der wohl grösste Star in der Geschichte von Sports Entertainment und gewann den Monday Night War für die WWF praktisch im Alleingang."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: PhilippPascalUndertakerfanwrote on 03.01.2010:[9.0] "Ich kann meine Vorredner die nur einen oder zwei Punkte vergeben haben, nicht verstehen. Gut Stone Cold ist vieleicht wie Heute Triple H oder John Cena. Aber er hat wenigstens sein Gimmick gut verkauft, es ist eingeschlagen. Und es hatte einfach was. Stone Cold hatte vieleicht im Ring nicht so viel drauf wie Benoit, oder Bret Hart. Aber er hat mit den Moves die er konnte, sehr sehr sehr geile Matches auf die Reihe gebracht. Ob er es gegen Undertaker machte, oder The Rock, oder wen auch immer. Stone Cold hat zum Ende, mit schweren Problemen zu kämpfen gehabt und selbst dann noch einer der besten Matches mit The Rock zu stande gebracht, was für die meisten Fans immer eines der besten bleiben wird. Zu der Zeit wo Stone Cold und The Rock noch im Ring standen... konnte man WWE noch American Pro Wrestling nennen! Heute ist es so leid es mir tut Pus*y Kinder Mist. Jedes Match ist so langweilig wie das andere.. aber naja good old times eben.."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Hulksterwrote on 12.12.2009:[10.0] "Im Ring war er zwar nie der Größte, dennoch machte er es mit seinem überdurschnittlichen Mic Work wieder weg. Seine Matches hatten immer eine Intensität die aus meiner Sicht nur er und The Rock hatte. Er war genauso wie Rocky das Aushängeschild der Ättitude Ära. Seine Fehde mit Vinnie ist Legänder. Schade das er verletzungsbedingt wohl nicht mehr in den Ring steigen wird zu wünschen wäre es aber HELL YEAH."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: downtown2wrote on 07.12.2009:[10.0] "Das Besondere an Steve Austin ist die Trendwende die er in diesem Sport herbeiführte. Er konnte noch so bösartig auftreten, die Massen jubelten ihm zu, keiner wollte mehr angepasste Saubermänner als Helden im Ring sehen. Er war der richtige Mann zur richtigen Zeit am richtigen Ort. Diese hole Frase hat vielleicht noch nie so sehr gepasst wie bei ihm. Ringerisch war er schon immer recht versiert und auch im Team mit Pillman damals Kult. Aber erst das Stone Cold Gimmick sprengte jegliche Dimension. Jedenfalls der wertvollste Wrestler für ein Unternehmen, den es je gegeben hat und somit zurecht in einem sehr erlauchten Kreis der Besten aller Zeiten, ob man da jetzt Fan ist oder nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MrSmackdownwrote on 30.11.2009:[10.0] "Austin vs The Rock! Steve Austin ist eine Legende, mehr muss man nicht sagen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: chaoswrote on 23.11.2009:[10.0] "In meinen Augen der absolut beste Wrestler und Performer den es in der WWE jemals gab, gibt und geben wird AND THAT`S THE BOTTOM LINE CAUSE STONE COLD SAID SO !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Turboladerwrote on 15.11.2009:[10.0] "Einer der wohl meist bejubelten Bad Guys, grandiose Fehden mit The Rock und Vince."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: peiler316wrote on 15.11.2009:[10.0] "Der Leader der SAU COOLEN Attitude Zeit. Perfektes Gimmick für Steve Austin. Wer wollte nicht so sein wie er - Rebell, Einzelgänger, WWF Champion und , ach ja, ab und zu den Boss verprügeln! Meiner Meinung nach hätte man ihm damals zu WCW zeiten ( Ende 1994) gegen Hogan endgültig schon zum top Main Eventer machen sollen. 2003 (WM XIX) sein letztes Match gegen The Rock, kommt mir vor als ob es gestern war :-( Schade, das traurige, verletzungsbedingte Karriereende. AUSTIN 3:16 wir werden dich nie Vergessen! Danke für die vielen coolen PPVŽs und RAW ShowŽs ..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Salidwrote on 13.11.2009:[10.0] "Einer von zwei Wrestlern, die meiner Meinung nach bis heute nicht zu ersetzen waren. Mit The Rock zusammen gerade zu der damaligen Zeit das absolute Non Plus Ultra! Ich wär gern dabei gewesen! Würden aber wahrscheinlich in der heutigen Zeit aufgrund der momentanen Firmenpolitik der WWE nicht mehr so gut funktionieren. Deshalb vielleicht sogar gut, daß ihre Zeit vorbei ist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Orton7wrote on 29.10.2009:[2.0] "Für Austin konnte ich mich nie begeistern. Wie einer meiner Vorredner schon geschrieben hat, war er im Ring absolut langweilig (so, wie Cena heute) und auch sein Mic-Work fand ich nie besonders gut..."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheBrainwrote on 30.09.2009:[10.0] "Neben Rock das Beste was Wrestling zu bieten hatte. Beide wussten, aus welchen Gründen auch immer, wann man sich aus dem Wrestling zurück ziehen sollte. Und das macht Superstars zu -> Legenden. Auch wenn es schade ist Sie nicht mehr zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: starfuckerwrote on 29.09.2009:[10.0] "Charisma, Mic-Work-besser gehtŽs nicht. Zog in den 90ér Massen vor den Fernseher. ( damals noch auf Tele 5)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Woerpwrote on 23.08.2009:[10.0] "Der Beste von Allen. Er hat das Wrestling revolutioniert. Ich war damals ziemlich genervt von den fantasymäßigen Gimmicks, die es noch vermehrt gab. Ich war kaum noch interessiert an der WWF, ausgenommen an solchen Leuten wie HBK und den Hart Brothers. Da kam auf einmal ein Austin (nur kurz als Ringmaster) raus und stunnte Jeden, der ihm im Weg stand; und auch Jeden, der es nicht tat. Dieser Mann hat uns allen unvergessliche Matches, Promos, Fehden und Momente geliefert, dass er zu recht als grösster Wrestler der Neuzeit (bei mir aller Zeiten) angesehen wird. And ThatŽs the bottom line, Žcause The Woerp said so."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Zizouwrote on 14.08.2009:[6.0] "Rückblickend ein wirklich bescheidenes Gimmick, das in der Zeit aber voll eingeschlagen hat. Nicht mein Fall."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 108 Sternewrote on 24.07.2009:[6.0] "Überschätzter Wrestler; ich glaube offengesagt noch nichtmal, daß seine Endlosfehde mit McMahon der WWF so viel Kohle eingebracht hat; da war die nWo zumindest in der Anfangsphase um Längen besser und vor allem wichtiger für die Entwicklung des Wrestling. Sein Charisma beruht größtenteils auf der bis dahin im US-TV als tabu betrachteten ordinären Flucherei, die ihn als Charakter irgendwie "edgy" erscheinen ließen. Objektiv betrachtet wars aber über Jahre nur immer dasselbe. Wrestlerisch nicht übel, aber sicher kein "Ringmaster". Sein Glück war im Grunde genommen der Personalmangel der WWF dank der zahllosen Abgänge zur WCW; nur so konnte aus einem Midcarder wie ihm ein Main Eventer werden."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Brainbreakerwrote on 10.07.2009:[10.0] "Es ist halt Stone Cold... er hat eine Ära geprägt, er hat die Massen bewegt, er hat die meisten Merchandising-Artikel verkauft. Es ist geradzu zynisch, dass er all das geschafft hat, nachdem er seine Nacken-OP hatte, die ihn sichtlich eingeschränkter hat wrestlen lassen. Zuvor war er auch im Geviert ein echter Meister. Alles in allem... hey, es ist halt Stone Cold!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: homicidal cena michaelswrote on 01.07.2009:[6.0] "Er wurde nur durch die Fehde mit Vince und seinem Gimmik ein so großer Star. Steve war kein toller Wrestler er istzu langweilig im Ring und schlägt nur bis auf ein paar andere Moves. Er hielt immer sehr gute Promos zeigte jedem den Finger und trank Bier. Meiner Meinung nach ist Steve überbewertet da er kein toller Wrestler war und da drum geht es ja ums Wrestling und nicht um irgendwelche Promos."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: stinger89wrote on 17.06.2009:[10.0] "10 Points.... and that's the bottom line, cause Stonecold said so!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Eddiewrote on 02.06.2009:[10.0] "Ich mach es kurz, in der Attitude-Ära DER Star, dank ihm bekam die WWE sehr viel Geld, unter anderem auch von mir, 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Blazewrote on 14.05.2009:[6.0] "War zusammen mit The Rock einer der ganz großen Stars der Attitude Ära und genau wie bei The Rock haben ihn die Storylines um seinen Charakter zu dem Star gemacht, der er ist. Im Ring war er ganz gut und konnte mit dem richtigen Gegner auch noch einiges mehr herausholen (Bret Hart, Kurt Angle usw. ), aber war da nichts Besonderes. Charisma hatte er mehr als genug, denn das war zusammen mit seinen Fähigkeiten am Mic einzigartig. Kaum jemand hält so gute Promos wie er oder The Rock gehalten haben. Letztendlich war er zwar für die WWE zu Zeiten des Monday Night War von großer Bedeutung, das waren aber auch noch andere wie HBK, Bret Hart, HHH und auch Vince McMahon, ohne den sein Charakter weitaus weniger im Rampenlicht gestanden hätte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Theron083wrote on 18.04.2009:[8.0] "Ganz ehrlich: Ich kann diesen unglaublichen Hype um ihn zu seiner Zeit nicht ganz nachvollziehen. Seine Skills sind ok aber nicht gut. Er hat Charisma, aber für mich war The Rock doppelt so charismatisch. Er war zu Recht ein Main Eventer und einer der beliebtesten, aber für mich persönlich reicht es nicht mit Bier um sich zu werfen und Stinkefinger zu verteilen. Ich find ihn wirklich gut! Aber eben auch nicht mehr. Wie er selbst gesagt hat: Er ist kein Wrestler der durch die Luft fliegt, er ist ein Kerl in schwarzen Schuhen, schwarzer Hose und schwarzer Weste und tritt seinen Gegner in den Arsch. :D"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: nightfallwrote on 16.04.2009:[10.0] "Neben The Rock derjenige der die WWE während der Attitude-Ära getragen hat. Nicht der beste Wrestler, aber eine extrem starke Persönlichkeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Mick Funkwrote on 13.04.2009:[8.0] "Hatte das Zeug für gute Matches und ist natürlich DER Superstar der WWE neben Hogan. Trotzdem nur 8 Punkte weil er mich persönlich nie umgehauen hat und im Ring technisch doch sehr limitiert ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Father Nelsonwrote on 01.02.2009:[10.0] "The biggest Star Sports Entertainment has ever seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The-Game91wrote on 01.02.2009:[10.0] "Stone Cold war das Aushängeschild der Attitude Ära. Seine Fehde mit Vince war einer der besten die es gab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Elitecoachwrote on 16.01.2009:[10.0] "Brillantes Gimmick, großartige Dynamik, sehr gut am Mikrophon und auch - oft verkannt - ein hervorragender Performer! Der beste "Alles in allem"-Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Unrated Superstarwrote on 15.01.2009:[9.0] "Zwar kein Wrestling-Gott, aber ein verdammt gutes Gimmick mit tollem Mic-Work und Entertainment-Talent. Einfach eine coole Sau und der King der Attitude-Ära. Matches mit ihm und einem guten Gegner (z. B. The Rock, Bret Hart, Triple H) machen einfach immer Spaß!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ScrWwe94wrote on 17.12.2008:[10.0] "Man musste sich nur den Jubel anhörn bei Cyber Sunday als er Referee war und sein Entrance begann. Einer der Besten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Phenomwrote on 10.12.2008:[9.0] "Klasse Micwork, Klasse Wrestler. Jedoch fehlt noch was zur 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Smi-48wrote on 08.12.2008:[10.0] "Zur richtigen Zeit am richtigen Ort - just als das Face/Heel-Gerüst Mitte der 90er durch DX und NWO ins wanken gerat, traf seine Art den Nerv der Zeit. Zusammen mit Rock und Foley brachte er zeitlos geniale Promos. War ein wahnsinnig talentierter Wrestler, was nach seiner schweren Nackenverletzung durch Owen's Piledriver in intensives Brawlen überging, jedoch konnte er auf beide Arten ein Match unheimlich gut 'erzählen'. Dass er zur Wrestling-Boomphase Millionen an Merchandise-Erlösen einbrachte, gepaart mit der Tatsache, dass die WWF-Booker damals herausragende Storylines für ihn kreierten, lässt ihn retrospektivisch für die Bedeutung des Business auf einer Stufe mit Hogan stehen. In der Tat bleibt Austin zu Recht bis heute der größte Draw aller Zeiten ... 10 Pkt. !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: kutziwrote on 28.11.2008:[10.0] "Der größte Star den das Wrestling je hatte. Im Ring sowie am Mic ein Gott."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Perry Coxwrote on 23.11.2008:[10.0] "Der Mann ist einfach nur hammer! Eine Legende! And thats the Bottom Line, cause Stone Cold 3:16 whipped you ass (vermixt)!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: hostrodwrote on 11.11.2008:[9.0] "siehe Undertaker - legendär und revolutionär, aber auf Grund seiner spärlich gesäten Auftritte mittlerweile nicht mehr wirklich interessant. Betritt Austin die Bühne, gibts ein "Hell Yeah", Dosenbrot und einen Stunner. Nichts, was mich vor Jubel in die Höhe schnellen ließe. Am Mikro aber nach wie vor unersetzlich, deshalb einen Punkt mehr als der Deadman."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Animal360wrote on 22.10.2008:[10.0] "Kaum ein Wrestler wird bei seinem Entrance so gefeiert wie er. Das Publikum liebt Austin zudem war er gut als Wrestler unterwegs. Resultat: 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DirtiestPlayerwrote on 20.10.2008:[10.0] "Super Gimmick und klasse Mic-Work. Note 1, ganz klar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Roennewrote on 15.10.2008:[10.0] "Einer der besten im Geschäft. Am Mic große Klasse und auch im Ring konnte er mich immer überzeugen. Der Mann ist einfach große Klasse und das Vorbild meiner Jugend. WHAT?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Wise Warriorwrote on 15.09.2008:[10.0] "Mann muss es einfach haben oder nicht - sowas kann man nicht lernen. Stone Cold hat es einfach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: StoneColdRevowrote on 29.08.2008:[10.0] "Einer meiner Lieblingswrestler. Super im Ring und am Mic. Austin 3:16 says I just whipped your ass!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: RIKYwrote on 21.08.2008:[10.0] "Man sieht ja wie sehr er polarisiert... mal ne 10 andere geben ne 0 eines kann und darf man aber nicht außer Acht laßen, er hat die WWE ze dem gemacht was sie heute ist, mit verschiedenen Anderen. Ohne ihn und sein Charisma wären der WWE viele Fans weggeblieben. Manche haßen ihn (habe ihn auch gehaßt), andere lieben Ihn. Schade daß er nicht mehr in Aktion zu sehen ist. Arrive, raise hell, leave! And that's the bottom line 'cause Stone Cold sais so!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: NJackwrote on 18.08.2008:[6.0] "Klar, der Mann hat das Wrestling revolutioniert und war der Retter der WWE/F. Er wurde von allen geliebt und hatte ein völlig untypisches Face-Gimmick für die damalige Zeit. Aber: Heute meckern alle, dass Cena im Ring nix leistet... Habt ihr mal Matches von AUstin gesehen? Der macht auch immer nur die selbe Scheiße. Und sobald man den Stunner sieht hat er gewonnen. Und wo wir schon beim Stunner sind... das ist imho der Finisher, der mir am meisten auf den Sack geht. Wo immer Austin auftaucht, was immer er gerade tut: Stunner hier, Stunner da. Sicher, er ist eine der schillerndsten Figuren des Wrestlings. Doch mir hat er schon als Mark damals irgendwann nicht mehr gefallen. Ich geb ihm ne 3..."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: nacho83wrote on 17.08.2008:[9.0] "Seine späteren Gastauftritte waren nicht einmal mehr unnötig, ansonsten wohl einer der legendärsten Wrestler der damaligen WWF. Was er technisch nicht drauf hatte machte er dafür mit seiner Attitüde wieder wett."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Jar Jar Binkswrote on 08.08.2008:[10.0] "The Texas Rattlesnake!  Sehr amüsiant!  Sein Fuck Fear und 3:16 "Gimmick" ist auch genial!  Außerdem ist der Stone Cold Stunner auch legendär."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Desperadowrote on 04.08.2008:[10.0] ""One of the greatest of alle time", wie JBL sagen würde. Im Ring zwar nur überdurchschnittlich, aber mit der genialste Micworker, den es gab. Jedes mal, wenn Austin bei einer Show aufkreuzt muss man sich einfach freuen bevor er überhaupt etwas gezeigt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: sono fagunwrote on 23.07.2008:[10.0] "War '97 bis '00 mein absoluter Lieblingswrestler, unglaublich charismatisch einfach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Weihnachtsmannwrote on 23.07.2008:[4.0] "War zu seiner Zeit wahnsinnig beliebt, hab nie ganz verstanden warum. Ich fand sein Gimmick nie besser als solide, seine Fähigkeiten im Ring haben mich auch nie vom Hocker gerissen und bei seinen Promos ist der Funke auf mich nie so richtig übergesprungen.... ok er hat mich gelangweilt. That`s it."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: WerderBremenwrote on 17.07.2008:[10.0] "Wenn man etwas zerspringen hört, eine Klapperschlange auf dem Titatron erscheint und eine dumpfe Musik gespielt wird, kommt sofort eine Stimmung und eine Ehrfurcht auf, die einmalig ist in diesem Geschäft. Sein rauher, rüppeliger Gimmick war das Zugpferd das die WWE zu dieser Zeit doch so anzog. Wann immer mal wieder jemand langweilig etwas schwätzte, platzte mit dem Zerspringen der Scheibe in seinem Theme auch die pure Freude und Emoition aus einem selbst heraus, denn man wusste, dass jetzt gleich wieder alles auf dem Kopf steht. Was ihn für mich also wirklich ausmacht ist die ultimative Ausstrahlung, die auf diese Art und Weise keiner, in diesem Ausmaß nur wenige haben. Er war auch für jede beliebige Story der WWE einsetzbar und machte was daraus. Ich gebe zu, dass ich mich jetzt schon auf den Tag freue bei dem während der Hall of Fame Feier wieder der Klang des zerspringenden Glases zu hören ist und zwei Finger von ihm (hoffentlich) in die Luft gestreckt werden... !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: andrekoenigwrote on 08.06.2008:[10.0] "Sone Cold Steve Austin ist für mich, genau wie The Rock, einer der besten und charismatischsten Wrestler der Attitude Ära. Ich mag seine gesetzlose Art und seinen, wenn man das so nennen kann, Kampfstil. Er prügelte zwar größten Teils einfach nur auf seine Gegner ein, aber er hat es trotzdem immer wieder mit seinen paar Aktionen geschafft gute Matches hervorzurufen. Wenn man Steve Austin sieht und die Fans schreien hört muss man einfach mit jubel. Die Texanische Klapperschlange bekommt von mir die volle Punkzahl, weil er einfach unterhaltsam und charismatisch ist und weil er die Attitude Ära geprägt hat wie kein andere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Rob Van Duesenschrauberwrote on 20.05.2008:[9.0] "Die personifizierte Attitude Ära. Unglaublich stark am Mic, im Ring im oberen Drittel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Frutzwrote on 15.05.2008:[10.0] "Wahrscheinlich der Tweener schlechthin. Prügelte den Boss, soff sich kaputt, stunnte absolut jeden und war wohl neben "The Rock" das beliebteste, was die Attitude-Ära zu bieten hatte. Seine In-Ring-Fähigkeiten waren befriedigent, seine Mic-Fähigkeiten überragend, von den Fehden gegen McMahon ganz zu schweigen. Er verdient die 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Brooklyn Brawlerwrote on 15.05.2008:[10.0] "Ein Brawler in allen Belangen: Im Ring, im Aussehen und im Mic-Work - und gerade deshalb als Anti-Held SO over wie kaum jemals ein anderer Wrestler. Warum die 1? Because Stone Cold said so :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: e-trom995wrote on 21.04.2008:[8.0] "Stone Cold ist sehr angagiert. Dafür gibt es meinen Respekt und 8!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Die Gurkewrote on 21.04.2008:[10.0] "Unglaublich was dieser Man für eine Ausstrahlung hat, wenn Austin die Halle betritt brennt die sprichwörtliche Luft. Ich lese hier auch die Kommentare über seine nicht vorhandenen Inring-skills, aber hat Austin denn jemals schlechte Matches gezeigt? Austin ist eben ein Brawler, und das setzte er im Ring auch gut um. Deshalb ist dieser Mann imo auch so populär, weil bei ihm das Gimmick, der Wrestlingstil, das Micwork und die Promos alles wie aus einem Guß wirkt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Alpheronwrote on 17.04.2008:[4.0] "Ein reiner Haudegen, keine technik... Aber allein der Name Stone Cold Steve Austin od. 3:16 steht für sich. also 4 PKTE"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Amurebkuwrote on 16.04.2008:[10.0] "Kultfigur der WWE und immer unterhaltsam. Klasse Entertainer und guter Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: AnFuwrote on 12.04.2008:[7.0] "Mitreißen kann er, dass ist aber auch mit das einzige. Trotzdem starke Matches und eine Legende, aber keine Bestnote!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: FameAsserwrote on 04.04.2008:[10.0] "Ein unerreichter Entertainer!  Zurecht "Superstar of the decade"!  Ich hoffe ja immer noch auf ein comeback-egal ob im oder ausserhalb des Rings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: sebiwrote on 30.03.2008:[10.0] "Wrestlingtechnisch nicht der Beste aber ein großartiger Entertainer"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Ruppiwrote on 27.03.2008:[6.0] "Sein Gimmick und sein dazupassendes Mic-Work sind genial und er hat sicherlich enorm viel zur Entwicklung der WWE beigetragen, dennoch war ich nie ein Großer Fan von ihm. Da ich ihn auch im Ring nicht wirklich gut finde, bekommt er zwei Noten Abzug."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Schandmaulwrote on 20.03.2008:[4.0] "Im Ring und am Mic für mich ausreichend. Mit dem Stone Cold Gimmik konnt ich nie was anfangen. Und die zahllosen Auftritte nach dem Karriere-Ende hätte man sich auch sparen können, da hierbei immer nur das selbe Muster abgespielt wurde."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DonTwrote on 17.03.2008:[10.0] "Schade, dass seine Karriere so schnell vorbei gehen musste - er war einer der alles konnte - geiles Micwork und ein fantastischer Brawler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ecw foreverwrote on 17.03.2008:[10.0] "Ich gebe die vollle Punktzahl da Austin wohl einer der einprägendsten Gimicks hatte bzw hat. Okay mann kann auch wie bei Hogan sagen, das er um die richtige Zeit am richtigen Ort war und dies ausnutzte. Nun Austin ist bei aller Austin Fanatik nie ein grosser im Ring gewesen. Ich meine viel hat er nicht gezeigt. Einzige was man ihn zusprechen muss ist das können Moves zu verkaufen. Naja seine Matches gefallen mir zwar aber mehr als eins Pro Tag muss ich echt nicht sehen. Sein Mic Work sehe ich ganz weit. Es gibt wirklich nur wenige die für mich besser am Mic waren wie Eddie oder Jericho. Ich finde er gehört zu den Mic Workern überhaupt. 3:16"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Instant Classicwrote on 14.03.2008:[4.0] "Die SL's mit Vince McMahon und Taker waren sehr stark, aber ansonsten konnte ich nie wirklich was mit Austin anfangen. Für mich hoffnungslos overrated."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Hardcoremaniacwrote on 16.02.2008:[10.0] "Genialer Typ, und wiedereinmal ein Beweis dass man kein Supertechniker sein muss um weltklasse Matches zu bestreiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jimpanse1980wrote on 23.01.2008:[10.0] "Sicherlich kein Gott im Ring, aber es gibt kaum einen zweiten, der so die Massen begeistert hat wie er. Zudem kam er jederzeit glaubwürdiger rüber als Hogan, der auch nur wenige Moves in petto hatte. Egal wo, egal wie - Ihm wurde immer zugejubelt. Un auch wenn sein Gimmick ein wenig an den Sandman erinnert, sag ich lieber gut geklaut als schlecht selbst gemacht. Er hatte unvergessenen Matches und bestritt die meisten MainEvents. Das sollte alles sagen. In einer Sammlung mit den erinnerungswürdigsten RAW-Momenten, würde sein Name/Bild sehr häufig vorkommen. Alles andere als 10 Punkte wäre gelogen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: mr sledgehammerwrote on 04.01.2008:[10.0] "Ein absoluter Top-Wrestler. Seine Fehde gegen McMahon war eine der besten der Geschichte. Legendär! And thatŽs the Bottom Line"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Stone Cold Andywrote on 04.01.2008:[10.0] "Zusammen mit Rocky der beste Wrestler überhaupt. Er hatte im Ring was drauf, war unglaublich unterhaltsam und schuf viele tolle Momente, die das Wrestling und natürlich die Attitude Era prägten. Vor allem die Fehde mit Vince McMahon ist eine Perle im Wrestling. Note: 1+"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Brahma Bullwrote on 03.01.2008:[10.0] ""That's the bottom line, cause stone cold said so"!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Yetiwrote on 30.12.2007:[8.0] "Der Grund, weshalb ich einem der besten Mic-Worker aller Zeiten und einemden Buisness bis heute prägenden Wrestler nur acht Punkte gebe, ist, dass er mich vom technischen immer nur zufrieden gestellt hat. Mit seinen wrestlerischen Fähigkeiten hat mich Austin nie vom Hocker gerissen. Trotzdem natürlich ein sehr wichtiger Mann für die WWE. Ich würde ihn heute auch gerne wieder öfters sehen, z. B. als GM. And that's the bottom line(s)."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MA Excellentwrote on 29.12.2007:[10.0] "Steve Austin fiel mir zu Beginn der 90er zu seiner WCW Zeit erstmalig auf. Ich war etwas irritiert, er schien mir zu gut für diese Liga zu sein; Dann ging es weiter als Ringmaster usw. , was auch nicht schlecht war, speziell die Fehde mit Bret Hart. Dann der Wandel zur Rattlesnake (Austin 3:16 said I just whipped your ass! ), womit er zum Megastar wurde. So over war wohl bisher kaum Jemand, außer in dunklen Vorzeiten mal Hogan oder der Warrior. Geiles Theme, tolle Intenität, starker Finisher und häufige Überraschungs-Momente, das war Austin auf dem Zenit. Im Ring würde ich ihn sogar über The Rock und auch Triple H sehen, er war einfach Jemand, der seine Skills im Ring in den von ihm so genannten Busch-Ligen aufgebaut hat. Man kann bemängeln, dass sein Charakte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Supertechwrote on 26.12.2007:[8.0] "Stellt einen problematischen Charakter (Alkohol im Ring, Stinkefinger, Auflehnen gegen die "Vorgesetzten", ständige Verbalinjurien) hervorragend dar, hat sehr viel Ausstrahlung. Wrestlerisch hätte es allerdings doch etwas mehr sein dürfen. Der Stunner ist aber einer meiner Lieblings-finishing moves."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Wuschl 85wrote on 15.12.2007:[8.0] "Im Zuge der Attitude-Ära ganz groß und ein toller Charakter. Seine wrestlerischen Fähigkeiten empfinde ich dann doch als eher begrenzt. Und mittlerweile finde ich seine Bierbashes nur noch doof und einfach unpassend. Seine Matches gegen The Rock sihd dennoch legendär und sein SmokingSkull Championgürtel fand ich echt klasse. Auch sein Finisher ist einer der Besten und immer wieder gern gesehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: EGeraldhuebnerwrote on 01.12.2007:"Im Ring (also nur als Wrestler) eher limitierte Fähigkeiten und Begabung, dafür natürlich ein großartigen Entertainer vor dem Herrn mit unglaublichen Durchsetzungsvermögen ... das sein Gimmick / Image als total respektloser, biertrinkender Proll mehr schlecht als recht beim Sandman abgekupfert wurde, wollen wir hier mal außen vor lassen. Konnte mir vor kurzen wieder ein paar alte Maches von ihm (damals noch als "Stunning" unterwegs) aus WCW, ECW und den frühen Anfangen in der WWF unter Ted "Million $ Man" Dibiase ansehen, da machte er absolut keine gute Figur ... sollte also heutzutage bei Einflußnahmen nicht vergessen, das auch er mal klein angefangen hat."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheAdaawrote on 18.11.2007:[10.0] "Der Star der Attitude Ära innerhalb der WWF / WWE. 3:16; What? , Bier ohne Ende, Mittelfinger und That's the bottom line sind Kult. Er prägte das Wrestling in dieser Zeit zusammen mit The Rock wie kein Anderer. Er ist der Bad Guy des Wrestling und das mit Recht. Wrestlerisch nicht so überragend, aber das macht er mit anderen Qualitäten wieder wett."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Comptonwrote on 18.11.2007:[10.0] "Einer DER Wrestling-Superstars aller Zeiten. Einziger klitzekleiner Kritikpunkt: Wrestlerisch nicht wirklich überragend. Das stört jedoch nichts an einer vollen Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Rated-R-Fanwrote on 29.10.2007:[10.0] "In der Attitudezeit der wohl beste Wrestler. Auch seine Kurzzeit-Comebacks sind immer noch 1A. Schade das er nicht mehr Fulltime in den Ring steigen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Benny110106wrote on 28.10.2007:[10.0] "Er holte die WWF zusammen mit Vince aus der Krise. Austin ist der Hogan der späten 90er. Ende der 90er beliebter wie Hogan. Er ist einfach einer der besten WWEler aller Zeiten. Schade, dass er seine Karriere so früh beenden musste. Trotzdem 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ghostwrote on 18.10.2007:[10.0] "Einer der grossartigsten Wrestler aller Zeiten.. nebst Hogan und The Rock wohl der berühmteste. Austin 3:16 says "i just whipped your ass! ". Ein Wrestling-Phänomen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Peisistratoswrote on 04.10.2007:[10.0] "Steve Austin hab ich immer gerne gesehen und freue mich auch heute noch über seine kurzen Auftritte. Immer wieder lustig im zuzusehen und vor allem zuzuhören, daher eine Eins."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Oli10wrote on 01.10.2007:[10.0] "Genial! Was anderes fällt mir zu ihm nicht ein! Einer der besten 5 Wrestler aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: dariawrote on 30.09.2007:[10.0] "... unterhaltsam wie kaum jemand sonst, egal ob als SCSA oder auch bei den Hollywood Blondes oder als Ringmaster, dazu ein Supertechniker"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ShakDragoonwrote on 19.09.2007:[10.0] "Eine absolute Legende, ohne den die WWE nie so erfolgreich wäre, wie sie heute ist! Er ist DER herausragende Wrestler der Attitude-Ära und war an den spektakulärsten Fehden der Wrestling-Geschichte beteiligt... da spielt es auch keine Rolle, dass es bessere Worker im Ring gibt als ihn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Bullit69wrote on 16.09.2007:[10.0] "Eine Ausnahmeerscheinung mit nem klasse Gimmick(obwohl er einfach nur er selbst war)und wollte zurecht immer der Beste sein!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: etstoanawrote on 11.09.2007:[10.0] "Für mich der beste WWE Champion aller Zeiten. Die besten Interviews, geniale Backstageaction und immer ein Bier auf den Sieg."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Lord Loviswrote on 08.09.2007:[8.0] "Steve Austin war/ist vom Micwork nahezu eimalig. Das beherrscht die Texas Rattlesnake einfach bestens und das hat ihn auch zur Größe verholfen. Aber Steve Austin hat einfach kleine Mäkel, die man nicht übersehen darf. Da sind eimal seine In Ring Skills, die nich gerade sehr berauschend sind und ja sein hoganähnliches Primadonnenverhalten, welches ich einfach nicht abkann. Was ist denn so schlimm dabei, gegen jüngere aufstrebende Superstars zu jobben, um sie over zu bringen ... Hier kann ich einfach nicht die volle Punktzahl vergeben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Manuelwrote on 06.09.2007:[10.0] "Hell Yeah! Wenn ich den Name WWF höre kommt mir gleich der Name Bret Hart, The Rock und natürlich Steve Austin. Er ist eine WWF Legende mehr kann man zu ihm nicht sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Baldrickwrote on 02.09.2007:[8.0] "War in der WCW der deutlich bessere Wrestler. Wird aber auch noch in 5 Jahren die Leute aus den Sitzen reissen, wenn die das Glas zerspringen hören. Teil einer Revolution und nach Rocky und Hogan die wahrscheinlich grösste Drawing-Power aller Zeiten. Dazu natürlich unfassbar charismatisch!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: mdbnasewrote on 27.08.2007:[2.0] "Für mich einfach ein Unsymphat. Um die Objektivität nicht ganz zu verlieren: 2 Pünktchen für seine Mic-Skills. Ansonsten hat er geschätzte 3 Wrestling-Moves, kein selling und ist total überheblich. Zudem kann Austin nicht mal "trinken" ohne sich den Latz voll zu sabbern. Wer so mit "Bier"umgeht (auch wenn's nur Ami-Plörre is), hat keine höhere Punktzahl verdient - Prost!"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Alan Smitheewrote on 26.08.2007:[10.0] "Eine der ganz großen Legenden auch wenn er meiner meinung nach etwas zu sehr von sich selbst überzeugt ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Austin 316wrote on 26.08.2007:[10.0] "der größte wrestler der 90er und einer der besten aller zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Aglaoswrote on 20.08.2007:[8.0] "Natürlich einer der ganz Großen. Trotzdem, irgendetwas hat mir immer gefehlt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Obermackerwrote on 09.08.2007:[10.0] "Mit Hulk Hogan und the Rock in den Top 3 aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: shannonmoorewrote on 28.07.2007:[10.0] "Nie ein guter Wrestler aber einfach jemand wegen dem man ein Ticket bucht um sich ne Wrestlingshow anzukucken. Brachte ne Revolution in diesem Geschäft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: real americanwrote on 23.07.2007:[10.0] "Der größte Superstar der Neuzeit, er hat das Wrestling in den 90ern revolutioniert seine MAtches gegen den Hitman Bei WM 12 und Rocky bei WM 17 sind absolute Klassiker die jeder Fan gesehen haben muss. Seine Promos und Catchphrasess habe ich immer geliebt und seine Fehde mit Vince Hat die WWE gerettet und die WCW zerstört. Auch seine Hollywood Blondes Zeit mit Pillman hat mir gefallen. And that's the bottom line, 'cause Stone Cold said so!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Blade Bourdeauxwrote on 02.07.2007:[10.0] "Wenn man ihn als Teil der Hollywood Blondes gesehen hat, kam man relativ schnell zu der Überzeugung, dass aus dem was wird. Mit seiner unkonventionellen Art hat er das Business revolutioniert und sich selbst eine Legende erschaffen, wie es nur ganz wenigen sonst gelungen ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: blakewrote on 30.06.2007:[10.0] "Also ich kann nur sagen volle 10 punkte oder wenns gehen würde noch viel höher . Mein absoluter fave in der Attitude-Era. gott was hab ich ihn vergöttert. ich bin und bleibe ein Austin 3:16 groupie xD. Wenn ich ihn sehe steigt bei mir mein Adrenalin. Sein Gimmick war erstklassig. Nich umsonst hatte die WWF/WWE die erfolgreichste Storyline allerzeiten. Aggressiv, skrupellos, hatte seine eigenen Gesetzte und zugleich erfolgreich ob Heel oder Face. Der Mann war und is Goldwert. Auch wenn sein Film gefloppt is. Aber das lag einfach ma an der Produktion und der Regie. UNLEASH HELL"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ShaneOwrote on 28.06.2007:[10.0] "Absoluter Superstar während der geilsten Zeit des Wrestlings. Alles andere als eine zehn für diesen Mann ist Uthopie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Steven McWheelerwrote on 27.06.2007:[10.0] "OHJA, Stone Cold hat dem Boss in den Arsch getreten und das alleine ist 10 Punkte wert! Mal ersnthaft, sein MicWork finde ich hervorragend und er macht jeden Müll mit und ist der geborene Bösewicht und trotzdem rechtschaffend! Er hat nie seine Authorität verloren in der WWE! Hochachtung"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Das Aushängeschild der Attitude Era! Berühmt geworden durch die legendäre Fehde mit der Hart Foundation und Vinnie Mac! Sowohl als Face als auch als Heel ein Ass! Wenn das keine 10 Punkte gibt, weiß ich es auch nicht mehr... Austin 3:16 says I just whooped your ass"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Trevedaswrote on 24.06.2007:[10.0] "Als Wrestler mittelmäßig, als Entertainer unübertroffen. Hatt die geilste Fehde aller Zeiten und zudem mit viel Charisma ausgestattet. Legendär seine Beer Bashes, Legendäer seine Stunner und jeder hatte sie verdient. Hell Yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Elvis33wrote on 24.06.2007:[6.0] "Cooler Typ aber leicht übertriebene Art. Warum hat er z. B. Donald Trump bei WM23 noch einen mitgegeben? ! Seinem Auftreten hat er seinen Ruf zu verdanken. Als Wrestler eher mittelmäßig."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Angus666wrote on 24.06.2007:[10.0] "Volle Punktzahl. Austin war einer der ganz großen in der Endphase der Neunziger. Die Matches gegen The Rock waren einfach Weltklasse. Neben dem Gimmick des Taker wohl das beste überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Showstopperwrote on 24.06.2007:[10.0] "Bis zum Stone Cold Gimmick auch ein guter Techniker, seitdem ein guter Brawler. Charismatisch und top am Mic. Eins der wenigen Total Packages im Business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: raven1610wrote on 24.06.2007:[6.0] "Zu unrecht wird er als einer der Besten aller Zeiten bezeichnet. Seinen Erfolg kann man seinem Gimmick zusprechen , das einfach den Nerv der Zeit traf und deshalb wie eine Bombe einschlug. Wrestling Skillz waren auch nie wirklich überragend."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Deadman81wrote on 24.06.2007:[8.0] "Im Ring gibt es dutzende von besseren Wrestlern, aber am Mic unübertroffen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Mr Wrestlemaniawrote on 24.06.2007:[10.0] "Ich als The Rock Fan denke da nur an Wrestlemania 17! So eine Fehde wird es nie wieder geben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: mrssonic2000wrote on 24.06.2007:[10.0] "Das beste was das Wrestling jemals hervorgebracht hat. Genial am Mic, genial im Ring, genial backstage. 3:16 forever!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Zwar auch kein super Techniker, aber sehr starkes Mic-Work, überzeugendes Selling und der Mann, der den Monday Night War gewann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Sharkwrote on 24.06.2007:[4.0] "Okay als Brawler aber sonst nichts... am Mic in ordnung aber nicht befriedigend"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jerseyhoolwrote on 24.06.2007:[10.0] "Einer der ganz wenigen, dessen Gimmick sogar Leuten bekannt ist, die im Regelfall mit Wrestling gar nichts am Hut haben. Der richtige Mann zur richtigen Zeit am richtigen Ort. Legendäres "I quit" Match gegen Bret Hart, das ewige Enfant Terrible der Wrestlingszene. Nicht der grosse Techniker, aber dafür einer der charismatischsten Worker aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Sabu316wrote on 24.06.2007:[10.0] "War schon in der WCW genial. Nach seinem Wechsel zur damaligen WWF hat es zwar etwas gedauert aber danach kam dann der Megaerfolg. Micwork perfekt, gute Matches und ein Grund warum die WWE den Monday Night War gewann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: wtfantekwrote on 10.02.2025:[10.0] "Pro wrestler of the highest order. At her best, her combination of intensity, fluidity & technicality is unparalleled. Moonsault, suicide dive or any move she does, she is the gold standard in that, even her moonstomp! Which she popularized when she was rising as the phenom of Joshi puroresu in 2010s. A very focused & resilient woman. Known to be a quick learner, who doesn't hesitate to push the limits if allowed to while keeping a check on safety of others. A true genius. WWE style is different & safer generally, but given opportunity, it becomes quite evident how incredible she is & she has only improved in different ways like her timing & charisma. From showing various faces as the Ace of Stardom to being the dominant NXT heel (despite tempo of NXT being slower at that time, which means she couldn't show her full potential, also saving moves for big matches on the main roster), to being the cute main roster heel to again being dominant, than babyface while keeping the elements of the previous self exploring the grey area, her diverse character work is art, just like her gears. Her promos, specially the Japanese once are so cool! Her broken ankle in 2022 added another layer of restriction on her but it's amazing how she has adjusted her in-ring work to it. Even Satomura san said she got chills while wrestling with IYO after several years during 2024 WWE Japan tour, maybe she got a flashback of their legendary matches, either way it shows how highly she is regarded even by legends from an era when Joshi pro wrestling was considered even more physical. She continues to influence & inspire many people, including many of her peers over the years from WWE, Stardom & around the world. The legend of 'Io Shirai' is the one to be remembered for ages best of the best"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Sky227wrote on 07.02.2025:"Iyo is one of the best womens wrestlers in the ring - it's almost impossible to have a bad match with her. She is energetic & very fun to watch. Since English isn't her native language, promos are one of her weaknesses but with the right booking you can hide that"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: camilashiraiwrote on 07.02.2025:"Iyo Sky is a beast in the ring and there is no denying her incredible skill and potential as a wrestler. She is an incredible athlete and has showcased tremendous talent and dedication. With her passion and resilience, there is no doubt that she deserves to be WWE's Women's World Champion once again."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Sheriff611wrote on 05.02.2025:"Iyo is fantastic to watch and has you invested in every move she does. She oozes charisma and is very easy on the eye."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Its Clobbering Timewrote on 04.02.2025:[10.0] "The Best Female Wrestler in the world and top 3 favorite for me. Everything Iyo does is perfect and she is just super sick and cool."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: RobMentalitywrote on 31.01.2025:[10.0] "Iyo Sky is the best women's Wrestler in the world right now IMO. My Goat as well she just been killing it all 2024/25 she is just so smooth, dynamic, and Cool asf she is Over as well she should win the rumble she earned it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: wrestlingswiftiewrote on 27.01.2025:[8.0] "IYO has always been very good. She's the best women's wrestler in WWE right now, even though that exact same company is holding back her style."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: jesuissashawrote on 21.01.2025:[10.0] "Probably the best female wrestler in the 2010s and one of the best wrestlers ever (w+m). What she showed in Stardom is fantastic and unparalleled. Since moving to WWE, even with a cut down move set, she hasn't been lost and remains one of the brightest performers on the roster."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: zacharymahabirwrote on 11.01.2025:[10.0] "The prototypical women's wrestler exists and IT IS IO SHIRAI, IYO SKY, EVERY ITERATION OF HER DICTATES WHAT DEFINES GREATNESS IN THE INDUSTRY. Even without being given clear creative direction in certain parts of her WWE run, at every agent of her career thus far, Io has been a top 10 caliber worker. It's the Kurt Angle effect. The reality. There, simply, are no bad Io matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: arvind0wrote on 04.01.2025:[10.0] "Pro wrestler of the highest order. At her best, her combination of intensity, fluidity & technicality is unparalleled. Moonsault, suicide dive or any move she does, she is the gold standard in that, even her moonstomp! Which she popularized when she was rising as the phenom of Joshi puroresu in 2010s. A very focused & resilient woman. Known to be a quick learner, who doesn't hesitate to push the limits if allowed to while keeping a check on safety of others. A true genius. WWE style is different & safer generally, but given opportunity, it becomes quite evident how incredible she is & she has only improved in different ways like her timing & charisma. From showing various faces as the Ace of Stardom to being the dominant NXT heel (despite tempo of NXT being slower at that time, which means she couldn't show her full potential, also saving moves for big matches on the main roster), to being the cute main roster heel to again being dominant, than babyface while keeping the elements of the previous self exploring the grey area, her diverse character work is art, just like her gears. Her promos, specially the Japanese once are so cool! Her broken ankle in 2022 added another layer of restriction on her but it's amazing how she has adjusted her in-ring work to it. Even Satomura san said she got chills while wrestling with IYO after several years during 2024 WWE Japan tour, maybe she got a flashback of their legendary matches, either way it shows how highly she is regarded even by legends from an era when Joshi pro wrestling was considered even more physical. She continues to influence & inspire many people, including many of her peers over the years from WWE, Stardom & around the world. The legend of 'Io Shirai' is the one to be remembered for ages."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: MEDaminewrote on 04.01.2025:[10.0] "The best Women wrestler in WWE currently, and one of the best in the world. If a wrestler doesn't have a good match with her then it's their fault. And Her ability to connect with the audience, whether through her daring aerial assaults or her resilient spirit, is a testament to her star power."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Rosyawrote on 04.01.2025:[7.0] "It's hard to see the charisma that everyone sees in her. As for me, Asuka was much more interesting, at least because she had a streak of wins. Iyo Sky was really average from the start. She just showed good wrestling. She often botches, although I have nothing against it, because absolutely everyone botches, one way or another, but people often turn a blind eye to her mistakes, but they get really angry with Nia Jax and Damian Priest make them. Unfortunately, she's bad on the microphone. If you speak Japanese, even shout, then this can hardly be called charisma. Opening your mouth and eyes widely in surprise is also not exactly charisma. And even if her wrestling is good, it is almost always built according to one scenario. If she can't successfully perform a Moonsault, then she will probably lose. I don't see a star in her that could be rated at 10 points. It's probably worth giving the highest score to someone who is not only good in the ring and on the microphone, but also able to attract a new audience, which is something that not everyone can do these days, and Iyo Sky even more so. She reminds me of Justin Gabriel, who also had good wrestling, but for some reason he was considered boring, but Iyo Sky, for some reason, is the embodiment of charisma. Perhaps the entrance plays a big role, but this is the merit of def rebel and other guys from the same field, who are used to being condemned for the simplicity and unrecognizability of songs"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: FutureWrestlerCelebwrote on 29.12.2024:[10.0] "She's good at acrobatic, flips and tricks, I don't know but she needs another title reign like the one she reigned in NXT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Wrestling Foreverwrote on 28.12.2024:[10.0] "Eine der besten Joshis der Neuzeit und überhaupt. Sie schont sich nie die Frau ist erst 27 und hatte und hat schon einige Probleme bei ihren Körper ihr Stil fordert Tribute. Stiff und unglaublich hart schon gut das sie nun wieder bei Stardom und generell Japan ist. Ganz, ganz starke Joshi. Edit 09. 11. 2019 in ihrer aktuellen Heel Rolle bei NXT auch sehr stark. Edit 28.12.2024 Längst eine der Top Stars in den WWE Main Shows. Klar möchte ich das sie besser eingesetzt wird. Nach dem sie den Title an Bayley verlor konnte sie 2024 nichts mehr gewinnen. Ich bin gespannt wie es bei IYO 2025 ausschaut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Thadjurwrote on 28.12.2024:[10.0] "Iyo is the icing on the cake in RAWs already great women's division. She is never boring to watch inside and outside the ting despite her lack of skills in English. She has the skill to recover well from a botched move and she is super creative and charismatic!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Bapesta956wrote on 24.12.2024:[10.0] "The best women's wrestler on the planet currently, her arsenal is second to none compared to other women. Her suicide drive is so beautiful to watch. People like to say her lack on English prevents her from being the Ace in WWE but i disagree. Everything from her appearance to ring gear and wrestling just screams mainevent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: StardomIconwrote on 17.12.2024:[10.0] "Iyo is as good of an in-ring worker that I have ever seen in my life - female or male. She is very creative but also makes talent around her better with her awesome selling. She also deserves credit for being able to work and get over in the sports entertainment style of wrestling, something very few non-native English speakers are able to do (e.g. luchadores very rarely make it in WWE despite having awesome ability). She proved she can still wrestle with the best when taking on Utami Hayashishita this past summer in Marigold."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Anas Kingwrote on 11.12.2024:[10.0] "Best women's wrestler in the world, imo. She has skill, she has charisma, she is also a proven draw. I just hope wwe doesn't nerf her anymore."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: AceHagannwrote on 27.11.2024:[8.0] "Io is very good. A great in ring performer. I'm not that strong on her mic skills, but as some others, she makes up for it in presence and charisma."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: comicsfanwrote on 20.11.2024:[9.0] "Iyo is one of the best and most impressive workers out there. She's phenomenal at 97% of what she does, and her moveset and facial expressions are super engaging. Her punches/uppercuts are unfortunately so bad that it takes me out of the match whenever she throws one, but I try to ignore that because everything else about her work in a match is masterful from her aerials and kicks to her charisma, pace, and in-ring storytelling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: maily chgwrote on 17.11.2024:[6.0] "Iyo Sky is a great wrestler, but her acting skills are really bad in my opinion. We can never tell when she's heel or face, she cant do promos, her "crazy" gimmick isnt very showing etc... I believe she has one of the best in ring but that's the only good point."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Sheokowrote on 10.11.2024:[8.0] "Iyo is great, but needs to grow a little bit more in my opinion. She's insane in terms of abilities in the ring, but it sometimes don't match the opponents she's facing enough in my eyes, plus she needs to work on her promos a little bit more... could have given a 8, but she has a bright future in front of her, and this rating will go up for sure."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Ace00wrote on 08.11.2024:[10.0] "Best women's wrestler in the company simple as that. Triple H also needs to let her cut some more promos, even if it's in Japanese."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: tion24wrote on 03.11.2024:[9.0] "Such an entertaining wrestler. Hands down one of the best women wrestlers there is or ever has been. Amazing moveset, extremely charismatic and knows how to work the crowd. She also has one of the best theme songs going and is in a good spot being a member of Damage Control."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Brando Calrissianwrote on 02.11.2024:[10.0] "Iyo Sky is one of the greatest women's wrestlers...scratch that... best wrestlers on the entire planet. While I enjoy her being in WWE, it often times feels like she is forgotten about or not used to her highest potential. She puts on great matches every time she is in the ring, but doesn't get to do it too often. I am hoping that Iyo is given a long title run sometime soon, or even something like winning the Royal Rumble to go and main event Mania."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: SoaKaswrote on 15.10.2024:[10.0] "Manami Toyota, Mayu Iwatani, Io Shirai. I don't care who your fourth woman on the Mount Rushmore is (AZM after she's finished, Sareee, Utami, ...) but those three pretty much have to take up three spots. A complete legend and she's still only 34."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: JackBurtonsTruckwrote on 14.10.2024:[10.0] "Iyo is one of the greatest female wrestlers of all time. Even though I dont speak the same language as her, she is able to use her natural charisma and in ring personality to get herself over with me. Her athleticism allows her to perform her signature moves at the highest level. Her matches are always must sees. Iyo deserves one more dominant run as champion, I believe she elevated the womens belt to a height it had not previously seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: dizziedwrote on 29.09.2024:[10.0] "Io is one of the greatest wrestlers ever (man or woman). The only weakness I see in her is her lack of English but she makes up for it with her connection to the audience.. Her recent match with Utami Hayashishita at the Marigold event shows she still is a top level performer and the WWE hasn't taken her skill level down a few notches. Similar to a lot of the other joshi wrestlers (Asuka, Kairi Sane, Hikaru Shida, etc) she has toned down her style a bit to help not show a huge gap with a lot of the other wrestlers in the American promotions. This also adds to her rating. She is able to make her less skilled opponents look better Although we are unable to use percentage points, I would say she is 9.8 (only deduction is the English). Also, I hope they give her back the Io Shirai name. In my opinion, it sounds much better than Iyo Sky."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Samarimuswrote on 23.09.2024:[10.0] "In-ring skills: best in the world, if theres anything shes not as strong in, its probably live promo skills, but her insane level of charisma in the ring makes up the difference, and she constantly has some of the best matches on the roster, with just about anyone. Ive only seen her WWE work, and hearing that shes holding a ton back makes me interested to see more from her."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Bigbagwrote on 23.09.2024:[10.0] "IYO is on a run right now she is my Women's wrestler of the year this year and my GOAT she is just amazing and so smooth and snappy in the ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Galmondiwrote on 22.09.2024:[10.0] "She's the best, she's just amazing. Every matches she blows my mind, her match against Utami was my favorite match of 2024. When it comes to pure in ring skill she's the best in WWE by a lot. She's also very funny, just the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Breakdawallzwrote on 20.09.2024:[10.0] "This is my GOAT male or female. Every match from IYO i feel like I'm just watching perfection. In stardom she proved that she was the best wrestler in the world and the switch to WWE she just keeps proving that she is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Spirealwrote on 17.09.2024:[10.0] "I have rarely seen a wrestler, male or female, who has such mastery of their body. Every move Iyo does, and how she does it, feels clean and purposeful. She pulls off the unhinged gimmick very well (while I miss her NXT aura) and got infectious charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: sKiaWeVwrote on 14.09.2024:[9.0] "Incredibly talented in every area of pro wrestling. Can connect with any crowd no matter the time and place."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Cletxawrote on 27.08.2024:[10.0] "One of the best female wrestlers in history. it is impossible not to admire after watching her. Icon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Nudlewrote on 26.08.2024:[10.0] "About as great a worker as women's wrestling has seen, she can do it all and work with anyone. An all-time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Odinohkawrote on 19.08.2024:[9.0] "Iyo Sky is impressive and capable of producing explosive, creative and entertaining matches against almost any opponent. She masters her attacks, knows how to sell blows and possesses exceptional speed and reaction capability. Her promos in Japanese and her few words in English work well, and her outfits are cool - what more could you ask for? Just a little more presence. Asuka's presence and charisma alone are impressive, not to mention her screams in Japanese; Kairi Sane is light, funny, original and impactful; Iyo is excellent, but could do with a little more character development or a finisher more exciting than her moonsault. In short, she's still excellent, it's just a question of finding something. Little bonus: she's one of the last REAL NXT champions, along with Raquel Gonzalez."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Willie 19200wrote on 12.08.2024:[10.0] "IYO is probably the best women's wrestler in the WWE right now. She's always putting on great matches, was an awesome Women's Champion, and has had great feuds between he WWE and NXT career. Overall an amazing performer with unmatched talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Sal1314wrote on 05.08.2024:[10.0] "Iyo will probably go down as one of the greatest, if not the greatest, female wrestlers of all time. Her latest classic with Utami is just another masterpiece in her long list of great matches. This woman can have a great match in her sleep."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Joe907wrote on 01.08.2024:[10.0] "IYO is one of the most talented wrestlers ever. Genius of the sky, she has one of the best moonsaults ever. She was the top wrestler for Stardom and helped put them on the map. She elavated the womens division for WWE. The recent work she's been doing with Damage Control has been amazing. Fast, technical, hard hitting, high flying, good selling. All the tools to be a top tier wrestler in the world"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: SevenLegwrote on 14.07.2024:[9.0] "IYO SKY is one of the best current women's wrestlers in the world. I haven't seen much of her work pre-WWE, but her work since she arrived in North America is some of the greatest I've seen from a foreign wrestler. Unlike some of her japanese counterparts, she manages to be over with the WWE audience solely based on her charisma.Although it's becoming stale, Damage CTRL was a fun stable thanks to IYO SKY and I'm excited for a future singles run."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Orchardwrote on 07.07.2024:[10.0] "just saw her live in Toronto she is by far the best worker of the women's division and was a pleasure to watch"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Dy1789wrote on 19.05.2024:[7.0] "IYO is a very good wrestler. She has charisma and makes it work despite the lack of English. However, her lack of promos made her feel more like a supporting cast even when she was champion. Despite that she always performs well in the ring and puts on entertaining matches."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: The Undertalkerwrote on 18.05.2024:[9.0] "Im Ring ist sie einfach nur atemberaubend und sie zählt zu meinen Lieblingswrestlerinnen in WWE! IYO ist eine begnadetete High-Flyerin und beeindruckt mit vielen sehenswerten, spektakulären Moves - kann aber auch problemlos andere Wrestlingstile mitgehen. Ihre schwierigen Moves oder Move-Abfolgen sind dabei aber keinesfalls schlampig, sondern sie führt diese sehr sauber und fehlerfrei aus, und alles wirkt bei ihr sehr sicher. Außerdem hat sie ein gutes Timing, daher passen ihre Aktionen zum jeweiligen Zeitpunkt und ihre Offensiven wirken sehr flüssig. Dazu punktet sie noch mit einem klasse Look sowie jeder Menge natürlichem Charisma. Es ist nur etwas schwierig eine/n Wrestler/in komplett bewerten zu können, wenn diese/r die entsprechende Sprache nicht sehr gut beherrscht. Ich kann ihr Micwork nicht gut einschätzen - da müsste ich vielleicht mal eine längere Promo von ihr auf Japanisch mit Untertiteln hören, um dieses besser beurteilen zu können. Das Micwork gehört nunmal auch zum Charisma eines Workers und von daher hätte ich jetzt kein gutes Gefühl, wenn ich ihr die vollen 10 Punkte geben würde, obwohl sie für mich schon sehr nah an der Höchstpunktzahl dran ist. Aber vielleicht gibt es ja da noch eine Entwicklung und sie lernt besser Englisch, sodass man sie am Mikro realistisch bewerten kann."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Sigi Reuvenwrote on 15.05.2024:[10.0] "Genius of The Sky. Joshi queen. Very very good performer. Stardom made a lot of great talents. Io Shirai/Sky is the one of them. Her in-ring artistry and charisma are unmatched. I'm eagerly awaiting her clashes with other WWE japanese wrestlers from Stardom. Future Hall of Famer,"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: iyogoatskywrote on 08.05.2024:[10.0] "most talented women in wrestling, the G.O.A.T., the joshi queen. She's my fav, every match of her is a must see. She can do absolutely anything in a ring. "Genius of the Sky" is there a more accurate nickname to describe someone ?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: jcheng777wrote on 25.04.2024:[10.0] "The best womens wrestler on the planet. The ace of stardom and now arguably the ace of the WWE womens division. Flawless and irreproachable in the ring. Personally would love to see her bring back the diving moonsault stomp."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: IoIyowrote on 20.04.2024:[10.0] "My favourite wrestler in the world, she has absolutely 0 weaknesses in the ring and is an incredible watch. The best moonsault of all time for my money"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: 5hadowCroftwrote on 19.04.2024:[10.0] "Die talentierteste Frau im Geschäft. Meine absolute Favoriten Wrestlerin. Sie ist so talentiert und kann alles im Ring. Ein großartiges Moveset und unglaubliche Highflyer Aktionen, machen mich zu einen riesen Fan. Sie hat es in Japan und bei der WWE bewiesen. In meine Augen hat Sie es verdient Titel zu tragen. Das Genie des Himmels"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Pandawan22wrote on 14.04.2024:[10.0] "The BEST Woman in WWE, we sadly can't see her real level but i'm sure the fact she lost the title will make her come back."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: mxkamiwrote on 25.03.2024:[10.0] "In my opinion, probably the most talented joshi of all time. Truly a prodigy, and has gifts that many other wrestlers would kill for just a fraction of. I get it, if you mention other Joshi superstars through history over Io. But man. She can mat wrestle (it's on record from both Shayna and Nattie that they've worked technical with her outside of TV, and that Io is truly great at groundwork and never needs to be shown anything twice), she can be intense, she can be comedic, and of course what she's best known for, her high flying. Has been a top talent in the US since appearing in WWE, and is of legendary status in Japan. If you've never seen her outside of WWE, seek out her match with Kairi Hojo (Kairi Sane/KAIRI) from Stardom Fifth Anniversary for the World of Stardom title. Io does some truly insane and magical things in that match, and continues that trend even today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: jjcharg77wrote on 12.03.2024:[9.0] "10/10 wrestler than can outwrestle anyone with just a days notice. incredibly smooth in ring and charismatic, she's a blessing to wrestling. her short promos are always effective with getting her point across and making he look like a bad ass so I can't complain"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: DanParkeswrote on 12.03.2024:[10.0] "Iyo Sky / Io Shirai is easily one of the best wrestlers in the world! I have recently gone back and watched her run in Stardom, and I have plenty more to watch... her run in WWE NXT was amazing, she is so smooth and fluid with her moves and at times it seems like she is boneless with her flexibility and finesse. I am excited to see how far she goes in WWE and her career in general, she has all the potential in the world (as long as WWE do allow her to continue to present herself, and don't fall into old habits of pushing old favorites instead) She is so fun to watch, her promos transcend any language barriers - she is walking charisma. She is one of the reasons why I love wrestling so much!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ChocoboSagewrote on 11.02.2024:[10.0] "What more can be said The Ace of Stardom, The Genius of the Sky. One of the best to ever do it in Japan, Mexico and the US. Been watching her wrestle since 2015 and she's not lost a step, if anything she's just got better and now gaining a multitude of new fans with her charisma and ring work. Long may she reign"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: deeterm04wrote on 15.01.2024:[10.0] "One of the best all around talents ever. Can work any style and make any opponent look good. Conquered Japan and is now conquering the US."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ivxnb15wrote on 08.01.2024:[10.0] "The greatest high flyer womens wrestler they dont call her the "genius of the sky" for nothing. Iyo can literally have a great match with anyone her reign has champ with damage ctrl has been solid so far she has had some great matches im looking forward for more for iyo"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[9.0] ""Genius of the Sky" is among the very best women in WWE today, so nice to see her as champion, loving that she's paired with Kairi Sane and Asuka. Great wrestler, nice high flying moves, good mechanic, charismatic, easily one of the best workers in WWE today."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: FrightfulSayakawrote on 24.10.2023:"Io Shirai is my favorite female wrestler. In my opinion, she has the best wrestle technique in WWE female groups. Her 619 is better than Zelina and Dominik. First saw her in NXT takeover 2021, the match between she and Raquel, which shocked me. Hoping her champion keep long."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: shilderwrote on 13.10.2023:[9.0] "Iyo Sky is incredible. She deserves her flowers, her world title reign, and any good bookings they throw at her. She is beloved in the pro wrestling community. She has so much talent and offers us so much as fans. She's a once in a lifetime talent, I hope the fans know what we have while shes around and we continue to shower her with flowers. Genius in the Sky!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: celticinvaderwrote on 11.10.2023:[9.0] "A truly great talent with the best moonsault in the business. Her execution of moves is near perfection, and she can sell great too. Was annoyed at WWE relegating her to Damage CTRL but as current title holder I cannot wait to see what else she does."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Eduardo23wrote on 11.09.2023:[10.0] "She's the best female wrestler in the world right now! She has it all, TBE, The Best Ever! Ultra-talented inside the ring, her aura and charisma are off the charts and on top of that, she's the most beautiful woman in all of wrestling! I can't wait to see what's next for her!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: zeropercentwrote on 11.09.2023:[10.0] "I'll never get sick of watching Io. She's a stunner in every sense of the word, and her balance of aggression and grace make her compelling. Her style is unique and eye-catching as well. Currently, I have no faith that WWE won't feed her to Charlotte, but I did cry over her recent title win regardless."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Lalo Camposwrote on 16.08.2023:[10.0] "The greatest female wrestler in the 21th century and one of the best ever. Her charisma is off the charts and she is a natural babyface in every single promotion that she steps in. Champion in Stardom and WWE shows the greatness of Shirai and, in WWE, she is getiing started."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Ozzywrote on 08.08.2023:[9.0] "Earned it. Earned her NXT Womens title, earned the Money in The Bank, Earned the womans title. One of the best that WWE has ever had for the women's devision. The only reason im giving her a nine is because she isnt quite a ten due to charisma, but its a 9.5 rounded down to make it an even 100 9 votes. Sorry Iyo, the power of OCD compells me."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Kingertywrote on 08.08.2023:[9.0] "Iyo is great. Almost on Lita's tier and I'm so happy that she is being recognized by WWE and given a shot with the title, she hasn't done much since NXT. But I feel we haven't truly seen her peek yet. I wish I could have seen her in Stardom but hopefully she gets as much of a chance to shine as WWE has given Bianca."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ViolenceBretwrote on 07.08.2023:[10.0] "The greatest woman to ever step foot in the squared circle this side of Mildred Burke? Most likely all things considered... Stardom more or less owes everything to Space Galaxy Warrior Io and she's conquered all of Japan. Whereas most individuals in the field of Joshi have this pop idol charm, Ms. Shairai has this underlining sense of rebellion that is hard to explain. In the ropes she's the second coming of prime Rey Mysterio Jr. with a surprisingly brutal German suplex. A natural showstopper if ever there was one. Coming to the US things seemed a bit rocky given the language barrier, but she's brought a lot of a sophistication to NXT and now WWE. And by the looks of things, she'll be the Ace of WWE in no time. Io's promos in Japanese are the stuff of legend, with her distinct voice sliding in profanity on US television often going unnoticed. The greatest women's wrestler of all time? Easily. The greatest wrestler currently working today? Sure, why not."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: GeneBlastKyodaiwrote on 06.08.2023:[10.0] "I will say this with my hand on my heart. Io is one of the greatest womens wrestlers of all time. Shes a banger factory and while shes been relegated to a lackey in damage Ctrl, she still stands out as one of the best in the world for her work in NXT and Stardom. Edit (06/08/23): Okay. Shes the womens wrestling goat now. In my eyes its inarguable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: bigredtalk89wrote on 16.07.2023:[8.0] "She's a good hand in the ring and very likable. I will admit, I've only seen her in her WWE career so hence why it's slightly lower than other's rankings, but I don't want to judge a part of her career I haven't seen. I'm sure she's capable of more than I've seen, and that's saying something."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: InsertFunnyNameHerewrote on 05.07.2023:[10.0] "Ive been a massive fan of Io since seeing her in NXT. Im glad she is Miss Money in the Bank and she will do great things with it, shes gonna be a champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: devourblastwrote on 03.07.2023:[10.0] "Mainly familiar with her work in NXT and WWE but I am absolutely blown away every time. Her switch from semi-generic face into her more unhinged, darker character was absolutely welcome and remains consistently entertaining. Her aerial move set is simply flawless and she has a really solid ground game as well. Her Japanese promos with Asuka are also really enjoyable and shows that non native English speakers can be charismatic on the mic in WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: crs285wrote on 02.07.2023:[9.0] "Iyo has proven herself as a star wherever she goes. She had a great run in Stardom before coming to NXT which was good but not as elite as Stardom. Her main roster run has been very good so far. I liked Damage Ctrl but admit it has not had great booking. The break up angle being run has heavily focused on Iyo after her great match with Bianca which will help her. MITB makes it even more apparent that she will be a major player in WWE moving forward."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Neon Aussiewrote on 02.07.2023:[6.0] "An OK talent. Very good in the exhibition of holds, if you will, but lacks in size which effects realism and believability. Isnt used well by the fed, isnt super exciting."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Frank Shooterwrote on 02.06.2023:[8.0] "While she is a tremendous worker and possess decent charisma, she's being held back a lot in WWE. She may be the best female wrestler today, but she isn't able to show all her potential."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Smackchadwrote on 08.05.2023:[10.0] "Iyo Sky has what it takes to be an international superstar in a big way. Iconic look, instant babyface energy with any crowd. Her offense and selling is world class. The best Japanese women's wrestler in the world right now and arguably one of the top 10 wrestlers in the world period."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Ciscwrote on 27.04.2023:"[10.0]"An unsung revolutionary who showed women can beat the men when it comes to wrestling. Sadly, she has been booked badly in the wwe that many fans who have not watched anything outside raw and sd may have a bad 1st impression of her. Seeing the negative reviews that uses "promo" as a reason here are an example of wwe main roster audiences giving their knowledge (or lack there of) which is based off the main roster booking. She can do promos, just watch her nxt promos against flair, dakota kai, knox, toni storm, and many more.. also her stardom promos. She shows a lot of character and high acting quality in her mic skills. She can go mysterious as shown in her time at Lucha Underground, dark when she turned heel in nxt, underdoggish as her feud with meiko in japan, violent etc.. she has shown multiple forms of character personas and the ones i read here who have claimed ahe has no charisma are nasing things off the main roster booking, in where she isnt even allowed to do many of her moves including her 619.""
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ZayTokyowrote on 06.03.2023:[10.0] "My favorite womens wrestler of all time. She had the best wrestling trilogy ever (imo) with iwatani, amazing matches with people such as candice lerae in nxt, and even today her matches with bianca on raw have been great. Such a great wrestler that can realistically do anything she wants and succeed. I really hope she leaves damage ctrl soon and challenges for the title but either way she will shine easily. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: KENTAfanwrote on 21.02.2023:[10.0] "I dont think anyone disputes the fact that Io is amazing. Outside of WWE, she was a legend and quickly became considered the best female wrestler on the planet, an opinion I held at the time as well. Since coming to the WWE though, she hasnt quite managed to get to that same level. Admittedly, after stagnating for a little bit, her run as champion in NXT was one of the best of all time and she produced countless high quality matches, but just not on the same level as her prior work. After losing the title she floundered for awhile before moving to the main roster. Whether or not she will be able to truly breakout or not remains to be seen. I still view her as one of the best in the world, but shes just struggled a little integrating to WWEs style. Hopefully shell be given a lengthy run as champion at some point."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Albertcleanwrote on 20.02.2023:[10.0] "Simply the best wrestler EVER, she's fantastic and she's charismatic and cool, there're people that watch only Raw or Smackdown thinks that she's boring but it's because she's a Bailey's lackey now and she has no character but when she will has a solo run and her NXT character back, that haters will enjoys her work because her character is great and she's a truly star. Her Stardom and NXT run were unmatched, and ME will be the same, I'm sure of this."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Rignowrote on 09.02.2023:[3.0] ""B-But she's the best womens wrestler of all time" In the ring? maybe. She's god awful at literally everything else. Wrestling isn't just what happens in the ring, it's about making someone actually want to see the storyline, and every week iyo sky comes on my screen and I'm immediately bored out of my mind."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Damianwrote on 08.02.2023:[6.0] "Io Shirai is the type of one-trick-pony that appeals to the majority of internet wrestling fans because she wrestles well. I get it. And she truly wrestles well, I won't deny that. But wrestling is much more than that. She is tiny and can't be considered a main event threat in a company like WWE. Her promos are terrible. It's not that she is not fluent in English, cause neither is Asuka but Asuka is a charismatic person. Io is just a gal. No character, no charisma. Nothing. A fine hand for the midcard but nothing more."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Narfmonsterwrote on 31.01.2023:[9.0] "When given the opportunity, IYO SKY can put on absolutely phenomenal matches. She carries herself in such a unique way, so it's hard to compare her to anyone else. IYO is deserving of a singles push on the main roster, instead of being relegated to being Bayley's lackey"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Roberto789wrote on 30.01.2023:[10.0] "Iyo is the best wrestler ever, she's the upgraded version of Manami Toyota. I hope this year she has her solo career, with a good character and win the Raw's Women's Championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: TobiGeldner81wrote on 16.01.2023:[7.0] "Gute Athletin wenn auch nicht immer fehlerfrei. Am Mic finde ich sie nicht besonders und hat nicht wirklich ein Gimmick. Finde sie insgesamt OK"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: LtW4Rwrote on 23.12.2022:"As f 2022/12/23 WWE is using Io to hold Dakota's hand right now on the main rosters. It is doing nothing but holding her back.(unless she gets a better partner & the women's tag division actually becomes a thing since its next to non-existent in terms of there being only 2 legit teams combined from both rosters and not makeshift bs) She needs a good solo run for a title but with how WWE works she wont hold it long or at all since they pick their extended champions based on marketable acceptance in PR /promotion tours. Unless she gets " demoted " to NXT where single title reigns dont hold as much significance as they do on their other two shows. WWE took literally the greatest female Japanese wrestler of this era, with multiple trophies, top record holdings, Stardom's first Grand Slam Champion, & so many more accolades and turned her into a borderline joke (why does she speak broken English on Raw but 4 years ago she spoke perfectly audible English) & a baby sitter."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: TheOneAndOnlyCactuswrote on 28.11.2022:[10.0] "The Genius of the Sky is already one of the greatest Joshis of all time, and in my opinion, the best wrestler in NXT history, male or female. An exceptional high-flyer and technician, I do hope though that she can separate herself from Damage CTRL and shine on her own on the main roster, just like she has been able to show in STARDOM and on NXT, amongst other places."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: jmira17wrote on 25.10.2022:[10.0] "She's the best female wrestler ever, I'm fan of her since I was 15 ( 2015) when she was in Stardom. If you think the best match of the best female wrestlers of this generation Mayu, Kairi, Meiko Satomura, , Sasha Banks, Candice LeRae, Shayna Baszler, Toni Storm, Rhea Ripley.....), your first answer is "with Iyo" or think that one of the best was with Iyo. She's everything in the ring, she's highflyer, technician, strong, fast, agile, her selling is one of the best ever, her strikes is great, great in ring storytelling.... she can everything and she's really good in all aspects. When she arrived to WWE, they took away part of his moveset, because in WWE they protect their wrestlers more and prefer to reduce the number of movements and make movements that they completely dominate so that there is less risk of a wrong movement going out and endangering her rival and her , this is why I enjoyed more her Stardom matches and this Io Shirai ( 2013-2018) no one wrestler ever reach her level performance, but in WWE still the best in the world, in 2019-2020 a lot of her matches was 4 stars matches, and her reign as NXT women champion was amazing, was the best reign of this title or you can debate with Asuka and Shayna reign but the best was Io's reign because her matches were incredible, she had the best opponents, even Shotzi she wasn't a elite wrestler but she loooks incredible when she wrestle with Iyo, her character was great and in terms of promos, the company knew how to manage it very well with promotional videos, some promotional videos were epic with fantastic Iyo's promos.She always plays her character very well heel, babyface or tweener and she has a natural charisma, wrrestling fans loves her and the proof is that she was an ace of Stardom and one of the most important stars in NXT and the most important with Adam Cole in 2020. Now her character isn't the best because she's Bayley's lackey, although in recent weeks her character has become more interesting since she has changed her behavior and is becoming more aggressive and serious, I hope her character continues to evolve, Damage Control is being successful like Threedom was at the time ( the best trio ever) when she was in Stardom. She had an incredible carrer with many titles and epic reigns and she's only 33, I'm excited to see continues her incredible career on the main roster, she had many injuries in 2021 and 2022 but now she has more confidence and and she is returning to her great level, her las performance was amzing, I hope she continues like this and surprises us all as it has always done."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: VinnyEmpirewrote on 15.10.2022:"I don't know if she's still recovering from her injury or has been told to take it back a notch, IYO SKY right now doesn't look like the Io Shirai that I enjoyed back in her NXT days. Nevertheless, she's still one of my favorites in the WWE."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: MCSPICYwrote on 04.10.2022:[7.0] "Don't understand this rating. Haven't seen anything that has blown me away. Solid worker tho, great in the ring."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: xnviuswrote on 30.09.2022:[10.0] "one of the greatest women's wrestlers of all time. her work in STARDOM alone gives her a 10. hoping for one more run in Japan before her time is up."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: fictionwrote on 25.08.2022:[9.0] "This is only a 9 rather than a 10 because since NXT 2.0, Shirai's role has been diminished in the company, pushed in favour of significantly weaker wrestlers, and placed in tag matches so she can't outshine whoever they decide to push. That looks like it's about to change, thankfully, but in that time period several women have reached her previous heights and I'm not sure if she's capable of that."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Penta Suzukiwrote on 31.07.2022:[10.0] "The greatest women's wrestler of all-time and, for several years now, my favourite wrestler. Unbelievable and unmatched in-ring, unlimited charisma, a special aura, one of the best entrance themes, great gear and looks amazing, she's a true top-tier star. Yes, her English language promos aren't amazing, but when everything else is so good, that doesn't matter, plus, her ranting and raving in Japanese in NXT was a great gimmick, I often remember her doing it while following Rhea Ripley up the ramp and rhea in total exasperation just telling her to "shut up". After NXT went to shit, Io remained there and was one of the few reasons to keep tuning in, even with a reduced role she would still steal the show even in a quick 60 second cameo, she was just so awesome. All of that said and what prompted me to make this rating now, is the bad news I heard last night that I've dreaded for a long time, that being, that after being out injured for 3+ months amidst speculation her WWE contract was expiring and she was on the way out, the worst case scenario happened...she must have re-signed and has now been moved off the only WWE show I still watch, she's had her name butchered and been placed in a stable where she will likely play second fiddle to Bayley. I always assumed that when she got called up, my viewership of her would be over, but now it's actually happened, I'm not sure. From what I gather, she'll be on Raw, Vince supposedly being gone helps, but can I really sit through a potentially awful 3 hour show with very few wrestlers I have any time for, no main champion, no tag team champions, a secondary title held by charisma vacuum Lashley and a women's title held by a woman that was absolutely no good when I last saw her in NXT, who Io will probably be jobbing to as a lackey for Bayley, is my fandom of Io really that strong? I just don't know."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: UWF Rules Enthusiastwrote on 06.05.2022:[10.0] "Io Shirai is one of the greatest female wrestlers ever. She has been in countless excellent and great matches. Her great work was a big reason for STARDOM starting to rise to the top in the 2010s. Her moveset is exciting, and her athleticism is amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Okaro143wrote on 22.04.2022:[10.0] "One of The best female Wrestlers on the planet. Io Shirai does the little things very well and her showmanship and her athletism and in ring ability is excellent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Zaubernmannwrote on 18.03.2022:[6.0] "Sie hat in den letzten Jahren alles verloren, was sie besonders gemacht hat. Hält sich an ihre Formel und das war's. Traurig zu sehen, dass sie nur ein weiteres Produkt wird."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: nWo-Joshi-Guywrote on 23.02.2022:[10.0] "A simply amazing performer with the most violent looking Moonsault in wrestling. Everything she does looks deadly yet elegant. She has amazing gear, gimmicks and looks as well; both in Stardom's QQ and as her dark, brooding self in NXT. I love her presentation in NXT as well; amazing entrance, music and character. Great title run and matches as NXT women's champion too. Even as NXT 2.0 transitions into something resembling the main roster she has somehow remained well-booked and presented. Disgusting that WWE have kept her in 'developmental' for so long. I cannot wait for her to leave even if I do still enjoy seeing her on NXT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: NoSellwrote on 12.01.2022:[10.0] "One of the best female wrestlers or simply wrestlers ever and I pray everyday for her to leave WWE and finish her career back in Japan. She's beyond incredible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: HopelessHelenawrote on 07.01.2022:[10.0] "What a talent! A standout inside the ring, has developed a strong character and sense of self, if used to the best of her abilities the sky truly is the limit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: WeWantEvolutionMYCwrote on 26.10.2021:[10.0] "Io Shirai is one of the best wrestlers period, she has amazing skills her evolution trough the years has make me love her even more and more everytime."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: kfztkfzt2021wrote on 13.10.2021:[10.0] "Io Shirai is the Perfect wrestler, she was born to be in the ring, breathtaking.She is the perfect allrounder, her highflying skills are perfect and she is well balanced in the other areas, has tons of charisma, and has no weak links with promo skills or character portray. Perfect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: No Onewrote on 09.09.2021:[10.0] "The best female all-rounder in-ring performer in the world. The best acrobatic female wrestler in the world. Already is one of the greatest in-ring performers of all time, men & women combined. Can draw a lot of comparisons to the legendary Manami Toyota during her 1990's prime. Elevates every match that she is a part of. One of the best female Ring Generals in the world. Excellent Babyface. Excellent Heel. Awesome character work. The legendary ACE of Stardom. The greatest Stardom wrestler of all time. The first ever Stardom Grand Slam Champion. Outstanding tag team partnership with fellow "Daughter of Stardom" Mayu Iwatani, as they were the best female tag team in the world during their run together, known as "Thunder Rock". She betrayed Mayu, which set off an amazing feud between them. The founder of Queen's Quest. Set records in Stardom that still stand to this very day. Was untouchable in Stardom. Had a memorable Intergender match with the highly popular Pentagon Jr. for the cult favorite promotion, Lucha Underground. Has transitioned to the WWE and became an NXT Legend. One of the greatest WWE NXT Women's Champions of all time. Amazing & memorable feud with Candice LeRae. One of only 3 women to have held the WWE NXT Women's Singles Championship & WWE NXT Women's Tag Team Championship. Is a very strong candidate for 2010's Women's Wrestler of the Decade (in contention with Kana/Asuka). Is already a candidate for being the best women's wrestler of the 2020's decade. One of the most accomplished women's wrestlers in the world who is still in her prime."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Kungwrote on 09.07.2021:[10.0] "To put it simply, Io Shirai is one of the world's best wrestlers working today and has been for quite some time now. She has an undeniable presence, she can connect with a crowd better than most, and she has the best moonsault in the business. As far as I'm concerning, she's got it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: TigerDiverwrote on 29.06.2021:[10.0] "Possibly the best female wrestler in the world today. Despite not being able to speak English fluently, Io carry herself well with great charisma. Her in ring work is second to none, and her heel run in 2019 might be the best of any female wrestler ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: zags7000wrote on 23.06.2021:[10.0] "Her run in Stardom showed her as the best or one of the best wrestlers in the world. While she hasn't had as many classic matches in NXT, she's had plenty well above average and even great matches. She's one of the more entertaining and charismatic wrestlers as well with a great move set. Very unique look as well. All around a great superstar who I think can thrive anywhere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Vernious39wrote on 22.06.2021:[5.0] "She's wrestled about 3 matches in the past year and appears to be moving in half speed compared to what she did 7 years ago. She has no claim to being one of the best in the world when people like Suzu, Utami, and even Mei Suruga are having great matches every single week. She hasn't had a serious MOTYC in about 5 years so its clear she's only rated so highly based on name value and reputation."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: The A-Listerwrote on 08.05.2021:[6.0] "She is a great wrestler, don't get me wrong. She had many great matches, and she had long reign, but both reign and she were boring, just boring. Didn't care about her at all. I don't know if she doesn't have a character or WWE failed to utilize it, but from what I've seen she is just an overrated joshi. Hopefully she goes to SmackDown now."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: jltwrote on 08.04.2021:[9.0] "One of the best female wrestlers in WWE/NXT and she has the in-ring skills to back it up, although she just lost the NXT Women's Championship, I believe she can either comeback or go to the main roster and have a good run there - but I'm scared because of Vince and his problem with those who can't speak English very well. I think she should stay in NXT, develop her promo skills and continue to pull off amazing matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: shootingstarzeuswrote on 27.03.2021:[10.0] "Io Shirai is my favourite wrestler, she has proven that the can be the 'ace' anywhere from Stardom to NXT. I really like her wrestling style which has flashy arial moves that are supported by strong technical ability, in matches it is fun to watch and it also makes her very versatile when facing different opponents. Other than that, she has a commanding presence and exudes cool from her gear to her facial expressions. I'm always excited to see whatever she is involved in."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: pierreMinnewrote on 27.03.2021:[10.0] "Io Shirai is one of the bests female workers in the history. She can do everything she wants in the ring, can carry everyone. In Stardom like in NXT, she is always the very best where she works. Incredible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: texasyoshwrote on 19.03.2021:[9.0] "Despite being only 30, Io has proved that she is one of the best in the world, and one of the best women's wrestlers of all time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Prophet-of-Omegawrote on 14.03.2021:[5.0] "She literally just jumps off of things lmao. No psychology spot monkey who is wildly overrated both in nxt as well as beforehand in Japan. It takes more than flips to be a compelling wrestler. Like just watch actual gymnastics. It's infinitely more intricate and impressive than a botchy backflip."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: FightForeverwrote on 06.03.2021:[10.0] "My favorite wrestler in the world right now and my favorite womens wrestler of all time! She has AMAZING charisma and mic skills, is one of the best in-ring, genuinely every match she has is at least good, most times more so. Amazing in STARDOM, amazing in NXT as a face, then godly after her heel turn. Brilliant"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Cedar Tigerwrote on 17.02.2021:[10.0] "She's the GOAT because she has in ring skill, charisma, talent, promo skills like I have never seen before She isn't a human she is a alien or some kind of Ninja that has a rare talent nobody will ever have again and I believe she is from outer space that just comes down to wrestle for our entertainment Her in ring matches are unmatched in my eyes Truly the greatest wrestler to ever live Thank you for being my savior and the Greatest Of All Time GOAT, GCOAT, GOTS IO SHIRAI"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Burninghammercriticwrote on 15.02.2021:[10.0] "The best female in WWE atm. No doubt, she is good at everything absolutely flawless. But that is how they are trained in Japan these days. Genius of the sky!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: SammyMayawrote on 26.01.2021:[10.0] "Simply unbelievable talent. Was Stardom's cornerstone during the Threedom years. Showed her emerging brilliance during her Triple Tails days with Mio and Kana. Simply superior to everyone on the NXT roster as well as the main Raw & Smackdown rosters. Can lay claim to being (arguably) the best active female wrestler in the world; her Thunder Rock-mate Mayu Iwatani caught up with her! I am not sure what the next step is for her since she outclasses everyone else. Her matches against Meiko, Kairi, Mayu, and others are the standard bearers for present-day joshi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: medousewrote on 10.12.2020:[10.0] "Currently, one of the most popular japanese female wrestlers. I absolutely loved her work in Stardom. Her matches were always the best. Since she went to US, she doesn't perform as good as she used to, but she is still phenomenal. My rating is based on her whole career, not just the last years in NXT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Legend003wrote on 03.12.2020:[9.0] "Eine der besten Frauen derzeit in der Wrestling Welt. Athletisch, charismatisch, kann unglaublich intensive Matches worken. Alles sehr sehr stark."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: AlexLikesJoshiwrote on 30.11.2020:[8.0] "Io Shirai was and is a very, very good professional wrestler. Her work before joining Stardom was pretty good and when she got to wrestle Satomura, Iwatani, or Hojo she could deliver great matches but I don't think she quite hits the level of an all-time great for me which is why I think an 8 is fair. A talented woman just not a legend."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: JackLeRae1991wrote on 18.11.2020:[9.0] "One of the best women in the World, the Joshi Judas is the future of the World Wrestling Entertainment!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: JBoogieRom28wrote on 21.10.2020:[7.0] "I don't hate Shirai but I think she is a great performer and has had some BEAUTIFUL matches. But I think it is the same issue Ricochet has. He is a great performer but I don't see any promo ability. Even in Japan, I didn't get interested in her promos. I think Shirai should stay in NXT for about 2 more years and then move her up to Smackdown because she still needs work but is no doubt the future of WWE."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Mizzle Assault Antwrote on 03.07.2020:[10.0] "Certainly one of the best wrestlers in the world over the past 5 years. Io Shirai is simply an incredible talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: catfights4wrestlingwrote on 30.06.2020:[10.0] "Her brutal defeat of Xia Brookside in the Mae Young Classic is the best Womens' match that I have ever seen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: THATSGOTTABEKANEwrote on 12.06.2020:[10.0] "Definitely in my Top 10 not just in women's or joshi but in general right now. She is scary good right now. It's frightning to think she will soon eventually be in the main roster but she's perfect and great at NXT right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Dovka25wrote on 10.06.2020:[10.0] "Io Shirai is one of the best joshi wrestler in the world at this moment. As a face she was good but as heel even better. Every match with her is worth watching. She already on top and have plenty of time to remain there. I would love to say GOAT but she has plenty of time to achieve that status."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: BDDwrote on 09.04.2020:[10.0] "The best female wrestler of today, Io is very charismatic, and can do an incredible job with her character, she can also interpret the role of heel / face very well, and her matches are always very good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Mowerwrote on 05.03.2020:[10.0] "That heel role she's into nowadays does not work because of her nice moveset (even it is watered down at the current promotion she's in(thank yellow brand it's not that pussified as much as the main 2 brands do) plus she is a talented eye candy so blame the creative for not giving her a ripoff of the judas effect. Her double knees to face (handstand) improved, barely botches, if I can remember her last botch was in her first few days at MYC when performing a moonsault, then nothing much ever since. If her entire arsenal is allowed she will be billed as a hybrid rather than a geniusofthesky. Doesn't need a deathmatch to be a great wrestler, cuts decent promos on that joshi brand and never loses backflippin skills since 2008"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: LexiconExpressiconwrote on 17.02.2020:[5.0] "As of the date of writing, Io is ranked higher than Chris Hero, Bret Hart, Kurt Angle, Asuka and Shinsuke Nakamura, just to name a few. Io comes nowhere close to that level of talent: Her character work was lacking as a face (because she had no character) and is still lacking as a heel (because she gets no heat, even against complete babyfaces such as Candice LeRae). Perhaps this lack of character work can be put on her difficulties speaking English, but Andrade 'Cien' Almas had the same problem when he was in NXT and he was given a manager and became one of the best NXT Champions in recent memory while steadily improving his own English, meanwhile Io has few promos and those that she has are poor. Nothing I've seen from her has blown me away, at least not to the extent that this rating would suggest, and people tend to only bang on about her moonsault, which she botched the first few times in WWE and generally doesn't look that good. In a division filled with great characters and workers, Io just isn't on the same level. I would rank her lower but her entrance is really fucking cool."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: IAmTheGlazedwrote on 15.02.2020:[10.0] "She is my favourite wrestler for a reason. She is the best womens wrestler in the world, screw it, one of the best wrestlers in the world. Her in ring ability is something that I have not seen before, her style just oozes badassery with every move she hits having and feeling brutal. But her moves are also just beautiful. When she busts out a big move, it looks flawless and what else can be said about her moonsault. It's the best moonsault in wrestling. Her character work as well is so good, theres a reason she is as over as she is in NXT, her character just oozes charisma and as a heel, her work is great, she does make you hate her at some points. Io Shirai gets a 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: VillainClubwrote on 23.12.2019:[10.0] "Fantatische Wrestlerin, wohl eine der besten der Welt. Schade das sie nun bei der WWE ist, hoffen wir das beste für sie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ooomegooowrote on 30.11.2019:[9.0] "She had no minuses. Oh no, wait! For this moment, miss Shirai, (not Io-san), had only one minus - promotion where she signed. She has a lot of charisma, passion and soul, but when she start to talk on English, all this components just vanish. When she talks in Japanese, she's very good, I don't know what she say, but I can feel what she gonna say. And then, she try to say something in English, and you just see another women. She becomes like school girl that forget her homework, and try to use a cheat sheet.  In another components, Io just one the best."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ZestyZuluWarriorwrote on 15.10.2019:[10.0] "Easily the best female wrestler on the planet. She has proven she can do it all from face to heel from women's wrestling to intergender wrestling. She has wrestled in many different promotions with different styles and been a standout in all of them. Simply the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Tiernanwellsbwrote on 30.09.2019:[10.0] "She oozes talent her recent heel role fits her like a glove she plays it so well, her move set is absolutely flawless there is no doubt she is one of the best in the world"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Coop DEtatwrote on 09.09.2019:[9.0] "As far as athleticism and realism, there's no woman that is better. Her promo skills are okay, and they're even better when she is a heel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: TwistedBlisswrote on 02.09.2019:[10.0] "Io Shirai ist eine fantastische Athletin. Sie als Heel zu pushen kam sehr unerwartet aber diese Seite gefällt mir sehr gut. Es bleibt abzuwarten, ob sie an die klasse Leistung vom letzten Takeover mit Candace LeRae anknüpfen kann.  Für mich gibt es eine klare 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: cuervonegro83wrote on 27.08.2019:[10.0] "I know her for a long time, specially in her time in STARDOM but I also watched some of her matches as Triple Tails (with her sister Mio and Kana), she has been always a great wrestler or to be right she is the most complete wrestler in the world, she is a great technician, she can fly, hit and she is so strong that she can choose any move she wants to do.  Io is also a clasic wrestler, she doesn't need hardcore matches, street fights and nothing like that to do amazing matches, and she has some experience with this kind of matches but there are some wrestlers that need this matches to look better and others not, and Io doesn't need this matches.  The only thing I feel sad is people thinks they know how good she is only because the match she had in Lucha Underground and they think the new Heel Io is that same gimnick, and is not, Io was a heel on STARDOM who left her partners Mayu and Kairi to be the best, in that moment Queen Quest born and STARDOM starts building the stables they have in this days (Oedo Tai was the first stable)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: KyleEnjoysWrestlingwrote on 30.07.2019:[9.0] "So excited that Io just turned heel because I think she's born to play that role. She is a badass in the ring & her having the demeanor to match will do wonders for her. Not to mention that she looks phenomenal in black. She was part of my favorite intergender match of all time when she popped up in Lucha Underground against Pentagon. She showed she can more than take some nasty abuse & I am still in awe every time I see her hit that cross body out of the balcony. During her time in Stardom she did amazing work to help legitimize that company as the #1 place to go for sound women's wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "An impressive athlete with a good presence and a good look. She can do a lot of things. She works well as an underdog but even better as a more agressive and disrespectful wrestler. Unfortunately, like every japanese wrestlers, she doesn't fit at all in WWE. I hope she succeed but I don't see her go really far because she doesn't have a lot of charisma unlike Asuka or Kairi Sane, so she has even less chances of success. Sadly she will be viewed as another overrated japanese wrestlers by people who never watched her in her element, she will probably just be only a girl they pick to make her opponent look as good as possible. But I will not forget what she did in Stardom. Even in her last year there, where she was in autopilot mode she was still above almost everyone in the joshi scene. And she is still so young it's scary."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: BadAssTranslateTradingwrote on 22.06.2019:[9.0] "In Japan she ruled, in WWE she just doesnt fit. Amazing worker and a great babyface in Stardom but the WWE style just doesnt suit her moveset and reckless match type at all."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Fab96wrote on 17.04.2019:[6.0] "Io Shirai might be the most talented woman wrestler in the world, in Japan was the best for sure. In NXT the story is different, maybe because she still has to fit in the WWE and the US, and she doesn't speak english. She is great in the ring, don't get me wrong, but she lacks of charisma, I've seen her botch a few times. She didn't impress me at all."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: AJStylopzwrote on 09.04.2019:[10.0] "You can say she is the ace of Stardom like Tanahashi is or atm was the ace of NJPW. Io is one of the best wrestlers in the world for sure. She can wrestle with guys and she can make anyone look like a million bucks after the match. She has such a perfect technique that blows me away everytime I watch one of her matches. Her selling is also one of the best sells in the business. SHE IS THE BEST FEMALE WRESTLER IN THE WORLD"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ErycK24wrote on 08.04.2019:[8.0] "IO is obviously great in the ring and very entertaining to watch but being as I am a major WWE fan and only tend to watch WWE and ROH I haven? t seen enough of her to give her a 9 or a 10 yet."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: zephyrwrote on 16.03.2019:[10.0] "Shirai is probably my single favourite joshi performer ever. She's incredibly entertaining to watch and probably my biggest inspiration to train to get into wrestling myself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Klabauterwrote on 04.03.2019:[10.0] "Ich erinnere mich noch an Zeiten, da wurde diskutiert, ob sie überhaupt die bessere der beiden Shirai Schwestern ist. Heute wird entweder sie, oder Meiko Satomura genannt, wenn es darum geht, wer die beste Wrestlerin der Welt ist. Bin sehr gespannt, wo ihre Karriere bei WWE hinführen wird. Moment fährt sie ja zweigleisig. Einerseits als mögliche Herausforderin von Shayna Baszler andererseits im Sky Pirate Tag Team mit Kairi Sane."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Makai Clubwrote on 23.02.2019:[8.0] "Obviously a great women's wrestler when she was consistent but honestly, Io had her off days or her not so great days more than not. She could get the best out of mediocre wrestlers, sure but when with the top talent, ah something is missing. Maybe it's the lay out her matches have or they almost always revolve around her. It's something that it takes her down a peg. She is a great gateway into joshi but best in the world? Nah, there are far better women out there, even in Stardom."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: BuzzardBolieverwrote on 25.12.2018:[10.0] "easily the greatest women's wrestler in the world for the last few years. nobody is near her level of in ring performances"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: RatingsMachinewrote on 10.12.2018:[8.0] "Shirai is a great worker and she is a great babyface as well, although I don't think she's being utilized to her fullest at the moment."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: My Bloody Doobwrote on 14.09.2018:[10.0] "The best active women's wrestler today in my opinion. You can only count on one hand the amount of Joshi wrestlers who are on Io Shirai's level. Her charisma, starpower and trademark athleticism easily make her stand out as a once in a lifetime talent. It's hard to even say there are many male wrestlers out there with her levels of talent. I might lower her score some time down the road since she is now in WWE, but I hope I won't have to."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Riggswrote on 29.07.2018:[10.0] "Probably the greatest technical female wrestler active today. I have never seen her in a bad match. She can wrestle any style. She strikes hard, knows most holds and moves, can do submission, and can fly with speed. Her character is really good too as she is aloof and acts like she is better than everyone else. She only gives people the time of day if they are willing to strive to be the best and give everything they have. Not really a heel, but not a face either; Just one who knows she is the best and will take on any and all challengers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Sohamwrote on 19.07.2018:[10.0] "Easily the best female wrestler (and top 5 overall) in terms of ring work,  her in ring work is a thing of beauty. Never in the history of pro wrestling we have seen a performer as versatile as IO Shirai. She is a superb striker, can perform incredible jaw dropping aerial manoeuvres, and is a swift & gifted technical wrestler. Keep up the good work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: jamzell00wrote on 29.04.2018:[10.0] "Could make a case for her being the best damn wrestler alive regardless of gender. She plays the cocky ace so goddamn well it's insulting. Her intensity and natural God given ability make for some incredible matches as well. I know many prefer Mayu but Shirai is just on another level"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Dragon Fighterwrote on 15.03.2018:[10.0] "Without a doubt, she is the best female wrestler in the world right now. Phenomenal in ring work, great selling, bumping. Her moveset is absolutely fantastic. She is also great at carrying job. She can have good matches with anyone. A total package. Just a treasure to watch for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ThreeCountwrote on 04.11.2017:[9.0] "Io Shirai has that special thing about her, she makes you instantly intrigued in her work by how Unique she is, bringing something different in each and every match she's in it just reels you into how good she truly is, one of my favorite Joshi wrestlers of all time continues to improve her work each and every time she competes, falling into much more of a gatekeeper roll at the moment she's still producing some top tier matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: NastyYaffawrote on 12.09.2017:[10.0] "Best women's wrestler in the world right now & a contender for the best wrestler in the world, in general. Amazing on the offense, great seller & can wrestle so well both on top & from underneath. Io Shirai is definitely one of my favorites going."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: rjsbx11wrote on 28.06.2017:[10.0] "Io is one of the best, if not the best female wrestler in the world. Her aerial offense is crisp, her ability to work different styles is superb and she's an exceptional seller with unmatched charisma in her sphere. As neck injury from wear and tear will delay her move to WWE a little bit, when she's ready she should provide a great crossover appeal that can make her a mega-star."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: koblandwrote on 24.04.2017:[10.0] "The singular best female wrestler in the world, and possibly in the top 10 overall workers period. Watch any of her recent matches against Hojo or Iwatani, they speak for themselves as to how good she is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: TheOneWhoKnockswrote on 21.04.2017:[10.0] "Best female wrestler in the world, with her matches opposite Kajiro Hoto and Mayu Iwatami particularly standing out. Also highly charismatic and stunningly beautiful. Io Shirai is a 10 in every department."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: PistolPeteMattywrote on 10.02.2017:[10.0] "Hands down the best female wrestler around today. At only 26 she's had countless incredible matches, and just keeps adding to that list over time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Evolve3891wrote on 22.01.2017:[10.0] "The best female wrestler on the planet. Io has the skill to succeed in any promotion she desires and is also blessed with great looks. Her match at the 2016 year end climax showed that she can also out wrestle most men on the planet and the match was given a 4. 50 by Dave Meltzer of The Wrestling Observer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: indyreviewswrote on 06.12.2016:[10.0] "One of the top wrestlers in the industry right now (female or otherwise). I would type out a long and wordy review but honestly, just watch one of her matches. Her in-ring work speaks for itself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: DubsMcTFwrote on 18.08.2016:[10.0] "Io is one of the few true Aces of a promotion.  Io consistently has top level main events and can have great matches with anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Luv all wrestlingwrote on 05.06.2016:[10.0] "The ACE of STARDOM, has so many great matches, can work face/heel, diff styles, my only complaint is that there is no STARDOM wrestler left for her to face"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ntrlk1wrote on 28.04.2016:[10.0] "Possibly the most athletic female wrestler of all time. Combines a high-flying gymnastic style with an array of power moves and stiff strikes to create an in-ring style that is unique."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: paijowrote on 23.05.2015:[2.0] "Good wrestler, very good performance, good looking, & full total package, but i STILL hate her in the past (if you know what i mean). never forgiven until today. i prefer look her older Sister Mio than this. just waiting comment from this. haters gonna hate! yep that's all i say and i speak the truth.. right on my chest"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: 1goldcoinwrote on 19.03.2015:[9.0] "She is as attractive as her sister Mio and just as good in the ring. Not a lot of power but has great speed and technique. Really sells the show and is fun to watch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Matzinhowrote on 13.02.2014:[8.0] "Die jüngere der 'Sexy Purple Thunder Sisters'. Auch Io ist im Ring gut unterwegs. Sie hat gemeinsam mit ihrer Schwester mit dem Wrestling-Training begonnen und dennoch bestehen unterschiede bei deren Ausstrahlung. Typisch für eine größere Schwester wirkt Mio reifer und präsenter. Io fehlt noch die Superstar-Aura, die ihre Schwester verkörpert."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MEDaminewrote on 05.01.2025:[10.0] "He is really phenomenal, the nickname describes, wherever he wrestled, he always produced memorable moments, one of the best in-ring wrestlers, with versatile ring skills, he is also solid in the mic, and he is so charismatic and would succeed in any role he's given, even at the age of 46/47, he still had great matches with Cody Rhodes and Randy Orton, one of the best wrestlers of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Samirwrote on 27.12.2024:[10.0] "His nickname perfectly describe his class. Styles is truly a phenomenal wrestler. His transition from High-flyer to technician is also really commendable. In his early career AJ Styles was known for his aerial maneuvers and high-risk moves like. As his career progressed, Styles began to incorporate more technical wrestling into his repertoire."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Tonostrawrote on 08.12.2024:[9.0] "Everything has already been said about AJ, so what could I add more ? Nothing. One of the GOATs for a reason."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Jeamuswrote on 07.12.2024:[9.0] "AJ Styles earns a 9.0 from me because hes one of the most well-rounded wrestlers in the business. His in-ring ability is second to nonewhether its high-flying, technical wrestling, or hard-hitting styles, he can adapt to any opponent and always delivers a great match. His storytelling in the ring is phenomenal, making every move and sequence feel meaningful. On the mic, hes solid, and while not the flashiest talker, hes believable and connects with the audience. His versatility has kept him relevant across different eras, promotions, and opponents, from TNA to NJPW to WWE. The only reason Im not giving him a perfect 10 is that his recent booking hasnt always showcased his full potential, and some storylines have felt lackluster. But as a wrestler, AJ consistently proves why hes called the Phenomenal One. Hes a legend whos truly earned his spot in the top tier of wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: In famous TongaLao 1wrote on 01.12.2024:"The greatest in-ring wrestler of all time can't debate with AJ.He has no flaws in his game all of his matches AJ will leave you in shock from his time in TNA to New Japan to WWE all of his matches are bangers and he has the resume to back it up as the GOAT of all wrestlers he can perform with any one his matches with John Cena where amazing to watch his feud with Randy Orton was also great He can work with anyone and make a great match and storyline out of it.He also has one of the best nickname of all time and he has a limitless bag of moves he will always pull something we have never seen or something we have seen used in awhile he also has multiple signature moves to finish off his match he can do it in mid air with his forearm or 450.He can also finish a match by making tap out with his calf crusher or on the ground with his styles clash he has the greatest bag in wrestling period and is the GOAT for a reason."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AceHagannwrote on 26.11.2024:[10.0] "A brilliant performer all around. Great off-ring performances across the board. But AJ shines the brightest in the ring. A great moveset, great awareness as to how to enhance the intensity of a match, and the ability to get a great match out of pretty much anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: XNoWayKemoSabeXwrote on 25.11.2024:[8.0] "Seeing The Phenomenal AJ Styles back in TNA was a true pleasure. The triple threat match with The Fallen Angel Christopher Daniels and The Samoan Submission Machine Samoa Joe is still one of my favorite matches of all time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: nils1997pbwrote on 23.11.2024:[10.0] "Mit ihm bin ich groß geworden. Seine Art zu Wrestlen ist grandios. Technisch einer der besten aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: wrestlingswiftiewrote on 18.11.2024:[10.0] "I always talk about him in modern-day GOAT conversations, but I wouldn't be surprised if you counted him in all time. He's phenomenal, no pun intended."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ItsAllAWorkAnywaywrote on 13.11.2024:[9.0] "The biggest injustice of AJ Styles's career is that he joined the WWE about 10 years too late, even if you consider how his success in NJPW got Bullet Club over and opened the door for AEW to exist. He was TNA's most loyal soldier and also most decorated champion. Yet TNA's mismanagement of his contract situation saw him leave to New Japan/Ring of Honor (and saw TNA eventually sold off to Anthem Entertainment.) He got himself over, he finally realized his dream of going to the WWE, and then he beat John Cena. Regardless of what he does next, Styles's career will always be considered exceptional because he was phenomenal."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MysticAgentwrote on 12.11.2024:[10.0] "AJ is in my top 5 favorite wrestlers of all time. AJ is the most complete wrestler of all time. He can play a underdog babyface to perfection and a little Wiesel cheating heel amazing. AJ is also one of the best in ring wrestlers of all time, his matches against Shinsuke Nakamura, John Cena, Samoa Joe, Christopher Daniels, Kurt Angle, Hiroshi Tananhashi, Kota Ibushi & Daniel Bryan are some of the best matches of all time. His move set is nuts he has one of the deepest bags ever. He also can cut a really good promo as well. Everywhere AJ's been whether it was TNA, ROH, NJPW, the indies or WWE he has been a top guy and has been champion. AJ's Accolades speak for themselves he is an 2x WWE Champion, 3x United States Champion, 1x Intercontinental Champion, 1x WWE tag team champion, WWE Grand Slam and Triple Crown Champion, 2x TNA World Champion, 3x NWA World Champion, 6x X Division Champion, 2x TNA & 4x NWA Tag Team Champion, he's a 2x IGWP Heavyweight Champion and 1x ROH Pure and 1x ROH Tag Team Champion, and a bunch of indies titles all around the world. AJ's theme song and attire are also super sick. He was also the leader of Bullet club and really made it worldwide. Through AJ's 25+ Year Career i think we can all say he is truly Phenomenal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wrestlingfan0808wrote on 31.10.2024:[10.0] "The amount of sons he has in wrestling today is crazy. One of the most influential wrestlers ever and one of the greatest to lace up a pair of boots. It doesnt get talked about enough how he has adjusted from being a super high flyer to one of the more technical sound wrestlers to ever do it. One of my goats for a reason. The phenomenal one. A. J. STYLES!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Its Clobbering Timewrote on 19.10.2024:[10.0] "AJ Styles is in my top 5 favorite wrestlers of all time. AJ is the most complete wrestler of all time. He can play a underdog babyface to perfection and a little Wiesel cheating heel amazing. AJ is also one of the best in ring wrestlers of all time, his matches against Shinsuke Nakamura, John Cena, Samoa Joe, Christopher Daniels, Kurt Angle, Hiroshi Tananhashi, Kota Ibushi & Daniel Bryan are some of the best matches of all time. His move set is nuts he has one of the deepest bags ever. He also can cut a really good promo as well. Everywhere AJ's been whether it was TNA, ROH, NJPW, the indies or WWE he has been a top guy and has been champion. AJ's Accolades speak for themselves he is an 2x WWE Champion, 3x United States Champion, 1x Intercontinental Champion, 1x WWE tag team champion, WWE Grand Slam and Triple Crown Champion, 2x TNA World Champion, 3x NWA World Champion, 6x X Division Champion, 2x TNA & 4x NWA Tag Team Champion, he's a 2x IGWP Heavyweight Champion and 1x ROH Pure and 1x ROH Tag Team Champion, and a bunch of indies titles all around the world. AJ's theme song and attire are also super sick. He was also the leader of Bullet club and really made it worldwide. Through AJ's 25+ Year Career i think we can all say he is truly Phenomenal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TreyHalowrote on 18.10.2024:[10.0] "If you told me that you believe AJ Styles is the greatest to ever do it, I wouldn't bat an eye man, he's that good at every aspect of the game, deep catalog, makes everyone he steps in the ring with look stellar, and just has no flaws whatsoever, and is STILL going at a high rate despite pushing 50 years old man, one of the GOATs and an easy 10/10..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KENTAfanwrote on 14.10.2024:[10.0] "Still an incredible performer and undoubtedly an all time great, Styles arrived in the WWE fairly late in his career. Despite being past his prime, he still put on some amazing matches as well as managing to have the best character/mic work of his entire career, which has only gotten better as his time in WWE has elapsed. Unfortunately, his age has really started manifesting itself over the last few years, and despite still being a great wrestler, he doesn? t seem capable of wrestling the way he did back in 2016-18 any longer. Despite that, he is still one of the most entertaining wrestlers in the entire company, even though he hasn? t been featured as prominently in recent years. [2024 EDIT: 3 yrs later] Ok, I stand corrected, back in 2021 it seemed like Styles was really starting to slow down, but since then he's done a phenomenal (pun intended) job of revitalizing his career. He might not be in his prime anymore, but he can still have incredible matches, and some aspects of his game like psychology have even gotten better."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Venwrote on 14.10.2024:[10.0] "Before his arrival he was already a TNA and NJPW legend and when he arrived in his 38 he managed to be a WWE legend just in 2 years with his phenomenal heel run. When he retires he will be remembered as one of the best to do this sport"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Hazelyzewrote on 05.10.2024:[10.0] "One of the greatest of all time. He's a great all-rounder, he can have a brawl, he can fly like hell, he can make you submit. Age has only heightened his mental game as his physical game starts to wane, this current "can I still go" story will be interesting to follow. This is the house that AJ Styles built."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: danzitorockwrote on 24.09.2024:[9.0] "AJ Styles is a legend, who made history in every company he went through, whether ROH, TNA, NJPW or WWE, he had an excellent contribution, which makes him one of the greatest in the history of wrestling in North America with all certainty. With unparalleled in-ring ability, he deserves all the praise and recognition he gets. He is indeed the phenomenal one."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Galmondiwrote on 21.09.2024:[10.0] "One of the best of all time, at the very top of the list to be the best. He was the best everywhere and he's still very good to this day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ismarizviwrote on 21.09.2024:[10.0] "The person who make impact what it is today and most of the most best workhorse wrestler of all time wherever he go whether in wwe, roh, njpw, tna/impact this man is a legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Saladbagelwrote on 09.09.2024:[9.0] "AJ Styles truly phenomenal in the sense of being a fantastic wrestler. His promo game is forgettable, so I can't rate him as a perfect 10/10, but he's still an excellent wrestler as shown throughout his TNA, NJPW, and WWE career. Even in his old age, there aren't many wrestlers capable of lacing up his boots. If you haven't seen him in his prime, you ought to."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Chosen Onewrote on 31.08.2024:[10.0] "Ich glaube, Leute unterschätzen, was für ein Eckpfeiler von TNA er war. In etwa wie Sting für WCW oder Undertaker für WWF/E. Immer da und verlässlich und auch sehr bliebt und gut ansehnlich. Erst richtig legendär wurde seine Karriere ironischerweise, als TNA ihn gefumbled hat und er zu NJPW ging, um den amerikanischen Heel und neuen Leader von Bullet Club zu spielen. Danach hatte er 2016 endlich sein großes WWE-Debüt und einige großartige Matches. Besonders die Fehde mit John Cena hat mich abgeholt. Bei Styles hat zu der Zeit auch alles gepasst für mich... Mega gut im Ring, fähig am Mic (wo ich sogar finde, dass er etwas unterschätzt wird), toller Look und Ausstrahlung... The Club/The OC war auch ein cooles Stable, bevor irgendwann der Lack ab war. Niemand hat damals erwartet, dass er in WWE so verdammt erfolgreich sein würde, aber er hat es geschafft und das spricht für sein unglaubliches Talent. Zugegeben, ich fand sein Booking dennoch nicht immer perfekt und er ist nicht mehr so heiß wie noch um 2016-18 herum, aber immer noch ein Top Performer und jetzt schon, für mich, eine lebende Legende des Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ITGfromDiscwrote on 23.08.2024:[10.0] "AJ. Styles. Need i say more? the man has had more great runs than 10 average wrestlers combined. He never had a terrible gimmick, He always put on at least a top 2 match of the night, and his legacy is widespread through wrestling in ROH, TNA, NJPW, and WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Odinohkawrote on 21.08.2024:[9.0] "AJ Styles is one of the best wrestlers in the world, hyper-technical and hyper-precise. AJ never misses and always hits the point. In the ring, he's virtually unbeatable, knowing how to do everything with exceptional fluidity. He more than makes up for his slight lack of charisma with an undeniable presence, convincing us within seconds with his wrestling. He's the boss. On the other hand, he still has trouble with mic promos and it's maybe what private him to be champ now in the WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Xtremeberry17wrote on 20.08.2024:"I think A.J. Styles is one of the most gifted performers of all time & for him to still move in the ring the way he does is quite phenomenal!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Obird122wrote on 15.08.2024:[10.0] "The reason I got into wrestling when I was young. I was around 8 years old when my friend showed me a tape he had of an AJ Styles match from a couple years prior and I saw Christopher Daniels vs. AJ Styles vs. Samoa Joe for the first time. I had seen WWE matches before, and I liked it but never really cared for it too much, but something about AJ was different than anything I had seen. I later got more into WWE, but AJ was not only the best in ring wrestler I had ever seen, but he had a way of making the matches feel like he really was fighting for a championship. If someone doesn't understand wrestling, show them AJ Styles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "AJ has had a career resurgence as of late. After he lost the WWE title and started forming random teams I thought that he was gonna have a... less than stellar end to a phenomenal (no pun intended) career. Then he started putting in the WORK again. He says he'll retire when he feels like he can't give 100% anymore, and I hope that isn't any time soon because he has been one to watch as of late. I hope he gets one last world title run before he hangs them up."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Fakhruddin Hawariwrote on 01.08.2024:[10.0] "One of if not the best wrestler in this generation. He can wrestle in many styles no pun intended. AJ managed to have success in many promotions with the biggest 3 are TNA, NJPW, and WWE. He can have good matches every single time that when people say the match is dissapointing, that's not because the match is bad but simply because AJ is too good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: namisuzwrote on 30.07.2024:[10.0] "AJ Styles is phenomenal in every sense. His unmatched in-ring ability, versatility, and charisma make him one of the greatest wrestlers of all time. Whether he's performing high-flying maneuvers, technical grappling, or hard-hitting strikes, Styles delivers top-tier matches every time. His consistency and passion for wrestling shine through, making every match hes in a must-watch. AJ Styles truly embodies what it means to be a phenomenal performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Bloodshot03wrote on 29.07.2024:[10.0] "AJ Styles has been a favorite of mine since the beginning of TNA Wrestling. One of my favorite matches of his was Lax vs Styles and Daniels for the NWA tag team titles at Bound for Glory 2006. Also, there are quite a few classics in WWE, but my personal favorite is Styles vs Roman Reigns at Extreme Rules. AJ Styles definitely has a place on my wrestling Mt Rushmore."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JakeTheSnakewrote on 27.07.2024:"He is one of the most talented wrestlers of all time. He is already a legend and continues to entertain us for many years to come. I'm so glad he's in the WWE."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MatnificentMattwrote on 26.07.2024:[10.0] "Absolutely phenomenal wrestler. Easily one of the best wrestlers if not the best wrestler of this era. Styles has had numerous amazing matches all of the world and has many accolades as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ZINAN10wrote on 18.07.2024:"One of the most talented wrestlers of all time if not the most popular in every company he went to a real legend 10/10"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Joe907wrote on 18.07.2024:[10.0] "He is one of the greatest wrestlers of all time. He's been on top of every major company he worked for. Great at high flying and good technical game in the ring. He's Been putting on bangers since the early 2000's, and still competing at the highest level. Phenomenal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cletxawrote on 15.07.2024:[10.0] "TNA, NJPW, ROH and WWE... It's a great career. He's a perfect wrestler. I only give 10 points to Icons. AJ Styles, one of the greats of professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Mauiwrote on 07.07.2024:[10.0] "My favourite wrestler, in-ring wise and as a person. He sparked my interest again, when I first watched a TNA show in 2009. I can rely to him very easily by being not gifted with the most impressive height and/or physique, growing up poor and always being misused by your surroundings. But still AJ managed to do something out of his life and career and is truthfully regarded as one if not the best in-ring performer of all time. He was and is always a team-player and improved alot as a character and on the mic thanks to his time in WWE which eventually will probably tie his time in TNA. Surely the real awakening happened in Japan in NJPW where he not even took the torch to lead Bullet Club into their most glorius days, but he probably is the reason, why BC still exists today. He and his pals made it cool. I don't care if he's not the best talker, because since I really transitioned from a casual entertainment fan to a real wrestling sports fan due to watching alot of Puroresu, I cannot pick another guy. He is the full package, like Tanahashi, like KENTA used to be, like Kenta Kobashi and his glorious generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: igskillfartwrote on 07.07.2024:[10.0] "One of the greatest wrestlers of this generation, from TNA to NJPW, hes done it all around the world and accomplished almost everything you could in professional wrestling. hes one of my top 10 wrestlers to have ever exist in this universe, undoubtly one of the greatest to have put on a pair of wrestling boots."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Johanwrote on 30.06.2024:[10.0] "Amazing wrestler, one of the greatest of all time and has been an elite performer for 20+ years now, easily capable of still putting WWE MOTY contenders and I can't wait for his match with Marufuji!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: darkflame4527wrote on 30.06.2024:[10.0] "Washed? This man is 47 in the best shape of his life and put on 2 MOTY contenders in 2 months. Now he's wrestling in Japan as well again? This guy seems to just be getting better somehow. One of the most legendary careers as a 5-Star technician and a 5-Star talker. This guy is almost unmatchable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Stanley Elite 55wrote on 26.06.2024:"What more can I say after all that has been said about him? My favorite wrestler of all time. AJ has impeccable in ring style, one of the most underrated mic skills and with a great ease when it comes to being face or heel. One of the best of all time."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GuidoRissowrote on 20.06.2024:"Extraordinary wrestler, when he was in TNA he was already showing his potential. Unfortunately, TNA didn't see much of him until his first World Championship reign. He had an interesting run in ROH as PURE Champion around 2004 before the Feinstein incident. Great bouts in IWGP and ROH, outshining even names like Hiroshi Tanahashi, Kazuchika Okada and Shinshuke Nakamura. Not only making an impact in Japan, he also wrestled in AAA with good matches such as against El Mesias. The last few years in WWE from 2018 to today, didn't fascinate at all like before, however his 2016-2017 run were great."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: twinkertonwrote on 17.06.2024:[10.0] "One of the best professional wrestlers in the history of the art, there's not much that can be said about AJ that hasn't already been said. His athleticism, storytelling, charisma, and understanding of what makes a good match are second to none. He was the cornerstone of TNA, had an outstanding run on top of NJPW, and he's now had a great WWE career as well. He's only gotten better as his career has gone on as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rewritewrote on 16.06.2024:[10.0] "One of the Best Wrestlers in history and one of my favorites, in TNA he was solid with many fights such as Aj Styles vs Samoa Joe in 2005 and his great time in NJPW with excellent matches even in AAA. In WWE he arrived as a mega star, although Currently he is a little lost, he is still one of the best and still has a lot of quality in the ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MingROHGuywrote on 16.06.2024:[8.0] "Fantastischer Wrestler, doch in letzter Wrestler etwas eingerostet in meinen Augen. In seiner Prime bei NJPW eine klare 11/10!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Taper1994wrote on 01.06.2024:[10.0] "After a pretty solid run in TNA, AJ Styles became a 10/10 wrestler for me when he went to NJPW in 2014. There he was able to mix it up the best wrestlers in the world like Kazuchika Okada, Hiroshi Tanahashi & Shinuske Nakamura. And not only was AJ able to keep up with them but he was able to outshine them as well. Then he moved onto to WWE in 2016 where he mained that level for about 1 year. Around 2017, AJ Styles started to slow down, his last truly great match in my book being against John Cena at the 2017 Royal Rumble. Still 3 years of being the best in the world combined with a great career otherwise is good enough for full marks from me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ultravioletshiroiwrote on 14.05.2024:[10.0] "His stuff in TNA during the mid 2000s is some of the most impressive wrestling I've ever seen, especially his matches with Samoa Joe, Christopher Daniels etc. His athleticism and psychology is off the charts, and he's got some good chops in the power, striking and submission departments as well. He also has tremendous charisma and had one of my favorite entrances of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Willie 19200wrote on 10.05.2024:[9.0] "AJ Styles has been going at it for 25 years and has proven to still be considered one of the greatest. His TNA and NJPW is some of the best stuff I've gotten the privilege to watch. His WWE stuff was pretty good from 2016-2019, and even early 2020 was good when he got his first Wrestlemania main event against Undertaker at WM 36. It wasn't until 2021 where the Omos stuff happened, 2022 he didn't do like anything, and 2023 he was apart of the World Heavyweight Title Tournament as the runner up had a great feud with LA Knight and now put on another 5 star classic with Cody Rhodes, easily one of the best in the Business."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rassle Fanwrote on 09.05.2024:[10.0] "A pioneer of the modern style of wrestling that includes high flying and technical. He's the blueprint for what wrestlers like Will Ospreay would become. He was the flag bearer for TNA for 11 years and excelled there. My favorite period of AJ's career is definitely his NJPW and ROH run in 2014-15. That's when he was really solidified as one of the greats. Credit to New Japan too for having him win the IWGP title in his first match. His personality in the Bullet Club was very different from what he did before. It was a complete reinvention."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Aimbot2023wrote on 28.04.2024:[10.0] "AJ Styles, this name represents everything. He is an absolute superstar in every company. He is a legend. He represents excellence. He has become one of the symbols of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CoRdelwrote on 25.04.2024:[10.0] "Do not be afraid to say that AJ Styles is one of the greatest wrestler that ever existed on planet Earth. He is absolutely perfect in every category, his charisma and aura is really something else, especially with a title around his waist. Travelled the globe, respected by everyone everywhere. Btw I really enjoy Ospreay using Styles Clash as a tribute to him. True legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jcheng777wrote on 25.04.2024:[10.0] "In my opinion a top 10 wrestler of all time. Possesses a varied and entertaining in ring repertoire and definitely one of the best high flyers in the business. Has gotten over everywhere hes been. Easily a top 10 in ring worker too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: StringsRollinswrote on 22.04.2024:[10.0] "My favorite wrestler working. He's in the twilight of his career and not capable of what he used to in-ring but he's still very reliable to have a good midcard match with pretty much anyone. His prior body of work is absolutely, well, phenomenal. The three way match with Christopher Daniels and Samoa Joe at TNA Unbreakable 2005 is still one of my very favorite matches ever. Just an awesome wrestler even if he's winding down."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: lukatesa21wrote on 21.04.2024:[10.0] "Artist in the ring, really hope that he will have a final WWE title run before he retires but he needs to change his theme back to the Phenomenal one"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MarkMcMarkingtonwrote on 20.04.2024:"One of the best in ring workers of all time. Also incredibly safe and never seems to get injured, which is very impressive for a guy that wrestles like he does. His promos and character work for a large chunk of his career were mediocre at best but he more than made up for it. The AJ in WWE doesnt quite have the bangers that he had in TNA, but he evolved as a complete sports entertainer and managed to become WWE champion in his first year, having great matches with Cena, Reigns, and Ambrose. AJ Styles makes my top 10 of all time for sure. Simply PHENOMENAL."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TripleCrownwrote on 05.04.2024:[10.0] "Best American wrestler of his generation. Whilst he wasn't ever on the superstar level of a John Cena or Batista, he was far better than they could ever be in-ring. He grew from being an excellent in-ring performer into an absolute star during the end of his TNA run and beginning of NJPW run, became even bigger once he joined WWE. He could wrestle 99.99% of the wrestlers and have a perfect match, he's just that damn good. Still going strong even at the age of 46, will be a sad day when he retires."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BruceMarcos524wrote on 24.03.2024:[10.0] "I couldn't think of any other guy that whatever promotion that he's in, he attained the medium to high level of success whether it is ROH, TNA, NJPW and WWE. Simply phenomenal for a reason. AJ Styles truly is once in a generation talent that make his contemporaries like John Cena, Randy Orton and Batista jealous in terms of in-ring quality. His skills showed that he always be a human highlight reel. Many of its peers and fans sees AJ Styles as the "indie Shawn Michaels" but I disagree. AJ has this unique aura that is enough to establish himself as an all-time great without comparing to other greats before him. His TNA run is obviously the most definite time of his career as it establishes AJ Styles as a main attraction star. Upon shifting to NJPW, AJ Styles quickly adapts to the Strong Style environment, honed his craft, fought the likes of Minoru Suzuki, Hiroshi Tanahashi and Kazuchika Okada and produced MOTY-like matches. His time in WWE solidified himself as one of the all-time greats and also had great matches, but with better exposure due to the wider reach of the product. Surely wherever AJ goes, he is truly an asset to the company. Although one of his struggles is his promo abilities, this however outshined by his wrestling abilities and his skill alone was truly enough to call himself the best pound for pound wrestler in history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: thedman0310wrote on 12.03.2024:[10.0] "There's really nothing I can say that hasn't already been said, AJ Styles is just that good. He has wrestled the same high-impact aerial style for over twenty years now, and he hasn't lost a damn step. Without AJ, TNA would not be the same. Hell, TNA probably wouldn't be in business today without AJ's work in the Aughts."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Zak22wrote on 08.03.2024:[10.0] "He might be the greatest of all time. AJ Styles has a massive catalogue of 5 star classic matches across TNA, ROH, NJPW and WWE, his output is almost unmatched over the last 25 years. AJ Styles is one of the most exciting wrestlers of all time, his fast, high flying style is so damn captivating but don't be fooled, AJ can grapple with the best of them as well. AJ Styles legacy as Mr TNA is underrated, at a time when wrestling needed a hero outside of WWE, AJ was one of the few who stood up to the challenge. Styles has also adapted his style over time to fit his ability with age and to fit the environment (for example he is very different in WWE compared to NJPW), and that is something to be apricated. On the mic, AJ is good but not really an all timer but who cares, once the bell goes, it'll be a clinic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: mxkamiwrote on 01.03.2024:[9.0] "One of the most influential wrestlers of all time when it comes to in-ring. Suck it, it's true. His early run is insane to watch. 2005 TNA is full of insanity involving AJ Styles and he was MONEY any time you put him in a match with stakes. Bumped like a freak, extremely athletic, over as hell, and a legendary look that had teenage boys wearing hoodies to look like him. But, Christ on a f****** bike, this man... cannot talk. I legitimately burst out laughing hysterically anytime he turns on a mic and starts a promo. No, it's not his accent, as I myself am a Texan. His delivery is just absolutely hilarious to me. Personal favorites for me are "Dixie Carter's daddy, bought her uh wrastlin' compenny! " and where he just snaps at Stone Cold by saying "Why don't you shut up, Steve? " Like... My god. I am laughing while typing this now, actually. He's a generational in-ring talent, but I do take a point due to just how bad he is on the stick."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: 2pt0EcoBoostFusionwrote on 23.02.2024:[9.0] "AJ Styles one of my favorite wrestlers of all time, and he was one of the reasons I got back into watching Pro Wrestling in the late 2010s. I got to see him wrestle in a dark match during a 2018 Tampa Smackdown taping, and it was a really great match. His move-set is (no pun intended) PHENOMENAL! his Microphone skills are (no pun intended) PHENOMENAL! Just about everything about him is (you get it, no pun intended) PHENOMENAL! His booking in WWE has been a little iffy at times but he is still entertaining despite being in his 40s at this time in his career."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Chosen1EJB05wrote on 11.01.2024:"10.0 He's one of the greatest, if not the greatest professional wrestler of all time. He thrived in every single wrestling company he's been apart of. He's obviously getting older and running out of time, but his legacy on the sport will never be forgotten,"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: dulonicdaddywrote on 02.01.2024:[6.0] "Seriously, dude has been involved in some TERRIBLE television. I don't care if he has been a very good worker in a bunch of different companies, he has always thrived during some of the worst times in the history of each. Character-wise Styles has also lacked a boldness in aura that his greatest opponents (Joe, Angle, etc.) had a seemingly endless abundance of."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KKeanelwrote on 17.12.2023:[10.0] "Maybe it is a hot take, but my view on him is justified - AJ Styles is the greatest professional wrestler of all time. Definition of success - remarkable title reigns in many different wrestling promotions around the world, catchy gimmicks, talented to cut a promo, fantastic in-ring performer. Complete guy. Living legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: theelevatedonewrote on 02.12.2023:[10.0] "AJ Styles will always be one of my favourite wrestlers of all time. I started watching WWE in 2011 and really started watching other promotions in 2013 when I started watching WCW and 2000s TNA, where of course AJ was one of the standout performers, perhaps the greatest TNA star of all time (Kurt Angle and Josh Alexander give him a run for his money though). His ringwork and confidence enamoured him to me immediately, with all the bangers he had in both the Heavyweight and X Divisions. However, it was his NJPW run between 2014-2016 that truly made me fall in love. I started watching New Japan around the time he first won the IWGP Heavyweight title and during that period I thought he was the coolest person on earth (with the hoodie-leather jacket combo and the short hair) and that Bullet Club was THE greatest stable of all time, they were just perfect at appealing to my 13 year old self. His matches against Okada, Ibushi, Tanahashi and Nakamura are all must watch classics. He also had a nice little run in RevPro (my favourite indie promotion) where I got to see him beat Marty Scrull for the British Heavyweight Title in person at Summer Sizzler 2015 (still one my favourite shows I saw in person, and it was on the day before my birthday! ). Had a few great title defences there before dropping it ZSJ (which I was at in person again, big up the York Hall), which turned out to be his final non-WWE match as he would debut in the Royal Rumble just 8 days later. To say I lost my shit would be an understatement (even if Kevin Dunne fucked it up). While I was scared he would be used poorly in WWE, he turned out to have a nice little run, winning the WWE championship twice and having decent reigns with them, having perhaps John Cena's best ever feud (from an in-ring perspective) and generally being a credible presence. Do I wish he would cut his stupid hair and be booked as a big deal again? Yes, but we've got so much amazing work to look back on that I'm contempt with his current position in WWE. Thank you for the memories AJ, you will forever be awesome. Also he's never had a bad theme song. They're all bangers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kellbobwrote on 30.11.2023:[10.0] "Bless him, he's arguably one the best of all time and needed so much more recognition in TNA. He should've held the belt for 400 days plus but hey ho, we know how it is. Can't argue cause Angle was one of the faces and he's truly Goated but I'm glad he got a good run in WWE despite dropping the big en to the shizen Eminem Cena boi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Bar786788wrote on 29.11.2023:[9.0] "I really want to give AJ Styles a 10 because of how great he was from 2004-2010. But I have to admit that his WWE run has been disappointing to me and that Ive never found him to be very convincing on the mic. While a incredible athlete who has given a lot to the business, I do think that his flimsy character work and lack of clear personality has to dock him a point- could overlook it if his WWE booking was solid enough to hide those flaws but its been rather mediocre somewhat unsurprisingly."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] "For over a decade, AJ Styles was a consistent top 5 performer in the professional wrestling landscape, earning his "Phenomenal One" nickname. Here you have a guy who could have a great match with, literally, anyone you put him in the ring with no matter what shape and size they came in, he'll make anyone look good. First exposure was in the dying days of WCW, which some have forgotten that he started in Atlanta under the Air Styles name (LOL! ). Then WCW died and got bought out by WWF in 2001, AJ Styles even competed in WWF briefly, which is so funny to think about. AJ Styles would mostly spend his early career in competing in other promotions back to back, whether it was Ring of Honor, TNA or IWA Mid-South, he was practically in a good spot getting booked everywhere showcasing his talents. Mostly sticking with ROH and TNA where he was having amazing matches with the likes of American Dragon, Jerry Lynn, Low-Ki, D-Lo Brown, Sean Waltman, Christopher Daniels, Samoa Joe, Abyss, CM Punk, the list goes on and on and on. While still doing Indy bookings and even doing trips to Japan, he was mostly a TNA guy during the 2000s often being their best wrestler that didn't come from "The Fed" as the cool kids call it these days. He ended up leaving TNA due to money problems, and went to work for New Japan Pro Wrestling, Ring of Honor and what have you, his run in NJPW truly elevated his legacy to legend status, being one of the best gaijin wrestlers having clinics with the likes of Kazuchika Okada, Hiroshi Tanahashi, Minoru Suzuki, Shinsuke Nakamura, Tetsuya Naito, etc. one of the all time best runs in any wrestlers career. Then he returns to the WWE in the 2016 Royal Rumble match, receiving one of the loudest pops in WWE's history, a moment no one ever thought would happen. His first year in WWE is among his best work he's ever had, being a great WWE Champion, running SmackDown during a great era for the brand, amazing feud with John Cena, etc. (just forget James Ellsworth). While I feel his run after 2016 in WWE is disappointing, he's still able to give us great matches every once in awhile whenever given the task to tear the house down. Overall, AJ Styles is one of the best high flyers of all time, one of the best movesets ever, even has showcased he can be a good promo when he's given the right material, a true veteran in this profession."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: theeternalsovereignwrote on 25.10.2023:[8.0] "Easily one of the most gifted on the modern roster and possibly of the all time roster. From his high energy but very diverse wrestling to his ability to cut excellent promos and flourish in every card level AJ is probably top 5 of the last 2 decades for WWE wrestlers. The only reason he doesnt get a perfect 10 rating is because I feel he moves can become a little routine and I feel like if his gimmick was switched from his country badass character that he may not do it as well but hes been able to be heel and face to perfection so who knows."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: compomwrote on 11.10.2023:"AJ Styles is great. He's in his mid 40s and is still a better wrestler than much of the WWE locker room. While I sadly didn't get to see AJ in his prime, he still is one of the best, even during his twilight of his career. While his mic work work isn't great, everything else about him is, well, phenomenal."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: juiceisloosewrote on 08.10.2023:[10.0] "My, oh my... Straightforward: He's a 10. Doesn't have the best mic skills but idgaf. While he doesn't have the charisma of a Rock or an Austin, he has a special something about him that makes him charismatic in his own way. In the ring there have been very few people in the history of wrestling who can come close to him. I feel emotions I can't fathom during this man's matches. He is doing art in the ring and somehow I fall under his spell everytime. He is the only person that can be a 10 considering only his in ring work withouth including his mic skills or character work. Truly one of a kind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Teebawrote on 21.09.2023:[10.0] "Truly one of the GOATS of professional wrestling. AJ in the 00s was THE MAN and incredibly influential on today's product. No-one had the flair in their moves like Styles did and as he's gotten older he's still kicking ass, I can't do a springboard 450 now let alone when I'm nearing my 50s. He's called phenomenal for a reason."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ViolenceBretwrote on 07.08.2023:[10.0] "Imagine everything that made HBK fantastic, but without any of the ego or backstage politics. Why yes, an argument could be made that AJ Styles is the greatest wrestler of all time. His work in Japan was great, he's already conquered WWE having won the top prize, and TNA/Impact was built upon this man's shoulders. Despite not being a literal giant in height, Styles more than makes up for this in athleticism. Even your Grandma will stop in amazement as this guy hits the Styles Clash, one of the craziest moves ever performed. True his promos are a bit simple, but AJ can get his points across without much flowery language. "Beat up John Cena" was so simple, yet it worked remarkably well as a fun dumb chant. Bringing things back to TNA, Styles was truly the breakout star. Moreover, he is one of the few foreigners to really fit in with New Japan's style which is remarkable in itself. What hasn't big dimes AJ done in professional wrestling? He's one of the greatest of all time and a total ace wherever he goes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Gold Fistswrote on 25.07.2023:[10.0] "AJ Styles and Gunther are without a doubt tied for the two best wrestlers in WWE at the moment. Styles was a great performer with a great moveset long before stepping foot in WWE, but he reached his best point when he became the face of SmackDown Live in 2016-17. Not to mention, he is essentially responsible for saving James Ellsworth from being paralyzed or even death. It's very hard for Styles to have a bad match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: bigredtalk89wrote on 24.07.2023:[9.0] "Only thing preventing him from being a 10 is Triple H seems to think he's a lesser star than Vince did. Still an elite guy everywhere he's been, and still at his age can put on classics, he's kind of stuck in a gatekeeper role currently. Which is a shame, as he's a bona fide main eventer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Loghan Morescowrote on 13.07.2023:[10.0] "Aj styles is in his own merits an phenomenal athlete won dozens upon dozens of titles and world titles in his career and amazing human outside the ring, his in ring work is just perfect alongside his facials and can really fit in any prormotion, an one in a hundred kind of guy that even at his current age still moves smoothly and looks younger that he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KTG1515wrote on 03.07.2023:[10.0] "It was AJ Styles who got me hooked on wrestling. I was long aware of WWE, and while some of the in-ring work in the company was good at the time, most of it was not what I was looking for. I discovered NJPW through AJ Styles when I first became aware of his work with the bullet club. The Bullet Club was what I had been looking for in wrestling, and AJ was the defacto leader, and the best wrestler in the group. He's conquered every mountain in wrestling since then, had good runs in TNA, WWE, and Japan, but nothing comes close the AJ's time in the Bullet Club."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Neon Aussiewrote on 02.07.2023:[10.0] "AJ Styles is a man who has conquered every mountain. The phenomenal one has been a show stealer since his first years in the business. It is an absolute crime he hasnt been awarded more 5 star matches by Meltzer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "Probably in the top 3 American wrestlers of the last 20 years or so. A guy you could easily build the promotion around."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: nothingleftinsidewrote on 31.05.2023:[8.0] "Among the greatest of all time, but not in any top 10 or 20 discussions. His legacy is that he was the vanguard of a company for so many years, and either defined or at least personified the growth of American wrestling styles in his era, which would have been 2000s and 2010s. Not a great talker but decent enough for it to not really matter. Has at least one great match with anyone who mattered in that time period, including a bunch of guys in Japan and ROH. I think he was the best in ring-performer of his era, at least among US wrestlers, not only because of his innovation and style, but because of his longevity- he delivered consistently good, impressive stuff for a long time *in TNA* for god's sake. As much as we rag on Impact, it got guys like this on mainstream American TV every week. If he had been stuck in ROH and indies no one would know who he was. First ballot hall of fame for sure, with a huge back catalog of matches worth rewatching. He's probably got a couple years left in him but will probably turn to a different role soon. He would probably do well in NXT either on screen or off. I hate his finisher though. A+ in ring, C look, C+ talker."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CoachWwrote on 17.05.2023:[10.0] "One of my all-time favorites. My first introduction to him was back in TNA's X Division when he was mixing it up with Christopher Daniels and Samoa Joe. He was really good then but has solidified himself as an all-time great in the time since. The end of his career is likely closer than I want it to be, but I'm hoping we can get one last run from the Phenomenal one."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Storyline Guywrote on 30.04.2023:[10.0] "One of the greatest to ever do it. His in ring skills are insane and he possesses great charisma that makes him look like a star no matter the company he is in, the guy he is feuding with, the match he is competing in or the title he is fighting for. One of the very few wrestlers who found success in every big promotion in the world and won every big championship there is to win. AJ Styles achieved legendary status in TNA, ROH, NJPW, WWE...truly a phenomenal career"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: crs285wrote on 04.04.2023:[8.0] "AJ Styles is an amazing talent who carried TNA during his time there. He got put in horrible storylines but even when that happened he still managed to put on good matches even if you did not care because of the bad story. Was great in NJPW and early in his WWE run might have been his peak. In WWE he was a top star for a while but his star power has seemed to go down as he aged. Still great on the mic and can fill an upper mid card role."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: greaterdalewrote on 03.03.2023:[10.0] "One of the best of his era! and let's be honest his era has been a long ass time! He's wrestled in WCW, TNA, NJPW and WWE and had absolute bangers in most of them (Maybe in WCW too? I'm not too familiar with his work there) The Styles clash is an awesome finisher and I like the phenomenal forearm too. It sucks that he might be a flat earther, I really hope that isn't the case(he says he isn't but that he sees some "interesting theories in it" oof) I guess it's proof that being one of the best wrestlers in the world doesn't necessarily mean your the smartest, but man can that dude wrestle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Deadmagician33wrote on 28.02.2023:[10.0] "Greatest Professional wrestler of all time. Great in every aspect and can put on a classic match with anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: kewf1988wrote on 26.02.2023:[9.0] "AJ Styles is a really good wrestler, and an example of changing his style as he got older. In TNA, he was an amazing high flyer and the cornerstone of the X Division, and in his later career he's changed his style to be more technical, while keeping all his signature moves. Also improved his mic skills significantly during the Russo TNA era, as he was given the mic often despite not being great on the mic when he was younger."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DecentLingonberrywrote on 23.02.2023:"Greatest of his generation, I've followed him from ROH to TNA (Impact) to NJPW to WWE and he hasn't lost a step into his mid-40s. Plug and play can fit in anywhere face/heel, goofy/serious."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LGL19wrote on 14.02.2023:[10.0] "One of the greatest to ever do it no doubt about it. He's in some of the best matches I've ever seen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: benh2wrote on 12.01.2023:[9.0] "Through the entire period he's been wrestling, not many others could hold a candle to AJ Styles. He was the backbone of TNA for years and was involved in some of the best matches of that generation. His NJPW was short but brilliant, the last great leader of BULLET CLUB. Finally made it to WWE 15 years after turning down a developmental deal. Immediately hit the ground running and although he's starting to slow down the last few years, he will still turn it on when he needs to."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JBoogieRom28wrote on 25.12.2022:[10.0] "AJ Styles is my favorite wrestler of all time. He put on some of the best matches I have ever seen, is a phenomenal character Worker (get it? ), can really make you cheer for him even as a heel, and is just amazing. Possibly the only wrestler in history to say that it is possible for them to be in 3 separate promotions as A Hall of Famer(WWE, TNA, and NJPW). He really redefined the high-flyer role and made it really special. He can make a good feud/match out of anyone because he is just that good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: fgpfriendswrote on 23.12.2022:[10.0] "AJ Styles is a total beast when it comes to the wrestling, he's just killing it, potentialy one of the best ever wrestlers of all time, his career is brilliant, and this year I really got to think like this, so I'm giving well deserved 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: fruggmanwrote on 19.12.2022:[9.0] "AJ Styles is every promoter's dream. A veteran who can carry anybody to a good match, who can work any style and add credibility to any card. He carried TNA for years, became a worldwide star with his work in New Japan before cementing his legacy as a 2-time world champion in WWE. Styles is the ultimate main event gatekeeper at the current stage of his career, and seems to have a few years left in him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MainEventMasterwrote on 02.12.2022:[10.0] "One of the greatest of all time, his matches in New Japan were especially great, but even outside of there, he always has fit the definition of a pro wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Enriquepollazzowrote on 28.11.2022:[9.0] "Great wrestler who has had so many matches it just depends on which ones you've seen as far as where you rate him 8, 9, or 10. Ive seen moreof the average part of his career than most. Due to TNA and a bad royal rumble 19 match I thought would be awesome vs bryan. I bet he was consistently best in Japan."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ROCKETMANwrote on 18.11.2022:[10.0] "Aj Styles is one of the best matchs and entertainers in this business today i only can imagine him on WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: eltetechoriwrote on 12.11.2022:[10.0] "I love AJ Styles, he's probably one of the best wrestlers WWE currently has. He's very agile, he's mic'd up and could be put to good use for his later years of his career doing storylines that also don't require much more than putting him to wrestle new people or worthwhile talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: li0nsaultwrote on 07.11.2022:[9.0] "Man... I agree that Styles is one of the best to ever do it. He had it all. But I think he has failed to reinvent himself, and I say it because now I feel he has become stale with the "Phenomenal" gimmick. Maybe it's WWE's bad booking fault, but I can't say I'm enjoying his current run with his OC friends."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SiriusBlackwrote on 30.10.2022:[10.0] "AJ styles is the phenomenal wrestler in the past year he has been booked to lose more often than not, however his in ring ability and talent is amazing, and I enjoy all his matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jmira17wrote on 27.10.2022:[10.0] "THE GOAT. He's truly the best ever, he's the most complete performer in the ring and he shows that in every companies and countries. He's so good on the mic and his character is great, face or heel it doesn't matter..... I enjoy every match, every promo that he does because I don't know when he decides to retire, I hope it will be for a long time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ANGELINHO18wrote on 19.10.2022:[10.0] "He is going to go down as one of the greatest to ever do it. He overcame all odds and became truly great in everything he does, lets just hope he can give us a couple more years of The Phenomenal One."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: danzgalliwagwrote on 02.10.2022:[7.0] "I can take or leave AJ Styles at this point. His best work was probably in New Japan, and of course he was incredible inTNA, but those years are far behind him. Back then was an era when a guy with his in-ring abilities was hard to find. He had something special. But these days he's merely one guy among hundreds with his kind of workrate. Since joining the Fed, every year he's felt less important. I'm disapppinted to say that I don't remember much from his year-long world title run, except how bad Nakamura got fucked over, and that's not his fault, but I don't even remember many matches. Maybe he's on the verge of a comeback, but after teaming with Omos I just can't take him seriously."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: xnviuswrote on 28.09.2022:[10.0] "no matter where he goes, he's a star. TNA, ROH, NJPW, WWE. undeniably one of the goats when its all said and done."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BAILE3wrote on 28.09.2022:[10.0] "One of the best in ring performers of all time. Killed it everywhere he went. TNA, WWE, NJPW, etc. the guy is undeniably gonna be considered one of the goats when he career is said and done."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "No matter the role you give him, he shines brightly. He can do practically anything in the ring and out, outside of being a monster powerhouse. Over the years he has gotten more charismatic and now has a commanding presence each time he steps foot in an arena. An all-time legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GwenCube64wrote on 06.09.2022:[10.0] "A fantastic in ring talent for his entire career, a must watch wrestler on any card who deserves even more than he already gets. even if his promos can be a bit off at times, his wrestling and attires still keep him in the goat conversation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Matthew23clawwrote on 31.08.2022:[10.0] "This guy as a wrestler rules so fucking much man. As someone who started watching in the 2010s it's hard not to say he's my favorite wrestler of all time. He was the guy I grew towards going from a kid to a teenager after getting sick of John Cena. Never been bored watching one of his matches. Everywhere he went he ran that shit. Really loved the evolution of his character as well AJ is such a good in ring worker he's become quite underrated character wise over time from The heart of high flying indie wrestling, to hell even Fortune four and Ric flair, to the leader of bullet club in Japan, to the face that runs the place he's always been able to reinvent himself while maintaining the best in ring wrestling skills in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KGPlaywrote on 28.08.2022:[10.0] "AJ Styles is just phenomenal. One of the best wrestler in the world. I really enjoyed his run as WWE Champion in 2016 and his feud with Dean Ambrose."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ElJasonwrote on 24.08.2022:[10.0] "The Phenomenal one, so nennt man ihn gerne und dessen wird er auch seit 20 Jahren gerecht. Auch mit über 40 liefert AJ Styles noch 5 Sterne Matches ab und ich hoffe, dass er das noch lange so hinbekommt. Es ist immer eine Freude dem Kerl zuzusehen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Tyler72wrote on 12.08.2022:[8.0] "AJ Styles is a surprisingly effective high flying professional wrestler. A favourite of mine since I've seen him on IMPACT! when it was Total Nonstop Action Wrestling in 2009 and 2010. Against the right wrestler, he has tremendous chain wrestling skills and an impressive move set that compliments his wrestling character."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: face painted legendwrote on 11.08.2022:[10.0] "A guy you build a company around. I know that sounds cliche since one of his taglines is "this is the house AJ Styles built", but it is the absolute truth. A.J. always wears his heart on his sleeve. He's a locker room leader. He's a guy who what you see is what you get. He never pretends to be someone that he's not. He never has a bad match...like ever. He's a guy whose versatile enough that you can put him with pretty much anyone on any roster and they come out looking better than they did when they walked in because they shared the ring with him. One of the best in ring performers of all time. Great promo work especially when he's involved in stories that he's emotionally invested in. Great fire as a babyface. Can sell his ass off. I can go on and on, but the guy is a once in a generation talent. PHENOMENAL!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KELLANwrote on 05.08.2022:[10.0] "AJ Styles ist einer der besten Wrestler der Welt (und auch bestimmt Aller-Zeiten). Schade, dass ihm das Trash-Booking seitens WWE nicht gut tut und trotzdem in der Mid-Card rumschwimmt. Dieser Mann ist Main-Eventer, kein Midcarder. Potenzial: 3x WWE Universal / World Champion - 600 Tage insgesamt - 6x WWE IC / US Champion - 500 Tage insgesamt - Main Event"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Prince DY8wrote on 25.07.2022:[10.0] "AJ Styles is the greatest wrestler in this generetion and maybe greatest ever be. AJ is unique talent. Such a phenomenal wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: hoangminecraft6969wrote on 21.07.2022:[10.0] "The Phenomenal One, easily one of the best American wrestlers ever in terms of ring skills. It's insane that this guy has achieved everything in almost every big promotion: TNA, ROH, NJPW and even WWE, there's a very few wrestlers have such a huge and respectable legacy. Have countless legendary matches with big names like Samoa Joe, Christopher Daniels, Kurt Angle, Okada, Suzuki, Nakamura, Cena, Roman, Dean Ambrose, Seth Rollins, Lesnar, Bryan Danielson... but the extraordinary thing is he still can have a bunch of great matches with terrible performers such as Corbin or Mahal, and make super boring characters like Omos somehow become interesting as tag team partner. Truly the King Midas of Professional Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JoshuaWrestling63wrote on 14.07.2022:[10.0] "AJ styles ist einfach einer der besten Wrestler.. Er kann mit wirklich jedem ein gutes Match worken.. Das Match gegen nakamura bei njpw war eins der besten matches die ich je gesehen habe.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CutterClubwrote on 24.06.2022:[10.0] "The best in the ring of all time. Can work any style even into his late forties. Quit reading this comment and go watch him wrestle in any decade he's been active."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: PhenomenalGunwrote on 15.06.2022:[10.0] "AJ Styles, half of the namesake of my username is my favorite pro wrestler and in my opinion, the greatest professional wrestler of all time. Let's rewind a bit. In the fledgling TNA they built an entire division around him in the X-division, later the top guy of the heavyweight division, even in the tag division for a while, until he became the face of TNA and earned the moniker of Mr. TNA for several years. All the time killing it on the independent circuit until he reached NJPW in what was, in my opinion, the best run of his career from 2014-2016 for both him and Bullet Club. Finally, after 18 phenomenal years wrestling around the world he reached WWE and had what was quite possibly the best debut year possible. He had an instant classic series with John Cena, led Smackdown during its best year in recent memory, became WWE champion, had a great and memorable feud with Dean Ambrose, and most importantly, solidified himself as a GOAT. Throughout the next few years he continued to impress, whether with the OC, as the top face holding the WWE Championship for over a year. AJ Styles has proven himself in every major promotion he's stepped foot into, from WWE to TNA to NJPW to even ROH. His incredible athleticism, simple and straightforward yet never gets old character, phenomenal look, amazing well-rounded moveset, and underrated mic skills make him the complete package. I've seen him bring a great match out of everyone, from someone of his caliber like Hiroshi Tanahashi to wrestlers with completely different styles like Minoru Suzuki. AJ Styles, is simply, the greatest professional wrestler of all time, and in a word, phenomenal!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CommisarRobewrote on 08.06.2022:[9.0] "One of the best, one of the very best in the business currently, throughout various promotions and eras Styles has proved himself to be a highly energetic, highly skilled performer in the ring, in 2022 he still is as exciting as ever."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BigVan JimmyWangYangwrote on 08.06.2022:[10.0] "One of the greatest in ring talents of all time and has dramatically improved in his mic work as well throughout his career. Undeniably a top 5 wrestler of his generation and a man that has managed to work his way to the top of the card wherever he has been."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NeoSwas36wrote on 04.06.2022:[10.0] "Easily one of the greatest American wrestlers to walk this planet. I can name countless matches from his time in TNA, NJPW, and WWE that I've loved. A great wrestler who plays both a good face and heel and a solid figure on the microphone. A legend in the business that should be an example of professional wrestling done right."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rahul77wrote on 21.05.2022:[10.0] "One of the best wrestler of all time and one the wrestler among my mount Rushmore with Kurt Angle, Eddie Guerrero and Shingo Takagi. Most the wrestlers will be naming him as their dream opponent is for a reason. World champion were ever he have gone. Nothing but he is just phenomenal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Ryanmichael25wrote on 23.04.2022:[10.0] "Just like Daniel Bryan, not just a great wrestler. Very entertaining, great on the mic, charismatic. Great as a sports entertainer or pro wrestler. Overall he? s just amazing at everything he does. Him & Bryan are probably the 2 best all around talents maybe ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: WrestlingFan892wrote on 01.04.2022:[10.0] "23 years of experience well spent, a very complete wrestler both in the indies and in WWE. He has mic-skills, a lot of variety of moves, charisma. He also combines wres5tling styles as well as a technician and a high-flyer at the same time, not to forget how well he does also when he fights as a tag team, a living legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: EJB2005wrote on 28.02.2022:"[10.0] One of the greatest wrestlers of all time. AJ Styles is one of the two best wrestlers to ever perform in the WWE with Daniel Bryan . His run in NJPW and TNA was phenomenal."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: nWo-Joshi-Guywrote on 24.02.2022:[10.0] "Simply phenomenal! One of the greatest wrestlers of all time. Even at 44; AJ can do almost everything in the ring and has had one of, if not the, best move-sets in the history of the business. Charismatic too. As an 'outsider' even Vince McMahon values AJ Styles (to some extent at least); that shows just how good he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: majorasmask12wrote on 18.02.2022:[10.0] "10 out of 10, 100 out of 100. It's unbelievable how he is still one of the best performers at 44. Not the best one with microphone but he's exceptionally charistmatic and definitely one of top 5 in-ring performers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GriffinXwrote on 12.02.2022:[8.0] "AJ put on so many classics in TNA and ROH at one point. Then went onto have a good run in New Japan. Still though he's at that point where he should wrap up as the slide down has been going on for a while"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Vliegpvwrote on 09.02.2022:"AJ Styles is one of the greatest of all time. His ring psychology and Precise technical, High flying skills are second to none. He can make any wrestler look good in the ring. He's a guy you can build a company around, and has had just that happen. Even in his older years he is still Phenomenal."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: scorpionking23wrote on 07.02.2022:"One of the greatest to ever do it. AJ Styles may no longer be getting pushed like the GOAT that he is, but the dude has been a winner everywhere he has gone. Easily one of the most impressive resumes out there."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Garmonboziawrote on 06.02.2022:[10.0] "My absolute favourite wrestler from 2013 to 2017. I still have a soft spot for him even though I haven't seen all of his WWE run. From what I have seen of his TNA run, I think he deserves the title "Mr. TNA"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Shail32wrote on 05.02.2022:"10 , For me he is complete package. all promotions like Roh, Tna , iwgp , Rev pro , Wwe , i can say he belt taker where he go."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: vinnyv91wrote on 02.02.2022:[10.0] "Not many people can say they were NWA, TNA, NJPW, & PWG champions, while also appearing in AAA, WCW, ROH, and more. One of the all timers without a doubt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: rishabhwrote on 31.01.2022:[10.0] "He joined the WWE at an age where a lot of wrestlers degrade in wrestling ability and can't work great matches but AJ Styles still proved himself as one of the best wrestlers in the world. It's usually hard for me to choose the best out of anything but I can say from all wrestling I have watched over the years, AJ Styles is THE best wrestler of the modern generation. He got such a loud pop in his debut, showing his popularity and I can't remember another guy who came from the indies and had never worked for the WWE to get such a huge pop. You can put him with anyone and it'll be a dream match and he will always deliver. He is 44 but still he isn't someone the other wrestler has to carry, he can still carry others to great matches. He is a great striker, great high flyer and then he also has submission moves in his arsenal. There is nothing he cannot do. One of the all time greats, he is truly phenomenal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Roodolphwrote on 16.01.2022:[10.0] "Despite his age, he's still the best in the world. he's my favorite wrestler, but it's objective that he's great at everything. He would make a good match even against a pencil."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Minorsmile09wrote on 29.12.2021:[10.0] "This generation's Shawn Michaels. Absolute jack of all trades who I've never seen a bad match from. My only, ONLY criticism of this guy is that his promos were a bit weak for a while, but I never really cared. He's had countless five star matches everywhere he's went, he's a generational talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: WrestlingFan1wrote on 28.12.2021:[10.0] "The best professional wrestler that I have ever seen, leader of his generation and a career full of prestige, multiple fights, rivalries and titles on more than 3 continents, dominated each company that stepped becoming an icon of the indie territory and triumph in the Mainstream in just 8 months, but WWE has been in charge of staining it by giving it mediocre years full of poor and meaningless stories and still the guy takes advantage to show off and be TRULY PHENOMENAL."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JonahBlackwrote on 22.12.2021:[10.0] "We're on the cusp of 2022. AJ Styles is making noises about this being his last run and hanging up his boots. And yet, he's still so far above most of his contemporaries that he's on most people's list of the Best Wrestlers currently working. Truly Phenomenal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Muggowrote on 22.12.2021:[10.0] "Whilst AJ hasn't done much of note in the past few years, It makes no Impact on his rating. AJ managed to be the guy in TNA, due to his outstanding ring skill, Then he went to NJPW and won the IWGP Title in his first match. Then he went to WWE, and he was given the WWE title in his first year, despite WWE being well known to be petty towards non WWE created stars. The fact AJ can go anywhere and is put in the Main Event picture almost instantly (and it having very little to do with draw power) should speak volumes on how good he is. He is truly Phenomenal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Luna100wrote on 21.12.2021:[10.0] "An absolutely amazing wrestler who has managed to main event in all of the major companies he has wrestled in since 2002, ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LivingLegendwrote on 14.12.2021:[10.0] "One of the best of all time, AJ Styles is a phenomenal wrestler and athlete. He is a perfect mix of high flying and grounded wrestling, he works great as both a face and a heel, and he's a very solid promo as well. A total package in my book, which is why he gets a 10 from me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Phenomenal Nightmarewrote on 10.12.2021:[10.0] "The Phenomenal one, AJ Styles, one of my favorite free wrestlers, one of the best in the world, with great talent, agility, experience and great matches, He is a TNA legend and future WWE legend He has won almost everything in the companies where he was"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Mister Cute Facewrote on 05.11.2021:[7.0] "He's really good and talented, I just don't get what everyone sees in him. I get that I'm the outlier here, but he's just not for me."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: gj07czoswrote on 22.10.2021:[10.0] "AJ Styles might very be the best in-ring performer of all time. He paved the way for so many others before him, and did it at every possible level. One of the most influential, skilled and game-changing to ever do it. The legacy AJ Styles has left behind in every promotion he's ever worked for is a testament to just how good he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Lalo Camposwrote on 22.10.2021:[10.0] "The best wrestler of the 21th century, he has do it all: WWE, ROH, PWG, RevPro, NJPW and, of course, he is the Ace of TNA"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jltwrote on 21.10.2021:[10.0] "AJ truly is the man who's done it all. He's wrestled all over the world, faced many legends (and up-and-comers), won so many titles and is loved by almost all wrestling fans worldwide. He could've probably left TNA earlier than he did but he's still got a few years left. It'll be interesting to see where WWE Creative will take him, especially since he's going to be stuck in the tag division for the next few months with Omos."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: kfztkfzt2021wrote on 14.10.2021:[10.0] "One of the greatest of all time, well balanced in each and every wrestling style: amazing technical skills, great striking, fantastic highflying skills(one of the best ever), pretty good powerhouse moves, perfect selling and bumping, tons of charisma and GREAT on the mic.There is no area where he lacks, he has conquered the wrestling world, from NJPW to WWE.the best wrestler on wwe current roster, one of the best of all time, fantastic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ecwfan197wrote on 06.10.2021:[10.0] "AJ is on of the greatest of all time in almost every way imaginable. He's tied for my #1 favorite wrestler with Jeff Hardy & Sami Callihan!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: RickyHendowrote on 05.10.2021:[10.0] "My all time favourite, has been a saving grace during the lackluster last 5 years of main roster WWE. Excellent matches with just about everyone he's faced, I just wish he'd gone to WWE a lot earlier than he did"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: No Onewrote on 03.09.2021:[10.0] "One of the greatest professional wrestlers of the 21st Century. One of the greatest in-ring performers of all time. Was the ACE of TNA from 2002-2013. Greatest TNA "homegrown" wrestler of all time. Has the aura of being the ACE of any wrestling promotion that he is a part of. Feuds with Christopher Daniels & Samoa Joe are legendary. One of the best all-rounder wrestlers ever. Can hit any move in the book. One of the best Ring Generals of all time. Can have a great match with a wooden stick. Extremely loyal to wrestling promotions. His era as the leader of BULLET CLUB was most likely the best era in the history of that faction's existence. Outstanding tag team partnership with rival Christopher Daniels in 2006, and they had a memorable feud with the original LAX. The only wrestler to have held the NWA, TNA, IWGP, & WWE World Championships. First ever ROH Pure Champion. Has held over 50+ career championships. Put on way too many re-watch worthy instant classic matches in TNA, all over the Indies, in ROH, in NJPW, & in the WWE. Won the WWE World Title in his first year with the promotion. One of the greatest under 6 foot tall wrestlers of all time. Popularized the Styles Clash. Is a measuring stick for high quality in-ring performance. Is now one of the top in-ring performers over the age of 40. Earned the right to call himself "The Phenomenal One". A Living Legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: vaventwrote on 23.08.2021:[9.0] "Great in the ring and good on the mic, though I wouldn't rank him among the very best in history for either category. His time in Japan and WWE allowed him to develop the character skills he was sometimes missing in TNA. Can work a solid match with almost anyone and a great match with other talented people, though sometimes he has weird chemistry issues with other wrestlers such as Kevin Owens and Nakamura (in WWE only)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TommyEndMalakaiFanwrote on 16.08.2021:[8.0] "Amazing in the ring. Really my only issue is currently I don't care for him. He is a great singles competitor but for some reason, they teamed him with a generic giant. He could have made a great tag team with anyone but they give him Omos, at that point might as well just keep him singles."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CHECKONETWOwrote on 29.07.2021:[10.0] "One of the greatest of all time. Can do pretty much anything at any spot on the card. Definitely works best as a heel though. Best run was in New Japan, but his success in WWE was nice to see. His time in TNA seems unfortunately forgotten but if fans go back they'll see him at his physical peak, though he did get better in NJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: voltxtreanwrote on 23.07.2021:[10.0] "Lass dich nicht von seinem jüngsten WWE-Aufenthalt täuschen, AJ ist immer noch ein Top-Wrestler der Welt und würde in das Main Event jeder Firma passen. Sein Erfolg in der WWE übersteigt das, was sich viele für ihn vorgestellt haben, aber er ist ein Beweis für sein Talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Enchantiumwrote on 20.07.2021:[9.0] "AJ Styles, an absolute mastermind when it comes down to anything in the squared circle, despite the age getting to him now he is still one of the most safest workers, greatest workers and still puts on fantastic matches for the crowd/audience. He has achieved loads in multiple different companies such as WWE, TNA, ROH and other familiar/unfamiliar Indy shows. A proper legend when it comes to the basics of professional wrestling, he can work with literally anyone as he can adapt and work with any move style and always allows his opposition to get some offence during matches allowing the crowd to engage more with him and whoever his opponents are and the match. Another great thing about AJ Styles would simply be the fact he puts over younger talent often, showing that he is an unselfish worker, and wants to benefit others in the long run before potential retirement in the future. AJ Styles has many other achievements -- facing The Undertaker at Wrestlemania & being a grand-slam champion and winning loads of titles during his fantastic career."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Suzukigunwrote on 19.07.2021:[10.0] "One of the all-time greats. He's fantastic at everything. Heel, face doesn't matter. He's great in the ring in every sense, has great in-ring psychology to go with high-flying ability, can wrestle a grounded style when needed, is good on the mic, and makes his opponents look like a million bucks consistently."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BrayanLaPrewrote on 09.07.2021:[10.0] "AJ Styles has the unique combination of brilliance individually and influence across a generation. Just listen to contemporary stars such as Kenny Omega, Ricochet, and Will Ospreay speak about how important Styles was to their careers. Just look at the ring attire of wrestlers throughout the industry and see how similar it is to Styles. Look at how the X-Division built upon the standard that WCW's Cruiserweight Division and NJPW's Junior Heavyweights, and how Styles was the face of it. Combine that with his numerous classics, his generational athleticism, his vastly improved technical wrestling ability, and his rare adaptability, and Styles is an all-time great. 10/10, and arguably on the Mount Rushmore for both the 2000s and the 2010s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: thebigmilkmanwrote on 28.06.2021:[3.0] "This one goes up and down for me a lot so I may revisit this review. But as of rght now he's just kinda bland and isn't really that good to me. I also missed a big part of his TNA run so I'm bassing this off of 1999 WIldside & 2010-2021 AJ"
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Daigotsuwrote on 19.06.2021:[9.0] "One of the best wrestlers I've ever seen-- can consistently put on an incredible match with just about anybody. Promo and character work left something to be desired, but very few can do what AJ Styles can do in the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: autopsy12wrote on 13.06.2021:[9.0] "Dude is almost 45 and he's still the best wrestler in the world. His promos are okay at best but his ability and presence more than make up for that."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: zags7000wrote on 28.05.2021:[10.0] "Everywhere he has been he has produced classic matches and moments that are rank at the top. ROH to Impact to New Japan to WWE, he has been remarkable everywhere. He is great on the mic and in the ring. This generations greatest in my opinion. He is able to get the crowd on his side as a babyface and boo him as a heel and get the desired reaction to anything he does. I admit, I was a little skeptical of him going to WWE. I felt someway, they would manage to screw it up somehow but Styles is just too good. He's great at putting other guys over while doing so in a believable way as to never damage his legacy. His storytelling and ability in matches is great as he makes bad matches watchable, good matches great and great matches classics. Like I said, best of his generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kungwrote on 12.05.2021:[9.0] "The Phenomenal One has long been an absolutely tremendous performer inside the ring. The only thing that forces me to give him a 9 instead of a 10 is that I've always had difficulty with his promo work. He's not a bad talker, it's just he's not the kind of guy who'd talk me into buying a pay-per-view."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The A-Listerwrote on 06.05.2021:[9.0] "He's great. Charismatic and fantastic in the ring. Did well in TNA, NJPW and WWE. One more title run, please."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CTFBwrote on 15.03.2021:[10.0] "As an overall performer, AJ is one of the most gifted and one of the most versatile. Going from a high-flyer that knew no limits, putting the X in the X-Division, to a more grounded worker in the modern day that can put on a 5 star match without really thinking about it. He has wrestled all over the world for almost every major promotion, and he would grow way more from just being a normal flippy-dippy guy to a full on bonafide star. I consider him to be in my top 10 of all time, and for good reasons."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: HYDROMAN93wrote on 06.03.2021:[10.0] "This man is simply the best wrestler in the world, nobody can touch him in that ring even at his age he? s still putting on quality matches. I? d say Kenny Omega is a close second behind him as best in the world. Truth be told he? s handcuffed in wwe to what he can truly do in the ring. He? s gonna go down as one of the best to ever step in the ring. It? s to bad we never get to see him wrestle Eddie Guerrero that would have been a match everyone talked about to this day. He should have beaten Brock Lesnar at survivor series I truly believe that would have put him in a class of his own at this stage of his career. He would have been viewed as a legend if he? d beaten Brock Lesnar on that night that? s the one big win he should have got that would have established him in WWE. Also the only wrestler in the world to win the WWE, TNA, IWGP, and NWA World Championships. A champion everywhere he goes even Vince couldn? t deny this guys talent. Best in the world period!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: pierreMinnewrote on 28.01.2021:[10.0] "Fantastic wrestler that simply can't have a bad match. He delivers great matches against very bad workers. A thing that only a true wrestling God can do. And more, he has fantastic mic skills and is perfect as heel and as babyface !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Shadow Explosionwrote on 26.01.2021:[10.0] "I could go on and on about how The Phenomenal AJ Styles is one of the greatest workers of all time having a hybrid style that is unmatched by nearly every wrestler on the planet, or how his matches have a grandiose combination have high spots and storytelling. Nowadays he's definitely past his prime but he can still work a great match, because he's still Phenomenal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Brett1980wrote on 26.01.2021:[10.0] "Possibly the best wrestler in TNA history. Would never quite be their top guy but was loyal. In 2013 that changed when he went to NJPW and shown the world how amazing he really is. Had excellent match after excellent match there. Left for WWE in 2016 and was able to maintain that momentum. He can still have great matches now. Truly one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Sick Lebowskiwrote on 03.01.2021:[10.0] "Für mich vor allem eines der Gesichter der frühen TNA-Historie und lange Zeit ein Augenschmaus. Was habe ich seine Three Ways gegen Samoa Joe und Christopher Daniels geliebt. Hat mit der Zeit aber leider für meinen Geschmack etwas nachgelassen. Ist zwar immer noch stark, aber mittlerweile recht wenig spektakulär. Daher schwanke ich zwischen 9 und 10 Punkten, gebe aber ganz knapp die höhere Note."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Old ride long linewrote on 19.12.2020:[9.0] "Good name, good look, and good in ring style. I wish this dude came to the wwe 10 years before he did. However he seems to have a lot more in the tank and another 4 or 5 years of high quality matches I? ll put him up to a 10. One of the many guys today that I would have loved to have seen in a different era. The one knock for him is he isn? t that great on the mic but I don? t know how much of that is his fault or if it is the lack of passion he has for the script he? s repeating, so I try not to knock anybody from the current era who doesn? t make me want to change channels immediately."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Ma Stump Pullerwrote on 09.12.2020:[9.0] "I think the term "workhorse" gets overused a lot, but Styles definitely fits the bill for that concept: the guy gets over wherever he goes with a extremely solid workrate and reliability. Styles used to be pretty good in the ring during his younger TNA and ROH years: not fantastic as some would say, a strong athletic style and amazing highflying but his pacing was always sorta off for me. He focused a lot on spots and less so on general match elements and storytelling. His later work in companies like NJPW and WWE showed a completely evolved Styles who could work technical but also bust out the high flying when it made sense, guy was a lot more charismatic and could actually talk on a mic half decent. Regardless of the evolution of his wrestling, Styles has always been a solid guy regardless of the style or place, a true international champion in the sense that he's basically done it all. The only thing that ultimately keeps him away from the perfect 10 is that, well, I've never considered him a true main event draw: he's good as the side champion, the guy who works with aces, but I don't think he's ever been really considered as the top draw, and he's never drew like one either, which is still the top essentiality for a wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: plaguespreaderwrote on 29.11.2020:[10.0] "I normally rate wrestlers on a balanced level, incorporating presence, mic skills, work rate, believability, and marketability, but the sheer ring generalship and psychology of AJ Styles simply engulfs his pretty "above-average" mic skills. His 2016-2017 run going flawlessly from New Japan to WWE facing everyone from Okada to Brock Lesnar has to be seen to be believed. He has done it all. The world was his oyster. One of the pillars of modern western indie wrestling and deserves the moniker of Phenomenal. Loved him in TNA, ROH, PWG, NJPW, and WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: FlyingCowswrote on 11.11.2020:[10.0] "Phenomenal wrestler overall. Amazing in the ring and on the mic, both in serious and comedic situations."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: eleddie2914wrote on 28.10.2020:[10.0] "Aj Styles is truly phenomenal he is just so good at what he does. AJ is a natural when it comes to wrestling he can have a great match with anyone. Styles cam to the wwe and made a huge impact winning the wwe title in his first year his second coming in 2017 where he held the title for over a year. Styles has had a short run in wwe but a meaningful one."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ilovewrestling1995wrote on 27.10.2020:[10.0] "Possibly the best wrestler in the world right now along with okada , rollins and omega . He is one of the best in-ring performer ever and his mic skills are decent. I hope he is going to wrestle for 10 more years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Narfmonsterwrote on 15.10.2020:[10.0] "For my money, AJ Styles is one of, if not the best wrestler of all time. Ever since his days in TNA and even his brief stint in ROH, AJ has done nothing but deliver classic match after classic match. From his bouts with Christopher Daniels and Samoa Joe in TNA, to his Wrestle Kingdom 10 classic against Shinsuke Nakamura, and even to his classic WWE matches with Brock Lesnar, Shane McMahon, John Cena, and others, AJ has truly cemented his position as one of the most entertaining wrestlers of the last 20 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Legend003wrote on 07.10.2020:[10.0] "Was will man über AJ noch sagen. Überall wo er auftrat, zeigte er das er einer der besten Wrestler der Welt ist. Im Ring eine Bombe und auch am Mic bzw. bei den Promos geht er ab. Eine zukünftige Wrestling Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: qveenovhellwrote on 28.09.2020:[6.0] "I am forever at a loss when it comes to figuring out the enduring popularity of AJ Styles. Sure he's plenty capable in the ring but he's an absolute charisma vaccuum. His promos are dull and lifeless and he never comes across as convincing whether he's scripted or not. I want to like him for his ring work but it's difficult when he has no character other than his real life persona, which is not particularly likeable."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BlakeFR37wrote on 26.09.2020:[10.0] "I'm not a huge fan but the fact is that he deserves his 10. Every promotion, every title, every match. He's one of the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SSEighty7wrote on 21.09.2020:[10.0] "AJ Styles has always been a great wrestler, but it wasn't until from 2013 and on the he became a totally well rounded wrestler from a charisma/talking standpoint. He became the complete package, capable of putting on awesome matches, carrying subpar wrestlers to standout matches, and cutting amazing promos. AJ Styles is a modern legend and deserves very high marks."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wrestling Foreverwrote on 02.09.2020:[10.0] "Ja zu AJ muss ich nichts großes posten das meiste weiß man schon und es ist in den anderen Kommentaren genug über ihn geschrieben worden. AJ ist ein Titelsammler egal in welcher Liga er mal wrestlet fast überall holt er sich Titelgold. AJ ist eine Wrestling Legend (IWA Mid-South, NJPW, PWG, ROH, TNA und so weiter) bei NJPW hat er seinen zweiten Frühling gefunden und seitdem blüht er auf und zeigt einen Kracher nach den anderen egal wo er wrestlet. Edit 12. 04. 2016. So nun ist AJ doch in der WWE und auch dort gefällt er mir sehr. Er hatte auch einen Grund warum er NJPW verlassen hat. Es ging um seine Familie er wollte wieder näher bei ihnen sein. Edit. 02. 09. 2020 AJ ist schon einige Jahre bei der WWE und längst einer der Top Stars."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Yumichi95wrote on 01.08.2020:[10.0] "Top 5 des meilleur catcheur au monde peut Etre un peu de manque d acting dans ses match trop de in ring mais c le PHENOMAL pour toujours ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: martizzletaewrote on 22.07.2020:[10.0] "The first match I ever watched in TNA was with AJ Styles and I was instantly hooked. The smoothest wrestler and with time, turned his high-flying hybrid style and evolve into a truly unique all around performer. He has gotten a lot better on the mic too! Simply phenomenal"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Ratewrestlewrote on 12.07.2020:[9.0] "The Man has been a stand out talent for atleast the last 15 years. His work in NJPW, TNA and now WWE has been unrivalled"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Vaxxewrote on 04.07.2020:[9.0] "AJ Styles is an incredible performer, top 5 in the world for sure. From TNA to NJPW to WWE AJ has never failed to impress me, and he is one of the best ever in-ring. The only thing I believe that prevents him from being a 10/10 is that sometimes he can be less than perfect on the mic, but still nonetheless he is still perfectly fine and sometimes cuts great promos. AJ is definitely someone that deserves his spot on the main event card, and I'm going to be sad when he retires."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Viniciouswrote on 26.06.2020:[9.0] "For such a long time AJ has been the best wrestler in the world. Not the most charismatic guy, but crisp and acrobatic moves. Top guy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wrestling Nerd BTC6wrote on 05.05.2020:[10.0] "Pros: Phenomenal in-ring competitor with an amazing move set and some really good spots Amazing promo with some really good comedy chops that can generate a few laughs Always feels like a legit superstar when he makes an entrance Cons: Through no fault of his own, his recent feuds have always been overshadowed by other rivalries and storylines. Overall: Definite main eventer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Eggi1304wrote on 11.04.2020:[10.0] "Ich verfolge AJ schon seit seiner Anfangszeit 2000 in der WCW und war von Anfang an ein riesen Fan von ihm. Sein In Ring Talent hat mich sofort begeistert. Dann bei TNA der absolute Durchbruch. Wenn der Name TNA fällt, dann muss man sofort an AJ Styles denken. Über eine erfolgreiche Zeit in Japan ging es dann tatsächlich doch nochmal zur WWE, wo er auch zweimal den prestigeträchtigsten Titel des Wrestling Business erringen durfte. Dieser Kerl ist in meinen Augen einfach die Perfektion im Ring. Klar, mittlerweile bei WWE workt er eher etwas mehr auf Sparflamme (was auch zum Teil durch die Ausrichtung der WWE kommt), aber trotzdem ist er damit immer noch einer der Besten in der WWE. Auch am Mic finde ich ihn mehr als solide. Da gibt es sicherlich bessere, aber trotzdem ist das alles in allem mehr als anständig. Für mich steht es hier außer Frage 10/10 Punkten zu vergeben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Residentwrote on 04.03.2020:[10.0] "The best American wrestler in-ring today. Skilled wrestler who can get a great match out of just about anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DrewHLMWwrote on 25.02.2020:[10.0] "to put it simply he is one of the best wrestlers the industry has ever seen. he lives up to his moniker as the phenomenal one in every way."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Okaro143wrote on 29.01.2020:[10.0] "One of the best wrestler of all time. Aj Styles in my opinion is one of the two best wrestlers to ever perform in the WWE ring along with Daniel Bryan. His run in NJPW was phenomenal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Bobbythreesixteenwrote on 06.01.2020:[9.0] "Für mich der beste aller Zeiten. Immer gute Leistungen gezeigt, egal ob bei Impact, New Japan oder in der WWE. So langsam merkt man zwar das er älter wird aber bei diesem Niveau was er seit knapp 20 Jahren zeigt kein Wunder und daher auch vollkommen in Ordnung. Deswegen gebe ich meine 9 Punkte. Vor 2 Jahren hätte ich ihm sogar 10 gegeben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: VillainClubwrote on 24.12.2019:[10.0] "Phenomenal AJ Styles. Überall wo er aufgetreten ist, war er der Mann. Sei es als Top Guy bei TNA oder RoH. Zweifacher IWGP Heavyweight Champion bei New Japan und zwei facher WWE Champion. Seine Matches sind zwar nicht mehr so stark wie bei New Japan, aber ist immer noch gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Uweuwesenwrote on 28.11.2019:[10.0] "Größter Champion der TNA-Historie! A. J. Styles hat sogar grauenhafte Storylines mit Leistung gefüllt. Bei der WWE dann tadellos, nur halt nicht immer gut eingesetzt..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Psykotikjobwrote on 12.11.2019:[9.0] "AJ Styles is definitely one of the best talent in the business right now. He has some pretty cool moves that can be considered as "flashy", yet still very impactful and believable, unlike most other modern big-time wrestlers. His work on the mic is very soulful and energetic. He can draw both love and heat from the audience with equal fervour. His run with the WWE championship which lasted over a year, saw him and most of his opponents put up great matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Iceqwrote on 08.10.2019:[10.0] "Unfassbar das Styles jetzt schon seit fast 4 Jahren bei der WWE ist. Ich kann mich noch genau an sein WWE Debut erinnern und damals hätte ich mir seine WWE-Laufbahn nicht besser vorstellen können. Natürlich ist er nicht nur in der WWE ein Topguy sondern auch bei Promotions wie TNA und NJPW war einer der größten Stars. Wrestlerisch extrem konstant, auch wenn er nicht in der WWE so viele Klassiker gezeigt hat, jedoch kann auch ein Styles so viele verschiedene Matches mit allen möglichen Wrestlern zeigen. Für mich ist AJs Karriere die Definition von einer perfekten Wrestler-Laufbahn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AndoCommandowrote on 12.09.2019:[10.0] "May very well be the greatest example of a journeyman wrestler. An excellent worker in every promotion he's been a part of, who has succeeded as a star in every major promotion he's ever signed with: WWE, TNA, NJPW and ROH. One of the most innovative wrestlers to ever grace the ring. Beautiful offensive manoeuvres, coupled with consistently great selling and use of psychology, making him one of the most complete packages you can find in a pro wrestler. His weaknesses (promo ability, pacing) overtime have only become strengths. Sometimes we forget how great a wrestler is, and when they're able to remind us why they're great on a consistent basis, it can only be a testament to their greatness."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: taabr2wrote on 31.08.2019:[10.0] "AJ Styles is a wrestling genius, someone who always adapts his work to fit the environment he is in. Take his younger days in TNA where AJ Styles' best aspect was his amazing high flying moves to now in his WWE run where he focuses more on storytelling doing less dangerous moves. One of the best in-ring wrestlers no doubt. It's also amazing how quickly AJ Styles was able to shoot right to the top of the WWE roster after he signed with them in 2016 becoming one of the company's biggest merchandise draws. AJ Styles has definitely had one of the more interesting careers in his generation being a top guy for TNA, NJPW and WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Matt Mackswrote on 22.08.2019:[10.0] "While I have followed his career mostly from afar, I have seen him perform in spots throughout the last 20 years. I am truly impressed by the fact that he has been one of the most athletic, fluent and exciting performers to step into a wrestling ring for all of these years. In the beginning, he lacked experience and in the " entertainment" aspect, but he was already exciting to watch. Nowadays, after rising to the top in TNA, NJPW, WWE and basically anywhere else he ever wrestled, I can say with confidence that AJ Styles is the complete package. One of the greatest wrestlers and most reliable performers of all time in my opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JOEvsISHIIwrote on 13.08.2019:[10.0] "One of the greatest in ring workers of all time. Great high flyer, technician and seller. Can play heel or face. Mic skills could improve but good enough for me to give him a 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JEK 1991wrote on 28.07.2019:[10.0] "The best modern day high flyer in the ring. Exciting in TNA and now WWE. His kicks are powerful than words."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[10.0] "I remember seeing one of TNA's first promo packages when that company was still in its infancy & seeing this AJ Styles fellow doing all sorts of things that completely left me in awe. Ever since then, I have been glued to his work. I'm not sure where TNA would have made it to if it wasn't for the work of AJ. After TNA he reinvented himself a number of times & is still working at the highest level possible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheV2wrote on 20.07.2019:[10.0] "Once I thought a move to WWE for AJ Styles would be destructive for both sides. I was wrong! The indies', TNA's and New Japan's Demi-God, the Phenomenal, AJ Styles! From his character work to especially his in-ring work he has never stopped developing further and it's difficult to not care about how passionate he is. Nothing is perfect, but AJ's precision and uniqueness in the ring is near perfection. If I had to pick the greatest overall wrestler, it might be AJ. He might have more potential, but he is treated better in the WWE than most of us expected."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NEVERoverweightChampionwrote on 12.07.2019:[9.0] "He succeeded almost everywhere, always left a good impression. I think that for most of his career he was a very good wrestler but lacked charisma and personality, until he went to NJPW. Being the new Bullet Club leader who won the most prestigious title in the world on his first try, on his first match in New Japan really gave him a great boost. While the Japanese audience wasn't very hot for him at the beginning, he ended up convincing them, he simply showed that he was worth the title he held and when he left, Japanese fans loved him. His work in New Japan was excellent, he could show the best of his technical and athletic abilities while gaining confidence and becoming a charismatic leader of a hot faction. It changed his career and he went in WWE with a lot of hype. Even there he can have some good to great matches sometimes. His first year in WWE was good. Then he slowed down but that's understandable. Anyway he had a brillant career."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AlexLikesJoshiwrote on 04.06.2019:[7.0] "AJ Styles at his peak was probably the best wrestler in North America and could do cskmw insanely good stuff.  His WWE run has been really overrated and filled with too many average-bad matches for me to consider him an all time great.  His promo ability is also very hit or miss which makes a big difference when wrestling for the like of WWE and TNA"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cow Manwrote on 31.05.2019:[10.0] "A. J. Styles' new "soccer mom" gimmick sells his accomplishments short. He has been WCW, TNA, ROH,  NJPW, ect, ect... He truly has done it all. He has great in-ring and promo skills. He may not be the absolute greatest of all time, but he would certainly rank in the top 10. A 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Fab96wrote on 11.05.2019:[10.0] "10/10 isn't enough for "this guy from Atlanta". What can I say about AJ? Technique out of the world, show stealer all over the world, charismatic inside and outdside the ring, could make a 5 star match with a doll. How many titles did he win? I lost the count, and we talk about primary titles, champion in TNA, NJPW, ROH, WWE.. This guy has done it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Darth Vaderwrote on 06.05.2019:[10.0] "The 'soccer mom' style has nothing on the embarrassment caused by AJ's record against one James Ellsworth.  On the 11 October, 18 October and 22 November episodes of SmackDown, Ellsworth picked up three separate victories over one of wrestling's best performers. The first happened due to Dean Ambrose being special guest ref, and the second was via disqualification. The third, a Ladder Match, also happened because of Dean's interference.  Still, the history books show that Jimmy holds a trio of wins over AJ, and Styles can only point to one return victory over Ellsworth on the 20 December 2016 edition of SmackDown. That means the record between AJ and Ellsworth stands at 3-1 in favour of the chinless underdog character.  To put that into perspective, AJ lost only once in three pay-per-view matches against John Cena. Yes, James Ellsworth has more televised triumphs over Styles than Cena does.  Sometimes, I really wish WCW won...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: blackx18wrote on 01.05.2019:[9.0] "Micwork : (9/10) In-Ring : (10/10) Gimmick : (9/10) Charisma : (8/10) (35/40) = 8, 75. Immer noch sehr guter Wrestler und der vielleicht beste Wrestler in WWE der trotz deinem vorgestrichenem Alter noch gute Leistungen abliefert."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "By far one of the best of all time in terms of ring skill. He has had amazing runs everywhere in the world he has went and has had succsessfull runs in TNA , NJPW and now currently WWE. He can play both an heel and a face quite well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ZestyZuluWarriorwrote on 23.04.2019:[10.0] "What AJ lacks in mic skills he more then makes up for with his in-ring work. He is easily one of the greatest wrestlers of this generation and has been at the forefront of any company he has stepped into which is not a coincidence. He is 41 and still moves like he's in his 20s"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ErycK24wrote on 08.04.2019:[10.0] "AJ is possibly the best performer in the world today. He's in an elite class with guys like Seth Rollins, Shinsuke, Kevin Owens, Sami Zayn, and Y2J guys like that. He's very deserving of a 10 rating. Edit 2019: I? m changing AJ? s rating from a 10 to a 9 because I feel that most of his matches are too slow paced these days and I haven? t really seen a great match from AJ in a while. 10 for a career easily, 9 as of right now so ehhh I? ll keep it a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AJStylopzwrote on 03.04.2019:[10.0] "In my opinion, AJ Styles is the Michael Jordan of Professional Wrestling. He is without a doubt, the best wrestler in the world these days, whether people like it or not, he is a goddamn full package when it comes to in ring work. Incredible bumper and seller, fantastic looking offense, outstanding athleticism, great power, knows how to have a great match, he has improved also tremendously on the mic and keeps contantly delivering badass and deep promos. This man is probably my favorite pro wrestler of all time and it's going to a damn sad day when he retires."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GBoonewrote on 27.03.2019:[10.0] "Styles is by far of the best wrestlers in WWE and in the world today. This has been the case for a while too, as from TNA to NJPW to WWE,  he has put on classic after classic after classic. Even as he approaches 40 and beyond, I have no doubt that he will continue to put on absolutely great matches. His promos have improved in WWE as well, so we have a much more complete Styles to look forward to as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kevin41182wrote on 19.03.2019:[10.0] "Simply the best in the world. AJ before coming to WWE was phenomenal. A multi time TNA World Champion, NWA World Champion, IWGP Heavyweight Champion, the list goes on. Now in WWE, a multi time WWE Champion he is simply legendary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: zephyrwrote on 16.03.2019:[10.0] "The old TNA short hair AJ Styles was a tremendously talented young guy who seemed to be lacking in charisma. Then he grew out his hair and somehow became one of the best wrestlers this side of the millennium."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: furkan3614wrote on 11.02.2019:[10.0] "My favourite wrestler.  Great in ring skills, expecily for his age. He is a really genius man, he once turned a botch into a comedy angle called "I hate lucha ropes! ", He saved James Elsworth's life etc. His mic skils are also pretty good if we compare with his NJPW and TNA times."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: 20SaiDa19wrote on 10.02.2019:[10.0] "The past 18 months have been poor by his standards, but prior to that his career has been great. Whether in TNA, ROH, NJPW or WWE, AJ has been one of, if not the best in-ring talent signed to that particular company. His mic work has improved considerably since joining WWE and even though he is still by no means a great promo, he can now more than hold his own on the mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: foolishtravelswrote on 25.01.2019:[7.0] "Over rated - very good performer but inconsistent story lines and his interviews are fairly boring.  His in-ring mic work is much better than when interviewed."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cibswrote on 04.01.2019:[10.0] "One of the most consistent wrestlers of the last 15 years and the best on the planet right now. Incredible in the ring, good promos and a lot of charisma; In addition, he can adapt to practically any style and it is very difficult to see a bad match from him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheManiacwrote on 03.01.2019:[10.0] "Einfach ein unglaublicher Worker. Extrem stark und technisch wahrscheinlich mit das beste was die Wrestlingwelt zu bieten hat. Bei TNA damals schon die tragende Säule, später auch bei ROH und NJPW. Bei der WWE auch der Star unter den Workern, an den nur wenige herankommen. Deshalb 10 Punkte, weil AJ Styles einfach on Top ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: EnesTR32wrote on 22.12.2018:[10.0] "Real best in the world: AJ STYLES! . He my favorite wrestler. Because -Amazing Ring Skill -Not Bad Promo - He charismatic And more...  Point:10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Steamboat2511wrote on 05.12.2018:[9.0] "AJ Styles gehört zweifelsohne zu den größten und besten Wrestlern aller Zeiten. Seine Fähigkeiten in Sachen Technik, Matchführung, Psychologie und In-Ring-Entertainment sind herausragend. Lange Zeit schien er einfach keine Fehler zu machen und immer perfekt zu worken. Inzwischen schleichen sich immer mal Unsauberkeiten ein. Aus (fast) jedem Gegner kann er noch ein anständiges Match herausholen. Personality und Charisma sind zweifellos vorhanden, finde ich aber nicht ganz so stark wie viele hier. Stark ist auch, dass er sich als einer der wenigen Indy- und u. a. TNA-Stars wirklich in der WWE durchsetzen konnte. In der WWE fehlt bisher bei sehr guten Matches oft noch das kleine bisschen Extra. Momentan abgerundete 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Stott Onewrote on 27.11.2018:[9.0] "An amazing in-ring performer. One of the main reasons I kept watching TNA. I was very excited when he came to WWE and he hasn't disappointed. His mic skills aren't always top-notch but he can be extremely entertaining. Put the man against anyone, and you're looking at a good time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Amico Leonardwrote on 21.11.2018:[9.0] "Probably the best performer in WWE today compared only to Seth Rollins and Daniel Bryan in the main Roster. Aj styles has proven to be championship material and has proven to be able to do great also in WWE. His ? non-WWE carrear has been excellent. He was the heart and soul of TNA the greatest Non WWE company since Monday Night WAr in North America, his matches with Samoa Joe or Christopher Daniels back in 2005 were excellent (go and watch the triple threat match they had at Unbreakeble 2005) also his bouts with Kurt Angle were excellent and all his evolution as character in TNA was excellent (I loved his dark persona back in 2013 against Aces&eights) . His Period also in NJPW will go out in history as one of the best non japanese icons of New Japan pro wrestling ever as a team leader in Bullet Club.  As a WWE point of view he arrived no loger a young man but it was necessary becouse if he shoul had debuted in Vince Headquarters back in 2002 he would have been a jobber with no capacity to show his talent. His carrear before wwe was necessary to make himself a name . His debut at Royal Rumble 2016 will go on in history as one of the best ever (only the Y2J one in1999 was better) , his matches and feuds with John Cena , Chris Jericho, Shane Mcmhaon or Finn Balor will be considered some of the best matches ever. I don? t give him 10/10 becouse as entertainment and not in ring performance point of view he is not the best ever, his promos aren? t good as his ring work and also his 371 days title reing (longest in smackdown history) was sometimes something monotonous and flat. The first half of it was great after WrestleMania 34 it seemed to go on as inertia with the Samoa Joe feud (that gave us some great matches but not excellent). To longer and with a bad finish, it? s not his fault but that? s the way it is. Besides that Aj styles is one of the best ever, in the top 10 greatest in ring performers in history for sure, stealing the show in every company he went..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KINGwrote on 09.11.2018:[9.0] "The best professional wrestler of his generation. Sad how TNA didn't give him like 10 world championship and guys like Jeff Hardy, RVD and Kennedy won the title while he was there but now in WWE he monopolized SmackDown, but c'est la vie I guess, he never surrendered and like wine he kept improving, becoming a badass heel in Japan and in WWE. I find him bland as babyface but I don't blame him as it's easy to be bland as a good guy in WWE, his performances tho are always amazing even if 2018 wasn't a lucky year for him, but he's still 41 and dealt with several crap match finishes, I just want him to get rid of the title and start a new chapter but he deserves his success."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MogGuywrote on 06.11.2018:[10.0] "I'm not going to give a thorough and detailed comment, i'd be here all day. Bottom line: Can have a great match with ANYONE (truly), mic skills have gotten gradually better over the years and since he's been in WWE he's one of the best talkers in the industry now, his in-ring work is so smooth and crisp it's uncanny. Highlight of his career: Signing with WWE (the best thing he's ever done in his entire life, and he would agree outside his wife and children). Lowlight of his career: The abysmal Claire Lynch storyline in TNA. What an absolutely stupid idea by TNA at the time. Major respect AJ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TylerWhitewrote on 01.11.2018:[10.0] "Technisch gesehen absolutes Top-Niveau und einer der besten Wrestler aller Zeiten. Nahezu jedes Match mit ihm ist sehenswert und alles was er macht sieht so gekonnt und perfektioniert aus, wie es kein anderer Wrestler hinbekommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: RatingsMachinewrote on 12.10.2018:[9.0] "AJ Styles is an exciting performer, and he's versatile enough to have dramatically athletic matches, bridging the gap between performing and working."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Hazemwrote on 02.09.2018:[10.0] "Forget how great he is in the ring because that is obviously a given, AJ Styles could be the only guy who was a top guy in such different big-time promotions. His run with TNA was great and he was rightfully called Mr. TNA and then he took a huge bet and went to NJPW where he was a big deal and fit right in even the high standards there and then went to WWE where most people thought he was going to be a midcarder but he quickly became a main eventer and a two time WWE Champion. He was made to look very competitive against Reigns and he beat Cena clean. Hell, he was even the only one made to look strong against Lesnar during his Universal title reign. He has been WWE Champion for almost a year now. He has done it all and on top of that, he? s the best wrestler (in-ring wise) of his generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JokeyZockeywrote on 30.08.2018:[10.0] "Bis 2016 wahrscheinlich der beste westliche Wrestler des 21. Jahrhunderts. Unfassbar hohe In-Ring-Qualitäten, starkes Mic-Work, viel Charisma und einfach die passende ''Star-Aura'', die ihn immer umgibt. Vor allem während seiner NJPW-Zeit hat es einfach Spaß gemacht, seine Matches zu schauen, er gab dem Produkt in gewisser Weise das, was mittlerweile Kenny Omega verkörpert. Einige Klassiker, unter anderem gegen Okada, Suzuki und natürlich Nakamura entstammen diesen knapp 2 Jahren, welche wohl einen der besten ''Promotion-Runs'' aller Zeiten ergeben. Als Styles dann zur WWE ging (was vor einigen Jahren noch undenkbar schien) schaffte er es als einer der wirklich ganz wenigen Indy-Stars, sich auch in der WWE in den passenden Card-Regionen zu etablieren, er ist zu einem der größten WWE-Stars geworden, und das kann man ihm einfach nur gönnen. Auch wenn seine Leistungen trotzdem unter dem WWE-Stil leiden mussten, ist er vermutlich immer noch einer der, wenn nicht der Beste im Roster. Mich persönlich kann er zwar gerade dadurch nicht mehr wirklich begeistern/mitreißen, aber objektiv betrachtet ist er einfach was er ist: The Phenomenal One! 10 Punkte für einen der Größten dieser Zeit!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: nwo4204lifewrote on 25.08.2018:[10.0] "One of the only guys left from WCW, AJ Styles is not a young man. He has evolved his game, and grown into a once in a lifetime talent. His ability to be a serious Main Event contender anywhere in the world in spite of his size and age and questionable microphone abilities is a true testament to how phenomenal AJ is at this great art of wrestling. AJ Styles is at his best in high pressure situations, he can go toe to toe with any wrestler in the world of any style. During the reign of Brock Lesnar, when Brock would not defend the belt against anybody, AJ really took it to the ogre in the Survivor Series WWE Champ vs Universal Champ match. I expect more big things from AJ Styles for as long as he wants to keep working."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MaskerRaid144wrote on 19.08.2018:[10.0] "AJ Styles is easily the best wrestler alive today! Sorry Okada and Omega but Styles is just too phenomenal! P. S. Omega is very good but is highly overrated by Dave Meltzer's ratings, those ratings are just Meltzer's opinion... The guy isn't the personification of wrestling standards"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: M7Wrestlingwrote on 13.08.2018:[10.0] "AJ Styles is the greatest wrestler of all time in my opinion, he is just perfect and also i've met him in real life"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Starfruitwrote on 01.08.2018:[8.0] "I don't find him a compelling babyface, but maybe that's because I know too much about his shoot personality. He is a blisteringly talented wrestler, though. Many wrestlers have had the best match of their career against AJ Styles."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cameron621129wrote on 17.07.2018:[10.0] "Best in ring talent of this generation in my opinion. He could put on a great match with anyone. He has a great look and is a superb seller. His weakness is on the mic but he more than makes up for that in the ring with his incredible moves. Truly one of the great service."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jamzell00wrote on 29.06.2018:[8.0] "Boy he has taken a nosedive in 2018. 2014-2017 he had one of my favorite runs of the modern era but this year he hasn't been close to what his nickname indicates. He is still one of my favorite wrestlers ever without a doubt but I haven't enjoyed anything from him since his Brock match."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: RPMX123wrote on 28.06.2018:[10.0] "One of the best movesets, one of the best looks, one of the most athletic, one of the best storytellers, just one of the best in the WWE, maybe even THE best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Chrisxyzwrote on 22.05.2018:[10.0] "Für mich das Face der WWE. Seine gesamte Wrestling Laufbahn schon beweist er warum er der Ž Phenomenal One Ž ist. Ein Prototyp Highflyer und Techniker im Ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rudi der Fetzenwrote on 12.05.2018:[10.0] "Mein absoluter Lieblingswrestler. Seine Bewegungsabläufe sind alle perfekt aufeinander abgestimmt und es wirkt alles so unglaublich flüssig. Die Szene die mich am meisten beeindruckt hat, war der Styles Clash gegen James Ellsworth, wo er den Move mitten in der Ausführung noch angepasst hat, damit Ellsowrth's Nacken nicht in tausend Stücke sprang."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: InactiveGuruwrote on 05.05.2018:[10.0] "Simply Phenomenal. Superb in the ring, almost untouchable. He really did come into his own with his mic work after his stint in New Japan. Finally he made it to the WWE and he is indeed one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: lew kazamawrote on 02.05.2018:[10.0] "At 40 years old, Styles continues to work himself to death every week and has become the central pillar of Smackdown. Even without considering his storied past around the world, he is one of the smoothest and most exciting workers today. In his short time in the WWE he has become a top face and the most repected talent on the roster."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Headlockwrote on 28.04.2018:[4.0] "Einer der überbewertetsten Wrestler dieses Planeten. Meine Hunde schlafen ja schon ein nur wenn ich von AJ Styles rede. Seine Matches sind oft ziemlich ähnlich, dazu wrestlet er auch ziemlich unsauber, wie man an denn neckbreaking Styles Clash und dem Moonsault DDT sieht dehn er gefüllt jedes mal verhaut. Charisma und Mic Work ist auch nicht gerade endlos vorhanden. Alles im allen "ausreichend""
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: mopouwa75wrote on 17.04.2018:[10.0] "He is just phenomenal. Always liked his looks, unique ring ability, athleticism and passion for wrestling. AJ Styles can make a solid match out of nothing. One of the best wrestlers in history, in my opinion"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LrockBesnarwrote on 15.04.2018:[10.0] "He is always emotionally dominant in all his matches. I think this is the most important thing in the pro wrestling. AJ was always perfect and full packed. In ROH, PWG, TNA and now WWE. He is really a perfect wrestler and the in place he deserves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kid Rockwrote on 19.02.2018:[10.0] "Der derzeit beste Wrestler im WWE-Kader und zweifellos einer der bester Wrestler auf der Welt aktuell. Styles ist ein fantastischer Techniker, Highflyer und Brawler, dessen größte Stärke aber seine Vielseitigkeit und Anpassungsfähigkeit im Ring darstellt, dazu kommt ein starkes Gespür für Matchpsychologie, Selling und der notwendigen Stiffness um seine Kämpfe, trotz aller Athletik authentisch und wie richtige "Fights" aussehen zu lassen. Seine Körpersprache, sein nicht abzusprechendes Charisma und seine Geschmeidigkeit im Ring tun ihr übriges um festzuhalten, ja, dieser Mann ist der Shawn Michaels der aktuellen Generation als unschlagbar bester Performer der heutigen Zeit. Während er im Ring Top ist, sollte man auch seine Promo-Fähigkeiten nicht außer acht lassen, hier hat Styles oft genug, sowohl als Heel wie auch als Babyface gezeigt, dass er fähig ist einen authentischen, nachvollziehbaren Charakter natürlich und glaubwürdig darzustellen. Wobei ich behaupten würde, dass Styles als Face noch besser funktioniert, da er, kennt man vor allem seine persönliche Geschichte, einfach ein natürlicher Sympathieträger ist, dem man gerne zujubelt, was auch seine Overness bei der WWE erklärt. Wurde er vor zwei Jahren als Ersatz für die Lücke, die Top-Worker wie CM Punk und Daniel Bryan hinterlassen haben engagiert, hat er durch seine Main-Event Runs gezeigt, dass er absolut an die Spitze gehört und, was Anfangs kaum vorstellbar gewesen wäre, mittlerweile zur wichtigsten Konstante in der WWE herangewachsen ist. Dass er mit 40 immer noch Wahnsinnsleistungen im Ring abliefert, lässt seine Außergewöhnlichkeit noch deutlicher hervortreten. Sorry an JBL, aber Styles ist tatsächlich einfach nur ein Wrestling-Gott."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: coolserazwrote on 11.02.2018:[10.0] "One of the greatest wrestlers ever.  Amazing moves, has a healthy balance between athleticism and power moves, sells very well. He has also significantly upped his mic game and does well as a cocky heel and a confident babyface. Truly the champ that runs the (Smackdown Live) camp."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Oliver95xwrote on 07.02.2018:[10.0] "AJ Styles ist einer der besten die es jemals geben wird. Seine Matches machen einfach Spaß und er gibt immer alles. Steckte über die Jahre viele harte und spektakuläre Bumps ein, was ich sehr respektiere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jcb9wrote on 31.01.2018:[10.0] "What can be said about AJ Styles that hasn't already been said? He's the best wrestler in the world. He was always a fantastic worker, going back to his cup of coffee in the dying days of WCW, when he was tag teaming with Air Paris in the ill-fated Cruiserweight Tag Title tournament. But that's all he was. Over the years, he's developed into a complete package as a wrestler ? not just a worker but an excellent all-around WRESTLER. Great in the ring, very good on the mic, can work as a face, can work as a heel. Just fantastic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CHN325wrote on 31.01.2018:[10.0] "The best professional wrestler in the business today. His mic skills and size were the only things holding him back, but his mic skills have improved infinitely since he left TNA. The fact that a man of his size and build turned Vince McMahon into a fan should tell you all you need to know."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: mrwwewrote on 18.01.2018:[10.0] "The best wrestler in the world. He can do it all. His moveset is awsome, his mic skills are phenomenal and he is my favorite wrestler of all time alongside Kenny Omega."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Alex Maedawrote on 17.01.2018:[8.0] "Im Ring meist sehr gut bis großartig, zu seinen TNA-Zeiten habe ich wirklich gerne gesehen. Ihm mangelt es aber abseits davon an Charisma und Mic Skills, gerade wenn er einen Heel abgeben soll."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Dragon Fighterwrote on 31.12.2017:[10.0] "There is no doubt that AJ Styles is a world class wrestler. One of the best in ring workers of his generation. Excellent in ring work. He is top star in TNA, NJPW, various indy companies now in WWE. He killed it at any promotions he wrestled for. However, when it comes to the best in the world, it is hard for me to put him in that position because many wrestlers are as good as he is. Whatever, a 10 for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Makai Clubwrote on 26.12.2017:[9.0] "He was very good a few years ago, he has dropped in standards since joining WWE though.  He was no doubt the best in the world but has since been over took by many and I feel his fans just constantly overrate his matches, just because it's AJ Styles.  I enjoyed his TNA run greatly, even though he wasn't a constant main eventer, he should've been. His NJPW run is legendary and that's the run, I will always remember him fondly."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Adaskerrwrote on 21.12.2017:[10.0] "Living legend and a wrestling genius. WWE's biggest Ace, he can do it all. Well deserved perfect ten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: HHH Pedigreewrote on 23.11.2017:[10.0] "AJ is one of the greatest wrestlers alive. Incredible wrestling skills, charisma, promo... he has everything to be the new Shawn Michaels."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: benYowrote on 21.11.2017:[10.0] "AJ Styles spricht für sich. Er macht alles und Jeden im Ring besser. Man hat es gerade erst gesehen das selbst Brock Lesnar mit ihm zusammen wunderbar geworkt hat. Der Brock Lesnar, der sonst für seine eintönigen Matches kritisiert wird. AJ Styles hebt das Niveau in der WWE merklich nach oben, obwohl da noch viele gute Talente dabei sind. Ich hoffe inständig das er noch viele Zeit den Top-Spot bekommt und eine Story, die seiner würdig ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheRainmaker28wrote on 25.10.2017:[10.0] "Amazing bumper, seller, great psychology, facials and can build & carry a match like no one. Aside from that, he has proved his quality pretty much in every corner of the world. AJ is one of the all-time greats of this century and possibly in the discussion for the best american wrestler that has ever existed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "The Shawn Michaels of the new age, or the american Tanahashi, if you prefer. A one in a century talent, a master of pro-wrestling, one of the best ever without a doubt. He is at the same time a fine techincian, an incredible high-flyer, an in-ring psychologist and he even got better on the mic in recent years. He has been a thing everywhere he went, and I doubt anyone will ever be as relevant as he has been in so many important federation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: El Generico Apodowrote on 01.10.2017:[10.0] "Aj Styles is my favorite wrestler right now. He's not just a great worker, but a PHENOMENAL Superstar. His reign as WWE Champion was awesome and his feud against John Cena was the best storyline in recent WWE history. His style is a hybrid of Technical and Highflyer, wich gives very impressive matches against everyone. In less than 2 years he did became a true star in WWE, but give his work in NJPW, TNA and ROH, this is not suprisse. I'm waiting to see him face Nakamura on Wrestlemania in a rematch of his Wrestle Kingdom bout (which was pretty great). The Face That Runs the Place."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jcleaguewrote on 29.09.2017:[10.0] "AJ Styles is one of the best wrestlers on the planet today. Great look, unbelievable moveset, and many, many amazing matches on his resume"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Viktor Vaughnwrote on 30.08.2017:[10.0] "Einer der besten Wrestler unserer Zeit. Konnte er am Anfang seiner Karriere besonders durch seine Arbeit im Ring überzeugen, stimmt inzwischen einfach alles bei ihm. Wie es sich weltweit verhält kann ich nicht beurteilen, aber innerhalb des aktuellen WWE-Rosters gibt es derzeit niemand besseren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LincTheSinc22wrote on 28.08.2017:[10.0] "I cannot stress how truly amazing this man is in the ring. He's been my favorite since 2002. Only WWE Shop shirts I own are AJ Styles shirts. The man could get into the WWE HOF on his curent résumé. One of the all time greats in professional wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: rschmandt22wrote on 28.08.2017:[10.0] "I cannot say enough amazing things about AJ Styles. I have followed him for years. Seen him live on the indies, seen him live for WWE as well and he has never put on a bad match that I've seen. He's one of the best in the business, and one of the nicest, most polit guys outside the business as well because I've never heard a bad word said about him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ThotSlayerwrote on 16.08.2017:[7.0] "Great but Overrated as fuck... Best in the world? Maybe top 50 like Shawn Michaels in his day.  It has 50 fucking characters you retards stop showing me the "not accepted not enough characters" BS"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ChristianMB1wrote on 27.07.2017:[9.0] "Top-notch wrestling ability, especially when taking to the air. He doesn't have the predictibility of most workers, as I've been following his career since his days in ROH but still find myself wowed by some of his moves I never know he had the ability to pull off. His incredible athleticism means that he can work as a face or heel seamlessly. The thing that makes me hesitate from giving out a 10 is his mic work, though. in the indies as well as Japan it wasn't an issue because all the stories are expected to be told in the ring. IT did, however, come up as an issue in TNA and is really standing out in WWE. His original lines are mediocore at best and cringeworthy at worst, and the lines that I can tell are fed to him are delivered poorly.   Still, one of if not the greatest in-ring worker(s) of all time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: marmar2200wrote on 26.07.2017:[10.0] "AJ Styles ist im wahrsten Sinne der Bezeichnung "phänomenal". Vom Wrestlerischen her ist wahrscheinlich der Beste zurzeit in der WWE. Kaum gibt es ein mittelmäßiges, nie ein schlechtes Match von ihm und immer wieder sind die Matches packend. Selbst wenn er wie jüngst nicht im Main Event steht, dreht sich letztendlich trotzdem fast alles um seine Fehde. Inzwischen hat er in 1, 5 Jahren in der WWE schon den WWE Titel und zweimal den US Title gewonnen und ist weierhin eigentlich das Highlight bei Smackdown. Styles wird sicherlich noch einige Jahre auf diesem Niveu performen können und somit für eine krasse Qualitätssteigerung sorgen können. 10 Punkte sollte man nicht einfach so verteilen, aber hier kann man fast nicht anders."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rattlesnake3-16wrote on 11.07.2017:[10.0] "A huge draw everywhere he performed in his life, an always perfectly executed moveset and a good charisma : this is AJ Styles ! Even if he can not do all his stuff like in the past such as the spinal tap, he remains very talented and knows how to give credit to the titles (see his run as wwe champion ) and put other wrestlers over ( see his match against Shane o'mac at Wrestlemania). Really like him, and hope a match against The Cleaner in the future !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ParisTheSpiderwrote on 01.07.2017:[10.0] "Für mich ist AJ Styles zweifellos einer der besten Pro-Wrestler aller Zeiten! Mehr gibt es von mir nicht zu sagen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: metallicasmith05wrote on 29.06.2017:[10.0] "Absolutely awesome. I screamed my head off when he debuted. He made and impact in his first 4 months"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TooSweetPhilwrote on 24.06.2017:[10.0] "Er ist einfach der Beste den es gibt. Er ist zwar seit gut ein Paar Monaten nicht mehr mein Lieblings-Wrestler (Okada ist einfach auf einem anderen Level) doch trotzdem gibt es quasi niemanden, der AJ das Wasser reichen kann. Der Hype um ihn ist 100% gerechtfertigt. Im Ring unfassbar stark und kann mit JEDEM ein ordentliches Match haben. Move-Set, Mimik, Psychologie und und und kann er alles. Am Mic sehr gut und dazu noch eine Charisma Bombe. 10 von 10, weniger wäre untertrieben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: test85wrote on 23.06.2017:[10.0] "War einer der Gründe warum ich Tna zu verfolgen begann. Seine Matches waren meistens das Highlight. Auch im Ring gehört er noch zu den Besten auf diesen Planeten. Musste auch so einiges an Schwachsinn mitmachen nach der Ankunft Hogans bei TNA (Claire Story, Little Naitch Gimmick) Konnte aber dann in Japan wieder beweisen warum er zu den besten seiner Zunft gehört. Zudem momentan der beste Worker im WWE Roster. Zeigt eigentlich wenn er auf der Card ist, immer das MotN. Hoffentlich bleibt er noch einige Zeit im SD Roster."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Unknown warriorwrote on 30.05.2017:[10.0] "Who would the guy wrestling the Hurricane in 2001 would end up being so good. What else is there to say about the phenomenal one? Started following him around 2008 where his match with Kurt Angle made me an instant fan, went back to 2007 where he was still a heel alongside Christian Cage and he never failed to make me laugh with his childish personality and of course the famous triple threat with Christopher Danials and Samoa Joe still remains one of the top triple threat matches I've ever seen. Was sad to see him leave in 2013 but what was TNAs loss was NJPWs gain. Having great match after great match definitely proved that he wasn't just an overhyped indy darling and then as The Rock would say "Finally! " he would come to the WWE where he's already a former WWE Champion and already has a handful of great matches and above to his name with the likes of Roman Reigns, John Cena (all three of them) dean anbrose TLC, Cena and Bray Wyatt, Dolph Zigglar and even Shane Mchmon and heres a lil sentence on his singles PPV matches: His match with Chris Jericho at Wrestlemania 32 despite that being one of the top three matches of the PPV was his weakest match (Still a very good match but his other matches were better) easily the best wrestler on Smackdown and the entire company (Still patiently waiting for the AJ Styles vs Seth Rollins match)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: PartyPnyxwrote on 22.05.2017:[10.0] "Er ist und bleibt einesr der fünft größten Wrestler der Welt. Es gibt wenige, die mit ihm im Ring mithalten können, jedoch kann er aus jedem Gegner, wenn dieser nicht so talentiert ist, etwas herauskitzeln und immer gute Matches abliefern. Auch am Mic kann er total überzeugen und ich höre sehr gerne zu, was er zu sagen hat. Für mich persönlich mein liebster Wrestler, zumindest von den Aktiven."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Werbearwrote on 09.05.2017:[10.0] "Wenn man als Wrestler zeigen will was man alles kann dann sollte man gegen AJ Styles wresteln! Nicht nur das er eine gute Show abzieht, er lässt auch seine Gegner richtig gut aussehen. Seine Matches gegen Luke Harper und Shane McMahon waren die besten die ich bis jetzt von beiden gesehen hab!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LSEstrelawrote on 07.05.2017:[10.0] "Quite simply, the best wrestler in the world today. No one matches the athleticism, the in-ring psychology, the character work, the promo skills, the connection with the audience, and a genuine passion for the bussiness the AJ has."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Fessinhowrote on 28.04.2017:[10.0] "AJ Styles ist aktuell sicher der beste Wrestler in Roster der WWE. Im Ring technisch nahezu perfekt, seine Gegner profitieren enorm von seinem Können und die Matches sind in der Regel extrem hochwertig. Am Mic wirklich, wirklich klasse und über sein Charisma muss man kaum ein Wort verlieren. Insgesamt: aktuell klar der MVP von Smackdown und meiner Meinung auch der gesamten WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Klabauterwrote on 24.04.2017:[10.0] "[Bewertung vom 30. 05. 2016:] AJ Styles ist ein sehr guter Wrestler. Er liefert immer ab, am Mikrofon, im Ring , egal wo. Auch wenn mir sein bisheriger WWE Run eher mäßig gefällt und er meines Erachtens auch mal einen klaren Finisher braucht, mit dem er dann mal wirklich jemanden finisht ist er alles in allem einer der besten Wrestler des Rosters, der klare 9 Punkte verdient.  [Bewertung vom 24. 04. 2017:] Fast 1 Jahr später ist AJ Styles klar jmd. den ich mit 10 bewerten muss. Die Finisher-Problematik ist gelöst und AJ Styles hat sich zum MVP von SmackDown entwickelt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SteveTheBeastwrote on 21.04.2017:[10.0] "Meiner Meinung nach der beste Wrestler der WWE zu Zeit. Und auch die erste Neuverpflichtung seit der Verpflichtungswelle die es in den Main Event geschafft hat. Bis auf die Roman Reigns Fehde auch sehr gut eingesetzt. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: PrinceJrwrote on 15.04.2017:[10.0] "Wenn jemand Wrestling verkörpert, dann ganz klar AJ Styles. Meiner Meinung nach der Weltbeste seit vielen Jahren und endlich ist er auch in der WWE angekommen. Egal mit wem AJ im Ring steht, derjenige profitiert immens mit der Zusammenarbeit mit AJ. Es ist nicht verwunderlich, warum er das Vertrauen von jeder Promotion bekommt und als Topstar eingesetzt wird. "The Face that runs the Place", "The Phenomenal". Absolut verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ThatWrestlingGuywrote on 13.04.2017:[10.0] "AJ Styles is truly amongst the "best in the world" when it comes to pro wrestling. Never went to WWE until recently, and was by far one of the best that hadn't yet stepped foot inside a WWE ring (excluding that short stint he had before he joined NWA/TNA). A former IWGP, NWA, PWG, TNA, and WWE Champion - he's done it all. Travelled all over the world to make a name for himself, had incredible matches against top dogs like Kurt Angle, Nakamura, etc, and is still going strong today. Want proof that age is just a number? Look at AJ Styles. He truly is "Phenomenal" and will only get better as he ages. I definitely see him being a holder of the WWE title multiple times before he hangs his boots up."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: John Brandowrote on 12.04.2017:[10.0] "Ich bin wirklich von Fan von AJ Styles. Er ist ein Komplettpaket, natürlich sind seine In-Ring-Fähigkeiten herauszuheben, die zu den besten der Welt gehören. Er liefert großartige Matches ab und das trotz seines Alters von fast 40 Jahren.  Er ist völlig zurecht WWE-Champion und , auch wenn es noch ein bisschen früh ist, für mich der Superstar 2016 in der WWE.  Neufassung der Kritik: Schande über mich, dass ich ihm beim ersten Mal nicht die Höchstwertung gab. Jetzt tue ich es. Phänomenal!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Excellence of Executionwrote on 10.04.2017:[10.0] "Guter Mann und ein TNA Star der ersten Stunde. Seither außerdem in Japan erfolgreich gewesen und nun in der WWE als dekorierter Main Eventer unterwegs. Nun ist es amtlich: AJ Styles hat der Wrestling Welt eindeutig seinen Stempel aufgedrückt. Für jemanden, der solange im Business ist und einen agilen, explosiven Stil wie er an den Tag legt, ist er noch sehr gut in Schuss. Seine Athletik ist nach wie vor hervorragend. Und dass er diesen Sunny Boy Appeal abgelegt hat, der ihn bei TNA lange ausgemacht hat, war definitiv zu seinem besten. Bedenkt man, dass er mal als Rookie bei der dahinsiechenden WCW angefangen hat und schaut, was er seither alles erreichen konnte (zu Recht! ), kann man nur den Hut ziehen! Sieht so aus, als ob AJ Styles im Herbst seiner Karriere auf dem Zenit angekommen ist. Hoffentlich kann er noch ein paar Jahre die Aussicht genießen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SrHunterwrote on 09.04.2017:[10.0] "If there is one guy in the whole roster you can trust to make a good match, this guy is AJ Styles, the guy do an ***+ match with a door, he is the best in the WWE, and definitely in top 5 best wrestlers in the world right now, AJ can have a good match with everyone, even with Shane, who have some ankward punches and isn't a wrestler at all, he bust good matches regularly, and even in TV-shows ! .  Not the best mic skills, until he came to WWE and turned heel, his mic work lately is being fantastic, really top-notch. He is doing a great work in the E, and WWE already see him as a top player, which is GREAT, because his WWE carrer is being GREAT so far."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: hasanakbaba68wrote on 08.04.2017:[10.0] "The Face That Runs The Place ! Wer bei diesem Wrestler keine 10 Punkte Abgibt Soll sich Schämen Ist schon Mit Kenny Omega auf dem gleichem Level Dieser Typ Ist Nix Anderes als PHENOMENAL ! Wohl einer der besten Wrestler der welt wenn nicht der Beste"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NastyYaffawrote on 07.04.2017:[10.0] "There are times when I think that some of the hype & talk he gets aren't 100% earned, but honestly, he really is one of my all-time favorites & he truly is a part of the elite when it comes to pro wrestling. Excellent selling, amazing bumping, fantastic looking offense, great storyteller. Phenomenal, indeed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Blood Pumpwrote on 07.04.2017:[9.0] ""The Face that runs the place" has had a, pun intended' phenomenal run in WWE and NJPW. Before his jump to New Japan I kind of thought he was something of an overrated talent. Good in the ring but lacking of charisma. Sometime in New Japan Styles evolved. He became a much better worker, gained psychology and charisma and even learned how to use a mic! Its often said Styles is the Shawn Michaels of this era, and I kind of think that's a little unfair to AJ. Hes the AJ Styles of this era and has already had a HoF worthy run in the WWE that'll only grow with accolades in the years to come."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jtsilver101wrote on 06.04.2017:[9.0] "Styles has come into his own in WWE. The current WWE Champion, deserves this run. His mic skills have improved, he never misses a beat when in the ring, and has been the #1 most interesting character/superstar/wrestler of 2016. Taking the long road to WWE was the best thing AJ ever did, he will without a doubt go down in history as one of the greatest Wrestlers ever."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Original Copywrote on 04.04.2017:[10.0] "AJ Styles is without doubt the best wrestler of the world , he can do anything , he do high-flying , Technical , striking , and AJ has good matches against all . This Man is Just PHENOMENAL!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheWrestlingFanwrote on 12.03.2017:[10.0] "Simply the best modern wrestler in current era. He can work any kind of wrestling style, he has put so many instant classics. He has also been improving his promo skills, too, since being in Japan. He truly deserves to be a main event guy in any company he works for."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Changeling45wrote on 21.02.2017:[10.0] "I rank AJ Styles as the top competitor and worker of the past 10 years.  He proved time and time again in his early years that he has the ability to put on wrestling clinics and exhibit jawdropping athleticism, but what put him over the edge for me was his evolution into a fundamentally flawless worker after he adapted to the NJPW style and changed his approach due to his body having a lot of miles on it.  At this point he can basically work any type of match with any type of competitor, with the cherry on top being the fact that no one can make someone look better than AJ Styles does.  He's top notch at selling, never takes naps in the ring, portrays every encounter as a real competition and is good or great at basically every trait necessary to be a good competitor."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KASHwrote on 13.02.2017:[10.0] "Zeit für eine Neuformulierung meiner 10 Punkte Bewertung. Auch vor WWE war er schon einer der besten der Welt. Jetzt ist er schon mehr als 1 Jahr bei WWE und er überraschte mich immernoch: Er ist tatsächlich noch besser als je erwartet. Er ist ein Chamäleon des Wrestlings. Egal in welcher Liga, er passt sich an die Umgebung und den dort herrschenden Stil perfekt an und kann mit jedem ein gutes Match zaubern. Dazu hat er sich über die Jahre unheimlich in seinem Auftreten und seiner Ausdrucksweise verbessert. Der perfekte Sports Entertainer, egal ob Face oder Heel, Gimmick Match oder Irrwitzige Stipulation, Highflying oder Puroreso. AJ kann alle Disziplin. Alles andere als 10 wäre falsch. Zudem hat ihn WWE scheinbar als neuen Shawn Michaels für sich entdeckt. Alles was er anfasst wird zu gold und er scheint jetzt schon diesen besonderen Main Eventer Status erreicht zu haben, wie ihn Michaels damals inne hatte. Keine Niederlage schadet ihm, weil er auf unfassbar hohem Niveau stets abliefert. Der beste aktive Sports Entertainer der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Chekerwrote on 12.02.2017:[9.0] "I've been watching AJ Styles for a few years now and I knew he was a top 10 wrestler in the world the moment I saw him, even back then, but he honestly got better after that. I think he peaked in NJPW - great wrestler, great look, great charisma, acceptable promo. He's my other favourite, tied with Nakamura, and the reason Styles doesn't get a 10 is the same reason I didn't give Nakamura a 10 - WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Argylexwrote on 10.02.2017:[10.0] "Amazing overall wrestler and character, in the same category as Michaels, Jericho, Punk etc.  Let's just hope that he ages well in the following years"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rllywrote on 07.02.2017:[9.0] "Mic-Skills: Manchmal ist er am Mic sogar sehr gut. Aber manchmal ist es einfach richtig lächerlich. Er leistet am Mic insgesamt gute Leistung. Ich finde es auch nett wie herablassend er manche Sachen sagt. 8/10 Ring-Skills: Muss man nicht viel sagen. Sein Moveset ist an Vielfalt nicht zu überbieten und er ist einer der talentiertesten momentan. 10/10 Gimmick: Finde ich eigentlich ziemlich gut, jedoch fand ich wurde Aj Styles in TNA besser dargestellt wenn es um den Punkt Gimmick geht. 9/10  =9"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: 450Splashwrote on 04.02.2017:[10.0] "The Total Package, he is incredible. He is in WWE for now 1 year and it seems like he has always been here, he has done awesome matches and he is actually one of the best wrestler in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Real Raterwrote on 21.01.2017:[8.0] "Ring: Im Ring sehr stark aber auch kein Über Performer. 9/10 (50%) Punkte   Promos/Schauspieltalent:Leider nir durschnitt. 6/10 (25%)  Charisma/Statur/Gimmick:Auch hier nur durschnittlich. 6/10 (25%)  Sind dann insgesamt 7, 5 Punkte für The Phenomenal.   = 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JordanACEwrote on 19.01.2017:[10.0] "AJ is every bit as good if not better than Shawn Michaels. No one can touch him in the ring, very solid on the mic, the nickname "The Phenomenal" couldn't be more accurate."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MarkyMark0wrote on 16.01.2017:[10.0] "AJ Styles is a wrestler that when mentioned gets the word "overrated" thrown into the conversation every once in a while and do I believe that he's overrated, no, not one bit, and he proves it with his in ring work. AJ Styles is one of the greatest wrestlers of all time and forever will be. Since he started about 17 years ago he was great in the ring and now at the age of 39 he's still performing just as good, maybe even better. You can argue about his mic work which is fine, but what you can't argue over is how great he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Speeblewrote on 10.01.2017:[6.0] "Aside from his WK 10 match against Nakamura, my only exposure to Styles is through his WWE work, and I have to say I've not been impressed so far. I can't think of a single match he's had in WWE that sticks out to me, the closest I can think is his MITB match with Cena, but that was only because I enjoyed the story of Styles out-wrestling Cena. It was hardly edge-of-your seat material. Overall, I find him to be a consistent, solid but completely unmemorable wrestler that I genuinely believe is one of the most overrated wrestlers I have ever watched."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: PaulY2Jwrote on 08.01.2017:[10.0] "He is one of the best wrestlers of our generation, delivers great matches with regularity, maybe not the best 'Big match' wrestler today like Okada/Omega. Puts great psychology with his ability in-ring and has a great moveset that allow him to not use the same moves match after match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: styles82wrote on 08.01.2017:[10.0] "Er ist für mich vielleicht der beste Wrestler der Welt aber auf jeden Fall der beste in der WWE. Er ist von der Technik unglaublich stark ist schnell und kann glaube ich mit einem Haufen Mist ein gutes Match abliefern. In nicht mal einem Jahr WWE Champ geworden und für mich der Wrestler 2016 . Er wird auch mit dem Mic Immer besser. Hoffe er bleibt noch lange bei WWE und holt noch oft den WWE Gürtel"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: rjsbx11wrote on 06.01.2017:[10.0] "Once lauded as the "best wrestler to never have stepped in the WWE. " A. J. Styles was the face of TNA, through all of its faces from an ultra athletic risk taker to a polished veteran who became a great singles and tag wrestler before leaving the company, because he was taken for granted. The indie and NJPW run that followed helped establish A. J. Styles as a generational great. Styles' clashes with Suzuki, Okada and Naka backed up this claim.  Styles by leaving TNA, seemingly became more intense, free and proved his worth company to company. When Styles arrived in WWE, many felt he would just become a midcard fodder, as some result for anti-TNA resentment from Vince and co. However, cream always rises to the top. Styles is bar none a top 3 wrestler in the world, his athleticism, mat skills, aerial ability, selling, bumping and psychology are elite, and he has really proved critics wrong by becoming entertaining on the mic. He became WWE's best hand in 2016, and 2017 should be no different. Will Styles wind up being the GOAT, time will tell. But the fact remains, he is simply phenomenal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Joeytheboywrote on 06.01.2017:[10.0] "Has carried wwe for the past year and has been consistently been putting on great performances since coming to the company. So glad he is champion right now because there is no one better on smackdown or in the company."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: molemaster43wrote on 05.01.2017:[10.0] "One of the greatest wrestlers of all time continues to build his legacy through consistently great performances in his WWE run, and dominates on the microphone and in the ring each week. My favorite wrestler currently working probably."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Spartak87wrote on 01.01.2017:[10.0] "Amazing wrestler. He seems to get better with age. One of the best ever. There is no doubt. TNA, ROH, NJPW, WWE, he has been a champion everywhere he goes. Top 5 all time in my opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: WWE Fan 16wrote on 26.12.2016:[8.0] "Eigentlich gibt es nicht viel, was man gegen ihn einwenden könnte. Technisch auf jeden Fall einer der Besten der Welt. Als Publikumsliebling kam er gut an, als Heel gefällt er mir persönlich nicht so sehr, da er dann - gerade bei WWE - doch eher bejubelt, denn ausgebuht wird. Auch sein Charisma lässt ein wenig zu wünschen übrig, wenn er sich für Siege gegen einen James Ellsworth vom Publikum feiern lässt, obwohl er es eigentlich beleidigen sollte. Allerdings habe ich die Hoffnung, ihn schon bald wieder als Face zu sehen. Insgesamt komme ich daher auf folgende Bewertung: 10/10 Technik 07/10 Mic-Work 07/10 Charisma 09/10 Face-Work 07/10 Heel-Work = 8, 00 => 8 Punkte (gut)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: marexcelwrote on 23.12.2016:[10.0] "DER Star bei TNA, Star in den Indys, Star in Japan und nun ist sein erstes Jahr in der WWE bald herum. Mega Pop beim Debüt und es folgte ein sichtlich nervöser Beginn mit durchwachsenen Stories und einer Niederlage bei Mania. Er ist im Ring so eindrucksvoll, dass er wie Owens & Co in bester Bullet Club-Manier als Heel gefeiert wird, während seine Face-Gegner einen schweren Stand haben. Wurde in seinem ersten Jahr WWE World Champ und durfte in herausragenden Matches Cena besiegen. Ich hätte mir gewünscht, dass die The Club-Geschichte zum Erfolg beiträgt, aber letztendlich war sie eher Hemmschuh als Sprungbrett. Seine Promos sitzen, im Ring ist er wohl DER Performer zurzeit. AJ Styles hat (fast) alles und kann (fast) alles. Look, In-Ring-Skills und Charisma im 9er-10er-Bereich, da fallen seine etwas überhasteten Mic-Skills nicht ins Gewicht. Fand ihn bei ROH und TNA gut, seit seiner WWE-Ära bin ich Fan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: hrikygwrote on 23.12.2016:[10.0] "No doubt he is the best overall wrestler in the world at the moment. His run in NJPW, TNA, ROH and now finally in WWE is great. No more words... 10 outta 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheMan89wrote on 22.12.2016:[10.0] "AJ Styles is the best in ring talent in the WWE today and wrestling in general. Every time I see him in the ring he always is the best match on the card it seems like. The WWE has used him well making him the WWE Champion which he deserves after so many hard earned years on the independent circuit, Japan, and TNA. He was the face of TNA but TNA did not use him all the way which confuses me to this day. He can cut really good promos as a heel but his wrestling ability is what it is all about. He is the Shawn Michaels of this generation in my opinion because of his great in ring psychology and talent. All of his programs so far in the WWE have been really good to say the least - Jericho, Reigns, Cena, and Ambrose. I wish he would of came to the WWE sooner but the WWE may have not used him properly if he did not work around the world so many years to hone his craft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Jobbswrote on 07.12.2016:[10.0] "I still consider this guy to be one of my favorites but his run from May to now has been quite lackluster as his matches with Cena just disappointed me and the TLC match with Ambrose was meh. Had a few classics with Roman but otherwise the WWE run for Styles has been mostly entertaining though I greatly loved his work outside of WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: arrancarwrote on 06.12.2016:[8.0] "AJ Styles is a great wrestler. His style is very unique and he's definitely been very innovative in the wrestling scene since the early 2000s. He's wrestled all over the world and proven himself to be a fantastic draw. He's done a great job playing both heel and face characters while also remaining incredibly over under both alignments. The thing that has held AJ back for me from considering him one of the greatest in the world is that he has had very few matches that I've seen that have been what I consider beyond great. He's had an extraordinary number of great matches, but I haven't found him to have very many matches that go beyond my expectations and really grab my attention as matches that I will remember for many years to come. From what I've seen of his early ROH days he perhaps had his best matches back then. His NJPW run from 2014/2015 was pretty great and arguably his best performances according to popular opinion, but none of the matches he's had from then (that I've seen) were ones that really made me think "this guy is one of the best wrestlers in the world". His WWE run is fun so far, and with better characterisation, but the match quality hasn't been nearly as good as the NJPW stuff. Occasionally his pacing feels a bit off, and his chemistry with many wrestlers seems to suffer every now and then, which is maybe why his performances don't grab me so strongly. AJ performs all the wrestling basics perfectly. He just misses a few key proponents to being one of the world's best."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SamuelElJaxonwrote on 04.12.2016:[10.0] "One of the best wrestlers in the world. You don't just hand a guy the WWE championship after nine months. His current gimmick is a little sad because it feels like he's playing second fiddle to Kevin Owens, but he's good in any situation you put him in."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: indyreviewswrote on 03.12.2016:[10.0] "AJ Styles in one of the best wrestlers in the world right now, and he is quite possibly the greatest wrestler of all time. His in-ring work is phenomenal. I personally have never been endeared to his mic work as much as I have been to someone like Kevin Steen, but don't get me wrong - he's ten times better on the mic than the majority of wrestlers right now. However, what really sets him apart is his natural charisma - there's something about AJ Styles that makes you want to root for him even if you know he's supposed to be drawing major heat. His finishing move is interesting to watch and is always a joy to watch. He plays the arrogant heel extremely well, but is versatile to pull off astounding face work with just as much ease. AJ Styles is one of the greatest wrestlers right now, and his current run in WWE has been amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MAGICIANwrote on 26.11.2016:[10.0] "Ich fasse es einfach mal kurz, er ist 2016 nun ohne jeglichen Zweifel der beste Wrestler der Welt. Der HBK unserer Generation. Jeder der mit ihm geworkt hat, wurde besser und sah grandios aus. Eine sehr seltene Fähigkeit. In 2 Jahren wird er im Olymp mit Misawa, Kobashi, HBK & Tanahashi sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AtticusFinchwrote on 25.11.2016:[10.0] "There's no doubt in my mind that AJ Styles is the very best in the WWE (and maybe even the world). He's nearly 40 and still pulling off insane bumps. A guy who helped put a lot of indie companies on the map and potentially helped make New Japan a bit more appealing to Westerners/non-fans who weren't familiar with the product. TNA really dropped the ball with him and it felt like just when they seemed to understand the greatness in front of them, they let it slip. AJ took a risk on himself and it paid off. His face work can be hit or miss at times, but when it's time to play the arrogant heel, he's excellent. It even feels like his recent heel work in the WWE has been his best. Never thought I'd see AJ Styles as a WWE Champion, but the dude deserves it and has proven his worth. He can make anyone look like a star while still looking like one himself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: mdbnasewrote on 20.11.2016:[9.0] "Einer der großartigsten und unterhaltsamsten Indy-Wrestler. Super Techniker und immer für 'ne Überraschung gut! Hart im nehmen und ein prima Worker! 10 pts. - ach ja, seine botches bringen mich auch immer wieder zum schmunzeln... gehört bei dem Stil einfach dazu!    Anmerkung 2016: Nun ist er also in der WWE angekommen. Im Ring immer noch klasse & die Botches der Anfangszeit (v. a. bei TNA) sind fast vergessen. Am Mic hat er dafür etwas nachgelassen, wie ich finde. Seine Matches sind aber weiterhin meist überragend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Segri98wrote on 12.11.2016:[10.0] "Zu AJ Styles muss man nicht viel sagen. Technisch beinahe Perfekt, liefert mit jedem Gegner top Matches ab und ist schlicht der beste Wrestler der Welt. Wenn irgendjemand 10 Punkte verdient hat ist es AJ Styles"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kasper Faulwrote on 08.11.2016:[10.0] "Ganz klar mein Lieblingswrestler der Neuzeit. Unfassbar auch wie er sich außerhalb des Rings gemacht hat.  Kann mit jedem Wrestler ein MOTYC hinlegen. Unglaubliches Gesamtpaket"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: gmstyleswrote on 02.11.2016:[10.0] "A living legend. This guy has been the face of TNA for 8 years, he has been main eventing NJPW for 2 years and ROH, he signed for WWE in January 2016 and in 9 months he became WWE Champion. 9 months. This guy was signed by WWE and they thought he should have been a midcarder; well AJ proved everybody wrong again and he established as a main eventer even in a tough place like WWE. He is probably the only guy i would like to see beating the CM Punk record as WWE Champ (434 days)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Justtwrote on 01.11.2016:[10.0] "The best wrestler in the world right now, with no doubt. He is an incredible wrestler and a great person. I love his run in Japan as the member of the Bullet Club and he had a lot of good matches there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Squared Circlewrote on 20.10.2016:[5.0] "Career minor leaguer.  Dreadfully over pushed.  Good on the mic.  Has a decent move set.  Way undersized to be remotely believable.  Works his tail off to perform.  Would likely receive a CM Punk level beat down in a real fight."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheChinThatGotTheWinwrote on 19.10.2016:[10.0] "AJ Styles is phenomenal! He's accomplished everything there's to accomplish in wrestling, he's won championships in every company all over the world and now he's the WWE champ. Great in the ring, can adapt to any wrestling style and good on the mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "Schon zu TNA-Zeiten einfach überragend. Sobald AJ den Ring betritt weiß man einfach jedes Mal, dass gleich etwas geschehen wird. Selbst im "soften" WWE-Style immer wieder atemberaubend. Ich hoffe, dass er uns noch lange erhalten bleibt.   PS. Am Mic als Heel deutlich unterhaltsamer als als Face."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Snedgewrote on 16.10.2016:[10.0] "Ja, das ist in der Tat einfach nur phänomenal, wie ein 40-jähriger doch sogar beim Marktführer die Nummer 1 ist! Und dass obwohl Vince McMahon natürlich wie immer versucht hat, den TNA-Guy unten zu halten, indem er sein Momentum gleich erstmal mit einem völlig verfrühten Heel-Turn (trotz rekordverdächtigen Merchandise-Sells und einem grottigen Theme) und einer Wrestlemania-Niederlage gegen den noch älteren oftmals nur teilzeit-wrestlenden Jericho zu stoppen. Irgendwie hat sich Qualität dann doch durchgesetzt (zumindest noch, ich ahne da irgendwie noch Ungutes von Vince, um den "little twerp" abzusägen ... ). Er war in allen heutigen Top-Ligen ganz oben. Sein Moveset ist awesome. Trotz fast 100 kg kann er mit 70-80 kg leichten 20-jährigen Highflyern mithalten. Da kann man trotz ausbaufähigem Mic-Work einfach nur 10 Punkte geben! Wer mir heutzutage jemand Beeindruckenderen zeigen kann, soll das bitte tun. Aber ich wüsste keinen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheOneWhoKnockswrote on 11.10.2016:[10.0] "With his current run in WWE, which has surpassed everyone's expectations and where he has finally developed some great microphone skills, something he was always lacking in, and where he has had some wonderful matches with Roman Reigns, John Cena and Dean Ambrose, wrestlers who, in all honesty, don't have half the talent he does, AJ has finally proved to all the doubters that he is indeed one of the greatest of all time, and the greatest performer in American wrestling today. Even if he hadn't come to WWE, he would have been remembered for his astonishing run in NJPW from 2014-16, finally showing just how much talent TNA had surpressed (despite always SAYING he was the face of their company, they never fully got behind him), putting on several instant classics with the likes of Minoru Suzuki, Hiroshi Tanahashi, Kota Ibushi, Kazuchika Okada and Shinsuke Nakamura, and if not that, he would have been remembered as the best and most undervalued performer TNA had, remembered half for all the awful bullshit they put him through such as making him a comedy sidekick to Christian Cage, Ric Flair Jr and a 1997-97 Sting ripoff and putting him in the infamous Claire Lynch storyline but also for never phoning it in and producing quality match after quality match with his amazing high flying and technical skills across the years, in particular his bouts with Kurt Angle, Samoa Joe and Christopher Daniels. AJ is not only "phenomenal", he's one of the greatest of all time and the greatest in American wrestling today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Luv all wrestlingwrote on 09.10.2016:[10.0] "AJ Styles is a legend, he has had a long career as a main eventer in TNA, ROH, NJPW and the indies, and is now tearing it up in WWE as the champ that runs the camp."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JimSRwrote on 02.10.2016:[10.0] "One of the best wrestlers ever lived. AJ Styles is one of the wrestlers that will never be forgotten. His matches with Kurt Angle, Kazuchica Okada, Chistopher Daniels, Samoa Joe and CM Punk were great. What an amazing wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Zeocrymerwrote on 30.09.2016:[10.0] "It would not surprise me if in 10 years, AJ Styles (along with Bryan Danielson) will be seen as the standard bearers for western wrestling. One could make the argument that as of his WWE Heavyweight championship win that AJ is the most accomplished western wrestler of the 21st century; the fact that his accolades include main titles in NWA, TNA, NJPW, WWE and Ring of Honor (though admittedly it was a second primary title that was absorbed into the main) adds credence to this. But beyond the accolades, AJ Styles is a tramendous in ring worker, working everything from brawling, to grappling, to high flying. In many of his interviews, Styles puts emphasis on the space in between the moves, the small flourishes that can turn a good match into a great match; and AJ has a lot of great matches under his belt. I tried to go this entire review without mentioning the word, but honestly, AJ Styles has done more than enough to truly own up to the word "Phenomenal"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Buu2020wrote on 30.09.2016:[10.0] "One of the greatest of all time! Has one countless championships across TNA, WWE And NJPW for a reason. Consistently puts on 5 star matches. Some of his best include his matches against Shinsuke at WK10, Cena at SS, Osprey at HS, the list goes on and on.  He truly is this generations Shawn Micheals"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: umarthegreat15wrote on 22.09.2016:[10.0] "He is the absolute best at the moment, in the world for me. He is killing it. Every match of his, is great. And the character he is rolling with on SDLive nowadays is so good. Just my favorite rn, period. I mean, recently at Backlash, he gave Ambrose probably the best match of his career and easily the best of the year. He BEAT John Cena.. twice. He is THE WWE Champion. P1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NYC weak stylewrote on 20.09.2016:[10.0] "Arguably the greatest pro wrestler over the past 10 years. Earlier in his career he was the most innovative and jaw dropping high flyer in the US. Nearing 40 years of age, hes slowed down a little, but now he incorporates more technical & brawling elements along with the occasional high flying move. Hes finally getting the mainstream exposure that he deserves and I couldn't be more proud of him, although I do feel bad for the younger WWE fans who have never watched this guy's work previous to WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Professorwrote on 19.09.2016:[10.0] "AJ Styles, lange als farbloses, wenngleich technisch hervorragendes TNA Eigengewächs belächelt, befindet sich momentan sicherlich auf dem Höhepunkt seiner Karriere. Ein deutlich verbessertes Micwork und Charisma hat er sich seit seinem Abgang von TNA zugelegt und ganz zu Recht steht er im Moment an der Spitze des Smackdown Rosters. 2015 bei NJPW schon meiner Meinung nach der kompletteste Wrestler der Welt im Moment, 2016 bei WWE mindestens genau so gut. Ich wünsche ihm noch eine sehr lange, erfolgreiche und verletzungsfreie Karriere. Und uns Fans noch viele gute Matches mit ihm."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Titansrevengerwrote on 18.09.2016:[8.0] "I agree with most that AJ is a great wrestler. He has defied the odds and worked hard and has been successful in three major promotions. He can get over as a heel or face and puts on ... well phenomenal matches. What else is there to say?"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Y2Mikewrote on 15.09.2016:[10.0] "The Phenomenal AJ Styles ist im Ring absolut genial. Jedoch fehlt ihm das gewisse Etwas, um zum absoluten Superstar zu werden. Mit Ric Flair an seiner Seite wirkt er auch charismatischer und meiner Meinung nach macht er sich seit seinem Heelturn auch besser am Mic.  Update 15. 09. 2016: THE FACE THAT RUNS THE PLACE - 10 Punkte für den zurzeit besten Wrestler der Welt. Die Zeit in Japan hat ihm mehr als gut getan. Nun hat er den IT-Factor, den ich damals bei ihm noch vermisst hatte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Nigglesojanicwrote on 13.09.2016:[10.0] "Ich hatte bis zum Royal Rumble kein Match von ihm gesehen, da ich mich ehrlich gesagt nicht für Wrestling außerhalb der WWE interessiere, aber das was er seitdem abgeliefert hat ist Gold wert. Durfte am Mikro noch nicht so richtig ran, aber das macht ja auch nichts, da er im Ring PHENOMENAL ist. Freue mich schon auf zukünftige Matches und Fehden mit oder gegen seine ehemaligen Kumpanen und andere. Seinen Haarschnitt finde ich allerdings komisch. :D :D Edit 23. 05. 2016: Rauf auf 10 Punkte. Wahnsinn, was er in seinen 2 Matches gegen Reigns gezeigt hat. Nach kurzer Zeit schon einer meiner absoluten Lieblingswrestler. Hätte den Gürtel definitiv verdient gehabt. Edit 13. 05. 2016: als Heel saustark und endlich Champion. WAHNSINN!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Brainbreakerwrote on 12.09.2016:[10.0] "(1/2016) Was will man über Styles noch sagen, was noch nicht gesagt wurde? Er hat bei TNA die XDivision groß gemacht, dort für dutzende Match- und Fehdenklassiker gesorgt, mit Leuten wie Angle, Abyss, Daniels oder Joe. Er hat sein Gimmick mehrfach mit unterschiedlichem Erfolg angepasst. In dieser Hinsicht konnte er aber vor allem ab 2014 in NJPW als Bullet Clubber herausstechen. Matches gegen die Maineventer im Puroresu-Ring wurden mindestens geil und oft episch. Inzwischen ist er so weit geformt, dass ich keinerlei Zweifel hege, dass ein absehbarer Run bei WWE im Mainevent münden muss. EDIT (9/2016): Nicht einmal ein 3/4 Jahr später ist Styles nicht nur im ME angekommen, sondern auch der dominierende Heel in der WWE. Er ist cocky und expressiv im Ring und Mic wie ein DX-HBK zu seiner besten Zeit, wird aber gleichzeitig dominant dargestellt, was seine Glaubwürdigkeit durch die Decke drückt. Truly the face that runs the place."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MusSanwrote on 12.09.2016:[10.0] "Ein guter Worker. Bei TNA hielt ich nicht von ihm, aber bei NJPW war er einfach grandios. Endlich ist er WWE Champion, nachdem Booking am Anfang, hatte ich (fast) jegliche Hoffnung verloren. Er ist verdient WWE Champion. Ich verstehe nicht, wieso ihn die WWE nicht früher verplichtete."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Axel Cagewrote on 12.09.2016:[10.0] "What can I say that hasn't been said already, AJ Styles isn't just phenomenal, he IS the definition of phenomenal. I've seen him all the way back to 2009, and I've been entertained all the way through. He's soaring as a heel right now, but I prefer him as a face, he's just to talented and likeable to be hated, he's one of the nicest guys you'll see in your life. For winning the biggest title in all of the promotions he's been in, and just winning titles period, for constantly putting on MOTY candidates every year, it's safe to say that AJ Styles is the best wrestler in the world right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ApexOfEvolutionwrote on 10.09.2016:[10.0] "Der beste tna-Wrestler aller Zeiten. Okay, das klingt jetzt erstmal nicht wie ein Kompliment, ist aber so gemeint. Man hatte auch nie die Sorge als er zu NJPW ging, dass er da irgendwie überfordert sein könnte und seine Matches gegen Tanahashi und Okada haben das natürlich auch bestätigt. Nun ist er bei der WWE und wird dort zu meiner Überraschung richtig gut eingesetzt. Seine InRing-Skills und seine Ausstrahlung sind klare 10 Punkte wert und auch wnn ich für das MicWork nur 9 Punkte geben kann, liegt das Gesamtergebnis bei klaren 10 Punkten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Phenomenal 1551wrote on 09.09.2016:[10.0] "AJ Styles, mit der Grund, warum ich derzeit noch WWE verfolge. Habe ihn 2005 das erste mal in der X-Division gesehen und immer auf den Tag gewartet, dass er zur WWE kommt. Hat seinen Charakter am Ende seiner TNA-Zeit und bei New Japan noch einmal weiter entwickelt. Im Ring meiner Meinung nach mit der beste der Welt, auch wenn sein mittlerweile "fortgeschrittenes" Alter und evtl auch die WWE ihn nicht mehr alles zeigen lassen. Dennoch bleibt er, egal ob als Heel oder Face, phenomenal!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SpursFanwrote on 04.09.2016:[10.0] "He's not a wrestler, he's THE wrestler. Amazing performer, he constantly developed his skills and capabilities during his career and now I think there's nobody like him in any part of the world. Simply perfect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KO Maniacwrote on 23.08.2016:[9.0] "AJ.. Eins meiner lieblinge. Im Ring ist er der beste. also 10 Punkte. Am Mic nicht so gut, 8 Punkte. Charisma besteht, 9 Punkte. So kommt er glatt auf 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: croatiantwat1950wrote on 22.08.2016:[10.0] "I love AJ. Probably a guy worthy of Top 3 wrestlers in 21st century list. As sloppy as he can be on the mic, he sure backs it up as a heel. His feuds with Y2J and Cena have been great and it's just the beginning. Hopefully he will win the WWE title by Royal Rumble because he is by far the best all-round guy on Smackdown."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Doshin92wrote on 14.08.2016:[10.0] "Aj Styles ist für mich und vielen anderen der zur Zeit beste InRing Wrestler der Welt. Er überzeugte bei jeder Liga für die er angetreten ist von ROH oder TNA bis hin zu NJPW und jetzt WWE. Ein Wrestler der im Stande ist mit jeden anderen Performer ein gutes Match zu liefern. Ich freue mich schon auf folgende WWE Rivalitäten und hoffe er wird dort auch weiterhin gewürdigt und in den richtigen Card Regionen eingesetzt. Seine Catchphrase "I Am Phenomenal" ist nicht nur ein Spruch sonder auch eine Tatsache die AJ mehr als einmal bewiesen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DustinGrimes1995wrote on 08.08.2016:[10.0] "AJ Styles is the very best wrestler in the world today. Watched him since the early days of TNA, Japan, and now finally WWE. Love the Styles-Cena feud."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: kochiwrote on 06.08.2016:[10.0] "The best wrestler in the world today. In the 2000's he was the best high flyer in the world and since then he's slowed his match pace down and evolved into a more complete wrestler. His psychology is absolutely amazing and he's got a charisma that hooks you immediately. This guy deserves a WWE title run and should go down as one of the best wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NHJ2190wrote on 04.08.2016:[7.0] "Im Ring wirklich einer der besten der Welt und das auch auf alle Zeiten. Als Face guck ich ihn mir ebenfalls sehr gerne an. Damit wäre er ohne weiteres bei 9 Punkten gelandet. Was mich allerdings extrem stört ist AJ Styles als Heel. Er ist mMn so unfassbar unglaubwürdig als Heel und hat dann noch seine 2 Mann Security dabei, die mich an die Security von Kurt Angle damals erinnert in Form von Luther Reigns und Mark Jindrak... einfach nur schrecklich. Er hat seinen Skills zu verdanken dass ich ihm momentan noch 7 Punkte gebe, ansonsten wären es auch gut und gerne 5 geworden. UPDATE: Ohne seine beiden Wachmänner ist er als Heel noch deutlich schwächer."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GeekLogicwrote on 25.07.2016:[9.0] "Here is a guy I wish more people knew about 14 years ago. His matches in NJPW and ROH are legendary and still set the mark for matches to come. While I didn't hate him in the Bullet Club he never won me over the way Devitt had. While I have never been a fan of TNA, I did tune in to watch his matches. Eventually I was watching just to see AJ. Once he moved to ROH and NJPW I followed him. He literally introduced me into an entire world of Wresting I knew nothing about.   He is also incredibly nice to his fans and children."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cavaniwrote on 19.07.2016:[10.0] "Es würde zu lang dauern, all seine Verdienste aufzuzählen. Bei TNA überzeugte er als grandioser Worker, der in manchen Stables auch außerhalb der reinen In-Ring-Arbeit gute Leistungen zeigte. Zum Ende seines TNA-Runs sowie als Anführer des Bullet Club entwickelte seinen Charakter weiter. Er funktionierte als Face zu Beginn seiner Zeit in der WWE. Als Heel ist er im Moment aber göttlich. Zusammen mit Anderson und Gallows reißt er Witze, über die nur sie lachen. Genau wie es bei Heels sein sollte. Sie ergänzen sich in ihre Blödeleien gut und gehen dann aber auch stiff gegen Cena u. a. vor. Im Ring ist Styles in meinen Augen aktuell der beste Aktive in der WWE und auch weltweit unter den Top5."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Damion83wrote on 17.07.2016:[10.0] "AJ ist meines Erachtens nach einer der besten. Super Ausstrahlung, perfekt für's Gimmick. Gut am Mic, auch wenn da noch Luft nach oben ist. Und im Ring phänomenal... Kann auch mit eher "schwächeren" Performern gute Matches zeigen. Für mich derzeit die klare Nummer 1 der WWE.  Edit 16. 07. 2016: Das Booking für ihn ist leider unter allem. Muss sich immer wieder fast schon albern schwach darstellen, erst gegen Kingston und dann gegen Amore... Echt traurig wie die WWE ihn derzeit mit seiner "Security" darstellt. Dennoch bleibt die Wertung bei 10, schließlich hapert es ja nicht bei ihm..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CrushBanoncawrote on 15.07.2016:[10.0] "AJ Styles will go down as one of the greatest wrestlers of all time. He was already the greatest high flyer in the world throughout the early to mid 2000's, and always remained one of TNA's mos popular stars despite constant misuse and bad booking. And in his run in New Japan he evolved into a brilliant technical wrestler and showed himself to truly be the best wrestler on the planet as of now with his phenomenal (no pun intended) matches with guys like Tanahashi, Okada, Anderson, Nakamura, Naito, Ibushi and so on, and was outstanding in his role as NJPW's top heel. His recent run with WWE has also been excellent so far, working great programs with Chris Jericho, Roman Reigns and John Cena. AJ truly is the phenomenal one, and the best in the world today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ECW444lifewrote on 14.07.2016:[10.0] "aj styles is great now since he has turned heel he is the best in the world with his in ring ability he mic skills and the charisma he has he is the best point blank"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ThePhenomenal1wrote on 05.07.2016:[7.0] "Bei TNA und New Japan Pro Wrestling war er Weltklasse. Er hat so gute Matches abgeliefert und so viele verschiedene Moves gezeigt. Als er zur WWE kam dachte ich, dass es für ihn dort genau so laufen wird. Aber was jetzt aus ihm geworden ist ist traurig. Die Anfangsfehde gegen Jericho fand ich noch richtig gut auch das AJ bei WrestleMania gegen Jericho verloren hat hat mich nicht wirklich gestört. Aber dann kamen die Titelmatches gegen Roman Reigns. 2 Matches 2 Niederlagen. wie kann die WWE so dumm sein und AJ Styles gegen Roman Reigns 2 mal verlieren lassen? Das ist einfach traurig auch. Wie die WWE Gallows und Anderson einsetzt ist ebenfalls sehr sehr armselig. Die müssen die ganze Zeit bei ihm sein und ihn jetzt vor John Cena beschützen. Wirklich WWE? Vor John Cena? Auch das er das Match gegen Cena nur mit Hilfe gewonnen ist ist einfach nur dumm. Er hat Matches gegen Stars der WWE wir Kevin Owens und Seth Rollins verdient, genau so wie in Japan gegen Nakamura und Okada. Sein moveset in der WWE ist ebenfalls sehr beschränkt was sehr sehr schade ist. Deshalb gibt es nur 7 Punkte obwohl er eigentlich 10 verdient hat."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Randomuser12345wrote on 03.07.2016:[9.0] "He's just so fucking good. AJ Styles established himself as the greatest wrestler in the world today following an immense 2015; a year in which he seemingly could do no wrong. MOTY candidates left right and centre. You'd think at the age of 39 he might have slowed down on the crazy bumps he took back in his rise to TNA stardom but nope, he damn near killed himself in a world class performance against Roman at extreme rules 2016. He is pretty much incapable of having a bad match at this stage, you'll always see something clever from him. A world class wrestler who deserves every bit of success he gets in WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AmbroseAsylum12wrote on 30.06.2016:[10.0] "Man, oh man. AJ Styles is simply phenomenal. He's great in the ring and since he turned heel he has showed that he can be awesome on the mic. He's having the time of his life at the moment, he's had some great matches in the WWE and his booking has been good. Hopefully he will win the WWE title in the next few years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AMHTPwrote on 22.06.2016:[9.0] "I don't think there's doubt left in anyone's mind that AJ Styles is an elite wrestler.  He's always been a superior athlete, and it's for that reason he was the heart of TNA's X-Division.  But in NJPW he proved that he's capable of working any (pun not intentional) style, and that he can portray a menacing heel as well as a high-flying babyface.  He's fantastic on the mat, he's gotten leagues better on the microphone, and WWE has done well to book him as a main-eventer.  Anything less would be selling short one of the best wrestlers currently active.  I can't say I respect the man; I've never been able to get past his homophobic beliefs.  But nobody can deny that he's a world-class talent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: sXe27wrote on 20.06.2016:[9.0] "Ich hätte nie gedacht, dass ich noch Fan von ihm werde. Zu seiner TNA-Zeit zwar ein absoluter Ausnahmekönner im Ring, hat er mich abseits des Seilgevierts ziemlich gelangweilt. Unterdurchschnittlich am Mikro, kein richtiges, oder interessantes Gimmick erkennbar, nur einen Hauch Charisma umgab ihn. Hat sich aber insbesondere in seiner Japan-Zeit noch extrem gemausert, bzw. sein Wrestlingprofil vollkommen gemacht. Der Veteranenstatus und der Indy-Legendenstatus in Verbindung mit seiner Japan-Erfahrung werten sein Gimmick enorm auf. Mittlerweile auch am Mic durchaus anhörbar und im Ring hat er nichts von seinem Können verloren. Kein Wunder, dass er tatsächlich als Independent-Wrestler bei der WWE sofort oben im Main Roster mitmischen durfte. Ein World Title Run sollte daher nur eine Frage der Zeit sein."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: svw1899wrote on 16.06.2016:[9.0] "AJ ist einfach phänomenal! Er hat ein relativ breites Moveset, eine überragende Technik und Charisma. Einer meiner Lieblingswrestler aktuell in der WWE.  Einen Punkt ziehe ich ihm ab für sein Können am Mic. Da kann er noch üben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Veyron22wrote on 15.06.2016:[6.0] "Zu überbewertet und überhaupt nicht mein Fall. 10 Punkte ist er meines Erachtens niemals wert, aber da er so gehypet wird kann er nicht so schlecht sein wie ich empfinde. Ich gebe ihm 6 Punkte für seine bisherige Leistung in der WWE (alles andere ausgenommen, da ich ihn erst seit seinen WWE Zeiten kenne. ) Sollte er sich bessern bzw wenn es an der WWE liegt sie ihn besser darstellen, werde ich meine Wertung natürlich erhöhen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Chosen Onewrote on 09.06.2016:[10.0] "AJ Styles is a great wrestler. His finisher the Styles Clash, Calf Killer, and Phenomenal Forearm are great. I am loving his current feud with John Cena. He is doing great alongside Karl Anderson and Luke Gallows as The Club. He is so talented and agile. Overall he is a true legend 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cleanerwrote on 05.06.2016:[10.0] "Einer der Besten den die Welt je gesehen hat, da muss man nicht drüber diskutieren. Wrestling, Promos, Charisma - alles Weltklasse"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: nitrop199wrote on 03.05.2016:[10.0] "AJ Styles might be the best in-ring performer in the world today.  The way he can add subtility to every match, the way he can make a great match out of any opponent truly makes him the best in the world for me.  He still has a lot to offer to the wrestling industry, he is in his prime and will be remembered as a legend of the sport without any doubt.  He has been wrestling everywhere in the world, has been wrestling any style, has been wrestling in front of 50 people or 100 000 just by passion. Yet he is still humble.  If i had to choose a role model in wrestling, that would be him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TrevPuroFanwrote on 01.05.2016:[10.0] "AJ Styles is one of the greatest Pro Wrestlers ever. From making his debut in 1998 for the NWA Wildside, to climbing his ways up to the early days of ROH, to becoming one of TNA's biggest stars ever. Ever since leaving TNA in 2013 and making his NJPW debut, he's been putting on the best matches of his career at the age of 38. He can fly, he can brawl, he can go to the mat. Former NWA Heavyweight Champ, former TNA World Champ, ROH Pure Champ, IWGP Heayweight Champ etc. AJ is fantastic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: awesomepunkwrote on 20.04.2016:[10.0] "AJ Styles ist einer der besten Wrestler der Welt. Im Ring einfach nur klasse. Es gibt nur wenige, denen ich genauso gerne zuguck. Schon bei TNA und in Japan einer der ganz großen und er hat die Chance, in der WWE ein ganz großer zu werden. Ich denke AJ Styles ist eine Bereicherung für die WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KingChrizzly619wrote on 16.04.2016:[9.0] "Absoluter Top Wrestler, tolle persönliche Ausstrahlung (10/10 Punkte), momentan super aktuelles Gimmick, hoffentlich wird er er nicht von der WWE verheizt (10/10) sehr schnelle, einige top Highflyer-Moves (10/10 Punkte), einzig allein am Mic gefällt er mir noch nicht so, da ist noch Luft nach oben (7/10). Gibt bei mir einen Gesamtwert von 9/10 Punkten"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Hilljimmy Billwrote on 14.04.2016:[5.0] "Guter Wrestler, aber den Hype um ihn kann ich überhaupt nicht verstehen. Seine Matches fand ich zwar immer irgendwie okay, aber meistens auch etwas langweilig, so wirklich mitgerissen hat er mich nie. Sympathisch ist er mir auch kein bisschen."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: WrestlingNerdwrote on 05.04.2016:[9.0] "AJ Styles, ist ein Könner im Ring. Habe ihn damals schon bei TNA abgefeiert, bei New Japan etc. hab ich ihn nun nicht gesehen, weswegen ich diese Veranstaltung mal ausklammer. Also bis auf Kingdom anfang des Jahres gegen Nakamura, was aber gut war. Bei der WWE gefällt er mir auch bisher gut, auch wenn er überwiegend bisher nur gegen Y2J gewrestlet hat. Aber AJ weiß im Ring zu begeistern und tolle Moves zu zeigen. Außerdem kann er noch mit fast 40 ein gutes Tempo gehen. Aber für die 10 Punkte fehlt mir noch was, jedoch muss ich leider feststellen, dass ich selbst noch nicht genau weiß, was es ist. Vielleicht die bisher fehlenden Promos um ein Mic Work wirklich benoten zu könne. Aber allein Wrestlerisch, 9 Punkte!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Jack Slaterwrote on 05.04.2016:[4.0] "Also nach all dem Hype um diesen Kerl verstehe ich jetzt irgendwie die Welt nicht mehr. Wahrscheinlich wird man wieder erzählen, dass die WWE ihn ruiniert blabla. Aber der Typ hat mit Jericho geworked.. wenn du da als Babyface nix reißt, dann ist das deine Schuld. Im Ring ist er gut, keine Frage. Aber wirklich so viel besser als die andern im Roster? Besser als Zayn, Cesaro, Owens, Y2J, Seth F'n Rollins ? Glaub ich irgendwie nicht. Charismatisch ist er auf jeden Fall nicht und am Mic is auch nix zu holen. Ich mag ihn nicht will aber nicht allzu unfair sein und ihm hier 0 Punkte geben, auch wenn ichs gern würde."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kaderuswrote on 25.03.2016:[10.0] "AJ Styles ist einer der absolut besten!  Hoffentlich darf er bald auch in der WWE mal alles zeigen was er so drauf hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Davor Megacidalwrote on 21.03.2016:[9.0] "The Phenomenal One, One of my favorites in the world right now. The guy is incredible in the ring, has a hell of an arsenal and his technique is unique. His 5 star match is the only 5 star match in TNA history, this guy put that company on the map, had full success in NJPW in a short time (2 years), and is now on the WWE to show what is he made of and why people talk about him around the world. The only low point I can give to him is his lack of charisma when delivering some promos, let's see how he manages this fact when given the golden chance and he botches quite a few times, but hey, nobody is perfect."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Laetlaeywrote on 26.02.2016:[9.0] "War schon top in anderen Ligen und sein Start in der WWE auch schon mal beeindruckend. Mit Ihm ist in nächster Zeit 100% zu rechnen . Ich hoffe aber nicht , dass man Ihn nun auf längere Zeit mit Y2J im Team wrestlen lässt auch wenn sie bisher gut miteinander harmonieren... Sehe ihn dann doch eher als Einzelwrestler.. Würde bestimmt eine gute Fehde mit KO abgeben.. Hoffe da tut sich in nächster Zeit was.."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheLoudMouthwrote on 18.02.2016:[10.0] "Ein großartiger Worker, der bei TNA schon absolut brillant war und sich in Japan nochmals auf sämtlichen Ebenen gesteigert hat. Einer der aktuell besten Wrestler überhaupt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DanielBryan1986wrote on 16.02.2016:[10.0] "Er gefiel mir bereits bei TNA sehr gut, Klassiker gegen Joe, Jarrett und Angle kann man sich immer wieder anschauen. Ihn würde ich mit Daniel Bryan, CM Punk, Shawn Michaels und Chris Jericho auf eine Stufe stellen, leider das er mindestens 7Jahre zu spät da ist. Denn einige Klassiker bleiben uns verwehrt. Nach einem Programm mit Chris Jericho würde ich mir Dean Ambrose als Gegner wünschen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Deception649wrote on 14.02.2016:[10.0] "A Great Wrestler who have everything right, the Move-Set, Gimmik, Apperance, Talent... he have it all"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GOERNAIRwrote on 11.02.2016:[9.0] "In der kurzen Zeit bei WWE hat er bereits ne sehr große Aura die ihn umgiebt. Und das mit wenigen Worten. Sein bloßes Auftreten macht Bock auf alles was da noch kommt. Freu mich auf sein erstes großes Match!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wrestlingfan96wrote on 11.02.2016:[10.0] "etwas anderes als eine 10 kann man dem Typen meiner Meinung nach einfach nicht geben. Er ist ein perfekter Wrestler mit gutem Mic-Work. Alle Moves von ihm sind ein Highlight"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SapolBlackwrote on 03.02.2016:[10.0] "30 Minuten im Rumble, ein Sieg gegen Jericho. Ein besseren Start könnte man nicht haben in der WWE. Umfassbar das er in seinem Alter noch auf die Biggest Stage of them all erscheint.  Nach 16 Jahren da sein, erreicht er sein Ziel. Hoffe wir das er ein große Bereicherung, wird für den Main Event bei der WWE und das er auch Wrestlemania Headlined!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NoNamewrote on 30.01.2016:[10.0] "Einer der besten Wrestler der Welt, ich persönlich finde es einerseits Schade, dass er bei der WWE ist, da ich denke, er wird dort ziemlich limitiert werden, andererseits finde ich hat er es verdient mal in der größten Company der Welt zu sein!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: craigohwrote on 28.01.2016:[9.0] "by far one of the best talents which only recently got the chance to be in WWE, his New Japan run was phenomenal (no pun intended) 5 star matches with Okada, Tanahashi and Nakamura plus being part of one of the most influential stables in Pro Wrestling's recent history with the Bullet Club, a great worker (though the Styles Clash does have it's risks and flaws I admit) and has great ring psychology too. has got better on the mic over the last few years as well (he was not very good before but now he's actually a decent speaker - and compared to some WWE guys *cough cough Reigns, The Uso's, cough cough* nowadays he's great). an amazing talent and I hope he get's a fair shot to be a star in WWE like he was in New Japan and TNA."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: iLoehrsiewrote on 28.01.2016:[10.0] "Wie dieser Mann 3x 0. 0 & 2x 2. 0 haben kann ist mir unklar. Styles ist definitiv einer der besten Wrestler, die es heutzutage gibt. Vom Auftritt her einfach mega charismatisch und über seine Moves brauchen wir glaube ich gar nicht zu reden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Naruedyohwrote on 28.01.2016:[10.0] "One of the best wrestler in active. Excellent moves, with great skills to sell them and to innovate and manage the risks. He can make losing hell of entertaining, he got the looks of a champion and excellent mic skills. Hope WWE give him a title shot.   THE GAY COMMUNITY"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KC Tabuuwrote on 27.01.2016:[10.0] "Fuckin unbelievably talented guy here. He knows exactly what to do and when to do it every time he steps in the ring. Every time I see him in the ring, he looks like he has a fire inside to wreak havoc over his opponent. His moves are delivered with such intensity, ESPECIALLY his forearm smash. If Vince gets behind him, he WILL run roughshod all over the WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Florian Izumiwrote on 15.01.2016:[10.0] "In seiner besten Form. Mit der beste Wrestler der jemals im Ring stand, sein Attitude und die Charakterrolle sind absolut fantastisch. Meiner Meinung nach, jedoch völlig objektiv bewertet, mit Ambrose, Nakamura und Okada der beste zurzeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: thielssss8691wrote on 14.01.2016:[10.0] "AJ Style - The Phenomenal, einer der von mir beliebtesten Wrestler, der sich bereits an vielen Orten auf dieser Welt eine Menge an Hype eingeholt hat. Allein durch sein Auftreten im Ring ist er mir so sympathisch geworden!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: HammertonWaywrote on 06.01.2016:[10.0] "It's a shame to see him leave New Japan. His past two years there have made him an even bigger name than he was before already while in TNA. We can only hope that WWE will treat him with respect. At least they won't be able to change his name. After all, there isn't a wrestling fan out there who doesn't know the Phenomenal AJ Styles!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kevin434wrote on 03.01.2016:[10.0] "Dieser Mann ist aktuell der drittbeste Wrestler der Welt (nach Nakamura & Tanahashi). Er kann sprichwörtlich mit jedem ein geiles Match worken und beherrscht sowohl den technischen, als auch den High-Flying Wrestling Stil. Er ist zwar keine Charismabombe, aber das ist auch nicht wichtig. Am mic ist er ok. Im Ring macht dieser Mann so verdammt viel Spaß. Er besitzt eine richtig gute In-Ring Psychologie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MoonsaultsEdgecutionwrote on 28.11.2015:[10.0] "Gleichauf mit Roderick Strong für mich mit weitem Abstand der "Best in the World" 2015, PERIOD~! :-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Frompartsunknownwrote on 13.09.2015:[10.0] "AJ Styles. Mein absoluter Fav. in den Indys und nach Seth Rollins 2. Lieblingswrestler. Er hat alles. Er ist im Ring der absolute Wahnsinn, Charismatisch und, auch wenn er selten redet, kann er es auch gut. Ich feier ihn einfach ungemein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Iam betterthanwrote on 05.09.2015:[10.0] "One of the Best Wrestler today.. Aj Styles is doing a great work in New Japan (Like he have done in TNA) but this year Aj Styles Come off as a new phenomenal one, his every matches are damn Very good.. One of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Matt4Wrestlingwrote on 03.09.2015:[8.0] "Durchaus ein guter Allrounder, nur schießt er damit oft übers Ziel hinaus und scheint dann zu sehr von seinem Ego getrieben zu sein. Er sollte sich auf frühere Stärken besinnen und sich mehr auf Bodentechniken besinnen, in sein Alter in das er jetzt kommt das Beste was er tun kann!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Josh76wrote on 10.08.2015:[10.0] "Probably the best pro wrestler in the world! AJ Stlyes pulls off the best moves at ease. Always love to see his matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Hunter Dunnwrote on 28.07.2015:[10.0] "As of 2015 he is the greatest thing in professional wrestling today. He is a PHENOMENAL (lol) performer. He is very fluent in the ring with a great moveset. Excellent storytelling and has chemistry with damn near everybody. Hard to find a bad match and has taken over wrestling with the Bullet Club. Hottest act there is right now"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ScheuerFutzwrote on 19.07.2015:[8.0] "ein guter bis sehr guter wrestler, natürlich nicht in allem Perfekt aber er workt solide und unterhält in 85% seiner matches, seh ihn gerne."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kenshin Uesugiwrote on 10.07.2015:[8.0] "Sicherlich er kann guten wrestlen bzw sehr gut, zwar nicht regelmäßig aber nun bei NJPW wieder öfter wo er aufblüht. Aber sonst ist er immer noch der gleiche AJ-Style wie zu seiner TNA-Glanzzeit, der zwar stark im Ring ist, bei weiten aber nicht auf dem Level auf den er und viele Fans ihn sehen. In allen anderen wichtigen Bereichen kommt er über ein ordentlich nicht hinaus. Styles hat weder die Ausstrahlung, noch das Charisma und die Persönlichkeit um sich wirklich ganz und gar in die Reihe der heutigen größten Stars und Wrestler zu stellen. Gerade bei NJPW sehe ich das ganz deutlich wenn er da mit Tanahashi, Nakamura und Suzuki arbeitet, bei ihm wirkt es für mich so angestrengt und gewollt aus. Er versucht es ja und hat auch gelernt wie man sich unteranderem als Star zu verhalten hat oder zumindest die "Technik" dafür, aber bei den anderen genannten quellt es förmlich raus und wirkt real. Er ist halt was das angeht nur "normal" und weder im Ring so "phenomenal", noch hat er andere Eigenschaften die das vergessen machen oder überflügeln lassen. Das wirkt sich dann natürlich auch auf seine Arbeit im und außerhalb des Rings aus. Im Grund ist er ein deutlich besserer Shelton Benjamin und viele Fans sehen in ihm etwas, wie bei Christian etwa, was er meiner Meinung nach nicht ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DanTalksRasslinwrote on 28.06.2015:[10.0] "True to his nickname, Styles is a truly phenomenal athlete who has only gotten better as time has gone on.  Has matured into a fine technical and chain wrestler, who can still pull out the jaw-dropping spots that made his name in his youth and has also developed into a strong mic worker.  After leaving TNA after accomplishing virtually everything possible in that company, he has experienced a career renaissance as a top name in New Japan while simultaneously maintaining a regular presence stateside in ROH and as one of the most in-demand indy names."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Maxicazal5wrote on 20.06.2015:[10.0] "Simply the best in the world, have a charisma that no one have and wrestle like no one.  -- THE PHENOMENAL ONE --"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Viper99wrote on 16.04.2015:[10.0] "GANZ KLARE 10!  Er ist einfach wie es seine Spitzname sagt Phänomenal!  In TNA super Champion in großartigen Matches gegen Daniels oder Angle. In RoH super.  Und in einem Meiner Lieblings Stables:Dem Bullet Club! In New Japan blüht er auch wirklich wieder auf und zeigt ein gutes Match nach dem anderen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: eldenaaaaawrote on 26.03.2015:[10.0] "The benchmark of Independent Wrestling, and maybe Pro Wrestling as a whole. After spending 12 years with TNA, 2014 was Styles' year. His work in New Japan, ROH and the Indies was incomparable. 2X IWGP World Heavyweight Champion, 2X TNA World Heavyweight Champion, 6X X-Division Champion, PWG World Champion, ROH World Tag Team Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: zackwoowoowooryderwrote on 24.03.2015:[9.0] "Was ihm vielleicht ein wenig an Charisma fehlt macht er aber durch mehr als sehr gute Leistungen im Ring wieder wet. AJ kann mit eigenltich jedem Wrestler auf der Welt gute Matches worken, was auch für seine Qualitäten spricht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BASStyleswrote on 11.03.2015:[10.0] "er ist und bleibt immer noch einer der besten Wrestler die ich gesehen hab. Hoffe er Wechselt endlich in die WWE und rettet diese am Boden liegende Liga."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ProGraps2018wrote on 17.02.2015:[10.0] "I've been saying it for years, he was the best professional wrestler around, and TNA didn't even know half of the time. He proved that point in everything he did in 2014, and what he continues to do in the first couple of months in 2015. He's at the top of the list, with a handful of wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GoToSleepwrote on 05.02.2015:[9.0] "Im Ring einer der besten Wrestler der Welt! Dank seiner Entwicklung von Highflyer zum vielleicht kompletten Techniker aktuell auf der Welt darf man das ohne Probleme sagen. Ebenso hat er eine Ausstrahlung, die nicht wirklich zu beschreiben ist. Wenn er im den Ring kommt habe ich einfach das Gefühl das muss ein Topstar sein. Das einzige Manko ist sein nicht ganz überragend Micwork, das natürlich nicht schlecht ist aber eben"nur" ordentlich."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: llboxingwrote on 14.01.2015:[8.0] "He has been dazzling wrestling fans for over a decade with his outworldly athleticism.  Has developed into an excellent ring psychologist over the years.  He seems to be a great fit in New Japan, effectively replacing Prince Devitt as leader of the Bullet Club and is very adept at playing the heel.  He still struggles with his promos unfortunately."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Matzinhowrote on 09.01.2015:[10.0] "Styles ist meiner Meinung nach momentan so gut wie nie zuvor und ganz nah dran, der beste Wrestler der Welt zu sein, stünde ihm da nicht der überragende Shinsuke Nakamura im Weg. Er hat Grundzüge der charakterlichen Facetten, die ihn zuletzt auch bei TNA auszeichneten, mit in den BULLET Club genommen und sich dort zu einem markanten, glaubhaften Main Event-Heel entwickelt, der den radikalen Push, den er erhalten hat, mit starken Leistungen und einem der besten IWGP Title Runs zurückgezahlt hat, den ich in den 30 Jahren, in denen ich das Produkt verfolge, erlebt habe. Ich bin davon überzeugt, dass wir gerade den Höhepunkt der Karriere von AJ Styles erleben und ich lehne mich lächelnd zurück und freue mich auf das, was jetzt in den nächsten Monaten noch kommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TRMBwrote on 26.12.2014:[9.0] "Für den späten Herbst der Karriere blüht Styles seit seinem Weggang von TNA wieder richtig auf. Er hat sich wirklich selbst wieder entdeckt und scheint auch seinen Spass am Business wieder gefunden zu haben, den er nach den langen und schlimmen TNA Jahren wohl verloren hatte. Was gibt es zu Styles zu sagen, was nicht schon gesagt wurde? Einer der talentiertesten Wrestler aller Zeiten, früher ein klasse Highflyer und mit dem Alter hat er sich von einem "normalen Highflyer" zu einem Maineventler entwickelt (ähnlich wie Tanahashi immer noch Highflying-Moves, aber halt auch starkes kontrolliertes Wrestling)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ROHfan99wrote on 06.12.2014:[10.0] "Ich feiere diesen Mann abgrundtief! Ich schaue ihm so gerne im Ring zu, ich mag einfach seine Art zu catchen. Er ist so langsam und ruhig im Ring, aber haut Sachen und Moves raus die dich jedes mal vom Hocker hauen. Er ist ein klasse Worker, hat viel Charisma. TNA wusste leider nicht, wie sie es mit ihm am besten anstellen. Schön ihn wieder bei ROH zu sehen. Definitiv einer der besten der Welt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Bedderwrote on 25.10.2014:[9.0] "What Styles may lack in charisma he more than makes up for in in-ring talent.  Manages to be hard-hitting and high-flying, he can have a good match with almost anyone.  At 36, he shows no sign of slowing down and still takes sick bumps, shows incredible speed and work-rate in his matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: robrosellwrote on 08.10.2014:[10.0] "Easily the best wrestler now a days, get out of TNA was the best for him business, greatest matches in New Japan Pro Wrestling, ROH and more indys, great year for my favorite wrestler in TNA, sad for the company but the wrestlers also needs money and styles was no afraid to earn more. Respect him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: 8BitLegendwrote on 22.09.2014:[8.0] "Hat sich im Spätsommer seiner Karriere bei NJPW neu erfunden. Wirkt dort wie ausgewechselt. Der letzte TNA-Run half jedoch den Charakter zu formen, den er jetzt darstellt. AJ Styles gehört mittlerweile zu den großen Namen des Business und ist der heisseste Import aus dem Westen in Japan. Glückwunsch dafür."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: mrjoshdudewrote on 20.09.2014:[10.0] "He has owned the Indies, he has owned TNA, and now he owns Japan. For anyone that thinks he's past his prime, go watch the 2014 G1 Climax. He is one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AlwaysAngrywrote on 14.09.2014:[10.0] "Aj Styles ties with Daniel Bryan for being the greatest working wrestler Today, he has an expansive move set, and can adapt to any kind of match and his recent stint with NJPW has proved that even late in his career the kid still has it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Phenomenal91wrote on 02.09.2014:[10.0] "This man was, is, and always will be Mr. Total Nonstop Action Wrestling. He represented everything the once-promising promotion stood for. He's athletic, daring, fearless, and exciting. He's without peer among high flyers. He's also an underrated mat wrestler (check out his work defending the ROH Pure Wrestling championship for proof. ) His feud with Dixie Carter allowed him to improve his mic skills, something he had always been lacking before. He's still capable at performing at a high level. He never needed Vince McMahon and the WWE machine to build his legacy. He's currently bringing his abilities to the audiences of New Japan Pro Wrestling. Maybe Global Force Wrestling too? I hope so."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kitanoyamawrote on 24.07.2014:[9.0] "Er bringt eine außergewöhnliche Mischung aus Kompaktheit, Robustheit und technischem Können wie es sonst nur sehr wenige Worker aufbieten. Jede Company die ihn unter Vertrag hat kann sich glücklich schätzen ihn zu haben. Ihm fehlt zwar die Ausstrahlung der ganz großem im Geschäft, aber trotzdem wird er zu Recht zu den besten seines Fachs gezählt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Outlawwrote on 22.06.2014:[10.0] "Styles is in my opinion the greatest wrestler in TNA history, he has held every male NWA and TNA title the company has had to offer, multiple time triple crown and grand slam champion. I would have loved to have seen him stay with TNA, but since leaving his in ring work has gotten better and he is IWGP Heavyweight Champion as a member of the Bullet Club now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GreatDWwrote on 08.05.2014:[10.0] "Großartiger wrestler und großartige moves, im ring hat er viel zu zeigen und kann viele moves kombinieren. Am mic ist er wirklich super und Ausstrahlung hat er auch viel. Diesem Typen kann man glauben das er Wrestling liebt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Undertalkerwrote on 19.02.2014:[9.0] "Ich mochte ihn schon immer und er ist nach Kurt Angle mein Zweitlieblingswrestler von TNA. Seine In-Ring-Skills sind natürlich einfach nur phänomenal! Er verkörpert die richtige Mischung aus Highflying und Technik. Am Mikro ist AJ eher nur oberer Durchschnitt, aber das fällt bei ihm nicht so stark ins Gewicht, da er diesen Mangel durch sein Charisma teils wieder wettmacht. Auch seine Treue zu TNA und seine Beständigkeit als Wrestler sind positiv hervorzuheben. Er gibt einfach einen sehr sympatischen Worker ab, der sicher auch privat kein Unfreundlicher ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: WrestleArtswrote on 17.02.2014:[10.0] "Im Ring war AJ schon immer gut, hat sich in den Jahren jedoch vom spektakulären Highflyer zu einen tollen, kompletten Worker entwickelt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DudeLove177wrote on 06.02.2014:[10.0] "Hoffe er wird eines Tages bei der WWE auftauchen! Find ihn super!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ShawnDravenwrote on 05.01.2014:[10.0] "The heart and soul of TNA. He is to that company what the Undertaker is to WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LS Incwrote on 29.12.2013:[10.0] "The best wrestler that ever wrestle in TNA and one of the most complete wrestlers in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: FollowTheBuzzardwrote on 24.12.2013:[9.0] "sehr guter Wrestler mit im Vergleich zu anderen großer in-Ring Erfahrung, seine Highflying-moves sitzen auch meistens sehr punktgenau, doch leider lässt sein Mic-Work zu wünschen übrig ansonsten, hat er echt ein riesen Talent und erfüllt jeden Kritikpunkt mit Bravur, bis halt auf sein Mic-Work. Erster Triple-Crown TNA Champion aller Zeiten, Note ist dennoch 9. 0 aber tendierend zur 10. 0"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ProRedstonewrote on 02.11.2013:[9.0] "Einer der besten TNA Worker aller zeiten ... aber irgendwie nicht ganz perfekt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Leonewrote on 23.09.2013:[10.0] "Even though he wrestled 3 low-key matches for them at the beginning of his career, AJ Styles could potentially be described (at the moment, anyway) as the Sting of this generation.  He is 1 of the best American wrestlers to not go to the WWE.  His in-ring quality has not only been high, but consistent.  He rarely has a bad match.  His technical skill is excellent, along with his aerial assault.  In the ring, he is incredibly well polished, and he has shown (as a heel) that he can also be fun on the mic.  Possibly TNA's most reliable worker, this former world heavyweight champion has reached legend status while still in prime shape.  10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[9.0] "Also ich sehe schon Parallelen von 'Styles & TNA' zu 'Sting & WCW', mal sehen, ob sich das in Kürze ändern wird, falls es zu keiner Einigung bei Styles' Vertragsverhandlung kommt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Boris The Menacewrote on 20.07.2013:[9.0] "In 20 years from today people will realize that Styles was one of the very best this sport had to offer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ThatGuywrote on 27.06.2013:[7.0] "Wohl der einzige Wrestler der mit 35 Jahren und 14 davon als aktiver Wrestler als junges Talent bezeichnet wird.   Aber einer von vielen TNA-Wrestlern die wahrscheinlich aus Angst vor dem Farm-System Ihre Karriere bei TNA geparkt haben und dort nun verstauben. Schade wenn man bedenkt dass AJ Styles ein Top Wrestler ist mit einem guten Maß an Ausstrahlung und Leidenschaft für Wrestling.   Ab und zu bringt er sogar ein gute Promo zustande und scheint sich für nichts zu schade zu sein, letzteres hat ihm aber in seiner Karriere auch geschadet.   Er hätte mehrfach zur WWE wechseln und sein Talent gegen Kollegen wie CM Punk, Dolph Ziggler, Christian, Chris Jericho und andere unter beweis stellen können doch anstatt dessen kümmerte er sich in TNA um Crack-Babies, wurde zum Quasi-Sting in der Aces & 0. 8s Storyline und arbeitet seit 10 Jahren mit den gleichen Leuten.   Stagnation by definition...   Sehr schade"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: alsdncjswo34wrote on 19.06.2013:[10.0] "The Phenomenal One A. J. Styles, he is very perfect wrestler of all time in this wrestling business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Christian Classic Cagewrote on 07.06.2013:[9.0] "AJ Styles ist TNA's Top-Pferd.  Gerade als Tweener zwischen den Fronten weiß er unglaublich zu überzeugen, ausserdem kaschiert das Gimmick super seine Schwächen am Mic.  Im Ring kann ihm sowieso kaum einer das Wasser reichen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: PercyWatsonwrote on 03.06.2013:[10.0] "Einer meiner TNA Lieblingswrestler. Unglaublicher High-Flyer aber auch Technisch gut. Sollte eigentlich längst das TNA-Gesicht sein. Vielleicht schafft er dies nun durch seine Charakterentwicklung dazu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JuliTheCage87wrote on 02.06.2013:[10.0] "Erstmal @Adler, du hast mir grade nen Lachflash mit deinem guten Deutsch verpasst, made my day! :) Nun zu AJ, der seit einem Jahrzehnt die tragende Figur bei TNA darstellt und der Liga in jeder Zeit treu geblieben ist (ausgenommen ein paar Auftritte bei RoH), dafür schon mal nen Bonuspunkt. Technisch sehr stark und unheimlich variabel und ein großartiger High-Flyer, vermutlich einer der besten seiner Art und ein großes Vorbild für Nachkömmlinge. Er hat einen eigenen Stil geschaffen, den er perfekt rüberbringt. Nahezu jede Story um ihn ist interessant, seien es die Fehden mit Angle, Daniels oder wie jetzt zwischen den Fronten von TNA und Aces&Boring als Tweener. Er schafft es einfach sofort, einen mitzureisen, und besitzt wie zum Beispiel ein William Regal eine große Ringintelligenz. Einfach nur der Wahnsinn, 10 Punkte sind hier absolut gerechtfertigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Adlerwrote on 02.06.2013:[10.0] "Vielleicht der besten Athlet in diesen Sport, die ich jemals gesehen habe. Nicht nur beim sportlichen Fähigkeiten enden seine Vorzüge, doch. Auch Charakter und Anwesenheit bilden seine Eigenschaften und Erfahrung als einer der wertvollsten Athleten in heutigen Tagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: christianpecevskiwrote on 31.05.2013:[10.0] "Ein super Wrestler. Er hat eine sehr gute Technik. Seine Matches sind immer gut anzuschauen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: alewrote on 15.05.2013:[10.0] "Jeder Wrestler der eine eigene ''Top 100 Moves List'' auf Youtube hat , hat schon 10 Punkte verdient. Ansonsten kann man zu AJ Styles wenig sagen, außer vielleicht, dass er zu den besten Wrestlern gehört die die Vereinigten Staaten jemals hervorgebracht haben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Ryback2013wrote on 19.04.2013:[10.0] "Sehr guter Wrestler! Leider oft in schlechten Storylinen verheißt! Hoffe Tna wird in wieder in würde Matche stecken und in um Titel kämpfen lassen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Sentenzawrote on 30.03.2013:[9.0] "Unglaublich viel Talent und Fähigkeiten, die er auch schon so oft gezeigt hat, hat auch eine Menge Charisma und müsste eigentlich an der Spitze von TNA stehen! Doch bei TNA wirkt er eigentlich immer nur als Beiwerk, was ich nicht verstehen kann, eben TNA."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NightShadowWarriorwrote on 16.03.2013:[10.0] "Einfach Großartiges Wrestling was er zeigt leider verbookt TNA viel zu viel"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Flying Dragonwrote on 07.03.2013:[9.0] "AJ Styles ist DAS Gesicht von TNA - gewesen. Mittlerweile ist er es leider nicht mehr. Obwohl er im Ring definitiv einer der besten überhaupt ist. Ich liebe seinen Wrestling-Stil und hoffe, dass er bald wieder in Richtung World Title gepuscht wird. Er hätte es sich verdient, auch für seine Loyalität TNA gegenüber."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Bowlenwrote on 27.02.2013:[10.0] "Simply phenomenal! Genialer Wrestler, der mir sowohl als babyfaciger "Mr. TNA" als auch als Comedy-Heel immer gefallen hat. Seine Arbeit am Mikrophon ist sicherlich nicht immer brilliant, da er seinen Redneck-Stammbaum nicht wirklich verheimlichen kann, aber mich stört das nicht. Ich hoffe, dass man ihn nach seiner Storyline-Pause ein wenig auffrischen kann, damit er wieder seine Position an der Spitze TNAs einnehmen kann - hoffentlich noch für einige Jahre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cobrawrote on 14.12.2012:[10.0] "Just like Kurt Angel with his ability to lift any match and make it incredible. But where Angle brings the best technical matches AJ brings the best high flying matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: wolfwood2wrote on 07.12.2012:[10.0] "AJ Styles, is one of the few superstars I can say will have a good match. With his skills AJ Styles steals the show no matter the oponent. However in recent weeks AJ Styles has had a series of loses. Despite the recent string of loses, I still beleve that AJ Styles will bounce back better than ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Roode66wrote on 05.11.2012:[10.0] "Mr. TNA. Insgesamt ist sein Einsatz bei TNA eine Schande, wenn man bedenkt, wer schon alles Spitzenpositionen in dieser Liga einnehmen durfte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wolkywrote on 20.09.2012:[10.0] "Meiner Meinung nach der beste Inringperformer aller Zeiten. Kann einfach Alles im Ring. Jedes Tempo, jeden Stil. Man kann 10 AJ Matches schauen und keines ist gleich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KKorppuwrote on 15.09.2012:[10.0] "Great all-around guy with no significant weaknesses. Delivers high quality matches day in and day out. Overall #1 guy in TNA right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: goofy1991wrote on 02.08.2012:[9.0] "Im Ring gefällt er mir äusserst gut, gerade da ich auch High-Flyer Aktionen sehr gerne sehe. Am Mic ist er zwar nur oberes Mittelmaß, aber ich halte ihn dennoch für durchaus charismatisch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: 7TheEwrote on 12.06.2012:[9.0] "Das Gesicht von TNA und auch der größte Star.  Überzeugt seit Tag 1 und hat sich auch immer gut weiter entwickelt, bringt selbst heute noch eine Topleistung und stellt damit alle in den Schatten.  Workt nicht dauerhaft on Top, deswegen nur 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Franjisewrote on 19.05.2012:[10.0] "AJ Styles ist das Gesicht von TNA. Zumindest wird er immer so bezeichnet. Das er es effektiv nicht ist, liegt einzig und allein am Booking der Carter-Promotion. AJ ist ein TNA-Eigengemächs, welches über die Jahre besonders durch tolle Leistungen im Seilgeviert geglänzt hat und für unzähligen TNA-Momente verantwortlich ist. Dazu kommen seine nicht zu verachtenden Mic-Skills und das durchaus vorhandene Charisma. Es ist sehr, sehr schade, dass es TNA über die Jahre nicht geschafft hat, ihn als Top-Face der Company zu etablieren. Verdient hätte er es allemal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Jack Londonwrote on 23.04.2012:[5.0] "Mr. Overrated himself. Im Ring zu Beginn sehr spektakulär, was sich aber sehr schnell abnutzt. Sein Selling ist meistens nicht vorhanden, bearbeitete Beine werden Kota-Ibushi-Style verkauft und sein letztes wirklich sehr gutes Match ist mittlerweile schon Jahre her. Außerhalb von TNA häufig extrem unmotiviert und den Eindruck erweckend, dass er gerne wo anders wäre."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Robert Taylorwrote on 22.02.2012:[10.0] "AJ Styles sollte für TNA eigentlich das sein, was John Cena für die WWE ist, nämlich der Top Star der Liga. AJ Styles besitzt im Ring einen Style mit dem er er die Massen fesseln kann, außerdem kann er Top Matches in Serie zeigen. Er steht zwar nicht auf einer Stufe mit anderen Stars wie CM Punk oder Triple H, was das Mic-Work angeht, trotzdem ist Styles ein sehr gutes Gesamtpaket. Sein größte Stärke sind meiner Meinung nach aber die Fähigkeiten im Ring, zusammen mit seinem Auftreten. Ich hoffe, dass er schnellstens wieder in den Main Event und/oder in die Hauptfehden geschrieben wird. Befindet sich derzeit in einem kleinen Formtief aber ich denke, dass er dort in absehbarer Zeit wieder rauskommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rated R Champwrote on 29.01.2012:[10.0] "AJ Styles ist einer meiner Lieblingsworker. Er kann im Ring immer überzeugen und oft wirklich begeistern. Am Mikro ist AJ zwar nicht erste Liga, aber es ist auch nicht so, dass er keine Promos halten könnte. Was mich bei AJ aber einfach begeistert ist, dass er einer der Leute ist, die für 100% Leidenschaft für das Geschäft stehen. Bei TNA eine der wenigen Konstanten die für Qualität steht (auch wenn er einiges an miesem Booking überstehen musste)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KoZywrote on 07.10.2011:[8.0] "Hat definitiv einiges drauf, aber er hat keine Ausstrahlung. Und des gehört einfach dazu. Bei TNA ist er wohl gut aufgehoben, doch bei der WWE hätte er keine Chance. Womöglich hat er deswegen damals das Angebot abgelehnt?"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Taariwrote on 17.09.2011:[10.0] "Einer der wenigen Gründe, warum ich mir TNA bzw. Wrestling allgemein noch anschaue.  AJ ist einfach klasse und für mich persönlich der beste Wrestler aller Zeiten.  Daher auch die volle 10. Detaillierte Bewertung ist mir zu anstrengend jetzt^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Mal ernsthaft AJ Styles ist Mr. TNA! Er ist schon sehr lange in der Company und war ihr immer treu. Seine In-Ring Skills sind natürlich sehr gut, auch am Mic macht er sich mittlerweile wenns auch noch ein bisschen hapert, Charisma bekommt der Junge auch so langsam, also ich hoffe echt das TNA in Zukunft mal mehr auf AJ wieder setzt und ihn wirklich mal auf dauer im Championrennen lässt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Michael Shawn Hickenbottomwrote on 09.08.2011:[10.0] "Mehr als super kann man nicht sagen. Super charismatisch, am Mic zu ertragen und im Ring spitzenklasse. !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Pius123wrote on 08.08.2011:[10.0] "War schon immer einer der besten. Hat im Jahr 2010 so eine Wahnsinnsentwicklung hingelegt. Ist derderzeit beste Wrestler der Welt. Und am Mic ist er auch grandios."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ChristianHwrote on 17.07.2011:[10.0] "Einer der besten wrestler der Welt, dass Gesicht von TNA und auch am Mikrofon nicht schlecht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: FNShowwrote on 13.07.2011:[10.0] "Das beste Eigengewächs was TNA zu bieten hat. Vince wird sich bestimmt immer noch in den Hintern beisen, dass er ihn 2001 nicht verpflichtet hat. Steht seit Jahren bei Vinnie ganz oben auf der Wunschliste, ist jedoch als loyaler Worker bekannt. Ob Vince ihn jemals kriegen wird möchte ich bezweifeln. Einer der wenigen TNA-Wrestler der den US-Indy-Fans sehr beliebt ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Tobinhowrote on 24.06.2011:[8.0] "Sehr guter Wrestler und auch Charisma ist bis zu einem gewissen Grad vorhanden. Aber auch er gehört zu den Leuten, die bei mir nicht so richtig gut ankommen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Y2J Problemwrote on 18.06.2011:[10.0] "AJ Styles ist einfach der beste pure Wrestler dieser Welt. Wenn er auch am Mic vielleicht nicht der beste sein mag, macht er das durch seine unglaublichen Ringleistungen wieder wet. Zudem halte ich ihn für einen äußerst schlauen Mann, der weiß, wann genug ist, ähnlich wie ein Shawn Michaels!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GamePrincewrote on 22.05.2011:[10.0] "Ich bin kein TNA-Fan und schau es auch so gut wie nie. Aber auf AJ-Styles bin ich irgendwie mal irgendwann aufmerksam geworden. Irgendwie hat mich der Kerl fasziniert, obwohl ich ihn gar nicht kannte ... also hab ich mal bei youtube nachgeschaut. Und ich muss schon sagen, der Typ ist absolute Spitze. Was er an Moves zeigt, ist schlicht der Hammer. Da können selbst Talente wie John Morrison oder Daniel Bryan einpacken. Ein unglaublicher Wrestler ... einen Punkt zieh ich aber ab, weil ich seine Mic-Skills nicht kenne. Aber im Ring ist er auf jeden Fall eine absolute harte Granate! UPDATE: Einfach Phenomenal ... da MUSS man 10 Punkte geben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: exxterwrote on 09.04.2011:[10.0] "DER Superstar der TNA mit aufgebaut hat, und super techniker! bin eigentlich froh das er nicht bei WWE ist, da er bestimmt falsch eingesetzt werden könnte. Und das er 2002 als Jobber für WWF gewrestlelt hat fand ich total überflüssig, sowas hat er echt nicht nötig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: dsierwrote on 20.03.2011:[9.0] "im ring eine klasse für sich und ausstrahlung hat er auch (als face). nur am mikro muss er sich noch ein wenig verbessern."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: xXxwrote on 16.03.2011:[10.0] "AJ zu Flair:" Oh yeah, and you are in TNA, the house that i built. " So wahr, jede Company hat seine Eckpfeiler an Stars und AJ ist ein massiver Eckpfeiler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: deuss00wrote on 25.02.2011:[10.0] "Einer der besten Wrestler die es zurzeit gibt und vieleicht geben wird. Sehr guter highflyer aber auch super Technicker. Am mic zwar nicht so gut hat sich aber sehr verbessert. Wird leider nicht so gepusht wie er es verdient hätte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Hu-Manwrote on 22.02.2011:[9.0] "Wrestlerisch 10 Punkte und damit einer der besten, die es momentan gibt. Leider wurde für ihn nie ein vernünftiger Charakter entwickelt. Ständig darf er die dämlichen Sitekicks von Angle, Christian oder Flair spielen. Ich hoffe, dass TNA es bald schafft AJ als ernsten Charakter aufzubauen und ihm einen dominanten Run gibt. Als Mitglied von Fourtune gefällt er mir momentan zeimlich gut... weiter so."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TAWPTierJustinwrote on 12.01.2011:[10.0] "AJ Styles is without any doubt whatsoever, one of the top 5 best superstars in TNA and even in it's entire history and in my opinion and I'm sure everybody else who is a big fan of his like I am would so agree with me on this is that he so needs to have multiple world title reigns in TNA cause AJ is so talented and so captivating and like I said, he is one of the best that TNA has on their roster and it's entire history and his matches are always great to watch. He's the no. 1 TNA original no doubt. When you think TNA, who do you think of right off the bat? AJ Styles! Why he isn't getting multiple TNA world heavyweight championship title reigns is just beyond me. I truly mean no disrespect to Mr. Anderson who is the world champion right now and is also my favorite superstar in TNA but god, when are we going to see AJ get another world title reign? ! Seriously! I know having the TV title is always great and all but god dammit, he deserves WAY more than what he's getting. At least he's the longest reigning TNA world heavyweight champion. That helps a lot but still."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: wrestler of the worldwrote on 24.12.2010:[10.0] "Einer der besten Wrestler der Welt. Man wird noch viel von ihm hören, da bin ich mir sicher"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The-Game91wrote on 05.12.2010:[6.0] "Selfmade TNA Material. Früher hat er mir viel besser gefallen so wie die Company selbst. Es ist wie als wäre er das Herz von TNA. Wenn TNA den bach runter geht tut er es auch."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jjchiofalowrote on 06.11.2010:[10.0] "I may not be the biggest fan of AJ, but I must say that he is one of the best wrestlers in the world today and one of the three best in TNA. His wrestling ability is perfection, and it makes up forhis weak mic skills, and his mediocre gimmick. AJ is TNA's bigest prospect, even if he isn't their best wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Whopperlewrote on 01.11.2010:[10.0] "Top-Mann! Einer der besten Wrestler die es aktuell gibt und verdient PWI500 #1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: dnstoniewrote on 24.10.2010:[8.0] "AJ hat uberragendes Talent und kann ein ganz großer werden. Leider wurde er bisher nie konsequent genug gepusht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Aesopwrote on 18.10.2010:[8.0] "AJ ist ein guter Worker keine Frage, doch auf Dauer wird er lanweilig und in letzter Zeit gefällt er mir auch nicht mehr so, bei ROH war er tatsächlich Phenomenal doch bei TNA ist er inzwischen alles andere als Phenomenal."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Homicide187wrote on 10.10.2010:[10.0] "Styles ist großartig. Früher in der Independent Scene fand ich ihn schon super und mittlerweile hat er sich auch bei TNA sehr gut entwickelt. Ich sehe ihn sogar als Star an, was TNA nicht mit vielen geschafft hat. Dazu kommen seine super InRing Leistung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Manu Adamswrote on 07.10.2010:[8.0] "Styles ist ohne Frage "Phenomenal". Er liefert herrvoragende Matches ab, zeigt desöfteren dass er auch am Mikrophon ordentlich ist und gilt bereits jetzt schon als TNA Legende. Hat fast alles erreicht was man bei TNA erreichen kann, finde allerdings genauso wie "Grobrhetoriker", dass er einen WWE Run in Kauf nehmen sollte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Marco2911wrote on 04.09.2010:[10.0] "Ein sehr guter Wrestler. Styles hat hat gute In Ring Skills, gutes Mic Work und die nötige Ausstrahlung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheAdaawrote on 19.08.2010:[8.0] "AJ Styles könnte das für TNA sein, was Shawn Michaels für die WWE war. Doch TNA versemmelt es sich in allen Punkten. Styles hat die nötigen In Ring Skills, das richtige Mic Work und die nötige Ausstrahlung. Leider hat man das bei TNA nicht erkannt. Styles wird unter Wert verkauft, was sein eher misslungener Run als Champion mehr als deutlich zeigt. Ich frage mich wann man Styles richtig aufbauen wird und wirklich zu Mr. TNA macht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Fall Out Boywrote on 19.08.2010:[10.0] "Der insgesamt erst zweite Wrestler dem ich die 10 Punkte gebe. AJ Styles hat für mich einfach alles und ist der wohl beste Highflyer des Main Stream Wrestlings. Die Face-Rolle passt perfekt zu ihm, sein aktuelles Heel-Gimmick ist deswegen eine Herausforderung, die er bisher aber perfekt meistert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Navidwrote on 18.08.2010:[9.0] "Ist AJ der beste Wrestler seiner Generation? Schwer zu sagen! Fakt ist, dass er mit seiner ehrlichen Leidenschaft für das was er tut die Fans mitreissen kann. Auch wenn seine Promos nie etwas besonderes sind entscheidet am Ende für mich immer das was im Ring geschieht. Und da ist er für aktuell der beste im Amerikanischen Pro Wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: nwowrote on 18.08.2010:[9.0] "Sehr guter Wrestler. Hat seinen Erfolg bei TNA wirklich verdient. Aber ich finde ihn unglaublich langweilig. Ich fand ihn schon als Heel langweilig aber als Babyface, ... na ja. EDIT: Hoppla, das muss ich dringend mal nach oben korrigieren. Mit Flair an seiner Seite mind. 9 Punkte. Leider wird er aktuell sehr schlecht eingesetzt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Finlay Thornwrote on 10.08.2010:[10.0] "Mit seinen großartigen Matches gegen Kurt Angle Anfang des Jahres hat mich AJ dazu gebracht, überhaupt erst mal TNA-Fan zu werden. Seitdem habe ich unzählige weitere Matches von ihm angeschaut und will mal behaupten, er ist der beste Wrestler, den ich je gesehen habe. Er ist seit Monaten meine absolute Nummer 1, gefällt mir auch am Mic (egal ob in der Heel- oder Face-Rolle, wobei ihm arrogante Heel-Promos imo etwas mehr liegen) und außerhalb des Business habe ich bislang auch nur Gutes über ihn gehört. Also absolut top!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Invaderwrote on 30.07.2010:[9.0] "Top worker but he came to a point of his career where he should change either his gimmick or the promotion. There is nothing left for him in TNA"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Carnevalewrote on 18.07.2010:[10.0] "Ohne wenn und aber einer der absoluten besten Wrestler überhaupt. In seinem Heel Gimmick hat er sein Mic Work zudem noch sehr verbessert, ganz klare 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: bigdaniel1992wrote on 13.07.2010:[10.0] "Hab mir jetzt denke ich gut 30, 40 Matches von ihm angesehen und bin wirklich überzeugt von ihm. Gute In-Ring Leistungen und stets gute Ausstrahlung bei seinen Kämpfen. Am Mic überzeugt er mich auch. Ich mag es besonders wenn er seine Gegner provoziert. xD Insgesamt hat er mich sehr überzeugt und ist für mich das Aushängeschild für TNA. Als ich noch nicht TNA angesehen hab kannte ich nur 3, 4 Wrestler bei TNA. Er war einer davon. 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Sandmannwrote on 04.05.2010:[8.0] "Das Aushängeschild von TNA. Eigentlich ein sehr guter Wrestler der aber für mich manchmal etwas zu, sagen wir mal, übermotiviert wirkt. Kenne ihn aus seinen ROH Zeiten und dort fand ich ihn immer ok. Hatte lange Zeit ein wirklich interessantes Repertoire an Moves die sonst keiner zeigte. Charismatisch sicherlich nicht in der Liga der Besten aber noch ganz ok."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: homicidal cena michaelswrote on 03.05.2010:[8.0] "Er zeigt oft gute Matches, und es ist jedes Match sehr actionreich. Aber er ist wrestlerisch weit unter einem Hero oder Bryan und sein derzeitiges Gimmik geht ja mal gar nicht. Er wirkt wie ein zweitet Flair und das er den gleichen Move wie Flair macht wirkt auch nicht wie der originale Styles. Da sieht man wie Mainstream Ligen Leute zerstören. Er soll wieder in den Indy Bereich wie Daniels kommen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Denzwrote on 01.05.2010:[10.0] "Der Wrestler, der seit Tag 1 bei TNA Wrestling auftritt. Er ist sehr gut als Techniker und High-Flyer. Er strahlt im Ring zwar Charisma aus, aber seine Mic-Skills sind nur durchschnitt. Der Vertabreaker, den er Styles-Clash nennt passt als Finishing Move zu ihm. Ich weiß, dass er noch eine großartige Zukunft vor sich haben wird.  10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Damon Strikerwrote on 30.04.2010:[10.0] "Was er im Ring zeigt, gehört mit zum besten, was es momentan zu sehen gibt! Sicher gibt es Wrestler mit mehr Charisma und besseren Mic-Skills aber er macht sich und bewegt sich im oberen Mittelfeld. Ausserdem kann man sagen, was man will aber aus jeder neuen Charakterausrichtung kann er mehr oder weniger was machen - egal wie gut oder schlecht die Idee ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: RickRollwrote on 18.04.2010:[8.0] "Ein KLEIN wenig überbewertet, dennoch ist AJ ein guter Wrestler, der mich in TNA, aber auch im Indy Bereich mit seinen innovativen Spots, so wie gute technische Moves beeindrucken kann"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Eddiewrote on 13.04.2010:[10.0] "2002 bei TNA, ROH und auch 2003 noch unglaublich und "Phenomenal" weil er Sachen machte, die es so noch nicht gegeben hat, aber irgendwie ist es doch immer das selbe Programm, zumindest mittlerweile, damals 10, heute "nur" noch 8 Punkte. Vielleicht hilft ihm ja ein hoffentlich baldiger World Title Run weiter. Edit: Mittlerweile wieder eine Aufwertung auf die vollen 10. Er zeigt nicht nur Standartprogramm sondern workt seine Matches wieder geil und erzählt nette Geschichten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Jar Jar Binkswrote on 07.04.2010:[9.0] "Unglaubicher Wrestler!  Ich würde mich, selbst wenn ich selten TNA schaue, als AJ Fan bezeichnen. Diese Technik und trotzdem so eine Härte im Ring, das ist richtig Stark. Genialer Mann!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: 3durch16wrote on 14.03.2010:[4.0] "Wrestlerisch top, gehört eindeutig zu den besten. Aber sein derzeitiges Gimmick ist ja echt peinlich. Micwork auch nur durchschnitt"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: El-Chupakneebraywrote on 08.03.2010:[7.0] "[-3] In vergangenen Tagen war ich ja ein großer Styles Fan. Er hat mich in vielen seiner Matches außerordentlich gut unterhalten. 2002 die Matches um den X-Division Titel mit Jerry Lynn und Low-Ki waren klasse. 2006 gegen Matt Sydal bei ROH war groß, die Fehde 2005/2006 bei TNA mit Joe und Daniels um den X-Division Titel war episch und auch 2005 im Steel-Cage Match gegen Abyss konnte er mehr als überzeugen. In den letzten Jahren kamen großartige Matches aber leider seltener als damals vor. Wo früher der Name AJ Styles für hervorragende Matches stand ist heute nur noch durchschnittskost angesagt. 2008/2009 gab es Top-Matches eigentlich nur noch gegen Angle und in der Neuauflage der Fehde mit Joe und Daniels. Im Jahre 2010 wirkt er als Champion neben Ric Flair wie nutzloses Beiwerk und auch die Matchqualität hat durch seine Heel-Ausrichtung stark nachgelassen. AJ Styles kann mich momentan nicht mehr begeistern."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Rated R Superstar EDGEwrote on 03.03.2010:[9.0] "AJ Styles ist im Ring mit Ausnahme von Kurt Angle der beste bei TNAW. Am Mic ist er Solide und eine Superstar Ausstrahlung besitzt er in abgeschwächter Form auch. Zu dem ist er einer der loyalsten Worker die ich kenne. Außerdem ist er ein TNAW Eigengewäcks. Wäre er am Mic besser würde ich klar die 10 geben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cruchkorpwrote on 26.02.2010:[8.0] "Ein guter Wrestler, vor allem wenn man auf akrobatische, schnelle Aktionen steht. Look ist ok und sein Finisher der Styles Clash gefällt mir sehr gut, da er aus verschiedensten Situation heraus kommen kann. AJ war aber die letzten Jahre trotzden großer Beliebtheit nie in der Lage wirklich einen Charakter zu verkörpern, der sich im Mainevent halten kann. Ob das mit Ric Flair an seiner Seite besser wird steht noch ein wenig in den Sternen, vieles daran gefällt mir, vieles finde ich aber auch nur zum heulen. Zumindest ist es spannend diese Entwicklung zu verfolgen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Fat Mikewrote on 24.02.2010:[8.0] "Am Liebsten würde ich AJ die volle Punktzahl geben, da seine Matches eigentlich immer überzeugen und er im Ring extrem unterhaltsam ist. Aber da liegt der Knackpunkt! Außerhalb des Rings sieht es da ganz anders aus. Die Ausstrahlung ist zwar vorhanden aber am Mikro wirkt alles einfach zu sehr aufgesetzt. Sorry, AJ!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Switchbladewrote on 22.02.2010:[8.0] "Er hat sich im Ring verbessert und auch am Mic, ist zwar noch nicht überragend aber schon ganz gut."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Mick Funkwrote on 16.02.2010:[8.0] "Richtig genial im Ring, aber mMn mangelt es doch an Ausstrahlung und Top Star Qualitäten. Das neue Flair Gimmick ist sicherlich umstritten, gefällt mir aber sehr gut. Auch am Mic ist Styles an der Seite von Flair ziemlich unterhaltsam. Endlich ein richtiger Champ."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: tnawrestlingfanwrote on 09.02.2010:[9.0] "Er ist ein toller Wrestler für den sich IMPACT gucken lohnt und ich verstehe nicht, dass Hogan ihn dafür mit verantwortlich macht das IMPACT so schlechte Ratings hat. Ich hoffe wirklich, dass sich weder sein style, noch Gimmick oder sein name ändert."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Fountain of Misinformationwrote on 23.01.2010:[8.0] "Toller und begeisternder Wrestler, kommt aber rüber wie ein 08/15-Indyworker (durchschnittlicher Körperbau, lahmes Gear, der ganze Auftritt usw. ) und hat daher kaum eine "Superstar-Ausstrahlung", etwas was er sich im fahlen Licht der TNA-Spotlights wohl auch nicht mehr aneignen wird. Man kann nur hoffen, dass er TNA nicht auf alle Zeit loyal und treu bleibt und das hohe Risiko eines WWE-Runs in Kauf nimmt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DragonSleeperwrote on 18.01.2010:[10.0] "Fürchte mich etwas vor seinem angebahnten Heel Turn, aber trotzdem bleibt er ein super Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Unrated Superstarwrote on 18.01.2010:[9.0] "Genau der Mann den TNA momentan braucht und keine ausgedienten Opas wie die Nastys oder Ex-WWE'ler wie Hardy. Styles ist ein echtes TNA-Urgestein und steht für die Liga wie kaum ein anderer. Sicher, er hat noch nicht die Staraura eines HBK's oder Randy Ortons, aber das kann noch werden. Dafür kann er aber mit 1A-In Ring Skills punkten von denen ein Jeff Hardy nur träumen kann. Leider baumt TNA derzeit NUR auf ihn und vernachlässigt seine Kollegen Joe und Daniels."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ThePopewrote on 16.01.2010:[9.0] "von mir gibts 9 punkte aus dem einfachen grund das er meiner meinung nach zwar die besten in ring fähigkeiten hat, allerdings finde ich seine leistungen am mic ziemlich mau."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: HeartBKwrote on 13.01.2010:[9.0] "Er hat mich überzeugt! Super Techniker und sehr Charismaticher Typ. Ich denke, er ist auf einem guten Weg ein Topstar im Wrestlingbusiness zu werden! Ausserdem ist er ein Aushängeschild und Gesicht von TNA! Weiter So!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: element-41wrote on 12.01.2010:[10.0] "Phänomenaler Techniker und High Flyer! Seine In-Ring Fähigkeiten sind um es so zu sagen einfach der Hammer. Er hat den Push ins Main Event und den folgenden Gewinn des TNA Heavyweight Titels 100 prozentig verdient. Er liefert geniale Matches, wie zuletzt gegen Angle, Joe oder Daniels. Meiner Meinung nach ist er das Gesicht von TNA und hat das Zeug zur Legende! 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Scotty 2 Hottywrote on 08.01.2010:[6.0] "Ähnlich wie es bei Samoa Joe der Fall ist, kann ich mich für AJ Styles nicht so begeistern, wie ich es gerne würde. Im Ring ist er ohne Frage stark, aber irgendwie werde ich mit ihm nicht wirklich warm."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Mathias Rekaschwrote on 04.01.2010:[8.0] "Styles ist ein fast schon herausragender Wrestler mit der richtigen Einstellung zum Business und der absoluten Aufopferung in seinen Matches. Doch in meinem Augen fehlt ihm dass, was schon anderen Leuten wie Malenko oder Benoit zum Verhängnis geworden ist - das Charisma, die Besonderheit. Alle seine Runs an der Spitze der Company haben deutlich gezeigt, dass er als Champion nicht so glänzen kann wie die Angles, Stings oder Cenas, denen er wrestlerisch gleichzusetzen ist oder sie sogar übertrumpft. Aktuell ist sicherlich auch der Hype um Hogan ein Problem, doch als Ausrede reicht dies einfach nicht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TNA Fan14wrote on 02.01.2010:[10.0] "AJ ist ein klasse Wrestler mit guten in-Ring skills"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: downtown2wrote on 15.12.2009:[9.0] "Noch nie habe ich eine solch physische Kontrolle gesehen wie bei diesem Wrestler, die Einlagen im Ring und die Übersicht machen ihn außergewöhnlich und unverwechselbar. Da kommt fast niemand hin, man kommt in der Regel aus dem Staunen nicht mehr raus. Und das ohne den Mattenkampf zu vernachlässigen, toll. Für meine Begriffe der wahre Mr. TNA, der Inbegriff der X Division und auch ein wenig Fähigkeiten am Mikro. AJ Styles hat auch irgendwie Ausstrahlung, nur auf eine sehr herkömmliche Art. Er wirkt wie ein Bursche aus der Bauerndisko, sehr gewöhnlich. Das muss seiner Karriere keinen Abbruch tun, im Gegenteil, auf lange Sicht ist ein durchschaubarer Charakter bei den Zuschauern beliebter."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Killerswitchwrote on 22.11.2009:[10.0] "AJ überzeugt im Ring und auch ausserhalb. Allein das Micwork könnte er verbessern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Theron083wrote on 28.10.2009:[8.0] "Ist schon sehr gut im Ring, aber ich find ihn als Charakter irgendwie nicht sooo interessant. Mic Work ist Durchschnitt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Telecinewrote on 25.10.2009:[8.0] "Ein fantastischer Wrestler. Früher war er einfach ein Highflyer wie er im Buch steht und hat mit seinen atemberaubenden Aktionen die Fans begeistert. Ich finde es aber auch durchaus gut, dass er nun ein bisschen zurückschaltet und sich mehr auf technisches Wrestling und Ringpsychologie konzentriert, denn das macht seine Matches wesentlich interessanter und das ist es auch, was vielen Highflyern und Spotmonkeys in der Wrestling-Welt fehlt. Ein Match wird nicht zum guten Match, indem man tausende halsbrecherische Aktionen aneinander reiht (obwohl das natürlich auch helfen kann^^). Am Mic gefällt mir AJ nichts soo gut, aber schlecht ist er trotzdem nicht, daher die 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kurt Winkelwrote on 20.10.2009:[9.0] "AJ Styles ist hervorragend im Ring, daran besteht kein Zweifel. Leider überzeugt er mich einfach nicht, wenn er am Mic ist, was vermutlich zuletzt daran liegt, dass er dort immer einen recht "bübischen" Eindruck macht. Ich hoffe, er entwickelt sich noch weiter, was das angeht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BoeserLobowrote on 05.10.2009:[10.0] "Wrestler mit sehr guten High-Flying-Fähigkeiten. Innovativ mit neuen Moves. Sehr guter Mic-Worker. Hatte die X-Devision zum absoluten Highlight innerhalb der TNA geführt. Sehr gute Storylines."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Big Bad Booty Babywrote on 26.09.2009:[9.0] "Ohne Zweifel ist Styles einer der spektakulärsten Wrestler bei TNA. Zudem ist er einer der charimatischsten Flummis die ich kenne. Auch seine Promos sind mehr als durchschnittlich. Obwohl ich ein großer Fan von ihm bin, war und ist er für mich kein richtiger Main Eventer. Irgendetwas scheint bei ihm zu fehlen, ihm fehlt einfach etwas Einzigartiges, was seinen Platz im ME rechtfertigt. Er hat alles, um im ME stehen zu können, aber mir fällt nichts ein, warum er es muss. Trotzdem hat er den Titel verdient wie kein anderer und ich lasse mich gerne vom Gegenteil überzeugen. Go, AJ!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wizz21wrote on 25.09.2009:[10.0] "Vergesst Jeff Jarrett , AJ ist der einzig wahre Mr. TNA! Was hab ich mich gefreut als er bei No Surrender endlich wieder World Champion geworden ist. Hatte schon sehr lange keinen derartigen Mark-Out mehr ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: batze22wrote on 23.09.2009:[10.0] "Einfach nur Phenomenal. Gott sei dank hat TNA entlich eingesehen das AJ der perfekte wrestler ist um den titel zu halten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Miteamexicowrote on 22.09.2009:[9.0] "Er ist einfach die Zukunft von TNA und von ihm sieht man immer Top Leistung, würde mich aber sehr freuen wenn er mal zu WWE kommt und da seinen weg geht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Samoain Joewrote on 22.09.2009:[10.0] "Er vereint alles in einer Person. Er ist ein guter Techniker, hat alles an Basis- und Mattenwrestling drauf was man braucht und ist mit Abstand der inovativste Highflyer, den ich bisher gesehen habe. Am Mikrofon hat er noch gewisse Defizite, die jedoch auch mit jedem Jahr immer geringer werden. Kein Wrestler hat mich in den letzten so sehr im Ring begeistert wie AJ Styles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: stinger89wrote on 22.09.2009:[10.0] "Der Garant für Spitzenmatches bei TNA neben Joe und Angle. Am Mic solide im Ring einfach "phänomenal" ;-) Ich hoffe er geht nicht zur WWE Edit: Endlcih Champ und ich hoffe er schickt den Stinger bei BfG in den wohlverdienten Ruhestand. Einen besseren Gegner für sein Abschlussmatch kann der Stinger wohl kaum kriegen!  Ich hoffe bei TNA bricht jetzt die Zeit der "Eigengewächse" an...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wichtgestaltwrote on 21.09.2009:[9.0] "Tja, was soll ich sagen... AJ ist mir im Laufe der Zeit immer mehr ans Herz gewachsen und für mich der Grund, mir weiterhin TNA anzuschauen. Ich hoffe, dass er mit diesem Run endlich, zusammen mit Samoa Joe, Hernandez, Christpher Daniels, Eric Young und Suicide, zum neuen Aushängeschild von TNA wird und es somit schafft eine neue belebende Konkurrenz zur WWE zur schaffen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: mongowrote on 17.09.2009:[10.0] "Einfach phänomenal! Einer der größten Techniker und High Flyer im Ring, jede Menge Charisma und grandios am Mic. AJ ist die perfekte Kombination."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DJ MaSchwrote on 12.09.2009:[10.0] "Simply phenomenal! Im Ring eine Granate. Am Mic nicht so schlecht wie er oft gemacht wird und das er die Aura eines Stars hat sollte man mittlerweile auch bei TNA bemerkt haben, die ja erfolglos mit aller Gewalt versucht haben ihn unten zu halten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: billygunnwrote on 03.09.2009:[10.0] "Zeigt sehr schöne Matches (z. B. AJ vs. Lynn vs. Low-Ki vs. Psychosis), hat sich super entwickelt seitdem er bei TNAW ist und ist verständlich sehr beliebt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: teekay86wrote on 25.08.2009:[9.0] "Einer jener Worker auf die TNA unbedings bauen sollte. Anstatt Steiner, Foley, Booker T und Kevin Nash die alle ihre besten Jahre hinter sich haben sollten Samoa Joe, AJ Styles, Hernandez und Matt Morgan im Fokus der Shows stehen. Stattdessen ist Styles meistens ganz nah dran am ME, schafft es jedoch nicht dauerhaft sich dort zu etablieren. Hoffen wir das TNA die Andeutung wahr macht und Styles als glaubhaften nachfolger von Sting als Top-Face präsentiert"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Atze19wrote on 12.08.2009:[10.0] "Mr. TNA, Simply Phenomenal. Der vierte World Titelgewinn ist nur noch eine Frage der Zeit. 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: T-Waynewrote on 04.08.2009:[9.0] "Super charimatisch und wrestlerisch auch stark. Einer der Besten bei TNA."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Aquifelwrote on 14.07.2009:[10.0] "Am Mic sicherlich nicht perfekt, aber im Ring atemberaubend. Zwar wirkt es ab und an mal so, als ob er von seinen Trademarks und Highflying Aktionen lebt, aber er hat oft genug bewiesen, dass er es auch technisch drauf hat. Schade, dass die TNA ihm irgendwie nicht so wirklich eine CHance gibt, trotz der entsprechenden Leistung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Vanniwrote on 11.07.2009:[8.0] "Sehr stark im Ring, am Mic auch ziemlich gewitzt. Macht immer wieder Spaß ihn zu sehen. Leider wird er bei TNA oft hinter die älteren, aber lange etablierten Superstars gestellt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: wweinspectorwrote on 15.06.2009:[10.0] "Einer der Gründe warum ich ab und zu TNA gucke. Ein toller Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Mountiewrote on 27.04.2009:[8.0] "Das Duracell-Männchen von TNA Wrestling: Läuft und läuft und läuft und ist aus der Liga nicht wegzudenken. Aber dort der 1b-Main-Eventer fürs Leben zu sein, der alle sechs Monate mal in einem großen Multi-Man-Match aus acht Meter Höhe auf alle anderen herunterspringt, ist wohl sein Schicksal. Wobei es keine himmelsschreiende Ungerechtigkeit ist: Abseits seiner athletischen Begabung fehlt AJ einfach das letzte Quäntchen Etwas, das AJ als unumschränkten Top Dog wirklich langfristig interessant machen würde. Es hat ihm unheimlich gut getan, als abgedrehter Nerd-Heel zwischenzeitlich mal eine andere Seite von sich zu zeigen, jetzt ist er leider wieder genau in den White-Meat-Charakter zurückgefallen, der sich zuvor so totgelaufen hat. Es drängt sich wirklich ein bisschen die Frage auf, was er bei TNA noch erreichen mag? Von einem Wechsel zur WWE würde ich dennoch dringend abraten. Die Aktie AJ hätte bei diesem Makler bei weitem nicht den Wert, den sie bei ihrem aktuellen hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CM Punk Mitbwinnerwrote on 15.04.2009:[9.0] "Guter Techniker, wenn er so weiter macht könnte er in die WWE und müsste sich vor Leuten wie Evan Bourne und Jack Swagger nicht verstecken."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BaptisteZorGwrote on 29.01.2009:[9.0] "Neben Joe der beste Wrestler der von anfang an bei TNA war. Am Mic hat er sicherlich noch einige schwächen, aber seine InRingSkills sind immer wieder aufs neue beeindruckend. 9 punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ShakDragoonwrote on 20.01.2009:[9.0] "Sehr guter Techniker und Highflyer, der auch durchaus gut mit Brawlern arbeiten kann... AJ Styles kann noch einiges erreichen, obwohl er bei TNA zuletzt etwas in der Luft hing. Naja als Tag Team Champion gemeinsam mit Tomko war er Gold wert. Im Moment bin ich sehr froh, dass er sich als Anführer der Front Line im Main Event festbeißen konnte. Weiter so!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GR81wrote on 16.01.2009:[10.0] "Hab letztens bei Impact ein Plakat gesehen, mit der Aufschrift "On the 8th day God created AJ Styles! " Dem kann ich mich nur anschließen! AJ Styles ist in allen Belangen absolut weltklasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Eaterwrote on 11.12.2008:[10.0] "TNA-Urgestein, das früher überwiegend durch seine Aufsehen erregenden Leistungen im Ring auffiel, mittlerweile allerdings noch dazu ein facettenreiches charismatisches Gimmick entwickeln konnte. Dies war ein nötiger Schritt auf dem Weg zum Topstar und AJ Styles gehört zweifellos zu den ganz großen Hoffnungsträgern im US-Mainstreambereich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: King of Queenswrote on 03.12.2008:[9.0] "Phänomenaler Techniker, großartiger Highflyer. AJ Styles verkörpert beide Styles sehr gut und hält im Ring mit den großen des Sports mit. Ich bin gespannt, wie er sich, falls er denn zur WWE kommen würde, in Vinnies Promotion machen würde..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Instant Classicwrote on 26.11.2008:[8.0] "Hat sich zu einem wirklich guten Micworker entwickelt, im Ring jedoch sehr spotlastig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: rv27wrote on 16.11.2008:[10.0] "Zu ihm fällt mir leider nur ein Wort ein ATEMBERAUBEND!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Babuswrote on 06.11.2008:[10.0] "Auch wenn das ganze Styles-Gebashe vielleicht smart wirken mag, aber Fakt ist, dass fast jedes seiner Matches mindestens sehenswert ist. Fakt ist auch, dass Styles over wie sau ist und damit wohl auch ein gewisses Mindestmaß an Charisma überschreiten dürfte. Und vor allem ist Fakt, dass kein Wrestler TNA so verkörpert wie AJ Styles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: domi1984wrote on 05.11.2008:[10.0] "AJ Styles ist ein toller Worker. Er hat In Ring skills, einen tollen Finisher und verfügt über Mic Work. Ich hoffe, das er bald an der Spitze der Liga steht, denn das Zeug dazu hat er allemal!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Akkuswrote on 05.11.2008:[9.0] "Ein Grund warum ich erst TNA geguckt habe, im Ring hat er verdammt viel drauf und auch so überzeugt er!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Die Gurkewrote on 03.11.2008:[9.0] "Ist mit Sicherheit einer der Gründe warum TNA so weit gekommen ist. Wrestlerisch Top, seine Ring of Honor Matches sind einfach nur phenomenal :)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Baldrickwrote on 01.11.2008:[10.0] "Hat mich überhaupt erst dazu gebracht, mich für TNA zu interissieren. Kann Alles, will Alles, IST Alles für TNA! Wird spätestens in 4-5 Jahren seinem spektakulären Stil Tribut zollen müssen, besitzt aber mehr als genug Ringintelligenz um das sauber wett zu machen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Blazewrote on 26.10.2008:[9.0] "AJ ist nicht nur ein guter Techniker und klasse Highflyer, er ist prägend für die gesamte X Division gewesen wie kaum ein anderer. Bei TNA ist er ja schon weit oben, aber hoffentlich schafft er es dauerhaft an die Spitze von TNA und verdrängt zusammen mit Joe die alten WWE Urgesteine etwas aus dem Titelrennen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: alkoholiKAwrote on 17.10.2008:[10.0] ""The Phenomenal One" verdient auf jeden fall die 10. im Ring sowohl technisch stark als auch unglaublig unterhaltsam. einer großartiger High-Flyer. habe leider die anfänglichen Zeiten von TNA nicht verfolgt allerdings wird AJ nun endlich wieder richtig eingesetzt, anstatt wie zuletzt nur als trotteligen Idioten darzustellen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Marcywrote on 18.09.2008:[9.0] "Hat gute In-Ring Skills und ist am Mikrofon auch besser geworden, aber irgendwie wiederholt er sich nur noch in seinen Matches. Hab mich ein wenig an ihm sattgesehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Tomkowrote on 13.09.2008:[10.0] "Für mich der beste TNA-Worker, da seine Technik unglaublich ist. Ich persönlich habe noch nie so innovative Moves in einer Mainstream-Liga gesehen. Seine Akrobatik zeigt mir warum ich Wrestling so liebe. Seine Match-Folgen mit dem Fallen Angel und Samoa Joe sind legendär, seine X-Division-Schlachten unglaublich und seine jetzige Fehde mit Kurt Angle einfach nur unglaublich. In einem Wort: Er ist "PHENOMENAL" !  Keine 10 Punkte für ihn? ! ? Für wen den sonst? ! ?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: smokiewrote on 01.09.2008:[9.0] "Früher war er einfach ein grandioser In Ring Performer aber seit seiner Zeit als Heel hat er auch noch an Austrahlung Mic-Work und Gimmick enorm verbessert und brauch sich vor keinem mehr verstecken. Außerdem hat er sich im Ring zu einem ernst zu nehmendem Heavyweight Wrestler entwickelt und keiner kann mehr behaupten er sei ein Spot Monckey. Ein Traum wäre ein BFG Main Event Match um den World Titel gegen Samoa Joe in 1-2 Jahren"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rey2004wrote on 24.08.2008:[9.0] "Was Sting für die WCW und Shane Douglas für die ECW waren, ist AJ Styles für die TNA. Ein ganz großer in diesem Sport."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Joeevil123wrote on 03.08.2008:[10.0] "Er hat einfach alles was ein Wrestler braucht!  Seine Wrestlerrischen Qualitäten sind ohne Frage grandios. Charisma besitzt er und am Mic ist er auch solide. TOP!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MacDanielwrote on 18.07.2008:[10.0] "Einer meiner Top 3 Wrestler. Hat für mich die besten In Ring Skills und begeistert mich bei jedem Match neu. Am Mic sicherlich kein Gott, aber meiner Meinung nach reicht das ganze völlig aus und mit seinem Charisma und seinen Ringskills macht er dieses kleine Defizit hundertprozentig wieder wett."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: gerybundy68wrote on 16.07.2008:[10.0] "Er hat allles was man braucht um an der Spitze zu stehen. Gutes Mic-Work, Charisma und eine grandiose Technik. Ich denke er kommt als Face besser rüber. Klasse Fehde mit Kurt Angle. Hier kann es noch zu einigen denkwürdigen Mastches kommen. Als TNA Urgestein eines der Aushängeschilder der Liga. Auch wenn man mit solchen Aussagen vorsichtig sein sollte - für mich im Moment der beste Techniker im Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Desperadowrote on 12.07.2008:[9.0] "Sehr guter Highflyer mit Charisma und auch gutem Mic-Work. Seine Fehde gegen Angle gefällt mir gut, AJ sollte auf alle Fälle Face bleiben. Leider denke ich, dass er über seinen derzeitigen Status nicht hinauskommen wird, weil er einfach etwas zu klein ist und die Main Event Heavyweights meistens doch bevorzugt werden. Aber vielleicht täusche ich mich ja. Sonst kann man nur sagen, dass er dadurch, dass er auch sehr gut Submission Style mitgehen kann "simply phenomenal" ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LordTrailerwrote on 10.07.2008:[8.0] "Styles ist natürlich eine Bombe im Ring und auch wenn es recht spotlastig ist, kann er auch anders. Als echtes TNA Urgestein hat er in der Liga schon alles mitgemacht. Leider fehlt im trotz Christian Cage (noch) etwas Charisma. Wenn er das weiter steigert, wie zuletzt ist er endlich komplett."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Sandman16wrote on 04.07.2008:[9.0] "Im Ring hat er so gut wie alles drauf und auch außerhalb dessen, hat er sich in den letzten Jahren verbessert. Gern seh ich in sowieso, aber irgendwie macht es jetzt noch mehr Spaß ihm zu zu schauen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MBLegendwrote on 21.06.2008:[10.0] "Er ist ein absoluter Weltklassemann. Durch seinen ringerischen Hintergrund weiß er auch technisch zu überzeugen. Als Highflyer sehe ich ihn als einen der Besten überhaupt. Was er in der Anfangszeit von TNA und in der Fehde gegen Joe and Daniels gezeigt hat, rechfertigt eine sehr gute Bewertung. Am Mic hat er allerdings noch Potenzial."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Shikawrote on 20.06.2008:[9.0] "Einer meiner absoluten Favs. Im Ring wohl einer der besten. Am Mic fehlt zwar noch ein wenig aber seit Anfang der Christian Coalition wird es immer besser"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Stalker1987wrote on 13.06.2008:[10.0] "Ganz klar Mr. TNA ... seit dem 1. monatlichen PPV hat er jede Großveranstaltung mitgemacht. AJ Styles ist für TNA was Sting für die WCW war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Champwrote on 11.06.2008:[10.0] "Mein absoluter lieblings TNA-Wrestler. Ein grund um überhaupt TNA zu schauen. Genialer Wrestler, klasse Mic-Worker. Verdient der "Prince of Phenomenal"!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JohnnyCashwrote on 28.05.2008:[8.0] "AJ fehlt es einfach noch an Mic-skills. Allerdings sehe ich hier wenigstens eine Verbesserung. Was mich viel mehr stört ist die Leidenschaft. Diese fehlt nämlich mitlerweile. Trotz allem einer meiner Favoriten deshalb die gute 2. Hoffe er zwingt mich irgendwann durch Leistung sie zu ändern."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ThePrinceOfPunkwrote on 05.05.2008:[10.0] "AJ Styles ist wohl der beste und spektakulärste wrestler den ich je gesehen habe nurnoch übertroffen durch bret hart und"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Muffiwrote on 17.04.2008:[8.0] "Früher mal der Mann bei TNA, sehe ihn mir zwar noch gerne an, aber hat schon ein wenig abgebaut."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Buygymakewrote on 13.04.2008:[10.0] "Ist ein Aushängeschild von TNA neben Samoa Joe, auch wenn ich zugeben muss das er im Moment auch durch sein Gimmick nicht das abrufen kann / tut was er eigentlich drauf hat, ist er ein genialer Wrestler. Man muss sich nur die X Divsion Matches von ihm ansehen genial. Und am mic hat er sich sehr weiter entwickelt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kaffoe 666wrote on 26.03.2008:[2.0] "Unsympatisch & uninteressant... nervt mich tierisch. In Multiman Matches und Fights gegen die passenden Gegner noch so erträglich..."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Urbaner1982wrote on 26.03.2008:[10.0] "Ganz, ganz groß! Da ich den gesamten Karrierelauf vom Styles kenne (gut, ich kann ihn jetzt natürlich nicht komplett abrufen :-)) kann ich nur ne 1 geben. DAS ist TNA! Wir sind Wrestling! Ja, mit den Styles ist das auch der Fall. Genau der Mann macht zusammen mit sämtlichen X-divison Stars, TNA aus. Zusammen mit Tomko ein sehr gutes Team (wenn sie sich verstehen). Auch das neue "Prince of Phenomenal" Gimmick mit dieser genialen Krone, ist göttlich. AJ Styles: Vom Trailerpark-Assi zum Prince TNA, Prince of Romantic, Prince of Technik" Wow!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Aaronwrote on 10.03.2008:[6.0] "Ich finde ihn absolut nicht mehr berauschend und sein Highflying ist absolut abgenutzt!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Amurebkuwrote on 17.02.2008:[10.0] "TNAW hat einen so tollen Wrestler, einen solchen Star und nutzt dieses voll nicht aus. AJ Styles gefällt mir als Wrestler. Er ist klasse im Ring. Toller Techniker. Ich finde er gehört zu dem besten was TNAW derzeit zu bieten hat. Aber die setzen lieber auf alternde Stars und geben den jungen zu wenig Chancen. Sein Mic-Work ist nicht ganz so beeindruckend aber überzeugt momentan viel mehr als vorher."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Joe710wrote on 01.02.2008:[10.0] "AJ Styles ist wahrlich ein Phänomen. 2004/2005 war es dieser innovative und verrückte Wrestler, der diese unglaublichen Aktionen gezeigt hat und sich alle fragten, "Wie hat er das denn gemacht". Heute unterstellen ihm viele er hätte nachgelassen. Ich bin der Meinung, er hat sich nur weiterentwickelt, was man nicht von allen Wrestlern seiner Gattung behaupten kann. Er hat von seiner Heel Zeit unglaublich profitiert und wirkt zurzeit auch viel interessanter und nicht mehr so eintönig. Ich bin der festen Überzeugung, dass da noch viel Luft nach oben vorhanden ist. Ich glaube in Zukunft wird man noch einiges von ihm hören."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AnFuwrote on 04.01.2008:[8.0] "Ein klasse Highflyer und im Ring einer der besten Wrestler von TNA. Das Aushängeschild der X-Division, hat aber irgendwann aufgehört sich zu entwickeln, neben den namenhaften Stars bei TNA jetzt auch ohne Chancen. Gerade noch die 2!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ghostwrote on 03.01.2008:[6.0] "Was er im Ring macht is PHÄNOMENAL! :) Aber am Mic bzw. von der Show-Seite her gesehen eher mittelmässig.. Mir gefällt auch sein TNA-On-Air als ängstlicher, harmonie-süchtiger Character nicht besonders gut - würde ihn lieber in einer arroganteren, selbstbewussteren Rolle sehen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jimpanse1980wrote on 30.12.2007:[10.0] "Auch wenn mir sein aktuelles Nerd-Gimmik nicht gefällt, so ist er doch einer der Wenigen, der keinen Titel braucht um ganz oben zu stehen. Zudem ist er in der Lage sich weiter zu entwickeln und seine Leistungen stagnieren nicht. Braucht aber mal wieder anständige Gegner/Fehden ohne Tomko und sollte nicht weiter hinter den alten WWElern stehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MA Excellentwrote on 30.12.2007:[8.0] "AJ ist wirklich extrem talentiert! Mir fällt in Sachen "Technical Wrestling" kein besserer Mann ein. Auch seine Auftritte als Christians nerdiger Sidekick und Tomkos schräger Tag-Partner rulen. Es kommen also alle positiven Eigenschaften zusammen, die ein Top-Wrestler braucht. Da ist nur ein Problem, ihm (und Joe) stehen die Altstars vor der Nase. Um seinen Status zu verbessern, müsste TNA ihm (und Joe) irgendwann mal cleane Siege über Angle, Cage, Booker, JJ & Co. geben. Dann gibt es auch von mir die 1."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Texas Tornardowrote on 16.12.2007:[6.0] "Bei ROH hat er gefallen, bei TNAW hat er sehr abgebaut!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Neowrote on 09.12.2007:[6.0] "schon nen echt guter Wrestler, hat aber vergessen sich weiter zu entwickeln. Mittlerweile auch nicht mehr so farblos wie damals."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: donnerwrote on 21.11.2007:[8.0] "War früher mal ein Top-Wrestler aber er wurde schon von vielen anderen überholt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Hennewrote on 14.11.2007:[8.0] "Von mir gibts nur ne 2, weil er mich bei seinem Auftritt bei der ersten PWG Show in Essen mal überhaupt gar nicht überzeugt hat. Klar, war das "nur" eine von vielen Indy Shows und bei ROH oder TNA PPVs zeigt er deutlich mehr, aber ich bin doch enttäuscht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: darksaber999wrote on 29.10.2007:[4.0] "Kennt das Wort "Fanfreundlichkeit" nicht! Im Ring leider nur noch 0815, und Live ein ziemliches Arschloch!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Benny110106wrote on 28.10.2007:[10.0] "Eigentlich passt alles wie bei Daniels, aber A. J. ist jederzeit dafür gut World Champ zu werden und der erfolgreichste Wrestler in der TNA-Geschichte, daher die 1 ! Ich hoffe er wird bald wieder Champ !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Thomas Carlsonwrote on 28.10.2007:[8.0] "Es gibt anscheinend 2 AJ Styles. Einmal derjenige der in seinen Matches überzeugt und der andere der nur Standard Zeug bringt. Gut das ich nur den einen gesehen habe. Ist ein großes Risiko eingegangen als er den Development Vertrag abgelehnt hat. Inzwischen braucht er die WWE wohl auch nicht mehr. Wird er wohl eh kaum machen wegen dem Tourstress. Ist mir als Heel lieber. Als Face wirkt er immer etwas farblos."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Blue Meaniewrote on 08.10.2007:[10.0] "Wenn ich hier lese, dass AJ Styles overrated sein soll, frage ich mich ernsthaft, ob es Leute gibt, die alle Main-Stream Wrestler für overrated halten ... AJ ist einfach genial! Kann mich sowohl technisch, als auch Highflying mäßig meist überzeugen. Am Mic ist er dann aber doch eher nicht so toll und als Heel geht er mal gar nicht! Finde es zudem schade, dass er mittlerweile nur noch ein Midcarder ist, wo er doch von Anfang an, neben Jeff Jarrett, DAS TNA Aushängeschild war. Hoffe mal, dass er bald wieder Face turnen darf und dann mal besser gebookt wird, Uppercard ist da schon das Minimum!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: WCWlerwrote on 23.09.2007:[10.0] "Ein fantastischer Wrestler. Hat sehr gute Aktionen drauf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Nick Toxicwrote on 22.09.2007:[10.0] "Un-freakinŽ-believable! Der Mann weis jedesmal zu überraschen. Als Face der Mann überhaupt und als (Comedy-)Heel echt zum schreien komisch. Glatte 10, was anderes geht hier garnicht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Alex Shelleywrote on 18.09.2007:[6.0] "Zuletzt mit leichten Tendenzen nach oben. Dennoch: Weit weg vom AJ Styles 2002-2004! Aber wenigstens hat man es geschafft, seine wirkliche Überheblichkeit auch vor der Kamera in Szene zu setzen. Kommt sogar an *g*."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: caterwrote on 29.08.2007:[10.0] "Einfach ... phänomenal. Einer der ganz wenigen, die Aktionen sehr flüßig und sauber ausführen können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Baszdmegwrote on 18.08.2007:[4.0] "Viel zu overrated. Gibt Deathmatch-Wrestler mit mehr Technikskills als ihn und besser als irgendein anderer Highflyer ist er auch nicht. Charisma ungenügend, dennoch recht erfolgreich."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: shannonmoorewrote on 07.08.2007:[10.0] "Ob AJ Styles hier so schlechte Bewertungen bekommt weil er als einer der wenigen es immer mal wieder aus der X-Division schafft ? Da scheint wohl auch Neid im Spiel zu sein. Charisma stimmt gibt es gar keins aber in Sachen Wrestling ne glatte 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ecw foreverwrote on 04.08.2007:[8.0] "Im Ring sehr gut und am Mic auch. Also muss man hier doch einfach eine 10 geben oder? Klar es gibt bessere im Ring und auch am Mic kein Gott aber Charisma und halt das ganze drum und dran was man braucht. Ich gebe hier aber nur 8 da er noch sein mic verbessern muss."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MGStylezwrote on 27.07.2007:[10.0] "Er ist TNA! Neben Samoa Joe, der absoulute Mr. TNA. Genial im Ring und am Mic. Schade das TNA ihn als Heel verwendet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Undertaker13wrote on 04.07.2007:[6.0] "Nicht schlecht aber nicht für den Main Event. Das ist meine Meinung."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Blade Bourdeauxwrote on 01.07.2007:[6.0] "Der Typ ist im Ring gut, verdammt gut. Aber das alleine reicht im TV-Wrestling nicht, um die Leute vor die Kiste zu locken und somit zur Spitze der Promotions. Aber, er ist ja auch noch nichtmal 30."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ShaneOwrote on 29.06.2007:[8.0] "AJ rockt das Hause als Heel! Im Ring total geil anzusehen - am MicWork kann er ja noch arbeiten - ansonsten Top."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Nach wie vor einer der Eckpfeiler bei TNA! Im Ring verzaubert er uns alle mit seinen Aktionen! Und auch an Charisma mangelt es ihm nicht! AJ hat eigentlich alles, was es braucht, um die Zukunft im Business werden zu können!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Foerstawrote on 24.06.2007:[8.0] "Im Vergelich zu einigen anderen wrsetlern ist er durchaus ein guter. Allerdings nervt mich sein ewiges "rumgehopse" im Ring. Deswegen keine 1, die er wegen seiner führenden Rolle bei TNA durchaus verdient hätte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Trevedaswrote on 24.06.2007:[6.0] "Ausnahmekönner im Ring mit dem Aussehen und Charisma eines sehr sehr langweiligen Mannes."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Necronwrote on 24.06.2007:[6.0] "Toller Cruiserwheigtler mit dem typischen, neuartigen Indy-Style. Ob er jemals der ganz große Headliner wird, bleibt abzuwarten. Solte es CM Punk in der WWE schaffen, sollte das auch die Türen für AJ öffnen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ABoyenswrote on 24.06.2007:[10.0] "Einer der besten jungen Wrestler der Welt - sowohl technisch wie auch am Microphon - seine bisherige Titelsammlung steht für sich. Einer der Mega-Stars von Morgen..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kruemelwrote on 24.06.2007:[4.0] "Unmotivierte Flachzange. 2002 hätt er noch 8 oder 10 Punkte von mir bekommen."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: PuroDragonwrote on 24.06.2007:[4.0] "Der Typ ist Overrated ohne Ende. Er ist nur ein Spotwrestler, der maximal für Ultimate X Matches zu gebrauchen ist"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Knurkselwrote on 24.06.2007:[4.0] "Bestenfalls durchschnitt, aber leider absolut overhyped."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: suntan superstarwrote on 24.06.2007:[8.0] "-hat die x-division geprägt-erster tna triple crown champion-wurde von bret hart als bester wrestler bezeichnet"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Steven McWheelerwrote on 24.06.2007:[8.0] "Einer der besten Wrestler der Welt, jedoch finde ich ihn als Heel unglaubwürdig und eindeutig verbesserungwürdig, deshalb nur 8 punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: therockingkingwrote on 24.06.2007:[10.0] "Ein fantastischer Worker. Im Ring ohne Frage über allem Erhaben. Dazu am Mic längst nicht so schlecht, wie von oftmals behauptet. Mal sehen, wie lange er seinen Stil noch beibehalten kann. Schließlich wird er auch nicht jünger und agiler. Fest steht aber jetzt schon, dass er mit seinen Leistungen geholfen hat, TNA einen Namen zu machen. Just phenomenal..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Sabu316wrote on 24.06.2007:[8.0] "Guter Wrestler welcher bei TNA auch für seine Leistungen belohnt wurde. Leider sind seine Matches außerhalb von TNA mittlerweile eher 08/15 Programm."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Anas Kingwrote on 23.01.2025:[2.0] "I don't like him at all. One of the most overrated, overyhyped, over-acting referees of all time. Obviously there were some good stuff about him, bjut everyone has some good points. In his case, the bad outweight the good. He did a good job against heel wrestlers tho, so I do give him credit for that. There were many times he felt completely out of place.He use to miss spots frequently. He was slow. But his overacting was the worst thing about him, for me. I just cring everytime I see him react the way he does."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: BEER CATwrote on 11.07.2024:[6.0] "He really blew a lot of calls during NJPW's big 2010's "peak". Couldn't bump, couldn't sell the schmozz, was frequently out of position for distraction bits and all that. I respect his tenure and his work, but most of the time I noticed him in a match I wish I didn't."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: JediSaiyanMaster1203wrote on 05.06.2024:[10.0] "Might just be the most entertaining referee of all time, a man not afraid to get serious and comedic. Red Shoes is a very solid contender for the greatest referee of all time, a man who isn't afraid to tell the Bullet Club to suck it and will call the action no matter who he pisses off, and even isn't afraid to flip the bird at people (LOL! ). A perfect example of giving a referee personality and enhancing the match, someone who doesn't take away the spotlight on the performers and can even make the match more compelling. Overall, New Japan's best referee, full of life and energy, calls the action down the middle, doesn't make dumb decisions (as far as I remember), makes sure the match doesn't end unsafe (again, as I remember), etc. Deserves all the praise in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: MainEventMasterwrote on 02.01.2023:[10.0] "Greatest referee ever, hes not a nobody, he has an actual personality, and he is beloved by literally every fan there is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: The Wrestling Otakuwrote on 02.09.2021:[5.0] "Honestly Red Shoes is an occasional guilty pleasure of mine. While I enjoy it when he refuses to count the pin fall for the cheating heels that's pretty much the only great thing he does His over the top reactions can be hit or miss and the general officiating he and other njpw referees conduct annoys me a great deal especially when it comes to tag team matches. Anyway I like him but he is overrated by the current generation of fans"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Lyno123123wrote on 03.06.2021:[10.0] "(10/10) What can i say bout Red Shoes that havent been said already? he officiate ALL of the best matches i have ever watch. He is one of the few referee that can ENHANCED a match because of his signature move "False finishes roll" (dont believe me? see every false finishes is new japan, every time he stop the 3 counts suddenly. he always rolls over). And the best part he NEVER took anything away from a match. and also, one of the most respected person in NJPW"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: BlakeFR37wrote on 02.06.2021:[10.0] "Best Referee Ever. Red Shoes is a legend of this game. Nowadays, he has 33 years of active refereeing and that's a reference."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Zaidwrote on 02.05.2021:[10.0] "Red Shoes is the best referee that I've ever seen, he's really engaging, and is just a legend as a whole."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Kungwrote on 21.03.2021:[10.0] "I know I'm preaching to the choir when I say this, but Red Shoes is the best referee I've ever seen in my life."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Burninghammercriticwrote on 04.03.2021:[10.0] "the best referee in all of wrestling. No other ref is so versatile and on point as Red shoes, the guys in such great shape he could probably be a wrestler himself. Behind every NJPW classic, is Unno."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: znezaaljwrote on 06.12.2020:[10.0] "Red Shoes is undoubtly the greatest referee ever, his facial expressions, how he waves his hands, his 3 exact seconds count... And I could go on and on saying all the things he does well, even if he does not enforce the rules sometimes; this man is the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: ElPolloLocowrote on 20.10.2019:[7.0] "I'd love to rate Unno higher because he knows how to do his job, and do it well, but on the other side he often seems like he's had way too much caffeine before the match. He cannot stay still for a second and it makes me nervous to watch him gesticulate wildly and jump around the way he often does. I understand wanting to add some colour to the match but Hunno sometimes ends up being just irritating."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: NEVERoverweightChampionwrote on 12.07.2019:[10.0] "My favorite referee, a legend. He's always a good addition to the top matches, he can add drama sometimes. For example at New Beginning In Sapporo 2018, when Suzuki was torturing Tanahashi, mainly with some legwork. The Ace was so hurt that you could see Red Shoes almost begging Tanahashi to stop this and give up. It's just an example out of many things he's doing very well. I'll be sad when he'll retire."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: PuroresuLoverwrote on 13.05.2019:[10.0] "His mannerisms and facial expressions are something else. He is, without a doubt, the best referee in the history of pro wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: LandonRyanWyattwrote on 31.01.2019:[6.0] "He's good at being a ref, but always seems to make the matches about himself. A lot of the focus goes to him because of HIM, which is an insult and slap in the face to the guys delivering in the ring."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: KOR KOMBATwrote on 24.08.2018:[10.0] "My favorite ref besides lil Naitch, always adds to the match he's involved in instead of detracting from it. If you watch a lot of new NJPW classics, you're probably gonna see this guy as the ref. Red Shoes is a beloved figure in the IWC and it's kinda easy to see why."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Robert Taylorwrote on 17.08.2018:[10.0] "Einfach der coolste Referee in Japan! Wie er die Moves und Matches immer mitgeht und abfeiert ist einzigartig, genau wie seine Mimik und Gestik, die ein Match durchaus aufwerten kann. Oder wenn er Bad Luck Fale mal wieder den Mittelfinger zeigt, einfach herrlich. Außerdem darf nur er solche roten Schuhe tragen! Erfüllt davon abgesehen immer genau die Rolle, die er erfüllen soll."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Dragon Fighterwrote on 02.12.2017:[10.0] "LOL at the guy who gave 4. Just laughable to take seriously. Red shoes is an awesome referee. One of the most impressive and spectacular referee I have ever seen. I bet at least 80% NJPW classics in this modern era involve him. His emotion and facial expressions during the match are freaking great. He also adds a lot to the storytelling in the ring. A 10 for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: arrancarwrote on 14.11.2017:[10.0] "Incredibly underappreciated for his work which is easily unnoticed but actually extremely important to the matches he officiates. The referee can be the unsung hero of a great match, and that's absolutely the case with Red Shoes. The way he has to fly around the ring in order to make sure he makes pin-fall counts in time and the way he twists and turns when halting his hand from making the 3 count just as a wrestler manages to kick out of a pin attempt is amazing. It adds so much drama to see someone billed as an official who has been in the business for so long essentially reacting just like a normal excited fan, since it shows that even a professional can be astounded by the wrestlers in front of him.  He also makes sure to never go over the top in his acting. He never draws attention to himself and instead only emphasises the importance of the match and of the moments produced by the wrestlers themselves. I am certain that in at least 50% or more of NJPW's great matches of the 2010s Red Shoes' officiating played a significant role in building up and paying off drama. Very few non-wrestlers deserve to be as highly regarded in wrestling as Red Shoes. He's a legend in his own right."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Hunter Dunnwrote on 22.07.2016:[10.0] "Red Shoes is one of the best refs ever. It's his mannerisms and facial express that can make a match. It seems crazy but he actually adds to the match so much. If he's reffing, than the match has the wrestlers and him putting in the work to make it great"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: NastyYaffawrote on 15.04.2016:[7.0] "Red Shoes is an awesome referee. His facial expressions & general mannerisms are pretty great. Without a doubt the most recognizable referee in Japan."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Mizzle Assault Antwrote on 01.03.2016:[4.0] "The rating seems kind of ridiculous, but that's not the reason I'm putting him at a 4. Honestly, I kind of don't like the guy, he often seems to be wildly gesticulating even when nobody is doing anything even remotely illegal, and he sometimes draws attention to himself when he shouldn't. I don't hate him but I don't really consider him to be one of the better referees I've seen. The fact that he is seemingly omnipresent in New Japan seems to be the only reason he is notable, but simply standing near a good product is not a reason to love someone."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Antimasterwrote on 23.10.2015:[10.0] "Ich liebe diesen Mann. Wenn er unauffällig sein soll ist er das, wenn er bumpen soll macht er das super, wenn er Comedy macht ist die komisch. Er erfüllt seine Aufgabe einfach perfekt. Red Shoes ist der beste Ringrichter überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Kenshin Uesugiwrote on 05.09.2013:[10.0] "Er ist immer der " dritte " Mann im Ring.  Der überstrahlt sogar Hattori und Wada und das ist verdammt schwer, da können andere Promotions nur neidisch gucken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: The Woerpwrote on 24.06.2013:"Einer der besten Refs dieses Planeten. Sein Agieren im Ring lässt jedes Match spannender, hochwertiger, bedeutender wirken."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: MaikBaaderwrote on 22.09.2011:[10.0] "Kenshin Uesugi hat alles gesagt. Nicht nur Wrestler machen ein Match gut, nein. Wenn ein Ringrichter einen unglaublich langsamen count hat, gar nicht reagiert was im Ring abläuft ist er einfach nur schlecht. Unno bringt aber alles mit, dramatik, gute Gestik, schöner Count. Einfach grandios"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: hatebreederwrote on 26.12.2009:[10.0] "Der beste Referee, den ich je gesehen habe. Hat zu Recht unzählige Big Matches geleitet bisher. Seine Gestiken sind erste Sahne."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Rancorwrote on 23.11.2009:[10.0] "Grandioser Referee, der mit seinen Gestiken Matches unglaublich bereichert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Fountain of Misinformationwrote on 17.04.2009:[10.0] "Alles andere als zehn Punkte wäre ein Frevel an diesem Mann, nachwievor unglaublich gut und bisher sind keinerlei Abnutzungserscheinungen zu erkennen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Rassle Fanwrote on 07.02.2025:[10.0] "Greatest manager and color commentator of all time. Many, many announcers and manager or "advocates" have been inspired by Heenan's portrayal. Overly demanding boss one minute then coward begging for mercy the next. He could be hilarious on commentary but also worked hard to really put over the cruiserweights in WCW. The wrestling world is worse by Bobby Heenan no longer being in it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Anas Kingwrote on 16.01.2025:[2.0] "First of all, I do think he was a good manager. But I just can't vote high for a racist, misogynist. I don't know why he always had something against foreign talents. His comments on the mexican wrestlers were absurd. He's like Hogan for me. I acknowledge their impact, but at the same time, I just hate them as persons. It's also quite shocking how Hogan gets all the heat, but Bobby gets away with it. I've not seen many people talk about all the horrendous stuff he has said about not just international wrestlers, but their overall cultures. But hey, a lot of people. And honestly, I'm sick and tired of this "He's a heel. He's playing his part" BS. Just because you are a heel doesn't mean you have a right to talk racist and stereotypical things about other people."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: dizziedwrote on 12.01.2025:[10.0] "The greatest wrestling manager of ALL time. No one was as good as Bobby. He was so big in the 80's and 90's where he would sometimes overshadow the wrestlers. Managers typically didnt get as much of a pop as he did. Some of the greatest moments in wrestling history were created by Bobby The Brain Heenan. Watching his biography made me admire him even more and the real Bobby, who was a great personality and natural heel. It was heartbreaking to see how his health had declined when he was inducted into the HOF. RIP Bobby Heenan, you will long be remembered as one of the greatest ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: DangoDaisukiwrote on 30.11.2024:[5.0] "Bobby Heenan ist eine Legende, aver für mich ist er es eben nicht zurecht. Er war zur richtigen Zeit am richtigen Ort und hat eine für damals gesehen gute Arbeit geleistet. Jedoch war er zum einen kein so guter Wrestler und zum anderen fand ich ihn persönlich als Manager eher irrelevant. Ich habe noch nie seine Popularität verstanden, ich finde weder seine Stimme angenehm, seine Reden besonders gut, noch das over bringen als Manager hatte für mich auch nicht funktioniert. 5 Punkte sind gerechtfertigt für einen Manager der okay für mich ist."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Nolan Greenwrote on 21.11.2024:[10.0] "I go back and forth on whether he or Paul Heyman is the best manager. Heenan was a true weasel that made everyone except The Red Rooster look like they meant something. If he wasn't in the Hogan era, one of his guys except Andre for 2 minutes would have been champion for a short time to get real heat and the place would explode when the Babyface beats his man. And then we go to commentary. He was one of best heel commentator since he was great at destroying everyone and his hatred for Hulk Hogan has aged like fine wine. Don't believe me, watch the 1992 Royal Rumble. That man sings a 5 star album when Flair comes out. He's probably the guy I have the least bad things to say about him since he did everything perfectly. One of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Saladbagelwrote on 13.09.2024:[10.0] "There's a reason why Paul Heyman is often compared to Bobby Heenan. The latter is easily the best manager in the wrestling business, and he's also been a solid (if underrated) wrestler who also happened to be a good commentator. He and Gorilla Monsoon had excellent chemistry, to say nothing short of the good work that Bobby Heenan did on numerous WWE shows whenever he was handed a microphone. Some people say he was too good for the wrestling business with his wit, and I would be inclined to agree."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: allstar506wrote on 23.06.2024:[10.0] "Greatest Manager of all time. Made everyone he stood next to meaningful. Underrated WCW run on commentary as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: S0L1D SNA3K3wrote on 20.01.2024:[10.0] "Possibly the greatest manager in Pro Wrestling as well as the best color commentator in WWE history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: All Cops Are Bossmanwrote on 20.01.2024:[2.0] "I know it was stock in trade for heel announcers, but the lazy racist, sexist, not giving a shit about the WCW luchadores schtick already felt old in the 1990s and has aged incredibly poorly now. Was "ha ha Japanese people like cameras! " funny to anyone?"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: face painted legendwrote on 15.12.2023:[10.0] "Arguably the greatest all around performer to ever be in pro wrestling. The phycology that Bobby brought to wrestling was so far ahead of it's time that it's almost unreal. As a wrestler, he forgot everything he knew about in ring wrestling, and worked as if he were a manager who had never stepped foot inside of a ring, or taken a real bump in his life. He would cower from the babyfaces, he would pick his spots on when to get his small bit of offense in, he would take shortcuts to gain an advantage during a match, so on, and so forth. As a manager, he managed as if he were the world heavyweight champion, and a world class worker. It didn't matter who the guy was in the ring or how talented of a wrestler he was or lack there of the match that particular client was enhanced just by Bobby being out there ringside. His selling, his facials. his movements, everything he did was top tier, and he drew the fans watching at home or watching live more in to the match than whoever his guy was in the ring most of the time. So much that the argument could stand up that he was a better worker than probably all but maybe a count on one hand list of guys that he managed. When he was on the commentary, aside from being a broadcast journalist, his wittiness, comedic timing, and sharp tongue made him always fun to listen to regardless of who he was working with whether it was Monsoon (especially monsoon), Vince, or even Tony Schiavone to a degree. There will never be another Bobby "The Brain" Heenan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] "The Greatest Manager Of All Time, hands down! This man was such a natural at being a heel, he could make any wrestler hated just by being managed by Bobby, no matter who it was. Not only that, Bobby Heenan was also a great talker on the mic, he was always compelling to listen to listening to, especially when he was trying to be funny, man was very naturally funny that he could have totally been a legendary stand up comedian. His commentary work is also great, one of the funniest duos ever being him and Gorilla Monsoon, they were a joy to listen to together. Not only that, his managing resume is pretty impressive, he's managed tons of legends like Ric Flair, Andre The Giant, Nick Bockwinkel, Rick Rude, Mr. Perfect, The Brain Busters, Harley Race, even CM Punk, he's got quite the list. There's this quote that Kevin Nash said about Bobby Heenan, it was from Wrestling's Most Awesome Managers, it went around the lines of "Curt didn't need anybody, but when you put him with Bobby... It's like John Lennon didn't need Paul McCartney, but together... Heenan totally enhanced it." Something like that, and he's definitely on the mark. Heenan truly understood his roles of toning himself down or amplifying his personality depending on who he managed, the man could do no wrong. Overall, Bobby "The Brain" Heenan is one of the greatest entertainers in the professional wrestling business who's legacy is still felt to this day, the best manager and one of the best commentators of all time. R.I.P. Bobby Heenan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Ozzywrote on 20.07.2023:[8.0] "Man was great at his job dont get me wrong, but he is still the most over rated manager of all time. He had 3 true success stories in history, Nick Bockwinkel, Andre The Giant, and Ric Flair. He did ok with Rude, Perfect, Orndorf, and The Brain Busters, but other than that his people were practically jobbers and he is somehow rated the best? He could generate heat sure, but he wasnt the best in history on the mic either. still great though,"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: ItsToniTime89wrote on 06.07.2023:[10.0] "Für mich neben Paul Heyman der beste Heel Manager im Wrestling Business ever. Als Kommentator ebenfalls eine absolute Legende"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: crs285wrote on 18.06.2023:[10.0] "Very best manager. Perfect heel foil to guys like Hogan. Had the crowd doing whatever he wanted, cheering, booing or laughing. As a commentator he could improve a match with his smart thinking."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: mizzyshawrote on 14.06.2023:[10.0] "The only personality in the sport of professional wrestling that never fails to make me genuinely laugh. And he was right about Hogan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Giantfan1980wrote on 10.04.2023:[10.0] "What, are you serious? We are just talking about the greatest heel manager of all time, the greatest heel commentator of all time and the greatest comedy sketch heel of all time! Bobby did it all!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Kamilahclanwrote on 02.04.2023:[6.0] "A hit or miss character for me. I've gone back and watched old stuff and I am almost always very in the middle when it comes to his work wether as a manager or commentator."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: greaterdalewrote on 03.03.2023:[10.0] "Without a doubt in mind he was the greatest announcer of all time. The kind of heel you loved to hate but also couldn't help but laugh at his clever wit. Also a true heat magnet as a manag. Like I said about Mauro Ranallo I've watched some pretty dreadful weekly tv with Bobby Heenan on it that was worth it just to hear him talk. There will never be another Bobby Heenan that's for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: damiendemento1wrote on 03.02.2023:[10.0] "Best manager that ever climbed into a ring. Best commentator also. And he had the wrestling skills to back it up when he needed to. Thats a combo you dont see often. And some of the comments he made might be crossing the line today. But things change. His biography is a must read."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Leth99wrote on 22.07.2022:[10.0] "An amazing manager and he was even a former wrestler. He was badly injured by the Ultimate Warrior, but before that he was really willing to bump for the other wrestlers, something not every manager was willing to do. An amazing commentator as well. He was a funny heel commentator, something guys like Graves or Lawler needed to learn to do"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: MorbidAxiswrote on 08.04.2022:[6.0] "I know a lot of people love Heenan. I never saw the appeal. He was decent as a manager, but he's one of my least favorite commentators of all time. He's obviously quite knowledgeable, I just can't stand listening to the man speak."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Attitude Aggressionwrote on 05.04.2022:[9.0] "I have to admit, I did not see a lot of the "In-Ring" active wrestler Bobby Heenan. But as a manager and commentator he is one of the best. His back and forth with Vince, and Gorilla Monsoon, with his pro-heel color commentary is worth watching. Sometimes his humor seemed a little forced, and his initial transition to WCW was a little rough, but these are minor issues that do not detract from the overall package. The humor is a little dated, but on some early RAW matches, his kayfabe disinterest in face/face matches by "clicking" through channels on his monitor while aggravating Vince, was gold then."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Conquistador37wrote on 19.03.2022:[9.0] "As much as I love his 80's material, points docked because around 1992 he fell way WAY off as a color commentator and from there on he got notably worse. Thing is, he was never a really great commentator to begin with; buried too many, recycled the same jokes etc. In WCW he was borderline straight up awful at times and I'm not really sure who was to blame. So I think it's safe to say I did not care for him much in that role. Before his downfall though, he was incredible. Primetime Wrestling is one of my favorite television shows ever, his chemistry with Gorilla Monsoon was tremendous. I can never get enough of that stuff, from Miss Betty to Lance Wilshire and every "face buried in cake" in between. When a wrestler he was a bumping maniac/machine who would turn himself inside out and upside at the drop of a dime. He had insane leaping ability and could coast over the top rope to run from someone like The Ultimate Warrior. Is/was probably the most athletically inclined chicken shit heel ever. As a manager he had a fatal flaw though: more often than not he would over shadow his family member. While I am really not a fan of his 90's work, before that he was just too amazing to deny. 8.75 rounded up"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: jboyaquarwrote on 16.02.2022:[10.0] "What distinguishes Heenan, from all of the other great talkers & managers in pro-wrestling history, was that year-after-year he would bump for the faces. Heyman can't, Cornette wore-his-body-out after a few years, Hart's in-ring contributions ended after an infamous '75 plane crash, & Albano wasn't an every-night contributor. As a trained wrestler, he knew how to fling his rather unathletic physique & it cost-him many neck issues prior to the litany of health matters that would eventually take his life. As a child my parents wouldn't allow me to watch much wrestling, but because of Heenan, I would sneak-down every Monday night from '86-'91, 1 to 3 am, to watch the re-run of 'Prime Time Wrestling' mostly to revel in the comforts of the Monsoon-Heenan chemistry. I can't think of another talent who managed over fifty competitors & was equally successful in longstanding Main-Event roles in two major American promotions. Although I didn't think much of his individual matches, he was a one-of-a-kind pro-wrestling entertainer deserving of his top-spot on the Cagematch all-time top list."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: GriffinXwrote on 06.02.2022:[10.0] "The greatest manager I ever saw. His ability to make you care all that much more in any level. So many heel color guys have tried to be Heenan over the years. I loved how he managed like he was pain every time his guy took a hit. And a very underrated wrestler in his own right"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Muggowrote on 07.01.2022:[10.0] "The greatest manager ever. One of the greatest commentators ever. No one is a better non-wrestler than The Brain."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Pete Gallowswrote on 03.09.2021:[10.0] "The greatest commentator ever, the funniest ever. Many times I only watched matches to hear him talk. I have not seen many of his matches when he still wrestled, but I will always remember him for his jokes. My top 5 wrestling personality of all, no doubt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: CoolKylewrote on 28.08.2021:[10.0] "Bobby Heenan legitimately could've been a successful actor if he wanted too. He was brilliantly witty, clever, dramatic, and could do it quickly in a single take. He was a gift to pro-wrestling and the likes of him will never be seen again. He's pro-wrestling's Robin Williams."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: TigerDiverwrote on 04.08.2021:[10.0] "One of the greatest who ever lived. This man could make me laugh all day long with his hilarious line on commentary. He was also an absolutely spectacular manager and was just GOLD on the mic. Incomparable contribution to the business. Rest well, Brain."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Daigotsuwrote on 19.06.2021:[10.0] "One of the greatest non-wrestlers ever in the industry. Great talker and a very witty commentator who could put over a story with the best of them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Tomas Cunhawrote on 07.06.2021:[10.0] "Simply perfect. A brilliant manager and the funniest character in the entire history of wrestling, could even crack up the cameraman and the producers in the back on Prime Time Wrestling alongside Gorilla Monsoon. He had ace chemistry with pretty much everyone he worked with. Brilliant delivery as well, and could play a chickenshit heel manager like no one else. Heenan was a joy to watch, no exceptions, and a true legend whose work will never be forgotten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: TheFrenchDisasterwrote on 19.04.2021:[10.0] "Very charismatic and funny, his duo with Gorilla Monsoon is legendary, and his duo with Okerlund is memorable as well. He will certainly be remembered as one of the best managers of all time, if not the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Brett1980wrote on 23.01.2021:[10.0] "The funniest wrestling personality of all time either as a manager or commentator. Had excellent timing in both physical and verbal comedy. Could get whipped around the ring bouncing from corner to corner when needed. His chemistry with both Gene Okerlund and Gorilla Monsoon was tremendous."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: marexcelwrote on 29.05.2020:[10.0] "Richtig viele Möglichkeiten, das Schaffen von Heenan zu konsumieren, hatte ich noch nicht, aber alles, was ich sehen konnte, sei es als Manager oder Color-Kommentator war überragend und für mich ein Inbegriff von Wrestling, wie ich ihn mir vorstelle. Charisma, Charakter, Wiedererkennungswert und ein irrer Unterhaltungsfaktor. Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Keksteurwrote on 12.04.2020:[10.0] "The greatest manager of all time, one of the best promo, great commentator and also a very very good wrestler, Bobby "The Brain" Heenan is a true legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[10.0] "Best manager of all time. Immensely talented at the announce desk. Quick witter and sharp tongued. When it comes to the best of all time, sometimes you don't have to say much to make your point."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: JEK 1991wrote on 09.12.2018:[10.0] "Great heel manager. The greatest family ever the Heenan family. Helped and managed so many heel wrestlers in his career. Funny as well. As an announcer he was funny with Gorilla Monsoon. In WCW he was not so great in my opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: RatingsMachinewrote on 21.09.2018:[7.0] "As a manager, Heenan was great, in so many ways. But as a commentator, Heenan was somewhat overrated. He could definitely be great at times, but Heenan had a tendency to try and throw in comedy, which was hit-and-miss,  that didn't add to the match at all, and often detracted from it."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: pappahousewrote on 21.08.2018:[9.0] "Ich habe ihn geliebt. Tolle Gags, herrlich blöde Promos, tolles Mic-Work. Es stimmt mich so so traurig, wenn ich sehe, wie lange er gekämpft und gelitten und am Ende verloren hat. Bei der Aufnahme in die Hall of Fame musste ich seinerzeit schon schlucken. Ein toller Mensch, ein toller Manager."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Cameron621129wrote on 18.07.2018:[10.0] "Top 3 manager. In my opinion the number 1 colour commentator. A heat magnet. One of the most memorable of his Era with thousands of iconic lines."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: DaWizWithADwrote on 07.07.2018:[10.0] "The greatest manager of all time and one of the greatest commentators of all time. Few can really match the genuine amount of wit he has and he always understood his job was to get others over."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Gauntlet84wrote on 21.04.2018:[9.0] "Along with Jimmy Hart, he as the best heel manager of all-time. Great commentator and great manager despite me never once cheering for him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: stc13wrote on 08.02.2018:[10.0] "The Brain excelled in any role he was put in.  As a manager, he was able to get over both his own clients and their opponents, and was the perfect comedy foil.  Possibly the best color guy ever, and his quick wit made even the least interesting match entertaining.  He was great at making you hate heels and getting the viewer riled up in support of babyfaces. Listen to how loud the Weasel chants were during Nitros, even as he was at the tail end of his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: CHN325wrote on 31.01.2018:[10.0] "The greatest manager and one of the greatest commentators of all time. A lot of his mic work was comedy gold."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: jcleaguewrote on 30.09.2017:[10.0] "The best manager of all time. One of the funniest personalities in all of wrestling. His contributions to the sport will never be forgotten. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: SomeDudeOnTheInternetwrote on 05.03.2017:[10.0] "Einer der Besten nicht-Wrestler im Wrestling Business. Ich habe seine Zeit bei WWEs PrimeTime Wrestling und bei den Monday Night Wars nicht live erleben können, da ich wohl eher zu den "jüngeren" Wrestlingfans gehöre die mit Stone Cold bis Eddie Guerrero aufgewachsen sind. Nichtsdestotrotz gibt es ettliche Videos auf Youtube und WWE Network die seine absolut geniale Arbeit als Manager, Kommentator und Host beweisen. Auch wenn die Zeiten sich geändert haben und das heutige Wrestling anders ist, ist und bleibt Bobby The Brain Heenan der Lustigste den ich je in einer Wrestling Promotion gesehen habe! Seine Arbeit als Manager für seine Heenan Family war famos, war er mit seinem ungewollten "Neben"-Gimmick The Weasel absolut witzig, sein Mundwerk mit den ganzen Comeback-Einzeiler-Konter sind unglaublich passend. Als Kommentator und Host gehört er definitiv zu den Besten bis heute! Die Konstellation mit Monsoon waren unterhaltend und gelten heute für viele (berrechtigt) als unerreicht. Dann wird das ganze nochmal lustiger mit Roddy Piper als zusätzlicher Co-Host. Im Vergleich zum heutigen Wrestling fehlt mir so eine Art Unterhaltung.. Kurz: Das beste nicht-Wrestler Gesamtpacket und auch seine HoF Rede war sehr genial. Wem Bobby Heenan fremd vorkommt sollte unbedingt seine Arbeit auf Youtube oder dem WWE Network nachholen, es wird sich mehr als lohnen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Owenwrote on 01.03.2017:[9.0] "A generous and unselfish man, he never minded making himself look like a fool to put the other guy over."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: styles82wrote on 09.01.2017:[10.0] "The Brain war in einer Zeit wo es viele Manager gab der beste. Er ist der beste aller Zeiten und das mit Abstand. Wie er das Sprachrohr für seine leute war war einfach einzigartig oder wie sich Henning und er sich die Bälle zu spielten war großes Kino.  Im Ring konnte er viele Siege für seine Family auf sein Konto verbuchen. Aber auch als kommentator war er ein Genie. Bei ihm glaubt man wirklich er ist als Heel geboren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Squared Circlewrote on 12.10.2016:[10.0] "Simply fantastic, a loud mouth villain who would take tremendous beatings to the AWA's top heroes who morphed into a fantastic manager and commentator.  He was a rare blend of insight and humor who could generate a lot of heat.  He clearly was a mainstay, prime time villain during Hulkamania.  Hulkamania managed to overshadow everything, but the brain carved out a corner and was a huge success."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: ApexOfEvolutionwrote on 31.07.2016:[9.0] "Der Mann, der versucht hat die nwo kaputt zu machen, bevor sie überhaupt gegründet war ;-) Ein sehr lustiger Fauxpas, wenn man bedenkt, dass er in den 80ern mit seinen Klienten King Kong Bundy, Andre the Giant etc. meistens erfolglos versucht hat Hulk Hogan das Leben schwer zu machen. Diese Fehden wurden durch ihn eigentlich erst so richtig interessant. Er hielt einfach immer großartige Promos und war auch als Kommentator über jeden Zweifel erhaben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Summerslam Fan 01wrote on 31.07.2016:[10.0] "Selbst Paul Heyman kann the Brain nicht das Wasser reichen,  Bobby Heenan ist und wird für immer der beste Manager bleiben Er ist einfach ein Gott, geborener Heel Großartiger Kommentator mit Gorrila Moonson als Dou unschlagbar"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Wrestling Foreverwrote on 25.06.2016:[10.0] "Einer der besten Manager und Kommentartoren aller Zeiten. Heute leider stark durch seine Operationen gezeichnet ist auch sehr dünn und wird sicher nie mehr so sprechen können wie frührer.  Hat aber seinen Humor nicht verloren. Absolut zu Recht in die WWE Hall of Fame aufgekommen worden. Edit: 25. 06. 2016 Im Internet hab ich von ihm aktuelle Fotos gesehen. Nach wie vor ist er sehr dünn, er trägt einen Schnauz und trotz seiner Krankheit schaut er gut aus und hat nie seinen Humor verloren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Seven77wrote on 25.06.2016:[6.0] "A good, old school manager and commentator. No idea why he suddenly rose this high in the cagematch rankings in a couple of weeks, though. Ehr... Maybe some fan is trying to let him reach the top spot or somethin' and is flooding his page with 10s?"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: The Sick Lebowskiwrote on 14.06.2016:[10.0] "Grandioser Manager, grandioser Kommentator. Ihm hat man das Quasseln anscheinen in die Wiege gelegt. Spielt seine Rolle als "Weasel"-Manager auch absolut stark. Zu Recht eine der Manager-Legenden des Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: EGeraldhuebnerwrote on 28.04.2016:"Bobby Heenan ... Markenzeichen: kennt und läßt keinen, auch noch so schmutzigen Trick aus, um das Kampfergebnis zu manipulieren, ob nun allein oder gar gleich noch mit etlichen Helfershelfern (ein Meister der Intrigen und Ränkespiele). Einfach ein extrem loyaler Manager, der alles, aber auch wirklich alles für seinen jeweiligen Schützling getan hätte ... und dies eben auch viel zu oft getan hat (ich erinnere hier nur mal an Mr. Perfect vs. Bret Hart - Intercontinental Champion Title), daher als Heel einer der besten. Wenn nicht bereits jeder Mark wissen dürfte, das es Fake ist, könnte man ernsthaft vermuten, durch ihn waren so manche Siege erst möglich geworden. Hat seine Sache immer sehr gut gemacht."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Mean Smark Callouswrote on 13.04.2016:"An all-time legend, the greatest manager in the history of the sport, the greatest color guy in the sport, one of the quickest wits I've ever seen, Heenan ALWAYS had a comeback for everything, and it was always funny. As others pointed out, he deserves nothing less than a 10."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: jcb9wrote on 10.04.2016:[10.0] "An absolute legend. Untouchable. Best color commentator ever, by a HUGE margin. Probably the greatest manager ever, too. For anyone to give The Brain any rating other than 10 is an absolute farce."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: oscargeorge1wrote on 23.03.2016:[10.0] "Simply the best colour commentator in Wrestling history, especially when paired with Gorilla Monsoon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Super Mastodonwrote on 19.03.2016:[10.0] "As JR said Bobby Heenan is the greatest entertainer in the business! He did it all: wrestle, manage, and commentate and he did well in all of those aspects! While Paul Heyman is great, I still think Bobby Heenan is the greatest manager of all time and one of the best heels in the business! It sucks that he is unable to speak now but his sense of humor and fighting spirit is still there! There is only one Bobby "The Brain" Heenan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: NoNamewrote on 10.02.2016:[8.0] "Er war ein guter Manager aber für mich nicht mehr, er kommt für mich einfach nicht an einen Paul Heyman ran, deswegen gibt es hier von mir mal "nur" 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: ShooterMcShootwrote on 13.11.2015:[10.0] "Bobby Heenan is simply the greatest manager in the history of the business to me. Also, his work as a color commentator was hilarious, especially his chemistry with Gorilla Monsoon. I would like to add as well that when I was a little kid, it was Bobby Heenan that made me want to get involved in wrestling. He was funny and I wanted very much to be just like him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Mizzle Assault Antwrote on 22.09.2015:[10.0] "Arguably the greatest performer in wrestling history. His wit and humor is utterly legendary, his devotion to character impeccable, his slavish desire to always put over the other man by playing the fool is unmatchable. The greatest manager, the greatest commentator, and secretly a pretty good wrestler too, especially when it comes to bumping. There will never be another like him, I sincerely hope his health improves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Zedwrote on 14.07.2015:[10.0] "So sehr ich Paul Bearer und Paul Heyman liebe, aber dem "Weasel"konnten selbst die beiden nicht das Wasser reichen. Er hatte eine Ausstrahlung für einen Manager, man hasste ihn einfach mit Leib und Seele, sowas schaffen nicht viele Manager. Und als Kommentator hat er nochmals eine Schippe draufgelegt. Mit Monsoon im Gespann einfach nur Legendär, und als WCW Kommentator trug er auch viel für den Goldberg Hype bei. Um so trauriger werd ich wenn man Bobby heute sieht und weiß dass dieser mann seine größte Gabe verloren hat, seine Stimme."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Viper99wrote on 30.04.2015:[10.0] "Ich kann einfach nicht mehr sagen als das er einer der besten Manager und Kommentatoren aller Zeiten ist! Seine Duelle gegen Monsoon bleiben unvergessen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: DanTalksRasslinwrote on 23.04.2015:[10.0] "Simply the greatest manager of all time.  On the mic, he could make you laugh or make you mad, while putting over his charges perfectly.  He was also a fantastic color commentator with so many great one-liners over the years; he and Gorilla Monsoon being my all-time favorite broadcast team.  Even when not really trying on commentary, such as on the WOW Unleashed PPV, he still made with the funny enough to be enjoyable.  His time as a regular wrestler was a bit before my time, but when he was managing, if a situation called for him to get in the ring, he always did well and made sure the opponent came out of it looking good.  Probably my single favorite wrestling personality ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Taker77wrote on 09.03.2015:[10.0] "Simply the greatest manager of all time, the Brain had such a brilliant mind for the business.  Oh I miss these days a lot. When Bobby was gone in 93 WWF was never the same."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: zackwoowoowooryderwrote on 28.12.2014:[10.0] "Ein genialer Manager und auch ein großartiger Kommentator. Als Heel einfach nur göttlich und für seine verbalen Auseinandersetzungen mit Gorilla Monsoon gilt selbiges."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: downtown2wrote on 20.11.2014:[9.0] "Als Manager und Kommentator eine Ausnahmeerscheinung, vielleicht der Beste den es je gab. Außerhalb des Rings macht er schon mal einen recht käuflichen, bzw. hinterhältigen Eindruck, beispielsweise wie er über den Warrior auf der Desdruction-DVD hergezogen ist. Nicht die feine Art, welche über ihn als Privatperson Bände spricht, dieses sollte seine Wertung als On-Air Charakter jedoch nicht beeinflussen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Shentenzawrote on 07.10.2014:[10.0] "Kann man Bobby Heenan nicht mögen? Einer der besten, wenn nicht sogar der Beste Heel Manager überhaupt. Am Mikro großartig und als Kommentator göttlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Phenomenal91wrote on 05.08.2014:[10.0] "The greatest color commentator of all time. You loved to hate him. Heck, I cheered for Flair alongside Heenan every time Flair went up against Hogan, because I didn't like Hogan either! But seriously though, this guy is great and any announcer should listen to him if they want to know how to liven up a wrestling show the right way."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: bugsy mcgrawwrote on 30.03.2014:[10.0] "Heenan was one of the greatest managers of all time and was a great color commentator as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: RepoManwrote on 07.01.2014:[10.0] "Als Manager sowie als Kommentator herrausragend, einer der besten seiner Zunft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: CLPSKYLINERwrote on 12.11.2013:[8.0] "Legendärer Manager. Bobby The Brain Heenan ist mit der größte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Alex Maedawrote on 05.09.2013:[8.0] "Einer der besten Manager aller Zeiten, hat Stars zum Legendenstatus verholfen und Rohdiamanten den letzten Schliff verpasst. Neigte leider zur Repetation von vielen altbewährten Sprüchen, Methoden ect.  Das, was er machte, war nicht immer innovativ, aber unheimlich konsequent und effektiv."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: TheIbarwrote on 22.07.2013:[10.0] "Bobby "The Brain" Heenan is the greatest manager in professional wrestling history. Period. The most entertaining person ever to perform in front of a wrestling crowd and audience. Bobby managed so many amazing athletes and it's an honor to be managed by The Brain. And, of course, Bobby and his best partner Gorilla Monsoon were just the funniest duo on commentary and outside the ring. Thank you for every moment! God bless you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: test85wrote on 16.06.2013:[10.0] "Neben Paul Heyman der Manager schlechthin. Charismatisch und seine Promos haben mir auch gut gefallen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Fountain of Misinformationwrote on 10.03.2013:[10.0] "Schlichtweg großartig, als Manager und vor allem als Kommentator. Mit dem Mundwerk, diesen Sprüchen, dieser Spontanität usw. usf. hätte er auch in vielen anderen Bereichen außerhalb des Wrestling Business problemlos Karriere machen können. Ihn zusammen mit Gorilla Monsoon zu hören ist immer wieder ein Highlight für mich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Titansrevengerwrote on 06.03.2013:[10.0] "There isn't to much to not like about Bobby Heenan. In my estimation Heenan is wrestling's greatest entertainer;he was a good wrestler, manager, commentaor, and overall personality. For me it was actually Heenan that kept me involved with wrestling for a number of years. His interactions with Monsoon were hilarious and thats kind of an understatment. There were so many moments of greatness throughout Heenans tenure in the WWF;from his time as a manager in the Heenan Family, to over hyping Ric Flair, to making fun of Boss Mans mother, everything Heenan touched turned to gold."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: LM Punkwrote on 30.08.2012:[7.0] "Ich berwerte Heenan nur als Manager, da ich ihn nich haber wrestlen sehen. Aber als Manager einfach überzeugend und auch nervig, was ja auch seine Aufgabe war."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: what89wrote on 13.10.2011:[9.0] "Für mich der beste Manager, als Kommentator auch gut. Wrestling braucht auch genau diese Typen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: devilsoldierwrote on 10.10.2011:[10.0] "Ich lege mich fest und sage mal der beste Manager der Wrestlingwelt und ein grandioser Kommentator. Herrlich wie oft hat er mich unterhalten und zum lachen gebracht allein nur mit einem Gesichtsausdruck, einem Satz oder völlig banalen Dingen die er getan hat und ich auf dem Sofa halb zusammengebrochen bin. Einfach herrlich ihm bei seiner Hall of Fame Rede zu hören, dass ist Entertainment pur. Einfach eine Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: C0nspiracywrote on 28.03.2011:[6.0] "Eine echte Manager Legende der alles gesehen hat. Abzüge gibts beim Charisma den mehr als das Standartprogramm als fießer Manager/Kommentator hatte er jetzt auch nicht gerade."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: jjchiofalowrote on 05.01.2011:[10.0] "Heenan is perhaps the greatest man to ever go on screen in pro wrestling. He is funny, witty, clean, and knows how to announce. He knows how to get a crowd going (as a face or a heel). Heenan is the epitome of what a commentator could and should be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Schandmaulwrote on 06.10.2010:[10.0] "Tja, was bleibt mir anders zu sagen. 10 Punkte für einen der besten Manager aller Zeiten. Perfekter Heelmanager. Besser gehts einfach nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Double Jwrote on 16.09.2010:[10.0] "DER manager, herausragend, einfach nur heruasragend. Da kommt kein einziger manager aller zeiten ran, nicht mal Topmänner wie jim cornette oder Freddie Blassie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Eddiewrote on 16.03.2010:[10.0] "Heenan war wohl einer der besten Manager aller Zeiten. Aber nicht nur das, er war auch ein geiler Kommentator. Ich erinnere mich nur an seinen Auftritt bei WM IX. Köstlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Fat Mikewrote on 01.03.2010:[10.0] "Eine der unterhaltsamsten Persönlichkeiten und der wahrscheinlich beste Manager den das Wrestling hervorgebracht hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Aquifelwrote on 07.01.2010:[10.0] "Als Manager erstklassig, als Kommentator einfach nur der Wahnsinn. Neben Jesse Ventura wohl der beste Heel-Kommentator auf dieser Erde. "That's not fair to Flair". Einfach nur sensationell wie er ein "ganz gutes" Rumble Match durch seinen Kommentar zum absoluten Must See macht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Rene DeVitowrote on 21.11.2009:[10.0] "Ich fand Heenan schon immer einen sehr talentierten, TV tauglichen Heel Valent. Vor allem seine Fehde gegen Hulk Hogan war schon cool, Entertainment und auch stets lustig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Scotty 2 Hottywrote on 14.10.2009:[10.0] "Genialer Manager und auch ein großartiger Kommentator. Als Heel einfach nur göttlich und für seine verbalen Auseinandersetzungen mit Gorilla Monsoon gilt selbiges. Klare 10 Punkte für "The Brain"!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Basket Casewrote on 14.09.2009:[10.0] "Grandioser Manager und Color-Kommentator. Einer der Besten ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: LashLerouxwrote on 14.09.2009:[10.0] "Wird am Mic wohl immer unerreicht bleiben. Wohl einer der größten Legenden, die es im Wrestling gibt. Aber als ich ihn bei der HOF-Zeremonie gesehen hab, sind mir die Tränen gekommen-scheiß Krebs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: 108 Sternewrote on 24.07.2009:[10.0] "Bobby Heenan.... einfach ein klasse Manager und Color Kommentator!  Wohl noch eine Spur kultiger als Jimmy Hart und Jerry Lawler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Matt Mackswrote on 22.07.2009:[10.0] "Für meine Begriffe einer der besten, wenn nicht gar der beste Heel-Manager und Color Kommentator der Wrestlinggeschichte. Sein Kommentar machte selbst manche WCW-Shows erträglich. Sein Team mit Gorilla Monsoon Anfang der 90er war fantastisch. Ein großartiger, sehr lustiger Mann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Excellence of Executionwrote on 01.07.2009:[10.0] "Als Heel Kommentator war er ausgezeichnet und ist dort (in meiner persönlichen "Rangliste") knapp hinter dem Spitzenreiter Jesse Ventura und auf Augenhöhe mit dem alten Heel Kommentator (! ) Jerry Lawler. Hinzu kommt die Tatsache, dass Heenan auch heute noch mit Leichtigkeit als Blaupause für den perfekten Heel Manager gelten kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Mick Funkwrote on 24.06.2009:[10.0] "Der beste Manager aller Zeiten. Schade, dass es sowas wie ihn in der WWE heute so gut wie gar nicht mehr gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: jerseyhoolwrote on 13.06.2009:[10.0] "Ich verehre & vergöttere Heenan - nie wieder habe ich einen derart charismatischen, witzigen & vor allen Dingen rhetorisch bewanderten Manager im Wrestlingbusiness gesehen. Seine Leistungen als Kommentator sind auch heute noch mehr als einen Lacher wert - manch einer der heutigen Announcer könnte sich da eine Scheibe abschneiden. Natürlich genial im Duo mit Gorilla Monsoon, leider reichte er in der WCW nie wieder an die Glanzzeiten der WWF heran. Mit ihm ist einer der ganz, ganz Grossen aus dem Geschehen ausgeschieden, nie wieder werde ich seinemWortwitz lauschen können (es sei denn, man erbarmt sich meiner & nimmt Heenan wieder unter Vertrag - was bei seiner Krebserkrankung wohl eher ausgeschlossen sein dürfte! ). Dabei würde ich zu gerne hören, was er über die aktuelle Generation der Wrestler zu lästern hätte... ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: The-Game91wrote on 20.05.2009:[10.0] "Grandioser Heel Manager und noch viel besser am Kommentatoren Pult. Hab ihn immer gerne zugehört."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Father Nelsonwrote on 01.02.2009:[10.0] "You will never again find a Heel-Manager, who has THAT kind of charisma and THAT kind of humor."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: LordTrailerwrote on 27.07.2008:[10.0] "Eine Manager- und Kommentatorenlegende, die diesen Titel auch verdient. Heenan hat es geschafft, dass man ihn als Heel gehaßt hat. Dabei hat er seine Schützlinge over gebracht, was ja auch die Aufgabe eines Managers ist. Großes Kino!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: affenmannwrote on 13.07.2008:[10.0] "Der mit Abstand(! ) beste Manager aller Zeiten. Selbst relativ konturlose Midcarder wie z. B. Haku bekamen ordentlich Heat, wenn sie vom Brain gemanaged wurden. Als Kommentator würde ich ihn ebenfalls in die All-Time-Top-5 setzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: ecw foreverwrote on 22.06.2008:[10.0] "Also wer hier keine 10 gibt muss was an der Backe haben, so seh ich das:D. Ne ernsthaft der Mann hatte es drauf. Als Manager genial und er lief sogar 2 bis 3 mal bei WM raus. Als Kommi noch genialer. Man muss nur all seine Sprüche ansehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Frutzwrote on 25.05.2008:[10.0] "Ein genialer Heel-Manager, ein genialer Heel-Kommentator, wobei seine Aussagen oft mehr Wahrheit hatten, als die der 'guten' Face-Kommentatoren. Ausserdem hat man ihm die Liebe zum Wrestling immer abgenommen und er hatte mit der Heenan-Family den Heel-Stable der 80iger und fruehen 90iger."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: DonTwrote on 17.03.2008:[10.0] "Einer der besten und fiesesten, aber auch intelligentesten Manager aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: ghostwrote on 21.12.2007:[10.0] "The Brain! Hat das Gehirn am richtigen Fleck! :) Super als Manager, Super als Kommentator, einfach alles super - eine wichtige, schillernde Wrestling-Persönlichkeit!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Sandman16wrote on 20.10.2007:[10.0] "Der bekannteste und beste Manager überhaupt. Bei ihm hat einfach alles gepasst und er war für dieses Business einfach wie gemacht. Auch als Kommentator konnte er voll überzeugen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: darksaber999wrote on 30.09.2007:[10.0] "Der beste Color-Kommentator aller Zeiten, zudem ein genialer Heel-Manager! LEGENDE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: H-Scorpiowrote on 11.09.2007:[10.0] "Als Kommentator war er cool, unterhaltsam und nervig zugleich. Dennoch war er damals ein würdiger Nachfolger von Jesse Ventura. Vielleicht die Manager-Legende überhaupt. besonders die Szene als Mr. Perfect dem winselnden Heenan Wasser über den Kopf geschüttet hat, ist mir in freudiger Erinnerung geblieben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Zombrerowrote on 04.09.2007:[10.0] "Eine herrliche Ulknudel. Ich bewerte ihn nicht als Manager, sondern als Kommentator."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Blade Bourdeauxwrote on 02.07.2007:[10.0] "Das Weasel, eine immerwährende Quelle guter und treffsicherer Spürche. Hätte es ihn nicht gegeben, müsste man ihn erfinden. Ob als cleverer und feiger Manager oder als Color-Kommentator der Mann hat es einfach drauf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Eines der besten Manager, obwohl er als Kommentator auch nicht so schlecht war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Ein irre lustiger Typ, dieser Bobby! Und eine Manager Ikone obendrein! War über wie viele Jahrzehnte lang Heel und es war trotzdem immer wieder erfrischend! Auch als Kommentator versteht er sein Handwerk, das kann nur 10 Punkte geben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: WCWlerwrote on 24.06.2007:[10.0] "Einer der besten Manager und ein verdammt guter Redner."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: MrPerfectwrote on 24.06.2007:[10.0] "Einer der besten Kommentatoten aller Zeiten, bei dem was dieser Mann alles geleistet hat verzeihe ich ihm auch seinen Fauxpas beim BatB 1996. "On whos side is he on"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: jollietwrote on 24.06.2007:[10.0] "Als Manager immer unterhaltsam (z. B. mit immaginärer Bulldoge in der Fehde mit den British Bulldogs... )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Hypocrisywrote on 24.06.2007:[8.0] "Legendär finde ich seinen "Einmarsch" bei Wrestlemania 9 im Caesar's Palace."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: ABoyenswrote on 24.06.2007:[10.0] "Wohl einer der bekanntesten und geachtetsten Nicht-Wrestler des Business. Ob als Manager oder als Kommentator - Heenan liefert immer ganz großes Kino. Daumen hoch!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: mdbnasewrote on 24.06.2007:[10.0] "Einer der Besten! ... vielleicht nicht als Wrestler, aber als Manager und Kommentator ungeschlagen! Immer lustig, sarkastisch und wortgewand mit absolut genialem Micwork! Sehr unterhaltsam seine Shows mir Gorilla Monsoon (Rip) - Eine Legende!Hat mich wirklich schockiert, als ich in beim WWE Draft kaum noch erkannt habe, weil der Krebs ihn wohl schon so zerfresen hat, sehr Schade!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Giant2wrote on 24.06.2007:[10.0] "Was soll man zu Heenan groß sagen außer: Der vielleicht beste Heel-Manager aller Zeiten, sowie einer der unterhaltsamsten Color-Kommentartoren überhaupt. Volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Hennewrote on 24.06.2007:[10.0] "The Brain. Genialer Manager, genialer Color Commentator. 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Zak22wrote on 09.02.2025:[9.0] "I've only seen a bit of Aja Kong's prime in the 90s and early 2000s but just about enough to have an opinion. Kong was the perfect monster heel and stood out in that era of joshi wrestling for her extremely strong style and surprisingly high work rate for her size. Kong had some of the greatest women's matches ever and has a match catalogue that not many can match. Kong was surprisingly smooth with her moves and had a great piledriver. Her matches with Toyota and Kudo really stand out. She reminds me of Vader in All Japan, with her stiff as hell, monster heel status."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: wrestlingswiftiewrote on 30.01.2025:[10.0] "BEAST of a wrestler, and despite being a female, she could probably beat the twinks we have on the roster today in a shoot fight. What is there not to like about Aja Kong? She's never had a bad match, she's got the look of someone you'd wanna see, and she somehow has a style that blends between chaotic and methodical. I'd say she's the female Vader, but better (although Vader himself wasn't bad, he was also good)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Anas Kingwrote on 20.01.2025:[4.0] "Ok, I 'm aware she is popular and I know she's a monster, so this probably going to be a hot take. She is not as good as people make her out to be. Yeah, she's powerful and has a strong style, but we're talking about being best in the world. She falls short in that category. She doesn't have the agility that people like Manami and Io have, she doesn't have the selling art of Mayu. I think people overrate her because she's a legend and they give her big ratings just out of respect. That's not me. I'm going to keep it real."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: aurarockwrote on 17.12.2024:[9.0] "greatest japanese monster that western promotions would have died to have, yet their use of them was lacklustre but it was quickly made up by her japanese promotion history"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: yumin76wrote on 08.12.2024:[9.0] "Aja Kong is a name synonymous with power, charisma, and an unwavering presence in the world of womens professional wrestling. Hailing from Japan, Aja Kong (born Erika Shishido on September 25, 1970) is one of the most influential and celebrated figures in the history of women's wrestling. Her career has spanned over three decades, and during that time, she has built a reputation as one of the most feared and respected wrestlers, male or female, to ever step into the ring. From her dominance in Japan to her international appeal, Aja Kong's impact on the wrestling world is undeniable."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: PrimeDirectivewrote on 07.09.2024:"I'm strongly convinced that Aja Kong is the greatest African wrestler of all time, on top of being the best woman to ever lace up a pair of boots. Her matches were incredibly violent no matter who she wass working, with the 2000 battle against KAORU on February 13th being an all time slug fest. She changed the way I look at women's wrestling, perhaps in a not so good way -- my expectations are incredibly high and there is no way that any easily accessible women's wrestling in America can touch what she was able to accomplish with her contemporaries during the 90's and early 2000's. She's the embodiment of an 11 out of 10 pro wrestler and one of the greatest of all time, bar none."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Gabiwrote on 25.07.2024:[10.0] "Aja Kong is everything you want in a monster heel. Violent powerhouse you do not want to mess with. Legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: woolyshamblerwrote on 21.07.2024:[10.0] "greatest joshi of all time, greatest monster heel of all time, aja is a spectacle. i'll never forget those fork spots in her cage match with bull."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: jcheng777wrote on 24.04.2024:[10.0] "Easily one of the greatest female wrestlers of all time. Absolute legend and her hard hitting and powerhouse style will perpetually be over."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: thedman0310wrote on 20.03.2024:[10.0] "A strong contender for the greatest Joshi wrestler of all time, Aja Kong is the real deal. Everything she does in the ring looks like it hurts like hell, and she knows it. Kong always has an aura of danger in her matches, like she's always one moment away from sending her opponent to intensive care. She is also a phenomenal seller, especially in her amazing match against KAORU from Gaia Japan in 2000. Her screams after she gets her arm cut with a piece of table are chilling. Also, she comes out to the best Judas Priest song, so that definitely helps."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: mxkamiwrote on 11.02.2024:[7.0] "Absolute legend, but Aja Kong hasn't been able to move well for a while now, and it's starting to hurt the legacy for me. At the absolute highest, I'd rate her an 8. "Why not 10? " Look... I am not very squeamish. I grew up the kid of a firefighter, so I saw some real world horrors even as a child. But my god... When the finish is "I'm gonna shoot backfist you AS HARD AS I CAN AND BREAK HALF THE BONES AROUND YOUR EYE", as a blonde mustachioed hot dog once said: "That doesn't work for me, brother." I get it. I do. And I like strong-style wrestling. KENTA, Murder Grandpa, Kana, Bull Nakano, Manami Toyota... I really do get it, y'all. But if I wanted to see stuff like this, I'd watch MMA. I also am not a fan of her selling either. Arm is bloody, screaming bloody murder at the top of her lungs which is taking me out of the match... Oh look, backfist. Scream scream scream... Armbar. Scream some more, followed by another backfist. Again, an absolute legend and Japanese staple who changed the game. Just not for me."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: CorpusSkiptotelicumwrote on 16.01.2024:[10.0] "Women's wrestling goat. There's no one in wrestling history, male of female that delivers better better beatdowns than Aja. An absolute dominant monster in everything she did, never holding back on strikes or power moves. She's also an excellent seller, a very necessary component in the best david vs goliath matches. She was also good for very long... she's cooked now of course, but that doesnt negate her work in the past."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Bar786788wrote on 29.11.2023:[10.0] "The ultimate monster heel and one of the greatest of all time. There is no understating how much of a legend this woman is and how important she is to Japanese womens wrestling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Mugendaiwrote on 24.08.2023:[10.0] "Current day Aja Kong is nearly unwatchable due to her deterioration. That is where my criticism of Aja ends. Aja was a top tier performer for at least two, possibly three decades, a run that is nearly impossible to beat. There are so many good matches from her tenures in AJW, Arsion, GAEA, and freelancing up until the last few years that practically anything involving Aja is bound to be at least watchable, if not entertaining. If she is coasting through the twilight of her career and getting nostalgia bookings, then more power to her! She should make millions of dollars for the work she put in throughout her career. She certainly deserves it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Giantfan1980wrote on 07.06.2023:[6.0] "Saw a few of her matches back in 1995-1996 and she was like the female Vader. Basically murdering girls with power moves and she was good at it."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: ActualHumanWillwrote on 28.09.2021:[10.0] "A legendary, important figure in the world of Joshi. Her offense is believable, devastating, and incredibly fun to watch. She's what every big woman wrestler should aspire to."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Fusionmanwrote on 09.09.2021:[10.0] "Aja Kong is one of the most important women in wrestling and so many of the greats follow directly in her footsteps."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Ma Stump Pullerwrote on 18.07.2021:[10.0] "Easily one of the greatest monsters in wrestling, regardless of gender. In the world of 90's AJW, where workrate and fast paced bouts were the accepted norm, Kong was the critical outlier in that lot: a bullish, aggressive brawler that brought the old chaotic style of the days of Crush Gals and modernised it into a more ruthless standard. I don't think we've seen a wrestler look so legitimate in beating the snot out of her opponents, just brutalising them with stiff strikes and the BEST backhand in wrestling history. I could go into her many bloody feuds with babyfaces not only in the 90's, but all the way up to even 2020 today but there would legitimately be too much to cover. Either in tags or in singles, heels or faces, straight wrestling or hardcore, Kong brought the standard of these matches above and beyond with her antics, squeezing every last bit of intensity out of her opponents while knowing exactly when to sell and be the one dominated in turn. If you love old man Tenryu beating the shit out of the next generation of talent, you'll also love her doing the same. One of the best in the world in her prime and still a force today regardless of age."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: axebombertsurutawrote on 18.04.2021:[10.0] "Aja Kong is a legend not just to Joshi but to pro wrestling in general. Wrestled in so many eras but I love her work with Bull Nakano the most. All time great"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Kungwrote on 10.04.2021:[10.0] "I don't know if I need to explain why Aja Kong is a 10. She is to Joshi wrestling as Michael Jordan is to basketball."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: TENzuwrote on 22.02.2021:[10.0] "Even at her age and limited mobility she still is one of the top wrestlers, it's honestly incredible. She is a legend, no doubt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: sanjurowrote on 21.01.2021:[10.0] "Neck-and-neck with Manami Toyota as the best women's wrestler of all time and likely one of the top 10 regardless of gender. Up there with Vader as the definitive monster heel, an absolute terror in the ring but also incredibly generous to her opponents and one of the best sellers in the business. I don't think she gets the credit she deserves as a true ring general, as amazing at leading in-ring storytelling in both singles and tag matches as she is a lumbering brawler. How she's still going and still putting on quality matches, including ****+ affairs with the likes of Meiko Satomura, is beyond me when you see the punishment she put herself through in the '90s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Khalid Acewrote on 29.12.2020:[7.0] "Aja Kong is a legend. Just last year I've rated her a 8 even at an old age but I didn't like any match she had this year."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: BlueVinsmoke2323wrote on 26.11.2020:[10.0] "One of the best big men/women of all time. Really terrifying and legit wrestler, always can played the role of the monster excellent but also can sold the well. She? s also very athletic for her size. Truly a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: qbortwrote on 01.05.2020:[10.0] "My favorite Joshi wrestler. No one can stop the Kong! She is merciless to her opponents. Many pile drivers. And cool face paint, which Jerry Lawler once said "looks like a bowling shoe"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: JEK 1991wrote on 05.03.2020:[10.0] "Another superheavyweight that was excellent in the ring. She was an excellent heel! She had some exposure in North America."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[8.0] "Aja Kong plays the monster woman role well. Her match against Shida where Kong got her nose busted & still continued to go was especially impressive."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Klabauterwrote on 09.07.2019:[8.0] "Ich kann hier nur 8 Punkte vergeben. Eigtl. hätte Aja Kong mehr verdient für das was sie zur Hoch-Zeit ihrer Karriere abgeliefert hat. Wie so viele lebende Legenden vor ihr hat sie aber leider den richtigen Zeitpunkt für das Karriere-Ende verpasst. Dadurch, dass sie auch jetzt noch ziemlich solide abliefert, zieht sie diese Endphase ihrer Karriere nicht soweit hinunter, wie das bei anderen Wrestlern der Fall ist und sie bleibt dann eben bei 8 Punkten! Außerdem finde ich es positiv, dass sie neben den ganzen Joshi-Ligen, in denen sie antritt auch für so Dinge wie EVE Wrestle Queendom oder AEW Double Or Nothing ihren Namen hergibt. Denn ihr Name hat halt immer noch Gewicht und klingt auf einer Card gleichmal besser, als wenn ein Neuling von ähnlichen oder gar besseren Skills aber ohne Name Value antreten würde. Dass sie ihren Name Value zum Push solcher Events nutzt rechne ich ihr hoch an."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: RatingsMachinewrote on 12.10.2018:[10.0] "One of the stalwarts of All Japan Women, Aja Kong was a fantastic heel and a tremendous brawler. Aja had an aura about her that few heels, male or female, possessed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Luv all wrestlingwrote on 09.10.2016:[10.0] "Aja Kong is probably one of the best monster heels of all time. Unlike most of her AJW brethern, she still performs at a pretty high level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: rustybridgewrote on 10.08.2016:[9.0] "Definitely a beast in the ring and one of the best women and best heels I have ever seen, not just in Japan but anywhere. Not afraid to take on the dudes either who would be making a mistake if they take her lightly. I was also amazed at the number of titles she has won (27) but not surprised. Heard she had a brief run in WWE that was not all that impressive but would like to see her get another chance in the U. S. either with WWE or in TNA."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "Perhaps the best female wrestler ever, Aja Kong is truly something else. Her incredible offense and amazing toughness are absolutely remarkable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: La Trinawrote on 12.11.2015:[10.0] "Aja Kong is one of my personal favorites. Her outstanding look and her tremendous work mark her as one of the best of all time. Her iconic theme song represents most of what she's appreciated for."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Matzinhowrote on 18.09.2015:[9.0] "Joshilegende, die an Matches beteiligt war, zu denen ein Hogan oder Warrior nie in der Lage waren - Klassikern. Kann ihren Stil immer noch fast wie vor 20 Jahren gehen und ist das Prototyp-Powerhouse unter weiblichen Pro-Wrestlern."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: dantethescrubwrote on 10.03.2015:[10.0] "Perfect, Sort of a hero of mine, as weird as that sounds. She was the MONSTER that Joshi needed also she did break some sort of ground as being a Black/Japanese wrestler to be a star in Japan"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: joshimaniawrote on 23.06.2013:[10.0] "Simply the absolute best at what she does, joshi legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Mick Funkwrote on 12.10.2009:[10.0] "Ultra glaubwürdiges Monster mit diversen hochwertigen Schlachten auf dem Konto. Die Zeit bei der WWF ist alles andere als eine gute Grundlage für eine Bewertung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: RiotMorawawrote on 16.04.2009:[9.0] "Ich kann mich hatethetalkmaster nur anschließen.... Die Gute hats einfach drauf.... is halt ne ziemliche Brecherin^^"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Obermackerwrote on 10.07.2008:[8.0] "Nach Bull Nakano das nächste Japan-Ladies-Monster. Brutales spinning backfist finish!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: SternessDustOmegawrote on 06.12.2007:[8.0] "Mit das bösartigste und beste was jemals in einem Ring stand. Gehört zu meinen Lieblingen im Bereich Joshi."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Masterpiecewrote on 09.07.2007:[2.0] "Muss man nicht viel zu sagen ... hatte in der WWF nichts zu bieten ... in Japan mag das vielleicht anders sein! Ich bewerte nur die WWF Zeit!"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: TripleCrownwrote on 29.12.2024:[10.0] "Iconic. The guy was just absolutely perfect in his role, there hasn't been anybody who comes even remotely close to being the interviewer he was. Was great at playing alongside the wrestlers and questioning what they would say in interviews. Not much else can be said, he was just perfect and a legend in professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: crs285wrote on 29.09.2024:[10.0] "The interview guy everyone tries to emulate even to this day. Gene was honestly great and fit perfect in Golden Era WWF. He knew how to interact with the wrestler without being too much and his facial expressions were top notch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Wrestling Foreverwrote on 10.08.2024:[10.0] "ich kann mich nie erinnern ihn mal als Heel gesehen zu haben. Dazu hat er auch jeden Quatsch mitgemacht aber immer sah es so professionell aus. Mene Gene war einer der wenigen die das schafften. Als Interviewer einfach nur großartig. Man kannte ihn auch in vielen Indy Ligen. Er war einfach eine Legende. Leider nicht zu ersetzen wie Bobby The Brain Heenan mit dem er auch bis zu dessen Tod befreundet war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Neon Aussiewrote on 07.03.2024:[10.0] "The quintessential interview guy. When it comes to the best wrestler, or the best commentator, or the best manager, etc there is always some debate about who was best. When it comes to the interview man, or backstage interview man, I dont believe there is ANY debate, Mean Gene is the best there ever was, and the best there ever will be. Great guy, funny, charming personality. One of the people most identified with professional Wrestling of the 1980's."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: JediSaiyanMaster1203wrote on 25.11.2023:[10.0] "You know how Howard Finkel is seen as the undisputed best ring announcer, no matter who has came after him? "Mean" Gene Okerlund is in that same category when it comes to backstage interviewers. Literally, no one has ever came close to "Mean" Gene's level, never before or after. Many would argue that he played a key role in the "Hulkamania" era as a backstage interview, finding ways to get good promos out of almost everyone he was interviewing, finding interesting questions to get really good responses out of them from the likes of Randy Savage. Some of the all time best promos in WWF's history in the 1980s have "Mean" Gene involved in them asking questions, because he was that good of an interviewer. He was also a very good commentator, whenever he got in the booth, always calling the action and letting the audience know what was going on, he had a natural voice for broadcasting. Overall, "Mean" Gene Okerlund is the benchmark for how to be a backstage interviewer in professional wrestling, there will never be another. R.I.P. "Mean" Gene Okerlund."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "Mean Gene deserves high marks for having to be the backstage interview guy and NOT lose his poker face when many of the guys were going off on their coked out ramblings."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: face painted legendwrote on 18.10.2022:[10.0] "Knew his role and excelled at it. If someone stumbled in an interview, fumbled over words, or got lost in the direction of where things needed to go, he was always there to get them back on track. The way he would get the one liners in, the back handed compliments, sell the comments of the talent with his facials, and knowing what to say/when to say it always made the interviews that much better/ entertaining. Also when the WWF at the time started going global Gene, being as featured on television as he was, started becoming just as popular if not more popular than a lot wrestlers at the time. As evidence when him and Hulk wrestled Mr Fuji and George The Animal Steele. With any other none wrestler, that wouldn't have worked, but Gene was over to the point that he made it work. A very irreplacable part to the early years of WWF, also WCW during his time there. There will never be another Gene Okerlund."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Conquistador37wrote on 10.09.2022:[10.0] "His timing, facial expressions and body language were mastered to perfection. One of my favorite anythings in all of wrestling was the absurd sexual tension Woman would practically suffocate him in, hilarious. On freakin fire chemistry with Randy Savage. Was an integral part of Vince McMahon Jr's success and the WWF almost didn't recover from losing him. Iconic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: weredet43wrote on 20.08.2022:[10.0] "A brilliant worker, the best at what he does. A man who is associated with backstage interviews. His voice, charisma, image, will forever be associated with the 80s and 90s. It would seem that he's just a man holding a microphone and asking questions of wrestlers, but "Mean" Gean was able to do it in his own way, felicitously. Without this man, I believe the era of Hulkomania, Hulk Hogan, Randy Savage and many other wrestlers wouldn't be as cool as they are now. Without him, a lot of the interviews lost the charm they have now. And that phrase " Well, let me tell you something Mean Gene...." will forever be one of the favourite and memorable phrases in the history of this business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: WhatIsLooveeewrote on 01.05.2022:[10.0] "Mean Gene was the voice of the Golden Era and one of its personifications. A gifted interviewer with a great memorable voice and unique charisma, who forever inscribed his name in the history of professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: GriffinXwrote on 06.02.2022:[10.0] "Gene is the classic example of someone who was a ten at what did. People didn't buy tickets to see Mean Gene but he helped a lot of other people sell tickets. Guy was so good you never saw how good he truly was until you saw a bad interviewer in comparison"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Abo96wrote on 04.01.2022:[10.0] "Mean Gene ist einfach eine Wrestlinglegende, die ihresgleichen sucht. Als Interviewer eine der großen Stimmen des Wrestlings. Er strahlte immer so viel Seriosität aus und war zugleich sehr unterhaltsam. Jemanden wie ihn wird es leider nie wieder geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Daigotsuwrote on 20.06.2021:[9.0] "Mean Gene was a fantastic interviewer and excellent character. He did a lot more than just hold a microphone for somebody; he actually was worked into a lot of segments and proved that he had better mic skills than almost any of the wrestlers he interviewed. His kind of skill has become a lost art in the business."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: BritishSteelwrote on 17.05.2021:[10.0] "Pro-Wrestling ohne "Mean Gene" ist einfach nicht denkbar. Promos, Storylines, Interviews, Backstage-Segmente - das ganze Drumherum hätte ohne jemanden wie ihn nicht funktioniert. Er war immer der Fels in der Brandung und der seriöse Gegenpart, egal mit welchen Weirdos er es auch zu tun hatte. Genau dieser krasse Widerspruch ließ die Charaktere erst richtig gut aussehen. Mean Gene war mit seiner einmaligen Stimme immer furztrocken, stoisch und eloquent. Auf diese Art hat er auch den größten Gimmick-Psychos die Meinung gegeigt. In diesen Situationen hatte man dann immer ein wenig Angst um ihn. "Your a sick man, Jake Roberts. " Genial. WWE ohne Gene Okerlund ist wie die Muppet Show ohne Kermit - (eigentlich) unmöglich. Ach, manche sollten einfach nicht sterben..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: medousewrote on 14.05.2021:[10.0] "One of the most important personas of WWF when we talk about the "outside the ring" activity. The greatest interviewer, announcer and a guest commentator. All time greatest promos are with Gene holding the microphone, while Hulk Hogan, Ric Flair, Paul Orndorff and many many more did their thing. Many funny and unplanned spots during these promos. I have a good memories when I recall the good-old Vintage Collection. I used to watch the broadcast late evening on TV, with Gene Okerlund as a host and I getting to know the amazing history of this business. Also, I'm sure every wrestling fan recalls the famous: "Well, let me tell you something Mean Gene... "."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: AnBwrote on 04.05.2021:[10.0] "Mean Gene was the real deal. It'd be difficult to find someone having a bad interview with Gene Okerlund, because he made literally everyone look good. Never missed a beat and had an excellent voice."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Uweuwesenwrote on 02.02.2021:[10.0] "Mean Gene Okerlund ist eine absolute Legende! Das jemals ein Interviewer so eine Status erreichen wird, hätte ich nie erwartet. Nur Craig Sager in der NBA war in ähnlichen Sphären"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Der Commanderwrote on 21.01.2021:[10.0] "Alles unter 10 Punkte ist ne Beleidigung für Mean Gene. Die Interviews mit Hogan, Andre, Macho Man in der WWF, oder in der WCW sind mit die legendärsten Momente in Wrestlinggeschichte. R. I:P Gene!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Ma Stump Pullerwrote on 28.09.2020:[10.0] "The best interviewer by far. Gene was a complete professional and could make guys who were good promo cutters but at points hard to understand and managed to condense their rambling down to comprehensible talking points that the general audience could understand: a lot of Hogan's best stuff comes from Gene interviews, and for good reason. Gene was also a solid backstage guy as well and kept things under control if talent flubbed or forgot their lines (which is something underrated, especially on live TV programs where a LOT can go wrong) but he was mostly known for turning crap into gold, even with some of the worst talkers around."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Cameron621129wrote on 20.08.2019:[10.0] "Nobody will ever be able to match him. Quick witted, great at getting talent over and making even the worst segments passable. If wrestlers were ranked based on how much better they were than others in their role, Okerlund would have vineyard to himself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[10.0] "Simply said, there has been no one before him & there's been no one after him to do what Mean Gene has done as an interviewer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: ApexOfEvolutionwrote on 05.01.2017:[8.0] "Er begleitet mich schon seitdem ich mich für Wrestling interessiere. Ließ die Wrestler bei Interviews immer im Mittelpunkt stehen und brachte immer eine nüchterne, zurückhaltende Note ins Ego-Business des Pro Wrestlings."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: The Sick Lebowskiwrote on 13.06.2016:[10.0] "Lange Zeit einer der besten Interviewer, Moderatoren und Kommentatoren seiner Zeit. Er strahlte Sicherheit, Souveränität und Wissen aus, was für seine Rolle perfekt war. Volle Punktzahl!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Y2J316wrote on 28.11.2014:[10.0] "Let me tell you something Mean Gene. Was Finkel als Ansager war, das war gene als Tnterviewer. Tolles Charisma und er konnte egal mit wem ein interresantes Interview führen, welches einen heiß auf das folgende match machte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Phenomenal91wrote on 01.09.2014:[10.0] "Probably the picture perfect definition of a "backstage interviewer. " Gene always went at the job with gusto and a hard nosed determination to get the facts and set the story straight. He asked all the right questions, and helped engage the viewer in the discussion. He also had a lot of character and personality, but didn't let that overshadow the wrestlers. All in all, THE best interviewer in all of wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Basket Casewrote on 28.01.2014:[10.0] "Wohl der beste Interviewer aller Zeiten, dazu auch noch ein sehr guter Kommentator. Mit ihm verbindet man viele tolle Momente aus längst vergangenen Tagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: TheUnderTakerwrote on 23.12.2013:[10.0] ""Well let me tell ya something Mean Gene... " Wertet ein Interview allein schon durch seine Präsenz auf. Eine unbezweifelte Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Johnny-Tennerwrote on 20.12.2012:"Okay war nicht meine Zeit, aber immer wenn ich ihn sehe denke ich an einen grandiosen Interviewer der ziemlich viel Ausstrahlung besitzt und einfach nur geil ist."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Excellence of Executionwrote on 15.10.2011:[10.0] "Mean Gene ist das absolute Eichmaß dafür, was einen formvollendeten Interviewer ausmacht. Und wer das nicht einsieht ..... der kann doch echt nach Hause gehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Boogerman84wrote on 27.09.2011:[10.0] ""Mean" Gene ist ohne jeden Zweifel der Beste seines Faches, den es gibt, gab und geben wird, insbesondere im Zusammenspiel mit Bobby Heenan und Hulk Hogan konnte er zahlreiche grandiose Interview-Momente erzeugen, doch auch darüber hinaus hat er unzählige Interviewsegmente mitgestaltet, die heute als legendär gelten (David Shultz, Ken Patera ... ). Neben der außerordentlichen Redebegabung und der absoluten Souveränität am Mic versteht er es wie kein Zweiter, die erwünschten Emotionen zu transportieren (man denke nur an die Gründung der nWo) und dabei aber immer glaubwürdig zu wirken. Nicht zuletzt hat er seine große Popularität auch dem einzigartigen (stimmlichen wie optischen) Wiedererkennungswert zu verdanken und ist zudem mit einer ordentlichen Portion Charisma ausgestattet. Nach diesem überschwänglichen Plädoyer erscheint es beinahe unnötig, noch zu erwähnen, dass er völlig zurecht Mitglied der WWE-HoF ist und Legendenstatus genießt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Hirnklopswrote on 18.09.2011:[10.0] "Konnte aus jeder Gurke ein passables Interview quetschen, quasi sowas wie ein Ric Flair am Mikro. Leute wie ihn vermisse ich heute... Ein großer Redner, eine unverwechselbare Stimme, ein immer sicheres Auftreten, egal ob er jetzt eingeschüchtert, verärgert oder lustig sein soll... Der Mann konnte es."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Elvis6wrote on 08.04.2011:[9.0] "Also dieser Typ hat mich meine ganze Kindheit begleitet. Allein deshalb schon ne 9. Der richtige Mann zur rechten Zeit. Später hätte er nicht mehr ins Konzept gepaßt aber in den 80 u frühen 90ern genau der richtige Typ für die damalige Ausrichtung . Danke fürs begleiten durch meine ersten Wrestlingjahre"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Addy1982wrote on 12.03.2011:[10.0] "In seiner Funtion als Interviewer war er der beste ! Gute alte WWF / WCW Zeiten !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: The-Game91wrote on 29.05.2010:[10.0] "Einer der besten Interviewer und Kommentatoren überhaupt. Seine Stimme bohrt sich in die Köpfe der Fans und macht ihn zu etwas besonderem."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: shoopdawoopwrote on 10.03.2010:[10.0] "Was soll man da noch sagen? Mean Gene in einem Segment = es ist garantiert besser als der Durchschnitt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Aglaoswrote on 11.09.2009:[10.0] "U know something Meeean Geeene... Ach ja, da gerät man ins Schwärmen. Einfach nur Kult der Mann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Nachtfalterwrote on 09.09.2009:[10.0] "Schlicht und ergreifend der beste Interviewer aller Zeiten in diesem Geschäft. Mit weitem Abstand."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: MattBornewrote on 06.09.2009:[10.0] "Der Beste indem was er gemacht hat. War immer überzeugend, die Art wie er Gespräche geführt hat, haben mich sehr angesprochen. Das war damals so, das ist auch heute noch so, wenn ich mir alte Tapes anschaue. TOP!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Mick Funkwrote on 06.05.2009:[10.0] "Das was J. R. als Kommentator ist, ist er als Interviewer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Father Nelsonwrote on 18.01.2009:[10.0] "One of the first names that come to mind when I talk about wrestling!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Edibaswrote on 04.08.2008:[10.0] "Der Interviewer schlechthin. Völlig zurecht in der Hall of Fame."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: ecw foreverwrote on 22.06.2008:[10.0] "Einer der besten Ansager der Geschichte, hinzu ein wirklich treuer WWE angestellter, nachdem er AWA verliess, war er bei WWE und nur WWE, und wenn er mal wieder einen WM ME oder ne HOF ansagt, dann bin ich immer wieder froh, er hat diese charakterliche Stimme."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Mr Money in the bankwrote on 19.03.2008:[10.0] "Ich fand Meang Gene immer klasse , er war lustig wenn es angebracht war und er konnte auch mal einen anderen Ton anschlagen wie z. b in einem interview mit den Natural born thrillers. Auch fand ich das Interview klasse in dem Mean Gene die fähigkeiten von El Dandy anzweifelt . Für mich ist er in seiner Position auf jeden fall unerreicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: flakkiwrote on 14.02.2008:[10.0] "Legendär, seine Interviews mit dem Hulkster, einfach ein Unikum!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Bullit69wrote on 13.01.2008:[10.0] "Mean Gene! Einfach toll der Mann! Bekommt Pluspunkte, weil er so auf Burger und Pizzen steht wie ich! ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Masterpiecewrote on 10.10.2007:[10.0] "Genial, vor allem wenn er Ric Flair am Mic hatte! "Meeeeeeeeeeeeeean! WOOOOOOOOOOOOOOOOOOOOO ... Gene! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Carlito Cenawrote on 06.09.2007:[10.0] "Mean Gene - ob in der WWF oder WWE oder WCW, mich hat er immer am Mic erfreut. Kult!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: yogywrote on 01.09.2007:[8.0] "Der mann ist einfach kult! Ich mochte ihn schon immer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: BigVanVaderwrote on 22.07.2007:[10.0] "Der beste Interviewer aller Zeiten! Mean Gene ist Kult."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Sandman16wrote on 17.07.2007:[10.0] "Eine echte Legende. Für mich der beste Interviewer den es je gab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Steven McWheelerwrote on 03.07.2007:[10.0] "Einfach eine Legende! Sein Name gehört zum Wrestling wie die Ringseile;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Die Legende am Mic! Seit Ewigkeiten dabei und zu Recht in der Hall of Fame! Es gab dutzende von denkwürdigen Momenten mit Gene Okerlund - das gibt eine 1 !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: RealWrestlingFactswrote on 02.02.2025:"Just wanted to come here and say I heard what you said Hamza Tufail, you realise Rey Mysterio got his 619 from a move called Tiger Feint and Satoru Sayama learned that move probably from other Luchadors, never say Tiger Mask is a bad seller and Luchador right"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Anas Kingwrote on 20.01.2025:[2.0] "Probably one of the more influential figures in wrestling that inspired countless people. Having said that, just because you are influential doesn't mean you are a great wrestler too. I think he's very overrated. He was not a consistent worker. He botched a lot. I'm willing to forgive you if you do it 2 or 3 times, but he has done that countless times. I also don't like how little selling he used to do. I don't think he is masterful when it comes to in ring story-telling and in ring psychology. His matches were sometimes good, but sometimes very meh. I don't like how people go out of their way to give high ratings to older wrestlers just because of their nostalgia factor. I can name so many luchadoors that were or are way better than him. Just look at Rey Mysterio. That man also does a lot of high flying moves, but he does them so smoothly. AND he's a much better seller."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: TigetMask15wrote on 18.01.2025:[10.0] "One of the greatest wrestlers ever lived one of the best in everything I miss him so much man my favorite of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: JackBurtonsTruckwrote on 14.10.2024:[9.0] "The definition of innovation. Tiger Mask not only had the athleticism, and the looks, but he also had the mind. His highlight real is unparalleled."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Zak22wrote on 27.05.2024:[10.0] "One of the most revolutionary talents of all time. He was a high-flying, quick moving genius. His work in NJPW stands above that of his peers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: YourKingMobwrote on 29.03.2024:[10.0] "The David Bowie of wrestling. By that I mean, much like with David Bowie, imitators made entire careers out of copying just a single element of what Sayama was doing. Deserving of that 10, but I can see a 9 just because his career was cut short by simply being pushed out of wrestling by Inoki's hate for cruiser/junior weights, literally fighting with the other wrestlers who went on to form shootstyle and shooting (which he did as well) and his hate of wrestling after all the backstage politics. On the other hand: don't read into homeboy's politics outside the ring, and also the fact that he was TOO CRUEL for Karl Gotch to be named his successor? Makes Ultimate Warrior seem like a bleeding heart liberal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: laddermatchwrote on 18.12.2023:[10.0] "Satoru Sayama aka the original Tiger Mask was perhaps one of the greatest pioneers and innovators professional wrestling has ever seen. Satoru took a popular manga/anime character in Japan at the time in Tiger Mask and brought him to life. His jaw dropping aerial maneuvers mixed with his martial arts background made him the most unique talent in the business at the time. His matches with Dynamite Kid were legendary and every fan of wrestling should watch those. He paved the way for the junior heavyweight style in NJPW as well as Japan in general. He was way ahead of his time too as most wrestlers weren't doing what he was doing at the time. His UWF work was absolutely sensational as well. Many Tiger Mask's came after him, including the late great Mitsuharu Misawa, but nobody could quite do justice to the mask like he did. Misawa's best work was after he had dropped the Tiger Mask persona anyways so I don't identify the mask with him as much as I do with Sayama."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: benh2wrote on 11.01.2023:[9.0] "His initial NJPW and UWF run was really his entire career so it's not super long but he was absolutely ahead of his time. The run from 81-84 is arguably a good a three year stretch as anyone has ever had. Inspired a whole generation."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Ma Stump Pullerwrote on 25.10.2022:[10.0] "There are few I actually give a full rating for, but Tiger Mask for me is one of my personal favourites: someone who just was such a natural master at what he did that even today people are struggling to keep up, with a unique blend of kickboxing, wrestling, lucha, British catch, and Japanese Gotch shoot-style. No one since has been able to capture the grace and agility of Sayama at his very best, and even when he was much fatter, barely wrestling and in his 40's he could still completely astound crowds with his spots despite far younger spot-monkeys being around at the same time; they lacked his showmanship, his charisma, but also his ability to make his spots seem natural and seamless: never looking convoluted or overtly fake, but also immensely crisp and fast. The truly amazing fact is that Sayama only actually wrestled full time for about 9 years (7 if you just include NJPW work, and he leaves early in 1983, and you can also exclude his unseen Young Lion years as well) before leaving to do Shooto: less of a decade was all he needed to establish himself as one of the greatest of all time, and that's not including his matches post-return in 1995 which he went on to actually have a lot of good to outright fantastic showings. How many performers have that accolade? Very few from what I can see. He's one of the few guys you could take completely from his era in his prime, make no changes whatsoever and he'd still be as over now as he was then, he was that good. I implore people to check out his UWF and later work as well: despite it being mostly shaken off it massively benefits his case with the sheer amount of quality he has despite the less than stellar conditions. He works a good part-time ace in RJPW for a good long while until his retirement as well. Easily one of the best in wrestling and someone that always delights in his matches regardless of the era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: texasyoshwrote on 29.04.2022:[10.0] "Masterful at his craft. Incredibly influential and well regarded wherever he went. Legend, icon, whatever you want to call him, Tiger Mask was all of that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: NeoSwas36wrote on 23.03.2022:"Satoru knew how to wrestle, it was clear. Man killed it in so many matches and pioneered the Tiger Mask trend in wrestling. He was a clean wrestler, and I think that's because he also had some remarkable trainers. Awesome wrestler."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: GriffinXwrote on 22.01.2022:[10.0] "You go back and watch what this guy was doing in the 80's its like watching a modern match with how amazing he was. He was just so ahead of the curve. Reason why after him many more Tiger Masks and Tiger Mask like gimmicks followed because he was so good he made it work and people wanted more"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: arrancarwrote on 22.01.2022:[10.0] "It is absolutely incredible how outstanding of a wrestler Sayama was. He was performing moves and spots back in the 80s which would shock and wow people even today. His agility, speed, flexibility, sharp striking, and precise grappling were all absolutely perfect. While the majority of US wrestlers in the 80s were messy-brawling and lumbering around the ring, Sayama was effortlessly flying and dancing around like wrestling was as natural to him as breathing. Sayama was always best when booked against a really dirty heel because he could then embarrass them with his flashy moves and bravado. His speed really cannot be understated. Plenty of times I've had to rewind some of his sequences because I would swear that his movement could only have been so quick with the use of video editing. How could he spin around someone with perfect technique and at such a drastic pace' The answer was that he was simply one of the most creative and exciting wrestlers ever to grace the art. Very few people are able to wrestle such a dazzling style without coming off as superficial like a total exhibition performer, but Sayama found a way to have extremely compelling match stories all while putting on a world-class in-ring display. He always made his opponents' own offence feel important (even if his selling was sometimes suspect), but he was simply so spectacular that he always overshadowed them nonetheless. Definitely a pioneer for the high-flying wrestling style. I usually only reserve 10/10 ratings for wrestlers who have had multiple world-class (****1/2+) matches, but for people as immensely skilled in their era and as influential for the entire art of pro-wrestling as Sayama was, I can't deny that the man deserves a 10/10. If he wasn't treated as so much of a pure "attraction" then he could have had many great matches throughout the 80s and 90s, but I have no issue judging/presuming from his incredible individual performances that it wouldn't have been hard for bookers to have him put on some truly world-class matches if they so wished. It's a shame that he is often overshadowed by the far inferior Liger when it comes to popular consensus on the best and most influential high-flyers and junior-style wrestlers of all time, but I have no doubt that Tiger Mask/Sayama is one of the greatest ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Kungwrote on 22.05.2021:[10.0] "The First Tiger Mask is one of the most legendary junior heavyweights to ever live. His matches with Dynamite Kid and Yoshiaki Fujiwara are as legendary in the Puro world as any matches in the subgenre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: CyberVolteswrote on 31.08.2020:[10.0] "Satoru Sayama was not only one of the greatest wrestlers of all time, but also one of the most influential. Whether a wrestler establishes himself as a technician, a high-flyer, a shoot-styled wrestler or a combination of any of those, it's more than likely he owes something to Sayama's work, even if he's not aware of it. After a bumpy start in his career, Sayama received proeminece as the first (and, to this day, the most praised) incarnation of the character Tiger Mask, based on the homonymous manga. Under this new persona, Sayama took part in a series of game-changing matches (most notably, against Dynamite Kid), gaining universal acclaim for his intense in-ring work, which included top-level agility, crispy moves and an impressive aerial offense. After his retirement as Tiger Mask and taking his interest in proper martial arts to the next level (Sayama had been formally training in sambo and kickboxing by that time), he would be on of the pivotal wrestlers to kickstart the shoot-craze. Under either his real name or the purple and grey Super Tiger gimmick (Misawa was the new Tiger Mask by that time), he'd go on to have a different kind of unique matches in prime UWF, with a more realistic approach, heavy on kickboxing strikes (the latter being met with much disgrain of fellow pivotal shootwrestler Akira Maeda). After retiring from pro wrestling altogether, he would go on to create Shooto, dedicate himself exclusively to martial arts and help to introduce Vale Tudo in Japan, ultimately becoming a key figure in paving the ground to what would become MMA. Eventually, he would return to pro wrestling, helping to put over younger talent (including his protegé Tiger Mask IV), taking part into matches with other aging legendary wrestlers from his era and, at last, creating his own promotion, Real Japan Pro Wrestling, with a mix of pro wrestling and martial arts showcases. As for some constant revisionist criticism, such as calling him sloppy or saying he didn't have psychology in the ring, those have been played up a lot by the naysayers. Not only Sayama was pioneering styles of wrestling in an era when both the audience and critics had a different mindset regarding what a good match was, but most of his matches have, in fact, aged gracefully. He would occasionally botch some of his moves, but that never really took too much from his matches, specially because he was polished in mostly everything. All in all, Sayama has made his mark both in the ring and also behind-the-scenes, earning his status a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Jetlagwrote on 27.08.2020:[7.0] "Von einem athletischen Standpunkt aus war Tiger Mask I über jeden Zweifel erhaben, ganz klare Sache. Allerdings war er an Dingen wie Selling oder Matchstruktur nur mäßig interessiert. Dies zog sich auch durch seine 90er-Kämpfe. Zwar konnte er reihenweise schöne Moves auspacken, aber an wirklich mitreißenden Matches, welche das Publikum auch psychologisch aufpeitschten, war Sayama nur selten beteiligt. So gesehen könnte man Sayama als frühen Spotmonkey einordnen, ein paar starke Kämpfe in der UWF ziehen die Wertung aber noch nach oben."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: SZ1989wrote on 22.07.2019:[10.0] "Everything about Sayama's contributions to professional wrestling has already been said, but it should be noted that he was one of the founding fathers of shoot-style, which speaks volumes about his overall ability as a wrestler and innovator."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: ElPolloLocowrote on 21.06.2019:[9.0] "Let's get one thing out of the door: I will be forever indebted to Satoru Sayama for introducing me to pro-wrestling. As Tiger Mask he was so ahead of his time, so innovative and so exciting he managed to get me hooked pretty much right away. His matches with technically gifted luchadores like Fishman and Ultraman introduced me to the good side of lucha libre: Tiger Mask had tremendous matches with these great wrestlers. However Satoru Sayama also has a dark side: he's an extremely bad seller. I don't know if this is a choice, a quirk or just the way Inoki trained him but even my young impressionable self kept on wondering on why Tiger Mask kept on shrugging off Fishman's mat work aimed at neutralizing his kicks by working on the legs. Thanks for everything Tiger-sama, but that awful selling costs you one point!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: JEK 1991wrote on 31.12.2018:[10.0] "A pioneer as a cruiserweight and high flying. In 1982 he wrestled in the WWF as the Junior Heavyweight champion and bought in many things to North America such as smaller wrestler and high flyers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Satoru Sayama was a great worker, and revolutionary for his time; his impact on wrestling cannot be overstated. A lot of his moves and matches still hold up today, but even if they didn't, to hold that against him is to completely miss the point of a wrestling match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Makai Clubwrote on 23.03.2018:[9.0] "Highly influential, innovative. When you watch clips of Sayama, you see just how quick and smooth he was. Sure, there are far better technical wrestlers theses days but none of them could probably do the moves Sayama did at the speed he did it. So quick. His kicks were lethal and pinpoint. Very underrated in his ground game. Sayama often doesn't get the credit he deserves in the shoot style and what lead to. Whilst his preference of kicks lead to UWF going out of business, they were so important later in the future."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: singaporecanewrote on 16.06.2016:[10.0] "It's impossible to understate the influence of Sayama/Tiger Mask on junior heavyweight wrestling. Without him, there would be no Jushin Ligers, no Rey Mysterios, and certainly no CM Punks or Daniel Bryans. While he wasn't the first guy to wrestle shoot style or use high flying techniques, his melding of the two is what helped to create the style that would push smaller wrestlers into the mainstream. All of this while not even including the fact he's one of the most important figures in MMA history with his formation of the Shooto organization in the mid 80s. There's a reason so many people cite Sayama as an influence on modern day wrestling; because he was an amazing wrestler. EDIT: Also, to the people saying he was "sloppy" based off of one clip/gif they saw; go watch TM vs Bret Hart, or his match with Akira Maeda. Even his stuff in World of Sport is very clean."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: mdkarlwrote on 06.06.2016:[10.0] "trust me i was there when this guy was doing his thing... it was like watching the first star wars movie then or now... seeing black and white tv then or now...   wrestling in a work between 2 guys... your opponent needs to do his job to let you do yours.  tiger mask was revolutionary and very few guys were trained to work with him.  he was doing his matches for the first time... not copying proven routines with 20 years of track record.   if todays youtube crowd want to judge him anything less than a 10 with their 30 years of sunday morning quarterbacking... they are wrong"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Mizzle Assault Antwrote on 02.05.2016:[7.0] "He is credited as both a great high flyer and the first high flyer, but I'm not sure either are quite warranted. Some of his matches with Dynamite Kid hold up and some don't, but his case outside those matches is very thing. He can be entertaining but also very sloppy, and I think his influence is somewhat overrated. Still a notable talent but not quite so much as he gets credit for."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: PuroFanwrote on 04.03.2016:[10.0] "The man that opened the way for high-flyers in Japan, he could both mat-wrestler an high-flyer, but always keeping his quality"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Hirnklopswrote on 12.05.2014:[10.0] "Was kann man hier Anderes vergeben als 10? Als Wrestler top, als MMA-Fighter top, Shooto top, Alles top. Super-Super. Sollte die Bayern trainieren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: yanuswrote on 04.01.2014:[8.0] "Innovative worker, but Sayama also botched a lot of his moves. Very often lacked any psychology or selling (I haven't seen his more recent stuff). I admire the fact, that his matches with Dynamite Kid inspired so many wrestlers, but to be honest, I thought that DKid carried Sayama more that the other way around. So, overall a good wrestler, but not someone, who was a complete package in the squared circle like Tsuruta, Misawa or Flair."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Kenshin Uesugiwrote on 28.02.2013:[8.0] "Ist zwar heute mehr ein Garfield als ein Tiger, aber so ist das eben mit dem Alter. Natürlich ein Pionier und wegweisender Wrestler desen Gimick ja immer noch sehr wertvoll ist, siehe die nachfolgenden Tiger-Mask-Wrestler. Sein Matches gegen Dynamit Kid sind immer noch wieder gern gesehene Klassiker, aber auch die leider etwas vergessene Fehde mit Tiger Hunter Kobayashi zeigen das da mehr war als“nur „Technik und Highflying. Aber genau wie Inoki einer der meinte gewisse Shoot-Fighter wären bessere Wrestler, dennoch eine Legende."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Leonewrote on 04.02.2013:[10.0] "Satoru Sayama is a legend in pro wrestling, and not just in Japan, but in general.  When he debuted as Tiger Mask in 1981 and feuded with the Dynamite Kid for 2 years, history was made.  Their matches were fast, exciting, explosive, full of risks, and containing spots that were way before their time.  Their last singles match together received the 1st 5-star match from Dave Meltzer.  In his prime, I feel he would still hold up well in today's industry, even though " the game" has evolved so much.  Sayama was also 1 of the 1st wrestlers in Japan to suggest a more realistic approach to wrestling matches, which lead to him (very temporarily) joining Akira Maeda's UWF promotion, which eventually helped the evolution of what is now known as Mixed Martial Arts.  The mark that Sayama has left is a large one.  One that opened many doors for both cruiserweights and stiffness in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Pius123wrote on 08.08.2011:[8.0] "Japanische Legende. Einer der ganz großen und er zeigt selbst im Alter noch gute Matches."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Technicowrote on 24.07.2010:[9.0] "Der hat doch auch den Tiger Feint Kick (auch bekannt als 619) erfunden, wenn ich mich nicht täusche. Kann das jemand bestätigen?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Wolfhartwrote on 19.04.2010:[10.0] "Zu den Verdiensten dieses genialen Mannes in der Vergangenheit ist schon alles gesagt, aber darüber hinaus kann man sich den Mann auch heute noch angucken - Respekt! Wrestlet heute noch deutlich besser als Ric Flair mit dreißig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: RickRollwrote on 17.04.2010:[10.0] "Zu sagen das Dynamite Kid ihn durch die Matches ziehte grenzt schon fast an einer Frechheit wirklich. Mr. Sayama ist ganz ganz große Klasse. ER war es der die Jr. Heavyweightszene revolutionierte und er war immer cool mit seinen coolen Karate Kicks."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Rated R Champwrote on 13.04.2010:[10.0] "Der erste Tiger Mask ist wohl eine der legendärsten Figuren des japanischen Wrestlings und setzte zu seinen besten Zeiten in Punkto Technik und High Flying Standards. Man muss sich nur seine Matches mit Dynamite Kid anschauen (unter anderem das erste ***** Match von Meltzer) um zu sehen wie fantastisch der Mann auf seinem Höhepunkt war. Kenne nicht viel Aktuelles von ihm, aber seine vergangenen Leistungen sind mir die 10 wert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Raywrote on 01.04.2010:"Seine Einflüsse spürt man heute noch bei Juniors. Er, seine Maske und sein Stil sind heute noch legendär."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Fountain of Misinformationwrote on 30.03.2010:[7.0] "Sicherlich zwischen 9-10 Punkte für die guten Jahre und wegweisenden Matches als Junior Heavyweight wie auch als Shootstyle-Wrestler. Heute kriegt er zwar seine Trademark-Spots trotz Übergewicht und hohem Alter noch erstaunlich gut hin, hat aber jegliches "Feuer" verloren und ist allenfalls für die damalige Generation junger Wrestling-Fans für einen Nostalgie-Effekt gut. Abgesehen davon hat er durch seine damalige Abkehr vom Pro Wrestling, den damaligen Äußerungen und seiner darauf folgenden Rückkehr zum Wrestling zumindest bei mir keine Pluspunkte gesammelt, was jedoch nicht in meine Wertung einfließt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Aquifelwrote on 08.02.2010:[10.0] "Wohl eine der bedeutendsten Figuren im Jr. Heavyweight Bereich. Legendäre Matches gab es zu Genüge und in den 80ern hat er Sachen gemacht, die seiner Zeit vorraus waren und auch heute noch mithalten können und zum Staunen bringen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Eddiewrote on 06.12.2009:[10.0] "Absolut geile Matches die er gegen Dynamite Kid und Steve Wright auf die Matte gezaubert hatte. Auch sonst einfach ein großartiger Wrestler, der es zwar vielleicht übertreibt mit der aktiven Zeit, aber das ist für mich bei ihm kein Abzug wert, da man sich die Kämpfe schon noch ansehen kann, und nicht wie bei anderen in Langeweile ausarten, 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: T-Waynewrote on 14.09.2009:[10.0] "Eine Klasse für sich, damals. Sollte jedoch aufhören mit seinen Teilzeitaktivitäten, den heutzutage ist er nun wirklich nicht mehr der Beste. Aber trotzdem 10 Punkte, allein wegen seiner Matcheserie gegen Dynamite Kid."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Juvicidewrote on 18.06.2009:[10.0] "Absolute Legende im Wrestling. Seine Matches mit Dynamite Kid muss man gesehen haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Father Nelsonwrote on 01.02.2009:[10.0] "Watch Sayamas matches with Dynamite in the late 70s to early 80s! They where way ahead of their time!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Smoothwrote on 12.11.2008:[10.0] "Der beste Asiate, war seiner Zeit weit vorraus und konnte mit sseiner schnallligkeit wie seiner technik und neuen Wrestling Moves überzeugen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: EvenflowDDTwrote on 31.07.2008:"wenn man bedenkt das Hogan bei WM 3 weltweit begeistern konnte mit einem powerslam, aber zu der Zeit Tiger Mask in Japan schon seinen Highflyer Stil gezeigt hat. Dann frag ich mich wirklich wie ungerecht das Geschäft sein kann. War seiner Zeit wirklich um Jahre vorraus, so wie es die Japaner immer sein werden."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: suntan superstarwrote on 26.06.2008:[10.0] "Tiger Mask ist das Paradebeispiels eines Highflyers. Im Ring unheimlich wendig und in seinem Vorgehen nachvollziehbar bestizt er auch ein großes Arsenal an Moves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: felixwrote on 28.03.2008:[10.0] "Es ist schwer in objektiv zu bewerten, da jeder von seinen legendären Matches gegen Dynamite Kid gehört hat. Wer sich wirklich intensiv mit ihm und seiner Geschichte beschäftigt weiß, dass er seiner Zeit mindestens 15 bis 20 Jahre voraús war. Er hat Standards gesetzt und Mauern eingerissen, ohne die das heutige Wrestling nicht so wäre wie es ist. Absolut und ohne Frage ist er einer der legendärsten Puroreso-Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: mdbnasewrote on 13.01.2008:[10.0] "Allein die Matches gegen Dynamite Kid rechtfertigen die 10 pts!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Rob Van Duesenschrauberwrote on 24.07.2007:[10.0] "Ohne ihm und dem Dynamite Kid würde Junior Heavyweight Wrestling ganz anders aussehen, er war seiner Zeit um Jahre voraus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Pulpulwrote on 24.07.2007:[10.0] "Vorreiter der Junior Heavyweights in Japan. Die unumstrittene Nummer 1. Tiger Mask's Stil war einfach einzigartig und bleibt für immer unerreicht. Alleine die Matches gegen Dynamite Kid rechtfertigen die Bestnote."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Diawrote on 21.07.2007:[10.0] "Der Typ ist der Beste Wrestler für mich den es gab. Seine MAtches sind Legendär, schade das er aufgehört hat ..... wer immer noch einer der die Massen Begeistern kann und vieleicht wird mal eine der anderen Tiger Masks ran kommen an ihn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: kelseywrote on 09.02.2025:[7.0] "Bret Hart is a 2.5 on the microphone, a 10 in the ring, 9 for gimmick. Bret was the best in ring wrestler on the WWE roster in the 90s. The reason I am giving Bret a 7 is because he had bad mic skills and he could not draw. Bret Hart has had many classic matches and he is perfect in the ring but he lacked in other areas."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Moosehead13wrote on 08.02.2025:"I'm not sure anyone has ever had better ring psychology than Bret Hart. He's absolutely elevated the standard every time he was in the ring, and should have been rewarded better for it. I think today a lot of people think of him as the hitter dude that hates Goldberg. But Bret really loved professional wrestling, and having had it taken from him a few different ways over the years and you really get why."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wrestling Foreverwrote on 24.01.2025:[10.0] "Moment, ich habe Bret noch nicht bewertet und kommentiert. Nun wenn ich den 90er schon als Kind WWF geschaut hätte dann wäre er so schnell einer meiner Lieblinge geworden. Man könnte so viel über Bret schreiben. Einer der besten Wrestler die es je gab, gibt und geben wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TripleCrownwrote on 30.12.2024:[10.0] "Best Canadian wrestler of all time and one of the all time greats in professional wrestling. You couldn't make a Mount Rushmore of wrestlers without including Bret Hart. You'd think his promo skills would be bad given how mellow he is, but he was fantastic on the mic and had lots of charisma. His in-ring work speaks for itself, was a pioneer in professional wrestling and still influences folks to this very day. Had a huge impact on professional wrestling and was somebody you could put all your trust into when it comes to going out there and having a good match. If anybody doubts how good Bret was, just see his match against Bulldog at the SummerSlam 92 PPV. Bret carried him to a great and memorable match, the guy was able to do everything and more. It's a shame that the tail end of his career was blighted by the whole Survivor Series incident and Goldberg legitimately ending his career. Was such a sad end to what was an incredible wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KayfabeTheatrewrote on 25.12.2024:[10.0] "The best there is, best there was, and the best there ever will be. Brets matches always had just this realism that is on another level of other wrestlers. His selling is top notch, one of the best to do it. You could tell he was in a fight for his life every match. Ringwork top notch. Promos started weak in the beginning but turning heel and reaching top level status, he improved and again the realism to his promos, he believes everything he says. The biggest crime is Bill Goldberg kicking him in the head and we never got to see what a Shawn Michaels like return 2002-2010 run would have looked like."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ItsAllAWorkAnywaywrote on 10.12.2024:[9.0] ""The Excellence of Execution" was Hart's most deserving title, as his in-ring work was crisp and only got better with age. He was a reliable worker, too, and could make the best out of any situation as either a champion, midcarder, or tag wrestler. A regrettable in-ring injury lead to a career-ending concussion, and he was faltering for "the other guys" as the promotion he carried during its darkest time finally reached new heights, but Bret's one of the best there is, best there was, and best there ever will be for good reason."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Pompeyrobwrote on 03.12.2024:[10.0] "One of the very best of all time and my personal all time favourite! In the cartoony environment of 80s and 90s WWF he made everything he dud look so believable and realistic. The first wrestler in mainstream Aerican wrestling that really wowed mecwith technical skills when I was a kid and his matches still hold up! He's influenced so many who have followed him and I wonder how many five star matches he would have if he'd come along in a later period or berm based somewhere like Japan in his prime. The fact that he still has do many mat classics to his name when wrestling in 90s WWF speaks to his skills when technical ringwork was usually not the promotions priority back then."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: AceHagannwrote on 26.11.2024:[9.0] "A great part of what made wrestling so great in his time. Brilliant performer, always able to get the attention of the crowd. Lots of his matches are gems, it's not too hard to find a good Bret Hart match."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: mostlyflotsamwrote on 22.11.2024:[10.0] "His catchphrase wasn't a gimmick, he really was the best there is, the best there was, and the best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: WWFanwrote on 17.11.2024:[10.0] "The first Wrestling show I ever went to was Wrestlemania 13 it sucked until Bret Hart saved the day. Bret was the master, a real general in that ring. He had that crowd in the palm of his hand. I know lots of people don't like his promos but I do. He was never a goofball like the rest of them. He meant business, I like that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JeffreyJayKanewrote on 13.11.2024:[10.0] "One of the best to ever do it. In-ring there are only a few that can compare. Sad that his career was shortened by other wrestler's lack of skill."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wrestlingfan0808wrote on 10.11.2024:[10.0] "The best there is , the best there was, and the best there ever will be. A true artist, excelled in all the little things. His psychology was top tier. Was very adaptable with whoever he wrestled. Threw one of the best punches in the history of wrestling, a true lost art in wrestling today. Everything Bret did looked believable and real. Was so reliable that you could count on him for almost everything. He could have a good match with a broomstick because of how good he was. Does not get the credit he deserves for the role he played in the attitude era when it took off the way it did after he left the WWE in 97. His feuds with Steve Austin and Shawn Michaels is one of the best feuds of all time for an American wrestling promotion. Wrestling today would be better if more people try to follow what Bret did in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: wrestlingswiftiewrote on 31.10.2024:[9.0] "Clean, technical, well-executed style. His selling was great, and his matches felt like movies. The only thing holding him back from a 10 is his lack of promo ability."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: punkybrewster96wrote on 27.10.2024:[10.0] "If I could rate higher than 10 I would. Bret is, in my opinion, the best ring technician ever, and his promos were actually underrated. Made wrestling so credible and made everyone emotionally invested in him, regardless of their opinion of him. Career cut short due to sloppy Bill Oldberg. Wish we could've gotten Bret-Angle dream match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JackBurtonsTruckwrote on 14.10.2024:[10.0] "The blue print for what being all around excellent is. He may not have had the highest number of all time great matches like Angle or Michaels, but he never gave less than 100% and forever will be known as one of the most consistent and safest workers there ever was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TFforeverwrote on 01.10.2024:"One of the greatest professional wrestlers to ever live, his matches alone will captivate you, the technical skill and realism of his strikes and holds absolutely transcend the sport. Rockstar look, amazing as a face or heel, mic skills could've been better, but his wrestling was so good it's not even a factor."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Nolan Greenwrote on 01.10.2024:[10.0] "The best there was, the best there is, and the best there ever will be. That may not be true anymore, but for a time, it was. He was great in the ring and could carry almost everyone to a good match. (The one exception is Goldberg for obvious reasons). He wasn't great on the mic, but he improved overtime. Even with his garbage 2010 return, I still give him a perfect score. He was, quite simply, excellent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Zak22wrote on 25.09.2024:[9.0] "A technical god but.... He was also capable of having a boring, lifeless stinker. Bret was exceptional but he wasn't the best there ever will be."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: dangfoolianwrote on 21.09.2024:[10.0] "I mean, what can I say about Bret that hasn't already been said by everyone else. A technical god and a master of in ring psychology. Could get a good match out of nearly anyone, even Will Sasso. A career ended far too soon. An all time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jsbortswrote on 19.09.2024:[10.0] "Bret is fantastic even if he's only had like 5 good months of mic work. Bret could make an 8 minute match as great looking of an athletic contest as a 25 minute match and a 60 minute match, and could work all three with entirely different approaches depending on the opponent. I think what Bret did perhaps better than anyone was bending his style and the match dynamic depending on the situation and opponent, and he was incredibly technically gifted. One of the few people who deserves the high opinion they have of themselves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: StrongLocks2wrote on 03.09.2024:"Bret Hart is widely celebrated as one of the greatest professional wrestlers of all time, known for his technical brilliance and exceptional in-ring skill. Often referred to as "The Excellence of Execution, " Bret's matches are a masterclass in wrestling technique, characterized by his precise execution of holds, counters, and high-impact maneuvers. His ability to tell a compelling story through his matches, combined with his commitment to wrestling authenticity, has earned him immense respect from fans and peers alike. Bret's charisma, coupled with his dedication to perfecting his craft, has solidified his legacy as a true legend in the world of professional wrestling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: sbprodwrote on 28.08.2024:[10.0] "The best there is, the best there was, the best there ever will be. Brett Hart is a top 10 wrestler of all time, he had it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Chosen Onewrote on 26.08.2024:[9.0] "Es ist Bret Hart. Ich kann aber keine 10 vergeben, weil die Promos nicht oft genug ein hohes Niveau erreicht haben - meiner Ansicht nach. Gerade in 1997 hat er starke Promos abgeliefert dank seinem erfrischtem Charakter und der Rivalität mit Stone Cold Steve Austin. Die meiste Zeit war er aber so la la."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Nudlewrote on 26.08.2024:[10.0] "The excellence of execution, the best there is, the best there was, and the best there ever will be. May be the single best worker of all-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ChocoboSagewrote on 08.08.2024:[10.0] "The wrestler that got me into wrestling, in an era of giants and odd characters, there was Bret Hart. Who was doing things no-one else could come close to at the time, with a couple of exceptions (Perfect, and Owen). He had everything, the look, the style and the work rate. His promo work is always mentioned to be his weakest side, but it's honestly not bad. He just couldn't compare to the greats of his day, like Flair, Roddy, Macho and then Stone Cold. He'll always be the best there is, the best there was, and the best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KayfabeZonewrote on 08.08.2024:[10.0] "Not only was Bret a tremendous wrestler, but his impact on the business is undeniable. After the controversy surrounding the steroid trial, Bret was the perfect guy to carry the WWE flag going forward. He delivered excellent performances inside the ring while also being the perfect role model that captivated audiences back then. He could wrestle against any type of wrestler and he truly perfected the technical style. He made everyone who he stepped in the ring with look as credible as possible, no matter what the outcome was going to be. When it comes to his promos, he was never the greatest in that department, but his 1997 heel promos were truly a work of art. Bret left a lasting impact that is still being felt today. He proved that you didn't need to be jacked to the gills to be a main eventer in WWE, and he helped restore the company's reputation after what could've been a huge disaster."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wrest lingaddictionwrote on 05.08.2024:[10.0] "The greatest in-ring performer of all time. Couldn't cut a promo for the life of him but when you're that good in the ring it doesn't matter. Bret was so good he could make something as simple as a leg drop look painful. People often overlook him as the best technical wrestler in favour of Danielson but for my money, Bret was and still is the best there is, the best there was, and the best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "I love Bret. Bret and Owen are two of my favourite wrestlers when it comes to the technical style. Bret really is The Best there is, The Best there was, and the best there ever will be."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sal1314wrote on 31.07.2024:[10.0] "We often see wrestlers in modern times do so many flashy maneuvers and rely on their athlectic ability, which at times makes the matches feel more like stunt work than a realistic contest.  Bret Hart was a true embodiment of what a pro wrestler should be during the 80's and 90's. excellent storyteller inside the ring, great in-ring psychology, and a top-tier technician with realistic selling ability. Character wise Bret Hitman, despite not being a great promo cutter, worked for the new generation era, especially post-hulk hogan. He was a natural babyface that both adults and kids loved and respected. His babyface run became stalled after The Ringmaster turned Stone Cold Steve Austin. The Heel turn in 1997 was shockingly great; his promos during that period were the best of his career. For new wrestling fans who didn't see any of Bret's matches, I recommend his matches against the likes of Mr. Perfect, Owen Hart, Steve Austin, the British Bulldog, Kevin Nash, 123 Kid, Shawn Michaels, and Chris Benoit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JBruce1018wrote on 11.07.2024:[10.0] "A miserable, bitter old man? Yes. The best there is, the best there was and the best there ever will be? Hell yes. Everything he did in the ring had a reason and was realistic, he carried so many opponents to their best performances that it just says how great he was. I wish his career wasnt cut short, but what we got was brilliant. Always improving on the mic throughout his career and he was wise to not doubt El Dandy. Also, any vote for him below an 8 (besides a 4/10) is just wrong."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rassle Fanwrote on 07.07.2024:[10.0] "For me he's the greatest wrestler who ever lived. Everything he did was crisp, smooth, and made sense. His promos were his only weakness but they weren't that bad and his work in 1997-98 was his best. He deserved a better end to his career than what he got but all ancient history now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Johanwrote on 30.06.2024:[10.0] "The greatest wrestler of all time in my eyes, so flawless in the ring, the greatest in ring storyteller there ever was, up there with the best technician there ever was, top three american sellers at the worst and a criminally underrated brawler, even an all time great there, his match volume and quality speaks for itself in the short run he had as a singles star"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: doobwrldwrote on 26.05.2024:[10.0] "Not many people realize the proclaimed moniker of Excellence of Execution. In the grand scheme of professional wrestling, the goal is to present an authentic, and appealing style that progresses forth the notion that the mat is sacred. I see professional wrestled as artists, in the sense that every wrestler has their own unique style, work for their own niche benefits, and can portray so many emotions and feelings just through the mat. There has been no better artists in the context of professional wrestling than The Hitman himself. He is never going to be overrated, and his ability in the ring is never going to go out of style, because he is the basis for what every professional wrestler should be. Brilliant, effective, and respectful. Its easy to give him so many superlatives on his performances, but it will never be enough to describe the true contributions and impact he has had. An icon of professional wrestling, and a surefire contender for greatest of all-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Dntbamarkwrote on 14.05.2024:"I go back and forth on Bret. On one hand, he's one of the absolute greatest to ever step between the ropes and into the ring. His intelligence, in-ring psychology and dedication were unmatched. He, along with Shawn Michaels were easily the face of the mid 90s new generational shift in talent. He wasn't as flashy or charismatic as Michaels was but Bret was a style very much in his own. On the other hand, Bret was never the big time draw on the levels of a Hulk Hogan or a Macho Man, his promos or personality were never the greatest unless he was complaining about being screwed by someone. His WCW run in the late 90s ended his career on a sour note and he spent the years between that and his HOF induction in 2005 bitter that he got worked over in Montreal. He always came across to me as an entitled mark-for-himself prick who only wanted things to work his way or no way at all. That being said, Bret's one of the absolute greatest to ever to do it."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: StardomIconwrote on 12.05.2024:[10.0] "When he's not trashing Bill Goldberg, Bret hart gives excellent insights on what modern day pro wrestling is missing and what wrestlers need to succeed. Bret claims wrestlers need to check off the following three boxes: look, promo skill, and in-ring ability. Using Bret's system to rate the Hitman himself, it's clear Bret's promo skills weren't the best. He wasn't bad, but I can't recall any Bret Hart promos bringing out emotion like some of the other greats of his era. Fortunately, he had great monikers, like "The Excellence of Execution" and "The best there is, the best there was, the best there ever will be". When it came to look however, Bret stood out from the rest of his peers. The pink and black tights complemented by hearts, skulls, and sunglasses were all top-tier 90s aesthetic. As far as his in-ring ability goes, he was unmatched. Like a good novel where every word has meaning, every action in a Bret Hart match had a purpose. He mastered the fundamentals - just look at the way he locked up with opponents, ran the ropes, or threw punches. His matches were paced well and told stories, where it truly seemed like he was trying to beat his opponent rather than coordinate with them. Taking all three categories into consideration, Bret was able to elicit a wide range of emotions and passion from wrestling audiences. Just watch the crowd's reaction during Bret's match against Mr. Perfect for the Intercontinental Championship at SummerSlam '91 - it's the perfect example of everything professional wrestling should strive to be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MatnificentMattwrote on 10.05.2024:[10.0] "Bret was amazing and he had one of the most legendary careers in wrestling history. His in ring psychology, selling, and technical abilities are unmatched. Everyone who wrestled Bret always came out better whether they won or they lost. He has had some of the best matches and moments in wrestling history and his work is timeless. Bret Hart truly is The Best There Is, The Best There Was, and The Best There Ever Will Be"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MarkMcMarkington2wrote on 02.05.2024:[10.0] "Bret made wrestling look more real and believable than anyone besides maybe Angle or Benoit. Its a shame he spend his career at mid 90s WWF with often terrible wrestling and then left for WCW. He was a man way before his time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jeremyeyorkwrote on 21.04.2024:[10.0] "Almost from the day I became a wrestling fan, Bret was my favorite wrestler. Even as a heel he was. His matches were top-notch. You were rarely ever saw a bad match come out of him. When I go through the list of some of the greatest matches from the 1990's, he in most of them. SummerSlam 1991, 1992, WrestleMania X, WrestleMania 12, King Of The Ring 1993, just great great matches that had set the standard for many of the next generation's wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BMWrestling17wrote on 17.04.2024:[10.0] "Why are you reading reviews here? Better watch his classic matches and you will realize he's the best there is, the best there was, the best there ever will be. Greatest canadian wrestler of all time. No matter what."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Perc Anglewrote on 12.04.2024:[9.0] "Bret Hart is known as one of the greatest of all time but still remains underrated. If you like guys like Daniel Bryan or anyone else of that caliber then you should at least appreciate The Hitman. Without him there is no little guy as champ in WWE. He could make a broom look like a star and still will be overlooked."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Bean1985wrote on 11.04.2024:[9.0] "Hitman is a great one, his only limit was himself and his personality. In ring definitely in the upper tier of excellence. Great career, consistent and with a considerable peak. Mic skills not so great, but to be honest Ive always enjoyed watching him, even when he turned heel. Totally dislike his personality, he kept in his post career his sharp and cutting characters. To me, probably one of the most relevant Gods of this business"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: nothingleftinsidewrote on 27.03.2024:[10.0] "Truly the best there ever was. Hard to find a bad match, though they do exist. He could have been better on the mic, but he had the it factor enough to hold down that top babyface spot for many years, and worked quite well as a heel. He was the face of the company during its darkest times, and to a lot of people that's a detriment, but he kept the ship afloat when it was sinking the hardest. His career could have been longer, but he was at his peak when he went out, so there's no embarrassing late career stuff to tarnish his legacy (well almost none of that, considering the awful 2010 comeback matches). His WCW run is disappointing, but there are some high points, some good matches with [redacted], Booker T, Flair, DDP. Aside from that, there isn't much left to criticize. His tag team run is some great shit and he has many of the best technical performances ever. He could even work a good brawling style. I guess you could call his matches repetitive and he was the original "moves of doom" wrestler but I think that's a common complaint people have of wrestlers they've seen lots of matches from. From a kayfabe standpoint, it would make sense to have a "bag" of stuff that worked to pull from. A+ worker, B- talker, A gimmick/look. It's definitely worth watching his greatest hits."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Cass93wrote on 26.03.2024:[10.0] "I always come back and watch Bret Hart's matches, he is the most entertaining in-ring wrestler for me. I will give him a 10, even if he doesn't deserve due to his promo skills."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BruceMarcos524wrote on 24.03.2024:[9.0] "Arguably one of the best professional wrestlers of all time. Bret Hart has certainly cemented his own legacy by performing an elite match that only few of the people could ever pull. One of the best technical wrestlers in history and one of the guys that prefer storytelling over athletics, in which it's a forgotten element in wrestling nowadays. He had great rivalries with Owen Hart, Stone Cold Steve Austin, Jerry Lawler and most notably, Shawn Michaels. He has a great sense of psychology in performing a move and every move he delivered tells a story. Bret is one of the guys who even made the most boring wrestling style the most entertaining one whenever he's in the match. Bret knows which move he should perform to keep the crowd from investing and being entertained. He is also a gamechanger in terms of the political nature of the company, as he is first of the guys who doesn't need the size and muscles like Hulk Hogan and Ultimate Warrior and rely solely on skills to be the top attraction star of the company. He is incorruptible, as proven by his numerous backstage stories like how he is against HBK's politicking and putting over Rocky Maivia in contrast from suggestion by HBK's then-lapdog, Triple H. He is almost a near-10/10 wrestler, but his promo abilities derailed him from getting that perfect score and I cannot simply overlook it because one of the importance of his character is the way he talks to the crowd. As his promos and his in-ring abilities are needed together for him to build a great characterization of himself. Unlike AJ Styles and Kazuchika Okada who doesn't need to cut promos as the action speaks for itself. One of most notable as he needed his promo power was during his 1997 heel run, as his arsenal of moves still garner a good reaction from the crowd and he cannot complement it with his heel persona. Although less charismatic, still Bret has a certain connection to the crowd, and he's mostly appeal to the kids as they see Bret as the most relatable hero in WWF/E."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: GoldLigerwrote on 24.03.2024:[10.0] "Bret Hart I think might be the GOAT contender with the most What Ifs. This is a man who had a career of less than 22 years, of which the part that actually built his legacy was only about a decade at best, all of that run being in Hulkamania & New Generation WWF which was basically allergic to proper professional wrestling much of the time. Bret was an incredible technician, an underrated brawler, a believable promo, excellent face or heel (being part of the best double turn in wrestling history), had one hell of a look in his main event WWF run with the hot pink shades, and was known to be one of those guys who never got a bad match out of a situation where a good match was possible. You could even argue that Bret is the reason the Attitude Era even exists due to making that WM13 match so perfectly built around getting the crowd to love Austin. To think that because of disrespect and mistreatment he left for WCW who fumbled his push and put him several awful angles until he got a career-ending concussion in only the year 2000, and he STILL is Top 10/5/3/1 to so many people says leaps and bounds about his abilities. That's why he's so full of What Ifs. A non-concussed Bret Hart that rode out his WCW contract and refused to work with McMahon or Russo working NOAH or ROH in the early-mid 2000s could've had the run of a lifetime, a 00s on par with a Danielson while having his solid 80s work and excellent 90s work behind him, and yet he doesn't need to have had that run to receive the praise he has. Since retiring Bret's also pretty much been a straight shooter, he's got a good head on his shoulders and everybody he still has a grudge on honestly earned his ire one way or another (plus I love how little he cares about talking shit about Russo or Goldberg or whoever). No matter who screwed Bret, he's one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SchenzenJohnwrote on 06.03.2024:[10.0] "Bret Hart ist DER Wrestler. Jeder seiner Moves gehört in ein Wrestling Bilderbuch. Dieser Mann hat Wrestling geatmet. Leute wie Moxley sollten sich paar Matches von ihm anschauen um zu verstehen wie gutes Wrestling funktioniert. Sein Selling was vor allem in Submission Matches gut sichtbar ist , ist verdammt glaubwürdig und konsistent. Er hat selbst semi gute Wrestler gecarried und aus vermeidlich schlechten Matches noch das Beste gemacht. Es gibt Aufzeichnungen wo er selbst den Kameramännern Zeichen gab von wo sie filmen sollen. Seine Mic Work war spätestens bei der WCW gut auch wenn er hierbei nicht mit einem The Rock / Flair oder ähnlichen mithalten hätte können. Zudem war es ihm auch wichtig ein Save Worker zu sein, was ihm auch überragend gelungen ist, er hatte meines Wissen nach keinen einzigen Wrestler in seiner Karriere verletzt. Bret Hart ist 5 Sterne Wrestling. Um hier nicht zu lang zu werden möchte ich nur noch sagen wie schade ich es finde , dass wir bestimmt noch 10 gute Wrestling Jahre hätten sehen können hätte es diese personifizierte Beleidigung des Wrestlings namens Goldberg nicht gegeben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Dirty Diegowrote on 23.02.2024:[10.0] "The best is the best there was and the best they ever will be , definitely in my all time top 10 wrestles of all time, , the safest worker of all time, best at timing his move he could make a suplex or a backbreaker look good, had so many great matches back in stampede in the 80, s to classics with his brother Owen , mr perfect, Shawn Michaels and stone cold Steve Austin, to bad wcw didnt do nothing with him but still had a legendary long time career"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SJ Millerwrote on 22.02.2024:"Arguably the greatest mat worker of all-time, to him every match was a story and every move should mean something. By his own admission not a naturally great talker but could cut a very believable promo when he had a genuine axe to grind, especially as a heel. The first truly international main event attraction after Vince's national expansion, his popularity in Europe was immense."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Scottielstamperwrote on 06.02.2024:[10.0] "To me a top guy in so many ways if we only seen Bret from the territory day to his intercontinental title run he would still rank high. When he got that world title run from Ric Flair things were history Yokozuna Stone Cold and so many great matches. Bret could work single or tagteam heel or face Bret was great at working a match with anyone just about."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CommisarRobewrote on 01.02.2024:[10.0] "His nickname says it all. Bret is one of the most believable and realistic Wrestlers of all time. His selling was stellar his understanding of in ring psychology was always of top standard and contributed to telling great stories during the course of his matches. Finally Bret was also a legitimate star maker very willing to put over people and build them up in feuds with probably the best example of this being Stone Cold Steve Austin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: tlaustinwrote on 08.01.2024:[10.0] "Smart, safe, cerebral, multi-talented artist that changed the game and made wrestling better because of it. I will never say no to a Bret Hart match. If there's a real critique to be had of the man, it's that he wasn't always great on the mic, and it's that much of a testament to how much he "gets" wrestling that he was -that- captivating of a figure without being able to cut the best promos. I doubt anyone looking here is really shocked to see a 10 on a rating of him, but if you have somehow made it to cage match and haven't seen a Bret match, just... look at the match guide and start. Really. Do it. There is a very, very high chance that the wrestling you like begins with something he did."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JediSaiyanMaster1203wrote on 19.11.2023:[10.0] "For my money, Bret Hart is the absolute best in ring performer of all time, he's a prime example of less is more. Bret Hart is the perfect in ring wrestler, with countless submission holds, realistic selling, perfect execution, legendary storytelling all made him an elite wrestler in the ring. Even in terms of character and charisma, Bret Hart was actually not bad at it. Sure, he never had the wild personality that a Hulk Hogan had, but his persona in 1997 as a heel is nothing short of genius, showcasing he can cut promos and have personality. Bret Hart has always been a joy to watch, no matter in tag teaming or singles competition. The Hart Foundation is, arguably, the greatest tag team in WWF history, having classic matches with The Rockers, Demolition, The British Bulldogs to name a few, everyone considered Bret Hart their favorite out of the members, he was always bound to be a star no matter what. Then he breaks off and does his solo run, winning the Intercontinental Championship from Mr. Perfect in one of the best matches in WWF history, having a great run that eventually ends, but then recaptures it after beating Roddy Piper in a classic match at WrestleMania VIII, a match that anyone can easily understand the storytelling and appreciate it. He eventually goes on to become a main eventer and even becomes a 5 time WWF Champion, back when that statistic meant something, having great matches with The 1-2-3-Kid, Shawn Michaels, The Undertaker, Owen Hart, Diesel, Razor Ramon, The British Bulldog, etc. Then 1997 arrives, he's having a generational feud with Steve Austin, even makes Steve into the star he became (Steve has said it himself), turns heel and does the Anti-America/Pro-Canada gimmick, along with starting The Hart Foundation faction, some of the best stuff in WWF during the time. Sadly, Bret Hart got screwed out of the company on his last day in the company and ended up wrestling in WCW... *sigh* at least he had amazing matches with guys like Ric Flair and Chris Benoit. Overall, Bret Hart is one of my all time favorite wrestlers, he was amazing in almost every way, shape or form. "...The Best There Is, The Best There Was, And The Best There Ever Will Be! And if you don't like it, tough shit! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MagCat81wrote on 17.10.2023:[10.0] "My favourite wrestler since I started watching in the early 90s. Bret gets some criticism for his mic skills/promos, but one of the reasons he appealed to me so much (and I think a lot of other fans worldwide) is that he came across as a serious athlete surrounded by larger than life characters and so he was someone we could relate with and root for. He was equally realistic and believable in the ring; everything he did made sense and had logic behind it and his offensive moves always looked as if they were connecting and having an impact, although they were also very safe and he famously never caused any serious injuries. His selling made a particularly big impression on me as a child - I used to think he had really hurt himself, because he would sell exactly as you would if the move actually did hurt. Technically he was nearly flawless and his matches had excellent psychology and storytelling too. Plus he had a great look, with iconic ring attire - and even his weaker point, the mic skills, had improved a lot by the late 90s as he settled into his own promo style. As for people who call him bitter, I think we would all be bitter if we had suffered even half of what he suffered in the space of a few years. He was the greatest ever in my opinion and always will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: andytuga86wrote on 25.09.2023:[6.0] "Always found him overrated and even boring in the ring sometimes. He may had some refined technical skills but his promos were insipid. He's not the "Best there ever will be" that's for sure. Later on he became an angry old bitter man, burying everything and everyone in interviews."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Chris Marshallwrote on 17.08.2023:[9.0] "Bret Hart made the wrestlers that shared the ring with him look better, and that is a true complement for a person in this business. His promos could come off a bit robotic & lacking some of the flair some of the other greats possess, but in ring there are few that can hold a candle to Bret. His work is crisp and has a well thought out feel to it. He came in with a game plan to beat his opponent and move by move he would allow the audience to draw themselves into the story and live out the joy of victory and the heart break of defeat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BigPoppaSmurfwrote on 16.08.2023:[10.0] "He's the best. A '10' rating should be extremely rare, but in Bret's case it's fully justified. He was the best bell-to-bell worker ever, he was over, he had a great look, he's underrated as a talker, and he has a body of work of great matches with widely different wrestlers from Shawn Michaels to Yokozuna to Hulk Hogan to The Undertaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: mpichwrote on 11.08.2023:[10.0] "Technisch einer der besten Wrestler aller Zeiten, zudem auch - insbesondere für mich selbst - eines der wichtigsten Aushängeschilder der WWE der frühen 90er. Er ist sozusagen der Knotenpunkt zwischen klassischer 80er-Jahre-WWF und der späteren Attitude-Ära. Sonderlich charismatisch oder charmant war Bret Hart eigentlich gar nicht, wenn man es im Nachhinein genau betrachtet, aber irgendwie dann doch, alleine durch seine Präsenz, Power und emotionale Abgebrühtheit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ViolenceBretwrote on 08.08.2023:[10.0] "Arguably the greatest technician to ever step-foot in the ring and a total professional by all accounts. Bret Hart was the antithesis of Hulk Hogan, and that was completely okay by the early 1990s. Coming from Canada and trained by his legendary father Stu, Bret first established himself as a tag team dynamo. Once he moved up the ranks and became WWE champion, everything just seemed to fall into place as a new generation was solidifying itself. There was always a certain sophistication to Bret that was absent in most American wrestlers. As a "good guy, " he carried himself like a star athlete and not some super hero. His promos were never over-the-top, yet once the landscape changed Bret started showing a lot of raw emotions. Thus one could argue his speaking ability was actually better than most people claim. Moreover, in terms of look the glasses and leather jacket combo just worked. Things in WCW could have been better, but Bret managed to win nearly all the top-titles at some point. Even after a career ending injury, his return to WWE was a cathartic experience and proper farewell. Sure he did nothing with the US title, but it's Bret so who cares. Watching him beat Vince with a chair for an awkward prolong period of time just seemed right. God bless the Hit Man. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MrRaider959wrote on 26.07.2023:[10.0] "Bret is a wrestling legend. He has had amazing stints in WWF and a kickstart in Stampede Wrestling. His rivalries with Steve Austin & HBK are classics and enjoyable to this day. I don't agree with his Bill Goldberg opinions. I believe Hart had a 5-star career and it was time to move on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: bigredtalk89wrote on 21.07.2023:[8.0] "Call me a hater, but I think his in ring work is criminally overrated. He's great, but a step below the greatest in ring workers IMO. His selling was just decent, and most of his moves(while competently executed) lack any sort of flare. His promo skills were hit and miss, but he was capable of great work."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Jman8600wrote on 16.07.2023:[10.0] "Hart was technically sound in the ring and could make anyone look as sound in the ring as him. He wasn't the greatest on the mic, but his technical skill was so great that what he was lacking on the mic didn't really matter. He was also capable of carrying Vince McMahon's company as he did during the New Generation Era. Overall, Hart can definitely say that he is the best there is, the best there was, and the best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MattHallwrote on 13.07.2023:[10.0] "Awesome Technician in the ring, Squash Matches or PPV matches, this guy can make anyone look like a million bucks. Never too flashy and never too boring in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Undertaker4everwrote on 08.07.2023:[10.0] "Einfach der Topstar der frühen 90er und Golden Ära der WWF! War einer meiner absoluten Lieblinge damals! Der Montreal Screwjob war dann leider das Ende seiner WWE Karriere! Seine WCW Zeiten hab ich nicht sol verfolgt aber leider ist er dort dann ziemlich untergangen! Leider musste er dann seine Karriere dann doch früher als gedacht beenden!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KTG1515wrote on 03.07.2023:[6.0] "I'm certainly too young to have any kind of nostalgia for Bret Hart, and I've only gone back and watched a handful of his work. His matches with Owen Hart and Stone Cold are fantastic, but he also owns a plethora of boring work in WCW, and possibly the most boring match of all time in his ironman match with Shawn Micheals. He was ahead of his time but doesn't really hold up to me today."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: danzitorockwrote on 20.06.2023:[10.0] "An absolute legend who has inspired countless wrestlers throughout the ages, Bret "The Hitman" Hart is one of the most spectacular wrestlers in the ring, with impeccable technique. His skill is incredible, he is the definition of being a perfect wrestler, with all the necessary attributes, he is a kind of ultimate wrestler, of the highest caliber."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Talisonpulidowrote on 19.06.2023:[10.0] "My all-time favorite wrestler. From when I started watching wrestling around 86 to today. Currently rewatching all of WWF 1997 for his epic heel run."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: crs285wrote on 19.06.2023:[10.0] "In the ring Bret is one of the greatest of all times. Backstage politics hurt his career in WWE and WCW. On the mic he was good but not phenomenal. Bret's in ring work was so great he forced McMahon's hand in giving him a push that he normally would have given to a bigger guy. Inspired multiple generations of wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: InsertFunnyNameHerewrote on 17.06.2023:[10.0] "Quite possibly the greatest wrestler who ever lived. He made everything he did look real, and even if he wasnt the best promo himself, his best promos felt real. Overall one word I would use to summarize Bret is real"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Giantfan1980wrote on 07.06.2023:[10.0] "Come on, seriously! Bret was an automatic 10 from pretty much the time he arrived in the WWF until, unfortunately, when Owen died. Bret admitted he stopped caring by 1999 as the idiots in WCW did NOTHING with the opportunity they were given. You didn't miss much of his WCW days but it doesn't hurt his overall career performance."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: arminaminwrote on 30.05.2023:[10.0] "My personal favorite wrestler of all time.He is one of the main reasons why wrestlers like Stone Cold and Shawn Michaels are a big thing now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MasteroftheMatchGuide99wrote on 14.05.2023:[8.0] "I will admit that Bret Hart was a good worker and made his opponents look legit at all times, but my only nitpick is that I personally found him kinda boring. He seemed to have a diving crossbody and Sharpshooter as his 2 main things. I'm not saying that's a bad thing, but it did sometimes make me wonder if he had anything else he could use if those 2 didn't get the job done. His wrestling was phenomenal most of the time and he could work anybody no matter the size, including Yokozuna, but I just think his style was a bit one-dimensional at times."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: eenfish69wrote on 09.04.2023:[10.0] "Despite his reputation as a "technical" wrestler, he had supreme versatility. His best comparison would be to Mitsuhara Misawa - a man who also deeply cared about the business and how he was viewed when discussing bookings, someone who also was willing to throw it all away when he felt agrieved, and someone who believed in a level of realism that many others around didn't. Realism not in the sense of making every hit look like it connects, but realism in story and feeling, making people feel that Bret really was out there putting his body on the line and not allowing things he did distract people from the fact this was supposed to be a fight. People talk about wrestling not being "real" - but just like movies aren't real they still work to engross us so that we believe all that we see on screen and measure it by how believable and sensical it is - and in this way Bret always worked to make wrestling feel real. Like Misawa, he was the character that he played - some guy from Calgary who was the son of a hard nosed grappler and promoted who trained him on a cement floor in a frozen basement and taught him to be tough but honourable. And as wrestling changed in the mid 90s and Bret's character was no longer congruent with what wrestling was becoming, the finest heel turns occurred puncuated by one of the finest matches of all time. During WWF's darkest period, Bret elevated the in ring quality of all he shared the mat with and insisted on a level of quality that was sparse at best in the company. His matches with Piper, Perfect, Michaels, Austin, and Smith are amongst the finest in company - and wrestling - history, and there is genuine argument to say his feud with Owen is the greatest ever. Like Misawa, his understated and stoic presence and character would allow others to elevate and shine, which fit perfectly when surrounded by larger than life characters like at the start of his career and when facing the evil heels as a pristine baby face. Some might call it boring, but for the larger than life to feel larger than life, there needs to be the realistic life. Bret Hart is life. Bret Hart is wrestling. Bret Hart was the best and his work is timeless."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KKeanelwrote on 18.03.2023:[9.0] "I appreciate Owen little bit more than Bret as a whole wrestling persona, but no one can deny his contributions to professional wrestling. Technical god with many charismatic highlights from his career."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: John Brandowrote on 14.03.2023:[10.0] "Bret Hart ist einer der besten und wichtigsten Wrestler der WWF in den 90er Jahren. Was die In-Ring-Qualität angeht in den Top 3 der WWE-Geschichte. Alles andere war auch nicht so schlecht, seine Rivalität mit Michaels ist ikonisch. Bret Hart würde ich in meiner persönlichen WWE-Liste auf Platz 5 stellen, Michaels sehe ich insgesamt noch ein bisschen besser vom Ganzen her betrachtet. Da ich Fan von beiden bin, sage ich: Danke für alles, was ihr für die WWE getan habt! Period!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: kewf1988wrote on 11.03.2023:[10.0] "Bret Hart was one of the best technical wrestlers ever, and while he never had the strongest personality, he had excellent in-ring charisma, and his mic skills weren't as bad as people say, especially when you watch his heel run in 1997."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: DangoDaisukiwrote on 08.03.2023:[6.0] "Hmm, ich fand Owen Hart schon immer den eindeutig besseren Wrestler. Die Matches von Bret waren für mich nie mehr als Durchschnitt, charismatisch fand ich ihn auch nie. Aber direkt schlecht ist er ja definitiv auch nicht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Makai Clubwrote on 05.03.2023:[10.0] "One of the greatest wrestlers ever. Most people that market themselves as "geniueses" aren't really that but Bret genuinely is. His blend of style and story is really unmatched on the States side. He could do anything, with anyone, for anything. His team with the Hart Foundation, while known for being one of the better teams, is a low point in his career for me as Neidhart is a big weight to carry. But him as an indivual was always undeniable and seemed destined to be pushed, going back to the 80s. And then he got his chance. And while he is unimpressive as a drawing figure and I can point to hundreds of actual draws without tripping over myself pretending Bret was in the US (he was a draw overseas though), his work is everything. And he's one of the few wrestlers where fans actually agree and still see him as this hero and legend. I can run through his work but do I need to?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: greaterdalewrote on 02.03.2023:[10.0] "Bret Hart is truly one of a kind. Back when he wrestled in WWF good in ring work wasn't always in high abundance but if Bret Hart was on the card, you knew you were going to get a banger. King of the RIng 1993 for example is absolute classic and that had a large part in due to Bret hart wrestling 3 awesome matches. (Seriously watch that PPV if you haven't before it's one of my favorite Bret Hart showcases for sure. Bret even had a fun match with Skinner of all wrestlers, and no ill will toward Skinner but that was mostly because of Bret Hart. The excellence of execution could carry like no other, and when faced against someone who was actually good as well it usually became something special."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MilkDDTeawrote on 18.02.2023:[10.0] "Bret revolutionized pro-wrestling, and impacted the industry in a way that few people ever have. His in-ring techniques brought a sort of legitimacy to this art, and ushered in a new standard for what we consider good wrestling. It's hard to understate his influence given the countless number of wrestlers after Bret's time in the ring that have taken inspiration from him and have tried to replicate the realism he contributed. His classics with Owen, Shawn, Stone Cold and others will forever stand the test of time. You could watch any of his matches and immediately understand why he is so great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: GrapsDownUnderwrote on 09.02.2023:[10.0] "The people who have rated him low are objectively wrong to be honest. There is in no way shape of form any explanation to convince me Bret isnt one of the best pure wrestlers of all time. If not THE best"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wrasslinfan619wrote on 09.02.2023:[10.0] "If you wanna know how great Bret is, I think he is severely overrated yet still A 9. He is one of the best maybe, NOT THE BEST like some argue. HBK is better, but that being said he has some of the best matches ever with Owen Hart and others so there's that. EDIT: Nothing on my opinion has changed, just giving him A 10 real quick even if I think he's overrated, he's still A 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Puro113wrote on 02.02.2023:[10.0] "My favourite wrestler of all time. Growing up in the 1990s, Bret was the absolute man. He had insane amounts of talent in the ring, he could pull a great match out of literally anyone. Some may have surpassed him in terms of match quality, but Bret set the standard for what was to follow, and he is rightly an inspiration to many wrestlers today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Aliquickkwrote on 01.02.2023:[9.0] "Work doesn't hold up as well after seeing Kurt Angle take the best mat wrestler ever mantle. Still an all time great but I dock him for mic skills and also one for his wrestling not being as fantastic as I remembered. Missing an aerial game. Still one of the best ever all things considered, but overrated relative to GOAT peers."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Abo96wrote on 21.01.2023:[10.0] "Ohne Frage einer der besten Wrestler aller Zeiten, im Ring vielleicht sogar der beste. Technisch und von der Ringpsychologie her eine Klasse für sich. Jedes kleine Detail gibt bei ihm Sinn. Selling außergewöhnlich realistisch. Hat die WWF über Jahre als Face der Company, vor allem in Europa und natürlich Kanada getragen. Als Face fühlte er sich zwar immer wesentlich wohler, jedoch war für mich persönlich seine beste Karrierephase die Fehde gegen Austin und seine Heel-Rolle als Anführer der Hart Foundation. Bei WCW konnte man ihn nie richtig einsetzen, allerdings hat der Screwjob ihm auch viel seiner Passion für das Wrestling geraubt. Trotzdem hatte er auch dort noch seine Highlights. Vor allem gegen Benoit und Flair waren seine Matches immer noch sehr gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: benh2wrote on 13.01.2023:[9.0] "Bret was a fantastic worker. He grasped the basics better than almost anyone and all his matches were flawless in terms of how he paced the match, how smooth he was, how he sold and how he fed and positioned himself for his opponents. His offence was fairly run of the mill but it was always crisp and meant something in the context of that match. He had a good look and wasn't completely devoid of charisma but bar his tweener run in 1997 his promos were never much to write home about. Unlike other superstars of his generation, Bret's main selling point to the fans was the match itself and although he was capable of absolute greatness when he was truly motivated, he coasted a lot more than one might have hoped."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MainEventMasterwrote on 02.12.2022:[10.0] "The legacy of Bret Hart in pro wrestler will be looked back upon forever, one of the greatest workers ever, I simply cannot describe what this man means to pro wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Mcbolskywrote on 22.11.2022:[6.0] "I just can't get behind Bret Hart as a person or a wrestler. He took himself too seriously outside the ring and was pretty boring inside the ring. Natalya and Owen are more entertaining than Bret."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CurlyHairMetalPunkwrote on 22.10.2022:[8.0] "From a strictly wrestling ability stand point, Bret Hart was what he proclaimed himself as in the best there was, best there is, and best that there ever will be. For years, the microphone skills of the Hitman were adequate but unmemorable. Come 1997, the Hitman was good (while not great) on the microphone. You will not find a better professional wrestler when it comes to the list of timeless classic matches that have stood the test of time. Professional wrestling fans that started watching during the Attitude Era and after need to do themselves a favor and watch the many battles the Hitman had with the likes of Mr. Perfect, the British Bulldog, Owen Hart, Diesel, Shawn Michaels, and the Undertaker."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: benny5bellyswrote on 11.10.2022:[10.0] "Very few childhood favourites are still loved when you grow up and become such a bore you obsessively rate things on here but Bret does. If only he was in WCW when he was in WWF and WWF when he was in WCW. The Stone Cold feud and everything associated with it is only second to Austin/Vince in best feud in company history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: RavenCrow75wrote on 06.10.2022:[7.0] "For the most part I will be basing my Wrestler ratings on five criteria four of which are based on in-ring ability and the last on charisma. I believe these five criteria are pro wrestling's version of Tommy Lasorda's criteria of "five points" in baseball. For pro wrestling those five criteria are power, speed, technical ability, hardcore & charisma. Bret Hart's scores: Power: 6 Speed: 6 Technical: 9 Hardcore: 7 Charisma: 7 for a total of 35 and an average of 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: kcharles520wrote on 29.09.2022:[7.0] "Possibly the most overrated wrestler in the history of the business. Bret Hart was one of those wrestlers who could consistently have good, solid matches, but rarely amazing ones. His technical skill allowed him to coast his way to ***1/2 type matches time and time again, but rarely beyond that. Only when he was paired with a wrestler with true intensity (like Austin) did he ever put on true classics. His style in and of itself was technically solid but bland, and he needed a more physical opponent to truly bring the best out of him. Yes, Bret Hart deserves a place in wrestling history but he was far from 'the best there is, the best there was, the best there ever will be.'"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheOneAndOnlyCactuswrote on 13.09.2022:[10.0] "Setting a new standard in technical prowess in the west and showing that main eventers could be more than beefy dudes in the land of the giants, Hart s fingerprints on wrestling can still be felt in modern wrestling, especially in the workrate-based AEW. A lot has been said about how awful he has been in terms of promos but really, I just think when he was being himself, he was great. He could bring some realism to the product. There is so much to say about him, but let s just say that I still believe he is Canada s greatest wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jonsnoewrote on 18.08.2022:[10.0] "The best there is, the best there was, and the best there ever will be. This enough to say about Bret Hart. If I rated wrestler according to Bret's rating, it should be 10/10 Looks 10/10 Promo 10/10 In ring One of the best professional wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Ozzywrote on 07.08.2022:[10.0] "Greatest Technical Wrestler Of All Time, Best There Is, Best There Was, Best There Ever Will Be.10/10 is the only answer i can give the man, hes a beloved god when it comes to his in ring performance, and its easy to see why. Shame his career was cut short by Goldberg, and that he left WWF after the screwjob, but understandably why. Bret was will always be regarded as one of the greatest to ever do it for a reason, everything had a reason, everything made sense, and he could make anyone look good. Bret deserves some more light on his name now a days, with people like Bryan Danielson given the greatest technical wrestler name, Bret is one of those wrestlers who has earned that moniker for everything he puts into that ring. Best choice for WWF champ back in the New Gen Era with HBK for a reason, 2 of the all time greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: milos1605wrote on 25.07.2022:[10.0] "Greatest wrestler of 90s. It's not easy to change from tag team wrestler to main event talent, but Bret did just that. He could perform every wrestling move perfectly. If his match with Mr.Perfect was longer, it would probably be first WWE 5 star match. He had one of most underrated rivalries ever with Piper. When Intercontinental title is more valuable than WWE championship, you know it's in right hands. He wrestled main event of SummerSlam alone and put British Bulldog over in middle of UK. Had acceptable match with Yokozuna. Wrestled three good matches in one night, even with Bam Bam Bigelow and became most legit King of the Ring ever, just to prove that he is better than Hulk Hogan and Yokozuna. Unfortunately, Hogan refused to have best match in his career just because he had to lose. I know that everybody considers WrestleMania 13 match his best, but his match with Owen at WM 10 was one of most beautiful things you will see in wrestling. Just like rematch at SummerSlam and entire feud. They had to do rematch at WrestleMania XI, but I Quit match with Backlund was acceptable. Only Bret Hart saved Diesel' s WWE title reign from being a failure. Iron man match at WM 12 was historic, but too long, if it was 30 minutes it would be far better. Feud with Stone Cold was outstanding and simply legendary. Trilogy of matches with Stone Cold is iconic, WM match isn't better than Taker/HBK, but deserves 5 stars and defines a double turn. Hart Foundation stable was fantastic. Sometimes I thought he meant every word he said in that time. Montreal Screwjob is unfortunately most memorable moment of his career. One of Vince's biggest mistakes. Only memorable things from his WCW run were matches with Sting and Ric Flair. His last run wasn' t that bad. What you can expect from 53 year old man? But his promos during that period were great. Squashing Vince was probably one of greatest moments of his life. Man who really deserved to introduce AEW World title. He was generic babyface and fantastic, realistic heel. Promos were great if he had good story. Best in-ring psychology ever. Once in a lifetime ability. He put over so many legends and did so many classics in relatively short singles career. One of real wrestling GOATs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Leth99wrote on 22.07.2022:[10.0] "Not my favourite, but objectively the greatest of all time. Amazing psychology. Amazing technic. Impressive in-ring and promo ability. He could carry SO MANY wrestlers to amazing matches (for example Kevin Nash, Hakushi, British Bulldog, Goldberg, Bob Backlund and the list goes on). Sadly, the '97 screwjob destroyed his career. In WCW he was in a way too toxic environment to get the respect he deserved. Disrespect he also received on Starcade '99, with Goldberg. I wonder if he would ever come back to the WWF, I guess he could in 2001 because Shawn wasn't on the roster anymore. I can't imagine the amazing matches he could've had, but the ones we still have are amazing"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: winstonwrote on 07.07.2022:[10.0] "The most believable and compelling storyteller I've ever witnessed in the ring. Everything he did made sense and/or had a purpose, and he could make even the worst opponent look like a superstar. For those reasons I can't imagine a better in-ring performer and, whilst not the best on the mic, he managed to create memorable moments outside of the ring too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Throwbackjoewrote on 20.05.2022:"The perfect blend of in-ring technicality and gritty realism. It really doesn't get any better than the Hitman."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jamzell00wrote on 03.05.2022:[10.0] "Everyone knows he's an all timer in the ring. The thing that gets me is people swearing he either wasnt charismatic or wasnt good on the mic because that alone shows they never watched him. His babyface promos were fine and did the job very well. But a pissed off prideful Canadian Hart is one of the greatest and most interesting promos in all of wrestling. Dude was so up front about everything and didnt give a single fuck how americans saw him. IDK if its the michaels love or wwe propoganda in full motion but he's honestly one of their best all around talents ever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: wewantpunkwrote on 07.04.2022:[10.0] "Er bekommt für mich noch zu wenig Anerkennung, denn Bret Hart ist eine der prägendsten Figuren überhaupt. Im Ring ist er großartig gewesen und sein Charisma einfach nur riesig. Sicherlich hatte er seine Schwächen am Mic, aber mit dem Theme/Charisma und der Ringleistung kann man das gerne kompensieren. Die Höchstwertung ist da völlig fair, denn bei seinem Einfluss und Lebenswerk ist Erbsen zählen einfach respektlos."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Capital Ratingswrote on 04.04.2022:"10/10. When I was a kid, Steve Austin was my favorite wrestler. When I was a teenager, Chris Benoit was my favorite wrestler. As an adult, Bret Hart is my favorite wrestler. Bret Hart is unparalleled in crisp realism, match quality consistency, story telling, and he is seemingly able to get something good out of anyone he encounters. When you get a good, long match out of Diesel of all people, you know you're dealing with someone special. While Bret's matches with Shawn are overrated, Bret's promos are underrated, and 1997 may be his best overall year as a character. Key matches: Owen Hart (WrestleMania), the Fatal Four Way match (IYH 1997), Steve Austin (WrestleMania), and Hakushi (IYH 1995)."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Real Godzillawrote on 01.04.2022:[10.0] "10 out of 10. Isn't it obvious? The most important wrestler of the 90s world-wide. With a huge following everywhere, except the United States (where he only had a large following). An in-ring marvel and the king of ring-psychology. Also got way better on the mic as time went on. Would probably been regarded as the best ever, if he didn't have to go to WCW and had 3 uneventful years there, followed by a career-ending injury. Best there is, best there was, best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MercDVisualwrote on 11.03.2022:[10.0] "Technically flawless, realistic but never reckless, equal parts graceful and rugged: THE maestro. What I admire most about him, however, is his devotion and respect for the craft and the business. One and only, for all time, always."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Scottwrote on 26.02.2022:"Für mich einer der besten Wrestler aller Zeiten. Eigentlich DER Beste. Seine Heel-Zeit kurz nach dem Wechsel in die WCW war für mich der Höhepunkt seiner Karriere. Aber wohl eher aus persönlichen Gründen. Technisch einwandfrei, konnte Gegner over bringen, hat nie jemanden verletzt und mit dem Sharpshooter eine hocheffektiven Move kreiert. Seine Mic-Skills waren Durchschnitt, aber fallen bei mir nicht ins Gewicht, weil er nicht solche langen Schnarchreden wie Hogan hielt. Die Matches vs Mr. Perfect, Shawn Michaels, seinen Bruder Owen und andere waren spitze. Von mir volle Punktzahl. Auf meiner Alltime-Card ist er vertreten."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SquilliamFancysonwrote on 11.02.2022:[9.0] "Bret Hart's greatness is impressive even in spite of the fact that he was a charisma black hole on the mic. His technical prowess surpassed all others of his era, and his psychological genius stands toe to toe with even the best modern workers."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TigerDiverwrote on 31.01.2022:[10.0] "I mean, at this point, what is there to say about him that hasn't been said before already. One of the best in-ring workers of all time, one of the greatest sellers in the world, one of the smartest people in the business... I could go on and on all day long. His run in the 1990s is legitimately one of the greatest runs a single wrestler could've ever dreamed of having. He can make anyone he stepped in the ring with look like a million bucks, if not more. He's not even my all-time favorite or anything, but to give him anything less than a 10 is just illogical in my view."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: rishabhwrote on 30.01.2022:[10.0] "One of my personal favorites of all time. His in-ring work is amazing and he never missed a single move. His moves looked so real yet they never hurt. The biggest art in professional wrestling according to me is to make your stuff look real but at the same time make sure your opponent is alright and Bret was a master in that. He could carry anyone to a great match, ANY FUCKING ONE! Everything that Bret did in the ring made total sense and no one can touch him psychologically. People criticize him for his promos and while I don't think he was very good at it he was not bad either. In fact I would say at that time when there were a lot of over the top characters, Bret Hart being a simple guy helped as the people could relate properly to him. Further down his career in 1997, he was awesome even in the promo department. One of the all time GOATS!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: GriffinXwrote on 27.01.2022:[10.0] "There is reason why so many wrestlers name Bret Hart as there favorite wrestler or why vets urge younger talents to study his work. The man was just so good at everything he did. He wasn't happy if something didn't look right or fake in his matches. He thought about wrestling in a different way but he was always proud to be that a wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ExcitingProWrestlin3wrote on 13.01.2022:[10.0] "The Best there Is, The Best there Was, and The Best there Ever Will Be. In his prime he was the top babyface, the ace of the company, was beloved all around the world. Added onto this was his tremendous pure wrestling skills, in ring psychology, and storytelling ability, what he lacked in character he made up for near the end of his WWF Run and career, with some great promo work in '97 and beyond. I'd venture to say that his nickname isn't farfetch'd and you could legitimately make a case for this man as being the greatest pro wrestler in history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Muggowrote on 07.01.2022:[10.0] "For some people, you don't need to explain the rating, and Bret Hart is one of those people. He is the most technically sound wrestler ever, could have a decent match with anyone he is one of the best storytellers ever, and could cut a pretty good promo too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CanuckGrapswrote on 29.11.2021:[10.0] "What more needs to be said about how incredible a wrestler Bret Hart is' He's one of the greatest wrestlers of all time, he worked all around the world, and faced nearly all of the other great wrestlers of his time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SZ1989wrote on 19.11.2021:[10.0] "Bret Hart, along with Blue Panther, is someone who made me fall in love with wrestling as a kid. Bret is probably the greatest to ever do it. He excelled in every category you would want from a modern North American worker. Technical skills, promo skills, selling, psychology, storytelling, the ability to work any type of match...you name it. He is the ultimate example of a ring general, someone who could command the ring and make anyone look good while doing so. Over the years, people have given him a hard time for being "bitter" but as CM Punk said recently, Bret Hart is right. He is truly the best there is, the best there was, and the best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Pentadustwrote on 16.11.2021:[9.0] "bret hart i think was the wrestler who began an era for wrestlers who didnt need to be bodybuilders to be stars. he was a technical artist with his wrestling style that amazed the fans of the new generation. in my opinion he was more selfless and modest then other main eventers like hogan, michaels and nash, but for some reason that seemed to lead to him getting disliked by some people. but to wrat it all up i think he was excellent"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CMX-7wrote on 04.11.2021:[10.0] "Living Legend) The great technical wrestler is just a master of his craft! it's very sad that Bill Goldberg ruined everything, and now we will never see the real final match in the career of the great Bret Hart.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: FACEElmo295wrote on 31.10.2021:[10.0] "The Best There Is. The Best There Was. The Best There Ever Will Be! Bret Hart is the GOAT when it comes to his work inside the ring in my opinion, Hart's psychology was second to none and every move he did actually meant something. Bret may not have had the best mic skills, but I like his mic skills since he never changed his tone and felt like he was speaking his mind. WCW wasted him so badly but he had some good moments there, but his 1991 - 1997 run with the WWF contained so many classics. He's a Canadian Hero. And the picture of Bret Hart in double white denim, branded tank top and Hitman boots in front of a lake should be on Canadian currency."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: OnlyHalfTheEffinShowwrote on 25.10.2021:[10.0] "*The* all time greatest technical wrestler of all time. No one could make you believe in pro wrestling as a sport like Bret Hart could in his day. The Hitman could work a good match with just about everyone, and always gave his 100% for every match. He helped carry the WWF through some of their worst years business wise during the New Generation with his feuds with the likes of his brother Owen (a highly gifted athlete in his own right), Bob Backlund, Jerry Lawler and many others while his work with Steve Austin and Shawn Michaels as part of the 1997 Hart Foundation (my favorite incarnation of Bret's character) helped to lay the foundation of the Attitude Era. The only real blemish on Bret's career is that it ended for too early. From every chest-first Irish whip into the turnbuckle, every sharpshooter, dropkick and piledriver given, Bret made it all look excellent and earned his title of the Best there is, best there was, and best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Conquistador37wrote on 18.10.2021:[10.0] "he needs to calm down with the auto fellatio, and his fans outta get offa their knees and go outside from time to time. but he's still a legitimate 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: IBladeDailywrote on 08.10.2021:[10.0] "In my opinion, Bret is the greatest of all-time. People have criticized his promos but I think if you go back and compare them to modern WWE promos he comes across great. His in-ring work was top notch but beyond his athleticism, his ability to tell a story in the ring was unparalleled. There was so much subtlety to his character that many missed it in an age of over-the-top cartoon characters. His rivalries with Mr. Perfect, Shawn Michaels, Diesel, Owen Hart and Stone Cold Steve Austin were classics that still hold up. In 1997 Bret hit his absolute peak and became one of the best talkers in the business. It's my favorite run of his career up through the Montreal Screwjob. There's so much more I could say but ultimately, I've never seen a wrestler as skilled at getting both themselves and their opponent over as The Hitman."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ALFwrote on 26.09.2021:[7.0] "Tito Santana hat Bret mal in seinem Buch "Tales from the Ring" als durchschnittlich bezeichnet und als jemand der sich immer darüber beschwerte, so wenig zu verdienen, dass er kaum seine Steuern bezahlen konnte. Dazu muß man wissen, bevor glaube ich Bret als "Hitman" zum WWF/E-Champion gepusht wurde, gab es ein stundenlanges Meeting im Titan-Tower wer zum WWF/E-Champion gepusht werden sollte: Tito Santana oder Bret Hart. Man entschied sich letztlich für Bret. Wrestlerisch war er schon top, am Mic naja, aber was war denn Bret vor seiner Zeit bevor er in hotpink auftrat? Einen Cowboy wollte man aus ihm machen und erst als er auf die Idee (aus lauter Verzweiflung weil die Liga nichts mit ihm anfing) kam mit Jim "The Anvil" Neidhart die" Hart Foundation" zu gründen ging es aufwärts. Erst als man ihn "Hitman" nannte und er gut eingeölt seine rosa Brillen an Kids im Publikum verschenkte wurde er zum beliebten Wrestling-Rockstar einer ganzen Generation. Davor war er ein Edeljobber/Under-bzw. Midcarder. Mehr nicht, sorry. Hat tolle Matches (1986 vs. Ricky Steamboat) abgeliefert - ohne Frage - aber das ändert nichts daran, dass er etwas überbewertet ist. Sein Verdienst u. a. : Leitermatches in WWF/E gebracht."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: nwachampionwrote on 19.09.2021:[10.0] "Few nicknames truly live up to the essence of the wrestlers that own them; "Excellence of Execution" is certainly one of them. Bret Hart's offense, his methodical wrestling was innovative and had such flawless execution that his genius as a pro-wrestler was immediately obvious when I first viewed him in a squared circle. As a ring-general and ring-psychologist, he truly made stars out of his opponents, by giving "character" to their in-ring style-- be it Steve Austin, Owen, Davey Boy, Sean Waltman, Shawn Michaels, or anybody else. Too bad his in-ring career was cut short unsatisfactorily, otherwise he would be in my pantheon of contention for one of the greatest North-American pro-wrestlers of all time. I will point out that my understanding of pro-wrestling has increased manifold over the years as a result of contrasting his philosophy of pro-wrestling with that of Shawn Michaels', for I believe the two are the flagbearers for the two most important schools of pro-wrestling philosophies-- the technician vs the performer, the sportsman vs the showman, the auteur vs the thespian. Some people claim that pro-wrestling would be far better if prospective pro-wrestlers followed in Bret's footsteps more than Shawn's-- while I would not completely agree with that sentiment, let me mention that pro-wrestling needs a balance of both philosophies, like the yin and yang, because it is the contrasting nature of wrestling styles that make pro-wrestling so great as an art form. Hence, I do agree that more up-and-comers should take inspiration from Bret, to balance it out, because Bret Hart is too much of a pioneer to be forgotten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Pete Gallowswrote on 05.09.2021:[10.0] "10, without a question. One of the absolute very best wrestlers ever. Believable, his moves made sense, he made his matches look like a fight, his offence looked real, his selling like he was really struggling. He takes himself seriously as he should. I was glad when he came to WCW, because WCW was always my favourite, but boy, they dropped the ball on him big time, which is a real shame. I have nothing but respect for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: No Onewrote on 01.09.2021:[10.0] "Was my favorite 1990's childhood wrestler. One of the greatest in-ring performers of all time. One of the best Ring Generals of all time. One of the best technical wrestlers of all time. Master of psychology. Master seller. Had the natural charm to be a likable Babyface. One of the greatest Babyfaces in pro wrestling history. His 1997 Heel run is legendary. Had the aura of being the coolest guy on planet Earth. Innovated the "Ring Post Figure Four". Popularized The Sharpshooter. Feuds with Steve Austin, Owen Hart, & Shawn Michaels are legendary. Came up through the ranks the "Old School" way in both Stampede Wrestling & the WWE: Tag Team Champion, Midcard Champion, & finally the World Champion. His Stampede Wrestling feud with Dynamite Kid is also legendary. Was 1/2 of one of the greatest tag teams of all time, "The Hart Foundation" with Jim "The Anvil" Neidhart. Their rivalry with The British Bulldogs is considered one of the best tag team rivalries of the 1980's, as the 1980's was considered the Golden Age of Tag Team Wrestling in North America. May be the greatest Canadian born pro wrestler of all time. His 1993 King of the Ring performance throughout the entire show was masterful & highly memorable. Gave way too many re-watch worthy instant classics. Was the victim of one of the most infamous events in pro wrestling history: The Montreal Screwjob. Unfortunately, was horribly misused in WCW, and they did nothing to make his legacy look good at all. Freak injury brought his legendary career to an end way too soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: greatmonkeywrote on 08.07.2021:[9.0] "A great PG era world champion, a Canadian national treasure. Would have been remembered as the greatest of his era if Shawn Michaels didn't exist. His 97 heel run was entertaining but doesn't compare with someone with the longevity of Flair. Tied with Kurt Angle and right behind Flair and Michaels as an all time great top level North American wrestler/champion of the modern era."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BrayanLaPrewrote on 06.07.2021:[10.0] "Bret Hart is one of the most important, influential, and tremendous wrestlers to ever do it. Whether he was in a tag team setting or a singles competitor, Hart told a remarkable story in the ring while proving to be years ahead of his time from a technical perspective. Every single thing that The Excellence of Execution did had a purpose and he always found a way to get you to buy into the story. I wish we could've seen him stick around in WWF for the Attitude Era, but alas. Still got some great WCW matches amidst the chaos."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: faithOfWrestlingwrote on 06.07.2021:[6.0] "While I am too young have seen Bret Harts work in his prime, going back and watching videos of his matches, I do not get it. Bret is praised like some wrestling God for his ring work and technical ability, but looking back he seemed to be very limited to only working a sluggish methodical pace and nothing else varied, plus for him being nicknamed ( Excellence Of Execution ) I dont see anything special from that standpoint allegedly more spectacular than your average wrestlers ring execution. There are tons of wrestlers I think are way better than Bret Hart in the ring from my personal standpoint at least, such are Chris Benoit, Kurt Angle, Daniel Bryan/Bryan Danielson, Dean Malenko, Dynamite Kid, Eddie Guerrero and more, I even prefer his brother Owen. Bret also came off as a constant crybaby most of the time as he does irl as well, this makes me want to dislike him even more besides the fact I genuinely dont see what everyone else does with him in the ring, very overrated in my opinion."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Tomas Cunhawrote on 30.06.2021:[10.0] "Bret is one of the best technical wrestlers in the entire history of pro wrestling, but also my personal favourite in-ring storyteller of all time. The way he was able to sell and tell a different story and come up with different finishes, being able to adapt to the different styles and/or sizes of his various opponents was fantastic. There are so many classic matches - Mr. Perfect, Roddy Piper, British Bulldog, Owen Hart, Diesel, Stone Cold, list goes on and on - and each one told a completely different yet equally awesome story. A true dedicated wrestler and personally one of the very best who have ever lived."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: PrezVegetawrote on 30.06.2021:[10.0] "Bret Hart is likely the greatest wrestler that has ever lived. His in ring storytelling was second to none. His promo ability was straight to the point and a breath of fresh air in the era of over the top, chemically fueled cartoonish interviews. Nearly everyone he's ever worked with credits him for having their best match. Simply wonderful and timeless wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Incredible athleticism and one of the best in-ring storytellers that I've ever seen. Brett Hart was a masterful worker, one of the all-time greats. He had enough charisma to make his angles work, and when it came to wrestling psychology, Hart was elite."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: medousewrote on 12.05.2021:[10.0] ""The best there is, the best there was and the best there ever will be" - there are many reasons to support this statement. Bret Hart is one of the best and most popular wrestlers of the 80-90s. There is a lot of controversy about him and his accomplishments and stories he had with WWF. The Montreal Screwjob is probably the most famous of them all. I always loved his style, his gimmick, his looks and in-ring skills. He was a "total package", a guy who could work in every environment - the highflyer, grappler, technician. I don't think I could ever rate this guy lower than a highest score 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Zaidwrote on 03.05.2021:[10.0] "One of the greatest to ever step foot in the ring. He was an incredible wrestler, and his feuds with Steve Austin, Shawn Michaels, and Owen hart were exceptional. He was mediocre on the mic, but his work rate as well as his ability to play a cocky heel or a beloved face covered up for his lack of promo skills, all in all a great worker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: AnBwrote on 20.04.2021:[10.0] "The highlight of the WWF before he left for WCW, not a huge fan of his entrance to the new promotion though. I always found his mic skills to be mediocre, felt forced and fake, but he had some moments where he shone. Either way, he was incredible in the ring and provided some of the best matches in wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MrJabroniCamelClutchwrote on 08.04.2021:[10.0] "Simply put , the very best wrestler to come from Canada , was unforgettable in the WWF in the early to mid late 90s , had unforgettable matches with Stone Cold Steve Austin , The British Bulldog , Mr Perfect and of course his brother Owen Hart , truly the best there is , the best there was , and the best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Takerfan99wrote on 03.03.2021:[7.0] "Great wrestler. Horrible talker. A tragic career ending injury as well. Though i respect Bret Hart, his bitterness and ego are what stop me from rating him higher"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: StrongStyle2020wrote on 05.02.2021:[10.0] "One of the best of all time, Bret Hart by 1997 was one of the most complete and well rounded wrestlers in history. Promos had improved to such an extent, he was one of the best promos in USA at that point, and the best worker. Numerous classic matches, his feuds with Owen Hart, Shawn Michaels, Steve Austin amongst the best ever, and matches vs Mr Perfect, Chris Benoit, British Bulldog of legendary status. A great storyteller and seller, Bret Hart stood out as a great even during a poorly booked product during 1993-96. Sadly Bret Hart's reputation and status has been stained from ulterior motives, but looking at it without blinkers on, Bret Hart is one of the all time great workers in the industry."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Uweuwesenwrote on 25.01.2021:[9.0] "Einer der besten Techniker der Wrestling Geschichte! Der Hitman ist eine sagenumwobene Figur, die nur eine Schwäche hatte: das Mic Work, denn das war maximal durchschnittlich"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Brett1980wrote on 23.01.2021:[9.0] "Problem was he was in a tag team for too long. Showed in 1987 in match on SNME with Savage that he could be a good singles star. If you watch any WWF pay per view between Summerslam 91 and Survivor Series 97 that he is on he was always in the top 3 on that night. Yes he did do the same moves every match but he performed them to perfection. He did stand out in the 90s because when the WWF was cartoonish he was a Wrestler from Canada who's Gimmick was he was going to try and put you in the sharpshooter. If he was in NJPW or AJPW at the same time would his technical ability have stood out? His later WCW stuff was pretty unremarkable and although he blames this on booking he never seemed enthusiastic either. His 97 feud with Austin and his heel turn are amongst my favourite things ever in wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Ma Stump Pullerwrote on 14.12.2020:[8.0] "The best quality about Bret was his consistency: you could put him in the same match with the same guy 7 days a week and he'd find a way to make each of those matches at least somewhat entertaining while also keeping the other guy safe as anything. The guy had a eye for ring psychology and being able to organise and bump around guys who mostly had bad matches (Nash etc) and get them to a far more presentable level, even if that meant going through things piece by piece (such as with Bulldog). Great worker also in the sense that he would actually sell for the opponent: he could make even some of the weaker looking guys on the roster seem pretty legitimate and his little nuances and tells depending on the body part being worked on really helped to make the match just that bit more better. Ofc the usual negatives: Bret was a pretty bad worker outside of the ring and his promos (unless he was talking about something that he was actually legit mad about) were decent at best and quite bad at worst. Like Shawn Michaels and Nash in the same era he wasn't a good draw for the business either: comparing him to Hogan in that aspect is no contest. His later career is mostly forgettable outside of some decent matches with Benoit, which is probably why I don't view him as a nine or ten. Hart was a great workhorse but that's really it for me as he was the WWF champion during a era where the company was at the worst it has ever or will ever be so it's not easy to judge him at the top."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: milliondollarajwrote on 24.11.2020:[10.0] "Midcard workhorse? No problem. Main event world champion? Can do. Tag? Singles? Stable leader? Done, done and done. Face or heel? Sure! Face AND heel? Why not? Bret Hart really could do it all, perhaps unsurprising given his background and heritage but nonetheless, few pro wrestlers have worked harder their character and in-ring performance as the Hitman, perhaps to the point that it consumed Bret after the infamous Montreal Screwjob. Whatever era I watch of his work, he's always great and must be in any discussion as the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: rainmakerpunkwrote on 25.10.2020:[10.0] "Bret Hart is the safest wrestler I've ever seen, the most professional too, everything he did seemd absolutely real and painful even though it wasn't, not many can do that, he could also play both face and heel perfectly, his 97 heel run was magic, he was the best ace WWF/E ever had"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: taabr2wrote on 05.09.2020:[10.0] "Bret Hart's run as the top guy in WWE is sandwiched between Hulk Hogan and Steve Austin which is a very tough spot to be in and yet Bret Hart did about as well as you could reasonably say. Bret Hart was a different kind of top guy in WWE, he wasn't overly charismatic or a brilliant talker but he was an amazing storyteller in that ring and that was enough to make him a solid draw and star. His legacy is definitely all the classic bouts he had in his career and it's underrated how Bret actually helped bring about the next big era in WWF even though he was never apart of it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Khalid Acewrote on 29.06.2020:[6.0] "I think what happened in Montreal turned out to be a good thing for him because he's now to most people one of the G. O. A. Ts when he wasn't. He's good but most of his matches look the same & I know to the Canadian people he was like a hero but I feel any other good Canadian wrestler would've fit that rule perfectly."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JuWFEAEwrote on 18.05.2020:[10.0] "Bret Hart ist eine Legende. In Ring war er immer gut und seine Promos sind noch immer ginial. Durch sein Hart Gimmick hat er auch viel Ausstrahlung bekommen. Dieser Mann hat den Sharpshooter auserdem berühmt gemacht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Unknown Challengerwrote on 02.05.2020:[7.0] "Bret Hart is one of the most key figures in wrestling industry of late 1980s and 1990s. When it comes to creating wrestling matches, he is definitely the best there is, the best there was, and the best there ever will be. He had one of the best arsenal of moves and great understanding of in-ring psychology. When it comes to cutting promos he always delivered them decent enough to carry himself with his natural charisma and true feelings. However, if you compare him with several other top stars of that period, and including a state of the business in North America, he was never a drawing power of industry. After several main WWF stars with their large look and 'bigger-than-life' semi-cartoon characters left in early 1990s, he became the main star of the company. Unfortunately he couldn't bring just as much size of audience as they could due his non-roided look and his character being bland in comparison with the predecessors. When it comes to his gimmick, he was either a generic good guy or typical anti-USA heel with a pride for Canada. In addition, the refusal of Hulk Hogan to get him over in 1993 and being put in the shadow in WCW didn't make his situation better. Although his backstage rivals (Kevin Nash and Shawn Michaels) couldn't draw either. Despite of taking wrestling and kayfabe way too seriously sometimes, he was always considered a good family man and more humble guy in backstage compared to others with their ego power trip (for example, Kliq members in both promotions). In spite of his several dificulties, he is still recognized as one of the most influential, memorable and recognizable in-ring performers in pro wrestling history."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: qbortwrote on 01.05.2020:[8.0] "My favorite underrated Bret match is the one he had with Jean Pierre Lafitte back in 1995. And the matches with Hakushi back then are just amazing to watch."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Der Commanderwrote on 26.04.2020:[9.0] "Der Hitman ist und bleibt einer der besten aller Zeiten. Nur am Mic war er nie der beste. Trotzdem 9 Punkte!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TNBG2381wrote on 23.04.2020:[10.0] "Bret Hart was a ring perfectionist. When I think of the safest wrestlers to ever step foot in the ring Bret Hart always comes to mind. He never seemed to botch and his matches always seemed perfect great or not. It took him a while to get good on promos but he eventually came around and delivered good enough work. But it was his wrestling that made him so loved and that? s all Bret Hart truly cared about. He was done so dirty and I feel his career should have lasted longer than it did but unsafe WCW working conditions wouldn? t allow him to do that. His best matches were his battles against his brother Owen, his tainted rivalry with Shawn Michaels, and his classic five star match with Stone Cold Steve Austin. But Bret will always be known as ? The best there is, the best there was, and the best there ever will be. ?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Fabi89wrote on 19.04.2020:[10.0] "Wer möchte, kann bei Bret Hart definitiv Kritikpunkte finden. Zu nennen ist hier insbesondere das bestenfalls durchschnittliche Micwork. Trotzdem bleibt Bret für mich für immer einer der besten Wrestler, der einen WWE-Ring betreten hat. Technisch war er sowieso über jeden Zweifel erhaben. Das, was Bret für mich aber zu einer einzigartigen Erscheinung gemacht hat, war seine Fähigkeit, im Ring wunderbare Geschichten zu erzählen. Schmerz, Enttäuschung und Wut, aber dann immer wieder auch ganz große Comebacks - das konnte kaum jemand ohne Worte so gut und mitreißend darstellen wie Bret Hart. Dass sein Privatleben dann ebenfalls unzählige Schicksalsschläge für ihn bereithalten sollte, tut mir als Fan weh. Es ist Bret zu wünschen, dass er dauerhaft seinen Frieden mit allem schließen kann, was ihm wiederfahren ist. Und dass er noch so manchen Legendenauftritt feiern kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: AAA3000wrote on 07.03.2020:[6.0] "Bret Hart ist meiner Meinung nach überbewertet. Er ist quasi wie Faarooq. Ganz gut im Ring aber mehr auch nicht. Wo Faarooq noch die guten Gimmicks hat und das meiste macht aber dann am Mic nicht gut ist das ist Bret Hart vielleicht nicht ganz so scheiße am Mic aber ansonsten fehlts halt umso mehr an Ausstrahlung."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: FrankSiverowrote on 04.02.2020:[10.0] "Für mich ist Bret Hart der beste Techniker aller Zeiten. Er hat eine großartige Karriere hinter sich. Zu Beginn im Team mit dem Powerhouse Jim Neidhart grandios. Die beiden passten zusammen wie die Faust aufs Auge. Später als Einzelwrestler und Top Star der Liga das absolute Gesamtpaket. Lieferte sowohl im Tag Team als auch später im Singles Bereich unzählige zeitlose Klassiker die man sich immer wieder ansehen kann und nie langweilig werden. Im Bereich Micwork ebenfalls jemand der mit den besten mithalten konnte. Einer der absolut größten aller Zeiten. "The Best There Is, The Best There Was And The Best There Ever Will Be"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TomasCunhawrote on 24.08.2019:[10.0] "Even though he wasn't very good on the mic (with the exception of his heel promos in 97), there has never been an in-ring storyteller like Bret Hart. Take his feud with Owen as an example, it had everything to fail. Owen was the younger brother "in the shadow" of his older brother. Had it been someone else in Bret's role, the fans could've easily sided with Owen. But it didn't happen, cause Bret knew how to tell a story in that ring like very few people EVER in the history of wrestling. Plus, he had a unique look and was one of the greatest technical wrestlers ever, with realistic selling and an endless list of really good (and even all time classic) matches. Truly one of the greatest wrestlers I've ever seen do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MuchoMundowrote on 17.08.2019:[10.0] "A crossover star and Canadian icon, truly. Still synonymous with other Canadian sports heroes despite the facet that wrestling had been looked at increasingly derisively and cartoonishly by the mainstream since his heyday. No matter how good Kenny Omega, Sami Zayn, Kevin Owens, (and yes, they are so so good) or other Canadians are or become, they will never reach the same iconic status as Bret; yes, the times are different, but he was also pivotal in making Canada a wrestling player on the world stage, and somehow, he's still underrated. It's easy to chalk him up as a bitter vet now, but I'd be bitter too if even a quarter of the things that happened to him happened to me. Bret provided the high workrate and athletic performances to North America that much of the wrestling fanbase clamors for today, and he deserves to be mentioned in the top tier of wrestling stars for his innovation, ability, and influence, along with becoming a cultural and sporting icon in his home country and making Canada a bonafide wrestling market."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[10.0] "What more can really be said? The way he threw punches is forever burned in my brain -- amazing looking. Innovative, crisp, passionate... an inspiration to so many."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheGoat1255wrote on 13.05.2019:[10.0] "Bret Hart should be on the top of any serious 'greatest of' list.  One of the most gifted, versatile and dedicated workers ever.  A master of ring psychology, Bret could make any match feel special.  His matches against Steve Austin, Owen, and Bulldog are works of art.  Bret's peak occurred during the 90's wrestling recession, which means he might be slightly overlooked, yet his impact and influence are unquestioned."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: AJStylopzwrote on 10.05.2019:[10.0] "He is one of the best wrestler of all time. Whether you like it or not this man could do it all. One of the technicians, sellers, brawlers, he had a really unique intensity in the ring. Definetely WWF fucked up when they let this man go away because they chose to give a lazy Michaels on that time the title. Bret is the man!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: zephyrwrote on 16.03.2019:[10.0] "Bret Hart is a classic example of someone who pushed mainstream wrestling into a completely new direction with his style. A true innovator and amazing performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wynnebagwrote on 19.12.2018:[10.0] "Still the best there ever will be!  Bret Hart made wrestling feel real even when most people knew it was just a scripted show. Watching his many memorable feuds and matches cement him as the best or among the best to ever enter the squared circle. Above all else, Bret is the best in ring story teller in the business.  He was also the best at putting guys over yet making them still popular because of it. Watch his famous match with 1-2-3 Kid for an excellent example of this.  Also, Bret is almost solely (indirectly) responsible for ushering the modern pro wrestling business. The Montreal Screwjob was upsetting, yet led to a industry wide change in the way PW is done. It's almost impossible to overestimate Bret's value in the business, and he is and remains the best there is, the best there was, and the best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Steamboat2511wrote on 05.12.2018:[10.0] "Technisch gesehen der vielleicht beste Wrestler aller Zeiten. Bret Hart steht für pure Matchqualität, der alle Gegner mindestens zu einer gewissen Qualität führen konnte. In meiner Liste der besten Wrestlingmatches taucht sein Name verdächtig häufig auf, auch im *****-Bereich. Dazu ist der Hitman durchaus charismatisch, wenn auch anders als es etwas später SCSA oder Rocky waren. Sein Mic-Work bewegte sich eigentlich durchgängig im oberen, wenn auch nicht im allerhöchsten Level. Leider hat er sich lange zu sehr über den Screwjob definiert. Gar nicht nötig für einen Wrestler, der im Ring seines gleichen sucht und deshalb in meine Top 5 gehört."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheHitmanRuizwrote on 04.12.2018:[10.0] "Like he said, he is the best there is, the best there was and the best that ever will be, nobody was greater than him, I'm a fan of stone cold but before him it was bret, the excelence on the execution, bret was the greatest in ring worker, he tried that everyone looked good even if they weren't good"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: RatingsMachinewrote on 11.10.2018:[9.0] "Bret was an excellent wrestler, with a flair for creating some very dramatic matches. He didn't have an outgoing personality, but there was a certain realism to the way Bret carried himself. And Bret was a good talker, sometimes a great one if given a subject that could find himself believing."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: thehitman613wrote on 27.05.2018:[10.0] "There wasn't anyone better than Bret Hart to carry the WWF title during 1992-1995. He was a great worker that could top any wrestler out there and put together great matches no matter the wrestling style of his opponents. Bret Hart wasn't predictable and he didn't had a routine for his matches. Every match of his was a beautiful story and he could have done a lot more for the Federation if it wasn't for their stubbornness in giving the title to poor wrestlers such as Yokozuna, Diesel or even Hogan, just because they were tall and big. Bret Hart had amazing matches during his years with the Hart Foundation, when he had incredible tag team matches, and he was also one of the best Intercontinental champions we had to date!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Gauntlet84wrote on 21.04.2018:[9.0] "A great face and a great heel and an absolute legend of wrestling. He was huge in the transition away from the 80s icons of Hogan, Warrior, Piper, Roberts, etc. and helped pave the way with a new era with Michaels, Razor Ramon, Diesel, Yokozuna etc."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Weltmonarchwrote on 27.02.2018:[10.0] "Ich meiner persönlichen Top 10 All Time-Liste... von daher komm ich um 10 Punkte nicht drumherum. In Ring/Charisma/Promos... alles vorhanden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: stc13wrote on 16.02.2018:[10.0] "The best there is, the best there was, and the best there ever will be?  Maybe not.  But Hart put together a body of work that few can rival.  He was an amazing in ring, and could work with workers who wrestled a wide variety of styles and put together an excellent match.  His matches were consistently clean, crisp, and varied.  His matches always told a *different* story, and the ringwork behind them was rarely predictable or rote.  His work on the mic was underrated.  While he wasn't the most charismatic talker compared to others in the era, he drove home the storyline and made you believe what he said.  His ascent from longtime tag team worker to singles wrestler to face of the WWF is paved with fantastic matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: coolserazwrote on 11.02.2018:[9.0] "One of the greatest wrestlers ever with great moves and amazing, realistic selling. He could also, much like Ric Flair, make a broomstick look good in the ring. Extremely over with the crowd because of his ability to play the babyface but he was a very good heel too. An average mic worker but cut some good promos as an anti-hero/heel. Sad end to his career but what a great career it was."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Viper99wrote on 01.02.2018:[8.0] "Vorab sage ich ganz klar das Bret Hart eine Legende und einer der stärksten Puren In Ring Performer aller Zeiten war. Trotzdem kriegt er von mir nicht die Höchstpunktzahl, da ich immer ein großes Problem hatte. Dieses Problem wurde immer wieder deutlich wenn er gegen Michaels gefehdet ist. Bret Hart hat einfach nicht sehr viele Charisma und hält nicht die aller Besten Promos. Ich war schon immer der HBK Guy in dieser Rivalität! War Bret Hart der bessere Pure In Ring Worker von beiden? Wahrscheinlich. War er besser am Mic oder Charismatischer? Ganz Klares Nein! Bret Hart kannst du mit jedem in den Ring stellen und er hat ein gutes Match, aber muss er Promos halten oder mit seinem Gesicht eine Story erzählen ist er nicht besser wie Solide. Er ist eine Legende und insgesamt gesehen Gut, aber für mich Persönlich einer der Überbewertesten Wrestler aller Zeiten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CHN325wrote on 01.02.2018:[9.0] "Probably the best in ring performer of all time. A technical genius who could carry anyone through a good match. Doesn't quite get the 10/10 due to his average mic work and a bit of an ego."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Big Gunzwrote on 02.01.2018:[10.0] "One of the best ever. He was always one of my favorites all the way back to when I was a kid. Everything from his entrance to the way he wrestled was just special."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: st1299wrote on 07.12.2017:[1.0] "The one wrestler who I (unfortunatly) will never be able to enjoy watching. Any old Event I watch that he is on gets automatically fast forwarded to the next match. hes's good, but he really isn't the best, not even close. Owen was a 10x better competitor than Bret, I think this is pretty much public knowledge"
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Dragon Fighterwrote on 24.11.2017:[10.0] "Truly deserved the nick name" THe excellence of execution ". In the ring, he is a technical machine and he is so smooth. He understands the psychology, the storytelling and how to make his opponents look better. I apprecicate that he wrestled in an era with many mediocre talents and he had to carry them to good matches. On mic, he was quite eh until 1997 when he turned heel. Definitely the best member of the Hart family. Being bitter aside, you can't deny what he contributed to the business. And the matches with owen at mania 10 and austin at mania 13 are still 2 of 5 best wwe matches in my opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ianlapierrewrote on 04.11.2017:[10.0] "Bret Hart is arguably the greatest wrestler of all time. I believe his later career work to be vastly underrated. He was at his very prime at the time of the Screwjob. He still had a good 5 or 6 years left in the tank when he defected to WCW. His career came to screeching halt when Goldberg kicked him in the head. Hitman as a Canadian hero heel was Hitman at his best. And he was every bit as good as Shawn Michaels."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Jericho86wrote on 16.09.2017:[9.0] "Bret Hart is one of the greatest of all time. Not only he had great technique, but he was a great storyteller and his ability to tell a story with his psychology made him a legend, and also he was an innovator. He invented a lot a moves, he invented the Ladder Match, he always tried to be different. Maybe his mic skill wasn't perfect but in time is improved. He was a very good seller too. His match and his feud against Roddy Piper, Owen Hart, Mr. Perfect, Shawn Michaels, The British Bulldog, Steve Austin are a must see."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Blood Pumpwrote on 29.03.2017:[10.0] "Very much on the line between a 10 and a 9. Bret was capable of carrying just about anyone to a good match. Hell he carried a very out of it British Bulldog to a classic, and its that ability that makes him one of the best. He might be a bit more 'boring' then Shawn Michaels but he knew how to make a match feel more legitimate and made up for his lack of mic ability with his sheer skills in the ring. His biggest issues lie outside of the ring. He holds grudges like bad judges and could be argued as a precursor to Punk as far as his attitude is concerned. Hell if we're gonna compare they were both screwed by Vince in some way. In any event putting aside past drama Bret Hart is worth the weight his catchphrase holds."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Titansrevengerwrote on 26.02.2017:[9.0] "Bret Hart is easily the templet of a complete wrestler. He had it all, the look, the mic work and could deliver in the ring. Now his look is by no means comparable to lets say the Rock or Triple H, but it was solid. I also think his mic work has always been unerated, he was a promo man of sound quality. I think it was his understatedness that makes people think he wasn't the greatest talker. I think he knew how to talk well and delivered them with punctuation. The greatest quality that Hart had was his in ring capabilities. I think he could match up well with almost anybody and give a great performance. He enhanced other wrestlers performances, without overselling or overdoing it. His methodology was simple and effective, if not obvious, he was telling a wrestling story. The wrestling story is sold inside the wrestling ring, nothing more and nothing less. Bret Hart was pure and simple a wreslters wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hitman84wrote on 20.02.2017:[10.0] "Mein Lieblingswrestler bis heute. Kenne bis heute keinen der sich so kontrolliert und elegant im Ring bewegt wie er. Das die WWE auch immer wieder auf gute Techniker als Champions setzt(HBK, Rey, Edge, Jeff Hardy, Kurt Angle) ist in erster Linie sein Verdienst. Auch seine Arbeit am Microfon finde ich bei weitem nicht so schlecht wie oft behauptet wird. Ganz im Gegenteil. ŽŽThe best there is, the best there was and the best there ever will be. Absolutely! ``"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Coltwrote on 05.02.2017:[8.0] "Der Hitman war neben Shawn Michaels der Star der New Generation-Ära! Kein anderer Wrestler dieser Zeit prägte den Begriff des "Fighting Champion" so wie Bret Hart. Als Anführer der Hart Foundation zeigte er zudem, dass er auch die Rolle des Heel gut beherrscht - übrigens zu Beginn der Attitude-Ära. Obwohl ihm die Rolle als starker, stiller Held stets auf den Leib geschneidert war. Selbst gegen deutlich schwächere Gegner konnte er noch erstklassige Matches zeigen. Im Ring war er stets einer der besten und sowohl für technisch anspruchsvolle Matches als auch für Brawls gut. Lediglich ein Mangel an Charisma und mäßiges Micwork verhindern eine bessere Bewertung."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TylerWhitewrote on 31.01.2017:[10.0] "Einer der wahrscheinlich besten und ikonischsten Wrestler der Geschichte.  Im Ring war er seiner Zeit richtig krass voraus und ist einer der besten Techniker aller Zeiten.  Am Mic war er okay, wobei das Micwork definitiv seine schwäche ist.  Allerdings ist er unglaublich charismatisch und war verdient mitte der 90er das Topface der WWE und das nicht nur weil er zu der Zeit nicht die größte Konkurrenz hatte. Einer der größten Wrestling-Legenden. 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: NastyYaffawrote on 31.01.2017:[10.0] "Truly the "Excellence of Execution" inside that squared circle - everything he did, he did to perfection. His run in the WWF was great, and he had some good stuff in WCW too. One of the greatest wrestlers of all-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JEK 1991wrote on 27.01.2017:[10.0] "One of the best wrestlers in the world. And the best Canadian wrestler ever. He was excellent in the ring. Too bad he had to go though a lot of crap in his career ex. the Montreal Screwjob and death of Owen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring: Würde heute nur 9 Punkte geben aber in den 90er einer der besten Technischen Wrestler in der Welt, der sogar gut Brawlen konnte dehalb 10/10 (50%) Punkte   Promos/Schauspieltalent:Klar seine größte Schwäche, aber auch nicht so schlecht wie von vielen gemacht wird. 7/10 (25%)  Charisma/Statur/Gimmick:Einfach nur Super. 10/10 (25%)  Sind dann insgesamt 9, 25 Punkte für den Hitman.   = 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: styles82wrote on 10.01.2017:[10.0] "Also für mich war bret mein Held aus der Kindheit. Ich habe jedesmal mit gefiebert wenn er gekämpft hat und war traurig wenn er verloren hat. Auch im nach hinein war er der perfekte wrestler mit der besten Technik ausgestattet. Erst mit the anvil im Tag Team schon bärenstark und auch Tag Team Champ. Dann der Durchbruch als einzelwrestler mit dem IC Gürtel und dem WWF Champion Gürtel. Er hatte unglaubliche matches gegen petfect michaels austin oder auch Diesel oder dem bulldog. Dann in der wcw nicht mehr so gut eingesetzt aber auch da mit vielen Titeln und auch mit klasse matches wie zum Beispiel gegen benoit. Und auch am mic war er gut wie die Zeit mit der Heel hart Foundation zeigt. Und auch super sauber beim kämpfen da er nie einen Gegner verletzt hat. Einfach der beste den es gibt gab und geben wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: rjsbx11wrote on 07.01.2017:[10.0] "His skill in the ring speaks for itself. He could put on great matches with anyone, from Kevin Nash to Shawn Michaels. He could wrestle technically like no other, and he could have a dirty brawl, whatever best told the story of the match. He was also an accomplished tag wrestler. Anyone who stepped into the ring with Bret came out looking great. Contrary to popular belief, Bret had charisma in buckets. He looked like a rock star with his hair, leather jacket, shades, and his self confident swagger. He didn't have the catch phrases, but he didn't need to. The Hitman character let his wrestling ability speak for him. When it came time for him to be the bad guy, he did it perfectly. When the Hart Foundation were heels, the heat he was able to get was immense. He went from being the number one good guy to the number one bad guy, not something everyone could have done. He was the reliable go to guy for Vince post Hogan pre Austin whenever his experiments failed. He may not have been as big as either of the above but he and Shawn really kept company afloat and it gets understated sometimes. Bret Hart was truly excellence of execution."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hitmanfann1981wrote on 16.12.2016:[10.0] "Possibly the greatest ever when it comes right down to it. Could do anything in the ring, pulled great matches out of Jean Pierre Lafitte and Isaac Yankem. Held any championship he won with dignity and honor. Hated his career ended on so many sour notes but everything else is absolutely impeccable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Residentwrote on 08.11.2016:[10.0] "One of the best wrestlers of all-time. When I first starting really getting into wrestling he was my favorite. He could have a good match with anyone and was such a great technical wrestler. WCW never used him right. I heard he never wanted to leave WWE, but Vince kind of forced him out. Wish he could have stayed in WWE a few years longer. His WrestleMania match with Austin is my favorite Mania match ever and his match with Piper at Mania and with Bulldog at SummerSlam are also two of my favorite matches ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SlickDevilSWPwrote on 19.09.2016:[10.0] "His moniker says it best: The best there is, the best there was, and the best there ever will be. Will always be my favorite all-time wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ApexOfEvolutionwrote on 06.09.2016:[8.0] "Einer der besten Techniker überhaupt und für mich neben Chris Jericho der Mann, den man am ehesten mit den Intercontinental Title in Verbindung bringt. Die Fehde mit seinem Bruder Owen ist wohl eine der besten in der Geschichte der WWF/WWE. Ich gebe ihn jedoch nicht die volle Punktzahl, da er trotz pinker Klamotten immer etwas farblos wirkte und auch keine Promo wirklich langfristig in Erinnerung geblieben ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Summerslam Fan 01wrote on 27.08.2016:[7.0] "Werde nie verstehen was man an den Mann so toll finden kann.  Außer das er einer der besten im Ring hat er meiner Meinung nach nix.  Am Mic hat er mich noch nie vom Hocker gerissen, Ausstrahlung naja.  Wenn er Heut zu tage mal ein Auftritt hat wirkt er so als ob, er noch nie am Mic stand und zeigt null Charisma.  Dazu noch das ich ihn Privat langsam immer schlimmer finde, wie er über andere redet und seine äußerungen werden auch immer lächerlicher.  Er überschätzt sich selbst leider immer zu sehr in dem er denkt das er so toll im Ring war und noch nie was falsch gemacht hat, deshalb bin ich kein Fan von dem Kerl.  Aber als Wrestler 7 Punkte"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: notbobsagetwrote on 24.08.2016:[3.0] "Bret Hart only wrestled one good match his entire career. Sure, he did so a billion times, but Yokozuna wrestled the same match a billion times, too, and at least Yoko had a look. Bret couldn't cut a promo for his life, either, at least not without digging into his whiniest and most embarrassing real life qualities."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Luv all wrestlingwrote on 11.08.2016:[10.0] "Bret Hart is an amazing wrestler in all regards of the word, could wrestle, talk and look like a bad ass doing it, one of my all time favourites"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KevinZaynwrote on 16.07.2016:[4.0] "Ich weiß nicht warum, aber ich mag den Hitman überhaupt nicht. Finde ihn sehr extrem Overrated, Im Ring ist er für mich nur solide, für damalige Verhältnisse vielleicht noch gut. 6, 5/10 Am Mic nervt er mich nur 3/10 Charisma ist nicht vorhanden 2, 5/10 Ausstrahlung ist bestenfalls eine 5/10 . Ich mag den Werten Bret Hart nicht, sorry."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hartfoundationkidwrote on 29.06.2016:[10.0] "Der beste den es gibt gab und jemals geben wird an alle die in nicht leiden können die haben keine ahnung von Wrestling ich habe ihn live gesehen ganz einfach ich hoffe Bret du besiegst den Krebs den du bist der beste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Protomanwrote on 29.06.2016:[10.0] "Easily the best wrestler that ever lived.   Some say his promos were weak, but when he went heel, it was some of his best stuff."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Mizzle Assault Antwrote on 11.06.2016:[9.0] "Bret is undoubtedly one of the best of all time. Well over a decade of high quality profile work, and on multiple occasions was the clear top star in the WWF, drawing a big international audience at a time when guys like HBK and even the nWo struggled to do so. He elevated many of those he worked with and too tremendous pride in working smart and safe while remaining entertaining. He is not flawless but he has far more positives than drawbacks. It's a shame he became somewhat bitter later in life due to professional setbacks and personal tragedies, but that hardly registers in the grand scheme when talking about his actual career. So many great matches and feuds, the man clearly earned all he got even in the face of politics and restrictions of the time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Chosen Onewrote on 11.06.2016:[0.0] "Bret Hart never really appealed to me in the ring or on the mic. Not only is he not that good in the ring but he is a total douche bag in real life. He is always criticizing wrestlers, WWE, and more recently Seth Rollins. Bret really should be more respectful to alot of people because they could probably kill him. Overall horrible wrestler. Oh and yes, Bret Screwed Bret."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Sick Lebowskiwrote on 31.05.2016:[10.0] "Mein All Time-Favourite. Egal ob bei der Hart Foundation mit Neidhart oder seine spätere Singles-Karriere, ich fand ihn immer sehr gut. Viele halten ihn für uncharismatisch, aber auch da finde ich ihn zumindest stark in Ordnung, er hat seine Rolle als Canadian Hero immer sehr gut verkörpert. Im Ring für mich einer der Besten, wenn nicht sogar der Allerbeste. Daumen ganz dick nach oben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wrestlinglexikonwrote on 23.05.2016:[9.0] "Für die Zeit in der er aktiv war ein Garant für hervorragend Kämpfe. Er konnte aus so ziemlich jedem was brauchbares herausholen und war dabei in der Ausführung einzigartig sauber. Ein gimmick hatte er ja im eigentlichen Sinne nicht-Hart war Hart. Und das reichte vollends. Viele unvergessene, lange Fehden gegen etliche Größen im Wrestling machen Bret Hart zu einem sehr guten Gesamtpacket. Allerdings fande ich ihn am mic doch etwas schwach-bei weitem noch im grünen Bereich aber man muss da schon Abstriche machen. Gegen Ende der 90er hat ihn dann die Zeit eingeholt und er wirkte wie ein Relikt ( in der WCW). Trotzdem gebe ich für viele unvergessene Momente und Ringschlachten 9 Punkte. :)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Alex Maedawrote on 23.05.2016:"Man kann ihm nur wünschen, dass er den Krebs besiegt. Ich habe ihn weder als Wrestler noch als Person gemocht, jedoch wünscht man niemanden solche Krankheiten."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: EGeraldhuebnerwrote on 06.05.2016:"Ups, jetzt bin ich schon so viele Jahre hier, habe schon zu allen möglichen Gegnern, Storylines, Fehden bzw. Verwandten des "Hitman" etwas geschrieben und in der ganzen Zeit ausgerechnet Bret Hart vergessen. Schande über mich. ^^ Naja, egal, - gebe ich ihm halt Eintrag Nr. 100, passt auch zu ihm (den wollte ich mir zwar für jemand ganz schlechten aufheben, nun bekommt ihn dafür eben jemand sehr gutes). Natürlich "the best there is, the best there was and the best there ever will be" ... abgesehen vom Montreal Screwjob ... in seinen über 2 Jahrzehnten im Ring selber nie einen anderen Wrestler verletzt zu haben, dabei fast konstant überragende Matches abgeliefert sowie die Massen begeistert zu haben, spricht bereits für sich. Was ihm in seiner Karriere passiert ist, war eines der miesesten Dinge, die in diesem Business überhaupt möglich sind. Und die Umstände, wie er sie beenden mußte, tragisch. Einzig der Privatperson halte ich vor, das er die Zeichen seiner Zeit einfach nicht erkennen wollte. Mit anderen Worten, wäre es nur nach ihm gegangen, hätte Wrestling sich nicht weiter entwickelt. Ich idealisiere ihn auch nicht so dermaßen, um zu behaupten, er beging keine Fehler (denn dann wäre er ja kein Mensch ... und das ist er, was ihn nebenbei trotzdem sympathisch macht). Vor allem, stimme ich ihm nicht in allen seinen Ansichten zu, denn er sieht vieles leider zu einseitig. Bret Hart hat schon vieles richtig gemacht und für manches was nun einmal geschehen ist konnte er auch nichts. Es war sicher nicht so toll, wie sich alles entwickelt hat. Aber als Fazit der Geschichte sehe ich 50 / 50 % (Profit, Verlust ... und zwar, für alle Beteiligten bzw. uns als Fans)."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: blackmileswrote on 02.05.2016:[10.0] "Der Hitman war seiner Zeit der Beste. Als mitte der Neunziger die WWE auf einem Tiefpunkt war, gab es mit ihm einer der wenigen Lichtblicke. Schade das dieser dämliche Screwjob passiert ist. Eine wahre Legende und das war mMn der erste der WWF der es wirklich verdient hatte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MAGICIANwrote on 24.04.2016:[10.0] "Bret Hart gehört zu meinen absoluten Lieblingswrestlern und war auch einer der besten, die es jemals gegeben hat. Seiner Zeit war er im Ring weit voraus und seine sehr vielversprechende WWE Karriere musste leider durch den dämlichen Screwjob beendet werden. Diese wäre ohne den Screwjob nämlich noch vermutlich ein knappes Jahrzehnt weitergegangen, da Goldberg ihn so frühestens erst 2003 die Karriere kosten könnte. Bret Hart lieferte eine Menge legendärer Matches für die WWE ab, in der WCW wurde er dann verheizt. Seine Technik ist gar göttlich, allgemein im Ring ein wahrer Gott (10/10), am Mic ebenfalls sehr gut (9/10), Hart war dazu eine Charismabombe (10/10) und eine auch eine sehr sehr gute Ausstrahlung (9, 5/10). Insgesamt kommt Bret Hart bei mir damit auf 9, 63 von 10 Punkten - göttlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ichi the killerwrote on 20.03.2016:[10.0] "What else than a 10 out of 10 for "the excellence of execution" from his stampede matches to his late WCW work, especially his tribute match with Chris Benoit were gold. His legacy is established and he is on par with Lou Thesz and Verne Gagne. My only regret is that he never became a promoter or trainer. Imagine what a Bret Hart wrestling academy could produce !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TrevPuroFanwrote on 26.02.2016:[10.0] "One of the all time greats and a all time favorite of mine. He had so many classics throughout his career with the likes of Shawn Michaels, Steve Austin, Chris Benoit, even with his very own brother Owen, etc. I'd agree that his mic work was meh, but his ring work made up for it"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheLoudMouthwrote on 17.02.2016:[4.0] "Werde jetzt vermutlich gesteinigt, aber für mich besaß Bret Hart nie Main-Event-Material. Im Ring ist er zweifelsfrei einer der besten der Welt gewesen, auch wenn ich finde, dass seine Matches häufig nach Schema F abliefen. Am Mic war er für mich keinen Schuss Pulver wert und besonders charismatisch fand ich ihn auch nicht. Empfand ihn fast durchweg als sehr eintönig und langweilig, dass ich hier nur maximal vier Punkte geben kann. Sorry, Hitman!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: e1mawrote on 08.02.2016:[10.0] "Da kann man nur 10 Punkte geben. Einer der wohl besten Wrestler aller Zeiten, egal ob als Face oder Heel. Toller Worker und ein Mann der eine gesamte Generation geprägt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Aceonwrote on 23.01.2016:[6.0] "Technisch sicherlich hochgradig. Als Wrestlingcharakter konnte ich ihm jedoch nie etwas abgewinnen und empfand ihn immer als sehr, sehr langweilig. Einfach eine Sache des Geschmacks, den er bei mir leider nie traf."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Oddark123wrote on 06.01.2016:[9.0] "Bret the Hitman Hart was a talent of wonder. A part of a prestigious family he had the look to be a star and then he went and became a star. If anything perhaps his regular career ended on a down note. But that doesn't take away all the wonders he did along the way. In his current state Bret's appearances and limited in-ring time are a nice attraction to man who really should have been able to enjoy such a spot for years. I respect everything the Hitman has given the wrestling business. He has an excellent legacy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Squared Circlewrote on 27.10.2015:[10.0] "As good as it gets.  Great Tag Wrestler in the Hart Foundation, only to exceed this in his singles career.  Fantastic Intercontinental champ, with a great ring entry.  Solid with the mic and outstanding on the mat.  Good enough to carry the ball after Hogan, without being totally consumed in the shadow of Hulkamania.  My only regret is that he joined the NWO just as Ken Shamrock was coming into prominence.  The did a match on Raw that was one of the best examples of mat wrestling you'll ever see.  Those two could have toured the country in front of packed houses for years.  All in all, an unquestionable 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Der Hitman ist einfach eine Legende und gehört zu dem Kreis der Meister. Ich fand die Rivalität mit Vince Mc Mahon gut, die 2010 nochmal aufgerollt wurde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Cojotewrote on 13.10.2015:[10.0] "A great technician wrestler, one of the best ever. The best there is, the best there was, the best there ever will be. One of the two WWE wrestlers That have two 5 star matches (the Other is HBK). His rivalry whit Shawn Michaels definied the 90s WWE. His matches with Stone Cold Steve Austin help to Build the Legend of Attitude Era Icon, including WrestleMania XIII. The man That can be Mr. SummeSlam. His style are in the best Today's wrestlers. One of my five favorite wrestlers ever with Sting, Eddie Guerrero, CM Punk and Bryan Danielson: a dream team, that never will happen, to Survivor Series. The best wrestler that I see in a ring or wrestling tv show. Ever remembered His matches versus Roddy Pipper and The British Bulldog for the Intercontinental Championship and His match versus His brothers Owen in SummerSlam 1994. His wrestling psychology is the best in wrestling history, making his matches likes real fights. Thanks for all this years and for your extraordinary career, Bret "The Hitman" Hart."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: FloWrwrote on 16.09.2015:[8.0] "Technisch einer der Besten aller Zeiten. Unzählige erstklassige Matches und vllt die saubersten Moveausführungen von allen.  Charisma & Micwork durchaus vorhanden, allerdings nicht auf dem selben Level, wie seine Ringleistung, was die Gesamtwertung etwas runter drückt. Leider absolut unwürdiges Karriereende, was in Verbindung mit diversen Schicksalsschlägen leider zu der verbitterten Person führte, die er heute ist. In der WCW, trotz einiger Titelgewinne, völlig deplaziert, da man seinen Charakter nicht zu nutzen wusste. Zudem stand er sich in der WWF durch sein teilweise etwas wehleidiges Wesen etwas selbst im Wege. Trotz allem ein hervorragender Wrestler. Für sein Gesamtpaket gibts 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Seffy Dwrote on 16.09.2015:[10.0] "The best there is, the best there was, and the best there ever will be!  When I first saw Bret Hart I was barely two years old.  My mom has been a wrestling fan for a long time and introduced me to it.  I loved seeing Piper, Hogan, Andre, Rude, Roberts-- But when I saw the Hitman, I was hooked.  That was when I knew I wanted to see more, and I've been an avid fan ever since!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Excellence of Executionwrote on 24.08.2015:[10.0] "Auch wenn ich mittlerweile eine differenziertere Sichtweise auf Bret Hart habe als noch vor ein paar Jahren (insbesondere auf ihn als Person und seine Rolle in Montreal), so stehen diese 10 Punkte wie in Stein gemeißelt. Dass es gar nicht mal so wenige gibt, die das nicht nachvollziehen können, kann ich verstehen. Allerdings halte ich die Vorwürfe, mit denen das begründet wird, oftmals für arg überspitzt. Insbesondere wenn es heißt, dass Bret ja gar kein so toller Techniker gewesen wäre und wenig Ausstrahlung gehabt hätte. BULLSHIT! Bret war (auch nach heutigem Ermessen) einer der besten Techniker, die jemals einen Ring betreten haben. Wenn man den Terminus "Technik" darauf reduziert, wie vielseitig und akrobatisch anspruchsvoll das Moveset eines Wrestlers ist, dann gibt/gab es nicht wenige, die in der Hinsicht klar besser sind/waren. Aber wenn man zu "Technik" hinzuzieht, wie sauber, glaubwürdig und sicher Moves ausgeführt werden und dann noch Ringpsychologie und Story-Telling im Ring beachtet, dann ist Bret Harts Platz an der Sonne nicht ernsthaft zu bestreiten. Und was seinen angeblichen Mangel an Ausstrahlung angeht - hallo! Was war denn bitte das Face Gimmick von Hart? Er hatte keins! Er war einfach nur ein Wrestler - ein Rolle, die in der WWF überwiegend Jobbern vorbehalten war. Dass Hart sich dennoch und trotz diverser Steine im Weg dauerhaft im Main Event etablierte, wäre ohne eine gehörige Portion Ausstrahlung undenkbar gewesen. Oder soll ich glauben, dass ein Vince McMahon bereit war, mehr Kohle hinzulegen als er eigentlich hatte, um jemanden zu halten, der kaum oder wenig Wirkung erzielte? Bret Hart ist für mich DER WWF/WCW Wrestler, bei dem ich mich auch heute noch zurücklehnen kann und es mir nur allzu leicht gemacht wird, völlig auszublenden, dass das alles nur Show ist. Dass Hart es trotz seines auf Realismus ausgelegten Stils und dutzender Main Events geschafft hat, niemals jemanden zu verletzen, zeigt seine technische Klasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kevin434wrote on 23.08.2015:[9.0] "Leider muss ich einen Punkt abziehen da in der WWF mic work doch wichtig ist, trotzdem ist er vom wrestlerischen einer der besten aller Zeiten, wahnsinns techniker und jedes Match ist einfach nur brilliant und glänzt nur so vom storytelling. Er ist wirklich the best there was, the best there is and the best there ever will be."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: PWCwrote on 20.06.2015:[7.0] "I never really got accustomed to watching this guy wrestling given I was infant when Bret Hart was in his prime. I say a good solid 7 rating justifies him for someone is relatively new to wrestling like me. It's pretty weird how there is a popular internet meme that exists where Bret Hart rates everything a 4 out of 10. 4 out of 10 everything."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Zedwrote on 20.05.2015:[8.0] "Technisch gesehen kann man dem Hitman kein Vorwurf machen. Seine Matches waren immer Sauber und er hat nie einen Gegner ernsthaft verletzt. Seine Fehden mit Bruder Owen oder Dem SummSlam Match gegen seinen Schwager sind auch heute noch Zeitlose Klassiker, ebenso wie viele anderer denkwürdige Kämpfe , z. b. gegen Austin, HBK oder Benoit. Wieso nur 8 Punkte:Er war mir immer schon irgendwie zu verbissen. Seine ernste Mine fand ich immer etwas störend. Außerdem zerrte er nach 1997 zu sehr von den Geschehnissen bei den Survivor Series, und hat das wohl bis heute nie verziehen, auch wenn er es nicht zugibt. Irgendwann sollte man damit abschließen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CAIIIAwrote on 20.04.2015:[10.0] "Der Beste seiner Zeit! Durfte in den Staaten auch nach seinem Comeback 2010 nicht die ganz große Wärtschätzung durch die WWE genießen, wie ein gewisser Shawn Michaels z. B. , da er wohl die "falsche" Nationalität hat (wenn man davon ausgeht, dass ansonsten seit 2010 sämtliche Streitigkeiten ausgeräumt waren). Dabei hätte er soviel mehr verdient. Das absolute Zugpferd in den 90ern für Vince um die Massen zu begeistern. Technisch und charakterlich top, professionell und demütig dem Wrestlingbusiness gegenüber, loyal und fanfreundlich... durch und durch ein Vorbild als Wrestler und Mensch. Immer das Beste aus seinen Gegnern rausgeholt. Könnte man ewig weiter aufzählen. Im Pausenhof bei fast allen jungs immer die absolute Nr 1 gewesen (den arrogannten, egoistischen Shawn Michaels kannte die hälfte nicht mal). Auch sein aktives, ungescriptetes Ende in der WWF war eine einmalige Dramaturgie. Am wichtigsten aber: bis zu seinem Abschied der technisch beste Wrestler in der WWF! Legendär!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BigBarschDeluxewrote on 25.03.2015:[8.0] "Anfang bis Mitte der 90er war er zusammen mit Shawn Michaels ganz klar der beste. Sein mittelmäßiges Micwork und seinen fehlenden Willen (oder seine fehlende Fähigkeit), sich mit dem Business zu verändern, muss man aber ganz klar als Schwächen auslegen"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: pfuschiwrote on 07.03.2015:[8.0] "Bret surely was one of the very best on the ring ground and one of the most intense and believable wwe stars.  very view wrestlers do have so much great matches on their list. Wembley 92 and his matches against Austin might be the best he has done.  For a long time the mic wasn't Brets best friend and he was never a friend of the top rope which limited his matches in some way."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Valiuswrote on 25.02.2015:[7.0] "Im Ring natürlich top, aber mir fehlte bei ihm immer das gewisse etwas an Charisma.  Auch hat ihm IMO sein WCW-Run sehr geschadet."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: austin1987wrote on 03.02.2015:[10.0] "War einer der besten Wrestler, konnte mit fast jedem ein gutes Match zeigen, hatte eine gute Mischung aus "Technik Wrestling" und Brawler. Konnte die Moves die er einstecken musste verdammt realistisch verkaufen.  War auch als Heel überzeugend und hatte generell ein gutes Micwork."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: bigdaddy1wrote on 20.01.2015:[8.0] "Good in the ring and very popular - great story lines.  Mic skills were suspect, but workable. and had a great catch line."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Matzinhowrote on 17.01.2015:[8.0] "Für US-Wrestling-Verhältnisse war Hart Ende der 80er und Anfang der 90er Weltklasse, im Vergleich zu seinen japanischen Kollegen aus der Zeit für mich aber nur überdurchschnittlich. Bezeichnend sein enttäuschendes Match gegen Misawa. Hart bleibt mir in Erinnerung als überragender Tag Team-Wrestler und als bemühter WWE Heavyweight Champion, der gepushed und gepushed wurde, aber einfach das falsche Gesicht zur falschen Zeit war. Sein einziger wirklich großer Moment war in meinen Augen das Match gegen Austin mit dem double turn, in dem der Austin-Charakter endgültig gezündet ist und die WWE in der Folge in ungekannte wirtschaftliche Sphären geführt hat. Hart wurde bekanntlich acht Monate später abgesägt und hatte drei in meinen Augen enttäuschende Jahre in der WCW, bevor seine Karriere auf noch enttäuschendere Art und Weise endete. Klar - in der WWE-Historie wird Hart heute als Überwrestler und großartiger, charismatischer Champion verkauft, Fakt ist aber, dass er ähnlich Shawn Michaels kein großer Draw war und in meinen Augen kein Aushängeschild für die WWF in der heißen Phase des "Kriegs" mit der WCW gewesen wäre."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Y2J316wrote on 28.11.2014:[9.0] "The Best There is, the Best There was, the Best There ever will be. Na ja zwar nicht meine meinung aber trotzdem einer der Besten aller Zeiten. Top In-Ring skills und auch am mic Super. Schade das Goldberg in an den Kopf getreten hat und seine Karriere somit vorbei war. Der Screwjob ist da auch noch in guter Errinerung."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Phenomenal91wrote on 23.07.2014:[10.0] "Probably the best wrestler of all time. He had everything, and a whole lot more. In his prime, he was untouchable. It's a tragedy his career was ended so unceremoniously. I still think he had so much more to show the wrestling world. One of my favorite wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: DanielBryan1986wrote on 28.06.2014:[10.0] "Bret Hart war irgendwo wie Sting und Shawn Michaels seiner Zeit voraus. Ich denke Montreal sollte nach fast 11Jahren kein Thema mehr spielen. Die haben sich 2006 ausgesprochen sonst wäre er nie in der HOF oder die grosse DVD wäre kein Hit geworden. Bret Hart macht sich die Legende selber kaputt. Beste Fehde war für mich gegen seinen Eigenen Bruder. Wegen den Nachwehen von Montreal gebe ich eine 9. Schade dafür gab ich Bret Keine 10. Das war meine Bewertung 2008. 2010 kam aber vieles anders. Nun bin ich froh Bret die 10Punkte geben zu können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ClassicWrestlingFanwrote on 20.05.2014:[4.0] "Ich war nie ein besonders großer Fan von Bret Hart. Als Interc. Champion hat er mir in der WWE gegen Pipper und Co. noch recht gut gefallen, obwohl ich ihn - bis auf in einigen Matches - auch technisch nie so gut fand, wie er von vielen gelobt wurde (keine Sprünge vom Top-Rope etc. ). Aber später als Hogan-Nachfolger in der WWE hat er mir gar nicht gefallen, und als er denn in die WCW gewechselt ist noch weniger. Da waren seine besten Zeiten schon vorbei, und seine besten Zeiten waren für mich bis 1992, als er Interc. Champ war."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: superpuroresuwrote on 12.05.2014:[10.0] "The greatest worker to come out of Canada , his timing , selling , execution of moves and psychology was second to none at his peak."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: wwefan98wrote on 11.05.2014:[10.0] "Ich glaube zu Bret hart muss man nicht viel sagehn. Ganz klar einer der besten Wresteler die es jemals gab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: zackwoowoowooryderwrote on 06.05.2014:[10.0] "Einfach nur eine Legende! Der Grund für viele in den 90ern Wrestling zugucken. Technisch der Beste den es gab, gibt und jemals geben wird. Für viele aktuelle Wrestler das größte und beste Vorbild."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: yanuswrote on 23.04.2014:[10.0] "Bret is one of the best in-ring performers in the USA of all-time. Unfortunately he wrestled in the wwf at a time when big muscles were more important than in-ring work, so he only started getting recognition from the masses at the tail-end of his career. Bret was not only a great technician, but also might be the guy with the best (in-ring) timing in the history of the business. Of course he also had plenty of weaknesses, like his promo skills for ex. , but as the best Us worker of the 90's he deserves a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CrIppIL3RTIRiXwrote on 17.04.2014:[8.0] "Der Funke ist nie wirklich übergesprungen, er hatte schon was drauf aber das Charisma hat halt einfach gefehlt.  8 Punkte für einer der besten Wrestler der 90er."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BangBangwrote on 17.04.2014:[10.0] "DER Held meiner Kindheit und auch heute sehe ich mir seine Matches immer wieder gerne an. Er wird immer "The best there is, the best there was and the best there ever will be" sein!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: deadfru5wrote on 26.03.2014:[10.0] "Im Ring wohl einer der besten aller Zeiten. Unglaub spaßig im bei der Arbeit zuzusehen. Klar, am Mic gabs bessere, dennoch: Alles außer der 10 wäre hier unangebracht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Undertalkerwrote on 25.03.2014:[10.0] "Seine wrestlerischen Fähigkeiten gehören zu den besten aller Zeiten. Er ging sehr taktisch vor und daher ergab alles, was er im Ring anstellte, Sinn. Er hatte aber auch eine Schwäche: Ihm fehlte es etwas an Tempo und die damit verbundenen Überrachungseffekte während eines Matches kamen bei ihm zu kurz. Manchen Fans (zumeist jüngeren), die zu seiner Zeit noch kein Wrestling guckten, fällt es häufig schwer ihm Charisma zuzuschreiben und können nicht nachvollziehen, was so toll an ihm sein soll. Der Hitman hatte aber eine ganze Menge Charisma! Allein wenn seine Musik ertönte und er in die Halle einzog, kam eine Art Gänsehaut-Feeling auf und man hatte das Gefühl, Zeuge von etwas Besonderem zu sein. Ich kann das nicht näher erklären, aber vielleicht muss man ihn tatsächlich zu seiner aktiven Zeit gesehen haben, um das nachvollziehen zu können?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: New Strategywrote on 09.03.2014:[10.0] "Bret Hart hat mich 1991 zum Wrestling gebracht und von da an begeistert Daher zählt der Hitman zu meinem All-Time-Favorit.  "The best there is, the best there was and the best there ever will be" vereinigt Charisma, Talent und Fähigkeiten am Mikrofon wie kein zweiter. Ein exzellenter Techniker, der mit seiner großartigen Karriere und vielen großartigen Kämpfe für sich spricht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Whaaaaaaaaaaatwrote on 07.03.2014:[10.0] "Der beste Wrestler aller Zeiten....... und Held meiner Kindheit"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Foleysbabytoywrote on 26.02.2014:[10.0] "Der beste Techniker aller (? ) Zeiten. Ich kenne kein Match von ihm, indem er mich nicht überzeugen konnte. Bret brachte einen unglaublichen Realismus mit in den Ring und tat jedem Wrestler gut. Seine Fehden gegen Owen und Steve Austin zählen zu dem besten, was die WWE bis jetzt zu bieten hatte (und insgesamt gesehen hatte sie schon einiges zu bieten)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Duncan09wrote on 10.02.2014:[10.0] "Er war sicherlich der beste Wrestler aller Zeiten! Mit den für mich 2 besten Matches aller Zeiten. Summer Slam 92 gegen den British Bulldog und Wrestlemania 97 gegen Steve Austin! Hingegen seiner eigene Meinung, fand ich sein 1. Jahr in der WCW extrem interessant. Tolles, undurchsichtiges Gimmick "Sting I'm your friend! " Super Promos mit DDP und Randy Savage, toller U. S. Title run. Machte einfach spaß!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: LowJomoKiwrote on 01.02.2014:[9.0] "Für mich einer der grössten je in der WWE dagewesenen Superstars. Bei kaum jemand anderem waren In-Ring Aktionen so gut auf das Gimmick abgestimmt, als bei Bret Hart und allgemein verstand es Bret Hart so gut wie kaum jemand anderes ein "logisches" Match zu wrestlen. Die Moves waren gut aufeinander abgestimmt und erstaunlicherweise, obwohl jedes Match relativ ähnlich aufgebaut war (im Sinne von: alles wird aufgebaut in Richtung abschliessenden Sharpshooter), so schaffte es Bret Hart immer wieder mich im Ring hervorragend zu unterhalten, bsiweilen auch zu begeistern. Dazu kam, dass er ein guter Micworker war, klar gab es bessere und er war nicht so gut we Stone Cold, Foley oder Rock aber trotzdem war er stets vorne mit dabei. Bret Hart war jedenfalls in meinen Augen, nach Shawn Michaels, das beste Gesamtpaket was die Ring und Mic-Skills angeht das man in der WWE hatte... Allerdings wäre da dann noch sein Ego, das wie von einigen angesprochen leider irgendwo fern der Realität verweilte, denn an Überzeugung von sich selbst mangelt es ihm auf jeden Fall nicht... Vielleicht etwas unfair, dass ich ihm genauso viele Punkte gebe wie Rock, der deutlich beschränkter im Ring war, aber dessen Mic-Work macht das wett..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: koeddylaemmlewrote on 09.01.2014:[10.0] "Bret "the Hitman" Hart was born to be a professional wrestler. He eat, slept and breathed his in-ring persona and wanted to be the hero to every child world wide representing good moral values and hard work. While Bret didn't have the charisma guys like Hogan, Austin, Flair, Rock or HBK he had more drive and technical ability than them. The fact we will never see Bret take on the likes of Kurt Angle, Daniel Bryan, CM Punk or Antonio Cesaro is a truly sad thing, much like his post-WWF career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JuliTheCage87wrote on 22.12.2013:[6.0] "Tut mir leid aber er ist hier ein bisschen überbewertet. Owen war IMMER besser, zu jedem Zeitpunkt! Natürlich ein Toptechniker, jedoch wird er zu sehr gelobt. Vor allem am Mic war er, wenn es nicht in Montreal war (die Reaktionen für ihn haben alles übertönt), unterer Durchschnitt. Seine Art hat mich einfach nie angesprochen, weder als Heel, noch als Face wirklich stark."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: 8BitLegendwrote on 22.12.2013:[9.0] "Bret Hart war eine super Mischung aus Rockstar, Sportler und Drama-Queen. Der wahrscheinlich beste Allrounder, den das Business je hatte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheUnderTakerwrote on 13.12.2013:[9.0] "Keine Frage, der beste technische Wrestler aller Zeiten. Einer der wenigen, der Wrestling anfang der 90er glaubhaft gemacht hat. Einzig sein Ego, und seine nur durchschnittlichen Mic-skills bringen das Rating auf 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Goldberg82wrote on 14.11.2013:[9.0] "Bret Hart & Jim Neidhart bildeten in den 80ern das Tag-Team die Hart-Foundation. Eines der besten Tag-Teams aller Zeiten. Die besondere Mischung aus Glory (Hitman) und Power (Neidhart) hat sehr gut harmoniert. Als Single-Wrestler einer der größten Intercontiental-Champion als auch ein würdiger WWE-Champion. Er war ein sehr guter Ringer, technisch fast perfekt und konnte immer das beste aus seinen Matches rausholen. Ich fand seine Matches immer etwas zu theatralisch und sehr lang atmig, daher eine 9er Bewertung. In seiner WCW-Zeit wurde er nicht richtig eingesetzt, z. B. seine Zeit als NWO-Mitglied war einfach nur schlecht umgesetzt. Hier hat sich auch gezeigt das die WCW selbst so ein Zugpferd und Topstar nicht ansatzweise so gut einsetzen konnte wie die WWF."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CLPSKYLINERwrote on 12.11.2013:[9.0] "Er gehört zu denen, die sogar mit schlechten Wrestlern gute Matches bestritt, sehr gut!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Daneraswrote on 03.11.2013:[9.0] "Ich finde ehrlich gesagt Owen besser als Bret. Bret hinkt für mich zu oft, und verhielt sich auch nicht so bombastisch wie Owen Hart. Doch Bret Hart hatte auch viel Charisma. Sharpshooter ist genial!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hells Guardianwrote on 25.10.2013:[10.0] ".... ich will eigentlich nicht zu großzügig mit 10 Punkten sein, eigentlich wollte ich sie nie vergeben, denn den perfekten Wrestler, gibt es ebendso wxenig, wie den perfekten PPV. Es ist halt eine Geschmackssache. I Iring ist er unbestritten seine 10 Punkte wert, oder kennt noch jemand einen Wrestler, der in einer vergleichbar langen und intensiven karriere niemals einem anderen Wrestler schaden zugefügt hat und trotzdem jedes Match überzeugend worken konnte? Beim drum herum möchte ich mich HighlightHEEL schon im grunde anschliessen, mit dem unterschied, dass Rock seinen Mythos selbst mit seiner return zerstört hat und Y2J im Ring Hart nicht das Wasser reichen könnte. Da es den perfekten Wrestler also nun nicht geben kann, habe ich mir 4 Kandidaten rausgesucht, denen ich aufgrund ihrer unnachamlichen Leistungen die 10 Punkte gönne (und vorraussichtlich bleibt es bei denen) und Bret, ist einer davon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: HighlightHEELwrote on 19.09.2013:[9.0] "Technisch unbestritten einer der besten Wrestler aller Zeiten. Teil des vermutlich besten Tag Teams aller Zeiten. Was fehlt also zur Höchstwertung für den Hitman? Erstens das Micwork, bei ihm fehlt mir etwas, was viele andere große Redner (z. B. Rock, Jericho, um die besten zu nennen) haben. Er kann mich am Mikrofon nicht zu einhundert Prozent überzeugen, vielleicht weil ihm z. T. der absolute "Punch" in seinen Aussagen fehlt. Das Gimmick war in Ordnung, aber nicht absolut überragend. Und sein in vielen Interviews dargestelltes "Mr. Nice Guy"-Image nehme ich ihm auch nicht ganz ab. Im Ring will ich ihm nichts, aber auch gar nichts wegnehmen, drumherum fehlt aber für mich ein wenig was, um sich zu den Allergrößten rechnen zu können. Mir fallen auf Anhieb zwei Kanadier ein, die ich deutlich lieber gesehen habe."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: dudemanbearpigwrote on 03.09.2013:[10.0] "The best there is, the best there was, and the best there ever will be. A true legend of the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: zzzorfwrote on 28.08.2013:[10.0] "When I was introduced to wrestling in the early/mid 90's it was Bret who was introduced to me as the Champion. He quickly became one of my favourites and to this day he still is one of my best of all time. Over the years I have been able to pay closer attention to his ability as my level of knowledge about wrestling increased and I have realised more just how brilliant he is between the ropes. The fact that he never injured an opponent is a testament to his greatness."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Cactus Foley 88wrote on 09.08.2013:[8.0] "Der Held meiner Kindheit. Ein sehr charismatischer Wrestler und großer Champion. Als Face/Heel konnte er begeistern. Das besondere an ihm war auch das er aus jedem Gegner ein ansehnliches Match herausholen konnte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Mark william Calawaywrote on 12.07.2013:[9.0] "Das Beste Match von Bret Hart war gegen Shawn Michaels."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sir Vida Loca IIIwrote on 09.07.2013:[7.0] "Im Ring war Bret Hart sicher einer der besten SEINER Generation. Trotzdem war er lange nicht so, gut wie vorallem er selbst es immer wieder sagt. Technisch gesehen musste er sich zwar nicht verstecken, aber an einen z. B: Chris Benoit reicht er da nicht ganz drann. Am Mic war er nicht mehr als durchschnitt, was aber an seinem Gimmick gelegen hat. Mehr als 7 Punkte kann ich persönlich da leider nicht geben, diese hat er sich aber mehr als verdient, vorallem da ich zwischen der 7 und 8 schwanke."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kenshin Uesugiwrote on 03.07.2013:[9.0] "Jede Generation von Wrestlingfans hat seine Helden, Bret Hart ist so einer. Fast alle männliche Fans in Deutschland die wohl heute ende zwanzig und oder über dreißig sind haben in ihm ihren Helden. Was macht ihn so besonders? Ja er kann toll wrestlen, kann der gute Dean Malenko aber auch. Er ist ehrlich, sind andere Wrestler nun auch. Ist es sein Gimick und seine Darbietung? Das glaube ich nicht. Ich weiß es nicht und während mein Onkel mein kindlich Begeisterung für Hulk Hogan nie teilen konnte, sprang ich nicht durch die Decke wenn Hart zu sehen war, im Gegensatz zu ihm. Auch ist er mir als Person unsympathisch, da ja nie Fehler begangen hat(jedenfalls glaubt er das), alles genau weiß und manchmal ziemlich viel Blödsinn erzählt. Aber das soll nicht heißen das ich ihn langweilig finde oder seine Arbeit nicht zu schätzen weiß, ganz im Gegenteil. Der Mann hat was, wirkt zwar auf mich nicht und viel seiner Lobereisung auch bei seinen Matches halte ich für übertrieben, aber seine Klasse im Allgemeinen, sein Status und Bedeutung für so viele kann ich ihm nicht absprechen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: joshimaniawrote on 23.06.2013:[5.0] "With the exception of the Steve Austin feud a very boring and overrated wrestler. Started the five moves of doom usd a lot of rest holds striking wasn't anything special."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: christianpecevskiwrote on 28.05.2013:[10.0] "Eine lebende Legende. Der beste Wrestler seiner Zeit meiner Meinung. Durch ihn wurde Wrestling für mich erst interessant. Seine Kämpfe waren immer schön anzuschauen. Das Wrestling hat ihm viel zu verdanken, besonders die WWE. Danke Bret"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: HooliNerdwrote on 10.04.2013:[9.0] "Die kanadische Legende. Trotz einiger Differenzen mit Vince immer gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Eagle Whiskeywrote on 06.03.2013:[6.0] "Natürlich ein ganz großer und eine Legende, aber ich war von seiner gesamten Performance meistens einfach nur genervt. Seine Auftritte am Mikrofone und einfach das gesamte Gimmick Bret Hart hat mich nie besonders interessiert geschweige den fasziniert. Für Ihn sprechen aber natürlich seine Erfolge und sein wrestlerisches Können."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Schlagschawrote on 20.02.2013:[10.0] "Der beste Wrestler den es je gab! Entertaiment war außerhalb des Rings begrenzt doch im Ring eine klasse für sich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Diggertakerwrote on 13.02.2013:[10.0] "The most remarkable of the most remarkable family in pro wrestling. Respected technician, submission master and very controversial. One of the best in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Cobrawrote on 14.12.2012:[9.0] "No one can deny Bret's incredible ring work. An incredible technical wrestler I looked up to growing up. I find his lack of respect for some of the older wrestlers a little off putting though."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Yoyowrote on 07.10.2012:[10.0] "By looking at his legacy, one can tell he wasn't bluffing when he said he was the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ritt79wrote on 19.09.2012:[10.0] "Der Beste den es gibt, gab und geben wird. Danke Bret für eine richtig geile Wrestlingzeit"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: LM Punkwrote on 30.08.2012:[10.0] "War in den 90 mein Lieblingswrestler der WWE, aber sein Run in der WCW war nicht so toll. trotzdem auch hier die volle Punktzahl weil er sein gimmik gut rüber brachte und im Ring einfach der Beste ist den es gibt, gab und geben wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hankinswrote on 11.08.2012:[10.0] "Mein Alltime-Fave! Hat in mir damals eine unglaubliche Begeisterung für Wrestling erzeugt. Ein exzellenter Techniker, der unglaublich gute Matches abgeliefert hat. Sicherlich war er am Mic nicht der Stärkste, aber das spielt in meinen Augen überhaupt keine Rolle. Das Ironman-Match gegen Shawn Michaels gehört zu den größten Matches aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Damon Strikerwrote on 08.08.2012:[7.0] "Bin mit ihm aufgewachsen und seine Fehden, gegen Lawler oder gegen Owen etwa, haben einen nachhaltigen Eindruck auf mich hinterlassen. Zählt im Ring sicher zu den Besten. Seine Heel-Phase hab ich leider nicht gesehen. Was man 1997 und dann in der WCW mit ihm anstellte, war seiner unwürdig. Trotzdem war ich nie ein wirklicher Fan von ihm. Irgendwie hat was gefehlt und es nicht "Klick" gemacht."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BretHartfanwrote on 31.07.2012:[10.0] "Exzellenter Wrestler. Charismatische Art, ansehnliche Kämpfe. Er ist Die Art von Wrestler die ich Bevorzuge als Champ, nicht diese anabolen Hühnen ala Hulk Hogan. Der Wrestler der späten 80er und vor der Attutude Ära."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: 7TheEwrote on 22.06.2012:[5.0] "Für mich nur durchschnitt, sicherlich seinerzeit und bis heute einer der besten Techniker, aber Fablos wie die Nacht und seinem Bruder im Punkt Charisma so deutlich unterlegen.  Mag ihn nicht so gerne, hat für mich nur im 60 Minute Iron Man Match und im allgemeinen mit seiner Nemesis HBK gut funktioniert.  Außerdem für mich der Hauptschuldige am Montreal Screwjob."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: animan5000wrote on 09.06.2012:[10.0] "Bret Hart the man who changed the buisness forever has to be one of the best wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: kekslpetewrote on 05.04.2012:[10.0] "Einer der Besten die es gab und geben wird. Im Ring nicht ganz so stark wie sein Bruder Owen, am Mic aber ebenbürtig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Senajwrote on 28.01.2012:[10.0] "The Best there ist, the best there was and the best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Manolowrote on 28.01.2012:[9.0] "Technisch sicherlich einer der besten Wrestler der US-Mainstreamligen. Obwohl der Hitman für mich eine große Ausstrahlung hat, gehörte er nie zu den Großen am Mic. Da dies für WWE und WCW aber nicht ganz unwichtig war und ist, reicht es nicht ganz zu den 10 Punkten. Immerhin aber einer der ganz wenigen Wrestler, die Mitte der 90's in der WWE ein gutes Match abliefern konnten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Johnny-Tennerwrote on 20.12.2011:[7.0] "Okay guter Techniker war er, vielleicht zur Zeit von Hogan was besonderes, aber für mich war, ist und bleibt er ein langweiliger Charakter ohne ein größeres Erkennbares Gimmick. 7 Punkte für sein In-Ring auftreten aber für mich hat der Typ wirklich 0 Ausgestrahlt und mir fehlt bei den einfach das drumherum. Auch wenn ich mir immer wieder gerne seine meisterwerke ansehe."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MaecksPiwrote on 20.11.2011:[10.0] "The Best There Is, the Best There Was, the Best There Ever Will Be !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Bret Hart war schon ein guter Wrestler und konnte wirklich mit fast jeden ein gutes Match auf die Beine stellen, er ist eindeutig Main Event Material, er ist sehr gut im Ring war eine Kult Figur für viele Wrestling Fans und hat nie jemanden verletzt, das muss man erstmal schaffen, aber ich ziehe 1 Punkt ab da er mich doch an gewissen Stellen in seiner Karriere gelangweillt hat und ich seine zurzeitigen Auftritte in der WWE auch etwas nervig finde."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TAWPTierJustinwrote on 05.09.2011:[10.0] "I love and I've always loved Bret Hart still to this day! He's my favorite wrestler of all-time! Sure Stone Cold Steve Austin may be close to being my number 1 favorite but Bret Hart is still my favorite! He was the first I ever watched and loved! Granted, I started wrestling literally the day before the "Montreal Screwjob" happened but the Wrestling With Shadows documentary which is the greatest wrestling documentary in the world came out after that and I started to learn more about Bret and his family which made his family the first wrestling family I got to know about, learn about and love! That's why I've always had so much respect and love for everybody in the Hart family and anyone who was ever trained by the Harts like Brian Pillman, Chris Jericho etc. He will always be the best there is, the best there was and the best there ever will be and I don't think anyone will dispute that, I certainly don't! He will always be my favorite and I will always love him to death!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rey2004wrote on 04.09.2011:[10.0] "Absoluter Top Superstar und auch völlig glaubwürdig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: swaswa96wrote on 22.08.2011:[5.0] "Früher war er grandios, heute jedoch im Ring nicht mehr so gut"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: GTS Punkwrote on 16.08.2011:[10.0] "Hart ist einer der besten Wrestler allerzeiten. Zwar ist er nicht meine Generation, dennoch finde ich ihn genial!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Play2Xwrote on 11.07.2011:[2.0] "Das einzige gute, was ich mit ihm in Zusammenhang bringe ist der Montreal Screwjob... Zwar ist Bret ein guter Techniker, aber dafür ist er verdammt uninteressant und vorallem uncharismatisch... Tut mir Leid für dich Bret, aber es gibt bessere Kanadier als dich... (Edge, Christian, Jericho, ... ) Von mir aus kannst du gerne der beste Techniker sein, aber "The Best... " ist wohl wer anders... 00"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: NHJ2102wrote on 11.07.2011:[10.0] "The Best There Is The Best There Was And The Best There Ever Will Be...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: troppiewrote on 17.06.2011:[10.0] "Das Idol meiner Kindheit. Hat es wie kein zweiter geschafft mich mit seinem Hero Gimmik in den Bann zu ziehen. Erinnere mich noch daran an als er bei WM 10 endlich gegenüber Yokuzuna triumphieren durfte und wieder Champion war. Aus heutiger Sicht und ohne Mark-Brille kann man sagen das er ebenfalls ein sehr guter Techniker war, und neun Punkte für den Wrestler Bret Hart durchaus gerechtfertigt sind. Einen Extra-Punkt gibt es noch für die eingangs genannten Gründe"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Titanwrote on 13.05.2011:[10.0] "Bret Hart ist zweifelsohne einer der größten Entertainer, die das Wrestling-Business je gesehen hat. Seine Arbeit im Ring sucht bis heute seines Gleichen; Hart ist für mich das Paradebeispiel für einen Techniker im Ring. Hart konnte praktisch jeden Gegner auskontern und Griffe abwehren. Im Ring hat er sich immer den Allerwertigsten aufgerissen und hat auch zurecht die prestigehöchsten Titel gewonnen und die Einführung in die Hall of Fame war logische Konsequenz. Bret Hart war in meinen Augen ein Vorreiter für viele Entertainer, die nun in den Reihen der WWE sind oder mal gestanden haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: FriarFergusonwrote on 08.05.2011:[10.0] "War in seiner großen Zeit der ultimative, der beste Face überhaupt. Ein Face, den Mann den Fans nicht aufzwingen oder als gut verkaufen musste und dem man auch Schwächen verzieh. Der Grund dafür ist schwer in Worte zu fassen, vielleicht war Hart dem Publikum einfach näher, gerade weil er nie diese unnahbare Superstar - Aura um sich hatte. Hart war immer bodenständig und sauber, glaubhaft, logisch und technisch extrem versiert im Ring, solide am Mic. Selbst als Heel war er, trotz seiner guten Anlagen zum Face, überzeugend und gut verhasst. Insgesamt ein starkes Gesamtpacket. Einziger Wermutstropfen bleiben seine jüngsten Auftritte, aber solange diese sich von jetzt an in Grenzen halten, wird am Denkmalssockel dieses Mannes nicht mehr allzu viel zu rütteln sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KingRossiwrote on 29.03.2011:[10.0] "War einer der Besten seiner Zeit. Wenn man über Wrestling spricht, muss man den Namen Bret The Hitman Hart erwähnen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: C0nspiracywrote on 27.03.2011:[8.0] "Als ich mit Wrestling anfing war ich immer total Stolz auf Bret Hart das er keine herausforderung gescheut hat und immer Fair blieb. Er war ein Vorbild für mich. Abzüge gibts bei Micwork und Entertaiment Faktor. Wrestlerisch gibts in seiner gewichtsklasse nur wenige die Technisch mit einen HITMAN in Topform mithalten konnten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Butzelchenwrote on 09.03.2011:[10.0] "The best there is, the best there was and the best there ever will be! Mehr muss eigentlich nicht gesagt werden! Mein Kinderheits-Wrestling-Held. Der Montreal Screwjob war für mich einer der schlimmsten Moment in der Wrestling Geschichte. Zu Recht in der Hall of Fame!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Smi-48wrote on 18.02.2011:[10.0] "Volle Punktzahl. Bret Hart ist ein tiefschichtiger Charakter innerhalb und ausserhalb des Ringes, seine Matches über jeden Zweifel erhaben. Wer ihm mangelhaftes MicWork unterstellt dürfte das USA/Canada-Szenario anno 97 komplett verpasst haben. Die Rückkehr 2010 hat ihm in meinen Augen nicht geschadet, sondern zeugt von Größe und Verbundenheit zum Publikum, welche nach Heilung emotionaler Wunden seine Bitterkeit besiegte - damit konnte er die WCW-Kerbe um seinen unglücklichen Abgang aus dem Business auswetzen. Bret Hart ist sicherlich irgendwo auch ein Narzist, dabei aber durchaus selbstkritisch. Neben der Bürde seiner familären Tragödien steht sein Name aber auch für wirklich grandiose Matches der Neuzeit, den ersten Wrestlingboom in Deutschland und für die Lebenserhaltung einer ganz schwierigen Phase der WWF. Eine Ikone, welche in einem Atemzug mit den 90er Mainstream-Helden Hogan, Flair, Austin, Rock und Michaels genannt werden muss. Für mich persönlich sogar noch höher einzuschätzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TaraTerrellwrote on 21.01.2011:[10.0] "Bret Hart ist wahrscheinlich der Wrestler der die meiste Leidenschaft für dieses Buisness hat. Er ist ein wunderbarer Wrestler & in jeder Hinsicht Perfekt im Ring. Bret Hart vs Shawn Michaels war das Match das mich auf das Wrestling Buisness aufmerksam machte. Dieser Mann hats einfach drauf :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: P92wrote on 04.01.2011:[10.0] "Bret Hart gebührt jeglicher Respekt. Ich sah in am 12. November in Köln wrestlen. Er konnte gegen die jungen und aufstrebenden Nexus "Rookies" überzeugen. Er hat unendlich viel Charisma, und beweist, das er trotz seines Alters und seiner überwundenen Krankheit es immer noch drauf hat. Ein 10Punkte Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: lagunswrote on 21.12.2010:[10.0] "Wer glaubt das der Hitman nur einen Punkt weniger als 10 verdient hat, sollte sich nur mal die Kämpfe gegen Shawn Michaels um den IC-Title ansehen. Was da bei ganz normalen HouseShows geboten wurde, wäre Heutzutage mehr wert als jeder Mainevent von Wrestlemania. Bessere Lehrvideos für Wrestler gibt es nicht. Hab von Hart zwischen 88 bis 97 keinen schlechten Kampf gesehen, egal wie untalentiert seine Gegner waren. Und mehr kann ich von einem Wrestler nicht erwarten. Egal ob sein MicWork nur durchschnitt war. Seine Fähigkeiten im Ring überstrahlen alle defizite die er sonst haben möge... und diese waren auch nicht wirklich groß. Was mich am Hitman aber wohl am meisten beeindruckt, ist der Wille von ihm immer einen guten und spannenden Kampf zu präsentieren, auch wenn dies bedeutet das er auch mal einen Virgil oder Skinner als Champion eben nicht einfach so "wegjoobt" sondern auch diesen hilft ihr volles Potenzial zu zeigen und sie gut aussehen zu lassen. Und das ist für mich weitaus mehr wert als wenn der Warrior den IC- Title in unter ner Minute gewinnt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Matt4Wrestlingwrote on 19.12.2010:[10.0] "Der Beste den es gibt, gab und geben wird! Das ist irgendwo ein zweischneidiges Schwert. Viele sagen, alle seine Matches seien gleich. Wäre das nicht bei einem John Cena, Hulk Hogan und Ric Flair nicht dasselbe?  Bret Hart macht wie bei den anderen genannten Männern, das Gesamtpaket aus. Er nahm viele verschiedene Matcharten zusammen und konnte immer seine Gegner, im Gegensatz zu anderen, sicher durch Matches fühlen.  Neben seiner Match-Praxis, ist er aber auch eine Art moralisches Vorbild, wie man mit persönlichen Schmerzen umgeht (siehe Montreal Screwjob) und auch mal vergibt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: devilsoldierwrote on 10.12.2010:[10.0] "Mein Held! Ist einfach der Beste den es gab. Immer auf hohem Niveau. Edit: Hogan knows scheint sich wohl nur oberflächlich informiert zu haben. Das Bret schon Jahre vorher aus Liebe zur WWF(E) auf Gehalt verzichtet hat und ein ungeliebten Heelturn mitgemacht hat zählt da nicht. Und mit Heulsuse hat das auch nicht zu tun. Sowas nennt man Frust und Wut wenn einer den Ring zerlegt und dem Chef eine reindonnert. Heulen hab ich ihn jedenfalls nicht sehen. Aber Hogan knows gibt ja auch einem Eddy 0 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheRock 7 Champwrote on 19.11.2010:[10.0] "Bret Hart ist sehr gut im Ring als auch am Mic. Seine Fehden waren spitze und er wird für immer einer der besten Wrestler der Welt bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: justusjonaswrote on 15.11.2010:[9.0] "Eigentlich kann man ihm nur die volle Punktzahl geben. Sicherlich der beste Wrestler der 90er Jahre. Leider muss ich ich ihm für seine Zeit in der WWC einen Punkt abziehen. Auch wenn er sicherlich nicht die Hauptschuld an dieser Zeit trägt. Shame on WCW. So geht man nicht mit einen Topwrestler um. Trotzdem einen Punkt abzug."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Drokzwrote on 14.11.2010:[8.0] "Ziemlich guter Techniker, aber ernsthaft, ohne das the best there is, the best there was, and the best there ever will be würden ihn sicherlich nicht so viele als besten aller Zeiten ansehen. Klar war Bret Hart gut, aber so gut wie ihn jeder macht jetzt auch nicht. Seine Matches liefen meiner Meinung nach immer gleich ab, und es gab für mich innerhalb der WWE bessere Wrestler als ihn. Chris Benoit gehört zu den besten In-Ring Storyteller aller Zeiten, HBK ist mindestens genauso gut wenn nicht noch besser als Bret Hart, und dem Taker macht in sachen Ringpsychologie auch so schnell niemand was vor. Die drei sind für mich alle besser als Bret Hart. Wie schon gesagt, stand zurecht and der Spitze damals, ist auch ein Klasse Wrestler, der jeden Kollegen respektierte und nie was wirklich schechtes über sie sag, aber in Japan gibt es mindestens 20 Wrestler die viel besser als Bret Hart sind. Ich finde es ein wenig übertrieben, ihn als besten aller Zeiten zu bezeichnen, aber das ist ja nur meine Meinung."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Carnevalewrote on 21.10.2010:[4.0] "Komisch, schon zu früheren Zeiten fand ich ihn nie so besonders wie alle anderen. Sicher war er jedoch einer der Besten der damaligen Zeit. Aber: Seine Rückkehr zur WWE kann man ihm kaum verzeihen. Wer so sein Wort bricht, nur des Geldes wegen und das obwohl man so krank ist dass man kaum eine Aktion zeigen kann und doch wieder in der WWE sein muss - das ist einfach schwach."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: dnstoniewrote on 20.10.2010:[10.0] ""The Best There Is The Best There Was And The Best There Ever Will Be" Mehr gibt es zu seinen Fähigkeiten nicht zu sagen. Unerreichbar als Techniker. Der Montreal Screwjob hat ihn noch zusätzlich Unsterblich gemacht... und war gleichzeitig sein großer Karriere-Knick. So sehr ich die WCW auch mochte... was sie mit Bret angestellt haben war das allerletzte. Wenn man ihn schon kaum mit in die Shows einbaut, dann sollte man sich wenigstens davor hüten ihn in ein Stable zu packen. Bret hart in der nWo... das war der Lacher schlechthin. Leider hatte er nie die Gelegenheit ein 2. mal groß aufzutrumpfen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Aesopwrote on 18.10.2010:[10.0] "Bret war ein guter Wrestler der zu überzeugen wusste, zwar finde ich Owen besser, doch auch Bret konnte mich begeistern. Bei seinem Comeback zeigte er das er es immerhin noch am Mic drauf hat und es war schön ihn wieder zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Homicide187wrote on 09.10.2010:[10.0] "Durch Bret bin ich zum Wrestling gekommen. Ich habe alles von ihm verschlungen und im Nachhinein noch viele seiner alten Matches gesehen und war immer wieder begeistert. Einer meiner All Time Favs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Ramwrote on 29.09.2010:[8.0] "Tja "The best there is the best there was the best there ever will be" Ich würd es so ergänzen The best there is Chris Jericho! the best there was Shawn Micheals! Und wer für immer der Beste sein wird ist schwer zu sagen das Rennen Läuft noch.  Bret Hart war nicht meine Zeit aber das was ich von ihm früher gesehen hab war Spitze und er wird sich auf irgendeiner Weise wohl seine Popalärität verdient haben aber sein Comeback war einfach nur lächerlich. Es hieß Bret sollten bei Wrestlemania wirklich noch ein letztes Match bestreiten.  Klar er ist mitlerweile 53 Jahre alt aber ich erwartete ja auch kein Showstealer ala HBK. Aber als Bret Hart bei Wrestlemania in Jeanshosen zum Ring kam wahr ich echt schon kurz davor den Fernseher auszuschalten, das war für mich kein Wrestlemania Moment wenn Bret ja noch ein bisschen was im Ring gezeigt hätte aber sowas hätte ich nicht erwartet. Ich denke auch jeder Bret Hart Fan war ziemlich entäuscht das Bret nicht mal das Ring-gear angezogen hat. Fand ausser seinen guten In-Ring Fähigkeiten Bret nicht sehr Intressant, kein besonderes Gimmick;kein Besonderes Ausgezeichnetes Micwork. Da Wrestling mehr als nur ein Sport ist fänd ich 10 Punkte einfach unangebracht desswegen von mir Nur 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Double Jwrote on 29.08.2010:[10.0] "Mit chris benoit und Owen Hart der beste Techniker aller zeiten! Kam in seiner rolle auch immert glaubwürdig rüber. Einer der wahren könner der wrestlinggeschichte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Papa Popanzwrote on 28.08.2010:[9.0] "Es gäbe hier eigentlich zwei Punktzahlen... eine 10 Punktewertung für früher und sechs für jetzt.... ich seh aber mal die Vergangenheit, denn so oft wird er ja nicht wieder im Ring sein und deswegen noch 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Perry Coxwrote on 27.08.2010:[8.0] "Ich weiß noch genau, wie ich Bret das erste Mal im Fernsehen gesehen habe. Mein Vater saß da und schaute Wrestling im deutschen Free-TV und setzte mich aus langweile dazu. Und dann kam er, Bret Hart, zum Ring. Ich wusste damals nicht, wieso alle diesem Mann in Pink zujubelten und fragte deshalb meinen Vater, der nur meinte, dass Bret ein unglaublicher Entertainer wäre und das gewisse Etwas hat. Nunja, damals hielt ich nicht viel von Wrestling, lag vielleicht auch daran, dass ich eigentlich auch nie sehen durfte. Aber mittlerweile habe ich eine Menge von Bret gesehen und kann diesem Mann nur eine gute Note geben. Als ich anfing Wrestling wirklich richtig zu verfolgen, schenkte mir mein Vater passenderweise auch noch eine Bret Hart DVD mit den Worten: "Schau sie dir an und bewahre sie gut auf. " Bret mag durch seine Reaktion nach Montreal vielleicht etwas an Respekt verloren haben, weil er sich über Jahre weigerte, auch nur in die Nähe von Vince zu kommen, aber trotzdem bleibt er mir in guter Erinnerung, nicht zuletzt wegen meines Vaters, der mich insgeheim schon zum Wrestling gebracht hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Mountiewrote on 18.08.2010:[10.0] "Ich kann prinzipiell verstehen, dass es jüngere (und ältere) Fans gibt, die sich die Frage stellen: Was fasziniert eigentlich alle Welt an diesem Typen, der streng genommen gar nicht so übercharismatisch ist, schauspielerisch eher unbegabt und auch am Mikro recht schwankend in seinen Leistungen. Die eine, absolut schlüssige Antwort darauf gibt es nicht - aber gerade das ist auch wieder die Antwort. Bret hatte ein Quäntchen Etwas, das sich analytischen Betrachtungen entzieht und das man nicht erlernen kann. Dieses Etwas traf auf den Umstand, dass Bret zur richtigen Zeit am richtigen Ort war und die Lücke, die die Kunstfigur Hulk Hogan hinterließ, mit der Authentizität des bodenständigen, sympathischen Arbeiters überbrückte, der zugleich mit seinem Look aber eben doch gut vermarktbar war. Und er setzte später noch einen drauf, indem er seinen Charakter auf wunderbare Weise zu einem grummeligen Heel uminterpretierte, der für seine Erben Michaels und Austin der perfekte Widerpart war - ehe ihn Montreal dann auch noch zum Mythos gemacht hat. Der Werdegang ist so nicht wiederholbar, auch Owen hätte ihn nicht gehen können. Owen wäre - ohne seine Klasse schmälern zu wollen - ohne Bret als Türöffner womöglich auch nie über die Rolle als Undercard-Hüpfer hinausgekommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ISAGwrote on 17.08.2010:[5.0] "War noch nie ein Fan von ihm und werd wohl auch keiner mehr werden. Hat meiner Meinung nach auch nichts mehr im aktiven Wrestling geschehen zu suchen. Die Promos sind schwach und im Ring kann bzw darf er wegen seines Gesundheitszustandes auch nichts mehr zeigen. Wegen seiner Erfolge sicherlich zu Recht Hall of Famer aber irgendwann sollte man es auch gut sein lassen."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Ray Robsonwrote on 17.08.2010:[6.0] "Den Hype um Bret konnte ich nie nachvollziehen, weder damals noch jetzt. Sicherlich ein guter Techniker, der damals als Face auch echt sympathisch rüberkam, nur hat er mich gelangweilt. Für mich kein World Title Material, Intercontinental Title wäre das Maximum."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Fall Out Boywrote on 17.08.2010:[4.0] "Ich konnte ihn noch nie leiden. Bret Hart war definitiv vor meiner Zeit, das muss ich zu geben, aber von dem was ich gesehen habe, bin ich nicht gerade beeindruckt. Konnte seinen Spitznamen nicht mal annähernd bestätigen. Und sein Comeback bestätigt mich darin lediglich, da er nun nach 8 Monaten gerade mal 1-2 gute Promos auf die Beine gestellt hat."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Didi84wrote on 15.08.2010:[10.0] "Ein wirklich super Wrestler und schön ihn immer mal wieser zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheRock902102wrote on 18.07.2010:[10.0] "Eindeutig mit Abstand einer der besten Wrestler, Worker und am Mic...  Seine Matches waren legendär, selbst bei schwächeren Gegnern konnte er noch ein gutes Match herauszaubern...  Seine legendären Fehden gegen HBK und Owen Hart waren einfach Klasse....  Er ist einer der wenigen die, die 10 Punkte wirklich verdienen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ClaudeSpeedwrote on 16.07.2010:[10.0] "Es wird sich nie ändern. The Best there is, The Best there was, The Best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Dankowrote on 02.07.2010:[10.0] "Mein Kindheitsidol, klasse Wrestler der auch den schlechtesten Worker zu einem ansehnlichen Match ziehen konnte. Empfand ihn auch stets als sehr sympathischen Typen, seine jüngsten Aüßerungen, die für mich nicht in die Öffentlichkeit gehören, haben ihm jedoch einiges an Sympathie gekostet. Nichts desto trotz kommt er an einer 10 nicht vorbei."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Medeawrote on 30.06.2010:[2.0] "Ich habe Bret Hart noch nie leiden können, obwohl ich ihm ein großes Spektrum an Moves und einen sauberen Stil zugestehe. Als Teil der Hart Foundation war er auch noch annehmbar, aber als Einzelwrestler habe ich ihm seine Show nicht mehr abgenommen. Ich fand ihn keineswegs abwechslungsreich und mit der neuen Generation konnte er meiner Meinung nach gar nichts anfangen. Der Höhepunkt war dann meiner Meinung nach dann nur noch, Vince McMahon tatsächlich privat zu schlagen, weil dieser ihm seinen Sieg genommen hatte. Leider ist er jetzt am Mic auch nicht gut genug, um zumindest heute noch einige Punkte mehr zu sammeln."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SES-Memberwrote on 15.06.2010:[10.0] "Ich finde den ``HITMAN`` klasse. Er wird zwar nicht mehr an die Promos seiner Glanzzeit herankommen aber durchaus unterhaltsam sind sie trotzdem. Als GM gefällt Er mir sehr gut. Haltet sich gut im Hintergrund, trifft richtige Entscheidungen und bei den Fans schafft er es auch immer noch over zu kommen. Mein lob an den HITMAN der es nach 14 Jahren Pause trotzdem geschafft hat noch einmal erfolgreich zu sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: DragonSleeperwrote on 07.06.2010:[7.0] "Sicher, er war technisch gut. Ja, er war ein Star. Aber mich hat er nie so geflasht wie die meisten hier. Trotzdem wäre er ein 9 Punkte Kandidat. Aber: Für seine Rückkehr in die WWE muss ich 2 Punkte abziehen, das hat mich extrem enttäuscht nach den vielen Jahren. Zudem waren seine "Matches" gegen McMahon und Miz eine Schande für die Legende des Hitman."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: WrestlingFanDuisburgwrote on 03.06.2010:[10.0] "Allein die Tatsache das er absichtlich oder unabsichtlich niemanden verletzt hat spricht für die Fähigkeiten des "Hitman". Er war der größte Star mitte der 90er in der WWF. Als Heel hat er mir zwar nicht gefallen, aber als Face dafür um so mehr. Schade das er durch Goldberg seine Karriere beenden musste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: morph80wrote on 30.05.2010:[10.0] "Bin mit ihm groß geworden und hatte bei seiner Rückkehr im Januar Gänsehaut. Wrestlerisch einer der Besten aller Zeiten und am Mic großartig. Finde es grandios dass er sich mit der WWE versöhnt hat und hoffe dass er noch einige gute Auftritte hinlegt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Erasedwrote on 22.05.2010:[10.0] "Klasse Technicker, wohl einer der besten, die jemals einen Ring betreten haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Saphirwrote on 14.05.2010:[10.0] "Mein absoluter Lieblingswrestler bis heute. Da fallen mir auf Anhieb, sehr viele gute Matches ein. Sah eigentlich nie ein wirklich schlechtes. Ich kann nichts anderes als 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Edge96wrote on 12.05.2010:[10.0] "Für mich der beste Techniker aller Zeiten. Auch am Mic toll. Etwas anderes als 10 Punkte gibt es für ihn nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: gunniwrote on 06.05.2010:[9.0] "Als ich 1993 zum Wrestling kam, war er sowas wie "der Wrestler" für mich. Niemand konnte mich so in den Bann ziehen wie der Hitman! Dann die Titelgewinne gegen Joko, Diesel...... einfach exelent. Die Fehde mit seinem Bruder, die neue Hart Foundation ....... der Hammer. In der WCW gefiel er mir nicht so. Man konnte ihm ansehen, dass er nicht mehr mit dem Herzen dabei war. Der negative Höhepunkt fand ich (dadurch auch nur die 9) war, der Spear Goldbergs auf Bret der eine Eisenplatte unter der Jacke hatte. Da konnte man eine richtige l. m. a. A. -Stimmung bei ihm erkennen. Ansonsten kann ich nur noch eins sagen:"The Best There Is The Best There Was And The Best There Ever Will Be"!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Mukahidowrote on 05.05.2010:[10.0] "Er war für mich damals DER Wrestler warum ich überhaupt angefangen habe Wrestling zu schauen. Technisch überragend und sehr sauber, gutes Micwork und das gewisse Etwas machten ihn meiner Meinung nach zu Aushängeschild des Wrestlings der 90er ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Cpt Dave Charismawrote on 05.05.2010:[7.0] "Ich werde nie verstehen, was am Hitman so toll war. Ich erkenne aber an, dass er eine große Persönlichkeit aus einer großen Familie war und Owen war der Bessere!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sandmannwrote on 04.05.2010:[9.0] "Einer der besten den es je gab. Schon als Tag Team Wrestler mit Jim Neidhart ein grandioser Wrestler. Das setzte sich mit seinem Wechsel zum Singleswrestling fort. Verdienter IC Champion mit grandiosen Matches (z. B. gegen Mr. Perfect) dann verdienter World Champion. Ein betrüblicher Abgang aus der WWE und Wechsel zur WCW wo er aber nicht mehr an die grandiosen Zeiten anknüpfen konnte. Schließlich seine Rückkehr zur WWE nach Jahren und ein versöhnlicher Abschluss eines großen Skandals."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Eazyewrote on 02.05.2010:[10.0] "Genialer Techniker, durchschnittliche Mic Skills ansonsten sehr gut. Regierte die 90er als einer der besten Techniker. Natürlich wird er overrated, auch von mir. Und das ist der springende wird overrated. Warum? Sicher nicht nur wegen Screwjob's und Herzschlägen. Nein, er ist wegen seiner schillernden persönlichkeit so overrated. Auch sonst hätte er mindestens 9 Punkte für ihn gegeben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: RockZauwrote on 17.04.2010:[8.0] "Bret Hart ist der Inbegriff des Wrestling's für mich (:"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: RickRollwrote on 16.04.2010:[4.0] "Sicherlich im Ring technisch gut, aber trotzdem ist Bret die Definition von PURER langeweile (im Ring). Hart kann man sich angucken wirklich, aber das wars dann auch schon. Wer darrauf steht beim Finish immer das gleiche zusehen sollte sich Bret matches angucken."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: THE GAME 4-EVERwrote on 11.04.2010:[5.0] "Hoffnungslos overrated und im Ring sicherlich klasse aber wer sich bei Cena über 5-Moves of Doom Sequenzen zu Ende aufregt sollte bis zum Ende seines Lebens mit Bret Hart Match gequält werden, welche ähnlich unspektakulär endeten und sehr monoton waren. Dazu noch so charismalos und schlecht am Mic, dass ich lieber Jack Swagger und JoMo zuhöre! Alles in Allem die goldene Mitte, einen Punkt gibts noch für die Liebe zu Deutschland. Dazu kommt das der Montreal Screwjob seinem Ego zu verdanken ist und der feine Herr sich ja zu fein war, sich für Michaels hinzulegen in Montreal. Das ein Michaels dafür heute noch in Verruf gebracht wird ist eine Schande."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Showstopper45wrote on 08.04.2010:[10.0] "Großartiger Wrestler ich glaube hier reicht es wenn ich sage perfekter Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Moyawrote on 05.04.2010:[10.0] "Bin froh, dass er seinen Frieden gefunden zu haben scheint. Als Wrestler sicherlich ohne Zweifel eine Granate!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Buddy Hawkswrote on 30.03.2010:[10.0] "Wie auch beim HBK habe ich mit meiner Bewertung bis nach Wrestlemania 26 bzw. der folgenden RAW Sendung gewartet. Für den Hitman gilt im Grunde das gleiche wie für Shawn Michaels. Einer meiner drei Helden der Kindheit, der mich immer wieder auf's neue begeistern konnte. Sein Wrestling-Stil und sein Charisma machten ihn beliebt und unvergessen. Die Revanche für den MSJ mögen einige als schlecht empfunden haben, ich hingegen wollte genau dies sehen. Damit hat sich der Kreis für mich persönlich geschlossen und ein großes Kapitel wurde beendet. Ich bin froh, den Hitman noch einmal erlebt haben zu dürfen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Exist 2 Inspirewrote on 30.03.2010:[10.0] "Ich bin froh das ich nocheinmal die Möglichkeit bekommen habe Bret Hart live zu erleben, den seinen ersten WWE Run habe ich damals leider verpasst ( Habe ihn das erstemal als kleiner Junge bei WCW gesehen aber auch die Erinnerungen sind etwas verschwommen). Mittlerweile habe ich mir natürlich viel Material vom Hitman angesehen und ich kann ihm im Prinzip nur 10 Punkte geben. Im WWE Ring sicherlich einer der besten ever (zusammen mit HBK) und auch seine Promos fand ich eigentlich recht ordentlich. Das er es nach all den Jahren geschafft hat über den Screwjob hinwegzukommen und sich mit Vince McMahon & Shawn Michaels versöhnt hat ist schon ein starkes Stück. Noch vor einem halben Jahr hätte ich das nicht für möglich gehalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: antihiphop2002wrote on 28.03.2010:[10.0] "Hab ich immer gern gesehen. Genialer wrestler sympathischer Typ, wegen ihm bin ich als Kind im immer Sommer mit so ner bescheuerten Brille rumgerannt. Und ich bereue nichts!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kain Wolfsheadwrote on 23.03.2010:[10.0] ""Eigentlich müsste ich ihm die Note 1 geben aber da er in meinen Augen durch den Screwjob bewiesen hat dass er ein großer Egoist ist und sich nicht für jemanden hinlegen wollte, den er halt nicht ausstehen kann, hat er alle Sympathien bei mir verspielt" Mal abgesehen davon, dass Bret sich erst weigerte, als Shawn sich wie eine Diva aufführte und Bret entgegnete, nachdem dieser sagte, dass er kein Problem damit habe Shawn trotz Differenzen over zu bringen, dass er nicht bereit sei das gleiche für den Hitman zu tun, ne... Wird von HBK-Fans gerne mal verschwiegen... Bret hatte immer eine natürliche Ausstrahlung und Coolness wie es nur wenige andere im Business hatten. Im Ring nicht immer sonderlich vielseitig aber dafür punktgenau und sauber. Durch seinen No-Nonsense-Stil jederzeit als glaubwürdiger Main Eventer überzeugend gewesen. Man kann ihm kaum zum Vorwurf machen, dass ihm der Screwjob nahe ging. Aber inzwischen scheint er es ja hinter sich gelassen zu haben. Ob die Rückkehr so weise war sei mal dahingestellt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: LabronBenoitwrote on 23.03.2010:[10.0] "Ohne wenn und aber "the best there is, the best there was and the best there ever will be". Für mich der beste Wrestler aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: asraelwrote on 20.03.2010:[8.0] "Ob Bret nun "the best there was, the best there is and the best there ever will be" ist, darüber kann man geteilter Meinung sein. Was er ist, ist zweifellos ein mehr als solider Grappler (also Wrestler mit deutlichem Ringer-Hintergrund, der in erster Linie von Griffen lebt) und darüber hinaus eine Ikone des Wrestling. Meiner Meinung nach war die Qualität seiner Matches aber doch sehr stark von der Güte seiner Gegner abhängig, denn der Tempomacher war er eigentlich nicht - darüber sieht man wegen seines zugegebenermaßen großen Charismas oft hinweg. Ich habe halt viele seiner Kämpfe als reine Haltegriff-Orgien in Erinnerung, wenn der Gegner nicht viel dazu beitrug. Während der Zeit der Hart Foundation hatte er eine ganz andere Art zu wresteln gezeigt (klar, neben dem Powerhouse Jim Neidhart war eben damals er für die schnellen Passagen zuständig), na gut, er war damals ja auch noch jünger... Den größten Fehler beging er jedoch mit seiner Abwanderung in die WCW, und ich rede nicht nur vom "Montreal Screwjob", der dem Hitman-Charakter erheblich schadete, ich hatte den Eindruck, daß die WCW zwar stolz darauf war, der WWF eines ihrer Zugpferde "ausgespannt" (heh, man betrachte dies grandiose Wortspiel) zu haben, aber mit Bret eigentlich gar nicht wirklich etwas anfangen konnte. Seinen Abgang habe ich jedenfalls nicht als besonders würdig empfunden, ich kann mich daran erinnern, daß er vielmehr nur noch als "beleidigte Leberwurst" dargestellt wurde, die allen anderen krummnahm, daß"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Venomwrote on 15.03.2010:[10.0] "Eine Legende!  Für mich die Nr 1 noch vor The Rock oder Kurt Angle!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kitanoyamawrote on 07.03.2010:[10.0] "Einer DER Top-Wrestler in der Geschichte des weltweiten Wrestlings. Er zeigt eine großartige Präsenz, wird von den meisten gefürchtet und/oder respektiert und war zu seiner aktiven Zeit einer der besten, vielleicht sogar DER beste seines Stils."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Acid Dwrote on 04.03.2010:[10.0] "Wie für viele andere hier, war Brett Hart, auch bei mir einer der ersten Wrestler die ich verfolgt habe . Seine In Ring Leistungen und seine Technik haben mich immer begeistert, sein Mic Work war auch solide. Einzig seine extreme Verbissenheit, und nachtragende Einstellung störte mich etwas. Umso schöner ist es zu sehen, das er auf seine alten Tage, die Dinge die in belasten aus der Welt zu schaffen versucht, und seine Verbittertheit abzulegen. The best there is, the best there was, and the best there ever will be!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Cripplerwrote on 03.03.2010:[10.0] "Der beste Wrestler der 90er, ein absoluter Superstar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: mesorwrote on 12.02.2010:[10.0] "Bret Hart das Vorbild meiner Jugend! Ich freue mich auf Wrestlemania wie damals wenn es wirklich dazu kommen sollte dass er gegen Vince kämpfen sollte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Randy Owrote on 11.02.2010:[10.0] "Das was die WWE bzw Vince damals gemacht hat war einfach nur Peinlich und ein Trauriges Ende bei der WWE vom Hitman. Aber gott sei dank ist er wider Back für ne kurze Zeit und es hilft der WWE es hilft Vince es hilft vielleicht sogar Shawn aber noch viel mehr hilft es ihm selber. Bret kann endlich abschließen und so Enden wie es er verdient hat. Ein Match noch ? Muss nicht sein aber ich würde es befürworten. Ihm kann man nur 10 Punkte geben wenn man ihn von damals kennt, wer nicht sollte es nachhollen. Er war nie der Beste Micworker das gebe ich zu aber zu seiner Zeit hat es gepasst. In der WCW nicht ganz so wie von vielen erfhofft aber egal. 10 voll verdiente PUNKTE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: XoXwrote on 10.02.2010:[10.0] "Bret Hart ist für mich genau das was er selbst in seinen Promos immer wieder gesagt hat: The best there is, the best there was and the best there ever will be. Ein Mann, der nicht nur im Ring absolut überzeugen konnte, sondern - so kommt es zumindest rüber - auch hinter den Kulissen ein angenehmer, umgänglicher Typ ist, dem der Ruhm nicht wie so vielen anderen Top-Stars zu Kopf gestiegen zu sein scheint."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Checkerwrote on 04.02.2010:[10.0] "Ich bin froh das Bret Hart für kurze Zeit wieder zurück ist. Klar ist er nicht mehr so fit wie früher, aber hat jemand schon mal daran gedacht, dass er nen Schlaganfall hatte und so einige aus der Familie verloren hat?  Zum Screwjob muss ich auch was los werden. Es heißt immer er wollte sich für Michaels nicht hinlegen. Also mal ganz ehrlich, muss das sein in seinem letzten Match und Michaels war damals auch nicht besser. Abgemacht war ein no Contest. Trotzallem ist Bret eine Legende und wird es auch bleiben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: novacanewrote on 03.02.2010:[10.0] "Bret Hart ist für mich, zumindest was Technik und reines Wrestling angeht, der Maßstab, an dem sich alle messen müssen. Alles wirkte durchdacht, keine Aktion sinnlos oder ohne Wirkung. Man hatte stets das Gefühl, einen echten Kampf zu sehen. Unvergessen sind die Klassiker gegen Curt Hennig, Shawn Michaels und seinen Bruder Owen. Am Mic gibts bessere, aber alles in allem führt nichts um die 10 Punkte herum."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: tobiasthegreatone1wrote on 27.01.2010:[4.0] "Vor seiner Rückkehr hätte ich ihm 10 Punkte gegeben aber jetzt einfach schrecklich am Mic ist er extrem schlecht geworden und seine Ausstrahlung ist auch weg. Ich gebe ihm 4 Punkte und zwar weil er früher toll war aber durch seine Rückkehr hat er meiner Meinung nach den Fans den Rücken gekehrt. Bret hätte zuhause bleiben sollen es tut mir Leid 4 Punkte zu geben aber ich kann bei aller Liebe nicht mehr geben."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: test85wrote on 24.01.2010:[10.0] "The Best there is, there was and there ever will be. Sicherlich lässt sich darüber streiten. Doch er gehört sicher zu den Besten. Besser als ein Hogan, Flair oder Cena. Leider musste er seine Karriere viel zu früh beenden. Kommt deshalb nicht auf soviele World Titel Regentschaften wie andere. Gerade zu einem Zeitpunkt in der es wieder bergauf für ihn ging. War sowohl als Heel als auch als Face überzeugend. Erinnere mich noch gern an die Szene als HBK ihn einen Superkick verpasste als er im Rollstuhl saß. Hat viele Klassiker auf die Beine gestellt z. B. WM10 gegen Owen, SS91 gegen Mr. Perfect, SS92 gegen den Bulldog oder auch der Klassiker gegen Austin bei WM13. Hätte ihn gerne gegen Männer wie Jericho, Angle, Edge oder auch gegen einen AJ Styles wrestlen sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Pizzafunghiwrote on 22.01.2010:[10.0] "Für mich ist und bleibt er einfach "The Excellence Of Execution". Leidenschaftlicher Wrestler, nach solch einem Kaliber sucht man heute (fast) vergebens."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheROCKwrote on 22.01.2010:[10.0] "Mein Grund Wrestling-Fan zu werden. Just simply The Best ...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ShakDragoonwrote on 19.01.2010:[10.0] "Ganz klar eine echte Legende. Sicherlich auch einer der talentiertesten Wrestler, die je WWF-Gold halten durften. Mich hat seine Rückkehr sehr gefreut. Bin gespannt, wie es weitergeht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: pildaYwrote on 13.01.2010:[10.0] "Er hat dafür gesorgt, dass ich eine Gänsehaut bekommen hab, als er sein Comeback bei der WWE gefeiert hat. Wer das schafft hat meiner Meinung nach mehr als 10 Punkte verdient ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Rated R Superstar EDGEwrote on 11.01.2010:[9.0] "Ich war nie ein großer Bret Hart Fan. Ich konte seinen Matches und seinem Stiel im algemeinen nie sehr viel abgewinnen. Er verfügte zwar immer über imense in Ring Fähigkeiten war wie ich finde aber meistens einen hauch schlechter als z. B. Shawn Michaels, Chris Benoit oder Kurt Angle. Am Mic war und ist er auch immer einen der besten gewesen allerdings muss man deutlich sagen das ihn in sachen Micwork obwohl er einer der besten ist immer noch Welten von einem The Rock oder Chris Jericho trennen. Alles in allem wohl einer der komplettesten Wrestler der 90er. Einen Punkt ziehe ich ihm ab da ich ihn noch nie so wirklich leiden konte. Für seine WWF Zeit würde er von mir noch 10 Punkte bekommen. Für seine Zeit in der WCW 8 Punkte. Alles in allem 9 Punkte für den Hitman."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: freddnwrote on 09.01.2010:[10.0] "Bret Hart war immer ein Garant für hervorragende Matches und wird daher nicht umsonst "Excellence of Execution" genannt. Nach seinem Heelturn 1997 bekamen auch seine Promos immer mehr Substanz und er bewies nicht nur der Clean Cut Babyface sein zu können. Nach seinem Wechsel in die WCW versank er leider etwas in der Bedeutungslosigkeit, aber er wird trotzdem immer eine Legende des Sports bleiben... ich finde es auch sehr gut, dass er mittlerweile endlich über den Screwjob hinweggekommen ist - war sehr cool ihn mal wieder bei WWE zu sehen..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Unrated Superstarwrote on 09.01.2010:[7.0] "Meinetwegen steinigt, kreuzt oder köpft mich dafür! Aber ich habe in Bret Hart nie DEN Super-Wrestler der 90er gesehen. Da gefielen mir der Undertaker, Steve Austin und Shawn Michaels zu der Zeit wesentlich besser. Trotzdem ein talentierter Worker, dessen Karriere am Ende ein wenig unglücklich verlaufen ist. Schön, dass er jetzt doch nochmal für die WWE auftritt. Hoffentlich macht man was draus."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: RatedRJuliwrote on 07.01.2010:[8.0] "Sehr guter Wrestler aber mir persönlich etwas zu arrogant"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jupp365wrote on 07.01.2010:[10.0] "He is exactly what he says he is....... the best there is, the best there was and the best there ever will be! Als alter Bret Hart-Mark kann ich nicht anders bewerten! Er war und ist für mich der Größte!  EDIT: Freut mich sehr, dass er wieder da ist. Und er sieht für sein Alter blendend aus. Für die die es nicht gemerkt haben, die Aussage, dass er schon vor seit langem zurück kommen wollte, dient lediglich dazu Vince als noch größeren Arxxx da stehen zu lassen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Azarothwrote on 06.01.2010:[10.0] "So ziemlich alles, was man zu Bret Hart sagen kann, wurde in den vorausgehenden Kommentaren schon erwähnt, deshalb schließe ich mich stillschweigend aber überzeugt der herrschenden Meinung an."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Larskanonewrote on 06.01.2010:[10.0] "The Best there is, the best there is & the best there ever will be! Freue mich, dass er wieder da ist. Frage nur wie lange wird sich zeigen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: NewGuywrote on 06.01.2010:[10.0] "EDIT: Nach seinem RAW Auftritt scheint vieles anders. Er hat sich ein Versprechen gegeben. Er wollte zeigen dass auch ein Vince McMahon nicht immer machen kann was er will. Offensichtlich kann er es doch! Schade... Er wollte schon vor vielen Jahren wiederkommen? Soviel dazu. Egal es ändert nichts an der Wertung da er trotzdem ein super Wrestler war. Aber meine persönliche Meinung über ihn hat sich doch etwas verändert. but who cares?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Daddy Poowrote on 04.01.2010:[10.0] "Der Hitman hat nie einen Gegner in seiner Karriere verletzt. Ich glaube somit ist der Hitman einer der BESTEN ever. Durch den Screwjob und die Doku hat man bemerkt, dass Bret ein fairer Sportsmann ist. Heute kommt er wieder."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Y2J Problemwrote on 04.01.2010:[9.0] "Klasse Wrestler, der sein lang erwartetes Comeback gibt. Ob aus freiem Willen oder des Geldes wegen. Egal, so oder so ein Comeback auf das ich mich schon freue."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SmartyGirl13wrote on 03.01.2010:[10.0] "Eine Legende, ganz klar. Seine symphatische Art, das Moveset, das ganze Auftreten und seine saubere Arbeit im Ring lassen für mich keine andere Note zu als 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: yokosbrotherwrote on 02.01.2010:"Ich hoffe sehr das der 4. Jänner ein historischer Tag wird von dem wir noch sehr lange reden werden. Die Rückkehr eines der talentiertesten und zugleich sportlich fairsten Männern die es im Wrestling je gegeben hat. Ein Idol und eine abschließende und schöne Fehde hat er verdient. Ein Abschied wie bei Flair es gibt keinen dem ich so was mehr gönne als dem Hitman. Salut"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: hatebreederwrote on 02.01.2010:[10.0] "Bret Hart - dieser Mann hat dem Namen "Hart" seine ganze Ehre und Aufmerksamkeit, die er heute genießt, gebracht. Er war der erste der "schmächtigeren" Wrestler, die einen World Title nach der Hulkamania Ära gewonnen haben. Es spricht für sich, dass er der erste war, der den Rekord des Hulksters von 5 WWF-Heavyweight Titelregentschaften einstellte. Bret Hart führte die WWE nicht umsonst durch eine Krisenzeit. Deshalb gilt für den Hitman ganz klar: The Best There Is, The Best There Was, And The Best There Ever Will Be !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Navidwrote on 01.01.2010:[10.0] "Ein Mensch bleibt ein Mensch. Wenn man absolute Perfektion voraussetzt kann man die 10 Punkte niemals vergeben. Doch sind solche Wertungen doch eben dafür da jemanden auszuzeichnen der der beste seiner Zeit war und über diese Hinaus Standarts setzte die bis heute selten erreicht werden. Ausser Bret gibt es nicht viele die die 10 Punkte verdienen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Telecinewrote on 26.12.2009:[8.0] "Einer der besten Wrestler der Attitude Ära. Nach den Screwjob hat er mich in WCW aber wenig überzeugen können und wurde dann nach dem Ende seiner Karriere zu einem ziemlich verbitterten und ausgedienten Wrestler. Seine ständigen Macken bei irgendwelchen Pressekonferenzen, weil er nicht als bester Wrestler Kanadas in einem Buch steht, gingen mir persönlich doch eher auf die Nerven. Die Neu-Einstellung bei WWE ist natürlich sehr verwunderlich. Sieht wohl mittlerweile doch so aus, als wenn er den Screwjob ein wenig verkraftet hat. Es wurde Zeit."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kane123wrote on 26.12.2009:[10.0] "Einfach eine Legende ! Hoffe er wird RAW retten ! LEGENDE !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Italian Straight Edgewrote on 24.12.2009:[10.0] "Einer der besten (WWF/WWE)-Wrestler aller Zeiten. The Best There Is, Was and Ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Manu Adamswrote on 22.12.2009:[10.0] "Ja was kann man über den Hitman sagen, was noch nicht gesagt wurde. ich verneige mich vor dem Excellent of Execution und bedanke mich für unzählige wunderschöne Kämpfe. Ich schließ mich den 470 Usern an und vergebe ebenfalls die volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Brooklyn Brawler 1985wrote on 20.12.2009:[10.0] "Für mich der Inbegriff eines Superstars, obwohl er immer authentisch rüberkam und das "Larger than Life" eigentlich nicht einmal verkörperte... Wenn hier einer die 10 Punkte verdient hat, dann ist das der Hitman!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: spankywrote on 18.12.2009:[10.0] ""The best there is, the best there was and the best there ever will be""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: richardfliehrwrote on 16.12.2009:[9.0] "Mein erster Held! Wurde vom schiksal hart rangenommen! Währe heute als road agent für die wwe unbezahlbar wertvoll. Könnte den heutigen workern dimge beibringen die heutzutage in vergessenheit geraten sind."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Aglaoswrote on 15.12.2009:[10.0] "Oh Mann, wie ich den vermisse... Einer der Worker, der mich manchmal glauben ließ, dass die schöne bunte Welt des Wrestlings tatsächlich real ist..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Detrituswrote on 13.12.2009:[9.0] "Der Hitman war zu seiner WWF Zeit das Non-plus-ultra im Pro-Wrestling. Leider hat es ihn dann zur WCW verschlagen, was jedoch nicht seine Fähigkeiten im Ring schmälern soll."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: VanZan82wrote on 09.12.2009:[10.0] "wegen ihm habe ich angefangen wrestling zu gucken. habe 1990 in dortmund von ihm seine brille geschenkt bekommen. einer der schönsten momente meiner kindheit!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Roseswrote on 01.12.2009:[8.0] "Ändere meine Meinung den nur weil ich ihn nicht leiden kann, bedeutet das nicht das er ein schlechter Wrestler ist. Trotzdem nur eine 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: brianpillmanwrote on 27.11.2009:[10.0] "Einfach im Ring einer der Besten aller Zeiten. Ich könnte mir nach wie vor fast alle Hart-Matches anschauen und sie würden kaum jemandem heutzutage nachstehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BenZenwrote on 24.11.2009:[10.0] "War in den frühen bis mitte 90ern einer meiner absoluten Helden und lieferte im Grunde ein Komplettpaket. Technik, Ausstrahlung, Intensität, konnte die Zuschauer mitreißen und hat dermaßen viele Klassiker geliefert die ich alle auch heute noch gerne sehe. Seine WCW Zeit oder auch sein Charakter abseits des Rings bringen mich da nicht von der Höchstnote runter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: downtown2wrote on 15.11.2009:[9.0] "Eigentlich ist eine Wertung unterhalb der 10 Punkte für den Hitman eine Frechheit. Er konnte jeden Stil gehen, mit jedem noch so limitierten Gegner einen vernünftigen Kampf abliefern. Ein harter Brawler und feiner Techniker. Dazu Jemand der mit seiner Präsenz im und außerhalb des Rings seines Gleichen suchte und sucht. Doch Hart hat einen entscheidenden Fehler in seine tolle Karriere eingebaut und zwar den screwjob in Montreal. Vince McMahon hatte in seinem Interview völlig recht, als er sagte, Bret habe keinen Respekt vor dem Business das ihn zu dem machte, der er war. Im Wrestling kommt es nicht darauf an, wer Champion ist, sondern auf die Darbietung. Zu dieser Zeit wäre es noch dazu undenkbar gewesen, einen amtierenden World Champ unbesiegt zur Konkurenz gehen zu lassen. Dort verebte die Laufbahn des Hitman so langsam, weshalb es für diesen tollen Athleten einen Punkt Abzug gibt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: nWoWolfpacwrote on 30.10.2009:[10.0] "Bret Hart konnte mit jedem ein gutes Match zeigen! Super Techniker, super sympatischer kam er auch immer rüber. Einfach einer der besten die es gab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: stinkezonkwrote on 22.10.2009:[10.0] "Als ich anfing, Wrestling zu gucken, war er gleich mein Fav... Hat sich über die Jahre auch nie verändert. Er ist, was das Mainstream-Wrestling betrifft, immer noch mein Held... Technisch gehts einfach nicht besser!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hit Manwrote on 21.10.2009:[10.0] "Für mich absolut einer der besten den die Wrestlingwelt je gesehen hat. Vor allem seine Fehde mit Shawn war einfach nur klasse. Aber auch sonst immer einer der besten und einer auf den man sich im Ring verlassen konnte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Milowrote on 06.10.2009:[10.0] "Der mit Abstand beste Wrestler für mich. Er hat mich für das Wrestling begeistert wie keine anderer. Seine Fehde mit seinem Bruder Owen Hart, werde ich nie vergessen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Edgecutionerwrote on 01.10.2009:[7.0] "Bret Hart - zweifelsohne eine Legende im Wrestling. Hat Anfang/Mitte der 90er sagenhafte *****-Matches geliefert. Respekt. Aber alles, was sich danach abspielte, war einfach nur lächerlich. Ich kann einfach nicht verstehen, warum Montreal nach all den Jahren immer noch ein Thema ist. Liegt das vielleicht daran, dass die ganzen Bret Hart Fans sich nur nicht eingestehen wollen, dass Shawn Michaels einfach der Bessere von beiden war... Screwjob hin oder her. So ist das oft im Leben. Wenn man etwas nicht wahrhaben will, redet man sich einfach solange das Gegenteil ein, bis man es selber glaubt. So. Genug zu Bret Hart. Jetzt dürft ihr mich alle hassen und mir sagen, dass er trotzdem der "Beste ist, den es gibt, gab und bla bla bla... " Viel Spaß dabei."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Genschiwrote on 30.09.2009:[4.0] "Früher gut, konnte mit der zeit nicht mehr so mithalten, immernoch geheule wegen Montreal 97, wechsel zur WCW da ihrgendwie untergegangen, hier und da mal ein Titel und World Champ zur einer Zeit als der Titel nicht mehr viel wert war, heute ein verbitterter alter man, der noch der HoF aufnahme sofort wieder abreiste. Schade eigentlich"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Babuswrote on 29.09.2009:[7.0] "Verbitterter alter Mann, der als einziger Beteiligter auch nach 12 Jahren den Montreal Screwjob noch nicht überwunden hat. Dabei bot grade der eigentlich Potential für ihn, denn als Face fand ich den Hitman bis dahin nie völlig überzeugend. Davon abgesehen ist Bret Hart aber sicherlich ein guter Wrestler gewesen, wenn auch keiner meiner absoluten Favoriten."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Jar Jar Binkswrote on 26.09.2009:[10.0] "Toller Wrestler, der es schaffte mich als Kind wirklich zu begeistern. Ein wahnsinns Techniker, unglaublich Charimsa, einfach Glaubwürdig. Eine echte Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kazywrote on 26.09.2009:[10.0] "The Best there was, the best there is, the best there ever will be... naja er ist nicht ganz das non plus ultra aber trotzdem ist er einer der grüßten in der Geschichte der WWE Geschichte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Jackwrote on 21.09.2009:[10.0] "Jeder der ihm keine 10 Punkte gibt hat keine Ahnung von Wrestling!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Zombrerowrote on 19.09.2009:[10.0] "Der beste den es gab. Da brauch man gar nicht mehr zu sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Basket Casewrote on 14.09.2009:[10.0] "Er war einer der besten Wrestler unserer Zeit, dazu stark am Mic. Schade, dass seine Karriere so endete."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Y2Mikewrote on 10.09.2009:[10.0] "Brauch ich nicht viel dazu erwähnen. Einer der besten Wrestler aller Zeiten. Mein all time favourite wrestler. Technisch begnadet. Am Mic war er sicher nicht der Beste, aber doch sehr deutlich über dem Durschnitt. Schade das so ein Nichtskönner wie Goldberg seine Karriere beendet hat. Und zum Montreal Screwjob sag ich nur ---> FRECHHEIT!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Turboladerwrote on 29.08.2009:[10.0] "Der beste Techniker überhaupt, daran gibt es für mich keinen Zweifel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jenszaunwrote on 19.08.2009:""The Excellence Of Execution", the beste is, the beste was and the beste ever will be"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: bret 82wrote on 12.08.2009:[10.0] "Also ich finde das der hitman der beste im ring war und immer bleiben wird. Wenn man sich überlegt das er nichtskönnern wie skinner oder bastion booger zu ein halbwegs anständiges Matches gezogen hat......... ganz klar ne 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Muthmasterwrote on 30.07.2009:[10.0] "Schlicht und ergreifend: The best there is! The best there was! And the best there ever will be!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: 108 Sternewrote on 24.07.2009:[10.0] "Der Mann ist ein Phänomen; mit seiner ruhigen Art und seinem stark auf Haltegriffe basierendem Wrestling würde man nicht meinen, daß er die Massen erreichen kann; aber er kann, und wie. Der größte Wrestling-Star der 90iger."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Main Eventwrote on 06.07.2009:[9.0] "Wrestlerisch war er ein Ass, das ist klar, aber was er beim Schrewjob aufgeführt hat.... das hatte mit Wrestling garnichts zu tun... >:("
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Cloverwrote on 04.07.2009:[8.0] "Ikone im Wrestling und technisch damals herausragend. Aber er wirkte in seiner Rolle immer sehr verhalten.. da war Owen Hart unterhaltsamer! Schauspielerisch also eher Mittelmaß. Doch der Kult reicht - daher 8, 5 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Mick Funkwrote on 02.07.2009:[8.0] "Sicher technisch ziemlich gut aber ich mochte ihn nie. Gelegentlich konnte er mich gut unterhalten aber trotzdem ist er etwas überbewertet. Die Matches liefen zumeist nach dem selben Schema ab und unfassbares Mic Work oder riesen Ausstrahlung hatte er meiner Meinung nach auch nie. Trotzdem gibts eine hohe Wertung wegen der starken In-Ring Fähigkeiten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jimpanse1980wrote on 01.07.2009:[10.0] "Der einzige Wrestler von dem ich mir die Biographie kaufen werde. Zu seiner Hochzeit der technisch versierteste Wrestler. Auch wenn er in der WCW völlig falsch eingesetzt wurde und er mit dem heutigen Stil meines erachtens nicht mitgehen könnte/würde, ist er einfach the best there ist, was and ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Aquifelwrote on 15.06.2009:[10.0] "Am Mic zwar kein großer Showman, aber sehr glaubwürdig/authentisch. Und über seine technischen In-Ring Fähigkeiten braucht man wohl eh kein Wort zu verlieren. Ganz großes Wrestling-Kino."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Eddiewrote on 02.06.2009:[10.0] "The best there is, the best there was, the best there ever will be, zumindest was die WWE anbetrifft, er war wirklich einer der besten, 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Afroman Undertaker 619wrote on 21.05.2009:[10.0] "Bret Hart war früher ein Unglaublicher Wrestler. Schade Das sein Bruder Owen Hart gestorben ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Blazewrote on 14.05.2009:[8.0] "War in allen wichtigen Bewertungskriterien klar über dem Durchschnitt und wrestlerisch einer der besten weltweit, aber am Mic gehen andere noch weitaus besser. Außerdem bin ich kein großer Fan seiner Matches. Zu Old School und zu viel Bearbeiten von einzelnen Körperteilen sagen mir oft nicht so hundertprozentig zu. Dennoch immer Top Leistungen und einer der ganz großen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The-Game91wrote on 06.05.2009:[10.0] "Ohne Frage einer der besten Wrestler aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: REYMVPwrote on 04.05.2009:[10.0] "Der beste Westler aller Zeiten. Technik erste Sahne!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Brainbreakerwrote on 26.04.2009:[10.0] "Yeah, einer der besten Techniker durchaus, aber es war auch sein Kampfgeist, den sein Gimmick verkörperte, gegen jeden in den Ring steigen zu wollen und keine Angst vor der Herausforderung zu empfinden. Auf ihn wirkten Psychospiele nie. Das fand ich so faszinierend. Der Inbegriff des konditionierten Kämpfers, der auf Strategie und Technik setzt. Dass das im Wrestlingsport, der zu einem beträchtlichen Teil auch Entertainment sein soll, und bei seinen Fans nicht nur auf Gegenliebe stoß, war klar. Aber selbst als Heel gefiel mir der Hitman später sehr gut, da er vom Grundtenor seines Stils eben nicht abwich, sondern ihn um unfaire Aktionen erweiterte (Figure-4 am Ringpfosten). Für einen herausragenden Über-Wrestler gehört allerdings insgesamt mehr dazu. Nämlich Mic-Work, Charisma, Veränderbarkeit des Gimmicks. Das hat Michaels, aber leider nicht Bret. Weshalb nach 7 Jahren im WWE-Mainevent die Puste raus war. Sein Weggang war kein Beinbruch für die WWE. Btw: Michaels hat ihn gerade in den Jahren 92 und 93 als WWE-Champ öfter over gebracht, als jeder andere. Man denke an die tollen Leiter-, Cage- und Maineventmatches (zB SurvivorSeries 92). Insgesamt gibt es aber trotzdem 10 pkt, da sein Gimmick einen riesigen Zeitraum beständig war, er fast durchweg hochqualitative Matches zeigte und rein geschichtlich eine wichtige Persönlichkeit zwischen der Hogan- und der Attitudeära darstellte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Eggywrote on 25.04.2009:[10.0] "Ein großartiger Techniker, der jeden over bringen konnte und selbst noch die schlechtesten Worker im Ring gut aussehen ließ. Sein Match mit Davey Boy bei Summerslam '92 hat mich gänzlich davon überzeugt, was für ein Talent in ihm steckte und dass er selbst dann ein gutes Match inszenieren kann, wenn sein Partner alles vorher Besprochene vergisst. Die Kritik an seiner Persönlichkeit kann ich überhaupt nicht verstehen, da Shawn Michaels nie freiwillig bereit war Bret over zu bringen oder den Titel zu droppen. What goes around comes around. Selbst wenn Bret damals eine Klausel in seinem Vertrag hatte, die ihm kreative Kontrolle für die letzen 30 Tage seiner WWF-Karriere garantierte, saß Vince McMahon am längeren Hebel und stellte Bret Hart als Egoisten dar, der nicht bereit war sein letzes Match in der WWF zu verlieren. Bret's Buch hat mir gezeigt, was damals wirklich passiert ist und wie die Backstagepolitik damals war. Abgesehen von der Kontroversität um sein Ende in der WWF war er trotzdem der beste Techniker seiner und zukünftiger Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: vanmillerwrote on 20.04.2009:[10.0] "Schade das er so früh aufgehört hat..... Einer der Besten seiner Zeit, und währe es sicherlich auch heute noch!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CM Punk Mitbwinnerwrote on 15.04.2009:[10.0] "Einer der besten, wenn nicht sogar der beste Techniker in der Geschichte der WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: manager1977wrote on 07.04.2009:[9.0] "The Excellence of Execution. The Best there is, best there was and the best there ever will be. Einzig seine WCW Zeit gefiel mir nicht so besonders."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Father Nelsonwrote on 01.02.2009:[7.0] "One of the best workers of all time. Read his book and .... see yourself!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rattlesnakewrote on 31.01.2009:[10.0] "Technisch überragend, wusste auf alles eine Antwort und konnte jeden Gegner zu einem guten Match führen. Sein Micwork war sicher nicht das Beste, aber das machte er im Ring mehr als wett. Einzig störend fand ich die immer gleiche Schlußsequenz seiner Fights; er hätte eigentlich genug Moves zur Verfügung gehabt. Seit Montreal wurde er zudem etwas weinerlich; ich kann zwar sein Mißfallen verstehen, aber irgendwann hätte er es gut sein lassen sollen. Trotzdem gab es in meinen Augen nicht einen einzigen langweiligen Fight mit ihm. Und wer seine technischen Fähigkeiten anzweifelt, sollte sich ernsthaft fragen lassen, ob er vom Wrestling etwas versteht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BaptisteZorGwrote on 29.01.2009:[10.0] "Der kompletteste Wrestler in- und außerhalb des ringes.. Technisch überragend und viele der heutigen stars könnten sich eine scheibe von Ihm abschneiden. 10 punkte, was sonst?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Miteamexicowrote on 25.01.2009:[10.0] "Was soll man zu Bret Hart schon sagen? Ausser das er der Beste Wrestler aller Zeiten ist Punkt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SweetMetalMusicwrote on 04.01.2009:[10.0] "Bret ist schlicht und einfacht the best there is, the best there was and the best there ever will be! Seine Matches gegen Austin, Owen Hart, British Bulldog, Shawn Michaels, Undertaker usw. sind absolute Klassiker. Er brachte allerdings auch sehr gute Matches gegen weniger talentierte Wrestler wie z. B. Rody Piper und Diesel hervor. Seine Fehden waren allesamt ganz großes Kino. Besonders die gegen Owen und Austin und niemand konnte jemaden so gut over bringen wie Bret Hart. Ohne ihn hätte Austin wohl nicht das erreicht, was er schließlich erreichte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MarcB126wrote on 26.12.2008:[10.0] "Was soll man nur über Bret sagen, ich kenn ihn seit meiner Kindheit, er war immer der beste und der größte für mich. Ich denke er ist ein Held für viele und wird es immer sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hirnklopswrote on 05.12.2008:[2.0] "Ach, warum soll ich mich hier verstecken... Ich find' ihn scheiße. Seine Matches sind langweilig und Schema F, und gerade als Babyface war er so derart widerlich und abartig, das ging überhaupt nicht klar. Gepaart mit seinem Ego... Bäh. Völlig zurecht Opfer des Screwjobs geworden, hätte nur vielleicht schon ein Jahr früher passieren sollen."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: michawrestlingfanwrote on 20.11.2008:[10.0] "the best there is. the best there was. the best there ever will be!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Pinguwrote on 13.10.2008:[10.0] "Mein Idol in Kindheitstagen. Zählt für mich heute neben HBK zu den 2 besten Wrestler die es in den letzten 20 Jahren gab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sabu316wrote on 12.10.2008:[8.0] "Für mich war er deutlich schlechter als sein Bruder Owen. Alleine die Finishsquenz seiner Matches zeugt von seiner nicht unbedingt abwechslungsreichen Art zu kämpfen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: El Reywrote on 07.10.2008:[10.0] "Der Beste... Der wohl technisch versierteste Wrestler aller Zeiten. Seine Wrestling skills sind unübertroffen und mit seinem Mic-Work zieht er Props ohne Ende. Er hätte sogar noch höher hinaus kommen können wenn es diesen gewissen Tag in Montreal nicht gegeben hätte. Er ist mein All Time Favorite."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MrWrestlingwrote on 02.10.2008:[10.0] "The best there is, the best there was and the best there ever will be!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: StoneColdRevowrote on 29.09.2008:[10.0] "Bret Hart ist einer der besten Wrestler überhaupt. Super InRingSkill und nette Promos(auch wenn ich bisher nicht viele gesehen). Am besten war wohl das Steel Cage Match gegen Owen Hart, das werd ich nie vergessen^^."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Wise Warriorwrote on 15.09.2008:[8.0] "Guter harter Wrestler. Als IC-Champ super und sein erster World Champion-Run war auch sehr glubwürdig. Aber ich muss sagen, dass sein Weggang das beste war, was der WWE später passieren konnte. Nimmt sich glaub ich etwas zu ernst und zu wichtig..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Stalker1987wrote on 29.08.2008:[10.0] "Dieser Mann hat so viel für das Wrestling getan. Jeder, der ihm weniger als 10 Punkte gibt hat keine Ahnung!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: andrekoenigwrote on 23.08.2008:[8.0] "Der "Hitman" ist meiner Meinung nach nicht der charismatischste Wrestler gewesen, aber er hat einfach mit jedem ein gutes Match bestritten. Er hat mir eigentlich auch von Anfang an gefallen. Und er ist meiner Meinung nach der größte Techniker überhaupt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: 180778MVPwrote on 18.08.2008:[10.0] "Nachdem ich Bret Hart im Jahr 1991 das erste Mal gesehen habe, wurde ich ein Wrestling und natürlich Hitman Fan. Ich war begeistert von seinen In-Ring Fähigkeiten. Als Mark habe ich mit Ihm die Höhen und Tiefen bis ins Jahr 1993 miterlebt. Dann waren meine Mark Zeiten vorbei. Obwohl ich wußte das (fast) alles vorgeplant ist, schaffte er es doch immer wieder die Geschichten so rüberzubringen, daß sie echt wirkten. (Nur als Beispiel seine Fehde mit Jerry Lawler). Leider wußte die WCW dann nix mehr mit ihm anzufangen, sodaß meines Erachtens nach der "Hitman" Charakter im Jahr 1997 zerstört wurde. Für mich ist und bleibt er immer "der Beste den es gibt, gab und geben wird"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: squadra3wrote on 29.07.2008:[9.0] "Einer meiner All-time Favorits, allerdings ist eine Welt für mich zusammengebrochen als er zur WCW wechselte. Zu Montreal - life is hard!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: wXw Fanwrote on 25.07.2008:[8.0] "Sicherlich gut aber keinesfalls einer der besten aller Zeiten. Dafür im Ring zu eintönig und zu farblos."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Dave Concordiowrote on 24.07.2008:[10.0] "Mein Fav aller Zeiten, grandios der Hitman! The Best there is, the Best there was and the Best there ever will be... absolutely!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Weihnachtsmannwrote on 23.07.2008:[4.0] "4 Punkte, weil er wirklich ein sehr großes Moveset hatte und solide Leistungen im Ring bringen konnte. Die Abzüge gibts dafür, dass er mich mit seiner "5-Moves-of-Doom"-Sequenz immer gelangweilt hat, und dafür, dass er sich selbst im fortgeschrittenen Alter von 51 Jahren noch aufführt wie ein kleines Kind dem man den Lolli weggenommen hat. (Letzes Beispiel bei der Preisverleihung auf der er einen Preis für seinen verstorbenen Vater entgegengenommen hat)"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Champwrote on 22.07.2008:[10.0] "Absoluter Weltstar! Wegen ihm hab ich mit angefangen Wrestling zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ButchIncwrote on 20.07.2008:[10.0] "Bestnote für den Besten, den es gibt, gab und geben wird. Derjernige Wrestler, der mich zum Wrestling-Fan Anfang der 90er machte in der Fehde gegen seinen Bruder. Für mich wird es keinen Besseren geben. Never!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Berndwrote on 20.07.2008:[10.0] "Held meiner Kindheit und daher völlig außer Konkurrenz."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Tunisian Warriorwrote on 12.07.2008:[10.0] "Wahrscheinlich der beste Techniker aller Zeiten. Leute die ihn nachdem Screwjob als Egoisten sehen sind entweder verblendet oder stehen auf Shawn Michaels."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ecw foreverwrote on 22.06.2008:[10.0] "Sein eigener Spruch trifft es. The Best there ist, the best there was, and the best ever will be. Für mich persönlich der beste Wrestler den es je Gab! Seine beweglichkeit. Einfach so wie er agierte. Das er so sauber war und keinen Wrestler verletzte. Dazu auch noch dass grösste Wrestlemania Match ever bei WM12 gegen HBK. Ein unvergesslicher Worker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: LordTrailerwrote on 13.06.2008:[10.0] "Diese Wertung war leicht. Technisch einer der besten aller Zeiten (und das nicht nur in der WWE) und auch mit Charisma gesegnet. Viele sprechen ihm Micwork ab, aber dann schaut euch mal seine 96/97 Zeit an."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hitman-Hartwrote on 13.06.2008:[10.0] "Ja "The Best there is, the Best there was an the Best there ever will be"! Was anderes kann man zu diesem Mann nicht mehr sagen. Für mich persönlich einer der bedeutensten Wrestler aller Zeiten. Mein absoluter Fave mit dem Undertaker. War übrigens auch meine allererste Wrestling Action Figur. Ich Liebe diesen Kerl einfach und wünsche mir die gute alte Zeit zurück...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: gerybundy68wrote on 09.06.2008:[6.0] "War zu seiner Zeit sicher einer der Top Wrestler. Ich konnte den Hype um seine Person allerdings nie nachvollziehen. Hat mich mit seiner Art , auch in der Matchführung nie angesprochen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JthePwrote on 02.06.2008:[10.0] "Ganz klar einer der talentiertesten und versiertesten Techniker. Sein Charakter als Wrestler kam autentisch rüber und lies viele der lieblosen Gimmicks im Schatten stehen. Hat sich meiner Meinung nach beim MSJ 1997 falsch verhalten. Aber das tut der sehr guten Note keinen Abbruch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JohnnyCashwrote on 28.05.2008:[10.0] "Hier kann ich nicht unparteiisch bleiben. Er war mein erster echter Liebling & noch heute freu ich mich, wie Homer S. über Donuts, wenn ich Interviews oder ähnliches von ihm lese. Er wirkte IMMER echt & war im Ring die Bombe. Sein Leitspruch sagt alles. Einer der wenigen denen ich die 10 Punkte gebe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: suntan superstarwrote on 26.05.2008:[8.0] "Bret Hart, der Wrestler schlechthin in der damaligen WWF. Niemand führte die Moves so perfekt aus wie er. Doch Promos halten war nie seine Stärke. Desweiteren hat er sich es bei mir verscherzt, als er anfing immer wieder über den Montreal Betrug zu fluchen, dann über Owens Tod, dann über seinen Schlaganfall u. s. w. Aber ich respektiere seine Leistungen im Ring und das ist das was zählt"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: dariawrote on 26.05.2008:[9.0] "vor 8 Jahren hätte ich sicher noch eine 1 gegeben, mittlerweile hat uns alle die Realität eingeholt"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Peisistratoswrote on 15.05.2008:[10.0] "Bret Hart hat mein Interesse am Wrestling geweckt und blieb all die Jahre hinweg für mich immer der Größte. Die 10 Punkte gibts nur, weils keine 11 oder 12 gibt ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Frutzwrote on 15.05.2008:[10.0] "Für mich war dieser Mann der absolute Wrestler. 1992 habe ich mit dem Wretling angefangen, ich war 9 Jahre alt und noch relativ willig, den Face/Heel-Vorgaben zu folgen. Aber im Laufe der Zeit, hat sich dieser Wrestler zu meinem absoluten Liebling als Mark entwickelt. Ich erinnere mich noch an meine Freude, als er gegen Flair Ende 92 endlich seinen ersten WWF-Champion-Titel holte. Als er zum Heel in Amerika turnte, habe ich mich auf die Shows in Kanada gefreut und der Montreal-Screw-Job wurde ja zum Glück zur Genüge aufgearbeitet. Da ich absoluter WWF-Verehrer war, habe ich die WCW nur am Rande wahr genommen, und seine Zeit (im Nachhinein wohl zu meinem Vorteil) dort nicht erlebt, so dass er mir als "Excellence of Execution" in Erinnerung geblieben ist. Auch heute bin ich der Überzeugung, dass er noch eine Rolle spielen könnte, auch wenn ich ihn mit Sicherheit nie wieder in einem WWE-Ring sehen werde. Er hat das Wrestling der 90iger bestimmt und verdient d. 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Die Gurkewrote on 13.05.2008:[10.0] "Genialer Techniker, besonders zu der Zeit. Außerdem finde ich das er, aufgrund toller In-Ring Fähigkeiten, den Top Babyface gut verkörpern konnte, besser als die meisten die sich daran versucht haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Amazing Bluewrote on 03.05.2008:[10.0] "Was soll man zu ihm noch sagen, der Typ ist/war einfach großartig! Hitman 4 Life!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Riley Mathewswrote on 28.04.2008:[10.0] "Einer der Besten überhaupt. Schon alleine das Vince ihn so viele Freiheiten im Ring gibt beweist das. Bret ist der Wrestler vor dem ich am meisten Respekt habe. Was er alles durchgemacht hat egal ob privat oder beruflich z. b. : Montreal 1997, Absturz bei der WCW, Karriereende durch Verletzung, der Tod von Owen, Davey Boy Smith, Curt Hennig, Rick Rude und den ganzen anderen. Auch in 20 Jahren kann man noch über ihn sagen:The Best there is, The Best there was & The Best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Know Nothingwrote on 23.04.2008:[10.0] "Er hat sich die Bestnote verdient. Wrestlerisch Perfekt. (Obwohl ich seinen Bruder Zeitweise besser fand. ) Er war als Bösewicht genial und als Publikumsliebling sowiso. In der WCW ist er leider etwas eingebrochen, das liegt allerdings daran das er nicht richtig eingesetzt wurde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:"War absolut zurecht an der Spitze der WWE, nur hat er den Montreal Screwjob offentsichtlich nie verkraftet. Bret Hart ist mir schlichtweg zu seltsam, als dass ich ne Wertung abgeben könnte."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Robert Taylorwrote on 17.04.2008:[10.0] "Einer meiner absoluten Faves of all time! The best there is, the best there was and the best there ever will be! Eine wahre Legende dieses Sports!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ultimate-warrior-xwrote on 29.03.2008:[10.0] "Pink an black attack forever: the best there was, the best the is, the best there ever will br!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Ruppiwrote on 27.03.2008:[10.0] "Hatte alles für die Spitze. Hervorragende Technik, am Mic sehr gut und Charisma. Sicher waren seine Kämpfe (vor allem das Ende) meist sehr ähnlich, aber das Publikum wollte es auch immer so. Außerdem Teil eines der besten Tag Teams und eines der besten Stables. Außerdem brachte er das Ladder Match in die WWE und bestritt das erste Iron Man Match bei einem WWE-PPV."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Instant Classicwrote on 14.03.2008:[4.0] "Auch wahnsinnig overrated. Seine Matches haben mich nie interessiert und Charisma hatte er sowieso nicht."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: FifaFrancescowrote on 13.03.2008:[0.0] ""Einer der größten im Wrestling. Hatte so gut wie alles was man brauchte um in diesen Geschäft eine Legende zu werden. Konnte aus jedem gute Matches herausholen und verletzte dabei niemanden. Eigentlich müsste ich ihm die Note 1 geben aber da er in meinen Augen durch den Screwjob bewiesen hat dass er ein großer Egoist ist und sich nicht für jemanden hinlegen wollte, den er halt nicht ausstehen kann, hat er alle Sympathien bei mir verspielt. Hätte bei der HoF-Aufnahme nochmal eine Chance aber sein Ego hat es wohl nicht zugelassen also so leid es mir tut Bret mehr als die 6 hast du nicht verdient. " Mehr werde auch ich dazu nicht sagen."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Darkman9912wrote on 18.02.2008:[10.0] "Der beste Wrestler den es gab. Da braucht mir keiner was anderes sagen. Wie kann man nur behaupten er wäre Unloyal gegenüber der WWE und hätte Vince mies behandelt. Einige scheinen hier alles andere als Ahnung zu haben. Bret hat ein 3 Jahres vertrag der WCW (bei den er 9 Millionen verdienen hätte können) abgelehnt, weil er bei der WWE bleiben wollte. Er hat ein 20 Jahres vertrag mit deutlich weniger Geld angenommen und wurde von diesem Schleimigen und hinterhältigen Arschloch namens Vince McMahon betrogen. Da kann mir einer sagen was er will. Bret ist der beste den es gibt, gab und geben wird. Keiner, auch kein Vince kann die Legende Bret Hart töten. Er wird immer seine Fangemeinde haben. "Real man wear Pink""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Fumaryuwrote on 07.02.2008:[10.0] "Gehört zu den besten Wrestlern der WWE/WCW/WWF. Sein Verhalten gegenüber dem Publikum war einfach klasse (sehr sympatischer Star) und er war unglaublich beliebt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: mdbnasewrote on 13.01.2008:[10.0] "Perfekter Wrestler, der (mit seiner Familie) viel fürs Wrestling getan hat und großartige Matches gezeigt hat! Leider ausserhalb des Ringes sehr arrogant ... trotzdem reichen seine Skills, sein Mic Work und seine Ausstrahlung für die volle Punktzahl. Ausserdem einer der wenigen Worker die VinniMac die Stirn bieten konnte und dies auch getan hat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Stone Cold Andywrote on 04.01.2008:[8.0] "Bret war jahrelang das Aushängeschild der WWF, aber da ich mit seinen Leistungen im Ring (man möge mich köpfen) nicht sehr viel anfangen konnte gibt es von mir "nur" eine 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "Über ihn kann man nur sagen:"Der Beste den es gib, gab und geben wird! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hanksterwrote on 29.12.2007:[10.0] "Für mich eine lebende Legende und einer der besten Wrestler aller Zeiten. Das Mic-Work war seine einzige Schwäche. Ohne den Montreal Screwjob wäre seine Karriere sicher noch einige Jahre in diesem Glanz weitergegangen. Das große Ego und die Hinterhältigkeit der Clique hat ihn am Ende zerstört."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MA Excellentwrote on 29.12.2007:[10.0] "Wenn es um "Pure Wrestling" geht, mein absoluter Allzeit-Favorit! Neben den fantastischen Fähigkeiten im Ring auch tolle Ring-Psychologie und somit Aufbau spannender Matches und Fehden, auch ohne das ganz große Mic-Work. Unvergessen das Match im Wembley Stadion; die Fehde mit Owen; das Iron-Man Match und der Montreal Screw-Job (leider). In Kanada und eigentlich auch auf dem Rest des Globus (Ex-USA) ein unvergessener Held."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Supertechwrote on 26.12.2007:[10.0] ""The best there is, the best there was, the best there ever will be" - zwar großkotzig, aber mit Ausnahme des letzten Teils absolut korrekt. Ich habe keinen besseren Techniker gesehen, höchstens Owen konnte mit ihm mithalten. Ob er allerdings gegen die heutigen Superstars wie John Cena, Batista oder Randy Orton so gut aussehen würde, weiß ich nicht. Schade, dass Bret schon 2000 aufhören musste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: corneliawrote on 23.12.2007:[10.0] "bret hart ist für mich der beste na eben exelence of exikution"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Amurebkuwrote on 16.12.2007:[8.0] "War ein absolut toller Wrestler! Im Ring klasse und auch sein gesamtes Auftreten. Am Mic ebenfalls super! Einer der Wrestler die immer alles gegeben haben. Schade wie es am Ende alles abgelaufen ist. Hätte ihn auch gerne in einem echten Finale gesehen und nicht der ganze Mist der Am Ende seiner aktiven Karriere ablief. Für den traurigen Abgang kann er ja nichts, aber das verbaut für mich persönlich die volle Punktzahl."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: stryker9wrote on 06.12.2007:[10.0] "Die Coolnes in Person. Wrestlerisch 1a. Von der Einstellung Harts kann sich heut manch einer was abschneiden"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Meanbeastwrote on 02.12.2007:[10.0] "Bret Hart ist in meinen Augen der beste technische Wrestler aller Zeiten, von daher ist die von mir gegebene Note in meinen Augen völlig berechtigt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Winnie The Poohwrote on 09.11.2007:[10.0] "Der Beste, den es jemals gab, der Beste den es gibt und der Beste den es jemals geben wird..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Knurkselwrote on 06.11.2007:[6.0] "Fand ich nie wirklich interessant und verstehe den ganzen Hype um ihn nicht... sicher hatte er gute Matches, aber auch meist gegen Leute gegen die jeder gute Matches hat. Außerdem nicht wirklich gut am Mic und immer nur am rumheulen gewesen, wurde zurecht von Vince gescrewed."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Benny110106wrote on 28.10.2007:[10.0] "Einfach der Beste den es gab, gibt und geben wird in meinen Augen. Hart war der Grund warum ich Wrestling guckte und dabei hängen geblieben bin. Er ist der wahre World Champ und ein wahrer Ehrenmann dieses Sportes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Matt Mackswrote on 27.10.2007:[10.0] "Bret Hart ist einer meiner Lieblingswrestler, schon immer gewesen. Von '93 bis '95 war er einer der Hauptgründe, warum ich die WWF geguckt habe und die zweite Hart Foundation '97 wird möglicherweise für immer mein Lieblingsstable bleiben. Hart war konstant großartig im Ring, was seine in den ersten Jahren sehr eintönigen Promos wett machte. Das er auch gute Promos halten konnte, bewies er als Anführer der Hart Foundation. Hart wurde in der WCW kaputtgebookt und schien nach dem Tod seines Bruders wegen dem zu oft (falsch) interpretierten Montreal Screwjobs lange Zeit verbittert zu sein. Der Auftritt bei der HOF 2006 jedoch hat mich beruhigt, dass Bret die Leidenszeit zum Ende seiner Karriere überwunden hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rock is Jerichowrote on 27.10.2007:[0.0] "Ich fand ihn noch nie gut und werde ihn auch nie gut finden. Am Mic hat er mich nie überzeugt und ich finde das er sich Vince gegenüber ganz schön sch... verhalten hat!"
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Pink and Black Attackwrote on 26.10.2007:[10.0] "- mat wrestling vom feinsten - the excellence of execution, das ist nicht umsonst. mein kindheitshero. ganz klar 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: DrBreswrote on 26.10.2007:[8.0] "Als Face für meinen Geschmack etwas blass, dazu der eher mäßige Abstecher in der WCW mit unrühmlichen Ausgang... für die zehn reicht es nicht ganz. Aber Respekt vor seiner Leistung, seinen grandiosen Matches und seine überdurchschnittliche Technik."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rated-R-Fanwrote on 21.10.2007:[10.0] "THE BEST THERE IS, THE BEST THERE WAS AND THE BEST THERE EVER WILL BE !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CM Dannywrote on 20.10.2007:[10.0] "Um ihn zu beschreiben muss man ihn nur zitieren. "The best there is, the best there was and the best there ever will be". Schade nur dass er den Wandel im Wrestling nicht so ganz mitgegangen ist und immer einer der "alten" Generation geblieben ist. Dies ist bei seinen Wurzeln allerdings auch wieder verständlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: HBK-Xwrote on 17.10.2007:[10.0] "Ich bin der Meinung zu Bret Hart muss man nichts mehr schreiben! Super Wrestler, Super am Mic! Und zu Recht in der Hall of Fame! Thank You Bret"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Guralwrote on 10.10.2007:[10.0] "CANADAŽS FINEST... the best there is, the best there was and the best there EVER will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Baldrickwrote on 10.10.2007:[10.0] "Alles andere als ne 10 kommt nicht in Frage! Seit meinen seligen Mark-Zeiten mein absoluter Favorit und objektiv betrachtet einer der härtesten und besten Worker aller Zeiten. Und wer hier weniger als 4 Punkte gibt(lass ich im Falle von absoluter Antipathie mal durchgehen), hat nicht verstanden, dass es hier um Wrestling geht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Oli10wrote on 01.10.2007:[10.0] "Für mich einer der besten und sympatischten Wrestler die je einen Ring betreten haben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wuschl 85wrote on 01.10.2007:[8.0] "Wohl einer der technisch versiertesten Wrestler. Einer meiner früheren Lieblinge. Ich war jedoch entäuscht wie Bret auf den Screw Job reagierte und dieses heut immer noch tut. Bei der Aufnahme in die Ruhmeshalle wollte er das HBK die Halle verlässt sonst würde er es tun, absolut daneben. Und das alles, weil er sich nicht für jemnden hinlegen wollte den er nicht leiden konnte? Unprofessionell! Aber einer der besten und glaubwürdigsten Champioins der Geschichte, ebnete den schmaler gebauten Wrestlern den Weg zum großen Gold."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Bullit69wrote on 30.09.2007:[6.0] "Hat mich nie besonders interessiert! Und sein Mic-Work war jetzt auch nich so der... Hit! Und er nervt nur noch mit seinem Screwjob!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Schockwrote on 28.09.2007:[10.0] "BEST THERE EVER WILL BE! Mein Jugend-Idol und ohne Frage einer der besten Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Bret Hartwrote on 24.09.2007:[10.0] ""The best there is, the best there was and the best there ever will be! " - Man kann wohl nicht mit Bestimmtheit sagen wer tatsächlich der beste Wrestler aller Zeiten ist, aber eines steht fest: Der Name "Bret Hart" wird in dieser Diskussion immer und immer wieder fallen - und das vollkommen zurecht! Es ist kein Zufall dass er an 2 von 4 *****-Matches derWWF/WWE beteiligt war!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: mugel 187wrote on 24.09.2007:[10.0] "The best there is, the best there was and the best there ever will be! noch Fragen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Alan Smitheewrote on 14.09.2007:[8.0] "Hassliebe! Ja er ist einer der besten Wrestler aller Zeiten. Ja er ist eine meiner absoluten Lieblinge und ja ich könnte mir den ganzen Tag Matches von Hitman ansehen. ABER... jedes mal wenn er auch nur das "M" aus Montreal oder das "S" aus Screwjob hört muss er zum gefühlten 8 Billionsten mal über die ereignisse von '97 sprechen und das NERVT! Wenn er damit anfängt kann ich Stone Cold nur zustimmen der mal sagte: "Put an "S" in front of Hitman and you know what i think of him. " Und aus dem Grund kann ich ihm einfach nicht die 10 Punkte geben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Lord Loviswrote on 13.09.2007:[10.0] "Tja, er ist der lebende Beweis, dass man über das Tag Team Wrestling zu einem Topstar aufsteigen kann. Am Anfang hat er mit Jim Neidhart eines der wohl besten Tag Teams allerzeiten gebildet und hat dann den Sprung an die Spitze mit schönen Intercontinental Matches geschafft. Er und Shawn Michaels haben einige Krimis aufgestellt und der Montreal Screwjob hat auch wieder seine eigene Geschichte. Alles in allem sehr vollkommen -> 10..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: real americanwrote on 12.09.2007:[10.0] "Großartigern und intelligenter Wrestler der neben Flair wohl die meisten ***** Sterne Matches lieferte. Außerdem ist der Hitman ein toller Micworker und Entertainer der die Attitide Ära mit einleitete. Gefiel mir als Heel und als Face was nur wenigen gelingt. Psoitiv ist ebenfalls das er nie jemanden verletzte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: HHH-Stephwrote on 06.09.2007:[10.0] "Meiner Meinung nach gab es in den 90ern keinen besseren Wrestler als Bret Hart. Er konnte gegen jeden Gegner einen starken Kampf zeigen. Dazu noch gewaltiges Charisma und gutes Micwork. Außerdem konnte er sowohl als Face, als auch als Heel überzeugen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Manuelwrote on 06.09.2007:[10.0] "Dank diesem Herren bin ich Wrestlingfan geworden, er ist eine WWF Legende. Er hat alles was man braucht und sogar meine Mutter und Oma kennen ihn und die kennen nur wenige."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Baszdmegwrote on 19.08.2007:[10.0] "Seine Catchphrase sagt alles. Wohl der beste Wrestler der 90er Jahre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Aaronwrote on 18.08.2007:[10.0] "Technisch wohl der beste aller Zeiten! Dazu noch am Mic super!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: yogywrote on 17.08.2007:[10.0] "Der Beste aller Zeiten! Es wird keinen mehr geben der mich so mitreist wie der Hitman. Bei seinen Matches konnte man immer mitfühlen. Er hat das Prädikat "Weltklasse" verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Grissomwrote on 15.08.2007:[10.0] "Einer der besten überhaupt. Schade, dass die WCW ihn so schlecht gebookt hat. Über den Montreal Screwjob braucht man nicht viel zu sagen. Da hat jeder seine Meinung zu..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: H-Scorpiowrote on 01.08.2007:[8.0] "Natürlich ein Klassewrestler. In der WWF mit dem ein oder anderen denkwürdigen Match. In der WCW wirkte er oft wie ein Fremdkörper, was aber mMn nach nicht hätte sein müssen. Er kam zwar prinzipiell auch als Heel meistens gut rüber, man hätte ihn aber imo als Gegner der nWo und Hogans etablieren sollen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Garvinwrote on 30.07.2007:[8.0] "Er war gut, keine Frage. Er war sogar in der Lage mit den schlechtesten Athleten einigermaßen erträgliche Matches zu liefern. Allerdings gab es immer bessere und es wird sie auch immer geben. Teilweise viel zu überbewertet."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: shannonmoorewrote on 28.07.2007:[10.0] "Aus der alten Zeit mein Favourite. Klasse im Ring einfach sympatisch. Ich war richtig überrascht wie er auch den Heel spielen konnte. Unvergessen seine Fehde mit Goldberg die leider so ein tragisches Ende nahm..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sharpshooterwrote on 27.07.2007:[10.0] "Für mich persönlich ist Bret der rundum beste Wrestler allerzeiten. Er hat mich seinerzeit (als Solo Wrestler) Anfang der Neunziger zum Wretling gezogen. Seine saubere Art, sein Charakter, sein Auftreten und natürlich seine Qualitäten im Ring machen ihn einzigartig. Damals in der Grundschule ging es vielen so, die dank dem Hitman auf das Wrestling aufmerksam wurden. Klar hat er niemals die Bekanntheit oder einen so großen Wrestlingboom ausgeköst wie ein Hulk Hogan seinerzeit, aber dafür stand er um ein vielfaches mehr für das Wrestling an sich und seine Kunst. Seit fast sechszehn Jahren halt ich dem Hitman nun die treue und egal was er auch tat, er bleibt immer einer der besten Wrestler, egal wen es jetzt gibt, egal wen es vorher gab und egal wen es je geben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Weegelwrote on 08.07.2007:[10.0] "Was gibts da zu sagen? The Best there is, there was and there ever will be"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: GrecoreHelmswrote on 04.07.2007:[10.0] "the best there is the best there was and the best there ever will be!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Blade Bourdeauxwrote on 01.07.2007:[10.0] "Mit Blick, auf seine tollen Matches , seinem Charisma, seinem Einfluss auf das Fantum in Deutschland und seinen Titelerfolgen, ist die Note außer Frage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: fravaderowrote on 01.07.2007:[10.0] "Meiner Meinung nach einer der komplettesten und sympathischten Wrestler überhaupt. Ich schau seit mehr als 20 Jahren Wrestling und KEINER ausser evtl seinem Bruder Owen oder der Hulkster und dann Chris Benoit haben das Wrstling zu dem gamcht, was es jetzt ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Metalpunisherwrote on 28.06.2007:[10.0] "Lange Rede kurzer Sinn! Ein Mann der das Wrestling liebte und die Fans liebten ihn! Traurig in seiner Kariere sind nur das unrühmliche Ende in der WWF mit davorigen push als Heel, das was die WCW mit dem Hitman veranstalte und ein Kariereende durch eine schlecht Choordinierte Aktion eines Mannes der vom Wrestling soviel versteht wie ein Eskimo vonm Kühlschränke verkaufen! Er ist der BESTE DEN ES GIBT GAB UND GEBN WIRD! Die Exelence Of Exicution Bret The Hitman Hart!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ShaneOwrote on 28.06.2007:[10.0] "The best there is, the best there was, the best there ever will be! Meiner Meinung nach der Beste Worker alles Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Steven McWheelerwrote on 27.06.2007:[10.0] "Der Held meiner Kindheit! Seine Matches seh ich immer noch gerne! Heutzutage wäre er immer noch erfolgreich denke ich, wenn sich nicht so viel im Business geändert hätte..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Adrammelechwrote on 24.06.2007:[10.0] "Er war mein Held als ich ein Kind war, und ich finde ihn immer noch toll wenn ich die alten Aufnahmen ankucke! Bret gegen Undertaker oder gegen Owen auf der Leiter bleiben unvergessen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Ganz klar einer, wenn nicht der Mann der 90er Jahre! Zudem einer von wenigen Wrestlern, die mir als Face besser gefallen und dass, obwohl er selbst als Heel gut ist! The best there is, the best there was and the best that there ever will be!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Trevedaswrote on 24.06.2007:[10.0] "Einfach der Beste! Im Ring unübertroffen. Einer, der Größe bewiesen hat und zu seinem Wort steht. Eben nicht nur ein hervorragender Wrestler sondern auch eine bewundernswerte Persönlichkeit. Er bleibt einfach unerreicht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Necronwrote on 24.06.2007:[10.0] "Mein erster Lieblingswrestler überhaupt - bis heute nahezu unerreicht. Vor allem seine Intensität in all seinen Aktionen sind unerreicht. Am Mikrofon pointiert und ergreifend, im Ring eine Klasse für sich. habe mir auch zuletzt die Hitman-DVD geholt. Da wird einem erstmal dieser zunächst recht uneinleuchtende Kampfname klarer... wie dem auch sei - volle Ten Points."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: RatedRKOwrote on 24.06.2007:[10.0] "In meiner Kindheit mein absoluter H E R O. verdiente zehn punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Elvis33wrote on 24.06.2007:[10.0] "Neben Mr. Perfekt einer der besten Wrestler. Damals hatten die Jungs noch echt was drauf!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Angus666wrote on 24.06.2007:[8.0] "Er war nicht mein persönlicher Fav. Zählte aber auf jeden fall zu den besten seiner Zeit und zurecht eine Legende des Wrestlings."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: kaupi 1909wrote on 24.06.2007:[10.0] "Man kann meiner Meinung nach die Crème de la Crème des Wrestlings mit drei Namen verdeutlichen - "Ric Flair, Sting, Bret Hart"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: WCWlerwrote on 24.06.2007:[10.0] "Einer der besten Techniker die je in einem WWF-Ring standen. Leider seit der Series 97 immer wieder zurückgeworfen, in der WCW total falsch eingesetzt und dann verletzt worden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: timbo7111wrote on 24.06.2007:[10.0] "Technisch absolut grandios und vor allem hat er seine Gegner immer sehr gut aussehen lassen. Viele unvergessene Matches gehen auf seine Kappe, und deswegen hat der Hitman sich die 10 Punkte redlich verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BMwrote on 24.06.2007:[10.0] "Früher mein absoluter Held. Die Storylines haben mich immer richtig mitgerissen. Die Matches haben mir fast immer gefallen, auch wenn manchmal doch so ein schlechteres dazwischen war. Aber da frage ich mich auch, ob es nicht auch am Booking lag. Es tat richtig weh, als ich bei International Impact 3 gesehen habe, was heute aus ihm geworden ist. Schade das er gesundheitlich so angeschlagen ist. Aber vielleicht sieht man ihn ja irgendwann noch mal ON AIR. Und wenn es nur als NON-Wrestler ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: D3adm4nwrote on 24.06.2007:[8.0] "er war zwar vor meiner Zeit, aber man hört eigentlich nur gutes über ihn..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Nachtfalterwrote on 24.06.2007:[10.0] "Sicher nicht der wichtigste Mann in der Geschichte dieses Sports, aber mein persönlicher Kindheitsheld und rein handwerklich einfach einer der besten Wrestler aller Zeiten. Die Excellence of Execution, das trifft es."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MarcHardwaywrote on 24.06.2007:[10.0] "Einfach der beste techniker den es gib, gab und geben wird. Leider in der wCw verheizt, er hätte nie wechelsn sollen. Die Sache in Montreal hat er nicht verdient"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: belroiwrote on 24.06.2007:[10.0] "Der Godfather im Wrestlingring. Mehr brauch ich nicht sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Dangerouswrote on 24.06.2007:[10.0] "Der absolute Held meiner großen WWF-Begeisterung Anfang der 1990er. Charisma, In-Ring Skills, Gimmick, hat einfach gepasst!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Mediwrote on 24.06.2007:[10.0] "The best there is, the best there was and the best there will ever be! Noch Fragen?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hypocrisywrote on 24.06.2007:[10.0] "Schade, dass die so einzigartige Karriere so ein schlechtes Ende nehmen musste. Bret Hart konnte ähnlich wie Chris Benoit heute eigentlich aus jedem ein gutes Match holen. Ist halt die alte Schule aus dem Dungeon in Kanada."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: King of Queenswrote on 24.06.2007:[10.0] "Der beste Wrestler, den es je gab, In-Ring Fähigkeiten sind ohne Frage großartig. Er könnte wohl aus jedem ein gutes Match rausholen. Unvergessene Klassiker, aber vor allem die schon genannten, unglaublichen In-Ring-Fähigkeiten rechtfertigenganz locker die Höchstpunktzahl. The best there is, the best there was and the best there ever will be, Bret "The Hitman" Hart!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kruemelwrote on 24.06.2007:[6.0] "Nie gemocht. Ringqualität vorhanden, aber nicht DER Gott wie ihn viele ansehen. Gesamter Charakter gefällt mir nicht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sancezzwrote on 24.06.2007:[10.0] "Say it simply: The Best there is. The Best there was. The Best there ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sandman16wrote on 24.06.2007:[10.0] "Einer der ganz Großen im Wrestling. Angefangen mit der Hart Foundation - eines der besten Tag Teams überhaupt - bis hin zu seinen Erfolgen als mehrfacher World Champion. Hat sicherlich von dem Steroid-Skandal profitiert, aber auch ohne hätte er bestimmt eine große Karriere gehabt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jerseyhoolwrote on 24.06.2007:[10.0] "Zu Recht mehrmaliger WWF-Champion, zahlreiche Klassiker (Owen Hart, Steve Austin, British Bulldog, Mr. Perfect, .... ), Identifikationsfigur der WWF. Richtig ist aber auch, dass das Ende seiner Karriere unglücklich kam & auch sein Niveau in der WCW nie mehr die Klasse der WWF ereichte. Dennoch einer der ganz, ganz Grossen des Wrestling. 5 Daumen nach oben! :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Giant2wrote on 24.06.2007:[10.0] "Neben Dynamite Kid der beste Wrestler, der je einen Ring betrat. Seine Titelerfolge sprechen für sich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Chefiwrote on 04.02.2025:[10.0] "Naito is very over and has the best aura in all of NJPW. Although he's broken down these days, he used to be able to go in the ring like no other with the Aura to prove it. Great in ring skills, great story teller and is the living definition of what a super star is in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Dweeeabwrote on 30.09.2024:[10.0] "The AURA this man has is otherworldly and undeniable. Even at this stage of his career where he cant go as well as he used to hes still incredibly over. Part of some of the best matches of all time for me partnered with his character work and how over he is makes one of the best wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: nabigoyewrote on 25.09.2024:[10.0] "Charisma, Ausstrahlung, In-Ring unglaublich (gewesen). Naito war dennoch seit letztem, zumindest seit diesem Jahr nicht mehr der, der er einst war. Kommentar bezieht sich trotzdem auf die Karriere an sich. Unglaubliche Matches mit Okada, Omega, Tanahashi, Ibushi und eigentlich so ziemlich jedem mit dem er im Ring stand. Hatte immer was besonderes an sich, vorallem seit der Mexiko Exkursion und dem daraus resultierenden LIJ Stable. Starker Charakter, selling, in-ring. Alles. Leider hat er wie so viele andere die so viele jahre einen so unglaublich intensiven Stil wrestlen, nicht mehr die Athletik um mitzuhalten. Ich hoffe dass er bald seine Karriere beendet um sich nicht zu schaden, sofern seine Knie nun mal sind wie sie sind. Tetsuya Naito, einer der größten seiner Ära."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: jsbortswrote on 08.09.2024:[10.0] "An extraordinary wrestler who has sadly declined sharply in his last couple years. I believe Naito's career would be looked at as even more impressive if his victory at Wrestle Kingdom 14 had been a year or two earlier and had truly capitalized on the new eyes on New Japan at the time, and at the peak of Naito's cool factor. Its a shame he can't still show out the same way he could for the first decade plus of his career"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: BigVan JimmyWangYangwrote on 21.08.2024:[9.0] "Somebody please get this man some new knees, Naito is fresh out the shop with a new coat of wax and a bright sparkly shine given how washed he is. Regardless of his inability to really move let alone wrestle nowadays it doesn't take away from the fact that Naito in his heyday was absolutely one of the best in the world and has the resume to back that claim up. Long live Yujiros buddy, long live the eyeball man, long live Tetsuya Naito and long live our troops"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Joe907wrote on 28.07.2024:[10.0] "Naito has always been one of the top guys for NJPW. Super talented and charismatic. Great technician skills and master of phycology. His matches with Omega and Okada are legendary. He built one of the best stables in Japan. One of the pillars of NJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Willie 19200wrote on 24.07.2024:[10.0] "One of my favorite New Japan stars that I just love to see succeed. The fact that he went from getting the Roman Reigns treatment by getting booed for being an over the top baby face, to becoming one of the greatest anti-heroes in pro wrestling, not to mention putting on some classics with the likes of SANADA, Will Ospreay, Kazuchika Okada, Hiroshi Tanahashi, Kota Ibushi, and so many others."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Aspionwrote on 22.07.2024:[9.0] "(Sorry english is not my firtst language) My only problem with him is the fact that he can be that much dynamic like in the past (bcs of his health), Its sad for my but as his fan i need to write that..... i think he needs to end career, still for me one of the goats on NJPW"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Orchardwrote on 21.07.2024:[10.0] "Father time is undefeated but that doesn't diminish what he did up to now, his charisma and character are amazing and his moveset is one of my favourites ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: ajsmileswrote on 19.07.2024:[7.0] "Back when I first started watching New Japan, it was stacked with talent like Okada, Kenny Omega, Will Ospreay, Shingo Takagi, (still technically being able to walk) Tanahashi and many others I'm forgetting. My favorite was Naito. He could work the crowd like a motherfucker and was able to bring amazing feats of athleticism with a more limited moveset than most guys in Japan. He had a great character, was the leader of (then) the best faction in New Japan. But in the last few years he's had so many disappointments. So many matches where you can just see he doesn't care and wants to get out of there as quickly as possible. I know he's had multiple long-term injuries, but man... Take some time off and get them healed then. But what we got is this and it knocked him down signifantly for me, I don't even really care about him anymore. His uncaring attitude is really annoying sometimes. Maybe that's why he was never THE guy for New Japan like Okada or Tanahashi."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: djones06wrote on 03.07.2024:[7.0] "When he wants to give a good performance, he does, although those days are rare now as his body breaks down. I give Naito a seven for the simple fact that he has always been uneven in his output, and although the crowd supports him he has never felt like THE top New Japan guy."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: dulonicdaddywrote on 26.06.2024:[6.0] "I like Naito he is pretty cool, kinda fun, a really groovy kinda guy. His move-set has always been solid despite his finisher being a complete hit or miss kinda ordeal. Kinda never understood his immense popularity in NJPW despite kinda understanding his leading of their most popular faction."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: shockwrote on 17.05.2024:"Naito is definitely one of my favourite wrestlers currently. His charisma is off the charts and he is just such a likeable performer that it's hard to root against him in any situation. While he's slowed down a bit in recent years, the aforementioned qualities still make him a must-see wrestler. He's got a great moveset with some very impressive moves such as the Stardust Press, although he rarely uses it now. Destino is one of the most hit or miss finishers for me though - it all depends on the guy who's selling it. Some very athletic guys like Ospreay or Omega usually sell it perfectly by taking the bump on their head more as opposed to just landing flat on their back. On the other hand, it doesn't look as good on a lot of bigger guys in my opinion. Naito has some of the best matches of the last 10 years or so, and he gets a 10/10 from me."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: danzitorockwrote on 06.05.2024:[10.0] "Tetsuya Naito is the symbol of a whole generation, he's the guy that defended New Japan multiple times and criticized people who left, the guy who keeps putting New Japan and puroresu over, a true Japanese icon, a role model. Naito's story is based on imperfections, he couldn't be the next Tanahashi, a babyface hero that he wanted and tried to be, because fans rejected him, he couldn't be the golden boy, because the fans rejected him, that was Okada, and even with a path of so many rejections and frustrated plans, he managed to reinvent himself, and bring one of the coolest gimmicks that Japan has ever saw, after an excursion to Mexico he returned Ingobernable and Tranquilo. A guy with so many lows, found himself, in a poetic way, as a rebel, an anti-hero, a man that doesn't play by the rules or respect traditions, and the character not only worked, but became probably the most popular and beloved in his country, what a turnaround. Naito is the ultimate renegade, what a trajectory he has, he's the face and one of the greatest wrestlers New Japan has ever had, being a Naito fan is wild, the whole time it felt things weren't going to work out his way, but I think it's safe to say now that he fulfilled everything and buried every demon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: cal9099wrote on 14.04.2024:[9.0] "A very talented wrestler and storyteller no doubt, but there's something for me that is lacking with Naito when I compare him to the likes of Okada, Tanahashi, Jay White. Maybe it's his mediocre physical appearance? I can't quite put my finger on it as the majority of fans seem to love him, but I've just never quite got the hype. I still get excited for his matches and I do get that big fight feel, but I'm just not as invested in him as I'd like to be despite his long list of great matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: BigPeanutGuywrote on 13.04.2024:[6.0] "If we're talking about Naito's full career, the man is a living, walking, breathing icon. Wonderful wrestler on his day and has had a very fun career thus far. But now? 2024? Naito feels like an old tool that needs replacing sooner rather than later. He can't move like he used to, he can't carry matches like he used to neither. Gave SANADA his best match to date at least, not like that's hard. But his latest IWGP championship run felt more like a stalling pass rather than something NJPW can build off."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: BruceMarcos524wrote on 15.03.2024:[10.0] "Tetsuya Naito is one of the most intriguing characters in all of New Japan. The skill, the charm, the charisma is simply undeniable and unmatched. People were rejecting him as the next heroic babyface being too cheesy and too played out. Glad that Naito took it up a notch and became one of the best anti-heroes of wrestling. His matches are very entertaining, and I liked that some of his signature moves named after Spanish female names like Valentia, Esperanza and Gloria. The Destino is one of the most beautiful and smoothest moves that I've ever witnessed, and I never get tired watching it. Most of his moves, his persona and his gesture incorporate a Mexican stereotype without being racial about it. The Los Ingobernables de Japon may considered be as one of the best factions that the NJPW ever produced, and I love that all of the members have distinct individuality, and the same time shows a brotherhood amongst the group. The way that he dresses in an LIJ shirt in undercard tag matches and dresses in a suit in big time matches denotes the level of importance Naito is in every match. A good company man that once criticized Shinsuke Nakamura and Kazuchika Okada for leaving their homegrown company to the big leagues, proved that Naito is a reliable and a dependable guy. I also love that his smug nature highlights himself as more important than the championships he wears, it's like Naito doesn't even care that he's the champion but needed to do so just for the sake of accomplishments. A guy who pokes fun of the opponents and telling his opponents to "Tranquilo" is savagely amazing. One of the best showmen of all-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: NEVERoverweightChampionwrote on 11.03.2024:[10.0] "One of the greatest wrestlers of his era with a fascinating underdog character and a lot of charisma. Knows how to put a match together, can work with anyone and is able to move on from the standard New Japan big match formula like he has shown when he fought Jericho in a no DQ or when he fought Taichi in their series of matches in 2019. Has great psychology and is one of the best at pacing his matches. Plays so well with the crowd and is one of the most captivating performer on the mic. The story of his career took a major turn when he became Ingobernable, he has a really unique path. His rivalries with Okada and Tanahashi specifically are some of the best stories ever told in the ring. He has a great career, almost winning every title possible, at this point he has been the biggest star in New Japan for more or less 8 years, has been constantly over and loved by the fans even when the booker made some questionable decisions. Find a wrestler in the current wrestling landscape who manages to stay as over for 8 years, you just can't because this type of connection to the crowd is very unique and that's why he is a special wrestler. Throughout his career he has shown a great ability to adapt his style to the role he was playing. A very explosive style as the Stardust Genius, a slower pace and some cheating/shenanigans during his first year as an Ingobernable. And now at his age and with all the years of work and brutal matches he went through he's not in his prime physically even if he can still go if he really wants to like he has shown with the Okada and Ospreay matches he has done in less than 24 hours during the G1 33. But he fights smarter, finds safer ways for him to work the neck (notably more emphasis on his elbow strikes to the neck) but still remains as over, still gets the same strong reactions from the crowd. Is still one of the best at creating rivalries and giving character interactions that makes the crowd interested. This is how you can see how big of a star he is and how great of a wrestler he is. In an era with more flashy wrestlers who barely know what selling is or how to pace a match properly, his work can be underappreciated and downplayed but the reactions and the love he gets from the fans don't lie. He is a legend and a true genius in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Lauchlanwrote on 26.02.2024:[10.0] "Naito will go down in history as one of the best to ever step into a ring, he oozes charisma and backs it up in the ring. Often he has been overshadowed by Okada, Tanahashi and Omega but when push comes to shove he'll be remembered as the guy who never gave up and won the fans over by believing in himself, the peoples champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Hyunminleewrote on 24.02.2024:[10.0] "Naito is the one of the greatest wrestlers of this generation. When he was stardust boy, his in-ring performances were great but little boring. After gimmik changed and became the leader of LIJ, his in-ring skills upgraded and became best in the world. His LIJ gimmik is coolest gimmick ever. His promo is really fun and he can sell every style of matches. Finally he accomplished his dream which failed at WK 2020, and I hope him to keep his eyes and knees in good condition."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Wrestling Foreverwrote on 09.02.2024:[10.0] "Ich sehe bei Naito aktuell total das er Heel ist. Hat man auch gut bei der Pressekonferenz vom G1 Climax 25 gesehen. Naito war frech, respektlos und hat sich total wie ein Badass benommen. Auch bei seinem Match gegen Fale sah man es. Aggressiv und brutal schlug er auf Fale ein, schubste den Ringrichter weg und war auch genervt als die Kamera ihm nach dem Sieg immer einfing. Stardust ist verschwunden El Ingobernable (Der Widerspenstige) ist geboren. Im Ring ist Naito echt ein super Mann und vielleicht tut ihm der Heelturn auch gut. Edit 25. 12. 2016 Für mich der Japanische Wrestler 2016. Durch Los Ingobernables de Japon und seiner neuen Einstellung ein großartiger Heel geworden. 2017 soll es so weitergehen. Edit 09.02.2024 Tetsuya hat echt nach einigen Jahren wieder eine ganz großen Titel gewonnen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: JXN95wrote on 17.01.2024:[9.0] "A very good to great wrestler (if slightly below some of his contemporaries with maybe not being quite as consistent), but an amazing character guy and super charismatic. You pair that with one of the best career narratives around, and there's little wonder why he's still possibly the most over wrestler in japan, and one of my personal favorites ever."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: CDProsProwrote on 17.01.2024:[10.0] "A story tale ending of 18 years destino paid off at Jan 4th 2024. Ungovernable to the core, rebuild his vision of what no limit is and suppress his class to build Los Ingobernables where Andrade, Rush, La Mascara and La Bestia created controversy on its wake. Numerous factions. Los Ingobernable De Japón. His true family and since then replayed his dream of headlining the Tokyo Dome that he dreamt as a child to roll calling his family that took 8 years of frustration, neglect and despair to overcome injuries, betrayals and typecasting as the guy who cant win the big one in the end. It had been broken and with LIJs new found stardust Ingoverable energy. World title 4 reigns at 41 years old and a define legacy good & bad with the once smashed up and rejuvenated intercontinental title. Naito climbed the mountain to become the IWGP World Heavyweight Champion. Battles with the likes of Kenny Omega, Michael Elgin, Kazuchika Okada, Kota Ibushi, Shingo Takagi, Will Ospreay, Hiroshi Tanahashi, KENTA, Hirooki Goto, Kuji Mutoh. Very good in-ring wrestler and can win the big one. Destino."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: The Quick Manwrote on 13.01.2024:[8.0] "I'm not gonna lie, although I appreciate Naito's FANTASTIC character and personality, he's never struck me as THE guy in New Japan. When other faces are Tanahashi, Ospreay and Okada, he strikes me as one of the weaker ones. But still, a low tier NJPW main eventer is still an NJPW main eventer, and you do NOT get to that level without being at least "very good"."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[10.0] "Tetsuya Naito's story starts off similarly like The Rock's, debuted with a gimmick that tried to copy people before him, then turned heel after people rejected him at first and became a legend that people couldn't hate anymore LOL! Tetsuya Naito is one of New Japan Pro Wrestling's finest talents of all time, an amazing wrestler with incredible athleticism, flawless technician who can have classic bangers left and right with anyone, having amazing matches with the likes of Kenny Omega, Michael Elgin, Kazuchika Okada, Kota Ibushi, Shingo Takagi, Will Ospreay, Hiroshi Tanahashi (who he copied when he did the "Stardust Genius" gimmick), Shinsuke Nakamura, and so many more I could name. God level charisma, he could stand there and scratch himself and he would receive a Steve Austin level pop from it. Ever since he developed the tranquillo/Ungovernable gimmick, he has showcased he has amazing character work, full of charisma, psychology and storytelling abilities, this man is a god in New Japan for a reason, amazing heel with all the tools that he used to become a big star."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: lilrorowrote on 29.10.2023:[6.0] "Perhaps because of his eye disease, he makes many mistakes in his techniques and is very dangerous. Although he is not very old, he lacks physical strength and is slower than his peers. I'm so disappointed in his current situation because I used to liked him very much"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: coppercowrieswrote on 13.08.2023:[8.0] "Can be tremendous when he chooses and with the right opponent, but his career has been inconsistent even during his prime years, which are behind him. His tranquilo gimmick will either hit for you or it won't - for me it wore out its welcome years ago, and I fast forward through his excruciating entraces now. But he stays over with the Japanese crowd and has a lot of good will with fans."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: gargoylesmainwrote on 14.06.2023:[8.0] "Naito was never a favorite of mine, even though I recognize why he was so over with the crowd, and his in ring potential when paired with a motivating opponent like Okada or Omega. For a couple of years he was the entire package of charisma and physical talent, but even then his matches could be hit or miss, and now his body is pretty beaten down."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheOneAndOnlyCactuswrote on 12.04.2023:[10.0] "Naito has always been a natural in the ring. Very smooth between the ropes, great technician, very athletic, great seller. But, after he ditched the Stardust Genius gimmick and became Ungovernable, he became much more charismatic, his psychology got better and his mic skills improved. This turned him from a good wrestler to a great and legendary one, one that left an indelible mark on his generation and beyond."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: GeneBlastKyodaiwrote on 31.01.2023:[10.0] "One of the most charismatic wrestlers in Japanese history. His story is amazing, hes an amazing worker even with bum knees and I will absolutely say he deserves another IWGP world title run before he retires."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: benh2wrote on 20.01.2023:[9.0] "A fantastic smooth worker, great technical skills and psychology. Feeds really well for his opponents and great seller most of the time. A great example of how character work can elevate the in-ring product. Naito was always good in the ring but the heel turn took his matches to a whole new level. Insanely charismatic. Really hampered by his knees now but for a three or four year period there was arguably one of the most complete wrestlers in the world."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Enriquepollazzowrote on 27.11.2022:[10.0] "Naito is a 10. He is amazing at everything a wrestler is supposed to be amazing at and he makes other guys cooler by proximity and he sells merch and is cool enough people love his promos and anything he says. He is pretty much the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Mcbolskywrote on 22.11.2022:[10.0] "Tied with Ibushi for my favorite Japanese wrestlers of all time. He has an amazing moveset and created probably the top NJPW faction of all time in LIJ. Can work tags, 6- mans, and singles matches with ease and has championships for all three in his resume. His match with Omega in the 2016 G1 is probably my favorite match of all time. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: MainEventMasterwrote on 10.11.2022:[10.0] "A 10/10 wrestler and a 10/10 gimmick, somehow one of the most underrated wrestlers of all time. I do wish we would see more Naito-like wrestlers in the US."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Luna100wrote on 09.11.2022:[8.0] "A great wrestler, but can be undriven and you can always tell when. His gimmick works amazingly as a heel, but he doesn't work as well as a face, even if he is super over, my 3rd favourite member of LIJ. He does hit very high peaks, never quite ever having a MOTY, although some were close, especially his series against Ibushi. Unfortuately it took him a bit to get were he is now, and may be cycled down soon, and will feel like a bit of missed opertunity."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: texasyoshwrote on 16.09.2022:[9.0] "Despite all the success Tetsuya Naito has had in his career, it still feels a bit of a "what if" when it comes to him. One of the most impressive wrestlers, and one of the most charismatic personalities NJPW has had. Even as Stardust Genius his matches were still good. Nowadays he's physically battered, and can't go at the pace he once did."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Tyler72wrote on 14.08.2022:[7.0] "Against the right opponent is where Tetsuya shines the most. I think his move set is decent, but is rather in danger of getting old fast. Watching him I feel it's more obvious that he's picking and choosing the matches where he'll bring more or less power and intensity which is respectable but less entertaining."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Leo 4 Kingwrote on 06.08.2022:[3.0] "Naito's acting is one of his main defaults. Also his knees' injuries avoided him from making great performance those last years. He is not absolutly awfull but it's a average perfomer that didn't change his gimmick which as overstate its welcome."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: SoaKaswrote on 27.05.2022:[10.0] "He was very unlucky with the timing of his big win over Okada at WK in 2020 but nonetheless, Naito is just awesome and an instant favourite of most people who start watching New Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Okaro143wrote on 14.04.2022:[10.0] "One of the most charismatic Wrestlers of his time. Insanely over with the crowd, he had perhaps the best character development in history: From a rejected hero to an undeniable & ruthless anti-hero. Incredibly graceful in the ring but his strongest suit is his tranquilo character work; Probably the coolest character work I have seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: GriffinXwrote on 24.01.2022:[9.0] "Naito is excellent. To his credit he could of easily been swallowed up the failure of the first attempt to make him a main event. Instead he used that to be the start of what would make him a legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Kungwrote on 10.01.2022:[10.0] "Naito's the man. He's a supreme talent in the ring. He's as charismatic as any wrestler I've ever seen. He's the leader of one of my all-time favorite factions to ever exist. And he's had classic matches with some of the greatest wrestlers of all time, from Okada and Tanahashi to Jericho and Omega. Dude's a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "Stepping away from the IWGP Heavyweight Championship picture could've been rough for Naito, but he found a way to produce, mainly against his great in-ring rivals - Ibushi (WK and Castle Attack) and ZSJ (Summer Struggle and the G1). Like Ibushi he had a rough injury, but hasn't let up in the ring. He remains one of New Japan's most popular figures, and should be featured more even if it's not in the main event scene."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: benny5bellyswrote on 04.12.2021:[7.0] "I like Naito but of those on top in the modern era of New Japan he has always been my least favourite. His peaks are unbelievably good but he can be very inconsistent which maybe a result of battling long term niggling injuries."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: FAZEDandCONFUSEDwrote on 11.08.2021:[10.0] "The best anti-hero since Stone Cold Steve Austin but crossed with Ric Flair's level of charisma. He's the coolest."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: pk Rushwrote on 23.07.2021:[10.0] "He is one of the most charismatic wrestlers of this generation, and may be at the top of that list. He just oozes cool. On top of that, he's also a great worker and has had multiple 5 star matches (for lack of a better term) with other greats in his class many times over. The story of his ascent to the IWGP Title and finally beating Okada at the Tokyo Dome is one of the best long term angles I've seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: NaJoBronwrote on 25.04.2021:[10.0] "Tetsuya Naito is my favorite wrestler in the world. A real main event wrestler star, with a truly inexhaustible charisma, with the highest level of psychology in the ring, a colorful arsenal of techniques and an magnificent gimmick. I would call him a real anime character considering all the ups and downs of his career. He is not a perfect wrestler, he does not have the body of a Greek god, with some opponents he has mediocre or bad chemistry, numerous injuries slowed him down a lot, but even in unsuccessful matches I see fire in his eyes and a huge passion for pro-wrestling. Nato has always been and remains itself, and for this I have boundless respect for it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: KyleEnjoysWrestlingwrote on 10.03.2021:[9.0] "A great pillar of NJPW. Has a relatability to him that makes him a natural babyface. Solid in the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: michmoose21wrote on 09.02.2021:[9.0] "A very charasmatic and great performer. Connects with the crowd greatly. I enjoy most of his matches, but I think some of his matches are long and slow, which is why this is not a 10. I love Naito though."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Oregano Jacksonwrote on 04.02.2021:[7.0] "Very overrated in my opinion. Sure he's got a lot of charisma but, excluding the bouts with Kenny, he's a very mediocre in-ring worker and I don't remember the last time he had a great match with anyone."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: pierreMinnewrote on 28.01.2021:[10.0] "Maybe the best worker in the world today and surely the best seller alongside Shiozaki. The only guy in NJPW's main event today who deserves to be there ( with Ibushi ) because he is the best worker of the company. Charismatic as f*ck. I mark so hard on him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: djv2448wrote on 06.12.2020:[8.0] "in terms of charisma, Naito might be top in the world right now. regardless of his booking or his in ring performances. the crowd stays firmly behind him and LIJ. He is also an uber talented in ring performer, but I personally find him to be inconsistent in that regard. His series with Okada was very good when it was expected to be great, and his series with Evil did not meet expectations either. With Naito you can find some absolute classics with every star on the new Japan roster, but you can also find some that are not anything special. As his bouts with EVIL showed, Naito lacks the ability to regularly drag performers up to his compete level in big matches. Which is something that Okada has always excelled at, and as his main point of reference, its hard not to dock Naito points for that. on his best day, Naito is in the conversation for the best all around wrestling talent in the world. but on other days he comes off as simply ordinary"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheGreatKunkwrote on 15.11.2020:[10.0] "Generational Talent with incredible ability to tell a story. His promos are always incredible, his matches are consistently great to downright MOTY candidates. He doesn't cater to AEW fanboys craving a spot fest. His matches stake brilliant cohesive ring work with tension and stakes. Giving him a rating below 8 is selling Naito incredibly short. This is all without considering the output he has supplied NJPW with hundreds of matches a year."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: medousewrote on 29.10.2020:[10.0] "Guys in NJPW are great athletes but usually they lack charisma and personality. This guy has both. Incredible wrestling skills and electrifying personality. He created one of the best faction - Los Ingobernables de Japon. The best entertainer on Japanese wrestling scene."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: BlakeFR37wrote on 25.09.2020:[10.0] "He's as my pov, the real ace of this gen. Don't know if he will have the career he deserves but... we shall see."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: hassan01wrote on 10.09.2020:[10.0] "One of the best the wrestling industry has to offer today . Truly a main event wrestler and very entertaining and impressive wrestler to watch. The charisma he brings to the ring is high octane. Really happy to see him as IWGP Heavyweight and IWGP Intercontinental champion and hoping he has a long reign as double champion. A very decorated , gifted and a very loved wrestler among wrestling fans around the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Ma Stump Pullerwrote on 06.09.2020:[9.0] "Naito already has paved a rather impressive resume for himself. Starting off as a ambitious project to create the successor to Tanahashi (a feat that, at the time, seemed impossible) Naito was burdened with boots far too big for him to handle. Don't get me wrong, the Stardust Genius Naito was a impressive wrestler and was uniquely paced away from Tanahashi's moveset, being incredibly dynamic and could put on a strong show, but his promos and persona felt.... forced, and he clearly wasn't on the level that he was booked at, both quality and in terms of crowd support. Thankfully a excursion and a organic heel turn (if the fans don't care about him, why should he? ) not only got him over as a fresh act, but eventually went full circle and got him back as a babyface. I will say that Naito's strengths come more from his psychology and pacing: much like Tanahashi, he's more of a storyteller than anything else, and understands that simple acts can do more than flips can. That being said, when he can turn on the gas, he does so hard, and he can really pull off a solid match when he's with the right opponent. Naito does suffer from not having a definitive run with the IWGP Championship, with both of his reigns being cut short, and for lacking that ability to get a lesser talent over as well as Okada or Tanahashi can. Naito is great with someone near or at his in ring talent, but as his feud with EVIL has shown, he can't exactly get someone below him to that level."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: lehaimkhwrote on 22.07.2020:[10.0] "Once upon a time, New Japan wanted to create a new babyface. It's a good thing you changed your mind. Tetsuya Naito became an original character with excellent charisma, for which he was loved by the audience. I like the tactic, when Naito trolls the opponent and brings him to emotions. This is interesting to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Viniciouswrote on 26.06.2020:[8.0] "Slow, calculating, charismatic. Love and adore almost everything Naito does, he's hampered by "not winning the big one" angles, and also that he's stuck a rung below Okada and Tanahashi."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: OrangeAidCrushwrote on 15.02.2020:[10.0] "Easily one of the greatest wrestlers of all-time. The guy is incredibly charismatic, incredibly over and a fantastic in-ring talent to boot. I don't think Naito is the perfect wrestler but he's very close. He struggled a bit before he went to Mexico but even before Los Ingobernables, he was still an above-average in-ring talent. His feud with Ibushi is going to go down in history as one of the best feuds ever, The G1 final against Kenny is an iconic match. His G1 match against Shingo last year was also an all-time classic. The guy is just money. You don't main event the Tokyo Dome twice without being anything less than an amazing wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Bobbythreesixteenwrote on 06.01.2020:[9.0] "Ich fand ihn immer sehr schön anzuschauen. Er workt immer gut und hat auch ein gewaltiges Charisma. Bei Wrestlekingdom hat er mich jetzt endgültig überzeugt und ich hoffe er wird dem Main Event gerecht, wobei ich da wenig Zweifel hege."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: VillainClubwrote on 23.12.2019:[8.0] "Im Jahr 2017 hätte ich ihm noch die volle Punktzahl gegeben, das Jahr war fantastisch. Mit seiner Niederlage gegen Okada bei WK ging es mit ihm bergab. Die Fehde gegen Jericho hat im deutlich geschadet. Charisma hat der Kerl ohne ende."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TylerWhitewrote on 29.11.2019:[9.0] "Tetsuya Naito ist eines der besten Gesamtpakete aktuell im Wrestling.  Seine Karriere fing jedoch sehr holprig an, doch ist ein Paradebeispiel dafür wie man einen absolut verbookten Wrestler wieder retten kann und zu einem der beliebtesten und interessantesten Wrestler der Company machen kann. Aber auch Naito war damals noch nicht so interessant, ihm fehlte der It Factor, ähnlich auch wie z. B. Nakamura in seiner frühen Karriere. Doch dann änderte er sich komplett, nachdem er bei CMLL teil der Los Ingobernables wurde, gründete bei NJPW die LIJ und ist einer der besten Character Worker im Wrestling weltweit. Sein Gimmick ist einfach extrem geil und er ist unfassbar charismatisch und das zieht er auch dauerhaft durch, angefangen bei seinem absolut genialem Entrance bis hin zu seinem trolling während der Matches. Im Ring ist er jedoch sehr Tagesabhängig. Klar kann er mit seinem Gimmick immer wieder geile Stories erzählen, aber technisch ist das hin und wieder recht holprig, an anderen Tagen aber auch wieder absolut genial und auf Top Niveau. Im Ring vielleicht etwas hinter Okada, Tanahashi, Ibushi aber insgesamt kenne ich kaum ein besseres Gesamtpaket und einen besseren Charakter im Wrestling aktuell."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: zephyrwrote on 03.11.2019:[8.0] "Tremendously charismatic wrestler but I really can't justify giving him a 9 or 10 anymore after such a lacklustre year of in-ring work."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Iceqwrote on 08.10.2019:[10.0] "Unfassbar beliebt bei der japanischen Crowd und auch außerhalb Japans super over. Manchmal ein bisschen faul wenn es ums Wrestling geht, aber wenn er mal so richtig loslegt kann auch Naito mit jedem Wrestler ein gutes Match zeigen. Außerdem ist er mit großer Wahrscheinlichkeit der charismatischste Wrestler denn es gerade so gibt. Gehört zu meinen absoluten Lieblingen und ich hoffe der IWGP Titel lässt nicht mehr lange auf sich warten, auch wenn ich das jetzt schon seit Jahren mir erhoffe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Roode66wrote on 01.08.2019:[10.0] "Er kann gut wrestlen, einige seiner Kämpfe waren sogar sehr gut. Dazu hat er ein gewisses Charisma, auch wenn ich das bei Japanern im Vergleich zu US-Wrestlern meistens und auch diesmal verhältnismäßig gering ausgeprägt empfinde. Und bei den Fans kommt er auch merkbar gut an. Er hat eigendlich so ziemlich alles, um bei New Japan bald zu den ganz großen zu gehören. Aber mich poersönlich stört am meisten, dass sich in meinen Kopf der Tanahashi-Vergleich zu sehr aufdrängt. Naito wirkt auf mich wie Tana 2. 0 und das besonders fiese daran ist, dass Tanahashi so verdammt awesome ist und man keinen Wrestler finden kann, neben den man in New Japan im Vergleich schlechter wegkommt.  Edit: Ein paar Jahre später hat sich vieles geändert. Von 7 auf 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Aurtletheturtlewrote on 16.07.2019:[10.0] "NAITO! NAITO! NAITO! El Ingobernable is one of the most charismatic wrestlers in the world, in the history of japanese professional wrestling. His gimmick is incredible and this has only helped lead him to being Japan's favorite wrestler, his momentum has slowed in recent years due to bad booking decisions on Gedo's part but when you add his charisma to his incredible in ring ability and promo skills then you are going to have an all-timer main eventer. NAITO! NAITO! NAITO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: PuroresuLoverwrote on 15.06.2019:[10.0] "Do I really have to say something? Tetsuya Naito should be 4x IWGP Heavyweight Champion by now, he's one of the best in the world now, It bothers me the fact that Gedo is not making him the Top Star of NJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Cow Manwrote on 03.06.2019:[8.0] "Has a great character. Good as the leader of LIJ. He can put on a good match. But it took a while for him to find a good character. Overall, an 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: My Bloody Doobwrote on 20.05.2019:[7.0] "I remember when Naito was the most interesting person on the New Japan roster. 3 years later and he's still doing the same shit. Basically, he's shown zero character growth in his "Tranquilo" phase since losing the IC title the first time. Naito isn't making things happen, things happen TO him, and he knows this which is why he relies so much on his stale gimmick to try and keep himself relevant. As for his wrestling, he's a movez guy who also has some pretty good technical skills, but he's piss poor at actually selling besides bumping like a rag-doll. I still give him credit for being able to have great matches with guys at or above his level, but any other match is an obvious phone in (then again he rarely has good matches with Suzuki or Goto). I still don't know why he still has many fans, he never went through arcs like Okada, Tanahashi or even Kenny Omega that made you care about them in new ways, he's still the same dude he was 4 years ago. It also puts me off how irritating his fanbase is in the western side of the world, but that's a different discussion."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Fab96wrote on 19.05.2019:[10.0] "The real star of New Japan. I feel like Naito has been in Okada/Tanahashi shadow for too long, I'd love to see him with that IWGP Heavyweight championship around his waist again, because he deserves it. He is a phenomenal athlete and such a savage personality, he does what he wants and he acts the part like a pro. My pick to win the next G1 Climax"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "By far the best character development in wrestling ever. Is the leader of my favorite stable in NJPW, LIJ. Is an awesome wrestler. His stroy is simply the best long term storyline wrestling has ever seen and it all just flows so natural. His personality and charisma is on display both when he wrestles and is cutting promos. Hopefully he one day reaches the top and wins the IWGP HW championship back."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Cherry Chasewrote on 04.04.2019:[9.0] "Naito is who should've been pushed as the future star of NJPW, by defeating Okada at Wrestle Kingdom 12. With massive fan backing and an abundance of charisma. Regardless his character work has always been his biggest strength. Which is not to say he suffers when it comes to in-ring ability because he excels in that department as well."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Cibswrote on 16.01.2019:[10.0] "My favorite NJPW wrestler. After his second period in CMLL Naito improved not only in the ring (although he was already very good), but also as a character in general and that is very important, ; he took advantage of the opportunity to build something special that has made him a star. He also has more charisma than half of the New Japan roster."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: KINGwrote on 09.11.2018:[9.0] "He's so damn amazing, he was always a talent in the ring, but his Stardust Genius gimmick was very shitty, the heel turn changed everything tho and he's now a real rockstar, the top guy of the crowd, the people's champion, and his in ring work stepped up as well, making him one of the best in the world when it comes to having a mix of in ring and character ability. His character is really one of the coolest things in wrestling of this decade, Tetsuya Naito is a goddamn great arrogant prick, and we love it for that."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: RatingsMachinewrote on 17.10.2018:[9.0] "Tetsuya Naito is a great worker and a tremendous character, but there are a lot of times when he tries to get over his character at the expense of the match, and it ends up hurting the match a lot."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Makai Clubwrote on 13.09.2018:[9.0] "I like Naito. Not my favourite wrestler in New Japan though. He has a good character that is both entertaining and something people can relate to. He has resume that speaks for himself. His No Limit tag matches are all very good. He has great matches with Nakamura, Okada and Tanahashi. Really like his recent ones with Omega and Sanada too. I'd say one thing, he is very good, great even, but he is much less consistent than the likes of Ishii, Okada, Goto and Hiromu Takahashi in New Japan as well as others outside of the company and for that I don't think I can rate him higher than an 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Oliver95xwrote on 12.09.2018:[10.0] "Tetsuya Naito ist der Wahnsinn. Kaum jemand hat so viel Charisma wie er. Seine Gesichtsausdrücke und sellings sind einfach nur gut und sein Move Set ist abwechslungsreich. Die großen Matches mit ihm wissen immer zu überzeugen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: taabr2wrote on 11.09.2018:[10.0] "The most popular wrestler in Japan. I would rank Tetsuya Naito just a little bit below the elite level talents like Tanahashi and Okada when it comes to in-ring work. However Naito's real strength is his almost effortless charisma and cool character that makes it hard for you not to cheer for the guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: jamzell00wrote on 18.08.2018:[10.0] "Probably my favorite wrestler going. He was never really "bad" during his stardust genius run but it's obvious the fans weren't super into him. His current run now is incredible and I'm so emotionally invested in him and LIJ. I can't say that about many wrestlers. He's so good"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Sebastian Vwrote on 11.04.2018:[10.0] "Tetsuya Naito ist in meinen Augen im Moment der drittbeste Wrestler von New Japan und einer der besten Welt. In jedem Bereich 10 von 10. Im Ring ein unfassbar guter Techniker, der aber auch Bumps nimmt, High Flying zeigt, Powermoves und ähnlich wie Okada und Omega eine In-Ring Psychologie hat, die einfach nur der Hammer ist. Die Mimik und Gestik ist auch stark bei ihm auch wenn ich das zum Beispiel bei Omega noch besser finde. Er hat schon reihenweise Weltklassematches geliefert. Sein In-Ring Können geht Hand in Hand mit seiner unfassbaren Heelpräsenz bzw. seine Fähigkeit, Charakterdynamik zu zeigen. Sein Charisma lässt eine ganze Halle buhen oder auch jubeln, da er auch als Face funktionieren kann zum Beispiel gegen Leute wie Suzuki. Aber seine arroganten Heeltaktiken sind das, worin er richtig aufgeht. Ich verstehe kein Japanisch, aber auch seine Promos scheinen diesen gleichen Swagger und die gleiche Außenwirkung zu haben. Insgesamt einfach eine glatte 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheAlmightywrote on 14.03.2018:[10.0] "Tetsuya Naito ist der beste Heel der Welt in allen Belangen (Omega ist kein reiner Heel in meinen Augen). Ein guter Wrestler war er schon immer und so konnte er bereits 2014 nach dem gewonnen Climax gegen Okada im Tokyo Dome antreten. Wie zuvor im Climax Finale gegen Tanahashi wurde er aber auch hier wieder ausgebuht, obwohl als Face dargestellt. Nicht umsonst gab es damals ein Fan Voting welches Match im Main Event stehen sollte und Naito verlor gegen Nakamura vs Tana obwohl es 'nur' um den IC ging! Dave Meltzer schrieb nichts umsonst einst: 'Naito was known as "something of a genius in the ring for his ability to lay out matches", but noted that "something didn't click", calling his reception "a combination of some fans booing, and some apathy! ' Sein Push wurde gestoppt bis er im Sommer 2015 mit neuem Look und neuem Gimmick als El Ingobernable zurückkehrte und wie ausgewechselt schien. Die Fans jubelten ihm zu, er hatte endlich dieses gewisse Etwas gepaart mit seinem bereits vorhandenen Können im Ring was ihn zu einem perfekten Gesamtkunstwerk werden ließ! Er gewann den IWGP Heavyweight und IWGP IC Title, was ihn somit zum einzigen Grand Slam Champ von NJ werden ließ (Tag Team + Jr. Tag Team, NEVER Openweight, IC, Heavyweight) Gekrönt wurde die ganze Entwicklung vor etwas mehr als einer Woche mit dem erneuten G1 Climax Sieg inklusive eines 5* Matches gegen Tanahashi und eines MOTY Matches gg Omega im Finale. Naito ist der hotteste Wrestler zurzeit auf dem Planeten! TRANQUILO! ASSEN NA YO! EDIT: Mensch Headlock hör doch mal mit deinen subjektiven Dragon Gate Bewertungen auf. Eigentlich ist jede schlechte Bewertung für einen NJPW Wrestler der größte Lohn, denn es muss dich ja ziemlich stören, dass jemand wie Naito soviel mehr Aufmerksamkeit bekommt als ganz DG. Objektiv kann man Naito nicht weniger als 9 Punkte geben, alles andere ist nicht gerechtfertigt für seine In Ring Leistung und sein Gimmick Work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Headlockwrote on 10.03.2018:[5.0] "Irgendwie gefällt mir Naito nicht. Sein Gimmick ist zwar ganz nett und lässt sich auch gut in kleine lustige GIFs packen,  lässt mich allerdings persönlich eher kallt, als Wrestler selbst gefällt er mir zwar besser aber solle finde ich ihn jetzt auch nicht, finde er ist sogar der schlechteste Wrestler in LIJ, mir gefallen BUSHI, EVI, SANADA und Hiromu alle samt besser. Er ist wohl einfach nicht mein Fall."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheLoudMouthwrote on 08.01.2018:[10.0] "Bei Naito bleibt einem nichts Anderes übrig, als in den Untiefen der Superlative zu kramen und ihn zu huldigen. Ein ganz Großer seiner Zunft und vermutlich der aktuell beste Worker weltweit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Adaskerrwrote on 29.12.2017:[10.0] "Probably my favorite character in all of wrestling at the moment, and a great wrestler as well. "You can be cool, but you'll never be as cool as Naito""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: benYowrote on 21.11.2017:[9.0] "T. Naito gehört ganz klar zum engsten Kreis der Besten der Besten. Dazu ist er für mich einer der besten und glaubwürdigsten Heels. Seine In-Ring Fähigkeiten sprechen für sich und komplettieren so einen ultimativen Anführer des möglich besten Stable."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Cleanerwrote on 17.11.2017:[10.0] "Tetsuya Naito ist etwas, was man als mehr als das "complete package" bezeichnen muss. Wie er seinen Charakter entwickelt und porträtiert, wie er wrestlet, wie er spricht, alles ist großartig. Er bildet zusammen mit Okada, Omega und Tanahashi den aktuellen NJPW Main Event und das völlig zurecht. Einer der besten der Welt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Dragon Fighterwrote on 30.10.2017:[10.0] "What can I say more about naito ?  From a silly, bland babyface who got rejected from the fans 4 years ago to the most entertaining and charismatic guy in wrestling world right now. He is finally accepted by the fans and gets the Tokyo dome main event spot he missed at wk8. A hug draw in new japan and his in ring work is also amazing as well. Definitely one of my favorites and joys to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: The Phenomenal 1551wrote on 09.10.2017:[10.0] "Im Ring ohnehin einer der besten, aber das herausragende an Naito ist sein Charakter. Einfach großartig wie er sein Gimmick verkörpert und darstellt. Derzeit der wohl beste Heel auf diesem Planeten. Zudem ist er der beste Beweis dafür, wie man nach gescheiterten Push durch Neuerfindung seines Charakters over kommen kann. Vor allem die letzten zwei Jahre und die von ihm dargebotenen Matches stellen das eindrucksvoll unter Beweis. Meiner Meinung nach auf einem Level mit Omega und Okada derzeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: BraveHeartwrote on 05.10.2017:[10.0] "Tetsuya Naito is the man who can not be governed. After taking an excursion to CMLL, Naito came back better than ever. Turning Heel, Forming one of the top factions in Pro Wrestling History, It seems like Mr. Destino and his cohorts aren't going anywhere for a long time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: jcleaguewrote on 29.09.2017:[10.0] "Post CMLL Naito is the complete package. Mic skills, wrestling skills, psychology, storytelling, ability to move merch, with a cool look and leader of one of the best factions in wrestling right now. The irony that turning heel is what helped Naito to become one of the biggest babyfaces in NJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Blood Pumpwrote on 01.09.2017:[10.0] "The coolest man in NJPW also happens to be right up there with Okada as the best. While not every one of Naitos matches can be called a 'certified classic' like Omegas, his personality, pacing, character (to which I'd say his is far and away the best in the entire company) and ability all make him one of the best ever. He has it in him to put on a better match then either man (Omega & Okada) with either man, all he needs is incentive, and what better incentive is there then to win the IWGP Heavyweight Title on the main event of Wrestle Kingdom? As the most recent winner of the G1 Climax I highly look forward to his match with Okada and what the next year holds for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: AllArounderwrote on 16.08.2017:[10.0] "Absolutely incredible. The guy plays his character masterfully and is an amazing wrestler. Deserves all the praise that he gets."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: arrancarwrote on 14.08.2017:[10.0] "Over the last year or so this guy has totally won me over, and I certainly consider him one of the current best in the world. He doesnt have great matches as frequently as Okada, Ishii, or Omega, but his LIJ character is fantastic and he absolutely delivers in all his big matches. It's funny that his character is centred opposite Okada, as Naito is the counterc to the NJPW 'system' Okada represents, yet Naito and Okada share similar traits that make me love both of them. They both have some sort of facade as a defence mechanism, hiding their true feelings. Once pushed to the limit they will reveal those feelings however, and show that despite their shenanigans they really do care about NJPW and wrestling. That's Naito's deal. He was once the vanilla babyface who never won over the fans, then he kayfabe revolted against the company (probably working off of genuine annoyance there), making everyone hate him more, but then his entertaining act grew on everyone and he became a mega anti-hero. For years Naito has acted as a heel, but he's so entertaining and so athletically gifted that the fans can't help but cheer for him (especially when he sells his opponents' offence like death). I think it's clear after the psychology in his G1 final match against Omega that Naito is rightfully heading the way of a pure babyface anti-hero very soon. His badass persona with the hidden layer of someone who is desperate to impress people and prove his worth makes for a fantastic wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: LosIngobernablesdeUKwrote on 09.08.2017:[10.0] "Oh Naito. My favourite guy in NJPW as a whole. He was the guy along with LIJ that got me hooked into NJPW in the first place. When I first saw him & saw his suit, his mask, his attitude & his wrestling skills, I thought man this guy is the very definition of a badass motherfucker & he really showed how fucking cool he was. When I saw him beat Okada for the Title at Invasion Attack I was so happy & thought he would have a dominant & extremely interesting reign, which never turned out to be the case. Anyway, the guy is a fantastic wrestler, always puts on a ****1/2 + performance, he had I think the best or 2nd best IC Title reign ever just because of how he made it even more prestigious by absolutely destroying it lol. He is my pick to win G1 this year & by the time he faces Okada in the main event of WK12, he will once again be IWGP Heavyweight Champion & become the best damn guy in the world. Tranquilo. Assen ayo... EVIL, BUSHI, SANADA, HIROMU Y NAITO. NOSTROS, LOS INGOOOBBEERRRNABBLLESSS de JAPON!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Randomuser12345wrote on 22.06.2017:[9.0] "I once saw someone on this site describe Naito as "The Dolph Ziggler of New Japan", which was pretty spot on at the time. A brilliant wrestler no doubt, but missing some bite. This was rectified when he slowly turned heel in 2015, aligning with the Los Ingobernables in Mexico. Since then he's given the middle finger to the fans who screwed him out of his main event spot for WK8, and gone on to form one of the hottest stables in wrestling today, and by the look of things may well be on his way towards redemption in the form of a main event match at next years Tokyo Dome show."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TooSweetPhilwrote on 07.06.2017:[10.0] "Als Führer meines absoluten Lieblings-Stables kann ich nicht anders, als volle Punktzahl zu geben. Mal ehrlich, gibt es aktuell irgendeinen Charakter, der die Klasse von Tetsuya Naito übertreffen könnte? Nein, das denke ich nicht. Diese Respektlosigkeit, dieser Hass gegenüber den Fans, dem Gürtel, den Schiedsrichtern ist einfach nur genial. Auch im Ring weiß Naito durchaus zu überzeugen und immer wieder mit grandiosen Performances abzuliefern. 10 fuck'n Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: PistolPeteMattywrote on 06.05.2017:[10.0] "Hands down the best character in wrestling today. From the peppy babyface known as The Stardust Genius, to the no fucks given badass he is today, Naito has always been fantastic, but his work with LIJ will go down as the stuff of legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheWrestlingFanwrote on 06.05.2017:[10.0] "Naito has been able to reinvent himself after turning heel, then forming LIJ. He is able to play his character perfectly with his signature 'tranquilo' taunts. He also adjusts his in ring ability in order to conform with his character that requires a perfect set up of psychology, despite he was previously known as a high-flyer. He has proven himself to be a great asset for NJPW that will carry the company for years ahead."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: RonAyyyyyyyywrote on 01.03.2017:[10.0] "This guy was always insanely talented, but he never had a good outlet to display it. From 2011-2015, he was just "Tanahashi-Lite" which didn't work because he just wasn't as talented or as good of a face as Tana. But right before the 2015 G1, he went to Mexico and totally reinvented his character, and is now the best heel in the world and one of the best of all time, and his matches have a fresh feel to them as a result. Capable of putting on all-time great classics, incredible character work, awesome look, he's the total package."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheRainmaker28wrote on 18.02.2017:[10.0] "The best and the most charismatic character in the world today, as Naito suits and play his character so well that amazes me everytime that I see it. From a guy that was a rejected babyface to be the MVP of New Japan today, and that is why I admire and respect Naito, he had the capacity to reinvent him self, not only as a character, but as worker too. TRANQUILO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheGreatestManRed22wrote on 30.01.2017:[10.0] "Yes. Mr TETSUYA NAITO. The best heel in the world right now when he returned NJPW in G1 Climax 25 was different. He changed whole personality and he became to an INGOBERNABLE. I love this gimmick, throwing belts, hitting referees and mocking enemies and the most important he made LOS INGOBERNABLES DE JAPON. The stable that revolutionized NJPW. And now as IWGP Intercontinental Champion is doing it fabulous also he is over with the crowd and he had great matches during this time as INGOBERNABLE. TRANQUILO! ASSEN-NAYO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Viper99wrote on 08.01.2017:[10.0] "Mein Gott! Es gibt wenige Wrestler die ich erlebte, die sich so verbessert haben! Naito war immer ein Sehr Guter Wrestler, aber seit seinem sprung zum Heel ist Naito einfach nur noch Exzellent! Tetsuya Naito ist der Top Heel von New Japan und einer der besten Heels der Welt! Dazu ist er ein, als Heel, noch besserer In Ring Worker und zeigte dies in 5 Star Matches gegen Omega oder Tanahashi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TrevPuroFanwrote on 07.01.2017:[9.0] "Naito has always been a great wrestler who was busting out some great matches here and there. But ever since he came back from Mexico and turned heel and became Ingobernable Naito, he's been another level. Over with the crowd and putting on classics. Only his selling is off sometimes."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: SomeDudeOnTheInternetwrote on 05.01.2017:[10.0] "Tetsuya Naito ist ein guter Wrestler, derzeitiger und sehr starker IWGP IC-Champion, Los Ingobernables de Japon leader und lieferte in den letzten Events nahezu immer hammer Matches ab. Sein Heelwork ist absolut Klasse und ist zurzeit der provokativste Wrestler in NJPW oder gar der ganzen Welt. Von Moveset, Technik, Charisma, Ausstrahlung, Entrance bis hin zum starken stable ist er einfach die 10 Punkte wert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: ApexOfEvolutionwrote on 05.01.2017:[10.0] "Der Leader des zur Zeit wohl besten Stables der Welt. Spielt einfach einen hervorragenden Heel, hat eine großartig unsympathische Ausstrahlung und ist im Ring über jeden Zweifel erhaben. Aufgrund der Sprachbarriere kann ich seine Promos nicht beurteilen und somit spielen sie bei der Bewertung keine Rolle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Alex Maedawrote on 05.01.2017:[10.0] "Sehr gut im Ring, gehört zu den charismatischsten Leuten in Japan und kann mit den unterschiedlichsten Workern starke Matches abliefern. Auf jeden Fall eine der wichtigsten Personen derzeit im Roster von New Japan. UPDATE (2017/01): Die Aufwertung für Naito ist überfällig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: NastyYaffawrote on 01.01.2017:[9.0] "Naito was already a great wrestler before 2015, but when he returned to New Japan as the "El Ingobernable", his work went to another level. He became a total package and one of Japan's most interesting performers - his in ring work is great, love all the mind games he showcases, his psychology is good & he is a candidate for the most charismatic Japanese wrestler in the world right now. You can definitely call me a fan of Naito."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: J Kwrote on 20.10.2016:[9.0] "Naito ist echt stark er ist ein super Intercontinentalchampion( geschrieben im Oktober 2016) Er hat immer super Matches und überzeugt auch durch Gimmick und Charisma.  Er ist einer der Top Stars in Japan und ein sehr wichtiger Teil des Njpw Rosters.  Außerdem ist er immer für ein Mainevent würdiges match gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: akm0wrote on 17.10.2016:[9.0] "From zero to (anti)hero!  The transformation of Naito during the last two years is just outstanding. He always had the talent, the ring ability and everything a wrestler could want, but he lacked the look and something personal. The New Japan crowd saw that and didn't cared about him. Then something happend. He went to Mexico, he learned something different, something he didn't have yet, and came back at full force. Suddenly, he didn't care about the fans, but they did. He founded the LIJ, got over and became THE best heel in wrestling right now. Everything he does - from taking his time for his entrance just to upset people to bullying the referee or the commentators - has a meaning, has a weight and count because he wants to. His match with Kenny Omega this year was phenomenal to say the least, seeing him going for the german suplex knowing that Omega would have landed on his feet and thus damaging his knee further was one of the best thing I saw in wrestling. He's a star and ten years from now he will be remembered as a great heel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: IssouChanclawrote on 29.09.2016:[10.0] "He is one of the few wrestler who still make me marks and i only discovered him few weeks ago, his gimmick is awesome he play really well with the crowd in the same match he can be booed or cheered + his stable is really cool"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Luv all wrestlingwrote on 07.09.2016:[10.0] "Naito is at his best as a heel, he can get heat or get an entire crowd behind him while also having a great match. As a babyface he was a bit generic, but a Naito who does not care is a Naito the crowd loves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: ezuvguwrote on 30.07.2016:[10.0] "From mid-2011 until his injury in the 2012 G1, Naito was arguably the best wrestler in the world. He's been my personal favorite wrestler ever since. After the fans rejected New Japan's attempt to continue pushing him, as if nothing had ever happened, Naito snapped, turned on the fans and formed Los Ingobernables de Japon, which finally got him over again. This year, he appears rejuvenated in the ring and is putting on his best matches since his injury. I hope to see him top his March 4th, 2012 match with Okada someday."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Mirajane Strauss Fanwrote on 15.05.2016:[10.0] "Despite possessing cool moves and decent matches with Hiroshi Tanahashi, an untimely injury derailed Tetsuya Naito's progress in New Japan Pro-Wrestling, as he never quite rallied the fans afterwards.   That must have been a shame for the most prominent member of the NJPW fan club - Naito was New Japan and the company recognised that.   That all changed with the G1 CLIMAX 25, as Naito abandoned his quasi-Tanahashi shtick and embraced his Los Ingonerables roots.   Naito took to his new gimmick like a fish to water - and so did the fans, a large majority of them cheering him as he aimed to win the IWGP World Heavyweight Champion.   Since then Naito has only become stronger, beginning a riveting feud with NJPW management that has captivated crowds worldwide.   With solid wrestling skills and a molten character, Tetsuya Naito has finally reached the summit, and he will not be disembarking any time in the near future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Delirious434wrote on 18.04.2016:[10.0] "I FUCKING LOVE THIS GUY! His Promos are great, he's the best Heel in New Japan, and in the Ring he's Awesome, totally deserved IWGP Heavyweight Championship, my favourite Pro-Wrestler in the World right now"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: 8BitLegendwrote on 15.04.2016:[7.0] "Habe meine Hoffnungen zu Grabe getragen, dass Naito jemals über seinen B# Status hinauswachsen wird. Sein Heel-Gimmick überzeugt mich nicht und trotz entsprechendem Spotlight wächst er nicht in die Lücke hinein, die Styles und Nakamura hinterlassen haben. Einm guter ist er ja trotzdem, aber irgendwie wäre da mehr drin gewesen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: JuliTheCage87wrote on 21.02.2016:[10.0] "Auch er hat sich seinen G1-Climax-Push vor zwei Jahren seit seinem Heel Turn redlich verdient. Extrem leicht zu hassen, aber geiles Moveset, gute Ausstrahlung und schon immer ein Rohdiamant, der letztendlich in seine vollendete Form übergeht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Antimasterwrote on 16.02.2016:[9.0] "Blüht in seiner Heelrolle förmlich auf. Hat momentan Feuer wie seit drei Jahren nicht, unterhält als Heel dreimal so gut wie als langweiliger Uppercard Face Ende 2014, Anfang 2015. Zudem im Ring richtig stark. Seine letzten Showstealer sind zwar nun schon ein bisschen her, aber das ist seiner Rolle als Ingobernable zuzuschreiben, und ich bin mir sicher, wenn er denn mal wieder einen großen Titleshot erhält, wird er auch wieder eine Sahne-Leistung zeigen. Zusammen mit Okada die strahlende Zukunft New Japans."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: CmNag66wrote on 08.01.2016:[10.0] "Mein aktueller Lieblingswrestler in Japan. Im Ring war er schon immer großartig und seit seinem Heel Turn und dem Beitritt zu Los Ingobernables strömt er nur so über vor Charisma, dazu hat er auch noch einen richtig coolen Charakter entwickelt und seinen Wrestling Stil perfekt an diesen angepasst."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: HouseWhiteWillRisewrote on 29.12.2015:[10.0] "he has everything a wrestler in NJPW needs Naito has been a good in ring worker since his debut but then the crowd started to boo him so he became one of the best HEELS in the world he carries himself with such a IDC Attitude it gives off this great aura i think it might be the IDC attitude in the history of the pro wrestling the reason i am giving him a ten is because he was good before 2015 but he lacked Facial expressions and lacked story telling in his matches and then came the 25 anniversary of the G1 Climax and he really showed he had pretty good story telling and amazing facial expressions for his IDC attitude so he fixed everything that he lacked so he really can't get any better i just hope he gets treated right in NJPW Because right now he is really showing so much resembelance to Dolph Ziggler He is one of the best sellers in NJPW he has been treated as a high mid carder that they don't go all the way with They both are definitely in the top 5 workers in NJPW for Naito and WWE for Dolph they both are terrific Heels and when they are Heels they are head and shoulders better than anybody in their promotion in Zigglers case when he was really good and was in his prime as a heel he got the world heavyweight title which was basically the equivalent to the intercontinental title in japan but then he suffered a injury and he had to drop the title then he never got another world title run that he deserved Naito is in the prime of his carrer so they need to #PushNaito NOW!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Toasterwrote on 23.12.2015:[10.0] "Für mich aktuell vom Heelwork her so ziemlich das beste auf dem gesamten Globus. Daneben auch noch ein überragender Worker. Hat seine Rolle endlich gefunden und kann somit auch endlich an die Spitze gepusht werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: HammertonWaywrote on 31.10.2015:[9.0] "The recent heel turn for Tetsuya Naito was the best thing that happened to him. With Minoru Suzuki in NOAH, only AJ Styles remains in NJPW as a main event heel. If they build Naito correctly, he could be IWGP Heavyweight champion in 2016. Also, that suit he wears to the ring is sweet as hell!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Kevin434wrote on 20.08.2015:[9.0] "Naito war lange zeit einer der underratesten Wrestler der Welt, ich war schon lange ein Fan von ihm und ich bin so froh das er jetzt Heel geturnt ist und ich bin so froh das er gepusht wird. Er ist so ein guter worker, jedes Match macht spaß und ich würde ihn locker auf eine Stufe mit Okada setzen. Und er ist aktuell der beste Heel, es ist einfach so geil und untrhaltsam, er spielt es einfach verdammt gut und bringt das super im Match ein, bitte New Japan pusht diesen Mann noch weiter, so den IC-Titelgewinn hätte er echt verdient."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Izinwrote on 17.08.2015:[9.0] "Naito has revealed his true talent hiding within with his recent turn throughout the G1 Climax - he has almost overnight become the most hated heel in the Land of the Rising Sun. Even those that appreciate his ring work and mannerisms are almost compelled to boo him, and this is an achievement in an era of a surplus of "cool heels"."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: llboxingwrote on 10.06.2015:[7.0] "He's the Dolph Ziggler of New Japan.  A popular upper mid carder who flirts with main event status but often falls short of winning the big one.  He's athletic, charismatic,  flashy, good looking and an excellent worker with some great matches against top stars under his belt.  He's very wooden with his facial expressions, that is perhaps his greatest weakness, although he has improved on that front. He hasn't always been consistent but usually shows good intensity and passion in both promos and in ring work.  Recently he has been in a Roman Reigns type situation with the fans feeling that he has been shoved down their throats.  He was even heavily booed at one event but that appears to be an isolated incident.  Once heralded as the heir apparent but injuries, inconsistency and bad acting have hampered his career."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Matzinhowrote on 02.10.2014:[7.0] "Naito fand ich schon für einen Rookie überdurchschnittlich gut, sehe bei ihm seither im Ring aber keine große Entwicklung. Naito ist immer noch Naito. Ich kann ihn mir gut ansehen, er produziert ordentliche bis gute Matches, ist für mich aber nicht herausragend. Seine Hochphase hatte er in meinen Augen bei No Limit. Was ich schade finde ist, dass er so stark zu den Heavyweights gepusht wird. Ich hätte ihn lieber bei den Juniors gesehen, er hätte die Division vielleicht zurück zu altem Glanz führen können."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TAWPTierJustinwrote on 02.10.2014:[10.0] "Since I started watching New Japan Pro Wrestling on a once in a while basis, I've really become a big fan of Tetsuya Naito! I've really gotten to easily see and know his moveset so quickly and his work in the ring is so tremendous! Plus he can also wrestle with somebody who is already phenomenal like AJ Styles and make him look like a million bucks! Also he has like a reverse Red Arrow looking finishing move which I really like too! To me, Tetsuya Naito has the whole package and has everything it takes to be the IWGP heavyweight champion and I hope he does hold that belt eventually!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: sevendaughterswrote on 20.05.2014:[10.0] "Let's get the bad out of the way first: Naito is not the greatest seller to step into the ring and his look, despite him being a face in theory, gets him more heat than respect. Right, now we've parked that, let's talk about one of the best wrestlers in the world right now. Let's talk about someone who tries every single match to work for the good of the match. He is so selfless: he can take any bump, he can pop up anywhere to take a hit, he contorts his body in recoil in ways that others would not dream of. His moveset is the perfect NJPW main event moveset: it's smooth and it tells the story of his life - some shout outs to Mexico, to his days as a junior, combined with some heavyweight flourishes and submissions. I can see why he's not huge: he lacks that visual charisma of Tanahashi. But he deserves to inherit his throne as King Babyface because he's capable of similar feats in-ring. His 2014 series with Ishii, his WK8 title match with Okada, the G1 Finals night matches, the NEVER defence v Tanaka - these do not happen by accident! Sublime."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: apc24wrote on 17.12.2013:[8.0] "Kind of like the Jeff Hardy of New Japan except he has more of a technical move set and instead of having potentially bad matches, he's very injury prone. He has a bright future in New Japan but it looks like the crowd isn't really into him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Kenshin Uesugiwrote on 13.11.2013:[8.0] "Seit seiner Rückkehr aus der Verletzungspause sehr oft zu Unrecht getadelter Wrestler von seitens mancher Fans. Angebliche Schwächen werden ihn angedichtet, solide oder nicht herausragende Matches werden als Indiz dafür genommen das er nicht bereit ist für den großen Spot und nun wird er auch noch unterschwellig dafür verantwortlich gemacht das die Fans bei einem Event nicht so reagiert haben wie es man bei einen Face erwartet. Ist für mich völlig unverständlich, sonder auch völlig überraschend. Was bitte ist an Naito anders als vorher? Ein neuer Move, mehr nicht. Er erinnert mich immer an den jungen Keiji Muto und da bin ich auch nicht der Einzige und spricht für seine Qualität. Die jetzt aufkommende Nörgelei kann ich mir nur erklären das man zu sehr verwöhnt ist von Tanahashi, Oakda, Suzuki und Nakamura Matches und Persönlichkeiten das man Naito als langweilig oder unzureichend empfindet. Allerdings hoffe ich dass man das selbe Vertrauen seitens NJPW ihn entgegenbringt wie einst bei Okada."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Mudamwrote on 16.08.2013:[10.0] "Naito is one of the new aces of NJPW. Talented in all wrestling styles"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Play2Xwrote on 21.02.2013:"Ich kann ihn leider noch nicht bewerten, dafür konnte ich nicht genug von ihm sehen. Ich bete einfach, dass er wieder zu 100% kommt. Alles was ich von ihm gesehen hatte war gut bis sehr gut!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Robert Taylorwrote on 12.01.2013:[9.0] "Es ist immer noch so unglaublich, dass er sich so schwer verletzt hat. Ab dem G1 Climax 2011 hat er einen riesigen Entwicklungsschritt durchgemacht und hat bereits einige richtig starke Matches abgeliefert, z. B. mit Nakamura, Tanahashi oder im letzten Jahr mit Okada. Ich hoffe inständig, dass er wieder auf 100% kommt, denn dann wird Naito in den nächsten Jahren eine große Rolle im Main Event von New Japan spielen, davon bin ich überzeugt. Steht bzw. stand bis zu seiner Verletzung direkt hinter Tanahashi und Nakamura, noch vor Leuten wie Makabe oder Goto."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Wolkywrote on 20.09.2012:[10.0] "Hat im Ring so unglaublich viel drauf, gibt Wenige die mit seinem Tempo mithalten können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Rated R Champwrote on 19.08.2012:[9.0] "Als ich den Kerl vor ein paar Jahren das erste Mal sah (damals noch bei einem Gastauftritt bei TNA) fand ich ihn absolut nichtssagend, doch nach dem was er seit dem Split von No Limit gerissen hat muss man einfach sagen, dass das "Stardust Genius" zurecht als Zukunft von New Japan angesehen wird. Stark im Ring war er ja schon länger, aber mittlerweile hat er auch merklich an Ausstrahlung hinzugewonnen und mehrfach gezeigt, dass er große Matches worken kann."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Excellence of Executionwrote on 08.10.2011:[9.0] "Handwerklich ist er schon jetzt absolut großartig im Ring. Ich persönlich würde es noch gerne sehen, dass er sein Selling, was den mimischen Aspekt angeht, verbessert. Er verkauft Schmerzen nur sehr unregelmäßig und oft beschränkt sich sein mimisches Selling darauf, irgendwie halbwegs platt zur Hallendecke zu schauen. Wenn er diese Schwäche noch ablegt, ist er perfekt für mich. Naito scheint im Moment der Shooting Star bei NJPW zu sein. Als er im Finale des G1 stand, dachte ich sogar eher, dass er gewinnen würde. Einfach weil er so over ist. Ich weiß nicht, ob ich mich da zu sehr von der Atmosphäre des Turniers beeinflussen lasse. Aber ich glaube Naito könnte mehr sein, als ein regelmäßiger Main Eventer. Bei Naito habe ich echt das Gefühl, dass er auf dem Weg ist, ein richtig fetter Draw zu werden. Er ist schon jetzt unglaublich beliebt beim Publikum. Wenn man seine Legendenbildung richtig angeht, könnte er eine tragende Säule nicht nur für NJPW sondern insgesamt für das japanische Wrestling werden. Ich kann es (noch? ) nicht näher begründen, aber bei Naito habe ich wirklich das Gefühl, dass er zum Star werden kann. Klar - es ist weitgehend nur ein Bauchgefühl - aber es ist absolut da."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Vampiro1992wrote on 20.09.2011:[9.0] "Naito ist "DER" aufgehende Stern am Himmel von New Japan Pro Wrestling. Sowol in Tag als auch im Single Wrestling reist er die Zuschauer in seinem Bann. Sehr schade das er den G1 Climax nicht Gewonnen hat, aber bei seinem Talent muss er nicht mehr lange auf den Sieg warten.... Mit Sicherheit ein kommender IWGP Heavyweight Champion!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Kartmanwrote on 17.08.2011:[9.0] "A young rising star, full of skills. For sure the future of New Japan."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Phoenix Downwrote on 20.07.2011:[8.0] "DER zukünftige Top Star für New Japan. Bringt jetzt schon alles mit was man braucht: Charisma, Talent, Ausstrahlung und das zeigt er schon so sehr das er selbst Tanahashi alt aussehen lässt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Hans Gruberwrote on 07.07.2011:[8.0] "Wohl zurecht ein kommender Main Eventer. Er hat die In-Ring Skills, und das Publikum liebt ihn. Die Entwicklung muss man aber erstmal abwarten. Im Moment (stand Juli 2011) macht er das aber hervorragend."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Obermackerwrote on 16.02.2011:[7.0] "Guter Mann, sowohl als Einzelwrestler als auch im Team No-Limit."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: STRIGGAwrote on 25.12.2008:[8.0] "Großartiges Talent. Bei der Veranlagung, die Naito zeigt, wird sich New Japan in den nächsten Jahren keine Sorgen um die Qualität des Wrestlings machen müssen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: AndyTNAwrote on 20.11.2008:[7.0] "Stark in allen was er macht! Für so einen Jungen Wrestler ein TOP."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: CTUwrote on 04.03.2008:[8.0] "Ganz großes Talent, der jetzt schon sehr viel weiter in seiner Entwicklung als als die meisten Wrestler mit ähnlich langer Karriere."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Rancorwrote on 04.08.2007:[8.0] "Am liebsten würde ich ihm direkt die volle Punktzahl geben, so sehr begeistert er mich in seinen Matches. Naito ist ein Riesentalent. Wenn er nicht plötzlich Koch werden will, ist er in ein paar Jahren ein Superstar der Junior Heavyweight Szene. Könnte auch sein, dass er zum Heavyweight wird, doch vorerst ist er in seiner Rolle als Young Lion Punk großartig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: ChocoboSagewrote on 27.01.2025:[10.0] "The Boss, built up to be an unkillable giant in Stardom and it worked so damn well. She hits hard, sells well and those strikes are amazing. Her MMA and Kick Boxing background really helps her character. Plus she's also fantastic at comedy and is very entertaining. Go watch her matches against Utami, Momo and Mayu. Then go back further and see her stuff with Shida and Kana."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Zak22wrote on 19.09.2024:[9.0] "One of the best of the current generation. Syuri can work a few different styles and has all the technical components you could ever want. Put Syuri in a singles match and it will 9 times out of 10 be a match worth recommending."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Gabiwrote on 04.08.2024:[10.0] "Syuri is the best striker in the world. Her in-ring is incredible and she just oozes charisma and aura. Syuri is just the coolest"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Joe907wrote on 19.07.2024:[10.0] "Syuri is a technical wizard. Her strikes are very good. Her skills are off the charts and insanely good. She delivers some of the greatest matches ever. Definitely one of the best women's wrestler of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Akyri0wrote on 18.07.2024:[10.0] "Pure badass. Perfect aura. Perfect in ring. Perfect charisma. Perfect theme song. Perfect duo with Giulia. The only thing I don't really like is the transition from Donna Del Mondo to God's Eye. DDM was peak Syuri and she's still ranked 10, that means a lot."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: StardomIconwrote on 12.05.2024:[10.0] "In my "Wrestlers I Would Not Want to Face in the Ring" list, the leader of God's Eye ranks near the top. Syuri is a former professional kickboxer and UFC fighter who delivers some of the best looking strikes in the wrestling. Syuri elevates talent around her because everyone looks like great sellers when getting kicked across the head by her. Bret Hart once ranked himself by three categories: look, promo, and in-ring ability. I'll be doing the same for Syuri. Beginning with look, it's obvious from first glance that Syuri is intimidating. There's no cutesy antics and humor involved - she means business from the second her banger theme music hits. She stays in phenomenal shape and has awesome entrance gear as well as ring gear. Her look is consistent with her character. As for promo ability, this is probably her weakest of the three categories, but she is more than serviceable on the mic. I personally enjoy listening to her and think she has more charisma than given credit for. However, just look at anyone that has made the jump from shoot fighting to professional wrestling, from Ken Shamrock to Ronda Rousey. Loads of charisma is not necessary for these types of wrestlers to get over. Lastly, Syuri's in-ring ability is where she excels. Unlike many shoot fighters, Syuri translated her skills to pro wrestling in tremendous fashion - whether it be flawless kicks or painful submission holds. She has amazing torque and speed when delivering kicks to her opponents and it's almost guaranteed they feel their match with Syuri for days after. Worth noting, she never shies away from taking punishment either. Syuri is the ultimate test for any wrestler trying to make it to main event level in Stardom. Syuri's match against Mayu Iwatani for the IWGP championship on January 4th, 2024 is not only my MOTY, it is the textbook definition of "struggle through competition"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Bar786788wrote on 08.01.2024:[6.0] "I find Syuri to be overrated and dull yes, but that is not to take away from her that she was one of STARDOMs best champions. I dont see the star quality or charisma that is there with Utami and Giulia. She still seems somewhat limited as a character and a worker and when I think of how STARDOM pails in comparison to the hey day of All Japan, Syuri being a top star in STARDOM feels like proof because she wouldve been a lower mid carder in the 90s."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Neko Juniawrote on 22.11.2023:[10.0] "Syuri is one of the best wrestlers in the world, of any gender. I started watching Stardom when she held the red belt and I want her to have it back. I simply love the realism of her matches, the strikes, the technique. Syuri has the ability to elevate anyone she works with. She also possesses underrated charisma and sense of humor."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Daigotsuwrote on 24.06.2023:[10.0] "Syuri felt like the final boss in Stardom during her Red Belt reign, and her matches and style were one of the things that pulled me into the promotion in the first place. She's absolutely top notch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: SienaArsenwrote on 20.05.2023:[9.0] "Great striker, great technical, good gimmick, awesome sellings, great matches ratings and a charismatic Unity leader. Syuri is (yes, she is! ) one of most complete artists in actual pro-wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: TerwilligerTheLuchawrote on 13.01.2023:[10.0] "Really not much to say here. Her ring work is incredible. Her character work is incredible. I have heard complaints about her being 'stoic', but I guess I'm more into these types of characters. Also, she had her moments outside of the ring where she wasn't all that stoic (drawing straws, Saki Kashima, etc). One of the best in the world right now, no question."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Black Mass With Lovewrote on 03.12.2022:[7.0] "Syuri's title reign as a Red champion is awful. Yes, she had good matches against Giulia, Risa, Maika and Utami, but most of her matches were just one of my least favourite types of matches. Stupid useless epic in the current NJPW style, where epic is done just for epic and nothing more. Tons of nonsensical big moves, bumps and nosell. Syuri is super uninteresting as a champion, everything she needs to do is fight, but this is not about personal feuds or interesting interactions, nothing. She calls herself "the woman who does things differently than the rest of the world". Okay, I agree, but I don't think it's something to be proud of. Her way to the top was much more interesting, but after that she became a terminator who just doesn't give a shit. Her nice run in 5SGP and title defenses against Maika and Utami made me rate her a 7, but before them she hardly deserved this."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: CoolKylewrote on 23.09.2022:[7.0] "I don't see much in Syuri. I'm kind of baffled by the response to the Utami match. Pretty basic stuff. Syuri has some clear limitations in the ring and it's surprising she's not better with her experience level. There are a way better workers in Stardom with less experience."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: killowenskillwrote on 24.07.2022:[6.0] "Syuri has always seemed very limited to me, I don't like this definition, because it never really characterizes a wrestler, but she really is that stereotypical type who "just hurts." I've heard this about Nakamura, but he has charisma and there is a character, Kana, who is almost the same generation with her, despite all her talent, tried to be interesting and extravagant, and the matches didn't end with her beating the shit out of everyone, she could entertain the audience and be very funny. Syuri may be very good for a mid-carder who has one small title race, but her role leads her to a dead end when interest is simply lost, and I don't even want to seriously argue whether she will defend the title next time or not. Her rivals don't get any effort, their characters don't defend themselves, Syuri easily experiences even legitimate tricks and moves to win the match and not even show how hard it was for her, and the quintessence of the absurdity of her booking is a match against Momo. My main complaint to Syuri is that she doesn't try to be interesting, and the hype around supposedly good matches tends to get lost, and Kota Ibushi once proved it. Right now, Syuri is the wrestler who, starting in a fun HUSTLE, is afraid to experiment, invent distinctive features for his confrontations, and win in some other way, except for full-fledged destruction, which will amuse her champion ego, but which won't bring anything to both the opponent and her, given that she already has the highest status, and she defeated everyone she could. Her current push just won't let her drop lower than the third or fourth person in the company, and her own stable has strengthened her even more, and if Syuri continues to be the way she is now, this is a very sad sign for me personally, as a fan of the promotion, who one day may just get tired of it."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: zags7000wrote on 15.07.2022:[10.0] "Probably the best women's wrestler in the world today and certainly in the top 3. Her physicality in the ring brings a level of realness along with her background that makes everything she does believable. Her storytelling is strong as well and overall, in the ring few can match her, and none best her. Her character work isn't the greatest but still passable and she does enough to be a star for one of the hottest companies in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: siffwrote on 20.02.2022:[10.0] "Syuri really hit the ground running in STARDOM and even being a big fan of her's I didn't expect her to have such an incredible 2021 like she did. She really became undeniable and worked herself into the top title. It's always nice when a push like that just develops naturally and out of great work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: DangoDaisukiwrote on 20.02.2022:[7.0] "Ich möchte so gerne ihre Matches genauso sehr mögen wie die meisten, aber ich verliere immer wieder das Interesse im Match. Ich komme vielleicht einfach nicht mit ihrem Stil klar oder vielleicht liegt es daran, dass sie für mich kein Charisma hat. Ich weiß es nicht und ich werde es weiterhin versuchen mit ihr warm zu werden. Sie ist definitiv eine gute Wrestlerin."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Lalo Camposwrote on 18.02.2022:[10.0] "The best female wrestler in the world in 2021 and 2022, since her days in HUSTLE as KG and their awesome matches with Iwatani and Fujimoto, Syuri is the total package"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: teenagehonvedfanwrote on 12.02.2022:[10.0] "An enormous dork who'll happily put a daft hat on or wrestle in a Mario costume against a pervert in a sailor suit, , , Syuri is without a doubt one of the best wrestlers and workers in Stardom who if needed could legit beat you into submission. She's clearly the workhorse in DDM but doesn't that that "rock star" look Giulia has despite being ten times the wrestler her stable leader is. Amended: She's gone from being up there with the best to being arguably the best wrestler and worker in joshi. Deserves a long run with the red belt and a feud with Mayu at some point."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: SquilliamFancysonwrote on 11.02.2022:[9.0] "Syuri is a top tier ass kicker and fiery babyface matched by few today. While her character can be a little bland, she has INSANE physical charisma."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: nWo-Joshi-Guywrote on 11.02.2022:[9.0] "An amazingly talented wrestler capable of performing incredible matches. Her character can be entertaining at times; but I personally find her to be a bit boring most of the time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Jaedynr5wrote on 10.01.2022:[10.0] "i've always been a very big fan of Syuri, but ever since her stardom debut, she's just been on a whole other level, her current run reminds me of Kurt Angle in a way, the former legitimate athlete that returned/joined into pro wrestling and were automatically great, even down to the tiniest details, like both being very suplex heavy wrestlers along with the way they can just transform from goofy to wrestling machines, but there's a lot i can say about her that i can't get into, so overall, great wrestler, lots of charisma, definitely watch her in 2022"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Suzukigunwrote on 30.12.2021:[10.0] "I've had her at a 9 for a while, but it's time to boost her up to a 10. In my opinion, she's one of the best wrestlers in the world. Her in-ring ability is flawless, she has charisma for days, she can go from hilarious to intense within a second and she has everything you want in a wrestler. Every time she's doing anything, she steals the show. Every superlative she gets, she deserves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Wright15wrote on 29.12.2021:[10.0] "Syuri is one of the very best wrestlers in the world. I never would have said that before she joined Stardom: while a few others praised her work years ago, I always saw her as just good, with great but unpolished striking and grappling. I am confident that as late as 2014 she wasn't near the level that she is at now. Whether her shoot boxing and MMA career improved her ability, whether she got better regardless, or whether I simply misjudged her ability, she is the perfect wrestler for post-2020 wrestling, an era where more and more fans are partial to technical grappling, nasty striking, and convincing expression."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Wrestling Foreverwrote on 18.12.2021:[10.0] "Aktuell eine der Aushängeschilder bei STARDOM und einer der besten Joshis der Welt schließt nicht Io Lücke ist trotzdem sehr wichtig für Stardom."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: NoSellwrote on 06.11.2021:[10.0] "Currently the best women's wrestler in the world and one of the best regardless of gender. Has a legit case for wrestler of the year and in my opinion she should be 2nd behind Shingo. Her body of work this year is absolutely insane, has great matches with everyone, had probably the greatest women's match ever against Utami, a classic against Momo, bangers against Iroha, AZM.. I could go on and on. She has to be the next Red Belt champion, she deserves it more than anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Smoothlywrote on 27.10.2021:[10.0] ""The Woman on a Different Level" as AZM called her has been exactly that in 2021: intense, entirely legit in everything she does and impossible to take your eyes off; the ferocity of her strikes, her poise and just her general aura says she's basically a walking war crime inside a wrestling ring. If you haven't seen at least one Syuri match this year you really have been limiting your enjoyment of pro wrestling as right now she is absolutely peerless!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Grissomwrote on 06.10.2021:[9.0] "Syuri bringt sehr viel Erfahrung mit und ihre größeren Matches enttäuschen so gut wie nie. Sie dürfte aus dem Donna del Mondo Stable overall die beste sein und ihre Karriere vor Stardom ist auch beachtlich. Sie bietet eine gute Mischung aus Hard Hitting Style, Submissions und Technik."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: No Onewrote on 27.09.2021:[10.0] "In the year 2021, Syuri has found herself to be a candidate for: Wrestler of the Year, Women's Wrestler of the Year (she definitely is the rightful Women's Wrestler of the Year), Most Outstanding Wrestler of the Year, Most Charismatic Wrestler, Tag Team of the Year (with Giulia), Feud of the Year vs. Utami Hayashishita, and Match of the Year (vs.Utami, Takumi Iroha, and/or Momo Watanabe, take your pick)... WOW! ... Based on the story being told, I already picked her to win the 5 Star Grand Prix in order to settle the score with Utami and finally get a winner... and Syuri should be winning the World of Stardom Championship at the end of the year, and should rule 2022 with an Iron Fist. She has become one of the true BOSSES of Joshi Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: inauricwrote on 04.08.2021:[10.0] "Currently the best in ring worker in the world of any gender. The kind of chain wrestler that also turns her opponent into an expert chain wrestler themselves, the most powerful and expressive striker currently working a ring, and someone who adds immense amounts of depth to any match she's in. She is a natural storyteller with every motion and expression, and she is also fantastic at passing this feeling and momentum onto her opponents. She is a star who is also a star maker - you can see this in her mentorship of Giulia among others. Already an all-time great with so much more to achieve."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: blastostgwrote on 28.07.2021:[10.0] "After returning to wrestling following a stint in the UFC, Syuri has been on an absolute tear in Stardom. She was always a solid in ring talent before but since joining forces with Donna Del Mondo, she has put it all together. Her grappling is brutal and technical, her kicks devastating and she is the Scream Queen of the Ring. While Giulia is the face of DDM and their leader, Syuri is their workhorse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: telmo777wrote on 07.07.2021:[10.0] "If Syuri does not deserve a 10, who does? ! Has the total package and is one of the best in the world right now. She is the most protected wrester in Stardom for a reason. Hard to imagine someone beating her clean nowadays. Former Artist of Stardom Champion and current SWA and 1/2 of the goddesses of stardom champions. Sooner or later she will be World of Stardom champion. Fights for the memory of her mother and there isn't a powerfull motivator than that. Gives everthing she has in the big matches and always steals the show."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: KazeNiNarewrote on 05.07.2021:[10.0] "We are 7 months into 2021, and I think it's fair to say, this is Syuris year. After finally settling in a promotion, and it being Stardom, Syuri has ascended to be recognized as one of the, if not, the, best female wrestler in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: nightswaywrote on 17.06.2021:[10.0] "It's been awesome to see Syuri have a great breakthrough in Stardom year after years of great work as a freelancer. Unlike a lot of MMA-based wrestlers, she's also got the charisma to stand out in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Kungwrote on 26.05.2021:[10.0] "Syuri might be the most underrated woman wrestler on the planet right now. She has a great look, she's great in the ring, she's a legit fighter, and she has the badass gravitas that almost no one else in Stardom currently has. Also, her recent turn to a psychopathic woman who constantly tries to kiss Utami is absolutely hilarious."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: ElPolloLocowrote on 10.05.2021:[8.0] "Imagine if KENTA could still go in the ring like he used to but used his present crazy character: that is Syuri in a nutshell. Her whole feud with Momo Watanabe was pure comedy genius topped by very good in-ring action. This wasn't supposed to happen because Syuri was not merely the last person one thought about joining Stardom, but also the complete opposite of her present character. From the DDM introduction based around a 90's sitcom to her "auditioning" for the Cosmic Angels literally nobody is safe from her. And that's before the match is even announced. I wouldn't be too surprised if she went on to hold every single belt in Stardom bar the Future one at one time or another because right now she's literally on fire."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: TeenageDirtwrote on 02.04.2021:[10.0] "She got her hands full of cards any many of those are aces. Ask her to be a bad ass technician or striker and she will. Ask her to be funny en she'll make you crack up. One of the best right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: KyleEnjoysWrestlingwrote on 07.03.2021:[8.0] "Syuri is one of the best in ring workers currently in Stardom. She can work with anyone & make it look good. While Giulia is the leader of DDM, Syuri almost acts as the group's enforcer -- being the one who is clearly the most proficient fighter. That aura about her is helped by her legitimate MMA experience. Having spent time in the UFC gives her appeal to western audiences who obviously are very familiar with that organization. To add to her in ring prowess, she has a great look & her wardrobe is always magnificent; especially her entrance gear. The red wings she sported at the recent 10th anniversary show looked exceptionally cool."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: rustybridgewrote on 22.03.2015:[9.0] "How someone so cute could be so good in the ring I don't know. But not complaining because she is great to watch. Good list of accomplishments for just 6 years in the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: 1goldcoinwrote on 19.03.2015:[8.0] "Syuri is cute and fun to watch in the ring. Another good Joshi talent with 7 title reigns and a tournament so far in her short 6 year career. I'm sure there will be more accomplishments to come."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Saphirwrote on 10.01.2014:[8.0] "Geht gut ab, mir ist bisjetzt nichts negatives aufgefallen. Taugt auch bei mixed Tagteam Matches."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Fountain of Misinformationwrote on 20.06.2012:[7.0] "Ohne Zweifel ein richtig großes Wrestling-Talent und so jung, dass da noch einiges auf uns zukommen wird. Für eine große Karriere ist jetzt bereits alles vorhanden."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Obermackerwrote on 13.12.2010:[8.0] "Cooles hardhitting girl, zuckersüß, aber gibt immer 100%!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Anas Kingwrote on 20.01.2025:[4.0] "Another case of an ok wrestler, who is tremendously hyped by the internet wrestling community. Was he good, yes. Does he deserve to be in the same category as some of the very best wrestlers in the world, the answer is hell no. A lot of people overrate his influence as well. I live in an Asian country, and I have yet to meet a person who knows him. He's deceased now, so I'm not going to say much bad stuff about him. But I'll just say, he'd the text book definition of being an OK wrestler. There's nothing wrong with being an OK wrestler THOUGH."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: chachuonlinewrote on 13.11.2024:[6.0] "A super influential figure in the world of professional wrestling, and mma to an extent. Though not widely famous in the U.S., his legacy as a trainer and innovator remains immense."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: manamimeltzerwrote on 12.09.2024:[7.0] "A true pioneer and innovator. His fundamentals were the key to his success as a professional wrestler. He helped develop so many elements and integral aspects of professional wrestling. His actual in-ring output is nothing fantastical but that doesn't take away from his legacy whatsoever."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: MainEventMasterwrote on 29.11.2022:[10.0] "Probably the most important wrestler of time, influential in Japanese wrestling, influential in producing shoot-style wrestlers, influential in the moves we see today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: TheOneAndOnlyCactuswrote on 13.09.2022:[10.0] "You don't get nicknamed the God of Pro Wrestling for no reason. Gotch's style and vision was key to the development of Strong Style in New Japan and what would be the genesis of MMA in the future. A refined technical wrestler with incredible strength, his legacy lives on thanks to the wrestlers he trained. Minoru Suzuki, Tiger Mask I, Yoshiaki Fujiwara, Tatsumi Fujinami, Antonio Inoki, Dean Malenko, Riki Choshu, Bob Backlund just to name a few."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: CoolKylewrote on 30.04.2022:[10.0] "He looks good in the little footage we have, but ultimately he's a guy who's legendary for his influence and vision rather than legendary matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: GriffinXwrote on 01.02.2022:[10.0] "Gotch's style was so key to the development of what we now call Strong Style from New Japan. It says a lot people called him the god of wrestling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Ma Stump Pullerwrote on 28.06.2021:[10.0] "There's not a lot of material to judge a guy like Karl Gotch, namely because a vast majority of it is untelevised and lost to time, or is in dark undercard matches in NJPW. What we DO know of the man was that he was probably one of the most refined classical wrestlers of his time, using a lot of old school technique taken from OG wrestlers like Frank Gotch and many more, had freakish strength (capable of throwing men way above his size over for suplexes with relative ease) and is probably THE trainer for Japanese talent. His regime of conditioning the neck and refining the body without weights would be the method used all the way up to the present day, as well as basically training almost everyone who was relevant for NJPW: Suzuki, Liger, Inoki, Tiger Mask, Fujiwara, the list goes on and on. Without him, we don't have shoot-style at all, so MMA wouldn't exist. AJPW in the 90's wouldn't be able to destroy their necks in Kings Road bouts. NJPW wouldn't have the strong focus on legitimising wrestling as more of a sport. He'd be known more if he hadn't chased himself out of America with his very stubborn attitude about what wrestling should be, but even with that in place, he's easily a legend even without access to most of his material, considering he basically set the seeds for Eastern wrestling for decades to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Jetlagwrote on 28.08.2020:[10.0] "Sein Einfluss ist natürlich kaum zu quantifizieren, ohne ihn gäbe es japanisches Wrestling und wohl auch MMA in seiner jetzigen Form wohl nicht. Gemessen an den paar Matches, die es von ihm noch auf Video gibt, war er außerdem ein absolut exzellenter technischer Wrestler, trotz fortgeschrittenem Alter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: JEK 1991wrote on 31.12.2018:[10.0] "Very skilled fighter! Wish I could see more of his matches on Youtube. He is exciting to watch. he was very successful in Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Viper99wrote on 23.04.2018:[10.0] "Ich kann ausschließlich seine New Japan zeit sowie einige Matches aus seiner WWE zeit bewerten. Karl Gotch ist ein wirklich exzellenter und sauberer Old School Wrestler und einer der größten und bekanntesten Gaijins in Japan. Er ist wahrlich der Gott des Wrestling und prägte des Wrestling wie kaum ein anderer. Er war seiner Zeit weit voraus und war ein Vorreiter von so vielen noch kommenden Akteuren, weshalb man ihm fast nichts weniger wie 10 geben kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Basket Casewrote on 28.01.2014:[10.0] "Eine Legende dieses Sports und trainierte unglaublich viele spätere Stars. Volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: JuliTheCage87wrote on 22.05.2013:"@NichtDieter: Achte mal drauf, dass du deinen Kommentaren entsprechende Bewertungen gibst und nicht 0 Punkte, das gilt auch bei Dean Malenko und weiteren, denen du ungerechte Abwertungen gegeben hast."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: treeofworldswrote on 01.08.2011:[8.0] "Hier traue ich mich nur eine 8 zu verteilen, da ich eindeutig zu wenig von Gotch gesehen habe. Was ich gesehen habe war aber höchst beeindruckend und allein wenn man sich mal überlegt wer aller von ihm trainiert und beeinflusst wurde, will ich mir gar nicht vorstellen wie es ums Wrestling heute bestellt wäre, hätte es Karl Gotch nie gegeben. R. I. P."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: RickRollwrote on 28.04.2010:[10.0] "Trägt zurecht den Spitznamen "God of Wrestling". Hat viel für das Shootstyle Wrestling getan und konnte auch im Ring mich extrem begeistern. "Revolutionierte" meinermeinung auch auch das "Old-School" Wrestling ein wenig.  Dazu war er auch außerhalb des Ringes sehr sympathisch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: LexLuger4everwrote on 20.03.2008:[10.0] "Der Spitzname kam nicht von ungefähr... ein Wegbereiter für so viele Stars, die ihm folgen sollten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: FreaKingwrote on 07.10.2007:[10.0] "Schade das diese Legende in Deutschland nicht so berühmt ist, wie es eigentlich sein sollte. Und das obwohl sein Move, der German Suplex, so oft gezeigt wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Bullit69wrote on 21.08.2007:[10.0] "Ich finds klasse, dass er dafür gesorgt hat, dass der German Suplex nunmal so heißt! R. I. P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Carlito Cenawrote on 29.07.2007:[8.0] "Und wieder ist ein Grosser gegangen. Allerdings kann ich mit seinem Ableben leben, welcher Wrestler wird heute schon noch 82? Voller Dank für den German Suplex: R. I. P."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: RockZauwrote on 29.07.2007:[8.0] "Selbst kann ich nicht viel zu ihm sagen, doch wenn die Japaner ihn schon als "God of Wrestling" betiteln und er Leute wie Tiger Mask und Inoki trainiert hat, dann hat das schon was zu bedeuten. Mein persönliches kleines geheimes (^^) Vorbild, denn er kommt aus Hamburg und hat es weit geschafft.. :)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: NothingGreatAboutwrote on 12.01.2025:[9.0] "È un concetto che non so spiegare bene, ma Minoru Suzuki ha street credibility. Qualunque cosa fa sembra assolutamente reale e dolorosa, ed il lavoro di interazione che fa tra il suo personaggio ed i suoi avversari è incredibile. Una leggenda."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: danzitorockwrote on 24.09.2024:[9.0] "Legendary wrestler, Suzuki is the definition of strong style. Very hard-hitter and with amazing martial arts techniques, such as grappling and submissions. One of the scariest and baddest man in wrestling, that still performs so well with an advanced age."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: jsbortswrote on 29.07.2024:[10.0] "Quite simply one of the greatest to ever do it. His impact on the industry is extraordinary in a way he'll never get credit for."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: crs285wrote on 27.07.2024:[10.0] "36 Years of entertaining fans and being one of the best wrestlers in the world. Legit badass as seen in his time in MMA and is able to adopt to a changing pro wrestling world and still entertain the fans. His strikes are great and he just has a [presence in the ring that is perfect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Willie 19200wrote on 24.07.2024:[9.0] "He's in his late 50s and he's doing it better than a lot of people currently, his AEW matches are never crazy good however he gets the job done, puts people over while still looking crazy tough in the process. Overall great wrestler that any company would consider using. Also I loved his recent match with Knosuke Takeshita. Also I didn't realize until recently how insanely over Suzuki is."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: deceivrwrote on 23.07.2024:[10.0] "The purity of wrestling is explained as follows: To make it look as cartoonish or as real as possible. This man is the example of both in combination. He is a menacing man to look at, to see, to watch wrestle, to maybe even talk to. The more you see him, the more you truly know of what he really is at heart: a master character. He is as real as it gets in pro wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: woolyshamblerwrote on 21.07.2024:[10.0] "pure evil, pure class. made an excellent transition from murderous catch wrestler to kobashi-esque old man wrestler who just does chops and facial expressions and still delivers great wrestling. what a man"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: WrestlingGuruwrote on 26.05.2024:[10.0] "Minoru Suzuki is one of those wrestlers that you watch and feel ok this guy is good but why is he so loved by everyone? The more you watch the more you fall in love with this man's work. One of my personal favourites heels from Japan that you absolutely have to cheer for. he's the man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Lutwiejwrote on 17.05.2024:[10.0] "Suzuki is incredible. The first time I saw him, I was scared as fuck because from the moment he walked out, I knew shit was about to go down. He's one of those guys who can scare you, making you hope your fan favorites will hopefully survive him. His aura is impeccable, matched by very few wrestlers today, or even back in the day. His presence is complemented by his stiff, technical, and really great in-ring ability, making him one of the greatest wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: colinmcevwrote on 08.05.2024:[7.0] "I've only seen a few of his matches, and most of them are more recent stuff, so I may change this rating as I become more familiar with him. As it is, I like his intensity and the aura of danger he brings to his matches, but overall he's not really my preferred style of wrestler..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Pigeon Scratchwrote on 29.04.2024:[10.0] "You don't fuck with Minoru Suzuki. He's genuinely just so striking and intimidating. There is no one like him, and he can really make any match he's in that would usually be completely bog standard bout into something you have to see, even if it's just to see him strike some fear into his opponents with his grin, his tongue, and his strikes. He's called Murder Grandpa for a reason. He seriously can do anything. He's fantastic for comedy due to his personality and striking presence and moveset, but also just as great for serious action for the same exact reasons. And even at his age, he's still fucking great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: BruceMarcos524wrote on 14.04.2024:[10.0] "One of the most intense pro-wrestlers that I had a pleasure of watching. Suzuki's hybrid of striking and technical wrestling makes him one of the most dangerous opponents that the guys wouldn't even dare to wrestle with. From the guy who came from Pancrase, one of the pioneer MMA promotions, he brought his legitimate toughness in the world of pro-wrestling and became one of the most badass guys in the ring. Although he doesn't have much catalogue of great matches, still his matches are enough to become watchable because of his intensity. Safe to say he is the best MMA to pro-wrestling transition athlete to date. His reputation makes you think that even guys that are bigger than him had no match against him. The way that he grins every time he took an offense makes him very terrifying. He is the type of guy who no-sells for a reason, daring you to hit hard as you possibly could only to get hit with a stiff strike at the end knocking your wind out. One of his amusing running gags especially his time in NJPW is coming every Young Lion and beating the crap out of them. Just simply his aura is intimidating, even you felt danger if you are in a same place with Suzuki. No gimmick needed, just being real and unfiltered is all it needs. Most of his opponents felt like facing Suzuki as some sort of badge of honor. Despite the intimidation, Suzuki is well-respected by his peers, and he can also be a goofball as proven by some matches where Suzuki is just having fun. In-ring, he is very agile despite his age nowadays and his strikes are very crisp and satisfying to watch. Glad that we have someone like Suzuki who at least brought some reputation to pro-wrestling and somewhat still treated as a sport where the industry has been treated as a novelty act nowadays."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TripleCrownwrote on 04.04.2024:[8.0] "Fantastic wrestler. Not quite at the ace level, but he's a very, very good wrestler to have in a promotion. Has a great look, obviously slowing down a lot now given his age and time in MMA & wrestling throughout the years."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Kai Kantewrote on 02.03.2024:[4.0] "Mittlerweile völlig limitiert und langweilig. Der Wrestler hat seinen Zenit überschritten und kann nur noch über Brawling Punkten, wofür ihm aber die Statur fehlt. Es ist definitiv Zeit in Rente zu gehen, die Ringhandschuhe an die Wand zu nageln und den obligatorischen Hut zu nehmen."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Samprowrote on 28.02.2024:[10.0] "The best giant japanese ! He frightens me, he attracts sympathy. He can do anything and fight anyone. The dream wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: ptomlinson98wrote on 11.01.2024:[10.0] "Legendary wrestler. His mystique has only grown the older he's got - his ability to convey full stories through his face is incredible. Scariest, baddest, cruelest man in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: JediSaiyanMaster1203wrote on 25.11.2023:[10.0] "In contention with Nick Bockwinkel for the best wrestler to be in their 50s, a man who has mastered "Strong Style" and doesn't let his age slow him down, having amazing matches with almost everyone you put him in the ring with. The "Murder Grandpa" being one of my favorite gimmicks in recent memory, always fun to watch young wrestlers give it their all to chop him as hard as they can and he always comes back 100x harder and seeing who can handle it or not. He's had many great matches with guys like AJ Styles, Bryan Danielson, Hiroshi Tanahashi, Kazuchika Okada, Kota Ibushi, Kenta Kobashi, and many more I could name, having incredible chemistry with these men. He's a great wrestler who showcases his striking abilities the most, but has shown that he can be a great submission based wrestler, a great technical wrestler for sure. His chops are some of the best and most brutal, they'd make Gunther and Wahoo McDaniel blush, it's always painful but hard to look away whenever he does them. Overall, Suzuki is a legend and everyone should bow down to him!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: skillgullwrote on 17.11.2023:[10.0] "Minoru Suzuki is great. He does so much with a limited moveset. One of the scariest Motherfuckers in the world, someone who could fuck up you big time. The fans love him, I love him. I'm always happy to see him even at the ripe old age of 55. Terrifying and one of my favourites"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Bullshark1wrote on 05.09.2023:[10.0] "This man has to be one of my all-time favorite Japanese wrestlers. Suzuki works his gimmick so well, and his in-ring work is impeccable, especially his match with Hiroshi Tanahashi in 2012. I'm also gonna miss his Suzuki-Gun stable, as it was my favorite group when it was around. I really wish NJPW would allow him to win the IWGP World Heavyweight Championship before he retires, because he's earned it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Khalid Acewrote on 09.07.2023:[6.0] "May be what I'd say have contradictions but I do believe he's underrated and in the same time I'd give him is a 6 but only for his recent work"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: ImWrestlingAndSoCanUwrote on 25.06.2023:"Undisputed legend. Deadly striker, veteran ring psychologist and an underrated comedian. His reactions when opponents underestimate him are incredible."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Doof Warriorwrote on 22.06.2023:[10.0] "Minoru Suzuki is a legend and even at his age with limited mobility he still can pull off a classic match and get crowds going. Not everyone ages gracefully like that and can maintain an aura about them even when they're mostly jobbing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Aliquickkwrote on 22.06.2023:[6.0] "If you love a very limited offensive style, if you love strictly chops and headlocks, if you love no sells, then you'll love this guy. If you actually enjoy a decent moveset, a guy that can take bumps and sell appropriately, and can actually move in the ring, you'll loate Suzuki. To me, he is one of the most overrated workers I've ever seen, and I truly don't understand the appeal. I appreciate strong style wrestling, but when you're exclusively limited to that style, you're incomplete in the ring and your matches become stale overtime."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Frank Shooterwrote on 02.06.2023:[9.0] "Murder Grandpa, the baddest wrestler alive, a complete psychopath and maniac, a madman who loves to torture his opponents and bully the young boys for fun, a master of grappling and terrifying hard hitting strikes. He achieved big accolades and a legendary status, but never got to be on that first line in NJPW, and he won't be at this stage of his career, which is a shame."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: MulderXFFwrote on 08.04.2023:[10.0] "The King! At 54, hes still one of the best in New Japan and is must watch every time. His wrestling skill is top notch and scary as ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: DarDawrote on 19.03.2023:"The King, one of the best old wrestler that Japan still have (and that's saying a lot). Badass, entertaining, matchs never disappoint : Minoru Suzuki is personally my favorite wrestler."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Logue38wrote on 09.03.2023:[9.0] "Understandably a legend and all-time great, but he doesn't quite reach the level of GOAT status, as I don't think he has many matches that I would consider all-time classics. He also sort of settled into a late-career persona that doesn't really allow for much variation or creativity in his matches anymore. He's menacing, but what else?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: texasyoshwrote on 31.01.2023:[10.0] "Minoru Suzuki, both an important figure in MMA and pro wreslting, is a pretty great heel wrestler. Great work in every promotion he's been in, and always consistent, even with his age. A legend of Japanese shoot-style, an excellent career that spans over 30 years. Best work is in NOAH and NJPW, but he has had great work in AJPW as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Daigotsuwrote on 16.01.2023:[9.0] "Suzuki still has an aura of menace and badassery, even at his age. I suspect he deserves a little higher, but I've only really been exposed to his work recently. He's still awesome, despite the limitations of a guy his age wrestling will naturally have."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: benh2wrote on 12.01.2023:[9.0] "An absolute badass. He plays his gimmick perfectly often leading to vicious matches in the blowoff to his feuds. Technically excellent which is to be expected after an MMA career and still physically strong despite his age. Quite mind boggling to think this guy was in Maeda's UWF well over 30 years ago and is still performing at a high level."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: MainEventMasterwrote on 14.11.2022:[10.0] "The perfect wrestler and the perfect villain, and he has really stepped up the last few years, becoming a standout name that everybody knows and that everybody loves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Tyler72wrote on 17.07.2022:[6.0] "I've always been excited to watch Minoru Suzuki and his matches, but I've never really enjoyed how he sometimes no sells some of the moves given to him. I know that this is sort of part of his tough guy attitude, but it really just ends up looking effortless and sloppy most of the time."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Golden Loverwrote on 11.07.2022:[9.0] "One of the best heel wrestlers of all time. Unbelievable intensity, carries himself so well and portrays grumpy sadistic murder grandpa better than anyone ever, yet he seems to be a genuinely cool guy, or at least I assume he is considering he has had his silly matches too which is another positive in my eyes. Total legend, one of my all time favourites."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Wright15wrote on 28.06.2022:[10.0] "A founder of Pancrase, pioneer of MMA, and dangerously talented grappler in his day, Minoru Suzuki has always been both an elite athlete and entertainer. His sadistic aura is practically unmatched historically: whenever his music hits, it's like the arena gets ten degrees colder. I have never seen someone hit his prime in his 40s and, if anything, just get better in his 50s. He is one of the most charismatic wrestlers I've seen, one of the nastiest brawlers I've seen, and one of the best promos I've heard. He has adapted to every environment that he has encountered without changing his character or style. An all-time great for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: AnthoTheKIDwrote on 23.06.2022:[10.0] "Minoru Suzuki is one of the gems of NJPW and wrestling overall. Don't let his smile fool you, he's one hell of a brawler/striker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Lcrossinwrote on 25.05.2022:[8.0] "Minoru Suzuki is really good and has some really fun matches I just don't think he's my optimal kind of wrestler, but I still acknowledge that he is very good, and that there's a reason why he is rated so highly."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Wrestlekingwrote on 15.04.2022:[10.0] "An absolute legend in every way. His authentic style is so amazing and fun to watch. Minoru Suzuki is an accomplished wrestler and mixed martial artist. He is one of the greatest heels of Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Wrestling Foreverwrote on 05.04.2022:[10.0] "Wo ist denn hier der Kommentar wieder hin. Badass total er kann so ein A... sein und ist so fies und respektlos zu seinen Gegner. 33 Jahre ist er schon im Ring aktuell ist er 53 Jahre alt aber wo sieht man das? Eine Legende in Japan ist er längst schön das er auch wie 2021 wieder ein US Tour macht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: FallDogswrote on 25.03.2022:[10.0] "No one scares me like Minoru Suzuki does. From the moment the bell rings you know you are about to watch your favourite wrestler be torn apart by the grumpiest and scariest murder grandpa alive."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: rigb111highlightswrote on 21.03.2022:"One of the best wrestlers to ever exist. Great in ring work and great story telling. Overall a greatest of all time contender."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: GriffinXwrote on 22.01.2022:[10.0] "Murder Grandpa. A much needed link to the past in the morden world. Using great strikes and submission only he knows these days. Even if you don't know his history in wrstling or MMA the guy has that aura that tells you "This man is dangerous""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "Despite being 53, Suzuki can't fairly be judged as a veteran. His style is extremely workable, and he can do so much with so little. Presence, charisma, facial expressions, they're all as valuable to Suzuki as his in-ring striking. His 2021 only really started half way through, with the NEVER Six-Man title challenge, but then he crammed so much in. His out-of-nowhere match against Danielson is a top five MOTY for me, and his DDT six-person tag was another surprisingly brilliant affair. He remains a hugely important piece of the pro wrestling landscape."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: HighFlyDeathcorewrote on 29.11.2021:[10.0] "The King and the Murder Grandpa. He has a scary stiffness and the unique ability to literally have a good match with anybody. I loved his work in every company he has ever been in. Also a submission expert that makes even Bryan Danielson flinch. i havent watched millions of his matches but i did adore his matches with Nick Gage, AJ Styles and Tetsuya Naito"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: IBladeDailywrote on 21.10.2021:[10.0] "One of the scariest and most convincing heels in the history of the business. His in-ring work is fantastic and, even in his mid-50's, he is still having incredible matches with people like Bryan Danielson, Shingo Takagi, etc. He's built a wordwide reputation while only occasionally venturing out of Japan. 30+ years in the business and still one of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: WrestlingOctopus72wrote on 04.10.2021:[10.0] "The King. Complete package, real deal. Proven against the toughest of opponents. Versatile to all styles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Jaedynr5wrote on 04.10.2021:[10.0] "this man scared me when he was 30, and if anything, scares me more now that he's 53, this man is an absolute force of nature, you don't even try to fight it when he comes around for anything, i also love how he's the only guy i know that New Japan lets do freelance stuff even though he's mainly in New Japan. great wrestler, probably one of the most intense wrestler's i've ever seen, and hearing his music alone gives me chills every time it hits"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: IFeelLikeAi3wrote on 12.09.2021:[10.0] "The Murder Grandpa, or as I like to call him, The Murker Grandpa, is one of the best workers and shooters in all of ProWres history. This is who you go to for matwork, a murderous technician who will scare your boots off in the ring, leaving them unlaced. This is what happened to Osamu Nishimura. Fear him. He is a wrestler for who everyone is a great rival, but his series with First Tiger Mask particularly sticks out. A true son of Inokiism, he has cultivated his own philsophy of Grandpa~ISM~. Murder Grandpa is so feared and so dangerous, that his brutality not only destroys his opponents, but also promotions. His singles competition against MMA Legend Yoshihiro Takayama in NOAH, is a master class in how to Shoot. You could expect nothing less from the King of Pancreas."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: AdamOmegawrote on 10.09.2021:[10.0] "The King is an absolute murderous bastard that will take your favorite wrestler out limb-by-limb. His submission work is 10/10 (in prowrestling and in IRL), his striking though his weakest part IRL is his weapon of choice. He enjoys taking damage and he enjoys delivering damage. Trained by Gotch. Extremely respectful offscreen. Respected and feared by all. I cant remember anyone who was or is as great as him in his age."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Surelywrote on 10.09.2021:[10.0] "He's past 50 and clearly immobile to a certain degree and he still kicks all kinds of ass. Just a phenomenal pro wrestler in every way."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Suzukigunwrote on 09.09.2021:[10.0] "Look at my name. Do I need to say anything else? Suzuki is a legend through and through and deserves this rating."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: SmartForceOnewrote on 17.08.2021:[10.0] "When talking about wrestlers who were late bloomers, Minoru Suzuki has to be at the top of the list. Putting on his best work in his 40's, Suzuki was one of the best wrestlers in the world throughout the 2010's. Even at age 53, you could put Suzuki in the ring with just about anyone else and believe that he could kill his opponent if he wanted to. A model example of how to be great at an advanced age."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: FightForeverwrote on 27.06.2021:[10.0] "Suzuki is one of the greatest and most believable wrestlers of all time, amazing submission and limb work. Along with amazing heel work, promos, and just all around wrestling. Even into his 50s hes a huge badass and legit scary, extremely consistent. I just can't not rate Suzuki 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: SoaKaswrote on 14.05.2021:[10.0] "Suzuki is one of the greatest of all time, no discussion about that. His wrestling style, his presence and his charisma make him incredibly unique and a joy to watch. His matches are very versatile but nearly all of them completely deliver. I simply can't rate him less than 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Legend003wrote on 15.03.2021:[10.0] "Für mich einer der besten Wrestler aus dem japanischen Bereich. Unglaublicher tougher guy und ist im Ring auch noch in seinem 50s wirklich gut zum Anschauen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Kungwrote on 02.03.2021:[10.0] "Quite simply one of the most legit tough guys in modern pro wrestling history. Even into his 50s, Suzuki is still one of the scariest guys in the industry and one of Japan's all-time talents. I don't know where New Japan would be without him. Also, check out the stuff he did in Pancrase back in the early 90s if you haven't already!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: michmoose21wrote on 08.02.2021:[9.0] "Suzuki is an amazing heel, and a top stiff worker in the world. One of the scariest men in wrestling, and is willing to put others over."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: medousewrote on 29.10.2020:[10.0] "Probably the greatest martial artist in the world. Well known for his brutal and vicious wrestling style. After more than 30 years in this business he is still the best wrestler, both technically and from personality angle. His matches are always at the highest level. This guy is a true gem."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Makai Clubwrote on 24.10.2020:[8.0] "Minoru Suzuki is a tough cookie to really rate. Most of his wrestling career has been done outside of his physically peak due to him leaving pro-wrestling in 1993 for Pancrase and he didn't really return properly until 2004. Suzuki has always showed signs, after all he was trained by some excellent wrestlers like Yoshiaki Fujiwara but suffered due to being unable to really adapt back to wrestling for a good while. Suzuki was great at projecting his personality and using his legit skills to further his matches, somewhat, but his matches had a tendency to go far too long and be rather empty. His legit work took years to translate despite having some quality matches during that time. It was never consistent. Once he was able to fill in his downsides, Suzuki became a pretty awesome wrestler. From 2011 onwards - basically once he took over Kojima Army and formed Suzuki-Gun - he turned into a very outlandish attaction. His matches was able to blend his legitmate aura and pro-wrestling drama superbly well. His matches with Hiroshi Tanahashi captures that really well. And not just the KOPW match, but his Wrestle Kingdom match as well. While I don't think Suzuki suits being a long term main eventer, as he's more suited to limited title matches to protect what he brings to the table (the NOAH run would show you what happened when you over expose his style of match), he is someone well worth keeping on your roster."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: rainmakerpunkwrote on 20.10.2020:[10.0] "One of the best and most unique performers ever, in NOAH and in AJPW, at the age most normal human wrestlers would be at their prime, Suzuki was good, but far from the talent he could be, however in NJPW, in his 40s and 50s, when most people would be practically done, far past their prime, Suzuki entered his prime and worked better than ever, and still doesn't seem to be slowing down, he's an incredible heel, in the conversation for best heel ever, his striking game is top tier, his submission work is flawless, and agression is better than anyones, he works a different style of matches than anybody else and is perfect at it"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: brandon062896wrote on 18.10.2020:[9.0] "Remarkable athlete for his age. His matches are hard hitting slugfests, and those are always fun to watch. I'd love to see him as IWGP Heavyweight Champion despite being one of the oldest members of the NJPW roster"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: BlakeFR37wrote on 25.09.2020:[10.0] "G. O. A. T, the four first letters coming in my mind thinking about Minoru. He still one of the best and every f***ing wrestler should call him Daddy. Some tears would appear in my face when i will learn about his retirement. A legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: qveenovhellwrote on 25.09.2020:[10.0] "Simply one of the greatest of all time. Continues to perform into his 50s as naturally as peers 20 years younger than him. Suzuki "in his prime" is simply Suzuki at any point of his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: lee wilkinsonwrote on 29.07.2020:[10.0] "One of the absolute best! No other wrestler has been that good into their 50s. I could just watch him giving stiff shots and terrorising fans, referees and young lions all day. Here's to many more years terror and Suzuki-Gun"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Okaro143wrote on 02.02.2020:[10.0] "This guy is just so good consistently delivering everytime he is in the ring. Considering he is 50+ yrs old, he is so damn good. I love his matches with Okada, Tanahashi and also the one he had with AJ at 2014 G1 Climax."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: FogsCutterwrote on 25.01.2020:[10.0] "He is charismatic, vicious, and dangerous. The only thing that he needs is the IWGP Heavyweight Championship. Great Wreslter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: VillainClubwrote on 23.12.2019:[10.0] "Sehr guter Wrestler der trotz seines alters immer noch gute Matches abliefert. Seine Rolle nimmt man ihm ab und er wirkt totz vieler Niederlagen um den Heavyweight Titel noch wie ein glaubhafter Herausforderer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Hippykillerzwrote on 27.10.2019:[10.0] "What can be said about this legend that hasn't already been said! A trailblazer in every sense of the word, he has been one of the most important and greatest wrestlers not only in Japan, but in the world. It's a shame that he never had a run as iwgp champion but in a strange way, it helps cement his untouchable legacy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Same Old Same Oldwrote on 13.10.2019:[10.0] "An unbelievable talent, a modern legend and a marvel for his age, Suzuki is easily one of my favourite wrestlers of all time. As one of the few workers who can consistently pull off "legitimate badass" look and workrate, Suzuki is a top tier striker, brawler, tag worker and submission specialist. Even at his age you could easily buy him as a real contender for all his opponents and doesn't currently show any signs of severe wear and tear at this stage. His match history and quality also speaks for itself, All Japan, Noah, MMA and of course New Japan, in the case of the latter sadly making him criminally underrated at the same time for not holding the IWGP Heavyweight Championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: KyleEnjoysWrestlingwrote on 06.08.2019:[5.0] "Never really saw the appeal in this guy. I know he's a legit shooter, but he also seems like a legit piece of crap. His matches are mostly one-note with very few exceptions. People love him because he's stiff. But as far as I'm concerned, I think a Bret Hart fake punch looks much better than a Suzuki real punch any day of the week."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: SZ1989wrote on 22.07.2019:[10.0] "Minoru Suzuki will be remembered as one of the greatest wrestlers to ever grace professional wrestling in Japan. He was a leading pioneer for shoot-style, and proved his worth when it came to actual MMA in Pancrase. His career longevity and consistent contributions to the list of all-time great wrestling matches, including the match that perhaps sparked NJPW's revival with Hiroshi Tanahashi, should speak for itself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: NEVERoverweightChampionwrote on 04.07.2019:[10.0] "He is a great brawler and sometimes seems to be mostly recognized by western fans for his strikes but while he is good at beating the shit out of his opponents, he is above all one of the greatest technical wrestlers ever, trained by absolute legends, representing a prestigious legacy. He is a relatively simple character but knows how to make it work perfectly. Intelligent wrestler, every moves he does feels important, he is one of the masters of limb working and psychology. Wrestled more or less everywhere in Japan, is a precursor of MMA... simply a legendary wrestler with a remarkable longevity. He obviously can't bump too much anymore but finds a way to work around that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TheFrenchDisasterwrote on 03.07.2019:[9.0] "Suzuki is really scary, if he's in front of you, you shit yourself on, literally. Just see what he did to Kana, he even hit his own partner. He does not hesitate to hit Young Lions and he managed to build a legit monster reputation. At the same stage as Ishii, he is one of the best fighters in the history of Wrestling and the most scary man on the Planet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: neat o wrasslinwrote on 18.06.2019:[10.0] "Hands down the best shoot wrestler.  Despite limited athleticism, Suzuki mastery of shoot technique makes every match he is involved in worth watching.  Usually if a 5'10 wrestler is booked as a monster it does not work, but for Suzuki it works perfectly."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: ZestyZuluWarriorwrote on 10.06.2019:[10.0] "Minoru is as tough and scary as they come. Some an absolute tank of a fighter and one hell of a brawler. I feel bad for anyone who ever has to step in the ring with him because they're about to get the shit beat out of them by one mean s. o. b"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: PuroresuLoverwrote on 07.06.2019:[10.0] "The most terrifying man in planet Earth. He is the Ultimate Heel, no one can be like him. His technicians and brawling skills are something from another world, like I said, no one can be like this supremed god-tier wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: BadAssTranslateTradingwrote on 28.05.2019:[9.0] "Suzuki has been phoning it in since 2015 but what he did from 2003-2015 shouldnt be ignored. His 1st New Japan run and his All Japan and parts of his Noah run was all top tier stuff. Without doubt a living legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "Despite beign 50 he is still the most terrifying man in all of NJPW. He is brutal and he is the leader of Suzuki-Gun. He has also had so many good matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: AlexLikesJoshiwrote on 08.04.2019:[7.0] "He's pretty overrated 10 should really be saved for elite level wrestlers which Suzuki is not.  He can have great matches with the right opponents but can also have some extremely boring matches.  His MMA background has helped him stand out in NJPW but he hasn't used it as well as others would have.  Overall a good wrestler but not a special talent"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: zephyrwrote on 19.03.2019:[10.0] "Bumping his rating up to a 10. Great in the ring for multiple decades, great promos, incredible scary aura, great long-term character building; this guy is pretty much the complete package."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Kevin41182wrote on 14.02.2019:[9.0] "Suzuki is one of the most deserving members of the New Japan roster that should get an IWGP Heavyweight Title run. Most talk about his hard-hitting "strong style" when it comes to Suzuki and while I agree that he may be the best "strong style" wrestler in the world today, many don't mention Suzuki's work ethic and leadership skills. Suzuki really deserves to go out with a bang so GEDO, what are you waiting for, give the man a title run already!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TheRatemakerwrote on 16.11.2018:[10.0] "A legend in every aspect, pancrase and pro wrestling. Charismatic leader of his stable, can put some real classics at 50yo (Hi HHH, Undertaker & co)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: KINGwrote on 09.11.2018:[10.0] "I'm so in love with this brutal maniac, one of the best MMA fighters of his generation, back when MMA wasn't cool, he's such a badass, his submissions are so badass, his post match interviews are so badass, even when he loses he's so badass. True, he's old as hell. True, some of his matches see too much involving of his Suzuki-gun pricks. But even if he makes a boring match, would you say that to his face? I wouldn't cause I care about my life."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: RatingsMachinewrote on 15.10.2018:[9.0] "Minoru Suzuki is a unique creature; there just isn't any wrestler like him on the major league level. His style and his physical state mean that Suzuki does have some limitations, hence him only getting a 9, but within those limitations, Suzuki is more than capable of having excellent matches. And his personality and charisma is great as well."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Tomlou12wrote on 17.09.2018:[10.0] "What can you say about Minoru Suzuki that hasn't already been said? A founder of the Pancrase organisation, his MMA background has earned him the status of one of the most feared heels in Pro Wrestling, and he's one of my favorites. His stiff, submission based style is one that I enjoy watching and I really appreciate his calculated joint manipulation. Just an absolute badass. On top of all of this he's a great wrestler as he's proven in his matches against the likes of AJ Styles, Kazuchika Okada and Hiroshi Tanahashi all of these are potential 5 star matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: taabr2wrote on 12.09.2018:[10.0] "The best heel in wrestling today. Suzuki is one scary motherfucker. An amazing in-ring worker whose style completely compliments his gimmick. It's amazing that even at the age of 50 the guy can still go at an elite level when put into certain situations. An absolute legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: arrancarwrote on 22.08.2018:[10.0] "For me, Suzuki has never been one of the 'absolute' greats. Now, he's absolutely still one of the greatest ever, and has a ridiculous number of great matches, but what I mean is that I can't think off the top of my head of how many matches he's had at what I consider a ****1/2+ level (my cut off point for 'greatest of all time' matches). I've seen all the matches usually pointed to as his 'classics', and I've thought they're mostly great, but not some of the greatest matches ever. Suzuki is much like Kawada in this sense though, as although he hasn't reached the absolute pinnacle of in-ring work he still has an absurd number of great matches under his belt. You throw this guy in a singles match and let him run free and he's sure to give you an easy ****+ match. Heck, throw him in a tag match and he'll totally steal the spotlight. This guy is the perfect villain. The curvatures of face give him a very distinct, terrifying look. The way he snarls he face or lets out a mocking, sycophantic laugh has made for some of the most iconic visuals in all of wrestling. You can't watch a big Suzuki match without remembering every detail of how he looks. His offence is, of course, outstanding. Having a legit MMA background means that his strikes, his submissions, and his general grappling are all A+. He can beat someone to a pulp and then grind their limbs off. He's 50 years old and still putting on plenty of great matches. I'm still looking for those top top matches of his, but he's had enough top matches alone to cement himself as one of the greatest wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TheLoudMouthwrote on 18.07.2018:[9.0] "Der wohl überzeugendste und realistischste Heel-Wrestler in Japan, ihm kauft man seine Härte bedingungslos ab. Zudem keinerlei Abnutzungserscheinigungen im hohen Alter, denn Suzuki überzeugt immernoch auf vollster Linie - nein, er hat sich in seinen 40ern sogar noch immens gesteigert. Herausragender Worker all around."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: My Bloody Doobwrote on 15.05.2018:[8.0] "I think I've finally come to terms with admitting I am not as in love with Minoru Suzuki as I thought I once was. Completely respect what he did for the MMA world, but in wrestling.. he's just good. His character work is superb of course, but there's something about his ring work that just doesn't really catch me, unless he's working with a more talented wrestler. And that's probably the disconnect I have with him, in that he is more of a fighter, and really excells at it, than his is a wrestler. Just look at his work in the 2000s which was mostly mediocre. It is only recently that he has garnered lots of praise because of his matches with aforementioned talents like Okada and Tanahashi. "Overrated" isn't a word I would use for him, rather underwhelming most of the time is a better word. He saves his bump card for the big matches a few times a year, and then everything else can just be average work. By no means is he a detriment to New Japan, but I wouldn't say he's a very valuable player either."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: LrockBesnarwrote on 22.04.2018:[10.0] "This man is one of the most realistic heel wrestler of all world wrestling history. He is good at the ring, but for me, his most important feature is acting skills. Minoru Suzuki is not just a good wrestler, he is a terrific actor. He makes the story of his matches very real because he adapts himself very quickly to them. Even though he's an old man, he's still the one who managed to keep his charisma and his power in the ring. I love him. People who play bad roles are very good people in their real life. He is probably a good guy outside the ring. God bless him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: stc13wrote on 26.02.2018:[8.0] "His longevity alone is impressive.  He's a legitimate bad ass who has put together an impressive body of work."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Speeblewrote on 18.02.2018:[7.0] "Truly the best in the world at what he does. A legit badass that carries himself like one. His matches are more hit and miss than any other NJPW main eventer. There really is no predicting the quality of his matches, and that can't always be attributed to interference from Suzuki-gun. When he's on, though, there's nothing else quite like it."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: The Big Blue Machinewrote on 30.01.2018:[10.0] "The Lonely Warrior is, still at 49 years old, one of the most complete and impressive wrestlers in the world. Thanks to his marvelous submissions, his dangerous but beautiful Gotch-Style Piledriver and his flurry of strikes, Suzuki has become a legend of puroresu, and one of the most recognizable heel in the business. If you don't know who Suzuki is, you still don't know what japanese wrestling is all about."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: JokeyZockeywrote on 29.01.2018:[10.0] "KAZE NI NARE! Einer der wohl markantesten Theme-Songs der Wrestling-Geschichte! Und dahinter steht ein Mann, ein Phänomen, eine Legende: Minoru Suzuki, der Einsame Krieger! Suzuki zählt ohne jeden Zweifel zu den technisch besten und vor allen Dingen authentischsten Wrestlern aller Zeiten! Als MMA-Pionier ein absoluter Submission-Sensei, was er in jedem seiner Matches immer wieder eindrucksvoll zur Schau stellt und seine Gegner nach Strich und Faden und mit absoluter Stiffness verdreht, verbiegt und zermürbt! Doch das alles wäre nicht halb so gut, wenn nicht sein großartiger Charakter wäre! Suzuki ist einfach angsteinflößend, diesem Mann möchtest du kein Unrecht tun, du schaust ihm in die Augen und siehst nichts als eine mit purem Sadismus gefüllte schwarze Seele! All diese Aspekte harmonieren mit seinem In-Ring-Work so dermaßen perfekt, dass Suzuki am Ende des Tages stets als einer der besten Heels der Welt da steht! Grade letztes Jahr haben er und vor allem seine Matches zwar ziemlich unter den dauerhaften Suzuki-gun-Shenanigans gelitten, aber wenn die mal ausblieben, packt der Mann mit der schlimmsten Persönlichkeit der Welt sein Können aus und zaubert Klassiker auf die Matte (gegen Okada im Climax oder gegen Tanahashi bei New Beginning in Sapporo). Fazit: Suzuki ist einfach eine Legende in nahezu allen Bereichen, viel mehr muss man eigentlich nicht sagen, alles außer 10 Punkten wäre Blasphemie! I HAVE TO BE A LONELY WARRIOR TONIGHT!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Dragon Fighterwrote on 30.11.2017:[9.0] "KAZINARE ! The worst personality in the world who has the best theme song today. An asshole, a badass motherfucker for sure. The pioneer of MMA, the founder of pancrase. You can not deny his contribution to both MMA and Puro. Excellent fighter and wrestler using a lot of submissions. In theory, he easily gets 10. Unfortunately, I only give 9 because his current NEVER title reign is a total DUD. Very lazy booking and sub par wrestling. Other than that, he is fantastic."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TooSweetPhilwrote on 27.11.2017:[7.0] "Suzuki ist praktisch ein Wrestling Mysterium. Wie kann jemand, der einfach nur einen abscheulichen Charakter spielt, doch so over bei der Crowd sein? Sein Ring Style hat er perfektioniert, so findet er die perfekte Mischung aus Strong Style und Submission Wrestling. Ebenso perfekt ist seine Mimik, als auch die Psychologie die er durch sein Charisma in jedes Match ein bringt - bewegt sch mit knapp 50 im Ring genauso als ob er noch jungfrisch wäre. Von mir gibt's 9 Punkte! UPDATE: De-Rank. Aktuell geht mir MiSu tierisch auf die Nerven. Ebenso wie ganz SZKG. Die Eingriffe und der Bullshit wird unfassbar langweilig und monoton. Deswegen leiden auch seine Matches. Von meiner 9/10 muss ich jetzt ganze 2 abziehen. 7/10"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: LonelyVillainwrote on 06.11.2017:[10.0] "Greatest asshole in wrestling, so physical it’s almost abuse, fantastic theme and I won’t rate him lower for fear he might hunt me down"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Vancouver Victiniswrote on 05.11.2017:[10.0] "Suzuki is So good he needs suzuki-gun to interfere so he can stay a hated heel. that is how amazing he is at wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Cleanerwrote on 17.09.2017:[10.0] "Minoru Suzuki ist fast 50 Jahre alt und immer noch ein fantastischer Wrestler. Alles fängt bei seinem so stimmigen Entrance an, über seinen einzigartigen und bedrohlichen Look, über die ganzen Psycho-Elemente, die er immer wieder in seine Matches einbaut, über das tolle Stable um ihn herum bis zu einem astreinen Ring Work. Ein bislang bockstarkes 2017 bestätigt die Höchstwertung nur"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: LosIngobernablesdeUKwrote on 08.09.2017:[10.0] "One of my current fave wrestlers right now. He's such an amazing sadistic, psychotic heel that he scares the shit out of me & I'm not even in the arena. His matches are so so good & seeing him beating the shit out of his opponents is so entertaining. He also has one of the best themes ever made. I hope, hope he becomes IWGP Heavyweight Champion someday even if it's a short one. It would be a great way for him to go out."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: xPETERxwrote on 15.08.2017:[10.0] "Ich wiederhole mich hier zwar, aber der Typ ist noch unglaublich beweglich. Bspw wenn er den Armbar am Toprope auspackt und sich nach hinten rückwärts abrollt. Look, Mimik, Gehabe, Entrance (wo er immer passend die Stelle abwartet bis das Publikum shoutet, und dann durchs Seil huscht). Einfach ein Badass. Die armen Young Lions in seiner Nähe ;) Klassische Ausraster werden an denen ausgelassen, oder die Absperrung muss nach Matchende dran glauben ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: ChristianMB1wrote on 27.07.2017:[7.0] "Good heel work, but, in a company where athleticism is key, he lags behind a lot of the great main-event talent."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Headlockwrote on 24.06.2017:[10.0] "Minoru Suzuki ist soetwas wie der Anti Held von Pro-Wrestling. Er ist ein toller Heel, aber gleichzeitig so cool! Im Ring fantastisch, selbst mit 50 Jahren ein wahrer Meister seines Fachs. Und die Kleinigkeiten die er im seinen Matches einbaut machen jedes MiSu Match zu was besonderem, vom gloreichen entrance ganz zu schweigen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: NikoWrestling7wrote on 05.06.2017:[9.0] "MiSu is on a great run, hopefully he'll be able to win the IWGP Heavyweight Championship before he eventually retires. One day."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Chekerwrote on 23.02.2017:[10.0] "The godfather of MMA, alongside Masakatsu Funaki. Excellent wrestler, excellent brawler, the meanest aura I have ever seen in any wrestler ever, great promo. I don't know what more you can ask from a pro wrestler. Suzuki has done *almost* everything... I'd still like to see him hold the IWGP HW title at least once."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Jrod3160wrote on 20.02.2017:[10.0] "My favorite puroresu wrestler ever and one of the best of all time in my eyes and at the age of 48 hes still one of the best in the world fantastic match with okada last week proved it one of the most ruthless bad ass wrestlers you'll ever see grace a ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: JubileuFishwrote on 07.02.2017:[10.0] "He is so fucking rough. He will beat the living shit out of you and do it while laughing. Tamo junto Danny, VWO. He is just so fuking badass."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: SanthoshVNwrote on 09.12.2016:[10.0] "Minoru SUzuki as far i seen him wrestling this man has the ability to give MOTY candidates all day long. He has a good experience and good record in MMA and he even puts them in his style of wrestling, finest brawler, submission specialist and dagerous striker and uses the Piledriver also well. His bouts with AJ Styles, Marufuji, Tanahashi and Nakamura are suggested to watch"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: akm0wrote on 18.10.2016:[10.0] "The baddest man on earth.  Suzuki is just a phenomenal wrestler. His striking ability is ridiculous, his technical ability is outstanding and everything he does is just a work of art. I don't understand why he never won the IWGP Hvt. title, since he is a perfect example of how an heel should work. His recent work in NOAH was good, especially his feud with Marufuji, not to mention his matches with Tanahashi and AJ Styles which are a clinic on in ring psychology. I also love his finisher to death, as well as his music. He's also probably the wisest wrestler in the business right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Viper99wrote on 10.09.2016:[10.0] "Minoru Suzuki ist ein fantastischer In Ring Performer! Suzuki ist ein nahezu perfekter Wrestler, welches jedes Match worken und aufwerten kann. Am besten ist er in Matches gegen absolute Babyfaces, wie Tanahashi, wo er sein komplettes Potential als "Arschlo**" ausschöpft und seine gegner nach strich und Faden vermöbelt und ihnen jeden knochen einzeln brechen will."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TheWrestlingFanwrote on 21.07.2016:[9.0] "Suzuki is just amazing. His in ring work combines the technical prowess of his MMA background and the aggressiveness of an ultimate heel which makes it look devastating yet astounding at the same time. Even if he is reaching his 50, he has not been showing any signs of slowing down his style and can even still compete at the highest level with amazing conditioning. His character is awesome, too. He works as what a heel should be: bullying people and beating up people. Suzuki is truly one of greatest Japanese wrestlers of all time in my book."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: hatebreederwrote on 07.04.2016:[10.0] "Suzuki macht den Sleeperhold wieder glaubwürdig im Wrestlingring. Dieser Mann ist einfach ein Bastard, cooler gehts kaum. Er hat ne einmalige Ausstrahlung und sein Gehabe im Ring muss zwar nicht sein, das ist es aber was ihn auch irgendwie ein bisschen ausmacht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: NastyYaffawrote on 11.01.2016:[9.0] "Kaze Ni Nare~!  Minoru Suzuki has been on quite a roll for the last few years, having great matches w/ Okada, Sugiura, Takayama and of course his classic vs. AJ Styles. He is a great technical wrestler, who can also hit hard. MiSu also has a really good in ring psychology, which I like a lot. He's simply one of the best today."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: RainmakerF7wrote on 14.11.2015:[10.0] "Minoru Fucking Suzuki. The baddest man on the planet. His moveset is ridicolously good. He's awesome on the mic, he knows how to work as either a face or a heel. He's had MOTY 2012, MOTY 2014, he is current GHC Champion, he has ZERO LOSSES IN 2015, and he is my front runner for WON Wrestler Of The Year. And well, he's got the best theme song of all time - Kaze ni nare!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Mizzle Assault Antwrote on 14.09.2015:[10.0] "Loved everything I've seen from this guy. His ability to work both smart and hard into his late 40s is astounding."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TrevPuroFanwrote on 24.07.2015:[10.0] "Amazing wrestler. When its all set & done he will take his place as an all time great puroresu performer. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Swenson 238wrote on 12.04.2015:[9.0] "Manchmal verstehe ich nicht, warum Suzuki bei New Japan keine noch größere Rolle spielt. Der Mann ist ein echtes Submission-Biest und ich warte nur auf den Tag, an dem er einem seiner Gegner wirklich mal den Arm ausreißt! ^^"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: eldenaaaaawrote on 28.03.2015:[10.0] "New Japan has many standouts on their roster, including the legit badass, Minoru Suzuki. When you watch Suzuki go to work, you know you're in for a hard hitting battle. Former GHC Heavyweight Champion, IWGP Tag Team Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Phenomenal91wrote on 26.02.2015:[10.0] "10 isn't high enough for this guy. This man is absolutely without peer when it comes to wrestling. He manages to. be both no-nonsense, brutally effective, and (most important of all) highly entertaining. I wish all wrestlers could be like him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: AboutToCrashwrote on 26.12.2014:[10.0] "Surely the best shoot-style wrestler alongside Meada and one of the best technical wrestlers I've ever saw. I also watched some of his MMA Fights and he's absolutely fought legendary fighters, it's a shame he never was in promotions like PRIDE FC and such. I am sure he could put out some great fights.  Now to his wrestling career. This guy created himself a big name winning an honorable titles all over japan and beating legends.  First time I saw a match of him, I didn't connected to his style, but after a while I just loved it. This is a blend of great fighting arts, one of the biggest workers ever in the ring. Best monster heel performance, best facial expressions with all of his tongue movements, great ground work and innovative submissions(his rope hung triangle is the best submission ever) and awesome psychology and storytelling.  He gave a lot to PURO wrestling, and one day he's going to be a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: 8BitLegendwrote on 22.09.2014:[9.0] "Extrem coole Socke. Wirkt wie ein Film-Bösewicht. Er ist in seiner Rolle so gut - das ist fast surreal. Auch technisch klasse. Wrestlet mit seinen 46 Jahren wie ein junger Hüpfer. Der Kerl rockt einfach."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: apc24wrote on 17.12.2013:[10.0] "One of the greatest technical wrestlers in the world. His unique blend of MMA and pro wrestling has allowed him to have some of the most intense matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: The Man of 1004 armbarswrote on 13.10.2013:[10.0] "Suzuki könnte man quasi als der Hiroshi Hase oder Chris Jericho von NJPW bezeichnen, er hilft gerne jüngere Talente over zu bringen ohne damit schlecht rüber zu kommen. Mir gefällt sein Kampfstyl (Stiff gemischt mit MMA) und natürlich auch seine Einlaufmusik. Ausserdem war er früher auch ein ziemlich guter Shootfighter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Aquifelwrote on 06.08.2013:[10.0] "Wohl der mit Abstand herrlichste Fiesling, den es momentan im Pro-Wrestling gibt. Man hat einfach nur Spass daran, wie Suzuki vollends in seiner Rolle aufgeht. Gerade, was er im Ring an Kleinigkeiten macht, die so viele andere weglassen bzw. die in vielen anderen Promotions einfach nie beachtet werden ist einfach Klasse. Da kriegt man gleich richtig gute Laune, wenn sein Entrance Theme erklingt^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: joshimaniawrote on 23.06.2013:[9.0] "An amazingly charismatic wrestler that has both a high end career in shoot style and puro."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Robert Taylorwrote on 07.03.2013:[9.0] "Der fiese, grinsende Bösewicht wurde extra für Minoru Suzuki erfunden, davon bin ich überzeugt. Die Rolle passt einfach perfekt zu ihm, daher braucht er einfach nur er selbst zu sein, um zu rocken. Das Auftreten passt einfach, von der Badehose, zu den Boots, keine Schoner und natürlich die einzigartige Theme, zu der vermutlich nur Badass Suzuki so cool einlaufen kann. Zudem im Ring immer für ein gutes Match zu haben, zuletzt hat er gegen Tanahashi sogar gezeigt, dass er an den richtigen Tagen auch zu richtig großen Matches fähig ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Roode66wrote on 23.02.2013:[9.0] "Normalerweise haben es Japaner schwer, mich von der Ausstrahlung her zu überzeugen aber Suzuki ist eine Ausnahme. Der Kerl ist Bad Ass und coole Sau und weiß mich auch im Ring immer zu unterhalten, bei den wenigen NJPW-PPVs, die ich bisher gesehen habe."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Tamjukwrote on 30.10.2012:[9.0] "Wirklich immer noch im recht hohen Alter gut. Läuft zwar auf Stand-By, aber dieses ist wegen seiner 44 Jahren einfach nur intelligent.  Seine Gehabe ist immer noch grandios und wenn er gefordert ist hat er auch das können eine super Performance raus zu hauen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Leonewrote on 07.08.2012:[10.0] "Trained by legendary shoot and catch wrestlers Karl Gotch, Billy Robinson & Yoshiaki Fujiwara, Suzuki is one of the best pro wrestlers in the world who has an MMA background.  Bas Rutten called this guy an artist when it came to mat wrestling, and the likes of Josh Barnet and Ken Shamrock also praised him for this.  Since returning to pro wrestling back in 2003, Suzuki became very successful, holding the All Japan Triple Crown twice, with the first reign lasting almost a year and defending it against the likes of Yuji Nagata, Satoshi Kojima and the legend himself, Kenji Muto.  Along with his wrestling skills, he has a lot of character to him (a bit mischievous), and a believability, that he could beat anybody using pure technical ability."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Rated R Champwrote on 23.03.2012:[9.0] "Suzuki ist wohl die fieseste und zugleich coolste Sau die in Japen oder sonst wo rumläuft. Wenn ich mich nur an die Pressekonferenz erinnere die er mit den Füßen auf der Triple Crown Gürteln gegeben hat. Der Kerl rult einfach. Was die In Ring-Skills angeht ist er zwar nicht erste Liga, aber zum einen immer noch gut und zum anderen hat er auch da diese arrogante böse Art die man einfach lieben muss."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Excellence of Executionwrote on 06.10.2011:[8.0] "Keiner hat den frechen, fiesen Bösewicht so drauf wie Suzuki - keiner! Von seinen Rumpelstilzchen-Gedächtnis Stiefeln, über seine Art, sich selbstgefällig zu bewegen bis hin zu seiner Mimik ist er einfach der größte Drecksack ever. Für mich ist er der lebende Beweis, dass es auch im japanischen Wrestling Rampensäue und charismatische Akteure gibt. Im Ring ist er anständig, auch wenn mich da andere mehr ansprechen. Allerdings bringt ihn sein Gimmick, das er so super ausfüllt, immer wieder over. Ich sehe ihn gerne."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Kenshin Uesugiwrote on 27.06.2010:[9.0] "Und wieder ein Wrestler der nicht nur gutes Wrestling kann, sondern sich durch sein eigene Art und dazu ordentliche Ringpsychologie auszeichnet. Sein Gehabe und Faxen gehören eben auch dazu, er ist halt ein richtiges Arsch****. Ich mag solche Typen, manche halten ihn für überbewertet und man könne ihn nicht länger als 15 Minuten im Ring ertragen. Ich persönlich empfinde das nicht so, ich meine den Sleeper Hold macht er zu einem "dangerous move" wie zur Inoki-Zeiten. Klasse der Kerl."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: STRIGGAwrote on 27.05.2010:[9.0] "Ich frage mich sehr oft, wie ich seine arrogante Art früher hassen konnte. Er ist einfach die coolste Sau Zen Nihons und auch seine Fähigkeiten im Ring machen ihm zu dem, was er ist: Minoru f'n Suzuki."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Tomkowrote on 02.02.2009:[6.0] "Er weiß leider nie wann seine Comedy angebracht ist und wann nicht! Hat dadurch schon das ein oder andere Bigmatch dadurch in den Dreck gezogen !"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Kaffoe 666wrote on 17.09.2008:[9.0] "GRINSEN~! Ich liebe ihn im Ring und seine ganze Art sowieso. :)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: AnFuwrote on 26.04.2008:[8.0] "Klasse Style, ich mag seine Matches und seine Kampftechnik."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Rob Van Duesenschrauberwrote on 17.04.2008:[7.0] "Seine Faxen haben Matches schon oft genug runtergezogen. Natürlich ist Suzuki ein sauguter Wrestler, nur nervt er manchmal einfach übelst."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Rancorwrote on 01.02.2008:[6.0] "Unterhaltsam, keine Frage, aber seine Fähigkeiten im Ring sind für meinen Geschmack häufig deutlich überbewertet."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: D-Stylewrote on 07.12.2007:[8.0] "Seine provokante Art im Ring ist einzigartig; ich liebe es ihm zuzuschauen, auch wenn sein Moveset limitiert ist. Seine Cocky Slaps sind einmalig cool. Sehr coole Sau"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: dariawrote on 18.09.2007:[8.0] "ist in jedem Fall 'n cooler Typ, hat mir als shootfighter bei pancrase noch besser gefallen"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Rashomonwrote on 23.07.2007:[6.0] "Minoru Suzuki ist für mich ein zweischneidiges Schwert. Einerseits sind seine verrückten Frisuren und irren Blicke immer wieder einen Lacher wert, auf der anderen Seite neigt er dazu, durch seine Faxen den Gegner des öfteren unvorbereitet und dumm dastehen zu lassen, was schon einige Matches etwas runtergezogen hat..."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Khalid Acewrote on 25.01.2025:[6.0] "I actually consider Katsuyori Shibata as a top 40 wrestlers based on his entire career. I actually liked his first run and was very upset about the injury and was very happy for his return but he was never the same ever since. His character is awesome though"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: wrestlingswiftiewrote on 29.11.2024:[10.0] "This is one of the rare instances where the wrestler is so bland that they're good. (I mean, his gimmick name is "The Wrestler" for crying out loud.) But don't let the boring presentation fool you into believing his matches are that same way. His matches are realistic, hard-hitting, and technical."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: bustopboywrote on 18.10.2024:"One of the greatest pro-wrestlers of all time. Nobody is more badass than Shibata. I just wish he'd won a world title in his career(He can technically still win one as of this review, but I unfortunately don't find it very likely). Overall, he's a perfect wrestler that is beyond underrated and at the level of guys like Misawa, Danielson, Omega, Cena, SCSA, and more."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: jsbortswrote on 08.09.2024:[10.0] "Shibata is as good a pro wrestler as has ever existed, with the ability to do everything a wrestler should be able to do in ring. Its a shame his career was cut short by such a significant injury that altered his wrestling style so dramatically. But even with those adjustments, everything Shibata does is a 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: reymysterioenjoyerwrote on 07.09.2024:[10.0] "Shibata might be the greatest of all time imo. Never have I seen such a believable wrestler, there's a reason he's "The Wrestler". His stance, aura and glance are so cool. The simple strut he makes toward the ring makes you realize how serious he takes it, on a character level at least. He can hit you hard and take it back even harder. That headbutt spot in his match against Odaka is the toughest spot I've seen in my life. The blood dripping down his face afterwards was hard. Only a guy like Shibata could pull off looking that sick. I'm a mark for him. GOAT!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Joe907wrote on 29.07.2024:[10.0] "Shibata is one of the greatest wrestlers ever. He represents Japanese strong style. "The wrestler" lives up to the nickname. Very technical and hard hitting. Before the scary injury in 2017, he's had some of the best matches ever. One of the three musketeers for NJPW. His style is very unique and fun to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Willie 19200wrote on 24.07.2024:[10.0] "Katsuyori Shibata is in my top five wrestlers of all time. I love the Japanese Strong Style of wrestling and he is what you see when thinking about the style. He's so impressive how he can put on classics with Kazuchika Okada, suffer a career ending injury half way through that match, and come back and have some banger matches with people like Eddie Kingston, Wheeler Yuta, Orange Cassidy, and Bryan Danielson. He's pretty hard not to like, in my opinion at least."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: igskillfartwrote on 02.07.2024:[10.0] "Has to be my favorite wrestler of all time, i just like his agressiveness, he never disapoints in his matches and he is one of the best wrestlers in his style, he influenced that style, same with Suzuki, these guys created a style that is still looked as one of the greatest, i want to rate Shibata higher, before he was ever injured he was one of the best wrestlers in the world, the matches he has put on just says it all, he has put on some of my favorite matches ive seen, Shibata is of course a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: BruceMarcos524wrote on 14.05.2024:[9.0] "I've never seen such a guy who is truly dedicated and passionate in pro-wrestling like Katsuyori Shibata. One of the most intense pro-wrestlers on the planet. Most of his matches aren't for the weak of heart so if you feel easily squeamish, don't watch most of Shibata's matches. His heavy strikes are very dangerous if you aren't tough and durable enough to take it, no wonder after the match most of his opponents aren't as fresh as they are at the start. One of the very intriguing matches is his Sakura Genesis 2017 match with Kazuchika Okada. It is highly regarded as one of the greatest wrestling matches of all time more primarily because Shibata puts his entire heart on the match. He puts so much; he was forced to retire due to subdural hematoma. But there is no doubt the fans are very supportive of Shibata. Shibata is the type of person that he could hit you for real but at the same time he makes sure that you will be alright at the end of the match, and you can still wrestle at the next day. Shibata is a personification of a Strong Style. Sucks that he's never been the IWGP Heavyweight Champion. Maybe if not for the early retirement in 2017, he could be the champion for sure. Unfortunately, due to the immense star power of NJPW like Hiroshi Tanahashi, Shinsuke Nakamura and Kazuchika Okada, Shibata felt left out and unfortunately thrived mostly in the upper mid-card. Upon his return, Shibata transitioned himself from being a heavy striker to a technical wrestler so that he may continue doing what he loves but at the same time to be extra careful to prevent further injuries. Sadly, this sets him back from performing epic matches but understandable due to his life-threatening injury. One of the best strikers in the business and most of the wrestlers who are not used to this style wouldn't keep up with Shibata."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: arisenbywrote on 16.04.2024:[9.0] "[9.3] The embodiment of perfection in simplicity when it comes to wrestling. I haven't seen a ton of his non-AEW stuff, particularly anything prior to about 2015, but what I have seen of him prior to him headbutting Kazuchika Okada so hard that he nearly killed himself would easily be a 9. He hasn't quite picked up as much steam since his return to the ring in 2021, perhaps for the better considering his style of wrestling nearly killed him, but even so, he's still an absolute joy to watch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TripleCrownwrote on 06.04.2024:[9.0] "Shibata is a product of a bygone era. Straight shooter and hard hitter, something Inoki absolutely loved back in the day. I can't really rank him based on his AEW stuff as I haven't gone out of my way to watch it, but in regards to his NJPW and NOAH stuff... man this guy was a BEAST. He was just so exciting to watch because he was a legit badass. Whilst a lot of the Japanese wrestlers are incredibly athletic and tough, Shibata was just on an entirely different level. When you watched him, wrestling felt REAL, and I'm sure it was to the guys who were taking those kicks, elbows and heabutts. In the end however, Shibata was his own worst enemy. Doing all this heavy hitting stuff is a joy to watch, but it eventually had a price to pay. That infamous headbutt to Okada was just... too much. Shibata was already a huge favourite in NJPW, people would've loved him the same if he didn't do the headbutts. I guess that's just what added to the character that is Katsuyori Shibata. Loved his work, loved the fact he was a straight shooter in the world of professional wrestling. Loved how his attire was just so simple, added so much to his character. Really happy he recovered from that headbutt injury because man... it was rough, like really rough."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: mxxjimawrote on 06.02.2024:"The selling, the energy, the moveset, the theme, the gear. Everything screams simple but perfect. Shibata is my all time favorite and I am glad that I have been able to witness him being in the ring."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: ddtprofan4000wrote on 01.02.2024:[10.0] "The greatest wrestler of all time in my opinion, Might seem ridiculous to some but he is the perfect mix of violence and art"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Tragiicwrote on 27.01.2024:[8.0] "Gonna preface this rating by saying that this only considers his AEW work, and am therefore entirely unaware of anything he did outside of it."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: GrimaceUnmaskedwrote on 17.01.2024:[9.0] "One of the greatest of all time. Overlooked immensely as one of the three musketeers, but recently has gotten his flowers as the true legend he is."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: crs285wrote on 27.11.2023:[10.0] "Shibata was a great in Japan before the injury. He was one of the most skilled wrestlers of his generation in the ring. It's a miracle and a testament to him that he was able to return to the ring. Since his return he hasn't been what he once was but that has to be expected. Still I enjoy anytime we get to see him healthy and doing what he loves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "This man is so good at wrestling, his nickname is literally "The Wrestler." Katsuyori Shibata is his generation's version of Antonio Inoki, a man who possessed such immense skills in the ring that they speak for themselves and make up for not having a wild personality. A man who's been in and out of the ring time and time again, and never loses a step when he gets back in, even if he has to alter his style due to injuries, finding ways to be a complete wrestler in the ring no matter what the circumstances he faces. His match with Kazuchika Okada was once the highest rated match (if I remember correctly) at one point, while I don't agree it's the best match ever, there's a strong case to make why that match is so highly acclaimed and what made it spectacular (... At leas the match itself and no what happened to Shibata after the match ended). Overall, no matter if he's competing in Japan or North America, Katsuyori Shibata is one of the best in ring performers of all time and truly is a legend in the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: danzitorockwrote on 23.07.2023:[10.0] "Shibata is one of the coolest wrestlers to watch, his style is sensational, and he applies it with impressive quality. His story is spectacular and he has been in several incredible matches and demonstrated that he can work with anyone. What a fantastic wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: YourKingMobwrote on 18.04.2023:[10.0] "The last scion of Inoki and strong style. Shibata is a diamond polisher, in that he takes a very basic, understated ring persona and makes it shine like no other. His matches with Fish and O'Reilly are what brought me back to wrestling after more than a decade away. His matches are hard hitting, full of fire and personality. I rank him higher than his other two generational cohorts: Tanahashi (who has better charisma ) and Nakamura (who is more wild ) and find him miles more enjoyable than the previous gen of Hashimoto, Chono or Mutoh. To those who question this, watch his matches OUTSIDE of NJPW, especially in Big Mouth Loud. It is not coincidence that the high water mark of this generation of wrestling was reached right around the time when Shibata injured himself in the ring. There will NEVER be another Shibata."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Moose Nuggetwrote on 15.04.2023:[9.0] "I don't like Shibata the way I used to during his pervious run as a pro wrestler, but I have to admit he's been the best pro wrestler in the new Ring of Honor right now. He may be limited because of pervious injuries, but it sure doesn't show. He's perfect for ROH's pure division."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Aliquickkwrote on 14.04.2023:[9.0] "Very stiff striker but so stiff he knocked his career short. Hopefully he can come back, he was very good, although I'm sure his opponents are happy he's gone."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TheOneAndOnlyCactuswrote on 03.04.2023:[10.0] "If you want to talk about the most beautiful careers in wrestling, not the best, not the greatest, not the most complete, but most beautiful, sentimental careers, Shibata is that for me. I cannot put into words how happy his return to wrestling made me feel, how him winning the ROH Pure Championship made me feel. He is not as good as he used to be, mainly because well, he cant really bump that much nowadays following his injuries, but you can still see glimpses of what made him great. Such a complete wrestler, who can do so much between the ropes. A great grappler who can switch between various styles, an amazing striker, oozing charisma as this stone-faced killer who could take abuse and come back. He still has those traits now, but he was twice as intense back then. Regardless, he is still a joy to watch wrestle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: benh2wrote on 20.01.2023:[8.0] "A very good technical wrestler with great strikes that were vicious and believable. Rare in the sense that he made this type of style both look incredibly legitimate and endear himself to fans. Insanely over with the fans as a badass babyface and it's a shame that his career never carried on as I feel he could have accomplished a lot more."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: UniversalACEwrote on 01.01.2023:[10.0] "Shibata is one of my favorite wrestlers ever. His straightforward no nonsense character and style is what appeals so strongly to me. I feel that this is the way for wrestling to be as it is realistic and everyone can get on board with wrestler who exemplifies this. I hate that he has never been IWGP Heavyweight Champion as I feel who would have been the most feared champion of all. I will settle for his matches because I still love watching him fight."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: MainEventMasterwrote on 02.12.2022:[10.0] "One of the most legit and tough guys ever, he plays the scary role well because he IS scary. During his heyday, his opponents were to fear him. So fucking good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Dizuwrote on 12.11.2022:"I? ve been a wrestling fan for a very long time and somehow I never saw Katsuyori wrestle until I read about him on this site. All I can say is: Wow! And thanks, to the people posting and keeping all of this information up to date. It? s such a great resource"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: CattleOfTheGrapsGodwrote on 19.10.2022:"One of my all time favorites. Shame he never got to hold the IWGP title but his character arc had a satisfying enough conclusion for me."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: PunkPariahwrote on 17.09.2022:[10.0] "One of my favorites of all time. Complete and utter destruction when he stepped into the ring, but never made his opponents look worthless or weak. Had this insane aura around him I don't think we'll ever see again. Everything felt legit and when he stepped out for his match you could feel a shift in attitude. Play time was over and it was about to get serious. Tanahashi, Okada, Nakamura, and Naito are all 10's as well but for my money Shibata was the best of NJPW's staple talents. Especially his 2010's run. Tragedy that he never got to hold the IWGP Heavyweight Championship, but he didn't need to. His legacy is cemented and now he trains the next generation of top stars. The guys from the LA Dojo have all massively improved since training under him and I can't wait to see what they'll do. One of the greatest to ever do it"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Tyler72wrote on 25.07.2022:[8.0] "Nobody hits harder than Katsuyori Shibata. This guy must get in some serious trouble for how much he beats up other wrestlers. Entertained from beginning to end watching his matches, and his move set is fantastic."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: jamzell00wrote on 20.05.2022:[10.0] "Probably my favorite wrestler ever. You can go a long way with me if you present yourself well and have intensity in the ring and Shibata knocked that out of the park. Once his music hit and he walked out you knew he was coming to beat the life out of whoever he faced. Doesn't matter how mediocre his mma career was it added legitimacy to him. His work once going freelance in the early years was awesome. The Big Mouth Loud stuff is worth a watch but the peak of it was against Uncle Jun in Wrestle-1. The G1 sprints, feuds with Tanahashi, Goto and Naito. And the series with Ishii thats genuinely one of the best ever. Most of the NJPW guys going overseas tended to phone it in but his stuff in Revpro showed no signs of it. Dude was there to put in work especially in that Chris Hero match. 2017 was legit one of the best years from a guy I had ever seen. Many talk about Okada during that time but Shibata was the best in the goddamn world. Awesome in tags, great build up and match with Ospreay, going over to Revpro and having great match with Riddle that really showed what he could do and finally his big push for the title. MVP of the entire NJPW cup that year and it lead to THE BEST MATCH EVER against Okada. I cant show enough respect to this man for being the most entertaining guy to watch every night when he was working."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: texasyoshwrote on 13.05.2022:[9.0] "Shibata is the prototypical no-nonsense shooter of the 21st century. Admirable how he left and earned the respect, most likely cutting his career short in the process."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: BlueBrandwrote on 27.02.2022:[10.0] "The Wrestler. This guy just gets it, he wrestles such a seemingly simple hard hitting style, but his matches are so logical, it's incredible to watch the way his matches get put together. He is literally one of the only wrestlers who I will watch any match with. He's got a basic but great physical look, amazing ring presence, the crowds react to him like he is a mega star, move set is incredibly simple but everything looks great. He's the Wrestler, and never has a gimmick been better suited to a wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: UWF Rules Enthusiastwrote on 21.02.2022:[10.0] "Katsuyori Shibata is one of the greatest wrestlers ever. He was a very stiff striker and arguably the best wrestler of the mid-2010s. His feud with Tomohiro Ishii is a must-see feud."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: GriffinXwrote on 18.01.2022:[10.0] "There is just something about that moment when Shibata's music plays and he walks to the ring. Man gets so much out of simplicity. Even more limited now as he starts his comeback he sill has you locked you into his matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Moxicity209wrote on 22.10.2021:[10.0] "Easily one of the best ever to do this thing. Hopefully when he comes back, he softened some of his strikes a bit(like those freaking headbutt jfc) because he doesn't need that shit, his match were already great either way. Also gedo should just booked him to win the IWGP Hebi next year and then just beat everybody Bob Holly style."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Lalo Camposwrote on 21.10.2021:[10.0] "One of the best wrestlers of this generation, he made the NEVER Title prestigious and had one of the best matches in NJPW history against Okada in Sakura Genesis"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: SmartForceOnewrote on 17.08.2021:[10.0] "Few wrestlers have been as believable as Katsuyori Shibata. From the way he carried himself inside and outside the ring to his great, intense matches, Shibata truly felt like a legitimate fighter. His strikes are some of the best in the history of wrestling, his selling makes you believe he's really hurt and he had the ability to make you buy into the idea that he really hates his opponent and wants to beat the hell out of them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TheFrenchDisasterwrote on 04.07.2021:[10.0] "How can one man be so great at kicking people's ass ? Shibata is one of the best brawlers of all time and he has many many matches that proves that. It's a shame that his career had to be cut short though."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: BlakeFR37wrote on 02.06.2021:[10.0] "reviens stp tu nous manques. vraiment beaucoup. Shibi je pense à toi et à tes 5 étoiles la nuit. stp."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Kungwrote on 30.05.2021:[10.0] "While I concede that Okada and Tanahashi are two of the greatest Japanese wrestlers of the 2010s, Shibata was probably my favorite. It's ultimately impossible for me to express how special Shibata was, but I do know that I will never forget his WARS with Ishii, Tanahashi, and of course Okada."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Judestarwrote on 01.05.2021:[10.0] "After watching more of his classic matches, I finally see why people see him as one of the best hard hitting wrestlers ever. He blends his striking ability with his submissions really well to keep his matches interesting, and honestly, I find his tough guy presence a lot more authentic than wrestlers like Suzuki (he's still great too though). His 2013 match with Ishii and 2017 match with Okada are some of the best New Japan matches ever tbqh."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Makai Clubwrote on 26.01.2021:[8.0] "For most of his career, he was a baseline good wrestler. As a young wrestler, he stood out thanks to his fire and spunk. As a returning act, he created a good hook to keep him different from the rest but in a way he could still connect with the fans of those wrestlers. However, occasionally gaps and sudden stops due to injury or career changes makes his run feel incomplete somewhat. He left wrestling when he was coming into his youthful prime. Then he was struck with injury when he was reaching his second prime as an older veteran. Regardless I think he has a lot of quality matches to be proud of. Especially in that second run where he has around 3 really important and well regarded matches by the overall consensus (vs Okada and vs Ishii G1 '13). The first run is filled with fun matches that you can easily binge. And I believe in watchability as a factor when it comes to the greatest wrestlers which prevents me from keeping certain wrestlers out of the top tier spot at times. Shibata has that in abundance. As a wrestler, Shibata had a good combination of submission and striking skill thanks to his mma days (and despite his record, that training is still valuable) and had a penchant for creating interesting narratives against opponents such as Ishii (although the macho man concept is played out), Honma and Okada. Not a candidate for the GOAT or any of the top tiers but he is someone who is worth looking at."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: JustTapOutwrote on 22.11.2020:[10.0] "This man was on par with the likes of kenta kobashi and mitsuharu misawa, he knew how to break his opponents down until they can't wrestle no more. sadly in his match with okada he did a headbutt and ended his career... like that. i wish that match never happened! i hope the best for shibata and i hope he can get in the ring one more time, maybe with kenta?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Ma Stump Pullerwrote on 10.11.2020:[8.0] "Shibata was pretty damn brilliant career wise. It's a bit of a tragedy that we never got to see him develop NJPW with Tanahashi and Nakamura and he missed that period where he could have got some well needed development, but what we did get was interesting enough. Even if Strong Style gets a bit too much hype and misrepresentation these days (namely because many people don't realise just how many shitty, plodding matches NJPW used to have with pure Strong Style in play before they started to mix in other things) Shibata is probably the best you can get from it in terms of striking and presence: he just has that look, that intent that makes you believe he's actually going to kill someone in that ring. He's had a lot of great matches, but there are problems, namely that Shibata isn't very versatile and his best bouts are usually with guys whom he can have a proper exchange with: when he's with guys who don't really focus a lot on strikes, they usually have to use them a lot more, and it can come off as unrealistic or weird at points, OR they just don't do that, in which case the match is usually not fantastic. This isn't to say Shibata can't mat wrestle (he can, pretty well in fact) but he can't really drag out a whole match using it. He is frankly a one note wrestler, but he did that one note fantastically well. Of course Shibata probably would have done so much more if he hadn't done those headbutts, but you could say that about a lot of career ending injuries in retrospect."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: taabr2wrote on 19.09.2020:[9.0] "Katsuyori Shibata had one hell of an interesting career in pro wrestling. From the beginning the man was promised the world, when he, Tanahashi and Nakamura was named the new Three Musketeers of NJPW. Showing that the company expected Shibata to be one of the wrestlers that they were going to build around. Instead Shibata decided to become a freelancer before ultimately leaving pro wrestling altogether. After 4 years Shibata returned to pro wrestling teaming with the MMA legend Kazushi Sakaraba to form the highly underrated tag team of Laughter 7. The next year Laughter 7 made it's way to NJPW. Shibata was treated like a total outcast in NJPW, his main feud being with NJPW mainstay Hirooki Goto who was a childhood friend of Shibata. Their feud seemingly culminated at Wrestle Kindgom 8 where Goto won but both men walked backstage together, they even started to team up after that. Shibata started to work more regularly for NJPW and then at Wrestle Kingdom 10 won the NEVER Openweight belt his first singles title in NJPW over Tomohiro Ishii. Shibata's feud with the New Japan Dad over the NEVER title is one of the best feuds in NJPW in 2016 and definitley needs to be checked out more. Shibata's stint with the NEVER title ended at Wrestle Kingdom 11 when he lost the belt to Hirooki Goto who now had joined CHAOS. However this seemed more to launch Shibata up the card as he won the New Japan Cup, and 3 years after his made his promise to challanged NJPW Ace Kazuchika Okada for the IWGP Heavyweight Championship. Shibata delivered an absolute classic that would have assuredly turned him into a permanent major star unfortunately a headbut during the match caused a brain injury that lead to his early retirement. Had his career continued no doubt he would have gotten a 10/10 from me."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: lehaimkhwrote on 22.07.2020:[10.0] "A real samurai who sacrificed his health for a great fight and ended his career on a minor note. For me, Shibata is a strong style icon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Scott Kobayashiwrote on 15.07.2020:[10.0] "I cannot describe how much this wrestler means to me. Katsuyori Shibata is my favorite ever. I felt like I had a personal connection to Shibata and I made time for all his singles matches. Shibata having to earn the respect of everyone at NJPW through trial and tribulation reminds me of something I had to do in my personal life, and that connection will forever be there for me. Not to mention, he was a world class wrestler. And his moment at the G1 Climax 27 Finals... man. I have cried over stuff in pro wrestling, but I have never full on wept about wrestling ever until this, I had purposely avoided news about Shibata as it just made me sad. And this moment will forever be my favorite ever. Thank You Shibata-San."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: snakepitwrote on 30.06.2020:[10.0] "I've had to hold off on giving an 'extreme rating' because of the whole 'Oh no, you can't give >70% 10s/0s' nonsense. Anyway, as I've posted before, Shibata was, is and will always be my fave wrestler. Striking, mat wrestling, in-ring psychology --- he did all these things at the highest level. Most importantly, his matches just emanate a different feel than any other. I sincerely wish that he, as many hope, will one day return to the ring and grace us with his presence."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: KCAwrote on 23.04.2020:[9.0] "Probably the closest we will get to the quintessential professional wrestler. His presentation maybe a little bland, but when he steps in the ring, you know you are truly going to see something special! His ring psychology is second to none and is able to tell a story worthy of the big screen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Chekerwrote on 20.02.2020:[10.0] "05. 02. 2017: [9. 0] "I have been in awe of Shibata and the way he carries himself lately. He absolutely is every bit as good as his fellow new musketeers, Tanahashi and Nakamura, even though he was never that high on the card due to poor decisions on his part. " EDIT: Now that Shibata has been gone for a while, and I've revisited quite a few matches of his from before I started watching New Japan, I've decided the rating has to be a 10. Shibata Katsuyori was my last favorite wrestler. When he retired, I think he legitimately took something of mine with him. I have not felt a connection with any worker like that since he almost killed himself vs Okada. Every now and then I see an insane match that reminds me why I still bother with wrestling, but I rarely feel like I really really want a specific worker to win. Shibata was the last guy that gave me that feeling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Iceqwrote on 08.10.2019:[10.0] "Shibata ist was ganz besonderes. In umfasst eine Aura die sonst bei sehr wenigen Wrestlern verspüre. Außerdem hatte er einen heutzutage sehr einzigartigen Stil und eindeutige Wrestlingideologie. Sein Match mit Okada ist nicht nur das gerade beste letzte Match das ein Wrestler je hatte, sondern für mich persönlich unter den Top 3 aller Zeiten. Die LA-Dojo Jungs sind sehr gut bei ihm aufgehoben und wer weiß vielleicht kommt er ja nochmal zurück, aber bitte nur wenn man sich zu 100% sicher ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: SZ1989wrote on 24.07.2019:[10.0] "One of the best wrestlers in the modern era. It's a shame his career was cut short. Shibata knew how to wrestle a realistic style and make it compelling and entertaining at the same."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "A vestige of Inoki's philosophy. Great legit striker and grappler, one of the best incarnation of ferocity and fighting spirit. Like Ishii, some of his matches could maybe get a little repetitive at times but he was just perfect at what he did. It's really unfortunate his career ended with an injury but at least he ended with his best and most complete match. Seems like a great coach for the LA Dojo."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: PuroresuLoverwrote on 19.05.2019:[10.0] "God, I miss Katsuyori Shibata so much! This dude is one of the greatest, he delivered his body to pro-wrestling. It's too bad that we may never see him in the ring again..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: zephyrwrote on 16.03.2019:[10.0] "Say what you will about having a reckless style, Shibata certainly made it work for himself. A one-of-a-kind wrestler who redefined strong style to modern audiences."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: RatingsMachinewrote on 15.10.2018:[9.0] "When it came to combing hard hitting wrestling into a believable brawling style, Katsuyori Shibata was one of the very best in the business. If not for his tendency to take things too far at times, Shibata was always fun to watch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Tomlou12wrote on 17.09.2018:[10.0] "An excellent in ring performer he gave everything he had in his matches, one of the most fearsome and legitimate wrestlers of our time. This guy earns his nickname "The Wrestler" as he is everything a wrestler should be. It's sad that we may never see him wrestle again as he was so good but the fact he gave his career up as a result of his passion for wrestling makes me respect him all the more. An incredible performer who has my upmost respect for what he did in the ring. He's no thrills in terms of gimmick but he makes up for it in sheer legitimacy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: andrewmossighiwrote on 13.07.2018:[10.0] "If you want to talk about professional wrestlers who are the most believable or non-PG, then this conversation starts and ends with Katsuyori Shibata. I love watching him in the ring because he stands out among every other wrestler simply based on the believability and legitimacy of a shoot fighter. He is appropriately nicknamed "The Wrestler" because it embodies his entire wrestling career (style, character, story). Figuratively, his career is reminiscent of an Academy-Award winning film about a legitimate boxer or ultimate fighter that strives on perfection and is chasing something more significant than himself, all of which comes together to make a fantastic story.  In the ring? His technique is flawless, his strikes sound/feel/look legitimately painful, he can adapt to any given style in the ring. Most of all, his selling and storytelling are arguably the best in the business (Johnny Gargano is a close second). Unfortunately, his career has become one of the greatest tragedies in the history of the sport because his career ended way too early, especially after he had won the 2017 New Japan Cup and delivered arguably his greatest performance ever with Kazuchika Okada. But still, he is THAT PERSON that every aspiring professional wrestler (man or woman) needs to look up to if they want to become successful.  Legit. Tough. Intense. Precise. Disciplined. These are some of the many ways you could describe how great he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: ohnoeswrote on 11.07.2018:[9.0] "I have only recently become acquainted with New Japan, but it took little time for me to warm up to "The Wrestler". Shibata's stoic, lone-wolf status, and no-nonsense approach enamored me as he fought in each match to bring the best out of himself, as well as his opponents. His offense was excellent for its' intensity and brutality, making everything he did believable. He would only wrestle by his own principles; his own terms. Anything less would not suffice, and for that I respect his body of work. His story was practically perfect: having 'abandoned' New Japan when it needed him most to pursue MMA, then returning many years later, having to work his way back up over the years re-earn the respect of fans, to have it meet its apparent end with his 'final' match being the best of his career, and arguably one of the greatest matches of all time. I am more than happy to call him my personal favorite wrestler, but my only knock against him that his style is not compatible with everyone (working best with wrestlers that have a similar style like Ishii), and has struggled to adapt to some opponents. Now for the controversial part of this comment: the headbutt. Shibata's career does not deserve to be insulted and ridiculed by those who know nothing of what wrestlers go through, nor should he be defined by a single spot. When a wrestler gets injured, internet experts immediately begin to finger-wag and think they have the right to tell wrestlers what they should and shouldn't do. To that I say two things: one, if Shibata had walked away from the headbutt just fine, everyone would be singing a different tune. Second, so many wrestlers respect Shibata and are now paying homage to him because they understand him, and know what it's like to work in a dangerous industry. I am not going to claim that I 'know better', but unless Shibata himself admits he never should have done the headbutt, I refuse to demean him for putting his life on the line to entertain the fans."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: swansea630wrote on 04.06.2018:[10.0] "Shibata is one of the most impressive wrestlers to me because in an era dominated by a fast paced spot focused style, Shibata set himself apart as one of the world's best by completely bucking these trends. With a moveset that could fit into any era, Shibata's brutality sets his matches apart from everyone else. This combined with the badass aura he gives make him one of the most exciting performers in wrestling today. When he is healthy enough to return, then wrestling will have one of its most unique stars back."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: JokeyZockeywrote on 20.03.2018:[10.0] "Auf den Tag genau heute vor einem Jahr gewann Katsuyori Shibata den New Japan Cup und feierte damit den größten Erfolg seiner Karriere! Nun war er nur noch einen letzten Schritt von der Krone, dem IWGP Heavyweight Championship, entfernt! Doch um diese Krone zu erlangen, musste er den Mann bezwingen, der seit fast einem Jahr nicht mehr in Titel-Matches besiegt worden war: Kazuchika Okada! Shibata machte klar: Es würde eine Schlacht werden! Und genau das wurde es auch! Katsuyori Shibata gab in diesem Titel-Match alles, wirklich ALLES, um den Titel zu gewinnen, doch ... es sollte nicht sein ... ein absolut stiffer Headbutt zu viel besiegelte das Ende, nicht nur des Matches, sondern auch von Shibatas Karriere. Diese Karriere ... sie liest sich nahezu erschreckend wie die Geschichte eines tragischen Helden: Shibata verließ NJPW als es am Abgrund stand, versuchte sich erfolglos im MMA, kehrte schließlich gebeutelt zurück ... und erarbeitete sich doch wieder den Respekt und die Anerkennung der Fans, und das ohne große Reden, sondern ganz allein durch seinen einzigartigen, grandiosen Wrestling-Stil! Shibata war einfach der fleischgewordene Strong Style, jedes seiner Matches absolut hart und absolut grandios! Gepaart mit seinem übertrieben guten Charisma und seiner Fähigkeit, mit der Kamera zu arbeiten, ergab dies den vielleicht authentischsten Wrestler der Neuzeit! Es ist einfach so unfassbar traurig, dass seine Karriere genau auf ihrem Höhepunkt so tragisch enden musste. Es bleibt nur noch eins zu sagen: Danke Shibata, dafür, dass du dich so krass für den Wrestling-Sport und unsere Unterhaltung geopfert hast. Hoffentlich wirst du trotz allem ein gutes und vor allem gesundes Leben führen können. 10 Punkte für The Wrestler und sein gesamtes Lebenswerk!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Cleanerwrote on 17.11.2017:[10.0] "Katsuyori Shibata - The Wrestler. Dieser Mann hat das Puroresu-Wrestling verkörpert. Er hat seinen Körper dem Sport gewidmet und ihm alles gegeben was er hatte, und ist dabei einfach nur er gewesen. Kein schriller Theme, kein extravagantes Attire, nur ein Kämpfer. Und was für einer. Er ist mit einem der besten Matches überhaupt abgetreten und sich seine Seiten im Geschichtsbuch redlich verdient"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Dragon Fighterwrote on 15.11.2017:[10.0] "THE WRESTLER ! SHIBATA who doesn't give a fuck and just wants to beat the shit out of you for sure. Hard hitting offense, the represent of japanese strong style. He is perfect timing of no selling and selling. Just so damn good. He can have at least good matches with almost anyone. The redemption story since his come back in 2012 was awesome. He finally gains the respect from the fans. His never title reigns were so amazing, great storytelling. I hope he will recover quickly. Come back or not he is still one of my favorite wrestlers to watch. A 10 without a doubt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Blood Pumpwrote on 01.09.2017:[9.0] "The Wrestler maybe coming back in 2018,  but even if he was to stay retired Shibata had done enough in his short career to be considered for the best. He may not be all that big or the most charismatic but he could realistically beat anyone in the ring with his strikes, and by the time he got the IWGP Heavyweight Title shot he had the audience completely behind him. The biggest problem with Shibata is his disregard for his own health (hence his hematoma-ing of himself), its not always easy to watch his matches (especially with Ishii) but it is almost always rewarding. I do hope he dials it down on those headbutts when he comes back."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: PKwrote on 14.08.2017:[10.0] "As you can tell from my username, it's probably no secret that I'm a huge fan of "The Wrestler". This man is not only part of the reason why I've become a fan of NJPW thanks to his 2013 G1 match against Tomohiro Ishii but also why I started watching wrestling again after 5 years. He made me forget that wrestling wasn't real more than any other wrestler ever could thanks to his hard hitting style and calm badass way of presenting himself. To me, those plain black trunks and boots showed more character than any other wrestler with colorful gear ever could. He wasn't there to entertain you with fancy gimmicks, he was there to prove that he was the best in the world by kicking his opponents to oblivion. If his career really is over, I say thank you Katsuyori Shibata for reviving my childhood love of wrestling and may you live a peaceful, healthy life. EDIT: I'm still crying"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TooSweetPhilwrote on 05.08.2017:[10.0] "Katsuyori Shibata. Über diesen Mann könnte man Seiten, ja sogar Bücher schreiben und obwohl die erzählte Geschichte sich in Perfektion komplettiert fühlt, hinterlässt sie diesen einen melancholischen Beigeschmack.  Shibata hat das Wresting legitimiert, seinen Körper auf's Spiel gesetzt, wie kein anderer und in seinen Matches mir persönlich bewiesen, wieso ich diesen Sport liebe.  Ein Wrestler kann sich so bunt kleiden, einen farbvollen Charakter haben, doch der simple Style, schwarze Stiefel, schwarze Kneecaps von Shibata strahlt für mich mehr Charisma aus, als es ihm jeder vormachen könnte.  Es ist eine Geschichte des Misserfolgs. Shibata verließ NJ im sogenannten Dark Age, ließ die Liga nicht nur im Stich, sondern schloß sich Rivalen NOAH an,  nur um dann nach Jahren und erkämpften Erfolg zurückzukommen.  Er kam nich zurück, um bei besseren Zeiten Erfolg zu haben, sondern um den Respekt der Crowd und den Anhängern zurückzubekommen. Und, - oh ja. Das tat er. Nicht nur die bravouröse Trilogie gegen Tanahashi, die revolutionären stiffen Strong Style Kriege mit Ishii, sondern auch die Allianz mit der Third Generation in der '16-World Tag League.  Er war auf dem Weg, endlich der verdiente Main Eventer zu werden, nur um dann bei Sakura Genesis, in einem der Besten Matches aller Zeiten (es könnte gut das Beste sein) gegen den Neuen ACE zu fallen.  Es ist traurig, andererseits so rund und unfassbar wie die Journey zu Ende scheint. Katsuyori Shibata wird womöglich nie wieder in den Ring steigen und selbst wenn, nicht der sein, den man kannte.  Nicht der charismatische, im Ring technisch so versierte und fantastische Wrestler. Ein Style perfektioniert. Von der Mimik und den Low Key Momenten ein ganz großer.  Dieser Mann hat mir jeden Grund gegeben Wrestling zu lieben, und auch wenn er nicht an meinen persönlichen All-Time-Favourite Hiroshi Tanahashi rankommt, werde ich diese Zeit nie vergessen. 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: GermanStrongStylewrote on 15.05.2017:[10.0] "I would recommend besides his NJPW his short title run for Revpro. When he has a match he puts it all in the line, no matter if it is the 2. long match in just 2 nights."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Harakwrote on 15.05.2017:[10.0] "Despite some problems with selling ( which doesn't really annoy me), Shibata is a freaking beast! His matches against Ishii or Tanahashi were excellents!   EDIT: Since i posted my rating, i have seen more of his matches and my opinion actually went even better: sure many of his famous matches were slugfest (which were incredibles) but he's in fact more versatile than i thought and he's actually a master when it comes to using the no sell correctly. Shibata has that thing which makes look all his moves like fucking explosions (especially his strikes), is pretty damn charismatic without even needing to have very good mic skills and when he wants to tell a story, he does it really well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: arrancarwrote on 30.04.2017:[10.0] "An amazing wrestler and visual story-teller. A true fighter who takes the hardest shots I've ever seen and then gives them back twice as hard. He tells amazing stories of resilience with his MMA-inspired wrestling style and genuinely shocks me with how he handles his opponents. Shibata makes wrestling into a strike-fest and a test of pride and honour. Watching how passionate Shibata is in the ring makes me badly want to become a pro-wrestler, and then I see the insane bumps and strikes he willingly takes and I remember "oh yeah, I'm not even 10% as crazy or tough as Shibata". He is definitely one of the best wrestlers in the world today and has provided me and many others with plenty of amazing matches. It's a tragedy that his wrestling career may have prematurely ended, but what a way to go out if so. Not just with an absolutely incredible match against Okada at Sakura Genesis but also by providing a dramatic albeit bitter ending. He left NJPW, came back years later and had to win everyone's respect back, eventually proved that he deserved to be back, only JUST managed to get pushed again, had the Sakura Genesis crowd roaring his name, FINALLY proved he deserved to be in the IWGP Heavyweight title scene, before suffering a potentially career-ending injury. It would be heartbreaking if he never wrestles again, but it would be such a fitting, tragic end to his chaotic wrestling career. Shibata would forever be the best wrestler that never got the accolades they deserved."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: koblandwrote on 24.04.2017:[10.0] "The definition of Strong Style is Katsuyori Shibata. Point blank. No one hits as hard, and I think that's for the best. His recent injury may be the end of his career, which makes me tear up thinking about it, but he's left behind a legacy of stiffness that is unmatched."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Jobbswrote on 13.03.2017:[10.0] "Shibata is one of my favorite wrestlers going today. This man is so lethal in the ring and just gets the match going with so much passion and its emanate in his matches and the layout of the bout. His style works because it's not all about just brutalizing his opponent but really punishing his opponent in more ways than one honestly. He's going to do great things and he's had so many classics that it's just mind blowing to me honestly. Definitely one of the best in NJPW and in the world right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TrevPuroFanwrote on 07.01.2017:[10.0] "Shibata is one of my favorige wrestlers to watch today. Tough as nails, and really gives it his all in all his matches whether its a big or small match. Has a great match with pretty much everybody as well. He is incredible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: jerseyhoolwrote on 07.01.2017:[10.0] "Shibata wirkt mit seiner No-Nonsense Attitüde einerseits wie ein Relikt aus alten Zeiten, aber andererseits ist es gerade das, was ihn aus der Masse herausstechen lässt. Insofern ist er das perfekte Bindeglied zwischen Vergangenheit & Gegenwart, ohne dabei langweilig zu wirken... im Gegenteil! Seine Matches sind oft stiff, die Aktionen (auch wenn sie noch so brutal aussehen) sauber ausgeführt & sein Stil schonungslos. So gesehen könnte man ihn fast als einen "Steve Austin des Ostens" bezeichnen. Ich würde ihm endlich mal einen großen Singles-Titel gönnen, denn mit seinen eigentlich konstant guten Leistungen der Vergangenheit hätte er sich diesen mehr als verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: NastyYaffawrote on 05.01.2017:[10.0] "Shibata is incredible. A true workhorse who can pull off a very good match with pretty much anyone. I honestly can't give anything less than a 10 because of the incredible run he has been on for the last few years; 'The Wrestler' is already one of the top wrestlers ever in my eyes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Moonbloodwrote on 22.11.2016:[9.0] "In der immer bunter werdenden New-Japan-Welt ist Katsuyori Shibata mit einer fast schon prähistorischen Attitüde ausgestattet. Simpler - aber effektiver - Nickname, eine ohne große Überlegung zusammengestellte Gear und ein Kampfstil, der vollständig auf Nonsense und Firlefanz verzichtet. 2016 ist ein herausragendes Jahr in seiner Karriere und der klare Beweis dafür, daß aus seinem sehr bedachten Aufbau Großes entstehen wird."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Undisputedwrote on 17.11.2016:[9.0] "Amazing strong style beast, when I see his kicks or elbow, I feel pain in my body. His matches with Ishii, Honma, Makabe, Ibushi, Nakamura, Goto or Tanahashi was great. His style is based on MMA (former MMA fighter) and for me this is good choice."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TheGreatestManRed22wrote on 17.11.2016:[10.0] "Holy Sh*t. Shibata is pure gold, their stiffs is awesome, good psychology, after that Nakamura leaves he represent The Strong Styles. I hope great things in future for him, he deserves it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: MAGICIANwrote on 12.11.2016:[8.0] "Katsuyori Shibata, der neue King Of Strong Style bei NJPW. Er hat einfach eine fantastische Ausstrahlung, die seinem Charakter "The Wrestler" eine wunderbare Glaubwürdigkeit gibt. Im Ring ist er in seinem Gebiet fantastisch, kann aber auch in anderen Bereichen überzeugen. 8 Punkte!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: akm0wrote on 17.10.2016:[9.0] "One of the most, if not the most, intense wrestler you can see nowdays. Shibata is a freakin' machine. Hard striking, grappling and fighting spirit at his best; not to mention his in ring iq. His matches with Ishii and Tanahashi are pure example of that. He also has some decent mic skills, short, but effective. I hope he wins the big title one day, he definitely deserves it."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: wordflyerwrote on 15.10.2016:[9.0] "I have no idea of Shibata has promo skills, but I have seen a number of his matches, and they are consistently brutal in the best way. He's fairly small, but his presence is huge and he's clearly one tough sun of a gun."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: J Kwrote on 15.10.2016:[9.0] "Shibata ist einfach top.  Super strong style und vor allem sehr realistisch.  Dazu kommt noch ein starker Charakter und ein brillanter Finisher.  Er zwar nicht der beste aber der härteste Wrestler heutzutage.  Der Name King of strong style könnte auch locker an ihn gehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Luv all wrestlingwrote on 08.10.2016:[9.0] "Shibata is a violent badass and current Strong Style master of NJPW, Shibata always has killer match, but he needs to slowdown otherwise thos killer matches will start to kill him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Viper99wrote on 19.09.2016:[10.0] "Katsuyori Shibata ist einer der besten Strong Style Wrestler der Welt! Er kann so gut wie jeden Stil mitgehen, aber in seinem Heimischen Stil, dem StrongStyle, ist er absolut Fantastisch. Unglaublich Intensiv, Brutal und verdammt Unterhaltsam. All dies macht Shibata zu einem meiner Lieblings-Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: mrmctommywrote on 23.08.2016:[8.0] "A super talented adherent of Strong Style with a lethal moveset and the look and demeanor of a guy who wants to fight, and do nothing else. His nickname is "The Wrestler", which speaks for itself. His ring psychology is really something to behold. An issue to ponder is, when you watch him kick someone in half, you think to yourself: "how can this guy realistically lose? ""
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: King of Darknesswrote on 01.08.2016:[10.0] "Unglaublich stark im Ring. Zukünftiger IWGP Heavyweight Champion. Das einzige was ihm vllt fehlt wäre ein eigenes Stable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: FrankEnd99wrote on 06.07.2016:[8.0] "Katsuyori Shibata is a hell of a Strong Style wrestler. HeŽs amazing in every match against any opponent. I think that Shibta needs a good IWGP Heavyweight Title reign."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TheWrestlingFanwrote on 03.07.2016:[10.0] "Shibata is my current favorite wrestler in NJPW, aside from Omega. I really enjoy his wrestling style. He blends Strong Style wrestling with MMA elements perfectly. His matches have been constantly rated 4. 5-5. 0 stars, too, because he can put awesome display with any opponents. In addition, I also like his personality. He still thrives without portraying any colourful gimmick, despite today's wrestling era is closely related to the portrayal of larger-than-life characters and such, but Shibata simply becomes himself. He prefers focusing on polish his wrestling skills than does any unusual schticks to make himself over with crowd. I enjoy his current run with NEVER Openweight title, but I hope he will challenge for Intercontinental Heavyweight title and, if opportunity arises, challenge for IWGP Heavyweight title someday."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: gaidenphoenixwrote on 21.06.2016:[10.0] "With his stylish haircut, prominent jaw and black trunks, he looks like the second-coming of Antonio Inoki. But once he starts to wrestle, the comparisons become even more apt, as the former MMA fighter uses a brutal, but still crowd-pleasing, blend of submissions and absolutely punishing strikes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Randomuser12345wrote on 19.06.2016:[8.0] "Shibata is great. He's at his best when he matches are kept short, since he brings an intensity and hype that is unparalleled in NJPW. Never a dull moment when he's in the ring."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Alex Maedawrote on 03.06.2016:[6.0] "Kennste ein Shibata-Match, kennste alle. In dem, was er macht, ist er wirklich gut, aber das ist nun mal nicht sonderlich viel. Abgesehen davon wirkt er auf mich als Charakter total uninteressant und farblos."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Jrod3160wrote on 16.01.2016:[9.0] "Shibata is amazing i think this guy will take on a top role in the heavyweight division with styles and nakamura leaving this guy will hopefully be a future njpw champion"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: RainmakerF7wrote on 06.12.2015:[10.0] "Katsuyori Shibata is not a sports-entertainer or a superstar, he is a wrestler and a fighter. A very stiff guy, his gimmick is just "no stupid nonsense, I just want to fight". He was supposed to be one of 3 new musketeers, along with Nakamura and Tanahashi, but Shibata decided to leave NJPW in 2006 for MMA. He returned in August 2012, saying he is ready to fight. Since then, he had countless amount of memorable matches : couple of matches against Goto, Tanahashi, Ishii, Honma or Nakamura, including 5 star matches with Ishii and Tanahashi. He is criminally underrated - he never held a major title nor headlined any important show. I love his character to the death, I think he needs to win a big title soon, he trully deserves that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: DanTalksRasslinwrote on 19.08.2015:[8.0] "As often is the case with guys with legitimate fighting credentials, Shibata brings an aura of danger with him to the ring, and backs it up with some of the stiffest strikes I've seen.  His ice-man persona also provides a nice counterpoint to the showmanship of guys like Nakamura and Tanahashi, who are among the many he's put on great matches with."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Marcywrote on 18.08.2015:[9.0] "Nobody is more bad ass! Seine Ausstrahlung und auch sein können sind absolut großartig. Toller Wrestler, den ich mir in so gut wie jeder Paarung anschauen kann. Schaut seine Matches vom G1 2015!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Wrestling Foreverwrote on 15.08.2015:[9.0] "Katsuyori ist ein unfassbar stiffer Wrestler den man lieben muss. Seine Kicks sind hart und er ist im Ring absolut klasse. Sollte mal echt um die Titel mitspielen. Außer seinem Tag Team Gewinn mit Goto gewann er noch nichts. Würde mich schon freuen wenn er mehr höher in die Card käme er hätte es mal verdient."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Kevin434wrote on 02.08.2015:[8.0] "Der wird immer besser und besser, mit ihm muss man auf jeden Fall rechnen, was der dieses Jahr schon alles für Matches rausgehauen hat, WOW, sehr realistischer Worker, ich liebe seine stiffen kicks, weiter so und bald gibt es die 9 von mir."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: llboxingwrote on 27.07.2015:[8.0] "He might seem like bland Steve Blackman type, but the more you watch him the more compelling and unpredictable he is. Every match is a must see because he definitely has the It factor.  Probably the stiffest worker on the New Japan roster.  He's a serious, miserable, soft spoken, no frills shoot fighter with an intriguing "No Mr. Nice Guy" personality that can work well both as an loner anti-hero face or a jerk heel.  He also has one of the better physiques among Japanese wrestlers.  Was supposed to be a main eventer years ago alongside Tanahashi and Nakamura but abruptly left to pursue an ultimately unsuccessful MMA career, going 4 and 11 and making enemies with several in the wrestling business.  Will probably never fulfill the promise he once had due to his MMA career.  Despite having a losing record in MMA, he's got a reputation as a legit badass. He was in a feel good tag team with Goto but has since gone back to singles.  He is afterall, a lone wolf who has some intriguing matchup and storyline possibilities with several others on the roster. Can work with anybody on the roster with any style.  His kicks and strikes are painful to watch he's so stiff, and he no sells like crazy.  He's had some great matches already.  I really like his GTS followed by the PK as his finishing combo.  With his talent, look and legit toughness, he will probably end up a semi-main eventer at some point.  Watch for him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: AboutToCrashwrote on 09.07.2015:[10.0] "The king of the short matches. Seriously, just give this guy 10-15 mins and he would deliver. With him not being the best MMA fighter he still managing to bring this style to the ring, so most of his matches feel like a fight with the wrestling psychology and story. He calls himself 'The Wrestler' to show that he's down to the chase, he brings the fight. One of biggest badasses ever. When he didn't move from the middle of the ring for Tanahashi in their match in G1 Climax last year, or when he got rope break by his teeth. This are things that you don't see very often that make Shibata be so spacial wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Movadowrote on 01.03.2015:[6.0] "Ich kann die Begeisterung für ihn leider nicht verstehen den für mich ist er eine austauschbare Kickmaschine. Keine Frage da ist ne Menge Potenzial, aber da fehlt noch einiges um dem Hype um ihn wirklich dauerhaft gerecht zu werden. Aber ich lasse mich gerne mit der Zeit von etwas besserem belehren."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Deviantwrote on 25.01.2015:[7.0] "Stiff and realistic. He's good with telling stories through in-ring work, as shown in his match with Goto and him being on Goto's side when he went against Okada."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: BrentDelivinewrote on 03.01.2015:[8.0] "TheGreatMuto is completely wrong, Shibata IS indeed a stiff wrestler, and he is liked by American wrestling fans. But is that REALLY a negative?"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Kenshin Uesugiwrote on 06.10.2014:[7.0] "Von vielen ist er vermisst wurden und nun wo er wieder da ist beginnt die Euphorie der ich mich nicht so ganz anschließen kann. Ja Shibata ist ein toller Striker und Bad Ass, ein richtiger No Nonsens Wrestler, aber es gibt einen Punkt der meiner Meinung nach übersehen wird, er ist immer noch der gleiche Wrestler wie vor 8, 9 und 10 Jahren. Der junge wütende Kerl der heraustach und sich mit allem und jedem anlegt, mit den gleichen Stärken und Schwächen. Damals sah man das nicht so streng, war er doch ein Hoffnungsträger und so gut für sein Alter, aber nun? Shibata ist nicht mehr der junge Punkster mit Mitte Zwanzig oder drunter, er ist ein erwachsener Kerl. Ja Shoot-Wrestling kann immer noch, obwohl er immer sehr oft zum Selling gezwungen werden muss oder er oft nicht zu wissen scheint ob und wann er will, er ist immer noch glaubwürdig in seinen Aktionen, gleichzeitig ist immer noch so unvariabel wie früher. Es heißt immer noch in seinen Matches entweder er strikt und verhaut jemanden oder er und sein Gegner striken und verhauen sich. Das ist weiß Gott nichts schlechtes und ein gewisse Stilpflege ist immer gut, das ist aber kein Grund a) sich nicht weiter zu entwickeln und b) den Stil man verwendet auch richtig zu beherrschen, zum Shoot-Style gehört bisschen mehr dazu sehe Größen wie Maeda, Suzuki oder Fujiwara, zumindest dann wenn man ganz Oben mitspielen will und von Fans dahin gehievt wird. Wie gut und stark ein Match mit Shibata wird ist stark davon abhängig mit wem er im Ring steht. Es fehlen ihm diese Jahre, wo Nakamura und Tanahashi ihre Einzigartigkeit vollends entfalteten, im dem Jahr wo Shibata sich vom Wrestling verabschiedete macht Tana-Boy den großen Sprung und wurde das erste Mal IWGP Heavyweight Champion.. Shibata ist für mich ganz klar hinter Nakamura und Tanahashi anzusiedeln, selbt die alten Leute wie Nagata oder Kojima sind als Wrestler besser bzw. kompakter was ihr Handwerk angeht, auch junge Stars wie Okada und Naito haben ihn was voraus. Ob er"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Wolfhartwrote on 27.09.2014:[6.0] "Nein, aus mir wird kein Shibata-Abfeierer mehr, auch wenn das momentan große Mode ist. Sein Wrestlingstil gefällt mir gut und gegen Leute seines Schlages (z. B. Davey Boy Smith Jr. ) schau ich ihn mir gerne an. Ansonsten aber macht er mit seinem völlig willkürlichen Selling bzw. No-Selling vieles kaputt, was der Zuschauer seit Jahrzehnten als Ursache-Wirkung-Prinzip verinnerlicht hat und worauf ein funktionierendes Match basiert. Ein Wrestler mit dem Auftreten und den stilistischen Einflüssen eines Akira Maeda, der dann zeitgleich alles über Bord wirft, was Leute wie eben Maeda aufgebaut haben - Shibatas Interpretation von Wrestling ist einfach nicht meine."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: alewrote on 15.05.2014:[10.0] "Mein Lieblingswrestler seit hmm ja seit ich Puro regelmäßig schaue. Einer der ersten die ich so wirklich wahrgenommen haben und irgendwie heraus stach. Hat mich mit seiner Stiffness und seinem No-Words just auf die Fresse Wrestler Gimmick total überzeugt. Ich hoffe man gibt ihm bald mal einen anständigen Main Event Push, im Tag mit Goto dümpelt er nur so umher. Mal sehen wann es gegen Tanahashi geht..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: sevendaughterswrote on 31.03.2014:[9.0] "Shibata, on his day, is one of the most exciting people to ever step between a set of ropes and perform in the world of pretend-fighting. His matches are so intense, with stiff kicks, brutal forearms and lariats - and just enough submissions and suplex variations and "fighting spirit" to keep it interesting. His series with Goto in 2013/4 and his G1 match with Ishii are testament to a real warrior.   He has two major problems working against him though. One: because he's left a couple of times, once to pursue an MMA career and once to be the ace of a NJPW contender that folded, he isn't very well liked in the dressing room. Sometimes this affects his matches, with guys not willing to take the kind of punishment he dishes out in his usually very stiff matches. Also, he has trouble adjusting his style to certain kinds of opponent. For all the hate Okada has received, he puts on matches of high quality with all opponents. Shibata needs someone as good and tough as he is if he's going to shine.   Once considered alongside Tanahashi and Nakamura as one of the new generation to inherit the mantle of Chono, Mutoh and Hashimoto, it's clear that his behaviour has seen him slip down the pecking order. But it's also clear to see that he is capable of things in the ring that no one else is and I would hope that he can repair relationships to give the audience the matches we sense he is capable of."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: eldenaaaaawrote on 16.02.2014:[10.0] "Katsuyori Shibata is one brutal wrestlers ever his kicks are crazy and also underated"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: murasaki00wrote on 10.12.2013:[9.0] "I could watch Shibata kick the crap out of people all day.  His strikes are perfectly placed and his cool demeanor leaves you wondering if he's a professional wrestler or a cyborg from the future sent to beat the crap out of every person he stand across from in the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Gredzillawrote on 20.08.2013:[9.0] "Ich kannte ihn nicht als er zurückkehrte, aber die Matches mit Hirooki Goto (schade das er G1 dieses Jahr nicht gewonnen hat) und auch die anderen Matches (das von G1 Tag 4 war brutal) haben mir eines gesagt. Dieser Mann haut so dermaßen rein. Ich kanns nicht beschreiben aber jedes Match mit ihm war bisher mindestens gut und ... wow. Diese Kicks, diese Kicks sind soooo brutal. Alter schwede. Shibata ist awesome damit wär alles gesagt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: STRIGGAwrote on 28.06.2013:[8.0] "Er ist zurück. Es ist so unheimlich schade, dass er New Japan damals zu Big Mouth Loud und in Richtung MMA verlassen hat, aber vielleicht war es genau dieser Umweg, den er gebraucht hat, um so stark zurückzukehren. Dennoch: Hätte er diesen Umweg nicht genommen, könnte er mittlerweile ohne Probleme an der Spitze der Promotion stehen. Der Lichtblick ist dabei aber, dass er innerhalb kürzester Zeit wieder Gefühl für das Pro-Wrestling bekommen hat und dass er dabei eine Komponente mitbringt, die insbesondere in Japan immer eine große Rolle gespielt haben: Glaubwürdigkeit. Shibata ist ein wahrer Kämpfer mit unheimlich harten Strikes und tatsächlich so etwas wie die Personifikation dessen, was sich Antonio Inoki bei der Gründung New Japans unter dem Begriff "Strong Style" vorstellte. Ich hoffe, dass er New Japan lange erhalten bleibt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Rancorwrote on 23.06.2013:[7.0] "Endlich, endlich, endlich ist Shibata zurück im New Japan Ring. Er hätte niemals gehen sollen, denn auch nach x Jahren rumdümpeln im MMA Niemandsland ist er jetzt sofort wieder einer der interessantesten Worker bei NJPW. Wenn er jetzt dabei bleibt, kann er vielleicht doch noch sein Potential ausleben."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Kings Roadwrote on 19.02.2013:[7.0] "Ich fand es 2006 sehr schade, dass Shibata über BML dann zum MMA wechselte und dem Pro-Wrestling den Rücken kehrte. Für mich war er - zu der Zeit - der perfekte Gegenspieler zu Tanahashi und deutlich besser, als es Nakamura heute ist. Inzwischen ist er wieder bei NJPW angekommen und liefert eine ganz vernünftige Arbeit ab. Ob er bei NJPW aber nochmals längerfristig im Main Event ankommen wird? Das würde ich im Moment leider eher bezweifeln."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Sinestrowrote on 06.01.2013:[9.0] "Ist wieder zurück im Wrestling Ring und das ist gut so. Unglaublich stiff, klasse Technik und eine Intensität die unübertroffen ist. Kein Wunder wird in Japan Wrestling noch als "richtiger" Sport angesehen, dank Typen wie Shibata...."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Phoenix Downwrote on 01.05.2011:[8.0] "Was stimmt mit diesem Jungen nicht? So viel Potenzial aber er will sich lieber immer wieder in MMA Fights demütigen lassen. Shibata war so ein wutenbrannter Giftzwerg der so dermaßen rabiat gegen seine Gegner vorging das die auch die Fassung verloren und sich seine Kämpfe wie Shoots anfühlten. Er ist noch jung und ich hoffe das er eines Tages zurückkehren wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: D-Stylewrote on 07.12.2007:[10.0] "Cooles Auftreten, tödliche Kicks, im Team mit KENTA ein wahrlicher Takeover. Ich gebe ne 1 weil er mich sehr gut unterhält!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Conquistador37wrote on 14.10.2024:[10.0] "What more can I add? Iconic voice. No one, and I mean NO ONE can ever do the "And NEEEEEW __________ Champion..." better. He was THE VOICE for a title win. Heck, he was even masterful as a character whenever he was a part of any segment or angle. Completely excelled in the role, defined it even. Top tier."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Ruthless Attitudewrote on 25.09.2024:[10.0] "Howard Finkel is one of those names that shows you don't have to be a wrestler to be a wrestling legend and his appearances on every major show gave them a touch of class and his unique voice was iconic and was part of the identity and the very fabric of the WWF/E. He was Vince McMahon's very first signing and was the longest serving employee at the time of his death. He was briefly involved in some storylines, with one of the better ones being Chris Jericho's brainwashed lackeys and he was so entertaining to me in that storyline because he just had an innocence about him that contrasted the narcissist character Jericho had debuted with and he was hilarious to watch throughout that and kinda sympathetic as well. Howard made every Royal Rumble, WrestleMania ect. feel that much more important and it is obvious that throughout his life he lived and breathed wrestling. Just forget about the tuxedo matches though"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: BMWrestling17wrote on 07.04.2024:[10.0] "This guy is my favorite ring announcer ever. A master of his craft, he was born to become an announcer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: JediSaiyanMaster1203wrote on 25.11.2023:[10.0] "You know how people view "Mean" Gene Okerlund as the best interviewer in professional wrestling with no competition whatsoever? Howard Finkel is in that class for ring announcers. He's easily the most iconic, a voice that everyone heavily associates with when it comes to ring announcing and just the WWF in general. The Fink was so good, people popped when CM Punk brought him out to be his personal ring announcer at the 2011 Survivor Series PPV to upstage Alberto Del Rio (also, the commentators sold the moment terribly, almost killed the moment). He's also the one who came up with the name "WrestleMania, " inspiration coming from the phrase "Beatlemania, " which you could argue is his biggest contribution to the business. Championship victories were truly made 100 times more special when you heard Howard Finkel announce them in his iconic "Here is your winner, and... NEEEEEEWWWWWWW" line that lives in the minds of wrestling fans forever. It's also reported that he's one of the nicest guys in the business, one of the longest employed in the WWE's history, and was unfortunately a victim of people taking an advantage of him and being harsh to him when it came to pranks and holding him accountable for whenever he had to bump. R.I.P. Howard Finkel"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: bigredtalk89wrote on 24.07.2023:[10.0] "Best ring announcer ever. Everyone since him has failed to measure up. Super likeable as well, he got pushed out of his spot earlier than he needed to."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: MattHallwrote on 14.07.2023:[10.0] "One of the best voices ever, him and Randy Savage have the most iconic voices in wrestling history. His voice is so iconic that I do make Howard Finkel Impression. Overall the best Ring Announcer in WWE history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: ItsToniTime89wrote on 29.06.2023:[10.0] "DIE Ringannouncer Stimme des Pro Wrestlings schlecht hin. Jedes mal, wenn Howard Wrestler wie den Undertaker oder den Ultimate Warrior angekündigt hatte, war Gänsehaut vorprogrammiert. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Giantfan1980wrote on 07.06.2023:[10.0] "THE best ring announcer in history! The Fink is one of the few guys on the site who I will give a perfect 10 to because he just nailed the introductions every match, every night, every year and made everything feel more legit and important."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Matthieujstwrote on 07.08.2022:[10.0] "He is the greatest voice in pro wrestling history. His anouncements always gave me goosebumps his voice is fucking unique, he is a true legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: GriffinXwrote on 06.02.2022:[10.0] "The Fink had the perfect get you hyped for a big match voice. He was so good but you really won't know just how good until you hear a really bad ring announcer. To be honest the few times they tried to put him ins some kind of story sucked but he was just so good at what he was supposed to be"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: mjs2212wrote on 19.10.2021:[10.0] "I do not know how it is possible to ever hate this man, Howard Finkel is an absolute legend! His announcing style and delivery is so iconic, and he is up there with Michael Buffer when comparing all the ring announcers in history. Every wrestler I have seen talk about Fink has never had a bad word to say about him, and he has always come off as one of the most genuine human beings ever. Such a professional and an awesome person who is terribly missed to this day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: juiceisloosewrote on 27.08.2021:[10.0] "Hands down, the most memorable and iconic announcer in the history of wwe. Worked there for an impressingly long time too. Acted and sounded extremely professional and knew how to evoke emotions while announcing the names. Him announcing Undertaker's name gives me chills every time i hear it. Also was involved in angles with Jericho and Lillian and made me laugh. Nothing bad to say about this guy at all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Daigotsuwrote on 20.06.2021:[9.0] "Finkel was an excellent ring announcer and, when they let him, was a very funny character. All in all he was an excellent performer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Kungwrote on 30.05.2021:[10.0] "Not only was Howard Finkel the greatest ring announcer in pro wrestling history, but he was also by all accounts a decent man who remained loyal to WWE for over 40 years. One of a kind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: marexcelwrote on 16.04.2020:[10.0] "Einer der größten Wrestling-Persönlichkeiten, die das Business jemals gesehen hat. Hoher Wiedererkennungswert, extrem charmante und sympathische Art und starke Perfomance am Mikro. Eine WWE-Legende, wie sie im Buche steht. Ruhe in Frieden, Howard FInkel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Wrestling Foreverwrote on 16.04.2020:[10.0] "The Fink war einzigartig. Ich habe bis jetzt viele Ringsprecher gesehen aber keiner war so fantastisch wie er. Ich möchte keine Vergleiche ziehen aber Bobby Cruise und Rich Palladino findet ich fast fantastisch. Zu Recht in der Hall of Fame. Ewig der WWE treu, keine Beweiße aber ich denke das die WCW damals ihn als Ring Accouncer haben wollte. Edit 16. 04. 2020 Das sind aktuell keine gute Tage gerade auf wwe. com erfahren das Howard Finkel verstorben ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Pm Frankwrote on 23.08.2019:[9.0] "Best ring announcer ever .  Wwe, Njpw, TNA , AEW will never find better ring announcer. He was freaking awesome"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: KyleEnjoysWrestlingwrote on 30.07.2019:[10.0] "Iconic. EVERY ring announcer in the world today draws inspiration from Finkel. Fink made the dawn of a new champion mean so much with the famed "... and NEEEEEEWWWWWWWWW.... ! " exclamation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: warmongerswrote on 04.05.2017:[10.0] "I love The Fink. If there was a way he could could still be announcing i'd be thrilled. A proper company man who obviously wrestling.   He was a very good on screen performer too, his stuff with Jericho/Shamrock was awesome."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: WrestleArtswrote on 15.02.2017:[7.0] "Hat mir ehrlich gesagt nie viel gegeben, der Fink war da und hat einen ordentlichen Job gemacht. Mit viel Nostalgie: 7"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: ApexOfEvolutionwrote on 10.09.2016:[8.0] "Bei Howard Fink ist mir immer aufgefallen, dass er gerade früher viel älter aus sah als er eigentlich war und auch sonst irgendwie aus der Zeit gefallen wirkte. Aber vielleicht machte gerade das seine Ausstrahlung aus. Heute wirkt er so als darf er mehr er selbst sein und auch das kommt angenehm rüber. Ein Ringsprecher ohne viele Schnörkel und überdrehten Selbstdarstellungstrieb wie bei einem Michael Buffer. Die Athleten stehen immer im Mittelpunkt. Mir fehlte manchmal aber auch der Kick, der ihn richtig grandios macht, also bewerte ich ihn "nur" mit gut."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: The Sick Lebowskiwrote on 13.06.2016:[10.0] "Die Ansager-Stimme meiner Jugend neben Mean Gene Okerlund und ein Synonym für die WWF. Hat eine sehr starke Art, die Wrestler anzusagen. Eine wahre Ringsprecher-Legende, vielleicht sogar die größte aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: K4pkanwrote on 20.03.2016:[10.0] "Die WWF Stimme meiner Jugend. Gerade jetzt auf Network einige PPV-Events aus den frühen 90ern gesehen und fühlte mich sofort wieder 20 Jahre jünger. Diese Stimme bleibt im Gedächnis."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Y2J316wrote on 28.11.2014:[10.0] "Howard Finkel. Der Man ist für mich der Beste Ringsprecher aller Zeiten. Seine Betonung und alles drum und dran sind einfach einmalig. Lang lebe der Fink."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Mantafahrerwrote on 04.10.2014:[10.0] ""Ladies and gentlemen, this is the Royal Rumble match! " - Unbestritten einer der besten Ansager aller Zeiten. Manchmal sehe ich mir alte Matches nur an, um den Typen vorher ansagen zu hören. Kaum zu toppen, was Finkel bringt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: HighlightHEELwrote on 30.08.2014:[10.0] "Der Fink ist für mich der Gott aller Ringsprecher und die Stimme der WWE. Ich würde ihn auch heute noch alles ansagen lassen, einfach um seine geniale Stimme zu hören. Da er jetzt aber wohl lieber im Reich der Zahlen unterwegs ist, sei ihm das auch gegönnt, dem treuesten Angestellten der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Brainbreakerwrote on 22.02.2014:[10.0] "Was ein Ansager können muss, ist die Emotion, die mit dem zum Ring kommenden Wrestler verbunden wird, perfekt in der Ansage wiederzuspiegeln. Von der Hogan-Ära bis zu den Attitüden gibt es da nur einen, der immer im Hinterkopf ist, wenn es um die Entrances geht... von dem man hören will, wie er "Theeeeee ROCK! " oder "Theeee Underrrrrrtaker" ankündigt. Und das ist the Fink! Immer wieder Gänsehaut!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Matt Mackswrote on 30.12.2013:[9.0] "Eventuell bin ich nostalgisch verklärt, aber Howard Finkel ist für mich ein Kult-Ringsprecher, dessen Stimme ich immer am ehesten im Kopf habe, wenn es darum geht, einen neuen Champion anzukündigen. Jason Roberts ist ebenfalls gut, aber " The Fink" hat den Bonus der Nostalgie."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Daneraswrote on 04.11.2013:[10.0] "Er ist ein Kult im Wrestling. Ohne geht es gar nicht! Er sieht total brav aus, und wenn ich Wrestling nie geschaut hätte, und er mir sagen würde als was er arbeitet, dann wäre ich total erstaunt geworden. Ein super Ringsprecher!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: believeintheshieldwrote on 03.10.2013:[9.0] "Einer der besten Ringsprecher der WWE! Allerdings einen Hauch Schlechter als Tony Chimel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Scuzzlebuttwrote on 30.06.2013:[10.0] "Kurz und knapp gesagt. The Voice of WWE. Persönlich finde ich aber Tony Chimel besser, aber das haltet mich von der Höchstwertung nicht ab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Smi-48wrote on 23.11.2012:[10.0] "Howard Finkel ist für mich das Urgestein der Ringsprecher-Gilde und im Gegensatz zum prominenten Buffer ein Kerl mit Bezug zum und und Interesse am Produkt. Für mich stellvertretend ein Synonym für meine persönliche ganz frühe Zeit als Fan - und der Nostalgiker in mir kommt bei seiner einzigartigen Stimme immer in Schwärmen. Ich mag den Kerl, da konnte auch ein Tuxedo-Match gegen Wippleman den Eindruck nicht ruinieren. @Iksuepsilon - Du hast recht, natürlich ist das ein RingSPRECHER, kein Ringrichter, aber Justin Roberts heisst bürgerlich "Justin JASON Roberts" (siehe auch ein Blick in die Datenbank). Also wenn schon klugscheißen, dann auch richtig ;) ....."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Iksuepsilon83mwrote on 23.11.2012:[10.0] "Der beste Ringsprecher aller Zeiten. An ihm kommt keiner vorbei, noch nicht einmal Michael Buffer! EDIT: Lieber MattMacks, Howard Finkel ist weder ein RingRICHTER, noch heißt der gute Herr Roberts JASON mit Vornamen ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: CMP nwrote on 20.10.2012:[8.0] "Top Ringsprecher, allerdings gefiel mir die Stimme nicht so wirklich. Aber dennoch ein sehr guter der seine Ansagen immer fehlerfrei ablieferte. 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Sirius Van Grathwrote on 26.02.2012:[10.0] "Bester Ringsprecher aller Zeiten. Ich bekam immer Gänsehaut, wenn er einen neuen World Champion angesagt hat. Vorallem bei Chris Benoit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Hardcoremaniacwrote on 03.02.2012:[10.0] "Mit enormem Abstand der beste Ringsprecher den es je gegeben hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Rated R Champwrote on 11.12.2011:[10.0] "Ich glaube zu The Fink muss man nichts mehr sagen, wenn es jemand "nur" als Ringsprecher zur Legende bringt muss er richtig was drauf haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Tamamwrote on 15.07.2011:[10.0] "Bitte ? unter mir ... wieso geht es um Wrestler ? Es geht um das ganze Wrestling Buisness. Vom Chef bis zum Kommentator - vom Star bis zum Ringsprecher.  Finkel ist ganz sicher der größte und beste Ringsprecher aller Zeiten. Seine Stimme ist einfach ein Genuss und wertet Wrestlemania doch auch immer ein bisschen auf. Dabei auch Backstage sehr wichtig - Namensgeber von Wrestlemania ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Johnny-Tennerwrote on 16.05.2011:[10.0] "Die Stimme des Wrestlings. Freue mich immer wieder wenn ich diese Person noch einmal sehen darf. Wenn ich mir die Frage stelle wenn ich am Aller liebsten als Ringsprecher sehen würde dann gibt es für mich nur eine Antwort Howart Finkel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: exxterwrote on 01.03.2011:[10.0] "Classic. Einfach nur Classic. Bester WWF Ringsprecher den ich je erlebt habe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: The Woerpwrote on 14.12.2010:[10.0] "Für mich der beste Ringansager, den ich jemals gehört habe. Boxen und MMA mit einbezogen. Dass er nun nicht für alle Ewigkeiten jede Woche Raw ansagen konnte ist klar, jeder geht mal in den verdienten Ruhestand. Er müsste aber zumindest bis an sein Lebensende bei jeder Wrestlemania die Matches ansagen, nicht nur die Hall of Fame Inducties."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: jjchiofalowrote on 11.12.2010:[10.0] "Howard Finkel is perhaps the best announcer in the wrestling business. He give the best introductions for wrestlers. He is the best nonwrestler in the business today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: KASHwrote on 27.10.2009:[10.0] "Die Stimme der WWF. Jeden Main Event und jedes Titelmatch was er ansagt wird irgendwann mal episch :D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: real americanwrote on 25.10.2009:[10.0] "Wohl der beste WWE Ringansager aller Zeiten, zu seinen besten Tagen die Stimme des Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Hit Manwrote on 21.10.2009:[10.0] "Eindeutig der beste Ringsprecher aller Zeiten. An Finkel kommt keiner ran, auch nicht Michael Buffer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Basket Casewrote on 14.09.2009:[10.0] "Grandioser Ringsprecher, der beste ever meiner Meinung nach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: SweetMetalMusicwrote on 26.07.2009:[10.0] "Der beste Ringsprecher ever. Für mich besser als Michael Buffer. Schade, dass er nur noch die HOF Neuaufnahmen bei Wrestlemania ankündigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: shoopdawoopwrote on 29.06.2009:[10.0] "The winner of this match... and the neeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeewww world wrestling federation champion...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: The-Game91wrote on 06.05.2009:[10.0] "Seine Stimme ist die Stimme der WWE. Bei seinen Ansprachen bekam man Gänsehaut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: manager1977wrote on 10.04.2009:[10.0] "Genialer Ringsprecher. Wahnsinns Stimme bei der Erscheinung. Einer der es wirklich drauf hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: LordTrailerwrote on 18.11.2008:[8.0] "Toller Ringsprecher, der mir immer sympathisch war. Hat eine spezielle Aussprache ("This is the R O Y A L R U M B L E MATCH ;)") Ich tue mich aber schwer einem Ringsprecher (nicht abwertend gemeint) 10 Punkte zu geben. Daher 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Neubauteneinsturzwrote on 21.08.2008:[10.0] "Ganz eindeutig der beste Announcer in der WWE und wohl im Business generell. Besonders seines Ankündigung eines Titelwechsels ist unverkennbar. "And the NEEWWWW WWE-Champion... ". Eine Announcerlegende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Blue Meaniewrote on 23.07.2008:[10.0] "Klassischer Ringansager mit einer prägnanten Stimme. Wird leider mittlerweile von WWE zu wenig als Ansager eingesetzt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Riley Mathewswrote on 30.05.2008:[4.0] "Nicht unbedingt schlecht aber Lilian und Tony Chimel finde ich besser."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Bigkev82wrote on 26.04.2008:[10.0] "DIE WWE-Stimme meiner Jugend vor allem das Lispeln - natürlich kommt er optisch nicht an Lillian ran... *g*"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Mr Bonewrote on 11.04.2008:[4.0] "Ich fand ihn noch nie gut. Seine Stimme hat meiner Meinung nach keine Power wie Tony Chimel z. B."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Tomkowrote on 26.03.2008:[10.0] "Einfach nur klasse dieser Mann...  Als bei Wrestlemania 22 die Hall of fame-Mitglieder aufgerufen worden sind und ich den Namen Eddie Guerrero hörte bekam ich schon Gänsehaut... Dieser Mann bringt einen Namen so unglaublich rüber...  Einfach klasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: AirRiedlewrote on 17.03.2008:[10.0] "Unbestritten der beste Ringansager, den es je gab!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: jimpanse1980wrote on 06.01.2008:[10.0] "Authentischer als Mr. Buffer. Leider heut kaum noch im TV."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Cloverwrote on 22.11.2007:[6.0] "Definitiv ein Urgestein - allerdings nuschelt er mir inzwischen zu sehr :-/ Daher nur 7, 5 Punkte o. O"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: shannonmoorewrote on 04.11.2007:[6.0] "Guter Mann aber man inzwischen einfach zu alt, irgendwan müssen einfach mal andere ran."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: ghostwrote on 25.10.2007:[10.0] "Sehr schade dass er nicht mehr dabei ist.. Einfach fantastischer Ringsprecher - eine Stimme welche immer perfekt angepasst und angemessen war. Super Stimme, Super Momente."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Garvinwrote on 01.10.2007:[8.0] "Legendär. Habe seine Ansagen immer sehr gerne gehört, denn er verlieh den Wrestlernamen immer das gewisse Etwas. Dennoch konnt ich mich nicht immer ganz mit ihm anfreunden, daher "nur" eine 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: RhinoRaineswrote on 09.09.2007:[10.0] "Er ist und bleibt eindeutig der beste Ringsprecher in der WWE-Geschichte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Grissomwrote on 28.08.2007:[10.0] "Er war der beste. Die WWE sollte ihn mal wieder öfters bringen, zumindest bei denn goßen 4 PPV's."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Ericwrote on 28.08.2007:[10.0] "Super Ringsprecher und er sollte bei jeder Show wieder dabei sein nicht nur WrestleMania."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: CSHincwrote on 18.08.2007:[10.0] "ein toller typ treu zu seinem arbeitgeber und immer mit vollem einsatz dabei"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: jerseyhoolwrote on 02.08.2007:[10.0] "ein herrausragender ring-announcer, davon koennte sich auch ein michael buffer eine scheibe abschneiden. nie vergessen werde ich den auftritt in toga bei WM IX & mit seinem toupet bei WM X - zum schiessen! "the fink" rules."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: LexLuger4everwrote on 11.07.2007:[10.0] "Der legendärste Ringsprecher aller Zeiten! War in 4 verschiedenen Jahrzehnten Ringsprecher in der WWF, das verdient Respekt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Sandman16wrote on 24.06.2007:[10.0] "Ganz klar der beste Ringsprecher der je in einem WWE/F-Ring stand."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Giant2wrote on 24.06.2007:[10.0] "Meiner Meinung nach steckt The Fink alle anderen Ringsprecher in die Tasche. Keiner hat diese unnachahmliche Stimme und die Betonung je wieder hinbekommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: NightLifewrote on 24.06.2007:[10.0] "Für mich der mit Abstand beste Ringsprecher aller Zeiten. Wahnsinn. Es läuft einem oft mal kalt den Rücken runter bei seinen Ansagen. Ein Unikat. Er gehört später in die Ruhmeshalle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Hennewrote on 24.06.2007:[10.0] "Früher Mal die Stimme der WWF, heute leider nur noch die Stimme Wrestlemanias."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: KnivesBrandowrote on 17.01.2025:[10.0] "Ma catcheuse préférée ever . Arisa est tout simplement trop forte , elle est à elle seule une des raisons de continuer de regarder du joshi après la grosse chute du Joshi au début des années 2000 . Arisa est violente, agile , rapide et courageuse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Anas Kingwrote on 11.12.2024:[4.0] "She is an ok wrestler, but not my preferred style. People overhype her a lot. Yes, she has some good matches, but she's noway near as good as some of the other joshis in the world. She's very hyped up, so I decided to watch her matches. My conclusion was, while some of them are good, most of them don't even hold a candle to some of the best joshis matches I've seen. She doesn't have depth in her arsenal. She isn't as fast as others. Her moves don't look as effective as others. She needs to do a better job at selling too."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Maniaofmaniawrote on 07.11.2024:[10.0] "Has more matches in the past ten years, both tags and singes [that i would call must see the one department the likes of Okada does not have the tags and a lot of top-level dragon gate guys have too little amount of high-level singles] just on work alone she is the simplest 10 I could give she also has great move set"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Mugendaiwrote on 24.08.2024:[10.0] "One of the finest wrestlers working today. The only thing that stops her from getting a 10 is her tendency to swallow up younger wrestlers and give them nothing, not even simple strikes, during matches. I know she's from an era where that is to be expected from a veteran against a junior, but when you compare her matches against less-experienced wrestlers to her frequent teammate Tsukasa Fujimoto, it's a different world. That said, Arisa is unworldly talented and as long as she's against someone she perceives to be on her level, you'll see a great match. [August 23, 2024 edit: She spent her retirement road really helping lift on the wrestlers who will remain after she leaves, and deserves the upgrade to a 10 accordingly.]"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: DangoDaisukiwrote on 30.09.2023:[7.0] "Hat mich noch nie beeindruckt und ist auch nicht komplett positiv herausgestochen. Ich finde sie zwar natürlich gut von den Moves her, aber es hat mir noch kein Match von ihr so richtig gefallen. Eher immer etwas langweilig für mich, trotzdem noch 7 Punkte."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Ivywrote on 19.07.2022:[10.0] "Over half way through 2022 and I believe that Arisa Nakajima is the best wrestler of the year with all her work across joshi promotions. Her consistent match quality is unparalleled at the moment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Lalo Camposwrote on 28.02.2022:[9.0] "One of the best Joshi wrestlers in the world today, one of the main attractions of SEAdLINNNG and their main champion"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: MrCagematchwrote on 17.12.2021:[4.0] "Nowhere near as good as people make her out to be or as her rating suggests, she's good, but she's never the best part of her best matches, and her best matches are drawn out epics that don't really land and end up being good at best but rated and praised as some epic bangers. She's pretty average compared to the Joshi standard in Japan right now."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Kaswrote on 12.12.2021:[10.0] "For my money, she's the best Joshi wrestler since the turn of the century, and one of the best Joshi wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Kungwrote on 30.05.2021:[9.0] "I might not love Nakajima as much as a bunch of people on here, but there's no doubt that she's one of the most skilled Joshi currently working outside one the major promotions."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: medousewrote on 11.12.2020:[9.0] "What a great talent! Strong style, smart technique and vicious strikes. Many of her matches are really brutal. She took some serious beating over the years for sure. Arisa is also 1/2 half of one of my favourite tag teams - Best Friends. Her tag matches alongside with Tsukasa Fujimoto are always awesome."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Makai Clubwrote on 12.11.2018:[10.0] "One thing I love is someone who is never happy unless they are killing bitches inside the ring. Arisa Nakajima is that women. Great wrestler. Very versatile in what she can do. Her technical prowess is excellent, love her brawling matches too. She brings so much hatred and intensity to her matches. She has some cracking matches against Kana (otherwise known as Kana), Rina Yamashita, Nanae Takahashi and more. The rating is totally justified IMO."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: TheRatemakerwrote on 31.10.2018:[10.0] "The most technical female wrestler today, she is near to the ZSJ level. She is not the most intense and physical but she can be really good at it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: UserDragon12wrote on 25.10.2017:[9.0] "Being honest with you, I have not seen many Nakajima matches, just a few matches in JWP, but I can tell you how little I've seen has impressed me, she's one of the few current joshi fighters I like, her match with Kana is full of emotion and is my favorite of this young and talented wrestler. I do not give her a 10 because I know she can show more, she's young and she can do bigger things, it's really worth seeing her in the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: rustybridgewrote on 10.08.2016:[10.0] "Very good worker with great mat skills. One of the best Joshi wrestlers I have seen. Quite a few titles to her credit already, 14 in just 10 years and current holder of four. She is very marketable and easy on the eyes as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: tychowrote on 04.03.2015:[10.0] "Great mat wrestling skills, killer forearms and a master of the german suplex.  Not only is Arisa Nakajima the backbone of JWP, she is also one of the most skilled wrestlers in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: sautiwrote on 01.11.2014:[10.0] "Meine fast 7 Jahre alte Erstbewertung muss dringend berichtigt werden. 2007 war sie noch ein aufstrebender Rookie, heute ist sie die legitime Nachfolgerin von Azumi Hyuga und gehört zu den Top Aces im Joshi. 10 Punkte statt 8."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: joshimaniawrote on 23.06.2013:[9.0] "Arisa Nakajima is a bright light for modern joshi and one of the best wrestlers going today."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: SPEEDSTAR02wrote on 19.11.2024:[10.0] "Kento Miyahara may legit be one of the best wrestlers on the planet as of now. He's been absolutely amazing for the past 5 to 6 years and hasn't stopped a single bit. Even during the dark periods of All Japan, he was carrying the company on his back for half a decade. I don't see all the criticism on him, but he's such a great babyface who is over in the company and is absolutely spectacular in the ring. Genuinely one of the best in the world, he is the "Best Of The Best.""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Dweeeabwrote on 19.11.2024:[10.0] "One of the best in the world for years now. I personally dont really see the criticism of all his matches are the same I mean they all have slow builds with an insane ending but thats how most matches are structured. Anyways Im always captivated during his matches and I love his moveset. He is always insanely over and is an incredible babyface, always incredibly fun to watch. Has also been carrying AJPW for the better part of a decade but they finally have some good people around him at this point."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: benny5bellyswrote on 20.08.2024:[10.0] "If you want to understand just how good Kento is, imagine All Japan the last 5 or 6 years without him. He kept it going through some dark days and now finally have pieces around him that can go. He is still the guy that makes those around him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Jordan Impactwrote on 24.07.2024:[10.0] "The best wrestler on the planet right now. Just oozes charisma and of course amazing in ring and the man just gets what Professional Wrestling is. His loyalty to AJPW cannot be understated when he could easily gone to New Japan. Will hopefully continue taking AJPW forward as company Ace and put on great matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Wrest lingaddictionwrote on 10.05.2024:[10.0] "Charisma personified! The man has it all. From the moves, the accolades, the fan connection, even down to the fueds. I've watched his matches for years now and I can safely say he understands professional wrestling on an intimate level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: GriffinXwrote on 04.12.2023:[10.0] "An amazingly talented and entertaining wrestlers. A man who has at time put AJPW on his shoulders when they needed him most"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: cal9099wrote on 23.11.2023:[10.0] "The quintessential pro wrestler. Charisma for days, incredible in-ring and a great look to top it off, not a whole lot more you can ask for. Shame he doesn't get the amount of eyeballs he deserves being in AJPW, but I'm glad fans of that promotion get to witness a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: KENTAfanwrote on 10.08.2023:[10.0] "Kenta has been one of the best in the world for awhile now, but he really needs to leave AJPW for a more significant promotion now. The reason hes not having matches quite as good as he used to is simply because hes faced the same guys in AJPW time and time again. His recent classic against Nakajima is a perfect example of this, so hopefully he goes to NOAH or NJPW soon. If he stays in AJPW, as good as he is, his legacy is going to suffer for it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: DangoDaisukiwrote on 30.06.2023:[7.0] "Miyahara ist für mich ein Gesamtpaket ohne irgendeine Besonderheit, was seine Matches für mich aber eher langweilig macht. Ich war in keinem seiner Matches wirklich emotional in irgendeiner Weise involviert und mir fehlt komplett das gewisse Etwas."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: NEVERoverweightChampionwrote on 29.06.2023:[9.0] "A lot of charisma and a great connection with the crowd, he truly is one of the best wrestlers of his generation. Sadly I think being in AJPW with the state the promotion is in doesn't help him to reach his full potential."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: deceivrwrote on 17.06.2023:[8.0] "Hey, look! It's the psychotic romantic who is loved by children everywhere! I loved Kento Miyahara when I started to see his matches again from 2017 - 2021. It was an absolute blast to see him evolve into a crazy mess. When he started out in K-Office, he was practically just some guy who was to "wind up like the rest", ala Satoshi Kajiwara, and dissolve into a period of obscurity. That WAS until AJPW came knocking and said; "Hey! we want you to be a good star for us. You're from Fukuoka, so you can raise up the markets for us there! ", and the rest, as they say, is history. His presence, to the AJPW staff (and a very interested Jun Akiyama), was unlike anything they had come across for a local talent. Numerous Triple Crown / Sankan title matches later, and he is at his most beloved... and hated. Many state, to which I agree with, that he has done the same things in most of his matches; this occurs mostly in big time title matches (excluding tag title matches, especially with Takuya Nomura as Miyaken To Takuya), wherein it goes to a certain distance and never really gets to the amount of speed of a, let's say, Open The Dream Gate title match. This is one filled by fans of more energetic wrestlers of the day such as Will Ospreay, Kazuchika Okada, etcetera. To me, his slow offense makes a good indicator for technical story-building, but is left to be filled by newer moves and abilities that he is to show off (spoiler; he hasn't). In the end, Miyahara is growing, but, with the way he is now, it's safe to say that he will grow to be either a love-filled Tanahashi-esc ace, or a shadow of a era defined by its heart and will lead by the pillars. His work is great, but flawed, and it must be said that he is to be at the top of his game soon. We'll wait patiently, Miyaken, show us what 'ya got!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: No Onewrote on 24.05.2023:[10.0] "The best formulaic wrestler in Japan. He has incredible chemistry with virtually every opponent. He also has a special charm & charisma that reminds me of the legendary Muhammad Ali of all people. That is saying something. He should be a major mainstream star across Japan. He is the ACE of AJPW bar none."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Rainmaker9198wrote on 10.04.2023:[10.0] "Dude just have it all, charismatic, amazing in ring, super over with the crowd. when his music hits the people are on their feet. just the total package and a major star. probably one of the best of his generation"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: arrancarwrote on 15.12.2022:[6.0] "Dropping my score from an 8 (which was a 9 a few years ago) because I don't think I can truly consider Miyahara a great or even very good wrestler at this point. I have 4 major issues with him: (1) HE'S FORMULAIC AS HELL. He's had plenty of great matches, but GOD could he introduce a big move that isn't a knee strike or a german suplex? All his big singles-match performances are *entirely* copy-and-pasted, having the exact same opening shine/control work segments, the exact same comebacks, and of course the exact same big moves in the 'epic' final 1/3rd. The guy might genuinely only have 6 moves in total, which sadly isn't hyperbolic to say. Having 99% of your meaningful offence made up of just two moves is terribly boring. (2) He's very unlikeable despite intending to be the babyface ace. The way he so desperately appeals to the fans over and over in his entrances, during his matches, and in his post-match celebrations becomes very grating. Babyfaces shouldn't be so clearly self-interested in receiving support. It also doesn't help that he will constantly bring out heel tactics in very melodramatic ways, but then expect us to buy into him when he's being beaten down a minute later. I used to enjoy Miyahara's babyface selling a few years ago, but now his expressions have become completely over the top and goofy, with him making these big bug-eyed faces and sticking his tongue out in ridiculous ways, sometimes while letting loose unhinged laughs, all of which just makes him come off like a deranged creep. (3) The dude can't sell a body part to save his life. I'm not a selling-purist, but for the love of God, Miyahara zaps out so much intrigue from his matches when he totally ignores the 20+ minute work done to his leg (which is the usual body part of choice) and immediately starts running around at perfect speed and with perfect technique, never addressing his worked-over limb ever again. (4) The fact he's pushed so damn heavily as the ace has made him boring to follow, and thus he heavily weighs down my overall interest in AJPW as well. Since his first Triple Crown title win in 2016, Miyahara has been champion 55% of the time. That's insane. He's achieved so much by his current age of 33 that there's nothing remotely interesting left for him to do. Now, despite these issues, which can either be mere annoyances or major aggravations depending on how Miyahara is feeling that day, Miyahara *can* still be a good or sometimes even great wrestler. The way he can hit a flurry of moves with such fantastic technique is very impressive, and a lot of his offence connects in a very impressive manner. His big matches for the last few years have all been the definition of formulaic, but he's at least well skilled at working that formula, I guess. A few years ago I thought Miyahara was the second coming, but as he's continued to be pushed to the top and I follow him more closely instead of just isolated viewings, I realise just how very limited he is."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: jamzell00wrote on 29.06.2022:[10.0] "The criticisms had against his formula for big matches are valid but I dont care I love this man. The great matches, the presence in ring, the goofy ass faces he makes. All of it is amazing to me. Dude has given everything he can to AJPW despite its up and down business over the years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: PepsiManwrote on 06.05.2022:[7.0] "I was genuinely surprised with Kento. I only started watching AJPW recently but he's been a shining blessing. The match in night 1 of Champion Carnival was fairly good and he seemed strong in defeat. He's honestly the Tanahashi/Shiozaki of modern day all Japan"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: R0n1nwrote on 04.05.2022:[10.0] "Very few people are able to connect with the audience, be it in the arena or online, as Kento Miyahara. He mastered it beyond anything I would have imagined. And even though his matches are going with more or less same formula, he somehow manages to make it watch over and over again with heavy emphasis on the storytelling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Logue38wrote on 05.02.2022:[10.0] "One of the best wrestlers on the planet. He has an incredible charisma and connects with the live audience. While it's clear he has a formula, he's so good at doing it that you end up not caring that you've seen it before. Also, it's somewhat overblown, as most complaints about him being formulaic are more based around the fact that he doesn't really have any big spots, so his knee strikes and the struggle to get his finishing hold locked in act as his spots. He's one of the masters of storytelling/psychology, along with contemporary wrestlers such as Shiozaki (I haven't watched much clap-crowd era Miyahara, so it is possible that his talents rely on being able to connect with the crowd. This is not a knock on Miyahara, however, as wrestling is meant to be done in front of a crowd that can cheer)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Kungwrote on 27.10.2021:[9.0] "One of the best guys working in Japan but not in New Japan at the moment. This guy has super star written all over him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Lalo Camposwrote on 18.10.2021:[10.0] "The Ace of AJPW and the youngest Triple Crown Heavyweight Champion of all time, he has amazing wrestling skills and his huge charisma, make him a total package of a wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: rainmakerpunkwrote on 17.04.2021:[10.0] "He's an amazing ace for AJPW, he puts on fantastic matches and has some fantastic title reigns, he's already done a lot in his career but is still young and has a bright future ahead of him"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: uziwrote on 16.04.2021:[10.0] "My best in the world, and one of the best of all time. Nobody to me has matches that are as engrossing as Kento. His psychology is on par with any of the all time greats, and he's one of the most charismatic wrestlers on the planet. And for my particular tastes, the fact that he does have a relatively simple moveset and doesn't build around doing any particular crazy spots or stiff moments in matches is an asset. I love Ibushi too and I don't think his style is inherently worse, but for me someone doing an insane spot or something at times breaks my engagement in the match. Doing that isn't a minus in my book but being one of the BITW without it is a major plus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: pierreMinnewrote on 17.03.2021:[10.0] "One of the bests wrestlers in the world today, easily in my top 3. He is a monster of charisma and connects incredibly well with the crowd. Seeing his entrance is always a fantastic moment. His work in AJPW is simply incredible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: brandon062896wrote on 18.10.2020:[9.0] "Sometimes he comes off as formulaic. On the other hand, his matches are spectacular. His match with Suwama for the Triple Crown belts is one of the best matches I've seen within the past year or so, and his use of the straight jacket german as a finishing maneuver is quite laudable"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: ElPolloLocowrote on 25.09.2020:[8.0] "He's basically like Okada, only without the mega-talent helping elevating him even further. Still a damn good main eventer and worthy Triple Crown champion by any means."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Ma Stump Pullerwrote on 12.08.2020:[8.0] "One of the better parts of AJPW, but he has a lot of glaring flaws that need to be worked on, namely that he doesn't really have enough innovation in terms of his wrestling sequences, and his "signature" spots are overused and get extremely tedious after a while. He's a solid babyface, but it doesn't seem to come naturally from him, if that makes any sense. It seems forced and put on at times. Compare him to someone else who was in his shoes in a larger company (Tanahashi) and you really notice a glaring difference between them in terms of that charisma. Tanahashi is just naturally likeable and can garner sympathy from even the hardest of crowds, while Miyahara tries way too hard to get crowds to get behind him, to the point that it really hurts his chances. It kinda reminds of when Naito was getting his initial big babyface push and he seemed like he was almost trying to get himself to believe his own hype, and that showed when crowds became cold and didn't consider him as a top guy. That being said, he's a solid worker within the ropes and can tell a story when he's not going through the motions and is free to go at his own pace. He's young, and has a lot of time to learn and get better."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Tom LeBlancwrote on 06.04.2020:[9.0] "Kento Miyahara, a very intense competitor, has everything needed to be amongst the best in the world. He would gain his much-deserved recognition if he wasn't so loyal towards AJPW, the company he's almost carrying all by himself."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Chekerwrote on 03.01.2020:[7.0] "I've lowered my previous rating from 8 to 7 (oh, big deal. ) Reason being Miyahara has had a dumb routine for a while now where as soon as the match starts, he takes his opponent outside, throws him onto the barricades on all four sides and headbutts him on all four sides. Then he puts his opponent's head around the ring post and pulls on his hair until Wada comes to stop him. I've seen Kento do this in the past 10 or so matches I've seen of his, with the fine exception of the latest one vs Jake Lee (he still went for the god damned headbutts).  If you're like me, you think outside spots are rarely interesting (I don't particularly care for brawling, much more of a grapplefuck guy) and you got sick of it after the second time. So imagine feeling like you're seeing it literally all the time. This routine brings Miyahara and his matches down, because by the time he gets back in the ring I've lost interest and I don't care. He has it in him to be incredible. I wish he'd drop this nonsense."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: VillainClubwrote on 24.12.2019:[10.0] "Sehr Guter Wrestler, der durch gute Matches und ein sehr gutes Crowd Verständnis den Titel und die Company wieder aufbaut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Judestarwrote on 26.11.2019:[9.0] "Amazing performer but he needs to change up his match formula to get into the list of best current wrestlers, he is very formulaic and I'm kind of bored of all his matches having predictable final stretches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: ArrogantDanwrote on 02.09.2019:[9.0] "Kento Miyahara probably isn't the best wrestler in the world, or even the most charismatic (though that one's more debatable), but he very well could be my favourite. What other fresh-faced, good-looking Ace of the Company would be out here throwing headbutts like he's trying to win the Bruiser Brody Award? I suppose the question Kento raises more keenly than most is How cocky should an ace be? Okada is certainly arrogant. Tanahashi has reached near Cena-like levels of un-likeability at times. But damn Kento, those are some heel-ass tendencies you got there. Yes, he should sell damage to his legs more. Next question. The best pump kick in the game, maybe the best bicycle knee (and that's running against Marufuji and Kenny). Add those to his godly charisma and it's no wonder he's holding the whole damn company up."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: WAWReplaywrote on 07.08.2019:[9.0] "Kento Miyahara is a complete wrestler who in my opinion wears the AJPW on his shoulders this year like last year he is in all good luck he delivers benefits that borders on perfection, often facing opponents not all the time at top I imagine that would give it to a big federation such as NJPW"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: seirahwrote on 02.07.2019:[10.0] "Kento is amazing, his moveset is simple but he perfected every single thing he does and his natural charisma is amazing, this guy is no doubt top 3 wrestlers in the world"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: ohnoeswrote on 04.06.2019:[5.0] "It's baffling to me how a wrestler as high profile as Miyahara can have so many critical flaws as a character, at selling, and be so repetitive, yet be rated and regarded so highly. All but one of Miyahara's matches that were supposedly 'must-see' were disappointing to me for one reason or the other. He's young, but there are several wrestlers better than him that are younger or around the same age. I don't dislike him, and am willing to give him more chances by watching more of his matches, but I'm not in the least bit excited to do so."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: PuroresuLoverwrote on 13.05.2019:[10.0] "Along with Katsuhiko Nakajima and Kazuchika Okada, Kento Miyahara is one of the bests right now, he has the whole package to be the New Ace of AJPW. His matches are always amazing, his Knee Strikes and German Suplexes are always beautiful to see and very flashy. Kento never disappoints."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: raveneffectwrote on 24.02.2019:[10.0] "Alongside Sekimoto, Kento is the best wrestler in the world right now. He knows how to build a match and how to put himself over through empathy generated by his marvelous selling. He knows how to squeeze every single moment the best way possible to pile tons and tons of drama. The guy is a total package and, in just 2 months, he put himself on top of 2019's race."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: RatingsMachinewrote on 22.09.2018:[7.0] "I have never been impressed with Kento Miyahara. People rave about him, but I rarely watch a Miyahara match and think that he's lived up to the hype."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: The Lodger of Soulswrote on 23.07.2018:[10.0] "Take the charisma of Hiroshi Tanahashi and meld it with the striking prowess of Shinsuke Nakamura in his prime, and you have something close to the Ace of All Japan. Kento is largely responsible for a resurgence in popularity and quality of AJPW, putting on amazing matches with Jake Lee, Joe Doering, Suwama, Shuji Ishikawa and Naomichi Marufuji, among others."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: taabr2wrote on 04.05.2018:[9.0] "The current Ace of AJPW and probably the best Japanese in-ring worker today not signed by New Japan. Miyahara was smartly build up slowly and is the leader in All Japan's current resurgence."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: thagodrakimwrote on 10.04.2018:[10.0] "He's one of the best on the planet right now, and he's easily the driving force behind the renaissance of AJPW. Kento possesses a charisma and connection with the audience that very few wrestlers have, it can most easily be compared to Tanahashi and his innate ability to draw people in. Along with potentially being the most charismatic wrestler on the planet, he also has fantastic ring work, as he can easily switch between playing an underdog, and being a bully in an instant, along with that he has a fantastic grasp on struggle sequences and that always greatly adds to his matches. So, all in all Kento really does rank among some of the best in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: STRIGGAwrote on 10.01.2018:[9.0] "Es passiert in der modernen Zeit selten, dass ein Wrestler so sehr für den Aufschwung einer Promotion verantwortlich ist wie es bei Miyahara und All Japan der Fall ist. Wer weiß, wo All Japan nun ohne Miyaharas Triple Crown Regentschaft wäre? Er versteht es wie sonst nur Tanahashi die Fans in seinen Bann zu ziehen und die Massen zu mobilisieren. Sein explosiver Ringstil in Paarung mit seinen großartigen technischen Grundlagen und seinem unvergleichlichen natürlichen Charisma sind die Bauteile für einen herausragenden Pro-Wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: The Big Blue Machinewrote on 02.10.2017:[9.0] "Kento is probably one of the best wrestler in the world at the moment. Very underrated, Miyahara always steals the show despite a repetitive move set. I think he will reach the level of guys like Okada or Omega in two years."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Iamthegreatwrote on 22.09.2017:[10.0] "One of the best AJPW wrestler right now, this guy had it all.. his year long Triple crown championship reign is one of the best in the championship history and he will surely let AJPW grown again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Portuga99wrote on 16.09.2017:[10.0] "This young fighter has a great future ahead. He has loads of charisma and quality inside the ring. He is an excellent technical wrestler who gives his all in the fights in which he participates. A True Ace"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Iceqwrote on 11.09.2017:[10.0] "Das Ace von AJPW hat mich dazu gebracht die Liga wieder regelmäßig zu verfolgen und ich bin darüber sehr froh. Sein erster Triple Crown Run hat der Liga sehr gut getan und nach der Anniversary Show, kann man sich ziemlich sicher sein, dass der Mann für längere Zeit das Face von AJPW sein wird. Gerade einer meiner Lieblinge und ich würde mich sehr freuen, wenn er ein bisschen bekannter unter den Wrestling Fans wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Luv all wrestlingwrote on 26.08.2017:[10.0] "AJPW was forced to jump the gun and make Kento there champ, and so far it has paid off, bringing attendiance and and workrate up and create positive buzz for AJPW. A very good choice to be the ace of AJPW. I can`t think of a single bad thing about this man, plus he is great with children."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: TheRainmaker28wrote on 12.05.2017:[10.0] "I have been watching Kento for a long time now and what I can say is that he is incredible. I never seen this guy in a bad match since his won the title. His in-ring psychology are just so, so good that I amazed. He is a incredible babyface, and he always bring intensity and fire to his matches, and apart from that, he is a proved draw and got one of the best sellings in the world today. Is such a shame that AJPW are not on their best days to this guy get the spotlight that he deserves. The Ace of AJPW is definitely one of my favorites wrestlers in the world right now. If you don't see his work, it's really worth watching."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Zeocrymerwrote on 02.05.2017:[10.0] "Talk about taking the ball and running with it! For over a year, Kento Miyahara has carried the Triple Crown Championship - as well as All Japan Pro Wrestling as a whole - on his shoulders. To say he has been making the most of it is an absolute understatement. Kento has a charisma about him that is able to captivate audiences and get them invested in his matches. Even beyond all of this, he is an incredibly capable worker that is able to put on matches with a wide variety of opponents with varying skillsets. While a 10 may seem a bit hyperbolic (admittedly he's more in the 8. 5 region), the fact that he is a proven draw and that he brought an ENTIRE COMPANY back from obscurity ups him to a 10. The crazy part about all of this? This guy hasn't even broken 30 yet. The sky is the limit for Kento."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: JubileuFishwrote on 07.03.2017:[10.0] "He is awesome. A dude who can make a 4-star match with Bodyguard, with FUCKING BODYGUARD, deserves some recognition, don't you think so?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: CmNag66wrote on 07.01.2017:[10.0] "Großartiges Jahr 2016, er ist der Hauptgrund für den Aufschwung bei All Japan. Ein starker Run als Champion mit richtig starken Main Events. Ist definitiv der Topstar der Gegenwart und der Zukunft von All Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Vertebreakerwrote on 19.06.2016:[8.0] "A good wrestler with a fair amount of charisma, he comes across well as a champion and his talent combined with his youth is just what AJPW needs right right now. Really filling the void left by Go Shiozaki."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: steinerfatasswrote on 06.08.2014:[10.0] "after nakajima, the best student of kensuke sasaki. probably the best young talent in japan nowdays, if AJPW will grow him well, he'll become certainly one of the faces of the japanese puroresu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Matzinhowrote on 17.03.2014:[8.0] "Wenn ein japanischer Wrestler mehr charakterliches Profil will färbt er sich anscheinend die Haare blond. Naja. Seine Erscheinung sagt mir trotzdem nicht zu. Dafür ist Miyahara im Ring richtig gut und er hat bei AJP seinen Platz gefunden. Hier ist er einer der besten Juniors und kann sich etablieren. Langfristig stellt sich dann die Frage, ob er in die Heavyweight Division will oder bei den Juniors bleibt. Falls letzteres sollte er irgendwann zu NJP wechseln, da der Junior Title von All Japan einfach nichts wert ist und die Division allgemein nicht gut dargestellt wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: MaKnowrote on 22.08.2010:[7.0] "Keine Ahnung wo Sasaki diese Talente findet aber bitte mehr davon! Miyahara ist bereits deutlich weiter als Okita, von Nakajima jedoch noch ebenso weit entfernt. Miyahara hat allerdings das Potenzial und vor allem die Jugend, um sich dem aktuell stärksten Kensuke Office Sproß zu nähern. Den Burschen sollte man im Auge behalten!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: AndyTNAwrote on 25.12.2008:[6.0] "Guter Rookie der beim Kensuke Office/Noah noch was werden kann."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Purgatory753wrote on 12.02.2025:[10.0] "the fact that such a campy gimmick on paper was taken so seriously and lasted so long is a testament to the presentation he was given and the continuous reinvention of the character. one of the best characters in all of wrestling. One of the most entertaining to watch. One that, for 98% of his career, was almost guaranteed to put on a good match"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: wrestlingswiftiewrote on 27.01.2025:[2.0] "I seriously believe he's the most overrated pro wrestler of all time. For some odd reason, we've got younger fans letting these old heads convince them that The Undertaker was actually entertaining -- even though you can clearly see that he sucked through a modern lens. "Oh, but wrestling was different back then." True, but guys like Steamboat, Flair, Dynamite Kid, Thunder Liger or Bret, just to name a few, all came before his time but still collectively have great catalogues that still hold up today. I mean, seriously; why do American fans give "GOAT" status to a guy who can barely do five moves? His matches were boring, outside of the 'Mania duology with Shawn, and my goodness, his character work... Boy, is that over hyped to DEATH (no pun intended). No really, try to go back and watch an Undertaker promo without being bored out of your mind. His character is supposed to be this dark and mysterious phenom, but instead, he just comes off as a stupid-looking man trying to sound creepy. Even back in the day, during the "greatest time in wrestling history, " the Attitude Era (another over hyped wrestling concept), his promos were boring then. An example of this is when he was stinking up the joint before Chris Jericho interrupted him in his second WWF appearance ever. And the crazy part? It's not the worst part of Taker's character work. He also had other stinkers during that time period, in terms of both matches and promos... The guy's a total hack."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CrandonMartin2001wrote on 25.01.2025:[10.0] "The Undertaker is, in my opinion, the GOAT of professional wrestling, with a career that sets him apart as a true legend. His prime years--1996-1998, 2001-2003, and 2004-2010--showcase his incredible versatility, consistently delivering unforgettable matches and redefining the standard of excellence. The greatest character of all time, The Undertaker maintained an aura of mystique and spectacle comparable to Andre the Giant's, captivating audiences every time he stepped into the ring. His match with Shawn Michaels at WrestleMania 25 is the greatest match ever, a masterpiece of storytelling and athleticism that still stands unmatched. Few can rival his ability to evolve while remaining larger-than-life, making his legacy untouchable in the world of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mike Ehrmantrautwrote on 15.01.2025:[8.0] "Since I started watching wrestling until 2017 he's been my favourite wrestler. I loved both American Badass and the Deadman, every time he appeared I cheered and got thrilled. Then 2014 happened and I assisted his decay: he should've retired before the end of the Streak or, at least, stopped his career without getting in the squared circle again. Instead he continued his feud against Lesnar and Shane (both good) and destroyed his whole legacy with Reigns feud (the bottom of his career), Goldberg match, the rivalry with DX and the useless Bray Wyatt and AJ Styles bouts. He is undoubtedly a legend but he dragged his career too much."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jesse7Kingwrote on 13.01.2025:[10.0] "Undertaker is the greatest creation of the WWF. Anyone who disagrees clearly wasn't around when it was Taker's yard. It's impossible to describe the aura he had until the day he retired. Adults know how to separate the art from the artist. Undertaker has a strong case for being the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: realgraps13wrote on 12.01.2025:"A childhood hero to many. Despite the infamous last 10-ish years of his career, he is still well known as one of the greatest of all time. My first rating on this website for a reason. 10/10"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TWBwrote on 08.01.2025:"The greatest thing to happen to wrestling, ever. I remember watching him when I was a little kid, and his most recent WrestleMania appearance; the goosebumps have always been the same. One of my favorites ever. Nobody will ever be able to match the aura this man has."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ZephsPancakeswrote on 12.12.2024:[4.0] "I'm personally of the belief that a gimmick can only get you so far and that you need to be good between the ropes to truly be an all time great. The Undertaker was not that. To me he is a gimmick which grew outdated, especially into the mid-late 00s and early 10s with not much substance between the ropes whatsoever, having a handful of good matches against some of the best ever does not make you a good wrestler yourself and when it takes over a decade for you to have your first truly great singles match that really says a lot about your ability. The gimmick of The Undertaker will live forever in both the WWE and wrestling as a whole but for me, he is probably the most overrated wrestler of all time, especially from bell to bell."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Macca666wrote on 30.11.2024:[8.0] "Not the best wrestler of all time, but he was one of the best big men and was involved in some of the greatest moments in WWE. Wasn't a huge fan of his supernatural character, much preferred the American badass gimmick."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ItsAllAWorkAnywaywrote on 27.11.2024:[9.0] "The Phenom, The Deadman, The American Bad A$$, and one of Vince McMahon's most trusted lieutenants, The Undertaker had an amazing career being the main event-level attraction wrestler whose WrestleMania streak was one of the most storied winning streaks in wrestling history. He found ways to stay relevant through multiple eras in wrestling (debuting for WWE at the tail-end of the "Rock N' Wrestling" era and lasting through the Reality Era.) His presence notwithstanding, its possible his rope-walk arm-chop (aka "The Old School") might be more memorable than the tombstone piledriver itself."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AceHagannwrote on 26.11.2024:[10.0] "One of the best workers of all time. A great character with decades of history to support his fame. A brilliant wrestler in the ring and off it. Probably a star in any metric a wrestler can be measured in."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Texaslavwrote on 14.11.2024:[9.0] "The Undertaker is, simply put, the peak of the WWF/E style of wrestling. A large, intimidating athlete with great self-control, professionalism, and capable of going at basically any speed - defaulting to a safe "slow-to-medium". Great promo when not forced into a poor character situation. His tenure, as well, is legendary, and his ability to evolve his character is the best in the business - far exceeding that of Chris Jericho, the man most often credited with such a talent. Know what else I'll gladly endorse about 'Taker? His locker room role. People these days may whine about the Wrestling Court shenanigans, but this manner of enforced cohesion is the best way to make wrestling work. Keep everybody firmly on the same page - even if it requires those who can't hack it to leave the fold. The reason this is a 9 and not a 10 is twofold: 1. The Undertaker doesn't work as a pure babyface and yet has been thrust into that role several times. Remember how in '96-'97 he called his fans "Creatures of the Night" as a ripoff of the Hulkamaniacs and Warriors, and had a feud with Faarooq where he - in his villainous, gravelly voice - scolded the other man for "pulling the race card"? It was laughable. 2. While the Undertaker was a great hand and worker, he didn't mesh well with 'protected' wrestlers. Ever wonder why there was never a truly great Taker-Austin match? It's because neither character benefitted from adding too much normalcy or vulnerability to their character. Taker needed heels you loved to see lose to work with, like Haitch, HBK or Randy - but any match he had with a protected star not amenable to being ragdolled ended up pretty flat and dry."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheNorthEastwrote on 12.11.2024:[5.0] "I think if we are honest with ourselves Undertakers popularity is more due to his longevity rather than any actual skill, promo, match or impact he had on the business. A below average worker who was tall and didnt have a good match from 1990 until 1996 when Bret Hart, Shawn Michaels and Mankind began carrying him. A truly great wrestler can lift others up, he was always the one needed to be lifted by others. A prime example of this is his failure to ever have a good match with Kane (another wrestler who needed to be carried) . The streak was a great story and something that I enjoyed the build to each year but the matches for the most part were always disappointing. I hope in time many others reflect on his career and recognise that Taker was just fine, okay and bit meh."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fejerskovwrote on 09.11.2024:[8.0] "Great gimmick, and a great worker. He is not the best wrestler, but it works with him. Too bad he is a MAGA A**hat, and supports a convicted felon that lies and swindles everywhere he goes."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ConDrogowrote on 08.11.2024:[7.0] "An extremely overrated wrestler in regards to his in-ring ability and athleticism, with a limited moveset, a character that did not require a significant amount of charisma, and for some of his locker room antics. However, despite the person he may be, he is an icon and deserves a level of respect for how influential he has been to wrestling as a whole."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ZDR1994wrote on 04.11.2024:"A legend and the best character in the history of the business! Even better to find out that Taker is full MAGA! FIGHT FIGHT FIGHT!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: darkflame4527wrote on 03.11.2024:[10.0] "(POLITICAL BELIEFS SHOULD NOT DEFINE A WRESTLER, BUT WILL TALK ABOUT IT HERE! ) The Undertaker has a resume of matches that can be considered (from a range) the greatest WWE match - greatest WRESTLING match in history. His matches with HBK, Angle at No Way Out, Mankind, Edge, Triple H, just so many more. Especially his Boneyward match with AJ Styles, a great love letter to retire on. His contribution and loyalty to the business cannot be understated. He stuck through the worst period in WWE history when Vince McMahon didn't know how to book a wrestling show in the late 2010's because Vince allowed Taker to show out. His character work has been really top-notch, with some of the most absurd character ranges in wrestling history (Dark Minister cult esque gimmick to the American Badass to what he's most famous for, the Deadman.) The latter part of his career was objectively far worse and not memorable, but the slew of bad matches cannot really affect a wrestler who many consider on the Mt. Rushmore of wrestling. (NOW GOING INTO POLITICAL MUMBO JUMBO) Now, moving aside from wrestling. The Undertaker has a set of political beliefs of a party that seeks to protect the foundation of democracy, AKA fighting against the people that support the quite literal antonym of how democracy affects the American people. His support for a brash political approach that honestly gets the job done whilst helping POC (people of color) like me AND in my community instead of a party that fronts emotion as the leading determinant on how to run a country for the benefit of the people, I have no problem with what he believes in. Many commenters as of late are quick to assume that the Republican Party are Nazis and Facists that have no respect for America, without really describing faults of the Party and praising any other affiliation (mainly Democratic) as greater good. The top folks who help run the Democratic campaign have been proven to be voter frauds (1.2 million unknown voters have been repealed in Arizona), hateful against the black community (Obama shaming black men for not voting for Harris), anti-animal (killing a man's pets for no reason), and pro-illegal immigration, refusing to acknowledge the lives that illegal migrants have taken (please support the AVIAC as toddlers are being raped), allow alive babies to be killed in the womb, promote affirmative action that has effectively screwed over my race, and a destroyer of the economy via useless sanctions that absolutely annihilate the chance for the American Dream to be possible as uncountable inflation has been present with the economy being extremely fragile as of late.. Every commenter rating based on political affiliation clearly is uneducated to the point where they spew hateful, anti-semetic, and for some reason misogynistic diction towards individuals when they have no argument. People like them are the reason humanity is absolutely cooked."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AlienHominidwrote on 03.11.2024:[6.0] "In-Ring Ability: 3/5, Gimmick: 1/1, Fan Connection: 1/1, Promo Skills: 0/1, Career Retrospective: 1/1, As a person: 0/1. The Undertaker is probably the most well-known wrestling character of all-time, so as such there will be many controverting opinions about him and his name will always be brought up in talks about the greatest wrestlers ever. I was a very big fan of the Undertaker for a long time, and only recently I would say my opinion on him has shifted significantly. To start, the Undertaker was never a particularly impressive worker. He certainly knew how to wrestle, and some of his signature moves were impressive spots that he consistently pulled off well, but he was also lacking in variety in the ring. Most of his non-squash matches were formulaic, many of them boiling down to him doing his usual spots in between longer "break" segments, where viewers would be treated to his at times bizarre style considering his size and character. That being said, the character has always been great. The Undertaker was introduced in an era where gimmick characters came and went due to their ridiculous nature, but this undead giant concept was truly quite cool for the time, and when you realize how long he's been around, it's impressive that his evolution never killed the character. Even alternate forms, such as the Ministry of Darkness Heel Undertaker, or the controversial American Badass Undertaker, have contributed their own charms to the legacy of the character that have made him the presence he is in his final form as we know it. In that respect, the Undertaker has never really lost the influence he has had with fans over the years. People still get chills when they hear the toll of the bell, they still cheer when the Phenom makes his presence known, and even though he can only really make guest appearances now, they leave satisfied when he shows out. That being said, I feel that letting his character run its course for almost the entirety of his career meant we never got to see him do certain things. In particular, I cannot really recall the Undertaker ever cutting a good promo, or at least one with any comparable variety. Most of his promo segments came in the form of supernatural moments, and although they often added to his presence, they all also had the same premise: the Undertaker would come back to make his opponent "rest in peace". Never really a reason for us to root for him, which is a problem when he was almost always a face, and only considerably annoying when he was a heel. He basically got by on 'cool factor'. When I look back at the career of the Undertaker, it is without a doubt one of the most memorable in the history of WWE, I think whether you like or dislike him that fact is undeniable, and considering the good factors of his career, I think they generally outweighed the bad. He is not as perfect as he's given credit for but to disregard him for not liking all of his work or not liking his character would simply not be fair. Many people will argue that my last point is unnecessary but I argue that the lasting memory the actual person leaves in the mind of fans is just as important as what they do during their time in-ring. Unfortunately, the world recently found out that despite his supposed respectability, Mark Calaway apparently has no respect for democratic values and individual liberty, and takes no shame in his open support for a neo-fascist presidential candidate. Disappointing to say the least."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wanglerwrote on 27.10.2024:[10.0] "Can't buy heritage, prestige or tradition. All must be earnt over time, as the Undertaker has. Simply put, the greatest gimmick in history, most iconic intro entrance ever and one of the best to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Cyclopz007wrote on 25.10.2024:[6.0] "He sucks. He's slow. He's unconvincing. He has the lamest moveset in history. His gimmick is laughable. Who ever took this guy seriously, he's a joke character. The American badass was awesome though, I'll give him that. He's also a trash human being for that business with Kanyon. How he ever got famous is beyond me. I could never see the appeal. Politics and probably having dirt on Vincent Kkk McMahon is the only reason he had a career."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BizarroMaskwrote on 24.10.2024:[7.0] "The undertaker is a great showman , but if we talk about wrestling , he is pretty decent , in the high average of 90 / 2000 , but become more and more slow through his career. In regards of the shpw he is one of the greatest , but on regular show he was not the GOAT that everyone love. A bit overrated but let's being honest he is still very good"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: OnyxGuardwrote on 24.10.2024:[10.0] "One of the most interesting and original characters in the history of wrestling. A professional in his field."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BMWrestling17wrote on 24.10.2024:[10.0] "One of the greatest wrestlers ever, he's the reason I started watching WWE, his deadman persona is stuff of legends. His legacy will never be tainted. Also, the recent reviews and downvotes are extremely suspicious, looks like a case of rating abuse since the guy got involved with certain political candidate. Extremely pathetic if that's the case."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Luna100wrote on 22.10.2024:[3.0] "A good gimmick, and has had few good matches, but by no means one of the greatest of all time, he has done well, he has had classics e. g. Diesel (1996 WM) vs Shawn Michaels (BB 1997) and Kane (1998 WM), although I have not watched that last match in years, the best thing about him was the streak (pre-2014) and that is down to booking, his best matches were during the mid to late 1990's he has probably had good matches since then, however since I was only born 2005, thus missing many of his matches, and only watching his WM streak, his Mankind feud (plus a few others), despite that, most of his best matches are said to be those, many of them are good, but his quality died post Batista, after that he his great matches are just terrible tropes of NXT."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: huhthisisweirdwrote on 21.10.2024:"(0.0) A hack who has been carried by everyone he's ever faced in the ring and dickriding Vince while being nothing but an instigator for backstage bullshit. If you examine his final years in the ring from 2015-2019, there is literally not a single good match or moment."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DixieNormas1980wrote on 20.10.2024:"The way that the undertaker has evolved over the years is an amazing study of how to stay important for 30 years"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: kaeleighwrote on 19.10.2024:[0.0] "Taker ist kein Guter Wrestler. Er lebte von seinem Gimmick. Die Ersten Jahre hate er schlechte Matches gegen unbewegliche Heavyweights. Dann viel zu übertriebene Gimmick ferzerei in der Ministery, extrem langweilige Brawls als Bad Ass und dann vllt 2 gute Jahre zwischen 06 und 08. Bevor er dann langsam seinen Körper mehr und mehr zu bruch gegangen ist. Hat sich nur von guten Wrestlern ziehen lassen, seine so verhelichten Matches, gegen z.B. Angle oder HBK sind wirklich nichts besonderes, bei dem Kaliber des Gegners. Aber gute Matches mit mittelmäßigen Gegnern hat Taker kaum, weil er halt einfach kein guter Wrestler war. Über die letzten Jahre seiner Karriere die bei fast allen 9 und 10er Wertungen kaum erwähnt. Natürlich wollen Taker Fans da denn Mantel des Schweigens rüber tun aber es waren immer noch 5 Jahre schrecklicher, gar schon peinlicher Matches. Und er ist ne MAGA C**t, die Transphobe scheiße die er manchmal in seinem Podcast von sich gibt macht die 0 fest"
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Whoahyeetyeah34wrote on 19.10.2024:"Arguably the GOAT of pro wrestling. This man has inspired many people to become professional wrestlers. He truly lived up to his character and for many years tried to stay in character even after the end of kayfabe. My favorite match from him is the match with Shawn Michaels at Wrestlemania 25. Theres no other wrestler that will even reach the level that the Undertaker had during his time in WWE. Thank you deadman for making my childhood awesome."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JackBurtonsTruckwrote on 15.10.2024:[9.0] "Enduring, innovative, memorable. There are so many words you can use to describe him. I cant really see any other rating for him coming from me other than a 9 or 10. He had some ups and downs, but the overall quality of him is a 9 for me."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BigChinchompawrote on 13.10.2024:[7.0] "I genuinely kinda feel bad putting him at a 7. But It's so hard to rate him higher for me personally. He's a legend of this business, a career main eventer in WWF/E who managed to exist in some capacity in basically every era of the company after the WWF went national. He was a genuine draw at multiple points, is involved in many iconic matches and moments, had a great character which he completely embodied and got over with the fans. However really being objective, I feel his promos weren't actually that good, and his in-ring work basically is defined by a few good years in the mid-90s with Bret/Shawn/Mankind, and another few good years in the mid-late 2000s, and around 9 or so good Wrestlemania matches in a row, half of those being during the aforementioned mid-late 2000s run. Undertaker had a lot of bad angles and feuds and matches and a whole slew of just extremely average feuds and matches and angles. He also just stayed in the business too long, the Roman Reigns match and especially the Goldberg match hurt his legacy a bit. He's a genuine legend, but there's just so much average and below in his career, and truthfully even a lot of his best matches, he was in the ring with all time greats who if you basically just went through the motions, didn't botch, and didn't blow a spot, would give you a 3 star or 6/10 match minimum, and to be fair to Taker, he wasn't doing the bare minimum and was an average to above average wrestler before the injuries and wear really broke him down. So you put him in the ring with a Bret/Shawn/Angle/Mankind and you would get a 4 star match or better out of it. I think had he hung it up in 2016 or 2015 I'd have him at an 8 maybe even 8.5. But he just ended his career on a string of stinkers and then finally a good cinematic match with AJ Styles which was really good, but that's what it took to finally get him a good match to retire on, was a pre-recorded cinematic match with one of the greatest in-ring wrestlers active at the time. Plus the duality of man that he had an incredible run of 30 years in WWF/E with no jumps to other promotions or hiatuses long enough for him to miss an era or anything. But also that means we never got to see him working outside the "WWE style" either. If I could do half points I'd give him a 7.5, but with just how many "meh" years of his career there are, and those honestly depressing Goldberg and Roman matches, I can't in good faith round that up to an 8. I'm definitely being too hard on him, but finally being a few years distanced from his retirement and really looking back on his career, The Undertaker the wrestler over his career was in the 7-8/10 range, The Undertaker the character/superstar/sports entertainer was a 10/10."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AVERAGEWRESTLINGFANwrote on 11.10.2024:[10.0] "No matter how much wrestling fans disagree on anything and everything one thing that 99.9% of fans will agree with is that the undertaker is one of the goats"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Pigeon Scratchwrote on 09.10.2024:[10.0] "You can talk about the quality of his matches during certain points of his entire career, the American Bad Ass era, post WrestleMania streak, the many times of attempted retirement, some of the more absurd storylines and booking decisions, etc, but I don't think any of this really damages the importance, the significance, and the endurance of Undertaker. The cornerstone of several WrestleManias, someone who had multiple match of the year contenders from the mid 2000s to early 2010s, a gimmick that cannot be duplicated, one of the most protected and best looking finishers in WWE, you can go on and on. No matter which way you look at it, the Undertaker is one of the best characters to come from WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TripleCrownwrote on 04.10.2024:[10.0] "Undertaker is without a doubt one of the very best wrestlers WWE has ever had. It would be impossible to name a top 5 greatest WWE wrestlers ever and not include this man, which just goes to show how pivotal he has been for the WWE since he first debuted for them in 1990. Was never the "top guy" but he didn't need to be, his position in WWE was arguably just as important as the "top guy." For a while, Undertaker and his streak were the reason to watch WrestleMania. No matter what other storylines WWE tried to create for WrestleMania, nothing could come remotely close to the annual Undertaker streak match. Reinvented himself with the whole American Badass gimmick, which was a breath of fresh air and really made sense given the whole shift to Attitude WWE did in the mid-late 90s. Has had his fair share of great matches and awful matches. He really needed to be in the ring with another wrestler who could go or match him in-ring wise, if his opponent wasn't at his level, the match would suffer. His last few years in WWE were very disappointing and honestly, pretty sad. He so desperately wanted to keep going, but his body just couldn't keep up anymore. Willing to put that aside, because his heart was still there, but his body wasn't. One could argue he should've stepped away, but we're not talking about the average wrestler here... we're talking about The Undertaker. Legendary wrestler, didn't exactly end his career on a high note but he has 20+ years of classic matches to go back and watch. He is one of the very few who can transcend the world of wrestling and into pop culture. Everybody knows him, he is truly an all time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Daimyo Shiwrote on 03.10.2024:"The Undertaker is a mazing long serving wrestler under the WWE banner, and some one been following off and on since his beginning. Overall, the Deadman [My Preferred Nickname for him.] is a generational talent that reinvented himself several times in his career, and each for bring a different flavour. While at the end of his run more than 30 years later, he, like many wrestlers, far past their prime would be a shadow of what he once was the impact he had on the landscape was monumental. While not the first supernatural gimmicked wrestler, he was one of the few able to make it stick for a long run for a single character identity. The long consistency of the Undertaker was also one of his hallmarks, his ability to produce a consistent product over many years was a great benefit to the WWE, Even when increasingly that was a Wrestlemania match and one or two other PPV. That is very much clearly why Undertaker is one of the best wrestlers in the world."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Zak22wrote on 25.09.2024:[6.0] "I respect the Undertaker's character work and longevity, but I think he was not a good in-ring worker. His famed striking looked pretty poor to me, his matches work a slow pace and rarely interest me. I find his selling substandard and his signature move set quite unimpressive. His work has never appealed to me and I doubt it ever will, even when he wrestled the GOATs I personally believe he limited them. His feuds with Kane were totally awful in my personal opinion, two big men doing mediocre strikes and power moves, his work with Michaels and Mick Foley was his best stuff and pretty good but still, I don't find the undertaker to be a top tier in-ring worker. Maybe it's because I didn't grow up on WWE but I just don't get the idea that he is the best ever."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rassle Fanwrote on 25.09.2024:[6.0] "The Undertaker kept getting better in the ring as time went on. He worked hard to consistently have his best matches at an age most wrestlers start declining. Then he had the legendary Wrestlemania winning streak. Sadly the last 6 years of his career ranged from ok to downright terrible. A lot of his matches early in his career and early in WWE were also really bad. Luckily his last match with AJ is really good so he went out on a high note. After retirement he decided it was a good idea to denigrate the current generation of wrestlers because they don't stab themselves with syringes full of roids or do blow off of strippers. To him, playing video games in the locker room instead of doing shots of whiskey is as bad as it gets. That prevents him from being anything higher to me. His behavior in 2001 gets conveniently glossed over. It was inexcusable. His role as a "locker room leader" sounds more like he was one of the bigger guys and had been around a little longer. So many stories about his bullying have been swept under the rug."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: reymysterioenjoyerwrote on 24.09.2024:[10.0] "Amazing worker, even better character. What can't you say about the Undertaker. His promos were great character work and he still would find a way to get some zingers in there. Could work with any type of wrestler and make them look like a million bucks just because of how credible he was. The phenom had such scary energy that genuinely terrified me as a kid, once that gong hits you feel a chill down your spine."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sKiaWeVwrote on 14.09.2024:[9.0] "No one personifies the peaks and pitfalls of WWE quite like The Undertaker. He's a Wrestlemania Moment generator, Iconic character and bonafide legend who has easily cemented himself as one of the greatest ever to enter a ring. Unfortunately, he's also defined by both some of the best and worst matches WWE has had. Maybe if he didn't retire 5 years too late then half of those worst matches wouldn't have happened."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jsbortswrote on 09.09.2024:[8.0] "Undertaker is a really weird case because he legit only had 5 good matches in the first decade plus of his career until his resurgence as becoming a Wrestlemania spectacle in and of himself when they finally adjusted and made "The Streak" meaningful. Its kind of like if Hulk Hogan would up suddenly having bangers when he went to WCW instead of whatever his matches were. He's basically only had one promo his entire career, and the American Badass gimmick is looked back on fondly, but just didn't produce much of anything I genuinely enjoyed. Undertaker was slow and plodding and had a somewhat limited moveset, but it worked for the character and as someone with legitimately impressive size, he's one of the best giants there's been. But its an undeniable connection with a character that creates a really iconic lasting memory. Undertaker also has the tremendous benefit of right place at right time as he was able to come in and be a company man right towards the end of Hulkamania and lasted all the way through to the Attitude Era and into the Monopoly Era, and thus has been able to really build a legacy as the most consistently present character over the Company's history as it cemented itself as the biggest wrestling company in the world."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: fabriciondwrote on 07.09.2024:"He's the greatest of all time, good at everything you could possibly think: in ring, mic, character, storyline, storytelling... gimmick. There will never be anyone like him, simply the best of all times."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CMF1995wrote on 07.09.2024:[10.0] "He is the ultimate legend. Couldn't possibly rate him any lower. Every gimmick he portrayed was just fantastic!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 12psiwrote on 27.08.2024:[9.0] "Undertaker has the greatest gimmick performance of all time, bolstered by some peak protection of his persona and signature/finishing moves that was executed without a flaw over his multi-decade career. Sure he has countless duds, but he has more than enough revolutionary, unique, and mind-blowing contributions (be it in matches, moments, or promos) to make up for it 10 fold. An all-time great."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Chosen Onewrote on 26.08.2024:[8.0] "Eine Legende, aber die Biker-/Big Evil-Jahre waren zäh und promotechnisch war er nicht gut genug, um von mir eine 10 zu bekommen. Die meiste Zeit war er auch in langweiligen Feuds involviert... Die guten Feuds waren dafür oft aber auch sehr gut. An Undertaker vs. Luther Reigns muss man sich nicht erinnern, aber die WrestleMania-Matches mit Shawn Michaels, Triple H, Randy Orton und weiteren sind legendär."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: reticrealmwrote on 25.08.2024:[10.0] "Taker is undeniably in my opinion the greatest sports entertainer of all time with his match with Shawn Michaels at Wrestlemania 25 my personal favorite match in his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: thesilvermanwrote on 08.08.2024:[10.0] "The Undertaker is second to none when it comes to character work and commitment. To take a gimmick such as this and to never break character throughout a 30 year career is astounding. It is so rare for a wrestler to be that good at working a character and just as good with his in-ring work. Probably my favorite wrestler of all time, with Shawn being a close second."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mina Avalonwrote on 04.08.2024:"Arguably the GOAT when it comes to a gimmick. In a time when gimmicks were all the rage and outlandish concepts were the norm, Undertaker took what he was given and turned it into one of the greatest characters of all time. His career is a testament to what someone can do with a great look, and even better presence in the ring. His style was always slow, methodical, but he could lift the pace of a match at a moment's notice and allow himself to show off athletic traits that other big men of his time were incapable of mimicking. His legendary streak at Wrestlemania placed a must see match on the card every single year. His time with Paul Bearer allowed him to really sell himself as this large, otherworldly creature that didn't need to speak to strike fear into his opponents. All in all, one of the greatest of all time, and his legendary battle with Mick Foley at Hell in a Cell will have him living on forever in the history books."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KobashiChopMewrote on 03.08.2024:[8.0] "Growing up, I loved the Undertaker. I thought he just had this aura around him. The presentation he had. I just thought it was all amazing. Then I grew up and rewatched a lot of the wrestling I did back then, and... look. I think he did a great job up until the CM Punk match at Mania, everything after that was... tough. I stopped watching WWE itself from about 2014(? )-2017, then picked up again with black and gold. Watching Taker in the later years was almost scary at times, and not in the good way. For that, I don't think I could rate it any higher than what I have."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: humanesquewrote on 01.08.2024:[5.0] "Nobody has ever benefitted from WWE's excellent promo video packages and history rewriting documentaries than this guy. Boring, slow, and plodding in the ring, propped up to some excellent matches by some excellent opponents. Yeah, he had great Shawn Michaels matches, who didn't? Bad on promos. This is astonishing when you go back. The duds are countless. There's a reason he had Paul Bearer with him for so long. Should've kept him there. The character and gimmick are great, and he is a big dude, which helps, and we can say he did a good job portraying that character, playing it straight. Aside from all that, you have to wonder how much damage he did to the culture of pro wrestling by enabling bullies and being a cop. We'll never know."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mxkamiwrote on 31.07.2024:[5.0] "As someone who grew up with the Attitude Era, I have seen a lot of Taker over 28 years. He's less than mid, propped up on a pedestal by the company he was a yes-man for. He has *never* been a worker. In-ring storytelling also was not his strong suit until HBK started putting on bangers with him. Biker Taker is, and always was, dumb. For someone who talks big and bad about locker room grind and determination, why did he have to create a character where he wore regular clothes and didn't have to actually try character work or continue to workout and keep his bulky physique? By his own admission, he didn't feel like it. The only Taker run I have ever enjoyed was Ministry Taker. And even then, that's also pretty terrible. And his promos went from non-sensical in the Attitude Era, to fake tough all throughout the rest of his career. It was cool to see him at Mania 40, sure. But I simply was never a Taker person."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MatnificentMattwrote on 26.07.2024:[10.0] "I have nothing but respect for The Undertaker. The man could go in the ring and do things that another man his size would not be able to do. He made the undertaker gimmick the greatest gimmick on wrestling history and was able to evolve his in ring styles over the years to deliver amazing and exciting matches over the years. Undertaker is a true legend and a case can definitely be made for him being the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TrueJugoBetrugoNo1wrote on 26.07.2024:[10.0] "Ein Phänomen, eine Größe, eine Legende in Person. Der Undertaker ist einer der, wenn nicht der ikonischste Wrestler aller Zeiten. Keiner hat seinen Charakter über eine so lange Zeit nicht nur über all die Jahre konstant weiterentwickeln, sondern diesen auch über all die Jahre "beschützen". Die Seite die der Mann hinter dem "Undertaker" seit seinem Ruhestand präsentiert, bricht zwar seine alte Tradition des Kayfabe-Aufrechterhaltens, ist jedoch für alle Wrestling Begeisterten ein Highlight und jedes Mal aufs neue äußerst interessant zu hören. Auch In-Ring technisch hat sich der 'Taker über die Jahre konstant gesteigert und insbesondere für seine Größe immer wieder äußerst agile Moves präsentiert. Schlussendlich muss natürlich auch die legendäre Wrestlemania-Streak genannt werden, welche über Jahrzehnte hinweg als der "Heilige Gral" des Wrestlings galt. Zwar bin ich kein Freund vom Umgang mit dieser und somit dem Erbe des Untertakers, dies befleckt seine legendäre Karriere jedoch nur marginal. Insgesamt lässt sich also sagen, dass der Totenmann einer der ehrwürdigsten und wahrscheinlich respektiertesten Wrestler aller Zeiten darstellt. Ich persönlich und wahrscheinlich viele weitere andere können sagen, dass Undertaker unser Kindheitsheld war und die vielen unvergesslichen Momente, in welchen er seine spektakulären sowie unheimlichen Aktionen vollführte, niemals vergessen werden. Alles unterhalb der 10 Punkte Marke ist Blasphemie im Hinsicht auf eine solche Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: woolyshamblerwrote on 21.07.2024:[1.0] "undertaker's gimmick, while held in the highest possible reverence by WWE, is silly and inconsistent and mark calaway clearly never enjoyed performing it. none of his promos are engaging or even watchable, his opponents all look worse by having to sell his stupid supernatural bullshit with fear and respect as if it's all not obviously fake, and once the bell rings he is a genuinely woeful in-ring wrestler who managed to have some decent matches by being surrounded with (and made to look great by) guys like lesnar, punk and batista. the fact that he's so highly rated only shows the effectiveness of WWE propaganda telling us that he's the greatest ever. i advise everyone to try to look past the entrance and the presentation and critically watch his work as a professional wrestler, and you'll find that his veneer doesn't hold up under scrutiny"
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: shanedouglasthemewrote on 09.07.2024:[6.0] "This is a hard one for me. His gimmick is one of the biggest negative influences for modern day wrestling .If I push that to the side here's how I view Undertaker as a worker. The first decade of his career was terrible. He was a bottom five worker in the WWF from 90-95. From 96-98 things started clicking for Taker and he became a good worker. Then he did the ministry, one of the worst angles in wrestling history, and started wrestling like it was 1993 again. I loved American Badass/Big Evil. He went back to being a good worker during this time. Then from 04-07 he is a legit great worker. But then he has those damn Shawn Michaels matches. After that he was back to stinking but in a new ambitious way. Overall, I'll say he was a good wrestler which gets him a 6."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: dulonicdaddywrote on 26.06.2024:[0.0] "One of the most try-hard Hot Topic gimmicks of all time, which included some of the worst character motivations imaginable. In-ring there's 30+ years of SLOG material here. The Michaels matches are alright, intensely overrated spot fests, weak psychology, tepid execution. How overdramatized his later career became is so hilarious considering the factors mentioned prior, but in an embarrassing sense. He's a zombie r***** murderer in CANNON, and grown neckbeards are crying about him getting jumped by the Shield or whatever. Even as a vibes wrestler early Kane was lightyears beyond in presentation and was often involved with more stylistically complimentary midcard guys than Taker was involved with in the main event. Live his cliche move set is intensely hokey as well there Cagematch 750!"
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jjrulswrote on 21.06.2024:[10.0] "Arguablly the greatest of all time, Undertaker was a top wrestler for almost 3 decades. Greatest gimmick of all time, it will never be recreated and probably couldn't get over the way wrestling is now. In ring he was amazing too, which is really suprising for a guy his side. Obviously, the best rivalry of his was the Michaels matches at WM 25 and 26. The period between WM 25 and WM 26 is an awesome build too. This guy did it all, and did it for the longest, he's the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Masterblaster424wrote on 18.06.2024:[10.0] "This man will ALWAYS be the SECRET boss of Wrestlemania. More Charisma and Character than Wrestling skill initially but he grew into the mold and changed his game up as he evolved with the times. He's earned his keep in HOF and now continues to REST....IN....PEACE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: bbdtmemewrote on 16.06.2024:"he's extremely overrated, a super-vince-guy but with great character, aura and charisma for sure. he earned his rightfully place in wrestling history: some of his matches are masterpieces like the ones with mankind, michaels and edge but his enormous popularity exploded among casual fans."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BigPeanutGuywrote on 10.06.2024:[6.0] "Would my answer be different if I was older? Maybe. But I've seen all his greatest hits, tried my best to understand his big spooky guy character, and did my level-headed best to sit through his awful ending, but I just don't see it. He has a fair few bright spots, boneyard match mainly. I mean, it's stupid, far too long, and doesn't really make any sense, but that clicked for me. Funny enough that's a lot like how I feel about the Undertaker's career as a whole. Stupid, far too long, and doesn't really make any sense. And I'm not even taking into account his midlife crisis in the 2000s"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TurdFergusonThe2nd1wrote on 04.06.2024:[10.0] "Commitment to staying in character, loyal to one company until the end for multiple decades, a cool believable movelist, the presence of him appearing even if it's just slow walking. Nobody more deserving of a Universal Top 5 than this guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Lucas Lwrote on 02.06.2024:[10.0] "The Undertaker will always be my GOAT. He undoubtedly deserves a "10 score", not just for his dedication and contribution to this company, but also for his impact on the whole industry and the exploration of his gimmicks. He was brave enough to change his character with the development of the society. "Deadman", "American Badass", "Big Evil".You gotta say these are great influences on more than one generation of wrestling fans. What about wrestling skills? Come on, considering his height, he's doing a great job in the ring. At least I can't come up with another so-tall wrestler reaching his level. Even during the last time of this career, he still struggled to try his best to give us a nice show. I mean, everyone gets old one day. So let's judge him from his whole career instead of focusing on the weak portion of his time in the ring. What's more crucial, show some respect and "acknowledge" the real legend in WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: bjm47wrote on 30.05.2024:"The Undertaker is the reason I got into wrestling. The first time I watched it was Summerslam 1994 - Undertaker vs Undertaker. I know it wasnt the best match but as a kid seeing that for the first time is what made me want to see more. Ill never forget that."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WrestlingGuruwrote on 26.05.2024:[10.0] "A legendary figure from my childhood and while he's not straping my top 10 or even 20 anymore he has always been incredible to watch. Totally dedicated to his gimmick and certainly deserves the love he receives."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: shockwrote on 17.05.2024:"In my opinion, Undertaker was bogged down by the no-sell gimmick early in his WWE career. Once he was able to sell more and have more athletic matches, it was clear he was one of the best. He had great longevity as he had the best work of his career in the later 2000s in my opinion. His match against Shawn Michaels at WrestleMania 25 is probably my favourite wrestling match of all time. Undertaker had exceptional athleticism for his size, but quite honestly his moveset is the main thing which makes me rate him so highly. The Tombstone is one of the best finishers of all time since it genuinely would kill somebody if you were to do it to them for real, and he has some great secondary finishers in the Chokeslam and especially The Last Ride, which I think is the best powerbomb variant in all of wrestling. He has a plethora of recognizable signature moves as well which are sure to get the crowd excited, such as Snake Eyes, the Big Boot, and Old School. Undertaker is 10/10 wrestler for me, largely due to his outstanding matches in the latter half his career. For years, he had the most anticipated match at nearly every WrestleMania."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Diohwrote on 09.05.2024:"Undertaker, a living legend in WWE, is a figure that transcends the world of professional wrestling, for me there is no character more real than him, there has not been a character as long-lived without leaving his role as Undertaker was. Undertaker evolved from a random and mysterious character to a LEGENDARY guardian of the ring, providing epic moments that have become part of WWE history. But, extremely limited in the ring, perhaps because he is a giant and not a high flyer, but if you do some research, WHO OWNS THE CHOKESLAM? maybe Kane, now, WHO OWNS THE TOMBSTONE PILEDRIVER? The Deadman"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: drewculbwrote on 01.05.2024:"He was one of the greatest to evr due not only in the ring but a true locker room leader in an industry where thats rare"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: cerealkillerwrote on 01.05.2024:[10.0] "Absolute legend. 10/10. Saw somebody vote him a 3. That same person gave the Young Bucks 10s lol. Crazy and delusional."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Vanstylerwrote on 30.04.2024:[8.0] "Boring in the ring but a brilliant gimmick. Those were simple times, people don't care about in-ring quality as long as the characters involved are acceptable. And Undertaker was not only a character but a legend, it was a career involving a man that brings magic to the shows"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: devxntewrote on 23.04.2024:[5.0] "As a character, I'd give him a 9. He lived the gimmick and was able to survive some cringy and embarrassing angles due to the sheer dedication that he put into the gimmick. Saying that though, he's honestly a bit overrated. He was a lot better later in his career for sure. His matches with Batista, Punk, Edge, Michaels, and Triple H were amazing (all wrestlemania matches) but other than that... he never was a GREAT in ring worker. He had to be paired with the right person and didn't have the ability to have a great match with anyone. His matches could be slow and boring at times. For that I'll give him a 5. Undeniably a legend, known by many of wrestling fans and non wrestling fans alike; however, he has had a lot of duds in his career due to just not being the greatest in ring worker and I can't overlook that."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Juanca1210wrote on 22.04.2024:[10.0] "The best gimmick of all time. The aura that he had when I was watching wrestlemania was incomparable. His moveset was incredible. Since his last ride to his iconic Tombstone Piledriver, His submission move and the old school are very unforgettable. He had incredible feuds with Shawn Michaels, Triple H, Kane, Edge, Randy Orton and CM Punk. Maybe his last years were not the best because of his physical condition but is undisputed that he has an ALL TIME career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: bzgameswrote on 12.04.2024:[6.0] "An extremely solid run from 2006-2013 saved the legacy of one of wrestling's biggest stars. However his "American Badass" run, his post streak run, and a lot of his work pre-2006 leaves much to be desired. Presentation wise he's one of the best; the Phenom is etched into history as one of professional wrestling most enduring images. The in ring product though was never there outside of the final years of the streak where Taker seemingly tapped into a previously unmined ocean of talent."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Perc Anglewrote on 12.04.2024:[9.0] "If I were to only rate his best moments it would probably be an 11. He reached peaks in different eras than people have in their lives. But he also has had bad eras. Before the Attitude era he was silly in my opinion and we cant forget the Saudi Arabia shows. But those peaks were the best of maybe anyone. Think about the WrestleMania streak from HHH in 02 to Punk in 2013, all bangers. He will always be one of the greatest wrestlers of all time"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: thedman0310wrote on 10.04.2024:[7.0] "Although The Undertaker has earned his legacy, he spent at least a decade putting out shitters. This was almost entirely down to the way he had to wrestle as Taker. The slow, zombie-like style in his matches prevented him from showing off his impressive power at his full potential, resulting in most of his matches being boring. Once he dropped the slow methodical offense, his style got much better, with his in-ring heights in the 2000s being phenomenal, pardon the pun. His promos were never that good, but he was so dedicated to his character that he made it work most of the time. Don't watch his in-ring work after the Hell in a Cell match with Lesnar, you'll just make yourself sad."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GarnerBallx7wrote on 07.04.2024:[3.0] "In terms of character work and general presentation Mean Mark has managed to maintain an aura that upholds him as a legend of the business, but the actual meat and potatoes of his work are vastly different from the reputation he has garnered. Whilst I absolutely the appreciate the mystique and character of the gimmick, a lot of the presentation of Taker was very weak. Firstly, his promos have never been good, and often only serve to strip away a lot of the mystique that his presentation had worked hard to maintain. Secondly, whilst the persona itself is entertaining in isolation, it's played a significant part in some of the worst wrestling TV ever produced. Kidnappings, crucifixions, the entire Bike Taker run, possessing Justin Roberts, the Big Show disciple run, burying Paul Bearer in cement and the horrendously homophobic angle with Kanyon. Some of this could mabye be forgiven if the in ring work at the end of these angles served as a pallet cleanser, however Taker has played a part in some embarrassinglly bad matches. Taker has a tendency to "brawl" in the most uninteresting way possible, throwing awful punches to fill time and plod around the ring without much purpose or even intensity. This is made all the more infuriating by the fact that he has some amazaing matches in his repetoire with the likes of Angle, Bret & Punk, however the level of effort in those matches are not present in a large majority of his work. This would be true even without the disatrous end of career run he had, embarassing himself in Saudi Arabia in some of the worst matches of the 2010's has only served to further strip away the mystique had managed to cling onto."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Bean1985wrote on 07.04.2024:[9.0] "One of the best in ring performers and the best gimmick ever. His gimmick was at the same time his limit, as it limited his interaction with the public. That goes along with his mic work. This is the only reason why this is not a 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TCMDNwrote on 06.04.2024:[10.0] "Undertaker is one of the best of all time... What a career ! No one can sit at his table, he was so great ! Thank you Taker of everything."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Clint Achilleswrote on 03.04.2024:[7.0] "He had some great matches with the right opponents, but also had a lot of terrible matches, and was involved in some of the worst angles and storylines. He was the right guy for the gimmick, and was able to change with the times, and I think it's fair to say that no one else could have been a better Undertaker."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: George Nasserwrote on 30.03.2024:"The undertaker is the greatest wrestler of all time and his gimmick is the greatest character of all time in professional wrestling and many of his matches is all time classic against shawn michaels, triple h, mankind, cm punk, brock lesnar and his feud with kane is the one of the greatest storylines in wwe history and we must respect him for his wwe run in 30 years, my legend"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sleepinggiantwrote on 26.03.2024:"The Deadman truly is the best to ever do it. No one comes close to his Longevity and staying power on the top of the card. Every time hes featured on television, its must watch tv!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SLM248wrote on 23.03.2024:[6.0] "Undertaker is possibly the most overrated wrestler of all time. He has put on some great main event matches (HBK vs Taker at mania 25 is one of my favorite matches ever.) but idk if I've ever seen taker put on a good match on tv. He is also pretty mediocre on the mic, I can't really recall a memorable promo from him. All in all I say taker is slightly above average for me."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Broland123wrote on 21.03.2024:"He is one of the greatest. If not the greatest. His character is only working because of him. If somebody ele got this gimmick probably failed, because of the cartoonish side of the gimmick. But he did the greatest job with it, and became immortal im not just the world of proffesion wrestling but in the pop culture too. And of course he had a 30+ year career. He is the true legend and the soul of the wrestling indrustry"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Neon Aussiewrote on 07.03.2024:[7.0] "The bulk of his matches were not very good. The ones that were good were good almost entirely due to the work of the other performers in the ring with him. He was a company man with a long and successful career... or maybe he just knew Vince's secrets. He did have some memorable moments, and thats why he's rated as high as he is."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TayKZYwrote on 06.03.2024:[7.0] "Taker had such a long career he has many stretches of great matches, along with many stretches of duds and forgettable moments. With the career finished now only the great moments will live on. Wrestlemania will be his legacy, but really only like 5 of the 27 matches at Mania were any good. I liked Biker Taker more than most, so if that run had more longevity it may be more in line with a lot of higher ratings. The Deadman was much more hit or miss for me."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Quonton Bombwrote on 06.03.2024:[9.0] "What's there to say that hasn't already been said before? I'd like to give The Undertaker a 10/10, only problem was that for such a long and storied career his booking wasn't always that great, and his matches usually weren't the most exciting. His typical television matches didn't start to get really good on average until the dawn of the Attitude Era. His in-ring work did dip in quality a bit once he became the biker, but that gimmick was equally amazing, and it really freshened up his act at the time. After over a decade in the WWE, The Undertaker would spend the 2000's becoming the overarching face and presence of SmackDown! until winding down on his work schedule by the beginnings of the 2010's. The Undertaker would hang around for years thereafter, answering challenges for WrestleMania, the biggest show of them all, which largely had become focused on him because of his 23-year undefeated streak at the "showcase of the immortals." The one real blight on his career story arc is that he stayed in the ring a little too long towards the very end. It's also a shame that his swan song was a cinematic "match" at the start of a global pandemic. Nonetheless, The Undertaker is no doubt one of the greatest characters in the history of the professional wrestling business - some would even say the very best. And the man behind the gimmick was one of the greatest workers spanning all of the generations of the business that he was a part of."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PhenomFRwrote on 27.02.2024:"My favourite wrestler ever. Mark Calaway has mastered The Undertaker gimmick like no one ever could. Also his in-ring performance were good given his size. He is one of the pillars of pro wrestling as we know it."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 2pt0EcoBoostFusionwrote on 26.02.2024:[10.0] "If there was a Mount Rushmore for the greatest wrestling gimmicks in the history of the business, make no mistake, The Undertaker would most certainly be on it. Mark Calaway has done just about everything in the wrestling business, whether it would be holding titles, main eventing PPVs, having a long winning streak at Wrestlemania, being incredibly athletic for his massive frame, the man could do just about everything and STILL entertain the fans worldwide! Sure, some may find him "overrated" from an in-ring standpoint, but I would beg to differ. The Undertaker was a really good worker in the ring with a really unique moveset, the 'Tombstone Piledriver' is easily a top 5 finisher of all time, 'Hells Gate' is an interesting yet brutal looking submission, and let's not forget about 'Old School', for him to do that move being how tall he is just blows my mind, no one could do it better than The Undertaker. His tag team "brother" in Kane, who also is a great character (not top 5 of all time but still great nonetheless) was one of the best tag teams whenever they did Tag Matches and growing up believing in Kayfabe, I actually thought they were actual brothers. Speaking of Kayfabe, no one does Kayfabe better than Mark Calaway's Undertaker character (the younger gimmick wrestlers should take notes! ). I will agree that his career after 2015 was a bit iffy, but for the most part, a really great career by The Undertaker and truly one of the all-time greats within the industry."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Lutwiejwrote on 23.02.2024:[10.0] "A legend. In terms of his matches, he had his variety of great bouts with the likes of Michaels, Triple H, Edge and Angle. While his in ring work in the 90s wasn't that great, he absolutely carried it with his character. Undertaker always portrayed a character that was so doomed from the start so conivincibley that you knew it was something else. Great wrestler, and I hope he will be celebrated for many years to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: theelevatedonewrote on 21.02.2024:[8.0] "I like the Undertaker, I think he is cool. He has lots of good matches. He has a unique presence. Would rather forget everything post WrestleMania 30 though."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Enchantiumwrote on 21.02.2024:[10.0] "The Undertaker was always a work horse for the promotion and will always be known as one of the greatest of all time. I do believe his streak should have never been broken, but as he aged, it sort of made sense that he was never going to win against many younger wrestlers, but that is just realistic play. He is forever a legend and will always be one of my favourites of all time. The Deadman gimmick is probably one of the most-replicated gimmicks in many indie companies for how Calaway portrayed the character to perfection. What a legend this man is!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: face painted legendwrote on 27.01.2024:[10.0] "The greatest character in the history of professional wrestling, hands down. A large part of that was Mark Calaway, the person's ability to evolve the character with the times so that not only did it stay relevant for 30 straight years under one umbrella, but also on top in the main event scene for all of that time. As well as his ability to keep a mystique , about the character by protecting it well, staying true to it, and never breaking kayfabe throughout all that time that he was active with it. One of the absolute best runs of all time of any wrestler, I don't think you'll ever see a run like Undertaker had ever again in wrestling from any performer. A heck of an attraction too, especially in his latter years. He changed what it meant to be an in ring working big man because yeah, he was 6'10" and 320 lbs, but man he was athletic, he could move well, he could fly like a cruiserweight, and he had the versatility to have a great match with pretty much anyone from Rey Mysterio to Big Show. A legitimate bad ass / tough guy outside the ring too in several different aspects -- working through some pretty significant injuries, having an aura thanks to that character where no one wanted to mess with him/was afraid of him, and having the background to be able to handle himself in the ring if he ever needed to. Nothing but love for the Dead Man from me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BruceMarcos524wrote on 22.01.2024:[9.0] "Who would've thought that this ridiculous gimmick which will only last by a couple of months, became one of the best gimmicks in all of wrestling. Only the Undertaker does this, no doubt a real dedication to this Deadman gimmick. If you think really closely, The Undertaker is just the same level gimmick as The Gobbledy Gooker or The Mantaur if not pulled right. Imagine being a kid, thinking that being risen from the dead is real. That's how magical The Undertaker was. Also, one of the most respected performers of all peers and fans alike. The only guy who wrestled from the Hulkamania Era, New Generation Era, Attitude Era, Ruthless Aggression Era, PG Era and Reality Era and he ruled all of those eras. In-ring wise, he is a tremendous athlete. Only one of the big guys who can leap from the top rope and that alone is a moment itself. His trilogies with Shawn Michaels were the best, he has the best matches there. Also, the man who introduced many gimmick matches like the Casket match, the Last Ride match, the Body Bag match, the Buried Alive match and most notably, Hell in a Cell. Undertaker is one of the moment makers in WWE, one of which is when he raised his hand on the dirt after being buried alive by Mankind, throwing Mankind off the Hell in a Cell, etc. Despite my positive, there are also some few criticisms so far on his illustrious career. His American Badass gimmick is kinda 50/50 for me though as in my opinion ruins the mystique of The Undertaker, although more rebel and edgy to fit the Attitude Era standards. Also, if Taker has the best matches with some of his opponents, he could also bring the worst of the matches, if it depends on the booking. Overall, a solid A- performer and in my opinion the best wrestling character existed."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Cree87wrote on 19.01.2024:"The best gimmick in the history of wrestling. Changed the way big men worked in the ring. Had all of the athletic ability to back up the mystique."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CDProsProwrote on 17.01.2024:[10.0] "The Phantom, The American Badass, The Best Pure Striker in the WWE, Big Evil, The Lord Of Darkness, The Grim Reaper, The Dead Man and The Hall of Famer, The Undertaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RaySivanuiwrote on 15.01.2024:"Undertaker has always been one of the best. Awesome gimmick, always in character, one of the best big guys."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Scottielstamperwrote on 13.01.2024:"With matches that include the famous Hell in the cell with Mick Foley or the unforgettable Wrestlemania streak the Deadman is one of the greats in my book. With stints as Mean Mark or the American Badass the Undertaker was an "over" gimmick in every regard. The Legend was a lot of money and New fans for the business. He should be regarded as a top guy during peak burnished times. The Phenom the Undertaker."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Plebastianwrote on 07.01.2024:[10.0] "The Undertaker's match quality in the 80s and early to mid 90s is average for the time, but far below what we'd grow to expect from him as his career continued. That's really the only proper note needed for Taker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NRSUFCMAN9wrote on 01.01.2024:"Undertaker is a very overrated wrestler. Not saying he is bad but he just isnt as good as people say he is."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DinnerPiperwrote on 21.12.2023:"The man, the myth, the legend. He is the pinnacle of wrestling in my opinion. His ring presence is unmatched. He could wrestle at the highest level through so many eras, old and new."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: greaterdalewrote on 10.12.2023:[8.0] "In the first decade of his career his matches were pretty dull but he definitely got better as he aged thoughbut he had a lot of stinkers in the 90s and early 2000s that brings his score down for me. His gimmick is an easy 10/10 even though future attempts at magic gimmicks have failed pretty miserably. I know people will disagree with me and that's ok I just don't think Taker is goat contender like a lot of you do. His entrance is amazing especially live and the streak was cool in concept though a lot of the early streak matches weren't all that great. What matters most to me is in ring ability and promo skills and I just don't think taker wasn't a 9 or 10 in either of those.You could give him a higher score just based on drawing power alone, but there's been a lot of wrestlers in history that I wouldn't say are all that at great at the sport of wrestling that still draw because they're popular so I just don't know if that should be the measuring stick we always use for scoring. Also while not an abuser like Ric Flair or Matt Riddle, since doing interviews out of character in recent years, he's come off as bit of a douche, which really ruined some of the Undertaker magic to me personally. Update: I came back and gave Undertaker an extra point I think 8/10 is more appropriate even though his early career was bad"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TotemKiller1wrote on 08.12.2023:[5.0] "Someone who is remembered fondly due to being employed by WWE for around 30 years. Very overrated as a wrestler, although the right opponent in given circumstances could carry him to a great match (ex. CM Punk, Brock Lesnar). His character is the most notable spooky magic gimmick in wrestling and just like rest of them is just far too corny. In the twilight of his career has been a part of some of the worst matches in history. Overall simply uninteresting as a wrestler with somewhat of an embarrassing gimmick."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SevenLegwrote on 03.12.2023:[10.0] "Very, very few manage to stay relevant in multiple decades and The Undertaker has done it better than anyone. One of the best gimmicks of all-time, and a solid performer as well. He's part of some of the best moments in WWE's history. It's fair to say there will never be anyone with such a mystical aura ever again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Silver Shadowwrote on 23.11.2023:"Again one of the goats of wrestling, this guy has been wrestling for nearly 35 years and he is been on the main event scene since he started WWE in 1990. Always built strong and his gimmick is very iconic, Action inside the ring was good and his mic work was good as well. His pairing with his manager Paul Bearer was gold, American Badass was good but not as good as Undertaker gimmick. Truly a goat of wrestling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] "The Undertaker, literally, got me into professional wrestling when I was 9 years old, so I owe him a lot. Even putting aside that factor, he's one of the all time best to ever do it and one of my personal favorites. The Undertaker is a prime example of no one could ever do this gimmick better than this guy, Mark Callaway really did everything he could to make this gimmick work and he pulled it off to perfection. His early run as the Grim Reaper version of The Undertaker was great, despite he didn't have many (or any good) matches, then around the mid-to-late 1990s is when he starts to kick into next gear as an in ring worker where he's having great matches with the likes of Mankind and Shawn Michaels, even being part of iconic moments that still get replayed to this day like when he throws Mick Foley off the Hell in a Cell structure. His character peaked, for me, during the Ministry of Darkness. I don't care who says what, the MoD gimmick is his best and it's who I think of when I think of The Undertaker. Then he does the American Badass gimmick, which I am indecisive whether I love or hate this gimmick (I definitely hate that he came out to Kid Rock and Limp Bizkit songs... Bleh! ), while he did have amazing matches and feuds during this time, his gimmick felt wrong at the same time since it was still "Undertaker" and not under Mark's real name. Then 2004 comes around, he brings The Phenom gimmick and has one of his best runs of all time. During this time, he had great matches with the likes of Randy Orton, Batista, Kurt Angle, Shawn Michaels, Triple H, CM Punk, Jeff Hardy, etc. While this run is going on, he also has a WrestleMania streak where a lot of his best matches are happening during this time, classics back to back even. Sadly, Brock Lesnar ended it at WrestleMania XXX, but it did lead to a cool feud in 2015. After that year, his run in WWE felt like he overstayed his welcome along with having rare few good matches during this time. He did end up retiring in 2020 after the Boneyard Match with AJ Styles, it was the perfect send off instead of his disastrous match with Roman Reigns at WrestleMania 33... Overall, while some will gripe over Taker having a few DUDs under his name due to his early years and Ruthless Aggression era where he was forced to wrestle bad wrestlers, he's still one of the all time best characters no matter what anyone will say. A true legend in the business and his career and character deserves all the respect in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blakeiokwrote on 19.11.2023:[10.0] "The Undertaker is the guy who got me into wrestling, I initially saw his Wrestlemania XX entrance and was instantly hooked. He was booked like a monster during his career and was 100% deserved. There will never be another person like The Undertaker in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MrCheesyPotato37wrote on 11.11.2023:"One of the greatest of all time. The deadman gimmick is probably the greatest gimmick of all time. Had many stellar matches too."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SuperDelfinwrote on 14.10.2023:[10.0] "There is no worker in my lifetime that combined size, ring skills, gimmick/look, charisma, storytelling, etc as Mark Calloway did as the Undertaker. Dozens of classic matches and legendary moments over three decades. Always perfect psychology, protecting his character and putting people over simultaneously at times, which is not easy. One of the all time greats in this business no doubt about it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: andytuga86wrote on 25.09.2023:[10.0] "The best gimmick and the most talented big man in the History of Pro Wrestling, hands down. A master of in-ring psychology, his charisma was undeniable. Although his promo skills were not he best, he didnt need to talk that much to make the difference. His matches with Shawn Michaels at Wrestlemania were legendary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ECWCWWEAEWwrote on 22.09.2023:[9.0] "Undertaker is a once in a lifetime character of course. He's also not too bad in the ring. However, while he is one of the most agile big men ever, he can be kind of slow and honestly struggles to make certain wrestlers look good. Taker is kind of only as good as he is... but cant be better or help others improve. He himself is the constant and if someone cant keep up with him the match will suffer and if someone manages to out shine him then well that's call that can relaly happen either. Its still impressive to be as constant and consistent as he is for so long, but to be an absolutely perfect, favorite wrestler to me, would just like it if he could ever rise above himself and he honestly never did outside of the few hell in a cell matches that are career highlights"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DieOrangewrote on 17.09.2023:"Geil ich liebe ihn. Beste Gimmick aller Zeiten. Immer ein Highlight gewesen ihn zu sehen RIP Beste Unterhaltung und eine wahre WWE Legende. Auch im Ring perfekt bis auf seine letzten paar Auftritte mitGoldberg zum Beispiel, aber egal er ist der beste."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: staabi2hottywrote on 16.09.2023:[10.0] "One of the most dynamic and longest tenured wrestlers in WWF/E history. The Undertaker has been cemented as a wrestling god for my entire lifespan and many wrestling fans grew up with this man being a staple in their lives weekly. He can work with anyone and deliver and Undertaker has worked with them all, having their greatest matches with him. Shawn Michaels back in the 90s and in the resurrection of his career had quite possibly his best match ever with taker 2 wrestlemanias in a row. Mick Foley became a hardcore fan's fav to a cemented legend off of their hell in a cell match in 1998. Brock Lesnar both as a rookie first coming in and when he returned to break the Streak. The streak of Taker winning at 21 wrestlemanias in a row, a number that will never be matched ever again and just goes to show how long this man really spent in WWE and how much of a crutch he was to not only helping them succeed but stay relevant even up to almost present day where I feel like Undertaker could still make an appearance and shock everyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Trombek Kushinikawrote on 13.09.2023:[9.0] "What can I say about this worker that hasnt already been said? Possibly the best, and definitely longest lived, gimmicks of all time. A gimmick that never got old and one that Mark Callaway kept fresh through constant reinvention. Not only did the gimmick evolve but also the in ring style. From slow plodding monster to grisly MMA style veteran. Obviously there is also the streak as well but thats been mentioned in virtually every comment on this guy already. Would have been a full 10 if he was slightly better on the mic and the streak had been preserved a little longer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WOOPSwrote on 31.08.2023:[9.0] "After Taker retired, I just had to finally sit down and look back at his whole career. Of course his run in the past 5 or so years still is just sad, I gained a newfound respect for the man after watching his interviews and of course a documentary. Deadman gimmick is still a bit repetitive to me, but American Badass and the previous years after his debut, Ministry of Darkness stuff, etc. were genuinely gold. A lot of great matches, memorable moments and of course character work, respect and commitment to the wrestling business. I hated his matches past 2015 but one just can't deny the importance The Undertaker has to the wrestling world."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: deceivrwrote on 25.08.2023:[6.0] "I was always never fond of experimental ideas in professional wrestling. Sadly, in this case, it goes straight over to the Undertaker. Or is it? I had started to become a fan of wrestling and, the first full match I ever saw was him against CM Punk in a Hell In A Cell match. A great match indeed, and one that made me fall in love with the brutality that is professional wrestling. However, though, I did have a complaint. What was all the pyrotechnics about? Why was he trying to be dead? It was all confusing to a wax-philosopher mind of a 9 year old. However, I gave in. I gave in in such a way that has actually allowed me to feel better about such things. Sure, it's cheesy. Sure, it doesn't make sense at times, but at least it's across the pond. His matches, in general, are very much always the same, but with extra flavor to them. He had disintegrated in work ethic and overall performance a bunch of times, but had risen up in many of them in random moments of pride and dignity. It did help, too, that he had the respect of the entire locker room for all that he had done. He could take advice and scramble it up to make something unique. In conclusion, whilst Mark Calaway is a figure that is quite celebrated, it is neat to remember the ethic that he had put in and the random moments of true shine that he had."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheBestFiraswrote on 12.08.2023:[10.0] "Simply the greatest of all time. Nobody in history of Wrestling in any promotion has had a career like the Undertaker. Longevity like no other. Not just there wrestling for 30 years, but being on the very top for that long of a time is impossible to repeat. 30 years of being bigger than the main event, bigger than any world title. The forever entity that equals or outweigh the top guy in any era. And with that he is always evolving. He is never uninteresting. He is a genius in how he understands the fans and the horizons of his character. Top that with perfect performance, perfect mic skills, perfect character work, perfect looks and unearthly charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mizzyshawrote on 06.08.2023:[9.0] "An obvious all-timer for the reasons everyone already agrees on. I suppose my only issue with Undertaker in retrospect is that I was only ever really obsessed with him in conjunction with a crazy rivalry - be it with Shawn Michaels, Kane, or Edge, since the Deadman gimmick isn't all that interesting on its own beyond the Brothers of Destruction storyline. His run from 1997 to 2013 might represent the most flawless handling of a wrestling career ever."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Woodstovewrote on 05.08.2023:[6.0] "Able to have a good match with the right opponent but for the vast majority of his career he was a below average in ring performed, and no matter where he was in his career he was a horrible promo. He's remembered fondly because of his push, strong gimmick and loyalty to the WWE"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BigshowYTwrote on 27.07.2023:"The greatest wrestler of all time. He had the gimmick, the talent, the star power. He had classics such as his matches against Mick Foley, Shawn Michaels, Triple H, Kane, and many others."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gold Fistswrote on 26.07.2023:[9.0] "Atop the most iconic characters in the history of professional wrestling. Nobody was as devoted to playing a character as Undertaker was. He had some unbelievable in-ring work for a big man, and the tombstone is in my opinion the most brutal looking finisher to ever exist. Nobody will ever forget The Streak either. He gets a point off for sticking around until/after his match with Roman Reigns because he almost died in his match with Goldberg."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ItsToniTime89wrote on 24.07.2023:[10.0] "Einer der legendärsten Wrestler der WWE Geschiche. DER Lockerroom Leader schlechthin Backstage, in Guten wie auch in schlechten Zeiten der Company. Einer, der in den 30 Jahren als Undertaker Kayfabe immer eiskalt durchgezogen hat und sein Gimmick gelebt hat, wie kein zweiter. Weniger als 10 Punkte kann man dem Taker einfach nicht geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ismarizviwrote on 18.07.2023:"one of the GOAT of wrestling and one of the most entertaining wrestler to watch but the matches in his later ages are rough but still overall a good wrsetler"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GeneBlastKyodaiwrote on 11.07.2023:[10.0] "One of the greatest characters in wrestling. A legend beyond all legends. Mount Rushmore for wrestling has to have his face on it. A true icon of the business, nothing got me more excited for Mania than the streak and that was due to this man and his mastery of wrestling and his ability to kick out at the last second."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker4everwrote on 08.07.2023:[10.0] "Einfach mein absoluter Lieblingswrestler! Mir gefällt sowieso ein bisschen dieses ganze Mystische! Alleine seine Wrestlemania Matches waren jedes Jahr ein Highlight! In Errinnerung bleiben werden mir sicher seine Matches gegen Shawn Michaels und Triple H! Alleine sein Einzug einfach super da hielt man jedes Mal den Atem an! Seine letzten Jahre als Wrestler waren dann nicht mehr so berauschend weil man ihm leider schon das Alter ansah! Trotzdem wird er auf ewig einer meiner Kindheitshelden bleiben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: danzitorockwrote on 20.06.2023:[10.0] "Perhaps the greatest character of all time, The Undertaker is an undisputed wrestling legend, who every time he steps in captivates everyone's attention and stirs up incredible emotions. Virtually everything involving this character is legendary, from appearances, visuals, rivalries and of course, the iconic WrestleMania streak. It's impossible not to get goosebumps or excited when The Undertaker makes his grand entrance."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: lageristwrote on 31.05.2023:[10.0] "Deu Undertaker ist die Legende schlechthin.Ohne ihn wäre die WWE wahrscheinlich nicht das was sie heute ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dr Thuganomicswrote on 31.05.2023:[9.0] "Charisma: 10 - Attire: 8 - Acting: 8 - Theme Song: 10 - Finisher: 10 - Microphone: 5 - Ring Performance: 9"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Danylopez016wrote on 31.05.2023:[10.0] "Simply the best most iconic wrestler ever. His Wrestlemania entrance aura was special and I don't think anyone will ever match it. On top of that a great wrestler at 6'10 tall is just insane and unheard of."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SierraHotelIndiaEchoLimaDeltawrote on 30.05.2023:[10.0] "Zurecht wird der Undertaker als eines der besten, wenn nicht sogar das beste Gimmik aller Zeiten angesehen. Eine Karriere die seines gleichen sucht. Solider bis guter Performer im Ring, doch einzigartig bleibt die Karriere ohne Frage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Frank Shooterwrote on 30.05.2023:[10.0] "The most iconic wrestler in WWE history, and for me the greatest of all time. Without ever being the Ace of the company, he was always on the top, he could put over a gimmick that shouldn't have work in the first place and made it a legend. Amazing presence, incredible In-Ring performer (he was at his best in his 2004-2012 run), perfect understanding and implementation of psychology in his matches. He was simply the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MattHallwrote on 28.05.2023:[10.0] "One of the most iconic wrestlers of all time, and probably the most iconic in WWE history. A holy grail gimmick, and an iconic finisher in his move set. A man that has defined three generations of wrestling fans."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheMarvelousMrNJDwrote on 27.05.2023:"When talking about once in a lifetime performers, it doesnt get any more once in a lifetime than when talking about The Undertaker. The Undertaker was simply a transcendent performer who spent the entirety of his thirty year career as one of the top stars in the industry. The catalogue of classic matches, the long list of rivalries, the ensemble of unforgettable moments. The Undertaker is the greatest performer in the history of professional wrestling and I dont ever see that changing. There will never be another one like him."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dancerwrote on 25.05.2023:[10.0] "Probably the best wrestling character ever. Undertaker is the textbook example of generational talent. Even when he was older he could still go, and even during his last few years he was still one of the best workers in the company. An all time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Intrigued16wrote on 23.05.2023:"The Undertaker is called the Phenom for a reason. His presence as a character, gimmick, wrestler, leader, and many other things set him apart from others and in a league of his own, if you will. He has left a mark on the industry that may not be done again and has has a mark or impression with in myself over the years. Him retiring left an emptiness with in me as a fan that I can't explain really, and I know the show must go on and I'll still be a fan. But the show just won't ever be the same without him. At least to me."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wrest lingaddictionwrote on 18.05.2023:[10.0] "Hands down the best character in pro wrestling history. To have the longevity that this man had, an undeniable superstar!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MariotheMariomwrote on 11.04.2023:[10.0] "This guy is a badass. Without any doubt, one of the best professional wrestlers ever. Thank you for everything, Taker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Giantfan1980wrote on 09.04.2023:[7.0] "Undertaker 1990-1993 will always be my favorite. His performance got pretty terrible during that 1999-2003 period but he had something of a career renaissance when he went back to the dead man gimmick, even though he usually only came around for WrestleMania season."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: crs285wrote on 04.04.2023:[9.0] "Undertaker is a legend. Watching his early career is unimpressive to me outside of a few matches. As he aged and got more experience, he delivered amazing matches in the Attitude and Ruthless Aggression Eras. His character work is 11/10 as he got everything he did to connect with the fans while playing a supernatural character which is not the norm. His career also had longevity matched by very very few. Strong in all aspects no doubt he will be remembered in the history books forever."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GriffinXwrote on 27.03.2023:[3.0] "One of the most overrated and over hyped to ever step into a ring. People think he's good because he kept a job a long time. So many of his moves just looked so bad which is worrisome given how basic his set was. I know people want to claim his character work was key but frankly what character? Even worse because of him so many stupid magic gimmicks have come around sense"
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Personanowrote on 19.03.2023:[6.0] "I find it really difficult not to sour on The Undertaker. He's one of, if not, *the* greatest characters and entrances in all of WWE yet as he neared the end of his in-ring career it was disappointment after disappointment with some pretty bad online stuff sprinkled on top. And whilst his entrances have consistently wowed me and sent shivers down my spine, his in-ring work always left a little something to be desired. I really can't rate him higher than a 6."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: tbdolicwrote on 12.03.2023:[8.0] "Solid wrestler with an amazing lasting career but overall, mediocre and boring in the ring. 20 years is a feat, 20 years doing the same >10 move set Boring."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Noquaswrote on 11.03.2023:[10.0] "Simply the Greatest Of All Time with classic matches in 3 DECADES. An absolutely genuine character and so are his moves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: John Brandowrote on 07.03.2023:[10.0] "Einer der legendärsten WWE-Wrestler mit dem wahrscheinlich besten Gimmick überhaupt. Seit 30 Jahren stand er in Diensten der WWE und prägte das Kayfabe wie kein anderer. Trotz MMA-Einfluss war mir sein Ring-Stil immer etwas zu langsam und zu gleich, soll aber die gute Bewertung nicht schmälern. Seine Karrierephasen sind einzigartig und die Liste seiner All-Time-Klassiker lang. Seine HoF-Aufnahme gehört auch mit zur besten der Historie. Zum Ende kann man nur sagen: Danke Mark William Callaway für alles, was du dieser Wrestlingwelt gegeben hast."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KKeanelwrote on 25.02.2023:[10.0] "Of course we can find tons of better in-ring competitors, but through 30 years he delivered absolutely everything to be the top WRESTLER in worldwide and american meaning. His skill of create, grow, evolution, keep and make gimmick legendary is absolutely insane. Sacrifice which he put in his last years of his career on his body to entertain people shows how much he loves his job. Huge respect for this guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LGL19wrote on 22.02.2023:[10.0] "The greatest gimmick ever, one of the greatest in the ring, on the mic and a locker room leader. The man is truly legendary and the longevity he had with his career is unbelievable and the streak... well had some of the greatest matches ever not just at Wrestlemania but in WWE history (HBK matches in 09 and 10)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MilkDDTeawrote on 18.02.2023:[10.0] "When it comes to larger than life characters in the world of wrestling, there may be none larger in its history than The Undertaker. With an unparalleled aura, The Undertaker captured the attention of viewers in a way that few others ever have. His mere presence any time he made his way down to the squared circle was an attraction in and of itself. Over the course of 30 years, The Undertaker's story developed with feuds and moments that forever changed the landscape of the WWE. From his history with Paul Bearer and Kane that defined his character, to his classic matches with Shawn Michaels, Triple H, Edge, and many others that showcased his in-ring expertise, The Undertaker's career cemented his legendary status many times over."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jonsnoewrote on 08.02.2023:[10.0] "He is not the greatest wrestler of all time but if I consider only entire WWE wrestlers from their run in this company (past to present), The Undertaker is the best WWE wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: M3n747wrote on 04.02.2023:[10.0] "One of the most consistently solid wrestlers to have ever stepped into a ring. Despite a number potentially silly gimmicks, he managed to keep them serious without taking himself too seriously. He was always very serious and very professional about his job, though - so much so, that apparently it's really hard to find anybody who would have anything bad to say about the man. Pro wrestling isn't exactly the kind of environment where humble people abound, but The Undertaker is most certainly a rare exception."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Thehaterwrote on 14.01.2023:[10.0] "very scary that undertaker is only the 35th place in the cagematch. wwe's longest-lived wrestler, retaining wrestling qualities and history throughout this time. an absolute 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BlueBrandwrote on 12.01.2023:[3.0] "As someone who grew up with the Undertaker, he really only had a few years where he was actually putting on good matches and outside of that he was always a toilet break for me once he got to the ring. It took until Mankind entered the scene and for the Attitude Era to kick off for me to sort of be interested in the character, but mainly for the presentation. The streak storyline may have been great to some, but to me that always made his matches that much less compelling as I never thought he would lose at mania and when he finally did he was well past his prime. Love him for the pageantry, never really liked him once he got into the ring and never really bought him as a great promo."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CMFunk007wrote on 07.01.2023:[8.0] "The Undertaker had the respect of the locker room and the fans. He wasn't great in the ring until late in his career. I remember him first beating Hogan for the title at the Survivor Series and even back then, I knew Vince loved the guy. He's not a perfect wrestler, but his gimmick is second to none. It's too bad we never got that Sting-Undertaker match."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: milos1605wrote on 07.01.2023:[10.0] "One of greatest of all time. He is most respected wrestler in North America. First years of his career in WWE (1990-1995) were very bad, but it's not his fault. Hulk Hogan sabotaged Taker's first title reign and he had to work with worst wrestlers in the world. Ultimate Warrior, Giant Gonzalez, Mabel, King Kong Bundy, Yokozuna and fake Undertaker, with one exception and that's his underrated feud with Jake Roberts in 1992. Good result of this was that we started to believe in his character, or at least that his opponents are really afraid of him. In 1996 he had amazing rivalry with Mick Foley, and it produced some great matches and memorable moments, and that feud actually led to Kane's debut. His WWE title reign in 1997 was very good, unfortunately he was just a transitional champion. HIAC match with HBK was iconic, and Kane's debut and later rivalry was excellent. Matches weren't best, but story was so powerful. I didn't like ministry gimmick, it was too weird for my taste and i never could imagine him as leader of faction, but it was very creative and WWE failed to capitalize on it. Later return as American Badass was amazing, and he was more than acceptable as badass. His role in invasion storyline was bad, so many bad matches and segments (DDP, for example). Heel turn was bizzare, but heel run was great. He had great matches and put over younger guys (Maven, Jeff Hardy, Brock Lesnar) and was one of guys that carried SmackDown. Return at WM 20 was great and that was time he established himself as king of entrances. Rivalry with Randy Orton was great, and it put over Randy as top heel. His match with Angle at No Way Out showed that he is actually great wrestler, but that his gimmick was limiting him. His rivalry with Batista was excellent, and Taker fastly made World title prestigious. But rivalry with Edge was one of best in 2000s, with epic ending and so many great matches. Classic with HBK was probably greatest match ever. Last title reign was his best title reign and second match with HBK was equally epic. Rivalries with Triple H in 2011 and 2012 were all time great, just like feud and match with CM Punk. End of streak was awful, it was very bad decision. Their work in 2015 was much better. Retirement in 2017 was done too late. 2018 run was terrible, matches were sadly bad. 2019 wasn't much better. Boneyard match was great, it was perfect send off for Taker and retirement at Survivor Series was beautiful. Maybe he wasn't best wrestler ever, but evolution and greatness of his character, so many great matches, promos and segments, together with endless loyalty, makes him one of greatest ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Roastertakerrwrote on 07.01.2023:[10.0] "Probably up there as the greatest professional wrestler in North American history. To be able to do what he did for that long. Is something that is so remarkable. He will ALWAYS have that aura. Even if people know it's predetermined and that the gimmick is nonsensical. We still suspend our disbelief for him. We all still wanted to see him whoop ass when he showed up."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KSupreme3wrote on 16.12.2022:[10.0] "No other wrestler will EVER duplicate the mystique of the Undertaker. Almost 7 feet tall, this man struck fear in everyone's heart, no matter the age. In the ring, he did some amazing shit that wrestlers his size wouldn't dare doing. Taker's character work (especially during the attitude era) was on another level, and to this day there's nobody that comes close to it. Whenever he felt like his gimmicks were going stale, he found ways to recreate and re-invent himself. As a kid, I legit thought this man worshipped the devil and I was scared as shit whenever he graced my TV screen. Taker made everything feel so real. You couldn't ask for more as a wrestling fan. Undertaker will always have a spot in my top 5 of all time list, hands down. Can't forget the incredible run he had in the second half of his career. the now Classic WrestleMania matches with HBK will go down as wrestling's finest matches of all time. Definitely in the Mount Rushmore of Pro Wrestling. 10/10 Certified LEGEND."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "He was a fucking beast, all-around. He was such a good wrestler, and the aura around him could never be replicated."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wrestlers dreamwrote on 14.11.2022:"[10] I absolutely love the undertaker and I always will. He's a great example of a "bad guy" that's actually respectable."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Edward Minarowrote on 01.11.2022:"Without a doute one of the greatest of all time. Kinda disappointing the streak was broke but overall, he is a legend. Thank you Taker."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Sick Lebowskiwrote on 31.10.2022:[9.0] "Hat sich von einem eher mittelmäßigen Wrestler zu einem der Top-Leute des Business entwickelt. Kann mit dem richtigen Gegner durchaus Klassiker auf die Beine stellen. Was mich faszinierte ist, dass er sich im Ring mit den Jahren immer mehr steigerte und sein Moveset erweiterte. Von der Genialität des Undertaker-Gimmicks ansich brauche ich ja vermutlich erst gar nicht anfangen. Für die volle Punktzahl reicht es bei mir nicht ganz, da er die ersten Jahre im Ring wie geschrieben nicht voll überzeugen konnte, aber starke neun Punkte sind allemal drin."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: zachattack2023wrote on 17.10.2022:[10.0] "This is one of the best characters in wrestling of all time it was just insane on how creative the character was. The undertaker was just as good in the ring just a legend and he had so many classic moments and matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RavenCrow75wrote on 06.10.2022:[7.0] "For the most part I will be basing my Wrestler ratings on five criteria four of which are based on in-ring ability and the last on charisma. I believe these five criteria are pro wrestling's version of Tommy Lasorda's criteria of "five points" in baseball. For pro wrestling those five criteria are power, speed, technical ability, hardcore & charisma. Undertaker's scores: Power: 8 Speed: 7 Technical: 7 Hardcore: 7 Charisma: 8 for a total of 37 and an average of 7.4 rounded down to 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: eltetechoriwrote on 27.09.2022:[10.0] "If we can say a character that represents wrestling as much as Undertaker I think there is no one, anyone you ask, I think they know who he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "The Undertaker is the single greatest creation of Vince McMahon, but it took a special talent to bring it to a legendary status. Mark Callaway was that man. He gave his all, down to the little mannerism that made his character so captivating. In the ring, he was forced to limit himself during the first years as a slow, lambering zombie, before slowly the chains were taken off him. During the 2000s, we truly saw the extent of what he was capable of, and delivered countless classics for us to remember. Often imitated, never to be replicated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AlDente01wrote on 25.09.2022:[10.0] "Phenom. The Undertaker is a living legend. He is not famous because of wrestling, wrestling is famous because of him. He is the biggest star WWE has ever had. Entire generations could grow up watching it and enjoying it. Every time I get goosebumps when he comes in, no one gets as much emotion just by appearing as he does. I love The Undertaker, his entrances, his speeches, his moves in the ring, all the surroundings around him, and I think it was an honor to watch wrestling at the time he fought. Thank you Taker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Stevooo117wrote on 22.09.2022:"He is one of, if not the greatest, to ever put on a pair of boots. He is my earliest memory of pro wrestling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Flame233wrote on 22.09.2022:[10.0] "There is simply no way I can properly acknowledge The Undertaker, so I'll keep it short. He is, the single Greatest Performer, WWE has in its' Hall of Fame. This guy is the very definition of a Legend. He is very iconic, his gimmick is very iconic. When you think of wrestling, there is no chance you don't (among others) thnik about the Undertaker. Propably the first proper "Scary" gimmick. Mr. Calaway, thank you for what you did for this sport, you WILL be missed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: McGravedigger98wrote on 05.09.2022:[10.0] "Der Mann ist und wird für viele ein Kindheitsidol bleiben. Niemand hat Kayfabe in den letzten 20 Jahren so geprägt, wie Mark Callaway aka The Undertaker. EIn Mann, der auch noch in seinen späten 40er Jahren klasse Matches abgeliefert hat. Vorallem das Hell in a Cell Match gegen Triple H bei Wrestlemania 28. Ich werde Mark immer für das idolisieren, was er uns Wrestlingfans in den letzten 30 Jahren so alles geboten hat,"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WrestlingFan892wrote on 20.08.2022:[10.0] "The best gimmick in the history of Wrestling, his time in the Ministry of Darkness was terrifying. He has made memorable matches throughout his career, and as a very good wrestler that he is, he appeared very regularly on weekly shows, specifically SmackDown. He introduced personal matches, Casket Match, Buried Alive... His passion for Wrestling made him retire at a long age for Wrestling. Living Legend, marked an era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: texasyoshwrote on 17.08.2022:[8.0] "There's a lot of good in Undertaker's career, but it would be wrong to ignore a lot of misses. For every good Taker match there's probably one that's the polar opposite. His outside-of-the-ring character will make his work age poorly as more time goes on."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Heir of Edgewrote on 07.08.2022:"Childhood memories. Watching many old videos of him on YT. This man deserves so much respect for how inspired us all."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DemiBoySimpwrote on 06.08.2022:"Not the greatest in ring worker of all time but a dam legend in the business that deserves his flowers cause he? s on overall legend"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CTFBwrote on 28.07.2022:[5.0] "The Undertaker deserves a massive amount of respect for creating one of the most legendary gimmicks in the history of the business, and that shouldn't be taken as a light thing which easily keeps his score from being under a 5, but what doesn't bring it to a 10 or even a 7 is the fact that Taker was no one really that special in the ring, nor was he a good promo most of the time. He had good one-liners, but nothing else to really back it up. He was a supposed "locker room leader" but it's more along the lines that he was a bully and an egotist backstage, influencing toxicity and the very immature "boys will be boys" stance that has since (thankfully) died a slow death. Taker is many things, a good person isn't one of them."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: hoangminecraft6969wrote on 21.07.2022:[6.0] "A very overrated wrestler with a nice deadman gimmick (the only thing i give him credit for). His undefeated WM streak was more like a series of dogshit matches (if you don't believe, look at Meltzer rating for his WM matches from Wrestlemania 7 to 20). He is very lucky to be carried by some of the best workers in the industry and had some memorable matches throughout his career, but overall he was an awful and overrated performer for most of his run in WWE with countless terrible feuds and matches. Not to mention he's a racist asshole in real life with an ununderstandable antipathy to video games. 6 is still a bit generous for him."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ozzywrote on 09.07.2022:[10.0] "Mark is a good man in the ring and out, he looks after his opponents, sells well, is willing to put the younger guy over, and of course has probably the best gimmick, one of the best careers, royal rumble winner, multi time wwe champion, 30 year career, WWE 2022 HOF headliner, and 21-0 wrestlemania streak. Taker is also a skilled wrestler, good on the mic, lived the gimmick for the most part, and has chemistry with most of his main opponents. The way that mark revolutionized the industry though with what he was willing to do in matches is a big reason why I give him the 10 though, obviously with King of the Ring 1998 against Mankind he was a clear favorite to the fans. He would put his body on the line day in day out for years for the fans entertainment in more ways than almost any other wrestler. And even during his time as "Texas Red" and "Mean" Mark Callous he was still more entertaining and talented than a lot of other people in the buisness. He was able to keep with the times too when transitioning to his biker gimmick as well showing he wasnt a one note wrestler but a true professional"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sbg2022wrote on 02.07.2022:[10.0] "What can be said? He is the greatest character EVER in wrestling. AND he had the skills to back it up in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CommisarRobewrote on 06.06.2022:[9.0] "Undertaker probably has the best gimmick and entrance in professional wrestling, he has played his character to perfection all throughout his career. His matches between the 90s and 2000s are for the most part fantastic and his Wrestle mania matches with Shawn Michaels are some of the greatest of all time. However he is not a 10, in my humble opinion Taker should have retired a lot earlier as it became clear in the later years that his ability was waning and that unfortunately negatively affected many of those matches. His Championship reigns were decent if only notable while his Wrestlemania streak is the stuff of legend which has yet to be matched. Taker deserves all the respect he deserves and will leave a legacy that will stand the test of time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NeoSwas36wrote on 04.06.2022:[8.0] "I don't think he's a 10/10 at all, but what he did for wrestling was very huge. He had a great character, some really underrated matches, and was a good Powerhouse-style fighter. He DEFINITELY isn't what his rating says, I'd give him an 8/10 though."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mikeyisgoatedwrote on 16.05.2022:"Never has anybody ever said anything bad about this man in the business. On TV, off-TV, he's a great worker and the best big man in the history of this sport. So many great feuds and matches under his name across four separate decades (1990s, 2000s, 2010s, 2020s). He's unbelievably agile for his size, has so many great trademark moves, and not to mention the GREATEST gimmick in all of wrestling history? He has helped put countless talent over, isn't selfish and sells for his opponents, and how can anybody forget the legendary streak. He's great on the mic, he can cut promos in various ways. He had the crowd in his hands on DAY 1 starting back in Survivor Series 1990. I don't see how anybody could give this man anything else other than a 10. Easily one of the greatest wrestlers of all time."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: fruggmanwrote on 03.05.2022:[10.0] "The greatest wrestling persona of all time. Went through multiple evolutions and refused to break kayfabe ever even when the business stopped caring about it in the late 90s all the way to his retirement in 2020. Even discounting his 'not great' periods like 2014-2019 and 2000-2002, he always was the ultimate ring general for the sports entertainment style. There will never be anybody like him again and I think wrestling would never have been as popular or as fun as it became were it not for 'Taker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Maxkappelnwrote on 22.04.2022:[4.0] "Tja, der Undertaker? Fand das Gimmick relativ schnell langweilig. Auch die Matches waren eher langsam und gleich aufgebaut.Die Promos waren auch eher immer gleich. Natürlich gab es auch gute Matches, die WM Matches gegen HBK und HHH bleiben in Erinnerung. Ganz schlimm dafür das AJ Styles Match bei WM. Fand ihn als American Bad Ass facettenreicher und Spannender, daher auf jeden Fall noch 4 Punkte."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ryanmichael25wrote on 18.04.2022:[10.0] "The greatest character, superstar, and wrestling legend to ever live. Simply put the GOAT. No questions asked."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TigerDiverwrote on 11.04.2022:[8.0] "Undertaker is a guy that I have come around to think I respected him more than I love him. His Mean Mark run in WCW was fine, but it was clear he was never the amazing worker people made him out to be. Once he made it to the WWF, it took him a good six or seven years until he was actually good. People said he took his time "working the gimmick", but I digress. His American Badass run has aged terribly after all these years. And even though he had a slew of classic, career-defining moments and matches spanned over three decades, the same amount could be said for his awful, eye-rolling shits as well. I give props for his longevity and the fact that his gimmick was able to last this long without getting stale. A legend in my eyes for sure. But greatest of all time? I'm not so sure about that."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PavelDragunovwrote on 07.04.2022:[10.0] "One of the most dedicated wrestlers in his field. 33 years in business, most of which are in WWE. A fighter who combined a bright image, a unique appearance, innate charisma, the ability to work miracles in the ring, with his size to be agile and at the same time wildly strong. The main feature of the Undertaker is of course his unique streak of wins at WrestleMania, whoever came up with this is a genius, because at one time it became a real tradition. People gathered in whole stadiums to see if someone could stop Deadman or if the opponent would fall. This lasted for many years, excellent and historically important fights were held, for example with Triple H, CM Punk, Shawn Michaels and many others. For WrestleMania alone, a huge number of plots and fascinating stories were conducted. And this is if you remember his path on the main show of the year, and how many stories there were outside of this show, it's even awkward to describe. For me, his most important feud stories were with Kane, Bret Hart and Mankind. But of course this is not the limit and you can still remember a lot of interesting things. For example, his insanely charismatic duet with Paul Bearer. Or his emotional appearance for the first time in the image of a Dead Man. Also his epic feud with Brock Lesnar and the appearance of American Bad Ass. This is a wrestling story that is difficult to overestimate. The only thing that can be noted is that of course you need to leave on time. I'm absolutely not a fan of his last years in WWE. The era has already gone, there was no need to take him out of the ring for the sake of dream matches that would have better remained in the dreams of fans, because in fact age takes its toll and if we didn't see the dream matches at the right time, then we don't need such content in modern times. Summing up everything I have written, I want to express my deep respect to WWE and in general to everyone who worked on this character and eternal honor Mark William Calaway is a real phenomenon of wrestling and a man who put his body and soul into popularizing such a great sport. Thanks!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheGreatWhitewrote on 06.04.2022:"Simply one of the greatest of all time. He has been relevant for nearly 3 decades and his gimmick, his accomplishments and his legacy will live forever. Thank you Taker !"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: nothingleftinsidewrote on 04.04.2022:[5.0] "Easily the most overrated wrestler of all time. Positives- the gimmick is cool, and he switched it up to keep it from getting boring. The entrance is the coolest entrance of all time as well. Paul Bearer/Percy Pringle is one of the best managers ever, and perfect for this gimmick. Beyond that, what do you got? He's capable of cutting exactly one promo, and somehow he made that work for 25 years, which I guess is commendable. He's not terrible in the ring, and is good at doing the character work between moves, but again he did the same routine for 25 years. All of his good matches are with phenomenal workers who elevate their opponents no matter who they are- Shawn, Edge, Kurt Angle, Triple H, Bret, CM Punk, etc. His matches with Brock and Batista do not hold up these days. After Hogan, there probably isn't anyone out there with more disappointing PPV matches. For someone to be truly great, they need to elevate the talent they're working with. Any match with someone who isn't great will expose this dude- see Sid, El Gigante, Mark Henry. He even manages to suck against Vader, and he has exactly one good match with Kane. There might be stuff that I'm missing as a wrestling fan that people that work with him appreciate, but I've yet to hear anyone articulate what it is. if that's the case. He also had a tired ass moveset ("old school" is such garbage) and no sold more than perhaps any wrestler. And at the end of his career he thought he was some kind of MMA fighter. Give me a break. On top of all this, his stupid attitude as the "boss" or "locker room leader" with him taping his fists to ensure the business is respected blah blah, this guy is a complete goof. Like everything else about him, his self image is overblown. Plus he's a pro-cop racist. That sort of thing normally doesn't influence my opinion of a wrestler but it just goes to show that the man behind the mask is a complete turd. I can't believe so many people are fooled by this guy's "mystique." A+ gimmick, one-note promo, C+ wrestler, long career. The prettiest smoke and mirrors in the business, but smoke and mirrors nonetheless."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CMX-7wrote on 02.04.2022:[10.0] "Wrestling icon! The man thanks to whom everyone loved and love WWE! Lots of historical matches and great moments)) He has always evolved with gimmicks in this or that era (My favorite Gimmick is Ministry of Darkness 1999) Thanks to Mark for his childhood and love for wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheMrPollardwrote on 28.03.2022:"I have a strange thought about "Taker" a truly iconic legend of the sport but he has a real mixed bag of matches with (for me) a short span of years where he was truly great in the ring"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AEWInspectorwrote on 21.03.2022:[10.0] "Great wrestling, one of my all time favorites, I'm sad not to see him in the ring anymore but happy for the great legacy he left"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Conquistador37wrote on 23.02.2022:[4.0] "Why is this guy rated so highly when at least half of his career has been rather plodding and blatantly terrible matches? He doesn't get much in the way of bonus points to me because i thought Mean Mark dressed up as an early 19th century undead mortician was super silly (so unlike millions of you, the character never excited me from the get go). Things didn't ever click until Mankind came around and even then it took a while for him to really get the gears in motion. He went out of his way to attempt to derail Kurt Angle's career (it FAILED). I was not a fan of the American bad ass gimmick, some try hard spitting in a cup isn't "bad ass", it's TRASHY. He's over rated. over fkn rated. great matches? maybe somewhere in there he had some great ones, thanks to cats like Shawn Michaels. What about fast forward fodder? LOADS. The majority of his career is NOT exciting. *ahem* i DID like his run in WCW as Mean Mark Callous, very much so - however it was short lived, yet for a long time his in ring career peak so. meh 3.5 rounded up. Not a fan ...also he seems to have a total garbage personality (toxic masculinity full tilt and then some)."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jorgeisthe1wrote on 22.02.2022:[10.0] "The greatest of all time, my favorite wrestler, the Phenom, the Deadman, the Last Outlaw. He is the greatest character in WWE. I give you THE UNDERTAKER"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dendowrote on 21.02.2022:[7.0] "One of the all-time great personas in professional wrestling history. His influence cannot be over-stated, but it must be said that his wrestling ability is often good for a big man but not top-level. His massive presence is also heavily subsidized by the support of WWE's special effects budget. Still, he's had plenty of good or great matches and reliably delivered cool visuals, gravitas, and awesome beatdowns. His overall legacy is slightly marred by the last few years of his in-ring career which badly exposed his weaknesses as a performer. After going out on a high note they should have let the poor man rest... in... peace..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DangoDaisukiwrote on 13.02.2022:[7.0] "Es gab eine Zeit wo ich angefangen habe Wrestling zu schauen da hätte ich Undertaker als meinen Lieblingswrestler genannt. Heutzutage muss ich aber einen Vergleich ziehen zu anderen Wrestlern und fair bleiben beim bewerten. Ja, Undertaker war sehr wichtig für das Wrestling der WWE und seine Matches sind auch heute noch ganz gut sehenswert. Aber noch ganz gut sehenswert ist eben keine 10 Punkte wert. 8 Punkte eigentlich für mich, aber er hatte noch viel zu lange weiter gewresrestelt und wusste einfach nicht wann Schluss ist. Deshalb 7 Punkte für den Deadman."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "The Undertaker was not a versatile wrestler, not a dynamic character, not an amazing promo, and yet he's one of the all time greats. His stoicism and longevity created an aura only matched by the murder grandpa Minoru Suzuki, and was a great in-ring performer as his unwavering grim determination let his opponents show amazing emotional depth. The End of An Era hell in cell almost brought me to tears, and his ability to brawl and structure a match were amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WhatIsLooveeewrote on 06.02.2022:[10.0] "In the long run, "the dead man" character was not supposed to become something such popular. But Mark made thia gimmick work, becoming a truly iconic wrestler. From a just living zombie, he became a well-developed character with an interesting story. Since the nineties, he has been at the forefront and performed at the proper level for as long as he could. Yes, there were a lot of bad matches, but Mark's contribution to the industry overshadows all the bad and after all, his name is on the ear of many people who have never even heard of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: rishabhwrote on 30.01.2022:[10.0] "One of my all time favorites. His character is so hit and miss and we saw so many wrestlers with that kind of character never work and fade away but Undertaker remained in this business for 30 years and became one of the most popular and iconic stars of all time. From his entrance to his voice to his look everything about him is unique and screams GREATNESS. He did have his share of bad matches and in fact it was only until 1996 that he started having good matches but that's because of his character and why he became such a big name. And later in his career, he started having a lot of classics, his WrestleMania stretch from 2007 to 2013 is absolutely amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: danzgalliwagwrote on 29.01.2022:[10.0] "Greatest character of all time doesn't begin to encapsulate the Undertaker's' legacy. He is the essence of a professional wrestling legend--a solid and reliable worker, totally committed to his gimmick, and still humble enough to put over young talent both on- and off-screen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: nunoaewrote on 25.01.2022:[10.0] "The greatest of all time, the phenom of the sports entertainment, the legendary and the fantastic hero of my childhood. I miss him so much... There will never be no one like The Undertaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: comewhatmay927wrote on 24.01.2022:[5.0] "Undertaker has always seemed a bit overrated to me. He does great character work and he used to be very athletic, but all of matches seemed very similar to me. Not a lot of variety to his move set either."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Odinseerwrote on 15.12.2021:[10.0] "A simply phenomenal wrestler who became a household name and despite his dulled legacy is still one of the best to have ever stepped in the ring. Character, in-ring, and promo work are all simply perfect/"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: King of Strong Stylewrote on 10.12.2021:[10.0] "Eine der Absoluten Legenden der WWE und auch einer der bekanntesten WWE Wrestler aller Zeiten. Im Ring ist er für einen Big Mann, sehr gut und kann mit dem richtigen Gegner 5 Sterne Matches zeigen (z. b Shawn Michaels, Triple H etc. ), am Mic musste er nicht zu viel machen, aber war dennoch gut und vom Charisma eindeutig einer der besten aller Zeiten. Alles in allem hat der Undertaker sich über seine komplette Karriere die vollen 10 Punkte komplett verdient. R. I. P!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NoSellwrote on 21.11.2021:[9.0] "Along with Cena and Rock probably the biggest character that people that didn't even watch wrestling still know. He is legendary but he's not getting a 10 because if we're being honest out of his long career his only consistently awesome in-ring years were 2006-2013. Rest of it had A LOT of bad matches, many not his fault but still."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RBDwrote on 07.11.2021:"Probably one of my favorite wrestlers growing up. He did some things that many other wrestlers did not do at that time. He came in to an interesting era. We didn't have too many scary looking guys and his gimmick was just that. Also he was willing to take risks, and be willing to allow his opponent to do the same. A big responsibility. Deserves respect for all things I've stated. His in ring work is below average by today's standards, but he set the bar so that's expected."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: benny5bellyswrote on 04.11.2021:[4.0] "One of the best gimmicks and entrances in wrestling but by the time I have finished watching his matches I felt like a deadman. Could occasionally be dragged to a good match. Gets an extra point for putting Paul Bearer on my tv more. Also seems like a bit of a dick. Dreadful strikes despite commentary always hyping them. He also tried to murder his brother so should probably dock points for that."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FACEElmo295wrote on 31.10.2021:[9.0] "The greatest gimmick ever in wrestling. All credit goes to Mark Calaway and how he constantly reinvented, and made the character work. Not too big on his later work that he did in his career, but he finished his career how he wanted to finish it. He was pretty agile for his size as well, and his in-ring psychology was off the charts, legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: OnlyHalfTheEffinShowwrote on 27.10.2021:[10.0] "The greatest gimmick in all of wrestling, used by one of the greatest working big men in all of wrestling. A true GOAT who can truly say he's been everywhere and done everything there is to do I say. Undertaker's career is defined through a mix of the macabre storylines brought on by the nature of the Undertaker character mixed with stellar ring-work, the likes of which few (if any) workers of his size could manage consistently. Admittedly, many of Taker's early matches were much more slow as his size and gimmick as the undead mortician forced him to play the role of the more traditional Monster in the ring, it wasn't until 1997 and the Attitude Era that Taker truly managed to come into his own as a worker and show off what he was really capable of. A character shift into the American Badass following a gruesomely memorable run in the Ministry of Darkness saw Taker add a more human element into his character and allow for more depth, before making a much lauded return as the Phenom and going on the run of a lifetime for more than a decade. The Streak speaks for itself, and is notable for having some of the best matches in WWE/WWF and Wrestlemania history, with Taker going against a whos who of some fo the biggest names of the era from Jake the Snake to Diesel, to Kane, to Randy Orton and Shawn Michaels before meeting a sad end at the gloved hands of Brock Lesnar. Taker's inability to walk away from the ring has admittedly sullied his legacy somewhat, but after finally having a one of a kind match with yet another generational talent in AJ Styles, Undertaker can finally say he's gone out with his head held high, hang his boots and hat up and finally Rest' In' Peace."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Die hard fanwrote on 22.10.2021:"The greatest wrestler in wwe history, can be inserted in the discussion of the best wrestler of history. Amazing performance, amazing character work, great mannerism. he's what a professional wrestler suppose to be."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Pete Gallowswrote on 07.10.2021:[9.0] "I will give him a 9, mainly because he was able to take this stupid, silly idea for a gimmick and make it his own, to the extent that people not only take him seriously, many consider him the best, or one of the best. He actually made it cool. As a kid in early 90s, I had an official Undertaker VHS, Paul Bearer was talking there with his spooky voice, Undertaker was actually building a coffin in that video and had a handful of early matches, against Kamala and others. It was like 1991 vhs or something. Anyway, very gimmicky character, that just should not have worked, at least not long time - first the Wild West kind of Undertaker, whos also undead, then it became even more supernatural. Its really quite silly, when you actually think about it - but he took it seriously, so it actually became serious- much respect for that. He was quite impressive as a wrestler, meaning- he is a big guy, looked scary, the old school move, jumping lariat, chokeslam, the sit-up, tombstone piledriver- I especially liked the version, when his opponents didn? t put their legs around his head, but kept both legs on one side of his head- it looked less synchronised and more like - you dont need to set yourself up, I am just gonna drive your head into the ground now. His last ride powerbomb later on looked very impressive too. His voice always seemed quite staged, like he was really trying to sound deep and raspy. It is one of the most legendary gimmicks and although there have been some changes back and forth, it has been around for a very long time. I was not crazy about his mohawk and shaved head look, it took some of his mystique away from him imo. He was one of the people thats hard to make a champion, because how do you ever take the belt from him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jltwrote on 26.09.2021:[10.0] "Amazing gimmick, amazing wrestler, amazing promos. I dont know what bad you can say about the Undertaker. He was wrestling for 33 years and he never had to drastically change his character or in ring style. Nobody will ever be like the Undertaker ever again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dartrookwrote on 23.09.2021:[3.0] "Never really been a fan of the American Badass, Deadman, Mean, Phenom, Last Outlaw, Demon of Death Valley, The Undertaker. Only seen a handful of matches of his that I have actually enjoyed and the gimmick (especially the American Badass part) is pretty corny to me. Might have something to do with the fact that he has been part time the whole time I have watched wrestling EDIT: changed from a 5 to a 3 because Sting is so much better at 62 than Undertaker has been for the last 5 years and being old is no longer an excuse he or his fans can use."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rodycaz IIwrote on 19.09.2021:[10.0] "My favorite wrestler. Greatest gimmick in the history of the business. Truly a legend in every sense of the word."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Thomas644wrote on 30.08.2021:[10.0] "The Greatest Wrestler of all Time in my Opinion. Amazing Character, great in the ring, great on the mic, was always over. I always loved him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: YourKingMobwrote on 19.08.2021:[7.0] "I would rate him lower, but every time I do, I watch his matches in Japan - especially his match in Michinoku pro... Gawd damn he could go! His fascination with MMA did not at all mesh with his character at any time and while I know it was a huge interest of his, seeing an undead man using bad jujitsu was cringeworthy. Much better in the ring than The Rock, but not as good in the ring as Shawn Michaels and his promos were okay. But he did have an aura and while being a trash person outside the ring, didn't destroy careers like his peers."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: justpeachykriswrote on 18.08.2021:[10.0] "If every wrestler was even close to an Undertaker, I think we'd have another golden age of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: lukerocker9wrote on 15.08.2021:[8.0] "An amazing gimmick that lasted way longer than anyone could have guessed. Had a lot of ups and downs but overall an iconic wrestler"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: skeletorwrote on 30.07.2021:[10.0] "Undertaker ist eine Legende! Er hätte nur früher aufhören sollen, aber man kann nur 10 points vergeben für seine Wrestlingkarriere und sein Gimmick!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tomatowrote on 27.07.2021:[10.0] "My favorite wrestler. The legend of professional wrestling. Undertaker has had one of the greatest careers in WWE history. He had charisma, the best gimmick in wrestling history, and great athleticism for a man of his size. He also had so many memorable matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LMC2wrote on 15.07.2021:[10.0] "The greatest character in wrestling history. He was there throughout the end of the Hulkmania days new generation era, attitude era, pg era and so on. He spent so long being great in the ring. He created classic matches at Mania throughout the 00s and 2010s. His matches with HBK, Foley, HHH, Kane, Flair spring to mind as some of my favourites. Only complaint his last few years in ring wise and booking wise weren? t great. His match with Roman wasn? t great nor were his bouts with Cena was 10 years too late. Putting those aside. I will always love the Undertaker. He was always there throughout my childhood and even into adulthood. It would be nice to see him make an on-screen return as a manager."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BrayanLaPrewrote on 06.07.2021:[10.0] "My personal GOAT for WWE. We talk a lot about his longevity, but how about the evolution that he underwent during those ~30 years? The Undertaker started out as Frankenstein's monster and slowly showed bursts of athleticism that were simply uncommon for a man of his size. Over time, both his character and his ring work evolved. Story-wise, he has countless moments and feuds that have stood the test of time. In the ring, he has legitimate 5* matches and other classics. In my personal opinion, the best combination of character work and in-ring proficiency."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Reviewer Champwrote on 15.06.2021:[10.0] "One of The Greatest Wrestlers Of All Time. From His Days To Mean Mark Callous To His Undertaker Days. Had Great Moments in His Career and Matches in His 30+ Year as a Wrestler. Great Feuds Such as Kane, HBK, Triple H, Bret Hart, Lesnar, Mankind and Edge. Had a Great Faction Of The Ministry Of The Darkness. Great Wrestler To As a Big Man Not that many his size can go like he can go. His Gimmick is one of the best in Professional Wrestling and of all time (MaximusKE Stfu)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheRealMccrizzlewrote on 11.06.2021:[10.0] "It? s the Undertaker, how can I not give him 10. Yes there has been a lot of bad associated with him, such as wrestling way longer than he should, but I? m the end he monumental in the world of wrestling. His sheer importance gets him the 10 in my eyes"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ALFwrote on 06.06.2021:[10.0] "Eines der besten Wrestling-Gimmicks überhaupt bzw. DAS BESTE Gimmick ever. Unverständlich nur, warum die WWF/E aus solchen Gimmicks wie Mordecai oder Papa Shango keine ähnlichen Erfolge zog bzw. einen Nachfolger aufbaute - oder z. B. Bray Wyatt? Daraus hätte man - wenn auch mühsam einen zweiten Undertaker kreieren und aufbauen können mit Glück und Geschick. Der Undertaker lebt sicher fast ganz allein vom Gimmick, wrestlerisch eher im Mittelfeld bzw. unteren Mittelfeld anzusiedeln. Lebt von seiner Aura und seinem Charisma. Was man auch nicht vergessen darf: Ohne einen Ultimate Warrior hätte es mit Sicherheit keinen Undetaker gegeben. Nur durch dessen Durchbruch beim SummerSlam 1988 wurden solche Gimmicks erst möglich. Selbst wenn der Warrior eigentlich nur 5 Power- Moves (Splash, Gorilla Press, usw. ) konnte (die wirkten wie erlernt auf einem 30-stündigen Volkshochschul-Wochenendseminar) und nur von seinem Gimmick & Körperbau (der sich aber selbst vor Hulk Hogan nicht zu verstecken brauchte! ) + Charisma lebte, war der Warrior hier ein Vorreiter. Und das Undertaker-Gimmick ist der langlebigste Wrestling-Charakter überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: zags7000wrote on 28.05.2021:[10.0] "One of the greatest. Some did certain things better but overall few checked off more boxes than The Undertaker. He had an two amazing gimmicks and great charisma. While not the greatest on the mic he was able to cut a solid promo when he needed to. Not the greatest in the ring but in the biggest moments, he had some of the greatest matches ever. Every time he stepped in the ring with Shawn Michaels in particular it was magic. He was one of the first to be able to wrestle a high level as a big man as well. Just his overall presentation to his ability in the ring makes him one of the greatest."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mjs2212wrote on 23.05.2021:[10.0] "There are very few characters in wrestling that are as iconic as The Undertaker. One of the most intriguing characters of all time that evolved over time, each showcasing a new side of the Deadman. He could carry a lot of people to have a great match and he's responsible for putting on some of the greatest in history. His battles with Shawn Michaels are obviously well received, but his matches with Jeff Hardy, Triple H, and Randy Orton deserve just as much love. Despite the two unfortunate losses, the streak is an impressive feat and it arguably should've never been broken in the first place. It's hard to argue he's anything but a legend, his list of accomplishments is admirable. A staple to many people's childhoods (including mine), The Undertaker is one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Daigotsuwrote on 20.05.2021:[8.0] "The Undertaker is a good study in how you can build a career out of a great gimmick and being able to connect with fans. He was never the best worker. He was average on the mic and frequently needed a manager. But he's had one of the most successful wrestling careers ever because the fans always bought into his weird zombie gimmick. There's been a lot of highs and a lot of lows to his career. But he's definitely had a legendary run."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Unrightwrote on 16.05.2021:[9.0] "It's the Undertaker. He's not necessarily the best worker, or the best talker, but he's been fantastic at playing to his strengths and covering his weaknesses."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The A-Listerwrote on 08.05.2021:[10.0] "Great wrestler. Had some Wrestlemania classics and great characters. Should have retired earlier though."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Okaro143wrote on 30.04.2021:[10.0] "Undertaker is one of the greatest wrestler of all time. His matches at WrestleMania from the 23rd edition to the 29th edition were some of the best matches in WM History and most if not all of them were easily the best match of the night. His in-ring ability is really good considering he is almost 7 ft tall and near 300 pounds. And his gimick is just awesome. But why he keeps on tarnishing his legacy by returning and being involved in a lot of subpar matches. Thankfully his last match against AJ was very fun and should be his last match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: uziwrote on 30.04.2021:[8.0] "Definitely on the overrated side, but he still gets an 8 because of what he's accomplished, and also because I think you can point to him as a great example of how to work a big man style, I think he was instrumental in developing the modern version of it especially for guys like Archer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 7Flatewrote on 17.04.2021:[10.0] "An absolut legend! The best gimmick ever, one of the best big guys in the ring ever. Watch his 1998 ministry of Darkness segments, then you see that hes one hell of a micworker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JTIwrote on 18.03.2021:[10.0] "Undertaker's kind of hard to rate. Was he a good *wrestler*? I mean, not really, but he still had some great matches depending on the opponent and stipulations. Was he good on the microphone? Eh, not really either, but he was still an integral part of the some the most memorable storylines and angles in WWE history. Thing is, you don't need to be a technical master to be entertaining and effective. In an age of wrestling plumbers, minotaurs, spacemen, and friars, Mark Calloway somehow managed to not only make a Zombie Mortician Wizard gimmick work, but be one of the best characters WWE's ever had. His imposing figure and dedication to character work are what he really put him over the edge and made him such a legend, to say nothing of his stellar reputation outside of the ring and his consistent status as a reliable locker room leader. He's a prime example of a whole being greater than the sum of its parts. I wish we could do 0. 5 ratings on this website because he probably should get half a point knocked off for having several Worst Match of the Year contenders in a row during his twilight years. But then again a payday is a payday and he did redeem himself by fittingly enough going out pioneering a new match style for WWE so it's really not fair to hold it against him that much."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Takerfan99wrote on 02.03.2021:[10.0] "The literal Greatest of all time. The Undertaker is the most dedicated, loyal, and passionate wrestler in all of pro wrestling, especially when u watch interviews and the Last Ride documentary. Great in the ring and out of it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LucaGG18wrote on 19.02.2021:[10.0] "The first one who says that the Undertaker did not mark the history of wrestling in the world, prevent him from watching wrestling for the rest of his life! This man is a god in the wrestling world, he is worshipped, respected, and we all look forward to the day when he will be inducted into the WWE Hall Of Fame."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: michmoose21wrote on 14.02.2021:[10.0] "This dude below me really made three accounts just to shit on Undertaker. Wow. The Undertaker is the best character of all time and is one of the best minds for the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: cal9099wrote on 11.02.2021:[6.0] "One of, if not the most overrated wrestlers of all time in my opinion. I can appreciate his classic WM matches and the aura of his character at it's peak, but I've always found the gimmick mostly cheesy. His later years truly tarnished him for me as well with some outright awful performances. Knowing when to stop was certainly not one of Taker's strong points."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: lutherreignsfanwrote on 04.02.2021:[10.0] "My favourite wrestler ever and even though he had gone down hill in the last few years of his career it doesn't effect my score for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Elusive12wrote on 04.02.2021:[10.0] "The Undertaker, one of the greatest gimmicks of all time. From just one of those wacky gimmicks to an absolute legend that spans over decades. I will forever cherish his WM streak mode matches from RA to PG era because of how it affected me as a fan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kungwrote on 26.01.2021:[10.0] "I mean, it's The Undertaker. He's the greatest character in the history of wrestling. For that alone, he's one of the greatest to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Uweuwesenwrote on 25.01.2021:[10.0] "Eine der größten Legenden, die jemals einen Ring betreten hat. Das wohl bedeutendste Gimmick aller Zeiten. Sowohl im Ring als auch am Mic absolut Top und zwar genau so, wie das Gimmick das wollte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Brett1980wrote on 25.01.2021:[10.0] "The best Gimmick of all time. In a time where lame gimmicks were just being chucked around he went with his and never looked back. Always adding new elements to it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Icon is the bestwrote on 02.01.2021:[10.0] "The Undertaker was always an excellent wrestler, but a great one. If we look at the ten best matches in WWE history, we will find The Undertaker participated in seven of the ten matches. The best wrestlers in the world were their best matches against The Undertaker such as: Triple H, Shawn Michaels, Kurt Angle and Brock Lesnar. Even when he became bored in the modern millennium, he returned with another character and was able to attract many people, I know maybe he did not play many matches in weekly shows, but this is the nature of his character so that his losses do not exceed his character and his character is wasted? Many current wrestlers always like to be like the Undertaker, far from being a wrestler, He is also a role model."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ItsKyleTimewrote on 20.12.2020:[10.0] "OK. The Undertaker (Mark Calloway) Is One Of The Best Wrestlers In Wrestling History. He Went From Deadman To Badass To Deadman. He Won A Championship In His First Match. He Is One Of The Most Influential Wrestlers In History. He Has Done Many Things, Many Gimmicks, Many Matches Over His 33 Year Career. THANK YOU TAKER!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Abo96wrote on 19.12.2020:[10.0] "Jetzt nachdem seine Karriere (wohl? ) endgültig vorbei ist kommt man nicht drum herum ihm die 10 Punkte zu geben. Der Undertaker hatte eine der größten Karrieren aller Zeiten. 30 Jahre mit dem selben Gimmick, natürlich mit unterschiedlichen Phasen, als Full-Time-Wrestler immer im Main Event, unzählige Topmatches und legendäre Momente. Großen Respekt für diese Leistung und seine Verdienste um das Business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Old ride long linewrote on 14.12.2020:[10.0] "My all time favorite wrestler! It blows my mind that he has five 0? s lol the disrespect! He was a 7 time heavyweight champion holding the belts in 3 different decades! 25-2 at the biggest wrestling show every year since 1985. He? s beat your dads favorite wrestler and your kids favorite wrestler. He is the G. O. A. T and you can? t legitimately dispute that unless your names ric flair, hulk hogan, John cena, or Shawn Michaels. He is the one guy that, for basically his entire career, gives you that big game/big fight atmosphere every time he goes out to the ring. And because he wasn? t always the campion you literally never ? knew? wether he was gonna win or not, but the one thing you did know was that it was gonna be fucking awesome. His feuds with hbk, Bret hart, Austin, hhh, Kane, lesnar, mic foley, Yokozuna, hulk hogan, ric flair, Kurt angle, Bautista, edge, cm punk and randy Orton are the stuff of legends. To me he embodies what wrestling is, that being pure entertainment. He was one of if not the only guy who could put people over by beating them and never lost face when he did lose. He gave us all time technical clinics, he gave us the most ecw shit you ever saw, and everything in between. In conclusion, The crowds that the undertaker preformed for demanded more than just zero character work and high technical proficiency, they demanded a spectacle and he delivered more than anybody in the history of the game! THANK YOU TAKER!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rick1Pwrote on 06.12.2020:[10.0] "quite simply the greatest gimmick in WWE history. an exceptional career punctuated by memorable rivalries but also matches that will forever remain in the minds of fans for decades."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Legend003wrote on 03.12.2020:[10.0] "Für mich einer der Greatest-Of-All-Time. Schon alleine seine Präsenz brachte Gänsehaut. Ich habe ihn immer gerne im Ring gesehen (vielleicht abgesehen von seinen letzten Matches). Hoffe er kann seinen Retirement genießen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: smartmarxwrote on 23.11.2020:[9.0] "I used to be very anti-Undertaker, I thought he was boring and overrated... but now I see I was wrong. He is everything good about wrestling, he is constantly changing but at the core he is always the same. He is super badass while also being kind of embarrassing (in a charming way), he is silly yet cool as hell, he is amazing while also being kind of awkward (also in a charming way), the man is a zombie/biker/mma-wannabe held with the reverence of like a civil rights figure... it owns. Say what you will about the man himself, The Undertake is incredibly sick and I am glad to have come around to him. My favorite era of the Undertaker is definitely Big Evil, all of the Biker taker eras rule but Big Evil with his bandannas, large hoodies, and timbs is the kind of cool badassness i want from a guy with his (now-ex)wife's name tatted on his throat who rides motorcycles and calls himself Big Evil, everything about that look and era for me clicked and that was how I stopped worrying and learned to love The Deadman..... Rest..... In.... Peeeeeeeeeeeeeeeeeeeeeas"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Upgrayeddwrote on 06.11.2020:[10.0] "The fact that The Undertaker isn't Top 10 on this website is insulting. This man is an absolute legend, a great gimmick, amazing in ring skill and all around safe worker. The best professional wrestler of all time if you ask me"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: medousewrote on 03.11.2020:[10.0] "The true legend and an icon of professional wrestling. One of the best gimmicks ever. For over 20 years he was unbeaten at annual WrestleMania events. His wrestling career will never be forgotten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: eleddie2914wrote on 28.10.2020:[10.0] "The Undertaker is a legend he is one of the greatest of all time his passion for the business made him what he is today. He stayed in character for 30 years for the business that is just epic Taker is good at everything form matches to promos. Mark Calloway is a living legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tomas Montoyawrote on 10.10.2020:[10.0] "Man, Undertaker is one of the reasons why I love pro wrestling. A very professional wrestler who knows how to give excellent matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Swantonbstonewrote on 16.08.2020:[10.0] "A gimmick that should never have worked. A wrestler that has nonetheless transcended the decades. Thank you for everything, 'Taker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fayzalwrote on 15.08.2020:[10.0] "The greatest WWE creation of all time, Amazing how he was able to pull of a gimmick like The Undertaker, Also he became the complete package in the 2000s after his In Ring work improved. We have seen him keep his character fresh by going through Ministry Taker, American Badass, Big Evil, The Deadman etc. Has some of the most memorable entrances in the history of wrestling. The Streak has to be one of the biggest things in Pro Wrestling history which cannot be rivalled as hard as someone who wanted to recreate it would try. He always came back to help out the company and never left in its darkest times, Even past his Prime he still had a few memorable matches with CM Punk, Brock Lesnar at Hell in a Cell & The match in which he teamed with Roman Reigns against Shane & Drew which was a great surprise in how the match turned out. The Boneyard match was the perfect sendoff for him and he was able to work with another great in AJ Styles, even though it wasn't in a traditional wrestling match, which was probably for the better."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: taabr2wrote on 10.08.2020:[10.0] "This guy took what should have been a wrestlecrap gimmick and became one of the biggest stars in WWE history. That's a 10/10 alone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ma Stump Pullerwrote on 29.07.2020:[8.0] "Brilliant at character work and arguably the most committed to preserving his gimmick in wrestling history. While he's had some amazing matches, his actual in ring quality was not (consistently) good until the mid 2000's, in which he started to work less often and as such had more time to rest up and gave him more freedom in the matches he did have. Undertaker during that prime was one of the best around in the company, no question. He was also really not good at being the top guy in the company as well: when he did have the main belt, it wasn't very remarkable or anything special. You could argue that he didn't need it to get himself over, but not being able to get people invested as much as the other guys who were in that role is a pretty big issue. Undertaker's promos as well when he wasn't just going over catchphases was pretty eh as well. Him being silent spoke a lot more to the character rather than him talking a lot, so it's understandable why he wasn't the best in that avenue."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Divus Rolexuswrote on 16.07.2020:[10.0] "The Undertaker is the most famous gimmick ever, he may not be the best in-ring worker but is one of the best story-teller that ever lace up a pair of boots. He is the wrestling icon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sabbathbloodysabbathwrote on 13.07.2020:[9.0] "(My ratings only take into account wrestlers during the peaks of their careers, or close enough to it, not when they're green or past their prime. ) Taker is unmatched in terms of pure presence, put on plenty of good matches during his day, and turned what could have been a career-killing gimmick into one of the most over characters in wrestling history. Also, I did like the badass biker character, and thought it made sense for him during that era. He's a legend for a reason, but he's not quite at the level of a 10 for me, since how good he was depended somewhat on who his opponents were, He wasn't quite at the level where he could have great matches with mediocre opponents, but give him the right opponent he'd give us a classic."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JJB888wrote on 07.07.2020:[10.0] "The Undertaker is the greatest character in wrestling history and Mark Calaway is the consummate professional. Over the years in his 3 decade tenure at WWE, he has created countless memories that will (and already have) stand the test of time, put over stars and gone above and beyond the call of duty to perform for fans. Whether it's his WrestleMania streak, his atmospheric entrances, his unmatched dedication to the character or his tremendous ability to tweak his character/moveset to keep The Undertaker fresh and in demand over his incredible run, it is impossible to imagine a WWE without him. Fantastic in the ring and one of the best wrestling storytellers ever, from any perspective The Undertaker should be considered one of the greatest wrestlers to ever lace up the boots. A true Phenom. No other wrestler has meant as much to me as a fan and all my life The Undertaker has been a part of WWE and been there to give me so many cherished memories. In my opinion he's the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Viniciouswrote on 26.06.2020:[10.0] "What else can be said that hasn't been said. The man, the myth, the legend. I remember when I was three or four years old when he defeated Hulk Hogan at Survivor Series 91. Ever since, it's been quite a ride or loving, hating, disliking, liking, the entire spectrum of the Undertaker. Through injuries, and absences, his years in wrestling should be put up against all the "greats. " Hulk Hogan, Ric Flair, and Bruno Sammartino as characters and figures are probably the only wrestlers ahead of Taker in the all-time team in my book."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: UnderTakerFreakwrote on 23.06.2020:[10.0] "Incase my username doesn't make it clear I love The Undertaker! Not only is he my all-time favorite wrestler but he is the guy that got me into wrestling in the first place. I am not too sure if I would be so much into this amazing form of entertainment if it wasn't for him. He has one of the best gimmicks of all time and I like how it slightly changed from the classic dead-man UnderTaker and The American Bad-Ass etc. No matter the change, he always brings a mysterious and eerie presence to the arena. His brawling style of wrestling might not be for everyone but IMO it fits him in his prime he can really go for a long time and be one tough son of a bitch like when he was caught on fire for a brief second and still wrestled in The Elimination Chamber, he makes no excuses to not work. Also seems to be a real leader in the locker room at one point as he was one of the few people to not take any of Shawn Michael's bull shit and threaten him to drop the title to Austin at WrestleMania 14. Now I won't deny his quality of work has dropped significantly over the years and I say his last REAL good match involving his legendary streak was his Streak VS Retirement match against Shawn Michaels at WrestleMania 26 and the last thing really noteworthy of his streak since was well..... when Lesnar broke the streak. Not even when Roman Reigns beat him 3 years later was all that special to me other then when he suppose to have "retired". Irregardless of the lack of quality in his matches for the past few years, I always loved the Deadman and I always will. I own a lot to this guy and I know the wrestling business owns alot to to him too. REST...... IN...... PEEEEEEEEAAAACCCEEEE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wrestling Foreverwrote on 22.06.2020:[10.0] "Wie ich es schon in meinen vorhrigen Kommentar schrieb der warum auch immer gelöscht wurde. The Undertaker ist eine absolute Legende und kommt zu 100 Prozent in die WWE Hall Of Fame. Auch wenn die Streak gebrochen wurde so eine Siegeserie wird es nie wieder geben niemand wird diesen Rekord bei WM brechen. Immer wieder hat er sich neu erfunden wurde besser und schneller und hatte zig legendäre Fehden, Promos und Rivalitäten. Wenn er irgendwann in den Ruhestand geht wird er eine rießen Lücke hinterlassen da niemand ihn kopieren kann. Edit: 22. 06. 2020. Inzwischen lebt er nicht mehr total In Kayfabe. Aktuell gibt er viele Interviews über Schalte und das Out of Charakter, dann hat er Instagram und Twitter und ist auch offen wie zu seiner Biker Zeit. Ich weiß das es bald soweit sein wird da wird er In Gimmick nach Death Valley reisen und erstmal sich ausruhen. Edit Es ist nun passiert er hat seine Karriere erstmal wirklich beendet. Danke Taker für die vielen Jahre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: steinericwrote on 12.06.2020:[10.0] "Ich finde Undertaker ist eine absolute Legende. Dennoch ist sein Körper seit WM 30 sehr gezeichnet. Aber davor hatte er gute Wrestlemania Matches in dem er Zeigte das er ein guter Big Men ist. Auch diese Wrestlemania war cool mit dem Boneyard match wo er sich nochmal ein bisschen neu erfunden hab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Johnny Cwrote on 26.05.2020:[5.0] "5 points for longevity, and name value. In fact, his gimmick was every bit as "Cartoony" as the Red Rooster or Duke 'the Dumpster' Droese. He became a respected locker room leader, and lots of top stars wanted to work with him. But his actual drawing power when he was on top was slim to none. He always gave his all, which is good, but his all was somewhere below the likes of Austin and Rhodes, which is not so good."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JMacGwrote on 20.05.2020:[10.0] "The Undertaker is the epitome of what a professional wrestler should be. You've got a man, who's worked 33 years doing this. 30 years in WWE. WWE being the biggest, most successful, most well known wrestling promotion of all time. You've got the likes of Terry Funk, Jushin Liger, Abdullah the Butcher, Ric Flair, Hulk Hogan - all have had very long careers but with the exception of Flair and Hogan - not very well known or heralded. Even Flair and Hogan have not had the longevity on a consistent basis like The Undertaker. He took a character, a gimmick which was probably the hardest to be able to sell on a large scale basis and made it the greatest in history. He's morphed, adapted, changed, modified himself for 30 years to be able to be considered the greatest wrestler in the greatest wrestling promotion of all time. For Undertaker, his success hasn't came from all the things that made the other big stars successful. It's his reliability, his loyalty. His love, passion and desire for the business and to do what he loves, in a way where at the end of the night, he can leave feeling like he's earned the right to because he's been able to give feelings, emotions to people and get them to invest in something that he's dedicated his life to. No easy task. The reverance, the respect, the inspiration the very mention of his name demands is testament to who he is. You'll never hear a bad word spoken about him. Any and all promotions/wrestlers have the same respect and reverence for him. When you watch him, you know you're watching the greatest that ever did it. The Godfather of Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JuWFEAEwrote on 16.05.2020:[10.0] "Der Wrestler mit der wohl meisten Ausstrahlung aller Zeiten. Sein Moveset ist legendär und sein Können im Ring unbestreitbar. Ich bekomme immer noch Gänsehaut wenn ich seine Promos höre und seine Matches der letzten Monate und Jahre find ich noch immer ziemlich gut. (außer das Goldberg Match)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BastitheBrainwrote on 21.04.2020:[9.0] "Die Legende, Icon - neben Hogan das Gesicht des Wrestling. Auch die Hintergrundgeschichten sprechen für den Taker. Selbst Leute wie Jim Cornette oder Bret Hart sprechen nicht schlecht über ihn."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Eggi1304wrote on 11.04.2020:[4.0] "Ich war nie ein großer Fan vom Undertaker. Ehrlich gesagt war und ist mir dieses Deadman Gimmick viel zu trashig. In Ring technisch finde ich ihn ebenfalls nicht besonders gut. Solide aber eben nicht mehr. Diesen elendig langen Entrance finde ich auch zum Einschlafen, für mich jedes mal die beste Gelegenheit pinkeln zu gehen. Mittlerweile kann ich ihn auch nicht mehr wirklich ernst nehmen, die Aura von früher ist schon lange verflogen. Er wirkt einfach nur noch wie ein alter gebrechlicher Mann. Er hätte schon vor Jahren nach dem Brock Lesnar Match und dem Streak Ende in Rente gehen sollen. Nichts desto trotz muss man zugeben, dass er das Wrestling Business geprägt hat wie kaum ein Zweiter. Eine der größten Legenden im Wrestling und das wird er wohl auch immer bleiben. Das steht alles völlig außer Frage. Aber wie gesagt, ich persönlich feiere ihn nicht so sehr."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AlexLikesJoshiwrote on 08.04.2020:[4.0] "I have to give him some credit he had longevity and remains over with the audience to this day. In terms of his in ring work though he was always vastly overrated and was really only a good worker for short spells. Most of his most famous matches also don't hold up on rewatch (e. g. the two Mania matches with Triple H following the Shawn Michaels series)"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: alex121wrote on 06.04.2020:[7.0] "I believe he's one of the best when it comes to his Wrestlemania matches from the Batista match till the Punk match. Character work is absolutely top notch, I just know that most of his work rate from the 90's wasn't that great and if I am to make an overall rating I have to take in the negatives as well as the positives."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ferdinand Fisawrote on 05.04.2020:[10.0] "Den Undertaker kann man einfach nicht haben. Kein Charakter hat das wrestling so geprägt wie dieser Mann. Hut ab für diese legendäre Karriere!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AAA3000wrote on 07.03.2020:[6.0] "War leider technisch nur Durchschnitt, was er aber durch andere Qualitäten wie Präsenz, Ausstrahlung und abseits des Ringes bzw. am Mikrofon wieder wettmachte. Die Wertung aktuell ist meiner Meinung nach überbewertet. Was mich aber am meisten stört (gilt auch für Kane), dass sie Matches langweilig gemacht haben. Ach da kommt der Undertaker oder Kane und niemand kann sie stoppen obwohl die gar nichts draufhaben. dann lieber eine Kofi Kingston mit bescheurtstem Gimmick, der zumindest was drauf hat im Ring und nicht sinnlos mehr gepusht wird als plausibel ist."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Conorwrote on 03.03.2020:[10.0] "My favorite wrestler of all time. Just an incredible character. I enjoy his matches and his move set as well as his ability move in the ring like a much smaller man. Was able to evolve his gimmick at least half a dozen times to keep from getting stale. Is a no brainer hall of famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JRosinskiwrote on 28.02.2020:[10.0] "In my opinion, the Undertaker is the greatest and most legendary wrestler of all time. An outstanding in-ring performer with an extraordinary gimmick, along with his ability to evolve and adapt. I have incredible respect for this man and I've always been a great fan of him. It's going to be really sad to see him finally retire from wrestling but it's really evident that he can't go on forever. I still believe he will be utilised on special occasions as he's signed a 'contract for life' with the WWE, but otherwise he should avoid performing in the ring. Let's hope his last few matches are booked well and see Undertaker performing at a decent standard for his age."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheMan89wrote on 25.02.2020:[10.0] "The Undertaker has the greatest gimmick in the history of the business due to its longevity and the legacy he has created over the years. He will go down as one of the best ever to lace up a pair of boots and was a great locker room leader for the boys in the back. He may have not been the best worker of all time but his work indeed improved towards the end of his career as he worked with great legends such as Shawn Michaels and Triple H. I feel like his career is coming down to end since his work rate is slowing down and he makes fewer appearances a year but he will always be an attraction for the company as long as they continue to use him. He has now wrestled into 5 decades as he is expected to wrestle a match at WM this year against AJ Styles who I think can help Taker have another good match. Taker has been going now almost 30 years in the WWE and I feel like this could be the year he finally retires and he could retire at WWE Survivor Series where he debut in 1990."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FrankSiverowrote on 06.02.2020:[10.0] "Der möglicherweise bekannteste und populärste Wrestler aller Zeiten. The Undertaker hat viele WWE Eras durchlebt und war stets einer im Mittelpunkt. Was dieser Mann für das Wrestling Business leistete (und immer noch leistet) ist einzigartig. Seit inzwischen 30 Jahren verkörpert Mark Calaway die Rolle des Undertakers und schafft es bei jedem Auftritt die Fans nicht nur zu unterhalten sondern auch Gänsehaut Momente zu entwickeln. Im Ring gehört The Undertaker ebenfalls zu einem der aller Größten man denke nur an die beiden Wrestlemania Matches gegen Shawn Michaels. Sein Micwork, sein Storytelling, sein Auftreten, sein Entrance, seine Legacy, seine Wrestlemania Momente das alles machen den Deadman zu einer echten Lebenden Legende. Hut ab!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Excellence of Executionwrote on 18.12.2019:[10.0] "Eine absolute Legende des Sports! Wahrscheinlich auch eins der bekanntesten Gesichter. Ohne jemals DER Topstar vom Kaliber eines Hogans, Rocks oder Austins gewesen zu sein, ist der Undertaker sicherlich nicht minder bekannt als eben diese Herren. Hat er doch mehrere Epochen der WWF/WWE mitgeprägt. Wahrscheinlich der Mann mit dem besten Gimmick der Wrestling Geschichte. Allerdings finde ich, dass er spätestens bei Wrestlemania 33 den Hut an den Nagel hätte hängen sollen. Mittlerweile tut er sich mit seinen Auftritten in aller Regel keinen Gefallen mehr. Da kann man sich zwar für seinen ikonischen Einmarsch begeistern. Doch spätestens mit der Ringglocke kommt die Ernüchterung. Dann wird der Dead Man zum Old Man. Mittlerweile kann keine Dosis an sentimentaler Nostalgie diesen Umstand in ein besseres Licht rücken. Anno 2019 (bzw. fast 2020) muss man leider festhalten, dass der Taker den Absprung verpasst hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Unknown Challengerwrote on 09.11.2019:[9.0] "The Undertaker is one of the most recognizable legends in pro wrestling. He has a suprisingly great in-ring skills for a large size athlete. He can cut good promos. Despite of having a very cartoonish deadman gimmick on a paper (not including his biker run in 2000-2003), he actually managed to make it fascinating and a little bit more believable, thanks for his natural charisma. He managed to become a full-time main eventer in WWF/WWE for many years even though he was not the main top guy or the biggest draw of the company because of silly concept of his in-ring character (walking deadman). He earned a huge respect in locker room through his leadership skills no matter how harsh his methods were sometimes in his "Court". In result, we have a man who accomplished everything by his own effort and gave a big influence in an industry of pro wrestling and its popularity."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Leionhartwrote on 19.09.2019:[9.0] "An Icon of the industry, Undertaker deserves all the praise and acclaim he has garnered over the years for his longevity and loyalty to McMahon. However, that loyalty to McMahon is starting to tarnish the mystique of the Undertaker persona. The occasional one-off appearance is good and all, but not if it just leads to another match. Undertaker is showing his age every time he shows up, and it is just sad watching one of the all-time greats wither in the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DCFC95wrote on 22.08.2019:[10.0] "I knew about The Undertaker even before I got into wrestling, heck even people in my family who never seen a wrestling match in their life knew who The Undertaker was. He took a gimmick which would sound silly on paper and made it perhaps the greatest character ever. Had awesome matches too with fantastic storytelling and survived some horrible angles. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wrestlefan20wrote on 14.08.2019:[10.0] "Undertaker is the all-around best wrestler in the business. He put on a lot of great matches, cut great promos, has extreme longevity and is reliable and loyal. Few wrestlers could last as long as he did."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[10.0] "One of those "no brainer" guys for being in the conversation of best ever. Entrance, character, longevity, matches, feuds... the list goes on and on with how many amazing things should be in the same breath with the Undertaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheV2wrote on 19.07.2019:[8.0] "By far the most iconic and popular wrestler in pro wrestling history who's actually just known for his wrestling career. The Undertaker gimmick itself was good, but it became a master-piece only due to his passion. We can't forget the amazing underrated in-ring work - especially his very unique move-set.  If Undertaker had retired after "The End of an Era", he would surely be a 10/10 wrestler for me. But as his unnecessary appearances get repetitive and his matches only exist due to his fame without any quality, the deadman damages his and others' career. For all the love he put into the wrestling business, we and the WWE must take responsibility to let him fully retire before something worse happens."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheGoatwrote on 22.06.2019:[9.0] "Undertaker was handed, what on paper, was an absolutely silly gimmick, yet he made it work for 25 years.  Like a fine wine, he seemed to get better with age and had some of greatest performances well into his 40's.  While not a perfect worker he was expanded his repertoire and evolved with the times.  The only real black mark on his career was he held on just a bit too long and probably should have retired after losing to Brock Lenser at WM30 as his last few performances were pretty awful."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dragon Fighterwrote on 19.06.2019:[9.0] "An icon of WWE and pro wrestling in general for sure. An idol for many fans and young kids as well. Sure, he did have a lot of great matches under his belt but his in ring work was never consistent in his whole career. Shitload of bad matches from 90s, 00s and 2010s with many opponents from bad to good workers. However, I can't deny his contribution to WWE and pro wrestling overall. He will always be remembered as the GOAT. I can agree. But I can't give full 10. First of all, I don't think his in ring work is that excellent. His character work is repetitive and boring at various points. Secondly, he seems to ruin his own legacy when he still does not retire. He continues to wrestle and produce more bad matches after the streak is over. And I don't blame him 100% because who can refuse shitload of money thrown in front of their eyes?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Garrettwrote on 17.06.2019:[10.0] "Undertaker is the greats wrestler in the history of WWE. Between his 7 world title reigns, his WrestleMania streak, memorable rivalries, and the ability to reinvent himself, Taker has cemented himself in the history books. It doesn't matter if his current matches aren't that great (c'mon he wants to retire, but Vince won't let him) his legacy will never be changed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Houbeywrote on 03.05.2019:[10.0] "Kane und The Undertaker, die Brüder der Zerstörung sind und waren schon immer meine lieblings Wrestling Stars gewesen und das wird es auch bleiben. Ruhe... in... Frieden... ! ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TylerWhitewrote on 25.03.2019:[10.0] "Die große Konstante der WWE. Es gab immer größere Topstars als ihn Hogan, Bret Hart, Stone Cold, The Rock, John Cena, doch diese kamen und gingen und waren meist nicht sonderlich talentiert. Doch der Undertaker blieb und hatte jedes Jahr mindestens ein Match, welches so oft einfach großartig war. Seine Streak war die größte Errungenschaft, die es jemals im Wrestling gab und so oft hatte er gerade in den späteren, schwächeren, Manias das Match of the Night, im Endstadium seiner Karriere. Gerade mit Edge, Batista, HHH und sogar 2013 noch mit CM Punk hatte er hervorragende Matches und seine Matches gegen Shawn Michaels sind mit die besten überhaupt. Bis zum Streakende hatte er wirklich hervorragende Matches, alles danach (Bis auf die anderen Matches mit Lesnar) war zwar schlecht und unnötig, aber dennoch nimmt es nichts von seinem Legendenstatus. Diesen hatte er nämlich schon lange, denn in jeder Ära konnte er sich neu erfinden und als einer der Topstars agieren. Noch dazu ist er auch ein absolut talentierter Wrestler, der zwar extrem groß ist, aber dennoch unglaublich agil ist und sehr viel im Match zeigen kann. Auch am Mic ist er sehr stark und brauchte auch seinen Manager Paul Bearer später nicht mehr. Sein Charisma ist bis heute unübertroffen und sein Entrance ist der epischste ever, bei dem sofort Big Time Feeling aufkommt. Das Gimmick ist natürlich absolut großartig und wohl das beste, das es im Wrestling jemals gab, da es zwar übernatürliche Elemente hatte, aber nie zu übertrieben war und noch dazu so wandlungsfähig ist, dass es zu jeder Ausrichtung der WWE passte. Insgesamt ist der Undertaker gerade durch seine herausragende und extrem konstante Karriere einer der größten Wrestler ever und eines der besten Gesamtpakete aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Der Commanderwrote on 11.03.2019:[10.0] "LEGENDE! Mehr gibts garnicht dazu zu sagen. Vom Gimmick, über die präsenz im Ring, Storytelling. Dieser Mann hat fast 30 Jahre die WWE Fans unterhalten und verschiedenste Eras durchlebt. Danke, Mark Calaway für alles. Sollte eigentlich schon längst in der WWE Hall of Fame sein!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 20SaiDa19wrote on 06.02.2019:[4.0] "Never been the biggest fan of the Undertaker; I have always found his gimmick and particularly his entrance to be boring and even though he did eventually become a good in-ring talent, good matches were few and far between the first 15 years of his career."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: blackx18wrote on 30.01.2019:[10.0] "Der Undertaker, The phenom the Deadman The Big Evil, The Legend. Der in 2 Jahren 30 Jahre fast ununterbrochen bei der WWE ist und unfassbare Leistungen abgeliefert hat seien es seine Mania Matches gegen Shawn Michaels oder Triple H oder seine krasse Ausstrahlung und Charisma oder auch sein Gimmick oder Micwork. Der Mann war einfach in allen Bereichen einer der besten of all time. Sein Gimmick hat er immer glaubwürdig rübergebracht auch Big Evil war gut und hat überzeugt. allerdings ist er mittlerweile 53 und kann schon lange InRing nicht mehr so überzeugen wie vor 10 oder 15 Jahren und meiner Meinung nach hat man hier den retirements Zeitpunkt schon verpasst. Und die letzten Matches vom Taker waren auch die falschen Gegner seinen es Shane oder Reigns oder das Vollkommen sinnlose Match mit Kane gegen DX. Das Streakende war zudem auch gegen den falschen Gegner. Aber wie den auch sei ist und bleibt der Undertaker mein absoluter Lieblingswrestler und mit Hulk Hogan Steve Austin The rock und vielen mehr der prägendste Wrestler of all Time. Und seine Matches gegen Michaels Triple H Mankind Edge und Brock Lesnar und viele mehr bleiben für immer in Erinnerung! THANK YOU TAKER!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LandonRyanWyattwrote on 30.01.2019:[10.0] "The greatest gimmick of all time in the business. The greatest phenom in wrestling history. One of the truly great icons in this sport. An incomparable legend who has stood the test of time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jc1551wrote on 26.01.2019:[10.0] "Quite simply the greatest character in the history of professional wrestling. Nobody will ever come close to duplicating what he has done."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JEK 1991wrote on 24.12.2018:[10.0] "A legend for sure. First sinister looking wrestler to become a babyface. His career has been long and the longest active WWE wrestler. His moves are exciting and entertained many fans for years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Steamboat2511wrote on 05.12.2018:[10.0] "Der Undertaker ist eine pure lebende Wrestlinglegende. Für seine Statur zeigt er erstaunliche Leistungen im Ring, wo er tatsächlich zu den besten seiner Zunft gehört. Sein Gimmick ist unerreicht gut und kreativ. Die WWE hat hier vor Jahrzehnten eine wahre Marke geschaffen, die wohl für immer unerreicht bleiben wird. Stets zwischen Heel und absolutem Face schwebend, konnte der Taker beides perfekt ausfüllen. Seine Mic-Work ist ebenfalls als stark bezeichnen, auch wenn es hier noch stärkere Worker gibt. Verschiedenste Matches des Takers gehören für mich zu den besten überhaupt (natürlich nicht in der Frequenz eines HBK) und sein Auftreten sorgt fast immer für pure Unterhaltung. Als Gesamtpaket gehört er in meine Top 5."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TANK 81wrote on 29.11.2018:[10.0] "Perhaps the greatest entertainer of all time. The best entrance ever. One of the best skills in ring . Top 5 gimmick.  Top 3 mic skills. One of the best look all of the time , maybe excluding the last couple of years , this is due to his age and mileage spent in businesses. Loved watch him as a heel more than a baby-face. SUPERSTAR. ICON. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Stott Onewrote on 27.11.2018:[10.0] "The man, the myth, the legend. My Favorite Wrestler. Period. Done. End of Demo. I'm hoping he retires this year, like I've hoped for a number of years now. I wish they'd never broken the streak, or at least have it broken by a talented future star instead of an already established and hated Lesnar. However, none of that takes away from decades of destruction. The story teller to end all story tellers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: cmchampwrote on 24.11.2018:[7.0] "Undertaker is a very mixed bag: in the first run as a deadman he was amazing (for gimmick era) and the badass run was good until 2002. Between 2003 and 2006 his work was pretty bad except for few things (his opponents weren't good most of the times to be honest). 2007-WM26 were his best period, his feuds with Batista, Edge and HBK were bloody good. 2011-2013 He was a part part part-timer, but all his Mania matches were amazing. 2014-Today: C-R-@-P. He had to retire after Mania 30, but legacy is nothing compared to money I guess. What's really sad is that he makes me laugh when I see him these days, he became a parody of himself. I'm giving him a 7, would've been a 9 if he retired in 2014."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: zephyrwrote on 09.11.2018:[9.0] "Listen, Undertaker, mate, you're one of the all time greats but please, for the love of god, just retire. Stop tarnishing your legacy with increasingly terrible annual matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kaswrote on 12.10.2018:[10.0] "The Undertaker is the greatest gimmick in the history of wrestling and is one of the all-time greatest wrestlers. People will point to his work in the early 90s and the beginning of his comeback run against him, but fail to mention that the quality of his opponents during these times was awful, having feuds against the likes of Kamala, Heidenreich, and Giant Gonzalez - you only need to go watch his match with Lex Luger in 1990 to see that he was clearly talented and that as soon as he started working with better opponents like Foley, Davey Boy Smith, and Hart in 95-96 he would deliver some good to great stuff. On top of this, his second run as the deadman gave way to a slew of classic matches, including his matches with Angle, and pretty much every feud from 2007-2013. One thing I also want to mention is his underrated selling ability, I can probably name on one hand the number of wrestlers who I think sold better than The Undertaker, whether that be limb selling, exhaustion selling, or just general selling and he really does not get enough credit for this. An absolute legend, and my favourite wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RatingsMachinewrote on 12.10.2018:[8.0] "The Undertaker is perhaps the greatest gimmick in wrestling history, certainly the one with the best longevity. But that longevity has caused people to vastly overrate his talent and ability. I'm not saying that the Undertaker was bad. I'm saying that he wasn't this all-time great worker that a lot of people seem to think he was."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Oliver95xwrote on 27.09.2018:[9.0] "Der Untertaker hat auf jeden Fall Charisma. Im Ring wusste er auch zu überzeugen, wobei ich finde das er nie ein gutes Match hatte wenn sein Gegner nicht auch herausragend ist. Er musste etwas durch die Matches getragen werden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Makai Clubwrote on 07.09.2018:[7.0] "One of the times where the legacy supersedes the man. I'm going to be honest, Undertaker has far, far more lulls in his career than positives but he has his peaks. Stuff like the Foley feud, the HBK matches which are all good. Whilst the Kane matches aren't great, they are very enjoyable in the grand scheme of things and the Angle match ofc. But that covers around 5 years of his career in total, the rest was pretty terrible. Not all Taker's fault but it's there. The constant awful matches in the 90's, the Austin matches, Emo taker (ministry), MMA Taker, the recent years. There is a lot of crap that's hard to overlook unfortunately. The gimmick can be goofy at times ala emo taker but he played it well, so that's a plus. He will be regarded as a legend and I don't know if he will be in my top greats ever but the fact he is regarded as one by many people speaks volumes."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DaWizWithADwrote on 08.07.2018:[8.0] "Without a doubt the Undertaker will be remembered as one of the greatest gimmicks of all time. He's kind of a rare case in that he was great at character work but was a shit promo most of the time. In the ring... Truthfully for the bulk of his career he was really nothing special, just an OK big man but, for whatever reason whether it was just everything clicking for him, the agents, or the guys he was working with he got REALLY good later in his career."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheRealAteszwrote on 11.06.2018:[10.0] "Mark William Calavay is one of the best wrestler in the world , not specifically of the inring skills , rather because of his gimmick which has remained incredible for decades. The Undertaker gimmick is perfect for this man. The American Badass is not the best but really good but not for Callaway ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Shiza kunwrote on 23.05.2018:[10.0] "The Undertaker is my favorite wrestler ever. His feud with Batista in 2007 is what got me hooked in pro-wrestling, and for that, he is always gonna be my favorite. I've grown to love both his Deadman gimmick which made me an instant fan in the late 2000's and his American Badass gimmick which I had enjoyed watching old Attitude Era DVD's my uncle let me borrow. Although his in-ring ability isn't necessarily the best, he has delivered many classic matched due to his impressive athletic ability and intense offense. I'll never forget the WrestleMania match-ups against the likes of Michaels, HHH, Batista, and Punk, which goes to show he can go in the ring given the proper opponent. His body of work is amazing as a mainstay of WWE for nearly three decades, and his evolution throughout that time is truly a sight to behold. He has done it all, and I really just hope he retires soon after all he has given to us fans over the years because his recent appearances have worried me more than excited me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: lew kazamawrote on 04.05.2018:[4.0] "Taker continues to tarnish his legacy with average Mania matches and fake retirements. Pro wrestling owes a lot to this man, so perhaps they should tell him to just stop. He looks better now than 2017, sure, but that doesn't really mean anything. Taker's passion for the business is really driving down the quality of his appearances."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Alex Maedawrote on 30.03.2018:[9.0] "Hat den richtigen Zeitpunkt zum Rücktritt leider verpasst (wäre meiner Meinung nach WrestleMania 28 gewesen), das trübt den Gesamteindruck ein wenig. Abgesehen davon eine großartige Karriere eines der wichtigsten Wrestler der letzten 20 Jahre. Überdurchschnittlich gut im Ring, hatte der Undertaker seine besten Matches wohl in seinen Vierzigern. In Sachen Storytelling macht ihm kaum jemand etwas vor, dazu das unverkennbare Gimmick, das wahrscheinlich kein anderer so verkörpern hätte können. Living Legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: pappahousewrote on 22.03.2018:[9.0] "Ehrlich gesagt fällt mir zum Undertaker nicht viel ein, außer großartig. Großartiges Gimmick, großartig immer weiterentwickelt (Moverepertoire).  Der Punkt Abzug ist für das Bad-Ass-Gimmick und das ich in den Jahren sein Entrance irgendwann vorspulen musste, weil es mir einfach zu lang ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JCM98wrote on 08.03.2018:[10.0] "In all honesty, The Undertaker is without question - the greatest wrestler of all time. This can depend on what you consider a wrestler to be of course. However, for me - there isn't another wrestler I've ever come across in almost a decade and a half, watching wrestling, both past and present that can evoke so many different emotions. In his matches, there's happiness, sadness, excitement, adrenaline, anxiety - he makes you feel every second he's in the ring.  He's the consumate professional, both backstage and onstage. If you look at his body of work, very few wrestlers can recover from being booked in the way he was for a long time in his career, just winning for the sake of it against jobbers and wrestling with guys that had such little ability that the matches were of poor quality. Regardless of what he has done since he arrived in 1990, heel or babyface, the fans have always treated him the same. He's one of those rare talents that garnered such a loyal fan base, that they didn't care what he was because he was just phenomenal.  Through almost 28 years and several different iterations of gimmicks, as everyone says, he's been able to reinvent himself every couple of years. Change and adapt to the time he was living in. He's wrestled in 3 different decades, and essentially in WWE terms, he's outlasted every era they've had. The Hogan era, The Austin era, The Cena era. Another way to put it is - the gimmick era, the attitude era, the ruthless aggression era and the pg era. He's outlasted them all. Very difficult for one person to stay in one wrestling promotion for almost 30 years. From 25 to currently 52 (almost 53).  His legacy, the lights, the music, the attire, the look, the smoke, the flames, the darkness. It has worked so flawlessly for almost 3 decades. The loyalty, the dedication - it's all worked for a very long time. Hogan, Flair, Bret, HBK, HHH, Austin, Rock, Cena - outlasted all of them. That's a testament to his legacy as the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Weltmonarchwrote on 23.02.2018:[10.0] "Alles andere als 10 ist Blasphemie. Wahrscheinlich das beste Gimmick aller Zeiten. Dazu mit mehreren Klassikern im und außerhalb des Ringes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Klabauterwrote on 12.02.2018:[8.0] "Eine lebende Legende. The Undertaker ist einfach The Undertaker. Es ist schwer diesen Mann zu beschreiben, er hat eine ganz besondere Aura, er lieferte großartig ab und liefert auch noch immer solide ab. Am Mikrofon ist er ebenfalls gut. 9 Punkte müssen es hier einfach sein. // Update: 12. 02. 2018 Hat leider immer dran gearbeitet sein Vermächtnis zu schmälern und mittlerweile ist man da an einem Punkt angelangt, wo es schädlich ist. Ein Punkt Abzug! Ich hoffe es bleibt bei dem Retirement, das man bei WrestleMania inszeniert und meiner Wahrnehmung nach bei RAW25 bestätigt hat.  // 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: rjsbx11wrote on 11.02.2018:[10.0] "It's hard to grade the Undertaker. Because you have to grade Mark Calloway AND the Undertaker. Mark Calloway by all accounts is one of the most loyal, hard-worker and respected wrestlers in the entire industry. He has this lore about him that the transparency of today will never provide anyone else. The Undertaker is the single greatest gimmick ever. Due to its longevity, difficulty (it's a fucking undead voodoo priest zombie) and adaptability. It's cultivated moments that live through wrestling history, and that's amazing. Overall, the Undertaker has two different phases the first part of his career where he relied much on presentation and ring presence to hide frankly decent to below average workrate (tbh, he also worked with some really bad workers) and then a renaissance after his ABA gimmick where he became one of the better workers in the company and became one of the best in terms of psychology. Overall, with everything said, it's hard to rate such a icon anything less than a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ohnoeswrote on 10.02.2018:[6.0] "Undertaker is one of the wrestlers I would label as a 'spectacle'. It's the aura that the wrestler brings, the sense of amazement and wonder that comes forth with their entrance, the intense charisma they exude. Hogan and Andre are other examples of this. And while being that spectacle has undoubtedly done great things for the business, upon evaluating his entire career and considering all the assets that make a wrestler, Taker is quite lacking in terms of pure wrestling skill. The evaluation is further worsened by him working far past his prime. He has had a number of great matches, but often times they come from those who are younger than him, and are more agile, technical, and far more hungry in wanting to prove themselves when feuding against him."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Devitciiuwrote on 31.01.2018:[6.0] "I think the Undertaker is a lot better when you reflect on his career. He's had some incredible matches and some incredible moments, but when you actually sit down and go through all of the matches and angles you realize how many stinkers there were."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CHN325wrote on 31.01.2018:[10.0] "The best and most memorable gimmick in the history of the business. No one is more respected than the Undertaker and he has earned it. Another guy who just got the entertainment side of the industry and always put on a show."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ianlapierrewrote on 04.11.2017:[8.0] "I love the Undertaker for all the reasons we all love the Undertaker. He had the very best wrestling gimmick in wrestling history and he benefited from being at the right place at the right time in wrestling history. He has become a bit overrated though due to his overexposure at each and every 'Wrestlemania'."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Frompartsunknownwrote on 18.10.2017:[9.0] "Ich würde ihm nur zu gern 10 Punkte geben, doch das kann ich leider nicht. Der Undertaker hat seinen Zenit seit mindesten 3 Jahren komplett überschritten und weiß leider nicht wann Schluss sein soll. Dass er trotzdem noch auf Teufel komm raus bei Wrestlemania Wrestlern soll, verstehe ich auch nicht. Gebt ihn von mir aus noch ein Match bei der WM nächstes Jahr und fertig. Nichtsdestotrotz ist er eine lebende Legende, die das Wrestling über mehrere Jahrzente geprägt hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: freddnwrote on 17.10.2017:[7.0] "Der Taker ist eine Legende des Business. Für eine bessere Bewertung fehlt mir dennoch die Vielschichtigkeit, denn gerade durch das Gimmick war der Deadman recht beschränkt was Promos und Storys anbelangt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kapuwrote on 04.10.2017:[10.0] "One of the best wrestlers ever, period. His lengthy career, his skills, his gimmick (one that would only work for him), his backstage attitude... Basically has everything in the perfect ratio. I canŽt really see other great wrestlers being as respected for so long, and this opinion isnŽt just shared by fans but by fellow wrestlers. Truly deserves a perfect score!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "The best wrestler in the history of WWE, along with Shawn Michaels.  Undertaker had many of the best match ever, and was able to make even Big Show look like a credible threat despite being a landslide between them. His matches with Kurt Angle, Shawn Michaels, Triple H and Edge are the highlights of a carreer not so full of glory. He won much less than he deserved and retired too late, tarnishing part of his legacy. But that doesn't change the fact that there never will be another one like him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FakeAssTwatwrote on 02.09.2017:[10.0] "The greatest of all time in my opinion. Not only was he on top for nearly 3 decades, he did so with a gimmick so ridiculous that if ANYONE else played it, they would've immediately failed. And yet, he made it work, and took a gimmick should've been awful, and turned it into the greatest character in WWE history. His ring skills were exceptional, especially for a man his size, and somehow got even better as he aged. He's one of, if not the most respected wrestler of all time and he 100% deserves it. There will never be another Undertaker, and he is truly a once in a lifetime superstar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ParisTheSpiderwrote on 15.08.2017:[10.0] "Der Undertaker ist die ultimative Legende der WWE und zudem ist seiner Zeit ein herausragender Performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheRainmaker28wrote on 12.08.2017:[4.0] "Yeah, Undertaker will never be for me. Yes, he's a legend. Yes, I respect him and his longevity, but I just can't get into his work. I understand who loves him and grow up watching and loving him, but for me he's overrated as fuck. The ''GOAT'' label it's just too much for him in my opinion."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WoLFPaCKnWo1995wrote on 15.07.2017:[10.0] "Big Mark is the man! Undertaker is in the top 10 greatest of all time. Great gimmick, good wrestler, good talker, there was nothing Taker couldn't do."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TooSweetPhilwrote on 09.07.2017:[10.0] "Sind wir alle ehrlich, ist der Undertaker die Größte Legende der WWE und wird sie auch immer sein. Der Deadman hat übe 2. 5 Jahrzehnte in kontinuierlichen Matches immer wieder seine individuelle Klasse beweisen können und sich somit den Thron der WWE verdient. Die Streak brachte uns bei Mania fast durchgehend ein sehr gutes Match und hätte mMn nie enden sollen. Dazu hat er das Beste WWE Match aller Zeiten mit HBK bei Mania 25 (*****) gehabt und insgesamt einfach zu viele legendäre Wrestling Momente geprägt. Er kommt nicht ganz an Hiroshi Tanahashi ran, doch er wird immer einer meiner All-Time-Favoriten bleiben - 10 / 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Headlockwrote on 20.06.2017:[4.0] "Der Undertaker konnte eins gut, ein Dummes Gimmick zu Geld machen aber er war nie gut im Ring, sicher er war beweglich und Sprang Topè con Giros aber seine Matches waren oft lahm und langweilig. Ich verstehe ehrlich gesagt nicht warum er so vergöttert wird, ist wahrscheinlich bloß die Nostalgie. 4 Punkte"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PathosLogosEthoswrote on 07.06.2017:[10.0] "What can I say that hasn't already been said. He's possibly the best in ring storyteller at all time. He's one of the best big men ever. Great technique, he's always been physically impressive.  Amazing matches with Flair, Michaels, Edge, HHH, Cena, Hogan, Foley, Lesnar, Mark Henry, and the list goes on and on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: flashbackwrote on 06.06.2017:[8.0] "Points for longevity and influence. So many have said so much about Taker, I don't really need to add to that. He's had some amazing matches over the years, but also some not so amazing.   Points DEDUCTED, however, for the "American bad ass" gimmick. I know I'm gonna get some heat for this, but that was the drizzling shits and significantly diminished the once-great gimmick. Even prior to that, when Big Show was his partner / lackey, Taker used to talk… A LOT, and he really wasn't that great talking at length. I remember one promo where he talked about being a biker and leaving Big Show out in the dessert or something… it was long and rambling, weird, and somewhat incoherent. And I'm sorry but I don't see a biker as adding anything of value to the Undertaker gimmick - if anything it humanized him and made him less mysterious & dark. I'm sure many will disagree, but I think the fanboy factor is off the charts with Undertaker, so few are able to see any negatives with him.   Still, you have to respect the guy for his impact and legacy. I just think there was a part of his career that largely sucked, and people don't give it the criticism it's due."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Brainbreakerwrote on 27.04.2017:[10.0] "(8/2011) Kaum zu glauben, dass der Sensenmann schon seit 1990 die WWE heimsucht. Selbst über die Montagabendkriege mit der WCW treu geblieben, wird inzwischen niemand so sehr mit der WWE identifiziert wie der Undertaker. Zeigt auch mit jenseits der 40 hochkarätige Matches und erweiterte im Laufe der Jahre seine Movepalette. Hat große Gimmicksprünge hinter sich: Zombiel-like Totengräber, Düsterer Dracula-Graf, Biker aus der Hölle. Jedes einzelne konnte überzeugen! Hat mit der WM-Streak inzwischen eine Art Legenden-Titel kreiert, deren alljährliches Match sie zu brechen sie fast bedeutsamer erscheinen lässt, als Kämpfe um einen World-Title, gerade auch durch die hohe Showstealeranzahl gegen HHH, Orton, Edge, Batista oder HBK! Heute tritt er alterbedingt als das auf, was er ist: als alljährliche Attraktion auf der großen Bühne! Für mich ist er neben Michaels der Größte! EDIT (4/2017): Falls der Taker sich tatsächlich mit dem Match gegen Reigns aus dem aktiven Geschehen zurückzieht, muss man eine Sache festhalten: Zeitpunkt und Gegner hätten besser nicht sein können: mit 52 sichtlich außer Form und bei seiner 25. (! ) WresteMania kam die Staffelstabübergabe des Takers genau an den richtigen Mann. Mean Mark wird vermutlich als der beste Gimmickwrestler in die Geschichte eingehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheAlmightywrote on 19.04.2017:[10.0] "Der größte Wrestler aller Zeiten! Hat sein Gimmick gelebt wie kaum ein anderer und es erst im letzten Moment gebrochen. Selbst privat hat er sich immer als Taker gezeigt um das Kayfabe wie kein zweiter zu repräsentieren. Hat von 2007-2013 jedes Jahr das beste Wrestlemania Match auf die Beine gestellt und das obwohl er bereits über 40 war. War am Anfang relativ schwach im Ring, bekam dann das Jahrhundert Gimmick was er perfekt verkörperte und unsterblich machte. Steigerte sich dann durchaus im Ring und war immer ein guter Old School Wrestler, an dessen Glaubhaftigkeit man nie zweifeln musste. Seine Fehden machten die Ruthless Aggression und Attitude Era aus und er war einer der Hauptgründe dafür, dass SmackDown während des Roster Splits sehenswerter war! Fand dann in den oben genannten Wrestlemania Matches die Höhepunkte seiner Karriere.  Hätte jedoch nach der Niederlage gg Lesnar (sie schmerzt war aber nachvollziehbar und von ihm beabsichtigt und somit folgerichtig) seine Karriere beenden sollen. So kamen 3 weitere Matches bei WM hinzu, die man mehr oder weniger vergessen möchte. Setzte für die Fans seine Gesundheit aufs Spiel und kümmert sich hoffentlich nun um seine Familie und sich. Obwohl die letzten 3 Jahre grausig waren, gebündelt in diesem unfassbar schlechten Match bei dieser WM kann ich hier nicht von der Maximalpunktzahl abweichen. Das wohl beste Gesamtpaket das es je gab und geben wird. Dieses Gimmick wird unübertroffen bleiben! #thankyoutaker"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JokeyZockeywrote on 14.04.2017:[10.0] "Was soll man noch groß sagen? Dieser Mann ist die größte Legende, die der Wrestling-Sport jemals hervorgebracht hat! Bei ihm passt einfach alles: Das Deadman-Gimmick war immer grandios, für einen Mann seiner Statur unglaublich im Ring, bei seinen Promos kriegt man Gänsehaut, die Stimme passt perfekt zum Gimmick. Er hat in seiner 25-jährigen Karriere alles erreicht, was es zu erreichen gibt, er hatte mit der Streak eine der größten und besten Storylines der Geschichte, schade, dass sie ein derart unpassendes Ende finden musste... Auch in den letzten anderthalb Jahren trotz seines hohen Alters immer noch gute Leistungen im Ring abgeliefert, doch leider merkt man langsam wirklich, dass das Alter ihm zusetzt. UPDATE: Nun ist es also endgültig vorbei. Ich kann es irgendwo in meinem Kopf immer noch nicht ganz glauben, aber es ist wahr: Die Karriere des größten Wrestlers aller Zeiten ist vorbei. Damit bleibt wohl nur noch eins zu sagen: Thank You Taker, für alles, besonders dafür, dass du mich zum Wrestling gebracht hast"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: warmongerswrote on 10.04.2017:[10.0] "Now seems as good a time as any to rate The Undertaker. As Mean Mark Callous you could see his athletic potential from a mile away, but when he was given The Undertaker gimmick it could have easily gone one way or the other but he made it work.   He was scary and he was different, and while he wasn't the most exciting he was rightfully super over.   He should be given credit for being loyal, always doing whatever the company wanted and helping to get over workers that werent as good as he was (Yoko, Mabel, Giany Gonzo, Khali)  He evolved within his character so many times over the course of 27 years and against all odds, was arguably at his best in the ring in the final third of his career.   He held his fair share of championships, but never HHH or Ric Flair levels, but for the longest time The Streak was one of the main attractions at Wrestlemania every year.   In my opinion, he's the best big man in wrestling ever, with only Andre in his prime coming close."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Charismatic Enigmawrote on 10.04.2017:[10.0] "Er ist einer der weinigen Wrestler der Gegenwart, der ein skurriles Gimmick super rüber bringt und sich nebenbei den Allerwertesten aufreißt für ne gute Show. Er wird immer eine Legende dieses Sports bleiben. Allerdings haben die letzten drei Jahre das Gesamtbild - gerade für die jüngeren Zuschauer - sehr getrübt. So wie er jetzt ging, war es super und auch Roman war der richtige Mann dafür. Für des Takers Vermächtnis aber ein paar Jahre zu spät. Trotzdem ein Ausnahme-Worker, den man so schnell nicht vergessen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Squared Circlewrote on 06.04.2017:[10.0] "Never my favorite, but I have to call him a 10 based on main event longevity.  Tremendous career.  I wish him well in his retirement."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: IssouChanclawrote on 05.04.2017:[10.0] "He is the greatest wrestler of all time, there was and there will never be someone as special as him"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ThankYouTakerwrote on 05.04.2017:"Ich gucke seit dem Jahr 2000 Wrestling nur wegen Undertaker.  Jetzt wo er aufgehört hat, lohnt es sich nicht mehr wirklich für mich.  Ich hoffe natürlich, wie bestimmt noch viele andere, dass er noch mal zurück kommt.  Wäre das aller geilste.  Aber Gesundheit geht selbst verständlich vor.   Darum sage ich zum Schluss...   #ThankYouTaker  für die vielen schönen Jahre die du uns beschert hast.   Mit vielen lieben Grüßen  ThankYouTaker (LCPRipper)"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Obsolete Mulewrote on 04.04.2017:[10.0] "Everything needed to be said about the Undertaker has already been said. The man is a legend. Absolutely amazing career, amazing matches, a couple of 5-star matches, and he's been part of some of the most memorable moments in wrestling history. I'm sure his probable retirement after WM33 made many wrestling fans very emotional, because it truly is an end of an era, and from many of us it symbolises an end of a part of our childhood. It's safe to say there will never be a performer like the Undertaker in WWE again. I hope Mark can enjoy his retirement days and finally rest in peace. I know I will be replaying many of his matches years to come. The memories will always stay. Thank you Undertaker for a phenomenal career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: aledib993wrote on 04.04.2017:[10.0] "Probably the best worker in WWE history. Respected and beloved by all the types of wrestling fans and by at least two or three generations of fans.  Romantic and dark, he entertained like no other before.  Thank you Taker. The Real Wrestlemania Legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blood Pumpwrote on 30.03.2017:[10.0] "Dedication. How many wrestlers can say they have stayed dedicated to their gimmicks for as long as The Undertaker? Granted he did go all weird and 'biker' on us for a little while but even then he shined well. Hes been dedicated to his gimmick, but more then that hes dedicated to the business to such a point he was trusted as the locker room leader. His dedication alone is worth a lot, but the fact that hes one of the better workers in the business, the best guy of his sheer height and one of the most captivating men as well all makes it too easy to ten him. He might not have had the most technically sound start, but once he was allowed to do more he became one of the penultimate workers in WWE, not only keeping his psychology but bringing something for the more hardcore fans to enjoy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Irishfbfan518wrote on 17.03.2017:[10.0] "A horrible gimmick that should have failed, the Undertaker character is now (rightfully) viewed as one of the best gimmicks of all time. His in-ring work only got better with time, even well into his 40s. A true legend that will go down as one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ChessHeartDTRwrote on 28.02.2017:[10.0] "Greatest of all time. The fact that the man debuted in 1990 in WWF and over two decades later, he's still relevant. Timeless. A man who truly defines the term "iconic"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Changeling45wrote on 21.02.2017:[9.0] "A true icon and gatekeeper of the main event and top tier of wrestlers over MANY years in the WWE.  His longevity is insane, and the many incarnations of his characterization has been awesome to watch.  He carries an aura around him that not many can hold a candle to, and has put up great bouts with the best of the best."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Chekerwrote on 10.02.2017:[7.0] "Gonna have to admit that I find Undertaker overrated. I will give the man this though - I've never seen anyone play their gimmick as well as he plays his. That's gotta count for something, right? Another thing that gets thrown around is his longevity. There are better wrestlers out there that have been wrestling for just as long or longer, but given WWE's absurd schedule, I guess it IS a big deal. I liked most of his looks, even the american badass, and he used to be a decent brawler, but he was never incredible and now he can't go anymore."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: coolserazwrote on 09.02.2017:[10.0] "Perfect example of taking a gimmick that could have been silly and making it work through sheer presence. Taker is old and beaten down now but he was an amazing worker especially from 2006-2013. He had a period around 2000 where he was out of shape and refusing to job but he got over it and became even better than he ever was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rllywrote on 07.02.2017:[10.0] "Mic-Skills: Perfekt und passend zum Gimmick. 10/10 Ring-Skills: Zu seiner guten Zeit extrem gut, vor allem für seine Größe 9, 5/10 Gimmick: Etwas besseres habe ich noch nie gesehen. 10/10 Promos: Legendär und liegt auch am Gimmick. 10/10  Müssen wir nicht lange reden= 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kazu Shizowrote on 01.02.2017:[9.0] "Tja, habe mich doch entschieden hier 9 Punkte zu geben. Er hat eine beispiellose Karriere hingelegt und sein Gimmick hat er über so viele Jahre perfektioniert. Locker 10 Punkte eigentlich, doch das er sich jetzt seit Jahren nur noch so durchschlepp und seine Performances einfach nur noch Mitleiderregend sind stört mich sehr. Er hätte einfach längst aufhören sollen, auch wenn es schwer fällt. HBK hat es richtig gemacht und der Undertaker begräbt sich nun leider selbst.  Sehr schade."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Real Raterwrote on 21.01.2017:[8.0] "Ring: Leider, vergessen die meisten wie schwach der Taker in den 90er bis 2006 im Ring war. Aber was er dann bis 2013 zeigte verdient einfach Respekt. Er war wahrscheinlich 2007 der beste Wrestler der WWE. Trotzdem für die vielen, eher mauen Jahre nur 7/10 Punkte (50%) Promos/Schauspieltalent:Eher durschnittlich mit Paul Bearer besser, dehalb zusatzpunkt. 8/10 (25%) Charisma/Statur/Gimmick:Eines der besten Gimmicks allerzeiten. 10/10 (25%) Sind dann insgesamt 8 Punkte für den Demon of Death Valley.  = 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SrHunterwrote on 09.12.2016:[10.0] "The legend, one of the most respected man in the history of this thing called wrestling, there's not much i can say about him because everyone knows what's he is capable of."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rattlesnake3-16wrote on 06.12.2016:[10.0] "A legend of WWE history, simply the greatest character never created. His streak was phenomenal as his whole career !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Puro Spiritwrote on 01.12.2016:[10.0] "An icon of American pro wrestling , has the greatest gimmick in pro wrestling .... has had many classic performances ....."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JosephDurnin 1997wrote on 27.11.2016:[10.0] "Without The Undertaker, I may have never started watching Pro Wrestling, he was the only guy who stood out to me at first. As far as great big man workers go, Taker and Tsuruta>everyone else, no disrespect to Baba, Vader, Andre, Hansen etc. It's just a testament to how good they are.  Taker's my guy:                                                                       Then.                                                                       Now.                                                                       Forever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SPKMwrote on 17.11.2016:[10.0] "The undertaker in theory is a really goofy character. But the talent that Mark Callaway has makes the character into the stuff of wrestling legend. For such a big guy, he is extremely agile and continues to impress and shock fans with his matches well into his 50s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: anwarthinkswrote on 31.10.2016:[7.0] "We all know that the Undertaker's best days are beyond him.  He is an utter legend in the industry of pro-wrestling but as he currently stands, he's just about good."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "Ich glaube man muss hier nicht wirklich etwas zu sagen. Taker wurde mit steigendem Alter immer besser. Leider hat er seinen Zenit überschritten. Eine wahre Legende. Ich ziehe meinen Hut vorm Deadman!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: J Batistawrote on 09.09.2016:[10.0] "The Deadman. The Phenom. The Demon from Death Valley. Undertaker, my personal favorite wrestler, is a legend. He has the best gimmick ever, a powerful move-set and, of course, a legacy in WWF/E. I can't imagine a WrestleMania without the presence of his mighty persona."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Cleanerwrote on 05.09.2016:[10.0] "Legendärer Wrestler, hatte sehr viele unheimlich starke Matches und ist in seinem Gimmick wohl einer der, wenn nicht sogar der beste Micworker überhaupt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SweetestThing2wrote on 11.08.2016:[10.0] "The Undertaker, The Deadman, Phenom, Lord of Darkness, American Bad Ass, Demon of Death Valley and also the Greatest Pro wrestler of all time. If you look up pro wrestling beside it should have be a picture of mark calaway. He is pro wrestling and he was pro wrestling for me. It is the greatest pro wrestling gimmick of all time. It captured your imagination and maybe you were a child and it scared you or as an adult you love and respected it. One of the things i love about this gimmick is that it could change and it always felt fresh and new. It did not matter if he was the American bad ass or my personal favorite in the ministry of darkness it was always something different. With the gimmick came the amazing attire and i always debate with my wrestling friends not only what Undertaker gimmick was the best but what was his best attire. The undertaker's mic skills were awesome too. It never mattered if he was scaring the hell out of an opponent by being the brooding dark mysterious undertaker or when he was Big Evil Red Devil and put fear into the hearts of superstars by telling them that the ring was his yard and he was the big dog and he was was going to kick your ass. Finally the man's wrestling ability is great and honestly underrated he was a great worker, a smart worker and has had great matches with the best of them. It does not matter if he is throwing mankind of the cell or he is burying him or closing the casket on someone he is apart of the most memorable moments and matches ever and the guy has so many Match types that are apart of his character and it is just so a fascinating multi layered gimmick that it works on all levels. WWE is Sports Entertainment and The Undertaker is Entertainment the Greatest in a line of work that has so many greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Summerslam Fan 01wrote on 31.07.2016:[10.0] "Der Undertaker ist die größte Legende im Wrestling.  Der Charakter ist der beste, sein Entrance ist Kult Sein Charisma ist auch sehr beeindruckend, Micwork auch sehr stark, und im Ring auch sehr stark.  23 Siege bei Wrestlemania wird niemals jemand toppen können.  Das American Badass Gimmick war schon gut aber hat mich nie so begeistert.  Ich hoffe das er ein würdigen Abschluss mit HOF Aufnahme bekommt.  Danke Mark Calaway für die 26 Jahre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Moxley Lunaticwrote on 28.07.2016:[10.0] "Eine lebende Legende, welche im Ring bis heute mich immer überzeugt hat. Sein Charisma ist außergewöhnlich und seine Work am Mic großartig. Zwar hat er nicht mehr so viele Segmente und Promos, aber die die er hat bringt er immer, wirklich immer auf den Punkt. Einer der besten, loyalsten Workers in diesem Business. Ich hoffe und bette, dass dieser großartige Wrestler für sich genau den richtigen Zeitpunkt findet um zu gehen (was hoffentlich nicht zu bald ist) und dann mit einem großen letzten Tusch und mit ganz viel Würde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Randomuser12345wrote on 11.07.2016:[10.0] "Can't give the man any less than a 10. 30 years in the business, 25 of them at the very top. Quite possibly the greatest "Big man" of all time. The most interesting character the WWE has ever given us, if not the most interesting character in wrestling history. As he got older he changed his style, incorporating MMA holds and the like. The Deadman is a legend personified."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KevinZaynwrote on 23.06.2016:[8.0] "In Ring meiner Meinung nach nur solide 7/10 Charisma 10/10 Ausstrahlung 10/10 Micwork 6/10 Ich persönlich mag den Taker nicht So Gern. Ich finde sogar, dass Kane vor der Demaskierung besser war."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AMHTPwrote on 22.06.2016:[9.0] "The Undertaker is perhaps the most iconic professional wrestler in history -- a man who can't be matched for longevity, legacy, dedication or mystique.  He transcends description in terms of moveset and workrate and gimmick -- any other man playing the same character would have been a joke, but in Undertaker's hands it became one of the greatest of all time.  As ridiculous as it is to boil him down to fundamentals, though, Taker is still fantastic when you look at him piece by piece.  He's a true ring general, and one of the most athletically-skilled big men of all time.  He's a world-class brawler whose legitimacy as a badass can't possibly be questioned.  He injects a darkness and intensity into his storylines which never fails to captivate the audience, and he's tough enough to wrestle even after receiving hideous pyro burns.  What else is there to say?  The only reason he doesn't receive a ten here is that I reserve such a ranking for near-perfect wrestlers, and Undertaker's career has had a few black spots.  He hasn't always been such a good in-ring hand, and some of his earlier matches are difficult to watch.  Age hasn't been his friend either, though it took him remarkably long to show any signs of deterioration.  All of that said, he's a titan among ants, and will always be remembered as an all-time legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Son Edowrote on 18.06.2016:[10.0] "To me, he is the greatest. He's been through each era, Golden, New Generation, Attitude, Ruthless Aggression, PG and the current New Era. The streak is the biggest accolade in WWE history. His longevity surpasses Hogan's and Austin's legacy. But most of all, he made it all work with an outrageous character."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DSF Actionwrote on 09.06.2016:[10.0] "Der größte der je einen WWE ring betreten hat. Eine Legende. Unvergessen die Hell in a Cell Matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: finest0000wrote on 28.05.2016:[10.0] "Für mich eine Legende, er ist schon so ewig dabei auch wenn es mir nicht gefällt wie er gerade gebookt wird. Er sollte jetzt langsam, doch mal an sein Karriereende denken, so das es würdig wird. Ein letztes Match bei einer WM mit welchem Ausgang auch immer und dann ab in die HOF und danke für die tolle Zeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "I think calling Taker the best of all time is a big stretch, but still I have to give him a 10 because I do love watching him almost all the time. I dig the slightly goofy character and am impressed by how well the man behind it has presented it all these years. Enjoyed Biker-Taker era as well, and his longevity is impressive. I do have to say I wish he would retire now, he is looking terribly rough now and in my opinion is not adding much to his legacy at this point."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Chris Kwrote on 26.04.2016:[10.0] "Mein absoluter Lieblingswrestler. Derjenige der mich an das Produkt WWE und Wrestling im allgemeinen gekettet hat und es zu einer großen Leidenschaft hat werden lassen. Er ist für mich die perfekte Kombination aus Look, Charisma und Technik. Auch wenn es einige auf das Gimmick schieben, ich glaube kein anderer hätte es so umsetzen können. Er ist über 25 Jahre in der größten Liga der Welt aktiv und das spricht schon für sich. Und wie er sich innerhalb seiner Karriere weiterentwickelt hat, auch gerade seine In-Ring-Skills, ist aller Ehre wert. Seine einzige Schwäche ist vielleicht das Mic-Work, aber das macht er mit reiner Ausstrahlung wieder weg. 10 Punkte für diese Legende des Wrestling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: oscargeorge1wrote on 25.04.2016:[10.0] "Yes he is a legend, but at his age the law of diminishing returns begin to apply. How much more can WWE wheel him out when they need a boost in ratings. A wise man once said that 'Nostalgia is a disease', WWE need to bring forward the younger talent sooner rather than later or else we will still be seeing The Undertaker in main event action when he's sixty."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KingChrizzly619wrote on 16.04.2016:[9.0] "Einer meiner ersten Wrestling-Favourites als ich in den frühen 90ern angefangen hab mich für diese Form der Unterhaltung zu interessieren. Leider mittlerweile in die Jahre gekommen. Aber ist ja bei jedem irgendwann mal so... Persönliche Ausstrahlung ist in Ordnung, aber auch nicht berauschend (in diese Bewertung fließt bei mir auch der Privatmensch mit ein, ist bei ihm ja immer etwas schwer zu beurteilen, jedoch Pluspunkt im Gegensatz zu früher) (8/10 Punkte), über das Gimmick brauchen wir gar nicht reden (10/10), bei den Moves ist der Deathman etwas in die Jahre gekommen, erinnert mittlerweile manchmal in Zeitlupe, aber ich möchte auch seine früheren Künste mit einfließen lassen (9/10). Am Mikro nach wie vor furchteinflößend (9/10). Gibt bei mir einen Gesamtwert einer glatten 9/10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NastyYaffawrote on 15.04.2016:[9.0] "The Undertaker is quite possibly the most legendary character in wrestling. The man is a legend in every sense of the word."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TikeMysonwrote on 13.04.2016:[10.0] "Eine absolute Legende. Den Undertaker habe ich schon gefeiert als ich 7 Jahre alt war und tue es mit mittlerweile 31 Jahren immer noch. Das Gimmick ist das beste und kultigste, das es bis heute in der Wrestlingwelt gibt. Wahrscheinlich wird da auch nie wieder ein Gimmick ran kommen. Auch vom Können her war der Undertaker einer der Besten, vor allem wenn noch seine Größe in Betracht zieht. Er war im Ring immer äußerst agil und schnell unterwegs.  Leider hat er seinen Zenit schon ein paar Jahre überschritten. Mittlerweile ist er nach 2 Minuten Matchzeit schon dermaßen am pumpen, dass man Angst hat er würde jeden Moment umkippen.  Nichtdestotrotz gibt es hier die volle Punktzahl. Bei seinem Einmarsch läuft es mir immer noch jedes mal kalt den Rücken runter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: knightrider1983wrote on 11.04.2016:[10.0] "the undertaker ist der beste den es jemals geben wird was hat er für geile Kopfspiele gemacht und kämpfe waren auch alle gut. und sein einzug auch nicht zuvergessen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NewNemowrote on 06.04.2016:[10.0] "Normalerweise schaue ich das ich eine differenzierte Bewertung abgebe. Aber hier handelt es sich um den Undertaker. Ja lange wird er es nicht mehr machen, vielleicht hätte er bereits aufhören sollen. Nicht alles war gut was er gemacht hat, aber 10 Punkte allein für die Lebensleistung. Für mich ist er Wrestling Entertainment pur. Thank you Taker!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ApexOfEvolutionwrote on 26.03.2016:[9.0] "Eine Legende des Wrestlings. Selbst Leute, die keinen Bezug zum Wrestling haben können mit dem Namen Undertaker was anfangen. Er hat sich auch immer wieder selbst neu erfunden, nachdem er seine Rolle in den Gimmick-lastigen 90er teilweise überinterpretiert hat, verließ er als Biker die übermenschlichen Sphären, was ich gar nicht so schlimm fand, aber warum musste er dabei auch noch den Patrioten raushängen lassen. Anschließend spielte er dann wieder den Totengräber allerdings in etwas entschärfter Version. Da er immer die Bedrohung spielen musste, gab es leider immer wieder kleine Logikfehler in irgendwelchen Storylines um nicht jegliche Spannung zu töten und viele Matches wurden teilweise vor allem durch seine Gegner (Shawn Michaels bei den Wrestlemania-Auftritten oder Mankind im HiaC-Match) zu legendären Schlachten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tabowrote on 25.03.2016:[10.0] "Der Undertaker - DIE Legende! ... Bewertet man hier noch den Wrestler oder eines der wohl besten und überdauerndsten Gimmicks aller Zeiten? Klar ist die Idee des Deadmans nicht die Spitze der Komplexität und von Charaktertiefe und großartigem Mikework brauch man auch garnicht anfangen zu sprechen... aber das sind auch die Dinge die für den Undertaker nicht von Bedeutung sind. Wenn man den großen bösen (und alten) Wolf der WWE spielt dann hat man halt nicht viel zu sagen. und dass ein Ü50er sportlich nicht mehr auf dem Level einiger junger NXT Talente ist, ist denke ich auch verschmerzbar. Der Undertaker ist so wie er seit Ewigkeiten ist ein rundum perfektes Gesamtpaket an dem es nichts mehr zu verbessern gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jobbswrote on 18.03.2016:[10.0] "Just simply one of the greatest stars ever! There isn't anything this man hasn't done and he's put on some of the greatest matches ever as well. Justan amazing performer all together and he still brings that aura with no matter what time of the year it is in the wrestling world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: fitfinlaywrote on 14.03.2016:[10.0] "DER Mann. Hat ein einzigartiges Gimmick, dass er perfekt spielt. Braucht nicht viele Worte um glaubwürdig zu sein. Ist ein toller Techniker, trotz seiner Größe und hat einfach so viele Klassiker hingelegt, dass keiner rankommt. Für mich der Beste aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: James Dean Wrestlingwrote on 09.03.2016:[10.0] "Another top tier great of mine. One of those guys that I was hooked onto for a long time. Everything he did I had to watch. To this day, he is one of my favorites of all time. Great size and speed. And I think the best big man of all time no question. Amazing career and still doing what he can some 20 years later of his major debut as The Undertaker. Gotta love the Phenom."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BadAssChonowrote on 04.03.2016:[10.0] "Meiner Meinung nach das Beste Komplettpaket im Business. Er hat in seiner Karriere alles erreicht und er war so ziemlich der Lieblingswrestler von allen die ich kenne. Man musste diesen Kerl einfach feiern. Seine Ausstrahlung ist der Hammer und seine In-Ring Performance ist, mal abgesehen von diesem lächerlichen Seiltanz, gut. Wirklich punkten tut er jedoch mit seinem mystischen Gimmick, welches von ihm perfekt verkörpert wird. Seine Fehden gegen Batista und die Guerrero Family waren, meiner Meinung nach, die besten Fehden überhaupt. Trz muss ich erwähnen, dass er noch viel mehr hätte erreichen können wenn die WWE ihn nicht so oft scheiße gebookt hätte. So musste er sich fast die ganzen 90er mit irgendwelchen komischen Vögeln (Giant Gonzalez, Kamala oder seinem Doppelgänger) rumschlagen. Und was das Bikergimmick Anfang 2000 sollte versteh ich auch nicht. Hätte man ihn dauerhaft als Phenom belassen hätte er über Jahre Top Heel der Liga sein können. Auch Ministry of Darkness hätte meiner Meinung viel länger bzw. öfter existieren dürfen. Auch seine Rolle hinter den Kulissen sehe ich sehr hoch an. Immerhin war er jahrelang der Lockerroom Leader der WWE und hat seine Macht nie missbraucht um andere zu quälen oder ähnliches. (Wie zB JBL & Benoit) Zur seiner zurzeitigen Karriere kann ich nur anmerken, dass er für 50 und 1 Match pro Jahr seine Sache richtig gut macht. Außerdem freut man sich immer den Taker wenigstens einmal im Jahr wiederzusehen, selbst wenn seine Matches an Qualität verlieren so fände ich es gut wenn er weiterhin gelegentlich auftritt, einfach weil er die tougheste Sau der Welt ist.  @DarrylDixon84: Jetzt man ganz im Ernst Freund. Ich weiß nicht was deine Bewertung soll. Ziel solcher Bewertungen sollte eigentlich sein die Karriere zu bewerten und sich nicht daran aufzuhängen, dass jmd im fortgeschrittenem Alter nochmal Vater wird. (Zumal der Undertaker noch nicht mal so alt ist wenn man ihn zB mit Niki Lauda vergleicht) Bitte tu doch allen e"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DarylDixon84wrote on 27.02.2016:[0.0] "Eine null.... Ja ganz ehrlich ich kann jemandem der in den spätvierzigern nochmal Vater wird und sich dann trotz kaputter Knochen und Gelenke das alles noch antut nicht mehr geben. Sobald er mal merkt das er aufhören MUSS dann möglicherweise gibts ein paar Gnadenpunkte. Schade... ich mochte ihn mal ziemlich gerne."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Coltwrote on 24.02.2016:[10.0] "Man braucht eigentlich gar nichts mehr zur Bewertung zu sagen, diese sehe ich bei einer Legende wie dem Undertaker einfach als Formsache.  Gut finde ich aber, dass die Zeit als American Bad Ass nur kurz anhielt. Als Totengräber ist er einfach Kult!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dilbertwrote on 20.01.2016:[10.0] "Ich vergebe die 10 Punkte für sein Lebenswerk. Das ist wahrhaft einzigartig, und die Ausstrahlung die er früher hatte war unübertroffen. Mit der "American Bad Ass"-Geschichte wurde ihm damals kein Gefallen getan, aber den Fehler hat man ausgebügelt. Natürlich hatte er auch viele alberne Storylines zu bewältigen. Zuletzt (also seit er sich die Haare zum Iro abrasierte um dann im schwarzen aufgemotzten Bademantel zum Ring kam) ist dieses Feeling aber mehr und mehr gewichen. Bei der letztjährigen Wrestlemania war er im Match nicht fehlbesetzt, aber einfach am falschen Ort, gerade wenn er gegen einen Spookie-Charakter wie Bray Wyatt antreten soll ist Tageslicht das pure Gift für die Atmosphäre schon beim Einzug. Ich liebe den Kerl für das was er einst geschaffen und ausgestrahlt hat, aber wenn er nicht nochmal die Kurve kriegt und sein Körper weiter so verletzungsanfällig bleibt, ist es vielleicht wirklich Zeit zu gehen. Zwei oder drei Matches im Jahr reichen für vernünftige Fehden einfach nicht mehr aus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HeinrichC75wrote on 20.01.2016:[8.0] "Der Undertaker ist die Wrestlinglegende schlechthin und das Idol meiner Kindheit. Doch er ist nun schon seit Jahren auf dem besten Weg, sein eigenes Denkmal zu zerstören.  Nur noch zusammen mit Kane aushaltbar, da kann er sich öfters mal ausruhen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Harlequinwrote on 11.01.2016:[10.0] "The king of psychology. Phenom couldn't be a more fitting calling for this guy. He goes beyond what wrestlers of his size should be capable of, and tells a story to back it up. You can call his character corny, but his work transcends all expectations that no one would be bothered to call him anything but the Deadman of the wrestling world.  A fundamental brick in the pro wrestling pavement."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: blackmileswrote on 09.01.2016:[9.0] "Dieses Gimmick ist einfach nur Goldwert. Jedes mal, wenn der Gong ertönt, raste nicht nur ich, sonder die ganze Wrestling Welt aus. Zudem ist sein Micwork auch Genial für das Gimmick. Wenn er das Cena Gimmick hätte würde sicher jeder sein Mic-Work Gnadenlos kritisieren. Seine Matches gefallen mir jedoch nicht so sehr. Sie haben oft gute Spots, aber sie sind mir oft zu langsam geführt. Aber wer will es ihm übel nehmen. Am Knie muss der ja irgendwie eine Schiene tragen oder so."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Million Dollar Fanwrote on 29.12.2015:[5.0] "Klar es ist der Undertaker. Aber man muss einfach mal sagen, dass er im Ring nie der beste war und auch am. Mic übertroffen wurde. Aber es ist der Undertaker. Eine Legende, die wirklich "Through Hell" gegangen ist in. vielen Matches. Aber 10 zu geben ist übertrieben, eben wegen Mangelnder In Ring Fähigkeiten. Ich wäre zwischen 8 und 9... Wahrscheinlich 9 mehr wie einen Punkt dem Taker abzuziehen wäre Blasphemie. ABER man muss ja auch aktuell bewerten und der Typ ist soooo drüber. Wow. Ne. Sorry. Aktuell geht nicht mehr wie 5."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GebboWWEwrote on 25.12.2015:[10.0] "Die größte WWE Legende aller Zeiten! Niemand hat es so gut geschafft, verschiedene Generationen von WWE Fans zu begeistern und zu faszinieren. Er zieht mit seiner Attitude und seinen In-Ring Skills jung und alt in seinen Bann. Seine besten Matches hatte er meiner Meinung nach mit Shawn Michaels, aber auch mit Edge. Ich hoffe nur, dass er ein geniales letztes Match bei Wrestlemania 32 haben wird, was seinem Namen alle Ehren macht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HighlightHEELwrote on 24.12.2015:[10.0] "Wenn der Undertaker keine Legende des Wrestlings ist, dann weiß ich nicht, was eine Legende dieses Sports sein soll. Das Gimmick ist das bekannteste, einprägsamste und (trotz einiger seltsamer Wendungen) beste aller Zeiten, selbiges gilt auch für seinen Entrance. Im Ring ist der Taker einer der besten Big Men aller Zeiten - einen Titel, den er sich vor allem im späteren Verlauf seiner Karriere mit einer ganzen Reihe von qualitativ hochwertigen Matches, insbesondere bei Wrestlemania, verdiente. Es gab Phasen in seiner Karriere, wo er nicht gerade für Matchqualität bekannt war - das kann man von den letzten Jahren nicht mehr so behaupten. Am Mic eine solide Hand - man kann ihn ohne Probleme eine zehnminütige Promo halten lassen, die auch ohne viel Inhalt allein durch seine Präsenz, Mimik und die von seinem Charakter kreierte Atmosphäre überzeugen kann. Dazu kommt noch die größte Storyline, die Wrestlemania je hatte - die Streak. Ich habe die späten Streak-Matches (trotz erwartbaren Ausgangs) immer genossen, und werde mich vermutlich immer darüber ärgern, dass der Taker ausgerechnet das Match, in dem diese nach 22 (bzw. 23) Jahren brach, mit einer Gehirnerschütterung worken musste. Der Undertaker steht mittlerweile 25 Jahre für das Produkt WWE wie kaum ein Anderer, er kann nur zehn Punkte bekommen für das, was er in seiner Karriere geleistet hat. Trotzdem ist es an der Zeit zu gehen - er wirkt einfach sehr alt, und selbst wenn er noch immer Qualität zeigen kann, so geht das doch noch mehr auf Kosten des Körpers. Die letzte nötige Storyline (der Racheversuch am Brecher der Streak) wurde geschrieben, und auch für das Undertaker-Gimmick sollte bald das "Rest in Piece" gelten - Mr. Calaway hat sich die Ruhe nach der Karriere mehr als nur verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nigglesojanicwrote on 16.12.2015:[10.0] "Mit Abstand mein absoluter Lieblings-Wrestler. Er verkörpert sein Gimmick wie kein Zweiter und das schon seit fast 25 Jahren. Wenn er mal viel reden darf, sind seine Promos immer stark und vor allem fehlerfrei, kann mich nicht an einen Versprecher seinerseits erinnern. Des Weiteren hat er im Ring schon oft genug bewiesen, dass er dort zu den Besten gehört. Auch wenn er nur selten auftritt, ist das Publikum stets begeistert, wenn der Gong ertönt. Ich hoffe nur, dass die WWE ihm einen gebührenden Abschied gewährt, nachdem sie seine Streak verbockt hat, da er meiner Meinung nach der größte Superstar aller Zeiten ist. Alles in allem kann ich hier nichts außer die 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: smark calawaywrote on 14.12.2015:[9.0] "One of the greatest performers and storytellers in the history of the business. What's interesting is that Taker's mastery of the gimmick was often able to mask mediocre in-ring performances - he's always had a certain presence that was captivating. American Badass was a low point but he managed to turn things around and pull out some of the best performances of his career during the mid to late 2000s. It's unfortunate that he was concussed for the Streak match with Lesnar, but perhaps the lackluster match only added to the disbelief when Lesnar actually got the pin. All in all an incredible asset to WWE for decades and one of the most memorable athletes in this industry."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DanTalksRasslinwrote on 11.12.2015:[10.0] "One of my all-time favorite wrestlers and gimmicks, certainly one of the best-ever big-man wrestlers and arguably WWE's best-ever big-match player.  Not only a great power wrestler, 'Taker also always had an uncanny agility level for his size, and always knew exactly when to use those skills for maximum effect in a match.  Has had many incredible matches and rivalries over the course of a quarter-century run, and has been able to consistently reinvent his persona to stay relevant.  Achieved a level of mystique such that he was essentially beyond the card structure, being an attraction all his own, and never really needed championships.  Later in his career this had reached the point that simply being in a match with him was a major accomplishment for his opponent.  I will say that he may well have stuck around a bit too long at this point - I'd argue that he should have retired after WrestleMania XXVIII, streak intact with an even 20-0 and before his physical condition deteriorated quite so much - and that I was never a fan of his "BikerTaker" era, but that doesn't change his overall status as one of the all-time greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dr Middywrote on 27.11.2015:[10.0] "Easily one of the greatest, if not THE greatest big man in the history of the company. Undertaker took what would look like a silly gimmick on paper, and turned it into the greatest character in WWE history. Even now, 25 years since his debut, his character still generates an unmistakable buzz in the crowd, and an aura which few can match. I can't even begin to name all the matches he has been in that I love, but the list is extensive and for good reason. One of my favorite wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jamie The Rockwrote on 25.11.2015:[10.0] "Einer meiner Helden... Das Gimmick an sich ist ja schon ein Kapitel für sich, aber seine wrestlerischen Fähigkeiten begeistern mich immer wieder aufs neue (Dead Man Walking)... Und dass er die Belastung mit 50 immer noch aushält... beeindruckend... Er hat sich den Titel Phenom verdient"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ShooterMcShootwrote on 06.11.2015:[10.0] "Undertaker is a guy who was very special to the wrestling business. It's doubtful we'll ever see a performer quite like him again that carries such an aura and mystique about him. When he finally retires completely, it's really got to sink in at that point that the era of wrestling where a worker can command a certain presence will be over. Fans won't accept anything quite like this character ever again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WaxaCwrote on 31.10.2015:[10.0] "Über ihn ist alles gesagt. Ich fand es immer toll, wie er mit seiner Statur so einfach auf den Seilen balancierte konnte. Und die Ligatreue zu WWF ist auch toll. Während superstars wie Hulk Hogan, Macho Man, Scott Hall, Kevin Nash und dann Bret Hart gewechselt sind, bliebt er da. Glaube, wenn er auch gegangen wäre, konnte Vince's WWF den Laden zumachen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Der Deadman ist eine der größten Legenden im Wrestlingbuissness. Er hat alles was eine Legende und einer der Besten braucht. Seine Mania Serie war legendär. Ich fand es nur Schade, dass Brock Lesnar die Serie beenden durfte. Einer der größter Fehler, der WWE überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DanielBryan1986wrote on 15.10.2015:[8.0] "Es ist sehr schwierig den Undertaker zu bewerten. Denn es gab Jahre wo er mir überhaupt nicht gefallen hat. Die Anfänge der WWF bis Yokozuna vs Taker RR 1994 war er mir ziemlich egal. Ab dem Zeitpunkt bis hin zum Royal Rumble 1997 gefiel er mir. Dann aber Ministry bis 2000 war er mir zu langweilig. (Hatte immer hilfe durch die Ministy)nervte mich schon bei der NWO. Als American Bad Ass bis hin zu Wrestlemania 28 war er einer meiner Absoluten Top Wrestler. Allerdings gefielen mir die Matches gegen Punk, Lesnar und Wyatt wieder nicht. Undertaker verdirbt sich meiner Meinung nach seid 3jahren seinen Ruhestand.  Nun zu meiner Benotung, sehr schöne Matches und starke Promos machen ihn unvergesslich.  Allerdings waren 6Jahre sehr nervig mit dem Undertaker. (persönliche Meinung). Gesamt resultat 8Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BalorClub01wrote on 11.10.2015:[5.0] "Meiner Meinung nach vollkommen überbewertet,  und nicht besser als viele andere heutige Wrestler. Sowohl im Ring (nur 5 Moves die immer in der gleichen Reihenfolge gezeigt werden) als auch am Mikrofon (langweilige Promos bei denen nur geknurrt wird) keine 9, 5 Punkte wert. Ganz abgesehen vom inzwischen total ausgelutschten Gimmick."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker-Showwrote on 05.10.2015:[10.0] "Der Undertaker ist und war schon immer mein Lieblingswrestler. Er ist großartig. Zahlreiche Titel gewonnen, seine Streak..... Sein Gimmick als Deadman ist einzigartig und super gespielt. Er ist eine Legende und für mich der beste Wrestler aller Zeiten. Auch wenn er ins Alter gekommen ist, sehe ich ihn bis heute noch gerne und freue mich das er immer noch kämpft ab und zu. Er gehört definitiv in die WWE Hall of Fame"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WWEReignsRuleswrote on 21.09.2015:[10.0] "Ist für mich einer der größten Wrestler aller Zeiten, ich finde es immer wieder Cool wenn der Gong ertönt und die Musik erklingt und er dann rauskommt, die Matches mit ihm waren immer toll mit anzusehen das Hell In The Cell Match gegen Mankind war einfach spitze. Aber heute finde ich brauch er das nicht mehr machen. Und er soll endlich in die Hall Of Fame das hat er sich verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FloWrwrote on 16.09.2015:[10.0] "Ein perfekt verkauftes Gimmick, welches sich durch leichte Abwandlungen immer wieder mit der Gegenwart vereinbaren ließ. Außergewöhnliches Charisma, fehlerfreies Micwork und ein Moveset, welches für einen Mann seiner Proportionen doch sehr beachtlich ist. Als Lord of Darkness in meinen Augen das beste Gimmik, dass die WWE je hervorgebracht hat und in Verbindung mit Paul Bearer unvergessen. Allerdings hat er schon früh genug bewiesen, dass er seinen Charakter ohne ihn genau so perfekt verkörpern konnte. Auch backstage lässt sich über ihn nichts Negatives berichten, was bei einem derart hohes Status sehr selten ist. Viele legendäre Matches bestritten, jungen Talenten zum Push verholfen und stets loyal gewesen. Allerdings sollte auch er langsam aber sicher seinen endgültigen Abschied feiern. Denn Lesnar hat nicht umsonst die Streak beendet, da es langsam aber sicher unrealistisch wirkt. Sein Körper wirds ihm auch danken und er brauch niemandem mehr etwas beweisen. Denn für viele ist er der größte Star, den WWE je hervorbrachte. Für meinen Geschmack nicht der größte, aber definitiv in der Top 3. Volle 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mandzukic9wrote on 14.09.2015:[10.0] "Was soll man zu ihm bitte außer 10 Punkten geben? Trotz dieses übernatürlichen Gimmicks ist er auch im Jahr 2015 eine absolute Kultfigur und wird abgefeiert, wie sonst was.  Er ist eine wahre Icon und der U30-Generation wahrscheinlich bekannter als jeder andere Wrestler.  Was hat er den Leuten nicht schon alles gegeben? Eindeutig mehr als gesund ist. Deshalb sollte er sich nun zurückziehen und sein wohlverdientes, ruhiges Leben leben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jacobphillipswrote on 13.09.2015:[10.0] "one of the best, a true legend. superb in ring ability coupled with excellent character portrayal makes for one of the best wrestlers of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Der Bjoernwrote on 11.08.2015:[10.0] "Auch, wenn ich weiss, dass der Undertaker inzwischen nicht mehr so Ringtechnisch fit ist, so feier ich ihn trotzdem immer noch ab und freue mich immer wieder ihn zu sehen. Er ist schon lange im Wrestlinggeschäft und hat so einiges erreicht, wovon andere Wrestler nur träumen dürfen. Er ist für mich (seit ich angefangen habe Wrestling in der Attitude Era zu schauen) eine Herzensangelegenheit. Er hat (bis auf ein paar Ausnahmen) einen Klassiker nach dem anderen auf die Beine gestellt!   Zudem fand ich sein Biker-Gimmick jetzt nicht so schlimm, im Gegenteil: Es war mal eine nette Idee was anderes mit dem Taker auszuprobieren. Aber sein Dead Man-Gimmick (welches heute überraschender Weise immer noch recht gut ankommt) bleibt natürlich ungeschlagen.   Für mich war, ist und bleibt der Undertaker einer der besten Wrestler aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Onewrote on 04.08.2015:[10.0] "Der Undertaker ist für mich die größte Legende, die das Wrestling je hervorgebracht hat! Ich stelle ihn daher auch über Leute wie The Rock, Steve Austin oder Hulk Hogan.   Mit seinem einzigartigen Gimmick, der unglaublichen Streak und unzähligen Klassiker-Matches hat er mehr Geschichte geschrieben als jeder andere! Und auch heute noch liebt er das Geschäft, trainiert Jahr für Jahr (bzw. dieses Jahr sogar zweimal) auf ein Match und zieht nach wie vor alle in den Bann, wenn der berüchtigte Gong ertönt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Zedwrote on 14.07.2015:[10.0] "Man sollte beim Undertaker weder nur die Ring Präsenz als auch die heutige zeit bewerten, sondern die gesamte Karriere. Er ist schon sehr lange dabei, mittlerweile nur noch ein One Hit Wonder, aber das was er in diesem Business alles erreicht hat und den eindruck den er hinterlassen hat das ist einmalig. deshalb kann man da nur 10 punkte geben, für die gesamte Karriere, die Präsenz des Gimmicks, diese spezielle Aura, seine Streak und alles was er dem Wrestling gegeben hat. Bitte komplett bewerten, nicht nur teile von ihm."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MoeHartmanwrote on 21.06.2015:[8.0] "The Undertaker is excellent as a character and has been involved with countless memorable storylines, but much of that has to do with booking. He became a decent talker as his Big Evil character in the early 00s, but his more traditional Deadman character gets by on appearance more than anything, especially his elaborate entrances. In the ring he is good but not as great as many people suggest. For a man his size, he moves incredibly well, and he seems to be a safe worker, but ironically, his best work has almost always come when he threw caution to the wind, such as in his famous matches with Shawn Michaels. He is reliable and his character ensures that he will always be watchable, but he usually was not especially entertaining unless he had a good opponent."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kevin434wrote on 14.06.2015:[7.0] "Ich habe ihn schonmal mit einem anderen account mit 10 punkten bewertet. Nunja, mittlerweile bin ich anderer Meinung, klar ist der Deadman gut und eine unsterbliche Legende, jedoch ist er für mich im Ring nicht auf Shawn Michaels Niveau, er hat einfach diesen unsterblichen Charakter den es so schnell nichtmehr geben wird, am mic war er, wenn er es mal hatte, gut, charisma hat er selbstverständlich auch, das war sogar ziemlich gut, im ring würde ich ihn nur 7/10 punkte geben."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ezewrote on 02.06.2015:[10.0] "Was lässt sich über das Phenom noch sagen..  Ein Mann der hinter der WWE steht wie sonst nur Vince persönlich.  Er ist der größte Star den diese Industrie jemals gesehen hat, mit einem Gimmick welches bei jedem anderen gefloppt wäre. Doch der Deadman wusste sich stehts neu zu erfinden und das Mysterium hinter seinem Charakter zu wahren.  Er ist der wahrscheinlich letzte Verfechter des Kayfabe und vielleicht auch das letzte Gimmick seiner Art.  Der Grund wieso all die gennanten Aspekte zu gut zusammen gewirkt haben liegt darin, dass der Taker für seine gigantischen Maße sehr agil ist weshalb er auch nicht mit klassischen Big Man zu vergleichen ist.  Er ist schlichtweg ein guter Wrestler mit Aktionen die beinahe so viel Prestige haben wie er selbst.   ABER leider ist der Gute seit geraumer Zeit nur noch ein Schatten seinerselbst, was in dem Alter und bei einer 31 Jahre langen Karriere kein Wunder ist. So sehr ich mich auch freue ihn zu sehen schaden die Wrestlemania Auftritte der letzten Jahre nur seinem Vermächtnis und nehmen jungen Talenten den Platz auf der Card weg.  Es ist nun die Zeit den Platz frei zu machen, und den Charakter des Undertakers in Frieden ruhen zu lassen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jbbhammywrote on 15.05.2015:[10.0] "How anyone could give him less than 10 points is beyond belief. Probably the best the WWE has ever had. Definitely in the top 5 of any real fan's list. His Wrestlemania streak is legendary. He has one of the best movesets the WWE has ever had and was part of some of the best matches and feuds wrestling has ever seen. In my opinion, the Deadman has the best entrance ever. He deserved a longer World Title run than he ever did have, but even without the World Title at stake, his matches were always the matches that everyone looked forward to. Amazing wrestler, amazing man. I don't think there will ever be another Undertaker. We were lucky to have him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WrestleArtswrote on 14.05.2015:[8.0] "Guter Entertainer, das American Badass Gimmick hat jeodch gezeigt, dass, wenn man die ganzen Smoke and Mirrors Effekte wegnimmt, "nur" einen guten Wrestler mit guter Ausstrahlung und durchschnittlichem Micwork hat. Wie gesagt, wrestlerisch einwandfrei, aber auch hier wird viel geschummelt, viele Dives und Spots, gebumpe, keine Big Man-Psychology etc. Über den heutigen Mister Magoo Look sage ich mal nichts."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MAGICIANwrote on 02.05.2015:[10.0] "Da muss man nicht viel zu schreiben. Der Undertaker ist mit Abstand der beste Superstar, der jemals einen WWF-Ring betreten hat und auch je betreten wird. Das beste Gimmick, die besten Fehden und die meisten 5* Matches gehen auf sein Konto (oder er war zumindest wichtig für diese Fehden wie z. B. bei Austin vs McMahon). Grandioses Micwork und eine atemberaubende Ausstrahlung.  Zusammenfassend: Niemand kann ihm auch nur ansatzweise das Wasser reichen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MusSanwrote on 25.04.2015:[10.0] "Einfach eine Legende. Jeder seiner Auftritte hatte Impact. Was mir nicht gefallen hat, dass die WWE aus ihm damals einen patriotischen Biker gemacht haben, aber zum Glueck haben sie ihm sein altes Gimmick zurueck gegeben.  Mit Kane hat er ein geiles Team gebiltet, The Brotherst of Destruction, einfach genial. Sogar seine Wrestlemania Sterak finde ich klasse, schade , dass sie Brock Lesnar brechen durfte. Seine bisslang letzte Wrestlemania Fehde gegen Bray Wyatt hat mir nicht gefallen, er war quasi nicht dabei, erst beim Match tachte er auf. Bei der Wrestlemania 32 gegn Sting noch ein match besteiten und dann sollte er Scghluss machen. Solche Gimmicks wie , das vom Undertaker werden wir in der heutigan Era nur selten sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Swenson 238wrote on 12.04.2015:[10.0] "Der Undertaker ist einfach nur ein Phänomen des Wrestlings. Schon mit 7 Jahren ('94) war ich einfach nur fasziniert von seiner Art und seinem Gimmick. Leider hat er meiner Meinung nach so langsam seinen Zenit überschritten und er hätte mit einer bestehenden Streak in den verdienten Ruhestand gehen und so den Mythos für die Ewigkeit aufrecht erhalten sollen. Die 10 Punkte bekommt der Taker für sein Lebenswerk, nicht für seine aktuellen Leistungen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RavenEffectwrote on 11.04.2015:[10.0] "Greatest and most respected big man of all-time, who really deserves a spot in WWE Hall of Fame for his work and loyalty for this business, as he has supported several undercard wrestlers in backstage, dared to stand up against Kliq, he comes along with anyone who respects him, and is also pretty cool guy outside the wrestling. He has been in several high class feuds/matches with the guys like Shawn Michaels, Triple H, Edge, Batista, Brock Lesnar etc. And even though the Streak is over, that doesn't make him less legendary than he is. Real legend. Respect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: zackwoowoowooryderwrote on 24.03.2015:[10.0] "Der Beste der jemals in einen Wrestlingring gestiegen ist, in jeder hinsicht einfach nur vollkommen, es gibt in meinen Augen keinen der ihm das Wasser reichen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: pfuschiwrote on 07.03.2015:[10.0] "Full 10!  Undertaker is the greatest gimmik/character ever, he is the MAN and he always will be. Most respected WWE star, maybe ever.  great as a heel or face.  loved him since the first day he arrived in 90, I will be at the Hall of Fame when he goes in."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: eldenaaaaawrote on 19.02.2015:[10.0] "A man who needs no introduction. A gimmick like no other, paired with agility and size never seen before. A former 3X WWE World Heavyweight Champion, Tag Team Champion and Hardcore Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Luka Modricwrote on 10.02.2015:[10.0] "Best gimmick of all time. Best big man wrestler of all time. This man has been capable of getting great matches against opponents like Batista, Mark Henry or Khali. Whenever he stepped into the ring, he captured your attention all the time. Personally, the first match I've seen was his Punjabi Prison Match against Big Show nine years ago, I discovered wrestling with him. At first, I even feared him. So much greatness."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Viper99wrote on 04.02.2015:[10.0] "Als Bad Ass und Ministry Taker ein ernstzunehmender Heel!  Als Face fand ich ihn nie besonders gut. Er war einfach 0815 Licht aus, kam, Chokeslam und geht wieder! Hatte dennoch auch als Face einige sehr sehr gute Matches bzw. Fehden wie zb. Gegen Edge, Randy Orton, HBK oder Triple H.  Hat in den letzten 2 Jahren aber rapide nachgelassen. Was natürlich an seinem alter liegt. Gerade in dem Match vs Punk hat man gesehen das er klar durch das Match gezogen wurde.  Dennoch bekommt er da er mal Richtig stark als Heel war und Nicht Schlecht als Face war, einige gute Matches bzw. Fehden hatte und ein Mann ist der sich auch noch als "alter Hase" den hintern aufreisst 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: austin1987wrote on 03.02.2015:[8.0] "Sein Gimmick ist eines der Besten was die WWE hervorgebracht hat. Hatte viele gute Fehden und viele Matches, welche heutzutage richtige Klassiger sind. Dennoch muss ich 2 Punkte abziehen da er im Ring einfach gute Gegner braucht um ein tolles Match zu liefern. Außerdem konnte er mich am Mic nie wirklich überzeugen, ich weiß das wenige Sprechen gehört zu seinem Gimmick aber als Biker "durfte" er Sprechen und da waren seine Promos auch nicht das Gelbe vom Ei."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheUndertaker456wrote on 26.01.2015:[10.0] "Also, wo soll ich denn anfangen..... Ich weiß nicht recht, denn am Undertaker gibt es eigentlich nicht wirklich irgendetwas zu kritisieren.  Mein absoluter Lieblingswrestler war er schon immer und für einen über 2m Riesen hatte er ein erstaunliches Repertoire an Moves.  Seine Matches waren zu Glanzzeiten nahezu immer perfekt, vor allem die legendären Hell in a Cell-Matches mit Shawn Michaels, Triple H, Mankind, Batista usw.  Im Alter war er vom Gimmick her am Höhepunkt , aber in den letzten zwei Jahren merkte man, dass er nicht mehr so gut in Form ist. Nicht nur zuletzt wegen seinem Match gegen Brock Lesnar, wo er gut 10kg leichter und erheblich untrainierte aussah, sondern auch die langen Pausen in zw. den Matches.  Mit einem Kampf gegen The Shield versuchte man wieder den Deadman ins Wochenprogramm einfließen zu lassen, aber leider vergeblich.  Alles in allem ist und bleibt der Undertaker weiter mein all-time favourite und ich hoffe, dass ich ihn bei einem finalen Kampf nochmal zu Gesicht bekomme und er auch einen dementsprechend würdigen Abgang machen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DerLandvogwrote on 21.01.2015:[10.0] "Unglaublich starker Wretler gewesen. Einer wenn nicht sogar mein absoluter Lieblingswrestler in der Kindheit und jetzt immer noch. Auch das Gimmick hat 1A gepasst. Ich finde es unter anderem auch erstaunlich, dass er mit dieser Statur so ein gutes Wrestling und auch so eine Athletik hinbekommen hat. Respekt an The Undertaker!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RooneyDXwrote on 04.01.2015:[10.0] "Er ist mein absoluter Lieblings Wrestler. Wenn er aufhört wird immer bei der wwe etwas fehlen. 10 Punkte, weil er sein Gimmick nahezu perfekt spielt und kaum kayfabe bricht. Best Ever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BEROwrote on 30.12.2014:[10.0] "Der mit Abstand beste Wrestler den es gab. Egal ob als Biker oder als Sensenmann mich hat er immer fasziniert und beeindruckt. Mit 208 cm ist es nicht leicht so beweglich und schnell zu sein wie der Undertaker und dafür gebührt ihn mein Respekt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ggultra2764wrote on 25.12.2014:[10.0] "Easily among the greats in professional wrestling, the Dead Man's character has been able to stand the test of time as being the last of WWE's great over-the-top gimmicks from its Golden Era for nearly a quarter century. Taker's been able to change up his gimmick during differing periods in WWE and has been able to add or alter aspects of his character and moveset to keep it fresh in the minds of WWE fans. For a man his size, he is surprisingly agile as he can walk the ropes and whip out suicide dives. While nowhere at the level of anyone like The Rock or CM Punk, the Dead Man can also cut good promos that go along well with whatever stage of his career in which he portrayed his gimmick as the Dead Man or American Bad Ass/ Big Evil."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Y2J316wrote on 28.11.2014:[10.0] "Der Erste Wrestler den ich im TV sah und er ist und wird immer einer der allerbesten sein. So viele Legendäre Matches und Momente mit ihm. Am Meisten mochte ich ihn als Biker und als Ministry um 99 rum. Seine letzten Matches mögen zwar noch gut gewesen sein aber auf den letzten bildern sah er doch ziemlich am ende aus. Auch er ist sicher in der Hall of Fame wenn es denn vorbei ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Muyo90wrote on 23.11.2014:[8.0] "Definitiv eine Legende der WWE. Unfassbare Matches gegen HBK, Triple H oder CM Punk bei WM abgeliefert. Sein Gimmick ist an Mystik kaum zu überbieten. Ein großartiger Wrestler. Und trotzdem habe ich etwas wichtiges zu kritisieren. Sein Karriereende kommt für mich 2 Jahre zu spät. Praktisch trainiert er seit 3 Jahren nur noch für das jährliche WM-Match. Finde ich nicht so prickelnd und auch seine Leistungen noch vor 3-4 Jahren waren stärker als z. B. dieses Jahr gegen Brock Lesnar. Wobei man anmerken sollte, dass es eine Schande ist das Brock Lesnar die Streak brechen durfte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AwesomeAlbertsenwrote on 23.10.2014:[10.0] "Diesem Mann kann man nur 10 Punkte geben. Bis hin zu seinen letzten Matches konnte er im Ring immer überzeugen. Am besten hat er mir jedoch von 08-11 gefallen, wobei auch sein Bad Ass Gimmick nicht schlecht war. Beeindruckend war auch seine Beweglichkeit im Ring und sein Highflying. Aber noch besser, als im Ring, war er am Mic. Es gibt nicht viele, die eine so unfassbar emotionale und perfekte Promo halten kann. Vor allem im DeadManGimmick. In meinen Augen der beste Wrestler und Entertainer, den es je gegeben hat und für mich das wahre Gesicht der WWE.  Aber im Alter von 49 sollte er langsam über ein Karriereende nachdenken. Denn noch sind seine Matches von guter Qualität, aber das wird nicht ewig so bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kick-Out-At-Twowrote on 15.10.2014:[10.0] "The Undertaker.. einfach nur eine 10. Wohl der glaubwürdigste Charakter in der Geschichte der WWE. Von seinem Intro bis zum Ringong des Sieges wohl auf ewig unverwechselbar. Trotz seiner gigantischen Statur früher unglaublich gute und vielseitige Ringfertigkeiten und Teilnehmer vieler Legendärer Kämpfe, die ihm allerdings auch einen großen Gesundheitstribut gezollt haben. Das einzig negative könnte man in diesem Punkt sehen , das er den Ausstieg verpasst hat.. während er beim Kampf gegen Punk noch in sehr guter Verfassung war , traf mich fast der Schlag als er gegen Brock Lesnar in den Ring trat , nurnoch ein Schatten seiner selbst.  Für sein "Lebenswerk" wäre aber alles andere als eine 10 eine Beleidigung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JamieRollinswrote on 04.10.2014:[7.0] "Never a 9 plus superstar wrestler, not a much in ring ability to have a 9 plus rating. Could wrestling record but the rating must take into account for wrestling ability also."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mrjoshdudewrote on 29.07.2014:[10.0] "One of the greatest wrestlers of all time. Probably the second most recognisable wrestler just behind Hulk Hogan, Undertaker has been an icon in pro wrestling for over 20 years. He's had one of the most enduring characters in history and probably the greatest gimmick of all time. Obviously he's had the streak which will be remembered forever, probably the best draw in the business for the last 10 years or so. Beyond his status in the wrestling business he's actually a pretty awesome wrestler when he's against the right guy. His three matches with HBK in 1997, 2009, and 2010 in particular stand out, but also his matches with Edge, CM Punk, and Batista have also shown he can definitely go. You can't really give him any less than 10 here."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WweFanwrote on 24.07.2014:[10.0] "Er ist die größte Legende die die wwe jemals hat und haben wird. Da kommet auch kein rock stone cold oder hogan ran. Dieses Gimmick und moveset ist mit keinem andern Wrestler zu vergleichen... Eigt sollte man 11 Punkte geben dürfen... Aber eins noch. Es ist eine Schande das die größte streak der Welt durch einen Wrestler wie brock lesnar gebrochen wurde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Muxxelwrote on 11.06.2014:[10.0] "Eine absolute lebende Legende die alles erreicht hat und ich hoffe das wir Ihn irgendwann nochmal sehen zu einem letzten Match!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: J-Gwrote on 06.06.2014:[10.0] "er ist einer der besten Wrestler überhaupt, hat ein großes Move-Set und auch am Mic hervorragend, er verliert auch sehr wenig Kämpfe, leider hat er bei wrestlmania xxx gegen Brock Lesnar verloren, ich hoffe er kämpft nächstes Jahr ber Wrestlemania xxxi gegen Sting und besiegt ihn"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CREMATORwrote on 16.05.2014:"Ich bin mit dem Undertaker groß geworden! Es gibt keinen Wrestler der größer als der Taker ist. Und es wird nie wieder einen geben der dem Taker nahe kommt. Zu seiner Streak. Insider wissen zufolge, hatte der Taker mitten im Kampf gegen Lesnar ein Gehirnerschütterung bekommen, wonach meiner Meinung der Taker nicht mehr in der Lage war zu gewinnen. Selbst ein Kind hätte den Taker in diesen Zustand ausgenockt. Doch Vince McMahon gab vor dem Match jedem den ausdrücklichen Befehl, das das Match unter keinen umständen abgebrochen werden darf. Für den Taker selbst war eigentlich nicht geplant das er verliert. Vince jedoch billigte ein brechen der Streak.  Lesnar hat nicht gewonnen, er hat einen kranken Mann der nicht mehr kämpfen konnte im Ring gebrochen, gedemütigt. Damit er sich jetzt als Brecher der Streak feiern lassen darf. Und Heyman dieser ******* behauptet auch noch dies war sein werk. Pfui auf Heyman und all Heyman Guys!   Ich wünsche dem Taker gute Besserung und einen verdienten Ruhestand als der der er ist, The Phenom, das Mysterium, der Undertaker der nicht zu besiegen ist. Die Streak wurde für mich durch Krankheit gebrochen und nicht durch Lesnar!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: wwefan98wrote on 11.05.2014:[10.0] "Ganz klar einer der besten die es jemals gab und geben wir. Nur ich habe immer gedacht das Shawn Michaels der einziege Wrestler ist der die streak brechen kann und alls der das nicht geschaft hat habe ich gedacht die wird von niemanden gebrochen. Doch was bei Wrestlemania 30 passierte damit hätte ich niemals gerechnett das ein Wrestler wie Brock Lesnar der kaum in den Shows autriet die streak brechen kann. einfach nur dumm sowas zu machen. Aber so ist er einer der besten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Steenericowrote on 03.05.2014:[6.0] "Er mag zwar eine Legende sein, ich finde ihn aber trotzdem etwas overrated - genauso wie einige seiner Wrestlemania Matches, von denen mich nur wenige überzeugen konnten. Vom Wrestlerischen her gibt es da für mich einige bessere Wrestler. Er ist zwar gut, aber nicht überragend."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ArtyomCorleonewrote on 02.05.2014:[10.0] "The most scariest wrestler ever, which at impressive dimensions always showed not only the tremendous power, but also extraordinary dexterity."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AJLeeLoverwrote on 23.04.2014:[10.0] "Hab damals sein Debüt gesehen (ja, ich bin schon so alt) und war sofort fasziniert und begeistert. Ok, er hat sich über die Jahre noch um einiges besser entwickelt, aber mir war damals schon klar, das ich da was besonderes sehe. Er war für mich auch nie wirklich schlecht gewesen (mal vom Biker Gimmick abgesehen). Aber sobald das Licht aus geht und der Gong ertönt bin ich sofort wieder gefesselt. Schade, das die Karriere wohl jetzt zu Ende ist, aber es war wohl die eindrucksvollste Karriere im Wrestling (zumindest für mich). Für immer mein Lieblingswrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Edge and Christianwrote on 20.04.2014:[10.0] "Nach 3 Jahren Pause muss ich sagen, dass der Undertaker mich immer noch genauso begeistert, wie er es tat, als ich aufgehört habe zu schauen!  Seine Arbeit am Mic ist perfekt, da sie sein Gimmick perfekt unterstreicht, und seine Aura, die ihn seit Jahren umgibt, ist einmalig.  Egal ob als Face, als Heel oder als Biker... er war nie schlecht!  Mittlerweile ist er leider in die Jahre gekommen aber ich denke mit dem Ende der Streak ist endlich eine enorme Last von seinen Schultern genommen wurden, da er wahrscheinlich selbst nicht weiß, ob er nochmal in den Ring steigen wird und kann... (auch wenn es wirklich traurig ist) Auf jeden Fall wird er einmal ein Hall of Fame-Mitglied, den er ist eine LEGENDE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CrIppIL3RTIRiXwrote on 17.04.2014:[8.0] "Das hier ist dem Mann mit dem besten Gimmik der 90 Jahre. Mit der Zeit langweilte er mich immer mehr, aber zu seiner Biker Zeit fand ich ihn einfach genial. Worken kann/konnte er gut, denn meiner Meinung nach sollte Mark mit 49 Jahren die Boots an den Nagel hängen... Sonst gibt es noch zu sagen das Taker vor 5 Jahren hätte aufhöhren sollen und mit Michaels zusammen die WWE, WWE lassen sollen.  Anschließend gibt es zu sagen das er durchaus eine Berechtigung hat in der Wrestlingbrange und das seine Legände für immer leben wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: yanuswrote on 10.04.2014:[9.0] "One of the best big men in the history of this business. Undertaker is really a legendary figure, with a gimmick that is so memorable that even people who stopped watching wrestling a long time ago still remember him. I'm not giving him a 10 because of his poor mic-skills and the first half of his career, when he was very underwhelming in the ring. He was never really a " draw" , but nonetheless will be forever remembered by his fans."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Y2J Problemwrote on 09.04.2014:[10.0] "Eine andere Bewertung als 10 für diesen Mann ist eigentlich nicht möglich. Wer es schaft 2 1/2 Jahrzehnte mit einem eigentlich zum Scheitern verurteilten, wenn auch für ihn perfekten, Gimmick ganz ganz oben steht, der muss einfach unglaublich talentiert. Am Mikrofon wohl in den Top 3 aller Männer, die je in den Ring gestiegen sind und auch im Ring stark, mit den richtigen Leuten in der Lage, All-Time Classics abzuliefern, wie er es so oft getan hat. Eine, DIE, Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DaNiwrote on 08.04.2014:[10.0] "... dann ist es jetzt wohl an der Zeit den Mann zu bewerten, der mich seit vielen Jahren vor die Bildschirme gefesselt und mich in jungen Jahren für die WWE begeistern konnte. Über Jahre zog mich das Gimmick, die Ausstrahlung und die " Unbesiegbarkeit" des Undertakers in den Bann. Über all die Zeit reduzierte der Taker zwar seine Auftritte, trotzdem sorgte er mindestens einmal im Jahr für einen schönen Augenblick im Wrestlingalltag. Falls er nun die Stiefel an den Nagel hängt, dann hat er den Bogen gerade so nicht überspannt und kann auf eine geniale Karriere zurückblicken welche es so niemals gab und vermutlich auch nie mehr geben wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Lupus Immortaliswrote on 08.04.2014:[10.0] "Es wurde Zeit, die Bewertung mal anzupassen, bzw. den Kommentar dazu. An der Bewertung selbst ändert sich natürlich nichts, gebrochene Streak hin oder her, denn dieser Mann hier ist trotzdem eine Legende. 10 Punkte, fertig, aus die Maus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Whitebear710wrote on 08.04.2014:[9.0] "Eine wahre Ikone und sicher auch ein risen Vorbild für viele Nachwuchswrestler. In der Ministry und als Biker einfach klasse, danach etwas unauffälliger, aber trotzdem gut. Mit seiner Streak hat er einen wahren Meilenstein geschaffen. Deren Ende ist sehr schade, aber sicherlich auch ein guter Grund sich zur Ruhe zu setzen. Das Match bei Wrestlemania XXX hat deutlich gezeigt, dass er nicht mehr der großartige Performer ist den wir kennen. Durch seine großen Verdienste einer der Top-Guys im Geschäft, aufgrund der letzten Jahre mit nur einem Auftritt bei Wrestlemania und keiner vernünftigen Storyline dahinter (jedes Jahr will jemand die Streak brechen) gibt es einen Punkt Abzug. Insgesamt hochverdiente 9 Punkte!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kaydens Krosswrote on 05.04.2014:[8.0] "Seit seinem Comeback als Deadman vor 10 Jahren nur noch langweilig. Schlechte Streak-Storylines, wenn man diese überhaupt so nennen kann. Natürlich ist er dafür nicht verantwortlich, aber bei all seiner Backstage-Macht könnte er doch einmal gute Stories einfordern, wenn er denn schon nur einmal im Jahr auftritt. Als Biker solide, in der Ministry großartig und davor auch gut. Ein sehr guter Wrestler, der aber aufgrund seiner Verdienste für die WWE auch hier häufig überbewertet wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Macho Madnesswrote on 01.04.2014:[10.0] "Was kann man noch zu diesem Mann sagen, was nicht schon gesagt wurde.. für mich die Ikone des Pro-Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JeffHardy3107wrote on 05.03.2014:[10.0] "Reicht hier nicht nur ein Wort: LEGENDE! ? Ich meine schon. Der Undertaker haut mich immer wieder aufs neue um, immer wieder Gänsehaut, wenn er die Halle betritt einfach klasse. Er ist nicht oft da, aber wenn er da ist, liefert er so gut ab, wie es sein Körper zulässt. Die Mania-Matches sind einfach erste Sahne! Freue mich sehr auf sein Match mit Lesnar. Wenn einer eine 10 verdient hat, dann der Undertaker!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Chavo Guerrerowrote on 05.03.2014:[10.0] "The Undertaker-was soll man da noch schreiben? Definitiv eine Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TakerFanwrote on 01.03.2014:[10.0] "Eine Legende, die wie sonst kaum jemand vor ihm das Wrestling-Business geprägt hat. Er hat in seiner Karriere unzählige Klassiker bestritten und sein Gimmik ist einfach nur Kult. Auch im hohen Alter noch zu großartigen Leistungen fähig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WWELover4everwrote on 20.02.2014:[10.0] "This article is a very good source of information about the Undertaker, a lot better than the other sites I've seen his information on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Duncan09wrote on 10.02.2014:[4.0] "Was die Leute an dem Kerl immer fanden? Völlig überbewertet, langweilige Matches, das Gimmick rockte nur in der Anfangszeit -92. Danach langweilte er mich immer mehr. Aus Respekt vor der langen Karriere 4 Punkte!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Stefan24wrote on 07.02.2014:[10.0] "@Mahir Duzan Ehrlich? Undertaker und Lesnar 0 aber Sheamus und Orton 10 Punkte? For real? naja egal Einer der besten Wrestler überhaupt. Und seit vielen vielen Jahren der WWE treu. Hatte coole Gimmicks. Und meiner Meinung nach verdient er die Streak bei Wrestlemania"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HereComesThePainwrote on 04.02.2014:[8.0] "WM-Streak, Liebe für das Business und fantastische Matches selbst noch im hohen Alter. 10 Punkte gibts deshalb nicht, weil mir der Hype um sein Gimmick und so weiter und sofort viel zu sehr auf die Nerven geht. Als Wrestler top, als Deadman flop. Da gefällt mir Kane tausendmal besser."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: J0KERwrote on 23.01.2014:[10.0] "Der Undertaker eines der besten der besten der besten! Seine Siegesserie unschlagbar. Hat eines der besten Gimmicks die WWE jemals hatte. Hat eines sehr guten Mic Work hat mich bis heute immer überzeugt bei seinem Promos. Ebenso ein sehr guter Wrestler für seine Größe und Alter ist er sehr gut im Ring und hat sich all die Jahre weiter entwickelt. Hat sehr gute Fehden hervorgebracht. (vs. Edge, HBK, HHH, Batista, Kane, Lesnar, Austin) Ebenso liebt er Wrestling und zeigt es auch in seinem Matches und ist schon über 20 Jahre in der WWE angestellt und ist Treu geblieben zu seinem Arbeitgeber! Respekt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Lord Steven Regalwrote on 21.01.2014:[10.0] "Was kann man noch sagen, was noch nicht gesagt wurde? Lebende Legende, auch wenn gesundheitsbedingt jedes Jahr nur sein Wrestlemaniamatch macht"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RepoManwrote on 10.01.2014:[10.0] "Hier wurde eigentlich alles gesagt, der Mann wird immer eine Ikone bleiben. Ich hoffe er geht nicht zu früh in Rente, in ihm stecken noch ein paar Matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker1993wrote on 30.12.2013:[10.0] "Dieser Mann ist wirklich eine Legende, dazu auch noch mein absoluter Lieblingswrestler. Ich meine er ist unter anderem über 2 Meter und zeigt Aktionen eines Highflyers (den Top Rope Plancher). Zudem gefällt mir an Ihm auch sein Durchhaltevermögen, denn obwohl er gesundheitliche Schäden hat, giebt er dennoch immer sein Bestes. Für mich der beste den es jemals gab. Es passt einfach alles, das Gimmick, die Person dahinter, die Fähigkeiten am Mic sowie seine Fähigkeiten im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: apc24wrote on 17.12.2013:[9.0] "The Deadman is a Phenom for a reason. He's been an icon wrestling once he dawned the Undertaker gimmick. He has the ability to work great matches but somehow ends up having the opposite, mostly when working matches with big/bigger opponents (Kane, Big Show, etc. )"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JoTewrote on 28.11.2013:[10.0] "Mein absoluter Lieblingswrestler und eine absolute Legende. Habe seine Eingangsmusik als Klingelton auf meinem Handy"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dreamforcewrote on 25.11.2013:[10.0] "Undertaker ist schlicht und ergreifend die größte Legende, die die WWE geschaffen hat und der Wrestler mit den meisten großen Matches von allen. Er hatte in der Vergangenheit viele interessante Storylines und konnte in jedem Gimmick und gegen jeden Gegner sehr gut überzeugen. Wenn der Gong seiner Entrancemusik ertönt baut sich in einem sofort Spannung und Freude auf und seine Präsenz allein kann Fans bannen. Leider trat in den Jahren nur noch seine Streak in den Vordergrund, was aufgrund seines Alters verständlich ist, jedoch ihn immer weniger überzeugend wirken lässt, da er quasi nur noch 3x im Jahr oder so auftaucht, sein Match an WrestleMania bestreitet und auf das nächste Jahr wartet. Deshalb denke ich, dass er vielleicht an der Zeit für ein Ende der Karriere wäre, damit man ihn als die Legende in Erinnerung behält, die er ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AS-STYLEwrote on 23.11.2013:[10.0] "The Phenom of the WWE. Mein absoluter Lieblingswrestler, was sich bis zum heutigen Tage nicht geändert hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SoRoNwrote on 11.11.2013:[10.0] "einfach eine lebende legende! sein auftreten seine aura einfach alles ist genialst! großen respekt vor diesem mann!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Lenz91wrote on 05.11.2013:[10.0] "Undertaker, was soll man zu diesem Mann sagen.  Gimmick: Das wohl bekannteste, spektakulärste und aufrecht erhaltenste Gimmick der ich würde sogar sagen Wrestlinggeschichte. Kein Gimmick hat die Jahre so gut überstanden wie Undertaker.  Technik: Klar Undertaker is groß und vielleicht nicht der schnellste, aber für seinen Körper zeigt er Hammer aktionen, man denke nur an den Suicide Dive übers oberste Seil. Und auch allgemein find ich sein Moveset passend zu seinem Gimmick Ich behaupte das ein Undertaker mitterweile schon einen Hulk Hogan und Bret Hart überholt, was den Legendenstatus angeht. Den trotz seines emensen Alters zeigt er immer noch auch wenns leider nur zur WrestleMania ist hammer Matches. Man weiß zwar eigentlich vorher das Undertaker gewinnt, aber dennoch finde ich durch den Aufbau die Matches dermaßen spannend, das man oft denkt WOW er hat es tatsächlich geschafft nochmal aus dem Cover rauszukommen. Ich bin echt gespannt wie viel noch kommen wird, hoffe aber das er vielleicht bei 22-0 Schluss macht, und sich anderen Aufgaben in der WWE stellt, als als Road Agent, Trainer oder sonstiges. Taker hat ahnung vom Buisness und ihm vielleicht allgemein paar Fäden in der WWE ziehen zu lassen würde ihr bestimmt nicht schaden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Daneraswrote on 03.11.2013:[9.0] "Nein! Warum wurde sein Gimmick verändert? Zu seiner Zeit als Undertaker war er der beste Wrestler überhaupt. Ich habe ihn ständig bewundert, und war ein grosser Fan von ihm. Es hat mich so oft genervt, wenn die anderen Wrestler ihn häufig gestört haben. Aber ich muss sagen, sein Gimmick war super! Dann hat es sich etwas verändert, und es hat auch seine Image etwas kaputt gemacht. Schade!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ProRedstonewrote on 02.11.2013:[10.0] "Ganz klar eine Legende, das einmalige auftreten macht ihn noch ein wenig besonderer !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Chris1201wrote on 02.11.2013:[6.0] "War mal richtig Klasse, ist aber viel zu alt und soll bitte in den Ruhestand gehen, weil ich ihn nicht irgendwann mal im Rollstuhl sehen möchte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: deadfru5wrote on 21.10.2013:[9.0] "Gutes Wrestling, ein fantastisches Gimmick, grandiose In-Ring Physik und eine großartige Konstanz. Der Inbegriff Wrestlemanias und des WWE-Wrestling im großen und ganzen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gandalfwrote on 14.10.2013:[10.0] "DIE Legende im Business und seit fast 20 Jahren mein Lieblingswrestler. Leider derzeit Alters- und Verletzungsbedingt nur noch sporadisch zu sehen. Sollte aus meiner Sicht bei WM 30 noch mal ein großes Match liefern und sich dann aber von der aktiven Bühne verabschieden. Und dann: Hall of Fame!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Slyderwrote on 06.10.2013:[10.0] "Was muss man zum Undertaker sagen? Selbst Leute, die nichts mit der WWE zutun haben, kennen ihn.  Hat ein ziemlich guten Kampfstil, der zum " Gimmick" passt. Das einzige, was mich etwas stört ist, das er seit einigen Jahren nur kurz für WM auftaucht um nach seinem Match instant für ein Jahr zu verschwinden.  Ich hoffe, das die WWE seinen Streak niemals brechen wird. Einfach DAS Phänomen und selbst nach dem 50. Jahr mit der selben Entrance immer noch Gänsehaut, einfach episch! 20/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kid Rockwrote on 06.10.2013:[10.0] "Der Undertaker ist für mich allein von seiner historischen Duftmarkensetzung innerhalb der WWE her (weiterhin) die größte Legende in dem Buisness. Dazu kommt das mit Sicherheit stärkste und faszinierendste Gimmick aller Zeiten, welches sich dank seiner konstanten Entwicklung über die Jahre auch nie wirklich abgenutzt und stattdessen dafür gesorgt hat, dass der Deadman während seiner gesamte Karriere über eine derart machtvolle Aura der Unberührbarkeit und Dominanz ausgestrahlt hat, dass man nicht anders kann als (immer noch) fasziniert zu sein, wenn er die Arena betritt. Durch seine enorme physische Präsenz und Souveränität wirkte es auch nie aufgesetzt und der Taker konnte seinen Status auch regelmäßig mit (wenn auch nicht in jeder Phase seiner Karriere) brandstarken Leistungen im Ring rechtfertigen, die ihm zurecht als einen der besten Big-Men im Mainstream-Bereich, vielleicht sogar in der gesamten Industrie auszeichnen. Kaum einer versteht es das Big-Match-Feeling während seiner Kämpfe dermaßen intensiv zu vermitteln wie der Deadman, dessen Verdienste für die WWE und dem Buisness allgemein unübertroffen bleiben. Dass das Alter ihm bereits deutlich zu schaffen macht, lässt sich kaum wegdiskutieren, es spricht aber wieder mal für den Deadman, dass er auch das in eine sinnvolle Entwicklung seines Gimmicks hin zu einem verletzlicheren, abgekämpften Veteranen mit einbaut und auch in dieser ungewohnten Rolle als Underdog-Undertaker gegen die richtigen Gegner zu fesseln versteht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Testaverdewrote on 22.09.2013:[10.0] "Der Undertaker, ob als stummer, dunkler und mysteriöser Deadman aus dem Death Valley oder als redseeliger, aggressiver, Motorrad fahrender Biker, er zieht einfach jeden in seinen Bann. Seine Fehden gegen Kane, Batista, Edge und Shawn Michaels, haben höchsten Unterhaltungswert, die man sich noch Jahre später ansehen kann. Seine Wrestlemania Siegesserie von 21:0 ist und bleibt einzigartig aber man merkt schon seit längerem das der Zahn der Zeit am Sensenmann nagt, weswegen Ich der Meinung bin das er seine Karriere entgültig beenden sollte also auch nicht mehr bei Wrestlemania antreten. Erreicht hat er schon alles was man im Wrestling erreichen kann und Ich sehe Ihn als zukünftigen Hall of Famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DieOffenbarungwrote on 22.09.2013:[9.0] "Eine Legende.... die vermutlich aufhören sollte! Ich weiß, damit mache ich mir viele Feinde, aber er ist kaum im TV zu sehen! Seine Kämpfe bei Wrestlemania waren zwar immer noch stark, aber ansonsten sieht man ihn gar nicht mehr. Im Ring ohne Zweifel einer der Besten, würde ihm jeder Zeit eine 10 dafür geben. Allein was der Mann trotz seiner Größe im Ring zeigen kann! Am Mikro finde ich ihn eigentlich gar nicht so gut, aber sein Auftreten macht da einiges wett. Die WWE sollte für den Untertaker jemanden suchen der dem Deadman bei Wrestlemania die Streak zerstört. Einfach um einen Schlussstrich zu ziehen und vielleicht ein junges Talent enorm zu pushen. Aber naja, wer weiß wie die Pläne der WWE bezüglich des Untertakers aussehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Leonewrote on 20.09.2013:[10.0] "Without a doubt, 1 of the greatest american wrestlers of all time, and probably the greatest big-man in the history of wrestling.  He was not only very strong in his prime, but also incredibly agile, and he possessed a toughness that could rival the Japanese legends of the industry.  Along with these facts, he is an excellent showman, a great storyteller, and he possesses some of the best in-ring psychology around.  Even in his " old age" he can still hang with the stars in terms of in-ring quality, and often puts on the the best match at Wrestlemania, with and without Shawn Michaels as an opponent.  He is at a point now where getting a chance to wrestle him is like a most-high honour.  He is also 1 of few wrestlers who was able to change with the times.  So well in fact, that it's rare to be bored by him.  10.  Enough said."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: koeddylaemmlewrote on 19.09.2013:[10.0] "The epitome of " evolving to stick to the times" . The Undertaker has been able to captivate audience members and their children... and their children afterwards. The Undertaker's Wrestlemania Streak alone is something of legend that will never be duplicated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[8.0] "Eine Legende, das Phänomen WrestleManias (allerdings ist das auch ziemlich langweilg).. Das Biker-Gimmick zum Anfang des Jahrtausend gefiel mir komischerweise am besten, obwohl er ja der Deadman ist, der ja sonst eher düster und in Schwarz seinen Gegner Angst einflößt. Es gibt diverse großartige Matches, die der Undertaker in seiner langen Karriere ausfochte. Abzüge in der Bewertung bekommt er von mir dafür, dass, wenn er zu sehen ist, dies nur zu WM ist und er auch sonst keine Matches mehr bestreitet, dann soll er wegbleiben. Ich finde die Aufbauten zu seinen aktuelleren Matches eher langweilig, da sie meist nur aus öden Promos bestehen. Und wenn er mal ein Match bestreitet, fällt er mind. ein halbes Jahr aus... Er soll einfach seine Stiefel an den Nagel hängen! Es ist unfair den Workern gegenüber, die sich das ganze Jahr den A**** aufreißen und ihm dann weichen müssen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RKOUnleashedwrote on 23.08.2013:[10.0] "Mark William Calaway der Mann hinter dem Undertaker... es gibt kaum einen der ihn nicht kennt.   Er ist und bleibt The "Phenom" Undertaker... und er soll noch lange weiter Wrestlen !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Palace of Wisdomwrote on 14.08.2013:[6.0] "Eine stark in die Jahre gekommene Legende. Mit dem Gimmik konnte ich nie etwas anfangen, trotzdem hat der Mann meinen vollen Respekt. In den letzten Jahren hat er allerdings deutlich abgebaut und ich wünsche mir ein würdiges Karriereende."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Geneywrote on 10.08.2013:[10.0] "Das beste was es je im Wrestling gegeben hat. Danke Mark für die geile zeit mit dir!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MrFisch5wrote on 01.08.2013:[10.0] "Der Mann der wohl alles erreicht hat was man erreichen muss. In den letzten Jahren waren seine WM Matches zwar immer richtig stark aber ehrlich gesagt will ich jetzt noch eine letzte epische Schlacht um den WWE Championtitel bei Wrestlemania 30 gegen Cena im Main Event und dann kann er sich sehr gerne in den Ruhestand begeben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Great Marinhowrote on 28.07.2013:[10.0] "Einer der besten " Big Man" und eine Legende die seines gleichen sucht!  Schade das seine Karriere sehr bald enden wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Weskerwrote on 22.07.2013:[10.0] "Selbst meine Oma kennt den Undertaker. Warum? Weil er eine verdammte Legende ist. Mehr muss man dazu auch nicht sagen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Boris The Menacewrote on 20.07.2013:[5.0] "I'm not a hater, but in my mind there's no contest about who is the most overrated worker in the history of this industry, it's Mean Mark. Overall a solid wrestler that made it big thanks to a decent mystic gimmick that also saved his career."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sir Vida Loca IIIwrote on 07.07.2013:[10.0] "Die größte WWE-Legende aller Zeiten. Er wurde mit den Jahren immer besser, zeigte zuletzt trotz hohen alters konstand gute Leistungen. Wrestlerisch einem Hulk Hogan meiner Meinung nach Meilenweit vorraus, und auch viel länger am stück aktiv für die wwe. Nun ist die Zeit gekommen in der er sich langsamm aber sicher verabschiedet, es ist schade aber er hat sich seinen Ruhestand mehr als verdient. WrestleMania wird kommen, selbiges trifft auch auf den Deadman zu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fastlane86wrote on 02.07.2013:[10.0] "Mein Lieblingswrestler aller Zeiten. Konnte auch zu späten Zeiten immer gute Matches bestreiten. Das Gimmick ist immer noch brilliant, auch als Biker fand ich ihn super.  Abgesehen dass er die wohl imposanteste Entrance aller Zeiten hat kann ich mich einfach an keine Zeit erinnern, in der er mich gelangweilt oder enttäuscht hätte.  Nur... langsam sollte er mal daran denken, die Wrestlingstiefel an den Nagel zu hängen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LeonAusBOTwrote on 01.07.2013:[10.0] "Als ich 2006 angefangen habe, Wrestling zu schauen war er sofort mein absoluter Favorit. Heute hat sich vieles geändert, aber er ist und bleibt mein absoluter Liebling. Wer das schafft, kann ja nicht so schlecht sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: test85wrote on 08.06.2013:[10.0] "Der größte WWE Superstar aller Zeiten. Ausserdem ist er der Superstar der sich in seiner Karriere am meisten verbessert hat. Auch Menschen die vor 20 Jahren die Wwe verfolgt haben fragen heute noch nach ihm. Unvergessen seine Matches gegen Hart, Edge, Triple H & HBK. Schade das es nie zu einem 1vs1 gegen Jericho auf großer Bühne gab. Sollte er wirklich einmal zurücktreten, dann geht eine Ära des Wrestlings zu Ende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HooliNerdwrote on 10.04.2013:[10.0] "Die epischsten Schlachten in der WWE/WWF im Ring und hat als Deadman für mich das beste Gimmick aller Zeiten. Wrestlemania 29 gegen CM Punk hat es mal wieder gezeigt, dass er es immer noch drauf hat. Seitdem ich Denken kann ist der Taker präsent und ich hoffe noch auf ein paar tolle Matches mit ihm."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jchiofalwrote on 08.04.2013:[10.0] "The Undertaker still is the best wrestler today. His unique combination, of striking, with power moves, and psychology is fantastic. Combine that with his consistent great matches and you have an icon, whose heights of fame will never be touched."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Benji1706wrote on 04.04.2013:[10.0] "Der letzte Wrestler, der irgendwie noch sein Comic-Gimmick aus den 90ern behalten hat. Betrachtet man die ganze Karriere und was der Mann schon alles gemacht hat müsste man eigentlich eine 11 zücken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sebi7wrote on 31.03.2013:[10.0] "einfach einer der besten den es je gab niemand wird an dieses gimmick dran kommen niemand hat sich so gut verkauft wie er es wirkt als wäre er wircklich der ''DEADMAN''"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jack Slaterwrote on 16.03.2013:[10.0] "Auch auf das Risiko hin wie ein Fanboy zu klingen. Undertaker is God! Im Ring einer der besten, den es je gegeben hat. Für seine Körpergröße auch noch unglaublich athletisch, der Typ macht Moves die man sonst nur bei den " Cruiserweights" sieht, ist dazu ein sehr starker Techniker. Seine Gimmicks finde ich beide sehr unterhaltsam. Er war immerhin mein erster Lieblingswrestler. Damals als kleiner Knirps habe ich den Deadman kennen gelernt, der mit der Ministry jedes mal für Gänsehaut und Angst gesorgt hat. Als Big Evil hat er bewiesen das er Mic-Skill Technisch auch als " Badass" punkten kann. Und wenn ein Shawn Michaels schon sagt, dass er mit dem Taker einen seiner besten Fights (bzw. 2) überhaupt hatte. Einer der (future) Hall of Famer die es mehr als verdient haben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheUnderTakerwrote on 08.03.2013:[10.0] "Ich will jetzt mal ganz objektiv bewerten: Der Undertaker , bzw. diese Figur des Undertaker begeistert mich schon seit den 90ern, als ich anfing Wrestling zu schauen. Das Gesamtpaket an Fähigkeit, dieses Gimmick richtig rüber zu bringen; das Talent, bei solcher Größe im Ring als Athlet zu wirken; und dass sich Mark Calaway um alles bemüht, nicht aus der Rolle zu fallen( Bsp. : Einzug Elimination Chamber 2010). Ein weiterer Punkt ist, dass die Figur nie langweilig wird. Es wurde immer wieder Abwechslung geboten, indem man einfach das Gimmick abändert(Ministry of Darkness, American Badass, Big Evil, ... ).  Für mich der Wrestler mit dem besten Gesamtpaket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Titanwrote on 06.03.2013:[10.0] "Mit Sicherheit ist der Undertaker eine lebende Legende des Wrestling-Business, jedoch hätte man ihn vielleicht schon vor nem Jahr oder zwei in Rente schicken sollen. Er bestreitet zwei Dutzend Matches im Jahr,  geht dann in ne Verletzungsauszeit, bestreitet zwei Dutzend Matches, Verletzungsauszeit, usw. Natürlich genießt er ein hohes Standing, aber für ihn selber wäre es vielleicht besser die Stiefel an den Nagel zu hängen. Das Gimmick des Totengräbers ist einzigartig und er selber hat ne Menge verdammt guter Storylines und unterhaltsamer Matches auf die Beine gestellt. Nicht umsonst wurden wegen ihm Matchstipulations erfunden und ausgefeilt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Eagle Whiskeywrote on 06.03.2013:[10.0] "Der Undertaker ist für mich der bester Wrestler und Entertainer, kurzum der beste Superstar im Wrestling Business. Er hat es geschafft ein eigentlich lächerliches 90ger Jahre Gimmick all die Jahre glaubwürdig zu verkörpern und modern zu gestallten. Innovationen wie die Sarg, - lebendig begraben, - Inferno- und hell in a cell Matches sind nicht mehr weg zu denken. Bei jedem seiner Auftritte ist Gänsehaut vorprogrammiert. Für mich auch der Grund warum ich überhaupt Wrestling schaue."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: deathsitcomwrote on 24.02.2013:[10.0] "Der Undertaker ist für mich der perfekte Wrestler. Er hat mich vor 20 Jahren beeindruckt, und ist der Hauptgrund, warum ich nach langer Absenz zum wrestling zurückgekehrt bin und es erst so richtig entdeckt habe. Er hat es geschafft, ein eigentlich albernes 90s-gimmick so zu verkörpern und immer wieder zu modifizieren, dass ich bei seiner entrance immer noch Gänsehaut kriege. Im Ring geht er einen Stil, der perfekt zu seiner Statur und seinem gimmick passt, auch diesen hat er über die Jahre immer wieder erweitert (MMA, submissions u. a. ). Dabei versteht er es immer, eine Story zu erzählen, mit seinem Gegner zu arbeiten und Momenten Bedeutung zu verleihen, moves wie ne flying clothesline werden bei ihm zu ganz großem Kino. Gerade deswegen würde ich jeden Indy-wrestler dazu verdonnern, Undertaker matches zu schauen und zu verstehen, bevor er nen Ring betreten darf. Seine zwei WM matches gegen Michaels sind brilliant, die kann man sich 100 mal anschaun, wenn 5 Sterne dann hier. Seine Karriere ist unvergleichlich, der Undertaker ist jedem ein Begriff, auch ausserhalb der whacky world of wrestling, er transzendiert diese Sphäre wie kein Zweiter. Ein Gesamtkunstwerk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Diggertakerwrote on 13.02.2013:[10.0] "In my opinion, he has the two biggest personas in pro wrestling history. Excelent and fitting move-set and great matches throughout his career — some are the best in history. Watching a match in which he is on it is one of the most satisfying things in pro wrestling. Very few things were bad in his career. There will never be another like him. The most feared and best pure striker in WWE. And if you think I'm exaggerating, just hear a bell in the middle of an cheerful crowd."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: pingumen96wrote on 12.02.2013:[10.0] "Undertaker is the definitive wrestling machine. He is the best wrestler ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Eine lebende Legende der Wrestling: So lässt sich der Undertaker wohl perfekt beschreiben. Es ist nicht nur das beste Gimmick in der Geschichte des Pro-Wrestlings, sondern meiner Meinung nach auch das einflussreichste: Seit Anfang der 90er prägte er die WWE wie kaum ein zweiter und war Bestandteil der größten Momente in der Geschichte der WWE.  Einer der letzten Veteranten und einer der größten Stars, die es jemals gab.  Hier kann man einfach nicht weniger als 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 8BitLegendwrote on 22.01.2013:[10.0] "Ich denke es wurde alles gesagt. Taker hatte zusammen mit HBK die größten Highlights in der WWE auf die Beine gestellt und war unglaublich ausdauernd. Ich gebe aber inoffiziell eine 9, 5 Bewertung, da ich sowohl dem Biker-Gimmick, als auch den letzten Auftritten nichts mehr abgewinnen konnte. Er hat es einfach nicht mehr. Das Alter nagt an ihm. Hätte ihn gerne als weißhaarigen Guru altern sehen, aber er entfernt sich vom Gimmick in Richtung MMA-Style. Das ist es einfach nicht mehr. Fürs Gesamtwerk dennoch eine aufgerundete 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JuliTheCage87wrote on 06.01.2013:[10.0] "Dieser Mann ist der, der selbst Leuten, die nicht am Wrestling interessiert sind, sofort einfällt. " Undertaker gegen Brock Lesnar! " hatten mir damals Freunde in der Schule zugeschrien, ich wusste nicht wovon sie reden. Ich fragte sie, wer das ist, und die beiden Jungs: Ach das ist bloß das Aufeinandertreffen der Legende im Wrestling schlechthin und des aufstrebenden Youngsters. Ich sah mir das Match mit den beiden spät abends an, von da an dachte ich: Wrestling ist geil! Er hat mich praktisch zum Wrestling geführt, wie wahrscheinlich viele viele andere Menschen auch, und alleine dafür bin ich ihm so was von dankbar. Er hat mich die kommenden Jahre so dermaßen mit seinem MMA-Stil und seinen legendären Fehden gegen Batista, Edge und SHAWN MICHAELS überzeugt, daher ist er auch jetzt noch einer meiner absoluten Favoriten, egal ob es vielleicht technisch viel bessere und beweglichere Leute gibt. Er hat mit seiner Streak und seinem Charisma einfach so viel in der Wrestling-Welt bewegt, ohne ihn wäre sie sicher komplett anders."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Scuzzlebuttwrote on 09.12.2012:[10.0] "Dieser Mann ist der beste in diesem Busissness den es jemals gegeben hat. Das Gimmick einfach nur grandios, jedesmal Gänsehaut bei seinem Entrance. Am Mic einfach genial. Im Ring ebenso grandios. Kein andere kann diese Rolle so spielen wie er. Bei ihm passt einfach alles zu 100%. Schade das er bald in Rente geht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CMP nwrote on 24.10.2012:[10.0] "Wenn nicht er, wer dann? Gute in Ring Skills und hat immer wieder neue Moves dazu gelernt, Charisma hat er so viel kaum ein anderer und hatte so viele legendäre Fehden... Mark Calaway ist für mich der Wrestler schlechthin! Jeder kennt ihn der sich auch nur ein ganz kleines bisschen mit Wrestling beschäftigt, weil er halt so unglaublich ist. Für mich der beste Wrestler/Entertainer/what ever!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Y2JSwantonwrote on 12.10.2012:[10.0] "Lebende Legende! Der Undertaker vermutlich der lieblings Wrestler von sehr vielen Wrestling Fans.  ich wünsche mir noch 1 Match an Wrestlemania 30 und dann sollte er die stiefel an den Nagel hängen.  THANK U TAKER! (ja ich werde weinen wenn es soweit ist.. )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Greedy7wrote on 12.10.2012:[10.0] "The Undertaker, was soll man dazu noch sagen, ganz einfach: A living legend. Seit ich mich 1996 mit Wrestling befasse, bin ich Fan des Last Outlaws. Ich hoffe er kämpft noch 1-2 Jahre, dann sollen sie ihn in die Hall of Fame einführen, weil er da einfach hingehört, als der wahrscheinlich beste Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Woerpwrote on 01.10.2012:[6.0] "Er ist eine Legende, die mir viele unvergessliche Wrestling-Momente geliefert hat. Dennoch gibt es ein paar Abzüge wegen der Rockerjahre, die für mich das Undertaker Image zerstört haben, und dem Fakt, dass er wrestlerisch nicht zu den Besten gehört."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ritt79wrote on 20.09.2012:[10.0] "Nach Hitman und Triple H, einfach der Beste... also auf der selben Stufe. TOP 3"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ringpfostenwrote on 08.09.2012:"Über den Undertaker muss man nicht mehr viel sagen. Seit 22 Jahren steht er nun in den Ringen der WWE. Trotz seiner Größe sehr agil. Man denke nur an seinen " Seiltanz" . Sein unbesiegbarer Charakter, der ihm wie auf den Leib geschneidert zu sein scheint, übte vor allem in seinen ersten Jahren in der WWE eine große Faszination aus und machten ihn bereits als Heel zu einem Publikumsliebling. Ich erinnere hier nur an die Pops, die er bei der Survivor Series 91 erhielt, als er Hulk Hogan den Titel abnehmen konnte. Zusammen mit Paul Bearer bildete er eines der besten Wrestler-Manager-Gespanne aller Zeiten. Eine wahre Legende und für mich DER Wrestler der WWE."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LM Punkwrote on 30.08.2012:[10.0] "Das wohl stärkste Gimmik das die Wrestlingwelt je gesehen hat. Aber am Anfang seiner Karriere doch zu limitiert im Ring. Zwischen 2005-2010 viele extrem starke Fehden und Matches abgeliefert mit Edge, Batista und HBK."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: reene82wrote on 25.08.2012:[10.0] "Er hat seine besten Tage mit ziemlicher Sicherheit hinter sich. Mein absoluter Favourite war er auch nie. Aber jeder Einzug, wenn der Gong ertönt, vor allem da es in letzter Zeit doch etwas selten geworden ist, verursacht doch eine gewisse Art Gänsehaut bei mir. Und da er durch die Streak unsterblich geworden ist und auch bei jeder Wrestlemania dadurch zu einem großen Teil zu einer Buyrate beiträgt, inklusive einem wirklich sehenswerten Match, vor allem in den letzten Jahren, kann ich hier nur zehn Punkte geben.  Gebt es zu, obwohl es offensichtlich ist, jedes Jahr bangt man bei Wrestlemania mit wie ein Kind, ob er es noch mal schafft:-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KndehaI3wrote on 23.08.2012:[10.0] "Diser Stärke hat er seinen Trainer zu verdanken. Er ist die Größte Legende von der WWE. Immer wieder ist er in einmen Ginmicks die uns Gefallen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: kunalbehlwrote on 19.08.2012:[9.0] "Undertaker The most powerful Gimmick the wrestling industry has everseen... FRom American Badass to Deadman he has been a perfect entertainer in the wrestling industry"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheUndertaker45wrote on 14.08.2012:[10.0] "Für mich ganz klar der beste Wrestler aller Zeiten. Mit seinen 47 Jahren bewegt er sich noch ziemlich gut, springt sogar über das höchste Ringseil. Sein Moveset ist toll für einen Powerhouse ziemlich abwechslungsreich und seine Kampfbilanz sricht ganz klar für seinen Erfolg."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hankinswrote on 12.08.2012:[9.0] "Ohne Frage gehört er zu den ganz großen Namen im Wrestling. Leider hat er seinen Zenit seit etwa 5-6 überschritten. Er wirkt bei seinen Matches extrem fertig und angeschlagen, zudem sind sie von unerträglichen Pausen geprägt. Ich fand das Match gegen Hunter bei WM dieses Jahr schon nicht mehr so klasse. Ich hätte mir gewünscht, dass es das letzte Match für beide gewesen wäre. Seinen Legendenstatus hat er dennoch sicher. Ich hoffe, er zerstört ihn nicht, weil er als 50jähriger immernoch im Ring steht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GTS Punkwrote on 11.08.2012:[10.0] "Großartiger Mann. Besonders in den 90-ern (auch wenn ich in dieser Zeit die WWF nicht miterlebt habe) hat er mir sehr gut gefallen. Unumstritten das beste Gimmick, dass es jemals gab. Mit Paul Bearer würde ich ihn lieber sehen, was ja im Jahre 2010 eine Zeit der Fall war. Hall of Fame ist bei ihm nur eine Frage der Zeit, je nachdem wann er aufhört. Undertaker ist die Ikone der WWE mit Legenden-Satus auch wenn er seinen Zenit schon überschritten hat. Ich erwarte nur noch eienen spektakulären Abgang."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: dudemanbearpigwrote on 25.07.2012:[10.0] "This man is an absolute legend. He has done it all, and been in many great high profile matches. He took a gimmick that looked stupid on paper and rode it to over 20 years of superstardom. One of the true greats of professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Franziwrote on 03.07.2012:[10.0] "Für mich bleibt er neben Shawn Michaels der Beste. Natürlich ist er nicht mehr in Topform, aber er ist einfach eine Legende im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: rey mysterio 104wrote on 03.07.2012:[10.0] "Natürlich merkt man ihm langsam sein Alter an, aber trotzdem ist er natürlich eine Legende die sich wenigstens ein mal im Jahr noch zeigt. Mal sehen wie lange noch. Aber so lange er noch so großartige Matches zeigen kann, ist er durchaus willkommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Monday Night Wars85wrote on 25.06.2012:[10.0] "Mach Schluss Taker oder komm nur noch zur Wrestlemania Matches bis zur 25-0. Ansonsten bei weiterem WWE in ring Engagement befürchte ich hier bald lesen zu dürfen Rest in Pieces Undertaker. :( Jetzt aber zur Bewertung. Absoluter Hall of Famer. The Best there still is. Niemand beeindruckt mich mehr. Taker hat sich immer der Zeit angepasst, entwickelt und war meiner Meinung nach beim match gegen Batista auf WM 23 Formtechnisch auf seinem Höhepunkt. Er hat mehrfach Geschichte geschrieben. Ein Match wünsche ich mir noch und das wäre gegen Sting. Aber leider wird es das nicht geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nouriwrote on 02.06.2012:[10.0] "Für mich eine der drei größten Legenden aller Zeiten. Begeistert auch nach über zwanzig Jahren mit demselben Gimmick noch die Massen. Nicht einmal Hulkamania hat über einen derart langen Zeitraum den vollen Fanzuspruch erhalten, so dass Hogan nach 15 Jahren zum Heel turnen musste (auch wenn der Undertaker zwischenzeitlich auch den ein oder anderen Run als Heel hatte). Besticht seit dem ersten Tag durch eine ungeheure Präsenz und Ausstrahlung sowie unglaublicher Intensität. Im Laufe der Zeit hat er sich stetig weiterentwickelt, selbst als er schon lange jenseits der 40 war, hat er immer wieder neue Aktionen in sein Repertoire (z. B. Hell's Gate) aufgenommen. Matcharten wie Coffin/Casket-Match, Buried Alive oder Inferno Match wurden speziell für ihn erfunden, auch das erste Hell in a Cell fand mit seiner Beteiligung statt. Dass er selbst Wrestling-Laien ein Begriff ist und seine einzigartige und vermutlich für alle Zeiten unerreichbare WrestleMania-Bilanz heben ihn nahezu auf den Wrestlinggötter-Thron!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Power Trip HHHwrote on 15.05.2012:[8.0] "8 Punkt kann ich ihm geben, er sollte wissen wann es genug ist. Er hat alles ereicht in seiner Wresling Karire Title, Wreslemania Streak, usw. Er kann mit sicherheit keine Matches mehr bestreiten wie zb. Hell in a Cell 1998 ( King of the Ring ). Ok das war jetz zu viel aber das Letzte Wreslemania match war gut aber nicht mehr wie damals. Triple H und Shawn waren einfach schneller und besser. Sonst würde ich mit sicheheit 10 Punkte geben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker95wrote on 14.05.2012:[10.0] "Bester Wrestler aller Zeiten , Ich liebe ihn einfach zu sehen , aber seine Tage in der WWE sind ja fast schon gezählt außer seine Wrestlemania-Kämpfe Ich wünsche mir aber so sehr ihn wenigstens noch einmal als World-Champion zu sehen *__*"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: undertakerfan01wrote on 13.05.2012:[10.0] "Mein Lieblingswrestler in der WWE, weil er schon über 20 Jahre in der WWE ist und immer noch eine gute Leistung zeigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: alewrote on 14.04.2012:[10.0] "Was gibt es da außer einer 10 zu geben, im Ring trotz seiner Größe immer außergewöhnlich, Gimmick sowieso schon ein Mythos und eben extrem professionell."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: thereisonlyonewrote on 21.02.2012:[10.0] "Er ist ungeschlagen bei Wrestlemania, hat ein Gimmick quasi neu erfunden, er hat Charisma wie kein Zweiter und wird als der größte Professional Wrestler aller Zeiten bekannt bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Schlagschawrote on 21.02.2012:[10.0] "Bin schon lange auf dieser Seite, und seit ca. 1992 Fan des Untoten. Hab seine Karriere immer verfolgt, und bin zu den Entschluss gekommen, dass er als Heel, wie bei der Ministry, einfach Weltklasse ist. Turnt ihn zu einen bösen Satanisten der gerne Menschen quält, und Ihr werdet zum Schluss seiner Karriere den größten und besten Heel unter Jubel zu Grabe tragen können. UPDATE: Fürt ihn vor Wrestlemania in die Hall of Fame ein. Er hat es mit Sicherheit mehr verdient als Ric Flair der die GROßE Ehre als erster aktiver mit Füßen getreten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Man of Warwrote on 20.02.2012:[10.0] "Am Anfang seiner Karriere war er für mich nicht unbedingt der Wrestler von dem Ich am meisten begeistert war.  Allerdings hat er sich im Laufe seiner Karriere zum, für mich, besten Wrestler den die WWE je zu bieten hatte entwickelt.  Seine Fähigkeiten am Mic sind sehr gut und im Ring ist er Weltklasse. Er ist einer der Menschen der auch in einem relativ hohen Alter noch sher gute Matches abliefert.  Wer auch immer behauptet das dieser Mann bei Wrestlemania anderen den Spot klauen würde, naja das sind Dummschwätzer.  Wer die Leistung von ihm nicht anerkennt sollte sich hier nicht aufspielen in dem er Wrestler schlecht bewertet nur weil er sie nicht mag."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Marlowewrote on 19.02.2012:[9.0] "Living Legend! Hat alles, was man braucht und das über 20 Jahre lang. Mittlerweile find ich sein Gimmick jedoch schon ein wenig langweilig, darum nur 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fighter Daronwrote on 02.02.2012:[10.0] "He has the best gimmick in wrestling history, do I have to say anything more?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: goofy1991wrote on 25.01.2012:[10.0] "Einer der herausragendsten Worker aller Zeiten. Allein dass er bei Leuten bekannt ist, die kaum bis kein Wrestling verfolgen, zeigt wie sehr er das Business geprägt hat. Auch wenn seine Karriere bald zu Ende sein wird, hat er wie kaum ein anderer volle Punktzahl verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Decon Davewrote on 19.01.2012:[10.0] "Der Undertaker ist eine Legende der WWE. Er sollte mal in die Hall of Fame aufgenommen werden, denn er hat es verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hu-Manwrote on 13.01.2012:[8.0] "Der Dead Man! Ziemlich bescheuertes Trash-Gimmick, das seinen Zenit seit gefühlten 20 Jahren überschritten hat und spätestens mit dem Biker-Gimmick völlig zerstört wurde. Genauso verhält es sich mit dem Worker selbst. Einen humpelnden, alten, braungebrannten Taker muss ich nicht sehen und vor allem nicht, wenn der World Title im Spiel ist. Seine übernatürlichen Kräfte sind dann noch das i-Tüpfelchen. Gegen seine netten Matches kann ich nichts sagen, da waren schon ein paar Kracher dabei, bloß hatte man da auch einen sehr guten Gegenpart. Ich kann mit dem Taker einfach nicht MEHR so viel anfangen. Trotzdem muss ich auch seine Leistungen und Verdienste aus der Vergangenheit bewerten und die sind wirklich herausragend. 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: dragonulteowrote on 06.01.2012:[10.0] "Undertaker is a legend, he is the phenom, he is the dead men, he is wwe hall of famer"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kitanoyamawrote on 03.01.2012:[10.0] "Er ist eine Legende, mehr brauch ich garnicht zu sagen. Er wird zwar nicht vor den Folgen des alterns verschont bleiben, aber er hat schon soviel geleistet das er nicht nur ziemlich sicher eines Tages in der Hall of Fame sein wird, sondern auch nach seiner aktiven Karriere sicher noch lange von sich reden machen wird. Auch wenn sein Gimmick als überaltert gilt, schafft er es immer wieder damit zu überzeugen. Getreu dem Motto: " Warum sollte ich etwas ändern was funktioniert? " Und das tut es mehrheitlich noch. Ein John Cena wird auch nicht von jedem akzeptiert und trotzdem lebt er damit und teils auch davon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fabi89wrote on 28.12.2011:[10.0] "Über den Undertaker ist alles gesagt, was es zu sagen gibt. Grandioser Teil der Wrestlingwelt, der sich im Laufe der Jahre stets weiterentwickelt und für einige der denkwürdigsten Momente in der Geschichte des Wrestlings gesorgt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: EnemyOfJusticewrote on 04.12.2011:[10.0] "Legende schlechthin. Mit der Batista-Edge-Taker Fehde hab ich die WWE kennengelernt und seitdem gehört der Undertaker einfach dazu. Im Ring für sein Alter immer noch Wahnsinn und Micskills und Charisma hat der Deadman natürlich. Ich schätze auch seine Arbeitsmoral, lobenswert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hirnklopswrote on 25.11.2011:[10.0] "Hulk Hogan, Ric Flair, John Cena, Bret Hart... Forget it. Die WAHRE Legende heißt " The Undertaker" . Dieser Mann hat es geschafft, einen " over the top" -Charakter zu absolutem Kultstatus zu verhelfen, und wenn selbst gestandene Rapper seine Promos in ihre Musik einbetten oder ihn in ihren Texten erwähnen, wenn selbst mein alter Herr, der " Catchen" nur aus Filmen mit Peter Falk kennt ihn cool findet, und wenn Leute, die sonst mit Wrestling nix anfangen können, Wrestlemania schauen, nur um seine " Streak" zu sehen, dann weißte Bescheid. WEISSE BESCHEID! Dazu deutliche Frisurensteigerung über die Jahre. Der Mann ist Profi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: chicagomadepunkwrote on 16.11.2011:[10.0] "Eindeutig zehn Punkte! Man merkt zwar das er in die Jahre gekommen ist und auch nicht der größte in Sachen in-ring skills ist, aber er schafft es immer wieder unglaubliche Wrestlemania showstealer zu kreieren! Der Undertaker ist einfach eine Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Baszdmegwrote on 15.11.2011:[10.0] "Ich bin kein Freund von "übernatürlichen" Charakteren, aber etwas anderes als 10 Punkte kann man hier nicht vergeben. Großartiger Wrestler und eines der besten Gimmicks aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker555wrote on 04.11.2011:[10.0] "Eine absolute Wrestling-Legende. Er ist für mich der größte und beste Wrestler aller Zeiten! Ich freue mich bereits jetzt auf sein letztes Match und ärgere mich dann auch irgendwie wenn es soweit ist da er danach nie wieder kämpfen wird. 10 Punkte für den Deadman"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheCMMizNexuswrote on 04.11.2011:[10.0] "Völlig verdiente 10 Punkte. Geniale Gimmicks, stark am Mic und das auch im Ring.  Allein die 19:0 Streak zeigt das er eine Legende ist"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FNShowwrote on 28.10.2011:[8.0] "Taker ist da Man. Einer der mächtigsten Männer hinter dem Vorhang. Wrestlerisch zwar limitiert, mach er aber anderweilig mehr als weg. Dienstälterster und treuster Worker in der WWE."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: cookie monsterwrote on 27.10.2011:[10.0] "Also alle Gimmicks waren von ihn genial. Totengräber 90er. Ministry, ABA, und jetzt. Matches haben immer wieder Spaß gemacht sie zu gucken. Für mich ein Phenomen. Schade das er schon in die Jahre gekommen ist. Aber besser nicht mehr so oft kämpfen. Nur als Highlight, das ist gut an der WWE. Anders wie TNA die noch Ric Flair in Ring stecken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Auditorewrote on 16.10.2011:[10.0] "Man merkt ihm natürlicherweise, das Alter und all seine Verletzungen an, aber wenn man bereit ist, darüber hinwegzusehen und zu sagen: " Wow eine lebende Legende und ich darf ihm immer noch zusehen", dann kann man die mittlerweile "nur noch" soliden Matches auch mal übersehen. Unglaublich was ein Gesamtpaket er für ein Gesamtpaket bedeutet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Rated R Superstar EDGEwrote on 13.10.2011:[10.0] "Ich muss meine Wertung um einen Punkt zurück setzen. Das Match gegen Shawn Michaels war zwar eines der Besten vileicht sogar das Beste das ich jemals gesehen habe aber man hat deutlich gesehen das es von Shawn getragen wurde. Der Taker ist nicht mehr in der Lage aus anderen gute Matches raus zu holen. Er selbst zeigt zwar immer noch solide Leistungen aber kommt ohne einen Gegner wie Shawn oder Jericho nicht mehr darüber hinaus. Ich finde das der Taker bei Wrestlemania hätte verlieren sollen den Shawn würde ich die nächsten 1-3 Jahre lieber zu schauen als dem Taker. Ich hoffe das er das selbst so sieht und bei Wrestlemania 27 seine Karriere beendet oder zumindest nur noch wie The Rock in 2003 bei Summerslam und Wrestlemania für je ein Match zurück kommt. Für das was er noch zu leisten im stande ist würde ich normalerweise 7 Punkte gebe. Aber da er eine Legende ist sind es aus Respekt und Anerkennung früherer Leistungen noch 9 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jerviswrote on 13.10.2011:[10.0] "Mein erster Kommentar und meine ersten 10 Punkte gehen an den Undertaker. Ein genialer Kerl. Über 20 Jahre im Business, und dazu noch in der WWE. Ich glaube kaum das jemand solange einer Mainstream-Liga treu war wie er. Und das ist nur das organisatorische was Ihn ausmacht. In den 90ern bereits durch sein mysteriöses Deadman Gimmick bekannt, konnte die Fans "verzaubern". Beängstigend, als Face trotzem vertraut, wie heute. Das Deadman Gimmick hat mir auch gefallen, es schadete im überhaupt nicht mal in seinem wahrscheinlich privatem Look anzutreten! Auch hier erfüllt er meine Kriterien, wenn auch er nicht gut vergleichbar mit Anderen ist was Gimmicks betrifft. Charismatisch auf seine Art eben. Und auch sein Micwork, als American Bad Ass wie auch wieder als Deadman gut. Beängstigend für die Fans als Deadman, cool als Bad Ass. Und nun zu seiner Arbeit im Ring. Ich finde das er Anfangs der 90er noch nicht so gut im Ring war, was wahrscheinlich am angepassten Stil von Hulk Hogan uA lag, auch weil er nicht immer die technisch versiertesten Gegner hatte. Doch ab 96 sah ich mehr Intensität im Ring, eine gute Mischung aus Holds und Brawl. In der Attitude-Ära schliesslich wurde er klar zum Brawler mit einigen Hardcore-Spuren und Holds. Spannend wurden die Kämpfe ab hier, da jedoch das Auge nicht unbedingt auf Wrestling schaute, mehr um Entertaiment, also die Spannung und Intensität die im Ring gezeigt wurde. Für mich sind diese Matches ein Augenschmaus, ich fühle mich unterhalten und z"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sweet Grave Musicwrote on 13.10.2011:[10.0] "Undertaker ist einfach DER Wrestler.   Richtig gute Chain-Wrestling und Brawler Skills (Dank der jahrelangen Boxerfahrung)   Auch Submission steht ihm immer besser, da er sich stetig im Metier des MMA weiterbildet.   Greetz  SGM"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nerowrote on 11.10.2011:[5.0] "Ich denke, viele Leute vergessen hier, was sie bewerten sollten. Es geht nicht darum, ob jemand eine Legende ist. Es geht auch nicht um die Vergangenheit, was für ach so epische Momente dieser Jemand gehabt hat. Es geht darum, was dieser Jemand im Moment, das heißt heute, im Ring, am Mic leisten kann. Der Undertaker ist zusammen mit Hulk Hogan ein Paradebeispiel für dieses Phänomen. Wenn man sachlich bleibt muss man sicherlich anerkennen, dass er am Mic nach wie vor großartige Arbeit leistet. Im Ring hat der Liebe seinen Zenit jedoch weit überschritten und ist meiner Meinung nach nicht fähig, ein ordentliches Match zu zeigen, solange er niemanden hat, der ihn durch ebenjenes trägt (s. Shawn Michaels). Außerdem ist seine Pause, die man fast schon als Schwangerschaftspause (WrestleMania-Royal Rumble >> 9 Monate), peinlich und überaus unlogisch. Denn alle Worker arbeiten nach Mania weiter. Nur Taker nimmt sich seine Pause. Das Roster kämpft sich vor und vor, entwickelt sich weiter, und im Januar steht der Undertaker wieder auf der Matte und lässt sein "So, da bin ich wieder, ich will meinen Wrestlemania-Main Event" hören. Für die Micfähigkeiten und das Charisma gibt es 5 Punkte, für die Arbeit im Ring kann ich beim besten Willen keine Punkte geben."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: hogan knows bestwrote on 11.10.2011:[8.0] "Am Anfang seiner Karriere ein Ass. War damals für mich immer das Highlight einer jeden Wrestling Show. Die Kämpfe gegen Mankind bleiben natürlich unvergesslich, genauso die Story mit Kane. Ach eigentlich war jede Storyline um den Taker interessant. Die Ministry of Darkness war auch noch ganz ok, erst mit dem Biker Image fing er an zu langweilen. Auch sein Turn zurück hat mich nicht mehr begeistert, für mich eigentlich nur noch langweilig. Aber naja wer 20 Jahre wrestlet nutzt sich irgendwann ab, im neuen Jahrtausend nicht mehr erwähnenswert für mich. Trotzdem eine Legende denn in den 90ern war er höchst unterhaltsam."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mustafawrote on 09.10.2011:[10.0] "10 Punkte und nicht weniger! Er ist eine lebende Legende. Seine Kämpfe sind sehr gut"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Alex Riley 4 wwe championwrote on 06.10.2011:[10.0] "Einfach nur eine Legende! Freu mich jedesmal auf Wrestlemania, wenn er seinen Rekord verteidigt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Patrwrote on 26.09.2011:[9.0] "Einer der Besten Wrestler aller Zeiten, aber er hat halt viel Verletzunspech, ich hoffe es zwar nicht aber er wird wohl bald aufhören müssen, aber vielleicht kommt er doch noch spektakulär zurück wäre ihn zu wünschen"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker 2442wrote on 25.09.2011:"Meiner meinung nach ist Undertaker der beste Wrestler EVER!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Play2Xwrote on 21.09.2011:[10.0] "Die 10 Punkte erübrigen sich: jeder der Ahnung von Wrestling hat wird sie voll und ganz verstehen: Aber mal ein Wort an all jene, die dem Taker 0 Punkte geben (weil seine WM Matches angeblich lame sind, weil er begrenzte In Ring Skills habe oder weil sein Entrance so lang sei). The Undertaker hat sich alles was er erreicht hat selbst verdient. Er ist als Wrestler extrem stark. Seine Mania-Matches waren noch nie so spannend wie in den letzten 3 Jahren. Der Entrance ist einfach großartig! Und auch mit Biker-Gimmick war Taker einfach großartig. Wenn manch ein Minderbemittelter nicht in der Lage ist, das zu verstehen, kann man trotzdem nicht einfach 0 Punkte reinwürgen. Und dass er verletzt ist: Das gehört dazu, und man kann es sich nicht aussuchen. Ich hoffe, dass The Undertaker noch bis 20-0 kommt und dann in einem Flammenmeer aus Pyroeffekten verschwindet, evtl. mit der Chance, dass jemand anders ihn als Maskenchar übernimmt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rated R Punkwrote on 04.09.2011:[10.0] "Die Legende und Ikone schlecht hin! Keiner hat sich so für die WWE geopfert wie er, neben Hulk Hogan wohl das berühmteste Gesicht im Wrestling und ganz klar für jeden Mark ein Grund einzuschalten (ich erinnere mich noch was für eine Gänsehaut ich damals immer bei seinen Entrance hatte) sein Gimmick ist Legendär am Mic hört man ihn zwar als Deadman kaum, allerdings hat er als American Badass saubere Arbeit geleistet finde ich. Ring Skills sind finde ich für seine Statur ganz gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CMPunkGRGDXwrote on 27.08.2011:[10.0] "Er ist und bleibt die lebende Legende im Wrestling-Geschäft.  Ich will (würde als Roman enden) und brauche (Ihr könnts euch denken) glaube ich nicht großartig begründen warum ich dem Taker eine 10 gebe :D Ich wünsche mir nur noch mindestens 'ONE MORE MATCH' bei Wrestlemania um die 20-0 zu erreichen und die absolut einzigartige Karriere eines Superstars zu beenden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fall Out Boywrote on 19.08.2011:[8.0] "Zweifelsohne ist der Undertaker eine Legende. Auch die 1083 10. 0 Bewertungen kommen nicht von ungefähr. Trotzdem ist er im Ring auch gerne für das ein oder andere langweilige Match zu haben. Sein Gimmick wird auf Dauer immer langweiliger und unlogischer. Zudem hat er mich als Biker nicht überzeugen können."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LyrixFTWwrote on 11.08.2011:[10.0] "Bester Big Man aller Zeiten für mich, am Mic will ich ihn noch nichtmal haben was bei mir schon viel aussagt den der Taker sollte einfach Taker sein. Mochte aber auch das Bikergimmick ganz gerne. Legende und verdiente 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RiotMorawawrote on 04.08.2011:[10.0] "Muss meine Wertung nach unten korrigieren, da er seinen Zenit ja schon LANGE überschritten hat und nur noch in Ausnahmefällen zu guten Matches (WM 25! ) fähig ist. Sonst lebt er eigentlich nur noch von seinem Ruf. Edit: und eine weiteres Ändern der Wertung wird nötig. Mit dem Quasi-Ruhestand schafft er das was viele andere nicht schaffen... aufhören! SOmit kann ich meine Wertung wieder ruhigen Gewissens nach oben schieben und seine Fähigkeit würdigen selbst mit recht wenigem technischen Finesse großartige und denkwürdige Matches und Momente zu zaubern!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: albino17wrote on 29.07.2011:[9.0] "Immer in der Lage für geniale Promos und Matches, aber sollte entweder öfter antreten oder seine Karriere beenden. Nur ein Match zu Wrestlemania ist in meinen Augen zu wenig."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Allrounder95wrote on 25.07.2011:[10.0] "Der Undertaker ist und bleibt eins der besten Gimmicks aller Zeiten. Der Undertaker wusste immer zu überzeugen egal ob als Totnegräber oder als Biker. Wrestlerisch wie Charismatisch ist er einzigartig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KASHwrote on 23.07.2011:[10.0] "Ich denke da man seine Karierre mittlerweile als beendet sehen dürfte, kann man bei ihm schon anfangen ein komplettes Karierreresümee zu ziehen. Ich wage es zu behaupten, dass er der BESTE Wrestler aller Zeiten über der 2m Marke ist. Sein Gimmick war nicht nur der Erfolg der WWF, sondern vielmehr auch seiner. Er konnte dadurch besondere Moves zeigen und verkaufen lassen, die einfach IM Gimmick waren. 2004 zu seiner Rückkehr ins Deadman Gimmick war ich noch skeptisch, ob er denn an alte Stärke wie in den späten 90ern anknüpfen könne. Er bewieß ab dem Jahr 2007 immer wieder das meine Befürchtungen unbegründet waren. Mit wachsendem Legenstatus und beginnendem Altersverschleiß wrestlete er die besten Matches seiner Laufbahn. WrestleMania Matches des Takers hatten irgendwann nicht mehr nur die Serie selbst auf dem Spiel, sondern waren auch immer ein garant für einen MOTY Candidate. 1 5* Match, zurecht, und viele viele die es knapp nicht wurden (worüber man sich streiten könnte). Es wird nie wieder ein solch episches Gimmick geben. Ich bezweifle, dass es überhaupt nochmal ein Gimmick mit einem solchen Erfolg geben wird... und vor allem auch auf Main Stream wrestlerischer Ebene."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Michael Shawn Hickenbottomwrote on 21.07.2011:[10.0] "Man kann nur den Hut vor seinen Leistungen ziehen. Etwas anderes als eine 10 gibt es für ihn nicht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NHJ2102wrote on 11.07.2011:[7.0] "FÜr mich der überschätzteste Wrestler aller Zeiten. Klar hat ein ein geniales Gimmick und bringt dieses auch gut rüber nur Undertaker im Jahr 2011 bringt keine guten Matches mehr, die beiden Matches bei WM gegen HBK, hat doch HBK zu guten matches werden lassen ... seit 2004-2005 kein Maineventer mehr..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Darkiwrote on 06.07.2011:[10.0] "Der Undertaker wird meiner Meinung zurecht als Phänomen bezeichnet. Er schafft selbst heutzutage in seinem hohen Alter bessere Kämpfe hinzulegen als so mancher Jungspund. Und auch sonst hat er wirklich viel fürs Mainsteram Wrestling getan. Der Mann verdient einfach die volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Elvis6wrote on 03.07.2011:"Also ich kann die Wertung 0 beim Undertaker nicht verstehn. Mag sein das er für dich, als Frau , nicht so hübsch wie Cena o Orton ist ABER allein seine langjährige Präsenz im Main Event muß schon zeigen das er so schlecht nicht sein kann. Außerdem, welches Gimmick wäre den besser gewesen als seines um die besten Matches der Welt auf die Beine zu stellen(Hell in a Cell, Casket Match o Buried Alive). Ein bischen Fairness bei der Bewertung wäre schon angebracht."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Donald Duckwrote on 23.06.2011:[10.0] "Das letzte wirkliche "Gimmick" von damals. Einfach erste Klasse. Sowohl als Biker, als auch als Deadman war er große Klasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jericho is excellencewrote on 23.06.2011:[10.0] "Mein Lieblingswrestler? Chris Jericho. Der Mann der mich zum Wrestling gebracht hat? Der Undertaker. Man Kann über das Phenom sagen was man will, dass er ohne das Gimmick nie so weit gekommen wäre, oder dass die mystischen Spielchen nicht mehr in die heutige Zeit passen und so weiter, aber der unbestreitbare Fakt ist: der Undertaker zieht Fans wie Sau. Und bei allen Fähigkeiten die ein Wrestler haben sollte, ist im Endeffekt genau das der entscheidende Punkt. Er füllt Hallen. Zum Gesamtpaket: Im Ring hat es der Undertaker geschafft sich über die Jahre zu wandeln so dass er eigentlich nie langweilig wurde. Im Alter hat er seine fehlende Schnelligkeit durch Powermoves und jede Menge Ringpsychologie wett gemacht. Er erzählt die Geschichten im Ring so gut wie wenige Andere. Auch wenn er nur noch sporadisch wrestlet, wenn er im Ring steht gibt er alles und zeigt starke Matches. Am Mic konnte er als Biker zeigen wie brauchbar er ist und auch als Totengräber kann er mit seiner mystischen und dominanten Art überzeugen. Wie wichtig er für die Etablierung von Leuten wie Edge oder Batista war wiederlegt auch das immer wiederkehrende Argument dass er nie jüngere Worker over bringt. Ob er ohne das Gimmick so weit gekommen wäre darf berechtigt bezweifelt werden, Fakt ist er ist so weit gekommen und das ist auch gut so. Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tobinhowrote on 20.06.2011:[10.0] "Die größte lebende Legende von allen, mehr kann ich dazu nicht sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: UndertakerChriswrote on 29.05.2011:[10.0] "Achja... der Undertaker war der erste Wrestler von dem ich gehört habe und seit dem ist er mein absoluter Favorit.  Jetzt am Ende seiner Karriere, auch wenn er noch ein Match bestreiten wird, kann man auf die beste Karriere überhaupt zurückblicken. Klar gab es Wrestler, die mehr Titel hatten und waghalsigere Moves ausführten, doch ist der Undertaker ein wahres Wrestlinggenie, der sich nicht zu fein ist, um auch von neuen Wrestlern mal was einzustecken (damals Lesner, jetzt Nexus). Am Mic genau wie im Ring auch im hohen Alter hervoragend. Das Match gegen HHH bei WM 27 war der Showstealer, keine Frage. Hoffentlich bleibt er auch nach seiner aktiven Karriere für die ein oder andere Showeinlage vorhanden. 10 wohl verdiente Punkte an das Phenom der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DragonSleeperwrote on 08.05.2011:[10.0] "Muss man eigentlich nicht kommentieren, das beste Gimmick und vllt. der beste Superstar aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Phenom1992wrote on 04.05.2011:[10.0] "Er ist einfach eine WWE Legende. Er zeigt immer viele Stunts die man ihm gar nicht zutraut. Ich glaube, dass er jetzt wahrscheinlich noch seltene Kämpfe macht, weil er Probleme mit dem Rücken und seiner Schulter hat. Ich bin Undertaker Fan aber ich denke, dass er vlt im nächsten Jahr seine Karriere beenden wird, auch wenn es sehr schade wäre. Aber ich hoffe es nicht. Vielleicht macht er noch weiter Geschichte. Es kann alles möglich sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Dennizwrote on 22.04.2011:[4.0] "Ich war nie wirklich ein Undertaker Fan. ich fand ihn irgendwie immer langweilig. Aber er ist nun mal die Legende deswegen gibts 4 trostpunkte."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jack Londonwrote on 12.04.2011:[10.0] "Der Undertaker ist meiner Meinung nach, der mit Shawn Michaels wichtigste Superstar der WWE. In den ersten Jahren seiner Karriere war sein Wrestlingstil eher langsam, man kann sogar sagen langweilig, doch in den letzten Jahren sind insbesondere seine Matches bei Wrestlemania, das Match gegen Mark Henry natürlich ausgenommen, mehr als brilliant. Sein Gimmick hat über die Jahre immer wieder Höhen und Tiefen erlebt, auch sein Biker-Ausflug hat ihn nichts von seiner Glaubwürdigkeit gekostet, der Undertaker verdient zu 100 Prozent 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Paierowrote on 08.04.2011:[10.0] "Eine lebende Legende, spielt sein Gimmik hervoragend, absoluter Allrounder, lieferte in den vielen Jahren trotz seiner Größe eine Reihe denk- und erinnerungswürdiger Matches ab. Definitiv eine der tragenden Säule des Wrestling überhaupt und somit 10 Pkt mehr als verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 123 kidwrote on 07.04.2011:[9.0] "Der Deadman verstrahlt eine ganz spezielle Aura, die nur eine handvoll Superstars im Wrestling besitzen. Zudem ist er unter den Bigmanwrestlern einer der Besten im Ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: dsierwrote on 07.04.2011:[10.0] "Hinter Shawn Michaels der zweitwichtigste Worker in der WWE/WWFgeschichte. In all den Jahren konnte er mich in jedem seiner vielen Gimmicks gut unterhalten und allein seine Ausstrahlung wäre schon 6 Punkte wert. Wenn man dann noch seine Fähigkeiten im Ring dazu nimmt kann man eigentlich nicht anders, als 10 Punkte zu geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LowJomoKiwrote on 06.04.2011:[10.0] "Eigentlich mag ich ihn von seinem Gimmick nicht so sehr, aber egal wie der Mann bleibt ein Phänomen und ist ganz einfach DER Undertaker... und da kann es keine zwei Meinungen geben was dieser Mann im Wrestling erreicht hat; einfach nur 10 Punkte wert!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mick Funkwrote on 06.04.2011:[10.0] "Ach was solls, ich geh wieder hoch auf 10. Lange sollte er zwar wirklich nicht mehr machen, aber für solche Matches wie am Sonntag muss man ihm immer noch dankbar sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: micha27480wrote on 06.04.2011:[10.0] "Für mich einer der Besten allerzeiten! Auch seine Grimmick einfach klasse. ich hoffe er wird noch ein paar jahre machen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The-SwiZZlerwrote on 06.04.2011:[8.0] "Der Undertaker... ich persönlich finde er hätte von Triple H bei Wrestlemania XXVII (27 für alle Nicht-Römer :) ) in Rente geschickt werden können, nun ja dann wird er halt nach dem 20-0 "sterben"... Seine Aura und Mystik ist längst nicht mehr das was sie zu Attitude Zeiten war. Mich persönlich hat sein Gimmick nie angesprochen, gebe aber auch zu dass ich Gänsehaut bekommen habe als ich das erste Mal live den Gong hörte. Auf der anderen Seite kann er trotz seines Alters und seines Körperzustandes noch ein paar schlimme Bumps hinzunehmen (Beispiel Spinebuster durch den Kommentatorentisch)... Ich hoffe das er bei Wrestlemania XXVIII einen würdigen Abschluss erhält. Daher gebe ich ihm verdiente 8 Punkte für seine Leidenschaft fürs Wrestling und einfach weil er Respekt verdient... Jedoch auch nicht mehr Punkte da er wissen sollte wann die Zeit für ihn gekommen ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Johnny-Tennerwrote on 05.04.2011:[9.0] "Als ich mit Wrestling gucken anfing das war kurz vor Wrestlemania 21! Ich sah ihn und wusste irgendwie nie warum über ihn so ein großer Wind gemacht wird und warum er so ziemlich jedes Match gewinnt.  Ich kann hier ja nur schreiben was ich für einen eindruck von im habe auch wenn ich mir einiges auch aus seiner glorreichen Zeit angeguckt habe finde ich ihn teilweise einfach zu übertrieben Stark dargestellt.  Edit: Keine Ahnung wieso aber der abgrundtiefe Hass auf das Untoten Gimmick ist bei mir irgendwie verflogen, klar wird er teilweise zu stark dargestellt aber mir gefallen seine Matches einfach immer noch und das obwohl ich jemand bin der schon merkt das ihn sein Alter zu schaffen macht. Dennoch wünsch ich mir nächstes Jahr noch ein letztes Wrestlemania Match. Ich hab ihn jetzt zu schätzen gelernt und hab einfach nur respekt für den Mann."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HesBackwrote on 04.04.2011:[8.0] "Eigentlich hätte er von mir 10 Punkte bekommen, eigentlich.  WENN er nach WM 26 den Schlusstrich gezogen hätte und ich mir nicht mitansehen müsste wie er sich durch ein Match quält weil er so viel Schmerzen hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: C0nspiracywrote on 27.03.2011:[9.0] "Sein Gimmick ist eines der Besten aller Zeiten. Für seine grösse ist er nahezu am Limit des machbaren. Es gibt eigendlich kaum etwas am Taker auszusetzen. Abzüge gibts lediglich beim Wrestlerischen er beherscht eigenlich kein richtiges Matwrestling. Dies hat nichts mit seiner grösse zu tun und liegt nur an ihm es zu erlenen/anzuwenden. Mit 9 Punkten ist er dennoch einer der besten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dominicwrote on 25.03.2011:[10.0] "Eine absolute Wrestling Legende und immer auf top Niveau. Zwar etwas verletzungsanfällig aber trotzdem super. Der ganze Stil und sein Einmarsch sind einfach cool. Er hat schon sehr viele schwere Zeiten erlebt, alle überstanden und immer noch ganz oben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MarcTrixwrote on 18.03.2011:[8.0] "Der absolut beste Wrestler allerzeiten. Sein Einzug ist genial und seine Gimmick wird nie langweilig. Er ist einfach nur eine Kultfigur in der WWE. Er macht zwar nach 20 jahren nicht mehr jedes Match gut, aber mit einem verletzen Knie ein so brillantes Match bei Wrestlemania zu zeigen, kann niemand anderes. Bei seinem Einzug bekommt man einfach nur respekt vor dieser Person. Undertaker ist einer der besten Wrestler der Welt.  Edit: Kann ihn mittlerweile nicht mehr die volle Punktzahl geben. Er hat sein Zenit überschritten und sollte nach Wrestlemania 27 aufhören."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: xXxwrote on 18.03.2011:[10.0] "Ich kann nur hoffen dass sein Körper ihm noch die 20-0 bei WM erlauben wird um es schön abzurunden. Ansonsten lass ich meine Bewertung für sich sprechen, 1. 500 Zeichen sind einfach nicht genug um die Bewertung hier halbwegs zu kommentieren und rechtfertigen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Y2John Cenawrote on 05.03.2011:[10.0] "Er ist die Legnde der WWE und des gesamten Wrestlings. Im Ring ist er ein Phänomen, wenn er am Mikrofon spricht merkt man, wie gut und überzeugend er sien Gimmick spielt. =>10 Pkt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BretHitmanHartwrote on 04.03.2011:[10.0] "Truly a living Legend.  Schon als ich klein war, war der Undertaker mein größtes Vorbild.  Die Technik für einen Mann seiner Größe ist einfach atemberaubend.  Von mir klar eine 10+"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheOvertakerwrote on 01.03.2011:[10.0] "Alles andere als 10 Punkte geht hier gar nicht! Und die, die ihn jetzt schlecht benoten und wollen, dass er endlich aufhört, die werden nach jemanden mit seiner Aura schreien, wenn er mal wirklich nicht mehr da ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Zamunerwrote on 27.02.2011:[9.0] "Es ist eine Schande ihn nicht mit 10 zu bewerten. Warum mach ichs nicht? Er ist eine Legende, das letzte Überbleibsel der 90er, der ausgefallenste Charakter und im Ring eine Bank trotz seines Alters. Aber es reicht nur für 9 weil ich mich an ihm sattgesehen habe. Er kommt immer ewig lang zum Ring und das Jahr läuft nach Schema F ab. Er hat eine Fehde und gewinnt oder verschwindet. Dann kommt er zurück und es wird groß beworben, dabei weiß eh jeder dass er gewinnen wird wenn er zurückkommt (Ausnahme war die Fehde mit Kane). Irgendwie ist es meiner Meinung Zeit die Jüngeren over zu bringen, aber das lässt sein Gimmick nur bedingt zu. Aber ich will ihn nicht noch 100 mal verschwinden und zurückkehren sehen. Er ist eine absolute 10, das Booking von ihm eine 8 = 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Takerwrote on 27.02.2011:[10.0] "Das geilste Gimmick was die WWE damals bis heute herrausgebracht hat, Undertaker ist ne Legende und wird es ewig bleiben, es ist nur eine Frage der Zeit wann sie Ihn in die Hall of Fame aufnehmen. Persönlich würde ich es bevorzugen wenn es noch nicht geschieht, Vielleicht in 2 - 3 Jahren, wenn er noch so lang weiter macht. die 20 - 0 sollte er noch voll kriegen bei Wrestlemania!  Der Beste überhaupt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: wolverinewrote on 17.02.2011:[10.0] "Ich will ehrlich sein, ich bin nicht der größte Fan des Undertakers, aber seine Leistungen deswegen nicht mit 10 Punkten zu bewerten wäre einfach im wrestlerischen Sinne ein Ding der Unmöglichkeit. Sicherlich bin ich von seinen In-Ring Skills nicht allzu angetan, aber alleine seine Präsenz reicht aus einem Main Event noch einen zusätzlich Push zu geben. Zweifellos einer der besten Entertainer die es im Wrestling je gegeben hat - ein Phänomen eben, und deshalb auch 10 Punkte, auch wenn ich nicht wirklich ein Fan von ihm bin..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Marcywrote on 17.02.2011:[10.0] "Ist halt der Deadman, der mir zwischendurch als American Badd Ass fast noch besser gefallen hat. Insgesamt einfach eine 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GamePrincewrote on 13.02.2011:[10.0] "Eigentlich ist die Wertung beim Undertaker gar keine Frage. Alles andere als die volle Punktzahl wäre unangemessen. Wenn nicht Leute wie er, wer dann? Er war einer der größten und besten Wrestler aller Zeiten. Charisma ohne Ende, tolle Matches, 1A Gimmick, seine Wrestlemania-Streek ... das und noch viel mehr machen ihn einzigartig und zu einer Legende. Schade dass sein Körper nicht mehr mitspielt ..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CenationFanwrote on 05.02.2011:[10.0] "Er ist einer der besten Wrestler die, die WWE jemals hatte. Starke Moves, legendäre Matches und auch oft gute Promos machen ihn gut. Doch für ihn wird es langsam mal Zeit seine Karriere zu beenden"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jar Jar Binkswrote on 15.01.2011:[10.0] "Der Undertaker hat das Wrestling geprägt. Auch Menschen die kein Wrestling verfolgen haben schon einmal von Undertaker gehört. Dies allein zeigt schon seinen Stellenwert und seinen legenden Status. Er war mit seinem Gimmick immer eine Bereichung, technisch wirklich gut (hat viele gute Matches auf die Beine gestellt), seine In-Ring Psychologie ist der Hammer, Mic-technisch würde ich ihn passabel nennen (mehr ist mit dem Gimmick auch nicht drinnen) und ingesamt gesehen ein Top-Wrestler. Leider fällt er nun vermehrt durch Verletzungen aus und ist etwas eingerostet. Wie man einem Undertaker 0 Punkte geben kann, kann ich alleine scho wegen der Fehde gegen HBK, Batista, Edge oder wen auch immer, nicht verstehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Surviv0rwrote on 12.01.2011:[9.0] "Ein Fan des Undertakers bin ich nun schon, seit ich ihn als kleinen Pimpf 1991 das erste Mal habe kämpfen sehen. Einfach gigantisch mit welcher Power er im Ring steht und was die WWF/WWE im Laufe der Zeit nicht alles für Storylines veranstaltet hat. Buried Alice und Casket-Matches. Es gibt wohl kaum einen anderen Superstar, der ganze Stipulationen geprägt hat. Nur meine ich, er sollte langsam Schluss machen. Durch seine Verletzungen und die inzwischen immer gleichen ungelenken Moves zerkratzt er ein wenig seinen Status als Legende. Auch viel Aufregendes und Unerwartetes an Fehden scheint die WWE für ihn nicht mehr bereit zu haben. Wie auch, wenn er jede paar Monate ausfällt... ich sage, 20:0 machen und dann abdanken!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nomaxwrote on 08.01.2011:[10.0] "Für Undertaker kommen nur 10 Punkte in Frage, da er quasi eine lebende Legende ist und mich auch zum Wrestling gebracht hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Prodirwrote on 07.01.2011:[10.0] "Was anderes als 10 Punkte können hier nicht in Frage kommen. Der Undertaker ist sozusagen die lebende Legende, der wirklich fast alles und jeden herausgefordert und besiegt hat. Allein seine Persönlichkeit ist einzigartig, die nur er selbst am besten rüberbringt. Seine In-Ring Leistungen sind für sein derzeitiges(! ) Alter stark, womit er mit an der Spitze der Company steht und ein Vorbild fast aller ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MultiXerowrote on 06.01.2011:[10.0] "Der Undertaker war für mich einer der gründe warum Ich vor drei Jahren auf Tele 5 die WWE wieder verfolgt habe.  Für mich ganz klar das beste Gimmick aller Zeiten.  Und seine Kämpfe gegen Edge, Kurt Angle, Batista und vor allem gegen Shawn Michaels bei WrestleMania 25 - 26 bleiben für mich unvergesslich.  Eine lebende Legende!  Zehn punkte von mir."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Typhusswrote on 01.01.2011:[10.0] "Bester Wrestler überhaupt! Hat in seiner Karriere alles erreicht! Wenn es den Undertaker nicht mehr giebt, höre ich auf Wrestling zu schauen. Es giebt keinen der eine bessere Perfomance (Entrance) bein Eintritt in die Wrestling Halle hat als er. Er hat Geschichte geschrieben. Ohne ihn ist die wwe nichts ganzes und nix halbes!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: lagunswrote on 28.12.2010:[10.0] "Wer seinen Comic-Charakter über so lange Jahre am leben erhalten kann und damit auch in der "nur kurze Jeans und Unterhemd-HipHop-Mtv" Ära an der Spitze steht, MUSS gut sein. War der Undertaker wirklich fantasievoller als Papa shango oder Damian Demento? -eigentlich nicht wirklich. Aber er is noch da. HALL OF FAME! SOFORT! der undertaker 1+ der wrestler 3, weil er die schwindende Agilität tatsächlich immer öfter durch gutes Mattenwrestling ausgleicht WOW!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: teekay86wrote on 25.12.2010:[9.0] "Sein Gimmick gehört einfach zu den Besten die es im Wrestling gibt und gab. Darüber hinaus liefert er immer gute Leistungen im Ring. Hoch anzurechnen ist ihm ausserdem, das er sich weder zu schade ist Bumps zu nehmen, noch den Job für junge Talente zu machen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Necronwrote on 08.12.2010:[9.0] "Klar, ein Idol der WWE. Zu ihm muss man eigentlich nicht viel sagen, weil seine Vorzüge allesamt auf der Hand liegen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Marco2911wrote on 02.12.2010:[10.0] "Einer der besten in der WWE und das über Jahre. Ich geben ihm 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Larskanonewrote on 25.11.2010:[10.0] "Hat leider viel an seinem früheren Glanz eingebüßt , vielleicht durch schelchtes Booking oder durch das falsche Gimmick. Ich fand ihn eh als American Bad Ass besser , als als Deadmen, der übermächtige Sensenmann. Hoff aber dennoch, dass er mal wieda eine richtig gute Fehde bekommt, da er mit einem starken Gegner immernoch richtige Klassiker zaubern kann. Edit:was hab ich mir nur dabei gedacht als ich ihm 8 Punkte gab, für so eine Legend des Sports Entertaiment MUSS man einfach die voll Punktzahl geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: justusjonaswrote on 15.11.2010:[10.0] "Wenn man 20 Jahre in der WWE ist, und das auch noch mit so einem riesigen Erfolg. Wenn man so viele legendäre Schlachten bestritten hat. Dann kann man diesen Mann einfach nur 10 Pukte geben. Legendär. Auch wenn man es mehr und mehr sieht das er körperlich abbaut. Allzu lange sollte er den Job nicht mehr machen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: elcattivo83wrote on 13.11.2010:[10.0] "Ist für mich der Beste Charakter den die WWE je geschaffen hat. Leider aber hat er allmählich sein Zenit überschritten. Sieht man ja an seiner Verletztungsanfälligkeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Cheffewrote on 01.11.2010:[9.0] "Definitv eine Legende. Einfach Fantastisch was der Mann alles erreicht hatt. Ich bin wohl trotzdem einer der wenigen die das Biker-Gimmick besser fanden als den Totengräber. Heute sind seine Matches leider nicht mehr so Top, wie früher. Hoffe trotzdem das er es noch irgendwie bis WM 30 schafft und dann endgültig abdankt. Langsam wirds Zeit, er muss auch an sich denken."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rated R Champwrote on 16.10.2010:[10.0] "Blitzschläge und andere Zaubertricks, es gibt wohl weltweit nur einen einzigen Wrestler, dem man solche Dinge nicht negativ anrechnet und zwar DER größten WWE Legende. Die Präsenz Undertaker ist in der Wrestlinggeschichte wohl einmalig. Wie gesagt, meiner Meinung nach vor Hogan und Austin der größte WWE Superstar aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Homicide187wrote on 09.10.2010:[9.0] "Er ist einfach eine Legende aber durch sein Zwischenspiel als Biker hat er die 10 Punkte bei mir verspielt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Danicheckwrote on 04.10.2010:[10.0] "Der Undertaker ist nach 20 Jahre immer noch in der Lage, gute Matches zu bestreiten... Man hat es zuletzt bei den Match gegen Michaels gesehen. 10 Punkte für eine lebende Legende"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DJ MaSchwrote on 03.10.2010:[10.0] "Rein wrestlerisch für mich zwar keine zehn Punkte, trotzdem ist der Undertaker eine Ausnahmeerscheinung der Wrestlinggeschichte. Klar trägt das Gimmick seinen Teil dazu bei, aber man muss es dann auch erst mal so umsetzten. Er hat unzählige legendäre Schlachten geliefert und war vorallem zu meiner Anfangszeit als Fan einer meiner absolouten Favoriten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LabronBenoitwrote on 29.09.2010:[10.0] "Ohne wenn und aber einer der größten die es jemals gegeben hat, nicht nur wegen dem einmaligen und unverwechselbaren Gimmick sondern auch wegen seinen wrestlerischen Fähigkeiten. Ich hoffe, dass wir ihn noch einige Jahre sehen können!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BosnianDeadmanwrote on 26.09.2010:[10.0] "Gefällt mir Toll Mein Klarer Lieblingswrestler Ein Paar Negativitäten natürlich auch aber Wie er sich mit 45 Jahren noch aufrecht Halten Kann.  Respekt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertakemaintwrote on 23.09.2010:[10.0] "Das Beste was es zur Zeit im Wrestling gibt, wenn er fit ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Pyromaticwrote on 17.09.2010:[7.0] "Ich werde ihn immer als Wrestling Legende in Erinnerung haben, aber langsam wird es Zeit zu gehen, bevor sein Status als Living Legend anfängt zu bröckeln."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sloverwrote on 16.09.2010:[10.0] "Eine Legende im Wrestling. Schon seit Jahren aktiv und liefert immer gute Matches ab. Einfach Klasse"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gaven Eolowrote on 10.09.2010:[10.0] "Faszinierte mich schon als Kind und ist immer noch an der Spitze der WWE. Ich liebe es einfach dem Deadman zu sehen und seine jetzige Fehde mit Kane ist überraschenderweise echt gelungen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: rockysadrianewrote on 10.09.2010:[10.0] "Nach so vielen Jahren wird Undertaker immernoch R-E-S-P-E-K-T buchstabiert!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rock93wrote on 05.09.2010:[10.0] "Nach Michaels`Abgang Die WWE-Legende überhaupt unter den Aktiven. Sein Gimmick steht einfach über allem, und seine Leistungen im Ring überzeugen entsprechend. Für mich immer ein Favorit und ganz klar der größte Superstar im WWE-Roster!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Ramwrote on 02.09.2010:[9.0] "Dieser großartiger Wrestler wrestlete schon da war ich nicht mal auf der Welt. Die Glorreichte Zeiten des Undertakers könnte ich nie Verfolgen dennoch gefiel mir dieser Wrestler schon immer sehr gut. Trotzdem finde ich das man ihn schon sein Hohes Alter und die ein oder ander Verletzung im Ring anmerkt. (wobei ich ihn trotzdem lieber sehe als viele andere) Ausserdem find ich dieses Unmenschliche Getue teilweise zu übertrieben und unrealistisch. Gerade gegen Ende seiner Kariere sollte er mal langsam sein Gimick ablegen. Seine Wrestlemania Streak ist zwar irgendwie schon toll aber im Wrestling wo es immer heisst es kann alles passieren muss doch mal jemand gegen ihn gewinnen. Gerade Shawn hätte ich es gewünscht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Philippwrote on 26.08.2010:[10.0] "The Undertaker einer der besten aus der WWE, keiner kann so bei den Fans Punkten wie er. Ein Großartiker Wrestler ich hoffe das er trotz seiner kleinen gesundheitlichen Probleme noch Lange mit dabei ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Taker93wrote on 22.08.2010:[10.0] "Undertaker is der bester. Seit 1990 im business und kein bisschen müde schon starl )))"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SES-Memberwrote on 20.08.2010:[10.0] "Ich denke viel sagen muss ich zum Taker nicht. Alleine die Streak und das Er das ``Phenom`` ist schon ausschlaggebend dafür das Er mindestens 5 Punkte kriegt. Dazu kommt noch das Mark trotz seines Alter noch relativ schnell im Ring ist und eine Promo klasse rüberbringen kann. Wenn man nur mal die Matches gegen HBK, EDGE u. s. w. angugt weis man warum ich Ihm 10 Punkte gebe"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: lenny1910wrote on 18.08.2010:[7.0] "Inzwischen imme nur das gleiche: Er nimmt sich das halbe Jahr frei kehrt dann zurück, wird Champion und verteidigt dann seine Streak bei Wrestlemania und geht in die Pause, und das ist einfach nur langweilig. Ich bin immer froh wenn er Pause macht und die talentierten Wrestler bei Smackdown vorrücken wie letztes Jahr bei der CM Punk vs Jeff Hardy Fehde."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Shrinxwrote on 15.08.2010:[10.0] "Der Undertaker mag etwas in die Jahre gekommen sein, aber ich finde seine Matches immer noch klasse.  Und seine Streak wird wohl niemals enden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wuenschwrote on 24.07.2010:[10.0] "Er ist und blebt der Größte des Geschäfts! Vermisst in seiner besten Zeit 1999 als Ministryundertaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mika1986wrote on 18.07.2010:[10.0] "Der Deadman er beibt für mich einer der Besten die es jemals in der WWE gab , wobei ich ihn wünsche das er nächstes oder dieses Jahr eine Große Fehde (vieleicht mit Stabel) zum Kaierre ende bekommt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HBK1986RKOwrote on 17.07.2010:[10.0] "Mein erster großer Held des Wrestlings. Immernoch furchteinflößend find ich. Das Bikergimmick steht im defintiv nicht. Er ist und bleibt das Phenom."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ClaudeSpeedwrote on 15.07.2010:[10.0] "Zum Undertaker muss man nicht nviel sagen. Lieferst tolle Matches, gute Promos und hat ein verdammt cooles Gimmick. Hoffentlich bleibt er noch bis 20:0 bei der WWE erhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: samuel86wrote on 14.07.2010:[10.0] "Einer der Wrestler, die mich faszinert haben wie kaum ein Anderer, in der Vergangenheit und zum Teil auch heute noch, wie zum Beispiel die Fehde mit HBK. Sein Gimmick hat über die ganzen Jahre kaum an Farbe verloren und ist wohl das erfolgreichste Gimmick der Wrestlinggeschichte auf die lange Zeit bezogen. Er hat soviele große Matches bestritten, dass es kaum Sinn hat sie aufzuzählen. Trotz allem zollt das Alter auch ihm seinen Tribut und ich hoffe dass seine Kariere nicht wie bei vielen Anderen ein würdiges, fulminantes Ende findet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MICHAELAundMARKUS4EVERwrote on 11.07.2010:[10.0] "Der Undertaker ist der mit Abstand BESTE in diesem Business. Wrestlerisch für seine Statur sehr beweglich, dazu kommen tolle In-Ring Psychologie und das beste Gimmick aller Zeiten. DER BESTE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Medeawrote on 30.06.2010:[7.0] "Zu Beginn war das Image einfach genial, die Show war beeindruckend hat für Stimmung gesorgt. Mittlerweile finde ich, dass es immer das gleiche ist, die Moves wenig Abwechslung bieten und aus dem Charakter einfach nicht mehr viel zu machen ist, ohne sich ständig zu wiederholen. Dennoch bleibt der Taker einzigartig und wenn er irgendwann den Ring endgültig verläßt, wird sein Gimmick nicht zu ersetzen sein, was leider aber auch daran liegt, dass er keinen Schüler aufbauen kann oder darf. Da ließe sich - zwar nicht als Kopie aber ähnlich - sicherlich ein Erbe finden."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The last Outlawwrote on 22.06.2010:[10.0] "Dieser Wrestler hat das Wrestlin ganz schön verändert ohne ihn gäb es kein Hell in a Cell, Buried Alive, Casket, keinen Kane, kein Infernomatch.....  Sein Charakter als Undertaker spielt er nahe zu perfekt.  Seine Wrestlemania Streak unglaublich"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mucs28wrote on 12.06.2010:[10.0] "Ein Wrestler, der sich schon seit Ewigkeiten erfolgreich in der WWE hält und auch heutzutage noch einiges zu bieten hat. Natürlich kann man sagen, dass sein Gimmick ausgelutscht ist, aber es ist immer noch populär. Außerdem verleiht es ihm Charisma ohne Ende. Man merkt es jedes Mal, wenn seine Musik ertönt und alles abgedunkelt wird. Ein perfekter Wrestler für das Mainstram-Wrestling. ; )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JeriMizwrote on 12.06.2010:[10.0] "Für einen Undertaker kann man nur 10Punkte geben. Er ist einer der bekanntesten Wrestler die es gab bzw geben wird. Sein Gimmick is einfach gigantisch. In meiner Mark Zeit hätte ich jeden Vermöbelt der dem Undertaker geschadet hat. Trotz seiner Größe und Stämmigkeit, hat er dennoch ein paar Schnelle Moves/bewegungen. Ich hoffe er macht noch seine 2-3 Jahre den dieser Mann hat wirklich viel erreicht, und viel Dank für seine Harte Arbeit verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FuXwrote on 06.06.2010:[7.0] "Er ist in die Jahre gekommen und das merkt man ihm auch stark an. Zieht seit seinem Totengräber Comeback show für show das Selbe ab und ich erinner mich mit Schrecken an seine letzten Titelgewinne + run zurück. Naja, 7 Punkte."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: bigLwrote on 06.06.2010:[10.0] "Es wird Zeit daß der Taker endlich wieder da ist. Smackdown ohne ihn war wie ein Auto ohne Motor. Er ist und bleibt der Beste und ich trauere jetzt schon wenn ich daran denke daß er irgendwann wirklich nicht mehr wieder kommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: turkeltonwrote on 04.06.2010:[10.0] "Einer der größten ever... Er ist ein Paradebeispiel eines Mainstreamwrestlers"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: morph80wrote on 29.05.2010:[10.0] "Eine lebende Legende und ein Publikumsmagnet über viele Jahre. Auch wenn er im Ring nicht mehr das ist was er einmal war, für sein "Lebenswerk" muss man 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Yannick009wrote on 25.05.2010:[8.0] "Puhh ... Wenn ich ihn nur aufgrund der "guten alten Zeiten" bewerte natürlich 10 ...  Aber merkt einfach nicht wann es Zeit ist auf zuhören nur 8..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Erasedwrote on 23.05.2010:[10.0] "Einer der Personen, die man wohl am ehesten mit dem Wrestling verbindet. Wenn man den Namen Undertaker hört, denkt man sofort an ein spektakuläres, über Jahre gut funktionierendem Gimmick, spannende und interessante Promos und Matches. Dieses Gimmick passt einfach wie die Faust aufs Auge. Ein wirklich guter Technicker war Mark zwar nie, doch nötig war dies auch nie, er lieferte auch so erstklassige Matches ab, die einfach jedesmal wieder aufs neue unterhielten. Er hat eine Ausstrahlung wie kein zweiter. Hervorragender Mann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: tobiasthegreatone1wrote on 22.05.2010:[10.0] "Undertaker ein Wort ein Name eine Legende. Der Undertaker ist trotz oder vielleicht sogar wegen seiner Größe und seines Gewichts so beeindruckend. Er ist 44 Jahre alt er ist 2. 08 Meter groß und wiegt fast 140 KG und kann im lauf über das dritte Seil springen ! Sein Gimmick ist nicht ausgelutscht sein Gimmick ist legendär das Licht geht aus und jeder in der Halle weiß das der Taker kommt. Er ist ein Garant für Publikumsreaktionen selbst bei einer Scheintoten Crowd bekommt er Standing Ovations. Im Ring ist er extrem gut er hat die beste Ring Psychologie die ich jemals gesehen habe. Sein Mic work ist großartig man muss ihm einfach 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TeeHaawrote on 18.05.2010:[10.0] "Der Taker stellt eines der besten Gimmick, Entertainment, Ringskill Gesamtpakete dar. Sicher könnte ich ihm einen Punkt abziehen, weil er heute öfter Verletzt ist, nur noch ein oder zwei epic-matches im Jahr raushaut - und er sein Gimmick in den letzten fast 10 Jahren nicht mehr geändert hat (warum muss man sein Gimmick ändern, wenn man so verdammt over ist, wie der Taker? ) Ich will hier aber nicht anfangen aufzudröseln wieviele Jahre er 9 und wieviele Jahre er 10 Punkte hatte um dann irgendwie eine Endnote zu vergeben. Welche Note werde ich wohl mit dem Taker verbinden, wenn er mal geht? Welches Attribut werde ich gebrauchen, um den Taker einem jungen wrestlingfan zu beschreiben. Die Antwort - legendär! - 11/10! Das wird am Ende bleiben und diese Note gebe ich ihm."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Golgotawrote on 14.05.2010:[10.0] "Dead Man Walking. Eine Legende, die aufhören sollte, solange sie noch oben ist. Wenn der Taker sich vom Wrestling verabschiedet, tue ich das mit ihm zusammen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Edge96wrote on 12.05.2010:[10.0] "Wird als einer der allerbesten in die Geschichte eingehen. Ich mein seit 20 Jahren bei der WWE in Vertrag und zeigt seit dem ununterbrochen geniale Leistungen. Super Gimmick und auch das Wenige was man von ihm am Micro hört ist auch nicht schlecht. Daneben eine Super Ausstrahlung und auch wenn sein Einzug etwas lang dauert finde ich ihn trotzdem atemberaubend. Etwas anderes als 10 Punkte kann ich hier nicht geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gustelwrote on 09.05.2010:[10.0] "Muss ich hier überhaupt was sagen? Einer der Besten, wenn nicht der Beste und stellt auch noch mit 45 Jahren Matches auf die Beine die mich vom Stuhl hauen. 10 Punkte, keine Diskussion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sandmannwrote on 04.05.2010:[10.0] "Was soll man noch groß zu Mr. WWE sagen. Der Taker hat alles gewonnen, hat gegen jeden großen Star im Ring gestanden und ist unbesiegt bei Wrestlemania. Eine Lebende Legende dem Quasi nur noch die abschließende Story fehlt um verdienter massen in Rente zu gehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: element-41wrote on 03.05.2010:[9.0] "Der Mann ist eine Legende. Mehr kann man dazu nicht sagen. Aber ich finde es wird Zeit, dass er aufhört. Seine In-Ring Fähigkeiten lassen stark nach. Er hat(te) zwar eines der geilsten Gimmicks im Wrestling Business überhaupt, jedoch nervt es langsam. Er muss einsehen, wann er aufhören sollte. Aber trotz allem, für 9 Punkte reichts!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RickRollwrote on 02.05.2010:[4.0] "Gefiel mir lediglich als Mark, was ja auch verständlich ist. Wie dem auch sei, er ist definitiv eine Legede, das will ich nicht abstreiten, aber ich verbinde eher negatives mit Taker als mit positiven. Sein Entrance hat mich immer extremgenervt. Man braucht ja nicht in den Ring sprinten, aber 5min zu warten damit er endlich im Ring ist ist zuviel des guten. Dazu stört mich der aspekt das er sich nie weiterentwickelt hat, den er zeigt IMMER das selbe und sowas mag ich überhaupt nicht, weshalb ich auch RVD eine "schlechte" Note gab. Dazu fehlt es mir das wenn ich Taker im Ring absolut nicht denken kann. "Oh, wer wird jetzt gewinnen? " denn Taker gewinnt, jedes Match clean, jedes WM Match und jede Fehde, weshalb die spannung VOLLKOMMEN weg ist. Solltete schon lange in den Ruhestand gehen."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Damon Strikerwrote on 01.05.2010:[8.0] "Sicherlich für seine Größe kein schlechter Wrestler aber sein Gimmick und damit verbundene, weitestgehende Stummheit gefallen mir überhaupt nicht. Neben seinen vielen guten Kämpfen sollte man auch nicht die vielen Rohrkrepierer gegen Monster/Big Men sowie die teilweise sinnfreien Segmente und Angles vergessen. Hat mir als Biker irgendwie am besten gefallen!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Reiskartoffelwrote on 17.04.2010:[10.0] "Der Sensenmann der WWE.  Der wohl bekannteste Wrestler der heutigen Zeit. Er ist quasi die noch einzige aktive Legende.  Er bestizt das wohl beste Gimmick aller Zeiten. Seine Ringfähigkeiten sind ohne Zweifel -für ein Alter und siene Größe-stark. Was mich dennoch stört: Er verliert eigentlich nie clean. Deshalb ist eine spannende Auseinandersetzung zwischen ihm und einem Face unmöglich. Dennoch, Hut ab vor dieser Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PunkZEROwrote on 15.04.2010:[9.0] "Ja, er ist häufig verletzt und nein, er kann mich nicht mehr sogut unterhalten, wie vor einem Jahr noch. Dennoch bleiben nach einer großen Karriere nebstder Fähigkeit, immer noch fantastische und spannende Matches zu zaubern die 9 Punkte stehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Icebreakerwrote on 13.04.2010:[10.0] "Der Deadman, Phenom, Sensenmann... welchen Namen man auch immer wählen mag, dieser Mann ist eine Legende. Seit nun fast 20 Jahren arbeitet er schon für die WWE/F und trotz momentaner gesundheitlicher Probleme ist er immer noch in der Lage gute Matches zu zeigen (siehe Taker vs. HBK). Der größte Techniker mag er nicht sein, aber es gibt kaum einen faszinierenden Charakter als ihn. Sein Charisma ist unglaublich, seine Mimik und Gestik, sowieso sein Micwork einfach exzellent und sein Wille den Fans trotz Schmerzen eine gute Show zu liefern bemerkenswert (der Bump vor dem vermeintlichen Karrierende bei One Night Stand) oder der Pyro-Unfall bei Elimiation Chamber. Einer meiner absoluten Lieblingswrestler dessen Einzüge und "Wiederauferstehungen" legendär sind. Unzweifelhaft einer der größten aller Zeiten! Wenn ich dem Taker zu gucke, werde ich auch gerne mal kurzzeitig zum Mark ; -). Ob als Biker oder als Sensenmann (obwohl ich das Deadman Gimmick bevorzuge, weil es einfach einzigartig ist), dieser Mann ist eine Ikone und ohne ihn wäre Wrestling nicht das gleiche."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Matt Mackswrote on 06.04.2010:[10.0] "Dem Undertaker ist sein Alter anzusehen und natürlich benötigt der geschundene Körper Pausen und auch mal ein paar Minuten weniger Matchzeit, darüber kann es keine ernsthafte Diskussion geben. Allerdings muss auch klar sein, dass der Deadman mit Mitte Vierzig noch besser ist als alle anderen WWE-Wrestler, wenn es um das "Big Match Environment" oder die Superstar-Aura geht. Jetzt, wo Shawn Michaels seine Karriere (wahrscheinlich) beendet hat, ist der Undertaker für mich der letzte aktive Superstar mit Legendenstatus und dem "Hauch der 90er", in denen er groß geworden ist. Wenn meine Meinung etwas zählt, kann er noch jahrelang weitermachen und nach mehreren Monaten Pause einen weiteren Klassiker bei WrestleMania zeigen und seiner einzigartigen Siegesserie eine Kerbe hinzufügen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Parlaelwrote on 05.04.2010:[9.0] "Eine Legende. Zwar weniger wegen seiner wrestlerischen Leistungen (immerhin ist er ja auch schon ein alter, alter Mann), doch vor allem wegen seiner Ausstrahlung, seinem Gimmick, seinem Mic-Work. Ich freue mich jedes Mal, wenn ich den Gong höre und die Halle dunkel wird. Auch hat er ein paar unglaubliche Matches abgeliefert. Das Streek vs. Career Match bei WM 26 wird sicherlich vielen in Erinnerung bleiben, ebenso wie das Match gegen Michaels bei WM 25. Wenn es jemand verdient hat, Shawns Karriere zu beenden, dann der Taker. "Nur" 9 Punkte deswegen, weil er (leider) wie jeder andere auch, älter wird und man es ihm ansieht. Da es bei ihm in meinen Augen jedoch nicht so sehr auf akrobatische Talente ankommt, sogar gute 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheDPHwrote on 05.04.2010:"@Vorredner: Hast du schon mal was von eigener Meinung gehört .. ?"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Franjisewrote on 31.03.2010:[9.0] "Eines der besten Gimmicks aller Zeiten. Der Undertaker ist einer der groessten aller Zeiten. Nicht nur ausserhalb des Rings. Auch im Seilgeviert wusste der Sensenmann ueber die Jahre zu ueberzeugen, auch noch im hohen Alter. Einen Punkt abgezogen habe ich allerdings, weil sich das Gimmick ueber die Jahre nicht veraendert hat und wenn, dann nur, dass der Taker etwas, wie soll ich sagen, "sanfter" geworden ist. Frueher waren seine Promos finsterer. Jetzt ist es fast immer das selbe, aber nach wie vor auf hohem Niveau."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Viperwrote on 30.03.2010:[10.0] "Trotz des so hohen Alters und der Verletzungsanfälligkeit bringt er immer noch sehr konstant gute Leistungen. Die Streak macht ihn zur lebenden Legende"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tribbel Eitschwrote on 28.03.2010:[10.0] "Dieser Mann ist nichts anderes als eine lebende Legende. Er hat eine Popularität erreicht, die selbst über die Grenzen der Wrestlingwelt hinausgeht. Er ist schlicht und ergreifend einmalig. Einen so imposanten, mysteriösen, beeindruckenden Charakter wird es nie wieder geben. Wegen ihm bin ich Wrestlingfan geworden. Bei ihm wird jeder Einzug zum Ring schon zum Erlebnis und beschert mir immer wieder eine Gänsehaut. Und selbst auf seine verhältnismäßig "alten Tage" ist er noch in der Lage, fantastische Matches abzuliefern (wenn auch vielleicht nicht mehr so häufig wie früher)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KingSvenwrote on 27.03.2010:[10.0] "Meiner Meinung nach der beste Big-Men den das Wrestling überhaupt gesehen hat. Für seine Größe und seine Gewichtsklasse besitzt er eine unglaubliche Technik und Dynamik. Besitz außerdem unglaublich viel Charisma und kann sein Gimmick exellent verkörpern. Zu guter letzt auch gut am Mic. Eine absolute Legende und ich denke, auch für seine Hingabe zum Wrestling-Business, sind hier 10 Punkte angebracht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Papa Popanzwrote on 18.03.2010:[7.0] "Auch wenn ich es liebe wie der Taker seine Gegner auseinander nimmt und was für eine Show er abzieht. Doch leider sind seine Auftritte in der letzten Zeit recht schwach geworden und nur ein starker Gegner lässt ihn gut aussehen"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Showstopper45wrote on 17.03.2010:[10.0] "Er ist seit 20 Jahre dabei hat sich von Jahr zu Jahr immer wieder verbessert das ist einzigartig. Man sieht auch das er wieder besser wird am Mic und seine Matches sind immer wieder super gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Moyawrote on 14.03.2010:[10.0] "Eine Legende, die immernoch starke Matches zeigen kann, ohne Frage! Sicherlich einer der ganz Großen des Wrestlinggeschäfts."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fat Mikewrote on 14.03.2010:[10.0] "Einer meiner absoluten Lieblinge. Seit 20 Jahren ist er eine der Säulen der WWE und weiß auch heute noch zu überzeugen. Schade das er wohl nicht mehr lange dabei ist, aber so langsam werden sein fortgeschrittenes Alter und der körperliche Verschleiß immer deutlicher, denn er kann nur noch selten das hochwertige Niveau bieten, das man sonst im Ring von ihm gewohnt war. Nichtsdestotrotz, insgesamt würde ich ihn sogar noch vor Austin und The Rock als DEN WWE Superstar bezeichnen, da er nicht nur wenige Jahre auf dem höchsten Level war, sondern die schon erwähnten 2 Jahrzehnte ein hochklassiger und verlässlicher Worker war, der selbst wenn er in den Shows etwas in den Hintergrund rückte, ungemein wichtig für die Liga war und nie enttäuschte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Eazyewrote on 10.03.2010:[10.0] "Halt einfach das was man sich unter einem guten Worker vorstellt: Gut im Ring, charismatisch und halt einfach gutes Micwork. Das alleine hätte zu etwa 8-9 Punkten geführt. Aber was mir den Grund gibt, dem Undertaker 10 Punkte zu geben ist seine Jahrelange Loyalität zur WWE. Bald 20 Jahre ist er Tag für Tag Angestellter der WWE gewesen. Das ist etwas das wahrscheinlich noch kein Worker aus den letzen 20 Jahren geschafft hat. Daneben bietet er bombastische Matches, sein Gimmick ist legendär. Hoffe aber er beendet seine Karriere bald, oder kehr nur noch zur Wrestlemania zurück."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: breunig88wrote on 28.02.2010:[10.0] "Der Undertaker ist DER vorzeige Wrestler und für mich DER BESTE WRESTLER ALLER ZEITEN.  ich hoffe bloß das seine serie bei Wrestlemania bestehen bleibt! "R.I.P Shawn Michaels""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker17wrote on 26.02.2010:[10.0] "The Undertaker ist für mich eine der grössten Legenden in der WWE.Er hatte in seiner Karriere viele sehr gute Fehden z.b. mit Stone Cold,Kane,Batista und HBK. mit diesen Fehden hat er  bewiesen das er eine der grössten Legenden in der WWE ist.Ich hoffe das er noch ein paar Jahre weitermacht.Seine Gimick überzeugt mich sehr.Ich hatte mal das Vergnügen im Hallenstadion Zürich.Schon als die Glockenschläge ertönten war es unglaublich und als dan der Rauch den Boden bedeckte und der Deadman auftauchte war die Stimmung ind der Halle einfach fantastisch.Darum bekommt The Undertaker 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: UndertakerNr1wrote on 25.02.2010:[10.0] "Der Undertaker - nie hat es im Wrestling eine derartige Persönlichkeit gegeben und ich denke, dass es diese auch niemals wieder so geben wird. Ob nun als Totengräber, als Anführer der Ministry oder als Badass - der Undertaker hebte sich stets von allen anderen Wrestlern ab. Und man darf nicht vergessen, dass er für seine Größe und sein Gewicht sehr gute Leistungen zeigt. Und das besondere ist, dass er mit den Jahren nicht immer schlechter, sondern immer besser wurde. Zu Beginn seiner WWF-Karriere hatte der Undertaker etwas bedrohliches, unantastbares an sich. Er kam gruselig und mysteriös rüber. Wer diesen Mann sieht, der vergisst ihn nicht mehr. Auch als Badass gefiel mir der Undertaker ausgesprochen gut. Es war sicher nicht der typische Undertaker, aber ich muss sagen, dass der Undertaker als Badass unheimlich cool rüberkam! Angefangen von seinem Auftreten, seiner Entrance Music bis hin zu seinen Promos. Nur heute finde ich, dass sich das Gimmick des Undertakers ein wenig abgenutzt hat. Dennoch sehe ich ihn lieber als 90 Prozent des restlichen WWE-Rosters. Der Undertaker wird immer einer der ganz Großen bleiben. Er war von Anfang der 90er bis heute durchgehend bei der WWE, das hat KEIN aktiver Wrestler geschafft. Er ist ein zukünftiger Hall of Famer - ohne Frage!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Manu Adamswrote on 16.02.2010:[10.0] "Holpriger Start als Mean Mark an der Seite von Teddy Longs Skyscrapers, hatte er es dann allerdings knapp zwei Jahr später in der WWF zum absoluten Publikumsliebling der Massen gebracht. Ein Mann der mich jeden Monat immer und immer wieder überrascht wie stark er sich verbessert. Er ist zwar doch schon Mitte 40 und sehr erfahren, aber dennoch entwickelt er sich im Alter, wie er uns mit der Fehde gegen den Heartbreak letztes Jahr bewiesen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: the king of kingswrote on 14.02.2010:[10.0] "Er ist einfach der beste Wrestler auf der Welt. Sein Gimmick ist so klasse, und er hat so gute Aktionen drauf. Ich fande die Fehde gegen Batista am besten, die war interessant weil alle beide richtig lange Kämpfe abgegeben hatten, aber leider wurde es dafür immer langsamer. Aber wie gesagt, für mich der beste Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Y2J Chris Jericho The Ayatollah of Rock n Rollawrote on 13.02.2010:[10.0] "Der Undertaker ist in der WWE eine Legende. Es gibt wohl kaum einen Wrestler, der über einen so langen Zeitraum in der WWF/E eine so bedeutende Rolle gespielt hat (in der Sports Entertainment-Äre könnte man ansonsten höchstens noch Hulk Hogan hinzuziehen). Dazu kommt, dass Mark Calaway für einen 2m+ Mann äußerst beweglich ist und dementsprechend über einige recht Aufsehen erregende Moves verfügt. Sein Micwork ist zwar nicht überragend, aber für die Rolle des Deadman völlig ausreichend. Sein einziges Problem ist sein legendäres Gimmick. Durch die Dominanz, die der Undertaker verkörpern muss, ist es schwer, ihn in längere Storylines zu stecken oder ihm einen längeren Titelrun zu geben, da sich gerade im letzten Fall die Frage stellt, wie man ihm irgendwann den Titel wieder abnehmen kann, ohne dass sein Gimmick dadurch Schaden nimmt. Das dürfte wohl auch einer der Gründe sein, warum der Taker während seiner langen Karriere nur wenige cleane Niederlagen "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Aquifelwrote on 08.02.2010:[8.0] "Ich war zwar immer ein Undertaker Fan, aber mehr als 8 Punkte sind momentan einfach nicht mehr drin. Dazu hatte er über seine Karriere (gerade auch in der WWE) auch zu viele mittelprächtige Matches und Fehden. Und auch in letzter Zeit war es immer gespalten. Gute Fehde und gute bis sehr gute Matches gegen Edge, grauenhafte Fehde gegen Big Show, dann wieder zwei sehr starke Auftritte (No Way Out 2009, WM 25) und danach wieder sehr viel Luft nach oben. Natürlich eine Legende, natürlich viele sehr gute Matches, aber auch sehr viel auf und ab."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Exist 2 Inspirewrote on 07.02.2010:[10.0] "Eine lebende Wrestling Legende, der immer für einen Klassiker gut ist. Ich schau mir den Taker auch heute noch gerne an. Hoffe mal das er uns noch 1-2 Jahre auf hohem Niveau erhalten bleibt und dann seinen wohl verdienten Ruhestand antritt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Big Bad Booty Babywrote on 30.01.2010:[10.0] "Der Undertaker ist nicht einfach eine Legende. Er ist DIE Legende. Egal wem ich erzähle, das ich Wrestlingfan bin, jedem der weiß was Wrestling überhaupt ist, ist der Undertaker ein Begriff und ich bekomme Sätze zu hören wie: "Den fand ich schon immer gut. ", "Gibst den immer noch? " und "Der ist der einzige, der mir aufgefallen ist". Auch wenn man mit Wrestling nichts an Hut hat, kommt man nicht daran vorbei von ihm beeindruckt zu sein. Sein Gimmick funktioniert seit Jahrzehnten und er hat es stetig weiterentwickelt. Das gleiche gilt für sein Können im Ring, sodass er einer der wenigen Wrestler ist, die mit dem Alter besser werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Vimeswrote on 26.01.2010:[9.0] "Hat mich der Undertaker in den Jahren 2007/2008 noch begeistert, so war das Jahr 2009 eher enttäuschend. So angeschlagen wie er derzeit ist, sollte er nicht im Main-Event stehen und dem doch derzeit ganz gut besetzten SmackDown! -Kader den Spot nehmen. Sollte sich sein Zustand nicht bessern, wäre es an der Zeit, über einen Rücktritt nachzudenken(Sonst gibt es weitere Abwertungen)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RoHSupporterwrote on 25.01.2010:[7.0] "Undertaker ist bestimmt eine Legendäre Persönlichkeit im Sports Entertainment aber ich finde das er jetzt aufhören sollte. Sein ausgelutschtes Galileo Mistery Gimmick nervt nur noch und dauern verletzt ist auch, er gewinnt jede Fehde und wird noch mehr als Superman dargestellt als z. B. Cena. Für seine früheren Verdienste hätte er eine 10 verdient aber so nur eine 7 da es für ihn echt Zeit wird aufzuhören bevor er noch im Ring stirbt!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: quazogenwrote on 25.01.2010:[8.0] "Für mich eine 7, nein 8. Gut aber eben nicht die Höchstwertung. Zeigt für seine Größe wirklich wirklich starke Matches. Sein Gimmick wohl mehr als nur legendär. Eine Overness seit Jahren, beeindruckend - auch wegen seines "entschärften" Terminkalenders in der WWE. Einen Bonuspunkt - zur 8 - gibt es für seinen Finisher, der "Tombstone Piledriver" wohl mit fast mystischem Charakter und eigener Overness. Stark. Seine Wrestlemania Winning-Streak wichtiger als jeder Belt. Undertaker einer der größten seiner Zeit."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DaRkwrote on 23.01.2010:[10.0] "Der Taker ist einfach ein toller Wrestler, weil er ein einzigartiges Allroundtalent ist. Außerdem ist er eine Legende und trotz seines hohen Alters gehört er auf jeden Fall zu den Besten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheROCKwrote on 22.01.2010:[10.0] "The Living Legend. Der aktuelle Papst im Wrestling-Business. 17-0 bei WrestleMania. Mit 44 Jahren auf einem noch unglaublichen Level. Alle die etwas anderes behaupten sind wahrscheinlich 18 und gesund und können einen körperlichen Verschleiß bei diesem ''Sport'' gar nicht einschätzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: novacanewrote on 19.01.2010:[10.0] "WWE Ikone - ein Gimmick für die Ewigkeit. Tolle Fehden und Matches über zwei Jahrzehnte. Auch in seinem jetzigen Alter noch mit sehenswerten Matches - makes 10 in my book."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ShakDragoonwrote on 19.01.2010:[10.0] "Einfach Kult und neben Hulk Hogan wohl der bekannteste Wrestler! Ich freute mich sehr über seinen Wrestlemania-Sieg gegen das äußerst beschränkt talentierte Etwas, genannt "Batista"! Danke an WWE, dass er nun abermals den Titel halten darf!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HeartBKwrote on 13.01.2010:[10.0] "Einer der absoluten Topstars der WWE. Einzigartiges Gimmick mit großer Vergangenheit und denkwürdigen Storylines (Kane). Wrestlerisch auf hohem Niveau, auch wenn es mit seinem gehobenem Alter wohl langsam dem Ende zugeht. Undertaker will never REST IN PEACE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Unrated Superstarwrote on 13.01.2010:[10.0] "Seine In Ring-Skills waren schonmal besser? Was zur Hölle erwartet man von einem Mann Mitte 40 mit Gelenkbeschwerden? Was er in dem Alter und seiner körperlichen Verfassung noch für Aktionen zeigt... einfach der Wahnsinn! Zudem ein gutes Vorbild für jüngere Wrestler. Wer behauptet Hulkamania wäre unsterblich, der hat sich schwer getäuscht. Pfft... Hulkamania ist schon längst Geschichte und der Undertaker steht immer noch. Champions kommen und gehen, aber der Deadman steht ewig! Zudem bringt er bei Live Events jede Halle zum kochen wie ich selber erleben durfte - und das trotz des angeblich ausgelutschten Gimmicks!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Quasowrote on 08.01.2010:[7.0] "Eine Legende... Trotzdem sollte er bald Schluss machen und seinen Körper schonen"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RatedRJuliwrote on 07.01.2010:[9.0] "LEGENDE. Muss aber bald aufhören denn mit dieser Hüfte bringt er kein gutes Match mehr zusammen"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RALPHwrote on 07.01.2010:[7.0] "Undertaker ist nicht gerade mein Favorit , aber er ist gut"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Denzwrote on 04.01.2010:[10.0] "Ich finde seine Gimmick hat viel Stil und obwohl er seit ungefähr 20 Jahren in der WWF/E dabei und mittlerweile ziemlich alt ist, sehen seine Schläge und viele seiner Moves stark aus. Als ich in den 90ern den Undertaker sah, hatte ich bei seinen Clothelines immer das Gefühl, dass er schweben würde. Er ist zwar nicht sehr oft am Mic, jedoch ist er ein Meister in diesem Gebiet. Die Idee mit seiner Siegesserie bei Wrestlemania finde ich klasse. Er hatte selbst mal angeboten sich für Kane bei Wrestlemania XX hinzulegen, was Vince überhaupt nicht gepasst hat... Schade, dass er seine Karriere in den nächsten Jahren beenden wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Cripplerwrote on 04.01.2010:[7.0] "Ich finde sein Gimick inzwischen sehr langweilig schließlich macht er das als Deadman schon seit über 20 Jahren so, trotzdem sind sehr viele seiner Moves überraschend und er hat sehr viele Fans."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Razor995wrote on 02.01.2010:[10.0] "Ich habe mich damals als ich anfing Wrestling zu gucken nicht gleich mit der gegenwart beschäftigt,sondern alte zeiten....damals ales er mit Kane B.O.D war das war schon genial.Dann kam die richtige "Bad Ass" zeit auch gut gemacht von ihm,und dann natürlich der Deadman,the Phenom oder wie auch immer man ihn nennen möchte.Ein super Wrestler der auch gegen ALLE neulinge ankommt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Aesopwrote on 17.12.2009:[10.0] "Der Undertaker hat sich die best Note verdient, denn er hat dieses Kult Gimmick, was in charismatisch macht und ihm eine gewisse Ausstrahlung verleiht. Er ist ein sehr guter Brawler und auch technisch hat er den meisten in seiner Größen und Gewichtsklasse einiges voraus. Er war, als ich noch Mark war, schon einer meiner absoluten Favoriten, und das hat sich bis heute gehalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: hardy-boywrote on 15.12.2009:[10.0] "Was soll man zum Deadman schon sagen?! Er ist einfach hammer im Ring und hat das wohl legendärste Gimmick der WWE! Eine absolute Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Detrituswrote on 13.12.2009:[8.0] "So cool der Taker auch früher war, so hat er seinen Zenit schon längst überschritten. Wrestlerich war er sowieso nie ein Highlight. Bei ihm macht allerdings der Kultfaktor einiges wett."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GabberGizmowrote on 12.12.2009:[10.0] "Für mich einer der herausragensten Wrestler überhaupt ! Einfach KULT !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Acid Dwrote on 29.11.2009:[10.0] "Ich kann einfach keine andere Note vergeben. Der Undertaker begeistert mich nun seid ich angefangen habe Wrestling zu schauen (1993) , und überrascht mich immer wieder aufs neue. Sei es durch großartige Matches, neue Moves, die er sich in seinem fortgeschrittenen Alter noch aneignet, oder einfach nur durch seine Präsenz. Für mich der Inbegriff einer Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Checkerwrote on 24.11.2009:[10.0] "Einfach nur genial der Sensenmann der WWE und live einfach gigantisch"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: chaoswrote on 23.11.2009:[10.0] "Fast 2 jahrzehnte der Zerstörung und noch immer nicht am Ende. Der Deadman ist eine lebende Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Prince of darknesswrote on 22.11.2009:[10.0] "Er ist seit 20 Jahren dabei und wird anstatt schlechter immer noch besser.  Er ist einfach eine Ikone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LebendeLeichewrote on 21.11.2009:[9.0] "Eine Legende! Wenn es ihn nicht gäbe wäre die WWE nicht das was sie jetzt ist. Nur man merkt das er nicht mehr auf seiner hösten Leistung ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: downtown2wrote on 18.11.2009:[10.0] "Das Wrestling des Undertakers wurde mit den Jahren immer besser, das ist schon erstaunlich, da sein körperlicher Zustand naturgemäß immer schlechter wurde. Besonders gut gefielen mir die Jahre des Bikers, hier konnte er das volle Potential ausschöpfen und überzeugte auf ganzer Linie. Die endlosen Jahre des Totengräbers hingegen haben mir nie zugesagt, bin ihnen sogar mehr als überdrüssig, aber dass wird sich hier nicht negativ auf die Beurteilung auswirken. Wer es schafft, zwanzig Jahre lang immer neue Generationen von Wrestlingfans ausrasten zu lassen, der hat es definitv mehr als drauf. Volle Punktzahl fürs Lebenswerk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Muutzwrote on 17.11.2009:[10.0] "Eine Legende, zwar ins Alter gekommen aber in letzter Zeit fängt er sich und liefert auch längere Matches ab. Wenn er geht wird er eine Lücke hinterlassen, die schwer zu schliessen ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Edi Gliederwrote on 16.11.2009:[3.0] "Wenn man nicht fit ist sollte man nicht Champion sein oder den jungen Talenten das Momentum stehlen. In seinen so schon eintönigen Promos kommen die Wörter "Darkness" oder "Soul" mindestens einmal vor. Albernes Gimmick und immer langweiligere Matches bewegen mich zu einer verdienten Abwertung für den Undertaker."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Okiawrote on 16.11.2009:[10.0] "Hammer Wrestler!  Er ist sowohl wrestlerisch als auch ausdrucksmäßig einfach nur stark, was auch begründet, warum er sich schon so lange in der WWE hält!  Bei der WWE in Deutschland hat es sich nochmal bewiesen, dass er einfach jeden Wrestlingfan umhaut... die Stimmung war großartig, als er reinkam :D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheLoudMouthwrote on 16.11.2009:[10.0] "Einfach ein Phänomen. Wohl der beste Big Men aller Zeiten, genauso rekordverdächtig ist sein Gimmick. Das Mic-Work ist wegen seinem Gimmick leider sehr begrenzt, aber auch das gleicht sein Charisma wieder aus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Shane82wrote on 15.11.2009:[10.0] "seit seinem Debut hat er vieles wenn nicht sogar alles erreicht, besonders in der WWE.  Er ist ein Mann von Größe. Alleine seine Erscheinung/Gimmicks sind legendär."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Zizouwrote on 08.11.2009:[8.0] "14. 08. 09 - Das Gimmick verliert mit der Zeit etwas seinen Reiz, nach wie vor ein Großer, aber die Abwechslung fehlt. -------------- 06. 11. 09 - Man sieht ihm das Alter so langsam an. Seit der Rückkehr langsamer als gewohnt und mit kurzen Matches. Hoffe er erholt sich oder bricht früh genug ab. Trotzdem immer noch 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ultrakaoswrote on 06.11.2009:[7.0] "Der Undertaker ist ein Klasse Wrestler doch ist er über dem Zenit.Sein Gewicht + Größe verschafft ihm oft verletzungen.Aber auch ein - Punkt ist das er ein Reiner Gimmick Wrestler ist.Aber trotzdem ganz ok.Und was ich mir sehr erhoffe das er bei WM 26 gegen Ted DiBiase verliert und DiBiase zu einem großen push verhilft.Aber auch Jericho wäre eine alternative da Edge länger ausfällt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Last Ridewrote on 04.11.2009:[10.0] "Mein Liebling, ich gebe es zu. Einige können nichts mehr mit ihm anfangen, aber ich sehe ihn nachwievor sehr gerne (auch, wenn der Einmarsch manchmal nervt). Für seine Grösse ist er unbestritten enorm schnell im Ring (sicherlich ein wenig langsamer als früher), da kann sich mach anderer noch die ein oder andere Scheibe abschneiden, dazu liefert er immer saubere Arbeit ab. Ich bin mir sicher, wir werden noch 5-8 längere matches von ihm sehen, matches auf höchstem Niveau, wie das gegen HBK bei Wrestlemania. Er wird sich sehr würdig verabschieden und zwar in zwei, oder drei Jahren. Die Verdienste sind eh bekannt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: narmedeifwrote on 02.11.2009:[10.0] "Ich gebe Undertaker 10 Punkte weil ich meiner er ist eine der großen Autoritätspersonen bei der WWE, seine Show ist einfach die beste da bekommt man immer ghänsehaut vom zuschauen auserdem läst er seine gegner immer verzweifeln dadurch das er immer wieder aufsteht er ist einfach unschlagbar"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Whopperlewrote on 26.10.2009:[10.0] "Einfach das beste Gimmick ever, ewig in der WWE, vielleicht heute nicht mehr so gut wie früher, aber was soll man machen er is einfach mein liebling : )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Orgasmatronwrote on 26.10.2009:[10.0] "Wieso wird ein Mann schlecht bewertet der seit Jahren das erste mal eine schlechte Phase hat? Er lieferte seit 05 immer gute bis überragende Matches ab, er verbesserte sich im Alter extrem andere werden da schlechter. Mit 20 Jahren im Geschäft hat er sich Respekt und auch Backstagemacht verdient. The Undertaker bringt keine Superstars over? Verdammt nochmal er hat Orton die Karriere gerettet er hat Mr. Kennedy zum Top Heel von Smackdown gemacht! Es gibt noch genügend weitere Beispiele. Es wird so getan als wenn er jeden Moment tot umfallen würde. Ich hab jeden seiner  Kämpfe seit seiner Rückkehr gesehen er ist zur Zeit schlecht drauf trotzdem sehen die Aktionen von ihm tausend mal runder aus als die von Batista oder HHH. Ich hoffe das nicht Edge nach seiner Rückkehr in ein Loch fällt denn dann müsste man ihn auch 0 Punkte geben. Ich gehe jede Wette ein das der Undertaker Anfang 2010 wieder Topform erreicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 1234wrote on 25.10.2009:[5.0] "Er war nie ein herausragender Wrestler und hat gerade zu Beginn seiner Zeit nur vom Gimmick gelebt. Nach der Phase als Biker und der damit verbundenen Rückkehr zum leicht abgeschwächten Deadman-Gimmick, hatte er seine stärksten In-Ring Jahre, die in einem tollen Match gegen HBK endeten. Auch gegen Kurt Angle, Randy Orton und Batista zeigt er spannende Kämpfe. Seit seiner Rückkehr ist er aber weit von dieser Form entfernt und man sieht in stark an, dass er gehandicapt ist. Vor einem Jahr hätte ich ihn 8 gegeben, vor 5 Jahren 6 Punkte. Im Moment bekommt er 5, weil er ganz offensichtlich denselben Fehler wie so viele macht und den Rücktrittszeitpunkt verpasst."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheUndertaker1986wrote on 24.10.2009:[10.0] "Der Mann ist einfach nur LEGENDÄR! Schon wo ich klein war hat er schon gewrestlet... WAHNSINN!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DERHASSwrote on 24.10.2009:[7.0] "Er war mein großer Fav, aber langsam aber sicher sollte er aufhören und nicht wie geplant noch 2-3 Jahre ranhängen und daher nur 7 Punkte! Falls er bei WMXXVI doch aufhört korrigiere ich das gerne wieder!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Cloverwrote on 23.10.2009:[9.0] "Der Wrestler mit der wohl längsten Entrance... da kann ich immer schön auf die Toilette gehen und noch zum Kühlschrank.. Ansonsten ist sein Gimmick durchgekaut - respektieren tu ich ihn dennoch! Besonders gefallen hat er mir als Biker, da er dort fast wie der Privatmann sein durfte. Und für seinen technischen Fortschritt applaudiere ich ihm. Nicht jeder gibt sich in diesem Alter noch die Mühe, sich weiter zu entwickeln.. Auch einer der besten Wrestler der letzten 20 Jahre und ein zukünftiger Hall Of Famer. Doch bei einem Sonnenstudio-gebräunter Deadman fühl ich mich inzwischen schon veralbert.. daher 9, 5 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Saschwrote on 23.10.2009:[10.0] "Der Undertaker eine allseits beliebte Ikone und wahrscheinlich der bekannteste Wrestler nach Hogan, in den 90er Jahren hatte er meiner Meinung nach seinen Höhepunkt erreicht, was ich persönlich Schade finde das die WWE ihn nicht sein Gimmick des Bikers verkörpern lässt, da dieses authentischer wäre man hat meines Wissens gegen seinen Willen auf das Sennsenmann Gimmick wieder zurückgergriffen, da dieses mehr Kultstatus hatte(Werbung). Doch ich bin der Meinung der Undertaker hätte sich als Biker besser vermarktet weil er es mit Leib und Seele ist. Warum er von mir 10 Punkte kassiert hat obwohl die Leistung im Ring abgenommen hat und das Gimmick total verbraucht wurde (Storyline die Suche nach dem Taker). Weil er meiner Meinung nach Gold wert als Worker und Mensch bzw. für die WWE ist, da er die jungen Wrestler mitaufgebaut siehe Cena seinerzeit und laut Berichten einer der wenigen ist, der echt und sich selbst treu geblieben ist. Ja ich würde glaube ich sagen der Taker hätte sich ne 8 verdient aber der Mensch hinter den Kulissen welcher eine große Rolle spielt Mark William Calaway eine glatte 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tomkowrote on 22.10.2009:[7.0] "Er ist Kult! Auch seine In-Ring Leistungen sind stark für einen Mann seiner Statur, doch trotz allen bin ich kein großer Fan von ihm, denn er und sein Gimmick sind langsam so ausgelutscht, dass er langsam so langweilig wie HHH wird. Es wird vielleicht zeit Goodbye zu sagen..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: THE GAME 4-EVERwrote on 12.10.2009:[0.0] "20 Jahre im Business und immer noch nicht in der Lage neue Talente over zu bringen? Damit meine ich nicht die Tatsache, dass er gute Matches mit ihnen bestreitet, sondern das sein Ego mittlerweile so groß zu sein scheint, dass er seit bald 6 ahren keine Fehden mehr verloren hat. Das Gimmick, zieht wirklich nur bei Leuten die auch glauben was sie bei Galileo Mystery sehen. Blitze aus der Hallendecke? Ahja! Natürlich ist das Entertainment aber so ein Humbug mag 1990 gezogen habe, 2009 ist das aber einfach eher zum wegschalten. Wird von Jahr zu Jahr uninterresanter und schlechter im Ring. Mag seinen Stil auf MMA umgestellt haben, wird aber dadurch nur noch langsamer und behäbig. Seit Jahren ranken sich Gerüchte um seinen Rücktritt und das Karriereende, dafür war es schon seit 2003 höchste Zeit. Dazu kommt die gnadenlose Frechheit bei Wrestlemania jedes Jahr sein Match zu gewinnen und selbst Mr. Wrestlemania zu schlagen. Sicherlich wirds nochmal ne Aufwertung geben wenn er retired, die 10 Punkte werden es bei so einem Ego und Machtinhaber Backstage sicherlich niemals werden."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fatewrote on 11.10.2009:[10.0] "Der Taker verkörpert so ziemlich alles was man mit einem Wrestling-Superstar verbindet. Und durch seine Konstanz über Jahre hinweg (und das bei teilweise unglaublich schlechten Storylines) hat er sich das Attribut Legende auf jeden Fall verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Khali92wrote on 09.10.2009:[9.0] "bekommt nur Abzüge weil die story vom unbesiegbaren Deadman langweilig wird. (siehe zuletzt Cyber Sunday)   Ansonsten: Phenom! "
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Milowrote on 06.10.2009:[10.0] "Der Mann ist eine absolute Legende!!!   Unglaublich was er für Techniken drauf hat,obwohl er über zwei Meter groß ist.    Und dazu noch über  20 Jahre im Geschäft,Respekt!!    Zehn Punkte von mir.  "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BoeserLobowrote on 05.10.2009:[10.0] "Absolute Ikone der WWE. Hat jede Menge denkwürdige Matches bestritten HIC, RIP.... Legendäre Serie bei Wrestlemania. Testet neue Wrestler, bevor diese richtig in den großen Ligen bestehen können/dürfen. Einziges Manko - zu wenige Titel!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rio123wrote on 05.10.2009:[9.0] "Eine lebende Legende, aber das ist er nun schon seit einigen Jahren und man merkt, das selbst an einem Sensenmann die Zeit nicht vorbei geht und es ist langsam Zeit dem Undertaker R. I. P. mit auf den Weg zu geben, denke mal dies wird nun sein letzter Titelrun.  Den einen Punkt Abzug gibt es dafür, dass er jetzt in die Jahre gekommen ist ; )"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheBrainwrote on 04.10.2009:[10.0] "Neben dem Hulkster der bekannteste Wrestler. Den Undertaker kennt jeder. Und nicht zu unrecht, hat er doch einen sehr wesentlichen Beitrag dafür geleistet, wo die WWE heute steht. Wieviele gibt es die so viel für diesen Sport gemacht haben? Also 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mr Dungeon of Doomwrote on 04.10.2009:[10.0] "Mitte der 90er Jahre bekam der Undertaker aufgrund seines Gimmicks den Spitznamen „Phänomen“. Diesem Spitznamen wird er inzwischen mehr als gerecht. Jemand der seit fast 20 Jahren bei der WWE in der oberen Card oder im Main Event eingesetzt wird, ohne dass er Abnutzungserscheinungen aufzeigt und nach wie vor einen riesigen Großteil der Fans in den Bann zieht, kann man nur als Phänomen bezeichnen. Und obwohl er auch oft in ziemlich dämliche Fehden gesteckt wurde, das Ansehen verlor er nie. Durch seine Fehden gegen Batista und Edge hat er sogar einen Großteil seiner Kritiker ruhig gestimmt, die meinen er lebe nur von seinem Gimmick (welches übrigens vielleicht wirklich das beste aller Zeiten ist). Außerdem hat er sich sogar im Ring in den letzten Jahren noch verbessert und gehört somit zu den besten Big Men. Hätte er zusätzlich in anderen Ligen Erfolge gefeiert, wäre er wohl im Kreis der größten Legenden und würde im gleichen Atemzug genannt werden wie Ric Flair, Hulk Hogan und Steve Austin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MattBornewrote on 02.10.2009:[10.0] "Habe die letzten Tage einige alte Matches von ihm gesehn und habe mich ein wenig erschrocken, da ich nicht so bewußt mitbekommen hatte, das er nun wirklich viel langsamer ist. Sicher das Alter und Verletzungen zerren an einem Wrestler. Für mich aber trotz dieser angesprochenen Schwächen immer noch voll überzeugend und wirklich der Einzige der dies schon seit 1991, seitdem ich Fan bin kann. Allerdings fand ich dieses Motorradrockergimmick absolut unnötig, wieso ein Gimmick was immer funktioniert hat ändern?  Trotzdem volle Punktzahl!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Edgecutionerwrote on 01.10.2009:[10.0] "Deadman rules! Sit down, shut up - and rest in peace..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker 4 everwrote on 24.09.2009:[10.0] "Genialer Wrestler, der seinen Platz in der Geschichte sicher hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rey2004wrote on 23.09.2009:[10.0] "Über Jahrzehnte hinweg Superstar! Der Undertaker ist seit Beginn eine Respektperson und ein Superstar der Kategorie 10 Punkte - unerreicht für alle anderen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DHS aka Iceman Unleashedwrote on 17.09.2009:[9.0] "Von der Beweglichkeit und vom Charakteristischen, nichtmehr der Undertaker aus den 90ern und 2000er.  Das er wieder als Lord of Darkness auftritt gefällt mir sehr gut. Aber es ist nur Äußerlich der Undertaker braucht wieder etwas wie ein Stable um sich herum oder eine kleine Gimmik veränderung. Meiner Meinung nach denn nun seit 5 Jahren macht er nur das gleiche.  Aber trotzdem ist er der Undertaker und deswegen geb ich ihm 9 von 10 Punkten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Basket Casewrote on 15.09.2009:[10.0] "Mein zweiter Lieblingswrestler neben The Rock. Er ist einfach der Undertaker. Was man ihm vor allem groß anrechnen muss, ist, dass er sich ständig weiterentwickelt und richtig gute Leistungen im Ring in den letzten Jahren gezeigt hat. Ich hoffe er bleibt noch einige Zeit in der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WWE Chairmanwrote on 13.09.2009:[10.0] "Der beste denn die WWE je hatte in allen bellangen  "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gialikesashleyverymuchwrote on 10.09.2009:[3.0] "Sein Gimmick ist nach gut 20 Jahren vollkommen ausgelutscht, seine Wrestlemania Dominanz hat die letzten Matches nicht unbedingt spannend im Hinblick des Ausgangs gestaltet (wobei das Match gegen Michaels zweifellos toll war), aber es ist definitiv an der Zeit, den Schuh an den Nagel zu hängen."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: chavo51wrote on 09.09.2009:[10.0] "Persöhnlich hat mir The Undertaker als Biker besser gefallen.Leider wird die Gimmick immer langweiliger,aber Live ist er dennoch super.  The Undertaker ist einfach Kult.Also von mir ganz klar 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Neuhofwrote on 06.09.2009:[6.0] "Kann in der richtigen Fehde mit den richtigen Gegnern (in jüngster Zeit Edge, Big Show und HBK) immer noch sehr starke Matches zeigen. Allerdings fiel er mir nur gegen Show durch seine eigene Klasse auf, ansonsten bin ich der Meinung, dass seine Gegner ihn immer ein gutes Stück mitziehen müssen, da er einfach nicht der Wrestler ist, für den er gerne gemacht wird. Allerdings macht er seine Matches durch MMA-Aspekte doch noch teilweise recht interessant. Das Gimmick hat sich aber total abgenutzt, und Promo-Fähigkeiten sind de facto nicht vorhanden, was ich ihm trotz dem, dass er es für sein Gimmick nicht braucht, anrechne. Insgesamt befriedigend, wird aber mal Zeit für den Rücktritt... Spärliche Auftritte bis zum 20:0?"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Italian Straight Edgewrote on 06.09.2009:[10.0] "Meiner Meinung nach der beste WWE-Wrestler aller Zeiten. Er ist charismatisch, wrestlerisch/technisch sehr gut, für seine Größe/Gewicht sehr schnell und liefert mit 44 Jahren immernoch herausragende Matches (siehe z. B. Taker vs. Michaels @ WM XXV). Hulk Hogan hingegen hatte zwar reichlich Charisma, doch wrestlerisch war er nicht so gut. Mal sehen, wie sich die Taker vs. Punk-Fehde in den nächsten Wochen entwickeln wird. However, das ''Phenom'' ist ein sicherer Kandidat für die WWE Hall Of Fame."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Scotty Westwrote on 05.09.2009:[10.0] "Persönlich finde ich ihn Klasse. Immer unterhaltsam in seinen Promos und immer wenn das Licht ausgeht, muss man einfach gespannt hinschauen was als nächstes kommt. Leichte Mängel sind seine Matches gegenschwerere Wrestler wie Big Show z. B. , weil nämlich diese Matches oft zu viel Brawling beinhalten. Aber man muss sagen, dass er trotz seines fortgeschrittenen Alters und immer noch recht interessante Matches und Promos liefert.  Shawn Micheals vs. Undertaker bei Wrestlemania ... ein Traum von einem Match! Und in Kombination mit Edge ist er auch nie langweilig geworden. Taker ist einfach Klasse, nur finde ich, dass seine Wrestlemania-Serie nicht an seinem Karriereende gebrochen werden sollte, sondern dass er jedes Wrestlemania quasi wie eine Tradition zurückkommt und die Serie dann auch auf's Spiel setzt.  Die Serie sollte von jemanden gebrochen werden, der wirklich dann auch einen richtigen Push richtung Aushängeschild bekommt. Dieses Wrestlemania wird meiner Meinung nach noch keiner der jüngeren Stars, so gut sein, um so einen großen Push glaubwürdig erscheinen zu lassen. Sonst finde ich, dass Jeff Hardy die Serie durchbrechen sollte, weil seine Matches immer Klasse sind und mit Taker als Gegner bestimmt megaklasse. TLC oder Hell In A Cell wären wirklich ein schöner Abschluss einer so großartigen Karriere. Er hat meinen Respekt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: billygunnwrote on 02.09.2009:[9.0] "Er ist sehr unterhaltsam, seine Matches sind immer spannend und hochklassig!  Nur leider ist er schon alt und macht nicht mehr den fittesten Eindruck daher 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Huzerwrote on 01.09.2009:[10.0] "Eine Legende... mehr ist nichts zu sagen.... Es wird nie wieder so einen Gott geben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Paulinawrote on 30.08.2009:[10.0] "Auch wenn sein Gimmick heute ausgelutscht ist, er ziemlich oft verletzt ist und seine Matches heute nicht mehr das gleiche sind muss ich den Undertaker einfach 10 Punkte geben, Er ist der WWE immer treu geblieben und ist einfach eine Legende, in seinen Biker Gimmick fande ich ihn am Mikro auch garnicht so schlecht"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NewGuywrote on 29.08.2009:[6.0] "Natürlich ist er eine Legende, natürlich hat er ne Menge geleistet, ne Menge Erinnerungen verdanken wir ihm, und natürlich bringt er offensichtlich immer noch 5 Sterne Matches (siehe WrestleMania 25) ABER sehen wir den Tatsachen mal ins Auge: Ständig verletzt, wenn er mal zurückkommt auch nur für ein paar Monate, dann ist er wieder verletzt, er mag zwar immer noch psychisch voll dabei sein aber physisch sollte er einfach aufhören. Seine Zeit ist vorbei, ich sage: bitte eine endsgeile Abschlussfehde und dann aus die Maus! Klingt hart aber wäre euch ein Undertaker im Rollstuhl lieber?"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Turboladerwrote on 26.08.2009:[10.0] "Für mich der beste Wrestler aller Zeiten. Technisch hat er es einfach drauf und er weiß zu begeistern, da er für seine Größe teilweise auch ziemlich spektakuläre Moves zeigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 3durch16wrote on 25.08.2009:[9.0] "nicht mehr die Klasse vergangener Tage + viele ( kleine) Verletzungen"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Adlonwrote on 16.08.2009:[10.0] "Dieser Mann ist mein absoluter Lieblingswrestler, er war der Grund, warum ich beim Wrestling geblieben bin, nachdem ich mir meine erste Wrestling-Folge ansah und seinen Auftritt mitbekam.  Eine Legende, sein Mic-Work ist nicht das Beste was die WWE zu bieten hat, aber mehr als ausreichend für sein Gimmick, seine Promos gehören für mich trotzdem zu den besten, auch wegen der Atmosphäre und dem Charsima, das er einfach ausstrahlt.    Keiner hat sich die 10 Punkte so verdient, wie der Undertaker!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: OutsiderX1983wrote on 16.08.2009:[10.0] "Ist eine Legende! Seine Matches sind meisten toll und mit denn richtigen Gegern kann er alle andern in denn Schatten stellen.   Seine Serie bei WM ist einzigartig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sting93wrote on 13.08.2009:[10.0] "Der Undertaker ist der lebende Beweis dafür, das man mit einem Kultgimmick auch nach fast 20 Jahren bei den Fans ankommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AirRiedlewrote on 09.08.2009:[10.0] ""The Phenom" mehr kann man zu ihm einfach nicht mehr sagen..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jerseyhoolwrote on 05.08.2009:[10.0] "Der Undertaker - das mit Abstand beste bzw erfolgreichste Gimmick, das im Titanenland je aus dem Hut gezaubert wurde. Teil eines der bekanntesten Wrestlingmatches aller Zeiten (King of the Ring 1998) & darüber hinaus einer der ganz wenigen Worker, die sogar Menschen ein Begriff sind, die sich mit diesem Sport normalerweise nicht beschäftigen. Was ich am Taker vermisse, sind seine Promos zu "American Bad Ass" Zeiten - hier durfte unser aller Lieblingstotengräber zeigen, dass seine markante Stimme das Mic-Work zu vergolden mochte! Nichts desto trotz einer der grössten Stars aller Zeiten, ein Eckpfeiler von WWE & einer der am meisten respektiertesten & professionellsten Wrestler in der Historie.  Mir graut vor dem Tag, an dem der Taker seinen Hut & die Wrestlingstiefel an den Nagel hängen wird (was leider, leider nicht mehr allzulange dauern wird)! Bis dahin jedoch freue ich mich über jedes Match, das ich von ihm sehen darf! Thank you for the memories, Mr. Calaway!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: risktakerwrote on 02.08.2009:[10.0] "Einfach ein genialer Wrestler, seine P  romos sind ganz nett wirken aber auch deswegen so gut weil sie selten sind. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 108 Sternewrote on 27.07.2009:[10.0] "Der Undertaker war nie der allerwichtigste Main Eventer; aber er die großeKonstante der WWE. Der Taker war immer da und hatte nie Durchhänger; und er hat IMMER das Publikum gezogen wie kaum ein anderer. Das über so viele Jahre praktisch ununterbrochen; genial.    In gewisser Weise ister DIE Symbolfigur der Promotion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Grandmaster Sexaywrote on 08.07.2009:[10.0] "Also ich bin immer begeistert von seiner Entrance und seinen Fähigkeiten im Ring. Aber wenn man ihn mal Live gesehen hat, dann haut er einen vomHocker! Und ich hab ihn bei der WrestleMania Revenge Tour zusammen mit Triple H gegen die komplette Legacy gesehen... Aber das gehört ihr nicht hin. Abgesehen von John Cena hat niemand in der WWE heute mehr Charisma als der Undertaker. Seine Matches sind immer schön anzusehen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BaptisteZorGwrote on 03.07.2009:[9.0] "Früher wärs ne glatte 10 gewesen..  Aber ich kann Ihm heute nicht mehr soviel abgewinnen, vor allem was das InRing Geschehen anbelangt.  Er sollte aufhören solange er noch gute Leistungen abrufen kann,  bzw. hoffe ich persönlich das aus Ihm keiner vom Typ "Hulk Hogan" oder "Ric Flair" wird der nicht weiß wann schluss ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rulebreakerwrote on 30.06.2009:[10.0] "This guy is simply awesome! Eine weitere solche Legende wird es meiner Meinung nach niemehr geben, der Taker steht für mich vor Shawn Michaels, Rocky, Steamboat, Flair etc. Er ist einfach in diesem Business die Nummer 1. Auch Backstage unterstützt er die jungen Talente und hilft allen um eine gute Karriere hinzulegen. Das Match bei Wrestlemania 25 war seit langem das beste was ich in der WWE gesehen habe. Er soll sich nun noch vollstädnig erholen und dann liegen auf jeden Fall noch 1-2 Jahre drin!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Shikawrote on 28.06.2009:[3.0] "Hm, ich weiß nicht wieso aber ich mag ihn überhaupt nicht. Diese düstere Stimmung die ihn angeblich so ausmacht finde ich irgendwie ein wenig lächerlich. Wrestlerisch ist er IMO auch nicht gerade gut. Mag sein das ich von seinem wrestlerischen Stil nicht viel verstehe aber naja..."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: pildaYwrote on 24.06.2009:[10.0] "Bei WM 25 hat man gesehen, dass er es noch kann. Er wird irgendwann aufhören und eine riesige Lücke hinterlassen. Wie man hier nur 0 Punkte geben kann ... -. -"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Marcomh4wrote on 21.06.2009:"Ich finde das der Undertaker einer der besten in der WWE ist und das seine Legendären Auftritte wie bei Wrestle Mania wo er ja ungeschlagen ist immerhin 17:0 das ist sehr beachtlich man bedenke auch mal was er schon für Matches bestritten hat eigentlich so ziemlich alle die es gibt und das ist beeindruckend "
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Perry Coxwrote on 14.06.2009:[10.0] "Der Undertaker ist nun in einem Alter angelangt, in dem er keinem mehr beweisen muss, dass er es noch kann. Er war lange genug aktiv um Stolz zurückblicken und zu sagen: Man, was hatte ich für eine Karriere. Er hat alles erreicht, was man erreichen kann: Von einem Sieg im Royal Rumble über diverse World Title Runs und unvergesslichen Matches (man denke nur an WM25) und tollen Fehden. Seit Jahren als Deadman unterwegs wird diese Rolle nie langweilig, weil man ihn einfach lieben muss. Er tut einfach alles, um seine Fans und Zweifler zu beeindrucken. Wenn er jetzt zurücktreten würde, würde es ihm keiner übelnehmen. In Zeiten von steigenden und kochenden Gerüchten über sein Karriereende muss das hier einfach mal gesagt werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Pepsi Punkwrote on 06.06.2009:[10.0] "Er ist der einzige in der WWE(mit Kane)der noch ein richtiges ernst zunehmendes Gimmick hat. Er ist nicht nur einfach ein Powerhouse,er zeigt auch Moves die man bei ihm nicht erwartet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: polilopwrote on 23.05.2009:[2.0] "Eine Legende!  Aber meiner Meinung nach hätte er schon lange in den Ruhestand gehen sollen...  Heutzutage ist er nur noch ein alter Mann, der schon lange kein wirklich guter Wrester ist."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Afroman Undertaker 619wrote on 21.05.2009:[10.0] "Ganz klar 10 Punkte für den Undertaker. Rest in Peace                                                                "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Undertaker1860wrote on 18.05.2009:[10.0] "Ich finde seine Technik gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blackbirdwrote on 19.04.2009:[10.0] "Der definitiv beste Wrestler der WWE. Zeigt die mit Abstand anspruchsvollsten Moves und führt sie dennoch perfekt aus. Außerdem ist es wirklich beeindruckend, wie er es schafft, die Fans trotz seines Gimmicks auf seine Seite zu ziehen - ist also sowohl ein guter Heel als auch Face. Micwork ist auch richtig gut - wenn ich jetzt schon seit 10 Jahren WWE verfolgen würde, kämen mir seine Promos vielleicht etwas eintönig vor, so kann ich nur sagen, dass er sie glaubwürdig rüberbringt. Einziger Nachteil: er wird wohl nicht mehr allzu lange dabei sein.  10 Punkte, gibt keinen Wrestler, der mich so sehr überzeugt wie der Taker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: bbierwrote on 19.04.2009:[10.0] "The best who is, the best who was, the best who ever will be."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CM Punk Mitbwinnerwrote on 15.04.2009:[10.0] "Wenn man 17 mal bei der größten veranstaltung der größten Liga gewinnen darf, sagt das alles über den status eines Workers aus"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: harrywrote on 14.04.2009:[10.0] "Für mich zusammen mit Steve Austin & Shawn Michaels der beste Wrestler aller Zeiten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: andrekoenigwrote on 08.04.2009:[10.0] "Seit ich den Undertaker das erste Mal gesehen habe war ich von ihm fasziniert. Und als ich mir sein DVD Set besorgte wurde ich entgültig richtiger Undertaker Fan. The Undertaker war von Anfang an eine imposante Gestalt in der WWE (WWF). Ausserdem hat der Deadman für einige der denkwürdigsten Momente der WWE gesorgt. Er hat auch einige der brutalsten Matches überhaupt bestritten, z. B. mit Mankind, Brock Lesnar, Batista und Edge. Er hat zwar viele denkwürdige Sachen geliefert, aber ich denke das sich jeder Fan am besten an das Hell in a Cell Match beim King of the Ring '98 erinnert, bei dem er mit Mankind wohl eines der denkwürdigsten Matches überhaupt ablieferte. Seine Fehden mit z. B. Stone Cold Steve Austin, Mankind und Shawn Michaels sind geradezu legendär. Das Phenomen konnte auch immer am Mikrofon überzeugen und mit jeden mithalten. Der Undertaker ist wirklich eine wahre Legende und ist einer der wenigen Superstars an die sich die Fans ewig erinnern werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DeadHeadwrote on 07.04.2009:[10.0] "Niemand, und ich meine wirklich NIEMAND kann nach diesem Klasse Match gegen Michaels noch sagen das der Undertaker schlecht ist. Und dank seines genialen Gimmicks sowieso legendär."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: loscopposwrote on 06.02.2009:[10.0] "Was soll man da noch schreiben. Einfach genial der Typ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jeffrey nero hardywrote on 06.02.2009:[10.0] "Er hat alles gezeigt und geholt was man zeigen und holen kann. 16 Titelregentschaften ist erwähnenswert. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The-Game91wrote on 01.02.2009:[10.0] "Seit Jahrzehnten begeistert mich der Undertaker. Er hat einfach das beste Gimmick und es wird nie langweilig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rattlesnakewrote on 31.01.2009:[10.0] "Wenn man genau hinsieht, ist der Mann in seinen Fähigkeiten arg limitiert. Bis zum Taker-Gimmick konnte er das auch nicht verbergen. Dann aber zog er den Hauptgewinn. Das Takergimmick war das Beste, was ihm passieren konnte - und damals passte es perfekt in die Zeit. Ich halte es für eines der besten Gimmicks, das bisher kreiert wurde. Zugegeben, heutzutage wäre es nicht sehr zeitgemäß, aber inzwischen ist er eine Legende. 10 Punkte trotz seiner Fähigkeiten, da er sein Gimmick bestmöglich ausgereitzt hat und mich immer wieder mitfiebern ließ. Eine Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RatedRKO84wrote on 31.01.2009:[10.0] "Er ist eine Legende das steht für mich fest, er kann immer noch gute Matches heraushauen, aber sein Gimmick wird langsam etwas langweilig, außerdem findet sich bei SmackDown! derzeit keiner gegen den er eine Fehde haben könnte. Einziger Kandidat: Umaga, doch diese Fehde würde mich nicht gerade fröhlich stimmen, mich würde es vor seinem Karriereende freuen eine Fehde zwischen ihm und Shawn Michaels zu sehen.    Dennoch aufgrund seiner unglaublichen Leistungen 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: vida-locawrote on 25.01.2009:[10.0] "Wurde mit dem alter immer besser, wird als eine der Größten, wenn nicht sogar die größte Wrestling Legende aller Zeiten in die Hall of Fame und wrestling geschichte an sich eingehen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Desperadowrote on 25.01.2009:[9.0] "Gehört zwar nicht zu meinen Favs, ist aber natürlich ein sehr guter Wrestler, der nicht nur Powerhouse- sondern auch Matwrestling beherrscht. Dazu kommt mal soeben noch das beste Gimmick aller Zeiten. Dieser Mann ist eine lebende Legende, hat sich über Jahrzente in toller Form gehalten und mehrere Generationen von Fans unterhalten. Außerdem ist er einfach ein Repräsentant fürs Wrestling: Jeder kennt ihn, 95% lieben und jeder respektiert ihn."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: razyor90wrote on 17.01.2009:[10.0] "Er ist einfach mein Lieblingswrestler. Ich kannte seinen Namen schon bevor ich angefangen habe Wrestling zu schauen den er ist wohl das bekannteste Mitglied der WWE/WWF. Sein Gimmick ist genial.Auch seine Fähigkeiten im Ring baut er immer weiter aus. Das macht ihn für mich zu einem der besten Wrestler aller Zeiten .Deshalb 10 Punkte. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Peiski Bombwrote on 13.01.2009:[10.0] "Der Taker ist eine lebende Legende! Mehr kann man dazu nicht sagen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Movadowrote on 11.01.2009:"Ich mag den Taker. Aber wie soll für dieses Überfantasy-Gimmick jemals ein ernst zu nehmendes Ende geschrieben werden?"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CM Dannywrote on 10.01.2009:[10.0] "Beim Taker laufen die Uhren anders. Er wird im Alter nicht schlechter, sondern besser. Er wird nicht langsamer, sondern im Ring immer schneller und das bei der Größe und mit seinen angeschlagenen Knochen. In all seinen Jahren hat man nie etwas von großen Skandalen oder Problemen backstage gehört. Dieser Mann verdient Respekt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: michiswrote on 06.01.2009:[10.0] "Ach ja der Deadman. Eine lebende Legende, die leider alzu oft in schlechte Storylines gesteckt wurde. Trotzdem immer noch oben dabei, und der Undertaker bietet immer noch gute Matches. Deshalb, und weil er eine absolute Legende ist und weil er sich schon so viel angetan hat für die WWE, muss ich im einfach die Höchstnote geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Azarothwrote on 05.01.2009:[10.0] "Der Undertaker lebt größtenteils von seinem Gimmick...  Und wenn man die ausflippenden Fans in den Hallen beim Erklingen der Glocke sieht und hört, kann man daran nichts auszusetzen haben.  Sicherlich, der Taker zeigt im Ring keine High-Flying Aktionen wie ReyRey und er flitzt auch nicht in die Ecken wie z. B. CM Punk.  Aber man muss bedenken, dass Mark Calaway (wahrscheinlich) fast 50 Jahre alt ist. Und wenn ich da noch seine Verletzungsgeschichten und seine Körpergröße mit berücksichtige, so kann ich vor der Agilität dieses Bigmans nur meinen Hut ziehen. Zudem arbeitet der Taker immer noch an seiner Ringarbeit, bringt neue Moves ein (Gogoplata) und verändert seinen Stil seiner Verfassung entsprechend, was man von anderen Top-Stars der Company leider nicht behaupten kann.  Mein Lieblingswrestler bleibt der Taker jedenfalls, und bekommt (natürlich) 10 Punkte von mir."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blazewrote on 03.01.2009:[9.0] "Absolute Legende der WWE. Hat sich innerhalb kürzester Zeit etablieren können und ist jetzt schon jahrelnag dabei. Sein Gimmick wird es zwar heutzutage nie mehr geben, ist aber dennoch schon Kult. Sei neuer, etwas MMA angehauchter, Stil gefällt mir richtig gut und hilft dabei einige Schwächen zu verstecken. So ist er abwechslungsreicher ohne besonders viel laufen zu müssen. Im Ring ist er immer noch top, wobei man ihm seine Knieprobleme nicht wirklich anmerkt. Wenn ein Undertaker über die Seile nach draußen springt, ist erstmal Staunen angesagt. Ein Taker überzeugt in Angles und Promos auch immer, was für sein Gimmick eh der wichtigste Teil ist. Letztendlich hatte Taker aber auch schon das ein oder andere schwache Jahre was In Ring Leistungen angeht, daher nur eine 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sallywrote on 31.12.2008:[10.0] "Er ist für mich einfach der Beste im Wrestlinggeschäft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Joeevil123wrote on 29.12.2008:[2.0] "Gähn.  Ich fand ihn noch nie (nichtmal als Mark) wirklich toll , inzwischen langweielt er mich aber nur noch.  Den Entrance spule ich immer vor und das ganze Gimmick zerstört das Wrestling.  Sollte in Rente gehen , obwohl mit nem richtigen Gegner kann er ja noch das ein oder andere gute Match auf die Beine stellen."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jakeswrote on 21.12.2008:[10.0] "Super Wrestler immernoch top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ScrWwe94wrote on 17.12.2008:[10.0] "Zu ihn muss man nicht viel sagen außer 16-0 bei Wrestlemania sagt eh schon alles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SirJohnsonwrote on 11.12.2008:[10.0] "Eine lebende Legende! An den Taker werden sich Wrestlingfans in 100 Jahren noch mit Freuden erinnern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DXstarF5wrote on 05.12.2008:[10.0] "Der Undertaker ist eine Sache für sich. Kaum ein Wrestler kann mit einem blich so viel Emotionen bei den Fans auslösen. Kaum einer ist so erfolgreich im Ring. und Kaum einer kann/konnte mit ein und dem gleichem gimmick so lange erfolgreich sein das alles spricht wohl 100% für den undertaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Eaterwrote on 03.12.2008:[10.0] "Ein absolutes Gesamtpaket, daher auch für WWE so wertvoll. Erfahrung und Respekt sind nur 2 Worte, die ihn beschreiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Eddiewrote on 28.11.2008:[9.0] "Was bleibt einem anders übrig als die Note 1? Naja, eins gibts schon, und zwar seine langweilige Phase 93/94 (falls ich mich richtig erinnere). Hier glich einfach ein Match dem anderen.. Die mittlerweile immer fortlaufende verbesserung ist zwar schön, aber für 10 reicht es in meinen Augen irgendwie nicht.. 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Ayatollah of RocknRollahwrote on 24.11.2008:[10.0] "Das beste Gimmick gepaart mit einem Wrestler, der in seinem hohen Alter besser statt schlechter wird. Der beste Big-Man der Welt, auch wenn er seinen Verletzungen Tribut zollen muss, schafft es mit seinem Stil und seinen Skills immer wieder Monstermatches auf die Beine zu stellen. Er ist einfach das Phenom aus DeadValley und der bekannteste Wrestler neben Hulk Hogan außerhalb der USA. Schade, dass es in den nächsten 2-3 Jahren vll vorbei ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: domi1984wrote on 19.11.2008:[10.0] "Er ist ein Phenom und neben HBK der beste WWE Superstar. Sei Gimmick ist kult. Ach wieso rede ich !?! 10 Punkte für einen der besten Superstars ever P.S 1000 Wertung für den Deadman xD"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: hostrodwrote on 11.11.2008:[8.0] "Eine (lebende?) Legende, die das Sports Entertainment geprägt hat. Auch in diesem Alter noch kraftvoll und beeindruckend, allerdings habe ich das Gimmick mittlerweile satt (Seine Augen bleiben irgendwann mal noch so verdreht!!!) und kenne sein Move-Repertoire so ziemlich auswendig. Nichts mehr, was mich noch vom Hocker reißen würde, deshalb zwei Punkte Abzug."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Noobiewrote on 08.11.2008:[5.0] "Sorry, aber ich kann ihm einfach nichts abgewinnen. Seine Matches langweilen mich, sein ganzer Charakter ist überholt. Nicht mein Fall. Fehde gegen Edge war in Ordnung, was aber zum größten Teil an Edge lag."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Charismatic Enigma4000wrote on 07.11.2008:[10.0] "Einer der Männer, die wrestlerisch, mictechnisch und vom Gimmickplay her zu 100% überzeugen. Für mich einer der beste Wrestler aller zeiten!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Demon of Death Valleywrote on 31.10.2008:[10.0] "Der Undertaker ist einfach der beste, das Match beim Cyber Sunday hat gezeigt, dass es mehr als 2 Chokeslams braucht, um einen Undertaker zu besiegen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Bekiffskiwrote on 26.10.2008:[10.0] "Hat ein sehr gutes Gesamtpaket... BTW Kleine Notiz an die CM-Mitarbeiter: Der Taker ist angeblich 1962 geboren"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KingBukrawrote on 23.10.2008:[10.0] "Der Undertaker hat ein gewisses Charisma, das mich immer wieder zum bewundern bringt.Meiner meinung nach ist undertaker der beste worker überhaupt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Animal360wrote on 22.10.2008:[10.0] "Eine lebende Legende. Der Deadman ist in der WWE unantastbar und wird mit Sicherheit nach seiner Karriere auf jedenfall in die Hall of Fame eingeführt. Ob nun gegen den Hulkster, Mankind, Randy Orton oder jüngst Edge der Taker überzeugte zumeist. Deswegen 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Amazing Bluewrote on 19.10.2008:[10.0] "Über den "Deadman" muss man ja wirklich nicht mehr viel sagen, der Mann ist eine Legende und konnte sich in den letzten Jahren auch stetig verbessern. Die Fans gehen immer noch mit wie am ersten Tag, auch wenn sein "übersinnliches" Gimmick heutzutage nicht mehr ganz so beeindruckend wirkt, wie Anfang der Neunziger. SmackDown, oder viel mehr die ganze WWE wäre nicht, was sie ist ohne diesen Mann. Ich verneige mich vor dem "Demon of Death Valley"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CMTaker93wrote on 13.10.2008:[10.0] "Einfach ein "phenom". wenn er zum Ring kommt laufen einem Schauer über den Rücken. einfach der beste Wrestler den die WWE derzeit hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gorthaurwrote on 13.10.2008:[10.0] "Muss ich mehr schreiben als: The Phenom! The Deadman! The american Badass! The Lord of Darkness! The Puerity of Evil! The Prince of Darkness! Big Evil! Schlichtweg THE LEGENDARY!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Alorionwrote on 08.10.2008:[10.0] "Der beste Wrestler den es gibt, unglaubliche Ringmoves, super Gimmick und geile Fehden"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Baldrickwrote on 07.10.2008:[10.0] "Ringintelligenz, ein Gimmick, dass auch nach fast 20 Jahren noch bestens funktioniert und dazu eine unglaubliche Aura gepaart mit starken Skills ergeben den wahrscheinlich beeindruckensten WWE-Worker, der momentan aktiv ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Scotty 2 Hottywrote on 05.10.2008:[10.0] "Die WWE ohne den Undertaker kann man sich eigentlich kaum vorstellen. Und ich denke allein dies, rechtfertigt 10 Punkte für den Deadman. In 18 Jahren lieferte er denkwürdige Fehden sowie Matches ab und war immer einer der Top Superstars der Promotion. Während er am Anfang im Ring eher schwach war (allerdings auch aufgrund des Gimmick) steigerte er sich über die Jahre hinweg zu einem der besten Big Men die jemals in einen WWE Ring gestiegen sind. Dies haben allein die tollen Matchserien gegen Batista und Edge bewiesen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MrWrestlingwrote on 03.10.2008:[10.0] "Einfach eine Legende. Ich hoffe nur seine Knieprobleme momentan erweisen sich nicht als zu schlimm."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RBoss90wrote on 01.10.2008:[7.0] "Lieferte zusammen mit Edge die beste Fehde des Jahres, aber überzeugt mich auch nur in Matches mit gleichwertig starken Wrestlern. Er ist stark für sein Alter, aber kann nicht alleine Matches tragen. Deshalb von mir die 7 Punkte."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TG Styleswrote on 01.10.2008:[8.0] "Überzeugte zuletzt sehr."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheMoneyMakerwrote on 29.09.2008:[10.0] "Er zieht einen immer wieder in seinen Bann.Egal wie oft er die Augen noch verdrehen wird,es wird nie langweilig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SirFlubbi42wrote on 29.09.2008:[10.0] "Ich kann gar nicht sagen wie sehr mir der Deadman gefällt. Ich habe eine Gilde in WoW nach ihm benannt^^ Na ja, er schafft es einfach ein und dassselbe Gimmick über lange Zeit immer wieder an den Mann zu bringen. Ich finde es nur gerecht das ein Mann für seine Loyalität und Hingabe, und das über Jahre hinweg, belohnt wird. Nicht nur mit meiner bescheidenen Wertung sondern auch mit "Macht" im Geschäft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Foxywrote on 28.09.2008:[7.0] "Overrated... wenn er vor ein Paar Jahren auf gehört hätte würde ich dies nicht schreiben"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Miteamexicowrote on 23.09.2008:[10.0] "Was soll man schon zu ihm sagen, einfach der beste aller Zeiten. Ich hoffe wir sehen ihn noch eine weile."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Theron083wrote on 20.09.2008:[10.0] "Einer der größten Wrestler aller Zeiten und eine lebende Legende. Eigentlich müsste man 11 Punkte geben, geht aber nicht.:D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: wwegirlwrote on 16.09.2008:[10.0] "Der Undertaker.. eine Legende für sich. Nicht jeder mag ihn, schon alleine weil er seit jahren immer mit seiner Deathvalley nummer kommt..  Für mich ist er was besonderes und ich bekomme jetzt noch manchmal gänsehaut wenn er seinen entrance hat. Als ich 2005 das erste mal wrestling geschaut habe, war es ein Match mit dem Taker.. Ganz ehrlich- ich hatte angst und hab umgeschalten aber irgendwie wurde es zur sucht. Jetzt kenne ich das wrestling buissness ein bisschen besser und kann mit recht behaupten dass für jeden nicht wrestlingfan , der undertaker der einstieg in dieses Kampfleben ist.  Jetzt langweilt er ein wenig durch seine storyline mit vickie guerrero..   Aber aus frühreren Matches (wcw, wwf) kann man nur sagen dass er ein sehr gutes talent besitzt, die zuschauermenge mit sich zu reissen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: felixwrote on 12.09.2008:[10.0] "Er ist zweifelsohne einer der einflussreichsten Wrestler aller Zeiten, der auch heute noch tolle Leistungen zeigt. Er steht nicht umsonst seit über 15 Jahren an der Spitze."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Diablowrote on 08.09.2008:[10.0] "ist der Bester Deadman denn ich kenne  nur schade das er in der letzten Zeit so viele Pausen hatte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rocky-Takerwrote on 08.09.2008:[10.0] "The undertaker ich bin der meinung das der Undertaker es verdient hat als der beste beschrieben zu werden den er hat über die Jahre nicht nur konstante leistung gebracht sondern hat sich immer gesteigert.Mit der grösse eine wahnsins ringaustrahlung einfach nur geil toller kerl Einfach die tollste wrestling Karriere aller Zeiten sorry Ric "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Julezwrote on 07.09.2008:[10.0] "Einer der besten und beliebtesten Wrestler der je einen Ring betreten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SeEn2005wrote on 29.08.2008:[10.0] "Ich glaube die Geschichte des Undertakers wird sich noch einmal wiederholen, so großartig, wie sie war. Ich gucke jetzt seit fast 2 Jahren Wrestling und durch den Undertaker bin ich auf dieses wunderschöne Entertainment gestoßen. Auch wenn ich jetzt vielleicht übertreibe, aber der Undertaker ist der Beste Wrestler, den es je gegeben hat und das ist mein voller Ernst.   Wenn ich am 16. November nach Dortmund gehe und den Undertaker sehen werde, werde ich schreien und brüllen wie noch nie!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: big showwrote on 29.08.2008:[10.0] "Der Undertaker ist der beste Wrestler aller Zeiten das was er geleistet hat schafft sonst keiner "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The-Phenomwrote on 29.08.2008:[10.0] "Trotz seines doch eher schon ansehnlichen alters schafft der Taker es immmer wieder sich und seinen Gegner zu hervoragenden, ja sogar, großartigen Matches heranzuziehen und auch die Fehden sind immer Spitze.    Was an ihm auch noch so Faszinierend ist, ist das er Generationsübergreifend die Fans für sich begeistern kann"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sturmesebwrote on 24.08.2008:[10.0] "Das absolute Highlight der WWF/WWE Geschichte und überhaupt im Wrestling. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Vandeacwrote on 23.08.2008:[10.0] "Einer der Besten Charaktere die es gibt, immer wieder Gänsehaut wenn er auftritt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: nicojansonwrote on 18.08.2008:[10.0] "Einfach einzigartig dieser Mann. Völlig zurecht als Phänomen bezeichnet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: nacho83wrote on 14.08.2008:[4.0] "Sein Gimmick hat sich schon vor vielen Jahren totgelaufen und unterdessen fällt es schwer ein Match von einem anderen zu unterscheiden, da er einfach nur noch langweilig ist und keinerlei Innovationen im Ring zeigt."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CatCooperwrote on 14.08.2008:[10.0] "Man kann ihn ohne rot zu werden in einem Atemzug mit Hulk Hogan, Ric Flair oder Dusty Rhodes nennen. Einfach nur ein Maßgeschneidertes Gimmik. 10 Points."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Raviel1991wrote on 14.08.2008:[10.0] "Der Undertaker ist ein sehr sehr guter Wrestler und ich freue mich schon wenn er am Summer Slam zurück kommt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: xXShawnMichaelsXxwrote on 13.08.2008:[9.0] "Auch wenn ich ihn nicht besonders mag. Hat er sich einfach die 9 rein aus seinen wrestlerischen Leistungen verdient"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rated-RKOwrote on 12.08.2008:[9.0] "Der Undertaker gefällt mir nicht mehr so sehr wie früher, jetzt die wochen vor dem HiaC Match bei Summerslam waren besonders langweilig da ziemlich wenige Kopfspielchen von seiten des Undertakers kamen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RIKYwrote on 08.08.2008:[10.0] "WWE ohne den Taker ist wie ein Sarg ohne Nägel... hällt nicht..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PetePetePetewrote on 06.08.2008:[10.0] "He is legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Stephanwrote on 06.08.2008:[10.0] "Habe ihn schon zu Zeiten seines ersten Auftrittes gemocht. Nun ist aber zeit für den Dead Man zu gehen das Gimmick ist immer noch gut aber er wird alt.Das einzige was mich an ihm stört ist das ich ihn einmal mit Fam. am Flughafen Toronto gesehen habe und ich nicht hingegangen bin um mir ein Autogramm zu holen :-( ist aber eher ein persönliches Problem. immer wieder sehe ich den alten mann gerne.   "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tottiwrote on 05.08.2008:[10.0] "einfach der beste. Schon immer mein Publikumsliebling!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rookie of the Yearwrote on 04.08.2008:[5.0] "Technisch gut und nicht umsonst eine Legende, aber (wie schon vor mir gesagt) ich finde sein Gimmick einfach scheußlich. Wrestling soll doch zumindest den Anschein von Realität erwecken, aber der Mann kann das wegen seines Deadman-Krams gar nicht. Deshalb auch die niedrige Punktzahl von mir. Ich gebe ehrlich zu, dass mir Smackdown während seiner Pause etwas besser gefallen hat (obwohl z. B. Batista ja jetzt bei RAW ist)."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KOZ90wrote on 01.08.2008:[6.0] "Er hat das Wrestling Buissnes natürlich geprägt als er noch einige Jahre jünger war, doch nun geht er mir einfach nur noch auf den Sack. Ich konnte diesen Typ noch nie wirklich leiden, da er auch in seinen aktionen nicht sehr einfallsreich ist. Früher war der junge richtig Spitze, doch heute kommt er aus dem nix und haut sie alle im Ring um. Das macht null sinn und ich will es nicht mehr sehen, doch ein Gimmick wechesel würde sich für ihn auch nicht mehr lohnen. Also holt den Mann aus dem Maineventer Status raus und nutzt Leute wie MVP oder MR Kennedy um sich zu entwickeln."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kane15wrote on 29.07.2008:[10.0] "Undertaker ist wohl einer der größten Legenden die ich kenne. 10. 0 :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Walkerwrote on 29.07.2008:[10.0] "16:0 bei Wrestlemania einfach genial"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Swanton-Bombwrote on 28.07.2008:[10.0] "Der Undertaker ist einfach eine Ikone. Liefert noch immer wahre Klassiker ab, das Gimmick ist so genial und bei seinem Entrance bekomme ich noch heute Gänsehaut. Ich glaube, hier muss man nicht viel erläutern. 10 Punkte für Mark Calaway, alles andere wäre ein Witz."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WerderBremenwrote on 28.07.2008:[10.0] "Man kann sehr viele Worte über ihn verlieren, aber eigentlich müssten sie alle auf dasselbe Faktum hinweisen: Der Undertaker ist nicht zu beschreiben, sondern nur zu erleben. Ein lebender Wrestling-Gott, ohne Zweifel! Man erkennt auch, dass die WWE es nicht so einfach hat ohne ihn, das beweisen zB die Quoten von FNSD mit und ohne ihn! The Phenom ist der letzte der ganz alten Garde und ich bin stolz ihn seit Beginn seiner Karriere in der WWF zu kennen und zu mögen. Er fasziniert immer wieder mit Neuem, auch wenn ich persönlich zum Beispiel seine Zeit als Rocker nicht so gut fand, hinterlässt er immer einen bleibenden Eindruck. Man muss ihm einfach 10 Punkte geben, und das wohl in allen Kategorien. Der Undertaker ist die WWE und er ist der beste Wrestler, der geboten wird und das schon so lange!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Monewrote on 27.07.2008:[10.0] "Er ist der Grund warum ich seit 15 Jahren Wrestling Fan bin..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The System Failedwrote on 25.07.2008:[10.0] "Das erste Match was ich gesehen hab war Taker vs. ??? ! Definitiv eine Legende mit überragender Technik ( schafft es sogar mit Khali usw. ein ordentliches Match auf die Beine zu stellen), sehr guten Finishern und einem der besten Gimmiks aller Zeiten!  Einziger "Kritik"-Punkt ist der viel zu lange Entrance ( auch wenn er zum Gimmik passt und sich in der Punktewertung nicht wiederspiegelt). Daher ohne Frage: 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Renatuswrote on 25.07.2008:[10.0] "Ich habe sehr viele Matches von Undertaker angeschaut und kann wahrlich keinen finden, der schlecht umgesetzt ist oder langweilig ist. Undertaker vs Triple H,Undertaker vs Batista, könnte weiter so aufzählen, würde aber vermutlich zu lang werden. Trotz fortgeschritenen Alter immer noch fähig, da gibt es nirgends zu klagen zu klagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: wXw Fanwrote on 25.07.2008:[6.0] "Für Mainstream Verhältnisse im Ring zwar Recht gut, aber ohne sein Gimmick nichtmal annähernd so interessant bzw. populär."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Alex1wrote on 24.07.2008:[10.0] "Der Undertaker kann auch aus schwachen Gegnern gute Matches herausholen und gehört zu den besten Wrestler in der WWE. Sein Gimmick ist perfekt. Auch zu seiner Biker-Zeit fand ich ihn einfach nur weltklasse. Er fällt auch nicht wie andere seiner Kollegen durch unprofessionelles Verhalten auf. Totz seines hohen Alters ist er immer noch bereit harte Matches zu bestreiten. Ich hoffe beim SummerSlam wird es ein richtig brutales, blutüberströmtes Match zwischen Edge und den Undertaker. Der Undertaker ist einfach eine bei Wrestlemania ungeschlagene Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Weihnachtsmannwrote on 23.07.2008:[10.0] "Bester Wrestler ever! Gutes Gimmick, hat sich im Ring immer weiter entwickelt, zeigt heute zum Teil völlig andere Aktionen als vor zehn Jahren, gutes Micwork (wenn er denn mal darf), einfach ein Komplettpaket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: stinger89wrote on 23.07.2008:[10.0] "Einfach ne Legende... das einzige was in seiner Karriere bis jetzt fehlt ist ein Match gegen den Stinger!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: -Taker-wrote on 22.07.2008:[10.0] "Der größte Big Man aller Zeiten, sieben facher World Champion, ungeschlagen bei wrestlemania, eine Respektperson."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MVPKennedywrote on 17.07.2008:[5.0] "Als Biker mMn deutlich besser und einfach interessanter. Zeigt seit 20 Jahren die gleichen Moves, hat seit 20 Jahren das gleiche Gimmick (bis auf die kurze Ausnahme mit dem Biker). Natürlich kein schlechter, trotzdem: Irgendwann ist auch mal gut ...."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mister MOwrote on 16.07.2008:[10.0] "Future Hall of Famer ... mehr braucht man nicht sagen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rated-R-Strobeltwrote on 15.07.2008:[10.0] "Meiner  Meinung nach das beste Gimmick einer der wenigen der sich im alter noch verbessern und auch meistens top Leistungen bringt er bekommt wieder 10 Punkte "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wieauchimmerwrote on 15.07.2008:[9.0] "Ein - insbesondere für seine Größe - exzellenter Wrestler der , wie viele auch geschrieben haben, bereits eine Legende ist. Leider gibt es einen Punkt Abzug für quasi nicht vorhandenes Micwork (was zugegebenermaßen dem Gimmick zugeschrieben ist - werde vllt. nochmals neu evaluieren)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheRock147TLwrote on 14.07.2008:[10.0] "Der Undertaker ist einfach eine Legende. Und mehr glaube ich muss man nicht dazu sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mudwrote on 14.07.2008:[10.0] "Liebe WWE Fans!  Leider wurde The Undertaker 2008 aufgrund zu häufigen Einsatzes des illegalen Leg-Chokehold, bei dem viele WWE-Stars verletzt wurden, von Vickie Guerrero (SmackDown Präsidentin) aus der gesamten WWE verbannt. Eine Rückkehr ist z.Z. nicht geplant (was natürlich Edge freut). Gerüchten zufolge soll er aber zum SummerSlam zurück kommen, aber amtlich ist es nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ecw foreverwrote on 08.07.2008:[8.0] "Ein genialer Wrestler dieser Undertaker kaum zu glauben das er am Anfang Probleme hatte wegen seiner Grösse und sogar in Afrika auftrat. Undertaker hat ein gutes können an Mat sowie Brawl Wrestlng das kombiniert mit Powerhouse und einen der genialsten Gimmicks mit einem Stück Mic Work ergibt Undertaker! Darum gut"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dirkiboywrote on 06.07.2008:[8.0] "ne wirkliche Ikone des Wrestling. Einer der Wenigen, der nicht durch die verschiedenen Ligen gejumpt ist, sondern der WWE treu blieb. Der Dead-Man für mich immer noch das beste Gimmick und im Ring ist er einfach gut. Auch technisch hat er Einiges drauf. Mic-Work ist ok. Abzüge gibt es von mir nur auf den, aus meiner Sicht, absolut verkorksten Ausflug ins Biker-Gimmick,"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 6th son of a 7th sonwrote on 05.07.2008:[10.0] "Der Take ist wirklich eine Wrestling Legende. Ich denke, wenn man Leute fragt, die mit Wrestling nichts am Hut haben, wird ihn dennoch fast jeder kennen.  Legendäre Fehden, gute Matches, einzigeartiges Gimmik (Marke 'oft kopiert, niemals erreicht'). Inzwischen wird (wurde) er auch wieder anständig gebooked mit einer Super Fehde gegen Edge, die trotz ihrer Länge nie langweilig wurde. Er hält sich auch im Ring immer noch exellent. Also wieder 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: real americanwrote on 03.07.2008:[10.0] "Einfach nur unglaublich, der Taker ist fast unmöglich in Worte zu fassen, mein absoluter Favorit.. Wenn er mal ein Mic bekommt liefert er eine 1a Leistung ab und sein Gimmick ist über jeden Zweifel erhaben. Im Ring zwar sicherlich kein Technikgott, er entwickelt sich aber auch in seinem Alter noch ständig weiter, sei es indem er sich den Golgoplata draufpackt oder durch seine härter gewordenen Strikes und wenn nötig powert er sich einfach mit seiner unbändigen Kraft hoch. Hat wohl aktuell mit Michaels und Hunter das beste Gesamtpaket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CenaSuckswrote on 23.06.2008:[6.0] "Er war damals einer der großen, deshalb wird er immer in Erinnerung bleiben. Doch solangsam wird er immer langsamer und langweiliger im Ring, die Storylines mit ihm sind immer diesselben und sein Gimmick ist nur noch nervend."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SL-Kingwrote on 22.06.2008:[10.0] "Was kann man über den Undertaker noch groß schreiben, was nicht sowieso schon jeder weiß. Er ist eine Legende, kann auch heute (im fortgeschrittenen Alter) noch mithalten und hat wohl das langlebigste Gimmick, ohne dabei jedoch langweilig zu wirken. Daher erhält er von mir die volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Redwrote on 22.06.2008:[10.0] "Einfach phenomenal !!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Masadawrote on 21.06.2008:[10.0] ""In der Tat ein Phänomen, dass sich jeder Beschreibung entzieht. Einzigartiges, auch nach Jahre noch modernes Gimmick, dass ihn zur ewigen Legende machen wird. Völlig eigener Wrestling-Stil, Verhaltensweise, Mic-Work und Auftreten. DER Publikums-Liebling schlechthin, der einem auch nach 18 Jahren noch einen Schauer über den Rücken jagt." THX besser hätte ich es nicht ausdrücken können ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: manager1977wrote on 17.06.2008:[10.0] "Absolut Top.Für mich immer noch einer der besten die die WWE je gesehen hat.Am Anfang war er mir ein bisschen zu überlegen.Kein Schlag,kein Tritt,kein Move konnte ihm das geringste anhaben.Doch mit der Zeit wurde der Dead Man immer menschlicher,aber trotzdem umgibt ihn noch immer ein mystisches Flair.Die Bad Ass Zeit war nicht mein Ding,ich fand und finde ihn als klassischen Undertaker am besten.Hoffe er macht noch lange Zeit weiter.Er kommt ja sicher schon bald zurück."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PhilippPascalUndertakerfanwrote on 14.06.2008:[10.0] "Undertaker ist einfach der beste Wrestler den es momentan in der WWE gibt.   Er hat es einfach verdient als bester Wrestler gekührt zu werden außerdem sollte er neben Ric Flair endlich mal in die Hall of Fame kommen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LordTrailerwrote on 13.06.2008:[10.0] "Das wohl beste Gimmick aller Zeiten. Zu einem guten Gimmick gehört aber auch ein überzeugender Darsteller. Und hier ist Calaway wirklich überragend. Er hat das Gimmick bereits in der Frühzeit verinnerlicht. Zudem ist er neben Ric Flair (dieser mit Ausnahme der letzten Jahre) derjenige der durch eine Konstanz in seinen Leistungen überzeugt, dies es rechtfertigt ihn auch noch als End-40er im Ring zu sehen. Im Gegenteil, er passt seinen Stil an ohne, dass es langweilig wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jimpanse1980wrote on 05.06.2008:[10.0] "Ich kenne keinen anderen Wrestler der in den letzten 20 Jahren sein Gimmick so gut weiterentwickelt hatund dabei immer interessant geblieben ist. Keiner brachte auf Dauer so gute Leistungen und musste dabei die teilweise dämlichsten Fehden über sich ergehen lassen. Dass er aufgrund seines Alters seinen (Kampf-)Stil ändert spricht doch sogar eher für ihn. Und wer seine Matches in 2007/2008 gegen Batista und Edge gesehen hat, der sieht, der Taker hat es immer noch drauf und seine Matches sind besser als noch vor 10-15 Jahren"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Stevie-Bwrote on 05.06.2008:[10.0] "Leider nicht mehr so viele Kopfspielchen wie früher, aber immer noch der Beste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JthePwrote on 04.06.2008:[10.0] "Der Wrestler der wohl am meisten für Loyalität, Kontinuität und Einsatzbereitschaft jeweils im positiven Sinne steht. Kein anderer Wrestler hat dem Geschäft so seinen Stempel aufgedrückt, ohne dabei im ständigen Mittelpunkt zu stehen. Das ist einmalig und natürlich nur die volle Punktzahl wert. R.I.P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MrFoxwrote on 02.06.2008:[8.0] "Man merkt das er älter wird, allerdings trotzdem noch Erste Klasse!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Phenomenwrote on 01.06.2008:[10.0] "Der beste aller Zeiten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Typicalwrote on 28.05.2008:[9.0] "Zwar noch immer top aber garantiert keine 10Punkte mehr. Seine Zeiten als American Bad Ass fand ich mit Abstand besser als sein heutiges Deadman Gimmick. Im Ring ist er noch immer einer der Besten, trotzdem wirkt er zu langweilig, v. a. D. wenn er längere Zeit im ME steht. Bitte Rocker Gimmick und die genialen Mindgames zurück !"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Shawnywrote on 28.05.2008:[8.0] "Fand ihn früher besser, aber er hat noch immer etwas! "
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JohnnyCashwrote on 28.05.2008:[10.0] "Denke hier sieht man die ultimative 10. Der Taker hat es geschafft über Jahre interessant zu bleiben & kann (inzwischen) jeden Gegner zu einem guten Match zu ziehen. Absolut Top!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dante111wrote on 25.05.2008:[10.0] "Die Legende schlechthin und gleichzeitig jemand, der nicht nur von den Erinnerungen lebt. Er befindet sich wrestlerisch auf seinem besten Stand bisher (von charisma und ausstrahlung brauch ich gar nicht zu reden). Seine bloße Anwesenheit wertet jeden Event und auch jedes Match auf. Seine Mic-Skills sollten mal wieder mehr zum Einsatz kommen denn auch die können mehr als sich nur sehen lassen. Alles in allem lässt sich sagen: Die Legende wächst!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sockewrote on 25.05.2008:[10.0] "hmmm über den Taker will ich nix schreiben, Legende fertig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The-Great-Pinowrote on 21.05.2008:[10.0] "REST IN PEACE mehr muss man eigentlich nicht sagen. Aber ich möchte doch noch etwas sagen^^ Ich finde diese Vielseitigkeit der Gimmicks im Laufe der Jahre erstaunlich: Zombie-Undertaker-Bikertaker-Undertaker... ich finde ih einfach genial!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Beastwrote on 21.05.2008:[10.0] "Undertaker ist für mich der Beste bei WWE. Aber nach seine Rückkehr ist sein Gimmick irgendwie anders geworden, ich vermisse echt alle seine Mindgames. In Ring ist er immer noch Top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Deadman walkingwrote on 20.05.2008:[10.0] "Er liefert seit über 20 Jahren eine Klasse Show ab, das Gimmick ist genial, er ist Top in Form trotz seines Alters,hoffentlich bleibt er noch ein paar Jahre,die WWE ohne den Sensenmann kaum vorstellbar,er ist der Grund warum Ich ein Wrestling Fan geworden bin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mr perfectwrote on 19.05.2008:[10.0] "Der Beste mindgamer den die WWE jemals hatte und bei Wrestlemania 23 wird es für Batista heißen " REST IN PIECE ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Brooklyn Brawlerwrote on 16.05.2008:[10.0] "Nachdem ich mir die Kommentare hier durchgelesen habe, habe ich mir bevor ich etwas werten wollte noch einmal einige seiner alten Matches angesehen... und ehrlich gesagt: jetzt gefällt er mir teilweise sogar besser als früher. Die 1 steht außer Frage - er ist eine Legende, der letzte Ringpsychologe der WWE, unglaubliches Auftreten, in-ring skillsund TROTZ seines Gimmicks akzeptables selling... und ohne ein Wort und trotz Tweener/Heel Aktionen so over wie kein anderer ; )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jericholicwrote on 15.05.2008:[10.0] "Einfach klasse, was er täglich abliefert. Er hatte zwar bessere Zeiten beim Gimmick (LOD), jedoch hat er auch mit seinem derzeitigem Gimmick das meiste Potenzial. Er hat halt das beste Gimmick bisjetzt und ich kann mr keinen anderen vorstellen, der jemals ein besseres bekommen wird. Einfach eine Legende, welche immer der WWE treu gelieben ist, was ihm noch mehr Anerkennung bringt und ein zukünftiger Hall of Famer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Frutzwrote on 15.05.2008:[10.0] "Allein seine Loyalität gegenüber der WWE verdient eine hohe Punktzahl, würde wohl die 10 aber noch nicht rechtfertigen. Aber was dieser Mann für diese Liga geleistet hat, ist ein Phänomen. 1991 als absolut fragwürdiges Gimmick gestartet (unbesiegbarer Totengräber), hat er sich zu einem der beliebtesten Wrestler entwickelt. Seine Vorurteile gegenüber einigen Wrestlern und das damit verbundene "No-Selling" sei ihm verziehen. Er ist wahrscheinlich einer der wenigen, der es geschafft hat, ohne lange Titel-Regentschaften, zu einer absolut respektierten Grösse aufgestiegen zu sein. Ganz klar: 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The CaTwrote on 14.05.2008:[10.0] "the phenom is the best.. RIP edge on judgment dayy... edge suckss..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nahkampfsockewrote on 13.05.2008:[10.0] "Undertaker ist einfach der Beste! Alles andere als 10 punkte wäre pure Blasphemie!  Er ist ein ordentlicher Wrestler, sein Gimmick ist der totale Wahnsinn und er ist ein Gott am Mikro!  Einfach eine Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Die Gurkewrote on 13.05.2008:[9.0] "wird sicherlich eine der ganz großen legenden, allerdings hauptsächlich wegen seinem gimmick, und das nehme ich ihm heute nicht mehr ab"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kevichenkowrote on 12.05.2008:[10.0] "Der Deadman , eine lebende Legende !  Statt im Alter schlechter zu werden wird er immer besser.  Volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Leniewrote on 09.05.2008:[10.0] "auch wenn er nicht mehr der jüngste ist, finde ich ihn immernoch toll. nur diese neue storyline mit dem vakanten titel find ich echt bescheuert, das kann man bei anderen leuten machen aber nicht beim taker. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dave Concordiowrote on 06.05.2008:[10.0] "10 Punkte für einen Mann, der mich von Anfang an fasziniert hat, ein super Gimmick entwickelt hat und im Ring immer noch gute Leistungen erbringt! Außerdem kein Titelsammler. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jay-tewrote on 05.05.2008:[10.0] "Wenn ich ehrlich bin, gehört er nicht zu meinen aller liebsten wrestlern, ist aber auch der Superstar, der sich so lange im geschäft hielt und immer noch der größte superstar!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RockZauwrote on 01.05.2008:[10.0] "Mich wundert es immer wieder wie Nicht-Fans gleich auf den Undertaker kommen, wenn man das Wort WWE in den Wort nimmt. Das zeigt schon vieles.. Für mich persönlich ist Taker schon immer der 1A Wrestler gewesen und ich bin auch schon seit 9 Jahren an ihm dran :P.. Ich hoffe sein vorraussichtlicher letzter Titel-Reign wird etwas länger anhalten und außerdem wünsche ich mir, das er ein annähernden Abschied wie Ric Flair machen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Bigkev82wrote on 26.04.2008:[10.0] "bei der entrance läufts mir immer eiskalt den Rücken runter, speziell bei der Rückkehr als deadman bei WM 20. Das beste Gimmik was die Wrestling-Welt gesehen hat meiner Meinung und momentan ist er besser denn je"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Main Eventwrote on 19.04.2008:[10.0] "Der Deadman hat einfach eine zu perfekte Karriere um ihn 9 oder weniger Punkte zu geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Undertalkerwrote on 19.04.2008:[10.0] "Er ist mein absoluter Lieblings-Wrestler! Bei der Survivor Series 91, beim Match gegen Hogan, sah ich ihn zum ersten Mal, und er zog mich sofort in seinen "dunklen Bann". Er hat eine fantastische Ausstrahlung und man verstand es immer, sein Gimmick zur richtigen Zeit etwas zu verändern und so interessant zu halten. Auch besitzt er eine Beständigkeit in diesem Business, wie sie nur wenige haben. Früher bot er im Ring eher mittelmäßige Leistungen, die aber während der Biker-Zeit besser wurden und sich, seitdem er der "New-Undertaker" ist, noch einmal verbessert haben. Er zeigt tolle Aktionen und hat einen zielstrebigen, intensiven Kampfstil, der mir unheimlich gut gefällt. Er kann aus fast jedem Gegner ein gutes Match herausholen. Ich hoffe, er wird uns noch lange erhalten bleiben und zu guter Letzt einen würdigen Abschied bekommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Stalker1987wrote on 19.04.2008:[10.0] "Einfach eine Wrestling Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: dammdudewrote on 18.04.2008:[10.0] "THE PHENOM    mehr muss nicht sagen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: homicidal cena michaelswrote on 16.04.2008:[8.0] "Er ist seit 2007 wrestlerisch besser geworden und seine Promos und Mic Qualitäten haben sich sehr gesteigert."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fran7iCwrote on 12.04.2008:[6.0] "Sein American Bad-Ass Gimmick war super. Aber solangam reicht es mit ihm. Trotzdem starker Wrestler"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AnFuwrote on 11.04.2008:[9.0] "Der Undertaker ist eine Legende! Er schafft es sogar in dem Alter locker noch 4 ****-Matches gegen Batista zu wrestlen, dass ist große Klasse. Ewig dabei und obwohl er nie lange Single-Runs mit dem Heavyweight Title hatte, gibts faaast die Bestnote."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kroatewrote on 11.04.2008:[10.0] "Eine der letzten lebenden Legenden in der WWE. Trotz seines mittlerweile hohen Alters, ist er immer noch dazu in der Lage Top-Matches zu bestreiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Muffiwrote on 11.04.2008:[7.0] "Eine Legende, keine Frage. Das sein Gimmick nach dem Comeback als Deadman nur noch durch die Streak und seinem Entrance definiert wird schadet ihm enorm."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: nightfallwrote on 10.04.2008:[9.0] "Der Ringpsychologe schlechthin und Topwrestler. Obwohl er auf Grund seines doch recht fortgeschrittenen Alters beginnt langsamer zu werden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: xXJohnCenaXxwrote on 10.04.2008:[7.0] "Natürlich der Undertaker ist ein Phänomen und er schafft es immer wieder gute Matches abzuliefern, aber genau das ist der Punkt er liefert gute Matches ab und keine sehr guten, am Anfang fand ich ihn natürlich cool, aber mit der Zeit beginnt er mich ein bisschen zu langweilen, weil er einfach IMMER gewinnt"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DeutscheMarkenbutterwrote on 09.04.2008:[10.0] "Eine lebende Legende , der hervorragend für seine Größe wrestelt und mit seinen Einmärschen und am Mic die Zuschauer fesselt !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DX Generationwrote on 07.04.2008:[10.0] "Er ist der Beste, Deadman4ever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ultimate-warrior-xwrote on 05.04.2008:[10.0] "Das beste Gimmick das es je gab. Im Ring wird er auch immer besser. Kann mit jedem Superstar mithalten, auch wenn er mittlerweiler schon einer der ältesten ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FratzenFressewrote on 01.04.2008:[10.0] "Legende! Einer der größten Wrestler aller Zeiten, der sich im Ring immer wieder neu erfindet und auf seine alten Tage eher noch besser wird! Wahnsinnstyp, wenn er einmal aufhört verliert die WWE in meinen Augen DAS Zugpferd überhaupt!  (die Rocker-Zeit vergebe ich ihm mal) also 10 Punkte von mir!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ultimativboesewrote on 30.03.2008:[10.0] "Für die Karriere, für die Leistungen und alles drum und dran 1+ mit Sternchen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Phenomwrote on 28.03.2008:[10.0] "Der Undertaker, was soll man noch zu ihm sagen. Ich kenne ihn ja leider erst seit 2004, aber ich bewerte jetzt auch mal seine Anfangszeit, da ich die Promos und Matches dank Videos und DVDŽs weitgehend gesehen habe. Am Anfang war er für mich eher schlecht. Keine Erfahrung und das "Zombie" Gimmick war ja auch so aufgebaut, das er garnichts gutes daraus machen konnte. Dann allerdings um das Jahr 1993, wurde sein Gimmick geändert, so das er auch von seinem Gimmick her in der Lage war gute Matches zu zeigen. Ab da gings aufwärts, über Mittelklasse Matches, bis dann zu diesem Großartigen Match bei Wrestlemania gegen Diesel. Ab da war er für mich der Main Eventer schlecht hin. Und spätestends 1997 war er für mich schon eine Legende. Diese großartigen Matches gegen HBK und 98 dann gegen Mankind. Nunja, dann folgte seine schlechteste Zeit. Das Rocker Gimmick. Ich fand es einfach nur, sorry das ich das jetzt so sage, aber ich fands Scheiße. Natürlich brauchte er mal einen wechsel, und wenn man "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ruppiwrote on 27.03.2008:[10.0] "Bringt seit zwei Jahrzehnten Leistungen auf hohem Niveau und entwickelt sich dabei ständig weiter. Wenn er mal darf, zeigt er, dass er auch am Mic etwas kann und das Gimmick ist einfach grandios verkörpert. Eigentlich der Hauptgrund, wieso ich wieder zum Wrestlingfan geworden bin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mr sledgehammerwrote on 26.03.2008:[8.0] "Der Deadman ist nur noch ein Schatten alter Tage. Natürlich ist er die Legende schlechthin und natürlich ist er für sein Alter noch in großartiger Verfassung, doch nachso vielen Jahren, nach so vielen Wrestlemaniasiegen, nach so vielen Tombstone-Piledrivern ist sein Deadman-Gimmik einfach ausgelutsch und im Ring zeigt er immernur die gleichen Schläge, die gleichen Moves und den gleichen Style. Aber weil er der einzigartige Deadman ist->2!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: fairywrote on 25.03.2008:[10.0] "sehr guter Wrestler versteht was er macht und das seit über 20 Jahren schon"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: victoriawrote on 24.03.2008:[6.0] "Als der Rocker hat er mir viel besser gefallen!  Jetzt sind die meisten seiner Kämpfe einfach so langweilig und sein elends langer Entrance ist echt schrecklich! Früher super, heute einfach nur mehr langweilig!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ZuluBunsenwrote on 21.03.2008:[2.0] "Sein Gimmick hat sich schon vor Jahren tot gelaufen und sein Moveset ist einfach nur noch veraltet. Unterdessen nur noch ein Grund zum Umschalten bzw. vorspulen."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LexLuger4everwrote on 17.03.2008:[10.0] "Tja, der Undertaker - was soll man über ihn sagen? Vielleicht ist er derjenige, der von allen Wrestlern in der WWF die legendärste Karriere hatte! Seit nunmehr 18 Jahren am Stück tritt er für die Company an und das Faszinierende ist, dass er, auch nach meiner Meinung, immer besser anstatt schlechter wird, ganz zu schweigen vom einfach einzigartigen Gimmick, was ihn hier u.a. auch zum beliebtesten Superstar gemacht hat! Inzwischen bin ich so weit, zu sagen, dass ich mir die WWE ohne den WWE Sensenmann schon gar nicht mehr vorstellen kann, da ich mit Leuten wie ihm groß geworden bin! Doch wird er, spätestens im oder nach dem Jahr 2010 seine aktive Karriere beenden, dann hätte er auch seine zwei Jahrzehnte der Zerstörung voll! Leider ist das der Lauf der Dinge und der Tag seines Rücktritts rückt unaufhaltsam näher, aber bis dahin freue ich mich erstmal auf einen wohl letzten, aber endlich mal richtig großen Titlerun!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Juvicidewrote on 16.03.2008:[10.0] "Die Legende überhaupt. Jemand, der sein Gimmick so gut verkörpert, wird es kein zweites Mal geben. Für sein Alter zeigt er erstaunliche Matches, wenn man doch mal an die Matchserie mit Batista denkt. Ich persönliche hoffe nur, der "Deadman" bekommt noch einen letzten großen Run als World-Champ und übersteht diesen ohne Verletzung, denn das hätte niemand so verdient wie er. Trust Me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fire Devil1990wrote on 16.03.2008:[10.0] "Mein absoluter Favorit! Würd mich freuen wenn er den World Heavyweight gewinnen würde. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: edge-head92wrote on 15.03.2008:[10.0] "10 P. for the PHENOM!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Instant Classicwrote on 13.03.2008:[10.0] "Was soll man zum Taker schon schreiben?   Eines der besten Gimmicks aller Zeiten, charismatisch und einer der besten Big-Men."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheMasterpiece87wrote on 12.03.2008:[10.0] "Eine Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: chimpwrote on 12.03.2008:[10.0] "Der Grund, warum ich nach mehr als 10 Jahren wieder angefangen habe, Wrestling zu schauen (und es nicht bereue)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Mountiewrote on 02.03.2008:[10.0] "Was kann man zum Taker sagen, was nicht schon gesagt ist? Ich lobe daher mal etwas, was hier etwas zu kurz kommt: Seine Leistung im Ring, die ihn auch jetzt, wo sein Gimmick nicht mehr wirklich frisch ist, noch interessant macht. In der Neuzeit dürfte es keinen Mann seiner Größe geben, der stärkere Leistung bringt. Und faszinierenderweise wurde er im Alter nicht schlechter, sondern besser - wer das Gegenteil behauptet oder dass der Taker nur von seinem Gimmick lebt, weiß nicht wovon er redet. Körperliche Alterserscheinungen kompensierte der Taker durch eine gelungene Stilerweiterung in Richtung MMA-Strikes und -Submissions, die seine Kämpfe zuletzt interessanter denn je machten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AreYouReadywrote on 29.02.2008:[10.0] "geil"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: splashwrote on 25.02.2008:[8.0] "Ein wirklich guter Wrestler, der in seiner Karriere schon wirklich viel geleistet hat. Ich finde es auch positiv das er sich in seiner langen WWE Laufbahn sich immer wieder für die Company den Arsch aufreißt und alles gibt. Trotzdem will mir sein Gimmick einfach nicht gefallen. Er bringt den Deadman zwar wirklich gut rüber, aber das Gimmick ist nicht wirklich mein Ding. Als Bad Ass hat er mir besser gefallen. Nichts desto trotz: Für seine Leistungen und Fähigkeiten eine 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: matze298wrote on 24.02.2008:[6.0] "Der Undertaker hat ein abgenutztes Gimmick, bringt es aber dennoch gut rüber. Das Problem sit, dass ihm zum ehemaligen Deadman einiges fehlt, weil damals an ihm gar nichts menschliches war und das mit seinem Gimmick Wechsel zum Biker zerstört wurde."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: hanseplastwrote on 23.02.2008:[10.0] "Mein Liebling! Sein Aussehen, sein Auftreten sein Können sind einfach fantastisch und er hat es immernoch drauf. Eine lange Titelregentschaft, ohne dämliche Verletzungen, würde ich nochmal zu gerne gönnen. Das hat er sich um seine Verdienste um die WWE und dem Wrestling allgemein wirklich verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: UndertakerFan17wrote on 23.02.2008:[10.0] "Undertaker ist der beste Wrestler der welt in meinen Augen.  Hätte sich Edge nicht eingemischt hätte er ohne Probleme Batista den titel abgenommen "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Darbenwrote on 20.02.2008:[10.0] "Eine wahre Legende. Unvergessene Fehde ( Kane, Orton). Unvergessene Moves (Tombstone Piledriver, Seiltanz).  Für seine grösse unglaublich agil. Wrestlerisch immer für eine Überraschung gut und wird im Alter immer besser. Würde ihm den Titel noch einmal gönnen. Dann eine lange Regentschaft und eine würdige Verabschiedung. Zumal er auch in schweren Zeiten die WWF nicht verlassen hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheBigBwrote on 09.02.2008:[10.0] "Der Undertaker ist warscheinlich einer der bekanntesten , beliebtesten und der  talentiertesten Wrestler der Wrestling-Geschichte und mein persönlicher Lieblingswrestler ! Er hat trotz seinem Gewicht und seiner kolosalen Große eine hervorragende Technik ((( siehe : Seiltanz ))) Und außerdem ist er trotz seinem hohen Alter noch sehr fit und kräftig !  Von mir bekommt der Deadman die Note 1 !!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ---HUTTI---wrote on 09.02.2008:[10.0] "ich find ihn einfach wahnsinn!!!!!!  "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Father Frostwrote on 07.02.2008:[10.0] "REST! IN! ... PEACEEEEE!!!!    Jawoll, ja! Der Deadman ist einfach eine Klasse für sich. Niemand machte in den letzten zehn Jahren so lange so nen guten Job mit einer solchen Präsenz!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: nevermore811wrote on 04.02.2008:[10.0] "The Phenom! Solider Wrestler, Top Charisma und einfach einzigartig!!! "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Phenom89wrote on 30.01.2008:[10.0] "Einer der besten Gimmick-Wrestler aller zeiten, ein großartiger Mann und ein fantastischer Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tombstone81wrote on 29.01.2008:[10.0] "Mein absoluter Lieblingswrestler seit damals wo er Ultimate Warrior in den Sarg gesperrt hat. LoL  Das Biker-Gimmick fand ich sauschlecht. Am besten sah er zum Anfang seiner Karriere aus, da war er viel gruseliger (und böser) als jetzt. Das „Satanisten“-Gimmick war auch cool, er ist und bleibt der Beste!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sirPsychoSexywrote on 27.01.2008:[10.0] "Er ist einfach DIE Legende im Sports-Entertainment, er hat eine unglaubliche Präsenz und man kriegt Gänsehaut wenn man live dabei ist wenn die Lichter ausgehen. im Ring einfach überzeugend old-school, und am mic ist er auch toll wie man zu american-bad-ass zeiten gesehen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DarkWarrior86wrote on 24.01.2008:[10.0] "Allein schon seine Anwesenheit macht ein Match aus! Klasse Gimmick, immernoch guter Wrestlingstil, einfach nur Undertakertastisch =D .. mehr muss man über diesen Mann nicht sagen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Timetoplaythegamewrote on 23.01.2008:[10.0] "L.E.G.E.N.D.E. schlecht hin. Der Taker kann jeden besiegen, vor allem natürlich bei WrestleMania."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Schandmaulwrote on 22.01.2008:[6.0] "Das Gimmik ist natürlich legendär und in der Ministry Zeit fand ich es genial. Aber alles was danach kam war imo alles kalter Kaffee, da auch nach dem bescheuerten Bikertaker der Undertaker für mich nie wieder der war der er vorher war. Dazu im Ring höchtes durchschnitt. Sein Legendenstatus rettet ihm bei mir aber noch die 3"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Moshpit-Hooliganwrote on 21.01.2008:[4.0] "Langweiliges Gimmick und im Ring nur Durchschnitt."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HBK-Xwrote on 17.01.2008:[10.0] "Beim Taker braucht man eigentlich nichts mehr sagen! Kann mit jedem ein gutes Match zeigen, hat alles was man braucht! Einmalig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nocuraswrote on 16.01.2008:[10.0] "Meiner Meinung nach das beste Gimmick aller Zeiten. Ich war richtig enttäuscht damals als die WWE ihm dieses Biker Image verpasst hat und glücklich als er wieder als Totengräber zurückgekehrt ist.   Vom Können her mit Sicherheit auch einer der Besten aller Zeiten. Man muss sich nur mal die Matches gegen Batista oder Kane anschauen. Beeindruckend auch immer beim Royal Rumble wobei 2007 Shawn Michaels eigentlich mehr überzeugt hat.  Wahnsinn wenn ich mir überlege das er schon seit 1986 dabei ist und immernoch Moves wie Dead Man Walking oder Flying Closelines zeigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Cactus Danielwrote on 13.01.2008:[10.0] "Er ist wirklich ein ''Phenom''. Seit fast 2 Jahrzenten dabei und es wird trotzdem nie langweilig ihm zuzusehen. Außerdem ist er zurzeit in einer bestechenden Form. 10.0 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Remootwrote on 05.01.2008:[10.0] "Eine Legende!  Wenn nicht die grösste legende aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Stone Cold Andywrote on 04.01.2008:[6.0] "Hätte man mich vor ein paar Jahren nach einer Bewertung für den Undertaker gefragt, hätte ich ohne Bedenken eine 1 gegeben, da der Undertaker vor allem in den 90er Jahren viele denkwürdige Momente schuf (wie zum Beispiel die Erhängung des Boss Man bei Wrestlemania XV), aber seit ein paar Jahren, genauer gesagt seit seinem Comeback mit dem Deadman- Gimmick 2004, kann er mich nicht mehr so richtig unterhalten. Er ist immer noch ein anständiger Brawler, aber nach 18 Jahren Zombiedasein zieht sein Gimmick einfach nicht mehr und ich möchte wieder den Biker zurück."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "Undertaker 15-0! Der Undertaker ist mein Fav. Ihm kann man immer zuschauen-er zeigt konstant gute Matches und hält sich schon so lange an der Spitze. Die Legende schlecht hin!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Legionwrote on 02.01.2008:[10.0] "Dieser Mann ist der Grund warum ich anfing mich für Wrestling zu interessieren. Absoluter Kult, auch heute noch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Y2J Michaelswrote on 02.01.2008:[10.0] "Was wäre die WWE ohne den Undertaker?! Nichts. Mehr brauche ich wohl nicht zu sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: EvenflowDDTwrote on 31.12.2007:[8.0] "Undertaker - Phenom der Wrestlingwelt. Doch von mir gibt es, wie manche von euch denken werden, "nur" eine 2. Der Undertaker ist keine Frage eine Riesenpräsenz im Wrestling. Bringt sein geniales Gimmick ebenso genial rüber. Hat gute Wrestling Skills. Mic-Work vom feinsten...Aber: Ich finde über die lange Karriere hinweg...hat der Taker sich kein bisschen weiterentwickelt. Es ist jedesmal dasselbe mit dem Taker. Egal ob in Storylines, Promos oder Matchabläufen. Mittlerweile wissen wir sogar mindestens von einem Wrestlemania Match immer den Ausgang weil die WWE diese "Streak" wohl nie enden lassen wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MA Excellentwrote on 29.12.2007:[10.0] "Der Mann ist in der Tat ein Phänomen. Die tatsächlichen Leistungen, die er seit über 20 Jahren mit seinen 2,08 Meter bringt, sind herausragend. Geschont hat er sich wahrlich nicht und der Mann ist einfach Kult. Jedoch will uns die WWE natürlich das 15-0 Phenom verkaufen, was ich etwas "triefend" finde. Der Mann verdient größten Respekt, aber nicht für die hausgemachten WWE Legenden. Im Ring wohl der beste Big-Man ever, das Gimmick genial und mehr oder weniger die komplette Karriere beibehalten. Das muss eine 1 geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RhinoRaineswrote on 29.12.2007:[10.0] "Wahrscheinlich ist er der beste Big Man in der Geschichte der WWE. Tolles Gimmick, selbst als Biker hat er mich unterhalten können. Klare 10 Punkte für den Deadman."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gaahlwrote on 22.12.2007:[10.0] "Bestes Gimmick und super Wrestler!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Know Nothingwrote on 17.12.2007:[10.0] "Der Undertaker ist eine Legende. In meiner Kindheit war er DER WWF Superstar schlechthin und er Zeigt immer noch sehr ansehliche Kämpfe und einen Klasse Auftritt.  Den "Biker Look" den er zwischendurch hatte vergessen wir mal ganz schnell. Mir gefiel der Tote Mann mit unterstützung von Paul Bearer am besten.  Um ehrlich zu sein denke ich das er mittlererweile aufhören sollte. Er ist immer noch eine Klasse für sich und so soll er den Fans auch in errinnerung bleiben. Leider wird auch ein Undertaker nicht jünger und früher oder später werden auch seine Wrestlingqualitäten nachlassen.  Wenn sich jemand eine Eins verdient hat, dann er."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Der dunkle Lordwrote on 16.12.2007:[10.0] "Ich finde den Taker klasse, weil er immer das bekommt, was er will.  Wer sich ihm in den weg stellt, hat keine Chance:    REST IN PEACE!  ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: tomslwrote on 14.12.2007:[10.0] "Eines der besten Gimmicks der WWF/WWE! Ich bekomm jetzt noch immer eine Gänsehaut wenn der Gong des Deadman erklingt. Klare 1!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blue-byte92wrote on 11.12.2007:[6.0] "Lebt von seinem mittlerweile sehr abgenutztem Gimmick. Kann sonst aber nicht mehr überzeugen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Neowrote on 09.12.2007:[8.0] "war mal klasse, ist es jetzt auch noch, sollte aber mal bald cu sagen"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Aaronwrote on 09.12.2007:[10.0] "Der Worker schlechthin! Er kann jeden Stil im Ring mitgehen und verbessert sich fast täglich! Der beste Big Man überhaupt und durch sein Alter vollkommen zurecht Anführer der Top 100!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WWFfreakwrote on 03.12.2007:[10.0] "Für mich der beste Wrestler aller Zeiten und DER Grund warum ich zum Wrestling gekommen bin (etwa 1994) und mir das ganze noch anschaue!!!  Der Undertaker ist einfach nur Phänomenal und gar nicht aus der Szene wegzudenken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: EGeraldhuebnerwrote on 01.12.2007:"Natürlich die (!) "Legende" schlechthin, das Zugpferd der WWF/E und (ganz bestimmt) nicht nur für mich, der Hauptgrund, sich überhaupt - noch - für Wrestling zu interessieren. Daher: steckt diesen tollen Mann, der euch 15 Jahre immer den Erfolg gebracht hat, falls er seine Karriere fortführt, rechtzeitig in ein TagTeam mit guten Partner (wie z.B. Kane), der ihn bei Schwächen ab und zu mal mit "trägt" (und dadurch natürlich auch selbst seinen lange verdienten Push bekommt), bzw. ändert dies auch nicht mehr. Das er ziemlich nachgelassen hat, sich nun häufig über die Zeit retten muß usw.,wird jetzt leider immer deutlicher. Irgendwann ist es sonst einfach nur noch unglaubwürdig, und sowas spiegelt sich ja dann auch in der ausbleibenden Begeisterung vieler Fans."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: oejongewrote on 28.11.2007:[10.0] "Die lebende Legende - Zugpferd der WWE - für mich über dieses langen Zeitraum gesehen der grösste und beste Wrestler, den die WWF/WWE je hatte. Hoffentlich bleibt er uns noch länger erhalten!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MemphYwrote on 25.11.2007:[8.0] "Seine Siegesserie bei Wrestlemania verbietet die Höchstwertung!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Heatwrote on 25.11.2007:[10.0] "Eine lebende Legende, er war immer in der WWF/WWE, seit ich sie verfolge, und er war immer oben dabei, und das zu Recht, auch im mittlerweile mittleren Alter, dennoch immer für gute Matches zu haben. Alles andere als eine 1 wäre eine Frechheit. Was dieser Mann geleistet hat ist einfach riesig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sebiwrote on 25.11.2007:[10.0] "Beim Undertaker zuzusehen macht immer wieder Spaß, weil er es schaft jedes Match spannend zu machen. Einer der top Wrestler der letzten Jahre"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sandiegowrote on 25.11.2007:[6.0] "Mittlerweile nur noch ein Schatten früherer Tage, schade.  Unbeweglich und immer vorhersehbar, welche Aktion als nächstes kommt.  Einfach nur noch langweilig."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: fswrote on 20.11.2007:[10.0] "Schon ewig dabei und trotz höheren Alter kann er schwache Wrestler immernoch zu guten Matches ziehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Koitnreinawrote on 10.11.2007:[10.0] "Der einzige Grund warum ich mir Smackdown! angucke."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Joe710wrote on 07.11.2007:[10.0] "Durch den Undertaker bin ich zum Wrestling gekommen. Er ist schon seit 16 Jahren dabei und hat mehr im Ring drauf als so mancher Jüngling. Sein Gimmick ist einfach genial, seine Einzüge immer wieder ein Highlight. Er ist sich nicht zu schade sich ab und zu für Neulinge hinzulegen und hat kein bisschen Beliebtheit eingebüßt. Wahrscheinlich der größte Grund, warum ich selber mit dem Wrestling angefangen habe ; -)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fabbowrote on 06.11.2007:[10.0] "Das Phenom des Wrestlings!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheAdaawrote on 05.11.2007:[10.0] "Der Undertaker ist sicherlich das Phänomen der WWE. Er dominiert die WWE nun über 10 Jahre, eine Leistung die nicht jeder von sich behaupten kann. Zudem ist er für seine Größe und sein Gewicht im Ring ziemlich beweglich und kann für sein Alter noch sehr gute Matches abliefern. Zudem hat er sich ständig weiterentwickelt und ist ein heißer Kanidat für die Hall of Fame."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Meanbeastwrote on 31.10.2007:[10.0] "Meiner Meinung nach der beste Wrestler aller Zeiten: überzeugend, routiniert, bringt seit Jahren Top-Leistungen! Einfach Weltklasse dieser Mann!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: antihiphop2002wrote on 29.10.2007:[10.0] "Einfach eine lebende Legende. Kann mich nicht erinnern das ich mich jemals über ihn gelangweilt habe. Die Intensität im Ring und wie er sein Gimmik verkauft das ist einfach genial. Und für seine Grösse technisch extrem gut. Außerdem hat man das Gefühl das er immer noch dazulernt, wird eher noch besser als schlechter im Alter. Was sicherlich auch am abgespeckten Tourplan liegt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mr Money in the bankwrote on 28.10.2007:[10.0] "Für den Undertaker müsste man einfach neue adjektive erfinden um zu beschreiben was für ein genialer Wrestler er ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Benny110106wrote on 28.10.2007:[10.0] "Er ist einfach der Untertaker. Ganz klar 1 !!!!!!!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kiggiwrote on 24.10.2007:[10.0] "Der beste Wrestler aller zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rated-R-Fanwrote on 21.10.2007:[10.0] "Er wird älter,aber immer besser!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: V12-Viperwrote on 17.10.2007:[10.0] "Er ist klar der beste Wrestler den es gab bzw. gibt ich hoffe er bekommt bald seinen hoch verdienten Titel-Run."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tee777wrote on 16.10.2007:[10.0] "Geiler Wrestler macht immer spaß Matches von ihm zu sehen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jericho Onewrote on 04.10.2007:[8.0] "Der Deadman ist einfach nur kultig, aber davon lebt er schon ziemlich lange! Fand sein "American Badass"-Gimmick besser, weil er dort vielmehr/variabeler agieren konnte. Das Deadman-Gimmick wirkt für mich zu starr und läßt auch nicht viel anderes zu. Ansonsten einer der besten BigMan die es im Business je gab! "
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: King of Queenswrote on 04.10.2007:[10.0] "Jemand, der sich so lange konstant an der Spitze hält wie Undertaker hat die 10 Punkte einfach verdient. Wrestlerisch, trotz seines hohen Alters und seiner Größe, sehr stark. Seine Erfahrung hilft ihm, auch andere, schwächere Wrestler gut aussehen zu lassen. Er scheut es nicht, sich für andere, junge Leute hinzulegen, um diese over zu bringen. Über sein Charisma braucht man sich nicht streiten, das ist durch sein geniales Gimmick vorbestimmt und auch am Mic leistet er, wenn er denn mal den Mund aufmacht, sehr gute Arbeit. All das zeichnet eine Legende aus, die der Undertaker zweifelsfrei voll und ganz verkörpert. Einfach großartig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Peisistratoswrote on 04.10.2007:[10.0] "Der Deadman versteht es einfach, sein Publikum zu unterhalten. Er ist eine lebende Legende und das würdige ich mit einer eins."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Oli10wrote on 01.10.2007:[10.0] "Eine Legende! Seine Fehden sind einfach nur genial! Dead Man Walking!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wuschl 85wrote on 29.09.2007:[10.0] "Eine lebende Legende und das schon seit 17 Jahren. Mir bleiben etliche unvergessen Matches in Erinnerung wenn ich an den Taker denke z. Bsp. das Hell-in-a-cell beim KOTR 1998 oder das Buried-Alive Match gegen Kane. Eine wahnsinns Austrahlung und der Einmarsch wird für immer unangefochten bleiben. Der Taker ist gut am Mic und seine Psychospielchen mit den Gegnern legendär. Für mich momentan der einzige Wrestler der eine 10er Wertung verdient hat. Bei deisem Wrestler passt einfach alles Körperbau, Ausstrahlung\Mimik und sein Können im Ring und das auch in hohem Alter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kuschkowrote on 17.09.2007:[10.0] "Kult!!  Meine erste Erinnerung die ich mit Wrestling verbinde ist die Totenglocke von Venedig und dieser schwarze Hüne der hinter einem kleinen dicken Mann mit Urne herläuft. Die WWE Identifikationsfigur schlechthin -The Undertaker "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Bhanduwrote on 16.09.2007:[10.0] "War zueletzt vor seiner Verletzung in der Form seines Lebens. Für seine Größe und sein Alter mittlerweile ein phänomenaler Worker im Ring, da er sich immer weniger von seinem Gimmick behindern läßt. Das Jahr 2007 sah bis zur Verletzung des besten Undertaker aller Zeiten! In Sachen Fanzuspruch kommen ohnehin nur wenige an ihn heran. Eine lebende Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Bullit69wrote on 16.09.2007:[10.0] "Auch einer,der wohl immer in den Köpfen der Fans bleibt!!Seine WM-Siegesserie wird wohl nie abreißen komme was da wolle!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: shrotiwrote on 11.09.2007:[10.0] "einfach der beste!! R.I.P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kennedictwrote on 07.09.2007:[8.0] "Che lo dico a fare? Uno dei più forti di sempre. Stop.anche se non mi piace"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Manuelwrote on 06.09.2007:[10.0] "The Undertaker ist der beste Wrestler jetzt in der WWE knapp vor Shawn Michaels und Triple H."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DannyGeigwrote on 04.09.2007:[10.0] "Der Mann der WWE, perfekter Wrestler perfekt um Rookies Over zu bringen beim Undertaker stimmt einfach alles"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: caterwrote on 29.08.2007:[10.0] "Bewertet man nur den Wrestler Mark Calaway, kann man höchstens eine 3 geben. Aber das Gimmick des Undertakers ist einfach eines der besten und langlebigsten, die es gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Alan Smitheewrote on 26.08.2007:[10.0] "Mark Calaway kann echt froh drüber sein das Gimmick dess Undertakers bekommen zu haben sonst währe er wahrscheinlich (trotz der, für seine Statur, guten Moves) nach ein paar Jahren in der (WWE-)versenkung verschwunden. Aber... Gott sei dank hat er das Gimmick bekommen und ist dadurch zu einer der Legendärsten Figuren im Wrestling geworden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Pinguwrote on 23.08.2007:[10.0] "Das kultigste und genial Gimmick aller Zeiten, was ihm sicher dabei hilft so lange an der Spitze zu sein und als Legende in die Geschichtsbücher einzugehen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hunter2007wrote on 20.08.2007:[10.0] "User, die weniger als 6 Punkte für den Undertaker vergeben haben, sollten mal gründlich ihre Augen öffnen oder sie haben keine Ahnung davon. Takers Alter spielt keine Rolle, er zeigt sich von seiner allerbesten Seite!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: yogywrote on 17.08.2007:[10.0] "Eine der absoluten Legenden des Wrestling.Fantastisches Gimmick,eindrucksvolle Moves und eine riesen Statur haben den Undertaker zu dem gemacht was er heute ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rey Mysterio619wrote on 16.08.2007:[8.0] "Undertaker ist cool"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: EG4Livewrote on 11.08.2007:[10.0] "Eindeutig einer der bedeutendsten und prängendsten Männer im Wrestling! Exzellente Technik, Micwork perferk und das wohl beste Gimmick aller zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Thingwrote on 07.08.2007:[10.0] "Einer der besten Wrestler den es heutzutage überhaupt gibt. Er gibt einfach bei jedem Gegner sein bestes, wobei kaum ein schlechtes Match von ihm entstanden ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Deadly Passionwrote on 06.08.2007:[10.0] "Èinfach genial."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Garvinwrote on 30.07.2007:[10.0] "Was soll man diesem Mann sonst geben? Hat das Wrestling mitgeprägt, wie kaum ein anderer. Sein Gimmick wird für immer in die Geschichte eingehen, oft kopiert werden, aber nie wieder erreicht werden. Leider wurde er im Laufe seiner Karriere in viel zu viele unwürdige Fehden gesteckt. Doch der Taker machte IMMER eine gute Figur. Trotz seiner Proportionen ein fantastischer Wrestler. 100%ig zukünftiger Hall of Famer. Das einzigste, was ich nicht an ihm mochte, das war seine ABA-Zeit. In der Ministry of Darkness war er mein "Lieblings-Taker" ; )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Lord Loviswrote on 29.07.2007:[10.0] "Der Undertaker ist eine der größten Legenden überhaupt. Auch wenn er nicht immer kämpfen kann, da er schon etwas älter ist. Aber wenn er da ist dann zeigt er immer eine ziemlich gute Leistung und bringt Wrestler die es eigentlich fast gar nicht können, wie beispielsweise Batista, dazu ein ansehnliches Match abzuliefern. Zudem ist er seit nun schon 17 Jahren immer auf dem gleichen Level und hat fast keinen Leistungsabfall gezeigt... Welcher Aktive kann sowas von sich behaupten? Außer Ric Flair wahrscheinlich keiner."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ulfwrote on 26.07.2007:[8.0] "Bis 1998, wo ich den Undertaker sehen konnte, fand ich ihn am besten. Als Biker kam er mir mehr unattraktiv rüber, wobei er für mich jetzt wieder langsam interessanter geworden ist. In seinen Wrestlingpausen hat er bei mir immer ein Loch hinterlassen und würde ihn sehr vermissen, da es zur Zeit der beste Wrestler ist, den ich gerne sehe. Von mir bekommt er für den jetzigen Stand eine 2, 3."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Comptonwrote on 23.07.2007:[10.0] "Der Undertaker gehört zweifelsohne zu den besten Produkten der WWE aller Zeiten. Seit seinem Debut im Jahre 1990 hat der "Mann aus Death Valley" immer überzeugt und war seit jeher ein Big Time Player. Zwischenzeitlich wechselte er sogar das Gimmick des Totengräbers und wurde zu einem Bad-Ass-Biker, aber trotzdem hatte er kaum von seiner Populärität eingebüßt. Dabei ist der Undertaker im Ring sehr solide, Gimmickmatches meistert er mit Bravour und auch in normalen Kämpfen macht er eine gute Figur. Aber es ist nunmal so, dass der Undertaker zur Zeit stark von seinem Gimmick lebt. Er wird bei der WWE wie ein Phänomen, wie eine lebende (gut, das war jetzt vielleicht eine schlechte Wortwahl) Legende gehandelt und ist ein Mann, der die Hallen füllt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: scotty619wrote on 10.07.2007:[8.0] "The Undertaker ist simmlich cool aber er hat mir besser als Biker gefallen"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Doomsdaywrote on 06.07.2007:[10.0] "Wurde viel zu oft um den Titel betrogen. Hoffentlich bekommt er noch ne Chance."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blade Bourdeauxwrote on 05.07.2007:[10.0] "Zum Taker ist, glaube ich, alles gesagt und geschrieben worden. Wer es schafft fast 20 Jahre an der Spitze, der besten Liga des Business, zu stehen ist selbst die personifizierte Spitze des Business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Burzi1wrote on 05.07.2007:[10.0] "Ganz klar eine Legende! Mehr kann man dazu nicht sagen. Volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PuroDragonwrote on 04.07.2007:[8.0] "Lebt nur von seinem Gimmick,dass er allerdings klasse verkörpert"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ShaneOwrote on 28.06.2007:[10.0] "Ich geb die 10 nur selten her - aber beim Taker ist diese Note absolut gerechtfertigt. Weltklasse Worker, am Mic gut und schon ewig an der Spitze der WWF/E. Schade das sein Run als World Champ so früh enden musste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DrBreswrote on 27.06.2007:[10.0] "Eine Legende! Auch wenn das Deadman-Gimmick ein wenig ausgelutscht ist und spätestens bei ihm alle Marks aufschreien müssten: "He, das ist doch alles nur Show", bringt der Mann mit 45 seine Leistung. Scheint auch ein immens wichtiger Mann fürs Business und jüngere Wrestler zu sein. Denke er wird nach seiner Verletzungspause seinen letzten und wohlverdienten Push kriegen - und seine WM-Serie auf 16:0 ausbauen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ywainwrote on 25.06.2007:[10.0] "Seit Jahren bringt er Top-Leistungen und hat ein Gimmick, das seinesgleichen sucht. Super-Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HHH-Stephwrote on 24.06.2007:[10.0] "Der Undertaker ist eine der größten Legenden die die WWE/WWF je gesehen hat. Trotz seiner Größe ist er ein sehr guter Wrestler und er hat schon unzählige legendäre Matches bestritten. Er hat warscheinlich das beste Gimmick das es jemals im Wrestling gab! "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Adrammelechwrote on 24.06.2007:[10.0] "Für mich gibt es keinen anderen, der Undertaker war immer mein größter Held als Kind und bis heute ist er mein Liebling! Unvergessen die Matches gegen Gonzales, Yokuzuna usw. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Foerstawrote on 24.06.2007:[10.0] "Eine Legende. Steckt viel ein, ist verdammt hart und der Tombstone-Piledriver ist genial. Will ihm abends nicht begegnen.Geile Technik. Bestes Gimmick."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ABOOgeymanwrote on 24.06.2007:[10.0] "Dass der Taker nun verletzt ist ist wirklich eine Schande. Warum können sich denn nicht mal Leute wie Cena verletzen. Für mich ist der Taker mein absuluter Fave und einer der besten Wrestker allerzeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Azraelwrote on 24.06.2007:[10.0] "Eine lebende Legende, einer der grössten im Wrestling Entertainment.. das Gimmick ist einfach Kult und für sein alter liefert er noch immer ordentliche Matches ab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Trevedaswrote on 24.06.2007:[10.0] "Was soll man über diesen Mann sagen? Eine Legende, ein Mythos, einer der besten Wrestler, den das Wrestling-Business je gesehen hat! Meines Erachtens, ist er die größte Wrestling-Legende aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mr Kennedywrote on 24.06.2007:[10.0] "DonŽt disturb the deadman!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wichtgestaltwrote on 24.06.2007:[10.0] "Einfach der ProWrestler schlechthin, kenne kaum jemanden, der ihn nicht kennt und mag. Gimmick und Entrance sind auch heute noch schlicht weg genial, und für einen Big Man überragende Technik. Hoffen wir mal, das er uns noch lange erhalten bleibt. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RatedRKOwrote on 24.06.2007:[10.0] "Kenne Ihn seit seinem WWE Debüt. Fande seine Wandlung zum "American Bad Ass" ziemlich daneben. Es geht doch nichts über den Dead Man ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Svaniwrote on 24.06.2007:[10.0] "Ein Talent mit einer unglaublichen Entwicklung, der Mann wird halt nicht umsonst Phänomen genannt! Wenn er nicht mehr im Ring fehlt, ist Wrestling nicht mehr das selbe!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Amurebkuwrote on 24.06.2007:[10.0] "Der Undertaker ist einfach eine absolute Klasse für sich!!! Endlich ist der Deadman wieder Champion!!!! Das hat er sich mehr als verdient! Für mich der bisher beeindruckendste Wrestler der Geschichte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Angus666wrote on 24.06.2007:[10.0] "Was soll man nur zum Taker sagen? Absolute Legende und wenn er einmal nicht mehr Aktiv ist verliert das Wrestling wohl einer ihrer letzten Legenden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Masterpiecewrote on 24.06.2007:[6.0] "Eine Legende ... aber Technisch gesehen nicht so das gelbe vom Ei, mal abgesehen vom Tombstone Piledriver! ... die Siegesserie bei den WrestleMania's sind doch irgendwie langweilig ... deshalb gibts nur die 3!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker13wrote on 24.06.2007:[10.0] "Ihn kann man nur mit 10 bewerten. Er ist eine Legende die es immer noch im Ring drauf hat. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Yetiwrote on 24.06.2007:[10.0] "Please, do not Rest in Peace!!!!!!!!!!!!!!!!! In so einem Alter noch ohne Probleme übers dritte Seil springen zu können, das macht einen Topsportler aus. Respect!!!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Crusherwrote on 24.06.2007:[10.0] "Dieser Mann ist eine Legende und darum verdient er es auch an erster Stelle zu stehn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Chris Cagewrote on 24.06.2007:[6.0] "Ich weiß die Leistungen des Undertakers sehr zu schätzen, doch meiner Meinung nach ist seine Zeit auch langsam abgelaufen. Er lebt nur noch von seinem Gimmick, einen letzten Titelrun bei WM vorm Karriereende hat er sich aber auf jeden Fall noch verdient. "
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WCWlerwrote on 24.06.2007:[10.0] "Der Undertaker ist einfach eine Legende. So lange wie er dabei ist und immer wieder Top-Fehden hat verdient er die Höchstpunktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Deadman81wrote on 24.06.2007:[10.0] "Sensationell!! Wenn er kein zukünftiger Hall of Famer ist, wer dann??"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Leonardywrote on 24.06.2007:[10.0] "Der  beste Wrestler aller Zeiten,bei WM23 wird er neuer WHC^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mr Wrestlemaniawrote on 24.06.2007:[10.0] "MR. WRESTLEMANIA"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: renol2007wrote on 24.06.2007:[10.0] "Er ist ein sehr guter Wrestler (keine Frage!), aber die jeder hat Angst vor ihm Gimmick find ich langweilig"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hit Manwrote on 24.06.2007:[10.0] "Das beste Gimmick aller Zeiten.Trotz seiner Größe ziemlich beweglich.Bald Hall of Famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jupp365wrote on 24.06.2007:[10.0] "Er ist der jenige, der mich immer fasziniert hat (das Biker-Gimmik wollen wir an dieser Stelle mal totschweigen). Wirklich ein grandioser Performer, der trotz seiner Größe tolle Matches zeigen kann, auch noch in diesem Alter!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: timbo7111wrote on 24.06.2007:[10.0] "WWE/WWF Legende.Grandioses Gimmick, das er so überzeugend wie kein Zweiter darstellt.Im Ring für seine Größe sehr gut!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rashomonwrote on 24.06.2007:[10.0] "Einfach der beste "Big Man" ever..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BMwrote on 24.06.2007:[10.0] "Was soll man zum Deadman noch sagen? Volle 10 Punkte. Auch wenn er langsam doch augenscheinlich älter wird. Schade das er sich nach seinem Titelgewinn jetzt auch noch verletzt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JOHN CENAwrote on 24.06.2007:[10.0] "15:0 at wrestlemania und neuer world hheavyweight champion"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Unglaublich, was dieser Mann alles fürs Wrestling geleistet hat. Die Legende schlecht hin. Er ist sogar meinem Vater ein Begriff und das will was heissen..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nachtfalterwrote on 24.06.2007:[10.0] "Was mich am Taker wohl mit am meisten fasziniert ist seine einfach absolut unglaubliche wrestlerische Entwicklung. Als er 1990 in der WWF anfing konnte er im Ring kaum geradeaus laufen und lebte einzig und allein vom Gimmick, heute ist er tatsächlich einer der Besten überhaupt. Absolute WWF/E-Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Batti-starwrote on 24.06.2007:[10.0] "Wenn die Lichter ausgehen und der Gong ertönt, bekommt man Gänsehaut und man weiß: Der Taker ist Wrestling in seiner genialsten Form!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Basti1989wrote on 24.06.2007:[10.0] "Neben Hogan und Flair der beste Wrestler aller Zeiten. Er wird hoffentlich noch viele Wrestler "beerdigen"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sharkwrote on 24.06.2007:[6.0] "Kein guter im Ring und in letzter Zeit zusehr gepusht... gefällt mir nicht so aber sein derzeitiges Gimmick ist besser als das Biker Gimmick... "
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Groissy12344wrote on 24.06.2007:[8.0] "Das Charisma, dass der Taker im Ring ausstrahlt ist genial. Seine Matches sind guter durchschnitt, die entrance ist klar zu lange und abgekaut, die Finishs immer gleich daher ein glattes GUT"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: belroiwrote on 24.06.2007:[8.0] "Das beste Gimmick ever. Aber wegen seiner Rockerzeit und der jetzigen "Lightversion" des Sensenmannes nicht ganz die Topnote."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mediwrote on 24.06.2007:[10.0] "Der deadman begeister mich seit er angefangen hat. Die allerbesten Techniken mag er nicht "draufhaben", doch er weiß die Fans zu begeistern und schöne Matches abzuliefern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Carsteinwrote on 24.06.2007:[10.0] "Für nen Big Man hat er einige echt unglaubliche Highflying Moves drauf, dazu noch ganz akzeotabler Brawler mit starker Ringpsychologie und dem wohl besten Wrestling-Gimmick ever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hypocrisywrote on 24.06.2007:[10.0] "Natürlich hat der Wrestler Mark Callaway auch von seinem Gimmick "The Undertaker" profitiert. Trotzdem verdient sich The Undertaker die glatte 1 aufgrund seiner langen Zugehörigkeit zur WWF/WWE und den vielen überragenden Kämpfen über mittlerweile 15 Jahre. Und natürlich hat der Taker sie alle kommen und gehen sehen: Wer spricht heute noch von Jimmy Snuka, Jake Roberts, King Kong Bundy etc... Und so wird es auch in einigen Jahren sein! Wer wird in ein paar Jahren noch über Batze oder Randy Orton"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Alex Shelleywrote on 24.06.2007:[10.0] "Rein Wrestlerisch würde ich zwar nur zur 2 tendieren, aber der Undertaker ist einfach wortwörtlich DAS PHÄNOMEN im Wrestling. Eine Austrahlung, die die Notenskala sprengt und ein enorm wichtiger Teil der Wrestlinggeschichte. Klar, das Gimmik war natürlich das beste was ihm passieren konnte. Man muss es aber auch erstmal so gut umsetzen, daß man zum Kult wird und das hat der Taker geschafft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: winie puuhwrote on 24.06.2007:[10.0] "lebende(oder Tote?)Legende"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mdbnasewrote on 24.06.2007:[10.0] "Anfänglich recht schwache Wrestlingfahigkeiten. Aber ein geniales Gimmick und eine einfach unheimliche, respekteinflössende Ausstrahlung. Harter, ehrlicher Worker, der mittlerweile auch seine Skills deutlich verbessern konnt. Protagonist vieler neuer, spektakulärer Matcharten und insgesamt gesehen fast unersetzbar!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Steven McWheelerwrote on 24.06.2007:[10.0] "Kein Mann hat das Wrestling geprägt wie er!Ich bin der Meinung der Taker hat mehr fürs Wrestling getan als Hulk Hogan!DEADMAN WALKING"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sandman16wrote on 24.06.2007:[10.0] "Mit diesem Gimmick ist er ein ganz Großer geworden. Sehr genialer Einfall von ihm. Auch mit der Größe bringt er gute Matsches zu stande. Einer der besten aller Zeiten für das was er geleistet hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JBL-just a big Legendwrote on 24.06.2007:[10.0] "Was ich bei HBK hingeschrieben habe gilt jetzt auch für den Undertaker,auch er erlebt zur Zeit einen dritten oder vierten Frühling.Als er bei WrestleMania 20 als Deadman zurückkehrte wurde er auch von mir als Deadman Texas Ranger verspottet,doch mittlerweile erinnert er mich schon stark an das alte Totengräber Gimmik,zwar wurde es modifiziert,doch gerade das tut ihm auch gut.Im Moment ist er  (Stand Januear/Februar 2007) so präsent wie lange nicht mehr,er tritt bei SD! und bei Raw auf,durfte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Invader Zimwrote on 24.06.2007:[10.0] "Einfach nur eine Legende, ob im Ring oder mit seinen Auftritten, für mich DER bester Wrestler aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blue Meaniewrote on 24.06.2007:[10.0] "Der legendärste Wrestler aller Zeiten! Seine In-Ring Skills sind zwar nicht grade die Besten, aber auch OK. Dafür ist er am Mic genial (siehe Badass Zeiten), er hat eine hammerharte Ausstrahlung und er ist ein genialer Schauspieler, denn wie er das "Rest in Peace" immer rüberbringt und wie er zum Ring kommt, er macht alles perfekt! Zwar ist er wie bereits erwähnt sicher kein Gott in Sachen In-Ring Skills, aber dennoch reißt er mich in seinen Matches immer wieder in den Bann und deshalb ist er"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: shannonmoorewrote on 24.06.2007:[10.0] "Die Legende,keiner hat so viele schlechte Storys überstanden wie der Undertaker.             Booyaka619Mysterio meint (4.0): - "Ich find der sollte in ruhestand gehen. Seine matches sind gar net SO gut. Wenn er mehr Hardcore, TLC usw. Matches machen würde, würde ich ihn auch mögen."             Die ganze Cagematch User haben jetzt verstanden dass du NUR solche Matches gerne siehst aber es gibt wirklich noch andere arten von Kämpfen :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Giant2wrote on 24.06.2007:[10.0] "Er bekam ein gewagtes Gimmick verpasst und schlug damit ein wie eine Bombe. Die allerwenigsten Wrestler blieben bei einer Weiterentwicklung ihrer Ringperson so erfolgreich wie er. Der wohl nach Hulk Hogan bekannteste Wrestler der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Thomas Carlsonwrote on 24.06.2007:[10.0] "Mean Mark Callous und der Punisher. Man waren das Pfeifengimmicks. damit konnte er auch nie was werden. Mit dem Undertaker ging es dann aber an die Spitze und die ließ er auch nie wieder los. Gut die Ministry Sache war nichts aber jeder macht mal Fehler. Als Bad Ass war er gewöhnungsbedürftig aber auch klasse. Ganz klar eine 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: metaltyrantwrote on 24.06.2007:[10.0] "Bestes Gimmick aller Zeiten, dass auch nach 15 Jahren immer noch interessant ist. War als Heel zu Ministry Zeiten ein Klasse für sich. Wrestlerisch gesehen gibt es bessere, aber seine Leistungen im Kombination mit dem Gimmick ergeben immer noch die Note 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hennewrote on 24.06.2007:[10.0] "Der Undertaker, der Undertaker. Ohne das Gimmick wäre er farblos wie sonstwas und hätte sich auch sicherlich nicht so gut entwickelt. Einer der besten aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: gilmoregirlswrote on 28.01.2025:[6.0] "This guy's matches are channel changers for me inside U.S. promotions. His persona/moveset DO NOT WORK on American TV. The headbutts and rapid short chest chops are corny and do not look convincing or even painful at all. The "Hulking Up"/brickwall thing he does doesn't work because he doesn't look convincingly tough to me in his matches at all. I don't get this guy at all. The crowd doesn't get behind anything he does because it looks lame, and when there's no crowd reacting to him, it makes him look even worse. This guy no-selling Jericho's offense with ZERO CROWD REACTION makes guys like Jericho look bad. Please stop booking this guy!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: goldendolphenwrote on 08.01.2025:[9.0] "the most consistent, the most put together, the most reliable man of new japan. he goes out there and at worst will give you a good match, at best give a great sensational professional wrestling match. it's so crazy he's never been world heavyweight champion. he has to be world heavyweight champion before he hangs it up."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: V0icesAreLouderwrote on 22.11.2024:[10.0] "Tomohiro Ishii could've been word champion in almost any company he stepped foot into. He has the charisma, the energy, the look, the moveset etc. If there something you want from him, he will deliver. He still puts on entertaining matches at the age of 48. Any time he stepped foot into the ring with a major player, he either matched them or over beat them when it came to enjoyment. Truly a one of a kind wrestler we will never see replicated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Kai Kantewrote on 10.11.2024:[6.0] "Ein recht unterhaltsames, japanisches Powerhouse. Durch den gedrungenen Körper oftmals etwas steif wirkend und wenig charismatisch. Dennoch kann man sich seine Matches durchaus anschauen, wenngleich er wie viele Japaner den Ruhestand nicht möchte und daher seine Legacy mit Ringrost "veredelt". Die Gesamtwertung, wie bei den meisten Japanern, völlig daneben."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: AriJarrettwrote on 03.11.2024:[9.0] "Damn, I really miss peak Tomohiro Ishii, as on his day, this guy could've been a serious contender for best wrestler in the world. Tomohiro Ishii is probably the best example of a guy who could've worked well with pretty much anyone, given hoe even a lot of NJPW's worst wrestlers looked at least credible when they were working with him. It is sad to think that his best days are behind him and that he's more of a AEW wrestler now, as I simply don't like how Tony Khan has booked him as a cheap prop to show hardcore fans that he knows what they want, and I also don't like how the guy almost constantly loses. Nonetheless, it still amazes me how this guy still can give us amazing matches coming up to 50, and his legendary matches against the likes of Masato Tanaka, Katsuyori Shibata, Hiroshi Tanahashi and Kota Ibushi will never be forgotten. I could deadass use the whole of cage matches 6, 000 character limit listing everyone he's had a banger with, seriously."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: aStrangeWorlwrote on 09.10.2024:[10.0] "Tomohiro is one of the most subtly entertaining talents in the world. Every single movement, every expression, every attack is executed with precision and commands the exact emotion from the crowd he intends. He is a master of long term storytelling and the perfect example of how to stay relevant and captivating with nearly no changes to his character, values, and demeanor of his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: GalaxyDustwrote on 09.10.2024:"Absolutely love this guy, one of the most underrated wrestlers in general, hope he can keep wrestling for as long as he can with his age."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Dweeeabwrote on 30.09.2024:[10.0] "Absolutely insane to me that Ishii never won the iwgp world heavyweight champion ship. An amazing worker who put on so many spectacular matches. Never suffered from being in the midcard for his career either hes been amazing the whole time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: jsbortswrote on 08.09.2024:[8.0] "Ishii is a really good hand to play in the midcard, not believable ever as a top level talent that could carry a promotion as its top guy; however, you need guys like Ishii to fill out a card. he's a really good brawler despite his size, and is one of those guys who is much better in a live audience than he is on TV. He's a real spectacle to watch because of his body type and his ability to absorb genuine impact with apparent ease. Rarely, if ever, does he put out a stinker of a match or have zero chemistry with someone, and has a really good ability to read a live crowd and adjust as necessary."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Philson Willipswrote on 06.09.2024:[10.0] "For the guy below my rating that gave him a 4/10. Watch his match against Katsuyori Shibata from the NJPW G1 Climax 23 tournament (2013). If you dont like or appreciate that for everything that it is, you are likely never going to be a fan. And in that case, may God have mercy on you."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Trombek Kushinikawrote on 29.08.2024:[4.0] "Seriously, what is people's fascination with this guy. His move set is basically limited to chops and headbutts. He looks like he works unsafe. He no sells everything and has no decreeable character other than being a stoney faced biggish guy. There are no nuances to his gimmick and moreover it has been basically the same act that he has been doing his whole in-ring career. Ive never seen a match of his that was not lacking in something and Ive never seen an opponent of his that has come off significantly better for being in the ring with him."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: GulakBusickwrote on 25.08.2024:[10.0] "One of the best to ever do it. Certainly amongst the most consistent wrestlers in recent history. His hit rate is incredible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: cal9099wrote on 15.08.2024:[9.0] "An absolute delight to watch and perhaps the most consistently good performer in all of wrestling. It's such a shame he's never been and probably now never will reach the pinnacle of NJPW but he fills his role perfectly and is a pleasure to watch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Willie 19200wrote on 25.07.2024:[9.0] "Tomohiro Ishii is an amazing pro wrestler who even with his age, can still keep up and even out wrestle the younger competitors. I'm a big fan of his work and I wish that NJPW put the IWGP World Championship on him, however that never happened. Still he's an overall great wrestler that I really enjoy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Marlowe476wrote on 23.07.2024:"Just the best to ever do it. He looks like a statue who Is wrestling but is always endlessly entertaining. I am sad we dont have him in G1 34 but getting him for a Summer in AEW is a great consolation."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Aspionwrote on 23.07.2024:[8.0] "(Sorry english is not my firtst language) This is one of the wrestlers who is more traditional but he still catch up with the modern wrestlers"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: coppercowrieswrote on 23.07.2024:[7.0] "An absolute intimidating force in the ring. I wouldn't normally find his no-selling style exciting, but there's something just brutal and intense, and yet sympathetic about him I find engaging. A brawler that often feels like the underdog when paired with higher profile foes, and you want him to win. Edit 2024: the lack of creativity in the last two years has vastly decreased my enjoyment of an Ishii match. Feels like the same chop spamming no selling copy paste over and over."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: RecklessOnewrote on 05.07.2024:[10.0] "He is just one of the best wrestlers in roster right now. And it's a shame that Tomohiro - san is not getting IWGP World Heavyweight Championship. He can do amazing matches with literally anyone (except Evil and HoT)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: crs285wrote on 04.07.2024:[9.0] "The Stone Pitbull is one of the greatest brawler in modern wrestling. He has so many ways to get to what he does well that it makes it more believable to me. He has an aura around him and even now as he nears 50 he is still putting on great matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: IoIyowrote on 23.06.2024:[10.0] "Somehow my favourite men's performer at the moment. Just a tremendously fun talent in every possible way."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: danzitorockwrote on 20.06.2024:[9.0] "Tomohiro Ishii is probably the best mid-carder of all time, this man almost wasn't treated like a main eventer in his entire career, but still managed to achieve greatness and gain the recognition and respect of everybody. If you need a guy to work a great match and make a crowd cheer in the middle of an event, call Ishii, because he's the man for the job. He's the definition of underrated, always was, and still is a lot of times, it took a long time for NJPW to realize what they had in Ishii, they were very resistant but after a huge public acclaim, the Stone Pitbull received more opportunities, even with an advanced age, it look a long time to Ishii start receiving some respect, he's a late bloomer. The structure of his matches are repetitive but work pretty well, when worked right, it's one of the most enjoyable formats there is, even if sometimes some of his stuff bothers me a little, there are things that I personally don't like, but he's a talented hard-hitter and a puroresu legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ChocoboSagewrote on 03.06.2024:[10.0] "My favourite wrestler, ever since I first saw him I was blown away by his speed and toughness. He just doesn't give up, quick on his feet and hits like a train. He sells like no one else, makes his opponent look fantastic. Makes you believe he can win every fight and you'll cheer him on every time. For a man as stoic as the stone pitbull, he has a lot of charisma. Honestly, should've been Intercontinental champion before they merged the IWGP titles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: travisalekzwrote on 26.05.2024:"One of my favorite wrestlers. Such an overachiever. We're probably past the point now that there'd be any hope of him getting an IWGP World championship win, but it'd make me so happy if he did."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: mr-peanut-butterwrote on 01.05.2024:"I can't believe he's 48 and can still wrestle to that standard and take (and dish out) that amount of punishment. Looks like a legit hard man and despite his odd body shape he's pretty agile. I have not seen any of his matches from his younger days but really like those I've seen over the last few years. Top stuff."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Old sportswrote on 13.04.2024:"Best moves seller , 10 charisma , 8 brawling , 9 in ring psychology , 8 power , 10 stamina, toughness and fighting spirit, 8 speed and agility. Cool nickname"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: JediSaiyanMaster1203wrote on 28.02.2024:[10.0] ""The Stone Pitbull" is easily among the best brawlers in professional wrestling history, up there with the likes of Steve Austin, Terry Funk, Mick Foley, etc. a man who is an outstanding performer in the ring and has had tons of amazing matches with the best that New Japan has to offer, an incredible storyteller who can convey so many emotions, the definition of a workhorse, has one of the best brainbusters ever, still competing to this day and not showing signs of slowing down, looks big for a guy who's 5'7" and can look believable as a threat to anyone, I could go on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: RusherBryan29wrote on 11.02.2024:[10.0] "The Stone Pitbull. Amazing wrestler, great brawler, fantastic in ring work. His brainbuster is one of the best in this business. The master of round robin tournament, best workhorse in njpw history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: bigotownsendwrote on 10.02.2024:[10.0] "At 48 years of age, Tomohiro Ishii is STILL wrestling at an elite level and putting on excellent matches. He is on my Mount Rushmore of Japanese wrestlers without question, a true workhorse in every sense of the word and never afraid to put younger talent over. Even his presentation is so simplistic yet fantastic, the way he struts out to the ring looking like an indestructible brick wall gets me hyped for every single one of his matches. I cant sing his praises enough. Despite his age, its still not too late to give him the IWGP World title run hes always deserved because hes still *THAT* good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: skillgullwrote on 16.01.2024:[10.0] "I'm still suprised Ishii is still so good at the ripe old age of 45. His style is formulaic, however it's a formula that fuckin works. He's cool, he's stoic, he's fun to watch, He is Ishii. one of my favourites."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: somerandommarkwrote on 13.01.2024:[10.0] "the GOAT. Every match of his is must-see TV. I've never seen someone take such a simple formula and make it so captivating time after time. He wrestles with an intensity most can't even dream of replicating. Fucking awesome"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ZooWeewrote on 21.12.2023:[10.0] "One of my favourite wrestlers ever. I mean I genuinely can't say enough good things about Ishii, he's just so great and his matches are so fucking fun to watch, even if they do get a bit brutal at times. All of his matches are structured in pretty much the same way, but every single time they fucking bang insanely hard because they are filled with some of the most wild wrestling you will ever see. He doesn't win often, but he always stands out in every match he's in. He's an unbelievably good wrestler, and it is a crime that he hasn't won a world title or a G1 while in New Japan. Still a GOAT though."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Wrestling Foreverwrote on 17.12.2023:[10.0] "Entweder hier ist der alte Kommentar wieder weg oder ich habe den Stone Pitbull noch nicht bewertet. Da braucht man auch nix großes erwähnen. Er ist nicht nur stark er ist auch brandgefährlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Okaro143wrote on 12.10.2023:[10.0] "One of The best brawler in professional wrestling history. Just like Takagi, he is an outstanding performer capable of having a great match with anybody. Although he has never won the G1, he has been one of the most outstanding performers in the G1's history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Lord AdGnalDivwrote on 12.09.2023:[10.0] "It seems that the Stone Pitbull's best days may finally lie behind him now, but what days those have been! Tomohiro Ishii will go down as one of the best wrestlers of New Japan's best era, delivering banger match after banger match. One underrated aspect of Ishii's in-ring work is his selling. He will no-sell a move to his opponent's face and then sell to the crowd and/or the camera once his opponent isn't looking. Genius bit of character work, but only one small aspect of his captivating persona. If you haven't already, check out his matchguide and watch some of his top matches, you will not be disappointed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: arrancarwrote on 10.09.2023:[8.0] "Ishii has had a magnificent fall from grace over the last few years. For quite while, from at least 2012 to say 2018/19, he was the loveable and endearing 'forever underdog' mid-carder who always had fantastic matches and occasionally got big upsets to maintain strong fan support without ever feeling like a "loser" who was never worth cheering. His match style was basic: just lots of strikes and power moves, but he'd show so much genuine passion in his displays of fighting spirit that he made every movement larger than life, and his real-time selling was (and probably still is) some of the best I've ever seen. He genuinely felt like one of the best in the world AND of all time. The issue that holds Ishii back now -- and which is why I can no longer consider him the 10/10 I rated him back in 2017 -- is because he's simply far too obsessed with copy-and-pasting literally the exact same performances week after week, year after year, to the point that he's now genuinely one of the most uncreative wrestlers in all of Japan. I first noticed this back in 2018, when people were giving him rave reviews for having basically the exact same matches he'd already been having for years, just with very slight variations to account for some fresher opponents. I still thought his performances around that time were great, but the lack of that 'unique' feeling meant that I couldn't consider those matches as truly special as some of his best. And now, in 2023, the guy is just a robot that wrestles the exact same matches and gives the exact same performances no matter where in the world he goes or who he faces. Even in his prime years, his match style and character were always both quite basic, never exactly reflecting the depth of emotions that true all-timers would show, so that's become even more of a negative with him these days, since that provides even *less* opportunities for his current performances/matches to stand out and feel worthwhile. Does he really show any different approach or attitude towards, say, a NJPW main-eventer compared to an AEW mid-carder? No, not at all. And that's what has made all his 'big' matches of the last few years progressively more and more boring. I'm now no longer remotely excited to see an Ishii match, since I know exactly what I'm getting minute by minute, and I know he's never going to try do anything outside his usual, completely done-to-death "fighting spirit" and "strong-style" spots and sequences. He even makes whatever wrestler he's facing work done to his level, which likewise makes his opponents far less interesting because they're only allowed to work the same way as every other Ishii-opponent, regardless of whether that fits them or not. As negative as I've been, I still can't consider Ishii any less than "great" because, in his prime, he really *was* incredible, producing heaps of great, amazing, and even all-timer matches against a variety of opponents. Overexposure/popularity really was the worts thing to happen to Ishii, since he became far too complacent after he smartly realised he could just coast by on the exact same matches each time with 0 creativity or uniqueness. Maybe a re-watch of his matches in a few years will lead me to re-evaluate Ishii as more deserving of a 9 or even back to a 10, because he really did feel like an all-timer for a few years, but the last few years have pretty strongly soured me on him, so I'm not too sure of that."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: znezaaljwrote on 27.06.2023:[10.0] "I do not think that we have seen a wrestler as consistent as Ishii is. He has had MOTYC every year for seven years now, I think that he may be the best wrestler in the world even at 44. He is super charismatic. A fan favourite for hardcore and casual NJPW fans and, when G1 Climax is around, get ready to see the best version of the Stone Pitbull. Basically, an unbelievable wrestler that will stun you day in and day out with incredible matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Wrest lingaddictionwrote on 18.05.2023:[9.0] "Best powerhouse wrestler in Japan right now. The only ting missing from this man's mantle is the world title!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: LMZ2020wrote on 22.04.2023:[10.0] "This rating is for how I perceive him as far has career in its entirety goes (or at least since the 2010s decade). He's legit one of the greatest underdog wrestlers of all time, (like its completely believable for him to beat the odds and defeat an unstoppable champion...and its just as believable for him to lose to an undercarder- I mean how rare is that? ! ? ), one of the greatest brawlers of all time (his matches are generally peak-BIGMEATYMENSLAPPINGMEAT material), and hes been part of some of my absolute favorite matches ever. For that, he will always be a high 9 to a 10 for me. Nowadays tho, its seems like his age has caught up to him :("
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Minorsmile09wrote on 12.04.2023:[7.0] "Ishii is a bit of a mixed bag for me in that he can either have one of the best matches of all time, or one I think is insanely boring. He definitely has more good matches than bad, that being said they get formulaic. He's put on some of my favorite matches period so it's hard for me to to rate him, but I think he at the very least has a lot of psychology with most of his opponents."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ProWrestlingGuy316wrote on 15.02.2023:[7.0] "Extrem guter Wrestler, der allerdings nur wenig Charisma hat. Aus diesem Grund ist er bei NJ niemals Heavyweight Champion oder Main Eventer im Tokyo Dome geworden, geschweige denn auch nur ernsthaft in die Nähe gekommen. Und damit sollte man sich auch mittlerweile arrangiert haben. Ja, er ist über Jahre einer der besten Wrestler bei NJ, das reicht aber nicht, um ein Main Eventer oder Topstar zu sein. Das war schon immer so und wird auch immer so bleiben."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ajsmileswrote on 02.02.2023:[9.0] "It's a shame New Japan has never and will never see this guy as a main eventer but Ishii is hands down one of the best ever. He can pull out a 5-star match with a broomstick. He doesn't need flips or fancy moves either, he can get you involved in the match with just forearms and chops. He is that good."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: benh2wrote on 20.01.2023:[8.0] "A great worker for a very long time now. Lacks height and charisma that would have elevated him to the top of the card but has fantastic brawling skills and has put on many great matches over the years with a variety of opponents. Incredibly consistent and an underrated seller."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Daigotsuwrote on 16.01.2023:[9.0] "The dude really does look like a Stone Pitbull. He looks like he eats punches for lunch. A true badass style of wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Damianwrote on 09.01.2023:[5.0] "Nothing has changed about him since the first time I laid my eyes upon him about ten years ago. He is just a charisma-less short dude with no arm definition that stiffs people and has the same serviceable match every single time he steps into the ring. I liked him enough in the past but he is probably the stalest dude in wrestling right now."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Enriquepollazzowrote on 27.11.2022:[10.0] "I wish I knew more about his promos and character work, but for sheer consistency in matches and high caliber matches and working non stop for years I think he has to get a 10 because I cant give him a 9.5."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ABQMIKEwrote on 25.11.2022:[10.0] "Ishii is in the realm of legends & mythical wrestlers now. He can still go. You get your money's worth when the spotlight is on. Coming off a great TV tournament match with Ren Narita. Ishii comes in and puts in a dime on TV with Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: MainEventMasterwrote on 10.11.2022:[10.0] "Possibly the most underrated wrestler ever, he has performed so well for so long and it was sad seeing that this year was possibly his last G1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Gerardwrote on 21.09.2022:[10.0] "One of the greatest workers ever. Don't listen to those who think he's too formulaic. He has had incredible matches against a wide variety of opponents. And if you go back in time and watch his work in WAR and Michinoki Pro, he was always a great wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: texasyoshwrote on 16.09.2022:[8.0] "Ishii is very talented at what he does, but in recent years, his wrestling style has become much more formulaic. Maybe that's come with age, but I don't think Ishii is one of the best in the world. He might be a touch overrated but he is a good wrestler with an excellent catalog of matches. Ishii has been a wrestler for a LONG long time before settling in NJPW in the mid-2000s. Perhaps in modern NJPW, nobody encapsulates fighting spirit more than Ishii. 141"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: jboyaquarwrote on 28.08.2022:[10.0] "The Anyman and Everyman of Puroresu. Noone looks more ordinary & is yet more extraordinary. An exceptional brawler whose reliability, dedication to craft, array of exceptional contests and ability to get his opponent over is unrivaled. Any claims that NJPW is a pro-wrestling organization that fairly honors excellence is seriously questioned when this all-time great has never won the IWGP or IC singles belts, has never won or been a finalist at G1 or the NJPW Cup, and yet has had a great match with anyone the NJPW office puts in-front-of-him. The notion that he's one-dimensional should be tossed-aside as, notwithstanding the consistent excellence of his performances, NJPW did not alter his character to reconcile with the substantial number of crucial momentum-killing defeats (ie Makabe in '15) he has suffered t/out the years. The criticism that Ishii too-relies on a singular formula holds little weight as his matches against people like Shibata/Goto are very different than his work with Naito, Tanahashi, Taichi, ZSJ, big-men like Fale/Lee, etc. The attack that Ishii is not a draw can be disputed by certain facts, such as, his Main Event with Takagi in Yokohama in '19 drew more people than all previous pro-wrestling events at the Bunka during the '10's, including Okada/Suzuki in '17, etc. To conclude, if Ishii indeed retires without any of the aforementioned championships, etc desserts, this loyal, longstanding NJPW gaikokojin customer-attendee of over 50 NJPW events, will feel a strong sense of injustice."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: PunkPariahwrote on 09.08.2022:[10.0] "Should have been IWGP Champ by now but what are you gonna do. Ishii is THE fucking man when it comes to hard hitting matches. Built like a fridge and with a penchant for murder, Ishii is always a fun guy to watch. He also manages to pull of the no sell style really well. Knowing exactly when to power through, completely ignore, and when to crumble instead."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Tyler72wrote on 22.07.2022:[7.0] "I've seen this guy take some intense blows. I'm also impressed with his move set for how big of a guy he is. Loved his matches in his road shows, and especially the one with Katsuyori Shibata."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: SquilliamFancysonwrote on 12.06.2022:[7.0] "Overrated, but still perfectly enjoyable and acceptable as an upper midcard act. A poor man's Kensuke Sasaki."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: k1ngFreire - k1nghoFFFwrote on 24.05.2022:[10.0] "Que lutador incrível, um wrestler que sempre apresenta lutas extremamente interessantes, super regular em suas performaces, um dos melhores brawlers do mundo com dezenas de clássicos ao longo de sua carreira, conseguindo ser uma estrela sempre que aparece em qualquer empresa, participante de algumas das melhores matches de todos os tempos, diversas 5+ stars matches, um carisma e resiliencia únicos, com certeza uma verdadeira lenda do esporte e que merece um dia ser coroado como campeão mundial na NJPW!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: GreatAether531wrote on 08.04.2022:[9.0] "Ishii is possibly the most consistent wrestler of all time. No one, besides maybe Ric Flair, has a match-quality floor quite as high as Ishii, and so it's no wonder why he's the highlight of every G1. In some ways, the consistency that makes him so special is a detriment. He has a clearly defined style and match structure that can occasionally feel stale, and because he has such a straightforward, stoic character his matches tend not to have the same emotional arc that can raise the ceiling of a match beyond what the in-ring work itself can provide. Despite this, Ishii's intensity, selling, and stiffness allow him to brute-force his way into greatness in almost every singles match he has. Easily in the conversation for the greatest worker of the past decade."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: GriffinXwrote on 18.01.2022:[8.0] "Ishii is the guy that most of the time gives you a very good match. If you loved the old school hard hitting Japanese style than Ishii is the guy for you."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: benny5bellyswrote on 18.01.2022:[9.0] "The absolute don. I don't trust people who don't love the the angry little cherub. Been in some of my all time favourites"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "A beloved veteran who can still go as well as anyone in New Japan, Ishii simply had to find his role this year, and that was mainly in the CHAOS Six-Man Champion team. Still maintained a frighteningly consistent form in singles though, matches vs SANADA (NJ Cup), Jay White (Castle Attack), Shingo and ZSJ (G1). Can comfortably handle whatever role he needs to hold, but hopefully he'll be a functioning NEVER Champion for 2022."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Wright15wrote on 29.12.2021:[10.0] "Tomohiro Ishii is arguably the greatest in-ring worker to ever live. There has probably never been a better brawler, there may have never been a better seller, and there may have only been a few who were better at pacing and timing. The only other wrestlers I can think of who would give everything they had, night in and night out, no matter where on the card they were or how big the audience, are Manami Toyota, Kenta Kobashi, Will Ospreay, and Ric Flair. Ishii is unique in that, unlike those four, he will never be a world champion. But also unlike those four, it doesn't feel like he ever needs to be. Titles and fame are all superfluous to him. He is not a champion, a mainstream star, or an all-time draw: he is Van Gogh, and the mat is his canvas."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Kungwrote on 18.11.2021:[10.0] "Ishii is New Japan's most dependable wrestler. While guys like Okada and Ospreay seem to take the foot off the gas at times during multi-man tags or lesser singles bouts, the same cannot be said about the Stone Pitbull. When I think about the cornerstones of New Japan, Ishii is one of the first guys I think of."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: chopsueywrote on 20.09.2021:[10.0] "It's a travesty this man has not held the world title with how consistent he's been over such a long time. It's not to late either, he's still as great as ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Ameridragonwrote on 05.09.2021:[9.0] "One of the best brawlers of all time, who has used his unusual/not very star-like look to his advantage with his character, the "Stone Pitbull" who never backs down no matter how outmatched he is. Whenever he has a singles match on a card he is always the highlight for me, which is why it is a shame he seems to be getting less and less, but during the G1 he really gets to strut his stuff and show how amazing he is. The only criticisms I have of him are his look (which he mostly rectified by masterfully becoming the Stone Pitbull, but is probably the main reason why he isn't pushed as a Main Eventer) and he does do the chopping back and forth thing in every single match, while it does fit him, it can sometimes be a little eyerolling. Overall he is definitely in my top 5 brawlers of all time, and is a treat to watch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: SmartForceOnewrote on 17.08.2021:[10.0] "One of the best wrestlers to never win a world title. Ishii is one of the backbones of New Japan, putting on great matches year after year. Most wrestlers wish they had just one in-ring year the quality of which Ishii has had every year since 2013."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: FAZEDandCONFUSEDwrote on 11.08.2021:[10.0] "It is a crime that Ishii is not world champion. Despite being around so long and never winning the big one he has not cooled off in terms of audience appreciation or ring quality. I'll always root for him to be champ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: GGS06wrote on 31.07.2021:[9.0] "Ishii is crazy in his matches, for his age in the mid 40s he somehow risks everything to put on a classic. I'd definitely watch all of his best matches since they are COMPLETELY worth it. Ishii will retire not just as a legend but as one of the best to have never won the World Championship."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Lueokawrote on 16.07.2021:[7.0] "Extremely overrated, follows his overdone formula without fail in every match he is in. Once you get done watching all the classics he has, just stop watching his matches as they tend to be lesser than his greatest accomplishments as a wrestler (some wrestlers do it better) who has to meet the flawed quotas that his fans project onto him like an animal in heat that has to be given what it wants. However, I will give him props that he is a solid wrestler but I will not kid myself by bestowing a sacred title such as "Greatest Wrestler of All Time"."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: BrayanLaPrewrote on 06.07.2021:[10.0] "One of the greatest storytellers and brawlers in the history of professional wrestling. Every time I think I'm going to find it redundant, I see the depth of the stories that Tomohiro Ishii is telling. Plus, you can put him in the ring with literally anyone and he can find a way to make them look better than they are. That counts for a lot. More than a handful of my favorite matches ever feature Ishii and he's often the primary reason why. More than anything, no one brings the emotion out of me during a match quite like Ishii. I've literally cried watching his matches and that's the ultimate mark of a great wrestler, IMO."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Lyno123123wrote on 02.06.2021:[10.0] "(15/10) If Cagematch have a "Custom" rating system, This is what i would give ishii. He is the most "Underated" wrestler EVER. There is no wrestler that i have watched that can touch my heart naturally. not Kobashi, not misawa, not Kawada, not Kenny, and not Ibushi or even Tanahashi. 141 is the only person who can never have a bad match even if you book him against an ashtray. there is one thing i love about ishii is that i want him to win against all the booking odds or his opponent odd, or even his own odds. He is probably the ONLY wrestler that i will shed a tear if he ever win a championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: marexcelwrote on 21.03.2021:[10.0] "Sein größtes Problem ist das NJPW-Booking. Ishii bringt so viel mit und verkörpert sein Stone Pitbull-Gimmick wirklich perfekt. In fast jedem G1 der letzten Jahre war er der MVP und die Garantie für gehobene Matchqualität. Gutes Selling, intensive Action und wenn er zum Strike-Austausch im Match einlädt, dann wirkt das real und nicht fake wie bei anderen Wrestler. Sein Charisam ist sicherlich etwas einseitig, sein Look nicht perfekt, seine Mic-Skills kann ich nicht beurteilen, aber wer mich so konstant im Ring unterhält, hat die Höchstnote verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Meaty Boywrote on 12.03.2021:[10.0] "One of the most intense wrestlers on the planet, Tomohiro Ishii can weave a story of perseverance and fighting spirit throughout his matches. Whether he's the underdog or in control, Ishii successfully draws reactions out of even the most jaded of wrestling fans. His selling is on point too, with his masterful use of facial expression and jelly legs Ishii makes you invest into him like no one else. And when he fights back his wide array of strikes will get the crowd roaring his name. Ishii, for my money, is the best Strong Style wrestler in the world today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: KyleEnjoysWrestlingwrote on 11.03.2021:[8.0] "I like Ishii quite a bit, but his super high rating is a bit surprising. He has a good & unique look. He's not afraid to brawl with the best of 'em. At the same time, he's always lacked something to get him to the text level where the likes of Okada, Naito, & Tanahashi are."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TENzuwrote on 22.02.2021:[10.0] "He's always been one of the best wrestlers in the world, maybe even at times THE best, and he does it all without any of the big titles. It's incredible to see how good he is even as he grows older. He could easily be booked to win the world title and it would not be questioned."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Ma Stump Pullerwrote on 29.01.2021:[9.0] "Is getting on in his later years but Ishii is just amazing as the big gatekeeper of NJPW. He's a one track wrestler with a singular way of doing things but the way he can elevate anyone he goes up against with smooth chemistry, as well as that versatility is almost unheard of. He can go in with stiff strikers, high flyers, hardcore brawlers ultimate heels, comedy guys, aces, underrated faces, technical masters, the list just goes on and on. Guy wasn't always perfect but if you study the early WAR days, you can see the pieces come together, even if it took a while. What I also love about Ishii is that he's the ultimate gatekeeper: if you lose to him, it's not a big loss because he's tough as nails and you survived the beating at least. If he loses, then that's a big accomplishment considering he's tough as nails and you managed to get past his onslaught. The concept of "jobbing" doesn't exist for him. Watching his matches has the same aura as watching pre NOAH Kobashi because you legit don't know if he's gonna win or not, because he doesn't have the aura of protection that the main eventers have, there's just unrivalled tension in everything that he does because the result isn't really known. Of course, his zero charisma or mic work will always be a downside (and will probably mean he'll never be a main title holder, as well as his height) but he's a undeniable talent that every company would kill to have because he's a next to perfect workrate guy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: math1823wrote on 15.01.2021:[10.0] "At the moment, I really consider Ishii as the best in-ring performer of the world. He is the best brawler in the world and there's a big gap between him and anyone else, his selling comes from an other world (when he doesn't just get up and scream at his opponent's face), and it has been going for some years now. I know he isn't the most charismatic guy ever, and that he might be suited for midcard, but Gedo please give this man his IWGP heavyweight title reign, or even IC if it still exists, even if it's only for 2 months."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: djv2448wrote on 06.12.2020:[10.0] "move for move, Tomohiro Ishii may be the greatest wrestler in the world today. the things he does are so simplistic, but he can put it together in such a way that every match he has is a highlight. obviously stylistically he isn't gonna be everyones cup of tea, and his brand of charisma may not suck some people in, and for that reason he probably wont ever get the big belt in New Japan. But he has created his own niche as a must watch performer who can appear anywhere on a card. Even in his mid 40s he continues to crank out numerous potential match of the year contenders. The textbook definition of a late bloomer, Ishii is an amazing watch whether he's challenging for the heavyweight belt, or tagging with Yano as the straight man to Yano's comedy nonsense."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: medousewrote on 29.10.2020:[9.0] "Harder than splitting an atom is to find Tomohiro's bad match. His in ring performances are always great. He does well in tag teams but his true talent shows in singles. I think he is the MVP of G1 Climax 2020. There is only one thing bothering me when it comes to giving him rating. I cannot give him 10, because for me he lacks charisma and mic skills. He never talks, wears the same gear, doesn't work with crowd. He gets inside the ring, he does his job better than anyone else and then he leaves. Either way, I'm sure there will never be another guy like Tomohiro. This man is one in a million, or even one in a lifetime..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: RussianZOGwrote on 17.10.2020:[10.0] "The ultimate workhorse of NJPW, the level of Ishii's consistency is mindblowing, he had literally 1 match below 4 stars at g1 30 and that was match against Yujiro, at g1 29 he also had only one match below 4 stars against Yano. And these weren't event bad matches, they were just mediocre. Even more impressive is fact that he's doing it at 44 years old. And it's not just good brawling, Tom is great storyteller as well, his match against White proofs that. The number of his great matches could be exeeded only by number of times I heard "Ishii is so underrated". He suppose to be the most underrated wrestler of this decade. Roses are red, Violets are blue, Ishii should've been IWGP WH champion, And it's true, it's damn true."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TylerWhitewrote on 12.10.2020:[10.0] "Ishii zu bewerten ist gar nicht so einfach. Im Ring ist er einer der besten Wrestler weltweit, und zwar wirklich Top 5 Material. Es ist unglaublich, er kann so gut wie kein schlechtes Match haben. Jedes mal gibt er 100% Prozent und das bei einem so harten Stil, weshalb er besonders bei Turnieren immer unglaublich gute Runs hat. Was das Charisma bzw. den Look angeht, kann man sich streiten. Er hat nicht den großen Superstar Look, was ihn wohl auch immer daran hindern wird den World Title zu gewinnen, aber diesen Look hatte z. B. ein Misawa auch nicht und er hat als Champion super funktioniert. Und bei solch einem unglaublichen In Ring Niveau ist das auch für die Bewertung kaum mehr ausschlaggebend. Seine Karriere ist dennoch spannend, denn Jahrelang war er ziemlich unbedeutend und das auch lange Zeit über als er dann bei NJPW war. Er wurde aber gefühlt mit den Jahren immer besser und erst seit den 2010er Jahren ist er auf diesem absluten Top Nivea angekommen, weil er seitdem aber auch die großen Matches bekommt, in denen er das zeigen kann. Und das zieht er jetzt schon seit fast 10 Jahren durch und es ist kein Ende in Sicht. Fast jeder Wrestler in NJPW hat eines seiner besten Matches mit Ishii, doch leider wird er wohl trotzdem niamals den Titel gewinnen. Aber braucht Ishii diesen überhaupt, wenn trotzdem bessere Matches als der Main Event abliefert?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: martizzletaewrote on 28.09.2020:[10.0] "The man has to win the IWGP Championship in the near future, he's that good. One of my favorites and his explosive styles is always fun, I love his short but physical matches as it never gets too long and the pace is usually fast."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: BlakeFR37wrote on 25.09.2020:[10.0] "The most underrated wrestler in this business. From my pov, he deserves a run as IWGP Heavy Champ. Always MOTY's contender in every year."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: taabr2wrote on 17.09.2020:[9.0] "Tomohiro Ishii was a guy destined to work the whole of his career in the midcard but through hard work and awesome matches gained a following and became a star in his own right. Ishii ealry years was spent working for the WAR promotion with Ishii wrestling for the company right up until it's closure. For the next few years Ishii was a freelancer working for many promotions, the most noticeable thing about this time in his career was a story line where Ishii was chosen as the protege of the legendary Riki Choshu. Ishii joined NJPW during the mid-2000s which was a pretty bad time for the promotion. Even still Ishii spent years in the undercard. In 2013 NJPW started to give Ishii a slight push and Ishii started to gain a following, Ishii that year competed in the G1 Climax tournament where in the second night defeated the Ace of the promotion Hiroshi Tanahashi which solidified Ishii spot on the NJPW roster. Since then Ishii has focused his time on the NEVER Openweight Championship. Ishii holds the record for the belt winning it 5 times."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: hitakiwrote on 09.08.2020:[9.0] "probably the best powerhouse in NJPW with Shingo and Goto, not so much to say about him but whenever it's a tag or single match he always prove to be the toughest guy in the ring"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ElPolloLocowrote on 03.08.2020:[9.0] "Tomohiro Ishii is the very definition of an amazing wrestler who only missed the final 1% to be considered an all time great. These days he's pretty limited due to age and past injuries but his matches until 2016 or so were completely insane. You had this crazy stubby bald man who wrestled matches like he was in the golden age of AJPW and NOAH, especially when pitted against equally crazy people like Tomoaki Honma and Kazuyori Shibata: his insane match quality alone was what ultimately propelled him through the ranks as people started to cheer for him and NJPW was more or less forced to push him. When his body started to finally give way he still managed to wriggle the very most out of his now limited moveset by playing on his "tough and hard" image. I don't think his look was what ultimately held him back but his personality. Outside the ring Ishii is more or less Dr Jekyll to his in-ring Mr Hyde and he's probably the worst promo man this side of Ahmed Johnson: he hasn't got the rockstar image and charisma of Tanahashi nor the star qualities of Okada. But I'll be damned if this chaparro didn't put out some of the craziest matches of the past decade."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Nightmare19wrote on 05.07.2020:[9.0] "very good pro wrestler but some of his matches r a bit too similar imo. i rly enjoy his classic hard htting matches and his G1 matches are always great"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: NastyYaffawrote on 03.06.2020:[8.0] "Ishii on paper is one of the absolute finest wrestlers of the last 10-something years. He's a FANTASTIC seller -- the best in New Japan, and overall he is one helluva badass babyface. What is preventing him from getting a higher rating from me is the fact that he is so formulaic. He has a few matches he does, and that seems to be it. I can't hate on it, because that's what gets him hype & love, but sometimes I do wish he changed it up a bit. Still an absolute stud, the Stone Pitbull is."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: haroldanthony3wrote on 30.04.2020:[9.0] "Ishii is a one-note wrestler. For the longest time I was trying to understand what made Ishii so great. He is the best wrestler of a style that I don't like very much but I can watch his matches all day long. What I realized is he makes the other guys he facing better wrestlers in whole by facing him by molding the toughness part of their characters. Look at what he did for Taichi for example. Also, his style created the identity for the NEVER championship and he has been able to have title success in both England and America. While you don't necessary want him to have your top belt, if he is in your promotion you need him to challenge for the belt as a way to continue to develop your champion during his run."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: VillainClubwrote on 23.12.2019:[10.0] "Mir gefällt Ishii sehr und ich bin auch mit seiner Rolle zufrieden. Zum Heavyweight Champion fehlt im etwas, aber für sehr gut Matches ist er immer zuhaben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: AlexLikesJoshiwrote on 13.10.2019:[4.0] "He's fine but extremely overrated.  He's been having basically the exact same lifeless match for years now and is usually less impressive than his opponent.  When it comes to his supposed forte of "strong style" there are better, stiffer workers in NJPW and if you look to NOAH then he gets completely blown away.  A 4 because he does have some upside but for the short time he was relevant and the repetitive matches he's far from a 9"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TheV2wrote on 06.10.2019:[7.0] "He put on a lot of great matches. Not really surprisingly for a brawler he has a less versatile repertoire with some powerhouse moves in addition to that. But ironically he can be very variable depending on his opponents, because he knows how to get the most out of it. Good wrestler, but yet I didn't see much more in him."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Pm Frankwrote on 23.08.2019:[7.0] "Why people think he is awesome . I watched a lot of his match and he is not good enough to 9. 52  I prefer nearly everyone who is facing currently Tomohiro"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: JOEvsISHIIwrote on 15.08.2019:[10.0] "Ishii is the most consistent wrestler in the world and deserves at least one run with the IWGP Heavyweight or Intercontinental championships. He physically can not have a bad match with anyone and has many wrestlers' best match. He is an amazing brawler and seller and knows when to no sell is opponent's offense."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: samirandres1428wrote on 12.08.2019:[10.0] "The best wrestler of NJPW and one of the best of the world. My god, he can get a 6 stars match from a trash of garbage. Also one of the men that has more figths per year in New Japan. Very underrated in my opinion"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ToruHirosewrote on 11.08.2019:[10.0] "Tomohiro Ishii is a very reliable workhorse, whose simple style belies his versatility. He plays a great underdog against giants and main eventers, but he's also able to work on top against young lions, juniors, scrappy guys like Honma, etc. He's probably the best in the business at no-selling, knowing exactly when and how to do so. Great facial expressions here, whether he's shrugging off minor strikes or hulking up through the pain late in a match. Yet Ishii's actual selling is top notch as well, often looking like he's legitimately injured. He'll do little things like checking his arm after getting spiked on his (nonexistent) neck, making it seem like he has nerve damage. Many wrestlers can learn from studying the Stone Pitbull. Convincingly conveying pain or anger can garner the same crowd reaction as weapons or crazy dives. As an example, look at the rope break spot in his 2017 Long Beach match against Zack Sabre Jr. In terms of moveset, Ishii uses a small array of basic maneuvers. That means when he pulls out a frankensteiner or piledriver, it actually seems like a big deal (this is the opposite of wrestlers with 150 moves who pull insane stunts every bout). Ishii also isn't a massive guy, yet the way he carries himself evokes a strong presence. His charisma is underrated in this regard, mostly because he doesn't say much, but I like that. He's the strong silent type, which contrasts nicely against the other roster members' crazy hair styles, flashy outfits, and catchphrases. A hopeful part of me wishes Ishii can one day win the IWGP title, like Makabe or even Nakanishi once did. Whatever the case, people claim Ishii isn't underrated anymore, but I beg to differ when looking at how he's booked like just another guy. The only knock on Ishii that people can muster is that he has a match formula that he sticks to, but so does Okada and fans call him the best in the world. I'd rather a wrestler do that than have no identity like a typical indy worker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ShibataWreslerwrote on 28.07.2019:[10.0] "Man, Ishii is truly a beast. This guy does not even know how to have a bad match. Even in his 40's he is one of the greatest in world. There hasn't been a more consistent performer in pro wrestling than the stone pitbull himself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: zephyrwrote on 26.07.2019:[10.0] "Singing Ishii's praises has sort of become the smart wrestling fan's favourite pastime but you really cannot overstate how great Ishii is at making any opponent look as great as they can. His run in this year's G1 is honestly making a case for him as the best active wrestler in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: hotdogdiscoursewrote on 17.07.2019:[10.0] "There's nothing quite like watching Ishii come in, do his thing, and leave just as awesome as he came in regardless of how the match goes. Simply amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "Delivers consistently good to great matches. He found his style wich can maybe get repetitive at times but he is just so good at what he does it's hard to not get excited. Great striker with an underrated grappling game. Perfect in his role of underdog who will never hold a major title but can still have some wins over the top stars. He is where he is needed."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TheFrenchDisasterwrote on 03.07.2019:[9.0] "I love Ishii, he comes, he kick ass and he leaves and i like it every time. Whether he lose or he win, he always leaves head up and without losing his charisma. Tomohiro Ishii is one of the best fighters in Pro-Wrestling's history"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: jlazaro94wrote on 30.05.2019:[10.0] "One of the greatest, if not the greatest, underdogs in wrestling nowadays (especially with his real-life story background, being considered too small to enter in the dojo, working through the indies to reach the top and not getting pushed until he was in his mid to late thirties) I find his matches really exciting, especially with his no selling moments which sometimes seem almost unnatural, his ability to carry around a pretty limited but effective moveset and his great psichology in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: My Bloody Doobwrote on 20.05.2019:[9.0] "Ishii wrestles a very simple style. You want to hit him, he'll hit you back even harder. In trying to not sound as pretentious as possible, Ishii's style get's very old. Objectively I would argue Ishii doesn't have bad matches, but at the same time once you've seen one of his matches, you've seen most of them. Maybe some will never get over his style, but as for someone like me who's seen countless matches of different guys doing the same style, it's hard to find Ishii unique anymore unfortunately. Personally I think his best matches are when he's against someone who decides to hit harder or even better, work smarter."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: PuroresuLoverwrote on 12.05.2019:[10.0] "Every time Tomohiro Ishii enters the arena, I go like: "HELL YEAH! CINDER BLOCK TOM IS IN THE HOUSE, FUCKERS! SHOW SOME RESPECT OR YOU'RE ABOUT TO GET 141 BIT! ". He never does a bad singles match, I always root for him, even if is against Okada or Tanahashi, I hope NJPW gives him a "thank you" run with the IWGP Heavyweight Title."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Garrettwrote on 07.05.2019:[9.0] "His matches with Shibata alone are more than enough to justify his ranking. Ishii is a total badass."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Cherry Chasewrote on 03.05.2019:[10.0] "At the age of 43 Ishii has only shown to improve with age insanely enough. The perfect modern example of improving with age. As to this day, if given a singles match you can expect it to be at least the 2nd best match of the night and be right every time. He plays off his gimmick perfectly. The exemplification of strong style, complimented by his stone wall demeanor with a deadly silent mystique around him. Makes for very interesting character banter, especially when paired against arrogant charisma talents like Naito. He's incredbily reliable and a total workhorse, as elevating many of the top talent when they are chasing for the top titles. He excels at nearly every level you'd want from a professional wrestler. Wrestling & character work are top notch with a kick ass theme song and a pure underdog spirit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: JustAWrestlingFanwrote on 25.04.2019:[9.0] "Despite beign 43 Ishii is better than he has ever been. He is an great example of someone who got better with age. Its amazing how an guy this little can feel so big and terrifying. Absolute brutal with his kicks and punches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: LennartTennhartwrote on 23.03.2019:[10.0] "Tomohiro Ishii, der Mann wegen dem ich eigentlich angefangen habe NJPW zu schauen da er mich damals in seinem Match gegen Okada beim G1 so überzeugt hat. Der Mann ist einfach nur Großartig! Für seinen Körperbau sehr agil und eines der besten powerhouses der Welt. Hervorzuheben muss man hier noch sein selling bzw noSelling das teilweise so unerwartet kommt. Bei jedem Move von ihm gibt es Impact und sieht krass aus, Leider ist sein Moveset nicht so vielseitig was aber zu verkraften ist. Ishii ist mein persönlicher Favorite von NJPW und wünsche keinem vom momentanen Roster mehr einen Run als World Champ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Kevin41182wrote on 16.03.2019:[9.0] "Ishii is a pure underdog. He's been an underdog his whole career. A phenomenal in-ring worker with the look of a, as he calls it, "stone pitbull" Ishii may one day have a run with the IWGP Heavyweight Championship."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: KINGwrote on 09.11.2018:[9.0] "So brutal, Ishii looks like he can't feel pain somehow, and yet it always amazes me! His look is also perfect for an underdog, impossible to not love him with his stocky neckless body, he doesn't look intimidating but when he's in the ring he looks like he could legit kill anyone, and NJPW understood that by finally pushing him in 2013, the NEVER belt was all about him and now that he's not involved in it anymore it almost lost its meaning, he really looked credible when he challenged Naito for the IWGP Title."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: RatingsMachinewrote on 15.10.2018:[10.0] "When it comes to having hard hitting, physical matches that are built on brawling or combine brawling with some incredible highspots and drama, Tomohiro Ishii is the best in the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: OrangeAidCrushwrote on 04.08.2018:[9.0] "Ishii is a wrestler people should study. He doesn't have a great look but he has become a legend through hard work and dedication. The way he carries himself in ring and the treamondus heart he shows deeply connects with wrestling fans across the world. He's all heart and toughness but people love heart and toughness so they love Ishii."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: JokeyZockeywrote on 23.06.2018:[10.0] "Egal ob Best Brawler, Most Underrated oder einfach trocken ''Härtester Hund (pun intended) des gesamten Sports'', Fakt ist: Tomohiro Ishii gehört ganz klar zur gegenwärtigen Weltspitze des Wrestlings! Im Ring einfach nur absolut großartig: Unfassbar stiffer Brawl, gepaart mit Technik, dem vielleicht besten (sportlichen) Selling der Welt und einer Härte, die ihresgleichen sucht! Dazu in seiner Rolle als der ''Stone Pitbull'' unglaublich charismatisch und dadurch Charakter-Work vom allerfeinsten! Wenn du die Sirenen hörst, weißt du genau: Jetzt wird hier GEKÄMPFT! Ishii kriegt mit nahezu jedem ein mindestens gutes Match hin und ist für mich sogar DIE Match-Maschine schlechthin im Wrestling aktuell, seine epischen Schlachten gegen Honma, Goto, Omega und natürlich Shibata sprechen Bände! Bitte, gebt diesem Mann endlich (wieder) einen Singles-Titel, er hat es sich einfach so sehr ERARBEITET! 10 Punkten, alles andere wäre Irrsinn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Speeblewrote on 19.02.2018:[10.0] "Possibly my favourite wrestler in the world. Capable of having a great match with virtually anyone. If you can't have a good match with Ishii then maybe wrestling isn't for you. His selling is outstanding, he knows exactly when to sell and when to fire up. I love his recurring gimmick of interrupting his opponent's taunts, the best example being his legendary G1 match with Okada."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TheLoudMouthwrote on 08.01.2018:[10.0] "Einer der besten Brawler heutzutage. Ishii hat eine unglaubliche Entwicklung genommen und jährlich einen großen Sprung nach vorne gemacht. Er ist mittlerweile problemlos dazu in der Lage, im Handumdrehen ein gutes Match auf die Beine zu stellen. Die Höchstwertung ist Pflicht bei diesem qualitativen Aufstieg."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Dragon Fighterwrote on 15.11.2017:[10.0] "At least top 5 wrestlers in the world today. He is simply amazing. He can adapt any styles and has great matches with anyone. His psychology is awesome, so is his selling. Anytime he steps into the ring, you can expect at least a very good match. His character is cool. Stone pitbull, badass motherfucker who doesn't give a fuck. He can both work on top and work as an underdog. One of my joys to watch wrestling nowadays. Well deserved 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Alex Maedawrote on 04.10.2017:[10.0] "Ishii hat sich die Aufwertung mehr als verdient. Er ist mittlerweile in der Lage, mit fast jedem Worker ein gutes bis großartiges Match auf die Beine zu stellen und ist dabei einfach verdammt over."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: xPETERxwrote on 11.08.2017:[9.0] "Though & Hard. Passt wie die Faust auf's Auge. Kein einzig schwaches Match beim G1 2017.   Sellt Superplexe und Suplexe sehr gut, und führt eben jene sehr gut aus. Kann auch gut Matwrestling verkaufen (siehe G1 Match gegen Sabre) oder gegen Powerhouses (siehe gegen Fale). Einfach 'ne Fighting Machine. Wer meint, er könne nur stumpf auf die Fresse - hat einfach keine Ahnung ;)   Soll sich mal Matches gegen Omega, Okada, Naito oder Elgin anschauen, statt Goto oder Shibata. Aber selbst die waren auf ihre Art sehr gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: LosIngobernablesdeUKwrote on 10.08.2017:[10.0] "Ishii is one of the best damn wrestlers on the planet right now & has been for many years. I dont even know how it's possible for him to have a ****+ match every single time, it amazes me, he steals the show every time whether its against guys like Okada or Yujiro. I'm really sad though that he has never been IWGP Heavyweight Champion because he absolutely deserves it, even if its a short one. Also I love how he beat Okada in G1 last year & got rewarded with absolutely nothing, thats a real shame. Anyway when this man retires, it will be a sad day, but he will also go down as one of the best wrestlers to have ever step foot in a ring & is hall of fame worthy for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ParisTheSpiderwrote on 02.08.2017:[10.0] "Bei Tomohiro Ishii muss ich einfach 10 Punkte geben. Seine Matches sind sehr stiff, und meistens auch 5-Sterne Kaliber."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Randomuser12345wrote on 27.07.2017:[9.0] "How can you not love Ishii? He's incredibly unique in that very few people can pull off what he does. Brings unparalleled intensity to his matches, and can work as a tough, never-say-die underdog, or can put a vicious beatdown on a babyface looking for sympathy. The best example of why moves aren't everything in wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Headlockwrote on 08.06.2017:[4.0] "Ishii, kann nur eins, stumpf auf die Fresse, das ist ja alles schön und gut aber nicht jedes verdammte mal, währe mal schön wenn er mir zeigt, dass er mehr kann als nur rumgestiffe! Chaos' knuddel bär würde mir in der Tag Scene mit Goto allerdings sehr gefallen, da er im Team rumstiffen kann und dan abwechslung mit Goto reinbringen kann"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TooSweetPhilwrote on 21.05.2017:[10.0] "Wenn man jemanden mit dem Körperbau von Ishii sieht, denkt man nicht was der wirklich im Ring kann. Aktuell höchstwahrscheinlich der Beste Seller im Ganzen Business. Sehr gut in allen Belangen, tolle Strikes, Headbutts, aber auch Sachen wie Frankensteiner sind für ihn kein Problem. Stellt dazu natürlich auch immer sehr gute Matches auf. Für mich eindeutig 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Blood Pumpwrote on 30.03.2017:[9.0] "One of my all time favorites. Ishii hits hard and fast (Especially during G1). The nickname 'Stone Pitbull' is an apt one given his size and tenacity. The only problem is he might be a little too intense for his own good sometimes, kind of like Chris Benoit. I really do wish the bookers would commit to giving Ishii at least one good run with the IWGP Heavyweight Championship. Its true that he doesn't need it, but it would be a well deserved feather in his cap. That being said the man is in his forty's and if they haven't trusted him with the title by now I have my doubts that they ever will."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: LSEstrelawrote on 01.01.2017:[6.0] "He's definitely talented, but IN MY HUMBLE HOPINION, someone that no-sells basically everything isn't interesting to watch. Sorry, guys..."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: killowenskillwrote on 23.12.2016:[10.0] "Probably the best Japanese wrestler modernity. Ishii has made huge progress, and has become much better than it was before. From just a good and promising fighter up to the level of world wrestling, creating masterpieces almost every time out in the ring. Let him already 41 years, but I believe he will achieve much more, and be sure to go to the big leagues, where he received a coveted main championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: SanthoshVNwrote on 18.12.2016:[9.0] "Simply best in the ring very good performer, athletic and hard hitter. i would like to see him holding the IWGP gold"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Jobbswrote on 07.12.2016:[9.0] "This guy is an absolute beast in the ring. I absolutely love watching him beat the piss out of his opponents and just paces his matches quite well too. I haven't seen one bad match from this guy and has had countless classics over the past few years as well."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: PimpRadiowrote on 03.12.2016:[10.0] "If he were a few inches taller, he'd be IWGP world champion. Unquestionably a top 5-10 wrestler in the world today, in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: JacobsBawkswrote on 14.11.2016:[10.0] "The Stone Pitbull! The Human Refrigerator! The Man With No Neck! Ralph! Throat-Chop Man! Japanese Headbutt Man! Big Sexy! Tomohiro Ishii, FUCK YEAH~!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TheWrestlingFanwrote on 12.11.2016:[9.0] "Ishii is damn good. He may be doesn't physically fit to the mold of a true wrestler, but his in ring style is something that cannot be misjudged. Hard-hitting yet sometimes able to do some unthinkable powerful moves. He proves time and time again that he can hang with anyone with his G1 Climax performances as few examples."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: akm0wrote on 17.10.2016:[9.0] "A true warrior and the best brawler in prowrestling today. What really surprise me, is the consistency of his matches: Okada, Shibata, Honma, Makabe... everyone he faces, he brings the best out of them. His chops, his forearms and his lariats (my god, those lariats) are out of this world and it's incredible how he can impose his will being only 5 ft 7 in / 170 cm. Every match he does is a war and a really captivating one. I really hope he wins a major title in NJPW one day, he deserves it - and the crowd loves him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Luv all wrestlingwrote on 10.10.2016:[10.0] "Tomohiro Ishii is one of the best wrestlers I have ever seen, capable of having 5 five star matches in 5 straight days(he has not done that yet) Ishii is one of the best parts of watching NJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: BrentDelivinewrote on 02.10.2016:[10.0] "It's sad to know this man is 40 years old and is just now becoming a big contender for a spot at the top of the NJPW roster. Ishii, along with Shibata, are heavy contenders for my favourite wrestlers in NJPW, but i feel if any of the two deserved the IWGP championship, it'd be Ishii and if we get to see that, then i will forever be happy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: PistolPeteMattywrote on 13.08.2016:[10.0] "One of the best workers in wrestling today, an incredible brawler and someone who could make any of his matches worth 5 stars."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: MrJamesssswrote on 12.08.2016:[9.0] "Gladly he became a star in NJPW after years of being treated as a jobber. One of the most intense brawlers in wrestling today, and a guy that doesn't need a wide moveset to do great matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: jerseyhoolwrote on 25.07.2016:[8.0] "Würde ich Ishii rein nach persönlichen Vorlieben (dh. stiff & strong Style) bewerten, wäre er eine glatte 10. Nur leider heisst Wrestling auch, dass man nicht ständig wie ein Vorschlaghammer auf den Gegner einprügelt. Technisch durchaus versiert, aber leider zeigt er das zu selten. Aber eine Geschichte im Ring erzählen kann er & dies stellt er immer wieder unter Beweis.... vorausgesetzt, er hat den richtigen Gegner. Einen weiteren Punkt muss ich für seinen Stil abziehen - stellenweise hat man wirklich Angst um die Gesundheit dieses Mannes."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Delirious434wrote on 08.05.2016:[10.0] "MR. MATCH OF THE YEAR! That's what the Stone Pitbull Tomohiro Ishii really is, a Beast which every match he has is a MOTY Contender, the man can take a Beating and GIVE a Beating, STIFF AF (Which is my favourite Wrestling Style)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: avbiswaswrote on 04.05.2016:[10.0] "Watch his matches vs Shibata, Nakamura, Naito, Honma etc. He is perhaps the best brawler/striker in the world right now, alongside Shibata. Very underrated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: RainmakerF7wrote on 03.04.2016:[9.0] "Tomohiro Ishii is one of the best wrestlers in the world right now. This guy is a fucking beast, he can have 15-20 +**** matches every year. He has a great sense of psychology and is always really entertaining in the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Antimasterwrote on 16.02.2016:[9.0] "Einer der härtesten Wrestler überhaupt. Dieser kleine Mann geht wirklich über die Schmerzgrenze hinaus. Ich liebe einfach seine Matches, es braucht nicht immer 30 Flips oder immer neue innovative Wege, den Gegner in irgendwelchen Submissions zu verknoten. Das beweist dieser Mann eindrucksvoll. Ich kenne keinen, der ein Match nur durch großartiges Matchpacing mit gefühlt 4 Moves interessant gestalten kann und dabei nicht nur sich sondern auch seinen Gegner wie den gemeinsten Hund überhaupt darstellen lassen kann. Jedes seiner Matches gleicht einer epischen Schlacht. Durch seine stiffe Gangart ist er glaubwürdig wie kaum ein anderer, und kann durch seine Fähigkeiten auch mit weniger versierten Technikern großartige Matches zeigen, ich glaube fast niemand könnte aus Makabe und Honma die Leistungen rausholen, Wie Ishii das geschafft hat. Man kann ihm ankreiden, dass ihm zwar wirklich die Flexibilität in seiner Matchführung fehlt, die die absoluten Top Stars haben (Was aber noch lange nicht eine miese Wertung wie vom Dragon Gate Fanboy rechtfertigt), aber dieser Mann steht einfach für stiffen Strong Style wie kaum ein anderer, und bekommt deswegen eine ganz starke 9. Ich hoffe einfach, dass er im Herbst seiner Karriere nochmal einen großen Run als IC Champ oder so bekommt, verdient hätte er es allemal!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Kevin434wrote on 02.08.2015:[9.0] "Ist der gut, er ist wirklich ein harter Hund, das verkauft der in seinen Matches sehr gut, ist immer für ein gutes Match zu gebrauchen, respekt für ihn das er trotz Verletzung einfach weitermacht. Ishii ist einer für die Zukunft Japans, vielleicht sogar späteres Heavyweight Material, na gut zumindest IC Title. ^^ abwarten und Ishiis Matches genießen. :D"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Viper99wrote on 30.04.2015:[10.0] "Nakamura mag zwar der KING des Strongstyles sein, aber dieser Mann ist auch ein absoluter vertreter des Strong Styles! Für mich einer der besten bei NJPW und ein Mann der durchaus in der Lage ist grandiose Matches zu zeigen. Man muss bei jedem Match von ihm angst haben das er sich nicht schwer Verletzt oder nicht noch schlimmeres passiert da seine Matches einfach brutal sind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Izinwrote on 17.03.2015:[8.0] "One tough ass mother fucker. What he lacks in height he more than makes up for with strongman physique. Has the look and the moves of a legit beast in the ring."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Jmajor23wrote on 16.03.2015:[9.0] "Powerful move set. Very believable. Works that Classic Japan strong style, but with an attitude fitting of the stone pitbill moniker."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: llboxingwrote on 26.02.2015:[7.0] "Its not the size of the dog, but the size of the dog in the fight. The Stone Pit Bull is the epitome of that quote.  He's only 5-6 but fights like he's 7 feet tall, He looks more like sushi chef (albeit a mean looking one) than a main eventer but the fans love him because of his tough guy attitude, willingness to absorb punishment and sheer courage.  He's got a bunch of great matches under his belt and in the twilight of his prime, has finally been given a singles push over the last year, winning the NEVER championship and being Nakamura's trusted tag partner and a signature member of CHAOS.  His short and blunt promos are well liked as well."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Neil Zestwrote on 15.02.2015:[8.0] "Einer der Wenigen, bei dem ich den typisch-japanischen Strong Style, der auch hier so gefeiert wird, wirklich schätze, weil er in der Lage ist, die Aktionen nicht endlos wie ein Mitsuharu Misawa oder ein Kenta Kobashi zu wiederholen und ein Match so auf unnütze Weise in die Länge zu ziehen. Seine Matches sind schön flüssig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Matzinhowrote on 03.11.2014:[6.0] "Ishii mag ja ein gemeiner Hund sein, sehr glaubwürdig im Ring und einer, der sauber austeilen kann. All das schätze ich an ihm - aber als Gesamtpaket ist er für mich trotzdem nicht mehr als ein solider Midcard-Wrestler. Ishii hatte seine Ausbrüche und er hat bewiesen, dass er selten auch mal einen richtig guten Kampf zustande bringen kann. Dafür braucht er aber den richtigen Gegner, der Ishiis viele Schwächen kaschieren kann und einen Sahnetag."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: 8BitLegendwrote on 26.05.2014:[8.0] "Stiffer, typisch japanischer Wrestler. Steckt gut was weg und teilt glaubwürdig aus. Großartiges Match gegen Kota Ibushi bei Back To Yokohama 2014!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: sevendaughterswrote on 19.03.2014:[10.0] "As far as I'm concerned, Ishii is the total package as far as puro goes. His G1 tournament performances were at WORST watchably decent to, at best, some matches of the highest calibre of the year against the likes of Tanahashi, Makabe and Shibata - with styles as varied as it gets, from NJPW main event to wild brawler to stiff technician. His match at New Beginning Pt 2 saved the night from mediocrity, turning in an absolute stunner against Naito to win his first major singles title. Watch that match from beginning to end. In 23 minutes in doesn't leave the ring, there is no filler brawling, everything is carefully structured to allow Naito to look as good as possible in defence.   His gifts are really simple but priceless. He makes the opponents' offensive moves look good. His timing is rarely ever off. He carries himself incredibly convincingly and has such a great degree of intensity that his matches become elevated by his demeanour when he steps into the ring. He has a small-to-medium sized moveset, though it never seems to limit him in the way it does others. Maybe he doesn't talk much, but by Japanese standards that's not a huge complaint: his bodily charisma is what defines him and makes the crowds in Osaka and the Korakuen take to him so well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Kenshin Uesugiwrote on 18.03.2014:[8.0] "Eine böse Schlägertype, der sowohl der brachiale Heel sein kann oder der verbissene Underdog. Unterstrichen wird das ganz auch noch durch seine Figur und Statur die irgendwo zwischen "Yakauza-Problemlöser" und Sportlehrer liegt, ich meine einerseits gefährlich und auf der anderen Seite "knuffig" im sportlichen Sinne natürlich. Hatte ein verdammt starkes Jahr und hat sich mit jedem großen Namen bei NJPW duelliert, wo er grandios auftrumpft. Dabei kann man sogar vergessen das es fast immer die selbe Formel war in seinen Matches und das der Hype um ihn gerade im Westen bei einigen Fans schon fanatisch Züge angenommen hat. Dafür kann er ja nun nichts und es ist toll wenn Wrestler aus der zweiten oder dritten Reihe auch mal vermehrt Spotlight abbekommen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Leonewrote on 13.03.2014:[9.0] "when PWI gave out the award for most improved wrestler of 2013, it went to Roman Reigns.  But without a doubt, Ishii would have won it otherwise.  Because throughout 2013, this low mid carder and tag team wrestler who held few titles and received little acclaim or reward for over 15 years, had all of a sudden started putting on match of the year candidates with the top stars of New Japan Pro Wrestling.  His G1 Climax Day 4 match against Katsuyori Shibata became 1 of 3 matches that received 5-stars that year (the others from the amazing feud between Tanahashi and Okada), and therefore cementing his place in the history books of quality pro wrestling.  The Shibata match proved that he can tell an excellent story in the ring, with great in-ring psychology and timing.  His move arsenal is classic puroresu, which includes many usual staples such as using the Brainbuster and Lariat as finishers as well as the power bomb, headbutt and enzuigiri.  He then started using a move that hadn't been seen in Japan in years; the Steiner Screwdriver.  Since he was trained by Choshu and Tenryu, it seems only right for him to incorporate their styles into his.  I'm giving him a 9, because even though his improvement in the ring is phenomenal, I would like to see if he can keep it up for another few years and possibly be among the top tier, even if he's in his late 30s now."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: eldenaaaaawrote on 16.02.2014:[10.0] "when the word underrated comes around this man pops me too my mind an amazing wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Fountain of Misinformationwrote on 09.11.2013:[8.0] "Wertung vom Oktober 2010: Guter Mann und in kleinen Dosen durchaus unterhaltsam, im Ring quasi eine Mischung und Tribut an die Herren "Masa Choshu" und "Riki Saito" und stets bemüht, finde ich gut, quasi die heutige Ausgabe eines Hiro Saito. Update: Hat sich die zwei Punkte Aufwertung alleine durch seine Leistungen im aktuellen Jahr 2013 absolut verdient. Everybody's Favorite Underdog!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Asumawrote on 17.10.2013:[10.0] "Ich finde den Vergleich mit Mark Henry auch seltsam passend - derzeit mehr als Überzeugend im Ring und daher hier die Höchstnote."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: deathsitcomwrote on 28.07.2013:[8.0] "Wenn ich mir hier mal einen ganz schrägen Vergleich leisten darf: Ishii ist der Mark Henry New Japan's. Ein Mann, der die harte Powerhouse-Schiene fährt und meistens unauffällig in der midcard rumgurkt, dabei aber grundsolide ist. Bis dann irgendwann sowohl die promotion selbst als auch die smarks merken, wie gut der worker eigentlich ist wenn er die Gelegenheit hat, es zu zeigen. Also hoff ich mal, dass es in Zukunft weiterhin solche Gelegenheiten gibt wie in letzter Zeit öfters und trete dem Ishii-Fanclub bei."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: STRIGGAwrote on 28.06.2013:[8.0] "Langezeit passte meine Wertung "Unauffälliger Arbeiter im Seilgeviert, der aber immer für mehr als solide Leistungen zu haben ist", doch spätestens seit Anfang 2013 ist Tomohiro Ishii aus der Rolle des Midcarders, der in Multi-Man Matches steht und Young Lions misshandelt, ausgebrochen. Seine schon immer vorhandenen Fähigkeiten weiß er immer besser in Szene zu setzen und hat es deshalb auch trotz seiner geringen Größe zu einem respektierten Star innerhalb New Japans geschafft."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ShakDragoonwrote on 05.10.2011:[6.0] "Tomohiro Ishii ist weder richtig gut, noch schlecht... aber er ist stiff und das gefällt mir. Zwar wird er nicht wirklich was reißen können, aber solide ist er allemal."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: AndyTNAwrote on 16.12.2008:[4.0] "Wirkt sehr unbeweglich und Brawlt auch nicht überragend."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Rancorwrote on 04.12.2007:[8.0] "Ishii die stiffe Sau. In Sachen Selling zumeist keine Offenbarung, aber wenn der Mann in der Offensive ist, kracht es gewaltig. Guter Worker, der eigentlich nie enttäuscht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Jona5Holt on Xwrote on 18.01.2025:[10.0] "One of the most underrated wrestlers of all time, a genius in the ring. It is a crime he is not in the WON Hall of Fame"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Dweeeabwrote on 23.10.2024:[10.0] "The most innovative wrestler of all time. He has some of the best kicks and knee strikes Ive seen, I absolutely love his scorpion kick and bicycle knee strike he executed them so beautifully. Influencing what wrestling is today as well combining high flying spectacles with heavyweight striking. Very under appreciated by a lot of people truly one of the best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Joe907wrote on 21.07.2024:[10.0] "One of the most talented wrestlers of all time. Awesome high flyer and such a great technician. Some of his kicks are brutal. His style in the ring influenced the next generation of wrestlers. To this day he still competes at the highest level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: JediSaiyanMaster1203wrote on 19.06.2024:[10.0] "The fact that this man's trainers consists of Giant Baba and Mitsuharu Misawa alone tells you that this guy should be good, and clearly he is. A man who is one of the most influential wrestlers of the past 20 years who was one of the main younger talents in Pro Wrestling NOAH back in the 2000s, and still a prominent wrestler in the company to this day. A man who has been the basis for many wrestler's inspiration to take notes from or straight up copy with how he wrestles, some of his moves still being used by many guys today. Has had many great matches with KENTA, Minoru Suzuki, Bryan Danielson, Mitsuharu Misawa, Will Ospreay, Jun Akiyama, Katsuhiko Nakajima, Kazuchika Okada, Hiroshi Tanahashi, and I could go on and on. I will admit, there is a part of me that wonders what would Naomichi be like if he wrestled in NJPW instead, just imagine if he came up with the likes of Okada, Shibata, Tanahashi and the others and had the amount of clinics in the 2000s/2010s in NJPW, would be a sight to behold. But hey, he's had some amazing matches in and out of NOAH, so I can't complain. Overall, Naomichi Marufuji is a modern legend in the business and everyone should put some respect on his name!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Khalid Acewrote on 17.06.2024:[6.0] "Here me out , If we are talking Naomichi Marufuji's career I would d rate him way higher but I rate "active" wrestlers based on their recent works. He will always be a great legend to me but I have to treat him as I treated other wrestlers on this site"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: itscalledtaylorhamwrote on 19.04.2024:[10.0] "If Marufuji spent his prime years in NJPW instead of NOAH, he would be held in similar regard as Okada and Tanahashi. If you've never seen his matches, you're really missing out, he's one of the best to ever do it, and his influence can easily be seen today, especially in AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: FattitudeErawrote on 25.01.2024:[10.0] "The man. Such fond memories of watching Naomichi Marufuji in his prime while growing up and still to this day get a buzz watching him perform. Felt for him in the infamous match vs. Ibushi at NOAH's New Year show... But enjoyed his match vs. Ospreay last year and always look forward to seeing him in singles action. Matches vs Danielson, Kobashi, Nakajima, Sugiura, tag runs with Kenta and matches vs. Misawa and Ogawa.. I could go on. There would be a fair few Marufuji matches in my top 25. Legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: BigVan JimmyWangYangwrote on 24.12.2023:[10.0] "Quite simply the coolest fuckin dude to ever exist. When that "here we go" hits you know shits about to get wild."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Wrest lingaddictionwrote on 16.11.2023:[10.0] "Anything less than 10 feels like a crime... Marafuji has become an icon in wrestling and inspired wrestlers across the world. Personally I like his tag matches more but can easily watch his singles matches aswell."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: TripleCrownwrote on 02.04.2023:[10.0] "Naomichi Marufuji is INCREDIBLY UNDERRATED. Trained by the gods of Japanese pro-wrestling (Misawa & Kobashi), Marufuji has proven time and time again just how close to perfect he is as a wrestler. His bouts with Misawa & KENTA are legendary and are mind blowing even after watching them multiple times. His athletic ability is comparable to Rey Mysterio in his prime, Marufuji is just that damn good. Will go down as one of the GOAT's in pro-wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: ElegantImpactwrote on 28.03.2023:[10.0] "An all time great! His influence not just in Japan, but around the world is very much evident (Ospreay for example cites him as an influence). An absolute star as a junior in NOAH's early days, also is great mixing up with the heavyweights. Has slowed down with age and injuries, but his versatility shines through as he has been able to adapt. Maybe 2023 Marufuji is a 7, but I think ratings should reflect careers and with the highs of his peak and the influence he has had, a definite 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Brutish Dandywrote on 25.03.2023:[8.0] "He was really the ground zero for the indie-riffic style of the mid-late aughts. That isn't to say his matches were bad, they just had a tendency to go about ten minutes longer than they should have and have too much big move spam. He's become a lot better with age (or maybe the generation following his has just become all that much worse) so he's really grown on me over the last decade."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: texasyoshwrote on 16.01.2023:[9.0] "Incredibly important and influential wrestler, who's sort have been the standard bearer for NOAH's juniors. AJPW had Fuchi, NOAH had Marufuji and KENTA. While he's significantly older now, Marufuji can still go. He's had an excellent career and it looks like he has no plans of slowing down. It'll be interesting to see what people think when it's all said and done."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Roastertakerrwrote on 07.01.2023:[8.0] "Obviously. His moves are legendary. Great in-ring worker but from the matches I've seen from him. I don't know why he's rated at a 10. He's at least a 8 because of how good he is as a in-ring worker. But in general, I had struggles clicking and connecting to him in comparison of someone like Misawa or a Kobashi. Obviously comparing apples to oranges. But even then, I've always fancied Go instead of Marufuji."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Young Cardinalwrote on 02.11.2022:[10.0] "A legit legend. He is highly respected but it still doesn't feel like he's recognized enough today for his body of work and influence, but I'm sure that will come in due time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: BadAssTranslateTradingwrote on 12.10.2022:[10.0] "One of the most innovative and creative wrestlers in recent memory, Marufuji has consistently been one of the best wrestlers in Japan every year since the mid-2000s, this man truly is the heart and soul of Pro Wrestling NOAH, sticking with his beloved home through the extreme highs of the 2000s and the lower points of the 2010s. Whether as a junior or a heavyweight, Marufuji deserves his credit as one of the most influential wrestlers of his generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: CROWNS UP Janniswrote on 30.08.2022:"This right here is the GOAT! Without guys like him there wouldn't be THAT Kenny Omega, or THAT Will Ospreay, or THAT Eddie Kingston. Marafuji influenced so many people. And that is no wonder when you look at matches against KENTA, Okada, Miyahara, Suzuki and many more. Of course today he isn't what he was 7 years ago or so, but he still wrestle at a very high level. His nickname GENIUS OF THE ARK is not just any nickname. He really is. His moveset is so adorable. The Hook Kick inspired Ospreay, the knee strike inspired Omega. The Tiger Flowsion or the Modified Emerald Flowsion look so cool and impactful and are a great homage to his former mentor Misawa."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: jamzell00wrote on 22.04.2022:[9.0] "So many wrestlers especially in the west owe their careers to this man. So innovative with his offense and is still going strong now. His main event style and tendency to not sell a single thing does hinder some of his matches but I love this bastard so much."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: GriffinXwrote on 20.01.2022:[10.0] "In the early days of NOAH it was the Junior's that helped set them apart from All Japan of old a big part of that was Marufuji. As time went on he became even more important to the company and today is the legend that can still go the best from those truly early NOAH days."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: NoSellwrote on 21.11.2021:[10.0] "One of my favorite wrestlers of all time and an absolute pioneer. His rivalry with KENTA is legendary. His moveset is awesome, probably the best combination kicks ever. Precision and quickness."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Headkickahwrote on 10.11.2021:[10.0] "Influence. Creativity. Impact on the industry. Popularity. NM has it all and should go down as an all time great"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Wrestling Foreverwrote on 18.09.2021:[10.0] "Absolute Legende auch der Wahnsinn das er echt zwei Mal in Österreich gebookt wurde. Bei NOAH ist er einfach ein so wichtiger Mann und trotz seines Alters hat Naomichi es immer noch drauf. Wird man sicher noch lange im Ring sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: SpikeWithGlasseswrote on 30.06.2021:[10.0] "The most influential wrestler since Rey Mysterio Jr. this late in his career he's still amazing, Marufuji has always stood out from the beginning and knew how to adapt, in a land of heavyweights and being the protegee of Misawa he had no choice but to be great, and he stood out by being the fastest, most agile wrestler in the roster, as he had to slow down he changed to a more strike heavy moveset. He should be put along with Misawa as one of the best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: C1aranTTwrote on 26.06.2021:[10.0] "Watch any pro wrestling show in 2021 & from top to bottom you will see his influence. Potentially the most influential wrestler of the last 20 years, Marufuji will go down in history as one of the greatest wrestlers to ever step in the ring in my honest opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Bushidospirit22wrote on 01.03.2021:[10.0] "Possibly the most influential wrestler of the 21 century along with KENTA. Those two probably did more to change the perception of undersized main eventers in Japan than any wrestler not named Liger."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: rainmakerpunkwrote on 07.11.2020:[10.0] "Not many wrestlers can touch prime Marufuji, that guy was scary good, having some of the most incredible matches ever, his feud with KENTA is a top 5 feud honestly, as he's aged he's barely slowed down and still bring great performances, his NOAH run is an all-time great run, his NJPW run was incredible, his AJPW run was great"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: ElPolloLocowrote on 13.09.2020:[8.0] "He cannot (or will not sell) sell a move to save his life and he's not exactly interesting nor charismatic outside of the ring. But when he's on the offensive all can be forgotten: he may not be the Marufuji of 2009-2010 but his offense is still amazing."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: ProWrestlingGuy316wrote on 28.06.2020:[7.0] "Marufuji ist eigentlich ein großartiger Wrestler, der zudem auch das nötige Charisma besitzt. Allerdings hat er ein gravierendes Problem, das Kota Ibushi vor einigen Jahren hatte und Adam Cole weiterhin hat. Er kann nicht sellen. Wenn sich ein Match darum dreht, dass ein Körperteil von Marufuji "verletzt" ist, kann ich mir dieses Match kaum ansehen. Wenn er aber durch die Luft fliegt und dabei die Seele aus seinen Gegnern kickt, ist er fantastisch."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Tom LeBlancwrote on 06.04.2020:[8.0] "Naomichi Marufuji is known as the "Junior Genius" for a reason. He is one of the best when it comes to unpredictable strings of wrestling and high impact strikes. Had his prime years during a bad era. My heart would give him 9/10 but since he's not as young and fast as he once was, I have to give him an 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: ReedPryorNYwrote on 06.08.2019:[10.0] "Naomichi Marufuji is the most unpredictable wrestler when it comes to the kinds of moves he strings together and at which point in the match he brings them out. One of a kind, so many classics, in particular his first GHC Heavyweight Title win from Jun Akiyama on 9/9/2006 and his quest to take the GHC Junior Heavyweight Title from Yoshinobu Kanemaru on 7/10/2010. His recent brief but fantastic return to AJPW that lead to a first-time-ever clash on 4/30/2018 with the current Triple Crown Heavyweight Champion Kento Miyahara was special. It was the same place where Marufuji watched his senpai, Misawa-san, lay the foundation for what The Immortal Bird eventually became. Here he was, eighteen years later, to push the talented Miyahara to his absolute limit, the way Misawa-san had done for him so many years ago. Finally, his match with Hideo Itami at his twentieth year anniversary show on 9/1/2018 brought Itami out of the ashes of 205 Live booking and served as a stark reminder to the whole wrestling world how brilliant the two of them really are, especially against each other. Marufuji is an all-time great, and if NJPW really wants to keep their momentum going after all these talent losses, it would serve them well to shell out some cash and bring him back for the G1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: PuroresuLoverwrote on 13.05.2019:[10.0] "Naomichi Marufuji is one of the GOATs of Puroresu, his Junior style is very good, is a shame that he brightened at the wrong time. But still, he's a legend and certainly is in the Top 10 Wrestlers of NOAH and Puroresu in general."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: RatingsMachinewrote on 22.09.2018:[8.0] "Naomichi Marufuji can still deliver a great performance. Unfortunately, these instances are infrequent."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: My Bloody Doobwrote on 26.04.2018:[9.0] "Arguably the highest on the pecking order of the Four Corner's pupils alongside KENTA and Shiozaki, Marufuji is no contest the most talented and most athletic of his bunch. Every move of his is smooth and crisp, and his strikes are a sight to see and hear. His high flying is different than most as while he relies on jumping all over the ring, he is never excessive with his dives. Unfortunately his biggest flaw, especially in recent years, is if it's not a big time match, then his effort is always minimal. He has other few flaws like his inability to connect with the crowd (even though he still impresses them with his skill), and lack of size compared to his senpai, the legendary Misawa. Even though the crowd didn't fully accept him and his generation at his peak, he still must be respected for sticking around through the peaks and lows of NOAH since it's inception."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: The Big Blue Machinewrote on 31.01.2018:[10.0] "If Suwama is the ace of All Japan and Tanahashi is the ace of New Japan, well there's no doubt that Marufuji is the ace of Noah. Despite the age he remains astonishing to watch, and he also gives a lot of space to younger wrestlers like Nakajima and Kenoh. Watch out from his kicks!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Dragon Fighterwrote on 29.11.2017:[9.0] "The former ace of NOAH. His offenses look fantastic for sure. That is the one i love from him. The chops, kicks, knees are well-timing, well-executed. The flying moves are amazing. However, his matches sometimes feel like spotfest or go too long for no reason. Another downside is his selling- very hit or miss. He tends to sell poorly or ignore the limb work by his opponents. That's why i don't give him 10 like i do with ospreay or ibushi."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Makai Clubwrote on 20.11.2017:[9.0] "Marufuji get’s a bad rap for some reason but everytime I watch a match of his, I’m amazed by his innovative offense and his athletic ability. His kicks are amazing, his chops are wicked, his knees are brutal, and his hair is amazing. He has unreal amounts of charms for a guy who doesn’t pull a lot of facial expressions."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: taabr2wrote on 11.09.2017:[9.0] "I actually think that Marufuji was the better half of his amazing tag team with KENTA. Marufuji was a more versatile worker being able to fly around the ring and work the mat much better than the guy who was chosen to be the next big star."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: TooSweetPhilwrote on 21.07.2017:[8.0] "Marufuji ist einer der besten Puro Wrestler aller Zeiten und fast schon auf dem Level der Besten aller Zeiten Misawa und Kobashi. Sein In-Ring Style ist von vorne bis hinten einfach genial, er bringt extrem schöne Sequenzen, Konter und Athletik mit in's Spiel sodass an sich fragt, was er denn nicht könne. Das einzige was mich ein wenig stört, ist das Ring Pace was manchmal ein wenig eintönig wirkt und ihn so ein wenig "robotic" macht, deswegen "nur" 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Chekerwrote on 20.02.2017:[8.0] "The criticism I see being thrown around against Marufuji is that he never changed his style one bit. That's not a bad thing in itself, given that Marufuji was and still is ridiculously good, both as a wrestler per se and as a high flier. He seems to have gone down the cards a bit lately but I wouldn't mind seeing him feud with the likes of Nakajima for the HW title."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: TheRainmaker28wrote on 16.02.2017:[9.0] "Maru is just amazing. He can work stiff, he can work high-flying and his matches are a joy to watch most of the times for me. His style of wrestling and offensive are awesome with those knees strikes, chops and kicks. The only reason why I don't give him a 10, it's because of his selling. But damn, I love this guy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: TrevPuroFanwrote on 21.12.2016:[7.0] "Marufuji is smooth in the ring and very technical. He puts on a great match whenever he wants, however 50% of his matches are spotfests and very boring. Thats why I can't give him higher than a 7. I enjoyed some of his stuff with KENTA, Danielson, Nakajima etc tho. And his performances in the G1 this year, have made me appreciate him abit more, he was really killer in it."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Claudio Herowrote on 04.12.2016:[10.0] "Naomichi Marufuji ist für mich einer der besten Wrestler Japans der 2000er Jahre ! Extrem viele klasse Matches in denen er immer wieder seine technische Vielseitigkeit sowie Matchintelligenz zeigte ... Auch heute noch ein Garant für Topmatches .. zudem auch in schweren Zeiten NOAH immer treu ! Klare 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: akm0wrote on 18.10.2016:[8.0] "Marufuji will probably go down as one of the best jr. of his time.  He can do almost anything in the ring - from fast paced action to technical mat wrestling - but he relies too much on combination, overkill and move spamming, which is good in NOAH sometimes - since the late ark style is basically this - but not everytime. I used to complain about his strikes a lot, but in the G1 Climax run of this year he showed something different, something new. While he keeps on doing move spamming - ko-oh, flash kick, spinning heel mostly - he's more consistent and it appears he has improved his in-ring psychology which is one of the flaws he had during all his career. Something that would be surely remembered is his feud and tag with KENTA."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Mathieu Virtuosowrote on 30.07.2016:[10.0] "Marufuji is not only one of the best in Japan, but is one of the best in the world. His chops are insane, his kicks are innovative, and he has charisma that shows in his matches. He has truly proven himself in the G1 this year and this should only help Marufuji's momentum moving forward."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: TheWrestlingFanwrote on 21.07.2016:[8.0] "I have come to follow Japanese wrestling for about a year or so and I have just watched several Marufuji's matches, but I could say everything he does in the ring is satisfying enough for me. He is so smooth in the ring. His matches with Prince Devitt in Super J Cup Final and Okada in G1 Climax were very good."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Kevin434wrote on 03.01.2016:[6.0] "Dieser Mann hat diese Wertung hier nicht verdient! Das einzige was der Kann sind große Spots. Grauenhafter seller, und In-Ring Psychologie ist für ihn praktisch ein Fremdwort. Ohne einen Gegner der ihn durchs Match zieht kann der kein vernünftiges Match aufbauen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Xia11wrote on 26.12.2015:[7.0] "Marufuji is a very good wrestler in general, but I don't think his style deserves such a high rating."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Viper99wrote on 27.09.2015:[10.0] "Er ist ein sehr guter Wrestler und ich mag ihn als Charakter sehr gerne! Er ist eigentlich ein garant für Top Matches GEWESEN! Heutzutage ist er immernoch Top, aber die Glanzzeit ist vorbei. Trotzdem 10 Punkte für einen meiner Asiatischen lieblinge"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: eldenaaaaawrote on 24.02.2015:[10.0] "Pro Wrestling NOAHs diamond over the last 15 years. A man who has wrestled all over the world, taking on the best of the best, winning every title in NOAH and the IWGP Jr. Heavyweight title."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: GulakBusickwrote on 14.02.2015:[5.0] "A likeable guy, he was a part of some great tag matches in NOAH in the 2000s. Unfortunately his silly offence became a bit much to take when he moved into long singles matches. One of the most overrated wrestlers around for me. I've enjoyed a couple of his matches whilst GHC Champion but the recent Kojima match reminded me how poor he can be."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: JuliTheCage87wrote on 05.01.2015:[10.0] "Erstmals so richtig aufmerksam auf ihn bei Wrestle Kingdom 9 geworden, danach konnte ich gar nicht genug von ihm bekommen! Natürlich kannte man ihn als stetigen Japan-Schauer schon, aber was der kann ist echt unfassbar. Der wirft dir 5 Superkicks in's Gesicht, da ist vom ersten der Schmerz gerade einmal angekommen. Die Definition von Fast Pace! Ich hoffe, ihm bleiben noch ein paar Jahre und Auftritte bei NJPW!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Kenshin Uesugiwrote on 31.08.2014:[8.0] "Ist Marufuji ein guter Wrestler der spitzen Fähigkeiten besitzt, der sogar großes und tolle Matches bestreiten kann ? Ja natürlich, aber der Mann schwankt immer wieder zwischen gut oder grandios und durschnitlich und ach ne das war nicht gerade der Bringer. Maru hat viele selbst kreierte Moves und der/die Tiger Flowsion ist ein wirklich schöner Move und es ist immer begrüßenswert wenn ein Wrestler so etwas macht. Aber es gibt dann auch diese nonsens Moves, die nicht nur meisten gar nicht in den Matchverlauf passen, sondern auch so künstlich aussehen. Der nächste Kritikpunkt ist, das oft auch der Matchfluss und Das Selling und die Logik unter ihm leidet. Und wenn Maru sellt dann sehr oft so übertrieben und lächerlich das es ein richtig ärgert. Ich zitiere einfach mal mein Freund und User Grobrhetoriker: "... Goofy-Seeling (taumeln wie bei einem Sturm auf hoher See, am besten immer zwei Male überschlagen und dann noch bescheuert gucken), was immer total übertrieben wirkt und jede gegnerische Offensive und deren Moves ins Lächerliche zieht. " Ich sehe Marufuji immer noch nicht als den heiligen Messias des Junior Heavyweight im Puroresu. Aber Zeit hat er ja noch, Steigerung ist hoffentlich zu erwarten. Edit: Es wid Zeit für eine Aktualisierung, den Marufuji ist für klar erkennbar wieder besser. Als "Heavyweight" hat er die Qualitäten wieder endeckt die als sehr junger Mann hatte, Kreativität, Beweglichkeit und Technik und das ohne die Schwächen die er in letzten Jahren hatte. Das Selling wird nun durch gezogen und ist fast gar nicht albern. Die Nonsens Moves sind weg, Overkills und mehrfache Kick-Orgien ohne Verstand ebenfalls. So macht es mit NOAH Machtes Spass und Freude beim zusehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: thebigmatt099wrote on 09.08.2014:[10.0] "Absolute greatest in NOAH's heavyweight division in my opinion. Footage of him is what made me start watching Japanese wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: TakerFanwrote on 08.03.2014:[9.0] "Vielleicht der beste High End Wrestler der Welt. Hat ein Moveset von circa 400 Moves und entwickelt sich ständig weiter. Wird auch den Verlust von Athletik in späteren Jahren durch seinen Ideenreichtum gut kompensieren können. Sein Selling ist allerdings oft nicht konsequent genug, dafür der Punkt abzug."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Roode66wrote on 17.10.2013:[9.0] "Hat mich bei NJPW-King Of Pro Wrestling sehr überzeugt, sowohl von seiner Ausstrahlung her, als auch von den Skillz im Ring. Sehr sauber, technisch gut, kann hart zulangen und wirkte wie eine echte Gefahr auf den Titel. Ich hoffe, ich sehe in Zukunft noch mehr seiner Kämpfe. Der genannte macht auf jeden Fall Hunger auf mehr."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Lecterwrote on 06.06.2013:[9.0] "Man, Marufuji is a bummer. He got really, really good, but then he also became injury prone. As a result, he just hasn't been able to get any sort of steam going for the past many years. Still a brilliant in-ring performer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Saphirwrote on 12.01.2013:[10.0] "ganz klar 10! wenns 20 gäbe, wären es 20! Das ist mein Lieblingswrestler Japans (Weltweit steht er neben dem Hitman auf dem ersten), der sich ständig neu erfindet im Ring. Marufuji ist sehr kreativ und sauber im Ring. Ob Single oder Tagteam, der hat es echt drauf! Ausserdem wirkt er sehr besonnen. Ich mag den Kerl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Fighter Daronwrote on 02.02.2012:[7.0] "Good wrestle, capable of epic things when he wants."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: ShakDragoonwrote on 04.10.2011:[10.0] "Ähnlich gut, wie KENTA und einer der Top-Stars der japanische Light-Heavyweight-Szene! Leider ist er momentan wieder verletzt, aber ich hoffe, dass er bald wieder oben angreifen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Phoenix Downwrote on 18.07.2011:[8.0] "Vielleicht der beste High-End Worker der Welt nur das nicht vorhandene Selling und der Hang zum Overkill verhindert die Bestnote. Ansonsten aber ein unglaublich flüssiger, schneller und innovativer Worker. Edit: Hat inzwischen leider viel von seiner Klasse verloren. Ist inzwischen fast nur noch im No-Selling Modus und das nimmt inzwischen schon haarsträubende Ausmaße an."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Mick Funkwrote on 26.06.2011:[7.0] "Ohne Zweifel spektakulär, auf lange Sicht allerdings langweilig, weil ihm Selling und andere wichtige Eigenschaften leider fehlen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Blue Meaniewrote on 28.11.2010:[8.0] "Was Highflying und Technik Skills angeht, ist dieser Mann Weltklasse. Leider ist sein Selling meistens grauenhaft und Ring Psychologie ist auch nicht unbedingt die beste, weshalb eine 10 Punkte Wertung m. E. nicht vertretbar ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Roseswrote on 18.10.2010:[10.0] "Marufuji ist der Momentan beste Worker den es gibt er zeigt sowohl bei NOAH als auch NJPW unglaublich Starke Matches. Aber er wa schon früher Einer der besten er kann sowohl als Tag als auch Single Wrestler überzeugen, mit KENTA eins der Besten Tag Teams. Die tatsache das er auch bei den Heavyweights mit mischt zeichnet ihn nur noch mehr aus(ich glaube zwar eh, dass die Jr. s in Japan bedeutend Besser sind Als die Heavyweights aber das sei mal so hingestellt). trotz Fehlender Mic-skills(die Mman in Japan sowieso nicht erwartet) besitzt er mehr Charisma als so mancher "promo Gott" der WWE. Er ist meiner Meinung nach etwas schlechter als KENTA aber dennoch hat er 10 Punkte verdient, wenn sein Super-Kick Overkill das einzigste Manko ist dann Ändert sies nicht an der Note."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Berlin Dragonwrote on 18.09.2010:[10.0] "Ein fast perfekter Junior Heavyweight. Nur das Selling und die Logik fehlt ihm mancmal etwas , weswegen er mit ein paar kilos und muskeln mehr wohl als heavyweight sogar noch besser wäre. Trotzdem 10 Punkte für einen genialen wrestler , der vor allem mit und gegen KENTA immer in der Lage ist einen MOTYC zu zeigen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Sunglasseswrote on 22.07.2010:[10.0] "Was besitzt er eigentlich nicht? Mir fällt nichts ein. Super Ausstrahlung, Fähigkeiten im Ring und der perfekte Gegner für jeden Wrestler. Wenn jemand gute Matches aus jemandem herausholt, dann ist es Naomichi Marufuji. Noch vor KENTA DER Star der Jr. Heavyweight-Szene weltweit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Switchbladewrote on 22.06.2010:[10.0] "Einer der besten Junior Heavyweights der Welt momentan. Maru zieht auch die schlechtesten Gegner zu einem starken Match. Die Kombination mit Kenta hat eigentlich immer MOTY Potential."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Sandmannwrote on 06.05.2010:[9.0] "Einer der besten Wrestler der Welt. Konnte mich eigentlich in fast allen Matches die er bei ROH hatte vollkommen überzeugen. Seine Erfolge bei NOAH sprechen natürlich auch für sich. Wirkte immer sehr motiviert egal ob 1000 Leute oder 300 da waren."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: RickRollwrote on 24.03.2010:[10.0] "Übertreibt manchmal mit den Fake Kicks und er macht es auch noch so das es wirklich jeder sieht. Schon die Kick Combo bei seinem Rückkehr Match war gannnnz schlimm. Ich mein, er kanns ja auch mal mit der Hand auf den Oberschenkel schlagen sein lassen, ist ja nicht so schlimm wenn es "klatscht", aber wie auch immer. Trotzdem ändert sich nichts daran das Marufuji JETZT schon ne granate im Ring ist und das er nen sehr innovativen Stil hat. Ist ein klasse Wrestler und ist mit die Zukunft des Puroresu, nur finde ich manchmal sein Selling.. naja nicht sehr klasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: rv27wrote on 08.03.2010:[10.0] "Jedes Match das ich von ihm gesehen habe war einfach gut deswegen die 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: homicidal cena michaelswrote on 03.03.2010:[10.0] "Marufuji ist echt verdammt gut und zeigt konstant sehr gute Matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Fountain of Misinformationwrote on 17.02.2010:[8.0] "Abzüge aufgrund seines Superkick-Overkills (kein Japaner haut sich mehr auf die Oberschenkel als er, sollte sich Pads für die Oberschenkel besorgen) und seinem Goofy-Seeling (taumeln wie bei einem Sturm auf hoher See, am besten immer zwei Male überschlagen und dann noch bescheuert gucken), was immer total übertrieben wirkt und jede gegnerische Offensive und deren Moves ins Lächerliche zieht. Seine selbst erfundenen Moves sind auch immer so pralle Ideen, auch wenn ich es generell bewundere, wenn jemand im Wrestling versucht neue Moves zu kreieren. Aktuell und in den letzten Jahren mit acht Punkten ausreichend gewürdigt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Jay Burgerwrote on 28.01.2010:[10.0] "Ich finde, Marufuji ist aktuell einer der besten, wenn nicht DER beste Wrestler Japans, wenn nicht sogar der ganzen Welt. Jedes seiner Matches, das ich gesehen habe war zumindes gut, manche waren Unbelieveble, was sicherlicht nicht nur an seinen Gegner lag. Besonders gut finde ich, dass er sowohl Highspots zeigen, als auch die realistischsten Trust Kicks ever zeigt. Seine Matches sind abwechslungsreich, das einzige was ich an ihm auszusetzten habe ist seine Selling - Schwäche, die er aber durch seine Stärken wieder gut macht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: DJ MaSchwrote on 06.01.2010:[10.0] "Ein stiffer Techniker, dem in Sachen Intensität und Selling auch kaum einer etwas vormacht. Marufuji ist erst 30 Jahre, hat aber schon beachtliche Erfolge erzielt. Eine gewisse Aura kann man ihm auch nicht absprechen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: THE GAME 4-EVERwrote on 21.12.2009:[10.0] "Sicherlich der Wrestler, welcher in der Lage sein wird in die Fußstapfen von Jushin Thunder Liger zu treten. Jetzt schon ein grandioser Wrestler der sich eigentlich jeder Beschreibung entzieht. Doppelt so interresant wie KENTA. One of Japans Finest."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Eddiewrote on 16.12.2009:[10.0] "Auch einer der Kandidaten für den "Best Wrestler in the World"-Award. Einfach schön ihm zuzusehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Mankirawrote on 13.06.2009:[10.0] "Glatte 10. Fantastische In Ring-Skills und dazu immer wieder coole Ideen in seinen Matches. NOAHs Zukunft und hoffentlich bald einmal Träger der Liga"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: T-Waynewrote on 04.02.2009:[9.0] "Pole Shift! Einer der coolsten Finisher überhaupt! Und einer der besten Wrestler der ganzen Welt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: 150pwrote on 14.12.2008:[10.0] "Kann fast jeden Stil mitgehen, zählt nicht umsonst zu den besten Workern Japans."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Blazewrote on 01.12.2008:[10.0] "Kommt in meiner persönlichen Top 5 sofort auf Platz zwei nach Bryan Danielson. Im Ring hat dieser Mann eine derartige Energie, dass mich seine Matches gleich noch mehr mitfühlen lassen. Bei all den Matches, die ich von ihm gesehen habe war noch kein einziges schlechtes, dafür einige Hammermatches wie gegen Kenta, Danielson usw. dabei. Gut das er die Möglichkeit hat sich unter Heavyweight zu etablieren und den GHC World Title halten durfte, was ihm bis heute gut gelingt. In Ring Skills sind bereits jetzt sehr, sehr gut wobei er noch einen guten Look mitbringt, was ihn sicher irgendwann, zusammen mit Kenta und Morishima, ganz an die Spitze von Noah stellen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: domi1984wrote on 17.11.2008:[10.0] "Marufuji ist ein toller Wrestler. Seine ROH Auftritte konnten überzeugen. 10 Punkte meinerseits!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Tomkowrote on 02.09.2008:[10.0] "Er ist DIE Zukunft des japanischen Wrestlings und wird wohl mit Kenta zusammen die Nachfolge von Misawa, Kobashi und co. antreten..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: wXw Fanwrote on 24.07.2008:[10.0] "Klasse Mann, einer der besten Allrounder der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Heatwrote on 29.05.2008:[10.0] "Klasse Wrestler, gute Kicks und gute Technik zeichnen ihn aus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: AnFuwrote on 26.04.2008:[10.0] "Durch diesen Mann bin ich überhaupt zum Puroresu gekommen, seine Ringchemie ist atemberaubend. Er hat auch den namenhaften Titel schon errungen, hatte gute Fehden mit starken Wrestlen und hat diese übertriebene Coolness an sich, Bestnote!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Baby Duckwrote on 25.04.2008:[10.0] "Einer meiner Lieblingspuro-wrestler genialer Techniker"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[9.0] "Wenn es jemals ein Junior als Main Eventer in Japan etabliert, dann sind es entweder KENTA oder Marufuji. Irre, was diese Jungs zeigen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: LexLuger4everwrote on 27.03.2008:[10.0] "Ist zwar nicht der Charismatischste, dafür aber ein 1 A In-Ring Performer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Kaffoe 666wrote on 25.03.2008:[10.0] "Seine Erfolge sprechen für ihn... und er hat sie wirklich alle verdient! Noch ein ganzes Stück cooler als KENTA & Morishima, die er beide irgendwann einfach überflügelt hat. Beim 16 Carat sogar teilweise mit echt super genialem Heel-Work!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Aaronwrote on 04.03.2008:[10.0] "Marufuji gefällt mir im Ring sehr gut und er kann auch jeden Stil gegen sowohl große, als auch kleiner Gegner mitgehen! Er verdient durch seine Aufopferung für jedes Match einfach die Bestnote!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: D-Stylewrote on 07.12.2007:[10.0] "sehr guter Techniker, stiffe Kicks, 100% im Match, und hatte 2006 und 2007 einige Klassiker abgeliefert. NOAHs neue Nummer 1 wenn er an den Altstars vorbeikommt bookingtechnisch"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: SternessDustOmegawrote on 06.12.2007:[10.0] "Maru ist Klasse. Technisch versiert und hat tonnenweise Charisma finde ich. Der Titelgewinn gegen Akiyama war allerdings zu viel des Guten, kam etwas zu plötzlich leider."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Dave525wrote on 28.10.2007:[10.0] "Stiffe Action, gute Technik und schöne Highflyingmanöver, das alles kann man von Marufuji sowohl gegen Heavyweights als auch gegen Juniors immer wieder in guten Matches sehen. Außerdem finde ich, dass sich seine Ausstrahlung sehr zum Positiven entwickelt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Carlito Cenawrote on 16.10.2007:[8.0] "Klasse Akrobatik und Martial Arts-Moves machen ihn schon irgendwie zu einem Komplettpaket. Ist aber sicher auch noch ausbaufähig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Carlito ICWwrote on 18.09.2007:[8.0] "Als GHC Champ top, aber mittlerweile... ich weiß auch nicht. Er wirkt immer ein bisschen gelangweilt im Ring. Seine Matches sind aber immernoch top! Mal sehen, wie er sich jetzt erneut gegen Misawa schlägt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Baszdmegwrote on 17.08.2007:[8.0] "Muss ehrlich sagen, dass ich den Hype um ihn nicht ganz verstehe. Er ist, ganz offensichtlich, bei den Fans ziemlich beliebt und außerdem ein GUTER Wrestler, jedoch für mich nur gut. Eben genauso sind halt auch seine Matches, aber ich habe um ehrlich zu sein gerade mal ein einziges davon gesehen, dass mich richtig angesprochen hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: FiveStarwrote on 31.07.2007:[8.0] "Das Ace der japanischen Jr. Heavyweight Szene und erster Wrestler bei NOAH, der jeden einzelnen Titel gewinnen konnte. In Kombination mit seinen tollen Fähigkeiten im Ring, macht dies Marufuji zu einem der besten der Welt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Rashomonwrote on 23.07.2007:[10.0] "Mein absoluter Liebling von Pro Wrestling Noah. Besonders seine Matches gegen Heavyweights sind einfach fantastisch, sei es Selling oder Comebacks. Selbst sein inflationärer Gebrauch von Super Kicks macht mir persönlich einfach nur Spass. Vor allem bei seinen Gesichtsausdrücken erinnert er mich immer wieder an Junior-Version von Kobashi..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Wrestlingmashinewrote on 17.07.2007:[8.0] "Sehr gut im Ring wie ich finde. Er bringt Aktionen, auf die muss man erstmal kommen! ^^ Micwork weiß ich jetzt nicht so, aber charismatisch kann man noch ein bisschen dran arbeiten! Aber da er top im Ring ist und das für mich die Hauptsachen im Wrestling ist, verdient er von mir die 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Rancorwrote on 08.07.2007:[6.0] "Ich bin absolut kein Fan von ihm. Als ich ihn zum ersten mal gesehen hatte, war ich begeistert, doch das hat sich bald geändert. Wenn ich mir seine großen Singles Match anschaue, kann ich mich daran mittlerweile überhaupt nicht mehr erfreuen. Von seiner Titelregentschaft an hat der GHC Titel in meinen Augen auch ganz stark Ansehen eingebüßt. Vermutlich trifft er bei mir mit seinem Stil und vor allem seinem Verstädnis von Matchaufbau einfach nur genau den falschen Nerv, aber zu mehr als einer 3 kann ich mich absolut nicht durchringen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: HubertHuhnwrote on 24.06.2007:[10.0] "Braucht man nichts dazu sagen-vollig zu Recht mit den Titelgewinnen belohnt und mir gefällt er sogar noch besser als KENTA!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Pulpulwrote on 24.06.2007:[10.0] "Beste Benotung. Führt wohl kaum ein Weg dran vorbei, wenn man sich seine Erfolge ansieht. Sämtliche Titel NOAHs und seine Leistungen im Ring sprechen eindeutig für ihn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: LoudVoicedwrote on 02.02.2025:"One of the best women to ever join the WWE. So underrated, but still great. Probably should've had more title reigns, but she never dipped in her individual qualities."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: wrestlingswiftiewrote on 29.01.2025:[7.0] "Was she ever the best Joshi in WWE? No, or was she ever the best Joshi in the world? Also not. But damn, was she always really decent. She was always slower and had softer strikes, and could only do a few submissions really well, but it's her ring psychology that carried her matches."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: jmira17wrote on 14.01.2025:[5.0] "One of the most overrated wrestlers I've ever seen, I don't know the hype around her. She's an average striker ( her stricking is very overrated) , she can do some submission moves and she's fast despite her age ( she does moves very fast but she executes them badly many times) . She is a good seller but her timing is poor and she suffers a lot when she wrestle against highflyers because when she has to receive an aerial move, her positioning is bad and is very dangerous for her rival. Another thing is her "charisma"...... is very forced, she just says things screamming and dancing everytime and it doesn't feel natural. Her character is the same since she arrived to the Main Roster, it doesn't matter if she is face or heel."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: aoPSIwrote on 10.01.2025:[7.0] "Asuka deserves a 7/10 for 2024. While she is undoubtedly one of the best in-ring performers in the world, her year was limited due to injuries, which kept her from having the impact we're used to seeing. Despite this, her presence and skill when active still shone through."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: AceHagannwrote on 09.01.2025:[10.0] "Asuka is awesome in the ring, pretty much always making her matches a highlight. And while her limitations when delivering promos in English detracts from her overall performance, her attitude and presence definitely makes up for it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: MEDaminewrote on 06.01.2025:[10.0] "One of the best women wrestlers in history, she is really fantastic in the ring, good in the mic, and her career is full of a lot of memorable moments, future hall of famer for sure"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: ibrokenhearttwrote on 23.12.2024:[10.0] "An incredible elite wrestler, future hall of famer. She has won the vast majority of WWE accolades and is already considered a star."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: maily chgwrote on 17.11.2024:[7.0] "Asuka is a really good wrestler but everyone always forget a point : promos. I know WWE is not letting her do promos in english because they want her to be the crazy japanese, but that makes her a bit boring. Thats sad, she could be one of the best but thats why I would give her 7/10."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Englishorspanishwrote on 10.11.2024:[10.0] "the best women wrestler ever Asuka. amazing in the ring funny and good on the mic despite English not being her first language. she can put on a 4+ star match with 95% of the roster I can't wait to see her back in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: JackBurtonsTruckwrote on 14.10.2024:[9.0] "Asuka is an innovator and a standout of the womens division. Whether shes in singles or a kabuki warrior, she brings it for the fans. Her NXT run is a thing of beauty"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Rosyawrote on 29.09.2024:[6.0] "Asuka is OK, but it's a conundrum to me why she's got such high votes. Asuka isn't that phenomenal in the ring as folks are used to claiming. I would be a liar if I said her gimmick is worth of TV time. I can't understand and explain the phenomenon of highly-scored japanese wrestlers. They are always playing psycho figures which is wrongly called a charisma"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Galmondiwrote on 21.09.2024:[10.0] "She's the goat and she deserve respect for what she did. She's the reason why we have Iyo, Kairi & Giulia in WWE and she's the reason why many mores joshis are going to try to go to WWE (or america). She did even more than expected, she's a legend and she's still very good in the ring and a joy to watch everytime she's on TV."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: thunderrockwrote on 04.09.2024:[8.0] "Asuka is a good wrestler, I thought she was brilliant in NXT and she had the greatest NXT womens title reign of all time. I also thought her time in Japan was very good. But I do believe that having her lose to Charlotte at Wrestlemania 34 was a very huge mistake for Vince to make. I dont think Carmella should have been champion in exchange for Asukas undefeated streak. After that loss, she purely became either a transitional champion, a comedy character or put into tag teams with either Kairi, Naomi or Alexa (though I do really like Kabuki Warriors but I think both should never have been reduced down to the tag team division when theyre so much better as singles competitors. But unfortunately, Asuka just isnt taken as seriously as she was when she was the dominant force in NXT and won the first ever womens Royal Rumble. Sure shes still over with the fans but still I havent been able to connect with Asuka since. Sure shes a great performer and can be very entertaining, but nothing will ever compare to NXT Asuka."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Cletxawrote on 27.08.2024:[10.0] "Asuka is one of the rare wrestlers who deserves more than 10 points. when I started watching professional wrestling, I came across her nxt title reign. She definitely managed to impress me. Probably the best female wrestler on the wwe roster along with Iyo Sky."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: kaszi2Kwrote on 24.08.2024:[10.0] "One of the best professional wrestlers today. Decided that giving us classic after classic in the joshi scene with the likes of Satomura, Shida, and Syuri as Kana wasn't enough and came to America to become arguably the woman most responsible for western exposure to joshi wrestling since Hokuto in WCW and Nakano in WWF/WCW"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Odinohkawrote on 21.08.2024:[10.0] "Asuka is undoubtedly the best wrestler in the world of this generation. She and Manami Toyota are legends. Her in-ring is fabulous, she receives blows like no one else and gives a rare impact to her movepool. She has that wonderful dynamic offered by Japanese wrestling, which she has managed to make accessible and mix with American wrestling. Her characters are powerful and impactful, her entrances and outfits are fabulous, her charisma is unequalled, her technique is perfect, her liveliness of movement and spirit is sensational, and every moment watching her is a joy. After a few years, Asuka's WWE record has finally grown a little, but we all agree that she deserved a thousand times better. She should have been at the top of the card throughout her career, having thrilling reigns worthy of her talent and unfortunately HHH wasn't in charge. Fortunately, her records and talent speak for themselves and I wish her all the respect she didn't get during the Vince years. Asuka deserves the top spot, her WrestleMania Moment and a breathtaking run. It's about time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Jamarkus Colewrote on 15.08.2024:[10.0] "In my opinion she deserves more then a 10, I believe she's the GOAT of women's wrestling and the reason I got into joshi wrestling. At this point she has nothing to prove, and its been great to follow her amazing career although I think her WWE career outside of nxt could have been better!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: JulianPera50wrote on 05.08.2024:[10.0] "A legend herself, she has nothing to prove to anyone at this point of her career, she did very good at all of the stages of it. Since she step foot in WWE back in 2016, I followed her journey and certainly she never dissapointed me. I will be always grateful with her (even though I don't and will never meet her personally) to make me get invested into professional wrestling on my teenage years. Great charisma, decent in-ring skills, entertaining even when she just speaks in japanese to cut her promos. She accomplished a lot, but I still wish she gets to win one more title before retiring. Yet if that doesn't happpens, she is already a winner and a megastar for me. A GOAT in professional wrestling, the ever "Empress of Tomorrow". By the way, answering some of the questions down this comment section below, most of us her fans love her because she genuinely showed her love for professional wrestling, dude she even wrestle at Backlash France while being injured, any other wrestler would have relinquished the title and make her opponents and her partner look bad or made the match cut off from the card, but she didn't. Something more? She is a lovely person to her supporters, has anyone else seen that video in which she enters to a wrestling restaurant in Japan and the owner of it cries looking at her while Asuka comforts her and even signs her stuff? This is what makes a wrestler worth more than just been good at the ring, a genuine personality outside and inside the squared wrestling circle, something most of supposedly wrestling fans nowadays have no idea about."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Joe907wrote on 02.08.2024:[10.0] "Asuka is one of the greatest womens wrestler ever. I just wish she was booked more prominently. She was a legend in Japan before WWE. She has some of the best strikes ever. Her submission game is great. The in-ring work she does is incredible. She is the Empress of Tomorrow. An all time great wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Quack7183wrote on 23.07.2024:[4.0] "Might be the most overrated women's wrestler. Her gimmick is absolutely horrendous. One thing I don't understand is why people love her so much. Her matches aren't too good, nor are her promos. She's really overpushed. The most overrated superstar of all time may be a stretch (considering there are wrestlers like Sonya Deville and Nia Jax), But she is definitely up there. She isn't the worst wrestler imaginable, to be fair. She actually does have a great finisher, but that doesn't change the fact that she isn't that good. 4/10"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Khalid Acewrote on 21.06.2024:[4.0] "Asuka is by far the most overrated woman wrestler ever and possibly even including men as well. She only been good for the first year she was in NXT where she put up some good performances. Other than that beginning she's been awful in the ring and she has a dull personality with some atrocious promos. Think of the worst matches whether on ppvs or on regular weekly shows she's definitely appeared in many of them and whenever any wrestler, fan speak of her as if she's Okada or something. 9 rating, Give me a brake!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Rewritewrote on 16.06.2024:[10.0] "Asuka/Kana is one of the best wrestlers in history, from the Indians in Japan having good matches with Meiko Satumura and her arrival to NXT and her push to become champion, without a doubt one of the best wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: crs285wrote on 25.05.2024:[9.0] "One of the best modern women wrestlers in the world. She was the definition of dominant on NXT and she has continued to reinvent herself on the main roster to keep herself strong. In the ring she is fantastic and is good on the mic even if English is her second language. Has a great presence that can get a crowd behind her."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: leathermaskwrote on 20.05.2024:[9.0] "It pains me to not give Asuka the full 10 points, but the truth of the matter is that in 2024, she will probably never be a 10 again. This is not a knock on her personally, but the way she's been booked by the company in the past few years has been absolutely disappointing. WIth meaningless wins, only losses when it matters, Asuka is no longer the in-ring threat she once was. She is a complete professional, it has been extremely inspiring to see her these past months getting involved in storylines and matches despite clearly being injured - she knew how much it would mean to properly drop the tag belts to Bianca and Jade at Backlash. Perhaps one day WWE will give her the kind of run she deserves, the run she had in NXT, but I fear that's little more than a dream at this point."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: la isla bonitawrote on 05.05.2024:[4.0] "Asuka after 2019 is a complete negation of Asuka before 2019. Previously a brilliant competitor, outstanding in the ring, guarantor of a great show...now a luxury jobber, in whom a complete tragedy on the microphone is highlighted. Thrown into all possible storylines, she does not find herself in them and is now a character closer to comical than serious. Dominator of the NXT era, who in the main roster means about as much as Naomi or Natalya. I give 4 solely for her past. The present is simply a portrayal of the fall."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Cosmowrote on 22.04.2024:[10.0] "Asuka is one of the greatest women wrestlers ever and is probably the greatest woman wrestler of her generation and despite her WWE main roster booking slowly chipped away a lot of that aura she had in Japan and NXT she's still a fantastic worker and I really like what she's doing right now as part of Damage CTRL and the Kabuki Warriors"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: lukatesa21wrote on 21.04.2024:[10.0] "Miss the time when she was undefeated, she's heel and that explains the number of lost matches in 2024 but still a great wrestler like Asuka shouldn't be losing this much and she should be more respected."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: DanParkeswrote on 08.04.2024:[10.0] "Asuka is one of the very best to ever do it, she's an amazing performer.. in ring and character work there are few on her level of charisma. Asuka is a future hall of famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: richies88wrote on 01.04.2024:[10.0] "There are no words to describe how good Asuka is! Even when she's not trying she is really good! How people rate Biance Belair above her is beyond me and just pathetic. She elevated all of her opponents, even really green wrestlers. Her 2023 Kana inspired Asuka reinvention was much needed. I hope wwe centres the tag team division around asuka and Kairi, they're so talented and they can elevate the division and belts!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: mxkamiwrote on 11.02.2024:[10.0] "My 2nd favorite pro wrestler ever. And that's a shoot, brother. In 2014, I remember having to deal with some family stuff, forced into caring for an elder of mine in the middle of nowhere with no cable television, internet, nothing. I got on Twitter via my phone, and saw this "Joshi" (I didn't know what that was at the time) with demented clown makeup, a full General's outfit, and a cigar. It was a SHIMMER show, and later I'd find Cheerleader Melissa, Sara Del Rey, Jessika Havoc, Rosemary, and countless others on this show. But it was KANA that roped me in, and it was KANA that got me back into wrestling. I get it. Her WWE run is garbage, and it makes me so sad. Yeah yeah, all the fake accolades, and all that. But my god, they book her like trash. If you want to see PEAK KANA/Asuka, watch her in SMASH, any of her stuff while in Triple Tails, any of her self-produced shows, or her stuff with Tajiri where she's slapping the taste out of his mouth in backstage segs. If you're really feeling brave, you can always find THE infamous match on YouTube. Ya know, KANA and Marufuji v Satomura and Murder Grandpa where KANA booked a worked shoot where Minoru Suzuki just KILLS her. Even as one of my all-time favorite wrestlers, I could only watch it once. And remember, KANA's gonna kill you..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: RitsuTa1naka69wrote on 19.01.2024:[10.0] "I really wish I could give more than 10 points, and I would only do it for this woman right here. I think Asuka is the greatest to do it, bar none. She's an amazing talent who radiates charisma every time she puts on the face paint and the famous robe. Not to mention the fact that her in-ring skills are absolutely stellar. I have two Blu-Rays that have a bunch of her pre-WWE matches, and every single one is unbelievably good. I think she's an inspiration, someone worth looking up to. She helped me in a very dark time of my life and without her, I really don't think I would be alive right now. I will support her forever. Plus, her YouTube channel is so positive and makes so many people, including me, just really happy. Sometimes when I'm eating, I'll just watch one of her cooking videos so I feel less alone. She's the best, truly."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: shilderwrote on 14.01.2024:[9.0] "There are very few in the business that have the amount of success and traction that Asuka does. From Japan to the United States Asuka has taken the business by storm accomplishing literally everything possible and apologizing for absolutely nothing along the way. She deserves her flowers and her work is SO appreciated."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: ivxnb15wrote on 08.01.2024:[10.0] "Literally one of the goats of the womens division she always has been She never fails to entertain the crowd with her strikes and wrestling ability and submission games. Her alliance with damage ctrl is neat she fits in with the group"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Enchantiumwrote on 26.11.2023:[9.0] "One of the best current female competitors inside the WWE. Asuka has a perfect wrestling style that can link with anybody and has had many years of excellent matches, from wrestling in Japan to the United States. Everybody usually calls out her promos as her worst attribute, but I think her promos are not at all bad, and you can see a clear improvement from years ago when she first signed with the WWE. Achievement-wise, she has done it all and is for sure one of the best women in WWE's history."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: jundeadwrote on 26.11.2023:[10.0] "Asuka is simply great, WWE took the perfect decision by just letting her do her thing. Even after the awful end of her streak or playing a background character for the 4 horsewomen Asuka still shined and WWE knows she is on the top 5 women wrestlers of all time. I just want her to main event Wrestlemania and win, is the only thing she's got left to do."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: JediSaiyanMaster1203wrote on 25.11.2023:[10.0] "Similar to Shinsuke Nakamura, Asuka is too good for WWE and I wish she'd leave "The Fed" and go back to Japan where she can be booked consistently, or wrestle anywhere that would use her correctly. Asuka is one of the best pure strikers in the business today, every kick, knee and elbow strike she does looks incredibly solid and knows how to make it look like she's stiffing her opponents when she's not. She's also a great seller, bumper, at character work, facial expressions and very charismatic, she can elicit reactions, despite not being able to speak English properly, her promo battle with IYO SKY is one of the funniest in recent memory, even funnier when you find translations for it. It's a shame the main roster doesn't utilize her too her full potential, she should be a top star in the company with all the tools she has to make it as one, the "language barrier" means nothing when we live in a world where The Great Khali has won the World Title. Her best work in WWE comes from her NXT days, having one of the best women's title runs on the brand and having a winning streak that lead to amazing matches with the likes of Ember Moon, still pissed WWE teased us last year that Kana was coming back and did nothing different. Overall, Asuka is the best women's wrestler in WWE today, no matter how poorly she gets booked, she always outperformers her opponents because Nobody Is Ready For Asuka!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: theeternalsovereignwrote on 28.10.2023:[8.0] "Asuka is probably the best female striker on WWE's roster. She has her faults sometimes misses positioning in the ring and the laguage barrier inhibits her ability to deliver good promos. Or it did for a while until she was allowed to start giving some in Japanese. Even though her gimmick isnt entirely unique its still consistant and played to perfection. Nobody wonders who Asuka was before she was in WWE or who she will be after all that we focus on is she is Asuka and she is great."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Emanuel606goatFwrote on 07.09.2023:[10.0] "one of the GOATs, one of the best in the ring and arguably the best to come from Japan, she was always very charismatic and always showed what she came for in the ring. managed to prove himself on American soil and already has his name marked in history. a much-deserved 10 for ASUKA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: celticinvaderwrote on 07.08.2023:[10.0] "One of the main reasons I got back into weekly wrestling was to watch Asuka regularly. Her NXT run was outstanding, she elevated everyone she worked with and had so many all timer matches. Her moveset and athleticism is unrivalled by anyone on the roster, let alone only the women's division. One of the most exciting talents working today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: bbwrestlingwrote on 20.07.2023:[10.0] "I ABSOLUTELY LOVE ASUKA! She is 41 but she moves so quick. Her move set is incredible and her charisma is always on point. NOBODY IS READY FOR ASUKA! I hope she'll have great and long reign as a Women's Champion now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Loghan Morescowrote on 08.07.2023:[10.0] "The greatest japanese female wrestler of all time, more then proved herself all of these years in the wwe, and all the work she did on her homeland an fantastic performer and with can work well with any character given to she, simply fantastic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: devourblastwrote on 03.07.2023:[10.0] "Probably my favorite female wrestler and safely in my top 5 records. Her NXT run was absolutely amazing and made her feel like an absolute unstoppable machine. The trilogy with Ember Moon was a definite highlight. Her main roster run has definitely had some issues and kind of had her tripping off the starting blocks (especially everything with Carmella), but she has recovered quite well I think especially with the new persona. She is very deserving of all the titles she has ever earned."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: AwesomeBomb2002wrote on 22.06.2023:[7.0] "A very good wrestler. Her character was badass at the start, but now is becoming stale and boring since it's the same since 2015"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Roberto789wrote on 21.06.2023:[6.0] "She is amazing wrestler but she plays the same character many years and now is heel but it's the same, I don't watch any change about her character and the last 3 years she doesn't bring nothing special."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Blake17wrote on 17.06.2023:"She wrestles like a guy which is a tremendous complement for a woman wrestler. Easily one of the best, if not the best womens wrestler of all time. A very tough woman that has no problem working stiff though she is limited by WWEs modern style. She bet on herself and her hard work made her stand out in Japan and she has solidified her legacy with her WWE work. Highly respected by her peers in the business. Despite her up and down booking in WWE and even the language barrier to a degree, she has been able to stay at the top through sheer charisma and talent. Her in-ring work is as good as any woman in the world even in her early 40s . Her background in MMA training and mat submission wrestling leads her to have a grounded realistic hard hitting in ring style that helps her stand a part from most of her contemporaries. Shes definitely in the tip-top of female workers in the world and shows no signs of slowing down."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Immortan Scottwrote on 31.05.2023:[10.0] "Asuka is, with zero hyperbole, my favorite women's wrestler at the moment. There are others with more talent but no other woman (and almost no man) is as entertaining to watch as Asuka. Amazing in the ring, amazing character work, just all around amazing. The wrestling world is lucky to have Asuka."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Frank Shooterwrote on 26.05.2023:[10.0] "If she wasn't held back by WWE style, Asuka would be up there with Manami Toyota as the greatest Joshi ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: TheOneAndOnlyCactuswrote on 06.04.2023:[10.0] "Asuka is one of the most complete wrestlers I have ever seen, capable of doing pretty much anything you can ask from a wrestler. Whatever role you give her, whatever company she is, she will find a way to be entertaining when given the chance. She also manages to be captivating on the mic without speaking proper English, which is impressive."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: coppercowrieswrote on 13.03.2023:[8.0] "Upper tier of ladies wrestling as a total package. Character work is top class, oozes charisma. In ring work is good to great. Has had fun comedy matches in Japan and many serious contests as well."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: cobrenzoswrote on 08.03.2023:[9.0] "One of the best female wrestlers ever in WWE and pro wrestling in general, good charisma and one of the best in ring"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: ChrisPrattAsMariowrote on 04.03.2023:[10.0] "Best women's wrestler in the history of WWE and definitely one of the best women's wrestlers of all time. Her NXT run is most definitely one of the best runs in WWE history with great matches against Ember Moon and the last women standing match with Nikki Cross. Even before her NXT run, in Japan, she had MOTYC's on multiple occasions. My favorite match of hers is her and Minoru Suzuki vs Syuri and Yoshiaki Fujiwara."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: greaterdalewrote on 02.03.2023:[10.0] "Of of WWE's best wrestlers period. In a perfect world there wouldn't be gender restrictions and she could win the WWE Title as she is so much better than many who have had that belt. Her run in NXT was absolutely legendary and despite not always getting the best booking on the main roster, she still has an aura of legitimacy to her. Please push her to the moon HHH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: KENTAfanwrote on 21.02.2023:[7.0] "I really dont understand how Asuka is rated so high. Shes a great wrestler with good charisma who has had some great matches, but she has a rating higher than Ric Flair which I find absolutely laughable. Like, I dont mean to sound rude, but I really dont see that at all. She isnt even close to GOAT status and I dont think she ever will be. Where are the 5* matches? Where are the legendary promos/moments to stand the test of time? Asuka is a very good wrestler and can even hold her own as a main eventer, but shes simply not as good as people apparently make her out to be on this site."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Minorsmile09wrote on 19.02.2023:[10.0] "Indisputably the best woman on WWE's roster right now. I can think of very few stinkers she's been a part of, in fact she was one of the women who got me into rasslin' in the first place. Godspeed, Kana."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Oswuoldwrote on 16.02.2023:[8.0] "Not the Asuka we had but still One of the most important WWE female wrestler ever while her ultimate titles Reigns pissed me off also cause se was anable to get a win over Mia Jax and other's. I Hope in a final awesome titles Reigns. ****1/4"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: nWo-Joshi-Guywrote on 15.02.2023:[10.0] "I don't necessarily think Asuka is the best female wrestler in the world, though she is definitely amongst them, but she is certainly my favourite. Absolutely amazing look and overflowing with so much charisma even the WWE fanbase loves her despite her limited English. Upon seeing her for the first time (on the back cover of a WWE guidebook at my place of work) I thought to myself; maybe I should get back into wrestling? 15 years on from my childhood stint as a fan. That's how awesome and captivating she is!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: MooGatiwrote on 14.02.2023:[10.0] "When I look through all rosters and think who has it all, who can capture anyone and everyone's attention, I keep coming back to Asuka. She can do it all: funny, scary, sexy, hard-hitting, emotional, you name it. She really is one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: The Sick Lebowskiwrote on 27.01.2023:[6.0] "Dass ich einer von Wenigen bin, die Asuka nicht mögen, wusste ich. Dass meine Meinung und die der Allgemeinheit aber so weit auseinander gehen, habe ich nicht gewusst. Aber ok, auch ich darf mal jemanden massiv schlechter bewerten als der Rest. ^^ Zurück zum Thema: Asuka zündet bei mir nicht im Ring. Ihr Arsenal besteht aus Submission Wrestling - was nur in gewissen Dosen mein Ding ist - , Kicks und Schlägen - was noch weniger mein Fall ist - und den Gegnerinnen mit dem Hintern entgegenspringen - was ich gerdazu lächerlich finde. Lächerlich ist eigentlich auch, wenn sie in Segmenten ihre Show abzieht und anfängt, auf Japanisch wie eine Motorsäge zu quasseln und dabei noch rumtanzt - dies ist aber schon wieder so lächerlich, dass es extrem unterhaltsam ist, weswegen es für sie bei mir überhaupt zu einer mittelmäßigen Note reicht. Ansonsten würde ich hier vielleicht nur fünf, eventuell sogar nur vier Punkte geben."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: BigVanKaelwrote on 31.12.2022:[10.0] "Asuka is the best female wrestler in the planet. This applies to every year you read this in. Currently aged 41, there is no more reliable performer that can put MOTN and MOTY candidates on any given night given the time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: robrob77wrote on 16.11.2022:[7.0] "She is great in the ring, but not the best. She is charismatic, but cannot cut a single promo, I don't get how she does not speak english after so many years."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: eltetechoriwrote on 12.11.2022:[10.0] "AAAAASUKA, I love it. The great Japanese WWE wrestler that I like so much. Good wrestling has given but the truth is that his management has not always accompanied him at all well, but well, I've always liked."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: eBentowrote on 24.10.2022:[10.0] "While her character has been stale since about mid-2021, Asuka is undoubedtly the greatest Asian wrestler to ever work full time in the United States. She is a consistent worker and overly entertaining (especially outside of WWE, her YouTube is incredibly fun to watch). Her NXT run is the thing most wrestlers dream of, and she's achieved so much on the main roster too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: GreatAether531wrote on 09.10.2022:[9.0] "What is there not to like about Asuka? She's captivating from the moment she steps out onto the stage, with her vibrant personality being conveyed before she even says a word. When she gets into the ring, that character is carried through tremendously, with her joy for violence being infectious. She's also an amazing talent underneath that, with vicious strikes and some of the best submission transitions in the game right now. I think she'll go down as one of the great 'character workers' of all time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: TobiGeldner81wrote on 28.09.2022:[8.0] "Sie hat viel Erfahrung und ist sehr athletisch, Promotion ist häufig lustig auch wenn ich sie häufig nicht verstehe. Auf jeden Fall sehr komplette und gute wrestlerin die alles kann. Sie hat nicht umsonst alles gewonnen was man gewinnen kann und ist grandslam Champ"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: GM56 Championwrote on 22.09.2022:[8.0] "Her shouts in japanese are extremely annoying and WWE should bring back her version from NXT. However, she is still very good in the ring and can deliver despite the age she's at."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: migrationswrote on 14.09.2022:"Asuka is one of the greatest women wrestlers of the modern era. Most of the criticism at her is probably due to the fact that she's in WWE which (used to? ) limit the possibility of what wrestlers can do. It's very by the numbers. In NXT she was best (like most) but has gone on to continually be featured in the upper mid and main event card for years! ASUKA is one of the hardest working women in that she always is on. Whether doing fast wrestling or making Youtube videos or promos, she always has a bright shining personality. In the ring she is second to none in WWE. She has great technical prowess but also does a lot of classic Japanese moves and knows how to hit them well on the other WWE women. Love the spinning back fist, german suplex, armbar and hip attack. Her look is amazing. She is older at 40 years old and looks amazing. She has always had a fit body and exciting hair and her costume never changes. Just the colors. She figured out her costume many years ago. I'm not 100% educated on her Japan run but I know she had awesome matches against Io and Mio Shirai and we've all seen the Shida Omega ass match. Asuka has found something great in her wrestling self many years ago. She remains at the top of her game now for years on end and will go on to win probably many other Women's championships. And Observer and WWE Hall of Famer in my opinon."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Tyler72wrote on 11.09.2022:[7.0] "Asuka! Obviously she just has such an awesome gimmick. Great in-ring skills and I also love her personality outside of wrestling too!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: GwenCube64wrote on 05.09.2022:[10.0] "Probably the best women's wrestler WWE has ever had the pleasure of booking, and in general is an all time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Kiryyuuwrote on 30.08.2022:[9.0] "Definitely one of the greatest women wrestlers of all time. She has a fantastic look and absolutely oozes charisma. I only saw her stuff in NXT and Raw, and she always puts on, at least, a good performance. The quality of some the wrestlers she wrestles on Raw has affected some of her matches for me, but those are average at worst. Her gimmick work is tight and she's entertaining at hell even when she's not wrestling or doing a promo. Speaking of promos, she shouldn't be doing those if she's gonna do Vince's racist stereotypical Japanese person gimmick. She's way better than that and doesn't need to do any of that stuff to get over."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: CognacConversationwrote on 28.08.2022:[10.0] "One of the very best today. Even when I had stopped watching WWE during its worst phases, I would always make sure I caught up with Asuka's matches and segments. Her in-ring skills are second to none. The chemistry she has developed with women like Becky Lynch and Charlotte Flair have meant they regularly deliver some of the best TV and PPV matches WWE has to offer. Love how effortless her movements are in the ring. Asuka is someone who could carry Nia Jax (of all people) to a good match. Also her quirky personality is always a source of joy. Her mannerisms, one-liners and even random dancing are great little touches to her work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: CTFBwrote on 06.08.2022:[10.0] "When we're talking some of the best female wrestlers of all time, Asuka is one of the greatest. And this isn't just a minority opinion, this is something shared by most fans. One of the most versatile and excellent wrestlers on the planet, and not only is she an amazing in-ring competitor, she's one of the most respected workers when it comes to backstage stuff and also extremely charasmatic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: UltraNano54wrote on 17.06.2022:[10.0] "One of the greatest female wrestlers of all time in my opinion and easily the best women WWE has ever had."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: jamzell00wrote on 07.06.2022:[10.0] "One of the most consistent performers in the history of wrestling at this point. She's proven she cant be held down the wwe's awful booking or want for everyone to cut pure english promo's. You understand everything you need to know about Asuka by how she carries herself and her matches which is how it should be. Idk why it cant be like this with all foreign talent but by the grace of god the wwe just let her be herself and it worked wonders"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: texasyoshwrote on 10.05.2022:[10.0] "Asuka is still one of the best women's wrestlers in the world at 40 years old. Phenomenal no matter where she's gone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Wrestling Foreverwrote on 09.05.2022:[9.0] "Hab zwar ein wenig von ihrer Kana Zeit gesehen aber so richtig nun erst durch ihre Asuka Zeit. Ich hätte jetzt auch nicht gedacht das sie fast ein Jahr schon WWE NXT Women's Champion ist. Im Ring super, kann auch gut Englisch ich finde ihr Outfit auch klasse ist auch eine Joshi die sich immer neu erfindet. Von den Joshi die, die WWE verpflichtet ist sie eine der besten. Wenn sie in den Main Roster kommt hoffe ich das sie dann genau so stark eingesetzt wird wie bei NXT. Edit 06. 12. 2020 Ich würde mal sagen sie ist inzwischen eine WWE Legende. Sie war längste NXT Women's Champion und hat den Titel unbesiegt abgegeben, sie hat den ersten Woman Royal Rumble gewonnen und war auch die erste Japanerin der das gelang. Dritte WWE Woman's Triple Crown Championesse, zweite Grand Slam Championesse. Wenn Sie klasse Gegnerin hat kommen starke Matches heraus. Edit 20.02.2022 ich vermisse sie im WWE Ring. Es gibt leider überhaupt keine Infos wann sie wieder in den Ring zurück kommt. Edit 09.05.2022 schön sie ist wieder da. Sie lief lange wegen einer Schulterverletzung aus kann aber nicht die einzige Auszeit sein. Da war auch was von einem neuen Zahnarztbesuch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: zacharymahabirwrote on 25.03.2022:[10.0] "When it's all said and done, Asuka could easily go down as the very greatest women's wrestler ever. She's easily one of the most consistent and fundamentally capable wrestlers ever, regardless of any classification."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Asuka is the greatest female professional wrestler of all time. Even with the language barrier of me not being able to understand her in her native tongue, her enthusiasm for violence is infectious and she makes me want to watch her kick some f'cking heads in."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: markoutssjwrote on 27.01.2022:[10.0] "Asuka's overall body of work is unmatched, shes been able to achieve so much around the world and at a high level doing so. She's by far one of the best wrestlers in the world in ring, she's extremely charismatic, has a fantastic moveset, selling, and psychology. Her character is great too especially back in NXT when she was unstoppable, just so much believability there. It does seem on main roster though shes the 5th fiddle to the 4HW which sucks for her because she's easily just as talented if not more at age 40 but regardless she's had a great career despite that with multiple women's title reigns, tag title reigns, a royal rumble win, and some memorable matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: mjs2212wrote on 21.01.2022:[10.0] "Absolutely outstanding wrestler. Asuka was booked like a killer on NXT, and although her Raw and SmackDown runs haven't been quite as great, she is still a dominant force on both rosters. Her charisma is great, and she can be serious, comedic, and intense all at once. So fun to watch all the time. I also loved her tag team with Kairi Sane, and I felt that her character became even more iconic when she adopted the Green Mist into her arsenal. It makes her that much more unpredictable and great. On top of that, she of the most gorgeous entrance attires, and she seems like she has so much fun being in the ring. I have no doubts that Asuka is the greatest female wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: HopelessHelenawrote on 07.01.2022:[10.0] "Not only an amazing wrestling inside the ring, which by now is a well known fact, but also so much fun to watch as a character. She truly is a one of a kind talent and should be seen as an example by any aspiring wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Dy1789wrote on 27.11.2021:[9.0] "Best women in ring performer today. Really loved her undefeated NXT run. Has had a good run on the main roster as well. She has a ton of charisma that mostly makes up for her lacking ability to cut promos in fluent english. Overall one of my favorites for sure."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: twostagetommywrote on 19.11.2021:[10.0] "Trailblazer in Japan, trailblazer in the USA. Best japanese wrestler ever in WWE, she has wrestled men and women. She has done i all. Some people don't realize what she has accomplished. Once in a lifetime performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: kfztkfzt2021wrote on 22.10.2021:[10.0] "Tremendous wrestler, legendary skills. She's is probably the best pure striker on the womens division, amazing technical skills, perfect submission arsenal and execution, truly one of the best of the womens division. Great character portray, and pretty good on the mic, knows how to show intensity and heat . Very charismatic, and knows how to connect with the crowd. she deserves everything she gots."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: nWoSting145wrote on 19.10.2021:[10.0] "One of my all time favourite pro wrestlers and the most successful Japanese wrestler with regards to the accolades and matches she has had in the co lane compared to previous Japanese wrestlers. She can be scary, sexy and funny, sometimes all at once. Great look, charismatic, over despite the hot and cold booking, delivers in the ring with whomever she? s put with. no doubt in mine and in the fans eyes, a future hall of famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: LivingLegendwrote on 15.10.2021:[10.0] "One of the best wrestlers period. Has insane amounts of charisma, has a great, memorable, and unique look, and is incredible in the ring. She can get a good match out of literally anyone. Her offense is varied, and her selling is great as well. I don't really have anything else to add. She's just incredible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Lord AdGnalDivwrote on 11.09.2021:[10.0] "Asuka is definitely my favorite wrestler and I think she's objectively one of the best in the world as well. Her aura is totally unique and it's always a ton of fun to see her in the ring. She's consistently proving that she's eternally over, no matter what WWE does with her."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: rodriguesevewrote on 13.08.2021:[9.0] "Asuka has the potential to be one of WWEs all time greats, and I have no doubt in my mind she will be treated as such in the future. Her talent in ring is like no other, great striker and just overall very entertaining in the ring. They also got around her english struggles quite well to the point she barely speaks the language yet she's still a top star and has great character work when allowed. Honestly I think what she's missing is one really good all time great match and maybe I'd consider bumping her up to a 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Forerunnerwrote on 01.08.2021:[10.0] "I look at her a lot like Daniel Bryan. An incredible run pre-WWE and then completely overachieved in WWE. He may have been more successful, but that's because women don't have as many opportunities, doubly so if you don't speak English. And with that in mind, Asuka really has done well for herself and I think absolutely raised the bar for women in WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: voltxtreanwrote on 23.07.2021:[10.0] "Asuka ist eine Legende und immer noch aktiv. Ich weiß nicht, wie lange sie noch arbeiten wird, aber ich habe das Gefühl, dass sie noch eine Weile weitermachen könnte und ich hoffe es. Sie ist durchweg die beste Performerin in jeder Division, in der sie in der WWE war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: BrayanLaPrewrote on 13.07.2021:[10.0] "As Kana, 10/10. As Asuka, 10/10, This generational talent helped define NXT, Stardom, and this generation of Raw/SmackDown WWE. The Empress of Tomorrow has countless classic matches and a character that never fails to compel. One of the greatest of all-time, with a fair claim to No. 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: doxkevwrote on 20.06.2021:[10.0] "Another amazing Japanese lady wrestler. My ratings are on wrestling. Completely misused on the main roster. I think wwe has more talent then they know what to do with and just sign people so other wrestling companies can't compete. Asuka, Meiko, Sasha are really on another level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: zags7000wrote on 16.06.2021:[10.0] "Quite possibly the greatest women's wrestler of her generation and one of the best overall. She's very charismatic as well and can tell a story without the mic. She might struggle with English, which makes sense but she has gotten much better over the years. Still, she could have used a manager through her run. However, she's been able to get fans behind her still and that says a lot."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: dodonawrote on 20.04.2021:"The Best There Was, The Best There Is, The Best There Ever Will Be: that's Asuka/Kana! Hope she'll be the champion forever!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: shootingstarzeuswrote on 27.03.2021:[10.0] "Asuka is amazing. Her look is extremely distinct, she can flip between unwavering intensity and likeable comedy in the blink of an eye, and she is a force to be reckoned with in the ring. She has been a pillar of the women's division since she came to WWE and pretty much represents the opposite of anything in the 'Divas' era. Also her theme song is very catchy!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Kungwrote on 31.01.2021:[10.0] "One of, if not the greatest female wrestler I've ever seen. She has an unquestioned presence, her in-ring ability is top of the line, and she's brought lesser wrestlers to fantastic matches all throughout her career. She's definitely one who I'll never forget."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: pierreMinnewrote on 28.01.2021:[10.0] "Sadly I didn't saw yet what she was capable of outside of WWE but she is currently one of the 3 bests workers in WWE right now. She is very fluide and has a science in the ring that nobody else has. Truly charismatic and great as a face like as a heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: SammyMayawrote on 27.01.2021:[10.0] "Is there anything that this lady cannot do? Rules the roost in the WWE; they cannot book her properly because she's better than everyone else. Has to slow down during matches so others can keep up. Bucked the system in Japan and went her own way. I would like to believe that by standing her ground, the treatment of joshi workers in Japan has improved. She seems to be enjoying her time as a sports entertainer in WWE after the brutal years she spent in Japan and during her US crossover days with Chikara and SHIMMER; I can't say I blame her! Her personality is infectious; her skillset is tremendous; a brutal striker. At 39 years of age, she is still as fit as ever and seems to be the final arbiter on the future of her career. An AEW run after her WWE contract expires would be tremendous; would love to see her now against Shida! Heck, I would love to see her against Io, Kairi, Thunder Rosa, and Syuri!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Brett1980wrote on 23.01.2021:[8.0] "Was much better in NXT. On the main roster her career kept starting and stopping and for a lot of it was nowhere. Has had success though but when shes not in the championship picture she gets misused. Has good looking kicks."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: chinomorenowrote on 11.01.2021:[10.0] "We will probably never see her at her true potential in WWE, which is too sad, but we can't ignore what a great wrestler she is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: STARDOGCHAMP90wrote on 21.10.2020:[10.0] "Hands down one of the best female wrestlers currently signed with WWE. She has an interesting gimmick, good storytelling, amazing wrestling ability, great move set, and an overall stunning persona. Glad WWE capitalized on her and made her a 4 time women's champ and a former women's tag champ. Great performer in the ring and great vlogger on YouTube."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Legend003wrote on 07.10.2020:[9.0] "Sie gehört definitiv zu den besten Wrestlerinnen der Welt, wobei in letzter Zeit sie ein wenig abgebaut hat, liegt vielleicht auch, dass sie kein vernünftiges Programm hatte. Im Ring sehr stark und am Mic kann man sie auch anhören."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Okaro143wrote on 02.10.2020:[9.0] "One of the best female competitor I have seen inside the WWE ring. She is just so good and talented. Just exudes an insane charisma which was best highlighted during her undefeated run in the black and gold Brand, NXT. She is one of the best active workers in the WWE ( male&female) at the moment."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: martizzletaewrote on 22.07.2020:[10.0] "Entertaining, intense, cool, dope theme songs, amazing wrestler, and has a bomb YouTube channel! Asuka truly has ser herself apart from the women. If there's anyone who I could say compete with the Horsewomen in terms of full appeal, shes it. No One is Ready!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Cibswrote on 08.03.2020:[10.0] "The second best female wrestler on the WWE roster. Asuka is really good, is not as charismatic as some others but manages to disguise it with a very intense and effective work in the ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: AAA3000wrote on 07.03.2020:[9.0] "Immer noch richtig gut. Kann gar nicht glauben, dass sie schon fast 40 Jahre alt ist. Sieht man ihr weder äußerlich noch bezüglich ihrer Leistung innerhalb des Rings an. Neben Alexa Bliss und Becky Lynch in meiner Top 3. Asuka darf mich jeden Tag mit ihrem grünen Nebel besprühen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: TheV2wrote on 30.09.2019:[8.0] "From what I've seen of Asuka and from the little bit I've seen of Kana, she is indeed one of the best female wrestlers who has a tremendous aura. Her hip attack seems like the only not extremely painful to watch move in her repertoire. And yet she doesn't injure her opponents, which leaves me questioning every time. Her charisma could help her a lot to break the language barrier in NXT, which didn't involve too much talking anyway. However in the story-entertainment intensive program of the WWE they still didn't find a good way for her and it's definitely not as easy as most fans make it look like. Hopefully opportunities will come to let her talk in Japanese without an annoying crowd. But let's be honest, she's near her 40s and in the end the WWE seems to be a fun-filled vacation for her, so I'm happy for her."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Jh22387wrote on 23.08.2019:[7.0] "Asuka is definitely a very good performer but recent times have exposed that she is regarded as better than she truly is. Her in ring work is certainly the best attribute she has. I guess I just feel she is missing the "it"factor. She, in my opinion, is lacking slightly on the charisma aspect of what it takes to be a great pro wrestler. She's good, even really good, but not great. Solid 7 that could become an 8 with just a little work."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: VanguardWhowrote on 08.08.2019:[10.0] "Being poorly and sparingly booked on the WWE main roster isn't enough to diminish Asuka's status as one of the best women's wrestlers of her generation, and certainly one of the best in WWE. My favourite female wrestler, and one of my favourite wrestlers regardless of gender to boot, every aspect and facet of her is world-class. An excellent and unique look, fantastic ring work, and has presence and charisma for absolute days. Even with her middling English skills there's really no excuse for her being kept off TV and pay-per-view so much at the moment, as even without putting any titles on her, the sheer quality of her in-ring performances could be doing so much to help other women on the roster improve and get over. Bonus points, as if they were necessary, for pulling off such a long undefeated streak without it really ever getting stale, even at its lowest troughs and nadirs; very few others could've done the same."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[8.0] "A joy to watch, especially during her time in NXT. Unfortunately, she's suffered from the Vince McMahon blues since being called up to the main roster. I hope she can get back on track as a singles soon. The team with Paige & Kairi does not work for her."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "Excellent striker and one of the best technical women wrestlers, has a lot of charisma as well. She has the ability to make any decent wrestler look really good. Unfortunately she barely can show her real talent in WWE where her weaknesses are way more highlighted than her qualities and where the women roster is pretty weak. But even in Japan, while her work was obviously more respected and her style didn't have any limits, she never really had the career she deserved to have due to the declined state of the joshi scene. It's kind of sad in a way but I know what she's capable, she is still one of my favorite wrestlers and her 28 minutes match against Arisa Nakajima at the Korakuen Hall is still my favorite women's wrestling match."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: PuroresuLoverwrote on 12.05.2019:[10.0] "My favorite woman wrestler and the very best right now! I don't like women's wrestling that much, but Asuka is so fucking great that I needed to watch her matches. I hope WWE stops to treat her like a joke, 'cause she's really great and deserves to be the Top Star of their women's division."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: zephyrwrote on 19.03.2019:[9.0] "Technical ability, brutal strikes, great charisma - those are the main things that come to mind when I think about Asuka's positives. Huge asset to any roster."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: TwistedBlisswrote on 14.03.2019:[4.0] "Die WWE hat mittlerweile einige Damen von Japan im Roster und im direkten Vergleich zu Io Shirai und Kairi Sane ist Asuka die deutlich schlechtere Wrestlerin. Ich finde es traurig das der Smackdown Titel bei Ihr wenig Bedeutung hat. Ich freue mich darauf, wenn eine andere Dame den Titel endlich präsentieren darf. Nach Ihrer Zeit bei NXT ist einfach die Luft raus."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Steamboat2511wrote on 07.12.2018:[9.0] "Asuka steht wrestlerisch über den Dingen. Ob sie nun die beste Wrestlerin der Welt ist oder nicht, sie ist in der Lage im höchsten qualitativen Bereich zu performen, Matches intelligent zu führen und hat eine feine Technik. Charisma ist auch vorhanden, die Mic-Skills sind allerdings noch verbesserbar. Was jetzt noch fehlt ist die ganz große legendäre Matchserie gegen gleichwertige Gegnerinnen wie Becky Lynch oder nochmal Ember Moon um die Spitze der Company."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: The Stott Onewrote on 30.11.2018:[9.0] "Bringing some fire to the women's division, Asuka has been a major draw for the Women's Division. Her match with Charlotte Flair at WrestleMania was one of my favorite matches of the night, maybe the year. I hope she doesn't flounder now that they ended her streak, but I am expecting a lot of great matches in the future.  As of this writing, TLC might have her in the MOTN."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: TylerWhitewrote on 02.11.2018:[9.0] "Extrem gute Wrestlerin, die nicht zu unrecht oft als bestes Talent der gesamten WWE bezeichnet wird. Hab leider vor ihrem NXT-Run kaum was von ihr gesehen, aber in diesem Run hat sie mich überzeugt. Keines ihrer NXT Matches war wirklich schlecht und sie hat den Womens Title verdient gewonnen. Ich hoffe man bekommt irgendwann Dream Matches gegen Lynch oder Banks zu sehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: RatingsMachinewrote on 17.10.2018:[8.0] "Asuka is a great wrestler, and it's not any surprise that she had a great run in NXT but has been thoroughly misused on the main roster."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: PaoloReaperwrote on 05.06.2018:[10.0] "Almost certainly one of the top 5 female wrestlers in the world right now, Asuka is a beast in and out the ring. Holder of the longest undefeated streak in WWE recent history, Asuka has been utilized according to her actual skills, a thing that is sadly not the norm in the World Wrestling Entertainment system. With a terrifying presence, thanks to her amazing character work, entrance, lack of english skills and, of course, world-class in-ring ability, she was the most feared performer in the promotion, both men and women, until her loss at hands of Charlotte. It was not the defeat per se, but that the subsequent screen time given to Asuka has not been, in my opinion, well utilized. Despite this, Asuka is a top talent and one of the greatest, if not the greatest, female *wrestler* to ever step foot on a WWE ring (Wait for the push to Kairi Sane and the signing of Io Shirai and we could have contenders on that). I can only hope that Asuka returns to Main Event status soon, where she belongs"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Oliver95xwrote on 23.05.2018:[9.0] "Einer der besten Damen die, die Wrestlingwelt zu bieten hat. Strahlt Karisma aus und ist gut im Ring. Gibt nichts an ihr auszusetzen außer vielleicht ihre englischsprachigen Promos. An denen könnte sie noch arbeiten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: LivMorgan202wrote on 16.02.2018:[9.0] "Very good wrestler with an amazing in-ring work and great abilities, but there's the problem with her mic skills that's so awful and bad and I know that she has that smile thing and mockery of her opponents but that's not enough because in my opinion a wrestler have to sell his character on the mic too well and I know that she will never improve on the mic but at least we have good matches with her every time she enter the ring and I can't wait to see what she does with the likes of Charlotte and Ronda Rousey. And the major problem with her is that thing with the mic skills but the rest she kills it, mainly her kicks that's awesome."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Brainbreakerwrote on 11.02.2018:[9.0] "Wrestlerisch ganz klar auf einer Ebene mit Charlotte, wenn nicht sogar einen Tick besser: Asuka hat im Ring eine unglaubliche Präsenz, wirkt glaubwürdig in ihren Aktionen (von der Hip-Attack mal abgesehen) und man hat immer das Gefühl, dass ihre bloße Anwesenheit für ihre Gegnerinnen nicht vorteilhaft sein kann. Ihr Mic-work ist aber auch nach ein paar Jahren immernoch holprig. Das ist schade, denn somit wird sie nie komplexere Stories erzähen können und ist immer zu einem großen Teil auf ihre Kontrahentin angewiesen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Triple Hwrote on 05.02.2018:[8.0] "Das einzigste was man Asuka ankreiden kann ist, das sie nach fast drei Jahren in der WWE immer noch kein gutes Englisch sprechen kann. Ansonsten gefiel mir ihr Run bei NXT bisher besser als im Main Roster. Trotzdem verdiente Royal Rumble Gewinnerin 2018. Das erste wirklich gute Match von ihr im Main Roster war gegen Sasha Banks. Hier hat sie auch zum ersten Mal eine ernst zu nehmende Gegenerin gehabt. Aber ihren Sieges Run sollte man endlich mal von der Storyline aufgeben, denn irgendwie wirkt das nicht mehr glaubwürdig. Schön wäre auch ein charakterlicher Wechsel ihres Gimmiks. Es wirkt zur Zeit auf mich ziemlich abgenutzt. Auch würde ich gerne von ihr und ihren Gegnerinnen mehr technisches Wrestling sehen wie teilweise bei NXT. Hier war ihr Last Women Standing Match gegen Nikki Cross das absolute Highlight von 2017. Die WWE hat wohl noch einiges mit ihr vor und mich würde alles andere wundern, wenn sie bei Wrestlemania nicht Championesse werden würde. Gerne in einem Match gegen Charlotte Flair aber was für eine Rolle wird eventuell Ronda Jean Rousey hier einnehmen ? Irgendwie wird sie in diese Fehde wohl eingebunden trotz des vermuteten Matches mit The Rock gegen Triple H und Stephanie McMahon ? Wir werden es im April sehen. Eventuell korrigiere ich meine Meinung in absehbahrer über Asuka noch auf 10 Punkte, aber hier muss sie mich noch absolut überzeugen das sie auch wandelbar sein kann vom Wrestler Charakter her."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: CHN325wrote on 01.02.2018:[10.0] "One of the best female wrestlers that I have ever seen. Booked strong, has a great look, and is great on the mic even with a language barrier. Her mannerisms in the ring might be the best part about her. She doesn't wreck the competition, but always seems to outwork them, which makes for a great show."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Cleanerwrote on 30.01.2018:[4.0] "Ich bin mittlerweile leider kein Fan mehr von Asuka. Ihre Matches sind meist ziemlich uninteressant, jedes Wort, dass sie sagt ist eines zu viel und sie scheint in ihrer gesamten Entwicklung zu stagnieren. Wird dringend Zeit, dass ihr Titelrun endet und sie in den Mainshows neue (bessere) Gegnerinnen und Fehden bekommt. EDIT: Wie naiv zu glauben, dass die im Main Roster besser eingesetzt wird. Die Matches sind noch langweiliger, die Einsetzung eine Katastrophe. Spaßfaktor ist sehr gering."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: TheLoudMouthwrote on 18.01.2018:[10.0] "Vollkommen zurecht so hoch bewertet. Bin generell kein großer Fan von Damen-Wrestling, aber Asuka bringt alle nötigen Fähigkeiten mit. Nahezu unschlagbares Komplettpaket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: MitsuharuMisawawrote on 06.12.2017:"She was part of good matches with opponents like Asuka, Mickie James and Ember Moon. Also, I like her mask."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Vancouver Victiniswrote on 22.11.2017:[10.0] "Nobody is Ready for asuka. this fact is plain, she doesn't really try fully on the main roster yet. She has beaten Punks Record for most days with a title in WWE and Goldbergs 173-0 Streak. She has done all the big WWE Records already before she set foot on the main roster. She still has her biggest test to get over with MR writing that may expose her weaknesses. Best of Luck."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Dragon Fighterwrote on 08.11.2017:[10.0] "Don't let wwe brainwash or make you look like stupid idiots. Asuka is definitely the best women wrestler in wwe for sure. Yeah, her debut with emma wasn't much impressive, but not her fault when she sold most of the match. Her nxt run was fantastic with killer matches with emma, bayley, nikki cross, ember moon and some other decent stuff. The lack of english is her only problem, but with proper booking , it can be hided. I am not 100% confident that wwe won't fuck her up. Hope she will have a good career on main roster."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: taabr2wrote on 11.09.2017:[9.0] "Asuka's NXT Women's title run was fantastic. She is the best women worker in WWE today. I would like to point out though that I thought the same of Charlotte, Banks and Bayley when they were NXT women champions but while they all got exposed once they moved up to the main roster I would hope Asuka's experience in Japan would help her adjust better. Of course I haven't seen her pre-WWE work so we will just have to wait and see."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: CaptainTwrote on 03.09.2017:[9.0] "Asuka hat einfach alles was man braucht, außer vielleicht gutes Englisch. ;) Das macht aber nichts finde ich, da sie mit ihrer Mimik und ihrem Charisma im Prinzip genug erzählt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: PrinceJrwrote on 02.09.2017:[10.0] "Das Beste, was WWE zu bieten hat im Damenbereich. Absolut geiles Wrestling, optisch top, sehr charismatisch und auch die beste NXT Women's Champion mit so vielen tollen Matches, besonders ihr letztes Match mit Ember Moon bei Takeover Brooklyn 3. Klar, sie ist japanisch und hat nicht die besten Mic-Skills, aber dafür was sie kann, werde ich ihr nix von meiner 10er Bewertung abziehen. Gucken, wie es im Main Roster, hoffentlich positiv, weitergeht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Viper99wrote on 26.08.2017:[10.0] "Sie ist einfach Gold wert. Sie besitzt soviel Charisma das sie nicht ein Wort am Mikrofon sagen muss und hat einen einzigartigen In-Ring stil. Sie ist In-Ring mit Abstand die beste im Ring bei der WWE/NXT und wohl auch die Charismatischste. Für mich einer der stärksten All around Perfomer der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: SNKwrote on 11.08.2017:[9.0] "Excellent talent that consistently delivers high quality performances. Great ring work and very charismatic. Weak mic skills due to her poor English is Asuka's only noteworthy flaw, but due to that I can't give her a 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: aguilarje411wrote on 20.07.2017:[9.0] "Asuka in NXT is incredible! Along with Sasha Banks, she is the best women's wrestler in the United States. While her arsenal relies on a lot of strikes, some of which can seem a bit reductive, it works for her and she elicits attention and carries herself like a star. If I had one qualm about her it's of course her mic skills and while understandable still seem to come off a bit sluggish at times but being a dangerous force she is, this sort of works to her advantage actually. The only reason I can't rate her a 10 is because while she's great in NXT, she also doesn't have too much competition there. Bayely and Ember Moon are the only opponents she's ever faced that can come close to her and those have been too few matches considering how long she's been champion. Nikki Cross was another one where the wrestling was good but she's also not on her level. I might have to change my rating when Asuka comes to the main roster. What works in NXT does NOT always work on TV. That's a fact. Especially with the way she handles an environment that has better women's wrestlers than she's used to 90% of the time in NXT (not necessarily better than her) as well in a much more promo and segment heavy show like SD and especially RAW than NXT is. But as it stands, she's the most dominant woman, really in history that I can recall."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: PathosLogosEthoswrote on 05.06.2017:[10.0] "She's the best. I mean, just, what is there to say about her. Sadly, her English still isn't good enough to give a real well developed promo, but that being said, she at least knows how to make something good with the little English she knows. As far as her in ring work? She's stellar. She just has no weaknesses as an in ring performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: jtsilver101wrote on 06.04.2017:[7.0] "Very compelling when it comes to her storytelling. I have been able to get invested in her work based off facial expressions alone. My only problem with Asuka comes from the fact she's a babyface. The stiff kicks, the submissions, he body language all comes off very heelish. Once that problem is fixed, I will enjoy her work even more."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Changeling45wrote on 21.02.2017:[9.0] "I've seen nothing but great things from Asuka.  She carries herself like a complete badass.  She's very charismatic, and has a terrific sense of urgency that makes her ring-work seem absolutely legitimate."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: rjsbx11wrote on 06.01.2017:[8.0] "Something about Asuka compels you to watch her. Her colorful outfit, her appearance, her sinister smirk and her striking ability makes her standout among her NXT contemporaries. She's not as stiff as she was in Japan, as the talent pool in NXT is filled with many greener workers, but she still able to fire off convincing offense. The issues seem to be surrounding her character, she bodes well as tweener or heel, rather than a face. She's going always face trouble with a mic, but being miscasted as face, and the lack of skilled competition might stall her in the long run."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: molemaster43wrote on 05.01.2017:[9.0] "Asuka is a force to be reckoned with; with a brilliant character, brilliant facial expressions and great wrestling, Asuka is one of the best women's wrestlers out there, and I cannot wait to see her dominate the main roster soon enough."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: NastyYaffawrote on 01.01.2017:[9.0] "One of the best women's wrestlers WWE has ever had - Asuka just gets it. Her charisma, facial expressions, body language are just on point, and she does some little things that add to her matches - and then you get her beast in ring work - her offense is just fantastic."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Rog Fulacewrote on 26.12.2016:[6.0] "Pretty lame striking ability if you put her in her actual joshi environment, but she of course seems "amazing" when put alongside people who are actively learning wrestling or were there for modeling purposes/signal boost rather than actual wrestling talent. Besides that, her matches were rather average and her look is rather wacky."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Sorawrote on 17.12.2016:[10.0] "Asuka ist wirklich eine wahnsinns Wrestlerin... Sie ist umwerfend im Ring, das Gimmick passt... Das Problem ist: nachdem die Four Horsewommen aus NXT zum Main Roster gekommen sind, fehlt es ihr sehr an ernsthafter Konkurenz... Also WWE: Asuka ins Main Roster & den NXT Womens Titel an jemanden der nicht so... sagen wir überqualifiziert ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: johnnywrestlingDIYwrote on 13.12.2016:[10.0] "Just another level. Incredibly crisp, smooth and fluid. Shows incredible emotion and story with the littliest of gestures. Rightfully so at the top of the mountain right now for womens wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: AtticusFinchwrote on 25.11.2016:[9.0] "Without a doubt, the best female wrestler in the WWE. She can carry just about anyone to an entertaining match. Only knock on her at the moment is that they don't quite seem to know what her character is yet in NXT. As a face, she's running the risk of becoming stale, but a heel run seems like it should free her up a bit since it always felt like she was one or a tweener at the very least. Promo skills are whatever, but she works well as a silent or "woman of few words" wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: arrancarwrote on 21.11.2016:[7.0] "Asuka is definitely a notch above all the other female wrestlers in WWE. She's good, but I'd be lying if I said she was one of the best wrestlers in the world as her current 9. 39 rating suggests. I never saw Asuka in Japan, which is a shame because I bet she had some great hard hitting matches over there. On what I've seen of her in America it feels like WWE wanted a female 'strong styler', but didn't want to have Asuka injuring all their other female talent (who are newbies and/or possess very limited skills), so they just got her to do moves with a big performance to them but with little actual impact. That's what it feels like with Asuka. She is all talk. Her offence, which everyone gushes about, seems rather tame compared to many other wrestlers, even some in WWE. She has that 'delights in evil' nature going on, as she seems to love both giving and receiving pain. This is meant to play into the whole 'mysterious foreigner' gimmick WWE always does with non-westerners, and is meant to make her look badass. However, Asuka is not a great actor, and whenever she fires up or no sells her injuries it just comes off as cringeworthy because her facials/vocals are far too exaggerated. Ignoring her gimmick (despite how it annoys me), her wrestling skill really is quite good. She has had quite a few good matches and could probably hold her own with plenty of WWE's male wrestlers. She still hasn't had any match I'd consider 'great', but her foundations are at least set for that."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: mdbnasewrote on 20.11.2016:[9.0] "Sehr gute Ausstrahlung,  zudem eine ausgezeichnete Technikerin mit tollen Submission-Moves und einem hohen Tempo. Kommt mir manchmal aber etwas zu arrogant rüber. Ändert aber nichts daran, dass sie im Ring sehr viel drauf hat. Benötigt allerdings Gegnerinnen die mithalten können, da sie sich manchmal etwas schwer tut, unfähige Wrestlerinnen zu einem guten Match zu ziehen. Darum einen Punkt abzug."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: shosa94wrote on 12.10.2016:[10.0] "The best female wrestler in the world, full stop.  Puts on awesome matches, oozes both charisma and intimidation (could believably kick most of the male wrestlers' asses), has a great look, and may be the only wrestler to EVER pull off a monster baby-face run successfully.  Ladies, this is the bar, get up on your tippytoes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Saphirwrote on 21.08.2016:[10.0] "Kana ist und bleibt eine Marke für sich. Jetzt bei NXT hat sie verdienterweise einen größeren Zuschauerkreis. Wenn die Gegner stark bleiben, kann man sich auf sehr gute Matches freuen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: SweetestThing2wrote on 11.08.2016:[8.0] "Asuka is not only the best Women's wrestler in NXT but she is the best women's wrestler in all of wwe currently. Her in ring skills are magnificent and she is one of the stiffest Women's wrestlers i have ever seen. I love the Gimmick, she is just a bad ass Japanese girl who is so eccentric and a little scary at times. I also am in love with her attire. Not only the coolest Women's attire i think i have ever seen but also one of the coolest ever and she is a beauty. I think her mic skills are what brings my rating down a bit considering they are very underwhelming."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Hypocrisywrote on 06.08.2016:[9.0] "Leider kenne ich kein Material aus Japan, sodass ich hier nur ihre Zeit bei NXT bewerten kann. Grandiose Technik verbunden mit einer Aura der Gefahr macht sie zu einer äußerst lieb gewordenen Athletin innerhalb der Women's Division. Das Mic Work ist aufgrund der traditionellen Sprachschwierigkeiten mutmaßlich nie groß vorhanden; dies ist bei einer solchen Workerin aber auch einfach egal."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: JordanACEwrote on 24.07.2016:[8.0] "In ring she's probably the best female wrestler in the world (alongside Sasha Banks). She's so quick and basically just a total badass!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: KevinZaynwrote on 26.06.2016:[10.0] "Asuka ist eine grandiose InRing Performerin, die dazu noch ein unglaubliches Charisma besitzt. Micwork braucht sie dadurch eigentlich gar nicht. Weniger als 10 kann ich ihr einfach nicht geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: gaidenphoenixwrote on 21.06.2016:[10.0] "Even in an era when mainstream American wrestling fans are beginning to take women’s grappling more seriously than ever, Kana stands out as an exceptionally fast, brutal and efficient competitor. Though her microphone skills aren’t quite yet up to par – likely a result of English not being her first language – Kana communicates everything she needs to between the ropes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: SMKVBwrote on 09.06.2016:[7.0] "Arguably the best female worker on the planet. Offense comes swift and hard and she'll snatch any limb that comes near her. What she's missing that you see in some of the horse women is their exceptional in-ring story telling through selling and psychology. She just has to get used to the more American style of sports entertainment rather than just depending on her bad ass offense. Obviously promos are a no go, but she's still managed to get over so I can't really knock her for that. Thought her match with Emma stole that Takeover and was even more entertaining than her title match with Bayley."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Luv all wrestlingwrote on 05.06.2016:[10.0] "ASUKA brings a culture shock of joshi to WWE, up until signing she had done it all, modeling, hair designing, professional graphic designer, professional gamer, worked in almost all the joshi promotions, ran her own shows, worked for AJPW on there playboy sponsered show, worked in NOAH. can not wait to see her dominate the male roster"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Alex Maedawrote on 23.05.2016:[10.0] "Ich kenne keine Frau im Mainstream-Wrestling, die in Sachen Ausstrahlung auch nur ansatzweise an Asuka herankommt. Sie ist over wie Sau, hoffe das wird sich übertragen, wenn sie ins Main Roster wechselt. Über ihre In Ring Skills ist auch alles gesagt worden. Asuka ist absolut Gold wert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "Loved Kana even before she came to WWE and started doing great work there. Brutal offense and very charismatic, even through a language barrier. I hope she will go as far as possible in WWE, I prefer her even to the "Four Horsewomen" on NXT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: KingChrizzly619wrote on 16.04.2016:[9.0] "Nach Paige mittlerweile zu meiner zweitliebsten Wrestling-Dame geworden... Sie hat wirklich das perfekte etwas, hoffe die WWE macht bei ihr alles richtig.  Persönliche Ausstrahlung: Ich stehe ja eigtl mehr auf den Typ Paige, aber irgendwas hat sie verdammt nochmal an sich (10/10 Punkte), das Gimmick ist bisher echt gut, ihr Auftreten samt Kleidungsstil und Gesichtsbemalung top (10/10), eine der besten Moves die ich je bei einer Frau gesehen hab (9/10). Micwork, schwierig zu beurteilen (6/10). Gibt bei mir einen Gesamtwert von 9/10 Punkten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Baschteywrote on 07.04.2016:[8.0] "Asuka. Meiner Meinung die zweitbeste Womens Wrestlerin auf dem Planeten. (Auf dem ersten Platz ist Sasha Banks. ) Sie ist die Queen of Strong Style. Ihre Moves sind extrem sauber und extrem gut, sie hat ein unglaubliches Charisma und eine tolle Ausstrahlung. Es ist zum einen cool dass sie jetzt NXT Womens Champion ist. Zum Anderen ist es doof, da sie deswegen erstmal nicht ins Main Roster kommt. Ich will sie dort definitiv sehen. Wenn sie Ende diesen Jahres ins Main Roster kommt, wäre ein tolle und lange Fehde gegen Paige ein Traum. Man könnte auch Becky Lynch gut dort einbinden. Das sind einfach die drei Frauen mit der längsten und besten Erfahrung. Perfekte Traum Matches. Die 3 komplett verschiedenen Wrestling Styles (Nein nicht AJ ;)) würden sich super ergänzen.  Please WWE, do it, do it now and do it right!   Abzug gibt es nur durch ihre schlechten Mic Skills. Das ist aber bei Japanern immer ein etwas spezielles Thema. :D"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: nitrop199wrote on 06.04.2016:[10.0] "Asuka/Kana is a fantastic technical and very stiff wrestler.  If you add to that a unique look/gear and a huge charisma, you have one of the best worker in the world, regardless of the gender."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Klabauterwrote on 03.04.2016:[10.0] ""The greatest competitor that ever signed here" - William Regal über Asuka. Er hatte recht!  Asuka/Kana ist eine der besten Wrestlerin der Welt und verdient nicht weniger als 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: AnarchyFallwrote on 29.03.2016:[8.0] "Asuka is really great. No suprise there, for most people, but she is. She has a lot of charisma, is a really, and I mean really great performer who is very smooth in the ring. She was adapted well to the enviroment of WWE and I really hope Vince doesn't ruin her when she steps over."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: RWIceWolfiewrote on 25.03.2016:[9.0] "Her work that she has done before signing with WWE should stand on its own. She is a firecracker! Sure, it always helps if you have mic skills but I honestly don't ever see her being much of a talker & personally I prefer her to tell her story in the ring & with those chilling facial expressions. Keeping her in NXT is a good choice right now for a few reasons, one, it allows her to become comfortable with how everything is done here in America. The way they train, the language, the culture, everything is new & I've seen plenty of great wrestlers get called up too quick & not be able to adjust. Two, this gives the "main" roster time to try to get some divas up to her level. There are some ... mostly the "diva revolution" that could face her but I question if they could keep up after awhile. They will need more then Charlotte, Sasha, Becky, & Paige. That round up would get tired of watching after a few months. I just hope WWE doesn't make a joke out of these girls, unlike many from the past these ladies know how to throw down."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Danc3rwrote on 04.03.2016:[9.0] "asuka is the best wrestler on the nxt roster in my opinion. she has not had many classic matches because she has yet to work with anyone as seasoned as her. We all saw the classic match she had with emma. we also get to see her with bailey. they need to bring in santana garrett full time as well as a few more experienced performers so they can get all they can out of this talent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Rjdshawnwrote on 22.02.2016:[10.0] "The only issue I have with Asuka is my worries about her mic ability. And even if she was horrid on the mic, I'd still rate her a 9, because she's that freakin good in the ring. She a badass in the ring with a badass theme song. If she got some character development, I'm sure she'll be a champion soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Jaxxwrote on 13.02.2016:[10.0] "10 Punkte. Alles andere wäre einfach nur lächerlich. Über die In-Ring-Skills braucht man eigentlich gar nicht zu reden. Asuka im Vergleich zu dem anderen NXT-Diven Gewächs... das ist wie ein Student in der Sonderschule. Die Frau hat ne richtig krasse Ausstrahlung. Dieses durchgeknallte Lächeln gepaart mit der Silent Killer Attitüde, wozu brauch die denn noch Mic-Skills? ! Richtig gut könnte ich mir auch ne Managerin für sie vorstellen, im ähnlichen Stil wie Heyman/Lesnar. Eigentlich muss sie schnell ins Main Roster, weil ihr bei NXT einfach niemand das Wasser reichen kann und Matches gegen Banks, Lynch oder Paige wären zumindest mal interessant und würden dann auch zeigen, zu was Asuka fähig ist. Bis dahin kickt sie halt weiterhin Gurken wie Dana Brooke oder Eva Marie durch den Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Wrestlingfan96wrote on 11.02.2016:[7.0] "Kannte sie vor WWe nicht. Gute Wrestlerin! Wertung wäre vielleicht etwas höher ausgefallen, aber ich mag dieses Arsch-Wrestling einfach nicht. Ich mein, das kann man mal machen, aber es sollte sich nicht durchs Match ziehen"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Phenomenal91wrote on 07.02.2016:[10.0] "Of course her work in the ring is a 10. That has been indisputably proven. But some folks on here are wondering whether she'll display any skill on the mic. I say, there have been tons of Divas with absolutely no mic skills who have risen to the top on ability alone (Gail Kim, for instance). Asuka just projects a badass aura. She's a sweetheart to the fans, giving them ample more reason to love her, but when she's in the ring... you just get the feeling you're about to watch the girlfight of a lifetime. No other woman (and not very many men) in the WWE right now project that aura. So we needn't worry about mic skills. One thing I WOULD like to address that nobody else has is that the rest of the Divas in the WWE are going to have to seriously step up their games to hang with Asuka. She's no dainty little model or dancer or cheerleader or Hooters waitress, the type of Diva WWE usually goes for. She's vicious and powerful. It's going to take someone just as vicious and powerful (maybe Paige? ) to match her skill. Here's to a bright future, with a shining legacy already built in."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: SapolBlackwrote on 03.02.2016:[9.0] "Eine Japanerin die nicht gut Ausschaut, sondern noch einen extreme Strong & Style Stil in NXT bringt.  Wrestling Technisch kann, ihr zu Zeit im NXT Roster niemand was vormachen, die Frage ist leider nur. Sogut wie sie auch ist, wird sie es im Main Roster überleben. 9 Punkte, weil sie noch sich am Mikrofon beweisen muss. Aber ansonnsten Top!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Naruedyohwrote on 28.01.2016:[10.0] "A excellent wrestler, for male or female. He has the looks of a devastating beast, moves extremely well and can make interesting even the lamest wrestler she fights. There are two things to solve: she doesn't know english and she's reaching old age for a wrestler and is still in NXT.   Get her a japanese looking english speaking manager and get her to the main roster ASAP."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Harlequinwrote on 11.01.2016:[7.0] "I'm really liking this NXT prospect. Exceptional in-ring ability with a good character of her own. Hoping to see more from Asuka as time goes on!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: mdkarlwrote on 02.01.2016:[10.0] "Plays the gimmick wonderfully... as a woman puts on matches I always enjoy watching her matches.  Her unique look really helps get her over.  Sadly I didn't see very much of her Japanese stuff and can't grade her work rate in that environment but as an American performer she's been great and I'm still feeling the best is yet to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: HouseWhiteWillRisewrote on 27.12.2015:[6.0] "Now this girl is very overrated in ring and she is just terrible on the mic the reason i give her a six is because she is pretty good in ring and i would give her a eight if she was in japan but now she is in wwe and just being good in ring doesn't cut it you have to be good on the mic have charisma and connect she does connect with the nxt crowd and she does deliver in ring but man she is horrible on the mic and here character is so cringe worthy i hope she improves or i dont think she will ever be divas champion or even make it to the main roster"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Desaster1978wrote on 20.12.2015:[7.0] "Hervorragende Wrestlerin die es auch versteht, schwächere Gegnerinnen mitzuziehen. Ihre Promoqualitäten kann man natürlich noch nicht bewerten aber alleine mit Ihrem durchdringenten Blick weiß sie ihre Gegnerinnen zu beeindrucken."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Play2Xwrote on 17.12.2015:[8.0] "Vorneweg: Lasst euch von der WWE nicht verarschen. Asuka bedeutet nur SEHR frei übersetzt Zukunft (Shorai/Mirai wäre eine genaue Übersetzung für Zukunft nahdistant und ferndistant, respektive). Asuka setzt sich zusammen aus den Kanji für 'morgieger Tag/morgen' und 'Blume', welches auch in ihrem alten Ringnamen enthalten war (Kana = 'berühmte Blume'). Nach dem kleinen Japanisch-Unterricht: Kana ist eine extrem aggressive und körperliche Wrestlerin, welche aufgrund ihrer Statur auch über gute Technik verfügt. Vorallem ihr weites Arsenal an Submissions kann dabei überzeugen. Dazu verfügt sie über realativ glaubhaftes Selling und In-Ring Psychologie. Ihr Manko liegt meiner Meinung nach in ihrer Ausstrahlung - ich nehme ihr ihr Auftreten und Gesichtsbemalung nicht groß ab, auch Interaktionen mit dem Publikum fehlen zugunsten von Realismus. Dadurch allerdings wirkt sie fokussierter auf das Match. Insgesamt natürlich eine formidable Wrestlerin, auf deren weiteren Weg in der WWE ich mich freue. Das einzige, was noch offen ist, sind ihre Promos: Ich habe ein paar ihrer japansichen Promos gesehen, in welchen sie sehr sicher wirkt, und das Publikum in ihrer Hand hat. Ob sie das auch in den USA kann, wird sich zeigen. Allerdings sollte das für sie zu schaffen sein."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Alo67wrote on 09.12.2015:[10.0] "Also ich kannte Asuka vorher nicht aber als ich sie in NXT gesehen habe hat sie mich sehr stark beindruckt . Sie ist echte erste Sahne im Ring , das Match bei NXT Takeover Respect muss man gesehen haben sie ist so schnell hat Submissions gezeigt die ich bis jetzt sehr selten gesehen habe , Das StrongStyle hat sie auch drauf . Ihr Gimmick stellt sie als ein Japanisches Zerstörerin dar , was mir sehr gut gefällt , sie kann es gut verkörpern .  Ich glaub sie kann noch sehr viel erreichen . Klasse diese Frau"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: MoonsaultsEdgecutionwrote on 28.11.2015:[8.0] "Asuka ist zweifelsohne stark im Ring, besitzt eine Menge Charisma und ist eine gute Wahl von WWE gewesen. Aber Leute, hier von der derzeit besten Wrestlerin der Welt zu sprechen halte ich bei aller Fairness für weit übertrieben. In meinen Augen kann sie weder Io Shirai noch Kairi Hojo das Wasser reichen, weder hinsichtlich der Ausstrahlung und erst recht nicht wrestlerisch. Mir persönlich gefällt selbst Mayu Iwatani noch besser, wenngleich Asuka hier in der Tat etwas mehr Charisma an den Tag legt. ;-)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: MusSanwrote on 23.11.2015:[10.0] "Ich muss zugeben, dass ich sie nicht kannte. Ich gucke normaler Weise keinen japanischen Promotionen wie NJPW oder NOAH, aber diese Asuka ist eine Granate im Ring. Sie hat sehr viel Charisma. Schade, dass die WWE sie nicht ins Main Roster holen will. Sie würde im Main Roster einschalgen wie eine Bombe, da bin ich mir sicher."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: La Trinawrote on 10.11.2015:[10.0] "Not really sure what to write about Asuka that someone else hasn't already pointed out. Fantastic all around wrestler, always exciting to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Obermackerwrote on 09.11.2015:[10.0] "Erfahrene japanische Wrestlerin, die zur Abwechslung auch mal ne entsprechende Oberweite besitzt. Absolut verdiente erste SMASH-Championess. UPDATE: Topwahl der WWE, die wohl beste Damenwrestlerin der Welt momentan!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Navidwrote on 06.11.2015:[10.0] "Ich sah zwar nur 2 Matches von ihr aber diese waren schon sehr beeindruckend. Kana besitzt tolle und vor allem realistische Aufgabegriffe und Bodenkombinationen. Dazu hat sie Kicks die an Geschwindigkeit und Präzision einigen Männern zum Vorbild reichen. Das mir ihr Kleidungsstil gefällt kann ich erwähnen während Aussehen natürlich keine Bedeutung haben sollte.  Update: Ihr 3 Minuten Match gegen Cameron vom 4. 11. 2015 zwingt mich die Wertung auf 10 zu erhöhen. Sowas stiffes hab ich nochnie gesehen. Bereits legendär ist die Szene in der sie, statt wie jeder andere einer Ohrfeige auszuweichen, diese nichtnur einsteckt sondern sogar entgegen geht um Cameron in den Armbar zu bekommen. Da bleiben nur 10 Punkte als Bewertung!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: JuliTheCage87wrote on 22.10.2015:[10.0] "Alter Falter, was ist das denn für eine. Ich bin echt sprachlos. Hab mich vorher noch nie so für japanisches Damenwrestling interessiert (abgesehen von dem einen oder anderen Youtube-Clip), aber sie scheint echt das non-plus-ultra zu sein. Wahnsinnig charismatisch, der wohl beste Theme Song aller Zeiten, eine fantastische Wrestlerin - Gänsehaut! Da wird wohl auch ihre Sprachbarriere kein Hindernis für den Sprung an die Spitze sein. Und die ist verdammt nochmal 34? Die sieht aus wie 20, damn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Kevin434wrote on 18.10.2015:[10.0] "Der Typ hier der ihr 6 Punkte gegeben hat hat offenbar keine Ahnung von wrestling und In-Ring Psychologie ist anscheinend ein Fremdwort für ihn. Falls du das liest: Bitte lösche deinen acc, danke.   Diese Frau ist so unfassbar gut im Ring sie besitzt nicht nur wahnsinns submission Moves, nein, sie kann ihre Gegnerin wunderbar durchs Match ziehen, ihre Gegnerin unfassbar gut stark darstellen, hat eine fantastische ring-psychologie, besitzt ein geniales Storytelling und ist kurz gesagt einfach nur grandios. Diese Frau ist aktuell die beste Wrestlerin der Welt, sorry Sasha Banks."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Sascha Legendkillerwrote on 16.10.2015:[6.0] "Asuka(toller Name ohne Scherz) ist als Wrestlerin okay, mehr nicht ich kann solche Überbewertungen nicht verstehen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Macho Madnesswrote on 10.10.2015:[10.0] "DAS ist eine Wrestlerin. Klasse Technik, dabei genügend kräftig um auch mal kraftvollere Aktionen zu zeigen. Bin total begeistert. Dazu eine total natürliche Ausstrahlung (wenn man mal von den vielen Farben absieht), kein Solariumsixpacksilikonblondchen, eine "richtige Frau". Da können die ganzen Daily Soap Diven im NXT/WWE Roster einpacken. Scheut sich auch nicht mal richtig in die Seile zu gehen. Ich will mich nicht zu weit aus dem Fenster lehnen, aber es würde mich nicht überraschen, wenn ihr eine goldene Zukunft bevorsteht. Allerdings.. Vince und seine Schreiber werden es schon versauen ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: 13goingondanielwrote on 07.07.2015:[10.0] "One of, if not THE best Joshi wrestler in the world today. After witnessing her matches against Meiko Satomura and Sara Del Rey it was very clear to me that Kana is not only one of the best wrestlers in Japan, but just one of the better and definitely one of the most unappreciated wrestlers in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: AlwaysAngrywrote on 29.01.2014:[10.0] "One of the greatest women wrestlers in the world right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: joshimaniawrote on 23.06.2013:[8.0] "Very intense and stiff with some good mat skills my type of wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Wanglerwrote on 07.02.2025:[10.0] "A hero to many. Was still taking hands down chair shots, blading, moonsaulting off ladders, or wearing them, and much more well into his late 50s when he needed both hips and knees replacing mid 40s. Always used to believe that if the bomb comes (hint: it won't) the only things left would be plastic, cockroaches and Terry Funk. Here's a frightening thought, if Funk's mortal then we all are. One of the greatest careers ever and if he's not a clear 10, then no one is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: crs285wrote on 15.01.2025:[9.0] "A 52 year career that should be celebrated. Funk changed with the times and his body's limitation going from a great technical wrestler to hardcore legend. Could do it all in his career, in the ring, promos and got reactions from fans whether face or heel. Overall legend in his career RIP Terry Funk."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: fatfanleywrote on 12.01.2025:[10.0] "One of the best to ever wrestle. Was amazing in any company doing any style at any age. A true Pro Wrestler whose matches will stand the test of time. Even in the garbage that was the end of WCW he managed to be the best worker there and brought believability to a terrible product. A true legend in every sense of the word!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: ItsAllAWorkAnywaywrote on 10.01.2025:[9.0] "Terry Funk had a long and storied career that spanned decades and geographic boundaries. Terry was never afraid of the rough stuff, and his penchant for grueling matches endeared him to the NWA faithful of the 1970s. Funk and his brother Dory Jr. also took their trade across the Pacific to All Japan, where they were long revered and regarded as a main event tag team. While the early 90s started off with a sort-of-lull, Funk found himself in demand for both ECW and FMW as a main event and attraction wrestler. This opened the door for Funk to finish the 20th Century with respective runs in WWE and WCW. He's since passed on as a a result of old age and a grueling style, but his legacy will always live on."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: kaeleighwrote on 21.09.2024:[10.0] "Wahrscheinlich der Beste Brawler in der Wrestling Geschichte. Nie der Techniker wie es sein Bruder war aber das musste Terry Funk auch nie sein. Seine größte Stärke ist sein physische Charisma. Überall und selbst in späten Jahren war dies wirklich das einzige was ein Terry Funk Match brauchte um unterhaltsam zu sein. Wenn wir jetzt noch dazu zählen, dass Terry ein unfassbares Timing und absolute perfektion wenn es darum geht etwas real wirken zu lassen, gibt es wirklich wenige Wrestler die besser sind als Terry Funk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: BrettThousandwrote on 09.09.2024:[10.0] "The ultimate ideal of a professional wrestler. Basically did it all at the highest level possible for as long as possible."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Zak22wrote on 23.08.2024:[8.0] "ah Terry, how the fuck do I explain giving Terry an 8. I do like Terry, I enjoy his work in Japan (AJPW and hardcore stuff in IWA-Japan and FMW), and his feud with Ric Flair featured my favourite ever I Quit Match. His promo talents were high as hell. Terry could work multiple styles very well, he could be heel, face, technical, hardcore or brawler. But some of his signature spots and some of his mannerisms and selling aren't for me. Some Terry matches, I really dislike. But look, massive legend with some fantastic matches and feuds, and incredible versatility."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: migrationswrote on 17.06.2024:[10.0] "The wrestling, the promo and the fucking seriousness of everything. This guy reminds me of Moxley and Eddie Kingston as two modern wrestlers who are very good and take the whole art form very seriously. The major difference is that Funk's career went on forever and his promos would often induce tears and crying in those watching. At this point I can say he is one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: singlemalttheorywrote on 11.06.2024:[10.0] "In the conversation for Greatest of All Time. He could do it all: grapple, character work, hardcore, brawl, and serve as the name most dropped by fake tough guys like CM Punk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: AndoCommandowrote on 28.05.2024:[10.0] "He's the greatest. Top tier babyface and heel, both through exceptionally unique circumstances (most beloved gaijin ever, hated across several, short stints across territories). The better half of an all-time tag team with his brother. Among the best brawlers ever, a pioneer of hardcore wrestling, could keep up with the best technicians of his time, and out stooge anyone he shared the ring with. A one-of-a-kind seller that plenty have tried to imitate, though never fully replicated because really, how the hell does one pull off half the stuff that came to his mind like second nature? On top of all that, an inspired hater. Throwing a raw chicken in Dustin Rhodes' face. Telling a horse to f**k off after it tried to mule kick him. Donning a shirt with the text "Dusty Sucks Eggs". Thinking back on it now, he might've also been the one to throw that rubber chicken at Cody after his WM39 loss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: JBTheTreewrote on 23.05.2024:[10.0] "I'll come back and add more depth as to my reasoning in future but for now I want Terry Funk to be the first wrestler I leave a comment and rating on. Simply put for me Terry Funk is the single greatest of all time. Rip. 5 Stars."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Rassle Fanwrote on 17.05.2024:[10.0] "I didn't come to appreciate how great Terry Funk was a everything a pro wrestler needs to be great at. A one of a kind legend and the kind of personality that really doesn't exist anymore."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: swissarmybazookawrote on 14.05.2024:[10.0] "The greatest wrestler to ever lace up a pair of boots in my opinion. His skill in every wrestling style is really what puts him over the top for me. Doesn't matter if it's death match/hardcore, american, strong style, lucha libre or technical he knew how to have the best match of the night regardless of the opponent. While he didn't always succeed in that aspect every Terry Funk match gave you something to remember after the show. Bret Hart and Ricky Steamboat are the closest to him but they don't have the same versatility as Funk did in his prime."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: devxntewrote on 23.04.2024:[10.0] "Terry Funk made you believe. He made you believe it was real and that everything he was saying was the God's honest truth in his mind. When thinking of top promo's, if Terry Funk doesn't come to mind, I think it's simply you have not watched enough of him. He's fantastic on the mic, he's fantastic in the ring, and there's a reason why he is so revered by fans and his peers alike. There is something in Terry Funk that many have tried to imitate and failed in all the years since he was a full time wrestler and that is legitness. You could believe he was crazy, you look at his program with Ric Flair, and you would've believed that a mad man was on the television screen. You look at his stuff with Lawler and again, you would've believed that a mad-man was on the screen. He had the weird ability to make you believe he was a legit madman but also a coward at the same time. He wasn't a cool heel, he was just a bad guy when he wanted to be and that's why he's so good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: thedman0310wrote on 20.03.2024:[10.0] "If Terry Funk isn't in your top three at least, you need to re-evaluate your priorities. Funk was a master of all trades, from classic technical wrestling to deathmatches. In my eyes, Funk is the embodiment of the wrestling business. Wild-eyed and crazy, but ultimately entertaining and kind of beautiful."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: RusherBryan29wrote on 06.02.2024:[10.0] "The Greatest Professional Wrestler of All time, and also my number one favorite. He can do it all, any style of pro wrestling you want. From his technical wrestling, japanese pro wrestling, Hardcore wrestling, even sports entertainment. One of best talker in pro wrestling. In my eyes, he is the definition of professional wrestler and professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: SavageTygerwrote on 01.02.2024:[10.0] "Terry Funk is the complete wrestler. There is not a style that Terry wasn't just good at, but excelled at. Whether it's showing his technical prowess in Japan in the early 70s, combining his technique with a stiff brawling style in the mid to late 80s, or losing his mind and going hardcore in the 90s, Terry Funk was a master of wrestling. He was able to cut a promo that would make you feel the entire range of emotions, he could flawlessly switch from face to heel (Watch the WrestleWar '89 post-match promo with Flair to see this at its peak) and Terry was above all else completely selfless and that is rare for a guy who could do pretty much whatever he wanted anywhere he went, but Terry always gave his all and put in everything he could to help develop those he had a chance to work with. Terry is just the best, period."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: JediSaiyanMaster1203wrote on 19.11.2023:[10.0] "Words truly can't describe how amazing Terry Funk is, he's the kind of wrestler you just need to see it to believe it. There's a reason that so many people still discuss him as among the greats after so many years have passed, because he was the perfect wrestler. Terry Funk is one of the best babyfaces and heels of all time, people truly adored this man, especially in Japan being arguably the best gaijin wrestler of all time. While we all meme the "Forever" promo, people forget that people were actually emotional over it and Terry Funk really meant that much to the people. As a heel, this man was as insane as you could get, his level of commitment to hating his opponents is legendary, (i.e. "Dusty Sucks Eggs" shirt) you could really believe that he hated his opponents and that he was willing to do anything to put them down. His feuds with the likes of Ric Flair, Jerry Lawler, Cactus Jack, Harley Race to name a few are legendary for a reason, matches and segments that are still discussed to this day. He was also an incredible promo guy, feeling authentic as a heel and babyface, naturally could command people's reaction as either, was also very funny when insulting his opponents and always entertaining to listen to. He was a true ring general, knew how to work the crowd, was an amazing storyteller, great ring psychology, an innovator in hardcore wrestling, did everything he could to give back to the business, never was afraid to adapt to the times and learn to appreciate the newer styles despite them being way after his prime, man did moonsaults in his 50s for crying out loud, a true legend in America and Japan. Overall, Terry Funk is one of the all time greats to ever do it, a legend for a reason, he was a true innovator and influencer to wrestling, we're truly lucky to have a guy like him in this industry. R.I.P. Terry Funk"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Angelus Fitzgeraldwrote on 18.09.2023:[10.0] "Terry Funk was arguably the greatest performer to ever come out of the Territory era. Not only he was a great wrestler and a personality but he did it for more than 40 years. He was either present or instrumental in the rise and most memorable moments of many wrestling promotions and performers. And unlike many of his peers who were very stubborn in changing with the times, terry not only evolve with the times but also did everything he could to build for the future. And there was never really a time where he wasn't a main featured guy or a time where he in one way or another didn't steal the show. He Could be a technician, a brawler, a hardcore wrestler (which he innovated most of it) or a high risk taker. He had the ability to always get over because he always knew how to read a crowd and adjust his presentation based on the audience he was performing. He was also famous for his numerous retirement matches which got to the point of being a joke within the industry. The Term "Greatest of all time" gets thrown a lot for a lot of performers. To Me "Greatest of all time" is not an individual, its a club and Terry Funk is right up there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: nothingleftinsidewrote on 02.09.2023:[10.0] "Now that he's gone, he is in everyone's all-time great conversation. And when you look at his career, it's hard to understand why he wasn't always in this conversation. He was relevant in so many different eras of wrestling, in so many different promotions, in so many different styles... I don't think there's anyone who can come close to something like that. Maybe Flair? Funk brought prestige with him everywhere he went; elevating places like ECW, FMW, and even late era WCW. The juxtaposition of him as an NWA champion and pioneer of deathmatch wrestling is an "only Nixon could go to China"-level mindfuck. Everywhere he went you could count on him for an entertaining match and a great promo. The guy really deserves a forensic career retrospective documentary; there's no one else like him in wrestling history. He had a run in so many different places and you got something good every time. Just look at his top ten matches here on cagematch- they span so many different styles, territories, and eras. That said, not *all* his matches are great, and if you're not into the deathmatch/hardcore style you're not going to like the majority of his matches that are easily accessible. Despite this, he belongs on most Mt Rushmores, especially the Mt Rusmore of promos. A+ promo, A gimmick, B in-ring. He's a strong 8 or 9 but his never-ending contributions to the sport push him up to 10. At the very least, you owe it to him to pull up a couple of his promos and give him the chance to convince you to watch some of his matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: InsertFunnyNameHerewrote on 25.08.2023:[10.0] "Terry is one of the top 10 wrestlers of all time, I have said this for years now. Its a shame it took his passing to remind me to sing my praises on my little soapbox here. His versatility in-ring as a technical whiz and a deathmatch legend is unmatched. His work on both sides of the pacific is legendary with great programs against Ric Flair, Harley Race, Atsushi Onita and most famously that egg sucking dog Dusty Rhodes. RIP to one of the innovators and icons of pro wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Excellence of Executionwrote on 25.08.2023:[10.0] "Absolute Legende! Hat mit seinem Bruder das japanische Wrestling aktiv gefördert und mitgestaltet. Eingedenk seiner kaputten Knie hat er sich im Ring dann so radikal neu erfunden wie kaum ein Wrestler vor oder nach ihm und wurde zu einem der besten Brawler - im Laufe der Zeit mit immer mehr Hardcore Anleihen. Spätestens in der ECW wurde er dann endgültig Kult, als durchgeknallter Hardcore Opa der Nation. Ein Image, das auch davon zerrt, dass Terry Funk, trotz eines Schaffens weit über seinen Zenit hinaus, immer noch entertainen konnte und dabei selten fehl am Platz wirkte. Sehr erfreulich auch, dass ihm trotz dessen ein respektables Alter vergönnt war. Ich ziehe meinen symbolischen Hut vor dem Funker!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: ChainsawJediswrote on 24.08.2023:[10.0] "There is something about the way Terry Funk spoke - he was direct and unsettling, a gruff Texas-born rancher with a silver tongue that spewed malice. He was also gifted in the ring, particularly in his physical prime of the 70s. It was a feat in itself he was capable of delivering satisfying endings to the enthralling stories he had crafted with his voice. At times he was a methodical bastard breaking his opponents down physically and psychologically. Others a chaotic swarm who attacked before the bell even began or engaged in hardcore arena-wide brawls decades before it became in-fashion mainstream. Always he was mean. He knew that personal issues drew money, he was as believable, as real as it got. I am still discovering his work, I have barely even begun to scratch the surface of a fabled career that spanned generations, much of which is not easily available online. I think maybe more than any wrestler, I know I will be revisiting it throughout my lifetime. I am deeply saddened to see him go, his unique perspective on the world and the business will be greatly missed. Every wrestler should try to be like Terry Funk, to take something from his game. He got what this thing was about, better than anyone. The man who understood the sport of pro wrestling, at its finest essence, more than else ever has."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: steviecwwrote on 24.08.2023:[10.0] "I didn't always appreciate Terry Funk, growing up with the attitude era I didn't fully understand who this old man called Funk was or why he was ECW World Heavyweight Champion over so many others. Looking back, I adore the man. An absolute great in his prime in the NWA and Japan who enjoyed a second prime as "middle aged and crazy" in ECW, WCW, WWF and abroad. Even as his years accelerated, he was called upon to provide credibility for matches in ROH, MLW and TNA and so many others. A hero and influence to many, his contribution is incalculable. FOREVER."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Foxmagic3wrote on 24.08.2023:"I think Terry Funk is the only wrestler we can objectively agree on, and say he deserves to be inside a top 10 greatest of all time list. Doesn't matter if it is number 10 or 1, the things he accomplished in the Wrestling business can't be replicated. Every reinvention he did was successful. From being a crazy heel in Memphis, being the most over Babyface gaijin in Japan, being a hardcore pioneer, being a pure wrestler as the NWA champion, and getting into brawling matches in WCW. Like his theme song from Legends Of Wrestling said, he gave his all. Rest In Peace to the most passionate wrestler ever, Terry Funk. Goodbye, Texas Bronco. Since I made a new account after I lost my other's info, I'll give the rating here. 10/10"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: PunkPariahwrote on 24.08.2023:[10.0] "The effect Terry had on wrestling was unfathomable. If something big was happening in wrestling, Terry was there. He could do it all and did do it all. Technical wrestling, brawling, sports entertainment, puro, deathmatch, etc. And he was damn near the best at all of em. Never a bad word said about this man. Left a mark on the wrestling world that will never ever be forgotten and will always be cherished. Rest easy Funker"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: LaothFriuswrote on 24.08.2023:[10.0] "Some wrestlers are one of a kind and the Texas Bronco will never be replicated, he loved the wrestling so much that he always came back, worked on all the most importante promotions on the world and was an inspiration for a lot of wrestlers either as the Hardcore Icon or the Living Legend Terry Funk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: smokestackwrote on 23.08.2023:[10.0] "He's the greatest professional wrestler ever. Not "one of". He's the greatest. I don't care if you liked Hulk Hogan growing up, or John Cena got you into wrestling, or Ric Flair is "the man." Terry Funk was, is, always will be more important than any of them. Forever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Wrestling Foreverwrote on 23.08.2023:[9.0] "Am 01.02.2023 habe ich das beim Matchguide Eintrag von Bret Hart vs Terry Funk geschrieben "Ich habe auf Twitter ein aktuelles Bild von Terry mit Mick gesehen wo man einen inzwischen sehr alten Terry sah. Er leidet ja unter gesundheitlichen Problemen aber ich bin froh das er noch lebt. Nun heute den 23.08.2023 habe ich durch mehrere Quellen eine der ersten war Ric Flair oder Mick Foley welcher es durch eine von Terry Töchter erfuhr das er heute im Alter von 79 Jahren gestorben ist. Man kann gar nicht in Worten schreiben was da wieder für eine Wrestling Legende geht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: No Onewrote on 23.08.2023:[10.0] "One of the greatest professional wrestlers of all time. One of the greatest in-ring performers of all time. Was 1/2 of one of the greatest tag teams of all time, The Funks, with his real life brother, the legendary Dory Funk Jr. They are the only brother pair to have both held the NWA World Heavyweight Championship. His father, Dory Funk Sr. was also a legendary wrestler. Achieved massive career longevity. Was extremely popular in Japan. One of the greatest Babyfaces of the 1970's. One of the greatest Heels of all time. One of the greatest promo artists of all time. One of the main guys that built ECW into a cult phenomenon. One of the early fathers of Independent Wrestling. Had great matches around the world. Feuds with Abdullah The Butcher, The Sheik, Cactus Jack, Harley Race, Ric Flair, Jerry "The King" Lawler, Stan Hansen, Bruiser Brody, Raven, Sabu, & Shane Douglas are legendary. Excellent tag team rivalry between The Funks vs. Jumbo Tsuruta & Giant Baba. The Funks became the first ever 3x AJPW Real World Tag League Tournament Winners. One of the most influential wrestlers of all time. One of the greatest sellers of all time. One of the greatest bumpers of all time. One of the best Ring Generals of all time. Incredible in-ring psychologist. Became one of the greatest & most influential Hardcore wrestlers of all time. Was the best in-ring performer in world over the age of 50 during the 1990's. Gave it his all in every match, and his body paid a heavy price for it. Highly charismatic. Held numerous championships all over territories & around the world. Was amazing at adapting to every decade & era that he wrestled in so that he never felt out of place. Wrestled for nearly every promotion that one could think of from the 1970's to the 2000's. UPDATED: RIP to the legendary Terry Funk!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: JoshBwrote on 10.07.2023:[10.0] "Terry Funk is the embodiment of what a wrestler is at their very best. I could go on and on about how good he was, across countless promotions, all over the world, over decades and many different styles of wrestling and audiences. The best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: danzitorockwrote on 20.06.2023:[10.0] "The king of hardcore wrestling, Terry Funk is one of the greatest and most important legends in the wrestling industry. He is a true pioneer of the hardcore style, with many contributions to his name... simply spectacular and legendary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Giantfan1980wrote on 07.06.2023:[7.0] "Nobody did the crazy cowboy gimmick like Terry Funk! Guy could do the basic wrestling stuff, the brawling stuff, the hardcore stuff, and he even started doing moonsaults in his old age. Middle aged and crazy!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: KKeanelwrote on 24.04.2023:[10.0] "Greatest all-arounder in history of this business. Absolute icon of wrestling, incredibly dedicated in every company and every match where he was involved in. Till his late 60s he took many impressive bumps on himself that many youngsters couldn't be ready to take. Huge respect for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: CMFunk007wrote on 07.01.2023:[9.0] "Terry Funk was an excellent entertainer. He was best as a nasty heel and his feud with Ric Flair in 1989 will forever cement him in the top tier of wrestlers for me. He could be a little goofy and over-the-top at times, but that made him endearing to me. His friendship with Mick Foley was inspired and the fact that Funk put his body through so much over the years to entertain us makes me love him even more."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: TooDarkMarkwrote on 30.11.2022:[10.0] "God tier professional wrestler. On every level. Storytelling, promos, adaption to companies and eras, in ring, outside the ring, interviews. Seriousness, comedy. Terry Funk is the perfect professional wrestler. Every young person should get a 10 hour tape of his work in the NWA in the 70s to protect his brother's world title reign, his feud with Jerry Lawler, his work in Florida with Dusty Rhodes, his Ric Flair work in the NWA in 1989, his ECW work from 94 to 97. And beloved back stage. He is the gold standard for professional wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: LoboXwrote on 31.10.2022:"Love this wrestler to death! There would ve no ECW without Terry Funk. There wouldbe no hardcore wrestling without Terry Funk. He always gives 100 percent for the fans. Future wrestlers could learn from Terry Funk."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: conker8wrote on 01.09.2022:[10.0] "Terry Funk is the GOAT both as a babyface in Japan and ECW (and his home territory) and a heel everywhere else (Crockett, Florida, Georgia, WWF). Great matches against Flair, Race, Abdullah & the Sheik, Hansen, Brody & Snuka."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: jboyaquarwrote on 26.08.2022:[10.0] "Revolutionized selling, oddball, original, intuitive, he played a charming bronco and a mean 'Przewalski's horse' prior to the more sentimental 'Desperado' character. A very committed performer, one would feel they got their money's worth. Excellent diversity, ornery but always mobile, as early as there is footage, I'm watching."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: KingsCrossingwrote on 05.07.2022:[10.0] "Terry Funk is without doubt one of the best of all time. A truly one of a kind professional wrestler with some of the very greatest promos in wrestling history and a litany of classic matches. There is absolutely nobody else in professional wrestling quite like Terry Funk, and he undoubtedly deserves to be in the conversation for greatest professional wrestler to ever live."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Conquistador37wrote on 31.03.2022:[10.0] "Unrivaled longevity. VERY giving to other wrestlers, the fans and the entire business. Incomparable dedication to the craft and art of professional wrestling. Over all of the decades of wrestling, if Terry Funk is/was on: your eyes and mind are/were GLUED. Absolutely outstanding and beyond remarkable talent who could never have enough praise heaped upon him. A man that could do (almost) everything and whom you NEVER got tired of watching. One of the best in ring careers ever. If you've only seen his wild brawling latter years, you're missing out on alot - first and foremost watch his feud with Ric Flair. it's a nice "middle era Terry Funk" to cut your teeth on. Then go back and forth over the years and find some gems; he really does his best to bring out something memorable no matter who his opponent is. The older I get the more I love Terry Funk! On a scale of zero to ten, GIVE HIM A 50!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Wright15wrote on 11.02.2022:[10.0] "From the young grappler and charismatic brother/tag team partner of the NWA world champion in the 1970s, to the moonsaulting deathmatch madman of the 1990s, Terry Funk reinvented himself as many times as he had retirement matches. Beloved in Japan, reviled in America, always ahead of the curve, and always in the world title scene for 20 years, one could make an argument that he is a dark horse candidate for the best wrestler to ever live."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: GriffinXwrote on 06.02.2022:[10.0] "I don't think there is anyone who truly loved wrestling as much as Terry Funk. Yes his many retirements were memes before memes were a thing but he couldn't stay away because he loved to wrestling. The man was willing to keep evolving to keep performing. And something so rare he wanted to make new stars because he knew his beloved wrestling needed them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: benny5bellyswrote on 11.12.2021:[10.0] "One of if not the greatest to ever don a pair of boots and some trunks. From promos to ring work I always find him spellbinding. Long live Terry Funk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: TigerDiverwrote on 19.09.2021:[10.0] "Truly one of the very best to ever grace a professional wrestling ring. The fact that he started his career in the 60s but still able to wrestle all the way into the 2000s speaks volume for itself. If he's not the greatest of all time, then he definitely must be in the top five at the very least. Real legend right here."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: texasyoshwrote on 06.07.2021:[10.0] "It's about time I rate Terry Funk. I'm not sure how you can put it without calling him the greatest of all time at what he did. Defined and defied pro wrestling, and is one of the most influential to step into the squared circle. could be a incredible babyface and a disgusting heel, he could do it all. he gave himself to this business, and should be remembered for it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: CoolKylewrote on 03.06.2021:[10.0] "Funk never phoned it in, which is why he will always be a legit legend in pro wrestling. I can't help but think he's easily the GOAT in my opinion, has had serious longevity, was NWA champ at a time when the belt really meant something, has been everywhere promotion wise, is massively influential, one of the most selfless veterans ever who was always willing to help and put over younger talent, seems like one of the nicest guys ever, was an incredible babyface and heel, had absolutely top notch promos and sold like a champ, was a big star in Japan and helped further and pioneer the styles of Hardcore and Deathmatch Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: KyleEnjoysWrestlingwrote on 10.03.2021:[10.0] "He's done it all. Not afraid to step out of his comfort zone & get others over. A mentor to the entire business. Too many classic matches & feuds to name."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: BEER CATwrote on 08.02.2021:[10.0] "Top Ten All Time and impossibly influential. A top-level promo, a natural and dynamic worker, pioneered several gimmick matches like Empty Arena and I Quit through his understanding and application of psychology within those rulesets. One of the best tag wrestlers of all time along with his brother. Shifted the paradigms of face vs, heel and gaijin vs. natives in Japan by getting over HUGE and a babyface, I've never seen anything like it. His career arc and constant reinventions have few equals. It's crazy to think his run as NWA World Heavyweight Champion is sort of his first chapter as a major star and isn't as well-known as his other work. The Flair feud in WCW was genius, his hardcore phase in IWA Japan and ECW wasn't just inspirational and groundbreaking, it made for some classic matches and legitimized what hardcore wrestling could do if the right kind of psychology, selling and storytelling was involved. Decently successful in his forays into acting, as well. And on top of all that, a tirelessly hard worked who remained dedicated to the craft, giving and giving until he just physically couldn't. His shtick is still being borrowed today by the 2020 Wrestler of the Year Jon Moxley. Terry Funk is a titan, an immortal, a hands-down all time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Brett1980wrote on 23.01.2021:[10.0] "Absolute legend. Could do it all have great technical matches, have great tag team matches with his brother in Japan, Could do the family friendly slapstick stuff and of course have wild and violent brawls. He can switch from comedic to violent in the blink of an eye."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: medousewrote on 04.11.2020:[9.0] "This man is a living legend. One of the best wrestlers when it comes to being versatile. Grappler, brawler and highflyer. He did some insane stunts in his career and he almost died or crippled himself way too many times. Great performer even at old age. He feared nothing and nobody. Great promos and bloody matches, that's what he is most recognizable from."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Residentwrote on 02.11.2020:[10.0] "One of the best wrestlers of all-time. A great brawler, but he was also technically skilled and great on the mic. A former NWA World champion, where he had one of the best feuds of all-time against Ric Flair. He would later wrestle in WWF, WCW, ECW where he was a 2-time ECW World champion including an ECW World Title win at ECW's first PPV Barely Legal and also in FMW and IWA Japan, where he wrestled in some crazy deathmatches, including the IWA Japan King of the Deathmatch finals against Cactus Jack. He has had a whole bunch of retirement matches, but I think he just couldn't ditch the wrestling bug because he has such a love for the business. A legend of the hardcore style. I feel like he and Cactus Jack popularized hardcore wrestling and without them there may have never been promotions like CZW and later GCW and ICW No Holds Barred. Funk also has one of my favorite wrestling books."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: JuWFEAEwrote on 21.09.2020:[10.0] "Terry Funks Matches unterhalten mich einfach immer gut. Egal ob Hardcore, Brawl oder früher bei der NWA Technisches Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Donniewrote on 04.08.2020:[10.0] ""I can't make people believe wrestling is real, but i can make them believe I'm real" Terry was the realest motherfucker to ever get in a ring. From his promos to his matches, and everything in between. Maybe the greatest to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: MildlyAmusingwrote on 03.08.2020:[10.0] "An icon of wrestling, Terry Funk's influence can't be understated. His phenomenal skills as a brawler helped create a sub genre of wrestling, his promo skills are incredibly underrated, his ability to be believable as face or heel, his amazing career longevity. Terry Funk is simply one of the best to ever step foot in a wrestling ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Kaswrote on 02.05.2020:[10.0] "The most versatile wrestler in the history of wrestling. He could do technical matches, brawls, deathmatches, and high work-rate matches all to huge levels of success, and could slot into the face or heel role seamlessly. On top of all this, he's one of the greatest promos of all time and has shown an incredible ability to get over anywhere, whether that's in WCW, All Japan, Memphis, or WWC."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: jajt1989wrote on 11.01.2020:[7.0] "Basing of what ive seen of him, great promo and brawler and hardcore wrestler but other then those not much else going for me. I'm sure the more i see my score will change though"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: JEK 1991wrote on 04.04.2019:[10.0] "A pioneer of hardcore wrestling. He changed the wrestling world forever. Excellent as a heel, great at promos and moves. I can't believe he is still wrestling and keeps saying he going to retire."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: zephyrwrote on 09.10.2018:[6.0] "I respect the man for his long (and I mean loooong) career and consistent willingness to engage in hardcore brawls but let's be honest here, aside from those things he never had much going for him."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Steamboat2511wrote on 02.10.2018:[7.0] "Terry Funk ist eine - vielleicht die - amerikanische Hardcorelegende. Aber Funk ist auch einer derjenigen Hardcorewrestler, die große technische Fähigkeiten aufweisen und jederzeit auch ein ansehnliches, normales Match zeigen können. Natürlich hat er viele legendäre Hardcorematches aufzuweisen, aber mit stark blutenden, sich um der Gewalt willen mit Feuer etc. attackierenden Wrestlern hab ichs nicht so. Da er ein enormes Standing als Legende hat und außerdem wirklich etwas drauf hat, kann ich seine Leistungen in allen Bereichen des Wrestlings aber sehr wertschätzen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: RatingsMachinewrote on 29.09.2018:[9.0] "Terry Funk is one of the all-time greats, who brought so much to the table. He could talk and get an angle over, he could wrestle and brawl, he could bump like a madman, as per the standards of the time, etc."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Rabidwrote on 22.04.2018:[9.0] "One of the most hardcore wrestlers of all time, not only could Terry Funk brawl, grapple, and even fly, he was the complete package. From his days in the 70? s wrestling Ric Flair winning the WWF Tag Team Titles with Mick Foley as Chainsaw Charlie. Terry Funk was a legendary personality who? s impact on the business can never be replicated."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Gauntlet84wrote on 21.04.2018:[8.0] "Even as a kid I heard stories about Terry Funk and Hoss Funk. My great grandpa was 97 in 1992 and he would talk about the Funk brothers. When I was a kid I remember him as Chainsaw Charlie but years later I rewatched all of the old WWF/WCW supercards and pay-per-views and really got to see him when he was younger. I never got to see his glory days in the late 60s and 70s but I still enjoyed what I did see from him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: CHN325wrote on 01.02.2018:[8.0] "No one has reinvented himself more than Terry Funk. No matter how old he was, no matter what style he was wrestling he made the match enjoyable to watch. A True legend."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Blood Pumpwrote on 30.03.2017:[9.0] "Third only to Steve Williams and Stan Hansen as far as brawling is concerned, but really the man was a jack of all trades. Terry was one of those rare all rounders who had it all to some extent. He could go to the mat, he could go fist to fist and he even knew how to make hardcore wrestling not so trashy. Terry did gravitate away from the technical side of things after the 70s but never lost his charm. He played the crazy heel well, having renowned feuds with Lawler and Flair in which he'd bring that crazy persona all the way in. His empty arena match with Jerry in particular is worth watching just to see how over the top he could be."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: TrevPuroFanwrote on 19.09.2016:[10.0] "Many people throw the word 'legend' around nowadays, but a guy who is one without a shadow of doubt is, Terry Funk. He's in my opinion the most versatile performer of all time, he could wrestle any style, any day. He could work both the heel and face role to perfection. Had classics for over 50 years that his career lasted. And if this is truly the final time he'll step into a wrestling ring, all I want to say is Thank You Terry Funk, you have nothing left to prove."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Luv all wrestlingwrote on 11.09.2016:[10.0] "Terry Funk is a legend for his legendary feuds and matches in the NWA, his crazy hardcore match career post NWA and for his yearly retirement match, Terry Funk is, and will always be a spectacle(A damn awesome one at that)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: NastyYaffawrote on 30.04.2016:[10.0] "Terry Funk is the definition of a wrestling legend. He lives, eats & breathes professional wrestling. One of the greatest babyface workers ever, one of the greatest heel workers ever, one of the best sellers ever... He could go on the mat, he could brawl like no else. He could do it all. Terry Funk is the man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: MatteoMerdokwrote on 17.04.2016:[7.0] "Basing my review on the matches of Funk that I've watched, I'm sure that as I see more my score will improve. Two of his high rated matches were big let downs for me. (vs Sabu in a barbed wire match and vs Flair in an I Quit match). Other matches have been really good. Looking forward to watching more of the Funker."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Moose Nuggetwrote on 03.03.2016:[10.0] "It's crazy how for so many decades Terry Funk was able to keep himself relevant as a pro wrestler. I feel like he's really underrated as a technical wrestler but that's probably because of his brother Dory. Funk was a great NWA World Heavyweight Champion being able to carry people to great 60 minute matches. For some reason after dropping the belt he fell out of the title picture. I loved his feud with Jerry Lawler in Memphis. In 1989 he became a unlikely contender for The NWA World Heavyweight Championship again. He had some great matches with Ric Flair in that time. He helped the independent promotion ECW and won their World Heavyweight Championship on their first pay per view in 1997. Terry Funk is an all time great worker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Phenomenal91wrote on 22.11.2015:[10.0] "Almost 50 years in the business. He says he's done for good now. Maybe, maybe not. But this man turned violent hardcore wrestling into an art form, but backed it up with some of the most legitimate skill you'd ever hope to see. He's probably broken everything 3 or 4 times by now, but he will always be one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Zedwrote on 19.05.2015:[10.0] "Er wrestlete schon als die meisten Fans noch nicht mal geboren waren, und er wrestlet auch heute noch, wenn auch nur noch selten. Doch zu NWA Zeiten war er ein sehr guter Wrestler, zusammen mit seinem Buder Dory. Im Alter von 45 Jahren merkte der Funker dass er den Stil von einst nicht mehr gehen konnte, und anstelle er es so tat wie die Meisten seiner Kollegen die in dem alter zurücktraten, erfand er sich einfach so nochmal neu und startete eine Hardcore Revolution, die in Japan begann und bis heute anhält. Hierfür verdient Terry meinen vollsten Respekt. Legende !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: downtown2wrote on 23.04.2015:[8.0] "Funk war immer ein guter Mann in der NWA, der stets sich und die Promotion würdig vertrat. Eine absolute Persönlichkeit in und außerhalb des Rings und das macht ihn erst zur Legende. Charaktere wie ihn gibt es nicht viele, gab es früher schon nicht und somit absolut aus der Masse hervorzuheben. Fürsorglich und aufopferungsvoll für seinen Sport und seine Kollegen, aber auch eigensinnig und speziell. Hier darf man Funk auch nicht verklären, denn seine späteren Aktivitäten im Hardcore-Bereich waren teils genial, teils aber auch eine Zumutung für seinen Körper und die Gesundheit seiner Gegner. Insgesamt aber ein Meilenstein in diesem Sport, ein großer Name und ein großer Mann."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: zackwoowoowooryderwrote on 09.01.2015:[9.0] "Zu seinen Anfangszeiten war er ein wirklich sehr guter Technicker, der selbst im "goldenen'' Alter durch seinen Wechsel zum Hardcore Wrestling noch unterhalten konnte und jetzt steht er mit 70 immernoch im Ring und bringt mehr als ordentliche Leistungen und dafür hat er meinen Respekt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Matt4Wrestlingwrote on 03.05.2014:[10.0] "Einer der wohl härtesten Brocken, die je in einem Ring gestiegen sind! Man ist oft fasziniert, wie er von Hardcore auf "normales" Wrestling umswitchen kann und wie es schon in der Doku Beyond the Mat hieß, wie ein freundlicher Mann zu solchen Sachen fähig ist und war! Vielleicht war nicht jedes seiner Matches ein 5-Sterne Match, aber mit welchen Eifer er immer hinter seinem Stil und seinem Einsatz hinter jeder Promotion stand, ist absolut TOP!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Roode66wrote on 20.02.2014:[10.0] "Es gehört mächtig was dazu, noch so spät in seiner Karriere so viel Einfluss auf Trends im Sport Entertainment zu haben und so viele Legendäre Momente zu haben. Was wäre uns alles tolles entgangen, hätte Funk schon seinen ersten Rücktritt durchgezogen? ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: PHILLYWALTwrote on 01.11.2013:[10.0] "What a great career. Its amazing that a 15 month reign as THE WORLD HEAVYWEIGHT CHAMPION, is an overlooked part of his resume. Worldwide Superstar, the re-invented himself into a hardcore legend. Of course you also have to consider the training credential he also has, maybe not the same as his brother but impressive inits own right.   A legend is many ways."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Leonewrote on 02.04.2013:[10.0] "Few wrestlers in the history of the industry have ever evolved as an in-ring performer like Terry Funk.  Some might even say that Funk has 3 different primes, consisting of eras and certain years.  His 1st prime was from his debut, up until his first retirement in 1981, he was a long-reigning NWA champion, well known for his strong technical wrestling, storytelling and brawling.  He eventually returned, and dawned a more texas outlaw-like gimmick.  It was during this time he became known for his strong promos, stronger storytelling, brawling and showmanship.  At the age of 44/45 in 1989, Terry Funk was in the best shape of his career, and had easily 1 of the best years, in terms of promo and match quality of any wrestler ever.  It was after this time that Terry began to evolve again, and reached another prime by 1997, at 52/53, this time he was a brawler, hardcore wrestler and even a high flyer!  He worked in the sickest barbed wire match in ECW history while he was their world champion, and took part in Japanese Deathmatches were barbed wire and explosives were the norm.  Throughout his career, Terry has wrestled in some of the best quality wrestling matches, the brutalist hardcore matches, cut some of the best promos, had the best title reigns, and trained some of the best wrestlers in the world from the 1980s onwards.  There will only be one Terry Funk, and I hope that someday someone will come along with that kind of skill and charisma again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: JuliTheCage87wrote on 21.02.2013:[10.0] "Hab mir ein paar alte Videos angeschaut und man muss sagen: WOW! Klasse Techniker und wahrscheinlich eine größere Hardcore-Legende als Mick Foley, zumal man ja sagen muss, dass Funk immer wie ein Mentor für ihn war. Jedoch sollte er es langsam gut sein lassen, er ist nun doch in einem fortgeschrittenen Alter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: The Woerpwrote on 06.02.2013:[4.0] "Zugegeben, ich kenne eigentlich nur seine Hardcore Schlachten, z. B. gegen Foley. Und die haben mir nicht gefallen. Vielleicht war er dort einfach schon zu alt...."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Italian Straight Edgewrote on 09.09.2012:[10.0] "Gehört in den Top 10 der größten aller Zeiten. Habe unfassbar viel Respekt für den Funker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Kitanoyamawrote on 30.08.2012:[8.0] "Wrestlerisch ehrlich gesagt jetzt nicht DIE Offenbarung, aber er ist, auch in der Hardcore-Szene, zurecht eine Legende. Er konnte einstecken, austeilen... was immer man wollte, und das auch weit über die 50 hinaus."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Senajwrote on 27.01.2012:[10.0] "Hardcore Icon, ich denke das sagt doch schon alles. Einer der ganz Großen seiner Zunft"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: 7TheEwrote on 17.12.2011:[8.0] "Puh war ganz früher ein verdammt guter Techniker, aber er ist natürlich am bekanntesten Hardcore modern zu machen, schon bevor es ECW gab war er ECW und so war es nur logisch das er dort auch hinkam.  Für viele eine unbekannte Legende ich kann mich eigentlich auch nur auf die ECW Zeit beschränken, da kenn ich einige Matches, am bekanntesten wohl das Barbed Wire Match, dass erste Match dieser art in Amerika. (wenn mich nicht alles täuscht) Am geilsten das er mit Mitte 50 angefangen hat Moonsaults zu springen und in Leiter Matches teilzunehmen.  Er wird warscheinlich irgendwann im Ring sterben, der Mann lebt und liebt das Wrestling wie kaum ein zweiter!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: exxterwrote on 02.04.2011:[10.0] "ECW Legende, und auch in anderen Promotion legendäre Matches geleistet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Ullewuppwrote on 07.02.2011:[10.0] "Terry Funk ist für mich ein einzigartiger Wrestler. Im Bereich Hardcore, sowohl im offensiver als auch defensiver Hinsicht, kann mit ihm wohl nur Mick Foley mithalten. Man denke hier einmal an das unglaublich brutale Barbed Wire Match gegen Sabu oder an das I Quit Match gegen Ric Flair. Abgesehen davon beherrscht er aber auch ein sehr großes Repertoire an technischen Aktionen, das er vor allem in der Frühphase seiner unglaublich langen und erfolgreichen Karriere zeigte. Er steht nun seit über 45 Jahren im Ring und weis immernoch abwechslungsreich zu unterhalten (etwas das z. B. Flair kaum noch kann). Der Funker prägt das Wrestling nun seit 5 Jahrzehnten und hat allein für seine große Anzahl an absoluten Matchklassikern nichts anderes als die 10 Punkte verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Rated R Champwrote on 06.02.2011:[10.0] "Terry Funk ist total verrückt, der Mann hat sein Leben wirklich dem Pro Wrestling verschrieben kehrt immer wieder in den Ring zurück. Kenne seine frühen Zeiten nicht, aber das was ich seit seiner ECW Zeit gesehen habe reicht mir. Gerade was Funk um hohen Alter noch an Leistung und Entwicklung(! ) vorweisen konnte ist einfach beeindruckend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: BenZenwrote on 15.12.2010:[10.0] "Beim Funker führt nichts an der Höchstnote vorbei. Für mich der wohl kultigste Typ des Wrestlings aller Zeiten. War auch schon vor den 90ern ein durchgeknallter Bastard. Brutale Schlachten mit Abdullah The Butcher oder hochklassige Main Events mit Ric Flair, der Kerl hatte es einfach drauf. Mit seiner stets unberechenbaren Art immer unterhaltsam und als er dann auch noch anfing mit Cactus und Sabu Meilensteine im Hardcore-Wrestling abzuliefern (nicht zu vergessen seine blutige Fehde mit Eddie Gilbert), erreichte er selbst über diese nicht so hoch geachtete Sparte Legendenstatus. Ein großartiger Charakter. Spinning Toe Hold~!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Finnish Nightmarewrote on 10.11.2010:[10.0] "Hat über jahrzehnte Topleistungen und geniale Matches gezeigt, der gute alte Onkel Terry!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Manu Adamswrote on 27.07.2010:[7.0] "Als Ekelpacket in den 80igern in der Liga der McMahons wußte er zu Gefallen, von seinen Matches in Japan oder Florida zusammen mit seinem Bruder Dory habe ich nur eine handvoll gesehen, aber auch hier war er für damalige Verhältnisse gut. In den 90igern hingegen als Hardcore Wrestler nicht mehr mein Fall. Ich bin kein großer Fan dieser Art von Wrestling. Sollte allerdings einfach aufhören seine Schuhe an den Nagel hängen und sich wie die meisten anderen vor dem Bildschirm das Wrestling reinziehen, ich meine der Mann ist 66 Jahre alt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Fountain of Misinformationwrote on 06.06.2010:[10.0] "Wrestling's Living Legend, mehr Worte muss man bei diesem Mann nicht verlieren, war fast überall dabei, hat fast alles im Ring einmal gemacht und hat in jeder Dekade, in der er aktiv war, bis heute sichtbare Spuren hinterlassen. Außerdem vermutlich eine der größten Persönlichkeiten im Wrestling-Business und ich bin sehr froh den Mann (gegen Finlay! ) Live erlebt zu haben. Was Lemmy Kilmister für den Rock'n'Roll ist, das ist Terry Funk für das Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Erasedwrote on 30.05.2010:[9.0] "Zu seinen Anfangszeiten ein wirklich sehr guter Technicker, der selbst im , , goldenen'' Alter durch seinen Wechsel zum Hardcore Wrestling noch unterhalten konnte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Marco Ewrote on 10.03.2010:[9.0] "Terry ist einfach eine Legende!  Konnte ihn einige Male live sehen und finde, er ist einer der unterhaltsamsten Wrestler der Welt. Und sicher auch einer der härtesten. 1 Punkt abzug, weil er natürlich den richtigen Zeitpunkt zum aufhören verpasst hat. Toller Wrestler!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: The-Game91wrote on 13.08.2009:[9.0] "Terry Funk ist ein Syonym für das Wort Hardcore. Er ist eine Legende und hat so einiges mitgemacht. Doch er hätte viel früher zurücktreten müssen um seine legendäre Glaubwürdigkeit nicht zu schaden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Eddiewrote on 03.06.2009:[6.0] "Vergleichbar mit Foley, er hätte einfach endlich mal aufhören sollen.. Damals in ROH 2003 war ich froh dass er überhaupt noch stehen konnte, das Match war dementsprechend.. Mein Fall auch nie gewesen, wie Foley, 6 Punkte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: ShakDragoonwrote on 05.02.2009:[10.0] "Einfach großartig, welch Aufopferung und Intensität er in seine Matches gesteckt hat. DIE Hardcore Icone schlechthin!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Matt Mackswrote on 24.01.2009:[10.0] "Terry Funk kann auf eine beeindruckende Karriere zurückblicken. Seine frühe Zeit mit Bruder Dory Funk Jr. kenne ich zu wenig, um sie wirklich bewerten zu können, aber seine "zweite Karriere" als Hardcore-Brawler ist sowieso weitaus definierender, was seine Reputation angeht. "Middle-aged and crazy" wurde er genannt und bis zum Ende seiner aktiven Karriere machte er diesem Namen alle Ehre. Mir bleiben in erster Linie seine Schlachten mit Mick Foley und Ric Flair in Erinnerung, doch viele Fans sehen in ihm auch die ECW-Ikone, ohne die es die ECW niemals geschafft hätte. So oder so, Funk gebührt Respekt für sein Lebenswerk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: N3m35i54wrote on 10.11.2008:[10.0] "Was muss man zu ihm noch sagen, außer volle Punktzahl?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: blackwhitesunwrote on 09.11.2008:[10.0] "Terry Funk braucht keine Bewertung, er spricht für sich selbst. Funk ist GOTT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Akkuswrote on 08.11.2008:[10.0] "Der Mann ist Hardcore. Mehr brauch ich dazu net zu sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: El Reywrote on 07.10.2008:[8.0] "Der Funkster ist die Hardcorelegende... Foley in allen Ehren."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: TerryBrunkwrote on 02.09.2008:[10.0] "Funk U! Der Mann hat es einfach drauf und ist unglaublich. Sein Körper ist vom Wrestling gezeichnet. Immer noch wrestlet er um ein bißchen Geld zu machen. Auf der einen Seite ist es traurig das er heute schon fast zum Ring getragen werden muss, aber auch schön dass er für seine Fans einfach alles gibt. Wenn seine Alkoholsucht ihn nicht umbringt, hätte er es verdient im Ring zu sterben und damit noch unsterblicher zu werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: nacho83wrote on 14.08.2008:[10.0] "Sein Barbed Wire-Match mit Sabu ist ein Highlight aller Hardcore Matches überhaupt, er selber zeigt(e) auch im hohen Alter noch unglaubliches Stehvermögen und ist einfach was den Hardcorebereich angeht eine Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Eaterwrote on 14.08.2008:[10.0] "Legendenbonus hin oder her, der Funker ist und bleibt einzigartig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: StoneColdRevowrote on 18.07.2008:[10.0] "Einer meine Lieblingswrestler überhaupt. Besonders toll ist das Barbed Wire Match zwischen Cactus Jack und Terry Funk in Japan. Ich hab erst gar nicht gewusst das er älter als Ric Flair ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Berndwrote on 14.07.2008:[10.0] "Natürlich gute 10 Jahre zu spät zurückgetreten, aber was soll's - er ist der Funker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Typhixwrote on 02.07.2008:[8.0] "Ich kenne Funk nur aus den 90ern und 00ern. Schon vor 10 Jahren war Funks Beweglichkeit deutlich sichtbar eingeschränkt und er weit über seine Zeit. Trotzdem wusste er die Massen zu begeistern, seine Erfahrung war ihm deutlich anzusehen. Was von Funk aber am meisten in Erinnerung bleibt, sind natürlich die Extreme Hardcore-Matches. Selten so einen verrückten Kerl gesehen, der immer Vollgas gab - egal was sein Körper dazu sagte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: caterwrote on 27.04.2008:[8.0] "Auch wenns schon oft geschrieben wurde: Hardcore-Legende. Trotzdem nicht die volle Punktzahl, da er an irgendeinem Punkt seiner Karriere vergessen hat aufzuhören."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: ZuluBunsenwrote on 24.03.2008:[10.0] "Ich glaube, dass die Gleichung "Terry Funk = Hardcore" genau aufgeht. Eine absolute Legende des Hardcorewrestling!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Masadawrote on 10.03.2008:[10.0] "Terry Funk ist Wrestling! Er liebt das Bis. und ist bis vor kurzem noch von Leitern geflogen und hat sich in Stacheldraht geschmissen. Dieser Mensch liebt das Wrestling wie kein anderer, das macht ihn für mich zum Besten aller Zeiten. (ich hoffe das war jetzt ausführlich genug)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: felixwrote on 16.02.2008:[10.0] "Terry Funk steht aufgrund seines Beitrages zum Wresling allgemein, nicht nur Hardcore, auf einer Stufe mit den ganz großen dieser Zunft. Er ist eine absolute lebende Legende, die ohne Frage die volle Bewertung verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Legionwrote on 29.01.2008:[8.0] "Am besten gefiel mir sein Stacheldraht Match gegen Sabu. So was sieht man heute einfach nicht mehr, schade eigentlich... Wie Mick Foley ein Hardcore Legende, hab ihn immer gern gesehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Baszdmegwrote on 01.01.2008:[10.0] "Eine Legende, auch wenn die Leistungen in den letzten Jahren verständlicherweise nicht das Gelbe vom Ei war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Kain Wolfsheadwrote on 24.10.2007:[10.0] "Legende. Punkt. Was schlechtes über diesen Mann zu sagen ist nicht möglich! Leider wird oft vergessen, dass Funk mehr als nur ein Hardcorewrestler war! Seine Tag Team Matches gemeinsam mit Bruder Dory jr. in Japan sind legendär! Sein Einsatz für Extreme Championship Wrestling beispiellos!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Masterpiecewrote on 15.10.2007:[10.0] "The Living "Hardcore" Legende ... mal sehen wann Terry sein Comback feiert!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Bhanduwrote on 08.10.2007:[8.0] "Früher ein guter Techniker und Brawler, so hat er sich im Alter von 50+ Jahren völlig neu erfunden und seine Nische in Hardcore Matches gefunden. Leider dennoch jemand, der den richtigen Zeitpunkt zum Rücktritt verpasst hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Nick Toxicwrote on 24.09.2007:[10.0] "Neben Mick Foley für mich der Inbegriff von Hardcore/Death Match! Dieser Mann hat soviel erreicht und ist eine lebende Legende. Seine seltenen Auftritte sind immer Highlights, weil Funk immer noch zu begeistern weis und sich echt für nix zu schade ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Steven McWheelerwrote on 31.08.2007:[8.0] "Kranker Typ, hardcore krass, mit jedoch zu viel für den guten Geschmack"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Hardcoremaniacwrote on 10.08.2007:[10.0] "Einfach eine Hardcore Legende. Aber er kann auch den ganz normalen Stil gehen. Ich habe ihn immer gerne gesehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: shannonmoorewrote on 08.08.2007:[8.0] "OK unter normalen Umständen ne miese Note wegen dem ganzen Hardcore Trash aber der Mann verdient sehr viel Respekt. Sich in dem Alter immer noch sowas seinem Körper anzutun das ist schon erstaunlich."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: D3adm4nwrote on 06.08.2007:[10.0] "Ganz klar, neben Mick Foley fällt einem sofort der Name 'Terry Funk' ein, wenn man das wort Hardcore hört. Einer der ganz großen, auch in den späten Jahren seiner Karriere..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Sandman16wrote on 05.08.2007:[10.0] "Unglaublich was Funk für Matches bestritten hat in seiner langen Karriere. Auch Respekt für seine Matches bei Hardcore Homecoming und ONS, und das in diesem Alter. Funk kann aber nicht nur in Hardcore Matches glänzen, sondern kann auch den normalen Wrestlingstil gehen. Terry ist ohne jeden Zweifel eine lebende Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Mick Funkwrote on 31.07.2007:[10.0] "Die Hardcore-Legende neben Mick Foley. Knallhart! Selbst im hohen Alter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Blade Bourdeauxwrote on 14.07.2007:[8.0] "Ein Mann hart, wie Kruppstahl und total durchgeknallt im Ring. Zudem besitz er schauspielerisches Talent, zumindest ein kleines. Also, im Endeffekt kann man diese absolute Hardcore Legende nur mit starken 8 Punkten bewerten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Adrammelechwrote on 24.06.2007:[8.0] "Seine Hardcore Matches sind legendär! Und trotz seines inzwischen hohen Alters zieht er seine Karriere durch. Respekt, nur Mick Foley ist für mich noch eine grössere HC Legende"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Seit Ewigkeiten mit dabei, vom puren Wrestling her zwar nicht der Brüller, aber seine Hardcore Matches sprechen für sich! Steht eigentlich fast auf einer Stufe mit Mick Foley!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: jollietwrote on 24.06.2007:[10.0] "Platz 2 auf der ewige Wrestlinghosenrangliste - nach Rick Rude"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: mdbnasewrote on 24.06.2007:[10.0] "Zwar kein Filigrantechnicker aber mit Leib & Seele Wrestler! Der BESTE HC-Wrestler aller Zeiten (kurz vor Mick Foley) und schont sich auch im Rentenalter nicht. Grösster Respekt vor so viel krankem Redneck-Enthusiasmus!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Blue Meaniewrote on 24.06.2007:[10.0] "Hardcore Legende! Schon allein die Tatsache, dass jeder seiner Moonsaults ein Upfuck war, macht ihn legendär ..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: nothingleftinsidewrote on 17.12.2024:[9.0] "Perhaps the greatest pure babyface of all time, Ricky Steamboat is one of the all time great wrestlers who is often overlooked, mostly due to his inconsistent career and lack of staying power that really would cement his legacy with fans. One of the best conditioned wrestlers ever, Steamboat was made famous from his multiple broadway-length matches between him and Ric Flair. A master of selling and getting sympathy, Steamboat excelled wherever he made an appearance. Unfortunately, anywhere he popped up he wasn't there for too long and would be out of the public eye every few years, keeping him from building real momentum. Highlights are his early matches with Flair, his 80s WWE run, and his late 80s/early 90s WCW runs. He hit Japan twice in the 80s, resulting is some classic matchups. His only weakness is probably his mic skills, but he was good enough for it not to matter much, especially when paired with an interesting heel or tag team partner. Even so, his promos have become the baseline blueprint for any babyface promo. He also never held a world title, probably due to his lack of being able to commit anywhere for long enough to be able to cement a world title reign. Several great runs with midcard belts though. A in the ring B+ look/gimmick, and C on promos. His arm drags were a thing of beauty."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Zak22wrote on 15.11.2024:[8.0] "On his day, the best or at least one of the best in the world. Unfortunately his day wasn't as consistent as some others. But yeah, capable of excellent performances and a good babyface."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: jsbortswrote on 19.09.2024:[10.0] "Ricky Steamboat is probably the best babyface in the history of wrestling. He is fantastic in every single way and is just one of my all time favorites, and one of those guys who could've gone in any era and been a star."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Cletxawrote on 16.08.2024:[10.0] "Although his mic skills were limited, Ricky Steamboat was a wrestler "beyond his era" in the ring. A Ricky with a good physique can put on tremendous performances in the 1970s, 90s, pg era and modern wrestling. I especially recommend watching his rivalry with Ric Flair. As a result, Ricky Steamboat is one of the most excellent wrestlers in the ring of his era"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: TheBigRed259wrote on 02.08.2024:[9.0] "Aside from being average on the mic, Ricky Steamboat was almost a perfect performer. Few could match him in the ring during his day and his matches with Ric Flair, Randy Savage and Steve Austin were fantastic to bordering on legendary."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Giantfan1980wrote on 25.06.2024:[9.0] "The only reason I don't give Steamboat a perfect 10 is because his mic skills were a little meh. He had the intensity and enough skills to carry 3 bums to a 3 star match. Not much else you can say about The Dragon."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Rassle Fanwrote on 19.04.2024:[9.0] "One of the greatest wrestlers ever! If he had any weakness it was his promos. He wasn't awful but he never really had a memorable one. That said, his timing and athleticism were world class and should be studied by any prospective wrestler worth their salt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: theelevatedonewrote on 13.04.2024:[10.0] "Ricky Steamboat is the wrestler that embodies the phrase "ahead of their time". It is simply insane to watch his matches from his main career run back, his work from back then still wrestles circles around so many people active today. Even in his mid 50s in the late 2000s he was still on top form. He is also one of the most likeable wrestlers of all time, his charisma and selling puts him at the top of the greatest natural babyfaces of all time ranks alongside Rey Mysterio, Hiroshi Tanahashi, Dusty Rhodes and Steve Austin. He is simply one of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Perc Anglewrote on 12.04.2024:[9.0] "He and The Macho Man are the wrestlers desperately wished I could have watched live but I was to busy not being born. What a captivating performer and in my top three of the Golden age"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: SJ Millerwrote on 22.02.2024:"Alongside Rey Mysterio, the most natural babyface in wrestling history. Wasn't a flashy talker and didn't need to be, he had handsome movie star features and yet was a very relatable real life personality. In the ring he was literal decades ahead of his time, during a brief return to WWE action in 2009 he proved that the way he wrestled in the '80s was the blueprint for how things are done today."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Scottielstamperwrote on 23.01.2024:[9.0] "9 The Dragon Ricky Steamboat is a Legend. Just his matches with Ric Flair or Randy Savage make him a top guy. I always thought Steamboat brought out the best in Flair and Savage. Even in the later part of his career he was doing great stuff with Steve Austin and others."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Smi-48wrote on 10.01.2024:[10.0] "Steamboat ist für mich in den 80ern das, was Bret Hart und Shawn Michaels in den frühen 90ern waren - nämlich das absolute Top Niveau im US-amerikanischen Main-Stream Wrestling. Es gibt kaum ein Match, in welchem er nicht den talentierteren Bestandteil darstellt, keine Underdog-Klaviatur, die er nicht gespielt hat, und kein verbissenes Comeback von ihm, welches irgendjemanden in der Halle kalt lässt. Steamboat ist ein Gardetechniker und Geschichtenerzähler, ein Sympath, ein Eckpfeiler im Business und eine Legende. Ich habe diesem Typen immer sehr gerne zugesehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Itayboiwrote on 06.01.2024:[10.0] "Maybe the best face in the hiatory of pro wretling, ricky the drafon steamboat is a one of a kind talnet. You will almost never see a bad match with him in it and when he was at his best (mostly aginst fliar) he could at times look prefect. He is in manny ways the template good guy having never cheating and always standing up for what his right yet nevr felt corny when doing so. In short the drgon is one of the graatest to ever step into a wrestling ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: crs285wrote on 25.11.2023:[10.0] "Steamboat was an innovator in pro wrestling. He was one of the first smaller stars to gain major popularity. He was the total package in the ring and the crowd absolutely loved him to the point nobody would turn him heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] "When discussing the greatest babyfaces of all time, you'll get names like Hulk Hogan, John Cena, Steve Austin, Daniel Bryan, Rey Mysterio, Jeff Hardy to name a few, one that most modern fans forget to add is this man right here, Ricky "The Dragon" Steamboat! Seriously, he's an easy top 5 in the best babyfaces, he's so organic as a good guy, he was born in the role and could never be a heel. Aside from that, Ricky Steamboat is among the most elite performers in the ring to ever grace the mat by having some of the best executed moves ever, his arm drag is still the best, and having some of the absolute best matches of all time with the likes of Randy Savage and Ric Flair to name a few, he's a total legend no matter who says what. He had it all, amazing seller, great babyface, off the charts psychology, working a crowd, wrestling, telling stories, etc. the only thing he didn't have was amazing promos, but he was at least serviceable at them, but that shouldn't be a reason to discredit him since he made up for it more than enough. It's a shame he retired while he was in his prime, in the middle of having a great feud with Steve Austin, as well, because I feel like he could have totally stuck around up until the early 2000s. Oh well, he's left behind a legendary career that will forever be immortalize thanks to his work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: DangoDaisukiwrote on 19.09.2023:[7.0] "Ricky Steamboat ist einer der Wrestler von früher der Potenzial zu mehr gehabt hätte als er zeigen durfte. Aber trotzdem würde ich ihn jetzt nicht so hoch bewerten. Charisma, Mic Skills etc ist eher so mittelmäßig und seine Matches waren besonders für damals ziemlich gut aber ich finde so gut jetzt auch wieder nicht."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: danzitorockwrote on 19.08.2023:[10.0] "Ricky "The Dragon" Steamboat is an absolute legend, one of the greatest pro wrestlers of all time. He is a legendary babyface, one of the most iconic we've ever had. His ring skills are flawless, he is very ahead of it's time and also is one of the most technical wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Wrestling Foreverwrote on 10.03.2023:[10.0] "Einfach eine absolute Legende. Immer Bodenständig und Fanfreundlich. Das er es immer noch selbst im hohen Alter drauf hat zeigte er bei BTW Return Of The Dragon. Hatte gegen Ric Flair eine der besten Langzeit Fehden im Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: cobrenzoswrote on 08.03.2023:[9.0] "One of the greatest babyfaces, incredible matches especially for the time, with many legendary feuds and matches he is an absolute legend of pro wrestling"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: benh2wrote on 11.01.2023:[9.0] "Bell to bell, one of the greatest babyfaces ever. Usually with perennial babyfaces you always get one demographic which doesn't like them but Ricky Steamboat transcended that. Everyone loved him. He just looked like a wrestler. Not a great promo but in the ring he just had that babyface match formula nailed. Always a good match and often great."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: CMFunk007wrote on 07.01.2023:[9.0] "Ricky "The Dragon" Steamboat was the WWF's answer to Bruce Lee in the '80s. I loved him back then, but love him even more now in retrospect. His Wrestlemania III match with Randy Savage I watched live and his trilogy with Ric Flair in 1989 are some of my favorites. He wasn't the greatest talker, but you could always count on Steamboat giving you a good in-ring performance."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: face painted legendwrote on 17.08.2022:[10.0] "The best babyface of all time, in my opinion. A guy with arguably the best physique in all of professional wrestling. A guy who looked the part. All of the girls loved him. All of the kids loved him. He had a great presentation as far as character went. He could sell his ass off. He could get sympathy from the crowd. He had great fire in the ring. He had a great comeback. He's one of the those guys who you never saw have a bad match. He had great in ring chemistry with 95% of the heels that he got in to the ring with and thus was able to produce some classic matches that stand the test of time. He didn't have the best mic skills, but he's one of the cases where he's so damn good in the ring that it overshadows what he couldn't deliver on the mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: JamesWackenhutwrote on 01.08.2022:[9.0] "As far as technical proficiency, he maxes out rating. His selling, being able to do baby face comebacks without ruin the illusion of previous injury or peril, is a master class. He surely has countless matches that didnt make it to TV every bit as legendary and amazing as his greatest hits. The completely basic baby face gimmick leading up to his feud with Flair didnt generate the heat that it could have- heat that would have made those matches resonate with wider audiences at time- because Flair was something of a tweener and not firing on Ricky as fraud or beholden to his wife. Unfortunately, Ricky was not as skilled at protecting his place on card, getting usurped by Funk after the trio of Flair matches were rushed through in less than 20 weeks, with tons of house show battles as well. His promo skills were not that amazing. And he wasn? t afraid to play third fiddle rather than wade into deep water with the political monsters. As a result, there is so much untapped potential there despite a CV worthy of the hall of fame and some of the greatest matches in North American and world history."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: sbg2022wrote on 18.07.2022:[10.0] "A man who has had some of the greatest matches of all time in wrestling. His match at WrestleMania III against the Macho Man was often regarded as the greatest match of all time or at least one of them. His feud with Ric Flair, was fucking LEGENDARY. That is the stuff that wrestling is made of."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Conquistador37wrote on 16.04.2022:[10.0] "Before I start gushing, we need to get his flaws out of the way. Yknow how he often sold things like COMPLETE DEATH or at least POTENTIALLY FATAL? Well, he even did this for the likes of Jimmy Jack Funk. Does the term "discretion is the better part of valor" mean anything to this man? Sell DEATH if you just got whipped about by the One Man Gang sure, but if you're giving enhancement talent the reaper's touch rub - someone needs to sit you down and explain the laws of the land. Second flaw: letting his hand fall down a 3rd time at the inaugural Royal Rumble, sheesh that looked BAD Ricky, really REALLY bad. Third Flaw, His WWF tenures were always messy/odd/iffy/dubious because of his ex-wife and/or the lingering bad taste she left behind. NOW! with those out of the way: One of the greatest chain wrestlers ever, almost every match has that one ridiculous sequence with about 18 near falls in around 6 seconds LOL. Outstanding fluidity, his body language and control was off the charts (a run away winner with the best "skin the cat"). Crowd connectivity/natural charisma in spades. Always looked in phenomenal shape (and when he was on the roids, looked INSANELY great). The best arm drags in the history of the business, one of the best leap frogs, some of the best chops. Could drag out something damn good with a paper bag, let alone another worker. Over the top mind blowing chemistry with Ric Flair & Steve Austin, notable outstanding chemistry with Rick Rude & Paul Orndorff. Legendary chemistry with Randy Savage. One of the best tag partners another could possibly have; that early team with Jay Youngblood hooked me INSTANTLY, the "mystery partner" moment with Dustin Rhodes is personally one of my biggest freak/geek/markout moments ever and he brought out the best from Shane Douglas when they teamed. I relish in every match he's worked, even the disappointments. Other notes: I appreciated the way he worked an arm bar by rocking back and forth. The "Dragon" gimmick with the fire breathing was SO FREAKIN COOL . The matches with Ric Flair really are as good as people make them out to be. His WCW tenure is criminally underrated (well except the Flair feud lol). I might add more later - would love nothing more than to use 3000 characters to endorse Ricky Steamboat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Ratewrestlewrote on 03.02.2022:[7.0] "Always had some good matches but i feel he didn't get to the level he needed to be at to be an all time great"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: GriffinXwrote on 23.01.2022:[10.0] "How do you not rate Ricky Steamboat a 10' He was damn near perfect in everything. He could grapple with the best of them. He was a highflyer that did it picture perfect. The fans loved him. Think of how many legends had their best match working with Steamboat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Abo96wrote on 04.01.2022:[10.0] "Das beste pure Babyface im Wrestling. Ein unglaublich sauberer Worker mit glaubhaftem Selling und überragenden Strikes. Trotz geringer Größe dank seiner Athletik auch gegen deutlich größere Worker glaubhaft. Die Matchserie gegen Ric Flair hat die wohl besten Wrestlingmatches aller Zeiten produziert. In der WWF leider nie konstant gepusht worden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: IBladeDailywrote on 08.10.2021:[9.0] "Steamboat is one of the all-time greatest babyfaces and greatest in-ring technicians ever. He had legendary feuds with Savage and Falir, amongst others, and the Flair series in 1989 still holds up as one of the all-time greats. I do feel his promos were occasionally unfocused or lacking in real heat, particularly after the Flair series started in 89'. His "good guy" credentials made him look extremely lame at times. But Ricky was bigger than all of that and had a hell of a good run in the 90's as well in tag teams with Shane Douglas and Dustin Rhodes and a very underrated rivalry with Steve Austin."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: TigerDiverwrote on 17.03.2021:[9.0] "The best babyface of all time. Know exactly how to get sympathy from the crowd. Can work against possibly any workers. A true legend in the ring. His only down point was his mic skill and promo."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Brett1980wrote on 23.01.2021:[10.0] "One of the best bell to bell in the 80s. In the WWF between 85 and 87 would usually have the best match on the card. Matches with Flair are legendary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Old ride long linewrote on 20.12.2020:[9.0] "He was an all time great ring technician. Had countless great matches with flair as well as macho man. Great look and great character that didn? t require him to be good on the mic. He probably deserves the 10s he gets but his lack of another 1 or 2 heavyweight titles holds him back for me."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: rainmakerpunkwrote on 20.10.2020:[10.0] "One of the best babyface in wrestling history, his character work is great and almost nobody can force you to root for him like Steamboat, but he's more than just the best babyface ever, he's one of the best in-ring workers ever, his 89 Flair matches do more than just hold up today, they're absolutely stunning"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: kcraig316wrote on 09.09.2020:[9.0] "As an adult, I can totally appreciate how technically sound he is. He also does a lot of classic babyface taunts. You don't see many people able to pull that off. His character is a one-dimensional, but we're looking at it with our modern eyes. Back in his day, that was all you needed. He was so easy to cheer for. I just always wanted to see him win. His loss to Honky still hurts me. I recently watched his 1990s WCW years, and he did have some great matches. However, I think his time was wasted often and he never reached his potential during the latter part of his career."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: ProWrestlingGuy316wrote on 22.07.2020:[10.0] "Das beste Babyface aller Zeiten, nicht mehr und nicht weniger. Noch dazu ein absolut überragender Wrestler, der auch eine Mülltonne zu einem guten Match ziehen konnte und zudem auch weit nach seinem eigentlichen Karriereende abgeliefert hat (bei Wrestlemania 25). Leider wurde er in der WWE zumeist unter Wert verkauft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Makai Clubwrote on 28.08.2019:[10.0] "Ricky Steamboat is one of those guys who I never really liked at a younger age - I had a ton of 80s DVDs when I was younger around 15 years ago so I watched a ton of Steamboat and others and he never got me excited or anything. It was odd. Thought he was fine but not worthy of his praise. But then over the past few years, I have begun watching older wrestling once again and as I started to watch more Steamboat matches, the more I begun to like and appreciate everything he has done. And now he is one of my all time favourites. Great, great feud with Flair, great series of matches with Savage. Tons of great matches ranging from Rude to Austin to Arn. One of the biggest reasons WCW in 92 shined. Had one of the best performances after years of not showing in 09. Just an around great wrestler. His selling is amazingly unique and something worth an essay on by itself. His offence is simplistic but his timing, the emotion and drama behind it makes it all the more great. His ability to keep you invested in him as a face without needed to turn heel is special as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: KyleEnjoysWrestlingwrote on 08.08.2019:[9.0] "A super fan favorite & a joy to watch in the ring. His mic skills & one-note persona are the only things that held him back from being in the conversation of best ever."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: mdkarlwrote on 03.06.2019:[9.0] "if I was only rating on workrate and highlight matches I would go 10... steamboat had some of my all time top 10 matches in history.  but promotional work/interviews are an important part of wrestling... the ability to talk fans into buying tickets to watch an upcoming match get settled.  steamboat was really at his best when some super charismatic opponent {randy savage/ric flair/jake roberts} was kicking his butt... as a clean cut babyface battling for his life, steamboat did a great job.. but it was the other guy who did all the mic/promo work to really get us to care.  9 is not a grade to be ashamed of I hope.  steamboat will always be one of my disappointments thought, because I did watch his prime and I kept thinking this guy was right on the edge of being a top 3-4 guy in the business.  he just never got to those heights despite all the top angles he was put in"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: zephyrwrote on 19.03.2019:[9.0] "One of the few people of his era who actually had the in-ring ability to be considered a legend today. Amazing."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: LandonRyanWyattwrote on 31.01.2019:[10.0] "A legend in the business that could go with anyone on any given day. Steamboat was technically sound and could fly like an eagle. An all time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: JEK 1991wrote on 01.11.2018:[10.0] "Excellent wrestler! He was quick, fast and agile in the ring. Always exciting to watch. He reminds me of Bruce Lee with the martial arts gimmick he had in the WWF. The Dragon gimmick was cool as well when he blew fire. His feuds with Flair were excellent having 60 minute matches and selling out arenas. Its unfortunate about his back when he had to end his career. A legend!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: RatingsMachinewrote on 12.10.2018:[10.0] "Ricky Steamboat was one of the best wrestlers of all time, and one of the best babyfaces of all time as well. He could sell so well, and in a manner that very few could replicate. People knock him for not being a good promo, but Ricky could deliver a great sports-style promo, something serious, that treated his match as something serious. In that respect, Ricky was like Bret Hart."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Steamboat2511wrote on 01.10.2018:[9.0] "Ricky Steamboat gehört zu den besten Wrestlern aller Zeiten. Technisch bis heute nur selten erreicht, hat er bereits in den 80ern und frühen 90ern Matches geführt, die schlichtweg begeistern. Eine Geschwindigkeit und Workingrate die ihresgleichen sucht. Ein Meister der Matchführung und des In-Ring-Entertainments war er obendrein. Persönlichkeit kann man ihm nicht absprechen, auch wenn im Gimmick-Bereich nichts herausragendes dabei war: Über fast die gesamte Karriere ein etwas glatter, wenn auch sympathischer Face zu sein, ist nicht gerade vielseitig. Sein Mic-Work war stets auf einem hohen, wenn auch nicht auf höchstem Niveau. Der letztendlich ganz große Run ist ihm aus verschiedensten Gründen nicht gelungen und so wird er immer als einer der besten, wenn auch nicht als einer der bekanntesten und charismatischsten Wrestler in Erinnerung bleiben. Und als mein Lieblingswrestler!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Gauntlet84wrote on 21.04.2018:[9.0] "Legendary wrestler. Not the greatest with promos but I loved that he was a consistent face for virtually his entire career. There were very few matches where I wasn't cheering for him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Viper99wrote on 01.02.2018:[9.0] "Ricky Steamboat ist ein sehr guter In Ring Performer gewesen. Er war ein Leben lang das absolute Babyface und war dafür einfach wie geboren. Sein In Ring Work war Exzellent, er hatte den Look und auch eine gewisse Präsenz im Ring. Trotzdem haderte es ihm immer an den Gestiken und Mimiken und den Promos, bei welchen er in seiner größten Rivalität aller Zeiten klar von Ric Flair gecarried wurde. Trotzdem eine Absolute Legende und eines der besten Pure Babyfaces aller Zeiten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: ianlapierrewrote on 04.11.2017:[6.0] "Ricky was a fantastic wrestler. He had so many great moments feuding with all time greats Ric Flair and Randy Savage. Even had some matches with a pre Stone Cold Steve Austin and Rick Rude. My big issue with Steamboat is that he was limited in his character. He did not stick with WWE for any length of time. And he was never booked the way he should have been. I put him in the same category as Benoit, Eddie, Jericho. He was a 10 wrestler. But in all the other categories that count like promos, longevity, drawing power, main events, charisma, adaptability etc he falls into more of a 6 to 8 rating."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: taabr2wrote on 10.09.2017:[9.0] "The greatest babyface wrestler of all time. Steamboat was an amazing seller and had great energetic offense that was a winning combination. It if wasn't for the fact that he was completely devoid of personality he would of been a top level draw for years."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Squared Circlewrote on 07.02.2017:[9.0] "A true pro.  Effective at every position on the mat.  With the lone exception of WrestleMania 2, I can't think of a bad performance (I think he may have been double parked that day).  I'd give him a ten, but a signature run as World Champion is missing from his resume.  I really enjoyed his work and I go back from time to time to revisit his matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: roy-harperwrote on 11.01.2017:[10.0] "Best Baby-Face ever, hatte technisch alles drauf, leider nur zu wenig Einzeltitel bekommen, unvergessen die Rivalität mit Flair. Klasse Matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: rjsbx11wrote on 07.01.2017:[10.0] "One of the best chain wrestlers ever, he could go hold for hold and move for move for an hour with anyone. His NWA/WCW stuff is amazing, and they still hold up to this day.  The best tribute to his wrestling abilities is that he became massively over in an era dominated by cartoonish characters with big personalities and bigger mouths as a fairly vanilla babyface with pretty poor mic skills."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Rasslin Ruleswrote on 31.08.2016:[10.0] "Bestes Babyface aller Zeiten und Revolutionär, der mit seinem spektakulerem In-Ring-Style das Wrestling für immer veränderte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Luv all wrestlingwrote on 08.08.2016:[10.0] "Ricky Steamboat is a tried and true babyface at is's finest. Has had many amazing matches with Ric Flair, and the first amazing wrestlemania match vs Randy Savage at wrestlemania 3. Also has plenty of great mid card matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: The Sick Lebowskiwrote on 14.06.2016:[9.0] "Grandioser Babyface-Wrestler, bei dessen Matches aufgrund seiner Beliebtheit fast immer eine Bombenstimmung herrschte. Im Ring zudem sehr stark und für seine Zeit voraus, wie allein das WM-Match gegen Randy Savage zeigt. Am Mikro auch gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: The Chosen Onewrote on 11.06.2016:[9.0] "Not only did Ricky Steamboat have one of the best WWE carriers in history but he also had a great carrier in WCW facing the likes of Steve Austin and Rick Rude. He had a great look and a great move set. He won multiple championships had tons of great matches. Overall Steamboat definitely deserved to be in the HOF. 9/10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Rastarazor1970wrote on 12.05.2016:[8.0] "Ricky Steamboat was the best good guy. Great wrestler, great skills and was pretty good talking smack. Some of the best wrestling is Steamboat+Youngblood vs. Flair+Valentine for US Tag Team Champions in the NWA days."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: EGeraldhuebnerwrote on 28.04.2016:"Über den Menschen bzw. Wrestler hinter seinem bekanntesten Gimmick muß man wohl kaum noch besonders viel sagen. Weltklasse, technisch betrachtet genial, hervorragende Nehmerqualitäten, konnte auch erstklassig austeilen, verkaufte beinahe jedes Match von und mit ihm sehr gut, egal gegen welchen Gegner und hatte zu recht einige Erfolge. Ironie an der ganzen Sache ist, wie bei "El Matador" Tito Santana ... hat Ricky "the Dragon" Steamboat sein Drachen Gimmick weniger geschadet, zumindest hierzulande. Denn er verkörperte selbst das noch sehr gut und es passte auch zu ihm. Man bekam sogar den Eindruck, er hat es sich alleine ausgedacht."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: blackmileswrote on 23.04.2016:[10.0] "Der Wahrscheinlich älteste den ich nur eine 10/10 in ring geben kann und der Zweitälteste den ich gesamt eine 10/10 geben kann. Der älteste Wrestler der ein *****Match geworkt hat. Das alles muss doch zeigen das er das wrestling revolutioniert hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Mean Smark Callouswrote on 16.04.2016:[9.0] "Everyone knows about WrestleMania III. But he also had a great run in WCW, including a classic feud with Rick Rude, that involved many exciting matches that showed off both men's endurance. Severely underused/booked by Vince in the 80's."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: DanTalksRasslinwrote on 27.09.2015:[10.0] "A consummate babyface and a smooth in-ring worker who was capable of having a good match with virtually anyone.  Steamboat was a common denominator in a number of wrestling's all-time classic matches, including vs. Randy Savage at WrestleMania III and the Chi-Town Rumble/Ragin' Cajun/Music City Showdown trilogy against Ric Flair.  If he had any weakness, it might be that he wasn't as strong a mic worker as some of his peers, but he was so good at telling a story in the ring that it didn't really matter.  15 years after his initial retirement, Steamboat had a brief but successful comeback run with WWE in 2009 before health issues retired him permanently.  Steamboat is deservedly ranked among the all-time greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: hankthetankwrote on 03.07.2015:[10.0] "What an amazing technique and I believe he was never a heel his entire career.  Put on great matches with Flair and Savage along with many others."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Paul Allainwrote on 24.02.2014:[10.0] "Simply Put, Ricky Steamboat is the best of his generation. The ultimate babyface of wrestling, is likeability is unparalleled and endures to this day. In an era of great wrestlers, he could take any of them and make something good, producing some of the most excellent wrestling exhibits of all-time with Ric Flair and Randy Savage. Even is brief return in 2009 was awe-inspiring, and there is probably no other wrestler that will be as good during his own entire life. Ricky Steamboat cannot be surpassed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: pappahousewrote on 01.06.2013:[9.0] "Krasser Kerl! Was er in den 80ern schon im Ring gezeigt hat ist einfach der Wahnsinn. Heute erwartet man diese Moves einfach, aber damals war das schon sehr sehr cool."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "Great performer and a true legend. One of the best wrestlers of the 1980s, with multiple 5-star classics to his name."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Kitanoyamawrote on 18.11.2012:[10.0] "Technisch ausgreifter und starker Worker der auch gutes High-Flying zeigen konnte. Ich kann zwar trotzdem nicht restlos nachvollziehen was ihm trotz seiner sehr guten Fähigkeiten so besonders machen soll, aber das ändert nichts daran das er ein Könner ist der auch noch im relativ hohem Alter was bewegen konnte.  UPDATE: Nachdem ich mir mal die Doku über Ricky Steamboat angesehen habe, komme ich zum Schluss das er doch 10 Punkte verdient hat. Er wuchs nie wirklich über sich hinaus, doch das musste er auch nicht. Seine Persönlichkeit, sein Mic-Work, sein ganzes Leben und auch sein gesamter Auftritt wirkten nur wenig bis garnicht abgedroschen, künstlich oder sonstwie in der Richtung. Er machte ganz einfach sein Ding und war dabei überhaupt nicht abgehoben. Zu Recht eine Legende des Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: LM Punkwrote on 30.08.2012:[7.0] "Super Techniker aber am Mirko hat er mich nicht immer so überzeugt. Leider oft unter Wert eingesetzt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Sirius Van Grathwrote on 13.02.2012:[10.0] "Einfach einer der besten Highflyer und Techniker der 80er und 90er! Und einer der wenigen, die wirklich im Alter noch klasse Matches zeigen können. Ich sage nur WrestleMania 25 und Backlash 2009!  Seiner Zeit war er weit vorraus und ist für mich die #1, von den Legenden, die einen World Title am meisten verdient hätten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Soopawrote on 14.08.2011:[8.0] "Sehr guter Wrestler. Für mich Irgendwie auch ein Beweis für das was die damalige WWF richtig gemacht hat. Jeder Wrestler stieg in den Ring um einen Titel zu gewinnen. Durch das wirkte jeder Titel wichtig. Heute geht es nur Darum wer jemandem was angetan hat. Steamboat ist für mich einfach der inbegriff des Perfekten Midcard Highflyers.  Deswegen nur 8Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: ManamiKidwrote on 25.06.2011:[10.0] "He made a lot of dream matches and matches of the year in 80's. He returned in 00's and did another fantastic match with Jericho at Backlash at the age of about 60, that's sick passion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: C0nspiracywrote on 29.03.2011:[6.0] "Ich weiß viele sagen Ricky Steamboat ist nen klasse Wrestler und ne Legende ect. Das unterschreibe ich durchaus aber betrachtet man das Gesamtpaket so konnte er nie einen draw wie die großen Stars zu seiner besten Zeit erzielen. Micwork durchschnitt."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Excellence of Executionwrote on 21.11.2010:[10.0] "Wer sich die Klassiker vom Dragon anschaut, weiß, warum der Mann eine Zeit lang zur amerikanischen Spitze gehörte. Habe noch nie ein schlechtes Match mit ihm gesehen. Im Grunde ist er der NWA Wrestler, der mich bei den alten Shows fast regelmäßig am meisten beeindruckt. Und sein Babyface-Selling ist wirklich großartig, wie der Grobrethoriker schon gesagt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Mizisawesomewrote on 07.10.2010:[10.0] "Einer der besten Wrestler aller Zeiten... Wer hier weniger als 8 Punkte gibt hat keine Ahnung vom Wrestling. Absolut tolle Ausstrahlung, großartige Technik, guter Körper, bei ihm passte einfach alles. Auch sein kleines Comeback um Wrestlemania 25 herum, das mit dem großartigen Match gegen Jericho sein Ende und gleichzeitig seinen Höhepunkt fand war absolut überragend. Die Matches dieses Mannes sind Lehrvideos für jeden, der mit Wrestling anfängt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: royalonewrote on 18.08.2010:[8.0] "als ich ihn das erstemal in der wwe sah, 91, da fand ich ihn echt langweilig aber mit der zeit und viele kämpfe später aus seiner vergangenheit, muss ich sagen solider wrestler,  aber ein fan bin ich nicht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Aesopwrote on 12.08.2010:[10.0] "Ich habe einige seiner alten Matches mit Flair gesehen und ich war begeistert. Auch mit schlechteren Gegnern als Flair konnte er überzeugen. Selbst im Jahre 2009 war er noch ganz gut, auch wenn Jericho wohl ein wenig nach geholfen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: GibDirDreggischwrote on 03.07.2010:[9.0] "Tjaja der Dragon, einer der größten seiner Zeit und auch bei seinem überraschenden comeback noch mehr als ansehnlich, er kann sich heute noch mit der Masse des WWE-Rosters messen und würde die bessere Show liefern, wie man bei WM25 und Backlash darauf gesehen hat. Nicht unbedingt ein Gott am Mic, aber das verzeiht ihm man bei diesen In-Ring-Skills gerne. Hätte nichts gegen den ein oder anderen Nostalgie-Auftritt einzuwenden, im Vergleich zu vielen anderen seiner Generation gilt hier wirklich: "You still got it! ""
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Medeawrote on 30.06.2010:[8.0] "Er verfügt neben einem guten Wrestlingstil über natürliches Charisma. Das macht ihn zu etwas besonderem."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: RockerDropperwrote on 30.05.2010:[9.0] "Begnadeter Wrestler, wie die fast einhellige Meinung hier ja zeigt. Seine nicht so tollen Mic-Skills hat er mit seinem Feuerspeier-Auftritt ziemlich gut ausgeglichen. Steamboat konnte mit jedem gute Matches haben, und wenn man sich seine Leistung heutzutage anschaut, nach all der Zeit ohne intensives Training, kann man ihn als Paradebeispiel anführen, das das Alter nicht zwangsläufig den Wrestler schlecht macht; man stelle sich vor, wie gut er noch ohne die lange Pause wäre! Gerade im Angesicht dieser Leistung finde ich es unwürdig, das er selbst zusammen mit Snuka und Piper Jericho nicht besiegen durfte; Ich denke, sein Sieg wäre angemessen gewesen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Erasedwrote on 30.05.2010:[10.0] "Mit großem Abstand einer der besten Technicker in der weiten Wrestlingwelt. Seine Matches in den 80ern werden verdient als eine der besten angesehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Eazyewrote on 26.03.2010:[10.0] "Immer gut über die Karriere im RIng und auch ausserhalb haben mir die Promos eigentlich gefallen... Das er jedoch noch in dem hohen Alter und gut 15 Jahre keinen Ring mehr betreten hatte lieferte er bei seiner spontanen Rückkehr wirklich eine gute Überaschung und war wirklich gut im Ring!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: The Cripplerwrote on 04.03.2010:[9.0] "War schon zu seinen aktiven Zeiten ein sehr guter Wrestler, aber seine Leistungen bei WM 25 und bei Backlash gehen einfach über das Mögliche für sein Alter hinaus."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Aquifelwrote on 08.02.2010:[10.0] "Zurecht eine Legende. Starker Techniker, der viele bahnbrechender Matches hatte und selbst letztes Jahr mit seinen Auftritten noch überzeugen konnte. Schade, dass ihm teilweise nicht der Erfolg in der WWE zu Teil wurde, den er verdient gehabt hätte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: downtown2wrote on 05.02.2010:[8.0] "Steamboat war wirklich eine Offenbahrung im Ring, seine Kämpfe sind für Fans von gepflegtem Wrestling eine Pflicht. Konstant sehr hohes Niveau über die Jahre, viele tolle Fehden und Erfolge. Abseits des Rings oft unbeholfen, einfach keine Entertainment-Qualitäten. Seis drum."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Fountain of Misinformationwrote on 16.01.2010:[9.0] "Begnadeter Wrestler, genialer Techniker und mit dem vielleicht besten Babyface-Selling aller Zeiten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Manu Adamswrote on 21.12.2009:[10.0] "Hat zu seiner besten Zeit in den 80igern viele ansehnlich ***** Klassiker abgeliefert, ob nun gegen Randy Savage 1987 oder die Matchserie gegen Ric Flair. Steamboat bleibt unvergessen und ich hoffe mal auf eine zukünftigen Hall of Fame Aufnahme, verdient hätte er sich dies allemal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: brianpillmanwrote on 27.11.2009:[8.0] "Großartiger Wrestler, der im Ring seiner Zeit weit voraus war. Allerdings mit großen Problemen im Bereich der Promos. Hier nur in der Fehde mit Ric Flair in der NWA wirklich herausragend."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: The-Game91wrote on 18.09.2009:[10.0] "Der Mann ist eine wahre Legende früher fand ich ihn nicht so beeindruckend aber mit steigendem Alter konnte er mich immer mehr und mehr überzeugen. Steamboat kann es einfach immer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Basket Casewrote on 15.09.2009:[10.0] "War früher schon richtig klasse im Ring, aber hat auch nach bei seinem Kurzcomeback dieses Jahr verdammt gut ausgesehen und könnte da einen Großteil des heutigen Rosters in die Tasche stecken. Klasse, der Dragon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: DJ MaSchwrote on 13.09.2009:[10.0] "Unvergessene Klassiker gegen Flair. Im Ring einer der besten aller Zeiten und wie man vor kurzem noch einmal senstationeller Weise erleben konnte auch 2009 noch wirklich überdurchschnittlich gut. Da vergebe ich auch gerne, dass er Charisma nicht gerade erfunden hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Hennewrote on 22.08.2009:[10.0] "Auch wenn er mittlerweile 56 Jahre ist, ist Ricky immer noch besser als mindestens 95% aller anderen Wrestler. Er hat nichts verlernt, obwohl er ca. 15 Jahre lang nicht im Ring stand. Er ist eine Bereicherung für die WWE, die aus seiner Erfahrung ja auch schon Nutzen zieht und ihn bei House Shows gegen Rookies antreten lässt. Vieleicht ist ein letztes Match gegen Flair bei der nächsten Wrestlemania gar nicht mehr so weit utopisch. Natürlich bekäme er die Bestnote ohne weiteres auch ohne im Jahr 2009 wieder in den Ring zu steigen, so möchte ich ihm fast 12 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Mick Funkwrote on 21.04.2009:[8.0] "Im Ring mit der beste Worker seiner Zeit, dem es leider etwas an Ausstrahlung fehlt. Wie man kürzlich sehen konnte hat er es auch im hohen Alter immer noch drauf."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: gerybundy68wrote on 11.04.2009:[9.0] "Völlig zu Recht in die Hall of Fame aufgenommen. Einer der Ersten High Flyer in der Wrestlingszene. Legendär die Matches mit dem Macho Man. Hat bewiesen, dass er es mit 56 noch immer drauf hat. Sollte ein Vorbild für viele Jungspunde sei , die schon denken große Stars zu sein."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: FratzenFressewrote on 10.04.2009:[10.0] "Klasse! Mit 56 noch besser als das halbe aktuelle Rooster!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Hunter2007wrote on 07.04.2009:[10.0] ""You still have it"-Parolen aus dem Publikum. Und das zurecht! Selbst mit 56 kann er noch einigermaßen mithalten, das durfte man jetzt noch 2 mal beobachten. Wenn ich Videos aus alten Zeiten gesehen habe, ist mir Steamboat mit einzigartigem Kampfstil aufgefallen. Etwas anderes als 10 Punkte sind für mich nicht denkbar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: ScrWwe94wrote on 07.04.2009:[10.0] "Toller Wretler, welcher in ner toller Verfassung ist siehe WM 25 und die darauf folgende RAW Sendung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Groissy12344wrote on 07.04.2009:[10.0] "Immer schon wahnsinnig stark! Seine Flair Matches waren einfach genial. Er überzeugte auch bei WM25 und ich könnte ihn mir nich weiter als Worker vorstellen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Eddiewrote on 28.11.2008:[9.0] "Wrestlinglegende die seiner Zeit voraus war, ich erinnere einfach an Wrestlemania 3. 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: The Mountiewrote on 02.08.2008:[9.0] "Einer der besten Wrestler seiner Zeit, was sogar mit dem Blick von 2008 auf die Matches der Achtziger mehr als deutlich wird. Zur Höchstnote fehlte es im aber doch etwas an Farbe. Er wäre heute vielleicht relativ vergessen, hätte ihm Ric Flair nicht die Tür zum World Title geöffnet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: ecw foreverwrote on 01.06.2008:[10.0] "Also wenn man ihm keine 10 gibt, wem dann? Er gehört zu den besten und seine Matches waren einfach genial. Sein Gimick überzeugte und er war leider nicht so lange Aktiv dass ich ihn hätte richtig verfolgen können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Garvinwrote on 10.04.2008:[10.0] "Er gehört einfach zur Elite des Wrestlings. Hat dieses Business geprägt und in eine neue Richtung gelenkt. Seine Matchserie gegen Ric Flair sagt alles aus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Aglaoswrote on 13.03.2008:[8.0] "Wenn ich mir die Fotos von Mr. Steamboat so ansehe, schießt mir sofort ein "Ach, das waren noch Zeiten" durch den Kopf. Sehr bemerkenswert finde ich dabei, dass ich ihn zu seinen besten Zeiten gar nicht erleben durfte. Aber der Mann ist für mich einfach der Inbegriff von Oldschool. Genau dieses Nostalgie-Empfinden wertet ihn aber in meinen Augen auf, denn zu seiner aktiven Zeit konnte ich nie so richtig etwas mit ihm anfangen. Deshalb gibt es von mir "nur" eine 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: lagunswrote on 13.03.2008:[10.0] "Meiner Meinung nach der absolut beste Wrestler aller! Zeiten. Konnte mit jedem Gegner ein gutes Match machen und wenn er gegen gleichwertige gekämpft hat (Flair, Savage) wurden daraus Klassiker und die besten Kämpfe der Geschichte. Hatte leider nich das Charistma um ein Megastar zu werden, aber sowas kann man wohl nicht trainieren. Finde auch nicht, das er als "Dragon" zu trashig war. Das Feuerspucken und das Kostüm waren voll cool! Aber auch ohne war er absolut genial! Hat auch seine Gegner immer gut aussehen lassen, was leider keine Selbstverständlichkeit ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Brahma Bullwrote on 04.01.2008:[8.0] "Super Wrestler. Ricky Steamboat konnte auch alles-unvergessen sein Match bei WM3 gegen Randy Savage. Fand das The Dragon Gimmick total fett-Feuerspucken fetzt!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Benny110106wrote on 28.10.2007:[8.0] "In den 80ern einer der innovativsten Wrestler und zurecht an vielen Klasikern beteiligt aber irgendwas fehlte um Hogan und Flair zu überholen. Daher nur eine 2 !"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Sandman16wrote on 16.10.2007:[10.0] "Zählt zu den ganz Großen was die Fähigkeiten im Ring betrifft. Da gehört er ohne jeden Zweifel zu den besten auf der Welt. Seine Matches gegen Flair und Savage sind ein Genuss für die Augen. Unfassbar wie man so einen Mann das lächerliche Gimmick des Dragon in der WWF geben konnte. Sowas hat er nicht verdient gehabt. Nichtsdestotrotz kann ich nichts anderes als 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: shannonmoorewrote on 03.10.2007:[10.0] "Klasse Mann ! Zugegeben als Gott das Charisma verteilt hat hat er wenig abbekommen aber das störte nur selten. Klasse Wrestler und dazu irre sympatisch der Dragon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: dariawrote on 30.09.2007:[10.0] "... wenn jemand den Award für den nettesten Superstar gewinnt, dann ist es wohl Ricky Steamboat, den muss man einfach gern haben - dazu kommt eine Supertechnik - eine Legende des Wrestlings"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Ray Robsonwrote on 15.09.2007:[10.0] "Mit etwas mehr Charisma wäre er heute größer als Ric Flair."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Grubackwrote on 12.09.2007:[10.0] "Einer der groaßartigsten Technicker in der m Geschichte des Sports, hatte zwar einige Titelruns, aber kommt insgesamt deutlich zu schlecht weg. Klarer Fall für die Hall of Fame"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Blade Bourdeauxwrote on 14.08.2007:[10.0] "Auch ohne große Fähigkeiten außerhalb der vier Pfosten, gebe ich im die vollen Punkte. Vor allem wegen seinem Match gegen Savage und den Matches gegen Flair. Denn was ihm außerhalb fehlte machte er im Ring 10mal wieder wett."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Dav1d1anwrote on 29.07.2007:[10.0] "Einfach nur Hammer Matches mit dem Nature BoyDaumen hoch!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Steven McWheelerwrote on 18.07.2007:[10.0] "Bei seinen Matches, vorallem gegen Ric Flair und dann noch seiner Technik muss die 10 fallen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Necronwrote on 08.07.2007:[6.0] "Guter Techniker, keine Frage. Aber sooooooo eine Mega-Legende ist der Steamer in meinen Augen nicht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Vom Gefühl her würde ich sagen, dass der Dragon neben dem Nature Boy einer der Topkanditaten für die Hall of Fame im nächsten Jahr ist! Im Ring einfach göttlich, unvergessen die Klassiker gegen Ric Flair und auch z. B. gegen den Macho Man! Nebenbei bemerkt, er hatte eine geniale Einmarschmusik!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Wichtgestaltwrote on 24.06.2007:[10.0] "Habe zwar nur das WM 3 - Match gesehen und den Rest nur gelesen, aber das reicht auch schon, volle 10. 0"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: DrPymwrote on 24.06.2007:[10.0] "und so huldigen wir Dir draaagooon, möge dein name für immer in den Wrestlingbüchern stehen... unser täglich bodypress vom obersten seil gib uns heute... wie auch wir geben dir einen figure four oder elbow drop... möge der Dragon ewig fliegen... geil der Mann"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Obermackerwrote on 24.06.2007:[10.0] "Seine ganze Karriere lang ein Top-Babyface und Worker!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: suntan superstarwrote on 24.06.2007:[10.0] "Der Dragon. Unvergessen durch seine Matches, der ruhige Familienmensch, der aus jedem ein super Match "rausholen konnte. Zu Schade das er schon aufgehört hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Khalid Acewrote on 04.02.2025:[6.0] "My previous rating of Shingo Takagi was actually a 10 and if it's about his whole career he will also get a 10 but this new rating is for his 2024-2025 form. He's been ok, nothing special. Even his performances at the G1 till now wasn't as good as he used to be."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: KReinke22wrote on 31.01.2025:[10.0] "One of the best wrestlers in modern times, even in his 40's Shingo is still putting on classics on a pretty regular basis."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Chefiwrote on 05.01.2025:[10.0] "[10.0] One of the very best wrestlers on planet earth and that is a hill I'm willing to die on. Everything he does is smooth and always has bangers. Love watching this dude wrestle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: TomTakagiwrote on 02.10.2024:[10.0] "Shingo Takagi is my favourite wrestler, so this may be a bit biased, but he has to get a 10 from me. His intensity is like nearly nobody else, and he can bring the fight out of his opponent with it. You regularly see him, to this day, pull the best match possible out of his opponent. I'm sure at some point he'll slow down, but it's not yet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Dweeeabwrote on 30.09.2024:[10.0] "Consistently one of the best wrestlers on the planet at anytime through his career. He can wrestle literally any style. You want technical hes got it, you want strong style hes got it, you want junior high speed stuff hes got it. Incredible wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: jsbortswrote on 08.09.2024:[10.0] "If you don't think Shingo Takagi is a great professional wrestler we just have different taste in wrestling. He has a lot of style, is incredibly smooth, hits hard, has a great skill set, puts everything in a believable way, and can outshine a variety of the best in this generation. Shingo Takagi could be in any promotion at any point anywhere in the world and still get over."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Rassle Fanwrote on 13.08.2024:[9.0] "Has great music, entrance attire and wrestling gear. He's also one of the best wrestlers of the last decade or so. He rarely, if ever, has a bad match and has exponentially gotten better every year."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Willie 19200wrote on 24.07.2024:[9.0] "Takagi is just so fun to watched and I really enjoy his work. His in-ring work reminds me a lot of old school Mitsuharu MIsawa where I always have full attention when his matches are on. His IWGP World Heavyweight Title reigns was great and I would not complain if he ever won the belt again. I definitely think he's one of the best in NJPW right now."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Aspionwrote on 22.07.2024:[9.0] "(Sorry english is not my firtst language) Clasis after clasic thats all what i can say about him. The japan dragon is something"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: AriJarrettwrote on 21.05.2024:[10.0] "When I get depressed, I imagine an alternate timeline where Shingo was in 1990's AJPW and early NOAH, and in that exact moment I am in peace. Shingo is probably the best overall wrestler in NJPW right now, and whilst Shingo started his career in Dragongate and such, he's also the best representation of everything I love about NJPW as a whole. Additionally, Shingo is also probably the best baby-face there is right now in wrestling generally, he's so lovable and he's great at making the audience get invested in his matches. But still, I believe Shingo could've been near the top of the entire wrestling whole if he wrestled in the same generation as Misawa and Takada, he's generally that good and surely he must be IWGP champion once more before he retires."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: BruceMarcos524wrote on 18.04.2024:[9.0] "Takagi is the best LIJ member in terms of match catalogue. I don't have any much idea during his time in Dragon Gate, so I am only reviewing his time in NJPW. Takagi's hybrid of powerhouse and heavy hitter makes him one of the very difficult opponents to deal and to catch up with. He had amazing matches with Tomohiro Ishii, Kazuchika Okada and most notably, Will Ospreay. Takagi always make the match better even when he faces average guys like EVIL, Taichi and Toru Yano. He is the guy who has a slew of 5-star matches because of his insane work in the ring. His mentality reminds me of a samurai and that's why I love Takagi. He respected the business very much and he is one of the guys who takes the sport very seriously. No doubt whomever opponent he pairs with, expect that you will have a great match. He had a great set of moves like the Last of the Dragon, Pumping Bomber, making his finishers very devastating. The reason why I am not giving him a full-fledge 10/10 rating is there is a little bit of holding back due to being a part of LIJ probably because they don't want to outshine Naito since he is the leader and their star. I knew that there is something Takagi still hides, maybe a darker version of Takagi perhaps. He needs to go solo or create a new faction with himself as a leader so that he can fully establish himself in NJPW, as he is the only guy that even going out of LIJ would not affect the state and career of Takagi unlike EVIL and SANADA whose careers are going nowhere. A total package wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Lauchlanwrote on 26.02.2024:[10.0] "Shingo always delivers in his matches and one of them guys who drags out the best in his opponents, I love watching him and believe he is one of the best wrestlers anywhere in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Hyunminleewrote on 09.02.2024:[10.0] "He is my favorite superstar in todays wrestling. He is great at in-ring and he is great at cutting promo too. And he is very charismatic man. He knows how to make great matches. His IWGP wolrd heavyweight championship run was great and saved NJPW. He was great when he was in DG too. His rivalry with Will Ospreay is one of the greatest rivalry of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: mxxjimawrote on 06.02.2024:"One of the most consistent in ring talents in the world for the past 10 years almost. Shingo has one of my favorite movesets in wrestling ever, hope he gets another main title run either in New Japan or wherever he goes in the future."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: skillgullwrote on 10.01.2024:[10.0] "Shingo Takagi is awesome. his matches are always great. He hits hard, is effortlessly cool and has charisma to burn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: TheOneAndOnlyCactuswrote on 31.12.2023:[10.0] "Shingo Takagi is my favorite wrestler in the world currently, so obviously him being on this list is no shocker in that regard but oh... my God I just love this man! He is so fucking good! Look, I get that he is never going to touch the world title again and I have accepted that. But he absolutely has all the tools to still be a believable world champion. Not only is he an incredibly versatile talent between the ropes, capable of adapting to pretty much any opponent to deliver a great match, but he is also a great character, and will make anything you throw at him work. He carried NJPW through 2021 in a tough period as its world champion. He has brought more relevancy to the King Of Pro-Wrestling Championship than anyone else before and made it a title worth fighting for. Takagi is just amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: danzitorockwrote on 19.12.2023:[9.0] "Amazing wrestler, one of the most adaptable of all time, the guy can work every type of match against a huge variety of opponents and execute with perfection their kind of match, Shingo is a chameleon, what a special wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: WrestlingBullwrote on 05.08.2023:[9.0] "Shingo Takagi is a fucking unit. A one man wrecking crew. He simply excels at everything, from his in ring offense to his selling. He is also charismatic and a good talker. Shame that his only World title reign was during the pandemic and he will probably never touch that belt again. He deserves way more than the awful KOPW title or the NEVER title. If he never wins the big one again NJPW should bring back the Intercontinental Championship and give it to Shingo with a long ass reign. He truly deserves it. I'd love to see him in AJPW or NOAH and see him win the Triple Crown and GHC."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: UltimoDragonwrote on 22.07.2023:[10.0] "From his spell in the dying days of Crazy MAX and Toryumon to being in the super group Blood Generation, you could tell Shingo would be a Dream Gate champion without a shadow of a doubt. His work continued to impress with each outing and his rivalry with BXB Hulk helped to elevate Takagi very quickly within DG. Under the wing of CIMA, Shingo was protected and steadily pushed and formed successful teams with former rival BXB Hulk and with DG Ace YAMATO to great effect. When he had acheived all he could, he left to NJPW and continued to steadily rise including a NJPW title run. The Dragon / Pumping Bomber has returned on occasions and hopefully will return finally to Dragon Gate. When asked, he has said NJPW is work, Dragon Gate is home."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Hillwrote on 17.06.2023:[10.0] "The perfect power wrestler. Fast and agile and can hit like a damn truck with his lariats. He has always delivered since debuting with the LIJ, but he really brought prestige to the new IWGP Heavyweight championship with some killer matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Frank Shooterwrote on 25.05.2023:[10.0] "One of the best Wrestlers I've ever seen. Power, speed, stamina, presence, great offense, perfect execution, strong-style master."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: coppercowrieswrote on 05.05.2023:[8.0] "What a beautiful man. He can put on tremendous matches, and has a great look and natural charisma. His character work with guys like ELP is hilarious. There are still many matches I would like to see before his bump card fills up."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: IronStarwrote on 11.03.2023:[10.0] "Shingo Takagi is the one of the best in ring performers in pro wrestling. He is too charismatic and very good at microphone. If you just look to his moveset you may say Shingo is not that good but if you watch him you will understand why he is that good. I hope he will get 1 more world championship before his retirement."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Senorsombrero3kwrote on 11.02.2023:[10.0] "As someone who knew nothing about Shingo when he came into New Japan, he quickly became one of my favourites just through his work as both a junior and later heavyweight. It's very rare you see a bad Shingo match and to be honest, I'm mostly writing a review due to the sheer negativity of the review below mine."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: benh2wrote on 11.01.2023:[8.0] "Just an all round badass. Can go with the best of them and has some great offence. Was really cool to see him get a run as IWGP champion after being consistently great for many years. His only downside is that he has never really been able to create a great series of matches with anyone, with a story that developed over the duration."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: MainEventMasterwrote on 26.10.2022:[10.0] "He is the perfect professional wrestler, has nothing but great things said about him, impressively charismatic, and one of the greatest workers ever. Shingo Takagi is the best singles wrestler going today, followed closely by Will Ospreay."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: zags7000wrote on 13.08.2022:[10.0] "He doesn't get as much attention as he came to NJPW later in his career, and while he was great in Dragon Gate, it's not viewed on the same level unfortunately. He immediately rose to the top when got there and became one of the company's best. Still, as many people haven't seen him as much as say Okada or Tanahashi, he's on their level. An incredible wrestler and very charismatic, he's rightfully getting his due as one of the best of his generation, even if he still remains underrated. His run of matches with Will Ospreay are some of the best all time. His inclusion to LIJ was much needed as well and gave the group some new life as they seemed to be getting old at the time he joined."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Tyler72wrote on 29.07.2022:[9.0] "The Dragon Shingo Takagi continues to impress me in every one of his matches with his amount of focus, intensity and power behind every one of his moves, all while being complimented by some of the best counter sequences I've ever seen in any wrestling match. One of my favourite move sets in all of NJPW with his powerful Last of the Dragon finisher."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Rahul77wrote on 21.05.2022:[10.0] "One of the best wrestler of all time and one the wrestler among my mount Rushmore with Kurt Angle, Eddie Guerrero and AJ Styles. I know it is very odd one pick him now in a Mount Rushmore as he is proving every thing now. It was very see for me to pick other 3 but Shingo made me to watch every single matches of his even if it is a random tag team match in NJPW. I know there are so many wrestlers in New Japan likes of Okada Naito Tanahashi Hiromu even though I watched them before Shingo he made it special for me. Let the Dragon ROAR forever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Wrestling Foreverwrote on 21.03.2022:[10.0] "Neben CIMA und BxB Hulk mein absoluter Liebling von Dragon Gate. Ein unfassbares Powerhouse mit auch sehr großer Beweglichkeit. Shingo ist immer ein Granat für Top Matches. Vor allem natürlich gegen seinen Lehrer CIMA oder gegen BxB Hulk. Sollte es mal eine Dragon Gate Hall of Fame geben kommt SHINGO zu 100% rein. Edit: 21.03.2022 ist seit Jahren auch bei NJPW einfach nur großartig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: NoSellwrote on 10.02.2022:[10.0] "Best wrestler in the world last year for me. He's just unreal. NJPW got worse but he just got better and better."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: GriffinXwrote on 21.01.2022:[10.0] "A much needed bright spot for NJPW and equally needed fresh face in the main event scene. Picked up the level of the NEVER title and also was a strong World Champion even with all the controversy around the new title being created."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Kungwrote on 04.01.2022:[10.0] "Without this man, New Japan would've been a much bleaker promotion to watch in both 2020 and 2021. Shingo is one of if not the best big match wrestler in the entire sport right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: NikoKillbainwrote on 01.01.2022:[10.0] "If NJPW got one thing right this year, it was to screw the tradition of faction leaders as World Champion, and allowing Shingo to shine. His NEVER Openweight title defense vs Cobb at Wrestle Kingdom was tremendous, and the Tanahashi match was very good. He then provided a top level challenger to Ospreay and Okada, and had a blistering G1 run against Ishii, ZSJ and Ibushi. He has as much charisma and appeal as anyone in New Japan, and has made the top spot his own. Here's hoping he keeps that spot."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: mrpwrote on 10.12.2021:[10.0] "He had an Amazing 2021 ! Started the year with 10 out of 10 match with Cobb, and my Match Of The Year with Will Ospreay (at Wrestling Dontaku), It's hard for me to choose who is the wrestler of the year Shingo or Kenny Omega, but who cares i am just glad i got to see them wrestle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Justtwrote on 26.10.2021:[10.0] "Shingo is great! He is carrying NJPW on his back since the pandemic started and I'm so happy that he is the world champion right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Okaro143wrote on 22.10.2021:[10.0] "Intense charisma. Outstanding performer. Every time he steps in the ring, there's magic. The intensity, the speed, power, the charisma and the sheer athletism this guy possess is just freaking awesome. His matches with Will Ospreay is a must watch for any pro wrestling fan to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: wanderingobscuritywrote on 26.08.2021:[10.0] "Having followed his career from his early days, to his prime as a monster heel in Dragon Gate, to his rise to the top in NJPW, I never had any doubt that Shingo Takagi was going to be a huge deal. He's the total package of everything you could want in a great wrestler, and he could easily be a mainstay of the New Japan title scene for years to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: FAZEDandCONFUSEDwrote on 11.08.2021:[10.0] "He quickly became among the best, if not the best, wrestlers in New Japan when he arrived. That's not surprising for anyone who saw him in Dragon Gate, but considering the level of talent he's up against on that roster it's still notable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Luna100wrote on 06.08.2021:[10.0] "The best wrestler New Japan has, I am so happy he has been pushed so far, since he did not start with them and came to the company at a fairly older age I thought he would not be pushed far, but he has gone far, winning his first Tokyo Dome main event. He is a high point for thr company when everything in New Japan seems to have turned to shit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: GGS06wrote on 31.07.2021:[10.0] "Shingo Takagi is a perfect wrestler, and it's hard to doubt it. I've never seen him have a bad match, from his time in Dragon Gate to NJPW now. Incredible run in Dragon Gate and he's just starting in NJPW. A perfect heavyweight with great moves and good promos. He deserves the 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Drachmwrote on 26.07.2021:[10.0] "Shingo's ascent and work in New Japan alone is enough to warrant such high marks, but of course he also had an incredible run in Dragon Gate too. He has definitely earned that IWGP Heavyweight Championship and is probably the best worker of 2021."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: FightForeverwrote on 19.07.2021:[10.0] "Best in the world in my opinion and has been for a bit, has had an insane amount of classics in just 2 years (particularly the Ospreay series and the Ishii match). Loads of charisma too and an intimidating presence, if a dragon became a human id expect him to be Shingo Takagi. So happy hes got the IWGP World Heavyweight Championship, he truly deserves it like he deserves this 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: killowenskillwrote on 23.06.2021:[7.0] "Shingo Takagi has a very unpleasant disadvantage: he is one of those wrestlers whose matches are completely uninteresting to watch in series, within the framework of a feud. When he came to NJPW, I was consumed with every match he played, even when it came to the junior division, which I never liked. His first G1 Climax was unrealistically cool, and the match with Ishii is still one of my favorite tournament matches, and in my opinion, this is Takagi's maximum. But last year, I started noticing how hard it was for him to work with performers for the second or third time. Instead of telling a different story, we see the same thing, which naturally causes less reaction. The last two matches against Ospreay were met with indifference (although I consider the last one to be outright garbage without structure). The matches with Okada also lost their brightness. The matches against Suzuki were exhausting. Yes, Takagi made an unreal performance with Tanahashi this year, but I already know that by the third match they will simply cease to interest. Shingo is definitely a good employee, but in my opinion he has nothing to do in any promotion at full-time. He is ideal for working in all promotions as a freelancer, and moving from one place to another, like the same CIMA or Tanaka. Now its disadvantages are obvious and it's strange for me to see all the rave reviews."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Sagastawrote on 22.06.2021:[10.0] "One of the best in ring workers that I saw in my life, a guy that can give a good match with a highflyer wrestler, a strongstyle wrestler or a technical wrestler, he also have a great character and a great look."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Lennoxwrote on 22.05.2021:[10.0] "Shingo just now is in his prime, and it's hard to believe he actually got better from where he was at already. I had high hopes and expectations for him in New Japan but he has surpassed them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: StrongStyle2020wrote on 05.05.2021:[10.0] "You can use any superlative you like for Shingo Takagi, he was always been an excellent wrestler, but has been unbelievable the last few years. Incredible match after incredible match, you could make a valid case for him being the best in the world. At this point, it appears to be he and his rival that he has now produced 4 classics with, Will Ospreay, that are neck and neck for that title and have a series up there with any in history. Extremely well rounded, he can have a great match in all styles, juniors, or heavyweights. With no sign of slowing down, and if anything only increasing his profile, he can achieve legendary status over the next couple of years, with a deserved IWGP World Heavyweight Title reign, and even more classics to his name."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: mangowuvvr69wrote on 04.05.2021:[10.0] "The fact the he is not IWGP Wourld Heavyweight champ is ridiculous. He is the best in-ring performer in the world now. Everything he does is so intense. Speaks great. Incredible charisma. He always sets the ring in fire. I just love him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: JBWrestlingwrote on 18.04.2021:[10.0] "Shingo Takagi is the MVP of Pandemic Era New Japan in my opinion. Ever since NJPW resumed following their covid hiatus in 2020, the promotion just hasn? t felt the same in terms of booking and match quality. However, Shingo Takagi has constantly delivered, and even gave us two five star matches in the month of January. In addition, his NEVER Openweight title bout with Tanahashi is my MOTY so far. I really hope he wins this years G1 and wins the IWGP title at Wrestle Kingdom in 2022."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: plaguespreaderwrote on 30.03.2021:[9.0] "Disgustingly intense in the ring. Destructive aura. Best punch in the game right now. Can't say much more about the Dragon of New Japan. He was always exceptional in Dragon Gate but his new physical look has turned him into a wrecking ball that can play the monster or the underdog."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: moxxxwrote on 22.03.2021:[10.0] "There are so many good players in New Japan and I think he is the best wrestler. He is the best in every match and he is improving every time. That's amazing. I personally think he is a better player than Tetsuya Naito."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: degenerichwrote on 21.03.2021:[10.0] "Lots of people giving Shingo a 10 recently but after this most recent run I felt compelled to add onto the pile. Can work the dominating, undefeated heel and the sympathetic babyfaces fighting from underneath. Can work a fast paced junior style and a heavyweight bruiser style. Sells the match on his face better than just about anyone in the world (he's the only one who makes Okada's Money Clip look devastating). One of the most consistent wrestlers in the entire world, proven by his run since Wrestle Kingdom. For my money, the best wrestler in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Belgian99wrote on 21.03.2021:[10.0] "I can't give Shingo Takagi other than a 10/10. He's really on another planet & summited himself as one of the best in the world since coming to NJPW. He started slow with his Jr days where he was just a beast, put over the "ace" of the division Ospreay in the best match of 2019, then became to climb the ranks as a HV. A good 1st G1 with 2 extraordinary matches with Naito & Ishii, then a really good match with Goto at a destruction show (where he appeared as a more tweener/dick persona, and he was good at it). Then 2020 rolled on and his fantastic reign as NEVER champ, a title that fitted him as a glove, with diverse title defenses showing he could work with anybody. After that the G1 with another 8 points, not much but with again fantastic matches, Ishii-Ibushi-Okada, and ending the year strong with regaining his NEVER title. In 2021, he's actually the most consistent wrestler in NJPW, he just keeps on having banger matches : Cobb at WK, fucking incredible - Tana for the NEVER title, inspiring and breathtaking - then 3 great matches in the NJ cup against okada/goto/kenta, and now against ospreay in the finals. Takagi, as he's been booked right now & the fan recognition for his matches, is a top contender for the G1 climax this year, probably a finalist, maybe a winner ? The future will tell us, he is a fucking great professionnal wrestler, great selling, good promo, passion & aggresivity, the DRAGON !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Scott Kobayashiwrote on 28.02.2021:[10.0] "Shingo is not only the best pure worker in his stable, he is also the best in the world. Since coming to New Japan, he has not had a bad singles match. And has had so many amazing matches. SHO, Dragon Lee, Taiji Ishimori, Will Ospreay, Taichi, Cobb, Ishii, Naito, Goto, Jay, Moxley, Desperado, Ibushi, Okada, Suzuki, Tanahashi, and more have had amazing matches with Takagi. His Dragon Gate work is a 9 or even a 10 by itself, and his New Japan work is easily a 10. If I could give an 11, I would."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: KENTAfanwrote on 04.02.2021:[10.0] "Ever since Takagi made his debut in NJPW one thing has become very obvious to me. In terms of ringwork, he is at his best right now. Countless amazing matches this year alone. I honestly can't think of anyone I could put over Takagi. Years ago he was still exceptional, but now he is easily one of the best wrestlers in the sport. Personally, I would put him in the top 3, I can't really think of anyone who I can honestly put over him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: ZSJGunWwrote on 03.02.2021:[10.0] "One of the best wrestlers nowadays. Very versatile, he can deliver instant classics against any kind of performer. Amazing seller, smart athlete and just great overall."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: medousewrote on 10.12.2020:[10.0] "I'm starting to think this man is no human - he's a machine. Why? Because he cannot possibly give a one bad match. Everybody makes mistakes, everybody has a shitty day sometime - he doesn't. There is nobody in pro wrestling right now, who excites me as much as Shingo Takagi. He is a true embodiment of STRONG STYLE. His match with Suzuki Minoru at Jingu Stadium earlier this year just blew my mind. I hope he will accomplish a lot in NJPW and collect some belts. He truly deserves it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: michmoose21wrote on 29.11.2020:[10.0] "Most badass wrestler out there today. Hard-hitting, athletic, got the look, good mic skills, high psychology, sick entrance, in the best stable in wrestling. I could go on and on. What isn't there to love about this dude? SHINGO RULES ASS"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: rainmakerpunkwrote on 27.11.2020:[10.0] "So badass, so cool, dude is a beast, he was great in Dragon Gate and even better in NJPW, best wrestler of 2020 in my opinion"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Haqs96wrote on 26.11.2020:[9.0] "Takagi consistently puts on amazing matches and has had several MOTY contenders in 2020. He has an aura, an undeniable "It" factor, and a powerful, brutal in-ring energy. His Pumping Bomber is a thing of beauty to watch, and arguably the best lariat in wrestling today."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: TheRealQuotewrote on 12.10.2020:[10.0] "Brutal and vicious, yet somehow graceful, Shingo Takagi is one of the best wrestlers in the world and despite making the weight limit I did not buy him as a junior for a second when he first joined NJPW. My favourite Dragon Gate wrestler of all time and one of my current overall favourites, Shingo always impresses with his aggressive yet meaningful style. You'll never get a bad match out of him, and he absolutely oozes charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: ElPolloLocowrote on 09.10.2020:[9.0] "A rare case in which I have to go back and correct a rating for the better. What more can I say that hasn't been said about Shingo Takagi? He's universally and deservedly praised for all the right reasons, but I'll add two things. First, he's one of the most charismatic workers in the business right now: the fact he's been able to stand shoulder to shoulder with Tetsuya Naito and Hiromu Takahashi, two of the most beloved wrestlers in the world, without either drowning them out or being drowned by them says just what a special kind of charisma Shingo Takagi exudes. Second, he has an absolutely amazing understanding of pro-wrestling matches as a form of art, and I am not joking. Pacing, timing, finishers... he has absolutely everything right and it's a bit of a shame NJPW has imposed upon him a very limited choice of finishers compared to Dragon Gate. But again Takagi merely shrugged it off (kinda like that stupid dragon mask) and kept of churning out masterful match after masterful match. A true pro-wrestling genius."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: BlakeFR37wrote on 25.09.2020:[10.0] "How can I say... Wonderful ! To be honest, I don't know how good he was before seeing him in a NJPW ring, and goddamn, he's insane."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: JXN95wrote on 19.07.2020:[10.0] "Really damn powerful, frighteningly quick and incredibly hard hitting (his pumping bomber especially looks like it could probably kill me), he's also a really good seller and meshes well with many different opponents, having classics with Ospreay, Naito and Ishii amongst others. He's also really charismatic and carries himself like an absolute badass that will do whatever the hell he wants. Oh, and his theme song is awesome. Shingo is easily one of the best in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Chekerwrote on 20.02.2020:[10.0] "I think when I started watching Dragon Gate in 2016... ish, Shingo was already the best wrestler there by quite the margin. The reign he had back then as their world champion was nothing short of beautiful, and I've been a big fan since. For a while I was worried that New Japan wasn't gonna give him his dues, and it did take a while, but he's getting there. An IWGP heavyweight reign one of these days? Perhaps not, but we'll see."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Sabu316wrote on 27.01.2020:[6.0] "Hat einen guten Körperbau und seine Matches sind ok aber richtig überzeugen konnte er mich bisher selten."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: PuroresuLoverwrote on 08.11.2019:[10.0] "One of the very best not only in NJPW, it's a shame that he'll never be in the Main Event scene. Shingo is one of the wrestlers that define "Stiff" and "Big B O I"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: JOEvsISHIIwrote on 17.08.2019:[10.0] "How is he not at least a 9. 20 yet. This dude absolutely KILLED it in the BOSJ and G1 tournaments, along with Ospreay, and has been putting out MOTYC left and right. His matches with Ishii, Naito and Ospreay are all in my top 10 matches of the year so far."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: RealBillyCwrote on 13.08.2019:[10.0] "After the G1 this man has had, he is officially my favorite wrestler. He is literally RIGHT THERE with all of the best wrestlers in the world. I don't think it's unfair to say he was the MVP of both the best of the super juniors and the G1 this year. He is insanely good, and can mix and match with wrestlers of all different styles, and make it great. The. Best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: zephyrwrote on 12.08.2019:[10.0] "Shingo Takagi just absolutely RULES. He just exudes coolness somehow. Also great in the ring but you probably don't need to be told about that. Bumping my rating up to 10 after his incredible G1 this year because he just keeps putting on nothing but great matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: NEVERoverweightChampionwrote on 05.07.2019:[9.0] "A veteran who did a lot of things and was already pretty successful before being in New Japan, he made the next step and quickly imposed himself as one of the most exciting wrestlers in the whole roster. For a guy this jacked he can quicken the pace impressively, he is powerful and very stiff. He is the kind of brawler I absolutely love and is also very consistent. A lot of presence and charisma, great look as well. Simply one of the best in the world today and he hasn't even really crossed the path of the top talents of the roster yet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Kaswrote on 10.06.2019:[10.0] "Shingo has been among the best in the world for at least five years now and is finally starting to get the recognition that he deserves ever since joining New Japan. Honestly one of the best offensive wrestlers of all time, with lots of unique moves, a lovely snap to his suplexes and DDTs, and one of the best lariats of all time. Add all this to a fantastic bully character and some really great selling ability and you have one of the best wrestlers of the past two generations."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: dontkilldylwrote on 29.05.2019:[10.0] "Shingo by every definition could've entered New Japan as a heavyweight and nobody would have batted an eye, but instead he took the hard road and became the Jr Heavyweight that an otherwise thinly-spread Jr Heavyweight division desperately needed, owing to the departure of KUSHIDA, the unfortunate injury of stablemate Hiromu and the gradual phasing out of Marty Scurll and Will Ospreay. I could tell you all the ways Takagi stands out as a wrestler but to simply speak about it wouldnt do him justice, he blends speed, agility, power and aggression into a neat package and the result is something special and memorable, with the path to the Jr Heavyweight title just about clear, and being well more than equipped to run through whoever is left standing, it's only a matter of time before Shingo Takagi holds singles gold in New Japan, regardless of weight class."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: JustAWrestlingFanwrote on 25.04.2019:[9.0] "Despite not knowing who he was until he joined NJPW and LIJ he has quickly become one of my favorites on the roster. The fact that he joined LIJ on his debut which is a really exclusive stable and not something like Chaos where it seems like everyone goes. The way he cuts promos is something i could listen to for hours. He is also a extremely talented wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Malay Boywrote on 01.02.2019:[10.0] "This man is an absolute beast. He is the top guy in Dragon Gate and such an honor to watch his career growing strong. I feel bless when watch him wrestle in Champion Carnival and BOLA last year. Now, NJPW showcase him as one of their main attraction and I'm happy for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Yapperman3wrote on 08.09.2018:[10.0] "one of the best around. instantly stands out in DG with his power junior style and is also a welcome whenever he guests for other promotion. With the recent events , DG's loss is everyone else gain."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: ps avilawrote on 01.06.2018:[9.0] "Been amazed and impressed by this guy. Any match you pick and you can see the guy delivers: intensity, creativity, so much charisma. From Dragon Gate til the last C. C. he brought lots of interesting stuff, so thatŽs it. The guy is great and I hope he gets more chances to show his abilities."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: jamzell00wrote on 04.05.2018:[10.0] "One of my favorite wrestlers ever. Shingo is the hoss of Dragon Gate and one of the baddest motherfuckers in the business. His explosive and stiff style of wrestling mixed with his unmatched intensity make him so fun to watch. If there's one thing I love about him that I don't say about any other wrestler in the world it's the way he hits the ropes. You do not see anyone run the ropes as violently as he does and it adds so much to the best clothesline in the biz THE PUMPING FUCKING BOMBER"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: My Bloody Doobwrote on 20.02.2018:[10.0] "My personal favorite guy in Dragon Gate. His toughness in being a face is good, but he excells at being a ruthless physical heel. His power and strength makes him stand out among his more agile peers. He put on some amazing classics in the late 2000s, but still put on quite a few classics in his home promotion as well. As of late he is finally showing his talents in other promotions in Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: TheRainmaker28wrote on 09.12.2017:[10.0] "One of the most underrated workers of his generation in Japan. Shingo is just amazing. He got the badass look, the great character work, the charisma and he's a true workhorse. Love me some Shingo."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Rybackobashiwrote on 18.08.2017:[10.0] "It's quite simple, Shingo Takagi is the perfect mix between American style and Japanese strong style you'll see. He got it all in the ring, great moves, knows how to structure a match, has A LOT of intensity and is always the main attraction in any match he's in. He's in my opinion top 3 heel in the business right now, and one of the best overall workers. Shingo is truly a must-see wrestler, and goddman he can take your head off with these lariats"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Indyguy22wrote on 10.10.2016:[10.0] "Shingo Takagi well Basically All of The Wrestlers In The Dragon Gate Promotion  Is a 8-10 at best They Deserve It  The Reason Why I Gave Shingo A Perfect 10....  Because Of His Power And Creativity In The Ring...  For A Guy Who is Only 5'10.. he can Work with nearly all.. Weightclasses Perfectly   I Still love The Made In Japan "Halfnelson-Pumphandle Driver" And That Sick Running lariat even JBL Will be Afraid ..  And If I saw some one Using the same move e. g.  Matt Sydal I always think Of Shingo.. Some Thing About This Guy really Popped For Me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Luv all wrestlingwrote on 30.07.2016:[9.0] "Shingo is great for one reason, he is a beast monster heel who is angry all the time and seems like he is ready for a fight, and his fight deliver."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Jobbswrote on 26.09.2015:[10.0] "This man is an absolute beast in Dragon Gate! Best powerhouse in wrestling to date and his work his off the charts. His classics against BxB Hulk and Bryan Danielson in July 2010 show just how good SHINGO is and he is one of the best in wrestling right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Claudio Herowrote on 23.12.2014:[10.0] "Für mich einer der Besten Big Men in Japan der letzten 10 Jahre. War in Zig Top Matches (vs Cima, BxB Hulk, Danielson, Richards ... ). Er beherrscht verschiedene Stile und kann auch großartig den Heel spielen. Ich sehe ihn immer wieder gerne und hoffe das seine Karriere noch sehr lange geht"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: apc24wrote on 02.01.2014:[9.0] "Awesome wrestler, great powerhouse. One of the best at dropping people on their heads."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Erico Moraeswrote on 01.07.2013:[10.0] "What a perfect powerhouse! Guys like Ryback have a lot to learn with someone like Shingo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: TAKUYAwrote on 14.10.2012:[9.0] "Ganz egal was Shingo privat für ein Mensch sein mag, bewerte ich hier lediglich Shingo als Wrester und als dieser ist er einfach phänomenal gut. Egal wie viele Matches ich schon von ihm gesehen habe, es macht einfach Spaß ihn bei der Ausführung seiner Moves zu zusehen. Auch sein Selling finde ich ziemlich interessant, denn dies ist sicherlich auch ein nicht ganz unwichtiger Grund, warum seine Matches bei mir so einen starken Eindruck hinterlassen. Zudem besitzt Shingo eine Ausstrahlung wie kein anderer bei Dragon Gate und seine Frisuren sehen stets interessant aus."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Sandmannwrote on 20.06.2012:[8.0] "Trotz seiner etwas geringen Größe ist Shingo doch ein sehr beeindruckendes Powerhouse. Gerade seine Zeit bei ROH blieb mir in Erinnerung da er immer sehr gute Matches ablieferte und durchaus in mir einen Fan gewonnen hat. Ausserdem ist er bei DG natürlich auch immer eine nette Abwechslung zu den ganzen Highflyern. Also ein guter Wrestler von dem ich immer wieder gerne Matches sehe."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Double Jwrote on 11.06.2011:[9.0] "Ein richtig klasse Powerhouse, mit feiner Technik und harten aktionen. Er wird einfach glaubwürdig und jedes seiner Matches weiß gut zu unterhalten!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Matt4Wrestlingwrote on 24.02.2011:[9.0] "Ein Top-Wrestler und guter Techniker, allerdings gibt er sich oft zu unsicher gegenüber Fans und das macht sich sehr oft auch bei seinem Matches ersichtlich! Er sollte seine Fans nicht als Feinde oder Kritiker, sondern viel mehr als Freunde sehen, dann könnte er sich unbefangener entfalten!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: DJ MaSchwrote on 01.05.2010:[8.0] "Sehr gutes Powerhouse, der trotz seiner Körpergröße die Aura von purer Wucht und Kraft hat. Neben seinen Powermoves hat er auch noch technisch einiges drauf. Ich hab ihn beim Carat 2009 live gesehen und war wirklich sehr von ihm beindruckt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Soerenwrote on 23.03.2010:[2.0] "Grausamer Wrestler und Zeitgenosse. Sehr überbewertet!"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Aquifelwrote on 10.02.2010:[8.0] "Ich schaue mir Leute wie Shingo (oder auch Claudio Castagnioli) an und frage mich dann wie Leute einem Powerhouse wie Batista 9 oder 10 Punkte geben können. Shingo ist sicherlich nicht der Größte, dennoch reisst er in diesem Stil so einiges. Seine Aktionen sehen geschmeidig aus, sie sehen wuchtig aus und er kann sich schnell bewegen. Dass er gute Matches mit Sinn und Verstand haben kann hat er auch schon bewiesen. Tolles Powerhouse also."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: homicidal cena michaelswrote on 23.01.2010:[8.0] "Shingo zeigt durchweg gute Matches und ist sehr konstant."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: StefanKwrote on 09.12.2009:[9.0] "Shingo zeigte in Oberhausen, dass er angeschlagen gegen Andy immer noch zu guten Matches im Stande ist. Andy war ebenfalls durch Fieber nicht in der besten Verfassung, aber ein Klasse Match."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: El-Chupakneebraywrote on 06.10.2009:"Herausragender Wrestler, aber eben auch Affenquäler... dafür kann ich nicht mit gutem Gewissen Punkte vergeben."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: ARIZAwrote on 12.09.2009:[7.0] "Ohne Frage ein guter Wrestler, aber ich bin kein wirklicher Fan von ihm. Warum weiß ich nicht, der Funke ist einfach nicht übergesprungen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Mick Funkwrote on 11.05.2009:[7.0] "Trotz geringer Größe eine absolut überzeugendes Powerhouse mit einer guten Portion Ausstrahlung. Mehr davon!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: T-Waynewrote on 30.04.2009:[8.0] "Shingo zerstoert jeden! Mich nervt nur, das er teilweise als zu mächtig dargestellt wird. Wirklich empfehlenswert sind alle seine Matches gegen Yamato."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Tomkowrote on 16.12.2008:[8.0] "Hat sich stark entwickelt und hat auch langsam die Aura eines Powerhouses! DIESER MANN IST PURE POWER!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Kingpin39wrote on 11.12.2008:[6.0] "Naja kann solide Matches zeigen, was aber bei Dragon Gate auch nicht verwunderlich ist."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: MrWrestlingwrote on 08.10.2008:[9.0] "Ein guter Wrestler. Er ist noch jung und kann noch viel lernen. Er wird sich bestimmt durchsetzen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Baszdmegwrote on 24.05.2008:[6.0] "Guter Wrestler, aber mir persönlich viel zu langweilig."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: LexLuger4everwrote on 21.04.2008:[8.0] "Ich muss die Bewertung nach oben korrigieren, Shingo ist absolut auf dem Weg nach oben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: The Mountiewrote on 07.11.2007:[8.0] "Bester Beweis, dass man nicht 2 Meter groß sein muss und keine 120 Kilo wiegen muss, um eine Aura absolut roher Power zu versprühen. Sein Match gegen Morishima gehörte zu Moris besten Titelverteidigungen. Da geht noch einiges so kurz wie Shingo noch im Geschäft ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: STRIGGAwrote on 24.06.2007:[8.0] "Shingo ist ein Power-Wrestler, der sehr viel Potential hat. Ich verspreche mit gerade von seiner USA Exkursion einige Verbesserungen, doch auch vorher war der Name "Super Rookie" nicht unberechtigt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: aulitwrote on 24.06.2007:[6.0] "Hat sicherlich sehr viel Power und kann gute Matches wrestlen. Ihm würde aber mal eine Niederlage in einem Hair vs. Hair Match gut tun..."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Beccawrote on 09.02.2025:[10.0] "Mein männlicher Lieblingswrestler. Seine Matches gegen Kento bei NOAH und AJPW gehören zu den besten Bouts die ich je gesehen habe. Er ist unheimlich intense, kein Move, keine Bewegung wirkt verschwendet. Sein intensiver, oft gruseliger Blick lässt mir das Blut in den Adern gefrieren. Er ist ein legit tough guy und hat bereits 3 oder 4 Leute legit im Ring und bei PKs ausgeknockt, irgendwie passt es also dass er jetzt nach UWF Regeln Champ bei GLEAT ist. Hoffe dennoch, dass das nur eine Zwischenstation für ihn ist. Jedes Match mit diesem Mann ist ein absoluter Genuss. Die härteste Gangart, verbunden mit endlosem Charisma. Dazu muss ich sagen dass sein (Pre-GLEAT) Entrance mit eigens für ihn geschriebenem Theme einfach unfassbar athmosphärisch ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TheEnigmatic1wrote on 20.09.2024:[10.0] "One of If Not the greatest Japanese Wrestler of the modern era, He has insane Charisma and the best Kicks in the business. His feuds with Kento Miyahara and Go Shiozaki are legendary and he always puts on a great match. IDK why no Major company will sign him idk if he has attitude issues but he needs to go somewhere RN because him hiding away in GLEAT is not it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Zak22wrote on 05.08.2024:[10.0] "Simply put, Nakajima has been the best wrestler in the world for the last few years. Great N-1 Victory performances, great GHC Heavyweight and Triple Crown title runs, now doing his thing in GLEAT. Nakajima is excellent in-ring and he has a certain level of charisma, which makes him very enjoyable to watch. His title vs title match with Kenoh is one of the best matches of the decade. Brilliant wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: nabigoyewrote on 03.08.2024:[9.0] "Nakajima ist schon echt ein geiler Wrestler, den man so kaum sieht. Er hat die besten Kicks und sonst natürlich im style sehr auf strong style ausgelegt. Ich finde er hat unglaubliches Charisma und einen guten look und ist sehr glaubhaft im Ring. Leider ist aber auch fakt dass man durch seinen Wrestling Stil, wenig abwechslung bekommt, aber das was man sieht und wenn man bock hat es zu sehen, ist fast immer sehr gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Joe907wrote on 20.07.2024:[10.0] "One of my favorite wrestlers to watch. He's been really good ever since his teenage years. He was a prodigy and learned from some of the greatest wrestlers ever. His strikes are brutal. In-ring work is excellent. One of the best in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: OctagonEnjoyerwrote on 02.07.2024:[10.0] "One of the best wrestlers currently wrestling. Nakajima has always been great and violent, but ever since going freelance and popping up in AJPW and GLEAT, he's had this force of nature "I do whatever I want" vibe to him that only be compared to Brock Lesnar. He's a man who goes everywhere and causes destruction in his path and will take down a promotion's big pillars to get him what he wants. His matches with Kento Miyahara are a key example of this, being the only guy in years to not only beat Kento cleanly in a row but also someone Kento genuinely struggled to beat. But even before this era, we had his great junior heavyweight stuff, being a part of THREE great tag teams (Kensuke Family, AXIZ, The Aggression), and his matches with Sugiura, Shiozaki, and KENTA. Nakajima already has had a GOAT worthy career but if he's able to produce even a TINY bit of what he's doing now still at like 45 or even 50 he should be considered a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: jcheng777wrote on 24.04.2024:[10.0] "Arguably the ace of AJPW currently. One of the hardest hitters in the business and a joy to watch, extremely charismatic in-ring too. Loved his work in NOAH and deserves more recognition than he currently possesses."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: yvonnelikeswrestlingwrote on 10.02.2024:[10.0] "I think he might be my favorite in ring wrestler of all time. yeah I love danielson, omega, angle and others but nobody speaks out to me in ring than nakajima. He consistently puts on moty contenders every year and his matches against always get me so hyped and invested. Such an amazing wrestler and I cant wait to see what he does next like how I have for many years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: FattitudeErawrote on 25.01.2024:[10.0] "Huge fan of Nakajima and as a regular NOAH viewer was disappointed to see him leave last year. However, having kept up with his AJPW run so far I can understand why he made the move. He is well suited to being positioned as the top guy in that company and he is more than capable of carrying that responsibility. Hard to argue against him being the best pure striker in wrestling. Love watching him work, from his methodical pacing to his cockiness to his strikes themselves. A very worthy main event level talent, champion and sure to go down as one of the greatest in his generation as time goes by. AND, there is so much more to come from him, at only 35 years old!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TheOneAndOnlyCactuswrote on 31.12.2023:[10.0] "It's hard to believe that he is 35, as he has been elite for a long, very long time now. The best pure striker in wrestling today, Nakajima has also evolved into an versatile technician, and has put on display his evolution as a performer and character this year. His insane levels of charisma as a cocky prick makes him a top name wherever he goes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: uniwrote on 01.12.2023:[10.0] "When you've been as good as Nakajima has been for nearly 20 years, you might be considered an all-time great just off longevity. He's performed at a world-class level since he was 16, and really became consistently elite by 20. Mind-boggling to think he might be better now than he was back then."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Scott Kobayashiwrote on 13.05.2023:[8.0] "Katsuhiko Nakajima is a really good wrestler. A great one! But he works for Pro Wrestling NOAH. A company that loves to simply get in its own way. A lot of the guys in Pro Wrestling NOAH are good workers. Pretty much the entire main event scene sans Jake Lee are excellent workers. But some of these wackos should not go over 20 minutes! Nakajima, Kenoh, Marufuji, Jake Lee, etc, they simply are not interesting enough/and or just not build to go long the same way Shiozaki or Sugiura were. Nakajima is better than Kenoh as hes low key an upgraded version of him (cooler, better kicks, etc) and hes LIGHTYEARS better than 2023 Naomichi Marufuji but his track record in recent 25+ minute matches just isnt there for me. Nakajima in under 20 minutes is a 10/10 wrestler, but he works in the main event scene of a company that it feels like a requirement to go long. Nakajima in a company like AEW in a Takeshita like roll (another guy who has since seen his hit rate go up by leaving Japan) would own. But hes not. So were working with what we got. 7.5/10, which rounds up to an 8. A shame."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: jamzell00wrote on 05.05.2023:[10.0] "If Shibata did not exist he would be in the running for my favorite wrestler ever. Even before he grew out his hair and became the cockiest motherfucker alive he was an elite worker who never really disappointed me. Once 2017 hit though? Dude just became a different animal entirely. Growing a mustache unlocked a level of charisma I didnt think was possible. His 2018 year is one of my favorites for any wrestler the last few years and he was mainly just doing tag work with Kitamiya. When he did get the opportunity to work his first singles match it ended up being one of the best of the entire year. Thats the level he's been at and continues to be at. Its ridiculous to talk about 35 yr old having almost 20 years of outstanding work but its true for him. Just imagine how amazing he'll be when he becomes a grumpy old man oh my god."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TheRealbeast29wrote on 03.05.2023:[10.0] "As a new fan of NOAH, this guy is so easy to instantly gravitate towards. He kicks so much ass and has one of the coolest auras of anyone currently wrestling, his striking is amazing to watch and he has great in-ring charisma. Nakajima never leaves the ring without giving at least an enjoyable performance, his matches are must watch even when they're squashes because of how fun he is to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Wrest lingaddictionwrote on 27.03.2023:[10.0] "You want a striking exhibition? You call Nakajima. You want a hard-hitting war? You call Nakajima. You want a great match? You call Nakajima... Undeniable talent, perfect striker, deserves every accolade he gets and so much more!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: PorcoRosso1wrote on 01.02.2023:[10.0] "This man beat up and gaslit Kento Miyahara as a young boy and then stole his girl and married her. One of the most disrespectful things I've seen in all of wrestling. Ain't nobody doing it like him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TerwilligerTheLuchawrote on 12.01.2023:[10.0] "Best striker in the game right now, by quite a distant margin. Has one hell of an aura around him that few can match. Really hoping he gets another run at the top, as I genuinely thought his early 2022 run would catapult him to superstardom."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: plaguespreaderwrote on 20.03.2022:[9.0] "Absolutely destructive force. Appreciate that he sits on the outside of KONGO during their team pose, heightening his "outsider" nature."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: GriffinXwrote on 16.01.2022:[10.0] "17 years into his career and doing his best work. Nakajima has always been very good there is reason why he was on big shows as a teen. But in 2021 he went to the next level. Just great matches after great matches. His kicks are excellent as are all of his strikes his grappling looks strong. Right now if you are debating best he needs to be in the debate"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TSwiftywrote on 08.01.2022:[10.0] "Katsuhiko Nakajima is the fucking man. People are talking about Roman, Danielson, Punk, Shingo or whoever as the best wrestler of 2021 (All 4 have had great work last year to be fair, especially Shingo and Danielson) but in terms of pure in-ring work Nakajima has to be in the discussion. It really felt as if last year showed Nakajima growth as a character and as the ace of NOAH. Every match he elevates. From any filler 6-man or tag match to an undercard singles match. Nakajima always delivers. Once he moved up to the main event scene again after The Aggression imploded he was stellar. From the N-1 tournament, his final with Kenou, his GHC Heavyweight Championship win against Marufuji and successful defenses against Tanaka, Kenou and Shiozaki he is on a hot streak unlike almost anyone else. I haven't even touched the surface of his greatness as that would deserve a much longer review probably longer than 3000 characters. He's full of charisma and arrogance and has a distinct in-ring style and look. He carries himself like a star and can have a good match with any opponent. His selling, timing, technique and striking are all world-class. Endless amounts of great matches even from his early days in NOAH against guys like KENTA. Tremendous wrestler and the most underrated wrestler of the last 5 years alongside Konosuke Takeshita in my opinion. He and Kaito are going to carry NOAH this decade for sure as long as they remain."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "The true ace of NOAH, his style and character do as much to bring in fans as anyone. Every opportunity he got this year, he smashed. His GHC Tag Title win at Great Voyage in Yokohama was great, but it was The Aggression disintegrating when it all got crazy. The hair-vs-hair no audience cage match was my unique MOTY, a totally bizarre, brutal spectacle. Losing that, and his hair, was the point of metamorphisis. The N1-Victory took him to the heights he deserves."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Lalo Camposwrote on 26.11.2021:[10.0] "One of the best wrestlers of 2021, the best GHC Heavyweight Champion of 2021 and the best wrestler of the second half of 2021"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: benny5bellyswrote on 14.11.2021:[10.0] "Nakajima might just be the best wrestler in the world in 2021. I can't believe he is only 33 and already has the resume he has."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: naturalbornfarmerwrote on 12.10.2021:[10.0] "The fact that this guy has been wrestling for almost 20 years and is somehow only in his early 30's is shocking to me. I can still barely cook my own meals as a 20 something, but Nakajima has been putting great matches since before he was 18 years old. NOAH had so much amazing young talent in the 2000's, but funnily enough, Nakajima was probably the youngest amazing talent they had. Him regaining the GHC heavyweight championship seems to have been perfectly timed, as he should now just be hitting his prime as a wrestler. Looking forward to all the great work he'll do as champ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: ProWrestlingGuy316wrote on 27.07.2021:[10.0] "Ein Mann, bei dem ich mir seit einer gefühlten Ewigkeit die Frage stelle, warum Noah ihn nicht zum absoluten Aushängeschild macht. Extrem gut im Ring und ungemein charismatisch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: SpikeWithGlasseswrote on 30.06.2021:[10.0] "Nakajima is one of the best right now, the best in my opinion, from his smile to his kicks, every single thing he does is so good, he's incredible and still quite young."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Bushidospirit22wrote on 01.03.2021:[10.0] "Nakajima has been one of the best wrestlers in the world since his teenage days, but he's really come into his own as a full performer in the past three years. Arguably the best heel in the world, and unquestionably the best kicks in wrestling since Kawada. The best wrestler in the world when he's invested in the match in my opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TsurutaOHwrote on 13.12.2020:[10.0] "Easily the most consistent NOAH wrestler alongside Sugiura, Nakajima started with a good Babyface that showed great fire and passion but that really shone when he changed his character, today with gigantic confidence and charisma and simply enviable skills, easy one of the best match makers we have today, I am sad that he didn? t get to win the GHC H Heavyweight this year, but with this current heel persona he can simply become the standart for years to come"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: taabr2wrote on 19.09.2020:[8.0] "A protégé of puro star Kensuke Sasaki. Kakajima started wrestling at the very young age of 14. Early in his career Nakajima put on amazing performances wrestling in almost every single major promotion and was competitive with the top stars in each of them, even though he always lost. After 10 years as a freelancer and having competed in almost every tournament or for title you could imagine, he finally singed with a promotion long term in Pro Wrestling NOAH. The promotion gave him quite the push that first year he signed with them, even winning the GCH heavyweight Championship, ultimately that fizzled out and truthfully Nakajima has not nearly lived up to the huge potential he displayed in those early days."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: CyberVolteswrote on 29.08.2020:[8.0] "Katsuhiko Nakajima's skill as a wrestler is undeniable. It may have taken him a bit too long to settle down his character as an arrogant, laid back, fearsome fighter who will mock and underestimate his opponents both inside and outside the ring, which is something that seems to come to him very naturally, but his no-nonsense offense has always been there. His thunderous kicks, polished vertical spikes, powerful suplexes and some occasional smooth matwork are always a joy to watch - combine all of this with his current attitude and, in many ways, you have a wrestler's wrestler. In fact, if I were to take only the best matches of his career in consideration, Nakajima would certainly get a 10 from me. That said, it's been a long time since we could take for granted Nakajima will give his all in a match. I don't know if that's something he does on purpose, as part of his gimmick, or if he really just doesn't care that much anymore, but Nakajima has been phoning in a lot of his performances for years, now. It seems he's always in need for his opponent to take the best out of him, or else he'll just go the formulaic route and recycle the same spots you've already seen he doing a million times before. Nothing illustrates this better than both his defenses of the WRESTLE-1 Title: when Daiki Inaba let Nakajima just be himself, we got a subpar performance from him; one month later, Shotaro Ashino made Nakajima dust off his grappling skills and actually think the match through, leading to a way, way better combat than the one before. So, in the end, Nakajima can still give stellar performances when needed, but he won't really take the initiative to do so. It should be noted, however, that he is far more consistent when paired with Shiozaki. As a tag team, they have amazing chemistry and cover each other's shortcomings to the point they become unnoticeable."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TOUGH AND HARDwrote on 23.12.2019:[7.0] "Mechanically, a great worker. Polished, smooth, rarely botches, and can bring the fire. While he's no master of psychology, and generally lacks the charisma and the presence of his forebear (Sasaki Kensuke), his newfound confident, smiling sociopathic character work has helped distinguish him from the more generic fighting-spirit trope of past. Nakajima was one of the most promising rookies in the entirety of the wrestling world in his time, but he has yet to find within himself that certain 'it' factor to cement him as NOAH's main event stalwart."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: PuroresuLoverwrote on 12.05.2019:[10.0] "One of the very best in the world right now, he's making Kawada and Sasaki very proud with his kicks. I hope he becomes GHC Heavyweight Champion again, he truly deserves it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: My Bloody Doobwrote on 16.03.2018:[9.0] "The odd one out when it comes to pupils of legendary 90s puroesu stars (KENTA, Marufuji, Go, etc. ) as Nakajima was the student of Kensuke Sasaki. That said I can't honestly say he has the star power that his contemporaries have, but I can say his talent is at least equal to them. He isn't as charismatic as Go, not as athletic as Marufuji nor does he have the intensity of KENTA, but he is much more tactical and ruthless than them. It all makes sense since he is literally called the "Genius of the kick". His chance at becoming the "Ace" of NOAH was a disappointment considering he didn't draw well because of the lack of fan connection, but he still churned out pretty good matches. Loving his new worn out look though since losing the belt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TooSweetPhilwrote on 25.08.2017:[9.0] "Nakajima ist einfach so ein fantastischer Wrestler. Der Typ arbeitet unfassbar stiff, behält dabei aber eine enorme Sauberkeit in der Ausführung seiner Moves. Er bereichert ein Match mit dieser "jetzt-wird's-episch" Ausstrahlung, definiert dabei den Strong Style, als auch seine flinken Schnelligkeitsmanöver. Ich würde ihn ehrlich gesagt öfter in NJPW sehen, da er mir vor allem im G1-26 mit den Matches gegen Shibata, Nagata, allen voran Elgin richtig gefallen hat, dennoch ist auch sein aktueller NOAH Run (beispielsweise Match gegen Cage) richtig gut. 9 Punkte!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: arrancarwrote on 21.08.2017:[8.0] "Nakajima is an awesome athlete, but to be a wrestler you need to also have an endearing character. Nakajima lacks this, which is what I feel holds him back from being considered a top wrestler. His offence is stiff as hell, he can sell exhaustion, loss of consciousness, and pain very well, and he can communicate strong-style passion quite well. However, he runs through all these areas only to rather basic degrees and then repeats that for all his big matches. That results in Nakajima coming off as rather bland because he goes out of his way to have the same match each time and perform the exact same spots and character work each time too. Sometimes Nakajima is just so great of a wrestler that he still manages reach the minimum threshold for a great match, such as against Elgin, Shiozaki, Sugiura, Suzuki, and Kitamiya, in spite of his character's shortcomings. Perhaps experimenting with the use of some different facial expressions, gestures, and different style approaches (while still maintaining his trademark stiff strikes, of course) could make me more interested in him, but for now I still find myself suffering quite a bit through his GHC title reign. In my opinion his spot in NOAH is as a GHC title contender or GHC short-reign champion at most, but definitely not as the face of the company (at least not until he develops further). Still a very exciting competitor overall."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: isalrightnowwrote on 30.07.2017:[8.0] "Nakajima is a great wrestler. He's able to convey this mean sort of presence, of a guy who can just mess you up with the greatest of ease. Plus, his actual work in the ring is great, too. He has his signature spots, but it never really feels as if he's just getting his stuff in when he does them. For example, the spot where the guy rests his head on the turnbuckle and Nakajima punts the turnbuckle to hurt them, that has always felt like Nakajima thought to do that, rather than "well here's where I do my thing". With all this in mind, I do have reservations about him as GHC Champion right now. Yes, he is the only real choice, and yes, NOAH will keep doing fine as they have been. However, I get this feeling that they're trying to push him as an ace character, ala Tanahashi or Miyahara, when the guy who I've been praising couldn't be further from that. He can seem awkward and unfitting in the role of the guy who ends the show, who high fives people and hugs babies. I think he can be champion without needing to, in a sense, compromise the personality that brought him to the dance. Other than this hang-up, I think Katsuhiko Nakajima is absolutely someone to check out."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: HUNTERBC88wrote on 16.07.2017:[10.0] "I really have no words for him. He's a great wrestler. He's been Wrestling since 2004 and not even 30 yet. He has one of the most shocking wrestling careers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TheRainmaker28wrote on 16.02.2017:[9.0] "Nakajima has been solid for years now and finally got the Ace spot. He got a very underrated psychology in my opinion, being able to work in any type of match in these days. His offensive are amazing, I love that stiff strikes, and definitely his reign with the GHC Heavyweight Title is one the best in recent memory in my opinion. The future is bright for this young man, as he continues to evolve already being a great wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: CmNag66wrote on 07.01.2017:[10.0] "Einer der wenigen Lichtblicke für NOAH im Moment. Ein tolles Jahr 2016 mit einem starken G1 und endlich dem überfälligen Aufstieg zum Main Eventer und Champion bei NOAH. Ich hoffe NOAH tut das einzig richtige und baut in Zukunft die Liga um Nakajima auf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Viper99wrote on 07.11.2016:[9.0] "Seit 9 Jahren bereichert Nakajima die Wrestling Welt mit großartigen Matches in vielen verschiedenen Promotions wie unter Anderem ROH, NOAH oder auch New Japan Pro Wrestling. Er hat den klassischen Asiatischen Strong Style Stil, eine tolle Technik und Psychologie und das gewisse etwas was ihn wie ein Star wirken lässt. Ein toller Wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: akm0wrote on 18.10.2016:[8.0] "Kensuke Sasaki's pupil. Nakajima is a very good wrestler who embodies what I like in a performer: good striking ability, speed, technicality and a badass look. He also has an incredible amout of experience for his age, which makes him one of the future stars of puroresu. I love his kicks, I love his combinations and I want to see him becoming GHC Hvt. Champion and IWGP Champion in the future. His run in the G1 Climax was good and his matches against Elgin and Shibata were a perfect showing of his abilities."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: prowrestlingisrealwrote on 23.08.2016:[10.0] "Hard hitting wrestler with some great offense, reminds me of Nagata, I'm very impressed with him after his G1 matches, he should be the next GHC heavyweight champ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Mathieu Virtuosowrote on 30.07.2016:[9.0] "Looks very comfortable in the G1 tournament and has been on his fair share of good matches already. I see only good things in Nakajima's future."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Matzinhowrote on 09.02.2014:[10.0] "Nakajima wird allmählich zur Gegenwart des Puroresu. In welcher der großen japanischen Ligen er letztendlich auch immer landet - er ist für mich das designierte Ace. Der Junge hat früh angefangen und ist jetzt mit 25 Jahren schon einer der erfahrenen Wrestler. Er liefert reihenweise gute Matches ab, hat ein fantastisches Moveset, sellt hervorragend und ist einer dieser Wrestler, die im Ring eine Geschichte erzählen können. Hoffentlich landet er irgendwann mal bei den Schwergewichten. In meinen Augen einer der besten Wrestler der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: ARIZAwrote on 16.06.2012:[9.0] "Sehr guter Mann, der immer noch sehr Jung ist und eine wahrlich große Zukunft vor sich hat. Mit Kensuke Sasaki hat er auch den perfekten Mentor um in wenigen Jahren endgültig an der Spitze in Japan anzukommen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Kenshin Uesugiwrote on 17.03.2012:[10.0] "Es war Liebe, wrestlerisch gesehen ;), auf den ersten Blick! Nachdem Tod von Hashimoto blieb als Lieblingswrestler aus dem Puroresu nur noch Muto und dann kommt er. Der Mann ist für das Wrestling geboren wurde, ein Jahrhunderttalent, der mit einer unübersehbaren Willen, Fähigkeiten und Sinn für das Wrestling in so jungen Jahren ausgestattet ist das ein erschauert. Weder KENTA oder Marufuji waren zu diesem Zeitpunkt schon formvollendet wie er, um den Jungen müsste man sich eingeltich überall prügeln um ihn zu bekommen. Manchmal sehr selten, lässt er sich aber bei NOAH von der Overkill und allen den Schwächen die bei den Junior und Heavweights gibt mitreißen. Das ändert aber nicht an der Tatsache das ihm die Zukunft gehört und jeder der ein wenig Interesse am Wrestling hat muss den Kerl lieben, ich tue es!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: ShakDragoonwrote on 04.10.2011:[9.0] "Definitiv das herausragendste Talent des Kensuke Office. Jetzt fehlt nur noch ein längerer Titlerun, um zu KENTA und Naomichi Marufuji an die Spitze der NOAH Jr. Heavyweights aufzuschließen. Leider hat ihm seine Blinddarm-OP scheinbar abermals einen Strich durch die Rechnung gemacht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Hu-Manwrote on 20.08.2011:[10.0] "Geiler, stiffer, harter und unterhaltsamer Worker. Habe einige großartige Matches mit ihm gesehen und bin vollkommen begeistert. Darüber hinaus ist er noch extrem jung, was großes verspricht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Double Jwrote on 26.05.2011:[8.0] "Kann jemand so zutreten wie Nakajima? Wohl kaum. Ansonsten auch ein Top Mann, gute Ringübersicht, schönes Moveset, klasse Junior Heavyweight."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Matt4Wrestlingwrote on 16.05.2011:[10.0] "Ein sehr stiffer Wrester, der sich vor High-Flying nicht scheut. Hat durchaus seinen großen Durchbruch noch vor sich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: MaKnowrote on 15.08.2010:[10.0] "Der Bursche ist eine Wucht! Ich kenne eigentlich kaum einen, der in so jungen Jahren schon solch ansehnliche Leistungen im Ring zustande brachte. Nakajima ist die Zukunft des Puroresu, ohne Frage!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Switchbladewrote on 22.06.2010:[8.0] "Unglaublich wenn man bedenkt dass er noch so jung ist, aber schon so lange aktiv ist. Seine Matches mit Kenta haben mir gut gefallen und hat noch eine große Zukunft vor sich."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Wrestlingmashinewrote on 14.04.2010:[10.0] "Immer in hervorragende Matches auf der Card und harter Hitter. Und erst so Jung, man darf wohl noch viel von ihm erwarten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Eddiewrote on 04.04.2010:[9.0] "Nakajima ist ein übelst harter Hund mit echt fiesen Kicks. Am Matchaufbau muss er aber manchmal noch arbeiten, auch wenn er so gut wie immer eine klare Strategie verfolgt, aber um gottes Willen, der Kerl ist ja auch erst 22, er hat also noch genügend Zeit. Vor allem der Fakt, dass er jetzt schon an der Größe eines KENTA kratzt, sagt doch einiges aus. Die volle 10 gebe ich ihm noch nicht, da noch etwas Luft nach oben ist, aber trotzdem ist er, vor allem im Hinblick auf sein Alter, sehr gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: RickRollwrote on 24.03.2010:[10.0] "Jop, ich muss auch sagen das Nakajima VIEL cooler ist als KENTA. Er hat alles was man als guter Wrestler braucht und er ist JUNG. Ich bin mir ziemlich sicher das er später mal irgendeine Liga mit anderen Stars tragen wird. Schon allein im Ring ist er goldwert. DIE Zukunft des Puroresu~"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Aquifelwrote on 11.02.2010:[10.0] "Ich mag diesen Stil einfach und Nakajima hat ihn drauf wie wenige andere. Bedenkt man, dass er erst 21 ist, ist es kaum zu glauben, dass er sich schon so weit oben bewegt. Wenn er noch beständig dazu lernt, dann wir er früher oder später einer derjenigen sein, die Misawas und Kobashis Erbe antreten, was Ausnahmewrestler aus Japan angeht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: T-Waynewrote on 11.01.2010:[9.0] "Der Kerl hat wirklich mit 15 Jahren angefangen zu wrestlen ? Ist heutzutage wahnsinnig gut und er ist ja erst 22. Nakajima wird auf jeden Fall noch richtig Karriere machen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: batze22wrote on 23.09.2009:[10.0] "Jung, Talentiert, Wird aufjeden fall einer der ganz großen in der Jr. Divison."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Top-Hardywrote on 14.04.2009:[9.0] "Wird aufjedenfall wenn nichts größeres schief geht ein ganz ganz große Star Seh ihn unglaublich gerne. Seine Matches gegen Kenta waren sehr sehr gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Tomkowrote on 23.11.2008:[9.0] "Für sein Alter ist er schon so weit, das die Zukunft eigentlich nur gut für ihn aussehen kann, solange er vom Verletzungspech verschont bleibt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Baszdmegwrote on 02.09.2008:[9.0] "9 Punkte sind sehr gut gemeint, aber momentan ist der Junge mein Lieblingswrestler von NOAH und das US-Debüt hört sich auf jeden Fall vielversprechend an."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Sabu316wrote on 13.07.2008:[9.0] "Ist im Ring deutlich weiter als es sein Alter vermuten lässt. Macht einfach Spaß ihn zu sehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: STRIGGAwrote on 05.07.2008:[10.0] "Vor einigen Jahren hatte man ihm eine rosige Zukunft bescheinigt. Der Einfluss von Kensuke Sasaki sollte sein übriges tun, aber auch er selbst trägt vieles dazu bei, dass er in Japan dort steht, wo er steht. Er ist einfach unglaublich gut und hat mit 20 Jahren schon eine Erfahrung, von der andere nicht mal zu träumen wagen. Wahnsinnig guter Wrestler mit glaubhaften Strikes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: AnFuwrote on 26.04.2008:[10.0] "Ein Riesentalent, der nächste große Japan-Star! Seine Kicks sind der Wahnsinn und mit Sasaki hat er natürlich auch den richtigen Förderer an seiner Seite."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Rob Van Duesenschrauberwrote on 17.04.2008:[9.0] "Für sein Alter ist er der absolute Hammer, in weniger Jahren gibt es dann auch die Höchsnote."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: LexLuger4everwrote on 13.04.2008:[10.0] "Unfassbar weit für sein Alter! Bleibt er von größeren Verletzungen verschont, ist er die Zukunft!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: D-Stylewrote on 17.01.2008:[10.0] "Die schönsten Kicks von AJPW. MEGATalent mit Push nach oben, wird ein ganz großer. Die 1 von mir"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Raywrote on 24.06.2007:[10.0] "Wenn der Kerl nicht in einigen Jahren da steht, wo heute Kobashi, Misawa und Konsorten stehen, dann lief irgendwas sehr falsch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Rancorwrote on 24.06.2007:[8.0] "Dem Jungen stehen absolut alle Türen offen. Er ist mit knapp 20 Jahren schon so verdammt gut, dass man sich kaum traut daran zu denken, welche Klasse er noch erreichen kann."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: BurningLariatwrote on 08.02.2025:"Genichiro Tenryu's career is one of the most impressive in Japanese wrestling, and his workrate has always been top-tier. Tenryu's style was always hard-hitting and intense from his early days in All Japan to his later runs in New Japan and the indies. What stood out about him was how he could work with anyone--whether it was juniors doing high-flying stuff or heavyweights throwing bombs. He didn't rely on flashy moves or big drama; he just brought intensity and authenticity that made every match feel real. Some of his best work came in matches against legends like Jumbo Tsuruta, Mitsuharu Misawa, and Keiji Mutoh, each one showing how adaptable and tough he was in the ring. Tenryu might not have been the flashiest or most over-the-top guy, but his focus, physicality, and no-nonsense approach to wrestling make him a true legend in the sport."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Jaedynr5wrote on 03.02.2025:[10.0] "easily one of, if not the best to ever do this, tenryu has been nearly everywhere in japan, has countless great matches over his 15 year career, he may have not been as flashy in the ring as some wrestlers of his time, namely the pillars and musketeers, but tenryu always found a way to not only stay relevant, but stay a star no matter how old he was"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: LIGERISMwrote on 01.12.2024:[10.0] "Every single Tenryu match goes the same way for. First 5-10 minutes, "man this is boring, " last half of the match, "this is the best match I have ever seen." Tenryu also has the best old man run in pro wrestling history. Ages like fine wine."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: kaeleighwrote on 26.09.2024:[5.0] "Ich versuche es aber werde mit ihm nicht warm. Ich hab das Gefühl, dass jedes Tenryu Match das gleiche ist. Besonders nach seinem All Japan austritt in den 90er hatte Tenryu immer diese Aura des unantastbaren. In All Japan hatte er zumindest mit Jumbo einen Rivalen auf Augenhöhe und Matches die mehr wahren als Tenryu ist der Grumpy Veteran. Ich kann durchaus verstehen wie Leute diese Veteran Rolle feiern Ich fand sie aber immer lahm und uninteressant. WAR war allerdings absolut Klasse."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: jomshomwrote on 30.05.2024:[10.0] "The greatest wrestler ever. I have a few people who I might prefer just as favorites of mine, but if you're trying to break wrestling down into some sort of "objective" greatness scale, Tenryu would almost definitely be at the top. He's a complete monster of a worker, able to structure a match like no other. Everything he does comes off as powerful. At no point in his career is he bad or incapable of having amazing matches. He also ran WAR which is maybe the best promotion ever so he gets even more credit for that. Really just perfect, there's no need for anything beyond saying that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: AndoCommandowrote on 28.05.2024:[10.0] "Tenryu had the fortune of realising how simple wrestling is. When all else fails, punch someone in the face, slap em loud across the chest, draw some blood from em. Anything with real good contact tends to work out alright. Worked all the big names in puro except for Maeda the coward. Quite possibly has the best body of work with enough footage to back up the claim. Not as reactive a wrestler as I'd like but deceptively more versatile that most would expect (the SWS/WAR work is vital in demonstrating this quality). Probably the greatest wrestler than I don't consider a favourite."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: RusherBryan29wrote on 10.02.2024:[10.0] "The king of japanese pro wrestling. One of my all time favorites, he can do any style in wrestling. Great longevity, still giving great matches in his 50s. The guy who has pinned Giant Baba and Inoki, that shows how great it is. Also one of the coolest wrestler ever with his appearence, entrance, and charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Brutish Dandywrote on 25.09.2023:[10.0] "Having gone back and watched his career from AJPW through SWS, WAR, NJPW, then back again to AJPW and NOAH I was dumbfounded to discover there was hardly a solitary match this man had in Japan between the years of 1990 and 2005 that wasn't top notch. What an absolute king. Consistently amazing main event quality matches for fifteen straight years. Hell, even his tag matches were incredible. The man got classic bouts out of Nobutaku Araya and Isao Takagi, for the love of God. Age caught up with him eventually but his prime years were something special."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Conquistador37wrote on 29.06.2023:[10.0] "Forgive me, I'm not one who has seen *that much* Japanese wrestling. I've seen his Japanese work but it was mostly against American foes. This dude gelled well with everyone and was always able to adapt to anyone's style. Had to have been an excellent communicator as the matches tend to have ebbs and flows, gives and takes. Probably the best "previous century" Japanese wrestler who wasn't a trend setting trail blazer. Ultra rad chops and some of them sounded like ballistic tests. Solid and damn dependable. it's going to be a good match and you're going to be sucked in. 9.5"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: KKeanelwrote on 07.04.2023:[10.0] "One of the most dedicated guy for this business. WAR founder, trainer, brilliant wrestler. Incredibly important person for whole puroresu history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: TheOneAndOnlyCactuswrote on 30.03.2023:[10.0] "The Living Legend has done so much in his career. From being the top star of AJPW alongside Jumbo Tsuruta in the 80s, to the Ace of SWS, to founding WAR, he has produced magic wherever he went. Tenryu has the longevity, the adaptability, he was a great all-around talent in between the ropes and had the charisma to be the top star as this intimidating SOB. Hes not nicknamed Mr. Pro Wrestling in Japan for no reason."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Strong Zero Machinewrote on 18.02.2023:[10.0] "Genichiro Tenryu started as a rikishi (sumo wrestler) in 1964 reaching the makushi division and winning the Aki Basho at Tokyo (september 1970) before leaving sumo wrestling at the age of 26 in September 1976 and despite his career still showed promise. Shortly after Tenryu entered AJPW dojo under Baba instruction was sent to Texas to be trained by Dory Funk Jr. and Terry Funk. Back to AJPW Tenryu become the 2nd ace of the promotion just behind Tsuruta his tag team partner and biggest rival and also feud with the like of Choshu for the most part of the 80s. In the 90s Tenryu toured a lot for SWS, WWF (Royal Rumble 1993), NJPW and founded his own promotion WAR (Wrestling And Romance). In the early 2000s Tenryu was back in AJPW after the exodus of Misawa and co and he's the real ace of the promotion at this time despite the fact that he's 50+ years old. He's also a great trainer with his best 2 students Kawada and Ishii. Tenryu had decided to retire from professional wrestling on November 15 after a final match against Okada after 39 years inside the ring. He's a 10 with his grumpy face looking like a tilted father/great father who want to kick you cause you are a disrespectful son for real even young Tenruy looking older. He's a great techniker and also a powerful wrestler with a strong spirit, a great selling (like his student Kawada) one of my favourite powerbomb and lariat ever. He's my favourite grandpa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Luna100wrote on 18.11.2022:[10.0] "Such an amazing amount of charisma, he is such a killer, he is the saviour of All Japan in the 2000s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: GriffithWhitewrote on 15.10.2022:[10.0] "What people bill Minoru Suzuki as, is what Genichiro Tenryu is. His 80s & 90s work will have a special place in my heart because that was my introduction to Tenryu but the 2 decades after it are just as pivotal to his legacy. He's a guy who purely gets what pro wrestling needs to be & is able to do it perfectly, hence the nickname."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: BadAssTranslateTradingwrote on 15.07.2022:[10.0] "one of the greatest wrestlers of not only his generation, but the one after it, too, the longevity and adaptability of Tenryu made him a timeless star in puroresu. while i am a big fan of his work during the 1980s and 1990s, it was his transformation during the latter half of the latter decade into an angry old man that cemented him as one of my all time favourites. always grumpy, always stiff, and always charismatic and entertaining. it says a lot about him that he arguably had the best run of his career as he was entering his early 50s after two decades of already being regarded as one of the elite talents in Japan. a beloved figure and undeniable legend, nobody is more deserving of the "Mr. Pro Wrestling" nickname."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: GriffinXwrote on 06.02.2022:[10.0] "Throughout his career Tenryu defied the odds. He got a late start as a pro wrestler but still became a top guy in AJPW, the failure of SWS could have ended him instead he stated W.A.R and used his connection with New Japan to get back to major main events. It says a lot even the last match is career won a Match Of the Year award."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: KonamiSuissewrote on 28.01.2022:[9.0] "Genichiro Tenryu is one of the biggest and most recognizable legends of puroresu history. A contemporary of all-time greats like Jumbo Tsuruta (who he has also feuded with), Tenryu came up in AJPW, and was one of the best in Japan during the 80s, with countless great and classic matches. Tenryu was also a proficient tag wrestler and helped train the likes of Toshiaki Kawada and Tomohiro Ishii, as well as creating his own promotion: WAR. I personally loved WAR, it was a very solid alternative to 90s NJPW and AJPW and helped enrich the Japanese indies, with high-caliber talent often performing on its shows. Tenryu would go on to become everyone's favorite grappler grandpa in the 2000s, when he continued to perform rather regularly despite his age. I recommend also watching his retirement match against Kazuchika Okada in 2015. Finally, he was nicknamed "Mr. Pro Wrestling", and for good reason; 9/10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: benny5bellyswrote on 28.12.2021:[10.0] "I will always love grumpy old veteran beats up young up starts and that is how I was first introduced to Tenyru. He can be up and down dependent on motivation but when he is good he is outrageously good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Ma Stump Pullerwrote on 21.07.2021:[9.0] "It's difficult to grade a guy like Genichiro Tenryu: as much as a legend as he is, the actual quality of Mr. Puroresu is wildly varied, from the sluggish early years as a bland babyface in late-Baba era AJPW to his utterly amazing work in the 80's as a brutal main event act with attitude and utter stroicism in his bouts, to his flagging years in WAR and having dream matches in SWS, all the way to NOAH and NJPW stints as well as being a grumpy straight man in the HUSTLE, the list of runs goes on and on. If we are talking about longevity, Tenryu is probably one of the greatest of all time. He remained a relevant figure in wrestling for numerous decades while maintaining a good consistency of wrestling quality throughout. The issue is that Tenryu had a really bad case of phoning it in and making it really obvious when he wasn't bothered: much like a certain Randy Orton, his attitude means he can be great one night and be utterly meh the next. Don't get me wrong, when he's motivated, he's one of the best in the world, a fearless striker with some of the most horrific stiff strikes a person could ever imagine, but a lot of the time he wasn't, and it shows in his performances. The years he spent in WAR in his wrestling prime fighting guys who weren't particularly near his level drags him down a fair bit for myself. That being said: he's still undoubtfully a legend of wrestling and the wars he's had with virtually every major star in Puroresu are spectacular. The man could sell like a boss for anyone and legitimised many a wrestler with his ability to really take as brutal a shot as he dished out. Completely unselfish in the latter part of his career and was willing to lose to virtually anyone for good reason."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Jetlagwrote on 28.08.2020:[10.0] "Ein Wrestling-Genie. Wo andere Wrestler verzweifelt nach innovativen Ideen und coolen Moves suchen, erzeugt Tenryu wahnsinnige Reaktionen, indem er seinem Gegner ins Gesicht tritt und ihm hasserfüllte Blicke zuwirft. Mr. Puroresu eben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: killowenskillwrote on 04.08.2020:[10.0] "I, to be honest, am surprised why Tenryu is not in the first place in the top of wrestlers on this site. Genichiro combined a man who gave wrestling a giant push and a frenzied popularity, and at the same time was a wonderful and completely diverse performer in all periods of his career. Mr. Pro-Wrestling was always interesting. In the 80's, he charmed with his fighting spirit, which led to the gradual creation of King's Road. Amazing matches, iconic confrontations, climbing to the top and finally forming the best wrestler on the planet. Disagreements with Shohei Baba may have robbed us of many "dream matches" against the Four Pillars of Heaven when Tenryu was in prime form, but it fully paid off with Genichiro's adventures in the 90s. A small run in the WWF, SWS, NJPW and of course the memorable WAR - he gave it his all in these places and gave puroresu the rebellious spirit that the industry so needed. AJPW at that time was a great promotion and I share the opinion of "the best time in the business", but Tenryu gave people an alternative that I personally prefer. Genichiro in the 00s... This is the divine Genichiro, this is the second coming, without any exaggeration. The body loses its shape, age makes itself felt, but Tenryu is not going to just give up and write himself off: he pays great attention to the development of his personality in ALL matches, and the audience is literally absorbed in the story of an evil uncle who turns his opponents into dust. Sometimes he could do it seriously, sometimes deliberately caricatured - any of these hypostases looked great and you believe in each one. The trip to HUSTLE... There are no words to describe it. When such business legends do not hesitate to adapt to the comedy entourage - it deserves respect. Watching the 57-year-old Tenryu was much more interesting than watching a lot of modern wrestlers, and this is not a reproach in their direction, just Genichiro loved his job to the last and was devoted to wrestling. I haven't reached the final stage yet, apart from some matches in the farewell tour and, of course, the match against Okada, but I am sure that this will not disappoint me. Tenryu is a legendary wrestler who combines all the necessary qualities and is able to adapt to modern realities, remaining true to himself. I think he is very undervalued outside of Japan, and I would like fans to be interested in this man and all the diversity of his career, not only in AJPW, but in other places, in each of which he has left his mark. Easily the top 5 of my all-time favorite wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: TOUGH AND HARDwrote on 23.12.2019:[7.0] "A mostly great worker (when motivated), a distinguished track record, and quite the draw in his time. Tenryu added some fun, grumpy flavor to a main event scene, but he was also a rather minimalistic and inconsistent worker who never quite had the charisma or passion that his more excellent contemporaries did (be it Tsuruta in his youth, Hashimoto in the 90s, or several in the 2000s). Even still, an important figure in wrestling history, one that his markedly superior pupil, Ishii, owes much to."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: arrancarwrote on 04.11.2019:[8.0] "If you want an older striker who is comparable to our modern-day legends like Shibata and Ishii then look no further than Tenryu. He was doing the 'grumpy old veteran who will beat the hell out of cheeky youngsters' schtick since at least the early 90s and it was always fantastic. He didn't hold back on his strikes like certain other 'famous' strikers *cough* Shinya Hashimoto *cough*; he just fully unloaded with as much power behind them as he could manage. Given that he apparently didn't have any real striking training prior to his wrestling career, and given his particular body proportions, he was never the type of guy to hit his strikes in an impressive technical manner. He was similar to Hashimoto in this regard, but what stopped this being a major issue was that he always had the strong impact in his strikes to ensure they were still great, and his general attitude always felt appropriately warrior-like to match, so I never struggled believing that he was really beating someone within an inch of their life with his massive chops and lariats. His power moves were also always very brutal, though his finishing powerbomb would occasionally look a bit too sloppy to come across as credible. I thought his selling was fantastic, since his stunned and near unconscious acting was very memorable and perfectly put over his opponents' attacks. My favourite part of Tenryu's career was seeing him when he was far past his prime, around 2000-2008 when he would have been 50+, since that was when he got to mix it up in the ring with the new generation of stars and prove he still had the intensity to keep up with them. His best matches were in NOAH and AJPW in this period as well, since I mostly found his earlier work in NJPW, SWS, and pre-2000s AJPW to be good but disappointing because he never really had an opponent who could actually match his level of talent. He's definitely a wrestling legend, though for me he still isn't one of the all-time top workers."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: ElPolloLocowrote on 26.10.2019:[8.0] "He was great when on the offensive and amazing at facial expressions and story telling. However his selling was spotty (and mind he was otherwise an excellent seller) and he fought all his career with the tear and wear on his body resulting from his sumo days. Apparently quite a character in real life and he has long been surrounded by all sorts of wild rumors, from substance abuse to a close association with the mob. Needless to say an amazingly charismatic worker."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: JEK 1991wrote on 31.12.2018:[10.0] "Talented man! Very exciting to watch. He one of mine Japanese favorites along with Antonio Inoki. He only wrestled in North America like less than 10 times. He was memorable in WWE for Wrestlemania 8, Royal Rumble 1993 and 1994. Wrestled for nearly 40 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: RatingsMachinewrote on 01.11.2018:[9.0] "In his day, Genichiro Tenryu was by far the best at being the grumpy old veteran. It's a shame that he didn't stay with All Japan, because Tenryu as the established star fending off the likes of Misawa and Kobashi would have made for great matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Makai Clubwrote on 29.07.2018:[10.0] "As odd as this may sound, Genichiro Tenryu may be the most unappreciated wrestler ever. Yes, everyone who knows of him always praises him as one of the best ever. But when it comes down to it, he almost never gets plaudits and is often forgotten in favour for other wrestlers. Tenryu consistently used his in-ring smarts to stay on the top of his game, no matter if it was 80's All Japan, New Japan, NOAH, even WWE for a few brief appearances. He always made an impact in someway and never gets praised for it, it seems. IMO, Tenryu is an all time great. Ability to work with anyone he faced and got something good out of the match. His selling. His strikes. His uncanny ability to be stoic but at the same time, highly charismatic in his facial features and his body language. His match resume speaks for itself. Hashimoto, Takada, Jumbo, Hansen, Mutoh, Kojima, Shibata. No matter who with, Tenryu was the man. Then, now, always."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Headlockwrote on 15.02.2018:[2.0] "Ich kenne ihn nur durch seine escapaden in Dragon Gate und HUSTLE und ich fande ihn Schrecklich! Er war faul und weigerte sich vernünftig mit zu wrestlen, in HUSTLE empfand ich das nicht schlimm, weil HUSTLE 100% Comedy ist aber in einer Liga wie Dragon Gate, wo kooperation wahrscheinlich das wichtigste Schlüssel element ist, geht sowas einfach nicht! Sicher der Grumpy Veteran ist sein Character aber das enschuldigt noch längst keine unprofessionellalität."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: MitsuharuMisawawrote on 06.12.2017:"He used to be stiff and I like it. He always seemed to look down on his opponents, which i like too. I also like his face and his haircut."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Blood Pumpwrote on 07.04.2017:[8.0] "Stayed in the game for too long, which kind of tarnished his legacy a bit but he did at the very least had a serviceable retirement match and put over the right guy in his final outing. Deserved props for revolutionizing how one could work in the ring alongside Tsuruta."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Claudio Herowrote on 23.03.2017:[10.0] "Mr Pro Wrestling Genichiro Tenryu ist für mich einer der 20 besten Wrestler aller Zeiten und in den Top 10 Japans Ever ! Habe sehr viele seiner Matches gesehen und er hat mich immer überzeugt ! Sowohl als Bad Ass (z. B. als in Kobashi die Brust blutig choppte .. ) oder auch In-Ring Technisch mit seiner Fähigkeiten immer vorne mit dabei ... Hat auch über Jahrzente gewrestlet meist auf sehr hohem bis überragenden Niveau ! Seine vier 5 Sterne Matches sagen ja schon alles ! Hier kann man nur den Hut ziehen ! Tenryu volle 10 Punkte !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Bpt Screwjobwrote on 10.11.2016:[10.0] "Maybe not the most spectacular wrestler, but hell he knew how to give a great stiff match! Even his 80's fights stood the test of time and are still very enjoyable to watch. Any tag or single fight with another big name in it is worth watching when Tenryu is involved. He won everything and is the only Japanese wrestler to defeat both Inoki and Baba by pinfall. He was still wrestling 4 stars + matches at an age where many men let alone wrestlers are already in retirement. He and Tsuruta created the blue print for all those crazy AJPW heavyweight Fights in the 90s . A Legend among Legends of pro-wrestling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: GAMSwrote on 01.03.2016:[10.0] "His ability to put on consistently good, hard hitting, matches - even late into life, is impressive.  Additionally, demonstrated ability to carry promotions, including his own - which provided a scene on the indy's for younger talent to get experience, etc..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: yanuswrote on 26.04.2015:[10.0] "Brilliant wrestler, with all-time great facial expressions and charisma. Maintained a incredible high level for a very long time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: eldenaaaaawrote on 08.03.2015:[10.0] "A legend before 2000, Tenryu continued his work in New Japan and All Japan capturing several championships and accolades along the way."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Fountain of Misinformationwrote on 10.10.2013:[9.0] "Eine wahre Legende und einer der Größten seines Landes überhaupt. In seinen starken Jahren, und das war eine verdammt lange Zeit, ein spitzenmäßiger Wrestler, der zudem immer super sympathisch rüberkam. Einen wütenden Genichiro Tenryu, der seine Gegner auseinanderkloppt, kann man durch nichts in der Wrestling-Welt ersetzen. Tenryu gegen Tsuruta, die beiden im Team zusammen, Tenryu und Ashura Hara, Tenryu gegen Choshu, viel besser kann Wrestling nicht sein und werden. Und noch etwas zu den letzten Jahren seiner Karriere: Der Mann muss nicht mehr im Ring stehen, weder aus Ego-Gründen noch weil es finanziell notwendig ist. Aber er tut es, weil er nachwievor sichtbar viel Spaß am Wrestling hat. Wenn jemand mit über 60 Jahren und nach über 3. 000 Kämpfen noch vor ca. hundertfünfzig Nasen in den Ring steigt und den Nachwuchs fördert, kann ich einfach nur den Hut ziehen, aber ganz tief und mit Verneigung. Ric Flair hat die Herrenbrust als Wrestler in den USA salonfähig gemacht, Tenryu hat dies mit dem gleichen Stolz und der gleichen Unbeküm­mert­heit in Japan getan. Und beide haben dies bereits getan, lange bevor beide wie Mürbeteig auseinander gefallen sind, ich rede hier von Männern um die 40 Lebensjahre. Dieser Mann ist der Grund warum ich immer einen Chop machen will, wenn ich einen Faustschlag antäusche. Einen Chop einem Faustschlag folgen lassen, was für eine simple aber geniale Idee!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Kenshin Uesugiwrote on 27.08.2013:[9.0] "Mittlerweile hat ihm sein Alter doch eingeholt, liegt wohl auch daran das er in letzter Zeit sich öfter verletzt hat. Jetzt er bewegt sich schon langsam und viel kommt auch nicht mehr von ihm in einem Match, spielt immer mehr nur den alten grummligen Ringopa. Das ist lustig bis er dann doch ab und zu umschaltet, für seine patentierten Punches, Chops oder Lariats reicht es noch und das mit voller Wucht. Aber die vielen Jahrzehnte wiegen doch eben schwer, macht aber nichts er ist eben ein der größten Legenden. Und deswegen muss man trotz schwachem Körperbau(trägt ja mittlerweile lange Hose und ein Shirt) und Leistung in der heutigen Zeit, das Lebenswerk jetzt schon hoch honorieren, für die einmalige Karriere! Aber das er nun kurze Haare hat und das nach all den Jahren mit diesen wunderbaren Naturlocken das ist … eigentlich unverzeihbar."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Mudamwrote on 25.08.2013:[10.0] "Tenryu great wrestler during his prime, best grumpy man out there the true thunder ryu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: MaKnowrote on 21.08.2010:[10.0] "Tenryu ist auch mit 60 Jahren auf dem Buckel in Japan noch eine außergewöhnliche Attraktion. Für die ganz großen Kämpfe ist er heutzutage sicherlich der falsche Mann, aber zumindest vereinzelt ist er noch zu tollen Leistungen imstande."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Eddiewrote on 26.10.2009:[9.0] "Das was ich von ihm gesehen habe ist schon wirklich nicht von schlechten Eltern. Allein sein Klassiker gegen Tsuruta wird ihn so gut wie unsterblich machen. Aber auch der Rest ist gut bis sehr gut, 9 Punkte. Für die 10 muss ich noch ein klein wenig mehr von ihm gesehen haben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: AxXxelwrote on 23.08.2009:[10.0] "Über Tenryu kann ich lediglich meine Begeisterung aussprechen, er wird definitiv als eine der größten japanischen Legenden in die Geschichte eingehen. Der Mann hat eine unglaubliche Ausstrahlung und wusste - gut dosiert - insbesondere in Teamkämpfen auch in den letzten Jahren noch zu überzeugen. Bestnote."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Rob Van Duesenschrauberwrote on 17.04.2008:[10.0] "Höchstwertung für die Karriere. Der Vergleich mit Ric Flair ist gar nicht mal so falsch. Hat in Japan eigentlich alles erreicht, was man erreichen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Pulpulwrote on 31.03.2008:[10.0] "Egal ob Heute oder vor 20 Jahren: Tenryu hat immer noch eine unglaubliche Ausstrahlung. Er macht zwar heute nicht mehr viel, aber das was er früher gezeigt hat, hebt ihn in den höchsten Kreis der japanischen Legenden. Schade das er den "falschen" Weg gewählt hat und All Japan verlassen hat, damit hat er uns sicher um den ein oder anderen Klassiker gebracht. Außerdem Frisurentechnisch schon immer ganz Vorne dabei."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: LexLuger4everwrote on 24.02.2008:[8.0] "Genichiro Tenryu ist ein Guter! Legt auch einen sehr stiffen Stil an den Tag, ist aber auch in der Lage, aus fast jedem ein ansehnliches Match herauszuholen!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Rancorwrote on 04.12.2007:[8.0] "Tenryu ist so etwas wie der Ric Flair Japans. Mancher steht ja auf diese Vergleiche. In den letzten Jahren hat man ihm das Alter aber doch angemerkt. Würde ihn dennoch gerne wieder bei NJPW oder AJPW sehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: xspikexwrote on 31.10.2007:[8.0] "Länger im Ring als andere auf der Welt und bringt immer noch gute Leistungen. Wie Oskar mit derr Trommel scheint er bei 52 Jahren einfach stehen geblieben zu sein. Gehört sicherlich zu den Top 5 des Puroresu. Ich verneige mich vor ihm."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Chefiwrote on 18.12.2024:[10.0] "Hiromu might be one of the very best wrestlers New Japan has to offer. His charisma is like no other and he always knows how to have a good match and is overall an amazing talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Trombek Kushinikawrote on 24.10.2024:[8.0] "Hiromu seems to have been stuck in the Junior Division for what feels like Ions. This is despite showing the ability to wrestle a more heavyweight style, slow down his offence and concentrate on dramatic matches. The guys has a great charisma and is so over in Japan. I get the feeling he would actually translate pretty well into the US scene if he ever fancied it."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: jsbortswrote on 09.09.2024:[9.0] "One of the best Juniors of all time, an absolute dynamo in the ring, oozes charisma in a really fun and different way and always feels innovative."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Willie 19200wrote on 04.06.2024:[9.0] "Epic wrestler and the goofiest, wackiest character in NJPW right now. This guy easily has some of the most charisma and character in New Japan right now. I loved his match he recently had with Mustafa Ali, and really enjoyed his matches with Ospreay and Desperado. Overall great wrestler and entertainer and excited to see what they'll do with him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: ultravioletshiroiwrote on 25.05.2024:[9.0] "Charisma would be off the charts if he wasn't so goofy Very good well rounded wrestler too with a good arsenal of moves and a devastating finisher. If he could speak better English he could have probably had a better run in ROH and won more matches. It's a shame it's so difficult to find many of his matches online, and I've seen him lose in the vast majority of matches I've watched of his."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: DexterXSRwrote on 17.02.2024:[10.0] "Hiromu may be the goofiest of goobers to have ever stepped into a ring, he also just happens to be one of the best Juniors in the world right now. But like c'mon, he's one Goofy Goober."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: GreatAetherBosswrote on 11.01.2024:[10.0] "I mean, c'mon...Hiromu is arguably the coolest goofball to ever step in a wrestling ring and run circles around his opponents every time. Dude is up there amongst my Mount Rushmore of my favorite wrestlers that also happen to be absolutely world class in the ring, and although he's changed his style a bit since the neck injury, and understandably so, he still is just a ball of energy ready to explode at a moment's notice."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: SoaKaswrote on 18.11.2023:[9.0] "Awesome Junior. Athletic, tells a great match story, intense, charismatic, innovative. What do you want more from a great wrestler? EDIT: He desperately needs some sort of change as he's sadly been stale for a pretty long time now :/"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: skillgullwrote on 17.11.2023:[8.0] "Hiromu Takahashi is great, however this year he hasn't been as good as he normally is. In ring he's great, it's just he hasn't been as good as he normally is. Overall fun to watch and very enjoyable even if he isn't always my favourite Jr Heavyweight."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: lilrorowrote on 06.05.2023:[10.0] "he is a magnifisent great wrestler He receives many techniques, shines his opponents and shines himself He is very personable and always cares about others His pro wrestling always has some stories and move the audience."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Tyler72wrote on 12.04.2023:[7.0] "Hiromu is a crazy talented wrestler. Very new to him, but there was so many awesome close calls, and was just an all-around great time watching his match with Taiji Ishimori in the New Japan Road series."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: IronStarwrote on 25.02.2023:[10.0] "Hiromu Takahashi is one of the best Jr. Heavyweight wrestlers in the history. Hiromu has unique charisma which makes him special for me. He is just amazing in the ring. Hiromu Takahashi is one of a kind wrestler for me. I hope he will make his dream true in the future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Robert Taylorwrote on 24.02.2023:[10.0] "DAS Aushängeschild der Jr. Heavyweight Divison bei New Japan. Zugegebenermaßen einer wenig wertgeschätzten Division seitens New Japan. Hiromu Takahashi ist einer der charismatischsten Wrestler in Japan und auch im Ring richtig stark, was er schon mehrfach unter Beweis gestellt hat. Er leidet ein wenig darunter, dass seine Division meist keine große Rolle spielt, das Spotlight daher begrenzt ist und er als Junior mehr oder weniger alles durch hat. Ihm fehlen auch die frischen Gegner. Ein Ausflug zu den Heavyweight wäre da schon mal sehr interessant aber das wird wohl leider nicht mehr kommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: benh2wrote on 20.01.2023:[8.0] "Capable of some great matches. Incredibly daring (maybe too much so) but has a lovely style for a junior, especially these days in the world of mindless flips. Has a great impact offence and very smooth in the ring. Maybe needs to master psychology a bit more in order to really perfect the long epics that are sometimes required of him. A very strange unique charisma that gets him over well."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: MainEventMasterwrote on 28.11.2022:[10.0] "One of the best junior heavyweights of all time, crazy explosive, exciting, and a fun personality, he is perfect for LIJ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Wrestling Foreverwrote on 08.09.2022:[9.0] "Mit seinen neuen Aussehen, den gefärbten roten Haaren und dieser Bad Ass Einstellung noch besser als zu seiner Face Zeit. Einfach ein klasse Mann der wie Tetsuya gegen alles rebelliert. Im Ring sehr, sehr stark und Charisma hat die tickende Zeitbombe auch unfassbar viel. Auch noch jung da kommt noch viel von ihm. Edit 08.09.2022 bleibe bei 9 Punkte. Er hat einige schweren Verletzungen überstanden wo man auch dachte das ist sein Karriere-Ende. Ist übrigens Rekordhalter beim Gewinn des NJPW Best of the Super Juniors Tournament das gewann er viermal und er ist der erste Wrestler der es schaffte das Turnier dreimal hintereinander zu gewinnen von 2020-2022."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Prince DY8wrote on 02.08.2022:[10.0] "Hiromu Takashi is crazy talented wrestler. He can do whatever he wants in the ring. He is absolutely great talent. I think he can wrestle in heavyweight division."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: tsdenizenwrote on 31.05.2022:[10.0] "Maybe my favorite wrestler of all-time, Hiromu Takahashi is liable to be responsible for a whole new generation of high flying wrestler who cares less about getting a perfect 10 in a gymnastics competition and more about showing that he has absolutely no regard for his or his opponent's safety (while still being pretty damn safe). Takahashi's whole thing is "controlled chaos", a bizarre Yakuza-like figure (it would not surprise me if he drew inspiration from Kakihara in Ichi the Killer) who comes out with stuffed animals he's named. He's cool, dangerous, insane, and also kinda adorable and baby, flailing his body about like a windsock in such a manner that makes it feel like not only he'll break down, but reality itself might too. If you're an AEW fan, Takahashi is closest to Darby Allin, but weirder, crazier, hard-hitting and with more physical charisma and a better look. If he were larger, he might be the biggest star in NJPW, but even at his size, he's still compelling in a way no one else is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: GriffinXwrote on 25.01.2022:[9.0] "A creative junior who is willing to do crazy thing. A man who had naturally bonded with the fans. You do worry if his body will hold up given how often he's had to take time off"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Wright15wrote on 09.01.2022:[10.0] "Only Jushin Liger and Tiger Mask rank above Hiromu Takahashi in the history of New Japan's junior heavyweight division. He is insanely charismatic, a master at selling, and a brilliantly fast-paced, high-impact worker. Only his neck and shoulder injuries have held his career back, but he has come back from both a better worker than before."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: NikoKillbainwrote on 01.01.2022:[8.0] "Remains the undisputed star of New Japan's Junior Division. His 2021 was difficult though, as the division struggled to consistently garner interest. Even though he was out for a chunk of the year, he feels overexposed, winning his third BOSJs in four years. Fortunately his injuries haven't affected his in-ring ability, and he produced two of my fvourite matches of the year - vs Robbie Eagles at Wrestle Grand Slam, and the BOSJ final vs YOH. Still, he's reliant on his spot in New Japan, and when the company struggles to build the Jr Division, it ends up looking like a one-man division."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Ameridragonwrote on 16.12.2021:[10.0] "Hiromu is one of the most entertaining and interesting wrestlers I've ever seen. Sometimes he can be off his game and some sequences won't work very well, but every time he is in a huge match he delivers. He also oozes charisma in a way I've only seen from wrestlers like Randy Savage or Atsushi Onita, where as soon as he steps out from the curtains the crowd is in the palm of his hand. He has amazing stamina, going for a half-hour or more in multiple big matches without blowing up. Just fantastic, and I hope New Japan doesn't keep him in the Junior division, he is already a huge star, but he could be their next Ace if they pushed him in the Heavyweight division."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: GoldLigerwrote on 05.09.2021:[10.0] "Hiromu absolutely gets it, but he's also out of his mind in the best way. I recall seeing him back when he was Kamaitachi on his excursion to the west; his matches in CMLL & ROH showed a lot of potential (I even had the pleasure of seeing him wrestle live in 2016, albeit in a comedy mixed tag at a Northeast Wrestling show), but the Dragon Lee series really shined as it had this really interesting story about these two young guys early into their career coming into their own against each other... by trying to fucking kill each other. Hiromu developed this sadomasochist character out of his matches with Lee and ran with it into becoming one of the most interesting character workers in Japan while also the best in-ring Jr. Heavyweight in the business. I love seeing Hiromu tell his stories and work his magic; he has promos and segments that blow your mind as much as his highspots if you pay attention. Dude got stuffed animals over and believably got across PTSD when confronted by fucking Taichi in a promo once. I hope his style doesn't end his career early, since he has the potential to be an all-time great; he's already probably the best Jr. Heavyweight since the GOAT Jushin Liger."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Hillwrote on 07.08.2021:[10.0] "In all my years of watch wrestling I have never seen anyone like Hiromu Takahashi. His flamboyant wardrobe, unorthodox in ring style, and balls to the walls insane personality, he is one of a kind and the ace of the junior heavyweight division. I cannot stress enough how great his series of matches were against Taiji Ishimori, Will Ospreay, and eternal rival El Desperado. Seriously go watch any of those bouts for some death defying wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: BlakeFR37wrote on 02.06.2021:[10.0] "The G. O. A. T of the Juniors. The Man, The Myth, The Legend. The leader of the Junior Division which means MONEY and ENTERTAINMENT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Kungwrote on 13.04.2021:[9.0] "Hiromu Takahashi is probably my favorite junior heavyweight/cruiserweight on the planet right now. The dude has a great gimmick, his wrestling ability is first-rate, and he's one of the premier talents at New Japan. Nothing else to say, the dude's just great at what he does."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Ma Stump Pullerwrote on 21.03.2021:[9.0] "Hiromu just screams superstar. Crazy amounts of charisma and a killer gimmick that quickly got him over as NJPW's top junior heavyweight. Despite being in his early 30's he's built a great career of matches throughout the years and doesn't seem to have many actual bad matches or even average bouts, always getting more out of his opponent, always dragging them to the next level. His style is very high impact and a solid crowd pleaser, seemingly pulling out anything at any time with a combination of crazy bumps but a strong offence when he's the one throwing hands. I do fear that, with his neck and pec injuries that he might need to slow things down lest he go for a early retirement, simply because his style is not generous on the body. Regardless, he's one of NJPW's biggest stars of the new gen of talent, and I could see him going even higher if he can learn to pace himself in the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: michmoose21wrote on 09.02.2021:[10.0] "The top junior in the whole world. He oozes charisma and is so good in ring. He is absolutely insane and will take any bump, even after he broke his neck."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: medousewrote on 11.12.2020:[9.0] "The Ticking Timebomb nickname could not be more corrent when we talk about this guy. The absolute crazy madman when it comes both to his looks and personality. The stunts he does are always giving me goosebumps. I remember the first time I saw him. It was in ROH. He was doing some singles match and suddenly his rival went outside the ring. Hiromu climbed top turnbuckle, jumped as high as possible and landed a Senton on that poor dude. Jeez... What a daredevil! I love his style and I love his work. I love this crazy psycho!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: djv2448wrote on 06.12.2020:[10.0] "In my opinion. Hiromu Takahashi is the most charismatic wrestler in the world today. and he compliments that with an explosive, high impact style that belies his 5'7 frame. without a doubt one of New Japans big rising stars prior to his neck injury, Hiromu came back seemingly more over than he was when he left, and in ring. he never missed a step. While not the most technically gifted wrestler in the world. his raw charisma, and unique skillset off set any potential flaws in his game, regardless of whether one speaks japanese or not, Hiromu can draw you in and make you invested in all he does. Despite his lack of size he has come off as a believable threat in his excursions to the heavyweight divisions, and with the right build I think he could become a future heavyweight champion. The only real concern is that his style, which has remained unchanged despite a broken neck, may lead to a shorter prime, and a shorter career than we all may hope. Despite that, it's amazing that this is the same wrestler who was a floundering young lion not too long ago... Now Hiromu is the Ace of the Junior Heavyweight division, and thats a title that will remain his until he wants to give it up."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Scott Kobayashiwrote on 16.07.2020:[10.0] "Hiromu is my favorite current active wrestler in the world. Along with Daniel Bryan, he may be the best no fans wrestler. Something about his matches are great, even without fans. He has BAGS of charisma, is really stinking over, and can wrestle for days. While I do not think he will ever not be a junior heavyweight, he will be heavyweight champion one day. He will challenge and win as a junior. If his career goes as expected, and with no major injuries he may go down as the greatest junior ever. Liger has huge shoes to fill, but if anyone can it is Hiromu. 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: lmll1972wrote on 14.07.2020:[10.0] "Absolutely incredible. He is loaded with charisma and even after his broken neck is still going out there and having absolutely brutal matches. Hiromu is still young and it looks like New Japan is positioning him as one of there top wrestlers and they are right to. Not only is he the guy to step in and take Jushin Thunder Ligers spot as top Junior, I think he'll also be IWGP World Heavyweight Champ one day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: ApexOfEvolutionwrote on 24.06.2020:[9.0] "Ein fantastischer Wrestler mit spannenden Move-Set. Dazu ist er unglaublich charismatisch und zeigt tolle schauspielerische Leistungen, wenn er aufgrund seiner Mimik eine komplette Storyline wiedergibt, auch wenn er dabei leider einen gewissen Hang zum Overselling hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: VillainClubwrote on 12.05.2020:[10.0] "Fantatischer Wrestler und zurecht das ACE der Junior Division von New Japan. Auf ihn Wartet noch großes solang er sich nicht verletzt. Hoffen wir das beste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: BDDwrote on 08.04.2020:[10.0] "Hiromu is an incredible wrestler, he is very good in the ring, very charismatic, and his promos are very good, and he has an incredible ability to connect with fans, he is one of my favorite Juniors today, and he has just 30 years old, and has everything to become one of the greatest Juniors of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: zephyrwrote on 04.01.2020:[10.0] "His promos, in-ring style, and look all suit his character perfectly and are nothing short of flawless. Having already shown himself to be one of the best junior heavyweights of all time, his injury and heroic unlikely return to the ring will be the last two ingredients needed that will cement him as a legendary all time great in 10-20 years time. Welcome back, Hiromu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: ElPolloLocowrote on 20.09.2019:[7.0] "Huge charisma, good but sometimes weird moveset and an amazing ability to connect with fans. However his utter fearlessness and tendency to sell like a rag doll thrown around cost him very dearly. One of a kind, I hope he will be back in acceptable shape and not as a broken reminder of the price of pro-wrestling like Tomoaki Honma is."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "A super charismatic wrestler with great athletic abilities and a special connection with the crowd. I love his brutal moveset, his submission game is a little underrated. He can play different roles but he is obviously at his best when he is the underdog babyface. Still very young and still so much potential. Hope he comes back soon."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: PuroresuLoverwrote on 24.05.2019:[10.0] "The greatest Junior Heavyweight in the world right now! Hiromu Takahashi has it all to be the best: The charisma, the look, the mic-skill, the in-ring skill, he's excellent at telling a story in the ring and has a psychology and selling that no other Junior has it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Garrettwrote on 07.05.2019:[9.0] "Mr. Personality. Hiromu is a pretty strange dude, but he transforms his weirdness into charisma to which the likes I've never seen. His matches with Dragon Lee, Will Ospreay, The 4 way at WK12, and Taiji Ishimori are some of the best I have ever seen. Also he deserves my 9 rating for introducing us to Mr. Trophy, Mr. Belt, Daryl, and Daryl Jr, but back to his wrestling, Takahashi is one of a kind and will accomplish a lot as he continues his career. Hopefully he can become NEVER Openweight Champion so he can have classics with some of the Heavyweights. Could you imagine a match against Ishii, Suzuki, or maybe even Naito?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: 20SaiDa19wrote on 18.03.2019:[10.0] "Hiromu, to me, is the complete package. He has a captivating character & look and other than Tetsuya Naito, may be the most charismatic active wrestler today. He is also an incredible in-ring talent, although his in-ring style may change after the injury he suffered last year."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: RatingsMachinewrote on 15.10.2018:[9.0] "Hiromu Takahashi is a fantastic wrestler who worked incredibly hard, but he took risks that he didn't need to. When Takahashi comes back, presuming he does come back, hopefully the near-miss will make him realize that he doesn't need to do some of the wilder spots in his arsenal. The incredible matches Takahashi were in would still be incredible without them."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: taabr2wrote on 14.09.2018:[9.0] "Incredibly charismatic and an absolute beast in the ring, Takahashi is one of the best junior in the world right now, For some reason I can't go the 10/10 just yet but if he continues on this path and continues to add classic matches to his resume then I could go higher."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: swansea630wrote on 04.06.2018:[10.0] "Probably the best junior/cruiserweight talent out there today, putting on absurdly fun and fast paced matches every night that he performs. Not only is he a great in ring talent, his wild antics in promos, in interviews, and at ringside make them a joy to watch. One of the most well rounded performers around today and a future megastar imo."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: InactiveGuruwrote on 01.06.2018:[9.0] "He has come such a long way from when I first saw him compete in Mexico. His feud in Mexico against Dragon Lee is what first brought him to my attention. Just like EVIL joining LIJ is doing him a world of good and I am so happy to see him on the main roster of New Japan having good matches. Just waiting for a Junior Heavyweight title reign now."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: aydings05wrote on 06.05.2018:[10.0] "Fande ihn ja damals als Kamaitachi schon ziemlich stark hat sich dann aber noch sehr gut weiter entwickelt und kehrte dann Als Hiromu Takahashi zurück und tratt dann den Los Ingobernables de Japon bei wo er sehr gut reinpasst . Im Ring einfach Weltklasse , hat viel Charisma und sein Gimmick gefällt mir ebenfalls sehr gut . Vor allem seine Matches gegen Dragon Lee mit dem er eine großartige Rivalität hat/hatte und mit Kushida muss man unbedingt gesehen haben . Er sollte meiner Meinung nach eigentlich das "Ace" der Jr. Heavyweight Division sein . 10/10 !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Cleanerwrote on 07.01.2018:[10.0] "Der Junior mit einem grandios übertriebenem Gimmick, bei dem der inflationär verwendete Ausdruck der "Charismabombe" wortwörtlich hundertprozentig zutrifft. Dazu gesellen sich wirklich hochkarätige Ringqualitäten, die sehr weit über reines Spotwrestling hinausgehen - und seine Spots sind atemberaubend. Ohne Takahashi würde weder LIJ, noch die Junior Division so fruchten. Ein weltklasse Mann, wäre er ein zwei Köpfe größer eine sichere Karte für den Main Event, so "nur" mit Kushida der Beste seiner Gewichtsklasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Dragon Fighterwrote on 21.11.2017:[9.0] "A fresh face of the jr division. Have insanity, intensity, great presence and charisma. He will be a key member of the jr division along with ospreay and kushida. 2017 is his breakthrough year. Put on so many great matches with kushida, lee, ricochet, ospreay, liger, scurll, lethal, etc. Also has a good tag run with bushi as well. A very bright future for him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: LosIngobernablesdeUKwrote on 08.08.2017:[10.0] "Hiromu is perhaps , or is, the best Jr. in the world right now. The guy is absolutely outstanding & is the definition of a superstar. He's definitely in NJPW's top 10 wrestlers right now. The guy is arguably a contender for "Wrestler of the year. " Some say even above or behind Okada. I really hope he gets Belto-San back very soon & gets yet another dominant reign just like his previous one."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: sarahflannwrote on 28.07.2017:[10.0] "The most captivating character in New Japan with the explosive move set to match. Everyone should go out of their way to watch him in action."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: TheAlmightywrote on 18.06.2017:[10.0] "Takahaaaashi Hirooomuuu oder auch Ticking Time Bomb und zsm mit Naito wohl die coolste Sau der Wrestling Branche! Er komplettiert mit eben genannten und Ibushi meine persönliche Top 3. Der Mann mit der geilsten Jacke und dem geilsten Mantel der Welt ist ein absoluter Weltklasse Wrestler, der während seines Titel Reigns mehrere Weltklasse Matches abgeliefert hat, denen er immer seinen persönlichen Stempel verpasste. Takahashi strotzt nur so vor Charisma und erinnert mich durch Bewegung und Mimik immer mehr an Nakamura! Er schafft es seine riskanten Top Moves mit Story zu paaren, was "nur" guten Juniors abgeht. Takahashi ist im Komplettpaket zsm. mit seinem Rivalen KUSHIDA der beste Junior der Welt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Headlockwrote on 01.06.2017:[10.0] "Ob als Kamaitachi oder TICKING! TIME! BOMB! Takahashi ist zusammen mit Eita, Yamamura, Takeshita und El Lindaman und ner ganze menge anderen Rookies Vorreiter einer neuen und afregenen Genaration von Jr. Wrestlern, Look stimmt, In-Ring stimmt, Charisma stimmt, Absoltes Total Package"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: TooSweetPhilwrote on 21.05.2017:[10.0] "In meinen Top 5 Aktuellen Westlern. Takahashi hat das in die Jr. Division gebracht was benötigt wurde und zwar einen hoch-charismatischen dafür im Ring sehr starken Superstar der die Division auf ein neues Level bringen kann. Tolle Mimik und Gestik, dazu extrem cooles Move-Set mit gefährlichem Ring-Style. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: GermanStrongStylewrote on 15.05.2017:[10.0] "Suicidal style of wrestling, which feels like a stunt man show than Ospreay or Richochet (all 3 are at the top of the high flyers) The gimmick change to LIJ made him a special, charismatic wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: jamzell00wrote on 08.05.2017:[9.0] "The breath of fresh air the Junior division and hell even all of NJPW needed. Hiromu has this mentality that if he isn't trying to kill himself in a match it won't be good. It's a style wrestling doesn't have enough of for obvious reasons but by god do I enjoy his. His run in CMLL, ROH, and his already legendary rivalry with Dragon lee makes me happy to be a fan of wrestling. 5 months into the year and he is easily my wrestler of the year so far. Just hope he doesn't retire by 32 with how hard he goes"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: 8BitLegendwrote on 02.05.2017:[6.0] "Junger Wrestler mit einem vielleicht etwas zu großem Gimmick, gemessen an der Erfahrung. Wirkt unnatürlich und eindimensional im Moment. Andererseits kann man es NJPW nicht verübeln schnell neue Talente zu pushen, nachdem sich WWE 2016 kräftig bei ihnen bedient haben. Ich kann mir vorstellen, dass Takahashi über die nächsten 2-3 Jahre an Profil gewinnt. Technisch scheint er in der Lage zu sein das hohe Niveau bei NJPW mitzugehen. High-Profile-Matches, die ihn definieren, stehen derzeit jedoch noch aus."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Chekerwrote on 29.04.2017:[9.0] "Man, the former Kamaitachi really found himself these last couple of months. His trip to Mexico was already a while back, but you can still see a clear evolution from now compared to half a year ago. Tremendously charismatic and a hell of a high flier. The sky truly is the limit for young Takahashi Hiromu."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: TheRainmaker28wrote on 16.02.2017:[10.0] "The best Junior in the world in the moment. Takahashi has a such unique style in-ring, he got a lot of charisma and most important, he brought life to the Junior Heavyweight Division again. I love KUSHIDA, but Taka makes it feel fresh and brings a lot of importance to the title. I hope that his career go for years, but he is such a high-risk wrestler that is hard to think in that way. Aside from that, he is a truly Junior legend in the making."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: TheWrestlingFanwrote on 13.02.2017:[9.0] "One unique Jr. Heavyweight wrestler ever. His in ring ability is quite different from other jr. heavyweights, because he blends high-risk, strong style, and old school wrestling into his moveset. He can take hard bumps and dangerous spots seamlessly. In addition, he also develops a mad man character that oozes mysterious aura to his in ring presence, but quite charismatic, too, as people are invested in him once he steps in. In conclusion, Hiromu definitely has great potential and can easily fill in Kushida's shoes as the face of Jr. Heavyweight division."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Rasslin Ruleswrote on 08.01.2017:[10.0] "Seit WK11 und dem Aufbau dahin hat er sich die 10 von mir verdient. Dazu fand ich ihn bei PWG auch super."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Gloverwrote on 26.06.2016:[10.0] "One of the most talented young talents in the entire world right now, and it may be because he's been all over the world. One of NJPW's young lions, Kamaitachi has been on excursions in Europe, Mexico, and now the United States, meaning he's worked in promotions such as RevPro, DDT, wXw, CMLL, ROH, and PWG in several countries on 3 continents at the age of 26. His time in CMLL is really what made him stand out, as the quality of his matches went through the roof and he was putting on fantastic matches with fellow rising star Dragon Lee that got better each and every time, culminating at NJPW's CMLL crossover show Fantasticamania earlier this year. Now, working with New Japan's American affiliate ROH (and in various other USA indies), Kamaitachi seeks to show off how amazing he is to a whole new audience, which will no doubt be successful if he's given the platform."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Laurelleswrote on 15.06.2016:[9.0] "Almost seems tailor made for jr. ace material when he gets back to NJPW - one can easily imagine him in a tweener group such as CHAOS. In terms of ability, there's certainly potential for more but it may be that his small stature holds him back in that regard."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Luv all wrestlingwrote on 05.06.2016:[10.0] "SO MANY GREAT MATCHES VS DRAGON LEE. Kamaitachi is a njpw prospect who can be the ace of the jrs when he returns to his home company"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: HammertonWaywrote on 29.01.2016:[8.0] "There is something very special about this kid. He pulled off an amazing match against Dragon Lee and earned his first title. When he eventually returns to NJPW, he is going to be a top contender for the IWGP Jr. Heavyweight title."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Iam betterthanwrote on 06.01.2016:[9.0] "This rating have to be high, he is doing a great work in CMLL in Mexico where he outstanding feud with Dragon lee, very good matches against Dragon lee and his recent match against Maximo Sexy in Sin Piedad 2016 was a must watch, and thus shows that how much talented this guy is, he want just few more years and then he will ne at top, maybe 2016 be his year."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Matt4Wrestlingwrote on 08.12.2013:[7.0] "Eindeutig ein Diamant im Roh-Schliff! Er hat noch nicht ganz das Charisma im Ring und braucht noch sehr ersichtlich etwas Training, ABER er macht das mit Kraft und Entschlossenheit wieder weg!  Man kann gespannt sein, wohin sein Weg noch führen wird!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Blue Meaniewrote on 01.12.2013:[6.0] "Hat mir gestern in Oberhausen bei wXw sehr gut gefallen. Hat viel Potenzial, das er hoffentlich in Zukunft nutzen wird!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Kenshin Uesugiwrote on 15.08.2013:[6.0] "Akira Maedas unehelicher Sohn, da kann man mir erzählen was man will das sieht man doch! Wirkt auf den Blick eher unscheinbar, da hinter verbirgt sich aber ein ambitionierte Wrestler, der manchmal seinem Vater gar nicht so unähnlich im Wrestlingverhalten ist. Mal sehen wie er nach seiner Reise sein wird, neue gute Leute in der Junior Division? Immer her damit."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: STRIGGAwrote on 09.01.2013:[5.0] "Ist kurz davor, den Schritt vom Young Lion zum vollwertigen Wrestler zu gehen. Dabei besticht er durch unbändigen Willen und viel Leidenschaft. Für die Junior Heavyweight Division wäre er eine wertvolle Ergänzung."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Fountain of Misinformationwrote on 03.09.2012:[5.0] "Klasse Young Lion mit richtig viel Feuer und Talent, freue mich darauf seine weitere Entwicklung als Wrestler mitzuerleben."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: jsbortswrote on 14.01.2025:[10.0] "Kota Ibushi is one of the most talented wrestlers of all time. At one point I thought he was going to be New Japan's next top babyface star, but ultimately his career never worked out the way that it should have. Despite that, he has one of the absolute greatest catalogues of matches of any wrestler ever, and that can't be taken lightly. I think history will look back on him as a cautionary tale, but ultimately he has produced some of the greatest pro wrestling art of any wrestler to ever lace up a pair of boots"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Its Clobbering Timewrote on 06.01.2025:[10.0] "Kota is the Man, he is the total package a perfect wrestler and one of my favorites of all time. Ibushi is the most skilled in ring wrestler ever he can do every style at an elite level. He is unbelievable, a legend, a badass and easily one of the best Professional Wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: V0icesAreLouderwrote on 10.12.2024:[8.0] "Man what could've been with Ibushi, he still had stuff left to give to the sport and maybe he still can just not in his current role. He is throwing away everything he worked to create. However you can't deny his peak was one of the greatest to have ever happened. His moveset his ability to create drama out of nothing was incredible, it felt he could work a good match out of anyone that stepped in the ring with him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Blue Dream Babyfacewrote on 02.12.2024:[7.0] "I'm going to try to put this as delicately as possible: Kota Ibushi is currently ruining his own legacy. The past two years of Ibushi have been incredibly frustrating. He has been trying to work through injuries, to the detriment of his in-ring work. He has burned bridges with multiple companies in Japan, including the company he basically grew up in (DDT) and the company that gave him his brightest spotlight (NJPW). His match with Marufuji where he broke both of his ankles was both the worst and saddest match of 2024. Recently, it's suspected that he wrestled for a joshi company with a noticeable staph infection on his back. He's started garnering comparisons to Jeff Hardy in his worst moments. All of this because he doesn't believe in modern medicine. It's by the strength of his previous work that he still gets a 7 from me, but someone needs to save him from himself at this point."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Khalid Acewrote on 14.11.2024:[6.0] "My previous rating for Kota Ibushi was a 10 and he deserved every bit of it. He is actually in my top 5 of the best professional wrestlers EVER. That being said I don't think he should've joined AEW because they have ruined his career. He is not giving a chance to compete in 1v1 matches or build good feuds. Their awful booking ruined one of my favourite wrestlers. He still gave me my favourite wrestling match ever which was the G1 final against Tanahashi. Side note: what was that NOAH pro wrestling match? he didn't look like he's ok"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: RadZawwrote on 12.09.2024:[10.0] "THE BEST. Over the years, Ibushi wrestled pretty much every match type possible, and he never disappointed. Doesn't matter if you need a man to do Comedy match, Normal wrestling match or some kind of strong style match, Kota can pull of a instant classic. In my head, at some point, this man was the best wrestler in the world, and even if this status is long time gone - Kota Ibushi is still one of my favorite wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: nabigoyewrote on 01.08.2024:[10.0] "Für mich ist Kota Ibushi einfach der perfekte Wrestler und mein Favourit wenn es um Matches geht. Zunächst kann er im Ring nahezu alles. Ich liebe seine Kneestrikes und auch seine Punches, vor allem wenn "Murder Ibushi" wieder entfesselt wurde. In der Luft ist er ebenfalls unglaublich, auch wenn das ein Aspekt ist der mir im Wrestling nicht zu oft vorkommen darf. Größte Schwäche ist wohl sein Selling, aber darüber kann ich bei spektakulären Matches hin wegschauen. Er hat einige der besten Matches aller Zeiten nach meinem Geschmack, wie gegen Tanahashi, Okada und natürlich Tag Team Partner Kenny Omega. Zudem liebe ich einfach einen guten Kamigoye. Vorallem ist er am besten in 20 Minuten Matches, aber auch Matches wie gegen Okada oder Tanahashi haben gezeigt, dass er lange Matches genau so gut kann. Dabei ist vorallem das letze Drittel einfach unglaublich unterhaltsam, wodurch ich bei seinen Matches besonders gerne mitfieber. Die Bewertung bezieht sich nur auf seine Jahre bis zur Verletzung im G1 Finale. Danach kann er einfach nur leid tun mit seinen Verletzungen im Nacken, Schultern und Knöchel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Willie 19200wrote on 26.07.2024:[9.0] "The Golden Star is easily one hell of a wrestler and someone I feel anyone can work with and turn it into a must watch match. He was the first IWGP World Heavyweight Champion and although it wasn't the greatest reign, he still was a great and deserving champion. Once he comes back to AEW, I'm excited to see what the company does with one of the best wrestler currently."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Joe907wrote on 16.07.2024:[10.0] "Kota Ibushi is the perfect professional wrestler. He's called the golden star for a reason. Very good at high flying and such a great striker. He can be very technical in the ring too. Kota Ibushi has it all. Going down as a Japanese legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: WrestlingStuffwrote on 10.06.2024:[9.0] "Ibushi is among the most unbelievable wrestlers that ever existed! Everyone basically saw the original Tiger Mask watching him, for his surreal perfomances in the rings. His DDT career was as successful as it gets, and then with NJPW he only went uphill with his bangers (his G1 28 matches were my favorites perfomances of his). His high flying moves, his brutal Kamigoye and ease to sell moves to make opposition look strong is one of a kind! Ibushi's problem however is that he believes he is a superhuman, that his pain is easy to ignore, that despite his moves being dangerous, it's no big deal! That and with all the neck drops, body bumps and divings he did, his shoulder, his ankles and his torso are currently a mess, and to make things worse, he refuses to seek treatment. And this takes us to his incident with NJPW, a company known for their harsh demands of conditioning and resistence, something Ibushi wasn't having thanks to his injuries, and then their infamous debate on the Internet started, and that was Ibushi's end of a great career in NJPW. Sadly, I think after G1 31, Ibushi met his end not only in NJPW, but in all of wrestling, as apart from GCW, his performances were poor, and his body obviously is screaming for help. I hope he comes to his senses and understand the gravity of his condition, or sadly he will end up just like Mitsuharu Misawa."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: CatboyMathuswrote on 03.06.2024:[8.0] "I love Ibushi, but I have to admit it's been 2-3 years since I've enjoyed one of his match (which was him vs ZSJ in 2021) it's sad cause he's one of the most complete athlete on the entire industry, he's funny, he's legit, his moveset can make him have a great comedy macth, a great technical match or even a brawl style match, but yeah, recently he's been really mid, I hope his return from injury helps him climb the mountain top once again and become world champion in AEW ! He deserves it"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ultravioletshiroiwrote on 28.05.2024:[10.0] "He reminds me of AJ Styles or Will Ospreay because he is not only incredibly athletic but also a highly skilled and well-rounded wrestler. His aerial skill is especially notable, showcasing impressive moves like the pele, standing shooting star press, standing hurricanrana, corkscrew moonsault, phoenix splash and standing stardust press, many of which even most of the best high flyers in WWE wouldn't execute very well. Additionally, he can deliver great strikes and power moves. He delivers quality matches and his work in NJPW speaks for itself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: itscalledtaylorhamwrote on 10.04.2024:[9.0] "There was once a time where Ibushi was genuinely one of the best wrestlers on the planet, and while that's no longer the case, it's ridiculous that people here are only judging him for what he is now. Sure, his work in AEW has been terrible, but watch his NJPW matches and you'll see how unebelievably athletic and talented Ibushi was."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Oddtalkwrote on 31.03.2024:[9.0] "Ibushi's gonna wrestle until he dies, which will probably affect peoples' perception of him if they never saw his earlier work. But make no mistake, for a stretch of a decade plus, he was one of the best cruiserweights in the world, known for his freakish athleticism. Even if he continues to wrestle after his body can no longer keep up with him, it won't change the fact that he's put on so many classics, most wrestlers with an equally long career won't be able to do even half as many."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: benny5bellyswrote on 05.03.2024:[8.0] "It is somewhat insane to read peoples comments here basing their reviews on the few WWE/AEW matches he has had including one purely from the Blood and Guts match. Has Ibushi fallen off a cliff the past few years? Absolutely. This is not the first time a great wrestler has completely dropped off like that. In his day in both DDT and NJPW, he was one of the most cutting edge performers around. His style is not always to my taste hence an 8 but you can't deny he was very good."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: BillyBobJoe3wrote on 24.02.2024:[3.0] "I only watch WWE and AEW and I'm sure he has done great work in NJPW but from what I've seen of him in AEW he properly has one of the weakest chops ever. It's like he didn't even try to make it look like it connect it was so bad my family and I started laughing. I hope I'm proven wrong and all the hype is true but from what I saw he's mid at best."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: The Quick Manwrote on 13.01.2024:[8.0] "It feels painful to not give Ibushi a 9 or even a 10 but I feel like the performances of the past year or two which have mostly been pretty bad counteract the decade of 9 and 10-worthy performances. Still, I'll be generous and keep him at an 8 for now... as long as he either retires or FINALLY gets the surgery that probably could've prevented such embarassing displays as his match with Marufuji that kicked off and probably ended 2024 for him at the same time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: coppercowrieswrote on 04.01.2024:[9.0] "Freakish in ring athlete, was half of my favorite storyline ever. But when he isn't paired with someone more bombastic than himself he struggles to sell a narrative. Waiting on his return from his shoulder injury and hope he recovers completely. Edit 2024 - Ibushi's refusal to get surgical correction and proper rehab has destroyed his body and hopes of returning as anything but a morbid shadow of the man he used to be. I have never seen a more startling decline."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: FraterAssenayowrote on 03.01.2024:[10.0] "A god of pro-wrestling in his prime and nothing less. Sadly, people do not remain in their prime forever, and Ibushi is a shadow of the wrestler he once was. If you have only seen Kota Ibushi's post-NJPW work, you have not seen Kota Ibushi. But I refuse to give this man anything less than a ten, even as I've rated his most recent match with Marufuji (02.01.24) a zero."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Madladwrote on 01.01.2024:[10.0] "Kota Ibushi is one special wrestler. His style is unique for me.his strikes are perfect and look legit scary. He maybe have the best firely baby face comebacks in recent years. I just love ibushi and his epic style of wrestling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: cosmik debriswrote on 14.12.2023:[7.0] "Amazing performer when put against the right opponent. Rather dull when not. His offense is visually incredible at times and his execution often flawless. His selling is non-existent which brings my rating down a notch. He has a weird charisma - and this is meant in a good way - but nowhere near the level of the Naitos, Tanahashis and Okadas of this world. Overall, a performer capable of having ***** matches in the right circumstance, but I dont believe he's an all time great, especially considering how stacked the NJPW generation he grew up in was. Sad to see him broken down from injuries, at his peak he could have shined in AEW"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[10.0] "Kota Ibushi is one of the all time best in ring performers of all time, it could make any performer jealous that they will never be as good as Kota in the ring. Kota Ibushi's athelticism is hard to wrap your head around, he makes every move look simple to do and not difficult in the slightest, no matter what move he does. Incredible high flyer, can do realistic looking MMA style wrestling as well, very good technician, also a fun "spot fest" wrestler when he wrestles those type of wrestlers, Kota is very versatile and can do any style of match you give him the task to do. His best work, in my opinion, is easily the Golden Lovers tag team, one of the all time best tag teams in the wrestling business no matter what era, natural chemistry with nice double team moves, have told incredible stories in the ring together, their match with The Young Bucks in 2018 is easily a top 10 tag team match of all time, 2018 was their best year, added bonus for the best LGBT+ representation, nice to see it in an industry that's, unfortunately, dominated by toxic masculinity. Overall, Kota Ibushi is easily among the best in ring performers of all time, The Golden Lovers are among the best tag teams ever, Kota is the man, despite he's kinda slowing down these days, but his work still speaks for itself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ti636wrote on 18.11.2023:[6.0] "I'm disappointed in him now. It's body is so heavy that I can't bear to look at it. It's so sad seeing it in its heyday. He seems to be isolated because he can't keep up with the level of AEW matches. It's probably not because he's getting older, but because of mental anxiety. I wonder what a great match we could have watched if we could have used a time machine to bring him back in the past."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Leonewrote on 08.09.2023:[10.0] "From 2007 to 2021, Kota Ibushi was an unbelievable high flyer & striker. Absolutely unbelievable. He had some of the best reversals and sequences I have ever seen in professional wrestling. He was easily 1 of the best wrestlers in DDT, and has gone on to craft an incredible legacy within puroresu. To go along with his in-ring abilities, he was also very strong for his size, became a great storyteller as he got older, has some very good technical wrestling skills, and as far as "the look" is concerned, he looks like a J-Rock star. As of 2023, the future is uncertain. At 41, some could argue that he's past his prime, & that the shoulder injury in the G1 2021 finals was literally the end of his main event career. He has had some excellent multi-man matches, but he was far from the most memorable part in them. Hopefully he just needs some time to fully heal & breakthrough the obstacles - but if it doesn't work out, he still left his mark."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: CorpusSkiptotelicumwrote on 04.09.2023:[8.0] "He's looked pretty cooked since returning to the ring following his unfortunate injury, but that shouldnt diminish how good he was back in the day. He started as a crazy spot monkey but gradually added things to his game, also becoming one of the deadliest strikers in Wrestling history. He adjusted his style to the njpw heavyweight matches and thrived there. There were always holes in his game though, he's a very poor long term seller and he usually needs someone like Tanahashi or Omega to tell a complete story in the ring. Its kind of interesting how he was seen as the more talented one out of the Golden Lovers, but when its all set and done, Kenny will have ended up with the more complete and impactful career. Of course he cant go like he used to, but I hope he sees this and transitions into a pure striker, I'm sure he can continue having great matches like that."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Shadow Explosionwrote on 30.07.2023:[10.0] "It's hard to describe how much of an amazing all round talent Ibushi is. He literally can do it all, and he will do it all. He's an amazing high flyer, the height and speed he attains is breathtaking. He's a great Striker (maybe not recently) but he would just beat the shit outta people with kicks & punches. He's also a neck bump master, and as a connoisseur of neck bumps, I love that he's crazy enough to take that shit. That time he took a Burning Hammer in WWE in one of the craziest moments in the company."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Your opinion was badwrote on 20.07.2023:"No clue why someone rated Kota during the Blood and Guts match like that's the first time they've ever seen him. And if it is the first time they've seen Kota Ibushi, should prob just go watch WWE lmao. But yeah, all time legend. AJ coming to Japan really but all these now legends over and give them a global name. Kota ibushi was one of if not best worker in that match yesterday, atleast 1 of the top 2."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Ozzywrote on 20.07.2023:[4.0] "Im watching him here in the AEW blood and guts match, and this guy absolutely sucks, he litterally just kicks and ocassionally punches, walks up to someone in a submission, waits a solid 3 seconds kicks them and they sell it like it did something, his punches are lackluster, man is just slow and clunky, where the one good thing he did in that whole match was just a single moonsault onto Mox on the bed of nails. He is lucky that moonsault looked ok, or he woudlve gotten like a 2"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: GoldenIceboxwrote on 15.07.2023:[10.0] "Kota Ibushi is one of my favourite wrestlers ever. There is this spark to him that not a lot of people in the business have, there is a certain uniqueness to him and his ability to seamlessly mix Shooto and stiff striking with some of the most graceful high-flying maneuvers everand that Phoenix Splash is irresistible. While most were introduced to Kota through Kenny, it was the opposite for me. I have personally considered him better than Kenny, for the simple fact that he can do some things Omega just cannot. Their match at Budokan Peter Pan is a highlight of that, and my first exposure to Kota. Other personal favourites include vs. HARASHIMA at the first Peter Pan in 2009, The three-way KO-D Tag Title match, Ibushi & Marufuji vs. KENTA & Ishimori, Tiger Mask W vs. Okada at NJPW 45th Anniversary, vs. Hangman Page on ROH television in 2018, and vs. Yoshihiko at a DDT event in 2015(a.k.a the match where Kota wrestles a blow-up doll). Update: I will be there for Blood and Guts, it will be Golden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Oswuoldwrote on 13.07.2023:[10.0] "Welcome back Kota alias one of the most gifted athlete of this generation. His style is exciting and he is even able to get a 5* match from a blow-up a doll. I'm really excited to see what he 'll do in AEW. *****1/2 (11/10)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: dinsidewrote on 13.07.2023:[8.0] "Sports Entertainment - AEW Version Wichige Storylines mit Chris Jericho / Don Callis, MJF / Adam Cole und Elite gegen BCC im Focus. Alle haben genug Zeit bekommen, die ersteren öfter in der Show, Elite mit dem Bang zum Schluss. Wrestlerisch hatten wir Chris Jericho der gut durch das Match gezogen wurde und Blind Eliminator Tag Team Tournament Semi Final Match 1 das bei der Crowd nicht gezogen hat als Lowlights. Das Owen Hart Foundation 2023 Women's Tournament Semi Final Match war ok für die Zeit die sie bekommen haben. Blind Eliminator Tag Team Tournament Semi Final Match 2 war ganz großes Sports Entertainment. Swerve Strickland gegen Nick Wayne war mein Highlight, aber auf dem falschen Spot der Card. Und Harley Cameron - das Video. So Over the Top das man kaum mitbekommt, wie gut das wirklich ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: AyoWrasslinwrote on 13.04.2023:[9.0] "My second favorite NJPW wrestler OAT. Ibushi is just that guy. Glad he is back but hopefully he goes to AEW because I absolutely DESPISE GCW. Top notch matches in every company he has worked in. HE DOESN'T MISS. 10/10 / Recommendations: vs Omega [G1 Climax 28, DDT], vs Devitt [WK 10], vs Ospreay [G1 Climax 29], vs Styles [Invasion Attack 2015]"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TheOneAndOnlyCactuswrote on 03.04.2023:[10.0] "He is pretty much the complete package between the ropes. Fast, agile, strong for someone his size, technically gifted, can strike with the best of them, can be funny, he can practically do it all. Hes also been a part of amazing stories in the past to, more than just playing his part."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Strong Zero Machinewrote on 18.02.2023:[10.0] "Kota Ibushi is incredibly gifted a great body, great high flyer, fast, powerful, good techniker, can shoot, can do comedy etc the low point his selling can be 50/50. He's member of one of the best team of the last 20 years with Kenny Omega as Golden Lovers, a 3x KOD Tag Team champion, 3x KOD champion, 3x IWGPJunior champion, 1x IWGP Jr Tag Team champion, 1x Tag Team Champion, 1x Never Openweight champion, 2x IWGP Intercontinental champion, 1x IWGP Havyweight champion, 1 IWGP World Heavyweight champion, King Of DDT 2009 winner, Best Of The Super Junior 2011 winner, New Japan Cup 2015 winner, 2x G1 Climax winner 2019, 2020 and 2 other finals 2018 and 2021. I really hope his return soon is the start of something huge for Kota."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kyle135wrote on 02.02.2023:[10.0] "He might not be the best wrestler in the world, but I don't think there is any wrestler who is as excellent at every aspect of in-ring wrestling as the Golden Star. He can work any type of style and is believable as any type of wrestler. Truly a genius of the ring who you will marvel at."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: benh2wrote on 17.01.2023:[8.0] "Incredibly gifted wrestler. Tremendously athletic, smooth in the ring, great moveset and charismatic. He's a lifelong babyface, his fire is great so you always want to get behind him. I feel he lacks with psychology sometimes but that is often glossed over due to being involved with many great workers who often have enough to make up for it. His selling is also sketchy as he has the annoying habit that is quite evident in modern wrestling to completely disregard the injuries in order to get some spectacular moves in."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: MainEventMasterwrote on 09.12.2022:[10.0] "The most outstanding wrestler ever, his way of life and wrestling just boggles the mind, you never know what you are gonna get out of Kota Ibushi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Vukowrote on 24.11.2022:[7.0] "Good atlete, good wreslter but what I just can't with him when he no sells the entire match... And I know that my ratings is influenced by the fact that Ibushi GETS 3 G1 FINAL IN A ROW ? At the time, this pissed me of a lot and when you look that every one of his push to the World title was a fail, I can't rate this wreslter 8 or 9."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Mcbolskywrote on 22.11.2022:[10.0] "Tied with Naito for my favorite Japanese wrestler of all time. His intensity is amazing and he makes the sit out last ride look like a million bucks. Hopefully he heals up soon and reforms Golden Lovers in AEW or goes to WWE for a short run."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: devwilwrote on 07.11.2022:[10.0] "I almost want to dock a point because he takes completely unnecessary risks that interrupt and shorten his career, but he's just so good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: texasyoshwrote on 16.09.2022:[9.0] "Kota Ibushi might be one of the most athletic wrestlers of the 21st century. The dude is insane both physically and perhaps mentally with the bumps that he decides to take. Truly the whole package as a wrestler, he can essentially work any style."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Tyler72wrote on 11.09.2022:[7.0] "Kota Ibushi's wrestling skill set is very impressive. This is especially true with his G1 Climax match against Hiroshi Tanahashi. It often feels like he goes that extra mile to make a wrestling match all the more entertaining. It's such a shame what happened at last years G1 Climax! I wish him a fast recovery so that we can see many more matches involving him on New Japan."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: zags7000wrote on 09.08.2022:[10.0] "One of the best in the ring in his generation. I simply can't go below 10 as he does things in the ring that just make you shake your head because you can't believe what you just saw. He's not the most charismatic guy which hurts a little. However, when things connect in the ring, it's magic and some of the greatest performances one will ever see. Say what you will about him personally, and there is stuff we will likely never know the truth to, and sometimes it can be difficult to be a fan, but all the problems disappear when he gets in the ring because it will be magic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: GreatAether531wrote on 11.04.2022:[8.0] "Kota is a physical marvel. His athleticism and intensity are rivaled by virtually no one, even at this 'twilight' in his ability after years of head bumps. His personality as the absent-minded, eccentric savant is also pretty entertaining and I'd be remiss to mention that he was a crucial part of one of the great stories of the 2010s as part of the Golden Lovers. Unfortunately, Ibushi often lacks the ability to commit to a narrative, the most obvious example being his inability to ever sell his leg consistently enough (with the G1 final against Jay being an exception to this rule). When he doesn't forgo psychology in favor of spots, he's capable of producing all-time matches, as he often did during his incredible run in 2019. but the inconsistency that lingers within his match history means he peaks at around an 8-9/10 as a wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ProWrestlingGuy316wrote on 07.02.2022:[8.0] "Ibushi ist schwer zu bewerten, wobei für mich das Positive überwiegt. Das einzig wirklich Negative ist sein Selling, auch wenn es weiterhin nicht gut ist, war es vor ca. 10 Jahren wirklich grauenhaft. Am besten ist er in 20- minütigen Sprints, wo er mit seiner Schnelligkeit und Intensität glänzen kann. Leider steht er wie kein Zweiter für den Absturz von NJPW. Mir fällt in der nahen Vergangenheit kein Wrestler ein, der vom schlechten Booking einer Promotion derart ruiniert wurde."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: GriffinXwrote on 20.01.2022:[9.0] "Most would say Ibushi walks to the best of his own drum. No the guy has his own band. He does the wrestling that makes him happy. He can do teh hard strikes of a kickboxer but also flies with ease. Managed to change things up very well as he got older and bigger and thus was no longer a JR."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "What a ride for Ibushi. He (somewhat surprisingly) finally broke through, winning and defending the IWGP Double Belt at Wrestle Kingdom. Then things got weird. His reign was marred by New Japan trying to introduce a new belt. Then he lost it immediately, picked up nagging injuries, and a very unfortunate illness. Finally he had a horrible injury in the G1 Final vs Okada. Throughout it all though, Ibushi put on stellar performances, especially against Naito (WK and Castle Attack) and Shingo (G1). He still has the ability, but being a fan of Ibushi has never been easy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: NaJoBronwrote on 08.11.2021:[4.0] "I understand why many people love Ibushi, but for me Ibushi is the opposite of what I love in pro-wrestling. He is a great athlete who can do unimaginable things in the ring, but he has an absolutely flat character without a hint of charisma. He is a terrible storyteller who always acts as the second number, who relies on the abilities of more talented storytellers like Tanahashi, Naito, Jay White and many others. This year he finally reached the main events and demonstrated that he was completely unsuitable for the role of a top guy. The history of pro-wrestling shows that it's never too late to change, so I wish Ibushi to recover from injury and reinvent himself, but now we have what we have."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: CoolKylewrote on 30.10.2021:[6.0] "Ibushi is a tremendous athlete. One of the best ever in wrestling even but he lacks any personality. Ibushi is an awful seller. Every single match he has like 2 bumps where I feel "well, I guess I just witnessed a man die today" and yet he's still alive. If Ibushi wants to sell better, he should consider at least pretending to be paralyzed or something. There is not really much that's interesting about him, just a guy who wrestles well."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Okaro143wrote on 22.10.2021:[10.0] "One of the best wrestler of all time. If you are building a professional wrestler with a perfectly balanced speed, agility and power , you are gonna get something similar to Kota Ibushi. His body is in perfect shape. He has had an amazing career and has put on many great matches throughout the years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Legend003wrote on 05.10.2021:[9.0] "Ein herausragender Athlet, ein Wahnsinnstyp. Das In-Ringwork, das Charisma, das Selling, alles was der Typ im Ring macht ist schon spitzenklasse. Ich würde ihn noch gerne länger an der Spitze von NJPW sehen, da er sich das einfach verdient hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: BEER CATwrote on 09.06.2021:[7.0] "A hyper-gifted athlete who understands the nearfall-crescendo game just as much as he doesn't understand anything about selling. NOBODY IN THE HISTORY OF WRESTLING HAS IGNORED MORE LEG WORK THAN KOTA IBUSHI. Not to mention neck work, Christ. And yet he's still a positive asset to pro-wrestling as a whole. Go figure."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Lyno123123wrote on 04.06.2021:[9.0] "(9. 9/10) If he doesnt try to break his neck every goddamn second i would give him 1000/10. but NOOOO he gotta do a neck bump to sell a clothesline. In ring wise, He surpasses omega 9 times out 10, Charisma wise he can easily surpass Okada 9 times out of 10. Likeability wise he can surpass Naito 9 time out of 10. But my god if he keeps doing a neck bump one day he gonna be either in a wheel chair or in a damn cremation room. But in all honesty, if you took out all of his neck bump. He is the best full package white meat baby face to ever walk the earth and no one can is close besides tanahashi himself."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Zaidwrote on 03.06.2021:[10.0] "A genius in the ring, and one of my favorite Japanese wrestlers ever. Truly a remarkable performer in his own right."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kungwrote on 10.05.2021:[9.0] "Kota Ibushi is a genuine genius in the ring. He's a remarkable performer and can seemingly do just about anything physical. Only thing that makes him not a 10 is that he can sometimes be underwhelming as a character."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: haroldanthony3wrote on 21.04.2021:[9.0] "Kota Ibushi started out in DDT and became the top star there while also wrestling for New Japan part-time and being the Ace of the junior division after Prince Devitt left and was rising up the card until he was burned out due to his busy schedule. He came back as a part-time freelancer and won the G-1 while having great matches teaming with Kenny Omega. Once Omega left he committed full-time to New Japan and eventually had a run on top with some have different opinions about. In-ring I believe he knows what to do to make almost any match a four-star match with his charisma and abilities however he is socially awkward and I am not a fan of his selling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Makoto92wrote on 04.04.2021:[5.0] "I don't see in Ibushi something extraordinary. Kota is a wrestler with good fighting skills, but, in other hand, with a huge lack of personality, poor psychology and frequent no-selling. I understand, why fans love him, but I'm not the one of them."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ExcitingProWrestlin3wrote on 30.03.2021:[5.0] "Held back by his poor in ring psychology, and the fact that he's surrounded by far more capable and seasoned stars. That's what holds him from being one of the best in the entire promotion of New Japan."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Bushidospirit22wrote on 16.03.2021:[7.0] "Ibushi was one of the best junior heavyweights I ever saw. Some of the moves he did in-ring were jaw-dropping and his matches with Kenny in DDT and Devitt in NJPW made me a huge fan. His work since he turned heavyweight however has left a lot to be desired. He's not particularly interesting anymore, and there are guys in the heavyweight division like Okada, Naito, and Tanahashi that shine so much more than him. While the Phoenix Splash is amongst the best finishers I've seen for a junior wrestler, his current kamigoye doesn't really have the same affect."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Patlaborwrote on 28.02.2021:[5.0] "You watch one Ibushi match and you wonder if you've just stumbled onto the greatest pro wrestler in history. He looks like he's chiseled out of stone, he moves just about as well as any wrestler in history, he shits out 5 star matches. And then you watch New Japan and other promotions for a few years, see 100+ similarly good matches, and you ask yourself. Hang on, why do I feel nothing? The answer, unfortunately, is that there's actually nothing all that interesting about Ibushi. He's just really, really good at doing the moves. A previous commenter nailed it when he said Ibushi as a pro wrestler feels completely soulless. The wrestling landscape has become completely oversaturated with meaningless 30+ minute matches with surface level storytelling, and Ibushi is one of the main performers guilty of this."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: michmoose21wrote on 09.02.2021:[10.0] "A top worker in the world. He bumps, sells, is athletic, can work stiff, he can do it all. Ibushi is a fantastic worker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Oregano Jacksonwrote on 03.02.2021:[8.0] "He's definitely fallen off the high horse that I had put him on, as is the case with guys like Okada and Ospreay. Ibushi's inability to make anyone look good other than himself is perhaps the thing that has soured me the most on him. He's terrible at selling and has also developed the big Japan epic match tendency. Kota's still not a bad wrestler by any means. Far from it; at his best, he can produce some of the most compelling matches matches of the modern era of wrestling, with his hybrid style of high flying and striking."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: rainmakerpunkwrote on 03.02.2021:[10.0] "This is a guy that keeps on improving and maturing and mastering multiple styles, he's insane in the ring and has finally become GOD"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: StrongStyle2020wrote on 30.01.2021:[10.0] "An absolutely immense competitor. The leading part of one of the greatest tag teams of the last two decades, The Golden Lovers, Kota Ibushi's singles success is legendary in itself. The GOAT of DDT, and incredible IWGP Junior Heavyweight Champion, Kota has gone on to achieve historic double gold in New Japan, after classic bouts with Naito Tetsuya, Hiroshi Tanahashi, Shinsuke Nakamura, Minoru Suzuki, Kenny Omega, and more. Incredible striking and athleticism put Kota Ibushi on top of the wrestling mountain. One of the all time greats, and all round performers in pro wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Amico Leonardwrote on 19.01.2021:[10.0] "The best athlete in the Pro Wrestling World today and the most devoted one. I cried like a baby watching him become IWGP Heavyweight Champion 2 weeks ago in the Tokyo Dome. The build up to his victory has been fantastic as he always has been the one that came up short, the "so good, but not great yet" and after the failure of WK 14 that I watched live in the Tokyo Dome this was the time. If Ibushi hadn't won in this case, it was an all or nothing situation, he probably would have retire or leave NJPW. So happy for him, right now he might be my favorite Wrestler in the entire world, along side with Jon Moxley Kenny Omega and Adam Cole or Tommaso Ciampa, even if this last two are a bit descended in the hierarchies of NXT. Good Job Kota, a beacon in the dark for this tumultuous times to be alive. Kenny Omega leaving NJPW and Kota staying there has been the best thing ever happened to the Golden Star as in this 2 years (1 year and half because of Covid that stopped NJPW for half 2020) he made the big jump to become simply himself and not being the "jailer" of Omega, the one with the same or even more Wrestling talent of the Cleaner but with less "impact" as a main stream level Superstar. He is a better Pro Wrestler than a "Sport Entertainer" for sure, but this in Japan is not so relevant..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: AlexLennonPWwrote on 14.01.2021:[10.0] "There's no single quality which makes him the best, he has everything that comes together to make one of the most unique athletes in the sport."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Rocky7wrote on 05.01.2021:[10.0] "From all his crazy DDT matches and his relationship with Kenny Omega, to his slow burn ascendancy in New Japan... even stopping off to nearly blow himself up in an East London alleyway. Kota Ibushi has achieved more than most can comprehend, and he did it by unconventional means, which I appreciate tremendously."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Thebossofthegym04wrote on 04.01.2021:[5.0] "Absolutely ordinary wrestler who is loved only for being good in the ring. No matter how much I look at Ibushi, he does not arouse interest at all. He has no charisma, no gimmick, no mix skill. There is no soul in his matches. It only shows history in matches with those who are good storytellers. And I have not yet mentioned this about his noselling. Why does he use noselling when he can't even use it correctly? I don't want to say that Ibushi is bad. he's just ordinary. it will never make a Main Event. Only ring skill will not become you the main star"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: VillainClubwrote on 01.01.2021:[6.0] "Guter Wrestler, der mich allerdings nicht mitreist. Seine Matches sind oft gut, allerdings baut er zwischenzeitlich dumme Aktionen ein. Sein Selling lässt auch zu wünschen übrig. Als IC Champ ok, den großen Titel sollte er allerdings nicht gewinnen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Ma Stump Pullerwrote on 16.11.2020:[8.0] "Ibushi for sure has the physical talent to be a top performer (even if he's noticeably slowed in recent years from the flying spot monkey he used to be) and he's had some great matches with the right opponents, but he does lack some critical elements to his work, namely selling: it's not very consistent and can fly from not being dire enough to not even acknowledging it at all in his ring work and merely working as per usual, no tension there. This might be because Ibushi spent most of his career in bizarre conditions that were barely even wrestling in the first place, but regardless, being a babyface that no sells offence a lot doesn't help a bit at getting them organically over. That being said, when Ibushi is selling even decently, he really shines as a strong upper card babyface with incredible energy, even if his character outside of the ring is rather flat and doesn't really bring anything new or exciting to the table. For me, he's on the same level as guys like Naito: not the main event guy and certainly not someone who can carry a lesser talent to their level, but still solid enough that they can hold the belt a few times and get some feel good matches out of it. However, I can't see him as someone who's going to reach the very top level of NJPW: he lacks the critical elements that a top babyface needs to make themselves and is usually the one being directed in his matches in terms of storytelling, not the other way around."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: medousewrote on 29.10.2020:[10.0] "When it comes to technique and in-ring skills he is one of the best wrestlers in the world. He can do almost everything. He's a highflyer, grappler, striker and a great tag partner. He has the greatest physique in this business. His body looks better than greek gods statues. Ibushi almost always has great matches no matter who is his opponent. He even wrestled a DOLL and it was a 5-star match (everybody should check his match against Yoshihiko)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: LuketheKid1029wrote on 24.10.2020:[9.0] "It's amazing to me to watch Ibushi in his matches since his style from what I've seen from Ibushi seems to be very show-oriented with fast-paced style along with Ibushi as his character being booked specifically due to his God-given natural ability in the ring, and I'm thinking that this somewhat valid criticism for Ibushi being very focused on himself in the ring and presenting himself somewhat over his opponents is also something that's necessary in some ways to get Ibushi over! I'm thinking that Ibushi's character right now after winning the G1 Climax 30 trophy is something like with Ibushi's backstage promos mentioning wanting to become a God, and I'm thinking this is both a callback to his Kamigoye finisher allegedly translating into "surpassing God, " along with his partner relationship with Tanahashi as The Golden Aces being very focused on Ibushi's constant adoration for Tanahashi and Nakamura and Okada; but it's the reason that my review for Ibushi isn't perfect score since I think Ibushi needs some more character work and some more personality to show through, but it's always something that I'm somewhat split about since it's a mostly contentious point even for myself viewing Ibushi as bland and unexciting from looking at his character standpoint since his promo game is usually very generic babyface, but in many ways (and this is something that I haven't seen discussed in the top rated comments), I think Ibushi plays the role for silent protagonist like this is a video game where the fanbase is supposed to project their own subjective viewpoints for personality onto Ibushi, and this is likely something that strengthens his relationship with the fans, which is evidenced in being with New Japan Pro Wrestling due to Japanese video games often depicting that type of storytelling, and it's my personal opinion that Ibushi is perfect for that role despite it being somewhat bland and unexciting from his personality showing through! It's something that I'm hoping to see develop over time despite Ibushi being somewhat older than many other counterparts (namely Jay White being almost exactly ten years younger, but Ibushi being older has also given him more experience) that I'm hoping to see Ibushi win the IWGP Heavyweight Championship someday, since that seems to be a likely result for Wrestle Kingdom 15, and it's seeming like the same trajectory for the storyline with Okada/Tanahashi where it took several attempts to win the top Championship at Wrestle Kingdom, and I'm hoping that this can finally be the year where Ibushi can win the Championship after making history as the first three-consecutive G1 Climax finalist and third two-time G1 Climax winner, so I'm willing to admit that I'm curious to see where they take his next stage in his storyline! <3"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: STARDOGCHAMP90wrote on 21.10.2020:[10.0] "Amazing workhorse with an unbelievable wrestling ability. He's one of the very few to win the G1 Climax back-to-back, and he's held countless IWGP championships throughout his illustrious career. He's got an amazing look and an amazing move set to back that up. He's had countless 5 star matches and hasn't stopped. The man had a match with a blow-up doll and made it entertaining, not many wrestlers can do that. He was even chosen to be Tiger Mask W for some time! Nothing but respect for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TylerWhitewrote on 12.10.2020:[10.0] "Kota Ibushi ist für mich derzeit einer der absolut besten Wrestler weltweit. Er hat den absolute Main Eventer Look, ist im Ring unangefochten und schafft es immer wieder einen zu überraschen, auch wenn er dabei teilweise zu krasse Bumps mitnimmt und es einem beim zuschauen wehtut, aber auch das gehört zur Faszination um Kota Ibushi und die Over the Topness zeigt auch seinen Background bei DDT. Aber er bleibt nicht in der DDT Nische, sondern konnte sich auch absolut im NJPW Main Event etablieren und liefert auch im Tokyo Dome Main Event absolut ab, ohne dabei jemals komplett auf seinen Stil verzichtet zu haben. Er kann im Ring gefüllt alles und kann mit sämtlichen Stilen mitgehen, ob bei den Juniors mit Highflying Action oder selbst bei den härtesten und reduziertesten Strong Style Matches mit Nakamura, Ishii oder Suzuki, was ihn zu einem ultimativen Allrounder macht. Das einzige was ihm fehlt ist endlich der große Gewinn des IWGP Heavyweight Titels, aber ich hoffe wir werden das in den nächsten Jahren, solange er noch auf Top Niveau ist, sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: BlakeFR37wrote on 25.09.2020:[10.0] "The Golden Star ! For me, his nickname justify his rank but just look at his matches. Kota is one of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Mauwrote on 26.07.2020:[10.0] "Demuestra un espectacular nivel de lucha aérea. También demuestra que a pesar de los 38 años que lleva, se mantiene como un luchador que controla y perfecciona el estilo técnico de forma que el combate que de con alguien no sea "aburrido"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: killowenskillwrote on 29.06.2020:[5.0] "It pains me to do this, but the more I watch ibushi, the clearer the picture becomes that He is one of the most overrated wrestlers of our time. Of course, Kota is an incredible employee, an almost irreplaceable mid-carder for every promotion, his athletic skills are phenomenal, and his ability to take absolutely every move is respected. But behind all this is a few fat cons that make all its advantages meaningless. He can't sell. Ibushi is able to show any move with a murder, a weapon of mass destruction that will not leave a trace of you, but all this does not matter when a few minutes later he is standing on his feet, fighting in full force, and the consequences of the experienced damage do not concern him in any way. Each of his matches, regardless of how big it is, looks like the biggest matches of Kobashi and Misawa. But when this is not followed by any overpowering, when there are no bets in the match, and when Ibushi cannot be killed, it looks implausible. I thought this kind of thing happened to him already during the promotion in New Japan, but the more I watch DDT, the more convinced I am that Kota has always been such a player. But this was not so obvious when he was in the secondary positions and he literally did not have time to show much of his list. Now he has this opportunity and I am disappointed. He is the most inconsistent, most illogical, and most frustrating wrestler of the past few years. And if you watch it constantly, rather than selectively flipping through the lists of "best" matches, it will be harder to love it. And this is all supplemented by the fact that Ibushi does not have a character, even the smallest. He just fights and he just doesn't care. I can't get my hand up to give him a completely negative rating, because, again, as a workhorse, he is very good. But I have no love left for him. And the further it goes, the worse it gets."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Bobbythreesixteenwrote on 06.01.2020:[8.0] "Matches sind immer zufriedenstellend, jedoch reißt mich Ibushi nicht ganz mit. Dennoch für mich ein sehr starker Wrestler von dem man gerne mehr sieht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: OxeyNimrodwrote on 14.11.2019:[10.0] "There's no match Kota has had that isn't great/good in the last decade. The man had a match against Yoshihiko the Doll and still managed to make it an entertaining spectacle. If that alone doesn't sell you, I don't know what will. Without a doubt he is above all one of the greatest wrestlers to date."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Zo-Zuwrote on 14.09.2019:[9.0] "His love of gimmicked gobshite and time in DDT keeps him from my considering him upper rung, but fuck this guy is good. One of the most impressive, diverse and charismatic working today. His push in 2019 is deserved and long overdue and I'm excited to see where he takes his considerable talents from here."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TheFrenchDisasterwrote on 19.08.2019:[9.0] "There are not many negatives about Kota Ibushi, the guy is super good and entertaining in the ring. He's a great striker, a great technician and a great high-flyer. He is on the same level as Okada, Tanahashi, Omega, Kenta... But his major flaw is, obviously, the selling, I think that his lack of selling spoils his matches a bit but that's no big deal. Overall, he's surely one of the best in the world actually and NJPW should seriously consider giving him the heavyweight title given the talent he has and the loyalty he has shown by signing this contract for life."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: JOEvsISHIIwrote on 15.08.2019:[9.0] "Very good wrestler. Great high flyer and striker. Needs to improve selling and take less neck bumps."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: KyleEnjoysWrestlingwrote on 02.08.2019:[9.0] "One of the best in ring workers in the world today. I think he surpasses other favorites such as Okada & KENTA. Ibushi masters many styles. A great striker, flier, and technician. His character work just keeps me from giving him a 10, but ever so slightly."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: zephyrwrote on 26.07.2019:[9.0] "Ibushi combines innate talent with intense training to end up being one of the most gifted in-ring performers of this generation. Combine that with just being inherently likable as a person and you've got yourself a great babyface."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "An intriguing personality, athletically gifted wrestler with a great babyface aura who can also show a more dark and agressive side when he is really pushed in that area. Has all the potential to be one of the greatest and now that he signed a full time contract maybe he will enter even more in New Japan's history. He's crazy at times but I can totally feel the pure love and passion he has for his craft. The only thing he could get better at is his selling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: neat o wrasslinwrote on 18.06.2019:[9.0] "Possibly the best wrestler in NJPW.  So why not a 10 rating?  Because Ibushi is incredibly reckless and it is incredible that he has not suffered a major injury.  His matches are some of the most exciting displays of athleticism I have ever seen, but I'm genuinely fearful that I'm about to witness a brutal injury."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: PuroresuLoverwrote on 16.06.2019:[10.0] "I can give one word to describe Kota Ibushi: Perfection. I'd like to comment just that, but cagematch system doesn't allow me. Like Tanahashi and Okada, Ibushi has everything to be the Ace, he's simply perfect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: My Bloody Doobwrote on 20.05.2019:[10.0] "An enigma of sorts. Had all the potential in the world to become an all timer, and chose to be his own man instead. Commendable in it's own way. Even if he passed on fame, he has still made a career for himself by being one of the most unique wrestlers ever. He's all spots, but can play anyone's game if he wants. His talent is so immense, he can have 4 star matches with inanimate objects. His personality clashes perfectly with his Golden counterpart, but as a singles guy he's still a wild experience."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Garrettwrote on 07.05.2019:[10.0] "I truly believe Kota Ibushi is the best in the world today. His high flying move set makes my jaw drop in amazement and not to mention his incredible matches against: Kenny Omega, Hiroshi Tanahashi, Will Osprey, AJ Styles, Tetsuya Naito, TJP,  Cedric Alexander, Zack Sabre Jr, and Prince Devitt. Mark my words he will be IWGP Heavyweight champion one day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: migrationswrote on 25.03.2019:[8.0] "He is a very good wrestler in the ring, but he doesn't sell moves quite at the Omega / Ricochet / Okada level and he has no ability to soak on a microphone. It's weird that this guy is such an elite pro wrestler yet so shy also. Still, his in ring work kind of makes up for his lack of charisma."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: KoolAidCobainwrote on 13.03.2019:[10.0] "Hands down, my absolute favorite in NJPW. I love him and Kenny together so much and they're just really cute together. He can work and he has amazing endurance. He can literally have a **** star match with a blow up doll. He knows how to work a fantastic match and honestly would've been a better fit to win the WWE Cruiserweight Classic rather than the guy who never got used and got released after 2 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Aurtletheturtlewrote on 10.03.2019:[10.0] "GOLDEN STAR! Perhaps the most naturally gifted wrestler of this decade, Kota Ibushi truly is a man who has everything needed to be the top star in any promotion. Skill, looks, charisma, name it and Ibushi has it in spades but what's perhaps so charming and frustrating about Ibushi is that he doesn't care too much about being the biggest star, he cares about having fun and promoting what he believes wrestling should be. Whether it be comedy wrestling or wrestling where you drop your opponent on their head 19 times a match, Kota Ibushi is capable of anything and I love him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ElPolloLocowrote on 08.03.2019:[8.0] "When Hiroshi Tanahashi was asked about Kota Ibushi in an interview a few years back he said "He has everything to become one of the greatest of all times except one thing: determination". It's really hard to argue with that. At 36 Ibushi is still a spot-wrestler: basically the same wrestler he was a decade ago. But as crowd pleasing spot wrestlers may be, they aren't the ones major promotions want as their main draws: they need to make a step to become main draws. Kenny Omega made that step. Taiji Ishimori made that step. But Ibushi has always lacked the determination to make that step which for somebody as ridiculously talented and skilled as he is, would be natural. I've read that recently he signed for NJPW full time so maybe he's finally ready to make that step to true greatness that he has so far put into the future."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kevin41182wrote on 26.02.2019:[9.0] "Kota is by far one of the best wrestlers in Japan today. That's why he deserves a 9. But, Ibushi needs to develop his own identity. His run with the "Golden Elite" in my opinion was not very good and the Golden Lovers tag team seemed to be overshadowed by the rest of the Elite. With Kenny Omega gone from New Japan, its Ibushi's time to shine. He needs to create his own identity and hopefully one day he will win the IWGP Heavyweight Title."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Cibswrote on 02.01.2019:[10.0] "I have been a fan of Ibushi since his days in DDT. Sure, there were some weird moments but he always showed quality in the ring and now with more experience he is one of the most spectacular wrestlers on the planet. His offense is great, sometimes he forgets to sell but in general his matches are very exciting."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: KINGwrote on 09.11.2018:[9.0] "Kota Ibushi makes made me question my etherosexuality for the first time when I was like 15, the guy is an amazing wrestler, he's spectacular, he can be graceful and violent at the same time, his talent is just incredible, I don't give him a 10 cause for some reasons such as injuries and desire to experiment stuff more than becoming a top guy unallowed him to be a full time main eventer, and I think it's a shame cause this guy should be an IWGP Heavyweight Champion."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: jamzell00wrote on 05.11.2018:[8.0] "If only he could sell. Remains the one flaw in his game. So inconsistent with it. Other than that the guy is one of the best talents we've probably ever had"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: RatingsMachinewrote on 14.10.2018:[10.0] "Kota Ibushi may be the most physically talented wrestler in the business today, and he can also work a variety of styles. Ibushii can have creative highspot-orientated matches with Kenny Omega, he can have hard hitting battles with Tomohiro Ishii, and he can keep up with technical masters like Zack Sabre Jr.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Tomlou12wrote on 17.09.2018:[9.0] "I love Ibushi's mix of hard hitting striking and high flying, he is an incredible athlete that really knows how to get a crowd into a match. I feel that a 9 is warranted due to the sheer amount of excellent matches he has partaken in this year and I look forward to seeing what comes next for him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: taabr2wrote on 14.09.2018:[10.0] "One of the best wrestlers in the world right now. Kota Ibushi is pretty awesome wrestler, he is a solid technician, amazing high-flyer and way too many people sleep on his brawling skills. Now if only we would sign a damn contract so a wrestling company can actually push the fuck out of him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Oliver95xwrote on 12.09.2018:[10.0] "Ein unglaublicher Wrestler. Sein In Ring Style ist einfach nur der Hammer. Ein spektakuläres Move Set welches er bei jedem Gegner anwenden kann. Sein selling ist der Wahnsinn. Ich finde er ist einer der besten und seine strikes sehen schmerzhaft aus. Alles in allem ein perfekter Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Cal Vamwrote on 17.08.2018:[6.0] "While he's able to deliver a lot of absolutely great matches that will be remembered for a long time, he's one of the worst sellers ever. His selling ruined a lot of potentially good matches for me and I just can't get over that. He's great on the offense, but overally, he's slightly overrated, just like a lot of his matches."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kaswrote on 10.04.2018:[10.0] "One of the best in the world currently and will probably go down as one of the all time greats. Striking, storytelling, athleticism, smoothness, he has it all. Also respect him hugely for doing his own thing and not feeling pressured into joining New Japan and WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Chris Nwrote on 02.03.2018:[10.0] "On pure in-ring ability alone Ibushi is one of the best ever. I really hope he has the chance to win the IWGP belt in NJPW and have a lengthy run before he retires, one of the best of all time on his best day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: arrancarwrote on 23.11.2017:[9.0] "On pure in-ring ability Ibushi is one of the best ever. While his long-term selling is a bit poor at times and his real-time selling can occasionally come off as melodramatic he is otherwise an absolute perfect all-rounder. He has crazy acrobatic high-flying skills, extremely stiff strikes, can take some of the sickest bumps imaginable, and he has a great use of facial expressions to communicate his emotions. He is extremely easy to connect with and one of my first favourite wrestlers. Sadly, what holds Ibushi back from being considered an all-time great is his lack of wrestling accolades. This isn't to say that he would be a 10/10 if he simply won the G1 or the IWGP Heavyweight title a few times, but it relates to how his inability to commit to a promotion long term has meant that he hasn't been able to produce any fantastic long-term wrestling storylines or title reigns. He's a freelancer who gets up to all sorts of weird wrestling all around the world, alongside more serious wrestling such as in NJPW. This lack of commitment to a single promotion means bookers won't trust him with major titles and major pushes though, so he has never had a big string of great matches or any super interesting storylines either. This is what really solidifies the character being the wrestler, and with Ibushi lacking that I can only give him a 9/10. Hopefully he commits to NJPW long term soon and can prove he deserves that 10/10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Alex Maedawrote on 08.11.2017:[10.0] "Ich mag Ibushi, sehr sympathischer Kerl, unglaublich sauber mit seinen Aktionen und im Tag Team mit Kenny Omega sehr unterhaltsam gewesen. Natürlich muss man, um ihn zu mögen, etwas für Highflying und Spot Wrestling übrig haben, aber wenn das der Fall ist, ist man bei Kota Ibushi bestens aufgehoben. UPDATE: Hat sich in den letzten Jahren zu einem der komplettesten und besten Wrestler der Welt entwickelt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Dragon Fighterwrote on 30.10.2017:[9.0] "Ibushi is one of the best wrestlers in the world. Great offenses and strikes. An amazing high flyer as well. The match with nakamura at wk9 introduces him to me. However, I only give him 9 because his poor selling. He seems to forget to sell the limb work. Otherwise, he is a joy to watch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: AllArounderwrote on 10.08.2017:[10.0] "Kota Ibushi is one of the best wrestlers in the world, period. The guy excels in every aspect of wrestling. Great Striking, amazing flying moves, grappling technique, and great facial expressions. One of the most complete wrestlers on the planet, who should get more mainstream attention."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TooSweetPhilwrote on 09.07.2017:[9.0] "Kota Ibushi hat sich selbst und seinen individuellen Style fast schon in der kompletten Welt manifestiert. Er bringt mit der perfekten Mischung aus spektakulärer Athletik und ungeheurer Härte so gut wie jeden seiner Gegner auf ein neues Level. und sorgt somit immer für Abwechslung. Er zeigt das dann natürlich auch immer in fantastischen Matches in NJ, als auch 2016 in der WWE. Das einzige kleine Manko bleibt sein kontinuierliches Selling, denn da vergisst er oft über ein Match seine Offensive zu reduzieren. Warte den diesjährigen G1 (Stand Juli/17) ab und dann gucke ich ob ich auf Volle Punkte gehe. Vorerst "nur" 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Headlockwrote on 19.06.2017:[6.0] "Ach Kota, du bist ein guter Wrestler, aber deine Schwächen sind manchmal einfach so leicht zu umgehen, z. B. Sollte man kein Match mit Kota Ibushi um Selling aufbauen denn, Kota Ibushi kann nicht sellen, egal wie sehr sein Bein zerstört wird er springt wie ein junger gott. Dies war besonders schlimm in seinen Jr. Heavyweight Run, als Heavyweight hat er dies nicht anährend so stark, nichts desto trotz, bleibt es ein Kritikpunkt! Als Junior bekommt er 4, als Heavyweight 8 also treffen wir uns in der Mitte und geben im 6 Punkte"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TheAlmightywrote on 18.06.2017:[10.0] "Ein Weltklasse Wrestler und in meiner persönlichen Top 3 meine Lieblinge. Kann einfach jeden Stil sei es Puro, Strong Style oder High Flying, hat keine Schwächen und auch eine super In Ring Psychologie. Wenn man in der WWE in 15 Minuten in einer 2. Runde eines Turniers fast ein 5 Sterne Match workt, muss man es einfach drauf haben. Hat sein Können sowohl auf der großen Bühne wie WK gezeigt aber auch als Backyard Wrestler mit Raketen in der Hand. Ein unfassbarer Typ, den man nur lieben kann! Ich hoffe, dass er mittlerweile vollständig genesen ist und zeitig seine Maske ablegen kann, um ein weiterer Main Eventer für NJ zu sein, denn nichts anderes ist er. Hat verdient sowohl den IC als auch den Heavyweight Title in seinem Leben tragen zu dürfen, obwohl er eigentlich ein Junior ist! 10 Punkte für Ibushi und ich würde ihm auch 20 geben ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ParisTheSpiderwrote on 17.05.2017:[10.0] "Im Ring ist Kota Ibushi ja fast schon unerreichbar. Seine Mischung aus Strong-Style und High-Flying machen ihn zum absoluten Total Package. Wie gesagt, Finisher ist super, Charisma ist super und meiner Meinung nach hat er Topstar Potentzial"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: koblandwrote on 24.04.2017:[10.0] "I'm pretty sure Kota Ibushi never stops thinking about wrestling, which has created this kind of reputation of a savant, which I think fits him perfectly. Whether he's working as Tiger Mask W in random NJPW matches or wrestling in god knows what stipulation matches in DDT, he always puts on a performance. He can fly with the best of them, he can strike with the best of them, he can sell with the best of them, it's just a matter where he is at any given moment. He always has marched to the beat of his own drum, for better or for worse, and that makes me love him even more. Could arguably be the ace of any promotion in the world, but has decided to work for the "Ibushi Pro Wrestling Research Institute, " something he could only get away with."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Blood Pumpwrote on 07.04.2017:[9.0] "An amazing talent that hasn't quite cracked that glass ceiling but with how often he rams into it its really only a matter of time. Kota doesn't seem capable of having a bad match anymore and has gotten so much better from his past. Hes only barely below Ricochet to me and in all honesty that's probably not going to last much longer. Whether hes working in a one shot WWE tournament or under a Tiger Mask hes been the highlight of the night."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TrevPuroFanwrote on 07.01.2017:[9.0] "Ibushi is a great highflyer. Really knows when to hit his spots and control a matchpace. His work in the CWC, putting on great matches with each competitor he faced, really proved to me that he's on a level of his own. Ibushi is great"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: NastyYaffawrote on 01.01.2017:[9.0] "Kota Ibushi is a guy who elevates almost everyone he is in the ring with - incredible athleticism, great stiff strikes - he just brings it. His weak point is definitely selling though, as seen in his matches vs. AJ Styles & Hiroshi Tanahashi - some real bad leg selling in those. Other than that, he's definitely one of the best wrestlers in the world."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: SanthoshVNwrote on 09.12.2016:[9.0] "Kota Ibushi is a 14 year old veteran worked in DDT/NJPW. Dont even underestimate the guy by seeing his physique, because this guy can fly and hit you very hard. Best strikler apart from Nakamura and Shibata. Ibushi has the ability to connect with the audienmces very easily. This guy deserves to hold major titles of NJPW"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: HeadCheesewrote on 07.12.2016:[10.0] "Kota Ibushi is one of the greatest high flyers, comedy wrestlers, strikers, and sellers of in pro wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: indyreviewswrote on 06.12.2016:[9.0] "I really enjoy Ibushi's in ring style, however, I think he needs to improve his psychology in order to earn a 10 point rating. He's fun to watch and incredibly talented, but I always feel that there's something missing. He's one of the best wrestlers in the world right now for sure, his psychology is just good - and to be great, your in-ring psychology should be great."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TheWrestlingFanwrote on 12.11.2016:[10.0] "Ibushi is one of today's best wrestlers in my opinion. He can pull off some outstanding high-flying moves as well as showcase his kickboxing skills. Like Bryan Danielson said in CWC, "Ibushi is one of best wrestlers in the world regardless of the weight class. ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: DanielDementedwrote on 09.11.2016:[10.0] "This Man is one of the greatest most Under Appreciated Wrestlers of all time, He Should be a Future WWE/IWGP Champion,  any company would strive if Ibushi was their world champion, Kota Ibushi is one of the Best, You'll ever see."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: akm0wrote on 17.10.2016:[9.0] "Kota Ibushi is a strange guy. He could have been the next New Japan Ace, given the chance, but he didn't want that. He could have been IWGP Hvt. Champion by now, but he had other plans: he wrestled full time with two promotion for almost seven years, which is unbelievable, knowing what he does in the ring. As of now, Kota is one of the most complete wrestler in the world in the ring, having a freaking good striking (and look), a great high-flying ability (and the best Phoenix Splash in the business right now), a scary moveset and the ability to adjust to every style - CWC, CHIKARA, DDT, NJPW and so on. He's also a great tag team wrestler, with Golden Lovers being one of my favourite tag team ever. So why this guy isn't on the top of the wrestling world, at least in Japan? He just want to wrestle and discover new styles and experimenting - from Kaiju Big Battel and recently being Tiger Mask W to wrestling dolls, fighting with fireworks and the anywhere matches. I think that he doesn't really care about titles and such, but instead he looks to improve himself, breaking boundaries and build a legacy. The real question is what's next for Kota Ibushi? Hopefully more matches like the ones with Nakamura and Omega."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: JokeyZockeywrote on 15.10.2016:[10.0] "Dieses kleine Energiebündel vereint Strong Style mit High-Flying, geht's eigentlich noch besser? Kota war für mich immer ein (Golden) Star bei NJPW, beim CWC hat er erneut seine Klasse bewiesen. Sein 5-Star-Match gegen Nakamura bei WK9 spricht Bände, diesen Mann kann man zu den Besten der Welt zählen! Im Ring ein Gott, Charisma auch sehr gut und seine Ausstrahlung als Mr. , , Ich flieg durch die Luft und stiff dich tot! '' ist 1A. Ein Star? Na klar!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: J Kwrote on 04.10.2016:[10.0] "Der goldene Stern ist in meinen Augen absolute Spitze.  Großartig im Ring, die Kicks sind echt heftig und das highflying machen ihm nur wenige nach.  Er ist höchst charismatisch und hat im Cwc unglaublich gut gezeigt, dass er trotz zeitlichen Limits kein Qualitätslimit hat.  Das Halbfinale war match des Turniers und er war auch der beste Teilnehmer also auch Mann des Turniers.  Sei Stil ist einzigartig und es wird noch besser werden da er noch sehr jung ist er ist in meinen Augen das größte Wrestlingtalent der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Obermackerwrote on 13.09.2016:[8.0] "Guter Mann mit spektakulärem Stil aus Japan, einer der besten Cruiserweights von dort, auf jeden Fall besser wie Kenta."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Cleanerwrote on 06.09.2016:[10.0] "Was muss ich zu dem Jungen noch groß sagen? Schaut euch seine Matches an, hört euch seine Kicks an! Jetzt schon ein spitzenklasse Wrestler, bei NXT wird er sich noch weiter verbessern, ich erwarte ganz großes vom "Golden Star". Edit: Hat doch keinen NXT-Vertrag, sehr sehr schade"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ErycK24wrote on 03.08.2016:[9.0] "Kota is great in the ring. He really is the full package, he's athletic he's a good ring technician he is quick and has impressive strength for his size. I really hope he gets signed to NXT then on to WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: The Chosen Onewrote on 28.07.2016:[10.0] "Fantastic wrestler. I usually hate the "Strong Style" fighting style but Kota Ibushi does it so well. He is also a very good high flyer and technical wrestler. Almost all of his matches are enjoyable like Vs AJ Styles, Vs Prince Devitt, Vs Low Ki for example. Overall this is one of the best wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Luv all wrestlingwrote on 06.07.2016:[10.0] "A golden star with many amazing matches to his name. He had a 5 star classic with a sex doll! His athleticism is nearly unmatched being able to work strong style, comedy, high flying or technical. His character arc feels pure and easy to root for. Really waiting for him to become the ace of ddt again, or wwe, nxt or njpw."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Saphirwrote on 04.11.2015:[10.0] "Einer der besten in Japan, einer der besten der Welt. Ich habe nie ein schlechtes Match gesehen. Selbst die under/midcard Tagteam Matches sind wegen ihm gut anzusehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Six Three Timeswrote on 13.10.2015:[10.0] "Perhaps the greatest living high-flyer, and one of the most entertaining wrestlers I've ever seen. His aerial offense is unparalleled, his striking is great, and while Ric Flair may or may not have been able to have a compelling match with a broom, Kota Ibushi HAS had a wildly impressive match with a blowup doll. He can pull off a pitch perfect comedy match, and a proper 5 star match (see: Wrestle Kingdom 9) all the same. A true talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Mizzle Assault Antwrote on 29.08.2015:[10.0] "Golden star! I've loved Ibushi for many years, and now that he is getting his chance in the upper levels of NJPW it's the perfect time for everyone to get on board. One of the best flyers working today, and a great worker when grounded as well. Sky's the limit for this guy, maybe literally!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Izinwrote on 16.08.2015:[9.0] "An incredible talent. Has more than the ideal strength, agility, and speed for his size, and his moveset wows me again and again. Consistently delivers incredible matches and he's only on the way up from here."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: murasaki00wrote on 16.08.2015:[10.0] "Kota Ibushi is the type of guy that can make the worst wrestler on their worst day look like a million bucks.  Every time he enters the ring he looks like he is fighting for his life."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Swenson 238wrote on 09.08.2015:[10.0] "Puuh, was sagt man nach den ganzen Kommentaren zu Ibushi noch? Er ist einfach einer der komplettesten Wrestler derzeit und kann jeden Stil mitgehen, großartiger High-Flyer, Techniker, Striker, ... Ibushi ist ein Garant für hochklassige Matches, was er auch gerade im aktuellen G1 Climax wieder verdeutlicht. 10 Punkte sind mehr als verdient, ich hoffe, er schafft es bald an die Spitze und wird mit dem IWGP Heavyweight Title belohnt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kevin434wrote on 02.08.2015:[8.0] "Der Mann ist die Zukunft, für mich der zweitbeste Highflyer nach Neville, liefert besonders dieses Jahr extrem viele gute Matches ab, entwickelt sich zum immer besseren Worker, sein einziges Problem ist das selling, das bekommt der einfach nicht in den Griff, aber darüber hinweggesehen ist er ein klasse Wrestler der mehr kann als nur Spots."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Viper99wrote on 29.07.2015:[10.0] "Ein Grandioser Wrestler. Er kann alles von den akrobatischsten High Flying spots zu Stiffen schlägen zu starkem Mat Wrestling! Ein Problem habe ich trotzdem mit ihm. Er sellt die gegen ihn gezeigten aktionen nicht so gut. Beispielsweise im Match gegen Styles welches wirklich gut war, aber Styles bearbeitet Ibushis Bein und trotzdem zeigt Ibushi seine Spots als wäre nichts gewesen. Trotzdem ein starker Worker der immer für ein gutes Match zu gebrauchen ist. EDIT: Sein Sellingproblem ist immernoch vorhanden was man im G1 gegen Tanahashi gesehen hat. Trotzdem kriegt er von mir das Update von 9 auf 10. Er hat nämlich noch mehr als vorher bewiesen was er für ein großartiger Wrestler ist. Im G1 bisher bockstarke Matches gegen Styles, Shibata und Tanahashi gehabt. Selbst sein Match gegen Gallows war für Gallows verhältnisse gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Matzinhowrote on 26.07.2015:[10.0] "Hat den Körperbau und den Wrestling-IQ, um sich dem Stil jeder Liga der Welt anpassen zu können - das hat er seit seinem Wechsel zu NJPW eindrucksvoll bewiesen. Vom Gokku-Wrestler und DDT-Ace zum ambitionierten IWGP Junior Heavyweight Champion und schließlich Heavyweight-Title-Aspiranten, mit ausgewogener Offensive, cleverem Selling, ausgeprägtem Sinn für Matchaufbau und dem perfekten Gespür für Gelegenheiten, in denen das Publikum heiß gemacht und zum Staunen gebracht werden muss, hat Ibushi in den vergangenen Jahren eine einzige Erfolgsgeschichte geschrieben, die garantiert im Gewinn des zuletzt genannten Gürtels münden wird. Aktuell einer der angesagtesten Wrestler der Welt und meines Erachtens auf dem Weg an den Gipfel seines Schaffens."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: JuliTheCage87wrote on 22.07.2015:[10.0] "Rein von der Variabilität und vom Moveset für mich der beste Japaner aller Zeiten. Liefert jedes Mal eine Leistung auf dem Niveau der absoluten Extraklasse ab. Gerade sein Match gegen Nakamura (WK9) wird in die Geschichtsbücher eingehen. Immer zuverlässig und eine Garantie für großartige Matches. Kann auch ein hervorragender Heel sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kenshin Uesugiwrote on 21.07.2015:[8.0] "Man muss neidlos anerkennen das Ibushi nicht nur bei DDT ein Star ist, sondern in der gesamten Junior Heavyweight Szene. Und ja einige Spots und der Overkill dieser bereiten vielen Kopfschmerzen auch mir, besonders wenn er nicht bei NJPW ist. Aber das Publikum findet es toll und auch wenn mir die Nonsen Moves nicht gefallen, sauber und spektakulär sind sie. Das der Junge auch mehr kann das sieht und weiß man eigentlich. Ein Wrestler für eine ganz bestimmte Sparte an Zuschauern, das kann man gut oder schlecht finden. Edit: Ein absolut verdiente Aufwertung für den NJPW Heavyweight Ibushi, der nun dauerhaft zeigt das eben doch anders kann, keine Nonsens Move oder Overkill, gute und sinnvolle Einbettung seiner schönen Highflying Aktionen und wenn es passt Giftigkeit in seinen Strikes. Wenn er das dauerhaft halten kann und nur ab und zu in seine alten Muster fällt, könnte er noch einige Showstealer fabrizieren. Damit würde ihm eigentlich bei NJPW alles offen, was sich seine Fans so wünschen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Val Cdnwrote on 09.03.2015:[10.0] "Definitely one of the best wrestler in the world (top 20 in my opinion). Kota ibushi is very agile (he is the best at doing the Phoenix Splash) and a good stricker too. This man is my pick to win the New Japan Cup 2015. I want to see a rematch of the last Wrestle Kingdom ! Shinsuke Nakamura (c) vs. Kota Ibushi was sooooo good !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Ganymedwrote on 04.03.2015:[7.0] "Junior Wrestling bzw. die meisten Junior Wrestler ist/sind in meinen Augen eher schlecht. Man kann es/sie sich vielleicht kurzzeitig anschauen, aufgund des oftmals spektakulären Wrestling Stils, aber auf längere Zeit ist das leider nichts. Popcorn Wrestling par excellence, spektakulär, wird aber auch rasch langweilig. Ausnahmen gibt es eher wenige. Ibushi ist eine halbe Ausnahme. Zwar bringt er oftmals ebenfalls Aktionen nur um der spektakulären Action willen. Da er meistens in wichtigen Matches und nicht wie andere Juniors in Openern steht, ist das meist unpassend. Auf der anderen Seite jedoch sind seine Aktionen nochmals eine Spur spektakulärer als die anderer Juniors, wodurch er sich wiederum von der Masse abhebt. Von daher kann ich die unnötigen Aktionen bei ihm eher verschmerzen und gebe ein durchschnittlich. Edit: Nach Ansicht einiger seiner letzten Matches, wo er die etwas härtere Gangart gewählt hat, vergebe ich eine 2-."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: eldenaaaaawrote on 28.02.2015:[10.0] "Currently rising the ranks of New Japan, Ibushi is a stalwart for the DDT promotiom in Japan. A 3x IWGP Jr. Heavyweight champion and one of the most exciting wrestlers going today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: GoToSleepwrote on 03.02.2015:[8.0] "Nach Ricochet und vielleicht Kalisto einer der besten Highflyer der Welt, der jetzt aber Richtung Heaviweight Division geht, was mit gut gefällt. Gegen Nakamura hat er gezeigt, wie gut das funktioniert, sowohl im Ring als auch von das Storytelling als arroganter Heel während einem Match. Bleibt hoffentlich in Japan und kann dann gerne das nächste mal Nakamura besiegen. Seinen Look sehe ich nicht wirklich als Problem an, da er ja zeigt das er nicht so ist wow er aussieht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: llboxingwrote on 28.01.2015:[8.0] "Awesome high flyer. Provides thrilling highlight reel spots in every match.  Good looking and good physique.  Probably the best junior heavyweight in New Japan and trying his hand at the heavyweights now.  With his matinee idol looks and chiseled physique, he certainly looks like a main eventer.  Has shown wicked intensity in recent months.  Refuses to be helped to the back after he loses.  Also a great striker and even has good power moves for his size. The downside? He needs to improve his promos.  Also at age 32, one has to wonder how much longer he can continue to rely on being a spot monkey.  He needs to be more well rounded and develop his ring psychology. He's also a bit injury prone and should tone down his style.  His relatively small size might keep him away from main event status but hopefully not.  His high quality performances and great look might be enough to break the glass ceiling."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: dj22319wrote on 02.06.2014:[10.0] "Recently started watching puroresu... and man oh man, I have never been so impressed. Especially with this performer, Kota Ibushi, the "Golden Star". His match with Ishii at the Back to the Yokohama Arena event was astounding. Not only is he a fantastic aerialist, but he can dish out a lot of strength and toughness with heavyweights like Ishii."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: 8BitLegendwrote on 26.05.2014:[9.0] "Guter Wrestler mit Everybodys-Darling-Look. Sieht so nett aus, dass man fast vergisst wie hart er einstecken und austeilen kann, dabei aber auch noch die Highflyer-Palette ordentlich abdeckt. Sehr gutes Allround-Paket."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TAWPTierJustinwrote on 18.03.2014:[10.0] "I've started to get into watching New Japan Pro Wrestling for a month now and within that short span of time of watching their product, Kota Ibushi has really caught my attention in such an amazing way! I love his moniker being known as the Golden Star! That nickname fits him so well! After watching his incredible match he had with Okada earlier this month, that match confirmed to me that Ibushi is not only one of THE best talents New Japan has on their roster right now, but he's one of the best Japanese wrestlers I've ever seen period! From his Phoenix Splash to his great high flying abilities to his technical wrestling skills to his unbelievable innovative offense that leaves you marking out if you've never seen anything like what he can do before, everything this guy does in the ring is tremendous and looks perfect as hell!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: DeathPoolwrote on 30.01.2014:[10.0] "The hardest working man in wrestling today is also the greatest high flyer, Kota Ibushi! I don't like Prince Devitt but even he could have a great match with Ibushi, along with the five star match Ibushi had last year with the great Minoru Suzuki."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: apc24wrote on 17.12.2013:[10.0] "Great all-around wrestler. He can fly, strike, he can be technical and even has a good arsenal of power moves. Very fun to watch and is one of the best Jr. Heavyweights in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Solertiuswrote on 21.09.2013:[10.0] "Einer der besten Highflyer, die es gibt. Zeigt super Moonsaults, Spingboard-Aktionen und vieler individueller Akrobatik, die sich in Worten nicht beschreiben lässt. Zusätzlich ist Ibushi neben Masato Yoshino einer der schnellsten Wrestler die es gibt... vor allem Ibushis Mixed Martional Arts Kick- und Schlagkombinationen zeigen das sehr deutlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: OmegaIbushiwrote on 29.10.2012:[10.0] "I think that Kota Ibushi is the best Junior wrestler all around the world.  Fast, strong, athletics.. He is one of my favourite."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Spearmanwrote on 23.06.2012:[4.0] "Kota Ibushi ist schlichtweg nicht mehr gut. Es gibt einfach so viel mehr gute Juniors in Japan, sodass man Ibushi einfach nicht mehr braucht. Außerdem ist sein Selling nicht ausreichend."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Excellence of Executionwrote on 08.10.2011:[7.0] "Lebt wie sein Rivale Devitt von seinem Milchbubie-Pretty Boy-Image. Doch mehr noch als dieser neigt er zu einem Spot Overkill. Was daran besonders nervt, ist dass diese Spots oft dieselben und derart spezifisch sind, dass sie mit der Zeit einfach extrem unglaubwürdig wirken und man sich sehr schnell daran satt gesehen hat. Insbesondere wenn sich diese Spots immer wieder mit wehenden Fahnen ankündigen. Wenn er in dieser Hinsicht langsamer treten würde - denn weniger ist in der Tat oft mehr - dann würde ich ihn vermutlich besser bewerten. So finde ich ihn schon ziemlich overrated. Mir fallen auf Anhieb etliche Juniors vergangener und gegenwärtiger Tage ein, die ich weit besser finde als ihn: Taguchi, CIMA, Lyger, Kanemoto, Marufuji, KENTA und ja - auch Devitt ist, denke ich, der bessere von beiden. Er übertreibt es einfach nicht so."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ShakDragoonwrote on 05.10.2011:[9.0] "Äußerst begabter Junior Heavyweight, der sich in den letzten Jahren auch die Anerkennung von New Japan Pro Wrestling erarbeiten konnte. Sein Titelgewinn dort hat mich sehr gefreut. Ich hoffe, er bekommt einen erneuten Shot, wenn er wieder fitt ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kartmanwrote on 06.08.2011:[10.0] "Great Junior Heavyweight wrestler. He can do everything, and he does it well. One of my favourites wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Top-Hardywrote on 29.06.2011:[9.0] "Klasse Highflyer der mich irgendwie immer aufs neue zu begeistern weiß. Wird mir im Gegensatz zu anderen nicht langweilig und gefällt mir eigentlich in jedem Match. Verdienter Sieger vom BOSJ Tunier und zeigt dort v. a. im Finale auch dass er durchaus in der Lage ist ein klasse Match zu worken und nicht nur ein reiner Spotwrestler ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Mick Funkwrote on 16.06.2011:[7.0] "Wenn man ihn sich oft anschaut ist er nur noch 7 Punkte wert, vielleicht irgendwann auch noch weniger... da gibts schon weit bessere Japaner."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Eddiewrote on 25.04.2011:[7.0] "Kota Ibushi ist ein meistens hervorragender Spot-Wrestler, der es allerdings manchmal übertreiben will und deshalb auch oft seine Spots vergeigt. Aufbau hat er in so gut wie keinem Kampf, was Submissions betrifft, aber immerhin kann er richtig übel kicken. Insgesamt pendelt er sich mit seinen stiffen Kicks, den coolen Spots und seinen High Impact Moves, die schön aussehen bei 7 Punkten ein."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Hu-Manwrote on 24.02.2011:[10.0] "Ibushi ist für mich der Best Flying Wrestler 2010. Er haut mich mit seinen Aktionen immer wieder aus dem Stuhl und begeistert mich immer wieder aufs neue."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Switchbladewrote on 22.06.2010:[10.0] "Bester Wrestler momentan bei DDT. Starker High-Flyer, der seinen eigenen Stil hat und deshalb einzigartig ist. Neben dem High-Flying auch noch sehr stiff. Sollte mal nach Deutschland zur wXw kommen;)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: RickRollwrote on 21.03.2010:[9.0] "Jaja, Kota Ibushi ist schon was tolles. Ich muss sagen, wer es schafft mit einer GUMMIPUPPE ein ansehnliches Match zu zeigen, kann nur gut sein. Ibushi ist äußert Unterhaltsam, das hat man vorallem beim Match gegen YOSHIHIKO gesehen und ich finde das er bei DDT sehr gut aufgehoben ist. Er ist ein starker High Flyer, der aber auch was von Hard Hitting und Innovation versteht. Trotzdem, für eine Höchstpunktzahl reicht es nicht, da, wie es hier schon häufiger gesagt wird, es so aussieht als ob Kota seine Spots einfach "abspulen" würde."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: rv27wrote on 08.03.2010:[10.0] "Gefällt mir einfach sehr sehr gut. Kann auch nicht genau sagen warum. Er hat hald einfach das gewisse Etwas."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Marcywrote on 22.12.2008:[9.0] "Das was ich bisher von ihm gesehen habe hat mich absolut umgehauen. Die Tag Matches mit Marufuji und Nakajima gegen die Briscoes haben mich vom Hocker gerissen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Baszdmegwrote on 02.09.2008:[8.0] "Klasse Junge, der unbedingt mal zur wXw kommen muss."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: theflo438wrote on 06.07.2008:[9.0] "Unglaublich was dieser Mann alles drauf hat. Z. B. einen 450 Splash vom Apron oder ein immer wieder perfekter Phoenix Splash. 9 Punkte für DAS Puroresu Junior Heavyweight Talent"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Heatwrote on 28.05.2008:[10.0] "Der rockt einfach alles weg, bin total begeistert von dem Mann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kaffoe 666wrote on 24.03.2008:[10.0] "In meinen Augen noch vor KUDO & HARASHIMA der coolste Typ bei DDT! Wird durch ROH wahrscheinlich noch einiges mehr ins Internationale Spot-Light rücken!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Texas Tornardowrote on 12.12.2007:[8.0] "Ähnlich wie Taiji Ishimori ein richtiges Puro Talent!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Mediwrote on 11.09.2007:[8.0] "Kann sich wirklich sehr ansehlich bewegen und teilt gut aus."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Rob Van Duesenschrauberwrote on 09.08.2007:[8.0] "Beweglich, Stiff, intensiv. Der Junge hats echt drauf, ich würde mich wahnsinnig freuen, wenn NOAH ihn in Zukunft öfter booken würde."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Chekerwrote on 11.01.2025:[10.0] "Anything I could possibly say about Muto has already been said. He's an all time great. Throughout his career, he did wrestling, he did highflying and he did brawling, and he was excellent at all of it. A lot of people sleep on the 90's New Japan heavyweight scene, but it was great, and Muto was a big part of it. In my opinion, he overstayed his welcome as an active competitor by quite a few years (I was specially dumbfounded at those last few months he had in NOAH), but I'm not going to let that drop the rating."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Zak22wrote on 29.07.2024:[8.0] "I find the great Muta to be hit and miss but at his best Muta was incredible and a damn master in the ring. I also think Muta moved the best, sliding across the ring. Muta had charisma and he was a great in-ring worker on his day but sometimes I just found him to be... ok."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Makai Clubwrote on 24.03.2024:[10.0] "My old comment, made 6 years ago (wow 6! ) is so ashamdely misinformed and bad. It was purely formed on his reputation and the limited matches I had seen him in. After watching and combing through most of his peak as a wrestler, taking my time observing his strengths and weaknesses, I have learned to appericate how amazing Muto was. The Great Muta persona leaves something to be desired and often served to allow Muta to rest his body and experiment with how little he could do. But there are good times to be bad. His ownself was the best version. Underrated techncian, very athletic, super charismatic and a HUGE STAR."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: TripleCrownwrote on 25.11.2023:[10.0] "One of the greatest wrestlers ever. Muto knew when to reinvigorate himself, whether it be The Great Muta or shaving his head and embracing getting older, the man knew exactly what to do. He could put on fantastic matches, great on the mic, had some insane looking masks, the guy just had everything you could ever want in a professional wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: JediSaiyanMaster1203wrote on 18.11.2023:[10.0] "One of my all time favorite wrestlers, whether he's Keiji Muto or The Great Muta, he's always been a great worker. What made Keiji so great is that he worked equally well as both The Great Muta and Keiji Muto, showcasing his incredible character work under the Muta gimmick, not to mention having him managed by Gary Hart was awesome! He was doing amazing tag team matches in the 1980s in NJPW, was awesome as a heel in WCW feuding with the likes of Ric Flair and Sting, had incredible runs in NJPW, AJPW and NOAH in the 2000s until his retirement. Overall, Keiji Muto is a legend in the professional wrestling business in every sense of the word. He was a great wrestler, an incredible worker, played his characters to perfection, invented sick moves like The Shining Wizard, found ways to remain relevant, successfully reinvented himself throughout his career, what more can I say?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: CMFunk007wrote on 27.08.2023:[9.0] "The Great Muta is one of my favorite wrestlers of all-time. Whenever he's booked, you knew you were going to get his best. Starting out in New Japan Wrestling as Keiji Muto, he eventually made his way to the United States in World Class Championship Wrestling, feuding with Kevin Von Erich before moving on to WCW to feud with Sting and Ric Flair. Being billed as the son of The Great Kabuki as The Great Muta, he was known for his high-flying technique and spraying green mist, he partnered with Terry Funk, The Dragonmaster, and Buzz Sawyer with Gary Hart to form the J-Tex Corporation. Eventually dominated by The Four Horsemen, Muta would go back to New Japan and eventually join the New World Order and feud with Masahiro Chono over the faction. He would make sporadic appearances in WCW, joining Raven and Vampiro's Dark Carnival stable, but he stayed mostly in Japan the last decade of his career. A couple of times, as Keiji Muto, he would get frustrated during his match, go to the back, and come out as Great Muta. I guess he was kind of like Mick Foley and Finn Balor in that regard with his character."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: UltimoMutawrote on 26.08.2023:[10.0] ""My favorite wrestler of all time. A true master in the ring. Muta/Muto was such a brilliant performer, literally wrestling as 2 different characters for most of his career. His Keiji Muto work in the 90's is technically sound and athletic while his Great Muta stuff in the 90's is some of the best character work I've ever seen. Already a pro wrestling legend, he was able to reinvent himself in the 2000's. A new look and a new style all while creating one of the coolest finishing moves of all time; The Shining Wizard.""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Giantfan1980wrote on 04.06.2023:[9.0] "What else can be said about Muta? When Muta came across the pond to the USA, he would wrestle a more relaxed style so if you wanna see him at his best, you gotta watch his NJPW and AJPW to get the full Monty. Muta hit a "lazy" point in the late 90's/early 2000's but then he reinvented himself and here we are in 2023. Typical Jim Crockett/WCW, they never really knew how to capitalize on him when he first arrived in the late 80's. US promotions didn't seem to "get" Japanese style wrestlers back in the day."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: SIRasdf23wrote on 13.04.2023:[10.0] "What is there left to say about Muto that hasn't already been said? He is one of the all-time great legends, he's one of the guys that many modern and future Japanese wrestlers point to when they're asked "Who inspired you to become a pro wrestler? ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: TheAmazingMrXwrote on 16.03.2023:[10.0] "Keiji Muto is without the shadow of the doubt, one of the greatest wrestlers of all time. His popularity went beyond the rings, he bacame part of the popular culture. His "Great Muta" persona is one of the most influential in the pro wrestling industry, emulated by many wrestlers. He earned the nickname of the "Natural Born Master" because of his superb skills and innovations such as the Shining Wizard and the Mutal lock which are used by many wrestlers around the world. He popularized the Moonsault, the Dragon screw leg whip and the Poison Mist. Another legacy is the "Muta scale", which rates the bloodiness of matches. His induction to the WWE Hall of Fame Class 2023 is well deserved. Keiji Muto is one of my favorite wrestlers of all life."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: benh2wrote on 12.01.2023:[9.0] "Muto is undoubtedly one of the greats but I've never really enjoyed him as much as I think I wanted to. His early work was pretty groundbreaking as he was doing stuff that others weren't at that time. I never really caught on to the Muta gimmick in its prime and I enjoyed it more as a nostalgia thing in his later years. He really got interesting for me around the turn of the century when he had a few years of genuine greatness despite already suffering with his knees. I don't want to say he's outstayed his welcome in his twilight years but some of the spots he's been put into (demanded? ) have been a bit unnecessary."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: TheOneAndOnlyCactuswrote on 10.01.2023:[10.0] "His legend extends beyond what his resume reads. The Pro Wrestling Genius brought explosive dynamism to the heavyweight scene like no one else before. He could do so much between the ropes, not only in terms of moves, but also how to captivate a crowd, either as himself, or as his alter ego. He was an iconic figure of Puroresu's Golden Age for a reason, standing out amongst the pack as part of the Three Musketeers from NJPW. An amazing wrestler with an amazing career, one of my all-time favorites."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: MainEventMasterwrote on 09.12.2022:[10.0] "Keiji Muto is the ultimate pro wrestling legend, and it is a shame most American do not know about the Keiji Muto persona, his character work as the Great Muta was great too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Jaedynr5wrote on 07.11.2022:[10.0] "Mutoh/Muta is one of the best wrestlers to ever do it, phenomenal in ring, two very interesting and compelling characters, finding ways to innovate wild and fun moves even up to now as a near 60 year old man, the entire wrestling world is going to miss him and his crativity in everything he did when he retires in the spring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Conquistador37wrote on 05.11.2022:[10.0] "Awed American audiences in the late 80's. So exciting and crisp, took "The Great Kabuki" style gimmick to it's highest potential. I was at a house show in the midst of the J-Tex angle...in a six man match; the faces would repeatedly crotch Muta. Finally, outside of the ring he was crotched over the barricade. He blew blue mist that moment. I was in stitches, someone had to help him with that joke but, damn. a short cut DEEPER into my heart he went. Went on to become GOD TIER in the world of professional wrestling. A gift to mankind. Why can we only rate him a 10?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Kungwrote on 30.07.2022:[10.0] "An absolute legend of the game who will certainly be missed once he retires in the spring next year."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: shiningwiz01wrote on 21.07.2022:[10.0] "Charismatic legend and innovator, fantastic all-rounder, and one of the greatest of all time who is revered in both the East and the West. Has been written off so many times, only to prove detractors wrong that it? s now essentially a parody. Despite his perpetually destroyed knees, he finds ways to adapt his style and reinvent himself, and has had classic matches in the 80s, 90s, 00s and 10s. Obviously well passed his best now, but still a legendary figure and probably the most famous active wrestler in Japan. Detractors are plentiful, especially certain western fans on forums for not ? putting over? the guys they want him to, but his legacy speaks for itself. Thankfully retiring in 2023, which is probably a decade overdue, but still manages to get the Japanese fans into his matches like few ever have been able to. A true wrestling legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: texasyoshwrote on 27.04.2022:[10.0] "Wrestling legend. Fantastic technician until his knees went out, which led him to change his style more as he aged. And even when he aged, he still remained a big draw no matter if he was in NJPW or AJPW. He also had a storied career in the US, most notably his feud with Sting."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: killowenskillwrote on 24.03.2022:[10.0] "Muto is a test of love for Japanese wrestling, in my subjective opinion. Anyone who claims that Muto doesn't have many great matches, or he doesn't represent some significant era, literally signs his incompetence and blindly following a million biased reviews of tendentious wrestling journalists. Muto is indeed one of the last cult legends that are being studied by American and European fans, but the reason is solely that people covering wrestling at a time when the Internet wasn't yet so well spread imposed a love for the Pillars of AJPW and some now NJPW legends, and when it takes long hours to download pirated videos, priorities are set in favor of the performers whom Meltzer and others like him praise the most. Muto is not included in this category for one simple reason: he is not a man of one role, and his influence on the industry wasn't limited to matches where he repeatedly jumped over his head. Judge for yourself, Keiji is one of the few Japanese wrestlers who was well known in the United States and who objectively achieved great success there. Yes, in the character of the Great Muta, yes, not thanks to some big matches, but there were a great many attempts to push mystical characters, and only Muto, the Undertaker, and, probably, Sting achieved success. For Japan, Muto is a true legend, he is a student of Antonio Inoki, who skillfully promoted his mystical appearance in an era of excessive sports orientation and repeatedly closed the show with his matches. Then he became disillusioned with Inokism, and made his debut in AJPW, becoming one of those valuable people who didn't let the promotion die, twice owning the main championship, and the second reign was accompanied by a severe knee injury, but Keiji chose the promotion and its success, not his own health. 20 years have passed, but the priorities are still the same, and having such facts, it's funny to read that a person who owned all the main and tag team Japanese titles doesn't differ in important reigns, given that every Muto race with a championship is a help to the promotion in terms of media power, and this factor is simply undeniable. As a result: Muto is an incredible wrestler who is consistent and logical in his standard appearance, and completely opposite within the character of the Great Muta. Keiji has remained relevant for 37 years of his career, and for the mass audience this remains unchanged. His matches still attract support, and Muto is probably the only wrestler on the planet who can make it interesting and energizing to be in a five-minute submission. It's sad that the mood of the community doesn't allow you to enjoy EVEN the old matches of this guy, creating the appearance of something shameful, self-deception, but Muto provides an excellent alternative in the era of fast food wrestling in all areas, and I remember any of his matches much better than what the modern main scene offers. My favorite male wrestler after Danielson, Ishii and Tenryu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: GriffinXwrote on 19.01.2022:[10.0] "Just based on what he did at his peak and what he's meant to wrestling alone earns him a 10. Yes at 59 with kness that are fine powder he's not the greatest in ring worker anymore. But much like Terry Funk the passion is still there. And of course his ability be the heroic Keiji Muto and the evil Great Muta both so well should be worth a 10 rating."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Wrestling Foreverwrote on 13.01.2022:[10.0] "Absolute Legende und einer meiner Lieblings Wrestler. Egal unter welchen Gimmick aber besonders gefiel er mit als maskierter Great Muta. Inzwischen ist er sehr alt geworden aber trotz Verletzungen immer noch fit. Das zeigt er einfach bei NOAH."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: KonamiSuissewrote on 11.01.2022:"Keiji Muto is still an incredible draw and relevant asset to the Japanese scene in 2022 at the age of 59, a man who has managed to reinvent himself countless times, he is truly, in my opinion, the greatest of all time when it comes to puroresu."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Den003wrote on 30.12.2021:[7.0] "This is a good, quite agile wrestler with his own chips. However, this is not enough to be considered the upper class. As for me, he is overestimated. But I can put him 7"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: IBladeDailywrote on 20.10.2021:[10.0] "Muta/Muto is one of the greatest to ever lace up a pair of boots. With almost no command of English, he got over with American audiences and was at one time considered for a WCW World Title run. He has managed to stay relevant internationally his entire career. He also had some of the most unique moves and movements of any wrestler I've seen. Great Muta was the first person I ever saw wrestle in WCW (against Flair on Saturday Night in '89) and immediately grabbed my attention. He's won every major Japanese heavyweight title, carries himself as a star, and can STILL work, even in his 60's. Pro wrestling simply wouldn't be the same without the influence of Keiji Mutoh, I don't think there's a better endorsement than that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: BrayanLaPrewrote on 23.07.2021:[10.0] "One of the greatest and most important wrestlers of the past 40 years. The Great Muta opened a significant number of doors for Japanese wrestlers looking to break into the United States while playing a pretty significant role in raising the profile of Jim Crockett Promotions. In Japan specifically, he conquered virtually every promotion there was to conquer. 4x IWGP Heavyweight Champion, 3x Triple Crown Heavyweight Champion, and even a former GHC Heavyweight Champion. A true character whose charisma and in-ring prowess made for a legendary combination. A five-star, 10 out of 10 wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: AndoCommandowrote on 04.05.2021:"Not someone I really click with when watching his stuff. Though I will say this: His impact? Undeniable. His influence? Overwhelming."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: ProWrestlingGuy316wrote on 14.04.2021:[7.0] "In den 90ern einer der besten Wrestler der Welt, auch in den 00er- Jahren stark, obwohl er schon damals Knieprobleme hatte. Leider ist Muto aber weiterhin in den Ring gestiegen und es wurde mit der Zeit immer unangenehmer, ihm zuzusehen. Mittlerweile ist er ungefähr so mobil wie der Great Khali und kann geradeso eine Handvoll Moves ausführen. Das macht es umso unverständlicher, warum er vor Kurzem GHC Heavyweight Champion wurde. Na ja, Noah lernt einfach nicht aus seinen Fehlern."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Khalid Acewrote on 09.03.2021:[7.0] "I know Keiji Muto is way better than my rating but I rate active wrestlers based on their current form."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: ChopChopChopwrote on 20.02.2021:[10.0] "Strong contender for greatest pro-wrestler in history, the man literally was the most over worker everywhere he went. Who other than him won the NWA World title as well as the 3 major belts in Japan ?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: RobbyUpgradewrote on 22.01.2021:[10.0] "Nearly 4 decades after his debut and Keiji Mutoh is still battling in the squared circle. Whether it? s his run in the NWA/WCW in 1989, his legendary main event status in New Japan during the 90s, his resurgence and style change in All Japan during the early 2000s, or his current position as the veteran with something to prove, Keiji Mutoh/Great Muta has cemented himself as a GOAT-level wrestler who deserves even more respect than he gets."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Jetlagwrote on 28.08.2020:[5.0] "Wahnsinnig überbewerter Wrestler, der schon in den 90ern vor allem von seinem Charisma und seiner Overness lebte, während er im Vergleich zu anderen japanischen Stars seiner Zeit eher lasch rüberkam. Als dann Glatzen-Mutoh kam, wurde das ganze mit dem Shining-Wizard-Overkill und den ewig gleich geführten Matches schon arg penetrant. Übel, dass sich heute noch junge Wrestler für ihn hinlegen müssen."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Fayzalwrote on 15.08.2020:[9.0] "My Favourite Japanese wrestler of all time, He had this amazing Mystique about him and just Oozed charisma without needing to say a single word. I have gone back and watched alot of his matches and he is one amazingly complete wrestler and with all his injuries forcing him to change up his in ring work he still continued to put on classics. He is one of 2 guys to win the G1 as champion with the other being Kensuke Sasaki, speaking of the G1 he has had some of the best matches in the history of that tournament with Ric Flair, Vader, Chono, & who I think his best Rival was Shinya Hashimoto, whos chemistry levels with Muta was off the charts. His multiple feuds with Genichiro Tenryo weather it was in AJPW or WAR the feud always managed to stay Important and Compelling for 7 years. Sadly his time as a promoter hasn't been the best with alot of weird shows filled with lackluster matches and baffling booking decisions which has him drop from a 10 to a 9 for me."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Ma Stump Pullerwrote on 11.08.2020:[10.0] "Sensational wrestler. Muto was one of those wrestlers that comes every so while or so that just astounds in all ways. In his prime, he was a high flying technical wizard and one of the best NJPW had to offer, and was rightfully bumped as one of their top guys. Even when injury forced him to modify his style, he still managed to pull off some amazing matches with his invented Shining Wizard. Despite being slower, he made every move of his unique and also fluid: no one really could go quite the way he could in the ring, with a mastery of ring psychology and actually doing smart, logical moves in a match (like consistently targeting the legs to weaken them for his finisher) rather than just jump all over the place. The Great Muta gimmick is also arguably the most over and intriguing masked gimmick ever, with him even getting over in the US, despite being far from the conventional wrestler they were used to seeing. It just shows how great Muto was at getting people invested in him as a wrestler and as a character. This proves to be the case even in his mid 50's, he's still a major draw and is massively over regardless of the limitations that come with his age (though he can actually still go). His influences on wrestling as a whole can't be denied, and the successors of his flashy style (Tanahashi and many more) continue to showcase his entertaining legacy of some of the most captivating wrestling around."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: ShooterMcShootwrote on 18.11.2019:[10.0] "When I was a young child in about 1992, The Great Muta scared me to death. The taped fingers, facepaint and green mist was enough to properly terrify a four year old me. To this day, whenever I think of the term "Japanese wrestler", the first image that pops into my head is Muta. I can't rate him any less than a ten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: jajt1989wrote on 14.10.2019:[7.0] "His stuff in wcw compared to japan is insane, its like when he was in america he just didnt put in as much effort as to when he was in japan but even in saying that he is extremely out of this world when it comes to his in ring skill and even his psychology and mind games"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: PuroresuLoverwrote on 25.05.2019:[10.0] "My favorite Puroresu Legend! Keiji Mutoh is one of the best and simply the GOAT. He had everything to be a Main Eventer and an company's ace, he really was the Natural Born Master."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: waddictedwrote on 30.04.2019:[10.0] "One of the best (and my personal favorite) ever. Inovative, interesting and really really good wrestler in general. His facepaint is also legendary. The biggest compliment for him, is that nothing about him is forgettable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "One of my all time favorites. Innovated the shining wizard. Has had many themes all of which are amazing. Was an main eventer in both NJPW and AJPW and put on countless good matches. Perhaps better known as The Great Muta. At 56 he still wrestles from time to time though far from his peak days as a main event talent in NJPW during the 90s or his career resurgance in the early 2000s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: ElPolloLocowrote on 28.03.2019:[9.0] "Absolutely amazing in the ring until he had to tone things down because his body just couldn't take it anymore. Good promos as well, albeit these days he's mostly remembered as the silent and sinister Great Muta. I even liked him as a comedy wrestler during his HUSTLE storyline with Akebono and Yinling. But one point less due to his horrible efforts as a promoter and often puzzling booking."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: RatingsMachinewrote on 11.10.2018:[9.0] "Keiji Muto is a bona fide legend of professional wrestling. He was a great worker, and was a part of one of New Japan's strongest runs. But his abysmal efforts at being a promoter prevent him from getting a 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: InactiveGuruwrote on 31.05.2018:[9.0] "Great Muta is without a doubt one of the most recognizable names in wrestling to come out of Japan. Watch him closely almost everything he does is flawless. He is superb in the ring and can play his character well. Never count out Muta. If you've only ever seen his WCW work, you owe it to yourself to look up his work from Japan."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: taabr2wrote on 11.09.2017:[10.0] "Big fan of the great Mutoh. The guy is a spectacular worker and has one of my favorite gimmicks in Japan. I loved his early 2000s reinvention when he shocked the world and jumped to AJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Zedwrote on 08.10.2016:[10.0] "Keiji ist die größte Legende Japans, meiner Meinung nach.  Seine epischen Schlachten gegen Kawada, Tenryu und Chono sind die wegbereiter der heutigen Puroresu Generation. Er hat einen so immensen Einfluß und so dermaßen viel bewirkt in Japan, kaum einer konnt ihm je das Wasser reichen. Nur sollte er doch mal so langsam ans Aufhören denken, denn irgendwann macht er sich lächerlich. Und das würde seiner Legende immens schaden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Luv all wrestlingwrote on 06.08.2016:[10.0] "Great Muta/ Keiji Mutoh is a legend of japan, and the first to see major success overseas. His feuds have been amazing - vs tanahashi, vs sting. Mutoh is a hige draw and as wrestle 1 shows, where he goes fans follow"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "I love the Great Muta character but even without the gimmick, Keiji Muto is an incredibly entertaining performer. His peak performances are fantastic and even to this day much of his work is quite good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Jobbswrote on 23.04.2016:[2.0] "I'd say my least favorite wrestler in all of Japan and in general. His style in the ring is just something I am just not into and his lack of selling and psychology is something that really doesn't help either. He's consider a legend in the world of wrestling but I can't see or understand the hype behind this guy as most of his matches are decent or good but I've seen nothing of his that is great and overkills the use of the shining wizard which just takes me out of his matches completely."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Mean Smark Callouswrote on 18.04.2016:[9.0] "Is now officially the greatest Wrestler to never have worked for Vince now that AJ Styles and Sting finally made the jump. His long lived feud with Sting was host to many exciting matches. Great gimmick, epic moveset (credited with introducing high-flying moves like the Moonsault to American audiences) and a mysterious prescence made up for lack of mic skills (which wasn't his fault considering he spoke barely a lick of English). Whenever Muta was booked on the card, you knew you were going to get at least one good match."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Dowkesywrote on 01.06.2015:[10.0] "Possibly one of the greatest wrestlers of all time, definatly one of the best if not the best from Japan. Up their with Kenta Kobashi and Mitsuharu Misawa in my opinion"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Claudio Herowrote on 01.05.2015:[10.0] "Für mich einer der besten Wrestler aller Zeiten und eine absolute Legende. Seine Klassiker gegen Chono, Hase, Kawada, Tenryu, Hashimoto usw ... kann man sich immer wieder ansehen. Auch im Tag Team Bereich eine absolute Ikone ! Wrestlerisch auch im hohen Alter noch sehr stark ... sein Titelrun 2008 war auch noch sehr gut, ansonsten natürlich in den 90 ern und Anfgang 2000 er Outstanding! Klare 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: yanuswrote on 26.04.2015:[7.0] "Very charismatic wrestler and decent in the ring, but he constantly overrates his mat-wrestling skills. Also, I don't really like his moveset."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: RavenEffectwrote on 10.04.2015:[10.0] "Once in a lifetime talent. My favourite japanese wrestling star of all-time. Everything from his facepaint to entrance was unique and enigmatic. He was the Japanese wrestling's gift to the world, it's Hulk Hogan. I remember his time in WCW 1989 when he feuded against Sting & Ric Flair with Terry Funk, and these two teams collided at Halloween Havoc '89 in a legendary Thunderdome match, which is still one of greatest matches of Halloween Havoc's history. Also, I remember his feud against Genichiro Tenryo, that lasted from 1993 to 2007, and which included pretty good encounters from those two."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: 8BitLegendwrote on 03.11.2014:[8.0] "Ich habe vom jungen Great Muta nicht viel gesehen, aber der alte gefällt mir eh besser. Er hat mittlerweile diese Ausstrahlung des Kampfkunst-Altmeisters, was ihn zu einer erhabenen Figur im Puroresu macht. Sein Wrestle Kingdom 8 Entrance war göttlich. Sowas sieht man nicht alle Tage. Kann immer noch sehr gut wrestlen und weiß sich perfekt zu verkaufen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: zackwoowoowooryderwrote on 02.11.2014:[9.0] "Ein sehr guter japansicher Wrestler mit der absolutem Legendenstatus geniest, den ich aber mit seiner Maske besser finde."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Phenomenal91wrote on 18.07.2014:[10.0] "The greatest Japanese wrestler of all time. And possibly the greatest in all of wrestling. It's amazing that he's never needed the WWE to become famous. Very admirable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: jasonpainwrote on 18.02.2014:[9.0] "First ballot Hall of Famer in my book.  Simply fascinating look with a excellent skillset.  Has continued to get better with age and is very undervalued in his place in the history of the business."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Leonewrote on 05.03.2013:[10.0] "To this day, Keiji Muto remains one of the few main event wrestlers in Japan who not only had a character/gimmick that went beyond him being a fantastic wrestler (a character that he developed while on tour in America with the NWA in the late '80s), but also one of few who held the IWGP title with that gimmick.  Today, Muto is still putting on better matches than many of his peers and even some of the young talent.  His in-ring psychology is almost unmatched.  In his physical prime he was an exciting, unpredictable and explosive wrestler who popularised the Moonsault and Muta Lock, and during his 2001 revival of interest in AJPW, he then innovated the Shining Wizard.  The Muta Scale also comes for Muto, as a realistic blade job (literally) from Hiroshi Hase led to not just 1 of the bloodiest matches of 1992, but 1 of the bloodiest wrestling matches ever.  A legend in Puroresu & also a legend in pro wrestling in general."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Kenshin Uesugiwrote on 09.01.2013:[10.0] "Ja, ist er ist und bleibt ein verdammtes göttliches Genie da ändern die kaputten Knie auch nichts mehr daran, da er immer noch zu überraschend guten Leistungen fähig ist. Mal abgesehen davon das Muto alles das hat, ausstrahlt und macht was man als Superstar und Legende im Wrestling braucht und macht. Da kann man noch so sehr mit den angeblichen nur fünf Move um die Ecke kommen, ihm Faulheit in der Gegenwart und Vergangenheit unterstellen und nicht „anfällig“ für die Brillanz der Great Muta Match Psychologie sein. Ein Mann der es schaffte mit einem Gimick und als reiner Wrestler zu Legende zu werden, man stelle sich die Frage ob der Undertaker auch "nur" als Callway so eine Ikone wäre? Der in seine jungen Jahren wohl ein der beweglichsten, spektakulärsten Highflying Alleskönner Heayvweight Wrestler der ersten Stunde war. Als Trainer, Promoter und Kommentator ebenfalls natürlich sau stark. Inoki und Ric Flair soll die größten Legenden sein? Bret Hart und Shawn Michaels die Besten? Steve Austin der coolste mit Glatze und The Rock der Charismatischste? Misawa und Kobashi die mit den besten Observer Matchbewertungen? Mag vielleicht sein,  aber Freunde einer der Größten und Besten, wenn nicht sogar der größte und beste Wrestler als Gesamtpaket ist der ~Pro Wrestling Master~ Keiji Muto."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: jchiofalwrote on 08.01.2012:[10.0] "Muta has definitely aged quite a bit. While his agility and wrestling isn't what it used to be, his wrestling ability is still significantly better than a person even 10 years younger than him can or should even be able to wrestle. He still has the agility of a cat, and he is a master of mindgames, to a level which no one in wrestling today or ever has ever reached (not even young Muta)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Kartmanwrote on 08.01.2012:[10.0] "Keiji Muto ist wie Kenta Kobashi oder Jushin Liger eine grosse Legende der Pro-Wrestling Welt. Und es ist ein begründe Status."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: chaoswrote on 30.10.2011:[10.0] "Die Japan Legende schlechthin! Einer der besten Wrestler aller Zeiten und das Muta Gimmick ist sensationell!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Hirnklopswrote on 17.10.2011:[8.0] "Saustarke coole Sau, die einfach nur langsam mal aufhören sollte. Dem Muto von Heute in seinen teils von Phlegma gekennzeichneten Matches zuzusehen, tut halt ähnlich weh, wie Bud Spencer heute zu sehen... Der Mann war mal einer der besten Wrestler der Welt, aber mittlerweile... Ich weiß nicht... Und es ist dieses "Mittlerweile", welches mich davon abhält, mehr als acht Punkte zu geben. Bud Spencer würde ich an dieser Stelle eine "10" geben, einfach weil der viel cooler als Muto ist, aber dummerweise catcht der Bud nicht, von der kurzen Szene am Anfang von "Auch die Engel essen Bohnen" mal abgesehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: MaikBaaderwrote on 21.07.2011:[10.0] "Einfach nur ein ganz großer mit einem guten Gimmick (Muta) und auch als Mutoh ein Gott. War bei NJPW zusammen mit weiteren Legenden wie Chono, Hashimoto etc. Mit seiner Körpergröße & seinem Gewicht dazu auch ein sehr interessantes Move-set mit einigen Moves, die man sonst bei so einer größe nicht unbedingt normal ist. Kann selbst noch mit kaputten Knien gute Matches zeigen und konnte mit jedem Wrestler ein gutes Match zeigen.  Mutoh ist definitiv eine lebende Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Hans Gruberwrote on 07.07.2011:[10.0] "Alles andere als 10 Punkte wäre lächerlich. Egal ob als Muto oder Muta, er hat jeweils immer überzeugt. Einer der ganz großen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Necronwrote on 03.12.2010:[9.0] "Ich kenne ihn nur in alter, geschminkter Ausführung. Hat mich damals immer fasziniert"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Manu Adamswrote on 22.07.2010:[8.0] "Um ehrlich zu seinen ich habe seine Japan Zeit nicht miterlebt und kaum Matches gesehen, deshalb bewerte ich nur seine NWA bzw. WCW Zeit. Lieferte in meinen Augen einen fast schon vergessenen Klassiker gegen Sting bei Great Amercan Bash 1989 ab. Er war zu seiner WCW Zeit, einer der besten Techniker und konnte sogar mit Jobbers ein ordentliches Match abliefern. Seine Dark Carnival Zeitt war sovieles wie in der späten WCW kaum mehr ansehbar."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Kitanoyamawrote on 06.07.2010:[9.0] "Habe vorhin ein paar Kämpfe von ihm gesehen und ich muss schon sagen das er technisch einiges drauf hat und seine Beweglichkeit war auch klasse. Schade jedoch anhanddessen das er nur hauptsächlich in Asien die ganz großen Erfolge einstrich."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: jjchiofalowrote on 06.07.2010:[10.0] "Muta is quite honestly the greatest wrestler in the world. He is an icon of Japan and the most famous Japanese wrestler in the world. Muta is currently and has always been THE best"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Fountain of Misinformationwrote on 22.06.2010:[8.0] "Für das Lebenswerk einer stets mehr von der Match-Qualität als vom Hype lebenden Legende stehen ihm natürlich die zehn Punkte verdient zu, die Leistungen der letzten 7-8 Jahre drücken die "Gesamtwertung" leider etwas. Für einen 46 Jahre alten Mann mit total zerschlissenen Knieen aber nachwievor in einer bemerkenswerten körperlichen Verfassung (Mutophysique! ) und manchmal, ganz selten, kratzt er ja doch noch an dem, was man als Werke eines Genies im Ring bezeichnen muss."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Erasedwrote on 30.05.2010:[9.0] "Sicher einer der besten japanischen Wrestler. Über viele Jahre liefert er nun schon eine erstklassige Show ab."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: rv27wrote on 08.03.2010:[10.0] "Er wird für mich die Ewige Nummer eins Japans bleiben. Schade das ich ihn noch nicht live erleben durfte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: T-Waynewrote on 21.02.2010:[9.0] "Einer der Großmeister des japanischen Wrestlings. Gefällt mir sowohl als Muta und auch als Mutoh sehr gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Marco Ewrote on 10.02.2010:[9.0] "Einer von vielleicht 6-7 Japanischen Wrestlern die mich wirklich überzeugt haben. Zumindest war er früher ein ganz großer, in den letzten paar Jahren hab ich nicht mehr viel von ihm gesehen. Im TV fand ich ihn immer großartig, hab ihn dann einmal Live gesehen, wo er mich total enttäuschte. Denke aber mal es war ne Ausnahme und könnte am Gegner (Jim Neidhart) gelegen haben. Die beiden passten gar nicht zusammen"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Anti-Championwrote on 25.12.2009:[10.0] "Hat mich überhaupt erst dazu gebracht mal nach Japan zu gucken. Auch wenn er nicht mehr so gut wie früher ist, für seine Ringskills und sein Charisma gibt es (nun doch) 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Eddiewrote on 03.06.2009:[9.0] "Einer der Wrestling Götter, der aber nicht mehr auf einer Ebene wie Kobashi ist, ein bisschen seiner Aura ist schon verloren gegangen, 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Tomkowrote on 02.02.2009:[7.0] "In seiner Prime weltklasse, aber leider muss ich auch die letzten Jahre bewerten und in dieser Zeit zeigte er zu oft zu wenig um seinen derzeitigen Status zu rechtfertigen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: STRIGGAwrote on 09.01.2009:[8.0] "Legendäres Gimmick und der Wrestler dahinter hält auch heutzutage seine Matches mit nur 5 Moves spannend."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: MrWrestlingwrote on 07.12.2008:[9.0] "Eigentlich ganz guter Wrestler. Leider auf Grund seiner Knieprobleme etwas limitiert."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: The Wise Warriorwrote on 16.09.2008:[9.0] "Cooler Typ mit entsprechenden Fähigkeiten. War als Muto gut - als Muta großartig! ;)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Kaffoe 666wrote on 25.03.2008:[8.0] "Als Great Muta genial... als Muto auch okay! Hat leider auch ziemlich oft mit Knieporblemen zu kämpfen gehabt bzw. hat noch immer!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: mr sledgehammerwrote on 29.01.2008:[8.0] "Trotz seiner 45 Jahre noch top in Form und zeigt konstant gute Leistungen. Das legendäre Gimmik des Oldies reicht locker für eine 2!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: D-Stylewrote on 17.01.2008:[10.0] "Natürlich ist Muto alt, natürlich kämpft Muto nicht mehr wie in den 90ern, aber er zeigt noch eine Menge Einsatz für sein Alter, und bekommt für sein ganzes Lebenswerk die glatte 1"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: AnFuwrote on 14.01.2008:[8.0] "Eine Legende ja, seine heutige Backstagemacht gefällt mir allerdings nicht. Eine Niederlage gegen Goto hätte ihm bsp. auch nicht geschadet..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Bullit69wrote on 13.01.2008:[8.0] "Sieht ein wenig aus wie ein asiatischer Goldberg! ^^"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Blade Bourdeauxwrote on 09.12.2007:[8.0] "Guter japansicher Wrestler mit absolutem Legendenstatus."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: LexLuger4everwrote on 01.12.2007:[10.0] "Gefällt mir mit seiner gewohnten Gesichtsbemalung wesentlich besser... jedenfalls auch legendär, mit Jushin Thunder Liger zu vergleichen, die beiden sind in etwa auf einer Stufe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Obermackerwrote on 03.09.2007:[10.0] "Eine der größten japanischen Wrestlinglegenden, immer wieder mit sensationellem Ring-Outfit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Luchaabovegroundwrote on 20.01.2025:[9.0] "Absolutely a master of the ring. Arguably the best ever Or definitely on his way to being just that. Takeda has no real flaws in his game. Death match or not. If I could understand Japanese I would give him a ten so I can not really judge his promo skills."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: jasvvywrote on 28.02.2024:[10.0] "I say this with only slight hesitation, but I think Takeda is the best deathmatch wrestler of all time, even surpassing Jun Kasai. It's a close race, they're side-by-side, but Takeda is untouchable in-ring. Everything he does is crisp, clean and executed to perfection. His facial expressions are insane, his matches are brutal and bloody, he can fit anywhere on the card and his look is EYE-CATCHING. He's charismatic as fuck and not afraid to kiss. 11/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Madladwrote on 02.01.2024:[10.0] "A deathmatch legend. He combine this style of wrestling with in ring storytelling like no one. His MMA shootfight style mixing with brutality of deathmatch make his work so fun to watch"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: LIGERISMwrote on 21.06.2022:[10.0] "The greatest in-ring deathmatch wrestler of all-time. His style single-handedly revolutionized deathmatch wrestling. So match charisma on top of the great wrestling. Outside of deathmatches, he has enough legit pro wrestling talent to land himself spots in places like All Japan and other non-deathmatch indies. A must-see wrestler every time he steps in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: No Onewrote on 22.09.2021:[10.0] "A deathmatch living legend who has an aura of electricity, energy, & excitement. Can adapt to a variety of different styles & was a legit MMA fighter as well. Highly charismatic and worth going out of the way to see his matches all the time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: TJPW is Legitwrote on 14.09.2020:[10.0] "Without Masashi Takeda, I never would have gotten into Deathmatch wrestling. This man is the absolute peak of the artform, and yes, I said artform. While death match wrestling isn't everyone's cup of tea, Masashi Takeda helped it evolve from being something I winced at and thought was gross, to being something absolutely spectacular, a car crash with paint and an easel. Takeda was my deathmatch Tanahashi, I've was completely invested in his title reigns, both in BJW and in FREEDOMS, where he had absolute slaughterfests with Jun Kasai, Isami Kodaka, and Masaya Takahashi. To me, it's an absolute crime that when he lost both titles, he's barely come close to regaining them. He's only had a #1 contender match last year, and he only had a FREEDOMS title shot this year, but it ended because he bleed too much. Granted if you bleed too much in a DEATH MATCH then that's absolutely concerning, and Takeda is absolutely someone who puts his own safety last on the list. Takeda absolutely deserves another run at the top, because I feel like his title reign helped bring many eyes to BJW that weren't there before. He's one of the best wrestlers Japan's ever produced, deathmatch wrestler or not, and I swear, if I could give him a 20 on this sight I absolutely would."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Sir Cheesewrote on 10.09.2020:[10.0] "Takeda is an amazing wrestler - he mixes his MMA/shootfighting background with extreme brutality in deathmatches but also has great performances in non-deathmatches. He is probably the best deathmatch worker in the world right now (and possibly ever) and can bring out great matches in even the worst deathmatch workers. He always seems to elevate the game of his opponents. Also, he takes full on bumps on some of the gnarliest shit I've ever seen (think saw blades, kitchen knives, huge spiked nails, razor blades, kenzans, etc. ) not to mention the hundreds of lighttubes and multiple panes of glass. His matches with Jun Kasai and Yuko Miyamoto are just classics. Go out of your way to see some Takeda matches and you won't be disappointed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: ViolentoFagwrote on 23.02.2020:[10.0] "His capacity to adapt to any kind of matches is awesome, you can book him with the guy you wish and he will give a good show.. I really think he is the present and future of ultraviolence worldwide."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Matuwrote on 07.04.2019:[9.0] "Takeda is an amazing wrestler and one of the best in the world at the time I'm writing this. Takeda is highly skilled as a technical wrestler and brings great story and structure to his deathmatches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: RatingsMachinewrote on 25.10.2018:[10.0] "As death match wrestlers go, Taleda is the best of the bunch, one of the few to be able to combine violence with telling a compelling story."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Makai Clubwrote on 22.09.2018:[9.0] "Awesome wrestler. Has everything a deathmatch wrestler needs to be great. Timing, selling, ability to construct a great structure to the match. And oh, he is a legit great technical wrestler too. Big draw for BJW and freedoms. Highly charismatic and kickass look."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: jamzell00wrote on 03.07.2018:[10.0] "Amazing wrestler who just so happens to be a great deathmatch wrestler. He is the guy who has slowly gotten me into deathmatch wrestling because of his actual wrestling ability and god do I love it. One of the best in the world"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: laldilawrote on 02.07.2018:[10.0] "One of the best in the world right now. He's incredibly charismatic and is willing to do seemingly anything for a match. Most interesting is the mix of his MMA background with his love of deathmatch wrestling. Few if any are on his level in deathmatches right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Headlockwrote on 20.06.2017:[9.0] "Einer der 5 Dreath Match Kaiser! Im Ring errinert er an einen Takashi Sugiura was daran liegt das beide ihre Gegner mit Suplessen und Olympic Slams durch die gegend schleudern, auch in normalen Matsches sehr sehr gut"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Matt4Wrestlingwrote on 19.01.2014:[8.0] "Sowohl Hardcore als auch normales Wrestling sind kein Problem für ihn. Nur denke ich, dass es nützlicher für ihn wäre sich für eine Sache zu entscheiden. Ansonsten Top!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Phoenix Downwrote on 04.09.2011:[9.0] "Ein Alleskönner. Sowohl in normalen Matches als auch in Deathmatches hervorragend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Eddiewrote on 01.05.2011:[8.0] "Absolut cooles Auftreten und er kann viel einstecken, hab aber noch nicht viel gesehen, bis dato 6/10, genau wie bei Kodaka. Edit: Auch von Takeda habe ich mittlerweile mehr gesehen, und ich muss sagen, er ist durchaus besser als sein häufiger Tag Partner Kodaka. Auf einem Level wie Kasai sehe ich ihn aber (noch) nicht, denn ich muss schon sagen, dass er im Storytelling und Matchaufbau noch ein paar Mängel hat, was Kasai (meistens) noch besser beherrscht. Auch sehe ich ihn noch knapp hinter Miyamoto zurück, was aber auch einfach daran liegen kann, dass Yuko mein absoluter Fave bei Big Japan ist, 8 Punkte für Takeda."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Moonbloodwrote on 22.03.2011:[9.0] "Takeda ist der mit Abstand beste Death-Match-Jungspund der letzten Jahre. Vergleiche mit einem jungen Jun Kasai sind definitiv angebracht, denn was der Mann schon in seinem noch kurzen Leben geleistet hat, ist nicht von dieser Welt. Auf Dauer bleibt allerdings zu hoffen, daß er sich nicht ähnlich übernimmt wie viele BJW-Ikonen vor ihm. Einen so rücksichtslosen Stil kann man einfach nicht jahrelang gehen, ohne starke Beeinträchtigungen fürchten zu müssen. Es bleibt spannend zu sehen, wie er sich in diesem Jahr bei Combat Zone Wrestling schlägt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Jay Burgerwrote on 03.01.2011:[9.0] "Gefällt mir bis jetzt ganz gut, sein Deathmatch gegen Miyamoto war klasse, genauso wie ihre Matches als Partner. Aus ihm könnte durchaus in den nächsten Jahren (sofern er bei BJW bleibt) ein ähnlicher Topstar, wie es Miyamoto vor ihm schaffte, werden. Edit: Aufwertung von 7 auf 9 Punkte, was der Junge in letzter Zeit abgeliefert hat war krank, brutal, sick, nennt es wie ihr nenne wollt, einfach bestialisch, wie viel er einstecken kann, er kommt sogar in Regionen eines Kasai. Zusätzlich bringt er in seinen Matches immer noch einen unglaublich hohen Anteil an normalen Wrestling, ich sehe in ihm den nächsten BJW Death Match CHampion, der junge ist im UV Bereich mitlerweile einfach nur Gold wert."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: RickRollwrote on 28.03.2010:[10.0] "Ich weiß für einige ist die 10 hier vielleicht übertrieben und eigentlich würde ich auch nur die 9 geben, aber Takeda ist mit DAS beste was BJW derzeit zu bieten hat. Gibt in seinen Matches alles was er kann und das Endprodukt ist dann sehenswert. Ob er jetzt in Shootfights oder Deathmatches verwickelt ist, das Match wird am ende klasse. Ist DIE Deathmatch zukunft und ist für MICH jetzt schon cooler als Jun Kasai."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: T-Waynewrote on 22.03.2010:[7.0] "Genialer Dead Lift German Suplex und auch sonst hat er ein gutes Moveset. Gefällt mir von den derzeitigen Deathmatch Wrestlern der BJW mit am besten."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Thenwoagedbadlywrote on 21.10.2024:[7.0] "A perfectly serviceable wrestler who doesn't particularly have any great flaws but is also one that doesn't truly have any absolute strengths and therefore is one I personally feel is overrated. Also, she has repeatedly not shone when the spotlight was on her. Put simply, when she has had major matches with excellent talent the matches themselves have been enjoyable but rarely more than that."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: jsbortswrote on 04.10.2024:[10.0] "She's incredible for her age, and she is an excellent striker and an acrobat in the ring. Really love her work and think she's an absolute standout"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: HazzaWrestlingwrote on 14.08.2024:[9.0] "She was at one point, one of the best female workers on the planet but for whatever reason isn't really in that conversation currently. From 2017-2022 she was constantly in great matches but since early 2023 onwards, she's rarely hit matches where I'd consider them "great". I'm not one to speculate on why she's not producing that echelon of work now or one to say "she's fell off". She's 25, she still has plenty of time to get back to the wrestler I considered one of my favourites during that aforementioned period. If she were to graduate or retire tomorrow for instance, she can be absolutely proud as a modern trailblazer with some epic works throughout her career. At her peak, she'd easily excel a 10 rating but this rating is purely on the current body of work I've seen and its just sadly nowhere near what I loved from her. I will re-rate hopefully in the near future because I fully believe she can absolutely exceed her previous peaks!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: nataliegromanwrote on 10.04.2024:"VENY adds her own particular flair to Sendai by constantly doing high risk moves that terrify and amaze."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: benny5bellyswrote on 20.02.2024:[7.0] "I like Veny, when ever they pop up on a show I am watching I enjoy their work. As others have mentioned they are also important as part of LGTQ inclusion. I am not sure I would walk around pretending they are a top tier talent like others but still very good."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: RitsuTa1naka69wrote on 05.09.2023:[10.0] "I think she is objectively the most talented joshi of this decade. VENY is unbelievably unreal in ring and a massive inspiration to a lot of LGTBQ joshi fans. She's legit iconic and I think she'll be remembered as one of the best to ever do it when it's all said and done. I still really want Asuka versus VENY, akin to KENTA versus CM Punk. I know they wrestled before but I would love a modern bout between the two."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: KHAOSwrote on 19.07.2023:[10.0] ""Some people must think this is WWE's Asuka." Uh, maybe? I doubt if you're on this site you can't figure it out, but regardless, she is that good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: NEVERoverweightChampionwrote on 06.07.2023:[7.0] "She is pretty good and has some charisma but I feel like she is kinda overrated here. Maybe because people think it is WWE's Asuka ? Anyway. She's good but that's about it, not one of the best joshis in the world right now."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: bigredtalk89wrote on 05.07.2023:"Half the people giving this person a way higher rating because they think it's the WWE's Asuka. It's not."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: TheOneAndOnlyCactuswrote on 26.06.2023:[10.0] "No, not that Asuka. This ASUKA (also known as VENY) is widely believed to be the first known transgender professional wrestler from Japan. Firstly she came out as gay to her father at the age of 16 and later dropped out of high school to pursue a professional wrestling career, and I think I can say that it was a wise choice. She is one of the best joshi heels in Japan right now. It's hard to believe she is still in her early 20s, as she is simply incredible in the ring already, having bangers after bangers regularly, while also playing her character almost flawlessly. She still has a long career ahead of her, and she seems primed to be remembered as an all-time great if she continues on that current path she is on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Mugendaiwrote on 08.04.2023:[9.0] "Whether she's ASUKA in Japan or VENY elsewhere, she's one of the best wrestlers going today. Her team with Makoto is fantastic and her matches have always been a must-watch for me, no matter the opponent. With another year or two of seasoning, I can easily see this rating becoming a 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Wrestling Foreverwrote on 22.02.2023:[9.0] "Das ist nicht die WWE Asuka sondern ASUKA aka Veny. Klar kann man sie beim Namen verwechseln wie es auch bei Kenta und KENTA ist. Ich bewerte sie als Frau weil ich da auch keine Diskussion bezüglich ihrem Geschlecht haben will."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Rignowrote on 09.02.2023:[8.0] "I would say that she is overrated, but she still is one of the greatest women on the current roster. Her work in NXT was definitely better than on the main roster though."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: SadDorowrote on 20.12.2022:[10.0] "There are very few professional wrestlers who simply get every aspect of professional wrestling quite like ASUKA. From her entrance, to her matches to her general persona there are very few performers working today as compelling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: GriffinXwrote on 03.06.2022:[9.0] "Can't say enough how impressive she is. Like any really good wrestler Auska/Venny draws you right in. She makes you think no matter what she can get that big win"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Mizzle Assault Antwrote on 21.04.2022:[9.0] "A very good wrestler who seems a touch overrated here, but then again it's hard to really fault any of her work, she's just very, very good."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: MrCagematchwrote on 17.12.2021:[5.0] "A really good Joshi performer in the current scene with a great upside. Their matches are good and their performances are usually strong enough."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: NoSellwrote on 26.11.2021:[10.0] "ASUKA is legitimately one of the best in the world and deserves to be featured on a bigger stage. I watched her for the first time on Hana Kimura Memorial show and she was amazing there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: math1823wrote on 12.11.2021:[10.0] "There is a lot of great wrestlers in the joshi scene right now, but ASUKA is clearly amongst the best if she's not just the best. In a way, she makes me think a lot about Manami Toyota (who is the best wrestler ever imo). When she wrestles, it seems almost too easy. I've seen quite a few matches from her, and I've never seen even the slightest botch on her side. She's also a fantastic heel with a lot of charisma. She is also only 23 and, if injuries spare her, I think she'll be considered as one of the GOATs before even retiring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: pierreMinnewrote on 26.09.2021:[10.0] "ASUKA is one of the bests in the world. She is incredibly consistant, she always delivers good matches and she has something more than almost everyone else. Indeed, she is absolutely captivating in the ring since she has an insane charisma and since she is a tremendous heel. I truly hope she can have an enormous run with a world title soon in Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: XIIVwrote on 05.06.2021:[10.0] "ASUKA/Veny has had an incredible year so far and it's only going to get better. Their lucha background combined with the joshi style really makes them standout and things are just getting started for them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Kungwrote on 30.05.2021:[10.0] "ASUKA, or Veny to any AEW fans out there, is one of the most intriguing and exciting competitors currently working in Joshi. They're great in pretty much every situation from the wacky world of Gatoh Move and DDT to the way less wacky world over at SEAdLINNNG. I cannot see a world where ASUKA isn't a massive star in the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: TENzuwrote on 22.02.2021:"They are one of the most exciting wrestlers coming out of Japan today, regardless of promotion or gender."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: wwrstardomprowrestlingwrote on 11.02.2021:[10.0] "The best woman in Japan, i hope she win the AEW tournament, very talent and i'm proud for you. Let's go VENY!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Javichohervaswrote on 28.12.2020:[10.0] "Arguably one of the best wrestlers in the world regardless of gender, with only 22 years of age. Trained by Ayako Hamada, you can see the lucha libre influence in her style, leaning towards lucharesu, but with more strong style than usual. She's not only a great singles wrestler, but also very good in tag team action alongside Makoto, both undefeated in 2020 as Las Fresa De Egoístas. Can't wait to see what the future holds for her, but right now, it shines the brightest."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Hawksrule996wrote on 27.11.2020:[9.0] "One of the most exciting upcoming wrestlers in the world she is so good at such a young age I can not wait to see how good she is in 10 years time"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Caaswrote on 14.11.2020:[10.0] "ASUKA/VENY is a very inspiring wrestler, and particularly inspirational to me. As a performer, she is excellent, and only going to get better as the years roll on, but to be as great as she is at 22 is intimidating to say the least. It is fantastic to see an enby pro-wrestler like ASUKA rising to a prominent position in both DDT and a handful of independent joshi promotions. I am giving her the full score of 10 for several reasons, but the most important of which is what her success represents to me as a trans pro-wrestling fan. I want to see her continue to flourish (pun very much intended) and succeed, and I am hopeful that Rossy Ogawa will reconsider his position on ASUKA in Stardom. And if not, ASUKA will remain successful in spite of that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: SlothFactswrote on 06.07.2018:[9.0] "There's a more badass, more well-known Asuka in the wrestling world, but there's only one ASUKA. ASUKA has been wrestling for two years, and is only 19 years old, and she's already better than probably 80-90% of her peers. This girl has an insane vertical, and uses it for an assortment of stupidly dangerous but beautiful springboard moves. She is going to severely hurt herself one day if she doesn't make her moveset a bit safer (although right now, the thing she gets hurt most frequently on are more simple Tope Con Giros). As impressive as her high-flying offense is (and it's very impressive), she also delivers some gnarly, thudding forearms, and some really nice looking boots and thrust kicks. She chain wrestles, with a really cool looking Fireman's Carry takedown into mat wrestling and submission holds. And she does some power moves that look impressive with her height, most notably a Stalling Gutwrench Suplex, and a Chokeslam she uses to set up her finishers (a top-rope Moonsault, and if necessary, a top-rope Shooting Star Press). It's kind of wild how good she is at so many different types of offense at such a young age. She's finding her charisma really fast; she's really gotten over with the audience, and can get them cheering at will. Her selling is also improving rapidly, and has gotten really good. With all of that said, the aforementioned inconsistency on her aerial offense is scary. She recovers well from slips, but it feels inevitable that one day she won't be able to save a high spot, and that's when she's gonna get hurt or worse. Her athleticism may be so extraordinary that it covers for the sloppiness, but I'd still rather see her not almost die so often. Still, the way the crowd reacts to her, she feels like a sure bet if she can avoid injury."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: troyotawrote on 15.10.2024:[10.0] "If you make a mount rushmore of Stardom wrestlers, Kagetsu MUST be on it. Newer Stardom fans might not always know him, but he's definitely one of the greatest to ever do it in this company. From the feud with Mayu, to his red belt reign, his leadership of Oedo Tai (I fully believe he is the best leader the unit had) and everything else Kagetsu did in Stardom, there is no rating lower than 10 you can give him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Akyri0wrote on 30.07.2024:[10.0] "The greatest heel ever. He was a pure blessing for puroresu. I wished I found him way before the end of his carreer. Hope he's living a really happy life outside of professionnal wrestling !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: MegaSPSwrote on 03.11.2023:[10.0] "kagetsu had to be the easiest 10 ever. he was one of the top joshi wrestlers before he retired at the start of 2020, and it was definitely for a reason. many of stardoms top matches involved kagetsu, and he was even world of stardom champion. he was one of the most fluid wrestlers out there where everything he did was so effortless, not to mention how effortlessly cool he was. kagetsu retired before stardom really took off in western countries, so if you havent seen his work definitely go seek it out. even if you havent seen kagetsu, a couple top wrestlers in stardom today (off the top of my head, utami hayashishita) were trained by kagetsu since he was entrusted as the head trainer at stardoms school. ive said he during this because in 2022 kagetsu publicly came out as trans, and he/him are his pronouns. but wrapping back around, kagetsu is one of the most influential joshi wrestlers in modern times and definitely one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Kungwrote on 23.05.2022:[10.0] "I can't believe it's taken this long for me to rate Kagetsu. Depending on the day, he's either my favorite Stardom wrestler of all time or second to Mayu. Not only was he a superb wrestler, but he was also as charismatic as anyone I've ever watched in this sport. Stardom, and Joshi in general, hasn't been the same since he retired. (Edit: changed for pronouns)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Luna100wrote on 14.05.2022:[9.0] "He's really good, I only saw his last few matches, but he was really good, would like to see him back in wrestling ."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: CFOSwrote on 30.06.2021:[10.0] "I can't put under a 10 for a wrestler like her, She is perfect, she is probably the best Joshi wrestler of the modern era, His Red Belt reign was absolutely fantastic and when she is in the ring, she can't misses, After seeing the work she did before she retire, One day we need a return. A Living Legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: XIIVwrote on 05.06.2021:[10.0] "Coming off seeing her at the Hana tribute show, I can't help but hope that she considers another run, but if she doesn't she still has had an incredible career and is of the best performers of her generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: axebombertsurutawrote on 18.04.2021:[10.0] "Flawless Final Boss of Joshi. Queen of Oedo Tai. Love how she works over opponents with excellent execution."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Suzukigunwrote on 10.03.2021:[10.0] "The queen of Oedo Tai forever. She had a badass look, great charisma, was amazing in the ring and on promos too. She also didn't mind doing unorthodox things that 99% of others wouldn't do. It sucks that she's retired, but she's a legend, period, at least in my book."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: medousewrote on 10.12.2020:[10.0] "One of the most talented, charismatic and spectacular joshi wrestlers of her generation. For me, she was the best captain of Oedo-tai. Her looks, personality and great acrobatic skills is what makes her a full package. She always cut great promos, she had a kickass theme, cool entrance and she finished her opponents with 450 Splash. Personally, she is my favourite joshi wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: ElPolloLocowrote on 08.08.2020:[8.0] "Fantastic wrestler with a few unneeded quirks (see her willingness for brawling in the crowd and doing hardcore stunts) who really helped close the gap after Stardom got mercilessly raided for talent, one can really say that put in a sink or swim situation Kagetsu became an Olympian in a matter of months. Probably my favorite Red Belt champion after io Shirai because her reign was absolutely fantastic. I don't know and don't want to know why she chose to retire but I'd be glad if the door to a return she left ajar would open one day soon."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Riggswrote on 24.02.2020:[10.0] "Kagetsu retires today with a match against Meiko Satomura (sp). She has amazing charisma and is an outstanding wrestler in the ring. She often worked hard to put others over and diminish herself. Joshi will miss an outstanding wrestler with her retirement. I wish her well in whatever she does from here on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Chekerwrote on 16.02.2020:[9.0] "Kagetsu is legitimately one of the better women in Stardom. I hope to see her pop up elsewhere now that she's done with Stardom, but I fear that may not happen. EDIT: Bumped my previous rating from 8 to 9 as I felt 8 was a little conservative."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: cuervonegro83wrote on 31.01.2020:[10.0] "Kagetsu, if there is a thing I love about her is the honor way she follows, and yeah she is going to do anything to win, like spit you in the face, but at the end she is going to shake your hand if you have done a good match and normally also at the beginning she is going to offer the shake, I always like that cause this kind of things give her an unique personality, in the end Kagetsu is a fighter with Honor. Of course she is probably one of the best mic in Japan and I also like her entrance music. But let's speak about her in ring abilty, Kagetsu is a pretty complete wrestler she can read her opponent style and do the best to show the best of each other, as example this month she face Konami, a great ground style wrestler, and after an explosive beginning they stay for 2 or 3 minutes doing this grapple style, not so popular but also important to understand the style of Konami and also of Kagetsu. Kagetsu is also a striker, a good grappler and also have some highflying moves, like her Oedo Coaster (450 splash) and the way she does the missile dropkick after jumping to the ropes. If she is not a 10 is just a feeling, I feel she is not a 10 yet. EDIT: I did this rating on august expecting to see Kagetsu for some more years, but before she retires I want to give her a 10 'cause she has done a lot for STARDOM being a great leader of Oedo Tai and showing great chemistry with any opponent, so Thank You Kagetsu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: arrancarwrote on 26.12.2019:[7.0] "So, with Kagetsu announcing her retirement alongside Hazuki, I guess it's time to give her a rating as well. Kagetsu was very, very good from my close following of her work in 2019. She had a fantastic look, incredibly clean movement, near-flawless technique in terms of move execution and selling, and tonnes of charisma. In a company heavily focussed upon 'idol wrestlers', Kagetsu easily stood out. She was definitely the 'coolest' member of Stardom, and she totally deserved her run at the top of the company. She was one of the few Stardom wrestlers whose matches I would always go out of my way to watch, since she was so talented and experienced that she could always make any relatively insignificant match interesting. I guess I'm lucky to at least have a backlog of Kagetsu matches to check out, but I obviously would have preferred if Kagetsu continued to wrestle and continued to increase her skills."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: KyleEnjoysWrestlingwrote on 01.08.2019:[8.0] "Kagetsu is a great asset for Stardom. She is solid in the ring & works well against other fan favorites such as Tam or Momo. She had a great long run with the red belt & I only wish Bea wasn't the one to take it from her."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: NEVERoverweightChampionwrote on 05.07.2019:[8.0] "Very charismatic leader of Oedo Tai, she is certainly at ease on the mic. She can have strikes or submissions based matches without struggling, , she masters a lot of wrestling styles. The only thing that can really take her matches down is the brawling outside of the ring where I find her offense not always convincing. Interferences of her stablemates are not always interesting as well. Besides that she is a totally reliable wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Penta Strong Zero Mwrote on 29.10.2017:[10.0] "Strike, high flying, technical, she's great in a microphone, good acting and selling, very charismatic. A superb wrestler very complete who deserve i think a single belt in the future. They are no many womens in the world of professionnal wrestling who have all the qualities as Kagestsu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: DemonIngobernablewrote on 15.10.2017:[9.0] "Great in-ring skills, great charisma and she's in a great stable. Kagetsu is making a name for herself. Along his stablemates Hana Kimura and Tam Nakano, she'll be sooner than later a top star in Stardom."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Faelthaswrote on 24.09.2017:[8.0] "Kagetsu is easily one of the very best things going in wrestling right now IMO. Since her return with her new look she has been on absolute fire. Her 450 is gorgeous."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: CJ Duskwrote on 05.07.2016:[8.0] "I liked Kagetsu from the first time I saw her back in 2014. Very solid wrestler and doing very well in tag teams. Shes come a long way and is moving up fast in the Joshi world. Satomura did a great job training her. Really like her new look and attitude. Maybe one day this little power house will get her hands on the JWP Openweight Championship?"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: WrestlingStuffwrote on 15.07.2024:[10.0] "The neutral monster of the musketeers while Mutoh was the charismatic hero and Chono was the dark villain. Hashimoto was a man with no boundaries, and you can tell that everytime he overhead chopped or straight kicked up guys in their stomach, it felt personal almost (seriously, he once dug his foot deep into Tenryu' stomach with a kick, he let a painful scream out). He was also a living proof of overweight wrestlers being capable of anything if they train hard, judging by the deadly kicks and agile DDTs he hit. To me, he was the greatest IWGP Heavyweight champion after Fujinami, and the special thing with Hashimoto is that he would let out all his emotions out in his matches, like a vulcano erupting to destroy everything around him. May our King Of Destruction rest in peace, and long live his strong style."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: texasyoshwrote on 02.05.2024:[10.0] "He is the ethos of New Japan. He is fighting spirit. That comes across in almost every match that I've seen of his, all while being the biggest draw of his respective generation. He was that good. While Misawa could get stuck in a very standardized form of wrestling, Hashimoto felt much more dynamic in the way he set up his matches. It helps that he was really easy to root for as a babyface. It's truly a shame that he passed away so young. He had a lot more left to give in an industry that was rapidly changing away from pro-wrestling. His death marked the loss of one of pro-wrestling's strongest."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Makai Clubwrote on 26.02.2024:[10.0] "While Kazuchika Okada may have beat him for best IWGP Heavyweight title reign, Hashimoto still embodies the idea of champion to me. The spirit of New Japan lived through Hashimoto during his peak. Muto, Chono and others may have had their fair share of big shows but none feel as big as when Hashimoto was defending or wrestling for the belt. Hashimoto was a rather underrated worker in his day because he wasn't fancy. He wasn't getting the credit he deserved by the tape traders, who were taken away by the Jr craze at the time, and that has left him out of the wider conversation for being one of the greatest when he certainly belongs. Whether it's a 30 minute match or a 12 minute match, Hashimoto always delivered something special. Something big and weighted. A master at getting something out of little. His kicks meant much more than anything. His chops could feel like game changers. His yells and screams added that little more drama to the mix without going over the top. Hashimoto felt larger than life and backed it up with his wrestling talent. A rare breed. One of the best ever. Truly deserved to be mentioned among Misawa, Kobashi, Kawada, Tenryu, Bryan Danielson, Bret Hart, ect, etc. And that's without mentioning his immense drawing abiltiies. Biggest draw of the 90s. No word of a lie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Hillwrote on 17.06.2023:[10.0] "A hero that NJPW needed during the 90s, brought back the IWGP Heavyweight title from the UWF with a monstorous pop to boot, fought back agianst nWo Japan and went on to have the longest world title reign in New Japan with record setting defenses (for the time at least), his chops and strkes were vicious and was decpetively fast despite his weight. Through a series of backstage circumstances he even went on to create his own company, but sadly died far to young. He doesn't get enough respect (probably because he hardly went to the states copared to Mutoh and Chono), but I would place Hashimoto above the both of them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Giantfan1980wrote on 05.06.2023:[7.0] "One of the most popular of all time that suffered an untimely death. He was solid in the ring, and looked the part."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: TooDarkMarkwrote on 21.12.2022:[10.0] "A monster of a wrestler. I could watch him kill people all day. I couldn't wait to find one of his matches on VHSs in the 90s, and I spent a lot of time watching his matches on video sites in the 10's. His anger, his spirit, his death stare, and the headband. One of the greatest to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: YourKingMobwrote on 13.09.2022:[7.0] "A tremendous worker who I never really liked. I found his moveset goofy, his look hilarious in all the WRONG ways, and as NJPW and Inoki dragged NJPW towards an awkward pairing with MMA, he looked even goofier. I know he's a legend, but he's not just for me."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: GriffinXwrote on 19.01.2022:[10.0] "He was the man that took that IWGP from the top prize in New Japan to one of the most important tittles in the world. His long reigns made value of the belt just that much more. Fans knew when someone finally took it from him it would be a big deal. His strikes were fantastic. Sadly like so many legends he was gone to soon"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: wrestlingisgrosswrote on 04.07.2021:[10.0] "The greatest seller of all time. Able to convey so much with his just eyes-- vulnerability, anger, malice, dignity, and of course, violence."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Ma Stump Pullerwrote on 03.05.2021:[8.0] "Out of the big wrestling stars of the 90's, Hashimoto was probably one of the biggest, just below Misawa in drawing power. The guy was a sensationally over guy back then and was the most popular wrestler in NJPW: despite the relatively simple look and non-existent promo skill the crowd took to him very easily and he was booked as a stiff striking machine capable of taking crazy amounts of shots and giving them back also with a aura that screamed murder. In terms of workrate, he's not fantastic, at least in my mind. He's had some great matches with guys like Tenryu and his later work in AJPW and ZERO-ONE showed that he could work beyond the stunted, forced "epic" style that NJPW had where they needed to pad matches out way beyond their natural length, a issue they have even today, but because a majority of his work is within that bubble it's hard to really judge him as a wrestler separated from that. He wiffs a lot of his striking style offence and I find that guys like Misawa or Kawada are far more convincing in terms of their striking. When he's actually wrestling and the length isn't too extended he's actually very good for what it's worth, but he's more remembered for his physical charisma and aura than anything else, with some surprisingly good technical wrestling behind the strong style persona. I would say that he was capable of having great matches, but only when he was with great talent alongside him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Strong Zero Machinewrote on 22.12.2020:[10.0] "Absolute Legend! One of the biggest legend of New Japan and a top draw (90's). Badass, stiff, great look... Great rivalries with Keiji Muto and Naoya Ogawa, Longest IWGP Heavyweight reign for 20 years (he's 3rd run). IWGP Heavyweight x3, IWGP Tag Team x2, AJPW Triple Crown x1, NWA World Heavyweight x1, G1 Climax 98 and Tag League 92, 96. Wrestling Observer Newsletter, NWA and NJPW Hall Of Famer. Shinya Hashimoto deserve 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: ElPolloLocowrote on 08.10.2020:[6.0] "Hashimoto is one of those wrestling legends I have never been able to appreciate. He's kinda like his fellow Musketeer, Masahiro Chono: for all the mystique of the legendary matches only a handful lived up to the hype back in the days when we finally could see them. After hearing and reading how incredibly brutal Hasmimoto's match with X or Y had been you patiently waited for the tapes to show up and when they did you were usually rewarded with the usual lukewarm showing by Hashimoto. Yeah, he had three/four really cool power moves such as his Brainbuster, but we needed to get to those moves first, meaning tons of meaningless kick sequences and too many pauses to allow Hashimoto to think what to do next, which was usually more kicks. Those matches wouldn't have been half bad had they gone 10 minutes but they invariably went over twice or even thrice that long: stretching matches too much has always been NJPW problem regardless of who's in charge. In all honesty I cannot fully blame Hashimoto for this because he didn't decide match length but he did little or nothing to keep things interesting. No small wonder everybody was watching AJPW back in those days."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Khalid Acewrote on 29.06.2020:[6.0] "Shinya Hashimoto is a tough one to rate because sometimes he could be spectacular in the ring but in others you'd think someone from the crowd just came to wrestle his first match!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: arrancarwrote on 27.09.2019:[6.0] "Hashimoto is one of those wrestling legends who I've never been able to 'get'. The first match of his that I saw was the great match against Takada where he won the IWGP Heavyweight Title, and I thought Hashimoto did great playing the fiery underdog going up against, and eventually dethroning, the outside champion. Sadly, basically every other match of his I've seen has been majorly underwhelming. For supposedly being the 'God of Strong-Style', his offence looked incredibly poor. The man couldn't deliver a good kick to save his life. Sure, he could get stiff impact on them, but that never mattered to me because I couldn't get past how ridiculous they looked due to his lack of mobility. As for his chops and other hand-based strikes, they were all fine, but I never saw anything that made me think "whoa this guy has a killer offence" as so many others apparently think. He had a few good power moves, I'll give him that, but that was never enough to carry his matches to the level of being 'good' in my eyes. The moments where he would fire up also always came off as rather forced, thought that's probably just because I personally never bought into him as an in-ring worker, thus I couldn't buy into his character either. I also have to say that the 'warrior samurai' look he went for didn't work. At all. His body type simply didn't fit that type of theme. He looked like a bad cosplayer more than anything. The only other truly great match I've seen Hashimoto have was against Hase, and that was an outstanding match only because of how Hase's sympathetic selling made Hashimoto's offence look far more impressive than it otherwise was. I can't call Hashimoto a bad wrestler, and I can't even really call him a boring wrestler, if only because he had so much crowd support that could carry his disappointing matches to being mediocre at worst. I just don't see what everyone else saw in him."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: LandonRyanWyattwrote on 01.02.2019:[8.0] "Pretty good for a guy his size. It sucks because, even as long as he was around, I still feel like he didn't amount to his full potential. May he R. I. P."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: JEK 1991wrote on 03.01.2019:[10.0] "Great in the ring! He was a stocky wrestler that could humiliate his opponents. New Japan was his turf for many years. The matches he had with Vader were amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: RatingsMachinewrote on 12.10.2018:[10.0] "Shinya Hashimoto had the kind of tough, physical style that allowed for some very dramatic matches, and his penchant for getting nosebleeds added to his effect. Hashimoto was one of New Japan's better draws, but despite this, his time in New Japan ended unceremoniously thanks to the machinations of others."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: thagodrakimwrote on 24.04.2018:[10.0] "One of the best wrestlers of all time to be quite honest. No one could bring the same element of danger that Hashimoto brought to a match. Along with that he's one of the hardest hitters in wrestling history, an amazing seller, and he also had fantastic matwork to boot. He was also one of the few guys to show that you do not have to be extremely muscular in order to be a top star, and a top draw. RIP Hashimoto."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Claudio Herowrote on 18.11.2017:[10.0] "Bei Shinya Hashimoto kann man nur 10 Punkte geben ! Punkt ! Einer der größten Stars von NJPW der 90 er Jahre mit zahlreichen Top Matches bestückt (z. B. gegen Tenryu, Hase, Yamazaki etc ... ) In allen Matches die ich gesehen habe war er In Ring mäßig für seine Statur Top, beweglich, technisch klasse, schnell und charismatisch ... Habe von ihm noch nie ein schwaches Match gesehen, auch einige seiner späten Fights bei ZERO-1 waren noch sehr stark ... Leider viel zu früh verstorben ! RIP Shinya Hashimoto"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: TrevPuroFanwrote on 19.01.2017:[10.0] "The heart and soul of New Japan in the 90's. Everytime Hashimoto came out to the ring, you know you were in for a treat. Loved by the crowd, Hashimoto brought an intensity and presence of his own to the ring. Some of the best facial expressions and selling he had as well. All in all, he was incredible, and a top 5 performer ever to me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: RainmakerF7wrote on 26.11.2016:[10.0] "One of the biggest icons in Puroresu history, it's a shame that Western fans don't really know about him and he isn't mentioned in the same sentence with Misawa or Kobashi. An enormous draw despite not being a muscular dude, and really an incredible pro wrestler. Hashimoto is one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: NastyYaffawrote on 13.04.2016:[10.0] "Shinya Hashimoto is, without a doubt, in my opinion one of the greatest wrestlers of all-time. He was incredible in the ring & incredibly charismatic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Alex Maedawrote on 15.08.2013:[10.0] "Ziemlich einzigartige Erscheinung. Unverkennbarer Stil, sowohl im Kampfstil als auch in Sachen Ringoutfit. Ich habe zwar erst nach seinem Tod Matches von ihm gesehen, denke aber trotzdem, dass ihn seither keiner ersetzen konnte und er von Kollegen und Fans weiterhin schmerzlich vermisst wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Leonewrote on 01.07.2012:[10.0] "He may have looked like the Japanese love-child of John Belushi and Samoa Joe, but he was a great wrestler with a lot of skills and agility for someone his size, and a very believable champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Phoenix Downwrote on 18.07.2011:[10.0] "Der einzig wahre King of Destruction. Unvergessen seine Matches gegen Muto, Tenryu, Kawada, Yamazaki und so viele mehr. Hashimoto steht nach wie vor für Strong Style und für New Japan wie kein anderer Wrestler. Eine ganz große Legende des Puroresu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: 3durch16wrote on 14.01.2011:[8.0] "Hat mich bei seinen Auftritten, die ich von ihm auf DVD gesehen habe, überzeugt. Schade, dass ich ihn nie live sehen konnte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Kenshin Uesugiwrote on 28.08.2010:[10.0] "Gehört wie Keiji Muto zu meinen Lieblings-Wrestlern aus Japan und ja selbst nach bald 5 Jahren nach seinem Tod, vermisse ich ihn immer noch. Er ist neben, Inoki und Choshu der Strong Style Meister von New Japan. Zu gern hätte ich ihn gegen Kobashi oder Kenta und Nakajima kämpfen sehen wollen. Hashimoto war eine Klasse für sich, der Mann strahlte ein natürliches Charisma aus und wenn er im Ring loslegte, zeigt er mit seinem Spirit allen Kritikern das Wrestling ein Sport ist. Mit ihm und Keiji Muto bin ich aufgewachsen. Ich habe geweint als er NJPW verlassen musste und als er für mich plötzlich aus den Leben gerissen wurde. Hashimoto niemand kann dich ersetzen !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Manolowrote on 19.07.2010:[10.0] "Für mich war Hashimoto noch vor Mutoh (und meilenweit vor Chono) der beste Wrestler New Japans in den Neunzigern.  Neben Misawa, Kobashi und Kawada war er mein Lieblingswrestler in Japan.  Leider ging er viel zu früh von uns."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: RickRollwrote on 11.04.2010:[10.0] "Hashimoto ist der inbegriff für Strong Style. In all seinen Moves war soviel Kraft drin, ob jetzt im DDT, Vertical Drop Brainbuster oder einfach seine Kick Variationen. Hashimoto ist stiff as hell und er gefiel mir von den Muskeltieren am meisten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: hatebreederwrote on 03.12.2009:[10.0] "Der größte New Japan - Star aller Zeiten! Größer als Muto und Chono zusammen. Inbegriff des Strong Style. Legende, Ikone, nennt ihn wie ihr wollt. Einer der Allerbesten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: batze22wrote on 30.09.2009:[10.0] "Der beste IWGP Champion überhaupt. Er konnte wirklich aus jedem das beste herausholen. Leider ist er viel zu früh von uns gegangen. Ruhe In Frieden Shinya Hashimoto."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: LexLuger4everwrote on 24.02.2008:[8.0] "Ich find ihn nur gut, nicht sehr gut, aber ganz klar ist er legendär! Ich war damals sehr überrascht und geschockt, als ich von seinem Tod erfuhr!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Rancorwrote on 11.12.2007:[10.0] "Hashimoto ist einer meiner absoluten "all-time" Favoriten. Der Mann war genial, stiff und höchst charismatisch. Ich finde eigentlich keine Worte für ihn. Larger than life."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Obermackerwrote on 26.09.2007:[8.0] "Stiffe Japanlegende, seine Matches mit Vader waren kolossal."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wrestlefan97wrote on 11.02.2025:[10.0] "Where do I start, since his time in WCW Chris Jericho has shown he is one of the best in the ring from his high-flying offense to his mat work he is one of the best. He has constantly reinvented himself and with each rendition, he has stayed relevant and entertaining, except for the recent character which I'd rather not talk about... anyway, aside from this no matter what character he's given, what company he's signed to, or slot he's put into he excels in this role. Some wrestlers struggle with having a great character and great in-ring work, but Jericho like many of the greats has both. I know I may sound a bit like a Stan but, when it comes to this subject I just get incredibly excited. In my opinion, he has earned the right to call himself the BEST in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: itscalledtaylorhamwrote on 09.02.2025:[7.0] "If I had written this a few years ago, he would be a 9 or 10 easily, but Jericho is ruining his legacy with everything he's doing these days. He's completely washed, the fans hate him, and not only does he refuse to go away, he's seemingly taking the criticism to heart and telling everyone to go fuck themselves by being even worse on purpose. I respect the work he did in WCW, WWE, and the early days of AEW, but everything really since 2023 has been nothing but self-serving, makes me want to change the channel garbage and he needs to retire."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: kruksterwrote on 06.02.2025:[8.0] "Back in the day Jericho was a 9 or 1 but looking at his whole career I am giving him a 8 as he has tarnished his career over the last year. Incredible in WCW and ECW, and really good in WWE, but has been less than stellar and downright awful his last year in AEW. Should not be holding the ROH title at is disgraceful to that once great company."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CrandonMartin2001wrote on 25.01.2025:[10.0] "Chris Jericho is the most versatile performer the business has ever seen. No one reinvents themselves like Jericho--every time you think he's done everything, he finds a new way to stay relevant and entertaining. From being "Y2J, " the arrogant loudmouth interrupting The Rock and mocking Stephanie McMahon, to "The Painmaker" reinventing himself in Japan, to leading The Inner Circle and doing some of the funniest promos in AEW--he's done it all. Jericho's in-ring ability has always been top-tier. He can have great matches with anyone, from cruiserweights to heavyweights, and his storytelling is always on point. Whether it was his wars with Shawn Michaels, his feud with CM Punk, or even his ability to make a "list" into one of the most over things in wrestling, Jericho knows how to create moments fans never forget. What makes him, isn't just his longevity--it's how he's stayed a step ahead of the game. He's not afraid to take risks, step out of his comfort zone, or embrace the absurd, all while keeping his legacy intact. Jericho is the definition of a wrestling legend who still feels relevant, and that's a level of greatness very few ever reach. While he's not the Y2J we all loved anymore, you have to say he is and will always be '"The King of The World""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Khalid Acewrote on 25.01.2025:[4.0] "I can't believe I am rating my favourite professional wrestler a four however I would have to. I rate wrestlers based on their current form. Aside from that he's probably the G.O.A.T not on terms of his in ring work but for how many characters he played perfectly. But if you stick for too long after you have nothing to really offer in the ring anymore you get at most a four. He should just stop wrestling he's done so well throughout his career I don't want him to ruin it. I don't want to see the day the fans will keep chanting please retire for him every time he wrestles."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Nacho Manwrote on 24.01.2025:[10.0] "10.0 if I weren't newly registered on the site. What is with people giving Chris Jericho a zero rating? I was only on the site today to find some info about his last appearance in Smoky Mountain Wrestling in 1994, when he wrestled a very bloody tag match (at for him). Sure, Jericho's done some annoying things over the last few years in AEW, and probably has creative control over his booking, much like good ol' Hulk Hogan in WCW, to go with some of his questionable actions away from our TV screens. But this man is an absolute legend in professional wrestling; almost nothing he does in AEW these days can taint his legacy. From his babyface debut in WCW, where I became an immediate fan due to his off-the-charts charisma and tremendous athleticism, to his heel turn, where I suddenly found out what a great talker he was, with his hilariously annoying whiny heel promos. And then on to his unforgettable Y2J WWF debut, trading insults with The Rock, and he's never ever needed to look back. And even these days, although The Jericho Appreciation Society certainly got on my nerves, I'm really enjoying the current Learning Tree gimmick, especially his King of New York side gimmick, where we got to hear the native New Yorker say "Hammerschtein" many times, referring to the host venue for the ROH Final Battle event in December 2024, the Hammerstein Ballroom in NYC. Just hilariously cheesy, at least to me. A smaller group equals better results I suppose. More "TV Time" for Big Bill and Bryan Keith to get themselves over, to be sure. Jericho's in-ring work might not be what it once was, but at age 54 (! ), I think he's still pretty darn good and believable in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Personanowrote on 22.01.2025:[4.0] "[Updated Rating] I won't deny Jericho is a legend. He's put on some fantastic matches all over the world and somehow he's able to shine in pretty much every environment he finds himself in. WWE, AEW, even his earliest days in ECW and WCW contained some great & notable matches or moments. Something changed though. Instead of loving Jericho as I once did, I've become really really bored & tired of his corny & sometimes downright terrible Learning Tree antics. The character of 'The Learning Tree' was kinda funny at first, I'll admit. I loved his weird awkwardness in promos and willingness to teach the AEW audience really, really obvious life lessons, but it's hard to keep up such a character for so long and have it not get stale. And unfortunately, that's exactly what's happened."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dhruboezitwrote on 17.01.2025:[3.0] "Would've rated him a 8 or a 9 only for his WWE career. An attitude-era legend with great in-ring skills, charisma and absolutely incredible on the mic. He did great after his 2016 return and the whole "list" thing. Very entertaining. Vince fumbled not giving him and Owens the main-event match on WM. And.... then he went to AEW and at first was doing a great job with the "little bit of the bubbly" shtick. But then he kept getting fatter and fatter and fatter... as well as so slow that it seems as if he's wrestling in slow-motion. He can't even execute spots in a convincing manner. Botches every few seconds. His body cannot take it anymore clearly. So by now all he's doing is making a mockery of himself in a bingo hall filled with people laughing at him - and essentially destroying his once-great legacy. Sad. But the "nueve" or "learning tree" nicknames, or hoarding world titles while being a grandpa gives him a 3 at best."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lukeathonwrote on 13.01.2025:[0.0] "For all of AEW's Pro's - there is one BIG con to watching all of their shows and it is this man. An awful creepy sex pest who's awfulness has not only been completely swept under the rug but he's actually still being given World Title Runs afterwards in 2025! Nearly 12 years after Jericho's peak ended! Jericho back in the day was really good and I'll admit that, his WCW & ECW early days were amazing, he had a unique good look, had all the charisma in the world, and the only person I think that could rival him on the mic in 2000 was The Rock. His in ring work was stellar and most of all his longevity! The guy put on a show no matter what for 20 years but to me all of it means naught now, the guy should be ostracised, not only that but after 2021 his schtick has been so boring, his feuds never elevate anyone other than himself, he apparently books his own matches, he constantly aligns with stables and then never even tries to get them over, his feuds with younger talent never get them over because nobody cares about him anymore, plain and simple, he is overstaying his welcome in the wrestling business, but to me after what he did to Kylie Rae, his entire career overstayed it's welcome, screw you Jericho."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dizziedwrote on 12.01.2025:[7.0] "Old Jericho i would've given a higher score, He was probably more like a 9 in his prime. However, now it looks like he plays the politics to stay relevant. He continues to bury younger talent who he should be pushing. This part of his career is more ego than anything. The one thing though about Jericho that stands out is his mic skills which are legendary."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: milos16057wrote on 08.01.2025:[8.0] "Man that has two careers, one that every wrestler dreams of having, and one every wrestler has nightmares of having. In his prime, he was one of best wrestlers in the world, with huge list of incredible matches and legendary wrestlers he worked with all around the globe. Right now, he is shadow of his past self that lives of his name and not current work. His WCW run was great example of wrestler using most of time he was given, and despite not being best worker in cruiserweight division, he was by far most entertaining. In WWE, he was doing his best as heel upper midcarder, as he never really managed to get over as top star of company. His heel work in feuds with HBK, Rey Mysterio and CM Punk was excellent, and he absolutely carried these feuds. His feud with KO proved he can be popular babyface too. His in ring work was best in 2000s and he started to slow down later. After his feud with CM Punk, he was just there on the roster without any real direction and point. Kevin Owens storyline was chance for Chris's career resurgence, but Vince managed to mess it up and send Jericho out of WWE for good. His run in NJPW was fun, with great matches against Kenny and Naito. He had major role in establishing AEW, and his run with Inner Circle was pretty good. Feud with MJF is point in time where his career starts going down the hill. People started falling into Jericho Vortex and it takes his rivals months and years to get popular again. He is so much slower and sloppier in the ring, his promos don't have same excitement and fire as before and such a shell of former world champion doesn't really benefit anyone. This Learning Tree thing was fun in the beginning, but it turned out to be same old shit and as of now, there is no reason to pay attention to anything that Jericho does."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MEDaminewrote on 07.01.2025:[5.0] "He's nowadays the hardest wrestler to rate, his present stuff has almost completely ruined his career and legacy, he used to be one of the best, someone who will produce great moments in any role he's given, he had the skills, both ring skills and mic skills, and was a great character worker, and of course, he was incredibly charismatic, and he was so creative, and was always entertaining to watch, but now he's just a shell of his former self, whether it's his matches, promos or backstage segments, he just produces some of the worst stuff in wrestling currently, he should just retire atp"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Ozwernwrote on 05.01.2025:[5.0] "Really hard to rate him now considering his past self and current self. He's been a legend for decades, getting over and staying over in multiple companies in different eras. Even in the first couple of years in AEW, he was very good but things turned sour in the last couple of years. His in-ring performances have gotten really bad and the worst part of it all is that even if he didn't deliver in the ring, he'd always have great promos and character work but that creative spark seems to have gone missing. I think rating him as average would probably be the fairest."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rosyawrote on 04.01.2025:[9.0] "It seems Chris Jericho has become a victim of mass hate, where one started and others followed. To underestimate the rating of a man who at 54 years old gives his all to wrestling as if it were the last time is a crime. Chris Jericho made a huge contribution to both WWE and AEW, for which he deserves a huge thank you! Not a perfect wrestler, but great and unique. The best in the world at what he does, keep it up!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: IKEisOnlinewrote on 02.01.2025:[5.0] "Chris Jericho has been a major player in almost every promotion he's worked for, producing some all time moments in the process. Once a performer guaranteed to elevate any program he was apart of, Jericho has gradually devolved into a parasite who, consciously or not, leeches off younger talent to maintain his status within AEW. The problem with Jericho isn't that he never provided any value, but that he has long overstayed his welcome. He is consistently the worst part of every show he appears on and the audience reaction reflects this with every new segment. At this point, you just hope Jericho doesn't stick around long enough to erode whatever remains of his once ironclad reputation."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: daichiwrote on 24.12.2024:[0.0] "As a newer fan I thought it was unfair to rate Jericho, having not seen his full career. But there is not a single current wrestler I hate having on my screen more than Chris Jericho. He is 54 years old, clearly at an age he should not be wrestling weekly. He is also consistently stinking up matches, winning titles he doesn't deserve, burying younger talent and ruining every wrestler that dares join his faction. Just so many bad tag team matches and worst match of the year contenders are his fault (the Mistico and Cardona matches being two examples). Recently, he even injured a returning Bandido because of how terrible he is. AEW and the wrestling community as a whole would be so much better without Jericho. For the love of god and everything the is holy, please do pro wrestling a favor and retire."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: theacmoneywrote on 23.12.2024:[5.0] "Chris Jericho has been one of the best ever in terms of the ability to constantly reinvent himself, but he's always been an unconvincing face (I still have nightmares of forcing the crowd to chant "tooty frooty booty" at The New Day) and his phoning it in after signing with AEW has been a damning career downturn. Had he gone out on top with WWE, this rating is higher, but we have to look at his entire body of work - and we've been looking at *a lot* of his body recently, given how much weight he's put on. (Sounds like he's been eating a lot of delicious Omaha Steaks, which make a great Father's Day present! ) His out-of-ring life has been questionable as well. Looking back, I can't think of anyone whose wrestling career was better for having feuded with Chris Jericho."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SadDorowrote on 23.12.2024:[6.0] "Chris Jericho has had flashes of greatness throughout his career but never for more than 3 years at a time. Jericho has mostly benefitted from working with better wrestlers, better talkers and performers simply too over to not produce something great with."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GonzoAppreciatorwrote on 20.12.2024:[9.0] "One of the best to ever do it. He always delivers in between the ropes and he has more than proven himself as one of the best talkers ever by cutting classic promos across multiple decades in multiple companies. He was an integral part in getting AEW up and running and has used his position as a legend on the roster to put over younger wrestlers like Darby, MJF, and Orange Cassidy. His ladder match against Shawn is easily in my top three wrestling matches of all time. The last year or so in AEW has been pretty spotty but Jericho still has it in him to pull out a decent match/segment every now and then."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MichaelB137182wrote on 08.12.2024:[0.0] "I mean leave it up to Tony Khan to destroy Chris Jericho and his whole legacy. Use to be the guy who was known to reinvent his character, never leaving fans not entertained, putting up classics in the ring along with some of the most iconic promos ever, and always putting new talent over taking them from a prospect and turning them into main eventers. A legend in the game. Now.. basically Goldberg in his final run in WWE but actually worse. Horrible promos, horrible matches, horrible presentation, horrible look. If a Jericho match gets booked I sigh. Going over against people he shouldnt, having the worst promo segments in recent memory. Looks horrible, has horrible matches, yet still he is almost a weekly feature, involved in all pay per views and yeah just horrible. Sad to see the decline but at this rate Jericho and his legacy is in serious danger. Tony please, we all know you are a cagematch mark. Read this and let Jericho retire. Dont ruin his legacy aswell."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: wrestlingswiftiewrote on 04.12.2024:[8.0] "When Jericho is at his best, he's the most watchable guy on television. But when he's at his worst... You get someone who internally drains you just by watching them. Even though I've knocked off a couple of points because of some portions in his career (most notably his current 2023-24 AEW run), I won't let that diminish his high points."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: devourblastwrote on 01.12.2024:[10.0] "I understand a lot of his work in AEW can be viewed as divisive and there's certainly some things myself I do not enjoy. With that said, if this is meant to be a rating of a wrestler as a whole, I think a 10 is still warranted. For doing as much as he has for as long as he has and being a true master of innovation, he should be regarded as one of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AceHagannwrote on 26.11.2024:[6.0] "From Jericho's early years as a wrestler, to his last WWE run, it was clear that the man was a great worker. Great both in and out of the ring. That said, his years on AEW have soured my opinion of him. So my rating balances the former and the latter."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ItsAllAWorkAnywaywrote on 14.11.2024:[9.0] "Once upon a time, I was a Jerichoholic. For if I wasn't watching the Ayatollah of Rock N' Rolla on Monday Night Jericho, I was watching The Best In The World In This Business on Raw Is Jericho. And I would give my friends the gift of Jericho and tell them "Drink it in, man! " because if they didn't, they would be told to please shut the hell up as I remind them they just made the list for being a stupid idiot. Yet without provocation, they enjoyed Jericho like they enjoyed "a little bit of the bubbly" because anyone who has seen Le Champion, The Demo God, has never.... EEEEver been the same a-gain! But then I joined Jerichoholics Anonymous and realized he's a solid "9" and that criticisms around his latter-day booking are not unwarranted."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DoubleCountoutwrote on 05.11.2024:[0.0] "please retire. a pathetic, delusional, and disgusting hack of a wrestler that would be doing everyone in this industry a massive favor if he were to retire and go away forever. instead, chooses to stick around and waste everyone's time with awful matches and lame meta gimmicks about his TV time. truly so shameful and embarrassing to watch it play out over the course of the last year or so, both for him and the promotion he is employed by. just chipping away at his legacy more and more with every dipshit TV appearance and dreadful match. just flat out too stupid to realize how worthless he is as a performer at this point, zero ability to be objective, no self-awareness whatsoever. whatever respect I had left for him has gone out the front door a very long time ago and is never coming back. cannot wait until he is finally gone for good. please retire."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Conquistador37wrote on 21.10.2024:[10.0] "EDIT/Clarification: This review only counts his in ring career up to 2004ish, although I am vaguely familiar with his return where he had short hair and trunks... so please understand I am discounting approximately 20 years of his material! Anyway, here was the original review totally unchanged: It was only around a month or so while he was in WCW that I said to myself (and others) "this guy is going to be THE guy". I had no idea how correct I actually was. I knew he'd be tippy top level, but I didn't know he would reach god/goat tier status. Instead of a career overview like I usually do: Chris Jericho is one of the most important figures in wrestling history. An unrivaled ability to reinvent himself, I think we can all agree no one has ever done that better. The best mic skills in a post Bill Eadie/Jim Cornette wrestling world, in my estimation topping The Rock with relative ease. An ability to elevate entire companies and ah hell, he's good looking too! Just gotta work on those politics... a solid 10. (More edits; I mentioned work on the politics. He's an election denier, I bet he believes other maga nonsense (that I don't want to even know about) as well, such a shame...)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Its Clobbering Timewrote on 18.10.2024:[10.0] "Chris Jericho is an perfect wrestler. Y2J has no flaws in his game. He has been a top guy in every promotion he's been in. Jericho has amazing mic skills and has some of the best promos of all time. He's also really good in the ring and has had amazing matches. He is one of the best heels of all time, he knows how to get people under his skin like nobody else does. But Jericho's best attribute is his ability to reinvent himself, his character work is the best of all time. From the lionheart, to Y2J, to the best in the world at what i do, to you just made the list. Their is nobody better at changing their character then Y2J. His accolades are also up there with the best he has won championships in WCW, WWE, AEW, ECW, ROH, NJPW & CMLL. There is no denying that his impact on the business. Love him or hate him there will never be another Chris Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NoaHS106wrote on 16.10.2024:[9.0] "Auch wenn er Aktuell nicht mehr der Painmaker oder der Promo Gott von einst ist, ist er jedoch für mich einer der größten aller Zeiten. Ich hoffe er findet wieder zu altem Glanz mit einem richtigem Gimmick, nicht wie das LearningThree Gimmick."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JackBurtonsTruckwrote on 14.10.2024:[9.0] "I am only taking into consideration Jericho from his early days until his performance began to decline. I dont feel I need to consider someones post prime work and allow it to taint his rating. Jericho was the standout for me in Nitro. His segments were funny, full of charisma and not something to skip. His in ring performance was captivating. He is one of the few wrestlers other than Kurt Angle I genuinely found hilarious when they were being funny. I find myself rewatching his matches and segments more than any other wrestlers."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Nolan Greenwrote on 30.09.2024:[7.0] "I wish I could only rank him from the beginning of his career to 2017. He was a great wrestler that was extremely underused in almost every promotion. But then came WWE and he achieved superstar status. He was great against everyone and his reinventions were great. But then we get to AEW. Becoming the first AEW Champion, forcing Cody Rhodes to never win the title, The Painmaker, The Jericho Apprecation Society, The stupid matches he's constantly in, The Kylie Rea allegations, The feud with Eddie Kingston, The Adam Cole match with Sabu as... whatever he was, WTF."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MooGatiwrote on 29.09.2024:[10.0] "The master of reinventing himself to say relevant and interesting. Admittedly, he's having a bit of trouble with that lately, but a few months off and a refresh will show everyone just how much they miss him when he's gone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RaysBruwrote on 26.09.2024:[6.0] "An all time great, he's just past his prime and dragging it out. He frequently tries to reinvent himself with new alter egos and gimmicks, but it's not hitting the same as it once did, and most of his recent ideas haven't worked out so well. It's admirable that he's focused on elevating young talent at this stage of his career. A fantastic worker, great promo and one of the most influential wrestlers ever, he's always been slightly overrated and keeps hurting his own legacy."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ChadCashwrote on 18.09.2024:"Jericho in his prime was one of the best in the world. There might have even been times when he was not being used to the best of his abilities. The issue now is that Jericho has outstayed his welcome and is at risk of tarnishing his legacy if he has not done so already. I dont think he has shown any value since his Cody feud, and by all reports still has a LONG time to go on his AEW contract. It is a shame because up until then Jericho was incredible."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: sKiaWeVwrote on 14.09.2024:[9.0] "Chris Jericho currently has a similar vibe to Undertaker; unquestionably one of the greatest of all time... but jeez, they should've retired years ago! Jericho of the past was incredible in the ring, on the mic and creative enough to re-invent himself whenever his character got stale, currently, he possesses non of those qualities."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SCMIV440wrote on 12.09.2024:[8.0] "Rating Jericho today is quite difficult. If you were to ask me where he landed in 2020 I legitimately might've said he was a top 20 maybe 15 guy of all time due to his constant re-inventions, pulse on what's popular, and a pretty good match catalogue. He's talented enough to have been successful in 4 different decades so much so that he's been world champion multiple times for multiple different companies across 3 of those 4 decades. I am sure that there is a list of all the guys who have also achieved the same thing but I'd bet that the list is short. But if you asked me to look at his career from 2024 to today I'd say this he's desperate, creatively devoid, out of shape, and trying to cling to younger talent because then that keeps him on TV. He's gripping to death on something that's already slipped his grasp. It's killed his case for any top 30 in my mind. I can't recall a wrestler falling off the metaphorical cliff this bad on so many different fronts. It kind of makes me sad that a non wrestling fan could tune into Dynamite would be baffled at what they were watching. However, I'd pay to be them because then at least I wouldn't know that Jericho is actively be bastardizing his storied career."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Icekommanderwrote on 09.09.2024:[6.0] "Rating Jericho is a difficult matter -- the vast breadth of his career means that as time has gone on the forgettable matches and moments have largely been forgotten while the great matches and moments have continued to live on. Given just how long he has had to compile career highlights I could hardly argue with someone who said Jericho is one of their top five wrestlers or even their absolute favorite. Having said that, we are witnessing him getting passed by younger wrestlers in real time. And that unfortunate truth has left him overexposed, buoyed by the drawing power of name recognition but unable to deliver on the TV and PPV time he has been given, and at this point not even really able to given talent a rub by taking a loss. He still isn't bad, but from a wrestling standpoint should no longer be near the top of the card or leading factions. After retirement I may revisit this rating and take the longer view of his career, but for now I cannot rate him that highly."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jsbortswrote on 08.09.2024:[9.0] "Chris Jericho is one of the best wrestling minds North America has ever had, and always was a pretty darn good wrestler. He's one of the best of all time sheerly for his ability to consistently reinvent himself with new characters, and translating that to in-ring work really well. He's had some incredible feuds, incredible moments, but sadly his physical peak was at a time when in-ring work was at its lowest value of all time, preventing him from probably realizing a lot of the greatest in-ring work that he was capable of in his career. But the guy has had memorable runs in 4 different major wrestling companies, which few people can say."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 12psiwrote on 27.08.2024:[10.0] "Chris Jericho is the greatest heel of my lifetime, providing consistently creative, unique, and dumb-as-hell bits that have wild shelf life to them. His in-ring work was fantastic for the vast majority of his career, putting on spectacular, main-event-worthy matches across promotions and continents, and even as his physical ability has dwindled in later years, he has more than made up for it with his gimmick, psychological, and narrative-driven work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Nudlewrote on 26.08.2024:[6.0] "It pains me to give Jericho a 6, it really does, but he's been declining since around 2010, and he's been downright washed since 2018, and seemingly refusing to hang up the boots while he steadily gets worse in every single department. If I was rating him by the end of 2010, he'd probably be a 9, shoot maybe even a 10, but it's 14 years later, and he's downright terrible now. Horrible promos, matches, image (both public and kayfabe). Long gone are the days of him knowing when it's time to go away and re-invent himself. I'm not sure why he insists on sticking around now. He adds nothing to the product, in-fact, he actively makes it worse."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CicconeYouthwrote on 21.08.2024:[10.0] "So sad to see how people are rating him in 2024 because of his late AEW work... By my terms, best wrestler in the history of the business. He shined everywhere he went, Mexico, Japan, WWE, AEW, WCW... you can not see one single flaw in his work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Davey-Bwrote on 16.08.2024:[9.0] "Definitiv einer der besten Wrestler aller Zeiten. Kaum einer hatte eine so lange Karriere, mit so viel facettenreichen Storys und Gimmicks, die er immer einzigartig umsetzte. Im Ring immer zu haben für einen absoluten Banger von einem Match. Leider hat er aber seine besten Zeiten mehr als hinter sich und ich würde mir wünschen, dass er entweder die Karriere langsam an den Nagel hängt oder nur noch als Manager fungiert. Da könnte er sich sogar nochmals neu erfinden. Ingesamt muss man aber so oder so anerkennen, welche grandiose Arbeit Jericho in seine Karriere im Wrestling geleistet hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Srckingwrote on 07.08.2024:[10.0] "One of the greatest of all time. Forget the allegations as they are not proven. The last few years he hasn't been good but overall he is a stellar performer and a legend of pro wrestling. Who would've thought that Leonhart would have such a great career. I actually enjoy his learning tree gimmick. I think is hilarious. He just would have to prove that he is still good in the ring though. Regardless, 10 points."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DEADLOCK66wrote on 05.08.2024:[8.0] "Jericho historically will be looked upon favorably. He is extremely talented in the ring and is one of the best heels in wrestling history. Plus his heel run that began when he turned on Shawn Michaels around 2008 was simply a masterpiece. His comebacks have always started strong and found a way to become a relevant threat in modern wrestling. He has been adaptable in every generation of wrestling. His current gimmick is the least appreciated part of his career, and I agree. However, that says a lot for a wrestler with such a solid, storied pedigree. I can't get into who he is as a person. Many different things are speculated, which doesn't interest me right now. As a wrestler, I think a 9 in history is fitting, but depending on how his current and most likely final run ends, I think it will falter his memory because someone's finish is what people remember about you. Maybe forever underappreciated, but any higher feels disrespectful to my opinions and standards, which may be too high."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KobashiChopMewrote on 03.08.2024:[6.0] "Jericho has not been good for a long time. I've said for a long time that his last good year was 2017, and I firmly stand by this belief. He did more harm than good for a lot of the guys in AEW when he brought them into his faction. The JAS hurt Garcia's career for so long, and he's finally just now starting to get back on track. Proud N Powerful are another example of people who were hurt more than profited from their association with current day Jericho. This run with the FTW championship is abysmal. That said, his overall body of work is so good if you take out his run post 2017 that it would be an insult to rate him any lower than a 6."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Chosen Onewrote on 02.08.2024:[10.0] "Auch wenn es nun endlich soweit gekommen ist, dass die Fans gegen ihn geturnt sind, wird Y2J für mich immer eine 10 bleiben. In WCW fing er als ein solider Face Cruiserweight an - mit einem guten Moveset, guten Look, aber noch ohne viel Charakter... Bis er den Heel Turn gemacht hat. Sein Heel Run in WCW ist und wird immer legendär bleiben. Sein Debüt in der WWF ist meiner Meinung nach auch immer noch eines der absolut besten und er war sowieso ein wichtiger Bestandteil der Attitude Era. Sein Höhepunkt war für mich sein 2008 Heel Run mit der Rivalität mit Shawn Michaels. Da trägt der Rockstar auf einmal Anzug und er sieht auch noch gut aus! Jericho hat sehr lange sehr gut geschafft, immer frisch und relevant zu bleiben. Er ist DER Wrestler, von dem jeder Neueinsteiger eine dicke Schneibe abschneiden sollte. Look, Moveset, Charakter, Mic Skills... In jeder Hinsicht ein brillianter Wrestler. Der Mann wurde für dieses Business geboren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Enchantiumwrote on 27.07.2024:[5.0] "Chris Jericho is a very legacy-based name that has been around all over the world, competing in different promotions and winning world titles, and will be regarded as a legend. I don't want to be harsh with this rating, but his current year has been one of the worst that I have seen from a wrestler. The guy is 53 years old; he shouldn't be wrestling much anymore. He should have probably hung up the boots a few years ago. Most of his matches are really awful, with the occasional rare one that seems to do well, but I think the past few years have tainted his career really badly. So this might come across as slightly rude, but for his all-time career, he deserves a 9, but for recency, it has to be a 2."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DENDYwrote on 27.07.2024:[7.0] "An often good but rarely great worker, Jericho has always been very overrated in my opinion and while he has had a solid and lengthy career, he is far from the upper echelons of workers across wrestling history. His reinventions are shallow, his promo skill is inconsistent and can too often rely solely on tropes, and as mentioned his in ring work is just not on the level of many who are lumped in the same category as Jericho often. He has had his highs of the mid to late 2000s, and his lows of his early work and his current run, overall has given a lot to the industry over a long period which gains him credit. Not a personal favourite of mine by any means."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bongowrote on 27.07.2024:[4.0] "Jericho's overall career needs no introduction, but he's become unbearable recently. Completely unwatchable and an instant skip whenever his music hits. He hasn't had new material in years, his matches suck and he takes away like 20 minutes a week from people that could use it. Total waste of time and opportunities. It's gotten to the point where I don't even care if he leaves for a long time and comes back for some absence makes the heart grow fonder trick and if he retired tomorrow, I'd probably breathe a sigh of relief."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Willie 19200wrote on 24.07.2024:[4.0] "The earlier years of Chris Jericho was really good and entertaining in ring and mic work, but since we're going off his overall career, we have to include his recent stuff. It's clear that he's been out of shape and lacks all of the great in ring moves he used to do, not to mention he relies on younger talent to stay relevant. His promo however, is still very entertaining and sometimes enjoyable, but sometimes it just runs real dry. His newer stuff with FTW title is just terrible, he barley puts over any stars and now he's just impossible to watch"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: XNoWayKemoSabeXwrote on 24.07.2024:[8.0] "One of the greatest to ever do it! I've been watching this man work since I was a wee lad and I can vividly remember his WWF debut with the Y2J gimmick. Since then I've seen him do it all. He's had some amazing gimmicks, but he's also had some not-so-great ones, but the fact that he's all in on whatever gimmick he's rolling with is a true testament to his experience and dedication to the business."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: OldSchoolFan3098wrote on 23.07.2024:[8.0] "Chris Jericho is undoubtedly one of the all-time greats in professional wrestling. His career spans multiple decades and promotions, showcasing his versatility and adaptability. From his early days in WCW and ECW to becoming a cornerstone in WWE and later making waves in AEW, Jericho has consistently reinvented himself. Whether as Y2J, the List-maker, or the Painmaker, he has always found a way to stay relevant and keep fans engaged. His mic skills are legendary, capable of generating heat or laughter with just a few words, and his in-ring work is equally impressive, blending high-flying maneuvers with technical prowess. One of Jericho's greatest strengths is his ability to evolve. Unlike many wrestlers who rely on a single persona throughout their careers, Jericho has constantly refreshed his character, making him a mainstay in an industry that can be fickle. His ability to tell a story both in and out of the ring is unparalleled, and his matches often have a level of psychology and nuance that elevate them beyond mere athletic contests. Jericho's charisma and showmanship have also made him a crossover star, with successful forays into music, acting, and podcasting, further cementing his status as a multi-talented entertainer. However, no performer is without their weaknesses. At times, Jericho's constant reinvention can feel like a double-edged sword. Some fans argue that his frequent character changes can be jarring and make it hard to invest fully in one persona before he switches to another. Additionally, while his mic skills are generally top-notch, there have been moments where his promos have missed the mark, coming off as forced or out of touch. In-ring, as Jericho has aged, he's naturally slowed down, and some of his later matches lack the same pace and intensity that defined his earlier work. Nonetheless, these minor flaws do little to tarnish the legacy of a performer who has given so much to the world of wrestling."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: woolyshamblerwrote on 21.07.2024:[4.0] "score goes up because jericho vs benoit at royal rumble 2001 is my favorite ladder match of all time, and for the occasional high points like JeriKO, the orange cassidy feud during the pandemic, and the MJF steak dinner. score goes down because of his long, agonizingly slow decline in nearly every aspect of pro wrestling since around 2003, his biggest strength is comedy and even that stuff is hit and miss (and in the WWF it was always awful). allegedly in AEW to put people over, jericho only seems to do the clean job to people who are not going on to the main event (orange, HOOK, will hobbs...) and so won't be a threat to him, so it's silly to try to give him credit for any of that stuff."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Paul04wrote on 20.07.2024:[3.0] "I respect like 80% of his career, but this last 3 years had been so bad, with the last year just being terrible, The Learning Tree is so so bad, that doesn't want me to watch AEW Live, he hasn't put anyone over, and every storyline of feud he is in goes for way too long, he has been having the worst matches on every show for like a year now, I can't say anything good about him right now, he thinks this gimmick being bad on purpose is funny, but it isn't it just BAD, I will always respect his legacy and his career but he may need to take some vacations so we can all disintoxicate from one of the worst times and gimmick of his whole career, because right now AEW is almost unwatchable to me, since this new gimmick started and haven't watched AEW Live because I can't skip his segments"
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Open The Vaultwrote on 14.07.2024:[5.0] "Chris Jericho is an absolutely legendary performer who will go down as one of the best professional wrestlers in history when he eventually decides to retire. He's been all over the world! WWF/E, WCW, FMW, WAR, CMLL, ECW, AAA, NJPW, ROH, AEW, DDT & PWG. He's done this and done that! He's held mid card titles, world titles, tag titles, you can name it and he's done it. Amazing segments. Amazing matches, Amazing stories. He's an easy 10 when he hangs it up. But it's 2024 and he's still wrestling so we rate based on his current run. He's 53 years old and has obviously slowed down since then. A broken down body which can't perform like it used to. He's now the Learning Tree and has Big Bill and Bryan Keith, while funny it feels forced and it ends up being hard to watch and everytime AEW tries to get Jericho over it just doesn't work. He needs time away."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Johanwrote on 04.07.2024:[10.0] "let's be real, he is a 30 year veteran with great careers and matches all accross the world and some legendary promos and programs, there is no way he is not a 10 even if his current work isn't pleasing, same thing applies to Ric Flair/Randy Savage and such wrestlers who had some terrible late years as well, or Shawn Michaels who had some terrible early years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rassle Fanwrote on 01.07.2024:[8.0] "Rating the totality of his career still puts him in the upper echelon of wrestling. However, he's already in Flair and Undertaker company of hanging on way past his expiration date. If he keeps this up for another few years it's going to ruin his legacy even more."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Aisha2024wrote on 01.07.2024:"One of the best wrestlers in the business. Great wrestling skills, very safe with his opponents and thoughtful toward fans"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 2pt0EcoBoostFusionwrote on 27.06.2024:[8.0] "I usually don't like using the word "legend", but I feel as though I can use it for Chris Jericho since he obviously is a legend. Jericho's work over the last 3 decades in wrestling has been phenomenal, being one of the most influential in his class, cutting great promos always as well as being super charismatic and being great in every company he's been in. Jericho could also play a very good face and heel during his wrestling career. His WWE debut will go down in history as one of the greatest and his career there even more so. He was very important to the beginning of AEW and his run there was going very well up until the last several months of recently, where he's been hard to watch and has been just sucking up TV time from more deserving wrestlers on the roster. Don't get me wrong, Jericho is one of the greatest to ever step in the ring, but his recent AEW stuff has been just not good whatsoever and I believe it's time he becomes more of a part-timer since he wouldn't have this much Go-Away heat if that were the case."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Chris777wrote on 14.06.2024:[6.0] "overrated. Haven't been good for almost 15 years, riding the nostalgia train as long as he possible could, ruining talents and shows with his ego and poor ideas. Even his older stuff is riddled with people wholeheartedly believe that he is such as good person and underrated talent. Nope, at no point is he world champion material, cant carry a show and never will, doesn't matter how many time he "reinvented" himself."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wanglerwrote on 09.06.2024:[8.0] "The gimmicks are revamped every few months, none being particularly effective and even the old classics like Lionheart aren't doing it any more. He had three separate segments on this week's Dynamite. Still charismatic but we've heard it all before. Was genuinely amusing playing a half wit in WCW. Early on Fall Brawl 98 he interrupts Mean Gene, calling him Gene Mean, announces that Goldberg has finally relented and agreed to a title match. He then goes on a Spinal Tap detour around the back via the car park and dining room. Once out, his pyros fail and out comes "Goldberg" all 5'6 of him who he beats up on for three minutes before proclaiming himself champion. No question Y2J was a great persona 25 years ago, headlining WM 18, the last ever WCW World Heavyweight Champion and being the first guy the WWE unified the titles on. WCW / WWE Y2J was a minimum 9 and a tremendous all rounder, sadly this over indulged, inverted pecs and increasingly mediocre in ring incarnation is about a 5 and fast forward material. The Ayatollah of Rock 'n' Rolla doesn't need to carry on diminishing his once fine legacy."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Stalks14wrote on 04.06.2024:[5.0] "An all time great. His work throughout the years continues to inspire new generations and arguably one of the greatest promos of all time. But like many other's, has proven to be unable to figure out when its time to let go. If he's still having fun and loving it, good for him. But as a fan its difficult to watch a 53 year old man attach himself to anything relevant and slowly kill it though a 6 month angle with no heat or interest after the first week, which he either ultimately wins, or makes the victor look worse for even engaging with him in the first place. Ultimately making you wonder if he should've just retired after he lost the AEW championship in 2020. 9 for everything prior to 2020. 5 for everything after."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DestructiveDanyahwrote on 29.05.2024:[5.0] "Jericho before the last 3 years would be a solid 8 as I never bought the GOAT chat but he was always great in the ring, a great promo and someone who can easily move from the midcard to The main event without ever being a top guy. However, the last 3 years have been some of the worst character work I have seen from someone who is regularly used so he land on a flat 5. Im Not really sure where he goes from here other than going away for a while or going part time but hes never felt colder while at the same time having go away heat with the fans"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Hazelyzewrote on 27.05.2024:[4.0] "Were it not for the last few years, Jericho would be a solid 7-8/10 here. But lately he has been not great, and I refuse to give any airtime to a Jericho segment after what came out before Worlds End. The "Learning Tree" is not good. Sacrificing guys like Hook is a very disappointing way for him to end his career. Chris Jericho is the epitome of the "you can die a hero or live long enough to see yourself become the villain" in all the worst ways at this point. Get this pest off of our TV screens, PLEASE"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: doobwrldwrote on 26.05.2024:[7.0] "I find it strange that in 2024, I am giving Jericho this rating, but so it goes. Jericho as a whole, is an all-timer. There is no denying that. Since 2021 unfortunately, Jericho has almost impressively ruined his reputation amongst one of the greatest professional wrestlers of all-time. To be fair in retrospect, in a few years once he is retired, he will still be an all-timer. Jerichos body of work from when he exponentially rose to stardom in 1997 up until 2019, will forever be legendary. No other wrestler has reinvented themselves and adapted to change within their environment like Jericho has. His 2008 run as a heel is in my opinion, the greatest heel run from a professional wrestler ever. He has had substantially admirable and consistent matches with some of the best talent in any promotion he has worked in. So why only a 7? I do not exaggerate when I say that a flip switched in 2021. Jericho has fallen out of touch, and it is awfully depressing to witness such a legend who has pretty much always been endeared by the crowd, turn into such a solipsistic, conceited, ignorant, and overall enigmatic wrestler. Also add on the fact that he has been problematic, and apparently abusive to talents lesser on the totem pole of professional wrestling, and thats just the cherry on top. I respect, and even admire Jerichos work for the first 30 years of his career. However, there is enough of the bad in the last three years, that dissolve his overall impact and contributions to the business. The fans are unfortunately right. Please retire."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: swissarmybazookawrote on 14.05.2024:[6.0] "A few years ago Chris Jericho was beloved by almost every wrestling fan, however these last few years have been quite damaging. Never-ending boring feud after never-ending boring feud, taking a big tv spot from guys who deserve it more. WCW and WWE Jericho had dozens of fantastic matches and feuds this also carried over into the beginning of AEW. However, once the pandemic started felt like Jericho lost his marbles and was probably given too much creative freedom. His age is also a factor while he still knows how to pull of a decent match every time, he's slowed down tremendously leading him to lean on the worst version of his character often."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: danzitorockwrote on 13.05.2024:[9.0] "Chris Jericho is a legend, he's great in the ring, and one of the best talkers of all time, the guy was over in every major company around the world, and has undeniably a special vision for pro-wrestling, it's always great to hear him talking about the business, he's very clever, and that's why his charm is the reinvention, Jericho worked many gimmicks during his career, and made pretty much all of them work, he's always trying something new and this is why he's so iconic. He has a lot of importance, I think sometimes he overestimates a little his value, he's a prideful person, but it's stupid to say he wasn't important or a draw for AEW in the first years, he was an extremely valuable asset. Working a story looks easy for Jericho, he's naturally talented, he was born to be in the wrestling business."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: StardomIconwrote on 12.05.2024:[10.0] "Chris Jericho is an all time great wrestler and even if I based him solely off his three year run in WCW, I would still give him a rating of 10. I'm mainly going to review his late 90s/early 2000s run using Bret Hart's three categories for rating wrestlers: look, promo, and in-ring ability. It's rare for a wrestler to check all three boxes, but Jericho did just that. To begin, Jericho totally had the look in WCW despite being smaller in stature than many main eventers of the time. He was in excellent shape and had cool ring gear, complimented by shin guards that he earned while wrestling in Japan. He wore ridiculously effeminate entrance attire that only fueled the heat he held while working as a heel. His WCW Monday Jericho shirt is still my favorite wrestling shirt of all time. As far as promo skills go, Jericho was unmatched in his ability to draw heat. He often made ridiculous claims like being the man of 1004 holds, but my favorite moments were when he mispronounced names. Some of my favorites were "Gene Mean" and "Ron Mysterio". I always popped for his "never, e-e-e-ever" lines as well. No matter who was on Raw, I made sure to keep the channel on TNT whenever Chris Jericho was on screen in his WCW days. His comedy skits with Rufus and Greenberg were must-watch wrestling. Lastly, his in-ring ability was incredible. There's too many matches to list, but one of my favorite matches of his was against Raven at Halloween Havoc 1998. It was a short match with no build up, but the crowd was hot and Jericho had a solid win. Of course, his matches with everyone from Malenko to Eddie Guerrero to Chris Benoit and so on were all top tier wrestling, even by today's standards. His Lionsault was a beautiful move, while the Liontamer was a brutal looking submission. He had a good combination of kicks and high flying moves that he could mix in as well. And who could forget that cocky cover attempt that drove the announcers mad? Jericho was without question, highly underutilized by WCW, but I believe it was his most entertaining work. I popped like a madman when he debuted in WWE and was glad to see him ascend to the main event, but he never truly resonated with me as much as he did in WCW. I believe any wrestler's match quality will suffer a bit working the sports entertainment style, but also, he started to become more catch-phrase reliant in WWE and not as creative as he was in WCW. Regardless, Jericho caused a myriad of emotion in wrestling audiences around the globe. At times they were annoyed and yelled him, while other times they were doubled over with laughter. They screamed when the Y2J countdown clock finally hit zero and cried with happiness when he was finally crowned world champion. Taking all of this into account is what makes Chris Jericho one of the greatest wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MarkMcMarkington2wrote on 02.05.2024:[7.0] "Jericho at WCW, WWE and his early AEW run are amazing. The last few years have been awful though. He is reminding me of Ric Flair in the way hes damaging his legacy. I will always appreciate the Y2J of old but he needs to retire now. No one benefits from working with him."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CommisarRobewrote on 02.05.2024:[8.0] "Most of this review is for his historic work, Jericho's work has for the most part been consistent entertaining and often fresh due to Chris's constant ability to re-invent himself. Jericho as a heel is absolutely excellent and nearly always compelling, additionally his promo work is often of a very high quality as well."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: arrancarwrote on 24.04.2024:[6.0] "Jericho is a through-and-through wrestling legend, and he's done it all absolutely everywhere he's been. In his prime he was one of the best talkers in the game, a skilled technical grappler and high-flyer, and had a tremendous ability to play whatever character he wanted to. Sadly, it all came crumbling down following his loss of the AEW World Championship, which to my eye was the last time he was actually more enjoyable than not. He initially went through an off-putting period as a very try-hard babyface, since he always looked far too self-engrossed in everything he did, whether it was when he dramatically paused to watch the fans sing his entrance song or when he'd make those really lame jokes and one-liners that he clearly thought were far wittier than they actually were. He eventually turned back heel, but we sadly just got Inner Circle 2.0 in the form of the JAS, only with even worse supporting members this time around. His character work had completely stagnated at that point, since he'd just do the same poses, taunts, and heel spots in basically every single match, not to mention he LOVED repeating that week's phrase or even just single word for no real reason. He's since turned back babyface and now heel-leaning tweener, but now he feels even more off-putting with the desperate ways he tries to appeal to the crowds, plus it's aggravating the way he just CONVENIENTLY keeps tying himself to whatever young star is becoming over or already really over at time, then forcing them to have incredibly uninteresting and usually really bad matches with him, whereupon they gain absolutely nothing even by defeating him, especially because he loses so many matches (even if not always cleanly) that on paper a win over him is incredibly devalued. Basically, he just feels pretty comical and totally uninteresting as a character. In-ring-wise, he's now just outright really bad. His physique looks terrible, and even if that plays into his heelish "has-been rockstar" character, it's still jarring to have to take him seriously in that state when he goes up against guys that look like actual fit athletes. His movement in ring now is always really slobbish, and he clearly gasses out quite quickly. In terms of physicality and athleticism he's a sight for very sore eyes, looking pretty weak and very unpolished when required to deliver some would-be 'stiff' strikes or when required to rapidly trade moves and/or counters. Jericho played his role in AEW's initiation as the heel champ and main heel stable leader, though I'd argue he was still a negative there in holding the rest of the Inner Circle back (especially Satana and Ortiz), but now it's definitely time for him to move on to SOMETHING new, because his constant need to "reinvent" himself every few months has become transparent and stale, and any star he works with now is going to automatically look bad because we've seen so many Jericho feuds that they now feel too samey (and they're usually not even remotely interesting) and his plain embarrassing wrestling skills just drag his opponents down with him once they finally wrestle. If only he'd just do the natural "legend who can't wrestle with the younger and more explosive talent anymore but still tries really hard and gets the fans on his side despite coming up short" story, since that's the only believable role Jericho has in him anymore. He's been great in the past, but certainly not any more, and the longer he holds out doing this current act of his the lower I'll have to drop his rating."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TotemKiller1wrote on 17.04.2024:[5.0] "He was good for the most part from 95 to 09, which seems like quite a long peak, but you have some really bad performances along the way there + he did not wrestle for entirety of 06 and only had 8 matches in 07. After the Rey feud he has really fallen off quite a bit and in the last decade or so has been an active detriment to the quality of work in companies he wrestled for. The less his AEW run is talked about the better, but let's just say he might be the worst wrestle in the world right now. Overall a very mixed bag of a wrestler."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bean1985wrote on 11.04.2024:[7.0] "I liked him as a wrestler and as a person, but to be honest I think he is a little overrated; his aura was never dominant, his skills are good but not upper tie, same with mic skills. His best match and feud is probably vs HBK, while for HBK is not even close to be at the top of his. As a human being, as a competitor and a professional, love him"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alons8hasaBrokenBackwrote on 04.04.2024:[4.0] "Few guys have had a downfall like Chris Jericho in the last 2 years. Worse Promos, worse matches, horrible look , horrible storylines. The worst thing that he is doing at the moment is taking momentum during his endless feuds, by just repeating and repeating and taking new stars "Under his wing", leaving them stuck and making them lose their momentum. I was actually inspired to lower my rating because of Hook, this half-feud/half-team is not helping him get on the level of hype when he had the streak, and is relegating him to the MIDCARD. Jericho overall is awesome and one of the best, bit he really needs to retire because no one likes overextended careers. His Overall career is a 9, but his current run is 1 or 2. So 4 points seems enough, but it could be lower if he keeps wrestling as he is doing now"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dntbamarkwrote on 29.03.2024:[9.0] "His run in AEW, the whole CM Punk - Elite ordeal than the Kylie Rae allegations really hurt his legacy for me. Then theres just his general demeanor the last few years and the way he's behaved whilst in the spotlight have really damped my feelings toward Jericho. Up until a few years ago, I really considered Jericho to be foolproof, he could work with guys like Kevin Steen, who could never get over on his own and use his talent to manipulate the fans into getting into getting into someone like Steen. I always considered Jericho to be an upper-card guy who you could slot into the Championship picture, if need be, but in terms of ability, charisma, aura and character-work, there are few better than Chris Jericho. He was a guy who, like Eddie Guerrero and Chris Benoit, was never really taken seriously as a top guy. He had tons of great matches and fueds with Shane Douglas, Perry Saturn and Alex Wright but was creatively stifled by that "glass ceiling" we always hear about in WCW. I'll always remember his WWF debut when he interrupted The Rock on Raw, I had it on tape for the longest time but even his time in WWF didn't start out the hottest. He was a staple of the midcard and worked with guys like Kane, The Rock and Chyna and was able to form tag teams with Benoit and The Rock but he was never really seen as much of a top guy until 2001 when he turned heel and went on that run that resulted in him defeating both The Rock and Steve Austin to unify both the WCW and WWF world titles. Despite successfully retaining the title in matches against both Rock and Austin, the title reign never felt like much of a title reign and I think Jericho agreed with that sentiment in one of his books. He pretty much played third wheel to the fued between Stephanie and Triple H and he lost the belt to Triple H at Wrestlemania 18 in a match that didn't even seem like the main event. From there, he gradually returned to the upper midcard despite doing great work as a heel with some babyface runs mixed in between. Following 2007, he really became a force within the WWE when he turned heel and was able to craft a character that was a completely different take on what you'd expect from a heel Chris Jericho. The run resulted in 2 short but memorable World title runs and a third in 2010 that was soured because he had to drop it to Jack Swagger, who wasn't ready for the role. He had an incredible fued with CM Punk in 2012 that really culminated in a great match-up between the two at Wrestlemania 28. From there, he became an upper-midcard player again until he left the company for New Japan and eventually the newly formed AEW, where he initially did some incredible work as a heel and inaugural AEW Champion. From there, like I said, it feels like Jericho's become kind of a parody of what he used to be. His work isn't what it used to be and his physique shifts from bloated to not-so-bloated, as a whole, I think Jericho is one of the greatest in-ring performers out there. He was never the biggest guy but he had charisma, skill and the smarts to carve out an incredible career that will always stand the test of time to me."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Brutish Dandywrote on 28.03.2024:[7.0] "Chris Jericho is wildly inconsistent. So much so you almost have to rate him on a year-by-year basis. Gonna have to go by averages for this one. His WCW work was bordering on an 8, his early WWF stuff was around a 7, his second WWE run was close to a perfect 10, and pretty much everything he's done from 2012 onwards is a 6 or lower. I think he's a cool dude but he should've put the boots away a decade ago."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dog Stomperwrote on 21.03.2024:"For a long while Jericho was on the pulse of pro-wrestling, and was able to discern what worked and what didn't, using this skill to create an ever-morphing character that rightfully belonged in the main event. Since 2016 however, Jericho has lost touch with pro-wrestling, and become a parody of himself. While his in-ring work has noticeably declined, he's still pretty good, especially at story-telling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: mrwfxtremewrote on 17.03.2024:[7.0] "chris jericho has been a constant in pro wrestling 1st impression i had of him was in wcw he made sure to stand out in a division filled with high flying cruiserweights. his matches with eddie Guerrro and chris benoit. when he made his way to WWE. he can say he had one of the most memorable debuts in pro wrestling history from defeating stone cold and the rock in the same night to reinventing himself often. through the list of jericho. Jerichos legacy is set. his time in aew had been average at best"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TripleCrownwrote on 17.03.2024:[10.0] "All these low ratings are crazy. It's Chris god damn Jericho folks. If you're rating him solely on his AEW run then you really, really need to go back and watch his stuff from WCW, ECW, NJPW (90s) and WWE. He is incredible on the mic, on the same level as The Rock and Steve Austin. Wrestling ability is incredible too, he's not like the modern day wrestlers who can do an incredible array of flips and breathtaking moves, but his lionsault is something to behold and really stood out during the time. There's no disputing that he's at the tail end of his career, if you've come to watch Chris Jericho and expect some kind of 5 star match, you really need to keep yourself in-check because he's in his early 50s. I will say, his comments on social media are incredibly stupid and I do not agree with a lot of what he says, I feel like he absolutely believes his own stuff way too much. But by all accounts that's who he is and who he has always been, so there's no point in wishing he'll change because he won't."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Beneyrieywrote on 10.03.2024:[4.0] "We're rating Jericho on his overall performance, considering both his legacy as one of the best wrestlers of the 21st century and his current state in the modern wrestling landscape. Unfortunately, Chris Jericho's aging process has impacted his abilities, leading him to cling to younger talent in an attempt to maintain relevance. While his mic skills remain sharp, he often relies on gimmicky one-liners for cheap pops during promos. Furthermore, his physical condition in the ring appears to have declined, which is understandable given his age of 50."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Neon Aussiewrote on 07.03.2024:[7.0] "Solid performer, had some real charisma about him in the 1990's. Has never really come across as a believable tough guy though and in the last 5 years his in-ring ability has really diminished. He has become something like a Hulk Hogan 2.0 in some ways, but at least Jericho could actually wrestle a decent match in his youth. The last good match I saw with him was at Wrestle Kingdom against Kenny Omega in 2018, which was a great match but you gotta give a lot of that credit to Kenny. Has costantly reinvented himself over the years, not always for my personal liking."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: emixcxwrote on 04.03.2024:[5.0] "Chris Jericho, once hailed as a wrestling icon, has seen his reputation tarnished in recent years. Allegations of misconduct have surfaced, casting a shadow over his once illustrious career. While Jericho may have been a powerhouse in the ring during his prime, his performances in recent years have been lackluster at best. His matches are plagued with sloppy execution, botched moves, and an overall decline in athleticism. Despite his attempts to remain relevant in the industry, Jericho's wrestling abilities have diminished, leaving fans disappointed and disenchanted. With his legacy overshadowed by controversy and his in-ring skills on a downward spiral, Jericho's glory days seem like a distant memory."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Okaro143wrote on 16.02.2024:[9.0] "Jericho is a true living legend. He has wrestled all over the globe, he found huge success in WWE including main eventing a WrestleMania as the Undisputed Champion of the company. Constantly reinventing himself with dynamic and over the top personas throughout his career, Jericho has won many top level championships in multiple promotions including WWE, NJPW, AEW, etc. Was fundamental in AEW's early sucess and even though he had passed his physical prime, he has consistently put forth many great matches even after crossing 50+ age."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Cleanerwrote on 30.01.2024:[10.0] "Ohne jede Frage einer der ganz großen des Business. Hat sich so oft neu erfunden und ist auch mit über 50 bei AEW noch ein richtiges Asset. Eine solch erfolgreiche Karriere verdient zweifelsohne die Bestnote."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SoaKaswrote on 26.01.2024:[7.0] "Man i don't really know but Chris never really did it for me. Initially I gave him an 8 because of his legendary status and great promo ability but he just annoys me in the current world of wrestling both inside and outside of the ring. Also his wrestling skills matchwise have been pretty mid at best for the most part in the last years."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BruceMarcos524wrote on 13.01.2024:[9.0] "Chris Jericho is no doubt one of the greatest all-around performers in history. Jericho excels whatever promotion he is in; SMW, NJPW, WAR, WCW, WWE, AEW. He is mostly known recently as the guy who reinvents himself from time-to-time to fit in the trend in which he is very good at it. Whichever gimmick he has; Lionheart, Y2J, The Best in the World of What He Does, The Painmaker, The Demo God, The Ocho, he always delivers to the extent. Hell, he even put over the "List", that's how great he is. In terms of promo abilities, he is one of the very best to ever do it and everything he says turns into gold. On WCW, he was the promising young energetic happy-go-lucky that ruled the cruiserweights. On WWE, he became one of the marquee talents and soar his ranks as one of the best. On AEW, he solidified his legacy and became the most important factor of the creation of the product. No question he is very important and contributes a lot in wrestling. Nowadays, he is just a former shell of himself. Sad to think about the state of Jericho nowadays. If he just retires in like 2022, I would give him a full-fledged 10 but since he's tarnishing his own legacy, 9 is my rating. I just hope Jericho will settle himself for good before he gets worse, he just couldn't keep up anymore."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ptomlinson98wrote on 11.01.2024:[1.0] "Needs to go away, killing his in-ring legacy. Risks being tarnished forever if the rumours are true as well. Some of the worst TV segments in modern memory since he has been in AEW, he's done. He has routinely put himself in favourable positions against young or underneath wrestlers who have a bit of momentum and then dragged them through a 3/4/5 month feud where they are as stale as he is by the end of it. His ROH title run was amusing briefly, carried by Bryan Danielson and Claudio Castagnoli and the resulting 4 way match was good. And who hasn't Ospreay gotten a great match out of in the last 3 or 4 years? The way he has halted progress of Sammy Guevara, Darby Allin, Ricky Starks, Action Andretti, Eddie Kingston and so many more is genuinely disgraceful and I cannot believe more hasn't been made of this on here. Had him as a 5/10 last year but with the allegations and refusal to address them as well as his awful output on TV and PPV, he has to drop."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HammertonWaywrote on 11.01.2024:[10.0] "One of the greatest wrestlers of all time that has found a way to keep up with the next generation over and over again. Though age may finally be catching up with him, it does not take away 30 years of classic matches and memorable moments that stand the test of time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: hamstermatchwrote on 03.01.2024:[5.0] "Chris Jericho cant go anymore. Hes too old and his body is broken. Hes charismatic as a heel but absolutely insufferable when hes being sold as a babyface. His feuds go on for way too long. His storylines are incoherent. The Walls of Jericho is the most uncomfortable looking finishing hold for a viewer because its just so plain boring. Dude looks like hes chilling and watching TV or something. Add all his out of kayfabe controversies (him and his wifes politics being a big example) and he cannot believably be in AEW as a top babyface dragging every interesting wrestler into months long storylines that go nowhere and dont make anyone involved look better."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dulonicdaddywrote on 02.01.2024:[4.0] "I used to love Jericho when he was on a roster that played to his assets as a heel ('09 Rey Mysterio was a perfect feud from him, and he was able to carry Shawn Michaels to an interesting storyline) and came across as way cooler than he actually was to a younger me in the early 00's, but a great deal of his stuff has simply been to serve as cannon fodder to bigger talents with hindsight. His wrestling is so ineffective, and his move-set has some atrocious logic. That bulldog is the worst thing ever. His AEW run was funny at first, a bit meme-able, but since then Y2J has spiraled into an out of touch rich white dad telling the same shitty joke when greeting his kid's teenage guests."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CorpusSkiptotelicumwrote on 01.01.2024:[6.0] "Good wrestler that is capable of working with anybody, though to have all his best matches he always had to be working with someone better as he's never been good at elevating worse wrestlers. He is very creative and his promos are usually very good, but sometimes he falls into the same tired tropes and is know do have delivered his fair share of stinkers. Outside the ring, he's an outstanding carny, this new bs with cm punk is the cherry on top. A true master of his craft at that. This Last aew run highlights the best and worst aspects of him; the first few years had some good character work but it got old quick and him being in such terrible shape meant I never got exited to watch him in any matches. This past years though he actually got his shit together somehow and has given very good matches with the likes of Bryan, Mox, Claudio, Eddie and even Ishii. On the creative side though, his endless inner circle and jas feuds have been torment, its always scary watching your favorite wrestler have a segment with him because he might be abducted for a few months."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: greaterdalewrote on 11.12.2023:[10.0] "You know you have some wrestlers that are extremely popular but just coast and milk their gimmick, but Jericho is never satisfied with staying idle. He really knows how to reinvent himself over and over and over, he knows how to invent a million catchphrases to slap on tshirts and make tons of money (My favorite is still the list era, I legit got You just made the list over at my old school with a non wrestling fan friend and we quoted long after Chris Jericho had moved on from it.) We haven't even touched on his in ring work which I don't think I have to tell you he's technical wonder. Sadly though I must touch on the fact that as a person he's pretty shitty. His wife was allegedly at January 6th and he's shown dumb ass right wing tendencies in the past too. He also has been known to throw random people on twitter with genuine criticism to his fan base to harass them. I'm also not a fan on how he gatekeeped Kalisto from expressing love for his former coworker Brodie Lee and then made fun of him for making a spelling mistake (english isn't Kalisto's first language and even if it was making fun of people's spelling is a big ick for me)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Marvelous Joewrote on 30.11.2023:[10.0] "You can't deny his work. He's an egomaniac that finds a way to keep himself relevant, no matter as a heel or babyface. No matter what he do, he's entertaining in the ring. His mic skills, his in-ring work, his character. He is truly the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Silver Shadowwrote on 27.11.2023:"One of the goats of wrestling, had amazing matches with Eddie Guerrero, John Cena, Triple H, The Rock, The Undertaker, Steve Austin, Mick Foley, Shawn Michaels, just to name a few. Jericho was also an amazing promo guy and was good on the mic as well."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] "There's no doubt in my mind that Chris Jericho is one of the greatest of all time, the total package as a professional wrestler. His run in WCW was great, often being one of the best parts of the show, always having good to great matches and even showcasing his promo ability, the highlights of his WCW run being the 1.004 holds promo and the infamous Goldberg "feud, " especially when he had Ralphus as his body guard (R.I.P.). Sadly, WCW didn't see much in the feud due to Goldberg not taking a liking to it, so he ended up going to WWF, in one of the most iconic debuts of all time, a segment that fans still remember to this day. The main highlights of his time in WWF/E are him winning 2 world titles in the same night against The Rock and "Stone Cold" Steve Austin, becoming a 9 time Intercontinental Champion, tag teaming with Big Show, his amazing heel run in 2008 where he feuded with Shawn Michaels, his feud with Rey Mysterio over the Intercontinental Championship, his "List" gimmick along with teaming with Kevin Owens that same year, I could go on, he's had a great career in WWE. He's left WWE countless times, and made similar returns almost everytime, but now he's been outside of WWE since 2018 and has had some great moments like returning in NJPW where he starts feuding with Kenny Omega (that low key birthed AEW), having a good year or two in AEW, etc. despite he's been in some stinker storylines since 2022 with the Jericho Appreciation Society for example. Overall, while Chris Jericho may rub people the wrong way with his current run in AEW, there's no denying his impact on the business and that he was one of the all time best in his prime, one of my personal favorites for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RealMcLovinwrote on 21.11.2023:[8.0] "Immer wieder unfassbar zu sehen, wie gut Jericho in seinem Alter noch performen kann. Am Mic ist er auf einem sehr hohen Level und auch seine in Ring Arbeit ist, trotz seines fortgeschrittenen Alters, immernoch sehr gut und unterhaltsam, vorallem, seitdem er sich wieder richtig in shape gebracht hat. Macht immer wieder Spaß, ihm zuzuschauen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheSuperstarwrote on 17.11.2023:[8.0] "I am only rating him an 8 for his aew run hed be higher otherwise. It was nice to see how he would reinvent his character of the years especially outside of wwe but now he is just attaching himself to the hottest acts and in most cases weighing them down like an anchor e.g. Kenny vs Don Callis feud."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: skyesversionwrote on 30.10.2023:[2.0] "I hate Chris Jericho. There I said it. I don't get the hype at all. Like he's always been mid to me. I don't even consider him a legend to be honest. He doesn't put other talents over (even though people say he does for some reason), he's not as great on the mic or in the ring as people say he is, and he has some of the worst characters in wrestling history. I gave him 2 points for two things: the List of Jericho and the Jericho Appreciation Society. Other than those things he's horrible. Like I don't know why people hype him up so much. He gave Sammy Guevara and Will Ospreay arguably the worst matches of their respective careers. Not to mention that I can't remember the last time he put a younger talent over. Overrated and overhyped. Stop calling him a legend."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Logewrote on 30.10.2023:[10.0] "Chris Jericho is probably the GOAT. Idk its hard but he's definitely up there. My favorite gimmick of his probably has to be his IM A WIZARD gimmick where he throws fireballs at anyone who tries to mess with him. Pretty awesome. The List is also some peak Jericho fodder and while a part of me does miss his old light up vest and Break the Walls down intro with the Y2J countdown, and maybe I do miss his Jericho Film Reel segments, which were sometimes the most entertaining part of Raw, I think he's been doing wonders in his fairly short run with AEW so far and has helped build the promotion as a legitimate company and helped made it more worthy of watching over WWE. Also, Fozzy is just FREAKIN SWEET. Hes just been treated much better in AEW than he was in his later WWE years. My favorite Jericho matches so far in AEW are probably his No Rules match against Nick Gage and his match with Sammy Guevara, Claudio, and Bryan Danielson at Full Gear 2022. As for his much longer WWE run, I thought his stuff with the Rock was fun, his feud with William Regal was fun, and he had good matches with Edge and the Punkster, I also think his Asylum match with Mr. Moxley at Summerslam 2015 was underrated but its been a while since I rewatched it so maybe i'm an idiot. Also he probably should've won against HHH in 2002. Jericho has some of the best character work and most charisma out of any star ive ever seen in wrestling, and he is always fun to watch and can often steal the show. He works great as a face and a heel, and has had countless rewatchable feuds and promos. He's definitely changed wrestling and SPORTS ENTERTAINMENT for the better with the people hes influenced. Also the Cocky Pin is awesome. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: benny5bellyswrote on 29.09.2023:[7.0] "For good or ill, we won't see the likes of Jericho again. From the Thrillseekers in SMW to the programme killer in AEW. I still think the highlight of his career was back in WCW when he was consistently one of the most entertaining characters each week despite how little he got some times. He would be an 8 but his late career in AEW has been an absolute slog and very talented wrestlers get lost in the shuffle and get momentum killed as soon as they are in the Jerichoverse. He is long past the point where he should be a regular, he would work well as he did in WWE when he would work a programme, lose and take a few months off and come back"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ECWCWWEAEWwrote on 22.09.2023:[9.0] "Seriously no one probably could have predicted it but Chris Jericho is going to go down in wrestling history for both unmatched ability to reinvent himself time and time again and literally maybe only second to Undertaker in terms of longevity. That's beyond impressive to me and deserves all the credit even if he's had a few lows in his career he always figures out SOMEHOW to get over just when you thought he was getting stale."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Teebawrote on 21.09.2023:[10.0] "Surely Y2J can't be anything but a 10, yeah sure he doesn't always hit the mark with his gimmicks but his ability to stay relevant for nearly 30 years is nothing short of spectacular. It took him a while to get there, when he one the belts in 2001 no-one took him seriously and he played the 3rd wheel to Triple H and Stephanie. I don't think he truly blossomed as a main event threat until his godlike 2008 run, from there it was pretty much smooth sailing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dysboatwrote on 03.09.2023:"His AEW run has been wildly inconsistent. In the early goings he was involved in good, serious angles and having pretty good matches for someone of his age (his match with Cody at Full Gear 2019 was pretty rad, ) but it seems like his creative instincts left him completely when he dropped the title. Within a few months he went from an excellent feud with Jon Moxley to having a stipulation match against Orange Cassidy which could only be won by dunking the other wrestler in a vat of mimosa."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LGL19wrote on 08.08.2023:[10.0] "Look I'm gonna say that his run in AEW has been terrible, he just doesn't have it in the ring anymore. However I'm not gonna let that discount the rest of his career, he has had an amazing career whether it be in WWE, WCW, or NJPW he has been incredible and an innovator for his in ring style and has always played an amazing heel. He has also always had a good promo."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: juiceisloosewrote on 26.07.2023:[9.0] "Jericho while still being one of the best of all time, has been unwatchable since 2020. I haven't been able to get through any of his matches in AEW as I hate seeing him in the state that he is in. He is not the wrestler that he was -even- 6, 7 years ago and it is becoming unbearable to watch any of the stuff he is involved in. With that being said, the man worked all over the world, is probably one of the few people who has a deep knowledge and experience in the wrestling biz and was so adaptive and open to any changes that he never got stale. In the mic he is tremendous and unmatchable. I enjoyed every aspect of his work prior to 2020 and can say that he never got boring and is overall, one of the best fits for the wrestling business ever. Not giving him 10 because of his AEW stuff. Oh, and appearently he's got a big ego too so that's another doozy. ."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheEnigmatic1wrote on 15.07.2023:[7.0] "I give him 7 points for having some of the best matches and feuds and Segments during his WCW, WWF/E run and for his first year in AEW, But since 2021 late 2020 Jericho Has been downright Unwatchable, He is very proud of his long running feuds with MJF and BCC but in reality they felt like they went on for EVERRRR, His feud with Ricky was stupid, His feud with Eddie Kingston could have been really good but they had one good match then a horrible Barbed Wire everywhere match, He tries too hard and let's his Ego run wild and is trying to wrestle all these different styles when he is a 50 year old man. Loved his Work from 08-2017 But it is truely a shame how far he has gone down in terms of quality."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MDavis2001wrote on 14.07.2023:[9.0] "In 2023 Jericho is best when working with Luchadors, doing matches with hardcore stipulations or doing comedy bits. He certainly deserves props for his illustrious career, but perhaps the 52 year old Jericho should wrap it up sooner rather than later."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NickJammer2221wrote on 09.07.2023:[2.0] "He gets 2 points for the memories of when he was good, which sadly was 6 years ago now. I never liked him in NJPW and since he joined AEW he has been absolutely abysmal. His World title run got more eyes on the product so there is that benefit but since then he has stunk up the place big time with his tiresome one note promos, shoddy in ring work and for failing to elevate anyone he has worked with."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MasteroftheMatchGuide99wrote on 07.07.2023:[10.0] "Still kicking at age 52 and the only man who competed in WCW, ECW, WWF, WWE, and AEW. He also constantly reinvents himself and never fails to be entertaining. No matter what company he was in, he got a lot of love and support as a face and heel. Nowadays, he is a mega-star since people sing his theme "Judas" every time he shows up. No matter what, Jericho will be remembered as a true GOAT and a true legend in all annals of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BigDouglasFadewrote on 06.07.2023:[0.0] "I have to vote as I see it and this year he has been the worst wrestler I have seen. Every segment he is in during AEW takes away from the show and instantly makes it worse, he can't go in the ring anymore and always has the worst match on the card and any program he in instantly ruins their heat and push."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: bigredtalk89wrote on 05.07.2023:[10.0] "Given his longevity, both in the ring and on the mic, how do you not give Jericho a 10? He's been killing it since his WCW days, continually updating his gimmick and in-ring style. Even at 52, he's still more capable than he should be of putting on a banger(I'm giving him the benefit of the doubt with his stinker against Adam Cole)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Exxtrasaucewrote on 05.07.2023:[10.0] "Easy 10. He's one of the best ever in the mic and has several memorable original signature and finisher moves. The guy is a legitimate rock star and can carry a show on his back. Still going at a high level. In my opinion, Jericho is the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PsykoPiratewrote on 05.07.2023:"Jerico? I think that is one of the best ever, and i say that not for all the thing he won but even for all the time he lost or was underused and he keep doing the best. All about Jericho is awesome, the moves, the ring ability, the way he respect the mat and the people behind. And the way he is respected i think by anybody, don't remember anyone that say crap about him. Chris is a real treasure, he was keeped down for too many years and got his time to shine and he still today."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BigDave123wrote on 30.06.2023:[1.0] "Big fan of his from WWE but he has recently become the worst wrestler regularly featured in mainstrem wrestling. Since he lost the AEW title, everything he has been involved in has been garbage with his in ring work falling apart as well as his promos and programs. Should have gone to part time last year, he has become extremely skippable in AEW and his constant reinvention has gotten tiresome and dull."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: John Brandowrote on 30.06.2023:[10.0] "Chris Jericho-über 3 Jahrzehnte ein Top-Star im Wrestling. Überall ein Titelhamster und Garant für Großes. Der Altmeister ist mit seinen über 50 bei AEW immer noch ein GOAT. Ihn als ersten AEW-Worldchampion auserkort zu haben, war komplett richtig. Was soll man also über ihn noch schreiben, was noch nicht geschrieben wurde? Jedes Superlativ ist eigentlich noch zu niedrig angelegt. Verbinde ich mit dem Wrestling, den Ligen, Titeln, usw. einen Namen ganz sicher, dann ist es der gute Chris Jericho. Schon jetzt müsste ich mich ganz tief verneigen vor dem tollen Menschen Christopher Irvine. Eben The Painmaker, The Ocho, Le Champion!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NEVERoverweightChampionwrote on 29.06.2023:[9.0] "He is a legend who always manages to stay relevant even to this day when he is way past his prime, I think that's the biggest thing that we'll remember about him. Very charismatic, one of the best at promos, a very creative guy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Giantfan1980wrote on 07.06.2023:[9.0] "One of my favorites of all time! Jericho was very good in WCW, but they weren't going to let him go farther so he went to the WWF and the place just exploded the night he made his debut. Almost got his legs cut off by HHH and Stephanie when he was the undisputed champ and was forced to play lackey to their stupid little feud. But he recovered and had many more great years."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Frank Shooterwrote on 02.06.2023:[10.0] "For me, the greatest talker in the history of Professional Wrestling, and a hell of a worker. Chris Jericho is one of the best to ever lace a pair of boots and the best definition of an Sports Entertainer along with The Rock."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: sinestro24wrote on 25.04.2023:"Jericho has done an excellent job of evoling over his legendary carrer, always managing to stay relevant and entertainging."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CMFunk007wrote on 22.04.2023:[10.0] "I first discovered Chris Jericho in WCW on Nitro when he was a white meat babyface and the most generic guy on the roster. When he started his heel turn by throwing fits after his matches, I started seeing his entertainment value. Then, he brought Ralphus along, got lost during his entrance on the way to the ring, mocked Goldberg, stole Rey Mysterio's mask, and read his "list" of 1004 holds (90% of which were "arm bar") and he became must-watch television. When they started scaling back on in 1999, I was getting impatient because I expected him to shoot up to the top of the card. Instead, he left for the WWF, where he ascended to be the guy who toppled Steve Austin and The Rock on the same night to merge the WWF and WCW titles. His feud with Stephanie McMahon and later The Rock were also excellent and I loved his tag team with Chris Benoit. I've followed him on over to AEW, where he's done well, but I liked him more as the underdog instead of the legend. My favorite wrestler of all-time is Chris Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: coppercowrieswrote on 20.04.2023:[10.0] "An absolute legend. This man has reinvented himself so many times, and his ability to stay relevant should be a study for all up and coming wrestlers. He understands the business and continues to entertain into his 50s. Talented in the ring, can be wonderfully comedic or serious on the mic. Overcame those that doubted him due to his size through his undeniable charisma and belief in himself. A power player in AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheLegendaryEricwrote on 13.04.2023:[10.0] "Jericho is a pure legend in the game, who does everything he does really well, he's quite possibly one of most versatitle wrestlers going managing to fit like a glove into an era he's apart of. While I think it's fair to say his best days are behind, he's definitely someone who can still provide much entertainment value and even still great wrestling to wherever he goes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HumanJerkywrote on 08.04.2023:[10.0] "Chris Jericho is, for me, one of the absolute greatest wrestler of all time. He was a complete package with the only real knock you could hope to place against him is his diminutive stature, being only five foot eleven inches, this makes him one of the smaller long term main eventers in pro wrestling. But thats about as far as things can go, even with a smaller frame, the man had(and honestly at fifty some years old, still does have) an amazing physique. He had dashing good looks, oozed charisma from every pour, was about as tight and diverse an in-ring worker as you can imagine, and has been able to evolve himself and his character innumerable amount of times. Now in the twilight of his in ring career, I'd argue he's lost a step physically, but he can still make it up with his ability to play the crowd like an absolute fiddle. Very few pro wrestlers through out history can give you as many different "looks" and be main card success worthy, but with Jericho he can do anything, wrestle any kind of match, play any kind of character, and it will work and well has worked. Once I'm able to rate, easily a 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: crs285wrote on 04.04.2023:[9.0] "Jericho is the master of reinventing himself to keep himself relevant. Every character he does whether babyface or heel has worked. Got over in WCW despite so many people backstage working against him and became a mega star in WWE. Left and every time he came back felt unique. In the ring Jericho could go with the best of them. He has helped AEW by giving them a well known guy who could still go although he has slowed a little but that is expected in your 50s. Still amazing on the mic and now on commentary."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: face painted legendwrote on 15.03.2023:[10.0] "Always had his thumb on the pulse of pro wrestling . As evident by his constant reinventions of himself over the last 30+ years now. He was someone who never stayed with something too long, always knew when the right time was to change things up with his character , and managed to not only stay relevant, but be a key part of the shows throughout. His in ring body of work still holds up today. He still does 90% of his signature stuff that he started doing 20+ years ago and it still looks good for someone whose been around as long as he has. Jericho is also someone who and I think I said this about a couple of other people on here, never gets injured. When he's working somewhere whether it's AEW, WWE, WCW, ECW, you name it, he's a constant when he's there, and when he's not on the show it's because he's doing something away from wrestling not because he got hurt. On top of all that, one of the most charismatic showmen to ever do it. Could get a reaction from a crowd whether he was a heel or a babyface. had many memorable moments and matches over the years. First ballot Hall of Famer for sure whenever he's ready."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Logue38wrote on 09.03.2023:[8.0] "A great upper-midcard guy who constantly reinvents himself once you think he's obsolete. Oftentimes his gimmicks are bad, but he has a "throw everything at the wall and see what sticks" mentality, so if something's not over he'll try something else."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Leth99wrote on 02.03.2023:[10.0] "A lot of things to say about him. Had tons of potential in his early days with Lance Storm. In ECW he was okay-to-great and had some good matches. In WCW he started as a babyface without nothing to bring, but his heel turn brought him as one of the best in those years. Him and Ralphus were even funny. He got super over in WWF and outshined Chyna with his immense package. As the Undisputed Champ he was an afterthought, not his fault. He was great in '03-'04 and outshone also Cena in '05. His '08 and '10 runs were amazing, probably his peak. He deserved to win the '12 Rumble. He's kinda slowing down since 2014 but he's still an okay wrestler and better than others on their best day. 2023 update: since creating the JAS he has been horrible, but I won't change my rating since I'm not really following AEW anymore so it's not impacting me"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: kewf1988wrote on 26.02.2023:[10.0] "Chris Jericho is the epitome of the upper midcard gatekeeper, and that is NOT a bad thing, as AJ Styles plays a similar role today. Very good in the ring, insanely charismatic, amazing on the mic, and the lack of serious injuries over his long career is why he's still active today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KKeanelwrote on 11.02.2023:[10.0] "One of the all-time best. Since his rookie years his persona was very entertaining and that is remaining till today. Underrated in WCW, legend in WWE, menthor in AEW. Very influencial man for whole industry history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: IBladeDailywrote on 24.01.2023:[10.0] "Over 30 years in the business, he has worked with every top star of his era. He's had stellar matches in the 90's, 2000's, 2010's. He's one of the top 3 talkers of more than one era. And he boldly left the employ of Vince McMahon to elevate New Japan and Kenny Omega. Then he was the lynch pin that gave AEW instant credibility. His run as AEW champion was excellent and he generated a lot of buzz for the company. Whatever they are paying him, he has more than earned. He's also wrestled more in the last two years than he did in the previous ten years and the wear and tear has definitely caught up to him. But even with his elite in-ring abilities muted by time, he has been excellent at generating interest for himself and his opponents, many of whom he has put over and made bigger stars. No matter his position on your GOAT list, he's definitely worthy of that consideration."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: benh2wrote on 13.01.2023:[9.0] "In terms of constantly reinventing yourself to stay relevant across such a long career, nobody has done it better than Chris Jericho. He's one of the best promos of his era and probably one of the best heels ever. Always tells a great story in the ring, he rarely just had a random match that didn't mean anything in a wider context. Seems to have gotten far too political in AEW but that's just blip in an otherwise long and storied career."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Enriquepollazzowrote on 10.01.2023:[9.0] "If I wasnt ridiculously sick of him I would rate him higher but I feel like he and Moxley have wrestled an hour a week for the last four years. He is really good at doing what he does. Was a 10 that year he went to njpw that's for sure. 2017? 18? . Had it as a 8, but he's done too much so changing to a 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Leo 4 Kingwrote on 09.01.2023:[7.0] "Jericho is a great wrestler, he always invented new "version" of himself to evolve with his time and his age."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: mano007wrote on 31.12.2022:[7.0] "An all time great some argue that his legacy has diminished since joining AEW, I would personally disagree, cause I believe his was overrated anyway even before he joined AEW"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Robinaldowrote on 30.12.2022:[10.0] "Zum Ende des Jahres muss ich jemandem, der auch in diesem Alter noch auf diesem Niveau abliefert, eine Höchstnote geben. Die Karriere wäre es sicherlich ihnehin wert. Was mich aber wirklich begeistert ist, wie innovativ, unterhaltsam und hochwertig seine Auftritte heute noch sind. Im gegensatz zu anderen Legenden in dem Alter ist er noch voll dabei und Eckpfeiler der gesamten Promotion. Eben le Champion!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: fruggmanwrote on 19.12.2022:[10.0] "Chris Jericho is my all-time favorite wrestler, and I don't think that will ever change. I don't know if fans appreciate just how unprecedented and important his career has been to the entire business over the last 30 years. He is the master of adaptation and evolving with the times, changing gimmicks or tweaking his character with a supreme knowledge of how the audience will react to every little thing he does face or heel. In-ring he has been consistently outstanding for years, even at the age of 52 he continues to have excellent matches and takes ton of new risks. His current run in AEW is possibly his best yet, despite some detractors. The creative freedom provided to an idea man like Jericho has resulted in the renaissance of the comedy arrogant heel through gimmicks like "Le Champion", "The Ocho", "The Wizard", "Demo God" and "The Influencer", all of which were pivoted from as soon as they began to get stale. Jericho is better as a heel, but his face work in attitude/ruthless aggression WWF/E is nothing to sneeze at either, despite being eclipsed by his suit-wearing serious heel persona in the PG era. Whenever Jericho decides to retire, I think people will look back on this era as being defined and shaped by Chris Jericho's influence."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Metalheadkevwrote on 19.12.2022:"WWE Chris Jericho and Pre WWE he was great gifted wrestler, however since his AEW run I have found him to be not as great as he can be, maybe it's his age but he a legend and a world-class performer. 7/10 overall as he has had some bangers with Moxley, Omega, Undertaker, Rock etc."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ArcticSharlatanwrote on 15.12.2022:[10.0] "Chris Jericho is without a doubt one of the greatest wrestlers of all time. I have no idea what CoolKyle is smoking but Chris Jericho deserves to be in the GOAT conversation because of his longevity and ability to carry promotions on his back. >I'm not sure there's ever been a year where he was one of the top 5, maybe 10 wrestlers in the promotion he was in. Jericho to me is basically the original version of Dolph Ziggler. Hyped as this great worker who was clearly a level below the actual great workers that were his contemporaries, solid dependable performer who once in a while would have a great performance or feud and otherwise makes me groan whenever I see him." I get that wrestling is subjective and we will not always see eye to eye on everything but this is one of the most asinine comments I have ever seen. Tribalism is weird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CoolKylewrote on 15.12.2022:[5.0] "Jericho is far from any GOAT convo. His famous "re-inventions" are just "Jericho with a different catchphrase" if they're not straight-up embarrassing (Painmaker), anyone who truly values "longevity" as a metric should be lauding Terry Funk as the GOAT long before Jericho even begins to come into the conversation. I think it's absolutely insane that people are eating up Jericho's politicking and recency bias is putting up all-time numbers rn. How in the hell can people look at all of the screen-time Jericho has taken and think "truly this man is one of the most selfless stars ever". I can't remember the last time this guy was part of anything compelling. I think a lot of 'Jericho is an all-time great' is, and props to him for this, is that he has spent a lot of time talking about how great his career was on his podcast, and he's been saying it long enough that people started to believe it. I'm not sure there's ever been a year where he was one of the top 5, maybe 10 wrestlers in the promotion he was in. Jericho to me is basically the original version of Dolph Ziggler. Hyped as this great worker who was clearly a level below the actual great workers that were his contemporaries, solid dependable performer who once in a while would have a great performance or feud and otherwise makes me groan whenever I see him."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MainEventMasterwrote on 10.11.2022:[10.0] "Possibly the greatest North American pro wrestler of all time. This dude can work in any era for any promoter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mcbolskywrote on 08.11.2022:"Chris Jericho pre WWE is probably an 8/10, First WWE run for him was outstanding. His feud with Shawn Michaels and their Wrestlemania match was perfect. Kinda fell off the radar for a second towards the end though 8.5/10. His second WWE run was definitely his most accomplished. Multiple title runs, a great feud with CM Punk, lovely work. 10/10 His final run with WWE was most known for his KO friendship/rivalry that ended with their match at Wrestlemania that should have been for the Universal title 7/10. His NJPW run was super weird and had heatless matches, put on great matches though. 6.5/10. His AEW run has been pretty bad though. lots of backstage politicking and sucking up to TK has gotten him an unnecessary push. He should be a producer or part of creative at this point 4/10."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheNomadMagicianwrote on 08.11.2022:[9.0] "Chris Jericho ist (fast) ein Gesamtpaket. Großartige Promos, Charisma und Ideen. Im Ring ist er für sein Alter recht gut auch wenn da mehr ginge."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Sick Lebowskiwrote on 31.10.2022:[10.0] "Könnte man auf CAGEMATCH für einen einzigen Wrestler, seinen Superwrestler quasi, 11 Punkte vergeben, hätte diese zunächst Chris Benoit, nach Tag X im Jahr 2007 dann Bret Hart bekommen. Chris Jericho zählte ebenfalls schon immer zu meinen Lieblingswrestlern. Der Ayatollah of Rock'n'Rolla ist ein starker Techniker und High Flyer, eine für die Bühne geschaffene Rampensau und damit ein komplettes Paket. Er lebt mit dem Wrestling seinen Kindheitstraum (und nebenbei auch noch parallel seinen zweiten Kindheitstraum, Rockstar zu sein) und ist daher immer mit vollem Einsatz und Herzen dabei. Seine größte Stärke ist jedoch seine Kreativität. Vom Lionheart zu Y2J zum listenschreibenden Schalträger zu Le Champion zum Demo God zu The Wizard, der Typ erfindet sich immer wieder neu und bleibt somit interessant. Aber da er mittlerweile durchaus sichtbar etwas in die Breite gegangen war und stabiler wirkte, rechnete ich eigentlich damit, dass er langsam seinen Abschied einleiten würde. Und was macht der Sports Entertainer Nr. 1? Dieser Teufelskerl bringt sich in die beste Form seit Jahren und leitet als The Ocho noch mal ein neues Kapitel in seiner Karriere ein. So viel Hingabe, so viel Kreativität, so viel Liebe zum Wrestling und so viel Unterhaltungswert kann ich nicht ignorieren. Sorry Bret, ich liebe dich abgöttisch, aber den Platz als GOAT hast du an Christopher Keith Irvine verloren. Na ja, wenigstens bleibt der Pokal in Kanada. "Go back to Montreal! " "I'm from Winnipeg, you idiot! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NoSellwrote on 22.10.2022:[10.0] "You can talk all you want about his IRL views and whatever but as it comes strictly to wrestling he's a top 5 maybe even top 3 North American wrestler of all time, constantly reinventing himself throughout his career and proved himself everywhere he went. A legend in every sense of the word."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: li0nsaultwrote on 10.10.2022:[10.0] "This guy is literally a genius. From WCW to WWE, and from WWE to AEW, Jericho has always understood the business and what a professional wrestler should do. Not only that, his in-ring skills have always been good, and even persist to this day. It's crazy how a 51 years old man still has great matches. All the respect in the world for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: newbabelwrote on 07.10.2022:[10.0] "Judas Effect is hit or miss as a finisher but the fact Jericho is still putting on high quality matches and is central to high quality storylines and feuds cements him in the halls of the greatest imo. I don't know if he's in my personal Mt. Rushmore but it'd be disingenuous of me to not rank him up there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: eltetechoriwrote on 06.10.2022:[10.0] "One of my favorite wrestlers, when he's been heel, in the entire history of pro-wrestling. Very good wrestler, and always making history in every place he goes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MCSPICYwrote on 04.10.2022:[7.0] "Super overrated. Don't understand the hype. Start to 2010 Jericho was hilarious but he has really fallen off."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kingoftheringdudewrote on 04.10.2022:[10.0] "Erfindet sich noch heute jedes mal aufs neue und das ist grandios. Er ist zu recht eine Legende, feierte ihn immer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GoldLigerwrote on 29.09.2022:[10.0] "There's very few guys who can basically say they did it all. Jericho is one of those guys. Worked Canada, US, Mexico, Japan, Europe. Worked for just about every big-deal televised promotion, including spearheading AEW as its first World Champion (even technically worked with ROH via his Cruise one time). Worked face, worked heel. Re-invented himself a dozen times without ever feeling unlike himself. Had great matches every year of his career, adapting his style from a fast cruiserweight to a hardened veteran over 30+ years to match his environment and his own limitations (although despite his current physique he can still do the Lionsault which is really something). Cuts great promos consistently, and always wants to tell a story more than have blow-out workrate matches. I can't say that Jericho was ever my favorite, but to give the man anything below a 10 is a disservice to his insane career, which still likely has a few years left. EDIT: I made the above comment almost a year ago, not realizing that Jericho's 2022 would be the best year he's had in a LONG time as both a wrestler and a character. He's priming to christen the new Era of ROH and might just be getting started with this excellent run he's on. The man is 51 and handing in some of his best work ever while setting up the future of the business, if I could give him an 11 for that I would."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: xnviuswrote on 28.09.2022:[10.0] "the fact this man has stayed in the wrestling industry for this long says it all, his longevity is second to none. he constantly changes his gimmick, adapting to what's new and it works every damn time. this is the same man who got a LIST over. what else needs to be said?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "The greatest at reinventing him to keep himself fresh and relevant as much as possible, he is a man that truly gets how wrestling works, that gets what fans like and expect and use that to his advantage. In the ring he is not the man he used to be, but prime Jericho was truly a marvel in between the ropes, and one of the greatest I have ever seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: sbg2022wrote on 04.09.2022:[10.0] "There are certain things about Jericho that I think are great, and certain things that bother me. For example, his longevity in the business is amazing that he's been in the business for 32 years now without an injury, is great. But the fact that he over-promotes himself and acts like he's the "be all, end all" of wrestling sticks in my craw."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GwenCube64wrote on 04.09.2022:[7.0] "Used to be a 10 for me for a long time. Is really good at picking up what works and running with it until something new hits. Has had some really solid matches and fueds in his career, but ever since his feud with Kevin Owens, he's been EXTREMELY shaky. His AEW run started promising and then fell flat. The Eddie Kingston match was literally his last truly great match in the past 5 years, could even push it to be the best in the past decade but maybe there was something I missed. I've seen quite a lot of Jericho's career and even looking back, I think he only gets a 7 because of his character rarely getting stale (until recently) and his handful of great/classic matches from the late 1990s to mid 2000s."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: danzgalliwagwrote on 31.08.2022:[7.0] "Extremely overrated by people who I'm assuming have only seen his best matches. He's always been more of a character worker, and there's absolutely nothing wrong with that. He's still a great wrestler all for good reasons. However, is he one of the greatest of all time? Nope. Nope, nope, nope. Aside from solid ring psychology, I've always felt he's been sort of lacking in the ring. His style is supposedly a mix of technical and high-flying, even though he can't do either one of them particularly well. I honestly don't think I've ever seen him acutally mat wrestle, nor have I seen him do much more in the air than a plancha. Now on the other hand, Jericho has at several points in time been one of, if not, the best mic workers in his company. He can connect with the fans better than 90% of the roster. However, for as vital as charisma is to the wrestling machine, it does not make an all-time great. Jericho is a certified hall-of-fame talent, but there is a line of better workers a mile long ahead of him."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Ozzywrote on 17.08.2022:[10.0] "Chris Jericho has been the top star wherever hes been for almost 20 years now, he was one of the greatest during his time in Japan & Mexico, in ECW he was good, WCW he was great, WWE he got even better, he was great in NJPW as the pain maker, and in AEW he became the must see talent that he was missing for right around 8 years once again in deserving fashion. He has had one of the greatest promo abilities of all time, and of course he is still able to keep a fresh gimmick going when he needs too, from "Corazon de Leon" in mexico, to "Y2J", to things like the "Pain Maker" and a self absorbed Vince Mcmahon rip off in AEW that is still somehow cool? This man is able to take rotten bananas and make them into a new tree. Jericho deserves all the recocnition in the world for managing to take a handful of whatever hes been given and create magic with his bare hands(no wonder they call him the wizard)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KELLANwrote on 05.08.2022:[10.0] "Eine absolute Legende & einer der besten Worker sowohl In-Ring auch als am Mic. Bringt immer seine Gimmicks over, egal ob Face oder Heel & das seit über 25 Jahren. Mit 50 Jahren immernoch gut im Ring. Potenzial: 2x AEW World Champion - 350 Tage insgesamt - 1x TNT Champion - 150 Tage insgesamt. - Main Event"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Benwerderwrote on 01.08.2022:[10.0] "11 gibt es nicht oder? Vielleicht die Chris jericho Kategorie. Alter dieser Typ ist eine Legende. Am Mic unglaublich, erfindet sich jedes mal neu und im Ring immer richtig gut und aktuell mindestens solide. Hat sich auch wieder in shape gebraucht wodurch seine Matches wieder besser worden. Ach am Kommentar ist er auch klasse. Der Wahnsinn der Jericho"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JoshuaWrestling63wrote on 28.07.2022:[10.0] "Chris Jericho ist einfach Weltklasse. Wie er sich immer wieder neu erfindet ist genial. Er wird einfach nie langweilig. Und für über 50 liefert er immer noch gute matches Man kann einfach nicht unter ner 10 geben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: nothingleftinsidewrote on 24.07.2022:[7.0] "Jericho is great, but it baffles me that he would average a 9.5. There's over 1400 10 votes for him. Jericho? Is a 10/10? I suspect foul play. This guy is as good as anyone? As good as Lou Thesz? Kobashi? Bret Hart? Steve Austin? Kurt Angle? Eddie Guerrero? Fucking Sean Michaels? Chris Jericho... *That* Chris Jericho? You're out of your god damn mind. So he's had a long career, and reinvented himself to stay relevant. So did Sting, Flair, Roddy Piper, Undertaker, MIck Foley, Onita.... Jericho is as good or better than those guys? We all know the good points of Jericho thanks to the FOURTEEN HUNDRED 10/10 ratings listed here, so I'll give you the bad. He's a mic hog and a spotlight hog. Stealing both when he isn't the best candidate to serve the match/angle. He's the crown prince of cheap heat- throws everything at the wall to see if it will stick. Which is almost commendable until you realize he's still doing it 30 years later. He makes it seem like he's elevating younger talent, but he's really not. Who has he "made" literally ever? Omega? You mean he saw the train leaving the station and decided to jump on the hype machine there cuz he was squeezed dry in the states at the time and everyone was sck of him (again). I guess you could call this a shrewd move or something. I just came from a forum where someone was complaining about Piper's segments in 96 WCW. Jericho's segments in modern day AEW are ten times worse. The guy is a fucking joke and he gets a whole segment plus a match every god damn week. He makes everyone who works with him nowdays look like a goof- Eddie Kingston, Daniel Garcia, MJF, Kevin Owens. He really has all you people fooled. It's not 1998, it's not even 2008. The guy is washed and everyone in AEW is afraid to tell him no, or that something isn't a good idea. I wish he would retire. He has had a hall of fame career, and was a great worker for most of it. But you people are fools if you think he's a 10/10. On top of all this he's a anti-vax, covid-denying, right wing fucking asshole. What a joke. I would rate him an 8 but to counteract the ballot stuffing he gets a 7. There are way worse wrestlers out there but stop acting like this dude is trying to elevate anyone but himself."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JTIwrote on 24.07.2022:[10.0] "Chris Jericho the person is kind of literally the dirt worst, but Chris Jericho the wrestler, the character, the performer, is SSS+ tier, and I don't think anyone could argue that. On top of being a world-class promo, in-ring storyteller, wrestling technician, and ring general, Jericho has managed to reinvent and refresh his character with almost ridiculously consistent success for decades now. He basically carried AEW on his back for the first six month's of the company's existence, and at the age of 51 continues to be one of the company's best acts, even if his in-ring skills aren't nearly what they were in his prime. He just "gets" pro wrestling. It's just too bad that IRL he's an insecure wannabe rockstar manlet going through a midlife crisis who's given a platform to conspiracy theorists and fascists. Oh well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LivingLegendwrote on 22.07.2022:[9.0] "Regardless of your feelings on him as a human being, it's impossible to deny the greatness that is Chris Jericho. Great in the ring, though in recent years he has slowed down a bit. Amazing on the mic, full of charisma. Can play both a heel and a babyface. I prefered his short hair look but either way his look is memorable. Just a great talent overall, even if some of his AEW work has been average."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: hoangminecraft6969wrote on 21.07.2022:[9.0] "Never a big fan of Jericho but only idiots can doubt his contributions to the industry. Him helping form AEW and being around to put over young wrestlers only cement my respect for him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KSupreme3wrote on 19.07.2022:"I can confidently say that Jericho's promo skill is unbeatable. The man knows how to work the crowd and how to create memories that will last years. He's wrestled so many memorable matches on different promotions. The ultimate example of someone who has all the right things to be a mega superstar. Absolute legend."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: euchre0wrote on 24.06.2022:[10.0] "I'm not certain if Jericho is my favorite wrestler, but her's close. He has done everything in his career and shown he can do anything. He can talk; he can do high flying; he can do slow and methodical; he's willing to put other guys over; you name it! He even knows 1, 004 hold+ holds! Even ad his old age and steps lost he seems to know how to work around limitations and be a great character."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ITaughtEnzowrote on 21.06.2022:[10.0] "Jericho is the total package. On the mic and in the ring he's a force. In this twilight period of his career it's easy to forget how good of a wrestler he was between 1994 and 2016. On the mic, he can still be compelling, although he's become a little overindulgent in recent feuds, Jericho can still turn it on and deliver a great promo and match when needed as evidenced by the feud he's had with Eddie Kingston this year. Whether he is called Lionheart, Y2J, The Painmaker, le Champion, or The Wizard, and whether he's in ring gear, leather jacket a suit, a scarf, or carrying the list; Chris Jericho is an important part of the history of wrestling history, and one of the best to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: OldDirtyBeemerwrote on 17.06.2022:[10.0] "He is a legend. He's been a top star at three companies across the 1990s, 2000s, 2010s and now the 2020s. Calling him a natural on the mic undersells his ability, he's certainly on the shortlist for the best ever. His in-ring work is hall-of-fame caliber, consistently, throughout his career. On top of all that, he has a great mind for the business as well. And on top of all that, the man clearly works his ass off to entertain us, every day, day in and day out for the last 30+ years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NeoSwas36wrote on 04.06.2022:[9.0] "I think his career has dipped, but he's one of the greats. He killed it in WCW, killed it in WWE, and he's doing very well in AEW. Where he goes, success follows. One of the best allarounders and a super entertaining character. 9/10"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: texasyoshwrote on 30.05.2022:[8.0] "Chris Jericho is a good wrestler. Unfortunately, I feel he's more hype than actually good, where at times his opponents have carried him to good matches. He should get props for longevity and a pretty good catalog of good matches, but man is he overrated. Most 'good' Chris Jericho promos and moments came in 1997-01 and 2008-09."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DoctorTwinwrote on 02.05.2022:[10.0] "One of the best wrestlers of all time. I have so many good memories with him that I can't put it into words. I recommend everyone to check out his matches and promos."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WrestlingFan892wrote on 31.03.2022:[10.0] "One of the best and most complete wrestlers in history without a doubt, high-flyer, technician, has mic-skills and also a lot of charisma and one of the most beloved wrestlers in history as well. I can't leave without also mentioning how good he is working in tag teams and forming factions."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BAILE3wrote on 26.03.2022:[10.0] "Arguably the best wrestler of all time. Has worked all accross the globe, insane longevity (and is still putting on good matches, like the one against Kingston at Revolution), and is potentially the best talker of all time. He has had a plethora of 5 Star matches and has reinvented himself succesfully, so, so many times with new gimmicks. Every one of his many gimmick's bringing more to the table as his career progresses. Even after more than 30 years of his career he still finds a way to reinvent himself and keep his character interesting. Truly one of, if not the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Randy Hart UCWwrote on 26.02.2022:"Chris Jericho should be in the Wrestling Hall of Fame. Not just the WWE Hall of Fame. There should be a wrestling hall of fame and Jericho should be in it, for his contribution to wrestling. The way he reinvents himself over and over and stays relevant, no matter where he is. He is the epitome of charisma, and one of the greatest champions of all time!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PuroresuLoverwrote on 12.02.2022:[4.0] "Chris Jericho really became a very sloppy and tiresome wrestler to watch. He went from one of the greatest to one of the most boring pseudo-brawlers I've ever seen in my life. His character no longer makes sense, his timing is always off, his selling is simply terrible and he's VERY selfish. To be quite frank, ever since he left NJPW, he didn't have one single match that attracted me or even made me think "Well, maybe Y2J is not that bad". Very sad to see how his career is on the limbo."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SquilliamFancysonwrote on 11.02.2022:[9.0] "A performer full of fire and moxie, Jericho's career is impressive both in its quality and longevity. He's a legend, but seems to not reach his ceiling quite as often as some of the other greats, so I'll put him at a 9 rather than a 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rishabhwrote on 09.02.2022:[10.0] "Chris Jericho's longevity is insane, his biggest strength is his ability to re-invent himself and be entertaining in all aspects. Even in his late years, he was the best thing going on in WWE in 2016 and AEW in their debut year. With so many classics to his name and great moments he had throughout his wrestling career, I think he has earned to be called one of the GOATs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WhatIsLooveeewrote on 24.01.2022:[10.0] "Chris absolutely confirms the title of the best in the world, rightfully being on the list of the best. And, perhaps, its main distinctive feature is its progression. Having achieved success in one gimmick, he does not parasitize on it and then succeeds by making changes to his character - as was the case with the Painmaker and the Demo God, for example. An incredibly talented person who knows how to make, perhaps, any gimmick work and attract the attention of fans."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GriffinXwrote on 19.01.2022:[10.0] "All time great. Long career in the WWE but even before that had success in WCW, Mexico, and Japan. Now still doing a lot in AEW. Gone form an exciting JR heavyweight to all time great Heavyweight"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PavelDragunovwrote on 16.01.2022:[10.0] "Jericho's contribution to wrestling cannot be described in words. This is a living legend. A man who traveled all over the world giving fans high-quality wrestling. A genius on the microphone, a master of the ring, a man with 5 Stars. Participant of legendary plots, multiple champion in prestigious companies. One of the founders of AEW. A person who is not afraid of change. A bright personality, with excellent musical taste. A fighter who has advanced a huge number of careers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Justtwrote on 14.01.2022:[9.0] "Jericho is one of the best wrestlers of the 21st century, there is no doubt about it. The thing with Jericho since his departure from the WWE is: he will try to latch on a popular wrestler to remain relevant. He did it with Kenny, Naito, Okada, Cody, MJF, now Eddie Kingston and probably will do the same with Hook. Jericho seems to be a mark for himself too. People always criticize Bret for "taking himself too seriously" but Jericho is in another level. Again, Jericho is one of the best and one of the most important wrestlers of the century, but he has big flaws."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CaptainCharisma1997wrote on 19.12.2021:[9.0] "An all time great to be sure, but only gets a 9/10 due to the fact that I consider his character from 08-10 to be the real peak of his career with nothing else really coming close. That and the fact that he's totally washed now and has long outworn his welcome in AEW by stinking up the joint in every segment and using his paycheck to donate a fortune to the Trump administration."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PhenomenalGunwrote on 17.12.2021:[10.0] "Where do you even start with someone like Jericho' The master of reinvention: from the List, to the Painmaker, to Lionheart, to the Demo God, Jericho has never been a one-trick pony and is constantly looking for ways to keep himself fresh and ever-evolving. His in-ring skills in his prime were spectacular, and his mic skills are hard to beat. They call him Y2J for a reason, because the moment be broke out in wresting, he changed the business forever! Long live the Ayatollah of Rock n' Rollah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HolaDiegowrote on 02.12.2021:"7. His career is very good. Not all time great. Not like being one of the top americans in wrestling history. A little overrated."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CMX-7wrote on 27.11.2021:[10.0] "Chris Jericho is an absolute Legend! His ability to adapt to certain conditions is simply charming ... he can create a great story out of nothing! ) Wherever he is (AEW, NJPW, WCW, ECW, WWF/E) he can outshine everyone everywhere, his every new trick gimmick is gorgeous! And his matches are included in the classics of any federation! Despite his age, he can still show an excellent match and entertain the crowd)) P.S. - His role as Color Commentator is phenomenal and funny))"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: gj07czoswrote on 22.10.2021:[10.0] "One of the greatest of all time. Jericho's ability to reinvent himself is second next to none. A wrestler that does not rely on nostalgia and doesn't rest on his laurels. Throughout his career Jericho has been solidly entertaining in the ring, but his character work and mic skills place him on the Mount Rushmore of professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jltwrote on 21.10.2021:[8.0] "Nowadays, he isn't that great but he used to be one of the most charismatic characters in wrestling. I haven't really enjoyed very many matches at all from him, but he always has great characters and promo work. The WCW and early WWF(E) days of Jericho were and always will be the best."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: FACEElmo295wrote on 15.10.2021:[9.0] "The king of reinventions, Jericho always kept me watching whenever he was talking or wrestling. He is also the most versatile wrestler in my opinion due to the fact he can do it all, put on a good match, great at working the crowd and making sure he gets the right reaction wherever he be face or heel. While he may be showing signs of decline due to age, the year 2008 was just Jericho at his absolute best and became the number one heel in all of wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: wewantpunkwrote on 05.10.2021:[10.0] "Ob WCW, WWE, Japan oder AEW - Chris Jericho war mir nie langweilig. Eine absolute Charisma Bombe und im Ring zwar schwankend nach Leistung, aber er kann es und versteht sein Handwerk. Wenn man seine gesamte Karriere betrachtet kann man nur eine 10/10 geben. Unvergessene Matches, Segmente und Promos. Aufjedenfall in einer Reihe mit den ganz großen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DDM1405wrote on 12.09.2021:[4.0] "If I were rating Jericho for his run from WCW through to 2010s WWE then this would be an easy 8/10, but this rating is for current Jericho. Put simply, he can't go anymore. He's out of shape, sloppy in ring and his promos and commentary have devolved into just shouting and screeching. To make matters worse, his newfound creative freedom in AEW has allowed him to do bad Monday Night Raw-esque comedy skits, leech off of younger stars and bury talent like MJF and FTR by dragging them through a nonsensical feud with his faction in which Jericho's team comes out on top after humiliating them."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rollforinsightwrote on 06.09.2021:[10.0] "There is no truer example of the whole package. Jericho has done it all to a very literal degree that few can match. Give him a microphone and he will lay golden eggs. Definitely a GOAT"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Pete Gallowswrote on 03.09.2021:[10.0] "Loved him in WCW, he was so entertaining. Very charismatic, funny, great promo. I haven? t seen much of him in many years, but I will always consider him one of the top 3 entertaining wrestlers of all time (along the Rock and Austin)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dkexwrote on 27.08.2021:[10.0] "Zu Chris Jericho ist eigentlich alles gesagt, eine lebende Wrestlinglegende. Gerade in der AEW Anfangszeit war er absolut der MVP. Ein Gott am Mikro und tonnenweise Charisma, auch wenn er mir aktuell als Face nicht ganz so gut gefällt wie als Heel. Er hatte eine starke Regentschaft als World Champion, gefolgt von soliden bis sehr guten Fehden nach seinem Titelverlust. Er ist und bleibt einer meiner Lieblingswrestler aller Zeiten, auch wenn er im Ring natürlich nachgelassen hat, mit 50 darf er das. Trotzdem gab es das ein oder andere denkwürdige Match bei AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rellodingwrote on 12.08.2021:[10.0] "I think Jericho is THE BEST wrestler ever, he has endless charisma, he's an amazing wrestler(until about late 2020), he's always fresh, and he's good at putting people over."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JacobBoi1wrote on 11.08.2021:[10.0] "Chris Jericho is one of the greatest of all time. His ability to constantly innovate and evolve his character as to never get old or stale is incredible. His in-ring work is usually very good and his promo work is up there with some of the best. He was good in WWE but was not utilized to his fullest potential in the later years, but after leaving he has only gotten better and shown how good he still is. Jericho is one of the best and will consistently prove that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dokuaiwrote on 31.07.2021:[9.0] "Jericho has had an incredible career, that much cannot be denied. He first rose to national prominence in WCW and really had a great character but never got the push he could have or should have. Then he jumped ship to WWF, where had a really spotty first run. There were moments of brilliance but mostly when he was in the undercard. Finally when he came back as the suit wearing psychopath I think he really got a worthy run but that also petered out to diminishing returns before the Omega match in New Japan and AEW where he was revitalized."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: blastostgwrote on 28.07.2021:[6.0] "Giving him a 6 just for his run in multiple promotions around the globe in the 90s. His WWE work was fine as well. However his run in NJPW and later AEW has been mediocre to absolutely insufferable. Especially since losing the AEW title he has gotten bloated, even more slower and has completely run out of creative ideas. Dinner Debonair is as bad as anything from Russo era WCW. Should really hang it up in ring sooner than later."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Reviewer Champwrote on 15.06.2021:[10.0] "Goated Wrestler All Back From His Day To Smokey Mountain Wrestling to his ECW and New Japan Days All Away To WCW and WWE and Currently AEW. Great Wrestler and great person outside the ring. Great Charisma and great in ring action. In SMW Great Tag Team With Lance Storm and in ECW great Television Champion. In Japan Created The Lion Hart Moniker and Did Great Stuff in WCW With The List Of 1004 Holds and Mocking Goldberg. WWF/E With Being One Of The Great Intercontinental Champions Of All Time and Great Accomplish Wrestler. He's Even Wrestling Today in AEW With his another renovation le Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: VanguardWhowrote on 07.06.2021:[10.0] "For a long time, Jericho was my favourite wrestler that I didn't realise was one of my favourite wrestlers. He's been around for so long under so many different characters that he almost feels like part of the furniture sometimes, and it can be easy to overlook just how great he really is, and has been throughout his career. The last few years have had some rough spots for him to put it very generously, but I can't in good faith rate him below a 10/10 when taking his whole career into account, not even jokingly for his crap dad-rock band or questionable podcast guests, especially when he's done so much for AEW's rise to prominence. One of the most versatile and well-rounded complete packages in the history of wrestling, even if "well-rounded" could just as easily apply to his physique these days. Doesn't do himself a lot of favours in terms of being a prime target for taking the piss out of sometimes, but it's (mostly) out of love for one of the honest-to-god greatest character workers, talkers, and in-ring all-rounders to ever step foot in a ring. An entertainer through-and-through, a catchphrase machine second only to The Rock himself, and one of a handful of wrestlers with a genuinely solid and hard-to-dispute claim to the somewhat nebulous and incredibly subjective title of GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lyno123123wrote on 02.06.2021:[9.0] "(9. 8/10) The most versatile wrestler in wrestling history. and the only human that can get a damn clipboard over with just 5 word. if you wanna talk about the word "Re-inventing" yourself Chris Jericho is the GOD of it. And let me tell you he have worked ALL style of matches from Extreme, High flying, brawl, Big match main event, Cinematic, and Comedy. he did it all and nothing that you threw at him will surprise him any more. He seen it all, He did it all, and he's Been there done that."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: reverendjimwrote on 30.05.2021:[9.0] "Love the guy, great mic work, bell to bell can still go. Just wish he would lose some of the extra LBS LOL. Looking more like Eddie Kingston as of late."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Daigotsuwrote on 21.05.2021:[10.0] "Jericho is an all-time great. In AEW he's lost a step as a worker, but he's 50 now so that's to be expected. In his prime he was one of the best in the business. He's still an excellent talker, and a sensational commentator. Jericho is just a star at every aspect of the wrestling business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BlakeFR37wrote on 08.05.2021:[10.0] "A living legend. From NJPW/ECW to AEW, I love everything. World Champ, IC Champ, Tag Champ, this is a moneymaker, a wrestler makes for Main Event."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The A-Listerwrote on 05.05.2021:[10.0] "Great in every aspect through his entire career: as Lionheart, Y2J, The List Of Jericho and Le Champion. One of the most complete wrestlers in the history of tbis business, be has it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AmarantCoralwrote on 18.04.2021:[10.0] "Probably the most adaptable wrestling personality of all time. His character work throughout his decorated wrestling career alone would earn him a 9 but Chris Jericho is among the best technicians and talkers the sport of pro wrestling has been graced with. Beyond this, his ability to recognise his own limitations and adjust his style in line with his age while also maintaining a clear and obvious passion for what he does, keeps him infinitely entertaining and relevant beyond the point many others would have outstayed their welcome."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AnBwrote on 16.04.2021:[9.0] "America's Role Model really found a gimmick that worked and just ran with it for the rest of his life, huh. Great in the ring and great on the mic. Heard both good and bad things about him in AEW, but haven't followed that at all myself. I remember him most fondly from his WCW days and 2000s WWE, which were great times."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kungwrote on 11.04.2021:[10.0] "This might be the easiest 10 I've ever given. From the day I started watching wrestling, Chris Jericho has always been one of my favorite personalities in the industry. I can't wait to see what he does next!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: zaydkerk19wrote on 29.03.2021:[10.0] "The David Bowie of Professional Wrestling, innovation and reinvention are the hallmarks of y2j's long and illustrious career. Whether as the conspiracy victim of WCW, 2008 Heel Jericho and the List of Jericho iteration of WWE, or as Le Champion in AEW, Jericho is always stealing the show with amazing promo and character work, and fantastic matches, even in the later years of his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bushidospirit22wrote on 16.03.2021:[6.0] "One of the all-time greats in his prime, and was still among the world's best five years ago, but Jericho has really fallen off a cliff in the past few years. His New Japan work was slightly cringe outside of the ring but at least he was able to compensate with good lucha-style brawls. AEW Jericho has been a cry for help; adequate at best ringwork that at times has bordered on downright terrible, and the terrible work is now appearing with more frequency. If his current character is delusional, washed up rockstar than I would give him a 10, but I don't think this is intentional."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Parts Unknownwrote on 16.03.2021:[10.0] "Although he is a talented in-ring athlete with an extremely high wrestling IQ, it is his mic skills that make Jericho a 10/10 legend. I had the pleasure of seeing him in person at a show at the Staples Center in Los Angeles, and while I was not there to see him (I was there to see Angle vs Benoit or X-Pac w/Justin Credible and Albert... I forget which time this was) it was Jericho that stood out the most that night. It was not for anything done in the ring, it was for being fully in character at least an hour before the show starts. While everyone is standing in line to show our tickets and enter the building, he is on the 2nd or 3rd floor balcony area leaning over the railing shouting insults and getting the crowd riled up. He completely did not need to do that, but minds like Jericho are destined for the top. He knew he had limited minutes on the card, and people are there to see Triple H and the big physiques, so he was out getting heat while other people may have still been getting dressed. When he hit the curtain that night we hated him more than anyone else on that card, even the headliners booked in matches still upcoming. Then when we watch it later on tv we saw he got a huge heel reception as his titantron hit and he pranced out with a big smirk on his face. He put in the extra effort for that. So well deserved."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RickyHendowrote on 11.02.2021:[10.0] "Absolutely blessed on the mic and between the ropes, the longevity of his career is a testament to how great he truly is. Looks to be having a blast doing something different in AEW, loving his story with MJF"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: StrongStyle2020wrote on 05.02.2021:[9.0] "Jericho has had one of the greatest careers of all time. A success in more promotions than all but very few. Re-invented himself repeatedly, most recognisably with his character, but his finishers also (his Judas Effect he times perfectly, a move that looks simple but is anything but, and he times and executes perfectly). The past few years, people have tried body shaming and bringing politics into it, but Jericho continues to be a hit with all he does, and his past few years have in fact included many of his greatest successes, including two of his greatest matches against Omega and Naito in NJPW, and a consistent ratings winner for AEW."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Burninghammercriticwrote on 03.02.2021:[10.0] "My favourite wrestler of all time, did he have loads of 5 star matches? no. But he is the most consistently entertaining wrestler to enter the squared circle. I have never been bored in a Jericho match, its impossible, a true great legend. The undeniable GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Uweuwesenwrote on 28.01.2021:[10.0] "Chris Jericho war in jungen Jahren und in seiner Prime ein extrem guter In-Ring Performer. Selbst im hohen Alter ist er noch okay. Seine Mic Skills sind absolute Elite! Chris Jericho erfindet sich alle paar Jahre neu und das macht in absolut einzigartig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Brett1980wrote on 21.01.2021:[10.0] "One of the greatest personalities of all time. He is one of the funniest promos ever. Stood out as a star in WCW despite limitations. Was amongst the most consistent performers in WWE for over 15 years. Then just as you think his career is starting to wind down he goes to NJPW and has a classic match with Omega. Then became AEWs top star."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kid Rockwrote on 16.01.2021:[5.0] "Der Lack ist ab..... Chris Jericho hat aus meiner Sicht im vergangenen Jahr viel von seinem einst tadellosen Vermächtnis verspielt und verstärkt mittlerweile jedes Mal wenn ich ihn sehe bei mir den Wunsch, er möge doch nun endgültig abtreten.... sieht man sogar von mindestens als kontrovers zu betrachtenden Aktionen seinerseits (wie sein Fozzy-Auftritt bei der Biker-Rally in Sturgis letzten Sommer, seine Wahlkampfspenden an Donald Trump oder seine kindischen Twitter-Botschaften an Leuten wie Sebastian Bach oder AEW-Kritiker wie Jim Cornette), so bleibt festzuhalten, dass Chris nun wirklich nichts mehr in einem Wrestling-Ring verloren hat. Auch wenn er an guten Tagen und mit dem richtigen Gegner ab und zu noch ein akzeptables Match worken kann, ein aufgeblähter und unfitter Jericho, dem während seiner Matches die Hose aufplatzt ist wahrlich kein schöner Anblick und auch sonst, kann ich ihm abgesehen von der einen oder anderen Promo nichts mehr abgewinnen. Jericho hat als Top-Heel bei New Japan und speziell AEW sich ein schönes und mitreißendes Alterswerk mit seiner starken Neuerfindung als Alpha/Painmaker/LeChampion schaffen können, seit den Ausbruch der Pandemie, trägt er jedoch nicht nur, sondern ist auch oft eine zentrale Figur in der TNA-mäßigen Ausrichtung AEWs in Richtung schlechter Comedy, schwachsinnigem Booking und Arschkriecherei in Richtung der extremen Indy-Smart-Marks. Seinen Fehden gegen Leuten wie Broken Matt Hardy oder Orange Cassidy konnte ich ebenso wenig abgewinnen, wie seiner derzeitigen Albernheiten-Revue mit dem Inner Circle und MJF (den ich sehr mag). Jericho hat für mich gezeigt, dass er nicht nur keineswegs das kreative Wrestling-Genie besitzt, welches ihn Fans (und er sich selbst) immer wieder andichten, sondern, dass er mittlerweile das ist, was ihn zu WCW-Zeiten angeblich unten gehalten hat: Ein (buchstäblich) aufgeblasener Alt-Star, der es nicht mehr bringt, alle Privilegien des Geschäfts genießt, aber selber an dieses nicht mehr zurückgeben kann (oder will), in dem Maße wie es ein Star seines Kalibers sollte. Sorry, Chris, aber es wird wirklich an der Zeit aufzuhören...."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Old ride long linewrote on 18.12.2020:[10.0] "Definite jerichoholic right here. All time great ring technician, all time great on the mic, just an all time great allrounder. The only knock on Jericho was his size but to me he found ways to make you believe he could beat the giants. There are to many classic matches to list and I highly recommend going back and watching his whole career from wcw on. He? s in my personal top 10, and probably top 20 all time reguardless of my personal feelings. And if somebody wants to tell me he? s the GOAT I can? t find much to argue against it other than the conversation itself is hard to break down over eras but he belongs in conversation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Moose Nuggetwrote on 09.12.2020:[9.0] "Jericho at his peak was fantastic with great matches and killer promos. I really wish he would adopt a different style now that he's older but he's still a step above many as a in ring worker."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: medousewrote on 09.11.2020:[9.0] "For the last 30 years he had ups and downs and my final rating is based on his career overall. On the very beginning I loved his wrestling style and his personality. However, from years circa 2008-2017 I didn't enjoy anything about him. His style, looks, personality, storylines, everything. I used to think I will never like him ever again. However after his NJPW appearance something changed. I have tons of respect for him, for doing all these crazy matches at his current age. Great wrestler, living legend and a great musician."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Pizzekwrote on 28.10.2020:[8.0] "One of the reasons why AEW is the thing, the guy never disappointed me, always elevating to a bigger role or more interesting character."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: eleddie2914wrote on 28.10.2020:[9.0] ""Living legend" "King of the world" "Best of the world" "Y2J" Chris Jericho is a legend he is one of the greatest. Jericho was the first ever Undisputed champion although he was a transitional champion he did not disappoint being champion for 3 months and won the title by beating Rock and Austin on the same night. Chris Jericho did not hold world title gold until 2008 and he did not disappoint either Jericho is just great."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ilovewrestling1995wrote on 18.10.2020:[8.0] "One of the best wrestlers on the mic ever and especially the last years he has improved so much . His ring work is very good but its not top . sometimes he is slow in the ring and his moveset has remained exactly the same over the years . but even though he is 50 years old his matches are still over 3. 5 stars and thats very hard to achieve it especially at this age . i hope he is going to wrestle 5 more years he still got it"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Narfmonsterwrote on 15.10.2020:[10.0] "30 years of Jericho. 30 years of classic feud after classic feud. He's reinvented himself more times than anyone can count, and each of his incarnations are iconic. From the Lionheart in Mexico, to the submission specialist of WCW. From Y2J to the List of Jericho. From his edgy NJPW character to Le Champion & Le Demo God, Jericho is absolutely iconic. He's had so many classic feuds: The Rock, Chris Benoit, William Regal, Christian, AJ Styles, Kevin Owens, Orange Cassidy, The Elite, etc. Jericho is the BEST wrestler of all time in my opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Gathawkwrote on 15.09.2020:[10.0] "The actual 'the best there is, the best there was, the best there ever will be'. Jericho reinventend himself more times than I can remember and in recent years, each and every one of his 'reincarnations' was absolutely spot on. Great storyteller, one of the best mic skills in the industry ever and even if sometimes a little (or very) cheesy, his promos and catchphrases always work. Dude is 49 years old and still able to put great matches, just slower and less flashy than even couple of years ago, which is pretty normal considering his experience, number of matches and age. I hope he'll become a full time commentator after he hangs his boots."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JuWFEAEwrote on 03.09.2020:[9.0] "Er kann eigentlich alles. Er kann mit 50 noch immer so gut wrestlen wie immer, sein micwork ist nahezu makellos, er hat Ausstrahlungund trotzdem: ich weis nicht was aber irgendwas fehlt mir bei ihm."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Fayzalwrote on 15.08.2020:[9.0] "While not Consistently great, Jericho's ability to constantly reinvent himself is something everyone knows about and is amazing as it is able to keep his character fresh and have the fans feel like they are starting to like someone entirely new while for Jericho himself probably feels like he is getting "trying to get OVER again". Great technical worker too, though he may be old now he has shown he can still go in matches with Naito, Omega & Cody to name a few. He has brought alot of Exposure to NJPW which is well deserved for the promotion and great for himself as he was able to become the Painmaker, which is a gimmick i really enjoyed. AEW making him their first world champion was the right choice, Seeing fans cheer to his theme song on the cruise gives me goosebumps and the whole Le Champion character is just a blast to watch. I say he is a Top 15 all time for me."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: lehaimkhwrote on 20.07.2020:[10.0] "What happens if you mix charisma, experience, moveset and eloquence? Jericho is a walking legend. He made an incredible contribution to the development of the entire industry. In AEW and NJPW, his character played with new colors. And I enjoy his work even more."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Divus Rolexuswrote on 16.07.2020:[10.0] "Chris Jericho is one of the 10 wrestlers that can claim to be the GOAT. In my opinion, he is the best heel of American Wreslting History, at 50 years old he is still an excellent in-ring worker and continues to reinvent himself as a heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: archiewrote on 14.07.2020:[10.0] "What is there to say about Chris Jericho that hasn't already been said a thousand times before. Jericho is a mastermind of marketing, constantly reinventing himself into something new and exciting. Constantly working with young talent, pushing them to new levels of greatness whilst still shining through as a phenomenal in-ring wrestler, especially considering he's nearly 50! Jericho is a once in a lifetime talent, he transcends the company he works for, breaking into the mainstream and becoming a household name; you may not watch wrestling but chances are you know who Chris Jericho is and you know what a codebreaker is, in fact you probably gave your cousin one on a trampoline. He makes my Rushmore comfortably. What a talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Viniciouswrote on 26.06.2020:[9.0] "The Madonna of professional wrestling. This man re-imagines himself right as he gets stale. I've loved everything Chris Jericho has done since seeing him as a scrappy babyface cruiserweight on WCW Monday Nitro. His work in New Japan and All Elite Wrestling has given him a huge boost in the all-time greatest wrestlers list."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NastyYaffawrote on 03.06.2020:[8.0] "I have newfound appreciation for Chris Jericho ever since return to NJPW & that Dome match against Kenny Omega. I think most of his 2010s WWE work is pretty damn dull & especially his 2016 series vs. AJ Styles stands out as some of my least favorite stuff of the last 10 years, but oh man he has been killing it ever since going to NJPW & AEW. I always expect him to be a king on the microphone, and he has been that, but he has also been delivering each time he has wrestled. He truly gets his character & that character just happens to be extremely enjoyable to watch do his thing."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Conorwrote on 21.05.2020:[10.0] "One of the greatest of all time. Has evolved his gimmick more than anyone else in the business with exception of the Undertaker. His gimmicks have included Lionheart, Man of 1004 holds, Y2J, the List, the Alpha, and Le Champion. He was, and still is, one of the best ever with a microphone and his work in the ring is excellent. It? s little wonder that he is a 7 time World Champion and has been a main event wrestler for 20 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: joshjackalwrote on 14.05.2020:[10.0] "Chris Jericho is one of the all-time greats. So many of his incarnations have been hugely entertaining, from his "Monday Night Jericho" phase in WCW just being a total buffoon with Ralphus to his Y2J heyday in WWF/E to his excellent current work as Le Champion in AEW. His character work is so great that he creates gold accidentally, from "I'm from Winnipeg you idiot" to "Pineapple Pete. ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: VillainClubwrote on 12.05.2020:[2.0] "Seine Matches bei New Japan in den letzten Jahren fand ich alle schlecht. Viel zu lang und Zäh. Zudem macht er immer das gleiche. Im Grunde ist er nur noch ein alter Mann der versuch noch einmal cool zu sein und ist dabei nur noch Peinlich. Sobald der Name Jericho auftaucht am besten das Produkt abschalten, denn ab hier wird es schrecklich. Einer der wenigen die mir komplett die lust auf New Japan und Pro Wrestlin im Allgemeinen nehmen kann."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jatejackpottwrote on 11.05.2020:[7.0] "War mal einer der besten Wrestler wie ich finde. Als er zu NJPW gegangen ist fand ich ihn sogar noch deuzlich stärker als bei der WWE. Alllerdings muss ich sagen, dass er mir bei AEW nicht wirklich gefällt. Das Match gegen Moxley war Hammer, aber sonst? Er hat bei AEW einfach fast keine Matches mehr und das finde ich schade. (Dazu muss ich sagen, dass ich das Match der letzten Dynamite-Ausgabe von Guevara/Jericho vs. Kenny Omega/Matt Hardy nicht gesehen habe)"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Geddie84wrote on 15.04.2020:[10.0] "Auch wenn Jericho mittlerweile nicht mehr in der körperlichen Form seines Leben ist, ist er für mich mittlerweile der MVP im Wrestling Business der letzten Jahren. Er ist einer der Hauptstützen der AEW und einer der Gründe, warum ich diese Liga mittlerweile so aufsauge. Seine Interaktion mit anderen Menschen und auch Gegenständen (Vanguard-1 :D) sind einfach fast jedes Mal Moment of the Year würdig. Seine Promos und anderweitigen Leistungen am Mikro, z. B. Kommentator, sind einfach grandios! Seine Fähigkeit andere Talente zu pushen sind bemerkenswert, insbesondere wenn man seinen Status als Top-Star berücksichtigt. Das macht nicht jeder so. Damals zu Beginn seiner Zeit bei WWE konnte ich ihn noch nicht richtig schätzen, aber im Rückblick und im Laufe der Zeit ist er einfach zu einem meiner absoluten Favoriten mutiert. Auch wenn er jetzt nicht mehr im Ring so überzeugend ist, immerhin hat er aber abgenommen seit Start der AEW und wirkt trainiert, ist DER Wrestler weltweit momentan. Er kann alleine eine ganze Promotion tragen und das können im Gesamtpaket tatsächlich nur die Wenigsten! Dazu passt auch, dass er trotz seiner Heel-Rolle von den Fans geliebt wird (eigentlich ist er dann kein guter Heel, aber er hat sich einfach den Status und den Respekt verdient). Sein Entrance bei Revolution mit der Live-Musik war der Hammer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alexiswrote on 10.04.2020:[8.0] "He is very funny, I will give you that, and from time to time, he delivers in the ring, within his limits and what his age allows him. His longevity is surely admirable, and he has his well-deserved spot on Mount Rushmore from wrestling. I have never been very deep in his career, so I just give him an 8, but he is undoubtedly a man to be respected within the wrestling industry."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jaesuswrote on 10.04.2020:[10.0] "I believe Chris Jericho is everything you could want in a professional wrestler. And the way he has reinvented himself over the years and remained relevant is incredible"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheFrenchDisasterwrote on 07.03.2020:[9.0] "Chris Jericho is actually one of the best wrestlers in the world and an absolute genius. He never stopped reinventing himself throughout his career and always came back with gimmicks all more fun and entertaining than the others. Even if it is true that his prime is long over, he remains very entertaining in the ring for someone in his fifties. I wish him many more happy years in this business. Retirement is not ready to knock on his door"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sabu316wrote on 01.03.2020:[3.0] "Gehört in keinen Ring mehr, kein Charisma, keine Interviews die begeistern. Wenn ich Jericho lese dann lasse ich die Show eher aus als einzuschalten. Verstehe nicht wieso man ausgerechnet ihn als Titelträger präsentieren muss. Klar hat er einen großen Namen aber das war es auch schon und selbst der große Name ist nicht nachvollziebahr."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Nerfair1wrote on 08.02.2020:[10.0] "Chris Jericho is my favorite wrestler of all time. An amazing worker, one the best talker the buisness ever had and he has the ability to re-invent himself time and time again. To me, Chris Jericho is the GOAT of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: alexm9wrote on 04.02.2020:[10.0] "Le Champion, The Painmaker, Y2J, The Ayatollah of Rock 'n' Rollah - Chris Jericho, is undoubtedly one of the all time greats. With some of the best mic skills ever seen, and consistently brilliant in-ring performances, even as he approaches 50, the first ever AEW World Champion has certainly carved his spot on the Mount Rushmore of professional wrestling, and has cemented himself as one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jackleonewrote on 23.11.2019:[10.0] "I realized that it was natural for Chris Jericho to become one of the greatest wrestlers of all time. He started as a young lion in Japan, then he had an amazing career in WCW and an even better one in WWE as their world champion and a lot of times intercontinental champion. More than that, he can change his gimmick with creativity and he has a lot of great ideas. But I think he improved so much after his 40 years, developing into an impressive overall wrestler that can do everything. He proved it in NJPW and later in AEW, becoming AEW champion at 48 years old. He will always remembered as one of the greatest of all time. His feuds with Angle, Benoit, Stone Cold and The Rock are great, he's a true legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Same Old Same Oldwrote on 13.10.2019:[10.0] "Back in 1999 onwards, even not having watched much WCW, Chris Jericho fast became on of my all time favourites on arrival in WWF because yes, he had those killer promos, face or heel but he also had the energy and, given the brawling scrappy style of the Attitude era, unqiue offence that set him apart. Since then Jericho is proof you can stay relevant for decades, from his multiple returns, fresh gimmicks and promos, great matches (v Michaels springs to mind) and just when you think it couldn't get any better with his very fun run with Kevin Owens, he turns up in New Japan and has a barn burner of a run leading to AEW now, which he is easily the biggest draw for me. Since then I've gone back to WCW and even Smokey Mountain to see he's been doing this long before I even knew him. On top of that, his podcasts, interviews, books and insights into the business are fantastic and comes off very genuine and likeable at the same time. Also the man got the word "it" and a clipboard over in record time! HOW! ? But but did."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Brainbreakerwrote on 11.10.2019:[10.0] "(05/2009) Als er 2005 die WWE verließ, sah ich das nicht gerade als großartigen Verlust an. Jericho wirkte ausgelaugt, seine Face-Auftritte bis kurz vor dem SummerSlam waren relativ langweilig geworden. Von einem World-Title-Gewinn war er zu dieser Zeit weit weg. Allgemein hatte man das Gefühl, dass er seinen Zenit längst überschritten hatte. Mit seiner Rückker und der fantastischen Heel-Performance gegen HBK wurde ich eines besseren belehrt. Dieser Jericho hatte nicht mehr das ausgelutschte, aufbrausende möchtegern King-of-the-World-Gimmick. Dieser Jericho verkauft seine eigene Story als unterrepräsentierter Wrestlingstar in einem neuen, eiskalten, kalkulierenden Heelgewand. Mehr als sehenswert! EDIT (11/2016): Im Interview gab Y2J an, dass der 2016er einer der besten seiner Karriere sei. Und tatsächlich hat sich der Meister des Gimmick-Makeovers (nach gewohnt längerer Einarbeitungsphase über Fehden mit Styles und Ambrose) wieder einmal selbst neu erfunden! Diesmal gibt er den versnobten Veteranen, der sich total naiv mit dem Top-Heel des Main-Rosters verbündet. Die Story ist nicht nur genial, weil das Back-stabbing schon offensichtlich in der Luft liegt, sondern weil Jericho im Zuge des Aufbaus das Snob-Gimmick mit seinen Catchphrases auf die Spitze treibt wie eh und je. Ein weiterer Title-Run wäre hier angebracht! EDIT (10/2019): Ich weiß nicht, was ich noch zu Jericho sagen soll... da verlässt er die WWE, erobert kurzzeit NJPW, liefert die besten Matches seit 10 Jahren ab, geht zur neu gegründeten AEW Liga, wird dort erster World-Champ, gründet das heißeste MainEvent-Heel-Stable aus Newcomern und Oldies, und wirkt in seinem Altrocker-Gimmick vital wie lange nicht. Ich glaube ich hatte zu viel von dem Bubbly, aber Jericho ist einfach unfassbar!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Matt Mackswrote on 10.10.2019:[10.0] "He keeps reinventing himself almost 30 years into his career. From the '1004 wrestling holds' to 'RAW is Jericho' to the 'Best Wrestler in the World today' to 'the List' to 'Le Champion' -- and I probably forget a couple of highlights. Jericho has earned the right to call himself one of the greatest North American wrestlers and entertainers of all time, and he gladly let's everyone know about his right. One of the greatest workers not only in-ring, but on the microphone as well, and certainly one who has understood the social media age and uses it to further establish his gimmick. Jericho's always working. And I am glad he does, because despite showing signs of age in the ring, obviously, his 'never-stale' character building and established legitimacy alone make all his appearances noteworthy and important."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wrestling Foreverwrote on 10.10.2019:[10.0] "Ich muss nicht viel über ihn schreiben. Er ist eine der besten Wrestler aus Kanada (ja er ist in NY geboren doch in Kanada aufgewachsen) und eine absolute Wrestling Legende. Er hat überall gewrestlet um so Erfahrung zu sammeln. Chris hat unfassbar viel Charisma, ist man Mic genial, und ein absoluter Allrounder der perfekt die Face und Heel Rolle spielen kann und zu jeder Zeit wechseln kann. Chris ist auch einer der der WWE treu blieb. Er macht immer wieder Pausen da er ja auch mit Fozzy auf Tour ist. Er hatte schon immer zwei Träume er wollte Wrestler und Musiker werden. Er hätte zu jeder Liga gegen können und auch dort wrestlen doch er tat es nicht er kam immer nur zur WWE zurück. Edit 06. 12. 2016 Es ist inzwischen ungewohnt ihn mit Schnauz zu sehen. Jahrzehnte war er rasiert, trug einen langen Kinnbart oder einen dünnen Bart aber nun mit Schnauz und Schal dazu seine Liste so genial wie der Mann es immer wieder schafft sich zu verändern auch mittlerweile ordentlich an den Arme mit Tattoos besetzt. Edit 10. 10. 2019 jetzt gibt es auch bei AEW viele Veränderungen bei ihm."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wrestlefan20wrote on 03.09.2019:[10.0] "Great on the mic and in the ring. Can work as a heel and a face. Has a lot of charisma. He can also successfully reinvent himself, keeping people's interest in him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KyleEnjoysWrestlingwrote on 27.07.2019:[10.0] "One of the best ever. Continually willing to reinvent himself to remain fresh. Great in the ring & had amazing matches with dozens of greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheV2wrote on 19.07.2019:[9.0] "One of the best all-in-one packages. In the ring he's a great storyteller. He's one of the rare wrestlers who turns shit into gold. Especially as a veteran he was amazing at putting younger talents over. Both his face and his heel-oriented styles are good, but at the moment (before AEW All Out) he's a little bit struggling to find uniqueness."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JustAWrestlingFanwrote on 27.05.2019:[10.0] "The king of reinvention. Charismatic like no one else. Still great in the ring for his age. Jericho is Amazing and he has been amazing for the last 20 years. P. S. He is also a great singer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RoderickStrongGuywrote on 19.04.2019:[10.0] "In my opinion he is the Greatest Of All Time. He is the one of the best in mic, great in ring and he always been a awesome heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheGorgis309wrote on 15.04.2019:[10.0] "Chris Jericho may very well be the greatest wrestler of the 21st century. The man is insanely talented, both in the ring and on the mic, and continues to consistently deliver great matches despite being 48 bloody years old. His blend of Mexican, Japanese and American styles of wrestling is nearly unmatched in the modern wrestling world and the guy could drag a good match out of a damn broomstick. Hell, this man got a pot plant and a clipboard over, what can't this guy do. Although Jericho is still great in the ring, he is clearly in the twilight of his career. Go out of your way to see Jericho wrestle while you still can, it's a sight to be seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: zephyrwrote on 19.03.2019:[8.0] "I would have considered him one of the all time greats if he just retired. But he's still wrestling today and I really can't get into his stupid scarf and his weird boring matches anymore."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MitsuharuMisawawrote on 09.03.2019:[6.0] "He is not of my favourite persons in the wrestling industry. I agree he is a great entertainer and good on the mic. But he is less good in the ring than outside. He is not bad nor great. His matches with Naito are disappointing."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JEK 1991wrote on 31.12.2018:[10.0] "Excellent wrestler! He is an all rounded in many different ways in wrestling. From moves to roles to mic skills to entertainment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ZestyZuluWarriorwrote on 17.12.2018:[10.0] "Probably my favorite wrestler of all time and the argument could be made very easily that he's the G. O. A. T. You can't even say "in his prime he was... " because he is still incredible just as he was when he was younger. The man is 48 years old and is putting on 5-star matches. He's put on some of the greatest matches ever in WWE and he's left a mark on any company or continent he's wrestled on. Insanely entertaining on the mic and he's able to pull off a heel or face character flawlessly."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Steamboat2511wrote on 29.11.2018:[10.0] "Chris Jericho - Y2J als Gesamtpaket gehört an die absolute Spitze in jeder Wrestler-Wertung. Er ist unglaulich charismatisch und dabei einer der wenigen, die als Heel ebenso perfekt funktionieren wie als Face. Y2J ist pure Unterhaltung. Seine Matchqualität ist stets äußerst hoch und er vermag es, die meisten Gegner zu einem guten Match zu führen. Seinen Fährigkeiten im Ring nach gehört er ohnehin zu den besten überhaupt. An die absolute Spitze gehört er auch im Bereich Mic-Work. Seine Präsenz und Eloquenz ist wirklich herausragend. Einzig das wahre und größte Zugpferd der WWE zu sein hat er nie wirklich geschafft, wenn gleich sein Wert für die Company stets unermesslich hoch war. Das reicht für meine Top 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Amico Leonardwrote on 10.11.2018:[10.0] "I am a big Undertaker and Shawn Michaels Fan but to an objective point of view Chris Jericho is probably the best performer in the modern era of pro wrestling. He has done it all and revolutionized all . He has been a cruiserweight in his early carrear, classical technical cruiser with great charisma (In WCW/ ECW ), he has been a showman and a great mic man in his early run in WWF/E , he has been a great heel character and a proclaimed great worker in his second run (after the Save Us character) ... he was called the best in the world already 10 years ago. He is in my opinion the greatest heel worker ever and now he is a rebel legend in njpw. I think that rarely in wrestling history we have seen such a technical wrestler combined with the ability in charisma mic skills and with a great character to portraying in the ring (himself is his character). How many matches, great matches we had from Y2J , how many funny moments.. we had milestones of pro wrestling, incredible feuds and matches : the ones with HBK, with The Rock , Angle,  Mysterio, his feud with Goldberg in WCW and nowadays his feuds with Omega ... just to name some of those. Jericho is a wrestling genius a modern day Superman (writer singer wrestler) , every idea he has become something trend (you stupid idiot... come on). He is not recognized as. Legend as Hogan Rock Shawn etc but this is due to the fact that he doesn? t want to have this status he wants to be the one that leads the trama.. He could be recognized as the greatest non recognized Legend of all times. I think that the fact that makes Chris so great is his ability to recreate himself and being able to perfection to embroider the various roles on himself. The example is now in Japan where he showed a new side of Y2J more brutal evil and violent , crazy and brawler to reinvent himself and to hide his phisical limits due to the Age, coping Roddy Piper or Bruiser Brody for example . He is the only that I hope will never really retire"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KINGwrote on 09.11.2018:[10.0] "The best I've ever seen. How many times did he change character? He went from a beloved hero to a cocky heel, returned as a savior and became a suit and tie ruthless bastard, he went from the comedy List of Jericho to the bad motherf*cker in Japan, the guy can do it all, he knows what wrestling fans love, because he's like us, he's one of us, he sees what's best for HIS business, in a few years the younger ones will consider him the Greatest Of All Times."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MogGuywrote on 06.11.2018:[9.0] "One of the best in the business ever. Jericho has consistently found ways to evolve his work, character, you name it over the years. At the time I'm writing this he's currently on a great run in Japan as New Japan Pro Wrestling's IWGP Intercontinental Champion. This man (at the time of this writing) is FORTY SEVEN YEARS OLD and he will turn 48 in a few days with ZERO signs that he is slowing down anytime soon. Even at the age he is he's STILL one of the most entertaining workers in professional wrestling today. Always been great on the mic, always been a fantastic heel, always been able to get a reaction from the crowd. There's really not much this guy cannot do. The only reason I'm not giving him a 10 rating is because he's never been a great (baby)face (this is my own personal opinion, I know many people think he is an amazing face, but I've never really felt that way about Y2J), but to be honest, he's not a natural in that department anyway, but even when he did work as a face, while not great, he put his all into it. Future WWE HOF."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TylerWhitewrote on 31.10.2018:[10.0] "Der beste Wrestler aller Zeiten und das perfekteste Gesamtpaket, das es jemals im Wrestling gab. Im Ring könnte man sich streiten, ob Techniker wie Bret Hart, Shawn Michaels oder Kurt Angle besser waren als er, doch egal wie weit man die Liste der großen Techniker noch aufzählen will, wird keiner dabei sein, der ein nur Ansatzweise so perfekte Gesamtpaket bildet wie Chris Jericho. Auch gibt es ähnlich starke Micworker wie etwa Steve Austin oder The Rock, jedoch sind diese auch nicht im Ansatz so gut im Ring wie Y2J. Seinen Legendenstatus hat er schon lange und dennoch ist seine Karriere so dermaßen Konstant, dass er sich heute noch auf einem Absoluten Karrierehöhepunkt befindet. Das liegt natürlich auch daran, dass er sich immer wieder verbessert und erneuert, was ihn auch von allen anderen unterscheidet. Wenn ich einen wirklich besten Wrestler aller Zeiten aussuchen müsste, wäre das ohne Frage Chris Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RatingsMachinewrote on 12.10.2018:[8.0] "Chris Jericho is another wrestlers whose longevity has caused people to overrate his talent. At his in-ring peak, Jericho was great but not all-time great. And whilst Jericho is smart for constantly reinventing himself to stay fresh. he's still a guy who has to pick and choose his spots, and has been for quite some time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kuzma334wrote on 09.09.2018:[10.0] "4 words - G. O. A. T! Chris Jericho always been an interesting character. Greatest Mic-talker in business, good In-Ring Peformer, Jericho had an interesting and new gimmick every time and he's damn charismatic, greatest heel in WWE history and a normal face. Now Jericho stayed in NJPW and i am very happy for him, Chris tries something new for himself because Chris Jericho loves wrestling and again wants to come up with something new for himself. So creative. Greatest Wrestler Of All Time!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: pappahousewrote on 04.09.2018:[8.0] "Ein riesiger Entertainer und einer der ganz Großen am Mic. Auch im Ring ist er ein guter bis sehr guter Techniker. Ich persönlich finde es schade, dass er nicht mehr in der WWE ist. Ich persönlich hätte mir noch irgendwann ein weiteres Mic-Duell mit The Rock gewünscht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jan23kidwrote on 21.08.2018:[8.0] "Ich hatte Chris Jericho lange bei 5 Punkten, aber seit er weg von der WWE ist, ist er wieder ganz weit vorn. Leider kann ich die vielen schlechten Auftritte, die er für die WWE hat hinlegen müssen, nicht ganz vergessen. Anderenfalls würde ich wohl sogar 9 Punkte geben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Klabauterwrote on 26.06.2018:[8.0] "Ein großartiger Wrestler, der so ziemlich alles erreicht hat, was man erreichen kann und sich auch am Ende seiner Karriere nicht zu Schade ist sich für aufstrebende Talente hinzulegen. [UPDATE 26. 06. 2018] Einen Punk Abzug für seinen NJPW-Run, bei dem sich einfach sein Alter zeigt und zu dem ein unnötiger Titelgewinn gehört."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: taabr2wrote on 04.03.2018:[10.0] "One of the all time great wrestlers. Chris Jericho is absolutely the complete package. He is pretty much great at everything thing he does, the best in the world you might say. Jericho's greatest asset is he ability to adapt and willingness to try new things and take risks and so far it has paid off."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Oliver95xwrote on 07.02.2018:[10.0] "Einer der besten aller Zeiten und das immer noch trotz seines hohen alters. Es gibt kaum einen besseren am Mic als Chris Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CHN325wrote on 31.01.2018:[10.0] "One of the best all time. Truly loves the business and understands it better than anyone. Can reinvent his character and change from face to heel and back again so seamlessly that it is insane. His ring work was great in his prime, and even with age he can keep up with guys ten or twenty years younger than him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SED12345wrote on 14.01.2018:[10.0] "The greatest wrestler of all time. He's 47 and wrestles better than most 30 year olds. He's one of the greatest faces and the greatest heel of all time. His ability to change his character is unbelievable. One year ago, Y2J was the scarf-wearing, list using best friend of Kevin Owens. A year before that, he was "Dad" Chris Jericho. Currently, Y2J is the most violent man in New Japan Pro Wrestling. He's had some of the greatest matches of all time with Chris Benoit, Kurt Angle, The Rock, Eddie Guerrero, Dean Malenko, Shawn Michaels, Edge, CM Punk, Kenny Omega, and more. Oh yeah, and he's the lead singer of a rock band called Fozzy. Y2J is my hero."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dragon Fighterwrote on 20.11.2017:[10.0] "One of the greatest of all time for sure at least in wwe history. Great in ring work with a lot of excellent, memorable matches in his career. He put over his opponents so many times. Phenomenal on the mic, too. Quite charismatic, too. His character is refreshed all the time and totally entertains the audience. His character work in 2016 as gift of Jericho or list of Jericho was absolutely gold. Now he isn't good as he used to be, but I still can't give him less than 10. A GOAT, A HOF. Much respect for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ianlapierrewrote on 04.11.2017:[7.0] "Chris Jericho has fantastic longevity. He's put on fantastic matches throughout his career. I don't think he's one of the top 20 elite. Nonetheless, he's one of the most charismatic and entertaining of his era."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Big Blue Machinewrote on 02.10.2017:[7.0] "There is no doubt Chris Jericho is a legend: he has been one of the finest wrestler of the 2000s', thanks to his techical and athletic, nearly cruiserweight-esque style and his rockstar persona. But since Wrestlemania 28, he's nothing but the shadow of that incredible wrestler, and he's tarnishing his legacy with slow-paced, hard to watch matches that shows only that he should retire."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Paul Allainwrote on 04.09.2017:[8.0] "His career had highs and lows, including many years in WWE where he was either a part-timer or stale. Nevertheless, the charisma, the polyvalence and the ability to re-invent himself made Chris Jericho an enduring performer that truly deserves to be recognised asan elite wrestler in his best years."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: popsietnetnwrote on 14.08.2017:[10.0] "I think Jericho is one of the best ever because of his versatility. He made his marks in ECW, WCW and WWE, granted them all with classics match. He can wrestle cruiserweight, technical or heavyweight style with garanteed good performances. He's also gifted with natural charisma and his skill on the mic is one of the best ever. Was is unique to Jericho though is how he can performs both face and heel and get so much heat, I never see that before. So a real professionnal wrestler who can do anything, a flawless career and always pulling good matchs from rookies and veterans alike. The sole little thing I thing he can't do is main-eventing - he do from time to time but never it was a huge success, his only flaw."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ChristianMB1wrote on 27.07.2017:[8.0] "Outstanding mic work and good psychology, but his athleticism and move-set is lacking. Not quite good enough to be at "legend" status, but certainly has had a great, very long career that is still ongoing (albeit on a part time schedule"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mizzle Assault Antwrote on 12.06.2017:[9.0] "I spent a long time thinking of Jericho as a 10 based on reputation, but after watching more and more of his body of work I have to go just a little bit lower. He's very much a "best of" or a "greatest hits" wrestler, and some parts of his career are kind of a chore frankly. The fact that he worked in Mexico and Japan is well documented, but it's rarely discussed that he was never really very successful either place. His early WCW work is also extremely bland and he took quite a while to put it all together. Once he hit his run as a heel in WCW he was on another level though, make no mistake, and continued it into his WWF run. Unfortunately his title run faltered, through no fault of his own, and his next several years are a mixed bag before he took some time off for his music career. When he came back there was a lot of excitement but once again he found himself flopping, until a brilliant heel turn launched him on the best run of his life. After leaving again he came back with mixed results and over time it seemed he lost a major step lost in the ring, but eventually turned things around one last time with the infamous "list" character. In the ring he has many classics, but there are also times when he's over-ambitious and tries to be more athletic than he really is. He's a guy who is brilliant as a heel and a character, but does have his share of flaws over the years."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: flashbackwrote on 06.06.2017:[9.0] "Has had a lot of great phases & runs throughout his career, which is still impressively going strong even today. He is starting to show his age a bit, although he looks pretty damn good considering. I hope the guy bows out sooner rather than later because I really don't want to see him as one of those old Ric Flair types, holding onto the spotlight for too damn long. His introduction into the WWF was one of the best and most memorable entrances ever."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Adaskerrwrote on 10.05.2017:[10.0] "Truly a GOAT, if RAW or SmackDown was about Chris Jericho talking for 3 hours I would still watch it with a joy. And despite he's 47, Y2J can still put on a great match. Legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PhantomCommanderwrote on 09.05.2017:[9.0] "Ein Vorbild für alle , , älteren" Wrestler. Wo Wrestler wie Kane oder auch Golddust ihren Ruf durch konstantes jobben oder total lächerliche Gimmicks bzw. Storylines zerstören zeugt Jericho, dass es auch anders geht. Charismatisch sowie am Mic Top die Kombination mit und gegen Owens hat das ganze sogar noch unterhaltsamer gemacht. Solch einen Run hätte ich selbst Jericho nicht mehr zugetraut. Die List of Jericho , die stupid Idiot rufe haben mich konstant sehr gut unterhalten. Die In-Ring Skills von Jericho würde ich heutzutage mit Einbeziehung seines Alters als befriedigend deklarieren. Insgesamt einer der wenigen WWE Wrestler der eine RAW/SmackDown Ausgabe im Alleingang sehenswert macht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jobbswrote on 08.05.2017:[10.0] "I'll be honest in saying that this man is truly one of my all-time favorites. I've seen a few bad matches of his but there was never a time where his work didn't bore me to death overall. He can adapt to those he is in the ring with and has tremendous character work and just can reinvent himself to catch up with the times and it's amazing to see as well. Been a favorite of mine for years and I have a feeling it's gonna be staying that way as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JBeckett02wrote on 07.05.2017:[10.0] "Jericho's 2016-17 run was by and large the best of his career. He made otherwise boring RAW shows interesting during his long running storyline with Kevin Owens (easily one of the best built WWE angles in recent history) and despite naturally slowing down in the ring, Jericho has made up for it tenfold with his latest character. His constant ability to reinvent himself and his still excellent in ring ability single out Jericho as one of the greatest professional wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: awsmpwniewrote on 24.04.2017:[10.0] "Der Typ ist einfach genial. Ob als Face oder Heel. Am Mic ist er grandios und seine Promos sind top. Im Ring war er mal absolute Spitze, mittlerweile nicht mehr, aber immer noch sehr sehenswert. Weit mehr als manch andere.  Bleibt nur noch eins zu sagen:"Put me on your list! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Blood Pumpwrote on 30.03.2017:[7.0] "While I give him all the credit in the world for his creativity, longevity and ability to reinvent himself at a whim, I never honestly connected with Jericho or any of his gimmicks on the same level others clearly have. He has all the tools. He can talk, he can perform, he can sell and he can whip out catchphrases at a moments notice but hes not exactly amazing at any one thing. Hes an all arounder but he kinda annoys me sometimes whether hes face or heel. Hes been in some of my favorite matches for sure, but I just don't get the hype or overwhelming love hes always been given, especially as of late."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SomeDudeOnTheInternetwrote on 30.03.2017:[10.0] "Das wahrscheinlich beste Gesamtpacket in der WrestlingGESCHICHTE. Angefangen in Japan, Mexico und danach bei ECW wo seine Matches zu der Zeit und bis heute noch sehr gut und einzigartig waren. Bei WCW mit seinem späteren Heelturn und seinem Lionheart und The Man With 1004 Holds Gimmick war er eine absolute Granate am Mic und der absolute Underdog Entertainer. Seine Matches bis dato gegen Eddie Guerrero, Dean Malenko, Rey Mysterio usw. bestochen durch sehr guter Technik gepaart mit Highflying Moves. Bei der WWE als erster verdienter Undisputed Champion der den WCW und WWE HW Champion tragen durfte. Seine Fehden um die Zeit bis 2008 mit Shawn Michaels waren allesamt sehenswert und er begeisterte am Mic und auch im Ring. Danach vermisste man einen kleinen Höhenflug für Y2J, dennoch war er nie langweilig und hat die Produkte immer top verkauft. 2016/17 wird von vielen als Chris Jerichos bestes Jahr angesehen und das zurecht! Egal was für ein Gimmick, ob Lionheart, Y2J, The Best in the World at what I do, Stupid idiot, List usw. er performed immer mit Höchstleistung und im Ring ist er bis heute ein famoser Worker.  Was soll man noch sagen.. er ist der eine unter 100 000 Wrestlern der das Zeug hat über die Jahre sich weiterzuentwickeln, viele gute Matches zu worken, grandiose Promos/Segments zu halten und durch die vielen Gimmicks zu bestechen. (10+/10)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Summerslam Fan 01wrote on 19.03.2017:[10.0] "Pures Gold der Mann.  Schon ewig dabei und ein zukünftiger HOF.  Am Mic einer der besten, im Ring auch sehr gut (immer noch).  Und auch einer der besten Heels der WWE Geschichte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Coltwrote on 10.03.2017:[10.0] "Neben dem Ultimate Warrior und Diesel mein absoluter All-Time-Favorite! Einer der besten Techniker aller Zeiten und für mich sogar ganz klar der beste Kanadier den die WWE je hatte (sorry, Bret Hart - Y2J hat einfach mehr Charisma und ist selbst technisch noch besser). Extrem gut am Mic und auch ansonsten sehr unterhaltsam, dazu viel Charisma und obwohl er viel kleiner und leichter war als die meisten seiner Gegner wirkte er NIE unterlegen oder wie ein Underdog - er hatte einfach diese Ausstrahlung von Coolness, Entschlossenheit und Überlegenheit. Man nahm ihm einfach ab, dass er selbst gegen die größten Hünen und dicksten Schwergewichtler noch ein Mittel fand um ihnen den Allerwertesten zu versohlen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LordGabrielwrote on 26.02.2017:[10.0] "I never saw a wrestler who can reinvent himself like that after a long career like Chris Jericho had. Great heel , loved by fans , can put some great matches and awesome storylines. He is actually probably the best wrestler on Monday Night Raw. I loved his match vs. The Rock and Steve Austin , but I don't know why a great wrestler like him choose to put over a lot of wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Changeling45wrote on 21.02.2017:[9.0] "One of the absolute best small guys ever.  His ability to change his character and evolve over the decades is incredible.  He's one of the best promo workers of all time and has put on terrific matches with top talents."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SuTonwrote on 19.02.2017:[7.0] "Jericho is a decent in-ring worker that got the reputation for being a great wrestler. Not an all time great, but I'll definitely praise him for his ability to get himself over, his charisma, and ability on the stick, but his in-ring work was never great. Sloppy execution of moves, awkward chain wrestling, missteps in timing, unconvincing offense, and not knowing his limitations as worker leading to some mishaps. He's never been a particularly good babyface, his selling being middling at best and his hope spots lacking urgency and fire. He was at his best playing a goofy heel with delusions of grandeur, but his work in 2008-9 is something to note. I thought he got dialed back the emotion expression too much at times and his offense rarely meshed well with the viscousness he tried to bring, though."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rllywrote on 10.02.2017:[10.0] "Mic: Fantastisch dieser Typ. Lustiger geht es eigentlich nicht mehr. Und wenn er mal nicht die Humor Schiene fährt, dann ist er dennoch hervorragend. 10/10 (25%) Promos: Seine Promos sind immer gut 10/10 (10%) Ring: Extrem gut damals und heute immer noch. Nur ist er heute logischerweise nicht mehr so schnell aber arbeitet trotzdem richtig sauber. 9/10 (50%) Gimmick: Egal was für ein Gimmick er hat, er spielt es super 10/10 (15%)   =9, 5 Punkte und das sind dann 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: One Winged Angelwrote on 10.02.2017:[10.0] "One of my favorite wrestlers ever, he is among the greatest all round performers of all time. The way he has been able to evolve and gotten over each time he has returned is a testament to just how good Chris Jericho is. The man has gotten a damn list over!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: coolserazwrote on 08.02.2017:[10.0] "He is truly the G. O. A. T. Unselfish to a fault, highly successful, great on the mic, very good in the ring. He has slowed down now because of age but he has made up for it millionfold with his hilarious heel character. He can be the evil serious heel too like he was in 2008. He can be a goofy babyface, a tough babyface. Nothing this man cannot do. Sadly, he tends to get overshadowed by others but he is a big part of why WWE is so successful. Combining him with KO has made atleast one thing on Raw must-watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Real Raterwrote on 21.01.2017:[8.0] "Ring: Im Ring etwas überbewertet, aber trotzdem ein guter. 8/10 (50%)  Promos/Schauspieltalent:Einer der besten aller Zeiten.  10/10 (25%)  Charisma/Statur/Gimmick:Leider nicht sehr Charismatisch, für mich. 6/10 (25%)  Sind dann insgesamt 8 für den King Of The World, er ist zwar ein Internet Liebling aber eine Bewertung von 9, 57 ist meiner Meinung doch ein bisschen zu hoch, da es im Ring einige bessere gibt.  = 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ZachEalywrote on 15.01.2017:[10.0] "We better have to begin considering him as the greatest pro-wrestler of all time. Not only he is a great wrestler and one of the best talker in WWE, but he also managed to reinvent himself so much time that i bet he could stay relevent until the day he dies. My favorite wrestler, and a certified HOF."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: steviecwwrote on 10.01.2017:[9.0] "One of the greatest mainstream wrestlers of all time but in-ring he is perhaps beginning to push his career length a little past its best but I am so enjoying his persona and overall work. I also feel that his 2017 WWE US Championship win was incredibly well deserved. A wonderfully storied decorated career from ECW, WCW and WWE plus Japan, Mexico and beyond."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rjsbx11wrote on 06.01.2017:[10.0] "Ingenuity, might be the best word to describe the great Chris Jericho. Jericho has done so few before have done and perfect the art of working the crowd. A rising star in WCW, before bolting to the WWF, Chris Jericho's look, fantastic promo work and star quality has always made him a focal point in WWE. From King of the World to Y2J to Honest Man to Best in the World to List of Jericho, no one has made a commitment to redefining and rejuvenating themselves like Chris Jericho has.  Jericho's in-ring work has always bee good, and he often gets overlooked by top tier talents but Jericho's always been able to make matches mean something through ring psychology, and entertaining to hide opponent's shortcoming. When the bell tolls on Jericho's career, he'll garner GOAT recognition, despite not being the top guy but simply by how he managed to maintain greatness and consistency through many phases of the industry."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: molemaster43wrote on 05.01.2017:[10.0] "There's really no man who can reinvent himself so well over so many years and always remain one of the most entertaining characters on the roster. His in-ring abilities have declined as of late, but he still remains one of the most entertaining parts of WWE today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NaGoyah09wrote on 03.01.2017:[10.0] "Hätte niemals gedacht das er sich mit einen neuem Gimmick nochmal übertrifft, aber was er zurzeit abliefert ist einfach ganz grosses Entertainment. Hoffe er bleibt auch nach WM noch 2-3 Jahre fest dabei, da würde aktuell ne ganz grosse Lücke enstehen sollte er sich wieder auf seine Musik Karriere voll Konzentrieren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LSEstrelawrote on 01.01.2017:[10.0] "Hate him if you want, he coudn't care less! The first ever undisputed champion still has it and will go down in history as a true legend. WRESTLING IS JERICHO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: test85wrote on 24.12.2016:[10.0] "Chris Jericho hat es wieder einmal geschafft und alle Kritiker eines besseren belehrt: Wo viele schon wieder von einem Flop Run sprachen belehrte er diese eines besseren. Seine 2016 Reinkarnation gehört sicher zu seinen Karrierehighlights. Am Mic gehört er sowieso zu den besten aller Zeiten. Im Ring ist er trotz seines Alters auch noch ein fähiger Worker. Es kann halt nicht jeder ein HBK sein, der mit Mitte 40 noch gelenkig war. Hoffe man vergönnt ihn noch einen World Title Run oder einen Rumble Sieg, welche ich ihm beide vergönne."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheMan89wrote on 22.12.2016:[10.0] "Chris Jericho is one of the greatest in ring talents to ever perform in the wrestling business. He has had a lot of five star matches with guys like Shawn Michaels, Triple H, AJ Styles, Benoit, Edge, etc. there are so many I cannot even count. He has changed with the times having one of the best heel runs ever from 2008 - 2009 even in 2012 and 2016 this year. I always liked him better as a heel because he can cut a very great promo as a heel as opposed to a babyface even though his catchphrases as a good guy were entertaining to watch. He has continued to re-invent himself over the years and can still perform at a high level such as his work with Styles and Ambrose this year. His programs with Shawn Michaels, CM Punk, and AJ Styles will always be remembered for years to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SanthoshVNwrote on 09.12.2016:[9.0] "Chris Jericho is the veteran who is backing up the WWE till now. Apart from the gimmick he do he is been a great wrestler who had a legendary career. I hope he gets a chance to hold any WWE title before he leaves the company. He is filled with wrestling and charisma"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SamuelElJaxonwrote on 04.12.2016:[10.0] "Always knows how to reinvent himself, which has kept him insanely fresh over the years. I can't think of a more innovative character off the top of my head that's still currently active."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: mdbnasewrote on 29.11.2016:[10.0] "Bearbeitung: Einfach gut... in allen Belangen, immer noch Mainevent-tauglich und dazu fähig, andere Wrestler over zu bringen. Für mich aber früher etwas arm an Charisma aber das hat er nun absorbiert. Darum gibt's jetzt auch die volle Punktzahl. Hat einfach alles, was ein Wrestler heutzutage braucht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AtticusFinchwrote on 25.11.2016:[9.0] "An absolute legend and a man who can find new ways to reinvent himself. He's still getting over with new catchphrases to this day. My only complaint I've ever had with Jericho is that I never found his face work very interesting. Thankfully, his later years (and current run) in the E were based around heel work. Has the ability to make anyone look good and seems to make an extra effort to help younger talent, even if he goes over. He may never have been a top promo or even a top wrestler, but he's smart as hell and managed to keep himself around a lot longer than some other top promos/wrestlers."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Winx Clubwrote on 13.11.2016:""You're gonna get....... IT"  Einer meiner absoluten Favoriten. Im Ring weltklasse, gleiches gilt für die Arbeit am Mikrofon. Ich sah ihn immer gerne und obwohl ich von seinem Face-Run anfang des Jahres schon ein wenig gelangweilt war, hat er sich wieder ganz nach oben gekämpft. Als Heel ist Jericho schon immer besser gewesen und im Team mit Kevin ist er unschlagbar. Die momentane Inkarnation Jerichos gefällt mir von all den Gimmicks, die er im Laufe der Jahre verkörperte, am besten.... welche Ironie, wenn man bedenkt, dass er vor ein paar Monaten noch mit seinem Face-Gimmick ganz unten auf meiner Liste war und sich nun ganz oben befindet. Apropos Liste: die Segmente mit der "List of Jericho" sind das absolute Highlight jeder Raw Episode. Statt nur Bemerkungen wie "Drink it in, maaaaan", "stupid idiot" und das oben genannte Zitat rauszuhauen, gibt es noch dieses wundervolle neue Extra, mit welchem er sich einige zusätzliche Pops meinerseits verdient. Raw ist nicht nur die Show von Kevin Owens, Raw IST Jericho (und das schon seit einigen Monaten).    Ob nun als Anfänger in den frühen 90ern oder als Veteran, Jericho ist und bleibt einer der besten Wrestler, die die Welt je hervorgebracht hat, volle Punktzahl."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alex Maedawrote on 05.11.2016:[10.0] "Chris Jericho ist derzeit in seinem geschätzt fünften Spätherbst seiner Karriere. Vom Comedy-Charakter bis zum verbissenen, arroganten Heel hat er aus allen seiner Gimmicks das Beste herausgeholt. Im Ring großartig und bereit, die verschiedensten Stile mitzugehen. Desweiteren hat er viele junge Leute over gebracht. Er ist wirklich der beste der Welt in dem, was er tut. Und seine Musikkarriere zeigt, dass man sogar mehr als nur einen großen Traum verwirklichen kann, wenn man an seine Fähigkeiten glaubt und beständig an sich arbeitet.  THE BEST IN THE WORLD AT WHAT HE DOES!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Astraeuswrote on 04.11.2016:[8.0] "As has been stated many times before, Chris Jericho's greatest skill is his knack for constant reinvention -- and his ability to get absolutely anything over with the crowd.  He's brilliant, charismatic, and incredibly well-attuned to his audience.  He knows exactly what buttons to push to make people love or hate him, and that's how he's executed so many different gimmicks with such success.  He can be lovable, despicable, cowardly, hilarious or sinister -- and none of these turns have felt awkward or inconsistent with the others.  Then there's his in-ring ability, which is on the decline but still excellent.  Even at 45, Jericho is more than capable of keeping up with the youngsters, and his use of ring psychology has added heat to even less-spectacular matches.  Once dismissed as "too small" to be a champion, Jericho has proved he's a giant of wrestling, and he'll go down in history as one of the sport's most innovative legends."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DanielBryan1986wrote on 25.10.2016:[10.0] "Für mich neben Steve Austin die besten Beispiele was die WCW für Talente ungenutzt ließ. Und eben so hat man immer das Glück bei WWE endlich doch aus dem Schatten zu fallen. Y2J hatte natürlich seine guten Matches bei der WCW vs Mysterio, Guerrero und Syxx. Das er am Mic was drauf hatte merkte man dann besonders vs Malenko und Nick Patrick. Als er in seinem ersten WWF Auftritt direkt mal The Rock unterbrechen durfte fand ich total genial. Weil er hier für den Main Event sich anbot. Und auch wenn er zuerst in der Uppercard mit Chyna, Angle und Benoit gearbeitet hat war er sofort dünn angesetzt zum Main Event. Dabei war er aber nie Egoistisch (siehe Raw 360 oder auch beim Summerslam 2016 Backstage). Für mich ist Jericho zu recht in Classic Matches vertreten. Wenn es Zeit wird für Chris zu gehen wünsche ich mir (Stand Heute) ein Klassiker Match mit Styles oder Rollins zum Schluss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheChinThatGotTheWinwrote on 19.10.2016:[10.0] "Currently the best and the most amusing wrestler on Raw. He's not that good in the ring anymore, even though he's still really solid, but his current gimmick is so good. His phrases such as 'IT' or 'Gift of Jericho' or now 'The List of Jericho' are priceless. He's like the only good thing about Raw today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "G. O. A. T. - In diese Konversation gehört Jericho definitiv. Selbst in seinen Mitt-40ern liefert er im Ring noch super solide Matches. Was sein Mic-Work anbelangt war er schon immer einer der Besten und momentan ist einfach jedes Segment, in dem Y2J ein Mikro in der Hand hält, pures Gold. Definitiv ein künftiger Hall of Famer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jtsilver101wrote on 15.10.2016:[10.0] "Whether a face or a heel, whether in Japan, WCW, or WWE, whether in the mid card or the main event. Jericho has always had IT. From his debut to now, 9/10 Y2J segments are gold. He has done so much for the WWE. He's accomplished everything he could. World titles, IC Titles, and the ability to leave and come back and still be loved by the fans. His most recent run has proven his ability to change and adapt to the times. Jericho is a legend and one of the few who selflessly puts over other talents. A genuine once in a life time talent"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: wolfthebeast97wrote on 10.10.2016:[10.0] "Chris Jericho is awesome! He does great regardless of whether he's a face or a heel, but it's as a heel that he's at his best. He's still very good in the ring even at 45, and his mic skills are absolutely legendary, on the level of Mick Foley and CM Punk. He's one of the main reasons why I still watch Raw sometimes. Hopefully he can get into the Hall of Fame in a few years!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheOneWhoKnockswrote on 27.09.2016:[7.0] "One of the most overrated wrestlers ever by the internet probably. Without doubt a great in ring performer for most of his career when at his best, he has to be one of the most inconsistent wrestlers ever in my opinion. Not just in-ring, but as a character and on the microphone. His WCW heel run in 1998 was magnificent, and still one of the best wrestling characters of the 90's arguably. His heel work in 2005 before he first departed WWE was magnificent also. And I love his current egotistical, mid life crisis character in which he has shown perfect comedic timing, despite being mostly trash in ring these days. Otherwise, Jericho has always been a "B Plus Player", as Triple H would put it, for the majority of his WWF/E run. His initial performances in late 1999 were poor, his Undisputed WWF title run in late 2001-early 2002 was a disaster, both due to the booking and Chris's performances, he was stagnant for a number of years after that, and I find his 2008-10 run overrated and typically inconsistent as well, with the exception of his great feud with Shawn Michaels of course, the Mysterio feud and the unexpectedly awesome Jeri-Show team. Not even going to mention anything he did between 2012-15 as that entire run/runs were terrible. Also not a fan out of the ring either. He come across as a conceited egomaniac with a high opinion of himself, he's an overbearing host on his podcast and he likes to make ridiculous statements such as "wrestling skill doesn't matter, it's all about personality and character. Chris, there's a reason why your attempts to put Fandango and Ryback over didn't succeed in the slightest."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Heavymetalhead7wrote on 18.09.2016:[10.0] "My favorite wrestler growing up still has it Chris Jericho as been able to create characters and literally become them and get over pretty much everytime. The guy still has pretty good in ring work for his age but hes slowed down some no big deal for what he loses in the ring he backs up with his entertaining personality and incredible charisma Jericho will always be one of my favorites in my opinion hes still a 10 in such a weak era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: brandonkirtonwrote on 14.09.2016:[10.0] "Hands down one of the best, knows how to evolve with the times really well. There hasn't been a time he wasn't entertaining and simultaneously putting on great matches. He puts younger upcoming stars over without a word which most guys of his stature would hardly do. Chris Jericho, thank you and keep being GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MusSanwrote on 12.09.2016:[10.0] "Um es auf den Punkt zu bringen! Er ist am Micro genial, im Ring ist er auch sehr sehr gut und vom Charisma brauche ich garnicht erst einmal anfangen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TwistOfFatewrote on 06.09.2016:[10.0] "Einer der besten oder sogar der beste am Mic. Super Wrestler seit vielen Jahren! Schade das er aktuell bei der WWE etwas unten gehalten wird. Aber es wird schon nochmal ein "Run" geben, verdient hätte er es sich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rasslin Ruleswrote on 31.08.2016:[10.0] "Er kann auf eine erfolgreiche Karriere zurückblicken, in welcher er uns viele starke Matches und schöne Momente beschert hat. Außerdem hat er sich dauerhaft weiterentwickeln können wie kein anderer. Seine aktuellen Catchphrases gefallen mir von allen am besten ("It", "Gift of Jericho", "Stupid Idiot")."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: fireballx90wrote on 30.08.2016:[4.0] "I've never been the biggest Jericho fan. I find his promos do get quite repetitive, especially with his current heel stick. His best stuff came with HBK for me, especially the ladder match which I really liked. Match wise, he had some good ones but many forgettable ones which is why he gets a 4 from me."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PWFwrote on 24.08.2016:[10.0] "Personally, the most underrated performer in the history of wrestling. Yes, he does already have a good number of acomplishments in his career. But Chris Jericho is and always was one of the most complete performers in WWE. An amazing talker that always delivered great promos. A great storyteller. A man who knew how to wrestle and who was able to produce amazing matches. A respected and faithful worker for his company (WWE). A man who innovated and reinvented himself maintaining his character fresh throughout his career. Sure, he already has a place waiting for him in the Hall Of Fame but eventhough Hulk Hogan, Shawn Michaels, The Rock, Stone Cold and John Cena carried the company, something Jericho didn't necessarily do, for everything he did and does, I think Jericho deserves to be recognized has one of the best in world at what he does. Unfortunately, I can't give him an 11, so 10 'it is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ErycK24wrote on 24.08.2016:[10.0] "I haven't been a fan of Chris' work in WWE from 2012-2015 but this year he has killed it. I was a huge fan of Jericho before his departure into a part timer in 2011. The way that Jericho puts young talent over is amazing. Edit: Y2J is a top heel that gets it done better than any other heel on the mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jamie The Rockwrote on 23.08.2016:[10.0] "Ich kann mich den sehr guten Bewertungen meiner Vorredner nur anschließen. Chris Jericho war und ist mMn auch noch heute einer der besten, die dieses Business je hervorgebracht hat. Egal ob in der WCW oder in der WWE, er hat immer sehr gute Matches und noch großartigere Promos abgeliefert und sich damit seine Spitznamen, wie "The Ayatollah of Rock'n' Rollah" oder "The Best in The World at what he does" mehr als redlich verdient. Auch bei seinen anderen Tätigkeiten wie "Fozzy" oder "Talk is Jericho" hat er mit viel Arbeit bewiesen, dass er nicht nur wrestlen kann. Wenn man ihm zum Abschluss seiner Karierre noch einen letzten Run als Champ geben würde, wäre ich vollends zufrieden. Aber auch ohne hat sich Jericho ein ewiges Denkmal im Wrestling gesetzt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ShooterMcShootwrote on 17.08.2016:[10.0] "He's one of the best guys still working in the business, even though he's lost a step or two since then due to the natural progression of time, he still is one of the legendary figures of the last 20 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jack Slaterwrote on 16.08.2016:[10.0] "Als Heel einfach das unterhaltsamste dass Sports Entertainment zu bieten hat. Ich liebe diese selbstironischen Heels und Y2J hat das einfach perfektioniert. Schon sein Run in der WCW, die Fehden mit Malenko - Die legendäre Promo - oder Goldberg. Sein erster Abend in der WWF und er geht toe to toe mit THe Rock at his best.  Seine Fehde mit Shawn Michaels Jerishow...  Und jetzt JERI-KO DIeser Kerl liefert einfach immer wieder ab Seine In-Ring Qualitäten stehen außer Frage. Dieser Kerl ist eine lebende Legende des Wrestling und hat die 10 Punkte mehr als verdient.  Und wer ein Problemdamit hat... YOU BETTER WATCH IT!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SweetestThing2wrote on 11.08.2016:[7.0] "Chris Jericho is no doubt a Legend but if you put a list of greats in front of me and i had to point out who of them are overrated he is one of them. The guy Can go from mediocre to great in no time. Y2J is one of the most inconsistent legends ever to be privileged with that title but i have no doubt that he deserves to be in the hall of fame one day. He has had classic matches with Rey Mysterio, The Rock, Triple H, HBK & many more and the man has cut some downright legendary promos but he has also let us down with his mic skills and in ring abilities especially within his last few runs."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sonny Blackwrote on 09.08.2016:[6.0] "Ich steh mit meiner Meinung wohl ziemlich alleine da, aber ich konnte mit Chris Jericho noch nie viel anfangen. Die einzige Zeit die mich interessiert hat war die Fehde mit Dean Malenko."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KevinZaynwrote on 02.08.2016:[10.0] "Meine Vorredner habend die Wertung eigentlich schon erklärt... Jericho ist mein 3. Lieblings Wrestler! (Ich mag nur HBK und Kevin Owens noch mehr) Er ist/war sehr gut im Ring. 9/10. Charismatisch wie kein zweiter 10/10 und hat/hatte eine exzellente Ausstrahlung. 10/10 Dazu ist er ein Genie am Mic 10/10. ich mag ihn zwar unfassbar gern, finde aber, dass er langsam in den Ruhestand gehen sollte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Legendkiller96wrote on 02.08.2016:[9.0] "Eine Legende, die schon solange bei der WWE ist, das ist unglaublich. Sein Charisma und sein Micwork ist herausragend und verdient ganz klare 10 Punkte. Im Ring finde ich ihn jedoch nicht überragend sondern nur sehr gut, 8 Punkte. Langsam jedcoh könnte man an ein Karriereende nachdenken, denn man hat alles schon gesehen und nichts ist mehr wirklich interessant. Aber wenn er in Fehden noch neue Talente pushen kann, ist das auch gut aber er selber brauch kein Push mehr."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JokeyZockeywrote on 26.07.2016:[10.0] "Eine lebende Legende des Sports! Er hat einfach alles: Im Ring schon immer ein guter Techniker, der viele gute Matches hingelegt hat und es teilweise immer noch tut, am Mic einer der besten Trash-Talker mit ausreichendem Charisma. Besonders sein aktueller Run zeigt einfach, dass er es immer noch drauf hat. Ich finds vor allem gut, dass er sich quasi bereit erklärt hat, neue Talente over zu bringen, das zeugt von seiner Freundlichkeit und Leidenschaft für das Business. Zum Schluss bleibt nur noch eins zu sagen: YOU ARE A STUPID IDIOT!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GeekLogicwrote on 25.07.2016:[9.0] "I don't see how anyone can be a true fan of wrestling and not, at the very least, be able to give you 5 of Jericho's top moments right off the top of their head. The only reason I am not giving the Lionheart a 10/10 is absolutely due to him lingering around the WWE, not doing much of anything other than wasting our time.   Armbar.   That being said watch his NJPW, ECW, and earlly WCW matches to gain a great appreciation for an amazing wrestler and a pretty fantastic entertainer. My personal favorites are his promos on Nitro and his wrestling in ECW.   Armbar."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Randomuser12345wrote on 03.07.2016:[9.0] "Jericho described himself as "The George Harrison of the Attitude Era". Talented, but overshadowed by the colossal legends he was surrounded by, namely The Rock, Austin, HHH, Undertaker, Foley, etc. While this may have stifled his ability to be a true main event player, he has consistently entertained on screen for almost 20 years now, going through multiple character changes. It's incredible the way he can get absolutely anything over. The George Harrison comparison rings true for his ring work also. Very good, but you're always gonna be second best when compared to a Benoit or a Guerrero. Still, he has been one of the greatest TV characters/performers of the past 20 years, and even in 2016 at the age of 45 he is not just keeping up with the rest of the locker room, he is outdoing them. Y2J will not be denied."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NHJ2190wrote on 22.06.2016:[9.0] "Begnadeter Wrestler, begnadeter Micworker hatte seine absolute Hochphase zwischen 2000-2010. In den letzten Jahren hat er meiner Meinung nach etwas nachgelassen. Das schlägt sich leider auch in seinen Matches wieder, die nicht mehr die ganz großen Feste versprechen. So waren z. B. die Matches gegen AJ Styles wirklich gute Matches, aber eben keine überragenden Matches wie z. B. Matches gegen Chris Benoit oder HBK. Nichtsdestotrotz einer der besten seines Faches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AMHTPwrote on 21.06.2016:[8.0] "Jericho is a hard one to rate for me.  Obviously he's had a fantastic career, but how much should that weigh against his recent performances?  When is it time to start evaluating a talent's legacy as opposed to his current role?  Trying to take both sides into consideration, I'm going to give him an 8.  He's always been a top-tier promo, capable of delivering consistently on the mic in a variety of different roles.  He's funny, he's charismatic, he's a great character actor... and of course his work between the ropes speaks for itself.  His high-flying these days isn't terribly spectacular, in a world where we have Neville and Kalisto putting Cirque du Soleil to shame, but he was groundbreaking during his original Japanese run and his technical wrestling is still excellent.  I do think that Jericho's most impressive skill of all -- his ability to adapt and take on countless different characters -- has waned a bit with age, as has his ability in general.  But at his age, is that really surprising?  He still plays a great heel, and is well-suited to his current role of putting over younger talent.  And when all is said and done, he's going to headline whatever Hall of Fame class is lucky enough to immortalize him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: sXe27wrote on 20.06.2016:[10.0] "Der Prototyp eines kompletten Wrestlers. Gesegnet mit Unmengen an Charisma, am Mikrofon abseits des Catchphrase-Runterratterns talentiert wie kaum ein zweiter und im Ring über jeden Zweifel und Stil erhaben. Kann nahezu mit allen Workern zumindest ansehnliche Matches hinzaubern und nimmt sich selbst nicht allzu wichtig und ernst, sodass bereits einige junge und mittlerweile etablierte Wrestler von einer Zusammenarbeit mit ihm profitiert haben. Teilt sich zudem mit mir einen überaus albernen, goofigen Sinn für Humor, weswegen ich ihn wohl schon zu meinen Mark-Zeiten in der WCW trotz seines Heel-Charakters toll fand. Und wenn man die ganze Lobhudelei beenden möchte, fällt einem noch ein, dass er auch noch etwas geschafft hat, was nicht viele von sich behaupten können - er hat sich über die Jahre immer wieder neu erfunden, was insbesondere vor ein paar Jahren im Ablegen des "Y2J"-Charakters gipfelte. Einen solchen Herbst in seiner Wrestlingkarriere haben nur ganz, ganz wenige vor ihm erleben können. Alles in allem, sollten junge Wrestler fragen, wen sie sich als Vorbild nehmen sollten; Chris Jericho sollte ganz weit vorne sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JordanACEwrote on 18.06.2016:[10.0] "Best in the world at what he does - couldn't have been more accurate!  Jericho, In my opinion, is the greatest wrestler to have ever step foot inside a WWE ring (Along with Foley and Eddie).  One of the best mic workers ever, puts on amazing matches (even to this day), knows how to work a crowd and probably the greatest character during his 2008-2009 run.  Without a doubt, Chris is my all time favorite wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WrestleArtswrote on 14.06.2016:[9.0] "Guter Wrestler, wenn auch nie in der Liga der sehr Guten, was u. a. an der fehlenden Athletik liegt. Als Heel sehr gut am Mic, als Face höchstens mittelmäßig, ein hohes Maß an Charisma besitzt er nicht, auch wenn ihn sein selbstbewusstes Auftreten manchmal so erscheinen lässt. Hat gemessen am Skill-Level das Maximum erreicht und kann auf eine großartige Karriere zurückblicken, sollte jedoch langsam die Stiefel an den Nagel hängen. Sein Gimmick ist mittlerweile ausgelutscht, sein In-Ring Work hat deutlich nachgelassen, seine Promos haben wir mittlerweile doppelt und dreifach gehört und die Scott Norton-Gedächtnis-Wampe ist auch nicht schön anzusehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: finest0000wrote on 12.06.2016:[10.0] "Zu Chris Jericho, gibt es nicht viel zu sagen. Einfach einer der besten im Ring, am Mic und im Gesamtbild. Als Heel immer wieder super und ein richtiger Jackass."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HowUDoingwrote on 04.06.2016:[10.0] "Chris Jericho. Als Face klasse. Als Heel Weltklasse. Er ist sich nicht zu schade, um sich für andere hinzulegen, trotz seines Standing in der WWE. Er weiß wie er heat zieht und er weiß auch zu unterhalten.  Dieser Mann ist einfach nur Top und einer der Besten !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wrestlinglexikonwrote on 24.05.2016:[8.0] "Jericho ist in allem Belangen stark. Am Mikro über jeden Zweifel erhaben und mit Charisma für 3 Leute ausgestattet.  Er hat viele unvergessliche Promos und Fehden abgeliefert und war für mich(vor allem in der WCW) oft der showstealer des Abends-unabhängig von seiner Position auf der card. Mit 45 hat er natürlich etwas abgebaut-aber wer hat das nicht? Bei ihm kann man kaum was bemängeln außer einer Sache die mich aber gewaltig stört. Er called-und das z. T sehr offensichtlich und laut. Evtl. bin ich da zu pingelig aber mich nervt es als Zuschauer schon wenn mir der nächste move verraten wird-vor allem wenn die Situation so offen ist, dass die Aktion kaum absehbar wäre. Und auch wenn Jericho wirklich ein Topmann im Ring ist, steht er mmn etwas unter Leuten wie Angle, Benoit oder Styles (auch zu seinen besten Zeiten). Deshalb gehen bei mir "nur"8 Punkte. Dennoch-der Kerl ist auf jeder card Gold wert. :)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rastarazor1970wrote on 13.05.2016:[8.0] "My idea & opinion of a particular wrestler. Good guy or bad guy got to have some swagger, look good body and outfit. Know how to talk smack or shut it down, and of course have some skills, moves and ability.  Outfit: 7 Body build: 7 Swagger: 7 Smack Talker: 7 Ability: 8 Moves: 8 Single: 8 Tag Team: 8 Longevity: 9 *Comment: Little bit of flash and a high flyer Overall Rating: 7. 6"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DB992wrote on 12.05.2016:[10.0] "Was the best ever in the 2000s. Gained far too less for his incredible abilities inside and outside the ring.  In 2010s he still is one of the most dedicated performers around, always contributing to help the fellow wrestlers with his classic heel antics. Truly, one of a kind. I find it regrettable that he's being bashed recently for being able to pull just "good matches" (*** and ****) instead of his usual five-stars matches, like he did in the second half of the 2000s versus, say, Mysterio and Michaels.   Dude is 46 years old, though, and still performers better than 80% of the WWE roster. You can't honestly find many performers who are able to do that. Chapeau Y2Jackass, from a stupid idiot of yours truly."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: avbiswaswrote on 04.05.2016:[6.0] "He used to be one of the greatest. Had this been 2008, he would get a 10. But in 2016, his form has dipped quite a lot."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: awesomepunkwrote on 20.04.2016:[10.0] "Nicht um sonst sagt er, dass er der beste auf der Welt ist, indem was er tut. Vielleicht ist er nicht der beste aber sicherlich einer der besten. Über Jahre absolut unterhaltsam. Am Mic wirklich spitze und auch im Ring sind seine Matches absolut sehenswert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mean Smark Callouswrote on 13.04.2016:[10.0] "quite simply one of the best ever. outstanding mic skills, ring presence, and moveset. makes a great face or heel. can get a good match out of just about anybody. I knew when he started out in WCW that he would be a star one day, he clearly had "it" also has a great light up jacket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: blackmileswrote on 05.04.2016:[6.0] "Irgendwie konnte ich mit Jericho nie viel anfangen. Bei ihm ist das ganz komisch. Er hatte seine Aktionen wo ich ihn Unmenschlich fand. (bsp. Debüt) Aber größtenteils fand ich ihn höchstens eine 5. Ich versuche es mal ansatzweise zu Begründen. Im Ring ist er für mich eine 7/10. Am Mic ist er für mich ein guter Host. Er hat ja auch seine eigene Show, aber wenn es dann zu einer Fehde kommt finde ich ist er sehr auf Cheapheat bzw Pop angewiesen. 7/10. Jetzt kommt das für mich fragliche, Wo ist denn seine Ausstrahlung? Hat er sie jedes mal wenn ich ihn sehe zu hause vergessen? In Sachen Charisma und Ausstrahlung ist er eine 1/10. Ist insgesamt eine 4/10. Wegen seiner grandiosen Karriere gebe ich noch 2 drauf. Kann mir das mal bitte einer Erklären?"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WrestlingNerdwrote on 19.03.2016:[10.0] "Man kann sagen was man will, aber Y2J ist einfach ein Wrestling Gott. Einer, wenn nicht sogar der beste am Mic, der sowohl als Face wie auch als Heel ordentliche Promos halten kann. Zudem auch jetzt noch im Ring einer der aller besten. Natürlich nicht mehr so stark, wie noch vor 10-15 Jahren, jedoch noch immer einer der besten. Würde sogar fast schon sagen, dass ein kleiner Titelrun, US-Titel z. B. , ihm noch ganz gut zu Gesicht stehen würde.  Aber sowas wird wohl nur ein Traum bleiben. Trotzdem allein wegen den Jahren im Wrestling, glatte 10 von 10 möglichen Punkten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: James Dean Wrestlingwrote on 09.03.2016:[9.0] "Fantastic wrestler.  Another personal favorite. WCW was a high time for him and the WWF jump just pushed him out to the masses. His mic work is awesome and he has shown complete versatility. He could be the goofy, jokester. The asshole, or the serious heel you hated. His ring work overall is amazing and he is one of the all time greats. Love Y2J."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Longa-46wrote on 07.03.2016:[10.0] "Chris Jericho ist einer der besten Gesamtpackete in der WWE. Im Ring ist er sehr gut, am Mic einer der besten. Außerdem besitzt er eine Klasse Ausstrahlung und Charisma ist ebenfalls sehr viel vorhanden. Seine Rolle als Heel 2008/2009 war für mich legendär, man muss bloß an seine Fehde mit HBK denken. Insgesamt einer der besten in der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rodberrywrote on 21.02.2016:[10.0] "If he isn't the best total-package in WWE history he's surely as hell very close to it. Incredible in-ring skills, extremely gifted at the microphone, versatile, able to reinvent himself at the proper time, very smart and able to connect with fans and the business alike. Hats off to a living legend we're lucky enough to still see performing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheLoudMouthwrote on 17.02.2016:[10.0] "Ganz klar einer der Besten im Wrestling-Business. Genial am Mic, hervorragend im Ring, sehr starkes Gimmick und massig Charisma. Gibt kaum ein besseres Komplettpaket als Chris Jericho. Überragender Worker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 1bolieverwrote on 12.02.2016:[10.0] "In my opinion, the best and most complete wrestler ever, great in the ring, great on the mic, and consistently puts younger talent over, he truly is the best in the world at what he does."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: callousedwrote on 28.01.2016:[10.0] "One of the best talkers and workers in the biz. Don't miss what may be your last few chances to see a future hall of famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Likkeswrote on 28.01.2016:[10.0] "Wrestling is Jericho. That's all I've got to say, as we're talking about probably one of the best, most complete wrestlers of all time. As a heel, if it wasn't for Flair, I'd say he's been unbeatable. Having the greatest debut WWE and maybe the world have ever seen, and performing at a level only Punk has managed to achieve in the modern era, he has taught us how enjoyable wrestling can be. Definitely my favorite performer ever, he's the true superstar, not lacking charisma, nor technical skill, nor oratory ability, and possessing an astounding capacity for manipulating the crowds. Ten out of ten for the Best in the World at What He Does."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HeinrichC75wrote on 20.01.2016:[7.0] "Ehemals richtig gut, doch sein Zenit ist längst überschritten. Für die Houseshows bestimmt noch gut zu gebrauchen, doch im Fernsehen brauch ich ihn nicht mehr."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Squared Circlewrote on 07.01.2016:[8.0] "Very solid.  Good in the ring and mic.  Very experienced and can work well with anyone.  A little undersized and he can get a bit tiring, all in all though a very strong body of work."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Chris Jericho ist einer der Besten eeever. Er ist gut im Ring, gut am Mic und ein guter Performer. Was will man mehr?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PWCwrote on 24.09.2015:[9.0] "A fantastic wrestler that deserves to be harled as one of the best the WWE ever had. Great on the mic and great in the ring. Would give him a 10 if it wasn't for the fact that everything post-2012 Jericho hasn't been all that fun to watch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: QueenOfTheCattlewrote on 24.09.2015:[10.0] "Chris Jericho has to be one of my favorites, if not my favorite, of all time. He delivers consistently in between the ropes, and isn't afraid to put over young talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jacobphillipswrote on 13.09.2015:[9.0] "one of the best ever. great in ring abilities and put on some of the best matches ever seen. my fave was the ladder match for the intercontinental championship at wrestlemainia against benoit. great on the mic and works just aswell as either face or heel"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Excellence of Executionwrote on 24.08.2015:[10.0] "Dass Chris Jericho es trotz eines Gimmicks mit starker Comedy Schlagseite und trotz überschaubarer Physis geschafft hat, so viel zu erreichen, ist ein unwiderlegbarer Beleg seiner Klasse. Und seine Neuerfindung als finsterer Arsch im Anzug mit mehr Heel Heat als eine Kernschmelze anno 2008/2009 (mit überragender Fehde zwischen ihm und Shawn Michaels) war einfach Gold wert. Für mich etwas unverständlich, dass er dieses Gimmick wieder in den Wind geschossen hat. Mit Blick auf seine gesamte Karriere kann auch sein momentaner Verkauf unter Wert in der WWE nicht über seine Klasse hinwegtäuschen. Für mich einer der größten aller Zeiten und somit klare 10 Punkte - was sonst?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DanTalksRasslinwrote on 12.07.2015:[10.0] "Jericho was the total package - both a skilled wrestler who could work any style as well as a consummate showman.  A versatile personality as well - while he's best known for his bombastic rock star persona, his "serious heel" run in 2008 and crowd-trolling run in 2012 showed that he's more versatile than just that.  His runs in ECW and WCW were marked by many great matches and rivalries - his feud with Dean Malenko in WCW is one of my all-time favorites - and had one of WWE's most memorable debuts in 1999.  Went on to a great run as the company's first Undisputed Champion.  Fantastic talent with a great back catalog of work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Szene Nordwrote on 05.06.2015:[10.0] "Y2J ist für mich persönlich der kompletteste Wrestler aller Zeiten - das perfekte Gesamtpaket! Auch wenn er altersbedingt nicht mehr alles machen kann, ist er im Ring immer noch auf Mainevent-Level. Zusammen mit The Rock, CM Punk und Steve Austin einer der Promo-Götter im Business!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Zedwrote on 07.05.2015:[10.0] "Also wer diesem Mann keine 10 Punkte geben will, dem ist nicht mehr zu helfen.  Er war in der ECW eine kleine Sensation. Zwischen all den Funks, Sandmans und Ravens stoch dieser schmale Kanadier herraus, weshalb die WCW auf ihn aufmerksam wurde. Blöderweiße war in Atlanta niemandem bewusst was für einen ungeschliffenen Diamanten sie da haben. Nicht nur ein nahezu perfekter Heel in seinem Disput mit JJ Dillon, auch als Comedy Act brillierte er (1004 Holds) und er hatte den attraktivsten Manager aller Zeiten. Ralphus!  1999 Kam er mit einem Paukenschlag zur WWE, hatte Fehden mit den ganz großen und durfte sich nicht mal zwei Jahre nach seinem Debut als erster Undisputet WWE Champ nennen, außerdem ist er Rekord IC Titel halter.  Heute ist er mehrfacher World Champ, Musiker, Radio Host in Kanada.  Eine wahre Legende"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Michellewrote on 28.04.2015:[10.0] "Für mich einer der Talentiertesten und unterhaltsamsten Wrestler.  Außerdem trifft er mit seiner Band Fozzy genau meinen Musikgeschmack. :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Joel DXwrote on 26.04.2015:[10.0] "Y2J! Für mich einer der betsen Heels aller Zeiten. Sehr guter Mic-Worker und technisch Top. Habe mir "Road is Jericho" vor kurzen angeguckt und kann es an alle Jericho Fans nur weiterempfelen.  Schade dass er nicht mehr so regelmäßig zu sehen ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Arctikwrote on 28.03.2015:[10.0] "Einer der komplettesten Wrestler, die je in der WWE unter Vertrag standen.  Gimmick perfekt, Charisma perfekt und technisch natürlich ebenfalls einer der Stärksten! Volle 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: pfuschiwrote on 07.03.2015:[8.0] "Jericho never was one of my faves, good in everything but to me never great.  he ranked himself behind Hogan, Rock and Austin in popularity and behind Bret and Shawn as a worker.  I will agree with him on that."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: FratzenFressewrote on 17.01.2015:[6.0] "Finde ihn nicht so überragend, wie ihn hier alle machen... eigentlich finde ich seine Kämpfe sogar zumeist relativ langweilig! Von der Wertung her einer der besten Wrestler überhaupt, und das sehe ich einfach nicht so. Der Funke springt bei mir nicht über!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RooneyDXwrote on 04.01.2015:[10.0] "Ein Top mann. Er hat alles Charisma, Moves und den Look. In letzter Zeit war er nicht so gut, aber lag eigentlich an seinen Gegnern wie Bray Wyatt finde ich. In seinem alter braucht er Gegner wie Seth Rollins, das wäre ein spektakuläres match, aber Fakt ist, jedesmal wenn er kämpft weiß man das er die meisten PPVs verliert so wie die Fehden. Trotzdem bekommt Y2J 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: FCOANwrote on 25.12.2014:[8.0] "Great wrestler, great promos and look. One of the best total packages ever with a great career, accomplishments and matches as well as many memorable segments."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ROHfan99wrote on 29.11.2014:[10.0] "Weniger als 10 Punkte darf es nicht geben, Er ist, mit Shawn Michals, der beste Wrestler der je bei der WWE unter Vertrag stand. Im Ring, als auch am Mic. Als Heel und Face war er jeweils GRANDIOS! Als heel feier ich ihn besonders, der bringt in einem Match seinen Charakter so gut rüber, man muss diesen Typ einfach feiern. Heute kommt er oft zurück, um Wrestler zu pushen, was ich absolut feiere. Y2J=Gott. :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Y2J316wrote on 28.11.2014:[10.0] "Einer meiner absoluten Favoriten. Legendäre Segmente mit Rocky und auch andere waren enfach göttlich. Mag seine Matches immer wieder gerne aber ich fande es besser als er noch die lange Hose trug. Egal defenetiv ein Hall of Fame Kandidat wenn es dann vorbei ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Muyo90wrote on 23.11.2014:[9.0] "Einer der besten Wrestler aller Zeiten, das steht außer Frage! Er kann einfach alles. Er ist eine Koryphäe im Promos abhalten. Reihenweise epische Matches abgehalten, u. a. gegen Shawn Michaels (WM19) Benoit oder Triple H.  Schade, dass er aktuell nur noch auf Teilzeit bei der WWE zu sehen ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ApexOfEvolutionwrote on 22.11.2014:[10.0] "Der Mann ist ein Genie. Absoluter Supertechniker im Ring und charismatisch wie zur Zeit nur Wenige in der WWE. Schön, dass die Liga ihm die Möglichkeit gibt, nur interimsweise zu arbeiten. Wenn er dann da ist, kann er großartig unterhalten und ist sich nicht zu schade, auch mal für aufstrebende Talente zu jobben. Soll ja auch privat ein sympathischer Typ sein und auch seine Musik mit Fozzy ist durchaus hörenswert. Daher sind nur 10 Punkte möglich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DaNiwrote on 29.10.2014:[10.0] "Chris Jericho zeichnet sich für mich als Wrestler vor allem aus, da er mögliche Alterserscheinungen mit Erfahrung ausgleicht. Trotz Pausen sehe ich noch immer wenig Ringrost an ihm.  Was er für die Wrestlingwelt erreicht hat braucht eigentlich keine weitere Erklärung. Der Unterhaltungs- und Wrestlingfaktor stimmt bei ihm einfach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mantafahrerwrote on 17.10.2014:[10.0] ""RAW is Jericho" - wahre Worte, denn alleine schon ein kurzer Auftritt von Y2J ist es wert, den Fernseher einzuschalten. Klasse im Ring, brilliant am Mikrofon, als Face interessant und als Heel sowieso einfach untouchable. Das Einzige, was ich bei diesem Typen kritisieren kann, ist dass seine Ringleistungen langsam nachlassen (was mit 43 Jahren keine Überraschung darstellt) und dass sein Haarschnitt in seinen früheren WWE-Zeiten einfach nur peinlich war. Dies sind jedoch keine plausiblen Gründe, wieso man Jericho weniger als die Höchstpunktzahl geben sollte. So einen wie ihn gibt es nur einmal in 50 Jahren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Matzinhowrote on 28.09.2014:[10.0] "Das ultimative Komplettpaket. Der Typ kann alles, hat den look, die mic skills, das Können im Ring und nebenbei noch unzählige witzige, kreative, innovative Ideen, die das komplette Produkt der Liga, für die er gerade angetreten ist, massiv eleviert haben. Jericho ist Unterhaltung in Reinform und zwar in allem was er macht. Dazu unzählige 5-Sterne-Matchklassiker - echte Matchklassiker, nicht den Scheiß den Dave Meltzer zusammenwertet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: maazzywrote on 23.08.2014:[10.0] "Für mich der Beste aller Zeiten. Seit mehr als 15 Jahren genieße ich sein Micwork und sein Talent im Ring. Ich finde es beeindruckend, dass er, obwohl er alles erreicht hat, sein Ego hinten anstellt und sich für neue Leute hinlegt. Ohne an Glaubwürdigkeit zu verlieren..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Phenomenal91wrote on 21.08.2014:[10.0] "For everything this man has accomplished in the wrestling world, and the fame he's achieved outside of it, Jericho STILL deserves more credit than he's given. Everywhere he went, he put on command performances. His overwhelming popularity was proof that the people were ready for a hero who wasn't Hulk Hogan sized. Still, for many years, his rise to the top was a slow one, but when he got there, he put on the best matches of his life. This man is an absolute 10 in every category. The ONE time that I think Chris Jericho's not being himself is whenever he does a straightforward "serious" promo in grave, humorless tones. That's not the Chris Jericho people pay to see. They want to see him having fun being the bad guy. That way, we have fun watching him. It's admirable now that he comes and goes whenever he pleases, having already done so much for the WWE that he isn't needed on a full time basis (although it would be just fine with me if he still were! ) He selflessly puts over the younger talent,  giving them a boost in popularity and credibility by giving them the opportunity to face a living legend-one who's not as selfish and egotistical as his heel character suggests! Overall, a great wrestler, the kind of wrestler every young up and comer should aspire to be, and also a great guy. He truly is the best in the world at anything he does."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bolievewrote on 08.08.2014:[10.0] "Einer meiner absoluten Lieblingswrestler! Er hat einfach unglaubliches Charisma! Man hat ihm/kauft ihm alles ab, ob er nun einen Heel oder Face verkörpert ist dabei egal! Er ist ein Gott am Mic! Und er ist unfassbar gut im Ring! Klar er wird älter, dennoch hoffe ich noch auf einen letzten großen Run als Champion! Ich werde ihn immer unterstützen! Y2J<3"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: zackwoowoowooryderwrote on 28.07.2014:[10.0] "Egal ob als Heel oder Face, Jericho spielt es sehr überzeugend. Hoffe man steckt ihn nochmal in eine Titelfehde, in der er nochmal einen Titelgewinnen darf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WweFanwrote on 24.07.2014:[10.0] "Eine Legende die es so nicht oft gab, gibt oder geben wird. Es gibt nicht viele die rock und stone cold an einem Abend hintereinander besiegt haben. Er hat eine neue Art des wrestlings eingeführt.... Er ist einer der besten Techniker die es gibt..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Titanwrote on 23.07.2014:[10.0] "Chris Jericho ist zweifelsohne einer der besten und solidesten Entertainer in den Reihen der WWE. Obwohl er schon über 40 ist, zeigt er den anderen Top-Stars der Liga wo der Frosch die Locken hat bzw. er zeigt Top-Leistungen. Technisch ist er einfach mit Abstand der beste und sein Mic-Work ist einfach nur göttlich und kann locker mit dem von The Rock mithalten. Als Heel ist er einfach unabdingbar und auf jeden Fall besser zu gebrauchen als in der Rolle des Faces. Zumal muss man ihm anrechnen, dass er den ein oder anderen Superstar over bringen möchte bzw das auch teilweise geschafft hat. Zurecht gibts hier die 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jsb12wrote on 20.07.2014:[10.0] "Put on some of the best matches I've ever seen in WWE. At a tune when the roster was completely stacked with all time greats he still stood out."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Triple Hwrote on 30.05.2014:[8.0] "Einer der besten Wrestler der letzten 15 Jahre. Besonders sein Debüt bei WWE damals als er The Rock unterbrach blieb mir lange im Gedächtnis. Noch besser war der Satz von Rocky "It doesnŽt matter what your Name is" Im Ring technisch einer der besten, alleine seine Titelregentschaften sagen alles über Jericho aus. Leider muss man aber auch sagen, das seine Ringskills stark nach gelassen haben seit 2010. Seit er mit seiner Band öfters auf Tour ist und so zu sagen als "Zeitarbeiter" bei der WWE sein Geld verdient gibt er im Ring nicht mehr soviel Gas wie früher. Der Mann geht schlieslich auch schon auf die Mitte 40 zu und ich hoffe das wir Ihn noch eine Weile im Ring zu Gesicht bekommen. Trotzdem bleibt zu sagen, das sein Stern langsam zu sinken beginnt. Keine Wrestling Karriere währt für ewig. Einen Platz in der Hall of Fame ist im aber sowieso schon gewiss. Am Mic ist er eh einer der unterhaltsamsten Entertainer der letzten Jahre."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: wwefan98wrote on 11.05.2014:[8.0] "Am Mic ist er super im Ring auch aber nur bis 2010 danach war es wirklich schlecht. Immer war er mir seiner Band auf Tour ud die kurze Zeit in der er mal da war war echt schlecht. Also nur 8 punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Viper99wrote on 04.04.2014:[10.0] "Ein genialer Wrestler, Entertainer und Schauspieler. Er kann einfach alles. Er zeigt trotz seines Alters super Matches, hält meiner Meinung nach die besten Heel segmente aller zeiten und seine Internet Serie ist auch genial! Würde mir wünschen das er bald wieder zurückkehrt und evt. gegen Danilson Fehdet. Er ist der beste aller zeiten neben HBK"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Foleysbabytoywrote on 05.03.2014:[10.0] "Top im Ring. Top am Mikrofon. Seine Präsentation war nicht immer perfekt, doch meistens gut. Seit 2008 hat er es dann geschafft, dauerhaft zu überzeugen. Schade, dass man ihn nicht mehr so oft sieht. Jericho war ein Garant für Sport und Unterhaltung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HongKongPhooeywrote on 22.02.2014:[10.0] "Maybe the best to ever do it. Jericho oozes so much charisma he can make the people go crazy with his promos or even by not saying a word. In the front of the line in terms of wrestling ability. One of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: eldenaaaaawrote on 16.02.2014:[10.0] "Jericho has always been one of my favorite wrestlers of all time a great heel and in ring performer"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HereComesThePainwrote on 04.02.2014:[6.0] "In der Attitude Ära Top, nunmehr flop. Lächerlicher Wrestler mit langweiligem Gimmick.  Mittlerweile für mich so uninteressant, dass ich ihn beinhart überspringen würde wenn er ein singles Match bestreitet. Zudem: Vielen Wrestlern wird nachgesagt, dass sie die WWE verlassen haben und wieder zurückkamen und so weiter.... Y2J hat das wohl schon 7867 mal gemacht und das ist so unnötig und nervig wie sonstwas. Man kann daher mit ihm keine Fehden aufbauen etc....."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The8someCwrote on 29.01.2014:[10.0] "Er ist einfach der Beste Wrestler seitdem Shawn Micheals seine Karriere beendet hat. Er hat einfach alles Charisma Mic skills und ist im Ring großartig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: J0KERwrote on 23.01.2014:[10.0] "Chris Jericho der erste und wahre Undisputed Champion! Er weiss am Mikrofon zu überzeugen und selbst bei seinem Debut konnte er uns unterhalten mit dem Mikrofon und tut das auch bis heute. Im Ring ist er eines der besten In Ring Worker die es jemals gegeben hat technisches Wrestling vom aller feinsten! Ebenfalls hat er eine Ausstrahlung wie sonst keiner sprich eine Charisma Bombe. Ebenso ist er Rekordhalter des IC Titles und konnte verschiedene Titeln tragen sein World Title Reign (2008) war meiner Meinung das Beste. Hat krasse Promos sowie Fehden abgeliefert. (zbs. vs. HBK, Punk, Edge... ) Seit 2012 setzt er sich ebenfalls für die neuen Talente ein was ich auch sehr gut finde. Er kommt nicht zum Wrestling um Geld zu verdienen sondern eher Talente zu pushen und geile Shows abzuliefern hat man in 2013 richtig gemerkt das er mit Herz und Seele mit dabei ist. 10 Punkte gerechtfertigt! Neben seiner Karriere hat er auch zahlreiche Dinge erreicht. Respekt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: VersionOnewrote on 20.01.2014:[10.0] "mMn einer der besten Wrestler aller Zeiten. Sowohl In-Ring als auch Mic-Künste sind fast unschlagbar. Eigentlich keine Frage, dass er eine 10 bekommt, auch wenn er nie der größte Star der WWE war (aber seit wann sagt das was über die Qualität des Workers aus)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: yanuswrote on 08.01.2014:[10.0] "One of the all-round bets talents in the business. Great mic, charisma and very good in-ring skills. Probably was never a big draw in the business, but always entertained me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 8BitLegendwrote on 24.12.2013:[7.0] "Kann im Ring alles und hatte zahlreiche gute Storylines. Aber für eine absolute Top-Wertung fehlte es ihm in seiner Karriere doch etwas an Star-Appeal. Erst jetzt, gegen Ende seiner Laufbahn hin, kommt die laute Crowd-Reaktion und die Wahrnehmung seiner Person als einer der größeren Stars. Im Schatten von Austin, HHH, HBK oder dem Undertaker ist ihm das selten gelungen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JourneybyTrainwrote on 22.12.2013:[6.0] "Chris Jericho is pretty good in the ring but nothing to special. He's very good on the mic though I think only some of his promos from 2008-2009, his career run, really live up to the hype. Still a solid allrounder."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LordOfLimitwrote on 11.12.2013:[10.0] "Einer meiner absoluten Lieblingswrestler. Mic 10, Charisma 10 und In-Ring Skills 10. Gutes Face und guter Heel, doch als Heel IMO besser."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: tgwrote on 26.11.2013:[10.0] "Ein Jericho ist genau das, was dem Wrestling im Moment fehlt. Sehr gut schon zu ECW-Zeiten als noch relativ gesichtloses Face, stark mit dem WCW-Heelturn, großartig bei seinem erinnerungsträchtigen WWE-Debüt und überragend bei seiner WWE-Rückkehr vor fünf Jahren als sich neu erfunden habender Heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Undertalkerwrote on 14.11.2013:[10.0] "Jericho ist ein begnadeter Entertainer, den ich schon damals zu WCW-Zeiten sehr unterhaltsam fand. Dort ist er aber leider untengehalten worden und konnte sein Potenzial noch nicht richtig entfalten. Als er dann bei Raw auftauchte, blühte er mit seiner originellen und witzigen Art so richtig auf. Auch seine In-Ring-Skills sind überdurchschnittlich. Das wäre mir aber immer noch keine 10 Punkte wert. Er zählte erst zu meinen Lieblingswrestlern, als er diesen krassen Charakterwandel vollzog, zu einem puristischen Heel turnte und es mit seinen ruhigen, langsamen und intelligenten Promos schaffte, die Fans zu irritieren und gegen sich aufzubringen. Er sagte einmal so etwas in der Art, dass er die Madonna des Wrestlings sein will und somit nie gleich erscheinen, nie am Vergangenen klebenbleiben und sich daher immer weiterentwickeln will. Das ist nicht nur eine wichtige Eigenschaft im echten Leben, sondern auch im Wrestlingbusiness. Viele Worker können das nicht. Er ist einer, der es kann, und dafür bewundere ich ihn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Silaswrote on 13.11.2013:[10.0] "Einer absoluten Lieblinge seit dem ich Wrestling gucke. Unglaubliches charisma, extreme stark am Mikro und im Ring. Besonders als Heel unglaublich gut. Y2J gehört in die Hall of Fame,  ohne wenn und aber."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: svenulreich1893wrote on 28.10.2013:[9.0] "Y2J. Überragend am Mic, überragend im Ring. Sowohl als Heel wie auch als Face glaubwürdig. Und im Gegensatz zu The Rock ist er auch als Teilzeitwrestler oft im Ring und legt sich freiwillig für die jungen Wrestler hin. Und nebenbei, auch wenn das kein Kriterium für die Bewertung ist: ein ganz guter Sänger. Lebende Legende, einer der ganz Großen, auch wenn öfters unterschätzt. 9 POINTS"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: voicelesswrote on 19.10.2013:[10.0] "Jericho vereint sehr gutes Wrestling mit sehr gutem Micwork - alles andere als eine 10 kommt für mich nicht in Frage.  Ich rechne es ihm auch hoch an, dass er sich für Ziggler, Punk und Co. hingelegt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lilly Jerichowrote on 15.10.2013:[10.0] "Chris Jericho ist definitiv einer der besten Wrestler, dieser und vergangener Zeiten! Auch wenn es mir im Herzen wehtut, aber ich finde es trotzdem klasse, dass er sich für junge Talente hinlegt um diese nach oben zu bringen! Ich persönlich würde mich einfach nichts mehr wünschen, als ihn wieder mit einem Titel rumlaufen zu sehen, wenn er wieder kommt und sei es nur (s)ein Intercontinental Titel! Einmal hatte ich bisher sogar die Möglichkeit, Y2J persönlich in München zu treffen und ich muss sagen, der Mann ist wirklich hammer sympathisch und nett und so weiter! Der kam schon zu uns VIP's vom Konzert und hat mich direkt in den Arm genommen, echt voll knuffig! Aber jetzt mal zurück zum Wrestling: Ich finde zwar logischweise, dass diese guten, alten Zeiten natürlich besser waren, aber genauso muss ich sagen, dass er es heute auch noch ordentlich drauf hat und mit mir wohl einen Fan auf Lebenszeit gewonnen hat! Ich kann hier nicht anders: 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: koeddylaemmlewrote on 18.09.2013:[9.0] "Never the "guy" but always dependable in so many different levels of his career. Chris Jericho has provided wrestling fans with so many memorable moments that he will live on forever, whether it be 5 star matches or promos."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "Im Ring klasse, am Mic klasse, 10 Punkte. So einfach gehts ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: UnforgivenSicknesswrote on 23.08.2013:[10.0] "Er ist ein guter Wrestler, ultra charismatisch und ist gut in Interviews. Dazu ist seine Musik einfach nur krass."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HighlightHEELwrote on 20.08.2013:[10.0] "Mein All-Time-Fave Nr. 2. Grandioser Wrestler, der über all die Jahre kaum nachgelassen hat. Ist sich nie zu schade, andere Worker over zu bringen, hätte m. M. n. selbst aber noch viel mehr Gold und Anerkennung verdient, als er sie ohnehin hat. Am Mikrofon mein absoluter Gott der Wrestling-Welt - es gibt nicht viele, die ich mit ihm einigermaßen auf Augenhöhe sehe. Teil einiger der besten Fehden aller Zeiten, allen voran seine Auseinandersetzung mit Shawn Michaels 2008 (hier auch einer der besten Heelturns aller Zeiten). Als Heel meist noch ein bisschen besser als als Face. In den letzten Jahren dank seiner *** Band leider seltener zu sehen und nicht mehr in den Regionen der Card, wo ich ihn gerne sehen würde. Ich hoffe auf einen letzten großen Run."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Palace of Wisdomwrote on 14.08.2013:[10.0] "Alles andere als eine 10 wäre hier ein Witz. Einer der besten Techniker aller Zeiten, eine Charismabombe, grenzgenialer Micworker und einer der wenigen Worker die Heel und Face mehr als überzeugend darstellen. Chris Jericho ist einer der größten Wrestler aller Zeiten und in meinen Augen ein Wrestlinggott."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: benebecwrote on 10.08.2013:[10.0] "Chris Jericho ist einer der wenigen, die wirklich alles erreicht haben. In jedem Land in dem er aufgetreten ist konnte er überzeugen und unteranderem in Deutschland und Mexiko. Auch seine gesamte WWE-Karriere war grandios. Das er jetzt wieder da ist, um jüngere Wrestler over zu bringen finde ich vollkommen in Ordnung und es macht ihn nur noch sympathischer. Außerdem ist Jericho einer der besten am Mic in der gesamten WWE-Historie. Jedem Y2J-Fan kann ich nur seine beiden Bücher empfehlen, die wirklich grandios sind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Cactus Foley 88wrote on 05.08.2013:[8.0] "Chris Jericho war schon in der WCW einer meiner absoluten Lieblinge. Seine Fehden gegen Dean Malenko und Rey Mysterio aus jener Zeit sind unvergessen. Sein WWE Debut war grandios indem er The Rock bei einer Promo unterbrechen durfte. Ein echter Allround-Wrestler der jeden Stil mit gehen kann. Mic-Skills immer sehr unterhaltsam. Die Tatsache das er der 1# WWE Undisputed Champion wurde macht ihn bis heute unsterblich. Meine lieblings Zeit von Y2J war definitiv 1996-2005."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Valancewrote on 31.07.2013:[8.0] "Chris Jericho is a execellent wrestler. And he is vey charismatic. Thank you Chris!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Weskerwrote on 22.07.2013:[8.0] "Damals habe ich Jericho sehr gemocht. Sein Gimmick war einfach klasse, die Moves waren toll und am Mikrofon ist er ein wahrer Profi. Mittlerweile finde ich ihn mit Kurzhaarfrisur und Höschen nicht mehr so symapthisch und auch sein allgemeines Auftreten ist nicht mehr so "fresh" wie vorher. Die Moves langweilen auch mittlerweile, obwohl er nun den Codebreaker miteingebaut hat. Das war es aber auch schon. Schade. Damals hätte ich ihm eine 10 gegeben. Nun bekommt er eine 8. Btw: Er hat sich bei der Ultimate Warrior-Doku über den Warrior lustig gemacht... und das auf eine sehr arrogante Art und Weise. Pfui!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Hirnklopswrote on 18.07.2013:[4.0] "Ich konnte den Hype um den Mann nie wirklich nachvollziehen... Hat mir in der WCW noch ganz gut gefallen, zu seiner "Steph is a bitch"-Phase auch, aber... Danach... Na ja. Finde ihn mittlerweile als Charakter nur noch langweilig, im Ring sicherlich absolut sauber, aber auch nicht mehr so toll wie damals. Ist so'n "Schema F"-Wrestler geworden irgendwie. Dazu kommt, dass seine Frisuren über die Jahre wesentlich schlechter geworden sind."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Metalmaniac87wrote on 18.07.2013:[7.0] "Ein talentierter Wrestler , ohne Zweifel aber er verspielt viel sich da er andauernd Auszeiten nimmt um mit seiner Band auf Tournee zugehen. Klar man freut sich immer wenn er wieder da ist aber kotzt man ab weil er wieder mal Weg ist. Ein richtiger Run ist deshalb gar nicht mehr drin und das nervt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sir Vida Loca IIIwrote on 09.07.2013:[10.0] "Jericho ist im Ring einer der besten aller Zeiten. Jericho ist am Mic einer der besten aller Zeiten. Bei der WWE viele jahre unten gehalten, aber trotzdem das Beste draus gemacht. Er hatte über die Jahre immer wieder packende Storylines (zuletzt gegen CM Punk oder davor besonders gegen HBK um nur zwei zu nennen). Und obwohl er sicher ein zukünftiger Hall of Famer ist, der mehr verlangen könnte, legt er sich gerne für neue Superstars hin um diese Over zu bekommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dumbadswrote on 09.07.2013:[8.0] "Ungalaublich gute Mic Skills. Sehr guter technicker. Gibt immer alles und lässt auch schwächere Gegner gut aussehen. Das einzige was mich zu früher stört sind die kurzen Haare.  Jericho braucht wieder lange und dann gibts auch die 10 Punkte :)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rockcitizenwrote on 03.07.2013:[10.0] "Am Mic meine Nr. 1, im Ring gibt's nicht viele, die besser sind, wenn dann nur Nuancen. Legendäre Matches, top-unterhaltsame Promos und Mic-Auftritte. Würde mir wünschen, dass er nochmal zu Titelehren kommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RawIsJerichowrote on 25.06.2013:[10.0] "Chris has always been one of my favorite wrestlers. He has such a large and varied moveset, and his execution is almost always perfect. His work as a heel is the WWF/WWE, and especially in the WCW, was great and very humorous. The number of 5 start and other highly rated matches throughout his career speaks for itself, he can put on great matches with most anyone in the ring. I think he's deserving of one more WWE or Heavyweight championship run, the man will deliver."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lecterwrote on 06.06.2013:[8.0] "Jericho is good at everything. He is not, however, fantastic at everything. Like him a lot, but he's definitely not in the running for Greatest of All Time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Enuffwrote on 21.05.2013:[10.0] "Einer der besten! Mit Leuten wie Punk, Michaels etc. ist er einer der besten Gesamtpakete überhaupt! Bei ihm stimmt einfach alles. Über die Jahre hat er einfach tolle Segmente, Matche etc. gehabt und deswegen kriegt er auch die volle Punktzahl. Aktuell bringt er zwar nur junge Leute over, aber auch das ist ein Grund warum er großartig ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CrIppIL3RTIRiXwrote on 15.05.2013:[10.0] "Save US Jericho. Er ist der Man der fast aus jeden ein **** Match zaubert. Unglaubliches Charisma, Mic Work und InRing skills. Seine Matches gegen Michaels einfach unglaublich...  Einfach Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheIbarwrote on 03.05.2013:[10.0] "When it comes down to the greatest heels in professional wrestling history, Chris Jericho comes up in my mind automatically. He is so great on microphone. It's like he was born with a microphone in his hands. Jericho is superb in the ring. Y2J is such a talented wrestler, he is truly "the best in the world at what he does". And he proves that in every spectacular match. Besides his awesome promos, he is the lead singer in a great band "Fozzy". That's really hard to combine good music and being one of the best wrestlers in the whole world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: believeintheshieldwrote on 02.05.2013:[9.0] "Ich finde er bringt viele Talente mit in den Ring, hat allerdings in letzter Zeit nachgelassen, daher auch einen Punkt abzug. Mir Persönlich hat er als Heel besser gefallen, als als Babyface."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rated rko1wrote on 27.04.2013:[10.0] "einer der besten ever und auch einer meiner absoluten lieblingswrestler er hat die 10 absolut verdient"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "One of the best wrestlers to ever lace up a pair of boots. Has been consistently entertaining throughout his career on a national stage. An excellent heel, an excellent mic worker, and amazing in the ring. Always a highlight of every show he's on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Eagle Whiskeywrote on 08.03.2013:[5.0] "Natürlich ist Jericho ein super Wrestler, aber ich finde alle seine Gimmicks und sein Auftreten außerhalb des Rings einfach nur langweilig und nervig. Er hat sich über all die Jahre nie ein cooles und souveränes Image aufgebaut wie z. B. ein Shawn Michaels. Ich finde Jericho war immer einfach nur zum wegschalten. Den Höhepunkt der langweiligkeit erreichte er zusammen mit Big Shwo als JeriShow. Aber wie gesagt ein super Wrestler der jeden Gegner gut aussehen lassen kann. 5 Punkte von mir."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Clubbiwrote on 23.02.2013:[10.0] "Für mich einer der Besten Wrestler all Time... Ich weiß noch damals sein Milleniums Countdown war der Hammer.  Was er mir alles für Spaß bereitet hat die letzten Jahre...  Leider hat er für mich den Zeitpunkt verpasst aufzuhören. Naja trozdem Es ist immernoch schön ihn zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Gomphwrote on 14.02.2013:[10.0] "Der Mann kann es einfach alles. Ob im Ring oder am Mic. Hat einfach nen unfassbares Charisma, man hört ihm immer gerne zu, sieht ihn immer gerne im Ring. Definitiv einer der Besten überhaupt. Alles andere als 10 Punkte wäre eine Schande ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Diggertakerwrote on 13.02.2013:[10.0] "Excelent technician, impactful career, great gimmick. A perfect wrestler, with awesome ring and mic skill."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JuliTheCage87wrote on 13.02.2013:[10.0] "Fantastischer Techniker und HighFlyer und mein absoluter Favorit bei den Wrestlern aus den 2 vergangenen Dekaden. Seine imposante und unverkennbare Stimme, die die geilsten Catchphrases hervorgebracht hat, hat ihm schließlich auch seine Gesangskarriere rund um Fozzy gebracht. Ich wünsche mir einen finalen WWE- und einen damit verbundenen WWE-Title-Run."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Chris Irvine zählt definitiv zu den besten, die es jemals gegeben hat. Früher war er ein fester und auch wichtiger Bestandteil der Attitude-Ära und Mitte des 21. Jahrhunderts überzeugte immer mit hervorragender In-Ring Physik und göttlichen Promos. Auch heute hat Jericho nichts von einem Talent verlernt und er ist immer eine wertvolle Bereicherung für die WWE. Ein unfassbar charismatischer Entertainer, der sein Handwerk perfekt beherrscht. Er zählt definitiv zu meiner All-Time Top 10 und die Hall of Fame Aufnahme ist sicher"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GTS Punkwrote on 30.01.2013:[10.0] "Y2J grossartige Fähigkeiten sowohl im Ring, als auch am Mic, was er ja mittlerweile schon seit 1995 zeigt. Sein Comeback hat mich zumindest total überrascht, er weiß einfach wie man die Fans schockt.. Come on Babeee! 10 Punkte, weniger ist fehl am Platz!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Leonewrote on 26.01.2013:[10.0] "To this day, very few wrestlers can match Chris Jericho in terms of quality.  He's fantastic on the mic as both a heel and a face.  His classic rock star persona appeals to quite a wide audience.  He's very funny when he needs to be, and serious when he needs to be.  But the man isn't all talk.  He isn't all show and performance.  As a student in Stu Hart's Dungeon, the man is also an incredibly good wrestler, combining various wrestling styles from his experiences in Canada, the U. S. , Mexico and Japan.  As he was (and is) a smaller wrestler, he (along with others) helped to literally break down the wall that created rigid wrestling divisions based on a wrestler's size.  Now in his 40s, he's still able to work better than a lot of younger talent, and unlike a number of wrestlers, he's able to walk away and do other things.  A true legend in professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: swantom98wrote on 08.12.2012:[3.0] "3 Punkte allein für das Mic-Work.  Bei Segmenten und Promos ist er teilweise noch unterhaltsam, aber wie gesagt nur teilweise.  Im Ring kann ich ihn mir persönlich nicht mehr angucken."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: EnemyOfJusticewrote on 31.08.2012:[10.0] "Den Jericho, den ich seit 2008 kenne... stark, sehr stark; Einer der besten Tag Team Wrestler den die WWe jemals hatte(JeriShow war das Beste, was die WWE in der Tagdivision hat[te]).... als Einzelwrestler auf jeden Fall erhaben und zu guten Matches in der Lage... nur finde ich sein Micwork nicht so stark wie manche behaupten, klar ist er sehr gut darin, aber so gut wie CM Punk würde ich ihn ZB nicht einschätzen. Ich schätze auch seine Arbeitsmoral, dank ihm wurden schon einige Wrestler vorübergehend zu Stars, kein arroganter Star; Hoffe dass Y2J wiederkommt, einer wie er fehlt der WWE momentan. Overrated im Moment"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LM Punkwrote on 30.08.2012:[10.0] "Als er jetzt anfing wieder gut in Form zu kommen, ist er schon wieder weg. Trotzdem bleibt er einer meiner Lieblingswrestler der letzten 15 Jahre. Viele gute Matches, und mit die besten Promos seit der Attetude-Ära."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: FabianSwrote on 27.08.2012:[8.0] "Garantiertes "HALL OF FAME" Mitglied dessen Finisher die "WALLS OF JERICHO" finde ich nicht so gut weil es nur eine Boston crab Variation ist also 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The lonesome death of Hattie Carrollwrote on 23.08.2012:[10.0] "Wieder einmal verlätt Jericho die WWE, um mit Fozzy zu touren. Seine Rückkehr wurde als groß angekündigt, und ich finde, er konnte halten, was er versprach. Eben auf eine Art und Weise, wie es den meißten "Fans" nicht geschmeckt hat, dennoch bot er eine großartige Show. Das hat man in seinen beiden vorerst letzten Matches bemerkt, in dem er Dolph Ziggler schon als besseren In-Ring-Performer hat darstellen können.  Ich freue mich nun auf das nue Fozzy-Album. Bis zur Wiederkehr, Y2J!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: S04TIMwrote on 21.08.2012:[10.0] "Chris Jericho ist einfach nur Wahnsinn. Am Mic wie auch im Ring einfach sehr gut. Verdiente 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Undertaker555wrote on 20.08.2012:[9.0] "Für mich einer der besten in diesem Buisness. Er hat viel für das Wrestling getan und ist nicht nur im Ring sehr gut. Er beherrscht ein klasse Moveset und am Mic ist er ein Gott! Würde mir wünschen das er wenigstens noch einen großen Titel bekommt und dann so langsam abtritt. Mich hat er immer gut unterhalten und hoffe er bleibt uns noch das ein oder andere Jahr erhalten. Y2J"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Hankinswrote on 12.08.2012:[9.0] "Sein Charisma war stets sein größtes Talent. Seine In-Ring-Leistungen fand ich zum Teil sehr schwankend. Er hat regelmäßig seinen Stil verändert, um den Fans etwas Neues zu bieten. Seine beiden letzten Comebacks floppten in meinen Augen total. Trotzdem jemand, der die Leute immer und zu jeder Zeit unterhalten kann."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: goofy1991wrote on 30.07.2012:[9.0] "Sicher einer der besten Worker überhaupt. Sowohl stark am Mic als auch im Ring. Er spielt seine Heelrollen gekonnt (in der Fehde gegen HBK konnte man ihn wirklich nur hassen). Leider kann er mich seit seinem Comeback 2012 nicht wirklich vom Hocker reissen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Chris Silverwrote on 25.07.2012:[10.0] "Der beste Heel aller Zeiten! Am Mic und im Ring ist er einer der besten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: UndertakerChriswrote on 19.07.2012:[10.0] "Ohne viele Worte zu verschwenden, Jericho ist der Beste! Dies ist keine simple Ansicht, sondern Tatsache! Niemand unterhält mich so sehr wie er es tut, egal in welcher Rolle er sich gerade gibt. Schade, dass seine Auftritte nicht mehr so zahlreich sind, jedoch ist dies verständlich. Außerdem leistet er mit Fozzy eine geniale Arbeit! Hammer Musiker, unglaublicher Entertainer und Wrestler, was will man mehr? 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Franziwrote on 03.07.2012:[10.0] "The best at everything he does! Trifft wirklich zu. Als Face grandios, als Heel perfekt und dazu noch in-ring Skills vom Feinsten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LeBelle1wrote on 21.06.2012:[10.0] "Einer der besten Micworker im Mainstream überhaupt. Ich glaube über ihn braucht man nicht mehr viel sagen. Einfach nur großartig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Ibanezwrote on 11.06.2012:[7.0] "immer noch sehr gut am mic und im ring, könnte aber, trotz aller kreativlosigkeit der WWE, sicherlich noch mehr leisten!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Schusterwrote on 03.06.2012:[10.0] "Einer der besten Performer der Geschichte der sich trotz seiner Größe zu einem der größten Stars gemacht hat. Das total Package und absolutes Vorbild"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sascha311wrote on 02.06.2012:[10.0] "Ich finde ihn einfach Unglaublich seine Matches sind immer sehr gut und sein Gimmick kommt meist sehr überzeugend rüber für mich ist er klar einer vielleicht sogar der bester Wrestler aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alex Riley 4 wwe championwrote on 25.05.2012:[10.0] "Er spielt die Rolle als Feigling und selbstverliebten Egozentriker wirklich gut. Er hat wirklich was drauf und kann im Ring/ am Mic wirklich viel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: themuhwrote on 25.05.2012:[10.0] "Being underrated and underutilized again. His 1. 2. 12 return is still one of the highlights of the year in wrestling so far. What he did in Brazil was under his own actions, but because he had the courage to do so, which is why he's the best in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Nouriwrote on 25.05.2012:[10.0] ""The best in the world at what he does" Vielleicht nicht "The best", aber defintiv einer der Besten aller Zeiten. Herausragend am Mikrofon, grandiose Technik und singen kann er auch noch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Remixxismwrote on 20.05.2012:[9.0] "Einer der größten in der WWE. Er hat einen super Ring-In Stil. Nur in letzter Zeit etwas uninteressant geworden durch die ganze Story mit Punk, dem ganzen "Best in the World" gerede und durch seinen gleich bleibenden Auftritt. Er kommt rein, redet irgendwas (wobei ich aber auch sagen muss, das er am Mic sehr gut ist), attackiert den, der im Ring steht und geht wieder."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Undertaker95wrote on 14.05.2012:[8.0] "Einer der größten der WWE Geschichte aber zurzeit finde ich kein drang an ihn , vor 3 Jahren war er für mich noch viel Interessanter"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rated R means Attitudewrote on 12.05.2012:[10.0] "Nicht nur im Ring und am Mic unglaublich gut, nein er ist auch einer der wenigen, die sowohl als Heel als auch als Face absolut unterhaltsam sind. Ich sehe ihn unglaublich gerne, zumal er einen Gegner eben auch sehr gut durch ein Match ziehen kann. Dadurch kann er eben auch jüngere Wrestler pushen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Prodirwrote on 15.04.2012:[10.0] "Chris Jericho: zu gut um als Legende zu gelten. Ich kann mir bei ihm zwar nicht vorstellen, dass man von ihm als Legende oder Ikone spricht, aber nichtsdestotrotz ist dieser Mann für mich göttlich. Unterhält den zuschauer nicht nur am Mikro, sondern auch innerhalb des Seilgevierts, und das nicht nur durch Technik. Mimik und Gestik sind dabei optimal. Ein Worker, der die ultimativen Manöver auf Lager hat, was Impact, Authentizität undReal-Fight-Komponente angeht, der mit seiner Körpergröße und damit verbunden seine scheinhafte Unbeholfenheit, die jedoch nur subtil wahrgenommen wird, einen Underdog-Vorteil ziehen kann und somit als Schlitzohr gilt, dessen schauspielerischen Fähigkeiten nahezu apokalyptisch sind, dass man meinen könnte, dass Chris Jericho der Messias des 21. Jahrhunderts ist. PS: Die Story mit CM Punk hätte ruhig beim "Best in the World blabla" bleiben sollen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BMwrote on 14.03.2012:[10.0] "Für mich ist Jericho einfach der Bester Mann der alten Garde... Bringt einfach alles mit..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: bentexwrote on 26.02.2012:[10.0] "Bester lebender Worker. Teilt sich meiner Meinung nach den Platz der besten Wrestlern aller zeiten mit Eddie Guerrero und Chris Benoit. 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Marlowewrote on 19.02.2012:[9.0] "einer der besten Wrestler und Mic-Worker aller Zeiten. Trotzdem gebe ich nur 9 Punkte, weil diese ganzen Pausen und dann die Geschichte mit seiner Band. Entweder Karriere beenden oder Vollzeitwrestler sein, dieses Comebacks nerven ein wenig."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Awesome Arieswrote on 11.02.2012:[10.0] "Ich kann nicht anders als hier die volle Punktzahl zu geben, weil Jericho im Ring und am Mic einfach der greatest of all time ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TeXorwrote on 02.02.2012:[10.0] "Einfach der Beste Wrestler bzw. Talker im Buisness."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Fighter Daronwrote on 02.02.2012:[8.0] "The absolutely god of the IWC, overrated to the moon."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: FallenHero90wrote on 20.01.2012:[10.0] "Für mich ist Chris Jericho einer der Gründe warum ich zum Wrestling gekommen bin. Er hat einfach eine unvergleichbare Ausstrahlung und ist auch sehr gut im Ring. Sein Match mit Shawn Michaels gehört zu den besten, die ich je gesehen habe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Y2Mikewrote on 03.01.2012:[10.0] "Alles andere als 10 Punkte wären bei Jericho unangebracht. Das RAW bei seinem Comeback 2007 war das erste, welches ich (zufällig) nach langer Zeit verfolgt habe. Seitdem konsumiere ich dieses Produkt regelmäßig. Das Schicksal dürfte es so gewollt haben und Jericho war derjenige der mich daran gebunden hat. Seine WCW-Zeit (als HEEL), sein WWE-Debüt (welches mir beim ansehen noch heute Gänsehaut erzeugt) und seine Fehden (HHH, Rock, Austin, Benoit und natürlich HBK) sind legendär. "Y2J", the "King Of The World", the "Lionheart", the "The Ayatollah of Rock'n'Rollah", the "best in the world at what he does" ist und bleibt für mich der Beste, den es in diesem Business gab/gibt/geben wird! Jerichoholic 4eeeeever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Night-Angelwrote on 03.01.2012:[10.0] "Meines Erachtens ist Chris Jericho der beste Wrestler, den es gibt: Er ist nicht nur im Ring hervorragend, sondern versteht es immer wieder durch kreative Einfälle seine Storylines interessant und spannend zu machen. Er verkörpert jede Rolle annähernd perfekt und ist ein Meister am Mikrofon. Jeder, der in dieses Business will, tut gut daran, sich bei Jericho das eine oder andere abzuschauen. Ich hoffe, dass er dem Wrestling noch lange erhalten bleibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jake Westwrote on 03.01.2012:[10.0] "Er ist wirklich der beste der welt in dem was er tut, er ist ein herausragender mic-worker und wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Johnny-Tennerwrote on 10.12.2011:[10.0] "Dieser Wrestler ist für mich nicht austauschbar. Niemand hat ein besseres Mic-Work, niemand und ich meine niemand kann mich so unterhalten wie Chris Jericho. Im Ring sieht es ähnlich aus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 7TheEwrote on 25.11.2011:[10.0] "Der Mann der überall war und alles gesehen hat.  Angefangen in Canada, dann Mexico, Japan, Deutschland, dass können heutige Wrestler selten bis gar nicht mehr von sich behaupten, so eine gute und umfangreiche Ausbildung genossen zu haben.  Der durchbruch spätestens in der WcW die geniale Malenko Fehde die gezeigt hat das er auch am Mike ein Gott ist, aber viel wichtiger in Ring und Charisma ist was den Mann am meisten auszeichnet.  Für mich der einzige legitime Shawn Micheals Nachfolger den es je gab, er ist das komplette Paket nur leider hat ihm irgendwo immer die gewisse Chance gefehlt.  Definitiv einer der von den Offiziellen am underatesten Superstars die das Business je hatte, war immer anpassungsfähig und funktioniert sowohl als Heel, als auch als Face."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Yoyowrote on 18.11.2011:[10.0] "Professionalism, talent, charisma, he's got it all! Can't wait until the Best in the World returns to the WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mar-Twrote on 07.10.2011:[10.0] "Egal ob im Ring oder am Micro, egal ob Face oder Heel er weiss zu Unterhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheCMMizNexuswrote on 06.10.2011:[10.0] "Ob im Ring oder am Mic einfach The Best In The World In What He Does.  Hoffentlich kommt er bald wieder ..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sirius Van Grathwrote on 02.10.2011:[10.0] "The Best in the World at what he does! Egal ob Heel oder Face: Er ist einfach der Beste! Im Ring, am Mikrofon und in seiner Band Fozzy ein wahres Talent!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MaikBaaderwrote on 18.09.2011:[9.0] "Guter Wrestler, der alles mitbringt um in einer amerikanischen Mainstreamliga erfolgreich zu sein. Funktioniert meiner Meinung nach aber definitiv nur als Heel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rated R Punkwrote on 06.09.2011:[10.0] "Y2J ist Promomäßig echt der beste Heel (sogar über Edge finde ich) Seine Ring Skills sind ebenfalls sehr gut, Jericho war echt eine Bereicherung für SmackDown, seine Mimiken und seine vielen Sprüche werden mir echt fehlen, er hat am meisten den IC Titel gewonnen und war der erste Undisputed Champion aber er hätte aus meiner sicht noch vor seinen Abgang ruhig einen weiteren Run als WWE Champion haben können, ich hoffe er kommt irgendwann zurück."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rey2004wrote on 05.09.2011:[9.0] "Sehr guter Wrestler und Performer, schade dass er sich mehr seiner Musik widmete."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kitanoyamawrote on 04.09.2011:[10.0] "Der sympathischste unsympathische der WWE. Am Mic einfach nur hervorragend. Seine In-Ring Arbeit ist zwar nicht die allerbeste, aber dennoch sehr gut. Er ist eine ideale Mischung aus hervorrangender Wrestler, Comedian, Micworker und Musiker. Er überzeugt/e einfach in allem was er tut/tat. Also wenn er es nicht schafft jemanden zu überzeugen, dann weis ich auch nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CM Punk und Edgewrote on 26.08.2011:[10.0] "Einfach einer der besten. Mehr braucht man zu ihm nicht sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: swaswa96wrote on 22.08.2011:[6.0] "Als Heel ist er einfach perfekt, vorallem die Promos "I am the best in the world in what I do""
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: balu1982wrote on 20.08.2011:[9.0] "Jericho ist einer komplettesten Wrestler die es gibt.  Allerdings hat er in seiner letzten WWE Zeit viel zu wenig aus seinen Fähigkeiten gemacht und gezeigt.  Daher reicht es nur zu 9 Punkten"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: StoneColdStunnerwrote on 03.08.2011:[10.0] "Mit Abstand einer der besten Wrestler die mir bekannt sind! Würde mich über nichts mehr freuen, als seine Rückkehr beim SummerSlam! Daumen Drücken..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: FriarFergusonwrote on 29.07.2011:[10.0] "Eine Null Punkte Wertung in gebrochenem Englisch, ohne klare Begründung und stichhaltigen Hintergrund ? Ist sowas nicht auch irgenwie, naja, falsch?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Auditorewrote on 28.07.2011:[10.0] "Was soll man zu ihm schon noch großartig sagen komplett in allen Belangen perfekt im Ring, göttlich am Mic und überzeugend als Champ. Eindeutige Indizien 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JohnOlafBlackwrote on 26.07.2011:[10.0] "Ein fantastischer Heel! Unterhaltsames Micwork und für WWE-Verhältnisse herausragende und abwechslungsreiche In-Ring Action."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 123 kidwrote on 21.07.2011:[9.0] "Am Mic und im Ring perfekt. Besonders seine Rollen als Heel sind ein guter Grund WWE Sendungen zu verfolgen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kyanwrote on 21.07.2011:[10.0] "Was soll man Großartig sagen?  Einer der Besten der welt Please come Back Y2J"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ChristianHwrote on 17.07.2011:[10.0] "Ganz einfach der beste Wrestler und Micworker der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Tamamwrote on 13.07.2011:[2.0] "Overrated wie kaum einer ! Große Fehden wurden meistens vom Gegenpart getragen (HBK, HHH). Am Mic spricht er mich auch nicht wirklich an. Allein im Ring kann ich mit ihm was anfangen. Da bei mir eher das Entertainment zählt ändert das aber trotzdem nichts an meiner Meinung. Viele beschweren sich warum er nie dauerhaft im Main Event ist. Dann fragt euch mal warum ..."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NHJ2102wrote on 11.07.2011:[8.0] "sehr guter Wrestler + guter Micworker ... hat in seiner Karriere exzellente Matches gezeigt ... gefiel mir früher nur etwas besser"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Play2Xwrote on 07.07.2011:[10.0] "Was bitte soll ich noch groß dazu sagen?  SAVE US, Y2J!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Italian Straight Edgewrote on 05.07.2011:[10.0] "IMO einer der besten Wrestler-Komplettpakete überhaupt. Technisch top, Charisma top, Mic Skills top, High-Flying, usw. Er sollte gegen den Undertaker bei irgendeiner WrestleMania antreten und davor am besten den World Heavyweight Championship-Titel gewinnen. Finally ... you saved the WWE, Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Donald Duckwrote on 23.06.2011:[10.0] "Er hat damals alles richtig gemacht, als er die WCW verließ um in die WWF zu gehen. Heute einer der größten die wir haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Dennizwrote on 16.06.2011:[8.0] "ICh war nie ein wirklich Jericho Fan. Trotzdem ist Jericho einer der besten und bringt sowohl im als auch am Mikro immer super Leistung."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jack Londonwrote on 04.06.2011:[10.0] "Es gibt kaum einen Menschen im Wrestlingring, der mich mehr unterhält als Chris Jericho, er ist ein brillianter Wrestler und Entertainer, der sowohl als Comedy-Charakter und als ernster Heel funktioniert. Jericho beschreibt es in seinem Buch gut, dass er im Prinzip der letzte Mohikaner einer Generation von World Warriors in der WWE, die das Wrestling eben weltweit gelernt haben. Sein Stil ist mittlerweile einzigartig, vielleicht wäre er auch der ideale Aufbaugegner für Sin Cara, denn schließlich kann er auch den Lucha Stil mitgehen, seine Bücher sind großartig und er steht in einer Reihe mit den ganz großen des Business, ohne jedoch die selben Staralllüren wie Triple H oder Hulk Hogan zu zeigen. Verdiente Höchstpunktzahl nach Winnipeg."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Schiggywrote on 08.05.2011:[10.0] "Für mich einer der Wrestler, mit dem größten Gesamtpaket. Er ist in der Lage gute und hochklassige Matches zu worken. Mit dem richtigen Gegner kann Jericho aus jedem Match etwas ganz besonderes und einen Klassiker schaffen. Besonders in Japan hat er sehr gutes Wrestling gezeigt.  Dazu kommt, dass er am Mic zu mit den besten Überhaupt gehört. Als Face war er schon unterhaltsam und die Heelrolle ist wohl echt die Rolle seines Lebens. Da macht Jericho unendlich Spaß.  Sein Look wirkt sehr seriös und professionell, einer der die WWE sehr gut nach außen vertreten kann.  Außerdem muss man ihn sehr hoch anrechnen, dass er weiß wann es Zeit ist Pausen einzulegen oder sich erstmal zurück zu ziehen. Einer der das Business kennt und es liebt. Alle 10 für Chris Irvine!  Einziger Kritikpunkt geht an die WWE, dass man Chris Jericho viel zu schwach eingesetzt hat. Aus dem hätte viel mehr werden können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Opalawrote on 05.05.2011:[10.0] "Er ist mein Lieblingswrestler, das liegt daran, dass er schon einige gute Promos gebracht hat. Im ring war er immer super und er ist unglaublich Charismatisch. Die WWE brauch ihn. 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Overlordwrote on 17.04.2011:[10.0] "Ich vergebe eigentlich keine 10 Punkte, aber wenn es einen Wrestler gibt der diese Wertung verdient, dann ist es Chris Jericho. Für mich einfach der kompletteste Wrestler was sowohl Wrestlingskills, Charisma und Entertainmentfaktor angeht. Ich kann seine Rückkehr kaum erwarten, da die Lücke, die er hinterlassen hat, doch sehr spürbar war. Außerdem ist Jericho eine Personalie, auf die die WWE immer zählen kann und der unglaublich konstant seine Leistung abrufen kann. Für mich persönlich der Beste Wrestler dieser Zeit, wenn nicht sogar aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Nerowrote on 17.04.2011:[10.0] "Für mich ist Chris Jericho einer der komplettesten Entertainer, den das Wrestling-Buisness je erlebt hat. Für mich steht er über Edge, über The Rock, über HBK und über Bret Hart. Nach den verkorksten SL's gegen Randy Orton und JBL hat man mit dem Heel-Turn und de verbundenen Fehde mit Shawn Michaels alles richtig gemacht und einen vollkommenen, genialen Charakter geschaffen, der ohne Zweifel in der Lage ist, die WWE zu leiten und zu führen. Am Mic war er schon immer klasse, seit dem Programm mit HBK kann man sein Micwork nurnoch als göttlich bezeichnen. Im Ring ist er auch gut bis sehr gut, zudem hat er Charisma wie sonst was. Chris Jericho ist für mich der beste Entertainer der letzten drei, vier Jahre.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: C0nspiracywrote on 28.03.2011:[7.0] "Chris Jericho einer der besten Wrestler der 2000er. Für mich auf einer Stufe mit The Rock und Manking was den Entertaiment Faktor angeht. Auch wenn er etwas abgebaut hat im vergleich zum Millenium Gimmick so bleibt er selbst mit beinahe 40 Jahren noch immer unter den Top Wrestlern, als Entertainer können ihm sowieso nur eine Handvoll das Wasser reichen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Raven Ravnoswrote on 05.03.2011:[10.0] "Bin ein Fan des Ayatollah of Rock'n'Rollah seit ich in zum ersten Mal in Action sah. Y2J kann einfach alles, Promos, 5-Sterne-Matches zeigen und Gegner-zu-guten-Matches-ziehen. Für mich der einzige legitime Erbe von Ric Flair. Ich hoffe er gibt bald sein Comeback in der WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Michael Shawn Hickenbottomwrote on 21.02.2011:[10.0] "Einfach ein toller Wrestler , Superstar .. ect... er ist eben der beste in der Welt in dem was er tut . Für mich persönlich einer der besten Wrestler die es je gab und geben wird .  hat : -ein hammer Micwork drauf!  -ein Super Techniker -hat ALLE Stils drauf!  -kann Bücher schreiben .  -kann Songs schreiben -hat eine unvergleichliche Stimme !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jericho is excellencewrote on 11.02.2011:[10.0] "Ich nehme schonmal vorweg ich werde 10 Punkte geben und Jericho ist mein absoluter Lieblingswrestler. Jetzt kann die Lobeshymne beginnen: Jericho is excellence mit jeder Bewegung die er im und ausserhalb des Ringes macht. Jede einzelne Promo strotzt vor Energie und Glaubwürdigkeit, er kann im Ring praktisch jeden zu einem ordentlichen Match ziehen, mit starken Gegnern ist immer ein Klassiker drin.  In seinem Ganzen Auftreten spiegelt sich dieser Pefektionismus wieder, der Chris zu ergreifen scheint wenn er eine Wrestling Arena betritt. Sein Art zu reden, wie er sich im Ring bewegt, die Kleinigkeit wie das nervige (für Marks) "ASK HIM! " wenn er den Gegner im Submission Hold hält. Diese winzigen Dinge unterscheiden eine klasse Wrestler von dem perfekten Wrestler, den Chris Jericho für mich verkörpert und heben ihn deutlich von dem Einheitsbrei ab. Ausserdem weiss jeder der schonmal ein Out of Charakter Interview mit ihm gehört hat dass Chris ein extrem symphatischer Typ ist, der gern Spass hat und es liebt Leute zu entertainen, sei es mit Wrestling, mit seiner Band oder mit den Bestseller Büchern die er geschrieben hat.  Für den Wrestler Chris Jericho kann es hier nur eine 10 geben, für die Person ebenfalls."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: gekko83wrote on 02.02.2011:[10.0] "für mich einer der besten, wenn nicht sogar der beste,  den bisherigen höhepunkt hatte er in der fehde mit shawn michaels!  hoffe er kommt bald zurück"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Zamunerwrote on 02.02.2011:[10.0] "Wenn ich 15 vergeben könnte, wären es 15 Punkte. Er ist der Grund warum ich Wrestling schaue / geschaut habe. Jericho vs Michaels ist das Beste was ich je gesehen habe. Seine Promos waren einzigartig. Seine Matches immer von hoher Qualität. Leider ist es ihm nie vergönnt gewesen ganz nach oben zu kommen auf die letzte Stufe im Wrestling-Himmel. Warum bleibt wohl ein Rätsel. Vielleicht war er insgesamt zu selten im Ring und hatte zu wenige Fehden, die richtig ernst wurden. Als Comedy-Charakter Y2J war er unglaublich stark, da er auch ein guter Wrestler war. Das gibt es heute ja gar nicht mehr. Dann die lange Auszeit und ein zweiter Frühling als Heel. Vielleicht ist das der Grund. Er hat nie konstant an der Spitze gestanden. Vielleicht gibt es aber auch keine Erklärung warum dieser Gott nicht an den Erfolg anderer anknüpfen konnte. Aber er ist und bleibt einer der besten aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Perry Coxwrote on 31.01.2011:[10.0] "Allroundtalent: Er kann nicht nur hervorragend wrestlen und ist fast unschlagbar am Mikrofon, nein, er kann auch gut singen und gut schauspielern. Jericho ist für mich das beste Beispiel, dass Wrestler nicht immer stupide im Ring stehen müssen, um erfolgreich zu sein. Was er anfasst, wird zu Gold. Nach seinem endgültigen Rücktritt vom Wrestling sollte er zum Kreativteam der WWE gehen, denn er hat ein Auge für klasse Fehden, aus denen richtig ansehnliche Matches hervorgehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GamePrincewrote on 27.01.2011:[10.0] "Könnte ich 11 von 10 Punkten geben, Chris Jericho wäre der einzige bei dem ich es tun würde. Edge war jahrelang der beste Heel für mich ... ein 10 Punktekandidat. Aber Chris Jericho toppt Edge noch ... sowohl im Ring, als auch am Mic ist er eine ganze Klasse über jeden anderen Heel. Ok ok, ein Kurt Angle erreicht diese Qualität auch, Edge ist bzw. war nah dran und CM Punk kann diese Weltklasse noch erreichen, aber für den Moment gibt es einfach niemand der besser ist als CHRIS JERICHOOOOOOO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheEmpirewrote on 23.01.2011:[10.0] "Zusammen mit CM Punk und Edge ein Teil meiner Großen Drei. Sogar noch vor den zuerst genannten. Da er in der WCW eher verheizt wurde und seine Karriere erst 1999 in der WWE Fahrt aufnahm, ist er für mich DER Wrestler des vergangenen Jahrzehnts. Vielleicht sogar der des Jahrhunderts. Sein Mic-Work ist erstklassig, seine Ausstrahlung nicht zu toppen und seine InRing-Fähigkeiten sind auch spitze. Mein persönlicher Wunsch: Rückkehr zum Rumble mit anschließendem Sieg und eine geniale Fehde bist Wrestlemania gegen The Miz."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Atticuswrote on 16.01.2011:[10.0] "Top Promos ! Top Matches ! Er kommt in seinen Gimmicks immer glaubwürdig rüber!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Y2J Problemwrote on 16.01.2011:[10.0] "Hat sich seine Wertung festgefahren? Wie oft wird er hier mit 10 bewertet, aber an der Gesamtwertung ändert sich nichst? ! ? ! ? ... Für Jericho's Bewertung brauch man eigentlich keine Begründung, man muss nur mal in den matchguide/in seine Promos gucken, dann weiß man bescheid. Zudem ist er ein wirklich guter Autor!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Mountiewrote on 12.01.2011:[10.0] "Ein Wrestling-Titan. Brillierte als bunter, witziger Entertainer (in der WCW mehr als in der WWE) und noch mehr als er sich anno 2008 als reduzierter, ernster Bösewicht, der all seine vorherigen Markenzeichen über Bord warf, komplett neu erfand und mit Shawn Michaels die für mich beste Wrestlingfehde aller Zeiten hinlegte. Hat sich einen Platz im Olymp der ganz Großen verdient, für das, was er als Gesamtpaket geleistet hat, muss er sich hinter keinem Rock, keinem Austin und keinem Undertaker verstecken. Warum er dennoch nie annähernd an den kommerziellen Erfolg dieser Figuren herankam, ist ein ewiges Rätsel, für das die Standardfloskeln wie "unten gehalten", "Backstage-Politik" und "Triple H" keine hinreichenden Lösungen anbieten. Für manche soll es einfach nicht sein. Aber das ändert nichts an Jericho inzwischen wohlverdientem Rang als einem der All-Time-Greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Guru of greatnesswrote on 03.01.2011:[10.0] "Jericho vereint beides, sowohl Wrestling, welches er in Perfektion beherrscht, als auch Entertainment, da er die gebohrene "Rampensau" ist. Man kan ein halbe Show um ihn herumschreiben ohne das es langweilig wird, was ihn sozusagen zum Anti-Cena macht. Einer der ganz Großen und zukünftiger Hall of Famer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Schmidi2121wrote on 31.12.2010:[10.0] "Top Mann Top Main Eventer, nur vergisst ihn die WWe viel zu oft. Er hat seinen Dauerhaften Platz in der A-Show verdient. Und das unter den Top Wrestlern.  Den er ist nicht nur Bärenstark am Mic sondern Wrestlerisch immerwieder eine Bereicherung für jede Show."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LowJomoKiwrote on 27.12.2010:[10.0] "Chris Jericho ist wahrscheinlich zusammen mit The Rock der beste Mic-Worker den die WWE je hatte, fast allein dafuer verdient er die 10 Punkte, aber auch im Ring ist er vielen anderen ueberlegen und ueberzeugt mich vollends. Deshalb volle Punktzahl!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Tuwewrote on 27.12.2010:[10.0] "Genial am Mic, genial im Ring. 10 Punkte, aber sowas von!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: C van Damwrote on 26.12.2010:[10.0] "Jericho... Der Mann der Ring-In-Skills, Ausstrahlung, Schauspiel und Mic-Work in einer derart geilen Kombination bietet, das man einen Orgasmus bekommen möchte. King of the World!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AlexPrimewrote on 15.12.2010:[10.0] "Chris Jericho- The best one there is and there ever will be !  Chris Jericho ist die Genialität in Person !  Im Ring sensationell und am Mic so gut wie kein anderer !  Seine Gimmicks waren genial, vorallem Y2J hat mir gut gefallen, aber auch seine Heel-Gimmicks waren gut.  Ich hoffe auf jeden Fall, dass er bald wieder Champion wird, den dann hätten wir wieder einen guten Wrestler ganz oben bei RAW !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Necronwrote on 08.12.2010:[9.0] "Vor allem am Mikrofon immer wieder sensationell gut. Seine Matches sind für gewöhnlich auch sehr ansehnlich, auch wenn ich wohl nie der größte Jerichoholic werde..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: turkeltonwrote on 22.11.2010:[10.0] "Welcome to WWE is Jericho... noch fragen. Er überzeugt einfach in jeder Rolle"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rated R Userwrote on 06.11.2010:[10.0] "Seine Klasse sowohl im Ring, als auch am Mic sind unbestritten genial. Jedoch finde ich es schade, dass man ihn nun eine lange Zeit als Heel quasi verheizt hat, könnte er doch als Face die Bude bis unters Dach rocken! Das Publikum dazu zu bringen dich zu hassen ist einfach und wird seinen Fähigkeiten nicht annähernd gerecht. Ich hoffe bei seiner Rückkehr also stark auf einen Face Turn und einen somit noch genialeren Jericho!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheRock 7 Champwrote on 05.11.2010:[10.0] "Ich liebe es Chris Jericho am Mic zu sehen. Seine Mimiek ist unglaublich und wie er es immer schafft das Publikum dazu zu bringen ihn zu hassen. Auch seine Matches will ich mir immer wieder anschauen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rawfightwrote on 04.11.2010:[9.0] "Schade das die WWE Jericho am Ende wie ne heiße Kartoffel fallen gelassen hat. Er dürfte ja bis zum Ende, fast alle Matches verlieren, obwohl er weit mehr drauf hat :( Schade, ich hoffe er feiert bald sein Comeback und startet nochmal richtig durch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Marth99wrote on 01.11.2010:[10.0] "Einer der besten Wrestler aller Zeiten deshalb 10. sogar besser als HBK"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Aesopwrote on 18.10.2010:[10.0] "Chris Jericho ist einfach ein intresasanter Charakter als Heel aber auch als Face. Er zeigt sehr gute Promos ist aber auch im Ring sehr gut und kann seinen Charackter Wunderbar rüberbringen. Ich war schon immer ein riesen Jerichoholic, von Anfang an war er mein Favorit. Und in der WWE reicht ihm kaum einer das Wasser."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Cenafan 09wrote on 18.10.2010:[10.0] "Jericho ist der beste Charakter in der WWE. Den seinen Mic-Skills sind einfach nur göttlich und In-Ring hat er auch viel mehr drauf als viele andere Wrestler. RAW ist Jericho. RAW bleibt Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Vandeacwrote on 07.10.2010:[10.0] "Einfach der Beste der zurzeit in der WWE rumläuft, der Mann ist genial, er kann alles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Undertakemaintwrote on 23.09.2010:[10.0] "Geile Promos+gute Kämpfe.  Leider auch teilweise als Jämmerling verbookt,  Trotzdem 10 Punkte, weil er daran nix machen Kann"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Piurrywrote on 23.09.2010:[10.0] "Ich weiß nicht was man über den Mann schreiben kann. Hoffentlich unterhält er mich auch in naher Zukunft weiterhin so genial.  Steht verdient auf Platz eins im Käfig. :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MBLegendwrote on 20.09.2010:[8.0] "Er ist zweifelsfrei ein guter Wrestler und ein mehr als solider Mic-Worker, jedoch ist er meiner Meinung nach nur als Heel wirklich überzeugend."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kane123wrote on 19.09.2010:[10.0] "Im Ring einfach nur genial ... als Heel sowie als Face"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Pyromaticwrote on 14.09.2010:[10.0] "Einer der besten Mic Worker und Entertainer im Wrestling aller Zeiten. Schade das er nicht mehr so stark gepusht wird.  Sein Karriereende wird eine tiefe Lücke in der WWE hinterlassen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rockysadrianewrote on 10.09.2010:[10.0] "Wird eines Tages seinen rechtmäßigen Platz in der Wrestlinggeschichte einnehmen. Und zwar ganz oben mit den größten Legenden!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rock93wrote on 05.09.2010:[10.0] "Geiles Mic-Work, klasse Leistungen im Ring, bei den Fans over wie Sau: Dieser Mann war lange Zeit der einzige Grund, Raw zu schauen und ist immer noch ein Gott der Unterhaltung!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Ramwrote on 02.09.2010:[10.0] "Wie er es selbst des öfteren sagt, er ist der beste in der Welt in dem was er tut!  Dieser Wrestler hat wirklich alles was ein Wrestler haben muss. Er ist Unterhaltsam wie kein Zweiter und das nicht nur am Mic, auch in Ring ist er einfach eine Granate.  Einen Chris Jericho im Ring kann man ungefair mit Shawn Micheals vergleichen, jedes Match ist ein Genuss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Soopawrote on 29.08.2010:[10.0] "Dieser Mann hat sich nur die 10 verdient über ihn wurde wol schon alles gesagt.  Großartiger Entertainer , großartiger Techniker Würd ihn gern nochmal als Face Y2J erleben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Tribbel Eitschwrote on 26.08.2010:[9.0] "Jericho kann man von heute auf morgen über Nacht wieder an die Spitze einer Show stellen und er wird es schaffen, die Massen mitzureißen. Im Ring über jeden Zweifel erhaben (wann hatte er das letzte Mal ein "schlechtes" Match? ), ist es vor allem die Darstellung seines Charakters, die ihn von vielen seiner Kollegen abhebt - auch wenn die Reaktionen seitens des Publikums im Vergleich zum Anfang des Jahres etwas nachgelassen haben. Trotzdem einer der besten seiner Zeit."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: nVVo-Fanwrote on 25.08.2010:[10.0] "Einer der Besten seines Faches. Sehr gute Ring- und Mikrophonfähigkeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ShowTimewrote on 24.08.2010:[9.0] "Chris Jericho ist kein Perfekter aber ein guter Wrestler er kann Super Promos und gute Matches zeigen 9 Punkte von mir."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Blacc84wrote on 23.08.2010:[9.0] "Im Ring ordentlich etwas drauf und seine Promos sind einfach Genial, Aber mein 10er Debüt werde ich mir dennoch ein wenig aufsparen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rookie of the Yearwrote on 23.08.2010:[10.0] "Ist für mich mit Edge und Orton zusammen eine der größten Konstanten, was das Gimmick angeht. Ein Heel wie er im Buche steht und wrestlerisch für mich gut bis sehr gut. An sein Micwork kommen nicht viele heran. Kann ihm mal bitte jemand das Wasser reichen? ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Tekkie1993wrote on 22.08.2010:[10.0] "Für mich momentan der beste wrestler der welt. So ziemlich jede Promo von ihm ist unterhaltsam"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lowflyerwrote on 18.08.2010:[8.0] "Jericho ist ein wahrer Dauerbrenner, der in so gut wie jeder Rolle überzeugen und glänzen kann. Er ist einer der wirklich starken Redner der WWE, auch wenn ich ihn nicht ganz an der Spitze sehe. Im Ring ist er mit den meisten Gegnern in der Lage ein starkes Match abzuliefern, jedoch gelingt es ihm nur selten mich restlos zu begeistern. Neben seiner universellen Einsetzbarkeit schätze ich vor allem seine Fähigkeit Storylines Leben und Tiefe einzuhauchen, welche schon einige seiner Fehden bereichert hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Ray Robsonwrote on 17.08.2010:[10.0] "Einer der Besten überhaupt. Da wo Jericho ist, ist oben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MaKnowrote on 17.08.2010:[10.0] "Jericho ist ein Gott! Am Mic ist er längst legendär, im Ring selbst im hohen Alter noch zu ansehnlichen Leistungen imstande! Jericho ist aktuell einer der ganz ganz wenigen in der WWE, die mich nach wie vor begeistern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Tamjukwrote on 17.08.2010:[10.0] "Sehr Starker Worker, mit geniallem Mic Work und Charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HBK782wrote on 17.08.2010:[8.0] "Sehr guter Wrestler, der in verschiedenen Rollen überzeugt. Mochte den alten Y2J dennoch lieber, weshalb es eher in Richtung 8 als 9 schwankt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Stockwrote on 17.08.2010:[10.0] "Chris Jericho ist einer der besten Wrestler/Entertainer, den die WWE hat. Er zeigt immer starke Matches und seine Promos sind auch großartig. Er ist auch einer der wenigen Pros, die es geschafft haben mich bei NXT zu überzeugen. Entweder hat er hier starke Matches geliefert, Promos gehalten oder Josh Mathews und Michael Cole darauf hingewiesen mehr über seinen Rookie zu reden. Seine Einstellung, sich auch für schwächere Wrestler hinzulegen, ist vorbildlich und macht ihn nochmal sympathischer. Ich hoffe, dass er noch ein gutes Stück bei der WWE bleibt und weiterhin seine Leistung bringt. Kurz gesagt: "He is the best in the world at what he does"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DJ MaSchwrote on 14.08.2010:[10.0] "Chris Jericho ist einer der wenigen Gründe, weswegen ich die WWE noch verfolge. Er ist der MVP der Liga, der in einer Woche für R-Truth den Job machen kann und in der nächsten ein glaubwürdiger Herausforderer auf den World Title des Undertakers sein kann. Jericho ist einer der besten Mic-Worker aller Zeiten und besitzt seit seinem Heel Turn 2008 auch einen geniallen Charakter. Das er auch wrestlerisch ein Top Mann ist steht für mich eh ausser Frage. Ich hoffe, dass er uns noch einige Jahre erhalten bleibt, den er ist eines der letzten wirklichen "Total Packages" der Wrestlingwelt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WrestlingFanDuisburgwrote on 06.08.2010:[10.0] "Y2J ein klasse Mann. Super In-Ring Skills und fantastisch am Mic. Er hat mir in der WCW und Anfang der WWF aber besser gefallen als heute."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SelfEsteemwrote on 05.08.2010:[10.0] "Chris Jericho ist einfach genial! Mit seinen 39 Jahren lässt er quasi jeden jüngeren Worker der WWE im Schatten stehen und das obwohl er körperlich für einen Wrestler wirklich zierlich ist. Aber er hat einfach ein super Micwork, eine klasse Technik im Ring und Charisma für drei! Wenn hier einer 10 Punkte verident hat, dann Chris Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: milliwrote on 04.08.2010:[10.0] "Jericho ist sowohl vor als auch hinter der Kamera einer der besten, wenn nicht der beste Worker im Geschäft. Seine Kreativität hat der WWE schon oft geholfen und daher ist er unverzichtbar. Aber vor Allem auch In-Ring technisch ist er ein Genie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: boiddewrote on 01.08.2010:[10.0] "Ein Mann der einfach alles kann, am Mic gut und wrestlerisch auch einer der besten was die WWE zur Zeit hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: kofikingston96wrote on 29.07.2010:[10.0] "Chris Jericho ist einfach genial. Am mic einer der besten in der wwe momentan. Im moment gefallen mir nur miz' und Punk's promos genauso gut. Und auch im ring immer noch grandios. Aber seine größte Stärke ist, dass er mich immer überzeugt, egal ob als face oder heel. Er weiß einfach wie er das publikum auf seine seite zieht, beziehungsweise es gegen ihn aufbringt. Echt schade, dass er momentan nicht mehr richtig eingesetzt wird. Einen Titel hat er aufjedenfall noch verdient und dieses mal bitte einen längeren run "cause he is the best in the world at what he does" !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Boggenauerwrote on 29.07.2010:[10.0] "Chris Jericho der Kerl ist einfach ein Gott am Mic ich finde es immer wieder klasse wie er selbst wenn er bejubelt wird die Fans beleidigt, er fällt einfach niemals aus seiner Rolle. und im Ring ist er auch einfach nur Top einfach ein klasse Moveset das er da hat, nur viel zu schhade das er selten noch jemanden mit der Walls of Jericho zur Aufgabe zwingen darf. Meiner meinung nach sollte die WWE ihm mal wieder einen Titel geben "cause hes the best in the world at what he do" dieser Satz ist einfach Grandios. Deshalb von mir 10 punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bananaramawrote on 22.07.2010:[10.0] "Er ist für mich einer der komplettesten Wrestler der Welt. Er ist zum einen technisch sehr stark und unterhält auch am Mic auf einem sehr hohen Level. Seit seiner Rückkehr war er in zwei wirklich brillianten Fehden (Shawn Michaels, Rey Mysterio) zu sehen und wird für mich zu keinem Punkt langweilig. Daher gebe ich ihm volle Punktezahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheRock902102wrote on 18.07.2010:[8.0] "Guter Wrestler, gute Show... jedoch is seine Stärke des Entertainment im Gegensatz der früheren Jahre leider nicht mehr so stark.  Fand ihn früher um einiges besser."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: P92wrote on 09.07.2010:[10.0] "NXT#1 23/2/10 Chris Jericho vs Daniel Bryan ... hervorragendes Match, welches beweist, dass sowohl Jericho als auch Bryan "10 Punkte-Wrestler" sind!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Whopperlewrote on 06.07.2010:[10.0] "The Best in the world at what he does! Oder zumindest einer davon : ) Genial am Mike und einer der besten Techniker in der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Franjisewrote on 30.06.2010:[10.0] "Chris Jericho ist ein "Total Package". Charisma, exzellentes Mic-Work und erstklassig im Ring. Eine ganz klare 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RiotMorawawrote on 29.06.2010:[10.0] "Einer der GANZ großen in diesem Sport... seine Jahre in Japan, der ECW und der WCW waren einfach grandios und seine WWE-Zeit ist auch durch grandiose Fehden (bsp. : gegen Shawn Michaels) geprägt.  Am Mic gottgleich und im Ring begnadet!  Alles andere als 10 Punkte wäre in meinen Augen vermessen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HunterXDwrote on 22.06.2010:[10.0] "Chris Jericho ist vielleicht der beste Wrestler den es im moment auf der Welt gibt! Klar, ein Bryan Danielson und mit abzügen noch ein Desmond Wolfe vielleicht sind teilweise besser als Jericho, aber Chris ist das gesamtpaket!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: myheroine7362wrote on 19.06.2010:[10.0] "Chris Jericho - zweifelsohne "the best in the world at what he does".  Zwar war sein Comeback 2007 mit dem Y2J Gimmick ein wenig langweilig, enttäuschend und sogar ein wenig aufgezwungen; jedoch sieht man seit seinem Heel Turn 2008 seine neue, alte Klasse wieder. Er ist einer der besten Heels der Geschichte, der einfach das benötigte Gesamtpaket mitbringt.  Im Mic gehört er klar zu den besten, ist vielleicht sogar DER beste. Zwar ist seine Message jede Woche dieselbe, jedoch verschaltet er sie so geschickt, dass andere Facetten und Aspekte gezeigt werden.  Und auch im Ring wirkt er noch frisch und schnell. Er kann immer noch klasse Matches bestreiten, bekommt er die richtigen Gegner, wie zum Beispiel gegen Shawn Michaels 08, übrigens auch eine der besten Fehden aller Zeiten. Man merkt ihm garnicht an, dass er schon um die 40 ist.  Alles in allem, eine verdiente 10 für den ersten Undisputed Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SES-Memberwrote on 15.06.2010:[10.0] "EINER DER BESTEN ! die Mic-Skills sind klasse! seine ring-skills sind auch super und er zieht viel heat auf sich... er macht seinen Job klasse un es ist schade das die WWE nicht mehr solche worker hat !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Metal Wolfpac Crewwrote on 09.06.2010:[10.0] "Ich hätte nie gedacht dass die Personalie Jericho in so astronomische Höhen schießen würde. Der wertvollste Schatz, den die WWE zurzeit hat, auch wenn er bei der Vergabe von regelmäßig übergangen wird, was an und für sich schon eine Schande ist. Vom technischen Standpunkt her ist er Leuten wie Cena und Orton, trotz seines Alters, um einiges Überlegen. Und über sein geniales Micwork ist an dieser Stelle ja schon alles gesagt worden. Erstaunlich, dass er konsequent sein Programm abspielt und präsent ist obwohl er selten Champion ist und hochmotiviert an alles heran geht, bestes Beispiel hierfür seine Auftritte bei NXT und sein "Engagement" für seinen Rookie gegenüber Striker, Matthews und Cole ("say something about him" - "we already do" - "say MORE! "). Und wer weis, vielleicht ist er ja der geheime Führer der NXT'ler (kleiner Schmunzler nebenbei). Ein absoluter Klassiker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TeeHaawrote on 06.06.2010:[10.0] "Seine Zeit als Face fand ich zwar gut aber nicht absolut herausragend. das kann daran liegen, dass er unten gehalten wurde oder an eigenen Unzulänglichkeiten unterm Strich zählt für mich nur, dass er nicht herausragte. Als Heel macht er das aber doppelt wet. Er zieht durch seine bloße Anwesenheit genug Heat um seinen Nachmittagstee zum Kochen zu bringen. Wahnsinn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rated R Champwrote on 04.06.2010:[10.0] "Chris Jericho ist eines der besten Gesamtpakete, nicht nur in der WWE sondern generell. Im Ring ist er, trotz mittlerweile fortgeschrittenen Alters, ein sehr Guter und kann auch die unterschiedlichsten Stile mitgehen. Und in Punkto Promos und Charisma gibt es ohnehin nur ganz wenige, die mit Jericho mithalten können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Leon1948wrote on 04.06.2010:[10.0] "Der beste Wrestler den es im Momemt gibt! Er hat eine Technik wie kein anderer. Chris Jericho hat es echt verdient 10P @ Can Cena: Mark?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: morph80wrote on 30.05.2010:[10.0] "Neben Bret Hart und Shawn Michaels einer der besten Techniker, dazu geniales Micwork und überzeugt als Face und Heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JeriMizwrote on 22.05.2010:[10.0] "Ich finde er ist einer der besten Wrestler, er ist Gut am Mic, und zeigt auch gute Leistung im Ring. Daher 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Erasedwrote on 21.05.2010:[9.0] "Klasse Entertainer. Selbst heute noch unterhaltsam. Zugegeben, vor einigen Jahren war er im Ring aber besser."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Cloverwrote on 21.05.2010:[10.0] "Finde ihn (zurecht) super, aber er wirkte mir damals gelegentlich zu gekünstelt in seinen Darstellungen. Inzwischen aber macht er seinem Ruf alle Ehre und dürfte einmal mehr auf dem (verdienten) Höhepunkt seiner Karriere sein! 9, 5 Punkte für den zukünftigen Hall of Famer und einen kompletten WRESTLER ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Straight Edge Jerichoholicwrote on 18.05.2010:[10.0] "Good, better, perfection, Jericho!  Unglaubliches Charisma, Unglaubliches Mic-Work, Perfekte Ausstrahlung!  Der Mann zeigt klasse Matches und ist daher verdient einer der großen im größten Unternehmen!  10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Edge96wrote on 13.05.2010:[10.0] "Genial im Ring, Genial am Mic, Geniales Charisma, 10 Punkte ganz klar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Larskanonewrote on 13.05.2010:[10.0] "Einfach einer, der Besten,  die WWE im moment hat! Liefert seine Arbeit immer gut ab, ob es Matches sein mögen oder Promos. Außerdem versteht er wie kein 2. mit dem Publikum zu spielen. Vereint einfach alles was man als Topstar im Wrestling braucht. Einfach ein grandioser Wrestler! ^^(muss man als Jericho-holic einfach sagen ^^)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sandmannwrote on 04.05.2010:[9.0] "Y2J ist definitiv einer der unterhaltsamsten Charaktere im Wrestling heutzutage. Dabei spielt es nicht mal eine Rolle ob er in eine großartige Fehde, wie gegen Michaels oder Mysterio, verstrickt ist oder ob er einfach alleine im Ring steht und über Gott und die Welt spricht. Dazu noch ein sehr guter Wrestler. Das perfekt Gesamtpaket."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Reiskartoffelwrote on 03.05.2010:[10.0] "Wer jedem Wrestler, der einem Bodybuilder ähnelt 10 Punkte aber einem Jericho, der wahrscheinlich einer der besten aller Zeiten ist 0 Punkte gibt, der soltle sich ein anderes Hobby suchen.  Jericho ist in allen Belangen überragend: Im Ring, am Mic.  Einer der besten aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TaraLovesTrishwrote on 02.05.2010:"Sehr Guter Wrestler.  Nach Seinem Comback Erfolgreic Wie Nie Zuvor.  Wrestlerisches Talent ; & Vorallem Sehr Gute Mikrofonarbeiten ."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Damon Strikerwrote on 29.04.2010:[10.0] "(Wohl nicht nur) Meine Nr. 1! Sowohl im Ring als auch am Mikro einfach göttlich! Daneben aber auch ein verdammt cooler, intelligenter und netter Mensch! Jedenfalls ist das mein, aus der Ferne gezogenes Fazit, was sich u. a. aus Aussagen von ihm und Kollegen, diversen Auftritten außerhalb des Wrestling-Zirkus und auch der Lektüre seiner Biographie ziehen lässt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LionheartXwrote on 29.04.2010:[10.0] "Jerico ist All n All einer der besten Wrestler. Er beherrscht seine Waffe (das Mic) sehr gut. Zum Thema Ring Skills, er ist einfach gut balanciert. Ich könnte ihn mir noch mal und vorallem noch länger als Champion vorstellen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CM Dannywrote on 15.04.2010:[10.0] "Ich war von Anfang an ein Jerichoholic. In der WCW wurde er zu beliebt und unten gehalten, doch das hat nichts an seiner Beliebtheit geändert. Der Pop bei seinem WWE Debüt gibt mir auch heute noch eine Gänsehaut. Selbst als Triple H ihn unten halten wurde, hat Jericho seine Fans nicht verloren. Es war sehr mutig, das erfolgreiche Y2J-Gimmick fallen zu lassen, doch er wurde zurecht dafür belohnt. Er gehört wirklich zu den Besten der Welt, in dem was er tut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Big Bad Booty Babywrote on 15.04.2010:[7.0] "Ähnlich wie bei Punk muss ich auch bei Jericho ankreiden, dass er zu großen Teilen von seiner Unbeliebtheit lebt. Sonst zeichnet ihn momentan nichts wirklich aus. Seine Leistungen im Ring sind immer noch ganz gut aber selten herausragend und im Vergleich zu früher eher mau. Aber seine Promos? Immer wieder das selber nur regelmäßig neu verpackt. Dadurch geht er allen auf die Nerven, aber das zeichnet ihn nicht als Rhetorik-Meister aus. Ich erwarte keine für Marks wirksame Promos, ich erwarte gute Promos. Das bedeutet Mimik, Gestik, Tonfall, frische und passende Ideen. Eben das ganze Programm alias Edge. Jericho ist lediglich jemand, den man hassen kann, fast hassen muss. Doch das gilt auch für JBL."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Icebreakerwrote on 13.04.2010:[10.0] "Y2J ist einer der wenigen Heels der seit wirklich langem überzeugen kann und nicht irgendwann als weinerlicher Betrüger dargestellt wird. Dieser Mann beherrscht unglaubliches gutes Wrestling (egal ob Technik- oder Highflyingelemente) und hat mit das beste Micwork von allen. Ein talentierter, charismatischer Schauspieler eben. Mit ihm wird es einfach nie langweilig, selbst gegen schwache Wrestler zeigt er gute Matches und gegen gute fantastische. Zu dem ist er ein verdammt guter Sänger, Fozzy rockt einfach ;-). Chris sollte noch öfter im Mainevent stehen, die WWE sollte froh sein so einen starken Worker zu haben. Es ist außerdem schön zu sehen das nicht nur die Big Men ihren Weg ins Mainevent finden, sondern auch ein vergleichsweise kleinerer und "schmächtigerer" Wrestler zu den Topathleten gehören kann. Kurzum: Jericho ist einfach klasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: K4thg4Rwrote on 10.04.2010:[10.0] "Ausstrahlung, Charisma, Moveset, Mic-Work - da passt einfach alles. War mit dem Comeback als Face nicht erfolgreich, turnte dann zum Heel und ist seitdem wieder absolut top. Weiß immer zu unterhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RaTedR5starwrote on 10.04.2010:[10.0] "Obwohl Jericho mir um 2000-er Wende besser gefallen hat kann ich ihm nichts anderes als eine 10+ mit **********. Er verkörpert DEN perfekten Wrestler. Er hat ein perfektes Mic-Work, Er besitzt ein perfektes Gimmick und er nennt eine nahezu perfekte Ring-In Skill sein Eigen. **********"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Baldrickwrote on 10.04.2010:[10.0] "Hab in 20 Jahren Fansein nie einen besseren Micworker gesehen. Dazu kann er im Ring so ziemlich alles, was man braucht-ne klare 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jar Jar Binkswrote on 07.04.2010:[10.0] "Jericho. Stellt euch mal vor, Jericho wär nicht mit dabei. Da würde doch eindeutig war fehlen. Jericho ist ein außerhalb des Ringes unglaublich netter und sympatischer Typ. Innerhalb des Ringes ist er jedoch ein genialer Heel. Er spielt seine Rolle beängstigend gut und ist sein Jahren der Topmann am Mic. Dass er technisch ein Guter ist, ist sowieso weitgehend bekannt, aber bei Weitem das Beste an ihm ist, wie glaubwürdig er seine Rolle spielt und wie sehr dieser Mann unterhalten kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Yannick009wrote on 04.04.2010:[8.0] "Momentan das Beste was die WWE am Mic zu bieten hat. Im Ring gut aber nicht perfekt. Macht Smackdown erst sehenswürdig..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: cmPunKwrote on 03.04.2010:[10.0] "Er ist einfach Spitze. Am Mic-work ist er der beste den die WWE bieten kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Viperwrote on 30.03.2010:[10.0] "Am Mic ist er nahezu perfekt. Im Ring ist er genial und daher der beste Wrestler momentan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Batistawrote on 28.03.2010:[10.0] "Am Mic einfach mit Edge der beste Wrestler den es gibt! Im Ring dazu auch in einer absoluten Topliga im Vergleich mit anderen... 10 Punkte für Chris Jericho!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: antihiphop2002wrote on 28.03.2010:[10.0] "Was soll man über den Mann noch sagen? Es sind ja in diesem Zusammenhang bereits alle Superlativen ausgesprochen worden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Blade Bourdeauxwrote on 28.03.2010:[10.0] "Im Ring ein Großer, am Mic wohl einer der Besten überhaupt. Nach seiner Rückkehr 2007 war ich ein wenig enttäuscht. Entäuscht von Jericho im Ring, am Mic und von seiner wenig Superstarhaften Erscheinung. Inzwischen ist er aber wieder voll da und in seiner neuen Rolle ist er vielleicht so gut wie bisher noch nie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: N8y Modianowrote on 26.03.2010:[10.0] "Einer der besten Wrestler und Entertainer im Wrestling und singen kann er auch noch ;) ein hochkarätiger Sportler. Seine In-Ring action und seine Promos wissen zu überzeugen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: bigdaniel1992wrote on 24.03.2010:[10.0] "Geile Promos. Geile Matches. Geile Ausstrahlung. Chris Jericho. Er ist für mich, wie Edge, ein einfach perfekter Entertainer, aber auch Wrestler. Wenn er bei einer Show dabei ist, ist diese Show gleich doppelt so gut. Das erste Match was ich von ihm gesehen habe war das Match gegen John Cena beim Summerslam 2005. Leider war er einen Tag danach weg, aber zum Glück kam er 2007 wieder. Seit er Heel wurde 2008 unverzichtbar für WWE. Deswegen 10Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MarcTrixwrote on 22.03.2010:[10.0] "Wer diesen Wrestler nicht genial findet, den kann man nicht mehr helfen. Er is einer, vielleicht DER beste am Mic den is gibt. Jede seiner Promo ist zu Zeit einfach genial und seine In-Ring fähigkeiten und Leistunegn sind einfach nur spitze. TOP!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Showstopper45wrote on 18.03.2010:[10.0] "Er ist genau das was er sagt der beste zumindest der beste Heel unserer Zeit. Und zwar im Ring einfach Spitze genau wie am Mic. Und von seiner Band Fozzy garnicht mal anzufangen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Neubauteneinsturzwrote on 16.03.2010:[10.0] "Ich weiss nicht, warum ich mir in der Vergangenheit schwer damit getan habe, Jericho als einen der besten überhaupt anzuerkennen. Vermutlich weil er damals einfach noch zu sehr von Leuten wie The Rock oder Steve Austin überschattet wurde. Wie dem auch sei. Mittlerweile kann ich Y2J einfach nicht weniger als 10 Punkte geben. Egal ob Micwork, Matchqualität oder generelles Entertainment. Bei Jericho dürfte der Wrestlingfan an sich so selten wie bei keinem anderen nicht zufrieden sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: batistabombhuf619wrote on 16.03.2010:[10.0] "Jericho ist für mich der einzige Worker der WWE, neben Edge, welcher seine überlegenen Charismafähigkeiten mit guten In-Ring Skills verbindet. Auch hat er kein Problem damit, sich für schwache Worker hinzulegen um diese zu pushen. Er fiel in seiner Karriere selten negativ auf und hat eine sehr gute Beziehung zu den Fans (z. B. durch Twitter). Seine Fehden im letzten Jahr mit Shawn Michaels und die diesjährige mit Edge gehören zu den absolut Besten in den letzten Jahren. Wenn einer die 10 Punkte Bewertung verdient hat, dann er."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: destinationwrote on 15.03.2010:[10.0] "für mich der derzeit beste Entertainer in der WWE. Ausgezeichnetes Mic Work und technisch sowieso hervorragend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Moyawrote on 15.03.2010:[9.0] "Macht das, was er macht, gut. Seine wrestlerischen Fähigkeiten sind hervorragend, die Matches immer ansehnlich und seine Promos erfüllen auch immer ihren Zweck."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 3durch16wrote on 14.03.2010:[10.0] "Er kann aus so ziemlich jeden Gegner ein gutes Match ziehen und ist einer der besten und glaubhaftesten Heels. Sehr gute Promos"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Fat Mikewrote on 14.03.2010:[10.0] "In meinen Augen ist Jericho, neben Shawn Michaels, das Total Package der WWE. Im Seilgeviert ist er einer der Besten und sein Charisma ist schier unglaublich. Egal in welcher Rolle, der gute Chris kann einfach immer überzeugen. Zudem ist er einer der wenigen aktuellen Wrestler die in der Lage sind Geschichten nicht nur am Mikrofon, sondern auch im Ring zu erzählen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Galottawrote on 12.03.2010:[10.0] "Schon immer einer meiner Lieblingswrestler. In letzter Zeit (letzten 2 Jahre) hat er mich noch mehr überzeugt, deshalb Erhöhung auf 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LabronBenoitwrote on 11.03.2010:[10.0] "Einer der besten Wrestler überhaupt. Er bescherte uns legendäre Promos und Matches und dafür sollten wir ihm allemal dankbar sein. Ich hoffe, dass er noch lange lange Jahre dabei ist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: tnawrestlingfanwrote on 10.03.2010:[10.0] "Bin ein großer fan von ihm! Hab mir sogar damals wegen ihm die Haare lang wachsen lassen!  (Hab immer noch die Frisur! )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Eazyewrote on 10.03.2010:[10.0] "Chris Jericho ist wohl einer der besten Worker den eine Wrestling Liga haben kann. Zum einen ein humorvoller Mensch, zum anderen im Ring bombastisch, liefert mehr als starke Promos und sehr charismatisch. Er hatte einfach eine Superstar Ausstrahlung. Dem kann ich eigentlich nur 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Charismatic Enigmawrote on 08.03.2010:[9.0] "Einer der besten Heels der letzten Monate. Auch wenn sein, "best in the world... " langsam nervt, erreicht er damit ja sein Ziel. Guter Techniker, Promogott: Alles in allem 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheUndertakerwrote on 08.03.2010:[10.0] "@TheJohnMorrison: Wie kannst du es kritisieren das sich ein Jericho für R-Truth hinlegt? Es ist positiv anzusehen das er das macht denn sonst gibt es keinen der von unten hochkommen kann siehe RAW mit dem fast schon ewigen Cena/Orton/Triple H im Jahr 2009. Das Jericho nicht so im Main Event geschehen war dadurch auch positiv zu sehen denn so haben CM Punk und Jeff Hardy die Chance bekommen. Dafür hat Jericho bei allen 3 Shows gezeigt warum er der beste ist zurzeit. Bei RAW war er neben The Miz DAS Highlight. Achja und geb der Fehde mit Edge mal Zeit, es sind noch 3 Wochen bis Mania und ich denke die Fehde hat Potenzial bis Hell in a Cell zu laufen. Bottom Line... Jericho ist zurzeit der beste in WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Grandmaster Sexaywrote on 07.03.2010:[10.0] ""You people have been lead to believe that mediocrity is excellence, uh-uh, Jericho is excellence. And I promise to ignite you, to excite you, to delight you, and I invite you to strap on your seatbelts, ease the seat back, click it into gear, and go into overdrive because from 1999 forward it’s 100% entertainment. 100% electricity. 100% Jericho! " Dieser Teil seiner WWE-Debüt-Promo sagt wohl alles ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Checkerwrote on 07.03.2010:[10.0] "Am Mic einfach genial und er weiß ganz genau wie man Heat zieht. Sein Können im Ring ist nahe zu perfekt. Als Heel wohl der beste den es gibt und auf lange Zeit geben wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dankowrote on 05.03.2010:[10.0] "Jericho ist grandios. Seine Promos sind großartig, im Ring kann er mit fast jedem ein ansehnliches Match auf die Beine stellen und er hat ein Charisma das fast an das von The Rock heranreicht. Fast müsste ich ihm einen Punkt abziehen, da er nun ein weiterer "Unterhosen-Wrestler" ist, aber bei einem Jericho kann ich darüber hinwegsehen. ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jerichoholicwrote on 04.03.2010:[10.0] "Chris Jericho gebührt alleine schon großer Respekt, weil es ihm gelungen ist, sich nochmals selbst neu zu erfinden - und dies allen Widrigkeiten zum Trotz. Zunächst schien es nämlich so, als habe er sich mit seiner Rückkehr keinen Gefallen getan. Die Save-Us Story war ein großer Reinfall, die anschließende Fehde gegen JBL auch kaum der Rede Wert. Dass Jericho das langsame Sinken seines Sterns nochmals verhindern konnte und seither mehrfach den WWE Gürtel erringen konnte, liegt einzig und alleine an seinem neuen, genialen Heel Charakter, der so gar nichts mehr mit dem alten Chris Jericho zu tun hat - und das ist auch gut so. Der Mann ist gereift und hat daher im Vergleich zu früher verdientermaßen nochmals den Schritt nach vorne machen dürfen. DIESER Chris Jericho ist problemlos in der Lage Wrestlemania zu headlinen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Cripplerwrote on 03.03.2010:[8.0] "Der beste Heel der WWE , trotzdem fehlt mir bei ihm das gewisse etwas."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wizz21wrote on 01.03.2010:[10.0] "Super Wrestler, Weltklasse Heel. Einer der Besten die das Business zu bieten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Perfectionwrote on 26.02.2010:[10.0] "Chris Jericho ist göttlich! Am Mikro ist er so stark wie kaum ein Anderer in der WWE. Im Ring schwächelt er zwar langsam, doch er kann immer noch überzeugen. Jetzt nach dem Elimination Chamber ist er wieder da wo er hingehört: On the Top! Als World Heavyweight Champion wird er ein weiteres Mal glänzen und mit Edge wird er uns das Match Of The Night von WrestleMania XXVI bieten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: kekslpetewrote on 25.02.2010:[10.0] "Chris Jericho ist der Gott des Wrestling und endlich wieder da angekommen wo er hingehört, auch wenn seine Regentschaft wohl nicht allzu lang andauern wird. War im Ring schon immer überzeugend und ist am Mic und in Punkto Charisma nicht zu toppen. Er ist der Beste in dem was er tut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Manu Adamswrote on 17.02.2010:[10.0] "Auch ich bin großer Jericho Fan. Hätte Chris vor drei Jahren nicht seine Rükkehr gefeiert, würde ich schon lange kein Wrestling mehr sehen, da er einer der Hauptgrunde war, der mich Woche für Woche an den Fernseher zog. Jericho hat alles was ein Main Eventer braucht, er ist eine Granate im Ring, liefert die derzeit besten Promos und ist charismatisch. Einzig und allein habe ich zu bemängeln, dass er in den letzten Monaten, doch einiges an Schnelligkeit verloren hat, doch dies macht er spätestens mit seinem schauspielerischen Talent, wieder wett."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: the king of kingswrote on 14.02.2010:[7.0] "Es ist nicht abzustreiten, er ist einer der besten Heels, aber es war leider nur die gute Fehde mit HBK, danach war er eigentlich wieder langweilig. Bei No Way Out 2008 war ein richtig guter PPV wo er richtig gute Aktionen zeigen konnte, dann noch die gute Fehde mit HBK, das war es dann. Das Tag Team mit Big Show war dann richtig schlecht, deswegen nur eine 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Vanniwrote on 12.02.2010:[10.0] "Einer der absoluten Top-Männer, die die WWE ihr Eigen nennen kann. Vor allem nach seinem Gimmickwechsel im letzten Jahr absolut genial am Mic, im Ring konnte Jericho eigentlich schon immer überzeugen. Geht in seiner neuen Rolle aber total auf, sodass es richtig Spaß macht, ihm am Mic zuzuhören."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rockfan1wrote on 08.02.2010:[10.0] "Jericho ist "der" Grund, warum mich WWE überhaupt noch interessiert! Er ist einfach unglaublich: Alle stöhnen, wie anstrengend doch der Job bei WWE ist und der Mann macht nebenbei noch eine Fernsehsendung und bringt mit seiner Band eine neue CD auf den Markt, die übrigends ein Leckerli ist. Noch nie habe ich Chris stöhnen hören, wie schlimm seine Arbeit ist! Und ich bin der Überzeugung, dass er sie immer noch gern macht ( oder wieder nach der langen Pause damals). Wie wertvoll solche Worker sind, merkt die WWE sowieso erst, wenn sie weg sind. Chris hat alles, was man braucht, um ein guter Entertainer zu sein: Charisma ohne Ende, athlethische Fähigkeiten, um die ihn weit Jüngere sicher beneiden, hervorragende Arbeit am Mikrofon ( zeigt mir einen besseren bei WWE ! ). Er kann jeden gut aussehen lassen, was ihm ja leider bei dem WWE-booking zum Verhängnis wird. Er ist der Einzige (neben Orton), der bei der WWE überhaupt einen Titel verdient, der leider zum Wanderpokal verkommen ist. Schade!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Randy Owrote on 07.02.2010:[9.0] "Damals habe ich Jericho sehr gemocht. Doch seit seinem comeback hmm ich weiß nicht. Er ist Fett und seine Gimmick ist langweillig. Er sieht billig aus. Aber im Ring und am Mic trotzdem Top. Doch leider war er immer ein Übergangschampion."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Eddiewrote on 06.02.2010:[9.0] "Guter Wrestler, den ich immer gerne ansehe, aber für eine Note 1 fehlt mir irgendwie etwas.. Seine World Title Reigns waren allesamt etwas merkwürdig, und er ist nicht immer auf dem Level eines 10 Punkte Stars, aber 7 Punkte sind meiner Meinung nach ok. Edit: Ja ok, er ist mittlerweile mind. genauso viel Wert wie ein Triple H von seinen Fähigkeiten her, 7->9 Punkte, für die 10 müsste ich mehr aktuelle Matches von ihm sehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheDPHwrote on 05.02.2010:[10.0] "Einer der besten Heels in der WWE. Er überzeugt durch geniale Promos und auch seine Matches (vor allem gegen Rey) sind spitze."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: STRIGGAwrote on 05.02.2010:[9.0] "Dass Chris Jericho ein begnadeter Wrestler und Performer ist, stand ja nie ernsthaft zur Debatte. Und wer das ernsthaft bestritten hat, hat einfach keine Ahnung. In seiner aktuellen Rolle als hyperarroganter und Intrigen spinnender Megaheel ist Jericho meiner Ansicht nach absolut angekommen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: novacanewrote on 03.02.2010:[10.0] "Im Moment wahrscheinlich der kompletteste Wrestler der Welt. Top Technik, unglaubliches Charisma und Micwork, dazu die Neuerfindung seiner selbst als weinerlicher, sich selbst überschätztender Heel - einfach großartig. Es macht jedes Mal Spaß Chris Jericho bei der Arbeit zuzusehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: spawnforeverwrote on 03.02.2010:[10.0] "wirklich einer der besten den die wwe zu bieten hat. man kann ihn einfach überall einsetzen, ob im main event oder in der midcard . seine mic skills sind auch hervorragend und ich glaube dass er dieses jahr wieder nach ganz oben kommt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HBK-Xwrote on 02.02.2010:[10.0] "Weltklasse. Ich liebe seine Promos und im Ring auch super! Die beiden Fehden mit HBk waren der Hammer. Chris Jericho ist echt ein klasse Entertainer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Xemnaswrote on 31.01.2010:[10.0] "Mein absoluter Lieblingswrestler. Super Techniker, super Entertainer Eine Fehde gegen Edge wäre jetzt für mich das größte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Rated R Superstar EDGEwrote on 29.01.2010:[10.0] "Er ist wie ich finde der beste Wrestler den die WWE im Moment zu bieten hat. Außerdem hat er nach seiner Rückkehr mehr geleistet als alle Anderen in der Zeit. Zuerst der IC Titelgewinn dann die göttliche Fehde mit Shawn Michaels und die Zeit als World champion bei RAW. Danach eine weitere großartige Fehde mit Rey Mysterio und der erneute IC Titelgewinn gefolgt von einer tollen Tag Team Zeit mit The Big Show. Außerdem ist er super am Mic und im Ring. Das Einzige was stört ist sein wie ich finde schlecht außsehendes Outfit und das dümliche Program mit der DX. Langsam könnte sein Charakter wieder eine Auffrischung vertragen denn an dem Kram den er im Moment so redet hört man sich schnell satt. So genial der am Anfang auch war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: tobiasthegreatone1wrote on 27.01.2010:[10.0] "Jericho erinnert mich extrem an HBK er ist einer der besten der WWE am Mic auf der selben Stufe wie HBK und im Ring auch. Jericho hat einfach eine geile Ausstrahlung ich hab ihn Life gesehen man spürt bei ihm diese Arrogant hei aber im positiven Sinn wenn er zb. ins Publikum schaut kommt so ein geiles Feeling rüber man muss ihm einfach 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RoHSupporterwrote on 24.01.2010:[10.0] "Jericho ist mMn der beste Worker der WWE. Bei ihm stimmt einfach alles: Gimmick, In-Ring, Mic-Skills. Jede Fehde 2009 von ihm schlug ein wie eine Bombe und er hat einfach nur eine 10 verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheROCKwrote on 22.01.2010:[10.0] "Chris Jericho ist mit Triple H und Edge der beste Heel des vergangenen Jahrzehnts. Seine Fehden brachten unzählige Klassiker hervor. Sollte es zum Match zwischen Ihm und Edge bei WrestleMania 26 kommen, verdient er auch den 11. Punkt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Pinguwrote on 18.01.2010:[10.0] "Tja wie ich es gesagt habe, als Heel rettete er sich selbst. Neben Orton im Moment der Top Heel in der WWE. Genial, und keiner hat den World Champion Title im Moment so sehr verdient wie Jericho. Im Tag Team mit Big Show sehr sehr gut"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Hu-Manwrote on 15.01.2010:[10.0] "Jericho ist einfach ein vollkommener Worker. Im Ring unglaublich talentiert und am Mic übertrieben unterhaltsam. Schön dass er wieder zurück zum Wrestling gekommen ist. Wegen solcher Worker lohnt es sich dann doch noch WWE zu verfolgen. Schöne Fehden zuletzt gegen Mysterio und HBK. Leider hat man ihn ins Tag Team mit Show gesteckt, aber jetzt geht es hoffentlich wieder voran..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Zonenbewohnerwrote on 14.01.2010:[10.0] "Wenn er die 10 nicht verdient hat, wer dann? The Lionheart hat mir in der WCW bereits gefallen. Dass Y2J dann zur WWF kommen musste war nur eine Frage der Zeit. In der oberen Liga ist er ganz oben angekommen und meines Erachtens nie zurück gefallen. Er wird dieses Jahr 40 und wird uns allen noch ne Weile erhalten bleiben. Dafür ist er am Mic und im Ring einfach zu gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jimpanse1980wrote on 13.01.2010:[10.0] "Anno 2007: Auch wenn ich Ihn nie wirklich mochte, verdient seine Leistung meinen Respekt. Wird aber leider nie mehr so gut sein wie früher. Auch seine Rückkehr wahr eine Enttäuschung, wie man den Fanreaktionen ansehen konnte... 2008: Chris Jericho ist jetzt neben Punk, Edge und einigen Weiteren der Grund warum ich noch WWE schaue und Smackdown die wahre Nr. 1 ist. Chris J. hatte den Zenit seiner Karriere hinter sich - ganz klar. Aber im Jahr 2008 hat er sich neu erfunden und ist besser denn je. Egal ob Promos, Matches oder anderen Konfrontationen, Jericho is god!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Unrated Superstarwrote on 13.01.2010:[10.0] ""Jericho langweilt, nervt und hängt nur bei Raw rum? " OMG - da spielt jemand nicht den massentauglichen Entertainer al'la Rocky. So what - Jericho ist erwachsen geworden! Darum haben sich auch sein Auftreten und seine In Ring-Skills verändert. Einer der besten Wrestler der Welt. Der erste Undisputed-Champion, und wie The Rock ein Gott am Mikrofon. Zudem noch ein hervorragender Wrestler und passabler Sänger!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Basti1989wrote on 09.01.2010:[10.0] "Ein technisch extrem starker Wrestler mit einem fantastischen Mic-Work. Dazu noch privat anscheinend sehr symphatisch. Siehe Twitter. Wenn man hier keine 10 gibt, wann dann?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RatedRJuliwrote on 07.01.2010:[10.0] "Großartiger Heel. Großartiges Charisma. Großartiger Wrestler. 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mizisawesomewrote on 04.01.2010:[10.0] "Mein Vorbild - wrestlingtechnisch wie entertainmenttechnisch. Einfach nur ein genialer und lustiger Typ (JA! Auch AKTUELL GESEHEN! ) - WWE ohne Chris Jericho ist für mich undenkbar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BlackXwrote on 02.01.2010:[10.0] "Einer der besten Worker im Ring und am Mic. Er ist zwar nicht in der Liga eines Undertakers zum Beispiel, da ihm die größe fehlt, aber macht diese durch eine Technik weg, die ihres gleichen sucht. Am Mic dazu noch einer der legendärsten Wrestler. Egal ob als Face oder Heel, Y2J weiß immer zu überzeugen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: -Sylar-wrote on 02.01.2010:[10.0] "Immernoch einer der Besten in der WWE. Voralem sein Heel-Charakter ist sehr ausgebaut, seine Promos sind immer top und seine In-Ring Fähigkeiten sind auch sehr gut. Er sollte finde ich, wieder eine Singles Karriere weiterführen und in den Main Event gepusht werden. Die Fehde mit der DX ist auch sehr langweilig bis jetzt. He is the best in the world at what he does :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: hatebreederwrote on 02.01.2010:[10.0] "Absoluter Weltklassemann. Mr. Irvine ist ein wirkliches Universalgenie: Begnadet im Ring, weltklasse Micwork, tolle Mimik und Gestik, kreativ und innovativ (sieht man ja an den Storylines, in denen er seine eigenen Ideen umsetzen durfte), Autor, Sänger, etc. Was will man mehr? Dazu ist er sich nicht zu Schade, durch Niederlagen jüngere Wrestler over zu bringen, was man nicht von jedem Main Eventer der WWE sagen kann. Chris Jericho ist meiner Meinung nach der beste Mann, den die WWE zu bieten hat, und es ist schade, dass er nicht noch den einen oder anderen World Title Reign mehr auf seinem Konto hat, denn verdient hätte er ihn allemal ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Anti-Championwrote on 01.01.2010:[10.0] "Ein Spitzen Wrestler, hat mich schon zu WCW Zeiten mit seinen Promos zum lachen gebracht. Jericho for President äh World Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NewGuywrote on 01.01.2010:[10.0] "Das Beste das im moment in dem Business rumläuft! Ne menge Erfahrung was Ring-Skills und Entertainment angeht und gute Charakterentwicklung!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Detrituswrote on 29.12.2009:[10.0] "Einer der Besten dieses Geschäfts. Was mich besonders an Chris beeindruckt ist, dass er sich nicht zu schade ist auch mal den Job für einen Wrestler zu machen, um diesen entweder zu pushen oder eine Fehde voranzubringen. Er hätte es mal wieder verdient in eine gute Single-Storyline gesteckt zu werden, wenn möglich als Heavyweight-Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Telecinewrote on 26.12.2009:[10.0] "Ein außergewöhnlicher Wrestler und Entertainer. Er kann sowohl als Heel als auch als Face überzeugen und ist im Ring einer der besten der WWE Wrestler. Er kann den Submission-Style gehen und auch einige Highflying Moves (wie eben den Lionsault). Ich sehe ihn gerne im Ring und am Mic und gebe ihm eine 10 und die Thumbs up."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Big Daddy Swrote on 25.12.2009:[9.0] "Für mich einer der besten was die Arbeit am Mic angeht. Ich fänd es jedoch besser ihn wieder zum Face zu turnen, da das Heel Image seinen Fähigkeiten nicht entgegen kommt. keiner macht so gute Promos wie Jericho und dieses Talent geht verloren, wenn er jeden Freitag aufs neue 'Hasspredigten' halten muss."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: michiswrote on 24.12.2009:[10.0] "Am Mic einer der Besten, wenn nicht sogar der Beste. Auch im Ring vermag er zu überzeugen. Langfristig möchte ihn aber wieder als Single Wrestler im Kampf um den WWE Heawvweight oder den World Heaviweight Titel sehen. Er ist einer der ganz grossen der WWE und des Wrestlings überhaupt und ich hoffe, er bleibt noch uns noch einige Jahre erhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: element-41wrote on 22.12.2009:[10.0] "Jericho ist ein sehr guter Wrestler, und momentan der beste Heel in der WWE. Er ist am Mic fast unschlagbar. Ich finde es nur Schade, dass sich sein Wrestlingstil so stark verändert hat, seitdem er Heel ist. Ich vermisse den Lionsault, da er meiner Meinung nach einer der besten Signature Moves ist. Ich kann mich kaum noch daran erinnern, wann dieser Move das letzte Mal durch gegangen ist. Aber er ist halt einfach ein Gott, deswegen 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kenshin Uesugiwrote on 22.12.2009:[10.0] "Er war schon immer einer meiner Favoriten, das hat sich nie geändert. Wer was vom Wrestling versteht muss den Kerl einfach lieben. Er kann super wrestlen und dabei eine Matchstory erzählen. Reden, schauspielen, singen. Wenn die WWE so ein Gottegeschenk kriegt, warum setzt sie ihn nicht ein. Der Mann könnte als World Champion was weiß ich alles tolle anstellen. ABER immer wieder wenn es soweit ist, dann kracht die WWE ihm dazwischen. ABER nichts kann diesen Mann zerstören oder aufhalten. Auf jedes Tief folgt ein riesen Hoch. Nun endlich lässt man ihn frei Hand, wunderbar. Und schau an wer hätte das gedacht es funktioniert. Die Qualität seiner Arbeit spricht für sich. Erst wird er World Champion, dann verleit er den IC Title wieder Glanz und holt Rey aus sein Tal heraus. Jetzt macht er die Tag Team Division wieder flott. Und das mit einen guten Big Schow, der nach einigen Debacklen wieder gut da steht. Er ist sich nicht zu Schade neue Worker over zu bringen. Er ist der MVP, der WWE. Eigentlich müsste die WWE ihn als Belohnung blad wieder zum World Champion machen. Rein von der Logik her. Den das würde der baldigen Fehde zwischen ihm und Edge den würdigen Rahmen geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kuschkowrote on 22.12.2009:[2.0] "Sorry aber ich finde Chris ist ferngesteuert. Angepasst, arrogant, einfallslos. Glücklicherweise sind Geschmäcker verschieden."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: chryzzwrote on 21.12.2009:[10.0] "Neben Edge mein absoluter Lieblings mainstream Wrestler. seid seinem Heel turn 2008 finde ich ihn noch interesannter"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: gunniwrote on 18.12.2009:[9.0] "Ich glaube er könnte sogar aus nem Betonklotz ein gutes Match oder ne gute Promo rausbekommen!  Der ist einfach genial!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: richardfliehrwrote on 18.12.2009:[10.0] "Ist für mich einer der masstäbe bei der punkte vergabe wenn ein worker nicht so gut oder besser ist al chris bekommt er keine zehn punkte! Und da gibt es nur wenige!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: nwowrote on 16.12.2009:[10.0] "Guter Wrestler, Gutes Mic-Work, sehr charismatisch. Mein Lieblings-Jericho-Gimmick war allerdings das Heel -Gimmick aus der WCW. Die Geburt der Jerichoholics, die bescheuerte Frisur, "Monday Night Jericho", das One-Man-Security-Team Ralphus, ... fand ich einfach genial. Dazu noch die klasse Fehde mit Malenko. Schade das sich all das in der Undercard abgespielt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GabberGizmowrote on 13.12.2009:[8.0] "Für mich ist Chris Jericho einer der besten Wrestler. Er macht im Ring und ausserhalb des Ringes ne gute Figur.."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheBastion90wrote on 12.12.2009:[10.0] "Einer der besten Redner, Techniker und begabtesten Wrestler der WWE. Sowohl als Face als auch als Heel gefällt er mir super und er hat den Sprung in den Mainevent wirklich mal wieder verdient. Natürlich ist er immer im Rennen, doch man nutzt seine Kapazitäten nicht genug aus. Naja, trotzdem ein sehr guter Wrestler!  Mit Abstand der derzeit beste Wrestler im gesamten WWE Roster!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheJackhammerwrote on 12.12.2009:[9.0] "Über diesen Mann gibt es fast gar nichts zu bemängeln. Im Ring klasse! Wobei er früher noch besser war, aber schließlich wird man ja auch älter und das Wrestling ist ziemlich belastend für den Körper. Beste Beispiele sind Shawn Michaels und The Undertaker. Am Mic ist er zur Zeit mit Sicherheit der Beste und einer der besten den die WWE je hatte. Es gibt nur EINEN, der am Mic noch besser war. Den Namen brauche ich wohl nicht zu nennen. Dennoch reicht es nicht für die 10 Punkte, obwohl ich einer seiner Jerichoholics bin. Und zwar weil mir sein aktuelles Gimmick und auch sein Outfit nicht gefällt. Jericho in kurzen Hosen? NEIN! Aber das Hauptproblem ist das Gimmick. Er spielt es zwar perfekt, aber der "King of the World" kommt an den "Ayatollah of Rock'n'Rollah" und den "Y2J" einfach nicht an. NEVER ... EEEEEEEEVER! Außerdem möchte ich wieder das Highlight Reel haben. Das ist Unterhaltsamer als eine 3 Stunden-Special-RAW-Ausgabe. Er kann jederzeit, egal ob als Face oder Heel, eine ganze Halle gegen sich aufbringen oder auf seine Seite holen. EINFACH GENIAL! EINFACH Y2J!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LebendeLeichewrote on 09.12.2009:[7.0] "Total überbewertet. Aber seine früheren kämpfe waren ganz gut und jetz ist er auch nicht sehr viel schlechter aber ein unterschied ist zu merken."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: downtown2wrote on 09.12.2009:[9.0] "Schon ein wenig überbewertet. Man muss schon genau hinsehen und hinsehen wollen, um bei Jericho überhaupt einen Makel finden zu können. Er ist ein einzigartiger Performer, aber im ersten Karriereabschnitt war seine Show häufig etwas unfreiwillig komisch. Und auch wenn er gut bis sehr gut kämpfen kann, wirkt er doch manchmal schwerfällig. Dazu kommt die etwas kompakte Erscheinung, die manchen Move unkoordiniert wirken lässt. Dies sind alles jedoch nur Marginalien, die ihn höchstens einen Wimpernschlag von den Größten in diesem Geschäft distanziert. Neun Punkte für einen fast perfekten Wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Loeviewrote on 04.12.2009:[10.0] "Jericho ist (mit Edge) der beste in der WWE. Super Mic Work, Super Skills und egal was er sonst noch macht: Alles super!  Er kann ruhig noch die Tag Team Belts aufwerten, denn er hat schon genug Standing und ist auch ohne Titel immer Over."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mister MOwrote on 01.12.2009:[10.0] "Schlicht und Einfach: Was er anfässt wird zu Gold."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dendelwrote on 26.11.2009:[10.0] "Jericho ist Entertainment, er ist im Ring perfekt. Kann ihm stundenlang zugucken und vor allem zuhören."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: kratzmichvielwrote on 24.11.2009:[10.0] "Momentan der stärkste Heel, der stärkste am Mic und allgemein vom wrestlerischen Können her - das stärkste Gesamtpaket in der WWE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: chaoswrote on 23.11.2009:[9.0] "Super Wrestler der eigentlich alles kann, doch die Heel Rollr liegt einfach am besten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mick Funkwrote on 23.11.2009:[10.0] "Zur Zeit der beste Heel, den die Company zu bieten hat. Nach seinem erfolgreichen Ausflug in die Tag Team Szene sollte es jetzt wieder in Richtung World Title gehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Papa Popanzwrote on 23.11.2009:[10.0] "Der Typ ist jemand der im Ring, am Mic und auch sonst aus Scheiße Gold machen kann Thumbs up"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Calgary Kidwrote on 23.11.2009:[9.0] "Jericho hat ein wenig vom alten Glanz verloren, was nicht unbedingt an ihm sondern am Booking der WWE liegt. Dennoch ein Ausnahmetalent im Ring und einer der größten am Mikrofon. Gäbe es mehr Worker wie Jericho wäre die WWE derzeit sicherlich interessanter."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MrSmackdownwrote on 22.11.2009:[10.0] "Der beste der Welt indem was er tut! Wenn ich es mal so übersetze, nach der Rückkehr 2008 nochmal um das dreifache gewachsen, nach der Vergangenheit, das muss man erstmal schaffen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Prince of darknesswrote on 22.11.2009:[10.0] "Er ist einfach einer der besten Wrestler im Buisniss und außerdem auch gut am mic. was will man mehr?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Killerswitchwrote on 22.11.2009:[9.0] "Ich gebe Chris Jericho "nur" 9 punkte. Zulezt durfte er nurnoch die selben Phrasen dreschen und mir gefällte das Team mit Big Show nicht. Trotzdem ist er nach wie vor einer der besten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: asraelwrote on 14.11.2009:[10.0] "Chris Jericho ist der kompletteste Wrestler den das Business jemals gesehen hat. Er besitzt eine einzigartige, gewaltige Promo-Fähigkeit, ist ein perfekter technischer wie auch außerordentlicher High-Flyer und kann mit dem Publikum spielen und kommunizieren wie kein Zweiter. Zudem besitzt er dieses "GEWISSE ETWAS", das die Leute (sollten sie Jericho auch nicht mögen) nicht vergessen. Schon seit ich die WWE wie auch die WCW verfolge, ist Jericho mein absoluter Lieblingswrestler. Ob Heel oder Face, Jericho konnte immer überzeugen, auch wenn die Fans ihn eher als Heel annehmen. Seit seinem Heel-Turn im Juni 2008, veränderte Chris seinen Stil in vielerlei Hinsicht (Outfit, Attitüde, wie auch das klassische Mattenwrestling nahm er in sein Repertoire auf), was mich ebenso überzeugen konnte. Ich hoffe, die WWE setzt ihn in den nächsten Jahren (er ist ja erst 38, da kann noch viel kommen) noch klug ein, denn solch ein Potential das nach 18 Jahren Pro-Wrestling immer noch in Jericho schlummert, sollte man nicht in der Mid-Card vergeuden, sondern in den Main Events von Wrestlemania auskosten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Undertaker 4 everwrote on 11.11.2009:[10.0] "Wenn Jericho kein guter Wrestler ist, wer dann? Nicht nur, dass er über eine gute Technik und gute Moves verfügt, sondern auch gelungende Statments abliefert und seine Rolle als Heel wirklich herrausragend gut spielt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Ultrakaoswrote on 06.11.2009:[10.0] "Chris Jericho ist ein TOP Wrestler. Highflying und Technik kombiniert. Er war als Face nach HBK der beste und als Heel ist er auch Top. Meiner meinung nach die Kompaktheit in Person. Aufjedenfall HoF kandidat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BrahmaBullwrote on 05.11.2009:[10.0] "Chris Jericho ist einfach der Wrestler den eine Liga braucht... Ausstrahlungskraft 10*, Mic-Work 10*, Talent 10* ... nicht umsonst erster Undisputed Champion in der WWE Geschichte und auch so können ihn nicht viele etwas vormachen an Titelgewinnen!  Der "Ayatollah of Rock'n'Rollah" verdient einfach nichts schlechteres als 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Orton7wrote on 29.10.2009:[10.0] "Einer der ganz großen und für mich jetzt schon eine Legende... Egal ob als Face oder Heel, er spielt jede Rolle nahezu perfekt und ist auch im Ring einer der Besten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: gangster316wrote on 28.10.2009:[4.0] "Früher war er einfach besser. Und diese null Bock Einstellung nervt!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mr Money in the bankwrote on 26.10.2009:[10.0] "Wenn man eine Top 10 der besten Wrestler aller Zeiten aufstellen möchte, kommt man an Chris Jericho einfach nicht vorbei, selbst wenn man ihn unsympathisch oder dergleichen findet so muss man doch zugeben können dass er einer der besten Wrestler aller Zeiten ist. Er ist ein Meister am Mikrofon, er ist unterhaltsam aber zugleich auch sehr direkt. Er spricht die Dinge aus die viele Fans im Hinterkopf haben, besonders schön kam dass in seinen Promos gegen die Legenden rüber. Als worker ist Jericho ebenfalls einer der besten, er kann schlechtere worker zu einem guten Match tragen und mit guten workern hat er herausragende Matches. (Siehe Jericho Vs Mysterio). Auch momentan im Tag Team mit Big Show gefällt er mir sehr gut, er ist wirklich ein allrounder."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: teekay86wrote on 25.10.2009:[9.0] "Ich war schon zu WCW-Zeiten ein Jerichoholic. Er überzeugt sowohl im Ring als auch am Mic auf der ganzen Linie. Inzwischen zeigt er sich wohl obendrein noch als besserer Booker als es die meisten WWE Schreiberlinge sind."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 1234wrote on 25.10.2009:[10.0] "Unbestritten das Beste, was die WWE zu bieten hat, auch wenn ich nicht damit rechne, dass Jericho je einen längeren Titelrun bekommt. Er hat schon immer den Zahn der Zeit getroffen. Vom langhaarigen Fanliebling bis hin zum jetzigen Charakter: Alles was Jericho anpackt, wird zu Gold!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: wwe cagematchwrote on 24.10.2009:[10.0] "Was kann mann zu Chris Jericho denn nur schreiben. Er ist einfach GENIAL seine Promos sein Mikwork seine Technik einfach alles er ist sehr erfolgreich und er ist ein"Future Hall of Famer"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Azarothwrote on 24.10.2009:[9.0] "Y2J ist unbestritten einer der Besten, die das Business zur Zeit zu bieten hat. Im Ring ist er mit fast jedem Gegner zu guten bis sehr guten Matches fähig, und am Mic liefert er regelmäßig solide bishin zu legendärer Arbeit ab. Aber dennoch finde ich, dass es mittlerweile an der Zeit ist, sein Gimmick etwas(! ) zu tweaken. Damit meine ich nicht, dass er turnen soll, vielmehr wünsche ich mir, dass sein Charakter neue Züge bekommt, denn erste, wenn auch leichte Abnutzungserscheinungen weist das Gimmick mittlerweile auf."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PhenomaneloneMjwrote on 23.10.2009:[10.0] "Hammer am Mic und auch seine Ring Skills sind klasse einer der besten wrestler der Welt und im gegensatz zu einem HBK, HHH oder Cena nicht einer der seinen Einfluss ausnutzt um ständig im Mittelpunkt zu stehen und junge stars die Pushs zu versauen um seinen Status nicht zu verlieren.. was wäre WWE nur ohne Y2J!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Saschwrote on 23.10.2009:[10.0] "Toller Schauspieler toller Wrestler und soll hinter den Kulissen mit für den Aufbau junger Superstars stehen. Hat gute Einfälle soviel ich weiß ist Taboo Tuesday ein Einfall von ihn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: THE GAME 4-EVERwrote on 21.10.2009:[10.0] "Hat es geschafft ein verpatztes Comeback zu drehen. Schaffte dadurch den für 2008 interresantes Charakter seiner Karriere und ist heute immernoch interresant. Mehr Mic Work und Ausstrahlung kann ein normaler Wrestler schon nicht mehr haben. Dazu einer der besten Pro Wrestler der heutigen Zeit, der auch die Veranlagung besitzt mit schlechten Wrestlern normale Matches zu zeigen und mit guten Wrestlern immer das MotN zu zeigen. Einfach ein Pfeiler der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Triple Awrote on 16.10.2009:[10.0] "Chris Jericho hat durch seinen Heelturn unglaublich viel Momentum mitgenommen, das jedoch jetzt ein bisschen Schaden nimmt durch Jobben für Guest Host bei RAW. Früher wie heute ein guter Promokünstler als Face als Heel, er hatte legendäre Promos ("Master of 1004 Holds", "If you smell what Y2J is cooking" und auch seine neuen Promos). Im Ring ein ganz großer. Früher hat er die Walls, die leider jetzt schwächer verkauft werden, immer genial angesetzt, heute ist er ein wenig gebräunter, aber hat auch durch Matches gegen Rey Mysterio bewiesen wie gut er ist. Leider wird er nie als Topstar eingehen (wie z. B. HHH, Cena, Rocky, Austin). Aber er ist wirklich einer der Besten, vielleicht sogar der beste Heel zur Zeit und somit "the best in the world at what he does". Zu dem auch ein witziger Typ außerhalb des Wrestling, der geniale Sprüche wie z. B. "Shut the HELL up" oder "ASK HIM ! " im Wrestling prägte. Er ist auf jeden Fall einer der Kings of my Wrestlingworld."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: reiminhowrote on 14.10.2009:[10.0] "Jericho ist einfach unglaublich, er kann sowohl am Mic als auch im Ring zu 100% überzeugen. Hat es zu einem der Größten in der WWE geschafft. Er überzeugt einfach in jeder role, egal ob als face oder als heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Aquifelwrote on 12.10.2009:[10.0] "Top am Mic, top im Ring, genialer Heel und wertvoll, bei allem, was er anpackt. Sicherlich in der Tag Division vor einer schweren Aufgabe, aber selbst die erledigt Jericho mit Big Show besser als es die regulären Tag Teams der WWE könnten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BoeserLobowrote on 05.10.2009:[9.0] "Für seine Gewichtsklasse mit optimaler Nutzung seiner Möglichkeiten. Absolut genial am Mic (sowohl Heel als auch als Face). Hat einige Moves in WCW und WWF eingeführt, welche zu dieser Zeit im amerikanischem Wrestling noch nicht Standard waren (z. B. Springboard-Sprung nach draussen)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DZShowOffwrote on 29.09.2009:[10.0] "Der wohl derzeit Beste Heel in der WWE. Seine Promos sind göttlich und im Ring ist er klasse, was anderes als 10 Punkte zu geben wäre Schwachsinn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KASHwrote on 26.09.2009:[10.0] "Mein absoluter All-Time favourit. Der perfekte Performer aus meiner Sicht und trotzdem nicht ins tiefe Weltall der Überegoisten abgetaucht, wie viele andere. Skillmäßig heute immernoch gut dabei. Der neue Charakter ist vielleicht nicht ganz so toll wie Y2J, aber auch seine neue Rolle verkörpert er perfekt. Er hat sich weiterentwickelt und das nach so vielen Jahren im Buisness. Charisma, Promo-Gott , Ring skillz... was soll man denn noch haben ?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: lenny1910wrote on 23.09.2009:[10.0] "Im Moment der beste Heel der WWE. Auch wenn man sagen könnte dass seine Promos in letzter Zeit wiederholen finde ich sie genial. Außerdem sehr gut im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Basket Casewrote on 21.09.2009:[10.0] "Chris Jericho ist seit seiner Fehde mit Shawn Michaels wieder ganz oben angekommen und das obwohl er größtenteils aus dem Titelgeschehen rausgehalten wird. Er hat die besten Fehden der letzten 1, 5 Jahre gehabt. Und jetzt im Team mit Big Show ist er weiterhin richtig klasse. Der beste Micworker aktuell und im Ring ebenfalls einer der besten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Peepheadwrote on 18.09.2009:[10.0] "Ein Mann, der alles durchgemacht hat. Ein Mann, der Bücher geschrieben hat. Ein Mann, der viele Verletzungen kurieren musste. Ein Mann, der immer wieder neu überrascht. Ein Mann, der die besten Promos hält. Ein Mann, dem das Gold um die Hüften angewachsen ist. Chris Jericho. Wer sonst? Der beste Heel Smackdown's neben Edge und ganz nebenbei der Teil der Unified Tag Team Champions."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DHS aka Iceman Unleashedwrote on 17.09.2009:[10.0] "Als Chris Jericho zum Heel wurde und sein Y2J Gimmik niederlegte hatte ich teilweise Angst das dies seiner Karriere nur schaden könnte. Doch Chris Jericho hat seine Heel Qualitäten besser denn je dargestellt und wurde im letzten Jahr gerecht "Superstar of the Year". Um diesen Titel auch 2009 zu erreichen fehlt ihm eigentlich nur noch eine Große Titelfehde. Gegner mit dem Undertaker, Batista, Rey Mysterio, CM Punk und Co. gebe es ja genug. Für mich ist Chris Jericho der wohl beste Wrestler im WWE Roster sowohl im Ring als auch am Mic!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: mongowrote on 14.09.2009:[10.0] "Y2J vereint grandioses Wrestling mit genialen Promos, wie kein Anderer. Einfach grandios!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DirtiestPlayerwrote on 12.09.2009:[10.0] "Chris Jericho überzeugt mich auf ganzer Linie. Im Ring, Charisma und perfekte Promos. Ganz klar 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Gialikesashleyverymuchwrote on 10.09.2009:[9.0] "Hervorragender Wrestler, verkörpert sowohl Faces als auch Heels glaubhaft und überragend. Einer meiner Lieblinge"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ghostwrote on 10.09.2009:[9.0] "Klasse. Respekt für was er in seiner Karriere schon alles erreicht hat. Fantastische Charakter-Ausrichtungen, Stories und Fehden, ist charismatisch, technisch versiert, intelligent und leidenschaftlich bei der Sache. Nicht ganz 10 weil mir seine jetzige monoton-kalte Heel-Charakter-Ausrichtung nicht ganz so gut gefällt, auch wenn es durchaus unterhaltsam sein kann, und gerade das neue Gespann Jericho/Big Show den Tag-Titeln wieder eine besondere Bedeutung zuspricht ists dann doch wieder klasse. Ein ganz kleines bisschen overrated ist er meiner Meinung auch, denn soooo ein toller Schauspieler ist er nun auch wieder nicht. Deshalb satte 9 Punkte, (noch) nicht die ganzen 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Uzuwrote on 07.09.2009:[10.0] "Einer der besten Wrestler der Neuzeit. Geniale Matches und tolles Micwork. Macht mit die besten Promos und ist sowohl als Heel als auch als Face einfach perfekt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SmartyGirl13wrote on 06.09.2009:[9.0] "Chris Jericho ist nicht nur im Ring spitzenklasse (siehe Lionsault, Codebreaker, Bulldog und den Elevated Boston Crab, auch bekannt als Walls of Jericho. ) auch seine Micskills haben was für sich. Das sah man bei seinem Debüt 1999 und bei seinen Wortgefechten mit The Rock."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Stelziwrote on 27.08.2009:[10.0] "Unglaubliches Charisma, bester Worker am Mic, sehr fanfreundlich, sehr glaubürdiger heel u. face, allrounder, unterstützt junge Wrestler auf dem Weg zum Superstar, the best in the world"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Turboladerwrote on 26.08.2009:[10.0] "Als Heel finde ich ihn klasse, kein anderer bekommt die Massen so aufgehetzt wie er. Er spielt seine Rolle richtig gut und hasserfüllt, so muss ein guter Heel sein. Als Face finde ich ihn zwar nicht so gut, wie als Heel, aber weiß dennoch zu überzeugen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: derBosswrote on 23.08.2009:[10.0] "Eindeutog einer der besten Wrestler in der WWE. Seine Matches und Promos sind weltklasse und er versteht es junge Stars aufzubauen. Meiner Meinung nach der absulute Top Heel der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Medeawrote on 16.08.2009:[4.0] "Leider wiederholt sich Jericho seit zwei Jahren nur noch. Er ist ein wenig aus der Form geraten, was seinem Wrestlingstil nicht eben gut getan hat und bietet leider keine überraschende oder auch nur gute Show. Ich vermisse ihn nicht, wenn er mal nicht auftritt."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Zizouwrote on 14.08.2009:[8.0] "Hatte Mitte/Ende 2008 seine beste Zeit in der WWE überhaupt. Die Combo Big Show / Jericho gefällt mir bisher nicht so recht. Was allerdings positiv festzuhalten ist, ist die Aufwertung für die Tag Titel!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Amurebkuwrote on 12.08.2009:[10.0] "Hat mich schon immer überzeugen können. Einfach ein toller Wrestler und super Entertainer. Super trifft es da nicht wirklich. Ein absolut WAHNSINNS ENTERTAINER! Grandioser Superstar der es weiß immer wieder zu überzeugen und zu überraschen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: risktakerwrote on 12.08.2009:[10.0] "@ bret 82: Du sollst ihn ja auch hassen da er in den Shows ein Heel (Bösewicht) ist. Das man Jericho so schön hassen kann zeigt wie gut er seine Rolle spielt. Im Ring immer sehr unterhaltsam und am Mic bringt er das was er sagt sehr authentisch und glaubhaft rüber."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Woerpwrote on 12.08.2009:[10.0] "Jericho ist ein Wrestling Gott. Jericho ist ein Booking Gott. Er ist perfekt für dieses Buissness, und er ist einer meiner All Time Top 5."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jinxwrote on 09.08.2009:[10.0] "Der Beste! Ob im Ring/am Mic/bei Promotion-Terminen - der Mann hat`s einfach drauf. Der geborene Entertainer. Er schlägt die anderen Heels um Längen. Es spricht für ihn, dass er nach dem Draft 2009 zu Smackdown kam und innerhalb von drei Wochen und einer Hand voll Promos Edge den Rang als Top-Heel abgelaufen hatte. Jericho is God!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: real americanwrote on 09.08.2009:[10.0] "Ein super Entertainer und Gott am Mic, egal ob witzig wie früher oder nun ernsthafter, auch im Ring immer gut anzusehen, ein tolles Gesamtpaket eben, es ist allerdings eine Schande, dass er (warum auch immer) nur selten über den IC/ US- Titelbereich heraus gekommen ist, da er den Mainevent immer bereichert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: D00mwrote on 30.07.2009:[10.0] "Wie Y2J immer selbst sagt: Er ist der Beste in dem was er tut!  Als Heel noch 3 mal geiler als sonst. Weiter so! =D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Nahkampfsockewrote on 30.07.2009:[5.0] "Ich mag ihn nicht sonderlich. Klar, er ist gut im Ring, ein toller Heel und hat gute Micskills, doch als Person ist er mir einfach unsympathisch."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Brahma Bullwrote on 26.07.2009:[9.0] "Würdiger Halter beider Gürtel-WCW und WWF-und somit erster Undisputed Champion!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Felice-del-mondowrote on 24.07.2009:[9.0] "Zur Zeit 2t bester Heel nach Edge. 2008 klar die Fehde des Jahres gegen Michaels!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Woo Woo Woo Guywrote on 18.07.2009:[10.0] "Wenn Chris Jericho nicht der Star ist..... Dieser Mann ist einfach genial. Ich finde keinen Heel besser als Jericho. Seine Matches sind verdammt gut, seine Werke am Mikrofon ebenfalls. Ich wüsste nicht wieso er die volle Punktzahl nicht verdient hätte. Ich hoffe er bleibt der Wrestlignwelt noch lange in dieser Topform erhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Desperadowrote on 06.07.2009:[10.0] "Ein Wrestler mit unglaublich feiner und geschliffener Technik. Versaut im Grunde nie einen Move und kann auch aus weniger guten Gegnern ein ordentliches Match rausholen. Für mich ist Jericho also nach Shawn der zweitbeste Wrestler der WWE. Doch das ist nicht alles, was ihn zu einem absoluten Vorzeigeworker macht. Sein extrem starkes Micwork und vorallem seine Heeldarstellung stellen 95% aller Akteure in den Schatten. Jericho Promos haben nicht nur einen hohen Standart, sondern können jedesmal wieder begeistern. Zu all diesen Eigenschaften besitzt Y2J auch noch ein extrem gutes Gespühr für Storylines, was er in seiner Fehde mit Rey abermals unter Beweiß stellen konnte. Schade, dass er nie an der absoluten Spitze der Company stehen wird, aber dafür wird er immerhin von fast allen Fans mit fortgeschrittener Fachkenntnis geliebt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Main Eventwrote on 06.07.2009:[10.0] "Das mache ich zwar ungern (da ich der 667 Insasse bin der bewertet. ^^), aber Jericho ist ein wahrer Gott. Sowohl am Mikro als auch im Ring. Da sind 20 Punkte sogar schon zu wenig. :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Juvicidewrote on 02.07.2009:[10.0] "Volle 10 Punkte, insbesondere dafür, was er mit Shawn Michaels und Rey Mysterio geleistet hat. Exzellenter Micworker und sehr guter Wrestler. Schade, dass er nie den absoluten Durchbruch zum Maineventer geschafft hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Gustelwrote on 29.06.2009:[10.0] ""Stephanie you are the Breast". Früher wie heute großartig am Mic und im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Heatwrote on 29.06.2009:[10.0] "Mittlerweile garnicht mehr wegzudenken, genialer Heel, der weiß, wie er sich zu verhalten hat und wie er was rüberzubringen hat. So ist es kein Wunder, dass ein einst geliebter Mann zum meistgehassten Mann der WWE wird. Ach gut wrestlen kann er auch noch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Babuswrote on 23.06.2009:[9.0] "Ich kann mich bis heute mit der Neuausrichtung seines Charakters noch nicht so völlig anfreunden. Sicherlich war es notwendig da etwas zu verändern und gemessen an der größeren Aufmerksamkeit, die Jericho nun bekommt, hat es seinen Zweck ja auch nicht verfehlt. Aber während ich Jericho am Mic weiterhin für einen der besten in der WWE halte (auch wenn es meiner Meinung nach weit übertrieben ist, wie teilweise jede Furz von ihm als hochinnovative Promo abgefeiert wird), springt mit seinem neuen In-Ring-Stil der Funke auf mich nicht so völlig über. Seine Matches haben immernoch ein überdurchschnittliches Niveau, aber wenn sie vorbei sind, erhascht mich einfach mittlerweile zu oft ein "Da war doch mehr drin"-Gedanke - auch bei den großen PPV-Matches. Darum werte ich Jericho nun (vielleicht nur vorerst) um einen Punkt ab."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Cpt Dave Charismawrote on 19.06.2009:[10.0] "Der Ayattolah of Rock'n'Rolla... einfach ein Gott..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Neuhofwrote on 08.06.2009:[10.0] "Gottgleich. In seiner Heel-Rolle rettet er uns doch noch, und zwar vor fader "Unterhaltung". EDIT: Jericho ist lt. WWE-Titelhistorie "nur" 9facher IC-Champ, was auch bei Smackdown! letztens des öfteren zur Sprache kam."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: mysterioflowrote on 07.06.2009:[10.0] "Einer der besten in der WWE. Die aktuelle Fehde mit Rey gefällt mir (bis jetzt)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Marcywrote on 02.06.2009:[10.0] "Nach seinem missglückten Comeback und der genialen neuen Charakterauslegung komme ich bei ihm einfach nicht um die Bestnote herum."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Soapywrote on 27.05.2009:[10.0] "Der Heelturn letztes Jahr war das Beste, was Jericho passieren konnte. Spielt die Rolle super. Zu Recht Superstar of the Year ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BaptisteZorGwrote on 23.05.2009:[10.0] "Für mich momentan bzw. seit seiner Rückkehr der mit abstand beste Wrestler im WWE Roster. Im Ring sowie auch am Mic grandios - Raw is Jericho... äh ja. Seine Promos bislang waren erste Sahne."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: nWoWolfpacwrote on 12.05.2009:[10.0] "Er ist einfach nur genial. Zur Zeit der beste Heel der WWE. Zeigt immer gute Matches, hat mir aber am besten in der WCW und zu seiner Anfangszeit in der WWF gefallen. Das einzige was nervt ist: "Hypocrite" das wort geht mir langsam auf den sack, er kommt keine promo momentan ohne dieses wort aus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LeChefwrote on 07.05.2009:[10.0] "Jericho ist einfach ne klare 10!  Top im Ring MEGA Geil am Mic. Was will man mehr?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: REYMVPwrote on 03.05.2009:[10.0] "Der Superstar schlechthin! Er ist jetzt noch besser als Früher. Am Mikrofon ist er einer der besten neben Edge. Und im Ring ist er auch gut!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Eggywrote on 02.05.2009:[10.0] "Chris Jericho hat ganz klar 10 Punkte verdient. Er ist einer meiner absoluten Lieblingsstars. Er ist ein großartiger Wrestler im Ring und seine Matches sind immer wieder schln anzusehen. Am Mikrofon ist er sogar noch besser. Sowohl damals als Y2J, the Ayatollah of Rock'n Rolla als auch heutzutage als Heel. Egal welche Rolle er einnimmt er ist unterhaltend und als Heel ist er zur Zeit einfach nur klasse und überzeugend. Seit langer Zeit war für mich Edge der Heel No1, aber seitdem Chris Jericho geturnt hat ist der Platz des No1 Heels in der WWE stark umstritten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BlackPhoenixwrote on 27.04.2009:[9.0] "Erfindet sich selbst immer wieder neu ist dabei immer Authentisch macht gute Promos. Nur seine In-Ring Skills überzeugen mich nicht immer. Ansonsten Top!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Blackbirdwrote on 26.04.2009:[10.0] "Jericho gehört zu meinen Lieblingswrestlern und seine Fähigkeiten im Ring und vor allem vor dem Mikrofon sind nicht von der Hand zu weisen. Vor allem als Heel in letzter Zeit gefällt er mir richtig gut, auch wenn es mich zuweilen etwas nervt, dass in jeder einzelnen seiner Auftritte mit Mikro irgendwann das Wort "Hypocrite" in Verbindung mit den Fans fällt. Ansonsten wohl einer der besten in der WWE, deshalb bekommt er auch eine glatte Eins. Update: Okay, meine Prioritäten haben sich geändert. Ich mag Jericho mittlerweile echt gern. Und das in der kurzen Zeit. Na, egal ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KingofKings1991wrote on 26.04.2009:[10.0] "Ich fand es sehr gut das Y2J zu Smackdown gedraftet wurde, denn Smackdown braucht einen guten Wrestler wie ihm. Ich hoffe aber mal das die WWE ihm mal einen weiteren Titel gönnt, das wäre nicht schlecht ihn wieder mit einem Großen Titel zu sehen. Eine Neue Fehde wäre auch nicht schlecht. Hoffe nur das die WWE ihn net bei Smackdown versauern lassen oder ähnliches"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: alkoholiKAwrote on 20.04.2009:[10.0] "Y2J is God! ein perfekter Entertainer. am Mic absolut spitze, im Ring ausgezeichnet. Früher waren seine Promos zwar unterhaltsamer, aber heute als Heel sind diese ernsthafter und überzeugender wie früher. Seine Rückkehr fand ich eig recht unterhaltsam (bis auf die winzige, richtig schlechte Storyline mit JBL), aber seit seinem Heel-turn wieder in absoluter Bestform. Sicherlich einer der besten Heels der WWE. Zudem ist ihm etwas gelungen, was nur ganz ganz wenigen gelingt. Nämlich sich von Grund auf neu zu erfinden. Keine Frage absolute Bestnote."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The-Game91wrote on 01.02.2009:[10.0] "Jericho weiß als Heel und als Face zu überzeugen. Seine Promos sind Genial und am Mic ist er grandios."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RhinoRaineswrote on 23.01.2009:[10.0] "Gefällt mir zum ersten Mal seit seiner Rückkehr zu WWE. Er spielt den schmierigen Heel ausgezeichnet und im Ring kann ihn keiner was vormachen! Klare 1!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ShakDragoonwrote on 19.01.2009:[10.0] "Einer meiner Alltime-Favorites! Einfach ein Total-Package... schön, dass er wieder zurück ist, allerdings hätt' ich ihn lieber bei TNA gesehen. Ich muss sagen: Hut ab! Sein neues Gimmick und Auftreten überzeugen auf ganzer Linie. Daumen hoch!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kankurowrote on 18.01.2009:[10.0] "Verdammt unterhaltsam, sowohl im Ring als auch am Mic. Sein Heel-Gimmick bringt er wunderbar herüber. Meine persönliche Nr. 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Yunmielwrote on 12.01.2009:[10.0] "Ich bewerte mal den früheren Jericho... der verdient schon 10 Punkte. Momentan ist sein Gimmick aber nicht so~ passend und er kann dieses Ernstere nicht so gut rüberbringen... finde ich. (Und die kurzen Hosen sind schlimm, nebenbei bemerkt)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Peiski Bombwrote on 11.01.2009:[8.0] "Am Mikro einer der besten, im Ring auch gut. Das neue Gimmick hat irgendwie was!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: El Reywrote on 11.01.2009:[10.0] "Einer der vielseitigsten Worker im Business und mit seinem Charisma und Skills hält er die richtigen Wrestlingfans bei der Stange. Schade dass er als Champion nicht so erfolgreich ist wie andere weniger talentierte Wrestler. Für mich ist er einer der besten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Fabi89wrote on 24.12.2008:[10.0] "Im Ring sehr stark. Am Mic glänzend. Und seit seinem Heel-Turn nun auch mit einem überragendem, unverbrauchten und glaubhaften Gimmick. Mit das Beste, das die WWE im Moment zu bieten hat. Hätte ein noch viel besseres Standing verdient, als er inne hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TRIPLEH2008wrote on 14.12.2008:[9.0] "Er ist einer der Topstars nur ein Punktabzug wegen dem neuen Ringoutfit."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Tomkowrote on 11.12.2008:[10.0] "Wenn ich hier lese, das er sein Mic-Work verbessern sollte oder das er zu arrogant sei, da kann ich nur mit dem Kopf schütteln(was für Noobs befinden sich im Cage? ). Dieser Mann hat über Jahre hinweg stets herausragende Leistung im Ring und am Mic gebracht, sodass er sich eigentlich bei richtigem Booking zum Megastar hätte entwickeln müssen. Doch dies blieb ihm leider verwährt. Rein Mic-Work und Wrestlingtechnisch steckt er fast den gesamten WWE Lockerroom in die Tasche, denn RAW IS STILL JERICHO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Zodiacwrote on 26.11.2008:[10.0] "Der Mann hat alle anfänglichen Zweifel, ob das Comeback eine gute Idee war über Bord geworfen und erblüht in einer noch nicht dagewesenen Form. Ein super Entertainer mit allem drum und dran. Sein Fued mit HBK verdient eigentlich 100 Punkte;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Ayatollah of RocknRollahwrote on 24.11.2008:[9.0] "Ein hervorragend arbeitender Micworker, ein guter Techniker und er schafft es immer ieder die besten Promos des gesamten Rosters zu halten. Eigentlich wären die 10Pkt hier angebracht, aber ihm fehlt letztlich der gewisse XFaktor um eine Show zu tragen. Ich selbst bezeichne mich als absoluten Jerichoholic, aber es kommt nicht von ungefähr, dass er kein durchgehender Maineventer ist. Trotzdem einer meiner Favourites und immer unterhaltsam, vor allem wenn er seine Promos selbst schreibt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: domi1984wrote on 17.11.2008:[10.0] "Er kann sowohl die Heel als auch Face Rolle ausführen. Er hat einen unglaublich hohen Entertainment Faktor, geniales Mic Work und tolle In Ring Skills. Seine Fehde gegen Michaels war grandios. Wenn Jericho keine 10 Pkt. bekommt, wer denn sonst?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: undertaker619wrote on 13.11.2008:[10.0] "Sein hochgelobtes Comeback fand ich nicht ganz so gut, aber die Fehde mit HBK war wirklich weltklasse. Und seitdem er sein Y2J-Gimmick abgelegt hat gefällt er mir noch besser. Einer meiner Lieblingswrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: E-T-Wrestlerwrote on 10.11.2008:[9.0] "jericho ist ein guter wrestler, der mir in letzter Zeit durch sein "großes" Mundwerk negativ auffällt aber sonst ist er ein perfekter wrestler"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: squadra3wrote on 06.11.2008:[10.0] "Gehört für mich zu den größten die dieser Sport hervorgebracht hat. Seine aktuelle Ausrichtung ist perfekt - ganz großes Kino!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Animal360wrote on 22.10.2008:[9.0] "Spielt seine Rolle als Heel sehr überzeugend, die Storylines mit ihm sind zudem sehr interessant deswegen eine klare 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CenaSuckswrote on 20.10.2008:[10.0] "RAW IS JERICHO! Finde es geil, dass dieser Mann nach so langer Pause gegen Michaels eine so starke Fehde bringt! Jericho ist einfach Gott!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Exist 2 Inspirewrote on 17.10.2008:[10.0] "Jericho ist sowohl am Mic als auch Wrestlerisch absolute Spitzenklasse, um die Jahrtausendwende mein absoluter Lieblingswrestler und mittlerweile begeistert er mich wieder richtig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kavskiwrote on 11.10.2008:[9.0] "Genialer Wrestler und Fehde des Jahres gegen Shawn Michaels. Bester Heel der Liga zur Zeit. Einfach top!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alorionwrote on 08.10.2008:[10.0] "Unglaublich guter Heel, seine Art gegen die Fans zu wettern ist klasse und seine Promos und sein Micwork sind absolut top. Ich stelle ihn als Heel gerne auf eine Stufe mit Edge und Randy Orton. Ich finde auch das er ein starker Champion ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MrWrestlingwrote on 04.10.2008:[8.0] "Er ist ein super Entertainer, sein Mic Work ist spitze, doch als Champion taugt er meiner Meinung nach nicht viel."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RBoss90wrote on 01.10.2008:[10.0] "Niemand versteht es besser das Publikum zu Unterhalten wie er. Überzeugt im Ring vor allem durch gute Technik und was mir gefällt ist auch das teilweise geniale Selling, dass nicht zu übertrieben wirkt, aber womit man ihm Schmerzen abkaufen kann. Am Mikrofon verfügt er über ein unglaubliches Charisma und blüht durch sein neues Heel-Gimmick richtig auf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Scotty 2 Hottywrote on 01.10.2008:[10.0] "Viel gibt es zu Chris Jericho nicht zu sagen. Toller Wrestler, fantastischer Entertainer. Im Jahr 2008 wohl in der Form seines Lebens, was wohl auch an seinem Gimmickwandel liegt, der in der Fehde gegen Shawn Michaels perfekt vollzogen wurde. Er ist nun nicht mehr Y2J, sondern Chris Jericho! Ein Heel wie er im Buche steht und unglaubliche Heat erzeugen kann. Völlig zurecht World Heavyweight Champion und der alleinige Grund jede Woche Raw zu schauen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TG Styleswrote on 26.09.2008:[10.0] "RAWs aktueller MVP. Ein Mann, der sowohl in amüsanten als auch in ernsten Promos überzeugt, charismatisch ist und auch im Ring stark ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GoddeKSCwrote on 26.09.2008:[10.0] "Der zur Zeit mit Edge wahrscheinlich beste Micworker der WWE! Seit seinem Heelturn liebe ich seine Promos einfach nur, da fällt es mir trotz Shawn Michaels auf der anderen Seite schwer gegen ihn zu sein! Seine Matches gestaltet er immer interessant und spannend! Es ist wirklich ein super Gimmick, was er derzeit besitzt! Wenn es nur mehr von diesen Jerichos geben würde!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HCN007wrote on 24.09.2008:[10.0] "Unglaublich, wie Jericho in diesem Jahr zum besten Heel RAWs geturnt ist und einen MOTY-Kandiadten mit Shawn Michaels nach dem Anderen hinlegt. Das er jetzt Raw headlined ist nur der Gipfel seines Jahres. Geniale Promos + Geniale Matches = Das ist Jericho, wie man ihn erwarten kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Theron083wrote on 20.09.2008:[10.0] "Wrestlerisch top, als Heel top, Mic Work Top. Neben bzw. mit Edge und Orton für mich der beste Heel bei WWE. Einfach super, was soll ich noch sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheGamewrote on 19.09.2008:[10.0] "Im Ring gefällt er mir ziemlich gut, aber das Mic-Work ist einfach göttlich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: azirufwrote on 18.09.2008:[10.0] "Nach seinem Heel-Turn frisch aufgeblüht und als einer der besten Mic-Worker aller Zeiten in dieser neuen Rolle extrem überzeugend. Seinen Ringrost nach der 2-jahres Pause auch wieder abgelegt und zur Zeit zu recht WHC! Außerdem mit Shawn Michaels in einer großartigen Fehde, zudem sind diese beiden meine absoluten Lieblingsworker!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SpikeDudley1988wrote on 17.09.2008:[10.0] "was soll man zu ihm noch sagen? Einer der talentiertesten Micworker aller Zeiten... Hat seinen Ringrost abgelegt nach seier Pause und kriegt zu Recht seinen WHC-Run. Der absolut beste Heel bei RAW und auf einer Höhe mit Edge vor dessen Pause. Jetzt schon eine Legende. Bitte WWE durch gutes Booking wieder zu dem machen was er früher war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Wise Warriorwrote on 15.09.2008:[8.0] "Hat eigentlich alles - nur wirkt mir bei ihm alles zu bemüht und zu aufgesetzt, um mich richtig überzeugen zu können."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: alfredwrote on 14.09.2008:[10.0] "Überzeugt seit vielen Jahren immer wieder mit grandiosen Leistungen. Endlich in der Rolle seines als Heel in der bahnbrechenden Fehde gegen Shawn Michaels. Wünsche ihm einen langen Run als World Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DeadHeadwrote on 09.09.2008:[10.0] "Go Jericho Go, Go Jericho Go, Go Jericho Go. Yes, endlich ist er wieder verdienter World Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rocky-Takerwrote on 08.09.2008:[10.0] "leute will euch mal was sagen da ist Chris Jericho noch als Top Flop bei seiner Rückkehr zu WWE abgestempelt worden ist er aktuell neben Edge der Beste Heel im Wrestling und ich muss sagen finde es gut"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ecw foreverwrote on 02.09.2008:[10.0] "Ein absoluter 10ner. Einst ein genialer Wrestler und heute immernoch ein sehr guter, Wrestler und Mic Worker, er hat viel Charisma udn weiss es einzusetzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Stalker1987wrote on 28.08.2008:[7.0] "Chris Jericho war mal einer der besten, die es im Wrestling Business gab. Aber seit seiner Rückkehr 2007 ist er nicht mehr der alte. Seine Promos sind nicht mehr so gut. Im Ring ist er nicht mehr so gut. Ich weiß auch nicht. Man muss sich nur mal seine "Man of the 1004 Moves" Promo oder seinen 1. WWE Auftritt ansehen. Göttlich! Und heute? 7 Punkte!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Niklas1106wrote on 28.08.2008:[10.0] "Mir gefällt Chris Jericho sowohl als Face als auch als Heel sehr gut. Er schafft es, das gesammte Publikum in kürzester Zeit gegen ihn aufzubringen und spielt seine Rolle einfach super. Sein Mic-Work ist erstklassig und seine Wrestlerfähigkeiten sind meiner Meinung nach besser, als die einiger anderen momentanen Maineventer. Meiner Meinung nach sollte man ihn als potentiellen Maineventer besser booken, so dass er bald mehr im Mainevent steht. Einen Titelrun um den World Heavyweight-Title würde ich mir für ihn auch mal wünschen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheBigBwrote on 26.08.2008:[9.0] "Chris Jericho ist einfach nur talentiert im Ring ! Er schafft es sowohl als Face als auch als Heel die Fans zu begeistern ! Aber ich finde vorallem , dass er als Heel taugt ! Y2J ist mir allemal 9 Pünktchen wert !"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: cabaloowrote on 21.08.2008:[10.0] "Zu seinen ECW Zeiten war er für mich zusammen einer der allergrößten. Ich war damals schon absoluter Fan von seiner Art zu wrestlen. Technisch mit Guerrero(RIP) und Benoit(... ) absolute Weltspitze."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SeEn2005wrote on 21.08.2008:[10.0] "Chris Jericho gefällt mir sehr gut, als ich ihn seit seiner Rückkehr zum ersten mal gesehen habe! Ich schätze RAW ist durch ihn einfach eine Stufe höher geworden und die Fehde mit Shawn Michaels ist einfach klasse! 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: nicojansonwrote on 18.08.2008:[10.0] "Am Mic top, Charisma top, im Ring top, technik top, ihm hat die Pause wirklich gut getan. Break the Walls!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rated-RKOwrote on 13.08.2008:[10.0] "Er ist einfach super, sein Micwork überzeugt sehr und auch das Gimmick gefällt mir gut. Ob er Heel oder Face ist ist egal denn er bringt beides hervorragend rüber. Auch seine Ring in Skills enttäuschen mich nicht, obwohl er nicht der beste ist. Aber eine 1 hat er sich verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: wwegirlwrote on 13.08.2008:[10.0] "Der Kerl bezaubert mich einfach nur.. Sein Micwork ist sehr unterhaltsam, seine Ring moves.. ja da könnte man noch daran arbeiten.. aber sonst ist er einer der Wrestler, die zurecht im Ring stehen. Dadruch dass er sehr viel erfahrung in Europa & Asien gesammelt hat, könnte er eigentlich sehr vielseitig sein. Auch privat ist er ein toller mensch!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rob the bobwrote on 30.07.2008:[10.0] "Chris Jericho is der Geborene Heel, so kommt es mir im moment vor. Er bringt diese Intensität mit die Wichtig ist. Und vor allem, ein sehr sehr gutes Mic. Work. Der Mann weiß wie man Heat zieht und gleichzeitig noch einer der besten In-Ring Performer der WWE ist. Die Kurzen Haare stehen ihm außerdem um einiges besser, finde ich persönlich jetzt. Seit dem Comeback um einiges gesteigert. Hat alles, jetzt noch ne gute Titel Fehde vs Punk vlt und die Sache ist geritzt. 10 Punkte, was anderes hat der Mann einfach nicht verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kevichenkowrote on 29.07.2008:[10.0] "Ich finde ihn einfach genial. Der beste Y2J aller Zeiten. Seine Promos und In-Ring-Fähigkeiten haben mich bei seinem Come-Back nicht gerade überzeugt doch seit seinem echt genialen Heel-Turn liefert er . meiner Meinung nach , das beste Mic-Work , nach Edge , in der WWE ab. Auch seinen Ring-Rost hat er abgelegt. Er ist wirklich ein richtig derbe genialer Heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rated-R Starwrote on 29.07.2008:[9.0] "Meiner Meinung nach als Heel viel viel besser und interessanter. Im Ring kann er eigentlich alles und am Mic sowieso. Einer der besten Wrestler seiner Zunft. Leider nicht die Höchspunktzahl, da ich ihn als Babyface überhaupt nicht mag."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: quazogenwrote on 28.07.2008:[10.0] "Göttlich am Mic, ganz großartig im Ring. Charisma ohne Ende. Einer der besten Wrestler der Welt. Höchstpunktzahl ist Pflicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Swanton-Bombwrote on 28.07.2008:[10.0] "Y2J ist im Ring super und sein Mic-Work ist spitze. Vor allem ist er so vielseitig, auf der einen Seite kann er die Fans mitreißen wie kaum ein Zweiter, dann aber wieder ist er in der Lage, dafür zu sorgen, dass sich alle Fans gegen ihn stellen. Sowohl als Top-Face denkbar, als auch ein Top-Heel, auf den man nicht verzichten möchte. Diese einzigartige Mischung rechtfertigt meiner Meinung nach 10 Punkte für den Ayatollah of Rock'n'Rollah."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alex Shelleywrote on 28.07.2008:[10.0] "War vor seiner großen Pause immer einer der besten Wrestler überhaupt, kam mit einigen Schwachpunkten wieder zurück und hat diese allesamt wieder abgelegt, so dass ich ihm auch derzeit gerne die volle Punktzahl gebe. Seine Promos sind grandios, im Ring ist er top... Er hat uns doch alle ein bischen gerettet :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The-Real-Diablowrote on 25.07.2008:[10.0] "I'm sorry. Die 8 Punkte, die ich ihm gegen hab sind wohl etwas zu wenig. Beste Fehde des Jahres, besten Promos des Jahres. Das müssen die 10 Punkte sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: stinger89wrote on 24.07.2008:[10.0] "Sein Kampfstil gefällt mir ziemlich gut, und er ist sowohl als Face als auch als Heel eigentlich immer top. Am Mic ist er meiner Meinung nach unerreicht, zumindest bis The Rock sein Comeback hat ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WWEPatriciawrote on 23.07.2008:[10.0] "Jericho ist ein Gott im Ring und am Mic. Es ist definitiv einer meiner Absoluten Lieblings Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Weihnachtsmannwrote on 23.07.2008:[10.0] "Unglaublich unterhaltsamer Wrestler, kann was im Ring, ist am Mic ein Gott, einfach nur gut, würde mich freuen, wenn er mal wieder eine Titelfehde bekäme."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Hennewrote on 23.07.2008:[10.0] "War schon immer ein ausgezeichneter Wrestler und gut am Mikrofon. Was er allerdings zur Zeit abliefert ist absolute Spitzenklasse. Mein Wrestler des Jahres 2008 - schon jetzt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ButchIncwrote on 20.07.2008:[10.0] "10 Punkte, Schluß, aus. Weniger geht nicht. Jericho ist ein Komplettpaket. Er hat alles, was einen hervorragenden Sports-Entertainer ausmacht. Ob Face oder Heel, er überzeugt. Es wurde wahrscheinlich alles schon gesagt, aber ich kann ihn nicht hoch genug in den Himmel loben. Y2J macht einfach Spaß!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: aulitwrote on 17.07.2008:[10.0] "Ich bin ein Jerichoholic! Egal ob in der WCW oder der WWF/E, er war immer mit einer der unterhaltsamsten Wrestler. Bei ihm stimmt das Paket aus Aussehen und Fähigkeiten im Ring und am Mikrofon perfekt. Jericho liefert haufenweise Momente, die im Gedächtnis bleiben. Aktuell gerade in seiner tollen Fehde mit Shawn Michaels."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 6th son of a 7th sonwrote on 02.07.2008:[8.0] "Mir fehl irgendwas an Chris Jericho seit er zurück gekehrt sind. Er ist im Ring immer noch/wieder stark und gefällt mir da auch sehr gut. Aber seinen Promos ist etwas abhanden gekommen. Sie sind zwar auf keinen Fall schlecht. Aber wenn man irgendwie den alten Chris Jericho im Hinterkopf hat, dann wirken sie irgendwie fehl am Platze. Damals steckte mehr Arroganz darin, mehr Emotion, mehr Aggresivität gegen seine Gegner. Das alles fehlt irgendwie. Jericho passt irgendwie nicht in dieses Bild des verbitterten Ex-Stars. Deshalb nur 7 Punkte ... andererseits, wenn ich den Rest der Karriere mit drauf packe, wohl doch lieber 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: gerybundy68wrote on 09.06.2008:[8.0] "Fantastisch am Mic. , gute Leistungen im Ring und Wrestler mit großer Ausstrahlung. Ich fand ihn trotz allem vor seiner großen Pause einen Tick besser."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Riley Mathewswrote on 30.05.2008:[10.0] "Neben The Rock hör ich ihn am liebsten am Mikrophon. Also am Mic genial im Ring ebenfalls einen der besten und er hat auch noch eine Gesangskarriere am laufen. Eine klare eins für den "King of the World"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Frutzwrote on 25.05.2008:[10.0] "Begnadeter Entertainer, am Mic ist er einer der Besten, im Ring, sofern er es denn zeigen darf, ein herausragender Techniker, was die WWE manchmal aus ihm macht, versteh ich nicht, er gehoert nach oben in den ME."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Carnevalewrote on 22.05.2008:[10.0] "Seine Rückkehr (und insbesondere die Orton Fehde) war etwas enttäuschend, da hätte ich mehr erwartet. Aber mit jeder Woche gefällt mir Jericho besser. Hatte fast ein wenig vergessen mit der Zeit, was er für ein klasse Worker ist. Sein Stil gefällt mir wahnsinnig, dazu hat er mit dem Codebreaker einen Finisher der mir ebenfalls sehr zusagt. Allgemein seine Signatures Moves: Eine Klasse für sich. Nur - ja es klingt komisch - seine Frisur ist einfach etwas zu Bubi-mäßig. Vor allem wenn man den alten Jericho kennt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Haribowrote on 14.05.2008:[8.0] "Verfolge ihn seit er 1996 in die WCW kam. Sehr gut im Ring wie am Mikro, aber das letzte Quentchen zum absoluten Topstar fehlt ihm irgendwie."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AngleClockwrote on 12.05.2008:[10.0] "Erfolgreiches Comeback mit einem noch besserem Wrestling können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Blazewrote on 18.04.2008:[10.0] "Einfach King Of The World. Super Matchqualität und ausgezeichnetes Mic Work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: homicidal cena michaelswrote on 18.04.2008:[10.0] "Ein Klasse Wrestler, der aufgrund seiner Leistungen wieder einen Titel bekommen sollte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Fran7iCwrote on 12.04.2008:[10.0] "Guter Klassicher Wrestler immer wieder mit super Returns."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jericho Onewrote on 10.04.2008:[10.0] "Mein absoluter Held des Wrestlings seit wCw Monday Nitro! Bei der WWE hat er dann seinen verdienten Maineventpush gekriegt! Schade, dass er bei seinem Comeback nicht den World Heavyweight Champion geworden ist! Aber vielleicht schafft er es ja nochmal... C`mon Baby!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: nightfallwrote on 10.04.2008:[10.0] "Ich fand ihn zu seiner Anfangszeit bei WCW totlangweilig, aber das hat total geändert. Toller Wrestler, super am Mic. Einer der Besten. Schade find ich eigentlich nur, dass er von der WWE ein bisschen falsch eingesetzt wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ultimate-warrior-xwrote on 03.04.2008:[10.0] "Gut im ring und genial am Mic. Einfach ein super Gesammtpaket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CoLoGn3 KeVwrote on 27.03.2008:[10.0] "Mein absoluter Favorit! Warum pusht die WWE den nicht ins ME? ! Super im Ring und der wohl aktuell beste Mic-Worker im Wrestling-Business!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Ruppiwrote on 27.03.2008:[8.0] "Kenne ich noch ein wenig aus der WCW, wo er mir damals sehr gut gefallen hat. Seine erfolgreichste Zeit in der WWE hab ich nicht erlebt, weshalb ich ihn nur seit seiner Rückkehr bewerten kann. Am Mic einfach grandios und im Ring ebenfalls auf allerhöchstem Niveau. Mich stört derzeit einzig sein etwas farbloser Charakter. Liegt sicher auch an der Geschichte um seine Rückkehr, die mich ziemlich enttäuscht hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Larethwrote on 17.03.2008:[10.0] "Auch nach dem Comeback absolut sehenswert, hoffe er bekommt seinen Push bald wieder."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lethal Combinationwrote on 15.03.2008:[10.0] "Am Mic Gott im Ring einer der besten, da gibt es die Bestnote!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Instant Classicwrote on 13.03.2008:[10.0] "Simply The King Of The World - der beste Micworker aller Zeiten, Ausstrahlung ohne Ende und dazu noch fantastisch im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: victoriawrote on 20.02.2008:[8.0] "Er hat seine besten Zeiten schon hinter sich und ist, wie ich finde, nach der langen Pause einfach nicht mehr der Selbe. Sollte meiner Meinung nach vielleicht doch besser für junge Talente den Platz freimachen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Joeevil123wrote on 19.02.2008:[8.0] "Endlich einer der mal wieder frischen Wind in die WWE bringt!  Hat seit seinem Comeback ordentliche Matches auf die Beine gestellt. Weiter so!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: McChickenwrote on 04.02.2008:[8.0] "Im Ring sehr gut und auch am Mic, aber irgendwie fehlt ihm das gewisse Etwas."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Maxskywrote on 03.02.2008:[10.0] ""Welcome to Raw is Jericho! This is not a mirage. This is real. This is here. This is now. This is the second coming of Y2J! You remembered. I want you to take out your cell phones. Text your friends. Take a picture. Shoot a video. Send an email Call them all and tell them that the sexy beast is back, baby! And I promise to ignite you, to excite you, to delight you, and I invite you to strap on your seatbelts, ease the seat back, click it into gear, and go into overdrive because from this point forward it’s 100% entertainment. 100% electricity. 100% Jericho! " Kurz und Knapp ist das für mich einfach nur Top"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Haukewrote on 19.01.2008:[8.0] "Stark im Ring, Gut am Mic. Aber irgendwie springt der Funke nicht so ganz über. Nach dem schnellen Run ist er wohl auf der Midcard gut aufgehoben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sandman16wrote on 17.01.2008:[10.0] "Im Ring sowie am Mikro fantastisch. Ich freu mich das er wieder da ist, denn Jericho gehört einfach in den Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AnFuwrote on 05.01.2008:[8.0] "Y2J ist back! Und die lange Pause merkt man ihm auch an! Früher klasse und ich hätte auch Bestnote gegeben, zum Beispiel sein Match gegen Shawn Michaels, klasse. Aber seit seiner Rückkehr gefällt er mir gar nicht mehr. Schwaches Auftreten, sein Comeback war dann nicht so umwerfend und sein neuer Finisher ist der Höhepunkt. Mit JBL im Ring sollte er wieder zu seiner alten Form zurückfinden, denn sein Versuch direkt im Titelmatch misslang."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: King of Queenswrote on 05.01.2008:[10.0] "DAS Total Package der Wrestlingwelt. Wohl kein anderer Wrestler konnte solch großartige In-Ring Skills kombiniert mit diesem absolut großartigem Mic-Work unter einen Hut bringen. Selbst mit halber Kraft wäre er wohl besser als die meisten Wrestler der WWE. Es ist einfach faszinierend, was dieser Mann alles kann und erschreckend, dass er kein Dauer-Main Eventer gewesen ist. Schaut man sich seine Leistungen am Mic und im Ring an, kommt man nicht drum herum, sich diesem Mann den Status von z. B. Triple H zu wünschen. Verdient wäre das wie bei keinem anderen Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Remootwrote on 05.01.2008:[10.0] "Unglaublich.. vor einen halben Jahr waren sie noch alle am Saveus Y2J schreien und nun wird er ihn stücke kritisiert. Lächerlich... der Mann wurde zurecht als einer Top Männer in diesem business angesehen. Für mich einer der grössten Komplettpakete der Wrestlingwelt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Stone Cold Andywrote on 04.01.2008:[4.0] "Der mit am Abstand meisten überschätzte Wrestler aller Zeiten. Seine guten Leistungen im Ring kann ich nicht abstreiten, aber die von so vielen Fans gelobten Mic- und Charisma- Skills sind meiner Meinung nach überhaupt nicht vorhanden. Wenn er mal in einer unterhaltsamen Fehde war, dann war das nur einem Rocky oder Hunter zu verdanken. Für die Ring- Skills gibts noch 4 Punkte."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: EvenflowDDTwrote on 31.12.2007:[8.0] "Y2J weiß wie man Hype macht. Ob es sein Debüt war, die Y2J Milleniumsuhr oder seine Jericodes... Jedes Mal war ich hin und weg... Manche sind der Meinung sein derzeitiges Micwork wär schlechter, sein Micwork hat sich nur verbessert. "Me Want Title Match" beweißt dies."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Foerstawrote on 30.12.2007:[10.0] "Endlich ist RAW wieder JERICHO... nach seinem Comeback muss man feststellen, dass er nicht an Qualität verloren hat und noch einen neuen Finisher mitgebracht hat... find eihn einfach charesmatisch super!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Y2J Michaelswrote on 29.12.2007:[10.0] "Neben HBK mein Lieblingswrestler. Super Mic Work und sein Talent im Ring ist auch nicht zu unterschätzen. Insgesamt ein geiler Wrestler der alles kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MA Excellentwrote on 29.12.2007:[8.0] "Jericho ist Entertainment pur und kann auch im Ring überzeugen. Aus meiner Sicht ist er mit einer 1 jedoch overrated. Er steht definitv nicht auf einer Stufe mit Shawn Michaels, Bret Hart, The Rock usw. Da fehlt mir im Ring doch etwas die Flexibilität, seine Matches sind recht vorhersehbar und können mich auch technisch nicht 100 % überzeugen. Was mich jedoch voll überzeugt ist alles, was er im Bereich Entertainment zeigt. Da ist er immer für eine Überraschung gut und sehr wortgewandt. Für mich eine klare 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AMMOwrote on 20.12.2007:[8.0] "WOW! Am Mikro unglaublich, und im RIng besser als viele andere. Für mich ein Grund wieso ich ein paar der letzten RAW Folgen geschaut habe, und auch den PPV!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Baxiwrote on 18.12.2007:[6.0] "Derzeit kann ich ihm nur eine gute 3 geben, er ist immer noch ein guter Wrestler mit hohem Unterhaltungswert, aber im Vergleich zu früher hat er meiner Meinung nach extrem nachgelassen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DrBreswrote on 16.12.2007:[8.0] "Muss zugeben, dass ich seinen ersten WWE-Run aufgrund einer Wrestling-Abstinenz nicht mitgekriegt habe, was er in der WCW für Matches abgeliefert hat ist allerdings erster Güte. Doch bisher hat mich das Comeback von Jericho nicht wirklich überzeugt, man ahnt was er kann, hat im Moment (noch) nichts im Main-Event zu suchen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rock is Jerichowrote on 06.12.2007:[6.0] "Also ich weiß nicht so genau, Chris Jericho ist ein Ausnahmeathlet, ist Weltklasse am Mic, ABER er gehört bei mir nicht in die Sparte: WOW was ein Klasse Superstar! Er konnte nie an Legenden wie The Rock, Taker usw. rankommen, weil ihm irgendwas fehlt... für mich ist er auch nicht der Retter vor Randy Orton er ist einfach ein Wrestler der nach 2 1/2 Jahren mal wieder Bock hatte mehr Geld zu verdienen und zurück in die WWE gekommen ist. Dafür gibts ne 3+ mit * ;-)"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HHH-Stephwrote on 04.12.2007:[10.0] "So, jetzt ist Chris also endlich nach 2 1/2 Jahren wiederzurück im Wrestling. Ich kann nur sagen, dass er eine Bereicherung für die WWE ist. Seine Fähigkeiten sprechen auch für sich: Y2Js In-Ring Skills sind sehr gut und hat schon einige klassische Matches bestritten, Ausstrahlung besitzt er auch wie kein Zweiter, er kann sowohl den Heel als auch den Face verkörpern und am Mic können ihm nur wenige etwas vormachen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Schandmaulwrote on 04.12.2007:[6.0] "guter Wrestler, aber imo sowohl im Ring als auch am Mic völlig überbewertet. Kriegt von mir ne 3+"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lancylwrote on 26.11.2007:[10.0] "Einer der komplettesten Wrestler aller Zeiten! Außerdem sticht er heraus, indem er nicht so vollgepumpt ist wie der Rest. Deshalb 10. 0!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Champwrote on 21.11.2007:[10.0] "Einer der besten Micworker ever, ein TOP-Wrestler mit prima Charisma!  Da kann man nicht mehr zu sagen als: RAW is still Jericho!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: -X-Factor-wrote on 20.11.2007:[10.0] "Chris Jericho ist [einer] der beste/n Superstar/s in der geschichte der WWE!  Welcome back, King of the World!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BenZenwrote on 04.11.2007:[10.0] "Jericho ist ein absolutes Komplettpaket. Der Mann ist ein Gott am Mikrophon und zudem in der Lage hervorragende Matches abzuliefern. Kaum einer konnte mich so konstant über so viele Jahre begeistern, egal in welcher Liga er angetreten ist. Zum Glück wird man ihn wohl bald wieder bewundern dürfen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jickswrote on 01.11.2007:[10.0] "Im Ring einer der Allerbesten und am Mikro DER Allerbeste! Go Jericho Go!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Thomas Carlsonwrote on 28.10.2007:[10.0] "Ich sehe ihn nicht als Retter der WWE da die eh nicht viel mit ihm anfangen können. Das ist aber WWE Booking was keiner versteht. Er ist ein sehr guter Wrestler aber auch ein sehr guter Entertainer. Genau das was die WWE eigentlich sucht aber nie richtig gebrauchen konnte. Hätte man es anders angestellt wer weiß wie oft er den Titel geholt hätte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Benny110106wrote on 28.10.2007:[8.0] "Floppte leider als Champ, aber trotzdem einer der besten Wrestler aller Zeiten aus Kanada. Er schaffte es in 3 Liga zu überzeugen und ist nun der heißeste Free-Agent im Biz. Ich hoffe er kommt wieder und zeigt uns allen, dass er eine 1 verdient hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bhanduwrote on 28.10.2007:[10.0] "Perfekte Kombination aus gutem Wrestler (wobei es wesentlich bessere gibt, neigt hin und wieder zu Schlampigkeit) und gutem Entertainer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NJackwrote on 27.10.2007:[10.0] "Der Mann, der mich damals wieder zum Wrestlingfan machte. Als er die Arena der WWF betrat, hatte ich so einen Mark Out. Geiles Mic-Work, hammer In-Ring-Skills und einer der besten im Geschäft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Winnie The Poohwrote on 24.10.2007:[10.0] "Ohne Zweifel einer der Besten! Im Ring vielleicht nicht gaaaanz so gut wie ein Triple H oder Kurt Angle, gleicht das aber am Mic 100%ig aus. Ich finde am mic gibt es keinen Besseren als ihn. Seine Promos sind immer einwandfrei. Ich hoffe er kommt bald zurück. Diesmal wieder mit einen dicken Push, denn er zieht Leute, ohne Zweifel"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wuschl 85wrote on 20.10.2007:[8.0] "Klasse am Mikrofon, so unterhaltsam wie kein anderer. Im Ring sehe ich ihn nicht ganz so stark dennoch überdurchschnittlich gut. Sein Lionsault hat mir schon immer gut gefallen. Ich hoffe er kommt bald zurück, denn er gehört in die Wrestlingwelt und sonst nirgends."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Renwrote on 17.10.2007:[10.0] "Nicht nur einer der besten Techniker der Welt sondern auch noch ein Gott am Mic. Humor hat der Typ, Ringfähigkeiten auch zur Genüge, in Japan war er sehr schön anzusehen, in der WCW und der WWF/E ebenfalls. Ich hoffe das er bald wieder zurück kommt und uns rettet. RAW IS JERICHO"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Detoxxwrote on 13.10.2007:[10.0] "Fantastischer Techniker und super Mic-Work. Allerdings passt er einfach nicht zu den World Titles. Seine vielen Einsätze als verhasster CW Champ bei WCW waren klasse und zu weglachen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Goretexwrote on 08.10.2007:[10.0] "Für mich der perfekte Wrestler! Bei Y2J passt einfach alles zusammen - seine WrestlingSkills, Mic-Fähigkeiten, sein Charisma und seine Ausstrahliung, einfach alles! Deswegen note 1 für den Ayatollah of Rock'n'Rollah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Shawn Sandiegowrote on 05.10.2007:[10.0] "Eines ist ganz klar: Wenn, dann gehört Y2J an die Spitze einer Promotion und sonst nirgends hin! Jericho ist wahrlich "Larger than Life". Ich hoffe doch sehr auf ein baldiges Comeback! SAVE US, CHRIS! ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jerseyhoolwrote on 30.09.2007:[10.0] "meine nr. 3 der besten aller zeiten: im ring - klasse! am mic - unantastbar! gimmick(s) - einwandfrei! naeher als er kommt keiner an das praedikat "perfekt" heran! punkt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dariawrote on 29.09.2007:[10.0] "einer meiner Lieblingswrestler, hat alles, was nötig ist, tolle Ringskills, Superausstrahlung"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Christopherwrote on 22.09.2007:[10.0] "Genau wie The Rock ist er einer, der einfach alles hat, was ein spitzen Wrestler braucht"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alan Smitheewrote on 12.09.2007:[10.0] "In meinen Augen eins der wenigen Rund-um-Glücklich-Pakete. Seine Promos sind die besten (teilweise mit ausnahme von Rocky) und was seine Fähigkeiten im Ring angeht... tja was soll man da sagen er ist der Mann der 1004 Moves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bullit69wrote on 08.09.2007:[8.0] "Zählt zu den besten, die jemals einen Ring betreten haben! Und dieses Mic-Work... wow... seine Battles mit The Rock am Mic wahren einfach genial!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DannyGeigwrote on 06.09.2007:[10.0] "Jericho Rules. Musim Geil, Moves Spitze, Charisma Top, Micwork eines der besten an Jericho stimmt einfach alles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Austin 316wrote on 26.08.2007:[8.0] "sehr guter wrestler mit guten mic-skills. Hoffe das er bald von seiner pause zurück kommt"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rashomonwrote on 04.08.2007:[10.0] "Einfach die bestmögliche Kombination von Wrestler und Entertainer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Grissomwrote on 03.08.2007:[10.0] "Einer der besten überhaupt. Sowohl wrestlerisch als auch am Mic. Einfach nur Top. RAW IS JERICHO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: scotty619wrote on 31.07.2007:[8.0] "The First Undisputet Champion is cool come back to the WWE"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: shannonmoorewrote on 28.07.2007:[10.0] "Unglaublich der Mann. Seine Promos sind von einer unglaublichen Qualität. Ob den verbitterten den hasserfüllten oder den beleidigten Heel. er kann alles spielen. Und als Face na ja..... auch gut aber als Heel Gold wert. Die WWE dachte wohl sie könne auf ihn verzichten jetzt sieht man wie gross die Lücke im Roster ohne ihn ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Azraelwrote on 04.07.2007:[10.0] "Sehr gute In Ring Skills und sehr gutes Mic Work, hoffentlich kommt er bald zurück."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ShaneOwrote on 28.06.2007:[8.0] "Sehr guter Worker! Einer meiner absoluten Favs. Leider wurde er in der WWE ziemlich unten gehalten. Am Mic ist er Top - im Ring auch ganz gut. Wurde leider viel zu oft sinnlos verjobbt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Steven McWheelerwrote on 27.06.2007:[10.0] "Nach The Rock, der beste MicWorker allerzeiten! Wrestlerisch einfach Spitzenklasse und Charisma bis zum Umfallen! Höchstnote cause I'M A JERICHOHOLIC"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Die Gurkewrote on 24.06.2007:[10.0] "Einer der besten Mic-Worker aller zeiten und zudem noch eine Augenweide im Ring, außerdem noch ein extrem ansprechendes Heel-Gimmick. Das absolute Wrestling Komplettpacket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Ein unglaublich guter Entertainer! Sensationell am Mic und im Ring auch hervorragend! Leider hatte er nur ein richtig gutes Jahr, nämlich 2001! Ansonsten war er meist nur Uppercard! Kaum zu glauben, dass er der erste Undisputed Champion war... Doch seine Fähigkeiten sprechen für sich! Auch ein künftiger Hall of Famer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mr Lovewrote on 24.06.2007:[10.0] "Chris Jericho war einfach nur top am Mic, hatte sehr viel Ausstrahlung, war bei den Fans sehr beliebt, hat seine Karriere rechtzeitig, aber eigentlich auch zu früh beendet, denn er war ein super Wrestler und Technicker, er hätte es noch ein paar Jahre geschaft, unterhaltsam war er auch. Aber wenn er glaubt mit Musik und seiner Band Fozzy mehr verdienen zu können, dann soll er es machen, würde mich freuen ihm zumindestens bei Wrestlemania 24 mal wieder im Ring zu sehen, hatte wirklich spaß gemach"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ABOOgeymanwrote on 24.06.2007:[10.0] "Begnadeter Wrestler und Mic-Worker. Seine band Fozzy ist auch genial!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Trevedaswrote on 24.06.2007:[10.0] "Im Ring sehr gut. Charisma und MicWork absolute Spitze. Und seine Promos, vor allem mit Steph, waren alle mindestens so unterhaltsam wie Rockys oder Austins"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Matt Hardywrote on 24.06.2007:[10.0] "Völlig zu Recht first ever Undisputed Champion - Hoffe stark auf eine baldige Rückkehr und eine Fehde gegen Edge!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: raven1610wrote on 24.06.2007:[10.0] "Ein Rundum perfekter Wrestler. Er hatte alles was man zu einem riesen Star braucht. Sehr schade , was die WWE am Ende seiner Karriere mit ihm angestellt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Chris Cagewrote on 24.06.2007:[10.0] "Ein technisch hervoragender Wrestler, der zurecht erster einstimmiger Champion wurde. Schade das er letztlich so für Cena jobben musste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: hostrodwrote on 24.06.2007:[10.0] "Nach Eddie Guerrero meine klare Nummer zwei - fehlt mir übrigens mindestens genau so im Wrestling-Geschäft. Hoffentlich kann er sich noch mal zu einem Comeback durchringen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jupp365wrote on 24.06.2007:[10.0] "Ich fand den Mann schon immer genial. Er ist im Ring wirklich gut und seine Promos sind auch spitze. Hoffentlich kehrt er im Herbst zurück und kann sich noch einmal einen großen Titel sichern!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Garvinwrote on 24.06.2007:[10.0] "Einer der komplettesten Wrestler unserer Zeit. Er hat alles, was ein großartiger Wrestler mit sich bringen muss. Eine Rückkehr würden wohl alle sehr begrüßen. M. E. hätte er sehr viel mehr gepusht werden müssen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Y2J - das steht für fast perfektes Mic-Work und ebenso gutes Wrestling! Habe seine Matches immer mit großer Freude gesehen. Auch seine Promos sind/waren genial."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Raywrote on 24.06.2007:[10.0] "Ein absolut grandioser Wrestler. Grandios im Ring und göttlich am Mic. Einer der komplettesten und besten Wrestler, die noch im wrestlefähigen Alter sind. Eine Bereicherung für jede Liga."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mediwrote on 24.06.2007:[10.0] "Gut, manchmal fair und manchmal der Ober-heel, da mag man sagen was man will. Jedoch stehen die Leistungen an erster Stelle und seine sind immer vom feinsten gewesen (der Lionsault ist eine meiner Lieblingstechniken). Ich hoffe, dass er irgendwann nochmal zur WWE zurückfindet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Hypocrisywrote on 24.06.2007:[10.0] "Sports Entertainment. Kein worker deckt beide Bereiche dermaßen ab wie Chris Jericho. Hoffe, dass sein WWE-Abgang nicht für immer ist. Ich würde gerne Jericho gegen Vinnie Mac sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Doerbenwrote on 24.06.2007:[10.0] "total package, mit the Rock der geilste Micwoker aller zeiten. Besonders ein Interview wo beide gleichzeitig anwesend waren hat mich begeistert. Y2J aka Lionheart werde ich aber auch immer mit folgendem Satz verbinden "Thank you Stephanie, you are the breast. OH OH uhm.. I mean the Best". was er einst in einem promo zu der Million Dollar Bitch sagte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: CDProsProwrote on 17.01.2024:[10.0] "The greatest wrestler in Big Japan Pro Wrestling history and one of the best powerhouse wrestlers ever. The standout heavyweight whom no other can handle. Till the bells troll upon the damned roster of Big Japan Pro Wrestling. Okabayashi Yuji!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Lalo Camposwrote on 16.08.2023:[10.0] "The greatest wrestler in Big Japan Pro Wrestling history and one of the best powerhouse wrestlers ever. He is a MOTYC machine, every year has great matches with anyone and anywhere. My three favorite matches from Okabyashi are against young wreslters (Nomura, Takeshita and Aoki) that shows the williness of Yuji to pass the torch to the new generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: TheOneAndOnlyCactuswrote on 03.04.2023:[9.0] "An iconic figure in Big Japan Pro Wrestling, Yuji is a hard-hitting son of a bitch. A charismatic and aggressive powerhouse, he is often overlooked as he never really wrestled in a big league, which is a shame. Okabayashi is a true independent legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Lakhiarfarhad91wrote on 30.07.2022:[9.0] "Yuji Okabayashi is one of the best worker on the planet. A guy who is incapable of having a bad match and consistently put on quality matches. Also a great tag team wrestler with Daisuke Sekimoto."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "Oozes chraisma and can control crowds as well as anyone in Japan. His KO-D Tag Champion run with HARASHIMA was ok, the best match coming when he lost to Konosuke and Shunma. Then he had a late year run to rival anyone, with D-OH Grand Prix draws against Konosuke (brilliant) and HARASHIMA (pretty good), and a follow-up title match that felt like a modern-day epic. Don't expect to see as much from him in DDT but he's a brilliant star to bring into any company."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Wrestling Foreverwrote on 22.12.2021:[9.0] "Nicht nur unfassbar stark er ist auch wie ein unüberwindbare Mauer. Auch ist er längst eine Japanische Legende und sehr beweglich mit gefürchteten Chops."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: sami07wrote on 26.11.2021:[8.0] "A very good wrestler, I really enjoy what he does. Very stiff and does huge impact techniques but I think he is a bit overrated for what he is : he sure is one hell of a wrestler but not as perfect as people say. It's usually the same moves but that does the work so I have no problem with it he always entertains me, he is definitely one of the best in his style"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Kungwrote on 14.05.2021:[9.0] "Big Yuji might be the best-kept secret in all of puro over the past few years. He's tremendous in the ring. He's super charismatic. And he works well both as a badass in BJW or a jovial tag team partner in DDT."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: VosBosswrote on 23.04.2021:[10.0] "Highly underrated and overlooked. He's been so great for so long from what I've seen going back through some of his matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Same Old Same Oldwrote on 13.10.2019:[9.0] "Yuji Okabayashi over the last few years has push him to the brink of being in my current top 10 wrestler, an impressive body of work, a powerhouse of brute strength, grizzly slaps this side of WALTER and what I like to call "aggressive charisma". Even before his standout year of 2019 (I mean seriously, it's been phenomenal) , Okabayashi's 2015 run with the BJW Strong World Heavyweight title put him on the map for me during a period where I was less aware of the non-NJPW scene and thus BJW's Strong division. Also as one half of BJ Strong with the impeccable Daisuke Sekimoto, Okabayashi is also a solid team worker. The one thing I will ding however is his very audible and sometimes distracting breathing/selling. Otherwise, fantastic wrestler!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: KENTAfanwrote on 31.08.2019:[10.0] "This year has been Okabayashi's most successful year. Countless classic matches. He's demonstrating just how good I knew he has always in. I would put him on the same level as Sekimoto now. One of the best wrestlers out there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: InactiveGuruwrote on 01.06.2018:[8.0] "One of the 2 men that come to mind when I think of Big Japan Pro Wrestling. A hard hitting monster of a man, if you enjoy hard hitting matches look no further, You've found your new favourite."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: My Bloody Doobwrote on 25.02.2018:[9.0] "If Sekimoto is the heart and face of Strong BJ, then Okabayashi is the strength and spirit. The dude is an explosive monster who can demolish anyone in his path with his incredible strength. Of course he doesn't have the world wide recognition that his tag team partner does, but together they are one of the best tag teams in this decade."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: OKABAYAHAwrote on 11.11.2017:[10.0] "Amazing one of a kind wrestler. I do not know how anyone in the world could ever dislike him. He is easily one of the greatest wrestlers in the BJW Strong division. More people need to know of his excellence, in my opinion he is better than Sekimoto"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Valerionwrote on 08.03.2013:[10.0] "Harte Clotheslines, monströse Shoulderblocks und krachende Chops... man merkt wer diesen Mann trainiert hat, steht in keinster Weise in Sekimotos Schatten! unheimlich beeindruckender Top Rope Splash der auf seinem höchsten Punkt scheinbar den ganzen Ring in Schatten hüllt! Die Ringschlacht mit Bad Bones beim Carat 2013 war für mich das persönliche Highlight des Events besser gehts nicht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Marcywrote on 04.03.2013:[8.0] "Aufwertung um einen Punkt. Hat mir beim Carat 2013 sehr gut gefallen. Okapi ist ein mehr als glaubwürdiger Big Man und bringt den Fighting Spirit fast so gut rüber wie sein Mentor Sekimoto."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Phoenix Downwrote on 24.03.2012:[8.0] "Okabayashi ist schon lange aus dem Schatten seines Trainers herausgetreten und zu einem saustarken Heavyweight Wrestler geworden. Überzeugt immer wieder aufs neue."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: MaikBaaderwrote on 30.09.2011:[9.0] "Starkes Kraftpaket, der alles und jeden deadliftet. Erinnert mich ein wenig an Akiyama. Nicht wegen dem Aussehen oder dem Wrestlinstil, sondern weil beide rookies waren und selbst als rookie unglaublich gut. Ich kann einfach nicht glauben, dass Okabayashi nur 3 jahre dabei ist, denn er wrestelt jetzt schon so als wäre er länger als einer dekade dabei."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Matt4Wrestlingwrote on 05.03.2011:[7.0] "Steht seinem Trainer in nix nach, nur er sollte seinen eigenen Weg gehen und dementsprechen auch agieren!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Rise Againstwrote on 25.05.2010:[7.0] "Gefällt mir ganz gut, allerdings ist da noch etwas Platz nach oben. Aber er ist ja auch noch relativ neu im Wrestling."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: C van Damwrote on 13.05.2010:[7.0] "Muss noch einiges lernen, vor allem im Single Bereich, überzeugt aber im Team B2 mit Daisuke völlig."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Soerenwrote on 18.03.2010:[7.0] "Krillin rockt. Hat mich wirklich sehr überzeugt, sehr sympatisch!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Raywrote on 08.03.2010:[7.0] "Sein Carat-Match war eher durchschnittlich, aber im Team mit Daisuke hat er mehr gezeigt, blühte mehr auf und hat mich durchaus überzeugt. Er kann noch einiges von Daisuke lernen und kann davon nur profitieren. :)"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Zak22wrote on 29.07.2024:[2.0] "Ok, ok, I know, I'm probably very, very wrong in my opinion on Johnny Saint but, I just... well.... really don't rate him that much. I am most familiar with Saint's work in Joint Promotions on ITV in the UK and I don't enjoy him that much. Johnny Saint definitely had lots of talent but I find his so-called "entertaining" antics just distracting. And the fact he is seen as the face of UK ITV wrestling, really damn annoys me, compared to the likes of Mark Rocco, Marty Jones and Steve Grey.... Johnny just wasn't as good in my personal opinion. Also seeing old, washed up Johnny Saint in Japan moving at x0.25 speed with poor psychology and doggy "scientific" strategy is just embarrassing and the clips trend on Twitter and I have to fight for my life arguing that the UK scene was actually good. Maybe I've not seen Saint's best and maybe its not for me or I just don't get it but oh well.... defo not for me and I'm not entertained."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: DangoDaisukiwrote on 13.02.2022:[7.0] "Habe einiger seiner Matches gesehen, ist definitiv sogar im Alter noch ganz okay. Bonuspunkte gibt es für alles was er geleistet hat um das Wrestling voran zu bringen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: JEK 1991wrote on 04.02.2019:[9.0] "Very entertaining and skilled. Only wrestled in Europe. His moves are amazing. Never seen a wrestler just go under someone's legs and attack them from the behind. He's fast! Today he is the WWE's general manager of the United Kingdom."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: RatingsMachinewrote on 14.10.2018:[9.0] "Johnny Saint was a tremendous technical wrestler, one of the biggest names in the 70s era of World of Sport, and you can see his influence in the style of a guy like Zack Sabre Jr.."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Bigchiefmartinwrote on 16.11.2016:[10.0] "Johnny Saint is one of the pro-wrestlers that simply must be seen to be understood and appreciated. A self-proclaimed "escapologist, "Saint spent a good many years developing his skills. Saint's one-of-a-kind style. As one of the greatest technical wrestler ever! With crazy Technique and Counters most be at the top of the list in those and along with top of the line move set! Johnny Saint stood out in a way that few could. He was one of the key lightweights dominated the World Lightweight title for the better part of twenty-five years. Several years ago, he enjoyed a career revival thanks to the spread of tapes and videos of his matches and people espousing his greatness. Johnny Saint is like no other and while he never traveled widely stayed most of his career in the U. K and was limited due to his size, his work stands alone. for his amazing unique technical skills and counter ability what be the greatest in the history of wrestling!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Damianwrote on 14.04.2015:[6.0] "Checked out some of his stuff last night. Good wrestling technician but not great. No wrestler should wrestle over the age of 60 so he loses points cause of that."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: The Man of 1004 armbarswrote on 29.10.2013:[10.0] "Wie kann man ihn denn nur eine 0 geben? Da hat wohl der User vor mir noch nie etwas von ihn gesehen oder gehört was man auch an seinen Kommentar merkt. Johnny Saint war ein hervorragender Wrestler/Catcher der sogar heute noch im hohen Alter immer noch fähig ist gute Leistungen im Ring zu bringen was manche seine Kollegen nicht schaffen (siehe Roddy Piper, Terry Funk u. a. ). Er gehört meiner Meinung nach als einen der Technicksten Wrestler die es je gegeben hat, das einzige Problem ist nur das er nie den grossen Erfolg bekommen hat den er verdient hätte. Seine World of Sports Kämpfe sind auch heute noch ein Genuss sie anzuschauen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: ARIZAwrote on 15.06.2012:[10.0] "Unglaublich was Saint damals leistet und auch unglaublich wie gut der alte Mann heute noch ist. Natürlich kann man ihn heute nur noch gegen Leute wie Quackenbush oder Johnny Kidd einsetzen, aber ich bezweifel stark, dass 90 Prozent der heute aktiven Wrestler in seinem Alter überhaupt noch in den Ring kommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: leolondonwrote on 26.01.2012:[10.0] "The greatest of the technical wrestlers from the World Of Sport era"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Giantswingwrote on 21.08.2011:[10.0] "Ich hoffe doch nur, dass Saint einige Leute trainiert, damit dieser wunderschöne WoS-Stil nicht ausstirbt. Saint ist ein unglaublich gott und in dem was er macht einfach unglaublich gut. Es ist immer eine schöne Entspannung für mich von dem ganzen Headgebumpe und den Bumps in Light tubes. Unglaublich spaßig der Typ, selbst noch im hohen Alter. Ein Meister, ein Gott."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Pius123wrote on 08.08.2011:[8.0] "Ich kann mich nur vor den Leistungen des Johnny Saints verbeugen. Große Klasse."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: treeofworldswrote on 01.08.2011:[10.0] "Kaum einer verkörpert den World of Sport - Style so sehr wie Johnny Saint. Eine wahre Legende, nicht nur für europäisches Wrestling sondern weltweit, wie ich meine. Habe bisher kein einziges Johnny Saint Match gesehen, egal ob von 1978 oder 2008, dass nicht zumindest mehr als gut war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Miloswrote on 13.06.2011:[10.0] "Eine Genie! Seine Matches gegen Quackenbush sind einige der Besten europäischen Kämpfe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Mizisawesomewrote on 31.12.2010:[10.0] "Wrestling in Perfektion. Sehe mir sehr gern seine Matches an. Eine echte Inspiration."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: The Showstopperwrote on 13.11.2010:[10.0] "Wer 52 Jahre lang im Geschäft aktiv ist (natürlich mit der längeren "Pause") und es am Ende immer noch schafft, unterhaltsame Matches und für sein Alter beeindruckende Aktionen zu zeigen, der hat nichts anderes als die Höchstnote verdient. Johnny Saint kann mit seinem aktuellen Repertoire immer noch so manchen jüngeren Wrestler alt aussehen lassen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Denzwrote on 08.05.2010:[10.0] "Ich bin durch Johnny Saint auf Chikara Wrestling gekommen und sah, was er in diesem hohen Alter noch drauf hat, wie zum Beispiel über Wrestler wie Dave Taylor springen kann. Dazu haben seine Moves den feinen britischen Stil, was mir sehr gefällt. Meiner Meinung nach nicht nur eine Legende in England, sondern Weltweit. 10 wohlverdiente Punkte für Johnny Saint."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Hennewrote on 09.04.2010:[8.0] "War sicherlich zu seiner Hochzeit ein guter, was ich von ihm in den letzten Jahren (wXw, CHIKARA) gesehen habe, fand ich allerdings ziemlich langweilig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: TheUndertakerwrote on 07.03.2010:"Der Kerl bestreitet mit knapp SIEBZIG Jahren noch Wrestling Matches? Und das anscheinend noch gute? DAMN! Keine Bewertung da von ihm noch nichts gesehen."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Obermackerwrote on 15.02.2010:[7.0] "Der Catchopa hat echt ein paar feine chain-wrestling-aktionen drauf, Konter, die man heute nicht mehr oft sieht. Aber jedermann da draussen weiß, daß Johnny Saint nach ner fetten clothesline nie wieder aufstehen würde. Aus Respekt vorm Alter laß ich mich doch noch zu 7 Punkten hinreißen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Aquifelwrote on 08.02.2010:[10.0] "Ich habe zwar noch nicht so viel von ihm gesehen, aber sein technisches Können, das immer auch einen gewisse "Freude am Wrestling" versprüht, kann man nicht verkennen. Und dass der Mann das mit fast 70 immer noch so präzise durchführen kann... unglaublich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: THE GAME 4-EVERwrote on 21.12.2009:[10.0] "Sowohl in den 70ern, 80ern, 90ern und diesem Jahrtausend der beste Purewrestler von der Insel. World of Sports ist unglaublich und dieser Mann ist ein Grund dafür. Selten ach Niemals jemanden gesehen der so technisch begabt war!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: StefanKwrote on 03.12.2009:[10.0] "Er ist d e r Techniker. Mit seinen nun schon 67 Jahren zeigt er allen noch, was man als Techniker drauf haben sollte. Hochachtung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: BenZenwrote on 17.11.2009:[8.0] "Macht sehr viel Spass ihm zuzusehen und hat zudem noch eine grundsympathische Aura. Unglaublich was der in einem so hohen Alter noch an Leistung abrufen kann. Sein Stil ist halt sehr speziell, aber darin ist er weltklasse."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Eddiewrote on 02.06.2009:[10.0] "Wrestlinglegende hier in Europa, und das was er gegen Quack heute immer nocht zeigt, dem gebührt Respekt, 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Mick Funkwrote on 16.05.2009:[9.0] "Ich gebe zu, ich kenne nur sein Match vom Carat, aber wenn er in dem Alter noch so stark ist, muss er früher unfassbar gewesen sein. Zudem eine sehr sympathische Ausstrahlung. Den Stil kann man sich sicher nicht ewig geben, aber extrem unterhaltsam ist er schon."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Excellence of Executionwrote on 13.01.2009:[10.0] "Sein Stil ist/war in der Tat sehr exzentrisch und insofern nicht jedermanns Sache. Aber meine Sache ist es auf jeden Fall! Johnny Saint's technische Extravaganz ist wirklich Klasse. Ich habe auch einige seiner Matches aus jüngeren Tagen gesehen. Ganz großes Tennis^^!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Brainbreakerwrote on 26.09.2008:[9.0] "Sein Gentelman-Wrestling ist heute definitiv nicht mehr Main-Stream-würdig, aber für die Smartmarks immer noch unterhaltsam anzuschauen. Auch ich lass mich von seiner Konterkunst gerne ne gewisse Zeit begeistern, auf die Dauer wirds mir aber zu viel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: wXw Fanwrote on 25.07.2008:[10.0] "Ein Gott, alles andere als 10 Punkte sind Quatsch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Brahma Bullwrote on 19.05.2008:[7.0] "Sehr guter Mann. Technisch sicherlich top. Für eine Top-Bewertung fehlt aber das gewisse Etwas und das bringt er nicht mit."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Knurkselwrote on 13.04.2008:[10.0] "Ich war zwar nicht beim Carat gesehen, aber alles was ich bei youtube, etc. von ihm gesehen habe, rechtfertig eine 10 von 10..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: ultimativboesewrote on 30.03.2008:[10.0] "Alte Männer im Wrestling.. Ich dachte das wäre nur den Nostalgieeffekt gut.. Aber wie der Kerl im Ring abgeht ist absolut krass *_*"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Mediwrote on 26.03.2008:[10.0] "Verflucht war ich skeptisch gegenüber ihn zu sehen. Aber ich muss sagen: Verdammt noch eins, ich war kaum so froh mich geirrt zu haben. Technik für solch einen Menschen ist echt unglaublich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Ibanezwrote on 19.03.2008:[10.0] "Einer der Größten, die dieses Business je gesehen hat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Beckswrote on 11.03.2008:[10.0] "HOLY SHIT! Was war das bitte am Samstag gegen Mike Quakenbush? Ich hätte mir auch noch weitere 2-3 Runden anschauen können, es hat einfach Spass gemacht, wie ein 65 Jähriger so eine Technik noch drauf hat. Thank you Johnny Saint, this is Wrestling! 10 Punkte, was anderes kann es fast schon gar nicht für diesen genialen Mann geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Sabu316wrote on 11.03.2008:[10.0] "Geht auf die 70 zu und bringt im Ring mehr als 90% der jungen Leute. Genial der Mann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Soerenwrote on 10.03.2008:[10.0] "Kann hier keine andere Note geben. 10 Punkte, unglaublich der Herr!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Kruemelwrote on 10.03.2008:[10.0] "Für dieses Alter einfach phänomenal. NIE im Leben gedacht, dass er noch so gut ist. Gott Charisma, wahnsinns Konter. Eine Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: FiveStarwrote on 09.03.2008:[10.0] "Einfach eine wahre Legende des puren, technischen Wrestling :) Sein Auftritt gestern in Essen war unvergesslich. Johnny Saint gehört mit Abstand zu den besten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Willie 19200wrote on 10.11.2024:[10.0] "Akiyama is the 5th pillar and honestly I'd put him over Akira Taue. His matches with the rest of the pillars were amazing and he always put on great matches in AJPW and NOAH. Although he's in his 50s he can still have amazing showings against people like Eddie Kingston, Bryan Danielson, and many others. His 30+ years of wrestling have been amazing and he's nothing but expiring for pro-wrestlers today and the future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Brando Calrissianwrote on 02.11.2024:[10.0] "Akiyama is somebody who I feel like doesn't get as much love as the Four Pillars of Heaven. To me, Akiyama is the unofficial 5th pillar. His very long tenured career packed full of incredible matches puts him up there as one of the best. Even today, after 30+ years of wrestling an incredibly physical style with devastating matches, he can still go out there and have great showings against people like Eddie Kingston and Bryan Danielson and Atsushi Kotoge and all of the tag matches he primarily wrestles in I guess to protect him from his shortcomings. But even then, Akiyama can hit just as hard and take just as much punishment as the younger stars and it just adds to his mythos"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Zak22wrote on 15.09.2024:[9.0] "Only familiar with him in his original All Japan run and early NOAH, and to say the least he was absolutely incredible at that time. Akiyama was explosive, exciting and hard hitting, his matches with the four pillars were usually incredible. He was a top guy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: woolyshamblerwrote on 21.07.2024:[9.0] "better than all of the AJPW pillars except for kobashi, especially considering his longevity and consistency. love you uncle jun!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: JediSaiyanMaster1203wrote on 04.07.2024:[10.0] "Whenever the discussion of wrestlers who have had the best rookie year, many argue the likes of Kurt Angle and Brock Lesnar, but the real ones will also throw in Jun Akiyama among those men and argue they're just as good as the rest, or even better. While I don't know who to choose personally who had the best rookie year, so I won't answer that question, but I can totally see why someone would choose Jun Akiyama. Seriously, the fact that this man was able to skyrocket to the top in less than 5 years of his career and showcase that he could hang with All Japan's Four Pillars of Heaven is hard to comprehend, he could even be argued for the greatest underdog in professional wrestling once AJPW stopped making him the fall guy in tag matches. Then he would go on to be a more experienced wrestler by the time he wrestled in NOAH, having amazing matches with everyone from the former AJPW guys like Kobashi to NOAH guys like KENTA, he truly came into his own in NOAH if you ask me. Then he goes on to wrestle for DDT where he's the veteran that all the young guys have to truly push themselves to beat him and showcase how good they are since Jun is the measuring stick for the company. Whatever role he has in a company, he's played them all super well, it amazes me how this man is still going and has the ability to wrestle at the age of 54. Overall, Jun Akiyama is one of the greatest professional wrestlers of all time who's showcased he can be a great tag team specialist and solo competitor, a true legend in this profession we all love."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: LaBelle24wrote on 27.05.2023:[10.0] "Maybe the greatest to ever do it! Whether he was working as the fiery underdog during his days in All Japan, the mature and experienced fighter in NOAH and around Japanese wrestling in the 2000s, or now as the veteran gatekeeper of DDT, he's always found a way to consistently put on incredible matches and tell stories in the ring. He's underrated because even those who know him and sing his praises may not fully appreciate how good he was during his career. His match with Shibata is one of the best I've ever seen, and he's had classics with just about anybody he faced."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: benh2wrote on 11.01.2023:[9.0] "A fantastic wrestler. He had some vicious offence and his late 90's AJPW and subsequent NOAH work was amazing. Even in his 50's he's still smoother than most."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: GriffinXwrote on 12.02.2022:[10.0] "Still one of the very best to ever do. He's slowed a bit but not shocking given how old he is and how long he's been active. His run in DDT has been great as he showed he can still put on a high level match when he needs to."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: NikoKillbainwrote on 30.12.2021:[7.0] "Didn't think I'd enjoy his veteran gatekeeper role in DDT but it's actually been very good. His title win vs Endo remains one of my favourite DDT matches this year, but his defenses against Higuchi and HARASHIMA didn't do enough for me. His matches with Takeshita (KO-D Openweight and KO-D Tag) were both very good, and his tournament appearances were solid (Ultimate Tag League especially). Looking forward to his guiding role with Endo."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: benny5bellyswrote on 03.12.2021:[10.0] "One of the best yet still underrated wrestlers of all time. The fact he is still so good in 2021 despite the unbelievable miles on the clock is mind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Lalo Camposwrote on 22.11.2021:[10.0] "One of the geatest wrestlers of all time, and one of the greatest veterans of all time, his stuff in AJPW, NOAH and DDT are legendary"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Hawksrule996wrote on 14.05.2021:[10.0] "I did it watch much of his early work obviously I heard about but never saw it and then he comes to DDT at 50 years of age and I tried to keep my expectations low and I thought he would not be the guy he used to be but I was shocked at how good he still is a little slower maybe but still just as effective I. The ring the matches he has had speak for themselves with the match against Takeshita being the best of them so far"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Kungwrote on 13.04.2021:[10.0] "I'm pretty sure I don't need to explain why Jun Akiyama is one of the best Japanese wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: ProWrestlingGuy316wrote on 30.03.2021:[10.0] "Akiyama ist für mich neben Kensuke Sasaki eine der japanischen Legenden, die sehr stark unter Wert verkauft werden. Konnte seine Klasse in mehreren Dekaden unter Beweis stellen und liefert auch im Jahr 2021 auf hohem Niveau ab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: pierreMinnewrote on 14.02.2021:[10.0] "This guy is just a living legend. He was and he is one of the bests in the world. At 51 years old, he stills do enormous performance, like against Takeshita at Ultimate Party 2020 or against Endo at Kawasaki Strong 2021. Awesome wrestler, from the beginning of his career to the end, Jun Akiyama is fantastic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Ma Stump Pullerwrote on 20.12.2020:[9.0] "A brilliant technical wrestler that was only really hindered booking wise by the fact that he was around when some of the greatest to ever enter a ring in general were also at their top. Akiyama came in as basically a super rookie and very quickly got recognized as a phenomenal natural talent, a guy whom could innovate pretty well with young guys like him or with the major league stars. I did always find him awkward for the first few years in terms of his striking and pacing but he eventually found a niche in a lot of varied knee strikes and attacks. A great heel in his later years but is underrated as a underdog face during those rookie years: his selling was really on top form for those. Ultimately what hurt Akiyama the most was that he just was always booked as the B guy when it mattered, nearly always coming up short in the top title bouts with Misawa and co, and the crowd just couldn't connect with a guy who always choked like him. Having Akiyama lose to guys like Ogawa within five minutes was just bad booking. Regardless, the guy's still a legendary quality workhouse, a killer heel that could just wreck a guy in the ring without a single sign of restraint. I don't get the argument that he didn't have charisma considering he got some amazing crowd reactions from both sides of the coin either: guy could have been a main event star if the whole AJPW/NOAH spilt nonsense and Motoko Baba always lowballing him never happened. Undoubtfully a legend of the ring regardless."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: ElPolloLocowrote on 05.10.2020:[9.0] "The best heel to have come out of Japan, period, and one of the top ten heels of all the history of pro-wrestling. In a way he is a throwback to the glory days of lucha libre when heels were supposed not merely to be the bad guys, but great workers as well: Akiyama in full "killer mode" was a true marvel to behold because he was not just so good in the ring, and outside of it, but looked downright scary. You know, with people like Minoru Suzuki you just know they are playing the part of the psychopath well. Akiyama trascended that and just looked like something had really snapped inside him and he just wanted to hurt his rival, badly, giving him superhuman skills and reflexes. Amazing and incredible: basically a Fujiwara on steroids. The only problem I have with him is his tenure as AJPW promoter that largely coincided with what are arguably the promotion's darkest days and he carries his fair share of the blame."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Jetlagwrote on 02.09.2020:[10.0] "Akiyama wurde gerne als Enttäuschung verschrieen, da seine Big Match-Führung in seiner Prime nicht mit Misawa und Konsorten mithalten konnte. Dass er jedoch bereits ab 1996 in einigen der besten Matches aller Zeiten stand steht jedoch für sich. Ab 2000 etablierte sich Akiyama dann doch zum Heavyweight in der obersten Riege mit sehr vielseitigen Matches, der das Niveau verdammt lange halten konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: PuroresuLoverwrote on 14.05.2019:[10.0] "Jun Akiyama is one of the greatest, no wonder why he is one of my favorites of all time. His matches against Kobashi and Marufuji are on another level that normal human beings can't comprehend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: RatingsMachinewrote on 22.09.2018:[8.0] "Akiyama was a really good worker, sometimes great, and it's a shame that he didn't have the charisma to connect with the fans in a manner that would have allowed him to carry a promotion."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: jamzell00wrote on 17.08.2018:[10.0] "Still the fucking man. Jun had arguably the greatest rookie year in wrestling history and even in 2018 he's still one of the best in the world. Jun is a grumpy old man nowadays and it translates over into his matches where he beats the life out of everyone. Greatest examples of this are his matches against Miyahara and Marufuji where he hates the fact they're alive."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: taabr2wrote on 12.09.2017:[9.0] "Considerred by some as the unoffical "fifth" pillar during the awesomeness that was AJPW in the 90s, Akiyama is undoubtably a great wrestler. I just don't think that he was on the same level as the four pillars though (yes, even Taue)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Blood Pumpwrote on 07.04.2017:[9.0] "#4 as far as the greatest of the 90s AJPW alumni is concerned behind Kobashi, Misawa & Kawada. Jun was perhaps the most intense of the pack and easily the most versatile, but I feel with his versatility he sacrifices some of the crowd connect-ability that the other three have in some way or shape. As they say, less is more, but he isn't hampered too badly by it. His work in NOAH is arguably just as good as his work in All Japan."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Luv all wrestlingwrote on 03.09.2016:[10.0] "When he was younger, he was amazing, as a older vet he put on classics, and as an old grizzled man he has crazy harf hitting matches and has put over the new generation of AJPW while also keeping himself a relevant power player."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: richeyedwardswrote on 16.03.2016:[10.0] "One of the very best, so many great matches and one of the best faces in peril ever. Despite he was not a member of the four pillars he was integral to the second half of the 90s and the early years of noah."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: TrevPuroFanwrote on 18.11.2015:[10.0] "Not giving Jun Akiyama the full ten points is criminal imo. The guy is basically the greatest ring technician to come out of Japan, and has a number of classics on his name. Even in 2015 he's still going at the age of 46. Jun is amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: eldenaaaaawrote on 02.09.2014:[10.0] "The master of the Exploder Suplex, and one of those wrestlers that don't need a lot of moves for doing great matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Matzinhowrote on 12.08.2014:[10.0] "Einer der konstantesten Typen im business, dazu bei seinen zahllosen Wurf-Variationen mit einer wahnsinnigen Explosivität und Wucht gesegnet. Wenn Akiyama in einem Einzelkampf steht ist der Gegner fast egal - der zieht jeden zu einem guten Kampf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Kenshin Uesugiwrote on 27.03.2013:[8.0] "Tot gesagt leben länger, nach dem langem Formtief kommt nun doch der sehnsüchtig erwartete zweite Frühling! Das Akiyama es im Inneren immer noch drauf hatte wusste man ja, da er ab und zu noch glänzte. Aber seit dem er Triple Crown Champ wurde ist er wieder da, der Mann der als junger Kerl am liebsten gleich ohne Angst sich mit Kawada strikte, der ohne Furcht auf Misawa losging, der immer wieder von Taue brutal umgeknietet wurde nur um schmerzverzehrt auf zu stehen und ihn mit einem Expolder auf die Matte zu donnern. Jener Wrestler der bei NOAH, einst wie bei Kawada und Misawa, Kobashi wie einer vom Teufel getriebener hinterjagt um ihm endlich zu bezwingen. Akiyama hat seine alte Klasse zurück und so macht es Spaß ihm zu sehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Serif3289wrote on 24.01.2013:"new faction coming up soon with Jun Akiyama, Yoshinobu Kanemaru, Atsushi Aoki, Kotaro Suzuki & Go Shiozaki they're going to be called "Burning""
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Leonewrote on 12.09.2012:[10.0] "An incredibly good wrestler, but also quite an unlucky one in a way.  He was the youngest of the AJPW famous five in the 1990s, and unlike the other 4, he never wrestled Jumbo Tsuruta when Jumbo was in his prime.  He also didn't hold the Triple Crown until 2011, 11 years after he stopped working there full time to join NOAH.  In NOAH, he was (and is) a main-eventer - But despite being GHC champion and Triple Crown Champion, 2 of his reigns ended in less than 5 minutes, after being booked to look dominant for a number of months before that.  He is a fantastic tag team wrestler, with a number of 5-star matches to his name, and he is also an innovator, with the Exploder (T-Bone) Suplex, Wrist-Clutch Exploder Suplex and the Blue Thunder Driver being moves that he effectively created for Pro Wrestling.  With age, comes experience, and Akiyama has more experience, memorable matches and accomplishments than a lot of other 20 year careers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Phoenix Downwrote on 01.05.2011:[9.0] "All die Verletzungen, all die Schicksalsschläge und all die zermünbenden Titelverluste scheinen nichts an diesem Mann und seinen Fähigkeiten zu kratzen. Er ist immer noch eine Macht im Ring und der letzte Vertreter des klassichen Kings Road Stils. Ein großer Mann ohne Frage"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Fountain of Misinformationwrote on 26.03.2011:[8.0] "Der Lack ist inzwischen irgendwie ab und man kann sich nur verwundert die Augen reiben, was aus dem Mann geworden ist. Wo ist der Mann mit dem ewigwährenden Feuer und der grenzenlosen Leidenschaft geblieben, was ist aus dem Rookie geworden, der in jungen Jahren bereits auf der Augenhöhe mit den alten Hasen war? Vielleicht liegt es an den vielen Jahren im Geschäft und den Verletzungen? Akiyama ist heute leider nicht mehr das, was er einmal war. Edit zur Bewertung vom 22. 12. 2009: Hat definitiv sein längeres Tief überwunden und ist seit gut einem Jahr wieder obenauf."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Berlin Dragonwrote on 18.09.2010:[8.0] "Einer der großen Japans , der aber wird für mich nie mit den 4 Himmelssäulen auf einer Stufe stehen wird , unabhängig ober er nun die triple-crown holte oder nicht. Er ist , oder war , zwar einer der besten im Ring , aber wirklich überzeugt hat er mich auf Grund von mangelnder Ausstrahlung nicht zu 100% , dewegen auch ''nur'' 8 Punkte. Trotzdem hatte er eine großartige Karriere mit einigen Klassikern und ich hoffe , dass er diese bald ausklingen lässt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: RickRollwrote on 23.04.2010:[10.0] "Der beste Wrestler der nie Triple Crown Champion wurde; So könnte man Akiyama wohl am besten beschreiben. Ist im Ring wirklich ganz große klasse, konnte schon bei seinem Debüt begeistern und schon 1 jahr später war er einer der besten Wrestler im Business. Heute nicht mehr das was er früher war, ist aber auch verständlich nach all den verletzungen. Ich hoffe das Akiyama so langsam ans aufhören denkt, denn er hatte eine tolle Karriere, auch wenn der größte Championship in seiner Sammlung fehlt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: homicidal cena michaelswrote on 18.02.2010:[8.0] "Guter und konstanter Wrestler, der manchmal klasse Matches hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Mankirawrote on 13.06.2009:[10.0] "Glatte 10! Bad Ass im Ring, sehr schönes Moveset und sein No-Selling wenn Hashi und co. choppen ist göttlich. Sehe ich SEHR gerne"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: STRIGGAwrote on 02.01.2009:[6.0] "Akiyama wirkt inzwischen so, als hätte er gar keine Lust mehr, überhaupt noch in den Ring zu steigen. Somit komme ich bei ihm, trotz alter Leistungen, nicht über eine 3 hinaus."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: LexLuger4everwrote on 27.04.2008:[8.0] "Hat nie den vollen Durchbruch geschafft, obwohl viele es prophezeiten, sobald die Legenden abtreten. An guten Tagen ist er überragend, hat er aber keine Lust, hätte man sich ein Akiyama Match auch sparen können. Mit anderen Worten: Der Mann ist für mich ne Art Wundertüte, aber da das Positive in der Regel überwiegt, gibts ne 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Rancorwrote on 01.02.2008:[6.0] "Hat mich nie vollkommen überzeugen können. In den letzten Jahren in meinen Augen auch klar schlechter geworden."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: D-Stylewrote on 07.12.2007:[8.0] "NOAHs Bad Ass. Geniales No Selling (gewollt), stiffe Offensiven und schönes Moveset. Note GUT"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: SternessDustOmegawrote on 05.12.2007:[10.0] "Trotz GHC-HW Titelrun(s) noch nicht da wo er hingehört. Bisher (leider) noch nicht als Ace von NOAH etabliert, was wohl daran liegt das Misawa und Kobashi noch aktiv sind. Trotzdem: Für mich absolut überzeugend im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: dariawrote on 27.10.2007:[8.0] "einer von den japanischen Wrestlern, der mir richtig gut gefällt, Klasse-Techniker!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Carlito ICWwrote on 18.09.2007:[8.0] "Innovator of the Ecploder! Riesen Heavyweight und starker Wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: BiosJoshiBarwrote on 10.10.2024:[10.0] "Of course I'm going to give the most viral joshi a 10 everything she does is just pure gold, Stan the Popping Sugar Rabbit"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: mostlyaccuratewrote on 18.07.2024:"She is a talented wrestler that deserves more attention from people as she's so easy to get behind. She isn't perfect but definitely one of my favourite women in wrestling today"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: singlemalttheorywrote on 13.05.2024:[9.0] "Mizuki is an increible underdog babyface who makes Riho look like Dick The Bruiser. As good as she is, though, I can certainly see how even a non-Cornette fan could find her selling a bit off-putting."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: UBVenuswrote on 24.04.2024:[10.0] "Mizuki is everything a TJPW wrestler should be. The way she presents herself makes her easy to cheer for and lovable. She can get herself over, anywhere, anytime. I don't think I have ever seen a Mizuki hater besides keemstar lame ass. Her in ring ability sets her far above the rest of the roster with her incredibly flashy but effective moves she seems to hit with ease. Her bubbly personality and in ring work create the closest thing to a masterpiece. She truly is amazing dude. Cannot wait to see her in another title picture, because she deserves it more than anyone else!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: teenagehonvedfanwrote on 24.12.2023:[9.0] "The fact that TJPW do not seem to trust her despite her matches being solid and her being over with home Japanese crowds as hell baffles me."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: MVCfanwrote on 22.12.2023:[8.0] "On a technical level, she is lacking, yes, but she in a smaller promotion he has no wider impact on wrestling culture in Japan or the wider world. This being said, she is a credit to her coaches. 10 is a bit high because her output is hurt by booking. Yes, this true she in her prime her coach or two of them attest were having 1520 matches when each of them were in their primes weather tag or singles. Its startling to spin that way for her but now Yuka is gone i hope she still gets this to get more Ring time like her coaches in their own prime days 7.6/10 will mistlike go up but never to 10 sicne. As much as i like her she will never be a possible GOAT level GAL."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: skillgullwrote on 11.12.2023:[10.0] "After starting to watch TJPW she has quickly become one of my favourite wrestler to watch currently. Due to her ridiculous size difference and overall likeability, she makes you want to cheer for her no matter what. Her selling is immaculate and aided by her lack of size, this leads to every move she takes looking like it could kill her, particularly against large opponents. Awesome, one of the best of TJPW"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: robvanspunkmeyerwrote on 05.08.2023:[10.0] "Please note that this is my first rating for a wrestler. I simply do this to show appreciation to world's finest female. She was the best in 2022 and most likely is in 2023. Excellent matches at least since the Reika Saiki title fight in 2017. Eternal underdog character due absurdly small size, yet never unbelievable fighter. A beacon fo positivity and humor. Incredible agility, incredible finishers and signature moves in Cutie Special and Whirling Candy. A perfect piece in the TJPW puzzle!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: Kamilahclanwrote on 24.05.2023:[7.0] "A very fun wrestler to watch that is also very easy to root for and has an exciting moveset. She's cool."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: twilightdreamwrote on 07.05.2023:[10.0] "Excellent wrestler and storyteller in the ring. Mizuki is my favorite in TJPW. I hope they book her title reign well because she deserves it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: velwrote on 27.04.2023:[9.0] "Mizuki keeps on impressing against all odds. Being so light, she manages to make her attacks look so impactfull. Ad still she has the most spectacular arsenal in Tokyo Joshi. Really happy her work paid off, as she is the last of TJPW bigest stars to get the PuriPuri title."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: benny5bellyswrote on 06.04.2023:[9.0] "My current favourite wrestler in TJPW. She pretty much always delivers to a very high level for a modern joshi"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: wrestlejackalwrote on 01.04.2023:[10.0] "Mizuki is probably my favourite wrestler right now across any promotion. When I was introduced to her in 2018 when she first won the Princess Tag Team Championship with Yuka Sakazaki (as Magical Sugar Rabbits), I was enamoured. She wrestles with great fluidity, and brings a lot of passion to the ring every match. Her bridge when performing the Cutie Special is top notch, and Whirling Candy is easily in the top 5 of best current wrestling maneuvers. Always a joy to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: DCitywrote on 05.01.2023:[10.0] "Mizuki's tag team partnership with Yuka Sakazaki needs little introduction; the Magical Sugar Rabbits have great chemistry and never fail to put on a show. Mizuki herself is an absolute workhorse, the kind of wrestler who feels like they can get a good match out of anyone. She's very charismatic and has a great array of moves - She doesn't break out her signature 'Whirling Candy' very often but it's always special when she does. That move defies belief and I still can't figure out exactly how she does it even when watching slowed-down footage. Ring psychology is another strong point of hers; Mizuki is excellent at telling her story in her matches as momentum shifts back and forth, her selling is so good that you never know with certainty who's going to win, even when the victor is a foregone conclusion on paper. This is the kind of wrestler that any promotion would die for. Mizuki consistently delivers on everything you would ever want from a performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: GriffinXwrote on 30.01.2022:[9.0] "Mizuki is a joy to watch in the ring she is so smooth and near perfect with everything she does. She rally does feel like she can be the top name in TJPW at some point"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: Lalo Camposwrote on 22.11.2021:[9.0] "A very good wrestler, one of the best wrestlers of the TJPW roster right now and her team with Yuka Sakazaki is really good to watch"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: jubileewrote on 18.08.2021:[10.0] "Whirling Candy is a sight to behold. But even beyond that she has so much to offer as a singles and tag wrestler. I think in time she will be a big singles star, she's certainly already on the road to that now and has only been getting better each year. Her match against her partner Yuka Sakazaki was overlooked as one of the best matches of last year."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: automaticawrote on 06.05.2021:[10.0] "She has the best move in all of wrestling right now with Whirling Candy and her tag team with Yuka is one of the best in the world today. Someday she'll get that singles title reign."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: Kungwrote on 28.04.2021:[8.0] "Mizuki was actually one of the wrestlers who helped me get into TJPW. She's always had this indescribable quality that makes her an intriguing performer to watch on every show. While she's maybe not the greatest singles competitor, she more than makes up for it in the tag team division. In Tokyo Joshi alone, she's been a part of two quintessential tag teams, one with Maki Itoh and the other with Yuka Sakazaki. All and all, I think Mizuki is a great performer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: Grissomwrote on 20.04.2021:[9.0] "Mizuki ist einfach großartig und ein der Aushängeschilder von TJPW. Sehr sympathisch aber auch ziemlich evil wenn sich die Gelegenheit ergibt. Im Ring eine der besten des Rosters und auch speziell im Tag Team mit Yuka Sakazaki als die Magical Sugar Rabbits immer ein Highlight jeder Tokyo Joshi Show. Ihr Title Match gegen Yuka Sakazaki zählt wohl bis dato zum besten Match der Liga."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: nWo-Joshi-Guywrote on 06.04.2021:[10.0] "Originally I did not particularly like her, that changed very quickly though after seeing her about two times; she is amazing. Mizuki may not be 10/10 in terms of wrestling ability alone, even though she is very good, but professional wrestling is of course just as much about gimmick/character work; in which she excels. She is very entertaining and some of her moves, such as the Whirling Candy, are amazing. She is great at selling as well; sometimes it looks like she has instantly collapsed/become lifeless. Her matches with Yuka were fantastic and I think it was kind of a shame she didn't dethrone her."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: laldilawrote on 13.01.2021:[6.0] "I have never quite been able to get into Mizuki's work. She's got a very remarkable career so far and almost definitely has more accolades in store for her, but I don't find her matches to be as interesting as some of the other wrestlers in the company nor is her character work or gimmick as memorable (again, especially compared to other people in the company. )"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: Yapperman3wrote on 28.08.2019:[10.0] "the popping sugar rabbit is a very versatile wrestler not too dissimilar to your fast devil types like Riho or Tsukushi. Excellent in both single or tag settings and also has long queues for her autographs"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: zacharymahabirwrote on 10.02.2025:[10.0] "This dude has everything. And the natural charm, to boot. He should win a Noble Prize in the category of "big pretty boy fucker who wrestles well". In all seriousness, I love his speed in conjunction with his offense. So much potential to do a lot in the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: 77mega6wrote on 19.01.2025:[10.0] "Konosuke Takeshita is the type of wrestler who doesn't just perform--he transcends. Every time he steps into the ring, it feels like you're watching something special, as if he was born to do this. The combination of power, agility, and technique he brings is breathtaking, and his adaptability makes him a standout no matter the opponent. What's so impressive about Takeshita is how he blends raw athleticism with deep storytelling. He can hit you with suplexes and strikes that look like they'd knock out a bull, then seamlessly shift into chain wrestling that feels like an art form. He's a throwback to the best of puroresu, but he also fits perfectly into today's global wrestling landscape. Takeshita has this uncanny ability to connect with the crowd, whether he's playing the underdog, standing toe-to-toe with legends, or delivering epic heel moments. His passion is contagious--you can see it in his eyes, his movements, and the way he treats every match like it's the biggest stage. And let's not forget that blue thunder bomb--every time he nails it, the crowd goes wild. It's rare to see someone so young carry themselves like a veteran, but Takeshita already feels like a generational talent. He's not just a future world champion; he's a cornerstone of wherever he wrestles. Watching him rise is like being in the front row of history, and it's exciting to think about where he'll go next. If you're not a fan yet, trust me--it's only a matter of time. Konosuke Takeshita isn't just good. He's the kind of great that makes you remember why you fell in love with wrestling in the first place."**"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Lukeathonwrote on 13.01.2025:[9.0] "What a wrestler. I don't think so far I've seen a Takeshita match and it's let me down, 9 times out of 10 it always exceeds expectations, he's a genuine machine of a wrestler and I like that he's managed by Don Callis as a mouthpiece, but I think that could be built upon more, have Callis himself be scared of Konosuke to build up his character as much as you can, there's potential for Takeshita to become a major success in the American market provided he is booked right, which is not something most male wrestlers from Japan can say, sky's the limit for him and I hope he hits all the heights possible."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: NothingGreatAboutwrote on 12.01.2025:[9.0] "Takeshita è uno dei wrestler del panorama attuale che mi diverto di più a guardare. Ha un ottima presenza sul ring e sa fare tanti tipi di incontri diversi, la sua offensiva è estremamente credibile e quando lo vedi nella card sei abbastanza sicuro che sarà lo show stealer. Aspetto a dargli dieci perché può ancora fare una run da face davvero incredibile."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: SpectorLKMwrote on 12.01.2025:[10.0] "I asked myself a question today, who is my favorite wrestler? It's Takeshita. At his best, one of the most fun, if not the most fun wrestler to watch in the world. His match with Ishii from Dynasty is amazing and that match with ELP, that is out of this world good. The Ospreay match oh my god the Ospreay match bangs so hard. When he is at his best, no one gets me on my feet like Konosuke Takeshita, whether its those german suplexs, that raging fire, the catching Blue Thunder Bomb, OR THOSE FUCKING CATACLYSMIC FOREARM STRIKES, this man does it all so well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: suNnwrote on 11.01.2025:[10.0] "After Konosuke's showing in the 2024 G1 Climax, and stellar post-G1 performances against Mortos, Mike Bailey, Josh Alexander, Ricochet, Hobbs, Ishii and Shingo Takagi; I'm willing to admit that Takeshita is currently the greatest active talent going right now. He's a total package that can do it all. A multi-champion for a reason."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: MEDaminewrote on 05.01.2025:[10.0] "What a star, he's currently one of my favorites in AEW, one of the best wrestlers in the world in the ring + incredibly charismatic, a future world champion, and it should happen few months after he loses the International title"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: justwrestlingwrote on 05.01.2025:[10.0] "Need AEW to keep pushing this beast. One of the best wrestlers on the roster and has incredible charisma. Want to see him be an AEW World Champion in the future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: NickGHCwrote on 05.01.2025:[10.0] "Future world champion for sure. Incredible athleticism and charisma. This was HIS summer with an incredible run on G1 climax 34!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: LGL19wrote on 27.12.2024:[10.0] "One of the very best in the world today. Never has a bad match and one of my favourite's to watch. Truly a generational talent, hope he gets a world title run soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: TheNomadMagicianwrote on 21.12.2024:[6.0] "Wrestlerisch gut, Charisma beschränkt vorhanden und keine Promoskills. Ich gucke genrell kein japanisches Wrestling, bei AEW konnte er mit starken Matches überzeugen, darüber hinaus wirds schwierig. Man sieht ihn nicht jede Woche, was für einen Champion schon kritisch wird."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Oldboywrldwrote on 15.12.2024:"[10.0] this guy is crazy talented he have it factor in him he can win it all in njpw just imagen him vs okada our tanahashi our naito in 40 min match in wk mainevent our him wining g1 climax hes not belong in usa save this guy he can be a goat for him self."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: JuanLocowrote on 14.12.2024:[8.0] "The guy is very good, but it will be difficult for him in the United States because he doesn't know the language, but I wouldn't mind seeing him as world champion. If one day he signs with NJPW, he will easily be their new superstar."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: V0icesAreLouderwrote on 08.12.2024:[10.0] "I think he is a top 3 wrestler in world that hasn't be presented as such ETC: Needing to cheat against a returning Adam Cole and needing to cheat to beat Ospreay. I get the reasons but I think a guy as good as him shouldn't need to. He definitely needs better booking and should presented like Gunther."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: LJAwesome 03wrote on 25.11.2024:[9.0] "Takeshita lives by the moniker of "The Alpha"! He's such a beast with so much experience under his belt starting at a 16 years to still being a top-tier performer at 29 years old and he's career is only blossoming further as he continues! He's a perfect embodiment of high-flyer, technician, & striker all rolled into one and doesn't seem to be slacking in any of his matches pulling off such eye-catching moves like his signature Blue Thunder Bomb! I'll continue to be impressed by Takeshita as he's longevity for wrestling will be in his favor!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Warriorheart12wrote on 18.11.2024:"Konosuke Takeshita ist derzeit mein absoluter Lieblingswrestler! Seine Glaubwürdigkeit wird nur noch von seinen Aktionen überstrahlt. Die Frequenz seiner Top Leistungen sucht in diesem Jahr wirklich seines gleichen. Seine Entwicklung schreitet stets Vorrang und ich bin gespannt auf alles weitere!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: SoaKaswrote on 09.11.2024:[10.0] "Really good but I'm not seeing what everybody else sees. I don't know what it is but I can't compare him to a young Ibushi or even Okada as some people have done in the past. He's definitely a good act but he has yet to impress me. EDIT: His matches with Ospreay and MJF in particular have impressed me. And his G1 run solidifies the thought that he's an incredible talent that sadly is in the wrong company."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Dweeeabwrote on 27.10.2024:[10.0] "The best wrestler in the world right now imo.Takeshita can absolutely do it all, technical exchanges, high flying spots, insane back and forth sequences & even comedy. I believe you can find amazing matches from every year in his career (yes even the beginning) but the run he has been on from 2023-2024 he has been on an insane level. Every match he has I seek out and Im not disappointed, he was even the standout in the g1 this year having amazing match after amazing match. I cant wait to see more and more matches from him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: thedr7qwrote on 20.10.2024:[10.0] "I enjoyed his work as a Japanese babyface when he first joined AEW. Incredibly hard hitting and athletic wrestler. I would have rated him an 8/10. But as a heel? He is such a natural heel, especially against highflyers. He comes across as a hard-hitting beast. One of my favorite wrestlers in the world right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: CatchCaro22wrote on 17.10.2024:"This guy has it allcharisma, technical skill, and raw power. He can adapt to any style and has the potential to be a world champion in a major promotion. After an impressive G1 performance with a five-star match, he's proven himself as one of the best in the world. A 10/10 talent with the chance to become the biggest Japanese wrestler in North America someday."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: GreatAetherBosswrote on 17.10.2024:[10.0] "Face, heel, tweener, whatever he does he makes it gold. Takeshita quickly became a pillar of the future of the company and anywhere he goes he makes magic happen. Can do just about anything you could imagine, and the excitement in each match he's in always pays off. He genuinely deserves a shout in the conversation of being the best in the world today, and I won't be surprised if that timeframe of debate largely widens in the coming years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Vortex434wrote on 16.10.2024:[10.0] "There's been a lot of talk about certain people being the best wrestlers in the world and this man should be in that conversation he has star written all over in all caps no less, he's got the size, agility, moveset and just exudes charisma and yet he's still only 28 years old, I remember when he first turned heel in aew Don callis proclaimed him the best Japanese wrestler claiming that he was better than okada, tanahashi, mutoh and many others quite frankly I think when it's all said and done he might be mentioned in the same breath as them if not eclipse some of them. Everything this man does is pure gold his moveset isn't exactly the fanciest in the world but dammit he makes them look like they are! his arching German suplex is the best around without a doubt and he even makes you slightly believe that his blue thunder bombs could very much end a match just because of how beautiful they are despite how many times they've been kicked out of. If this year comes to an end without Takeshita as international champion then something is wrong with the world. Edit: months after I initially rated Take a 10 he has finally won the international championship and I couldn't be any happier for him he absolutely deserves it, this man is a freaking beast his striking ability is second to none and for my money now that Danielson is semi-retired he is the single best rope to rope wrestler in the world yes better than Osprey better than ZSJ and better than freaking Okada and if it weren't for Jay white he would be my personal favorite active wrestler today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: NoaHS106wrote on 16.10.2024:[9.0] "Einer meiner Lieblings Wrestler, sehr stark im Ring, hat seit seinem Heel Turn eine Ausstrahlung wie kaum ein anderer und auch einen sehr guten Look. Freue mich auf seine Zukunft und ich hoffe er wird gut eingesetzt um es irgendwann ich den Main Event zu schaffen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: RaysBruwrote on 27.09.2024:[9.0] "Booking limits him, despite being one of the best young wrestlers today. Currently, they're teasing a match with Ospreay, which should give him a title run until the world title picture becomes available to him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: jsbortswrote on 08.09.2024:[10.0] "This guy has everything. He oozes charisma, he's a technician when he needs to be, a powerhouse when he needs to be, and truly can do it all. He needs to be a world champion some day in a major promotion and has a chance to be the biggest Japanese professional wrestler ever in North America some day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: ThatHouseCDNwrote on 05.09.2024:[10.0] "This year is the big year where Takeshita makes a ton of moves forward. I can see him and Osprey feuding near the end of the year with the Callis feud brewing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Lord AdGnalDivwrote on 26.08.2024:[10.0] "Last year I called Gabe Kidd the MVP of the G1 and gave him a 9 with the promise to upgrade that to a 10 once he had some five-star matches. Konosuke Takeshita was, without a single doubt, the MVP of this year's G1 and he had a five-star match during the tournament. He's one of the best in the world right now. 10/10 for the former decathlete."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Orchardwrote on 09.08.2024:[10.0] "This guy is him, the alpha is gonna go down with the puro greats just needs that push to put him at the top of the card"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Willie 19200wrote on 08.08.2024:[9.0] "Terrific performer that's been held back by some just down right bad booking decisions. He is so fun to watch in-ring and I love watching him wrestle, but he just never get's put over in matches. He's doing really well in the G1 Climax this year and I hope when he returns to AEW he get's treated the way he deserves."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: BigPeanutGuywrote on 08.08.2024:[10.0] "Years of embarrassing booking is holding Takeshita back from being the best wrestler on the planet. The most consistent man by a country mile in this year's G1, an unbelievably diverse wrestler who can do whatever it is you need of him. His incredible matches against Hirooki Goto, Darby Allin, Swerve Strickland, Yuya Uemura and Yota Tsuji would be at the top of so many wrestlers catalogue for their whole career. For Takeshita? That's just 2024."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: birdmanswagwrote on 06.08.2024:[10.0] "This guy is ridiculously good at such a young age. He will go down as an all time great with the likes of Bryan Danielson imo. everything he does in the ring looks so smooth, I have yet to see a bad match from him and he might be my favorite current wrestler of any company. His match vs Ospreay is probably my favorite but I also enjoyed the MJF one on Dynamite. love his forearm/elbow strikes they look so stiff and devastating. Takeshita is just fucking awesome and any time he wrestles you should seek out his matches they are absolutely worth your time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: bigotownsendwrote on 27.07.2024:[10.0] "A future AEW World Champion, its basically impossible for Konosuke Takeshita to have a bad match and its only a matter of time before he breaks out of his current spot in the midcard and cements himself as a main eventer. Hes also had a brilliant run in the G1 Climax 34 so far. The skys the limit for Takeshita and may the Cinnabon gods shower him with endless cinnamon rolls."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Joe907wrote on 21.07.2024:[10.0] "One of the most talented wrestlers today. Height, agility, and strength he uses them to his advantage and puts on epic matches. His moveset is super good. Great abilities all-round"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: IoIyowrote on 20.07.2024:[10.0] "Has absolutely everything, absurdly appealing look combined with a crazy high workrate that makes him my bet to be the face of whichever major company he decides to spend his prime years with in the very near future"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: KingSlenderwrote on 16.07.2024:[9.0] "One of the most overwhelmingly athletic guys in the biz rn. Every move Takeshita does whether it be a German suplex, an elbow shot or a running knee has so much finesse and just plain OOMPH behind it. To me all marks of someone clearly dedicated to the craft of this sport. Sadly I think because of the language barrier he doesn't quite get the push he deserves but I think his natural ability and charisma should be able to transcend that soon and he'll start getting some real title pushes. (9/10)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: cozyheartachewrote on 01.07.2024:[10.0] "The run that Takeshita is about to go on after he turns 30, will put him in greatest of all time debates."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: PositiveMirror11wrote on 30.05.2024:"Absolutely lethal. This guy has presence. It's crazy, because I know how great he is, but I have watched wrestling so long, I forget just how IT Takeshita is. But then you watch his matches and you, mid-match, remember just how damn good and threatening he is as an opponent to any champion. Sky's the limit for him. If he can just grasp basic English, or integrate Japanese into his promos and just talk, he'll have that brand in the palm of his hand. Immensely talented."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: May11wrote on 27.05.2024:[9.0] "He is doing great work in both DDT and AEW. He is one of the best wrestler in the world right now. I dont know why AEW is not pushing him hard, he is better than half of their roster."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: WrestlingGuruwrote on 26.05.2024:[7.0] "A great in rign wrestlers, there's no denying how good Konosuke is inside the ring but I am hoping that being a aprt of the Don Callis famiyl really helps him connect to the American audience and he needs more than jsut being great in the ring to get ahead in the U.S. Rooting for him."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Rassle Fanwrote on 01.05.2024:[9.0] "If there's anything holding him back it's the language barrier but since he's had Don Callis as a mouthpiece that's not a problem. Since he's come back to AEW he's been on a completely different level. I wish the booking was more favorable to him because he's in great match after great match but keeps losing them. Eventually he's going to need a big win to avoid fan apathy. As it stands, he's still one of the best active wrestlers anywhere."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Juanca1210wrote on 09.04.2024:[10.0] "One of my favorite wrestlers in the world, and a very underrated performer, the in ring level of Takeshita and his moveset puts him among the top 10 wrestlers in the world today. April 8 of 2024. I hope that Takeshita reaches his goals in his career. AEW has a rough diamond on his roster, in the american wrestling tv shows the charisma and mic skills are more appreciated than the ring style. But I would like to see Konosuke Takeshita be succesful."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: JediSaiyanMaster1203wrote on 31.03.2024:[10.0] "No matter if he's in DDT Pro-Wrestling or All Elite Wrestling, Konosuke Takeshita is the man! He might just be the best wrestler under the age of 30, he's that good. Konosuke Takeshita is so fluent in the ring, he's so smooth with how he wrestles and moves around, the athelticism and strength he combines is amazing, how he can easily pull off moves like they're nothing never gets old to watch. He might even rival the likes of Bryan Danielson and Gunther for some of the best strikes currently, his flying knee looks so incredible everytime he hits it that I would totally be fine if he made it his finisher. I'm all fine with Don Callis being his manager, as long as he puts him over PROPERLY instead of just talking about himself. Anyways, it's nice to see Konosuke get around the language barrier and get over with the American audience, seriously, this guy is too good to be held back and not be pushed to the moon. If the cards are in his favor and with the right booking, him and Don Callis could be this generations The Great Muta & Gary Hart. Overall, incredible wrestler with amazing strength and skill, also has aura/charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: thewrestler1440wrote on 31.03.2024:[10.0] "Takeshita in the Ospreay and Omega matches was very good and I enjoy his style very much. Easily one of the best of modern times"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: SagBellywrote on 28.03.2024:[9.0] "Awesome wrestler. Great technique, fast, so strong, it's going to be a joy to see how much higher he's going to go"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Cass93wrote on 26.03.2024:[10.0] "This guy has it all, charisma, size, in-ring ability, everything he does is great, he has to be pushed to the moon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: TripleCrownwrote on 17.03.2024:[8.0] "Very, very good. I would love to rate him higher but he's still fairly young and I feel he has a lot of room to grow and become an elite wrestler. The biggest thing that stands out is his size, he's not the typical Japanese wrestler, he's fairly big and he wrestles like somebody who is a Junior Heavyweight. I really feel like he has the potential to be a 10 rating in the future, I can't wait to see how he grows in AEW and hopefully he can do some stuff in NJPW. Takeshita in a G1 Climax would be so damn fun to watch and I think it would do him good to wrestle that many matches in a short amount of time, simply due to the fact it would give him more experience. Personally, I think he's a guy who will 100% be a heel, he doesn't really have the look that could help him thrive as a babyface, unless he becomes one of those "cool" babyfaces in the future."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Wrest lingaddictionwrote on 19.02.2024:[9.0] "This man is amazing, after following his career for the past 5 years I can safely say he deserves to be a world champion. Has had amazing matches with some of the top stars in the world and is the reason I got into DDT in the first place, Takeshi is the present and future of this business. The sky's the limit for this top tier athlete!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: edmondthecat7wrote on 19.02.2024:"Takeshita is a great technical wrestler. He has beat many top stars in AEW but for some reason, he has no momentum. He is great, but his booking is weak."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: mxkamiwrote on 11.02.2024:[10.0] "If you're an AEW hater, I feel bad for ya holding that against Takeshita. I've enjoyed his work for years, where he was just a sexy guy who wrestled like a madman in DDT, to his first North American indie run where he killed it everywhere he went. Look, size, ability, moveset, in ring flow. I get it, if you take points due to him not talking a whole lot in North America. But that's why you give him a mouthpiece (even if it's currently Callous). He truly is an impressive young talent, who will continue to grow. I am terrified of what this man will be capable of when he actually hits his prime (which, during this generation of pro wrestling, seems like people don't hit until they're 37 or older)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Blakeiokwrote on 10.02.2024:[10.0] "This guy is insane! His whole AEW tenure has impressed me, especially his match with Darby Allin earlier this year and his match with Kenny Omega at All Out 2023. Amazing signing for AEW and I hope he gets a title soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: BallOfYharnamwrote on 06.02.2024:"Konosuke Takeshita is probably the most promising wrestler in the world under the age of 30. I have found his recent booking in AEW to be shocking, as theres no reason to waste his time with a faction that lost all relevancy months ago. An incredible in-ring talent and a natural babyface, Konosuke Takeshita is a world champion in the making. (9/10)"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: anonymousgmwrote on 02.02.2024:[9.0] "Konosuke is a future world champion. He has a great look, oozes natural charisma, and his moveset is top tier."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: MichaelDaviswrote on 22.01.2024:[9.0] "If all is right in the world, Konosuke Takeshita will be a world champion. The fact AEW has done little to nothing of note with him since he beat Omega twice is baffling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: UltimoMutawrote on 18.01.2024:[9.0] "My favorite match archetype right here. An underrated banger and a match I was personally waiting for all year after the Don Callis turning on Kenny Omega thing. Kenny Omega in a big match on a ppv? Consider the show stolen and give him match of the night every single time. This was a high octane match that felt like a G1 Climax encounter. Omega took some nasty bumps in this one. It's a stiff, explosive match full of high impact offense and it never slows down. Even the Don Callis interference was done well. Omega's unselfishness isn't talked about enough. Guy is always putting people over and making them look excellent while doing it. This was the biggest win of Takeshita's career and one of the best clean wins over a huge star in AEW's history. It's a shame Takeshita hasn't done much since."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: danzitorockwrote on 06.01.2024:[9.0] "Takeshita is a phenomenal athlete, the guy's ring-skill is pretty awesome, he can do it all. At a very young age, he has already shown incredible abilities, and established himself into one of the most gifted wrestlers around. The number of incredible matches he delivered at DDT is impressive."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: SockyDocky8wrote on 13.12.2023:[7.0] "Takeshita is an average wrestler at best, no doubt he deserves to be in a top promotion but he lacks the charisma to be a great wrestler. He wrestling ability is decent but he could add a bit more to his arsenal. AEW kind of pushed him to the moon with him defeating Omega but havent done anything with him since."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: skillgullwrote on 17.11.2023:[8.0] "I haven't seen any of his DDT stuff, however based off his stuff in AEW he has been really good. In ring his amazing and is naturally charismatic and suave. I can't rate him higher because of poor booking and lack of DDT knowladge."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: GoldLigerwrote on 09.09.2023:[8.0] "In all honesty, I didn't quite see the hype for Takeshita in DDT. He clearly had the physical attributes to be a higher-card singles guy and he was a solid worker, but it felt like he wasn't matching the spot he was given by DDT as their ace to succeed the likes of HARASHIMA, Ibushi, & Omega. Outside of certain matches where he gelled with his opponent and told the right story, I found his work a little underwhelming, particularly in his very inconsistent limb selling and sometimes awkward match pacing, even in shorter tournament matches. His power offense is insane and always pops me when he pulls it off, but that can't be all you bring to the table. In AEW though, I think he's much more in his element. As a fresh face on the roster he was putting in some really great sprints on TV, and turning heel with Callis gave him something of substance to work with before being "guy who has good match on Dynamite" got too stale. His style matches the faster pace of AEW's TV-focused product that usually lacks filler barring a commercial break heat segment, and very few guys (outside of masters like Danielson who've made it work) will really expose that issue with limb selling he probably still has. I think he made the right call coming to AEW from DDT, and I can see him having a great run there before eventually returning to his home promotion a changed man."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: crs285wrote on 06.08.2023:[8.0] "Takeshita is a really good talent. He had a really good run in DDT. Surprised none of the bigger Japanese companies got to him before AEW did as I think he could have been a main event player. In the ring he does everything right and I can't remember a Takeshita match I did not enjoy. He is still young and has a lot of potential. His run with Callis has been much better than his face run. Thinks he needs a manager in the US at this point in time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: deceivrwrote on 17.07.2023:[8.0] "The amount of times I laughed at him because of his name before seeing him would make me feel like Satan; I wasn't laughing by the time I saw him kick ass in 2017. For starters, Takeshita was brought up as the next big thing right from the get-go despite him having the build of a hickory stick. As soon as he bulked up and started to adapt to the conditions that he was in, Takeshita was ready for the big time. His run in DDT is, arguably, the greatest in company history; his matches with the likes of Shuji Ishikawa, Jun Akiyama, Tetsuya Endo and Kota Ibushi are some of the greatest in company history. When he signed with AEW to a dual contract, I was 50/50; were they going to make him their Okada and put him in neat spots, or would they brick them down? Thus far, we still don't know; he still is literally fresh to the fullest extent and there is no rot in this man. Right now, it seems quite neat to state that he is still the future of the business, whether it be in a positive or negative is completely up to the hands of time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: bishowrote on 24.06.2023:[10.0] "The next big thing of Japanese wrestling of course. I can imagine him being a star like Tanahashi and Okada. He has the talent of wrestling which not many have. his matches are an example of what wrestling should be. don't know if he can cut good promos or not. but when he says those Japanese short sentences on Dynamite. he looks cool and badass af. Don Callis will take care of the segments and these things. but when it comes to the in-ring work. he is one of the best today"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: incujoniwrote on 11.06.2023:[9.0] "Takeshita is a very talented wrestler, charismatic and good at selling, as well as using his size advantage. He really is an allrounder since he also moves fast as hell and does some pretty impressive stunts. His recent heel turn is pretty intriguing so I expect to see some new tricks from him and I hope AEW doesn't mess this up. Really miss him in DDT though, he was one of the stars."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: F0ZZYwrote on 21.05.2023:[8.0] "Takeshita is one of the best at his age IMO. He moves in such a versatile and quick manner that it is sometimes hard to keep up with him. He is the future of professional wrestling and should hold some kind of mid card title in the next year or two."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: CoachWwrote on 17.05.2023:[10.0] "I have a feeling we're going to look at Takeshita as one of the best in the world very soon. He's a powerhouse who moves around the ring like a lightning bolt, and he has a natural charisma that transcends the language barrier."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Leth99wrote on 17.05.2023:[7.0] "I like him, I don't think he's a 9 or an 8 though. He's a great wrestler that any company should keep close"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: nizzyhizzywrote on 10.03.2023:[10.0] "Where do I start with Takeshita. The future of the business for sure, There's nothing bad I can say about him, he's one of my favorites right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: ChrisPrattAsMariowrote on 04.03.2023:[9.0] "He is the future of AEW. Amazing babyface, phenomenal worker, and a great moveset from Takeshita. I've only seen him in AEW and his one match against Higuchi but his run has been so great so far that it makes me want to go out and see his old stuff. My favorite match of his is against Kazusada Higuchi in DDT."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Daigotsuwrote on 15.01.2023:[9.0] "Takeshita is something else. It's like watching a star in the making, a guy who has the feel of a future all-time great that you're getting to see in his prime. He's really top-tier; I would buy shows just to see Konosuke Takeshita wrestle in them. Promos? Characters? Couldn't care less. This dude is incredible in the ring and that's what I'm here to see."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Puro113wrote on 15.01.2023:[9.0] "Fantastic young wrestler with all the crucial tools needed to succeed. The former future Ace of DDT, Takeshita has made a big splash in AEW over the past year, having great matches with the likes of Claudio Castagnoli, Bryan Danielson, Mike Speedball Bailey, Eddie Kingston, Jon Moxley and others. He has an electric in-ring presence and a special connection with the crowd. This kid is the future."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: CoolKylewrote on 12.01.2023:[7.0] "Takeshita is a big deal because hes a Japanese heavyweight who is young and has a lot of time in ring already. He has some polish and technique but has not reached his full potential in many ways. Fans glob on to that. He also has an odd, relatable personality. Hes basically the next Okada in many US fans eyes, or at least should be. Takeshita always worked a very "go-go-go" style in DDT. It was normally frustrating to watch him dismiss the little things some of his opponents wanted to work into a match in order to get into a big trading spots sequence or go full steam ahead. I've liked his US work much more than his DDT work in the past 4 years or more. Dude has to tools to do anything he wants in a wrestling ring, I'm more than happy to see him wrestle different opponents and see what he ends up becoming in two or three years."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: MDavis2001wrote on 05.01.2023:[9.0] "Takeshita is the future. Smooth as butter in the ring and has a natural star aura. The sooner western fans learn that wrestlers can have "I want to be the best" as their gimmick and that mic skills don't draw like they think they do, the better. When Omega and Takeshita inevitably collide, Cagematch will feel it."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Benwerderwrote on 01.01.2023:[10.0] "Einer der besten Wrestler der Welt. Jetzt schon! Hoffe er wird ein Star bei AEW. Man muss jetzt nachdem Mox Match weiter machen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: mano007wrote on 31.12.2022:[6.0] "Good in ring talent and a star in the making. I see a young claudio in the making. Hopefully unlike claudio, he develops a promo."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: texasyoshwrote on 23.12.2022:[9.0] "In my initial rating I said that Konosuke was a star in the making. Well, he is an absolute star. Great size, great look, and a great sense in the ring. DDT and AEW have a fantastic talent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: KENTAfanwrote on 15.12.2022:[10.0] "It? s preposterous how talented this guy is. I? m just blown wwwy by him every time I see him perform. His explosiveness, fire, facial expressions, charisma, and just all around in ring IQ is off the charts. He can put on a classic whenever he wants. Would love to see him get picked up by AEW at some point or at least get a title run as he? s done a remarkable job with them lately."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Enriquepollazzowrote on 10.12.2022:[8.0] "Good matches. Very good matches in fact. There are like 160 people here rating him 10/10. That's absurd. He can be better so how is he a 10/10? He needs some character work and maybe more impact and realism on his punches and kicks. Then he can be 10/10. He's been around a year and he's 10/10? What about when he gets way better? The same rating? You see."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Wrestling Foreverwrote on 29.11.2022:[9.0] "Einfach in der USA aktuell das heißeste Eisen unfassbar wie lange seine US Tour schon geht und wo er überall auftaucht. Inzwischen gibt es auch im AEW Shop ein T-Shirt von ihm. Bei DDT ist schon unfassbar stark. Edit 29.11.2022 Riesen Gewinn für AEW das er nun unter Vertrag ist und man wird ihn sicher auch weiterhin in vielen Indy Ligen sehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: xnviuswrote on 27.11.2022:[10.0] "Takeshita's a star in the making. only 27 years old. phenomenal in-ring work. one of the best young wrestlers from Japan. just recently signed an AEW contract. and he's wholesome as fuck. how can you not love him?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: No Onewrote on 19.11.2022:[10.0] "Konosuke Takeshita is this generation's Mitsuharu Misawa. Every time I watch Konosuke's matches and I see his poise, his seriousness, the way he carries himself, and his offensive moveset (such as the Elbows & the Flying Corkscrew Lariat), I am deeply reminded of Mitsuharu Misawa. There is nothing wrong with that as Misawa was The Man. I also see Konosuke in much the same light. Konosuke Takeshita is also The Man. He is definitely one of the best professional wrestlers under the age of 30 in the world today and he has to be the very best native born Japanese wrestler under the age of 30 as well. He is also a member of 37KAMIINA, which is the most dominant faction in DDT and they somewhat remind me of The Elite. When Konosuke's career comes to a close (which is sure to be decades away), he is bound to have a jaw dropping resume of great to instant classic matches and he will have achieved a true Hall of Fame career as well. UPDATED: To see Konosuke translate so well to North American Mainstream wrestling also makes me happy, and further cements why he really is The Man. I also realized that he does remind me of the legendary Jumbo Tsuruta as well. UPDATED x2: Dude, AEW signing Konosuke is a very, very big deal. My eyes widened reading it. As of right now he is perfect for the AEW All-Atlantic Title. AEW just acquired one of the Top 2 best wrestlers under the age of 30 (the other one is none other than Will Ospreay, what a dream match that is, BTW)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: DammitChristwrote on 12.11.2022:[10.0] "I guarantee that I'll be validated by giving this guy a ten already 5-7 years from now. I've seen at least a dozen of matches from Konosuke Takeshita over the past year (in AEW), and I can already tell that he's one of the best wrestlers in the industry (or at least HIGH up there atm). Takeshita isn't even 30 years old yet, and he's had minimal exposure to a major wrestling company like AEW or NJPW too. He's only going to continue getting even better as an overall performer, which is a mindblowing but yet exciting thought since he's already tremendous enough in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Spankywrote on 26.10.2022:[10.0] "Simply put I view Takeshita as the future Okada. I do not think many will argue with me on that. He has everything you could want in a wrestler he can cut fire promos in English!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: BESTBOUTBOYwrote on 12.10.2022:[9.0] "takeshita is by far one of the most exciting wrestlers working today his recent stretch on the american indies have showcased a dynamic and charismatic performer who can have great matches with a variety of opponents such as "hangman" adam page, "taigastyle" lee moriarty and "speedball" mike bailey. on top of great fundamentals and a good moveset he also has an innate ability to get any crowd behind him. selfishly I hope that he stays in AEW and can become the star he seems destined to become at such a young age."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Kungwrote on 23.08.2022:[10.0] "He's been a 9 for a long time, but his past few months have been as good as anyone in the world. He's not just one of the best wrestlers going today, but he's also only 27! An unreal talent who is only getting better."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: eltetechoriwrote on 07.08.2022:[10.0] "Takeshita is a pure talent, a great fighter like the top of a pine tree, it is worth watching every fight of him because he always ends up showing off in his own way, I love the way he fights and I hope to see more of him in the USA in companies like AEW, he is a great one."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: totallynotjwrote on 23.07.2022:"This is a genuine star in the making here. His charisma is fresh, and almost every match of his has pretty much been a 3.5+ since coming to the US. AEW was my first introduction to this guy, and I'm beyond astonished of this guy."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: KSupreme3wrote on 21.07.2022:[10.0] "This guy is a bonafide star. There? s a aura about Takeshita that? s hard to explain. One thing I highly respect about this man is his work ethic. One day he? s wrestling at a hole in a wall, next day he? s wrestling Jon Moxley on Dynamite. If he keeps it going, he? s well on his way to become a legend someday."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: jamzell00wrote on 17.07.2022:[9.0] "Takeshita has always been great and everyone knows this but just seeing how big of a star he is in America makes me smile so much. The dude came back this year and has gotten over big in every single one of his matches. Hope this causes people to go watch his other work and just DDT as a whole"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: JustDanwrote on 14.07.2022:[10.0] "I? ve only seen him in AEW, and I get blown away a every time. He? s so good. The handful of matches hes had in AEW has made me interested and I? ll probably look out for his matches once he returns to Japan as well"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: cmalienwrote on 09.07.2022:[9.0] "Takeshita is just so great. Everything he does, the way he executes moves is so crisp and impactful. So far during his US excursion he lit the indie scene on fire and makes me go out of my way to catch his matches. I would love to see more character work from him but so far he has absolutely won me over."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Wright15wrote on 28.06.2022:[10.0] "During the five years after the departure of Omega and Ibushi from DDT, Konosuke Takeshita showed flashes of greatness and had a fair number of excellent matches, including a couple outstanding bouts. But it was not until 2021 that he really started to be awesome on a consistent basis. And by that, I mean performing at an elite level night after night, no matter where on the card he is. You might think that after his best year in 2021, he would regress a bit when on tour in America. But his campaign stateside has been even more productive than his work from last year. He is easily one of the ten best in the world today. If he were in New Japan, he would be winning the G1 and wrestling Okada in the dome. As is, he has the ability to expand DDT even further."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: AnthoTheKIDwrote on 23.06.2022:[9.0] "Takeshita is indeed "The Future". 27 years old and he has everything. The look, the size, the charisma, the moves. A very solid 9 that can be a 10 soon or later. A diamond."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Rocky7wrote on 19.05.2022:[9.0] "One of the very best young wrestlers from Japan, but rather than coming through the traditional big company dojo routes, Konosuke Takeshita was inspired by and joined DDT, following in the footsteps of his idols Kota Ibushi, Kenny Omega and El Generico. A multiple time KO-D Openweight Champion, he's done almost everything there is to do in DDT by the age of 26, and now he's starting a run in All Elite Wrestling, recently having great showings against Jay Lethal and Hangman Adam Page. He's got almost everything, great athleticism, he's tall, he's handsome, and he's already being compared to some Japanese legends. A great US run will only add to his legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: GriffinXwrote on 12.02.2022:[10.0] "An excellent work who is hitting that perfect stride. Still young he can a lot of things but now enough of a vet he knows when to save and when to fall back to something. DDT gets a bad rep just comedy. But Takeshita reminds us why it also has produced some excellent talent over the years. Frankly he just needs a big platform to show fans how good he is. Maybe he goes to AEW full time, maybe CyberFight moves him to NOAH or does more with DDT"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: NikoKillbainwrote on 01.01.2022:[10.0] "Of all the annointed aces in Japanese wrestling (Kiyomiya, Miyahara etc.), Konosuke is the most suited for the role. He's gotten so much bigger over the years, adding a power game to his agility and striking. His KO-D Tag Championship match vs Eruption was a great start to the year, but then he took off, winning three tournaments. Konosuke also had a great tag match at CyberFight, a random but good AEW appearance, and started a great KO-D Openweight Title run vs Akiyama, Brookes and Okabayashi. In most cases, people would hate one wrestler being so showered in achievement, but this is truly the age of Takeshita, and he's up to the challenge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Grissomwrote on 22.11.2021:[9.0] "Konosuke Takeshita hat sich langsam zu einen der besten Wrestlers seiner Generation gemausert. Er ist das ACE von DDT und mit 26 noch bei weitem nicht am Höhepunkt angelangt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Lalo Camposwrote on 12.11.2021:[10.0] "The Ace of DDT and he is not The Future anymore, he is The Present, "BIG LEAGUES, please sign him..." he is already in the big leagues"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Wuzong Shenwrote on 25.10.2021:[10.0] "A real genius, full of creation, always brings you surprises. The best Japanese wrestler under 30. Just think about it, he is only 26 and some of his matches have already been all-time classic. Yes, he doesn't have a charming gimmick, but you can always expect something new in his match, and he is still full of possibility."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: BlakeFR37wrote on 08.05.2021:[10.0] "BIG LEAGUES, please sign him. Gave him a persona, gave him the Title, he will and he can carry a Company. Takeshita, I love you man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: axebombertsurutawrote on 18.04.2021:[9.0] "Phenomenal ring work, one of the best workers in the world right now. Always a great match, has great potential to get over in the west."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: ExcitingProWrestlin3wrote on 16.03.2021:[10.0] "What really sells Konosuke Takeshita for me or a lot of people is just his sheer skill, talent, and ability at the age of 25. Sure he could use some work in terms of psychology in selling, but he's ended up forming an incredible legacy and again HE'S TWENTY-FIVE. He still has almost a decade until he hits his prime, he and Kiyomiya are ridiculously talented at such a young age, it makes me wonder how amazing they'll be in their prime, but let's not get too ahead of ourselves. Anything can happen in wrestling. We have to just wait and watch him grow."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: TJPW is Legitwrote on 17.08.2020:[10.0] "It'd be a little unfair to simply call him the Okada or Tanahashi of DDT, because Konosuke Takeshita has forged a niche all of his own. Seriously, he's one of the most brutal non-death match wrestlers in Japan, I thought he killed Tetsuya Endo no less then six or seven times when they wrestled at the Peter Pan event in 2019, and he was absolutely brutal to HARASHIMA in their recent title match. But it's not just his move set, it's his selling that makes him be able to switch from a brutal killer to a babyface I can root for. I've heard people complain about how he's over pushed, but I feel like he deserves every championship he wins for being DDT's steadfast ace."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Makai Clubwrote on 12.10.2019:[8.0] "As someone who struggled to consistently get me interested in him at first, he has improved strides. Improving from someone who was bereft of charisma and had a stretch of meandering matches into someone who has shown a bit of personality and is now an extremely consistent wrestler. Still has a way to go but you can't deny his quality matches now."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: arrancarwrote on 21.04.2018:[8.0] "I'm not someone who constantly follows DDT nor Takeshita, but every rare occasion that I watch him he always impresses the hell out of me. He's so young and already putting on such amazing performances. He occasionally has a few issues with long-term selling, but heck, what young wrestler doesn't? Everything else about him is fantastic. He has a great offence that mixes acrobatics and full-on power. I also think he displays his passion and determination extremely well. His real-time selling is also very good, since his facial expressions and bumps really do a great job showing how battered he can get, making him into a very sympathetic figure. I understand that Takeshita has quite a few detractors within the DDT audience, and I definitely see that in the sense that the crowd doesnt exactly go crazy over him atm. He's still so amazing for his age though, so I'm sure these such things will work themselves out with time and that he'll eventually win over the DDT fans entirely."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: JDZwrote on 08.03.2018:[9.0] "Takeshita possesses super mat skills. He is charismatic. His character is developing. He is the present of DDT and he is the future of wrestling"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Tejas Cloverleafwrote on 13.01.2017:[9.0] "He had a break-out year last year, won the KO-D Openweight Title, and had some great match-ups with Miyamoto, Endo, and Ishikawa. He has such an explosive and unpredictable style in the ring and what he lacks in charisma, he more than makes up for in his execution."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: HeadCheesewrote on 28.07.2016:[8.0] "A good wrestler that is able to put on really good matches, I see him inprooving a lot in the future"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Matzinhowrote on 13.02.2014:[7.0] "Behaltet den Jungen im Auge! Mit läppischen 18 Jahren hat der schon ein paar gute Matches auf dem Buckel. Besonders die Schlacht mit Nakajima hat mir sehr gut gefallen. Ich glaube, aus dem wird was. Hat auch für einen Japaner eine gute Größe und Körperbau."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: wanderingobscuritywrote on 09.02.2025:[10.0] "I consume a LOT of wrestling media, and I can very comfortably say that Masaaki Mochizuki is strongly in the conversation for greatest wrestler of all time. The sheer number of matches, the consistency, the presence, the talent, the longevity, the fact that he hasn't fallen off at all, and never taken any kind of extended break, his absolute ace-level charisma... I don't think there's a total package veteran like Mocchy anywhere else in the world. 10/10 and absolute S-tier wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: GriffinXwrote on 13.01.2024:[8.0] "Even at 53 he's still more than able to keep up with the younger guys in the Dragon Gate and NOAH roster. The more you watch him the more fun he becomes to watch."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: Bushidospirit22wrote on 16.03.2021:[10.0] "One of the underrated legends in the history of Japanese wrestling. Probably my all-time favorite Dragon Gate wrestler along with Shingo, and he can still go even at 51."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: pecohajwrote on 12.03.2021:[10.0] "An absolute legend, one of the best workers the business has ever seen and still diving over the top rope at 50 years of age. His tag run with Yoshida is one of the best runs I have seen in Dragon Gate. His kicks are so incredibly stiff and look great. This man elevates everyone who is in the ring with him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: BDDwrote on 09.03.2020:[10.0] "Mochizuki is one of the best veterans today, and is one of my favorites at Dragon Gate. He's 50, but he fights like he's 20, he always gives his all in his matches, his kicks are incredible, and of course they served as inspiration for several other younger wrestlers, and he also has great submissions, which fit perfectly with your style,"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: Makai Clubwrote on 10.05.2019:[10.0] "Seriously one of the best wrestlers in the world. Any big match he is in, I'm dropping everything to watch it. Something I don't see for most people. Maybe someone like Kazuchika Okada, Daniel Bryan or Katsuhiko Nakajima. All guys whom I think very highly of. Mochizuki is someone who proves age is just a number. Not only does he tune out this high quality performances, his career has a litany of great matches. Tons of versatility too with stints in Battlarts, New Japan for a tour or two. One of the more influential wrestlers of our time as well, as far as Dragon Gate as a whole is concerned."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: jamzell00wrote on 23.04.2018:[9.0] "He has more fire and gives more effort than some 30 yr olds in wrestling. You cannot tell me this man doesn't love this shit with a burning passion"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: My Bloody Doobwrote on 23.02.2018:[10.0] "THE most underrated older vet wrestler from Japan STILL working to this day. His strikes are stiff as hell, he elicits pure fire in all of his matches, and just kicks so much ass. The Shibata of Dragon Gate if I had to use a comparison. Normally I would be turned off from older guys holding top titles, but Mochizuki is the exception."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: Kaswrote on 19.02.2018:[10.0] "One of the best in the world at near 50, Mochizuki is perhaps the most underrated wrestler today. Great worker and has a certain charisma that can really get the crowd behind him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: Headlockwrote on 15.06.2017:[10.0] "Mochizuki ist 47 Jahre und hat einen ähnlichen Karrieregang wie ein Kenta Kobashi, Keiji Muto, Hiroshi Tanahashi, Kurt Angle und Hiroyoshi Tenzan, sprich eine Karriere voller Hugh Profile matches aber anders als die 5 genannten Männer, ist Mochizuki noch genauso agil und fit wie vor 25 Jahren und das ist keine übertreibung Yuji Nagata wirkt neben Masaki Mocchizuki wie Yoshiaki Fujiwara, Denn Mochizuki ist der Iron Man von Wrestling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: BrentDelivinewrote on 09.06.2016:[10.0] "Mochizuki is probably one of the best veterans in Puroresu. He's absolutely incredible with his kick and submission game, he can break out some really athletic stuff for a 40 something year old and he can bring the comedy when its needed. Love Mochizuki, one of the absolute best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: Val Cdnwrote on 04.02.2015:[10.0] "People talk about Kazuchika Okada, Hiroshi Tanahashi.. But doesn't talk about Masaaki Mochizuki, who is a fantastic athlete too, and a little bit underrated in my opinion. He has great in-ring psychology and in-ring skills and has a certain amount of charisma. He's 45 years old, but still can deliver great matchs ! The thing about this guy is that he can kick your head off at any moment, he is a pure stricker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: AboutToCrashwrote on 18.08.2014:[10.0] "This guy is 44 years old and still leaves dust to every single wrestler in DG. Fuck, he can wrestler in stiff matches and kick the living hell out of his opponet(best kicker ever). and sometimes has a slow, melodical with awesome psychology and storytelling, using an high quality mat and chain wrestling. he also nice in his aerial assaults. This man stands with the greatest in-ring wrestlers as far as puro goes. One of my biggest dream matches is Mochizuki vs KENTA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: 3Mendouswrote on 12.07.2013:[10.0] "One of the best wrestlers that ever took step in the DG ring. Mochizuki has the best and the stiffest kicks in the wrestling Business today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: ARIZAwrote on 11.04.2011:[10.0] "Absolut großartig dieser Mann. Trotz seiner 41 Jahre immer noch einer der besten bei Dragon Gate. Ich liebe es einfach wie er ohne Rücksicht seine Gegner mit seinen Kicks zerstört."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: Matt4Wrestlingwrote on 11.01.2011:[10.0] "Ein wahrer Könner! Vom Shoot- bis Amateur-Style beherrscht er alles sehr gut, eine ehre ihn mal Live gesehen zu haben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: STRIGGAwrote on 26.12.2008:[9.0] "Mochizuki ist mittlerweile schon so etwas wie ein alter Hase im Geschäft, kann aber nach wie vor mit den Top Indy Leuten mithalten. Auch gegen Heavyweights wie zuletzt im Fire Festival 08 gesehen überzeugt er mit seinem Mix aus Technik und Shoots."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: InfamousLoaGOATwrote on 06.02.2025:"Greatest commentator of all time, has so much iconic calls nowadays such as Taker/HHH wm 28, simply brilliant."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: dinkopoetwrote on 13.01.2025:"I truly think Jim Ross is one of the greatest, or if not, THE greatest announcer in WWE history. I will soon be rating this man a 10/10. I just watched Undertaker vs Mankind inside Hell in a Cell and holy cow, his commentary is just WOW."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Kislozeljewrote on 04.01.2025:[0.0] "I don't get the obsession with Jim Ross. the most boring commentator, his knowledge is meh, he dosen't focus on the match, his podcast makes you wanna crash asleep. i really beg that someone explaines the phenomenon and obsession over him.. Oh and him repeating same and same lines over and over is also boring, and I know he was written the script but really, with such monotone voice, without any energy. And not just talking about him in AEW, even back in WWF/WWE he wasn't any better. Really Mauro Ranallo puts a lot more passion, a lot more knowledge, even if it's written you can still see that the guy knows a lot more than the written scrip. Or can't belive to say this but even Micheal Cole is far better commentator than Jim Ross, yes I'm praising Micheal Cole so what."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: nothingleftinsidewrote on 01.01.2025:[10.0] "Impossible to give this man anything but a 10; he's the greatest wrestling commentator of all time, for both color and play-by-play. He always brought much needed credibility to anything he was calling. A long and storied career, he started in mid-south under watts and eventually became the guy for WCW and most famously, WWF. He's also got one of the best minds for the business, as well as being the most beloved talent relations guy, a role that almost everyone else was despised in. He has lost his edge as of recently and is thankfully being used more sparingly, but sometimes he sounds like he doesn't give a shit anymore. Pretty much ever since his wife died you can tell his heart isn't in it. This compared to the rest of his career is marginal though, he honestly most likely doesn't have much time left on this earth. His podcast is good too, as is his bbq sauce and other smoked meat-related products. Straight up, he is in his own category on the call- there's Jim Ross, and then there's everyone else."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Phrygowrote on 07.11.2024:[10.0] "I'm not familiar with his current work in AEW, but JR would need to spend 50 years weekly commentating back alley fights between homeless people to even start to taint the legacy he's built within the business, and considering he's 72 years old, I think we're safe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: jsbortswrote on 11.09.2024:[10.0] "Best color commentator of a generation and one of the biggest reasons for WWE's success in the Monday Night Wars. A great wrestling mind and one of its great contributors"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Nudlewrote on 26.08.2024:[10.0] "Although his current work doesn't hold a candle to his prime, can you blame him he's 72 years old, but he is still easily the greatest commentator of all time. No one else comes close."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: trexyyywrote on 15.08.2024:[10.0] "He's the GOAT, the voice of the WWF for years, the greatest color commentator to grace the sport of wrestling.. His time spent in AEW since it's inception has not hindered his legacy or his ability."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "JR is one of the greatest commentators to ever do it. His voice is so iconic, and a lot of older wrestling fans cherish the moments they shared with JR on the call."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: devourblastwrote on 02.07.2024:[10.0] "Say what you will about his role in AEW, I don't think that should impact his legacy as he deserves nothing but the highest regards for play by play announcing in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Pigeon Scratchwrote on 29.04.2024:[10.0] "One of the best commentators of all time, one of a kind, often imitated but never duplicated. I genuinely think he elevated almost every match he commentated for, with so much compassion and emotion with every syllable that he enunciated. One of the best parts of the Attitude Era, one of the most knowledgeable in the sport that's only rivaled to people like Mike Tenay and Joey Styles, one of the most universally beloved, and severely underappreciated by the higher ups of companies like WCW and WWE, especially the former and more specifically Vince McMahon in the latter. I also genuinely think he still does a good job in AEW, even if he's at the end of his career and clearly showing his age in commentary. There really is no one like him. Thank you Ross."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ThatMobiwrote on 16.04.2024:[10.0] "What else is there to say about Good Ol JR, the best to ever do it, most iconic voice in wrestling, his chemistry with anyone was always great especially with Jerry Lawler. Ross is also great at calling, so creative and energetic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Dntbamarkwrote on 08.04.2024:[10.0] "One of, if not the greatest announcers in the history of wrestling. His voice is so synonymous with professional wrestling as it's been apart of several iconic (and sometimes not so-iconic) moments across the wrestling landscape for decades."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: TripleCrownwrote on 03.03.2024:[10.0] "I mean no disrespect to previous announcers, but Jim Ross is the greatest to ever do it. Jim Ross on commentary can make a moment 100x bigger than it already is, he can make wrestling feel "real" and his passion for calling matches really puts him above everybody else. People like to credit Austin, McMahon, Rock, etc., for making the Attitude Era so fun to watch. But to me, all of that would be meaningless if you didn't have the legendary Jim Ross on commentary throughout the whole ordeal. Got treated awfully by the WWE throughout his career, lots of disrespect by people towards the end who thought he couldn't do it anymore due to his age and whatnot. Might not be the same JR today as he was 15+ years ago but his voice alone is still something that can make AEW feel that little more legitimate."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: HardcoreRobbo2k97wrote on 31.01.2024:[10.0] "Jim Ross is the Greatest Wrestling Commentator of all time as his voice and storytelling has and will always be magical while watching matches unfold in front of his very eyes. He knows how to tell a story in the matches that he commentates with such passion that it drives fans to the action that's in front of them in an arena or on a TV screen. Jim Ross also knows the psychology of wrestling, which he uses to turn generic matches into masterpieces that people always remember because of Jim's impact on his commentary. Jim Ross in his prime days turned everything he touched into pure and solid gold with his work ethic, his drive, his passion for the industry because Jim motivates people and inspires them to become better versions of themselves with their presentation in the ring and improving their promo skills on the mic and during backstage segments. He is the Golden Voice of Magic that Pro Wrestling has become today, everyone can see what differences he's made to everyone he's come across during his time in the business because they've turned into world class wrestlers thanks to Jim's wisdom, guidance and support when talent turn to him for advice. 10/10 Rating"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: BigMacwrote on 06.01.2024:"[10.0] Jim Ross: The Voice of Wrestling Excellence Jim Ross, often referred to as "Good Ol' JR, " is not just a commentator; he is the heartbeat of professional wrestling. With a career spanning decades, Ross has become synonymous with the industry, earning his place as the definitive voice of wrestling excellence. One of the standout qualities of Jim Ross is his unparalleled storytelling ability. Whether it's a high-octane championship match or a heartfelt personal struggle, Ross has the unique gift of enhancing the emotional connection between the audience and the squared circle. His gravelly voice carries the weight of every moment, turning ordinary matches into unforgettable experiences. Ross's expertise goes beyond mere commentary; he possesses an innate understanding of the psychology of wrestling. His keen insights into the motivations and strategies of the competitors add depth to the narrative, elevating the overall viewing experience. It's not just about the moves in the ring; it's about the drama, the passion, and the relentless pursuit of victory, all masterfully conveyed through Ross's commentary. What sets Jim Ross apart is his authenticity. His genuine enthusiasm for the sport is infectious, making even the most casual viewer feel the intensity of the moment. Whether it's the shocking return of a legendary wrestler or the climax of a heated rivalry, Ross's reactions mirror the collective sentiments of the audience, creating an atmosphere that transcends the screen. Jim Ross's legacy extends beyond his time in the commentary booth. His iconic catchphrases, such as "Business is about to pick up" and "Slobberknocker, " have become ingrained in wrestling culture, demonstrating his impact on the industry. Moreover, Ross's contributions behind the scenes, including talent scouting and talent relations, showcase his commitment to nurturing the next generation of wrestling superstars. In conclusion, Jim Ross is not just a commentator; he's a maestro orchestrating the symphony of professional wrestling. His voice is the soundtrack to countless unforgettable moments, and his passion for the sport is unwavering. Whether you're a lifelong fan or a newcomer to the world of wrestling, Jim Ross's commentary is an essential ingredient that enhances the magic of the squared circle. He is, without a doubt, the voice of wrestling excellence."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: JediSaiyanMaster1203wrote on 18.11.2023:[10.0] "Jim Ross is the greatest commentator of all time, hands down. In his prime, you could really feel his passion and you got the sense that he means every word he's saying. Countless phrases that are iconic and still quoted to this day by fans from "Bah gawd! " "Stone Cold! Stone Cold! Stone Cold! " "he's gotta be dead! " "that jezebel" and countless others that can be mentioned. His work in WWF has held up remarkably, to the point that people are arguing that his commentary duo with Jerry Lawler is as important to the Attitude Era as the Steve Austin and The Rock feud. While his commentary work in AEW has shown that he is past his prime, that shouldn't overshadow his decades long work that has left an undeniable impact on the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: andytuga86wrote on 28.09.2023:[10.0] "Wise, cult and cunning, the great Jim Ross went through a lot in his life. One of the most respectable and humble guys in the History of this business, he is best Commentator of all time. I'm not very aware of his work in AEW, but that duo with Lawler was iconic and he will always be remembered for that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: chibimattywrote on 28.08.2023:"It's unclear whether it's part of his work-schtick or not, but his snide, passive aggressive comments during broadcasts about what annoys him about his company's product are getting a bit grating. Sure he's entitled to his opinions, but they are taking the viewer out of the show"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "I still like Gorilla Monsoon and Bobby Heenan as the best commentary team of all time personally, but Jim Ross has probably called more big matches than anybody else in wrestling history. Good Ol JR lived the era of the late 80's NWA/WCW all the way through the mid 2000's of the WWE, so he called the action in the overall era of pro wrestling."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Dartrookwrote on 31.05.2023:[5.0] "He was great back in the day but now he is one of my biggest problems with AEW. Having a miserable old man who shits on the product on commentary doesn't really help with the enjoyment of the show. When he isn't burying talent on air, he is talking at a snails-pace during an intense sequence."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The Sick Lebowskiwrote on 18.05.2023:[10.0] "Der beste Kommentator meiner Generation und einer der ganz, ganz Großen aller Zeiten. Er schafft es perfekt, die Gefühle, welche die Wrestler in den Matches durch ihre Aktionen produzieren wollen, über seine Stimme und Worte an die TV-Zuschauer zu übertragen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Leth99wrote on 16.05.2023:[10.0] "Yeah, his work with AEW is kinda meh, but you have 40 other years to look at and think "Damn, that's a good commentator""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Conquistador37wrote on 14.04.2023:[8.0] "Heavy edit: 11 for the play by play in general. 10 for saving WCW's ass more often than not. 10 for being the polar opposite of King Lawler in the commentary booth. Negative 12 for ALL OF THE SCREAMING AND YELLING in the early days. Negative 11 more because "Red Ass JR" ruins every damn podcast he does. That leaves us with an 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: John Brandowrote on 09.03.2023:[10.0] "Jim Ross- der beste Kommentator, den es in der WWE gab. Zahlreiche Momente wurden von ihm saustark begleitet. Ein cooler Typ und totaler Wrestling-Fachmann. Good God almighty!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: benh2wrote on 11.01.2023:[9.0] "His Mid-South and WCW work was unrivalled at the time. WWF at first really hindered his abilities because Vince didn't care for his usual style of play-by-play. Having said that, once the Attitude Era took off he was invaluable to getting certain angles over with his commitment, exuberance and staunch support of the babyfaces. I didn't really think he was all that good in WWF/E on a weekly basis but some of his calls were iconic. He's been useless in AEW but I won't let that tarnish his legacy too much."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: KENTAfanwrote on 15.12.2022:[10.0] "In his prime, JR was the best announcer this industry bar none. Granted, that? s just my opinion, but he was undeniably the voice of the Attitude and Ruthless Aggression Eras (along with King) which were personally my favorite periods in the history of WWE. His passion for the sport was always abundantly evident, his commitment to kayfabe so staunch that it would make you believe things were legitimate. His presence as a commentator would instantly elevate match quality, which is an extremely rare trait. Even in old age, he? s obviously not quite as sharp as he once was, but he still manages to be entertaining and is still better than the vast majority of commentators, though that might be nostalgia speaking somewhat. Either way, he is in my opinion the greatest commentator of all time hands down."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: TheLegendaryEricwrote on 06.11.2022:[10.0] "Although he's no longer as sharp as he once was on commentary and most likely never will be again, he's a great asset to have on any commentary table and during his prime made any great moment a thousand times better."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: JTIwrote on 24.09.2022:[6.0] "It seems like since joining AEW Jim Ross has been intentionally doing everything in his power to piss away all the good will he's gotten in the wrestling industry over the last four decades. Ross was the voice of my childhood, making incredible moments in pro wrestling that much better. Arguably the best play-by-play guy in the history of wrestling (pre-AEW). But now he's just this jaded, bitter old man who doesn't even like the product he's calling. (and if you don't think he's jaded or bitter, try listening to his podcast for ten minutes) On every pay-per-view and TV episode of AEW since its inception, three and a half fucking years now, JR has found at least one opportunity to say some sideways shit about the in-ring product, usually questioning a wrestler's decision-making process and making them look foolish, which is the opposite of what a commentator is supposed to do. If not that or some passive-aggressive remark to Excalibur (who actually enjoys his life), then it's the constant borderline (sometimes blatant) racism and misogyny that embarrasses everyone and turns off potential fans. Dude's still calling heel women jezebels here in the ass-end of 2022. Thing is, he's still just an old redneck who grew up in the 50's in Bumfuck, Oklahoma and genuinely doesn't think what he says is ever offensive, that it's just people being soft and always (always) (ALWAYS) taking everything out of context. In other words, the wrestling world has passed him by and we're far past the point where he's damaging an otherwise mostly great wrestling company. Another side-effect of all this (although this might also just be because he's getting old) is that his commentary just isn't that *good* anymore. He constantly makes mistakes or stumbles over his words, and he doesn't seem to have that Good Ol' JR spark anymore. Whether that's due to apathy or old age, or some combination, that's anyone's guess. Either way I wish he'd just retire already, for his own sake."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: crs285wrote on 06.09.2022:[10.0] "Over 40 Years in the business and while not as sharp as he once was still can elevate moments on commentary. He will be remembered as the greatest commentator of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Okaro143wrote on 05.09.2022:[8.0] "Jim Ross is one of the best commentators of all time. His reactions are legendary and his voice just gives fire to the match. Recently though, I kinda hate him at AEW, he makes way too many mistakes and many times don't even know names of the wrestler whose matches he is calling so an 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: znezaaljwrote on 25.08.2022:[10.0] "He is undoubtably the greatest commentator of all time. The passion, emotion, his voice, so iconic. Obviously he is not 1999 JR but still as of today he is a pretty good commentator. He has his botches here and there, but who does not? A legend of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: PavelDragunovwrote on 24.08.2022:[9.0] "A commentator who devoted himself to commenting and to this day he is working on wrestling content and his contribution to the Play-by-Play style of Commenting is difficult to overestimate. The man is the voice of millions of matches and how much I watch him, he always pleased me and I saw in him an individual personality and an original commentator. It is a pity that his health deteriorated early, and now he is not as good as before, but still his love for business awakens only positive emotions."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Luna100wrote on 02.08.2022:[4.0] "I am not a big fan of most his run in the WWF and AEW and utter trash in NJPW. He is good but not fantastic, the worst on the AEW team and if I ran AEW I would not give him another contract. I listened listened to his Chi-Town Rumble commentary and I really disliked it. He has only gotten worse over the years and now makes constant makes, he may have been useful on getting eyes on AEW for the first few months, but after that he draws nothing and mainly subtracts due to his legend status."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: arrancarwrote on 11.07.2022:[4.0] "JR is a bad announcer at the moment, and even in his 'prime' he was vastly overrated. Yes, he would hype matches up with his "BY GAWD" calls and such, but the way he would so desperately exclaim his catchphrases with his trademarked 'excited' delivery was really off-putting at times, as if he was artificially trying to make the match better by getting LOUD and over-exaggerating the events he just witnessed. He was also often far too in love with providing very random analogies which never added anything to the match in front of him, instead seeming to just be a way for him to try show off some minimal intelligence by simply comparing the match or a move/action to anything else he could think of, no matter the topic. When he was simply calling the action and walking the fans through the match stories, he was always good, but his attempts at producing extra excitement often felt overkill. Now, those negatives I had were of JR during his prime, but I still considered him a pretty good commentator compared to most others, since his worst moments, despite being bad, weren't consistent enough to be a major issue. It's been his work in recent years which has now lowered him to a 4/10 in my eyes. And yeah, he's 70 years old now, but if he's still doing that job then I'm gonna criticise him when he does it poorly. Firstly, with NJPW and AEW he was/is clearly just collecting a cheque. He often never bothered to learn which wrestlers were which, he didn't know what the ongoing stories were, and he actively criticised the matches with his passive aggressive and overly critical comments (which, even if they were valid criticisms, he still shouldn't have done because his JOB is to enhance the viewing experience for the viewer, not make them think "oh what I'm watching doesn't make sense, thanks JR! "). JR these days also constantly trips over his words or mis-times his delivery, and he'll also just forget key details or sometimes go down random rabbit holes instead of trying to simply commentate normally. He has maybe only 1/10th the enthusiasm he used to have, and you can sense that he doesn't really respect the sort of wrestling that AEW offers. That being said, the guy still lovessssss to get himself on camera for a hype video or documentary, where he'll often try to sound quite profound and poetic with his observations and opinions, as if he thinks what he's saying is really interesting and that the way he speaks is really engaging. He just comes off as pompous, and I could imagine he acts that way because he thinks his history in the wrestling business makes him an authority on it. He's another AEW signee only around based on name value alone. I still respect his mostly good efforts back in the day, but he doesn't add much now. He detracts from the product almost every time he speaks, and he should really hang it up before he tarnishes his legacy even further."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: NoSellwrote on 13.06.2022:[2.0] "I'm 22, I didn't listen to him when he was on his prime. His current work is appalling. He seems disinterested, is constantly talking shit about the matches instead of adding anything of value to them and of course the worset thing are the misogynistic and sometimes borderline racist comments when japanese wrestlers like Shida or Takeshita are in the ring. He actively makes the product worse and I look forward to the day he sods off from AEW. Beyond awful."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: CommisarRobewrote on 09.06.2022:[10.0] "An absolute icon of Wrestling commentary, from his over excited reactions, to often sounding genuinely worried about a wrestlers well being after a gnarly bump. Sure he's slowed down a bit with his commentary at AEW but he is still good ol reliable JR."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: TSwiftywrote on 19.05.2022:[6.0] "Once upon a time Jim Ross might've been a contender for the best English commentator in the world. He had good chemistry alongside Lawler during the Attitude Era and Ruthless Aggression era. He would always overexaggerate things far too much but generally he was good. His downfall over the last numbers of years has been painful to watch. His NJPW commentary was terrible and he didn't even care enough to learn to names of the wrestlers. His AEW work has been mostly dreadful. He's constantly making mistakes and sometimes he just speaks gibberish. He makes analogies and comparisons that make no sense whatsoever to point where you have no idea what he's referring to. He goes down random 'rabbit holes' like another user below said. JR still has some valid criticisms of modern wrestling and I respect him for sticking to his guns on them, but this is also a detriment. You could tell he doesn't enjoy AEW's style of wrestling and that would be perfectly fine if he wasn't the one calling it. I think a commentator should hook you into a wrestling match's atmosphere and not take you out of it and JR does much of the latter."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: WrestlingFan892wrote on 11.05.2022:[10.0] "The best Wrestling play by play commentator in history in my opinion. He is good at everything and despite his age he continues to give us vibes of good Wrestling such as AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: KroKrowrote on 23.04.2022:[10.0] "The greatest Play by Play commentator in Pro Wrestling history. He's called so many iconic matches and moments throughout wwe and Pro Wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Jason Phoenixwrote on 15.04.2022:[10.0] "The best Play-by-Play Commentator, maybe ever. Even when not on top form, still better than anyone else I've heard."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: LoloFareswrote on 07.04.2022:[6.0] "I really don't know where all this love for Jim Ross's Commentator comes from. For me, the last time I saw him, even at a good level, was since the '90s in the WWE otherwise, and after he was almost released in 2013, listening to his Commentator became very boring, and I don't blame him frankly, at this age and illness. but as you know he does not have to be on this place at all!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: GriffinXwrote on 10.02.2022:[10.0] "For many Jim Ross is THE voice of wrestling the man has called so many big moments and put his stamp on them. Even today a big older and not as sharp as he once was he still has some gems"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: sxltsnxffxdaewrote on 03.02.2022:[10.0] "this is the voice of the WWE attitude era(concurrently the best era) and now it is the voice of AEW. this is awesome"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: rishabhwrote on 03.02.2022:[10.0] "He was really the voice of the WWE in the Attitude Era. The emotion he put in during his commentary made the matches and moments much better and the way he would tell the stories on commentary were amazing. His pairing with Lawler was great and made the shows more enjoyable. I agree that he isn't the same anymore and his commentary has been bad in AEW but it's stupid to judge him based on his last 3 years when he has been doing it for decades."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Ruthless Attitudewrote on 21.12.2021:[10.0] "Without a doubt JR is the greatest play-by-play commentator bar none. Largely underappreciated by the WWE and Vince McMahon, but beloved by the fans and in his prime made big moments feel that much more special. Not quite as great today in AEW still clearly has a passion for the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: FerFerFer123wrote on 25.09.2021:[5.0] "I cant talk about his WWE run couse i sawit on my first lenguage but his AEW demostrated he has massive dinosaur behaviour like when he treated Sony Kiss as a she. IMO the weakest part of the 3 Dynamite comentators team"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Ma Stump Pullerwrote on 22.07.2021:[8.0] "Jim Ross is basically the wrestling equivalent to Doctor Jekyll and Mr Hyde: for the amazing calls he had in NWA/WCW, as well as his iconic work in the WWF as lead commentator and respected backstage worker, you have his pretty ugly work in NJPW where he stank on the whole promotion by clearly half-assing everything and not even bothering to remember the names of the wrestlers. Even in AEW where he shows signs of passion and of his old self, he just feels like he's going through the motions most of the time. Can't blame him considering he's been in the business for far longer than many: burnout is a real thing, especially when you have emotional baggage: but it doesn't excuse his objective quality of his calls. He trails off at times and doesn't seem to connect with a lot of the material presented to him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Daigotsuwrote on 19.06.2021:[10.0] "JR is the voice of American wrestling. Awesome commentator who is a true master of his craft. Sure, his current AEW work shows that he's slowed down, but even a JR who's lost a few steps is still better at commentary than most people's A-game."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Kungwrote on 01.06.2021:[10.0] "The single greatest play-by-play commentator to grace this wonderful sport. His calls will live forever for perfectly matching the moment, and his ability to find talent is just as strong. The man's been through so much and yet he's still just as special today as he was the first time I heard his voice."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: medousewrote on 14.05.2021:[10.0] "One of the most recognizable voices in wrestling history. He was calling the greatest matches during WWF-WWE best years. Even though he suffered some health issues and his face is partially paralysed, he still manages to do what he does best and he does it like that for years. The recent years of his career are not the most successful from wrestling fan point of view, but come on... he's almost 70. He did hell of a job throughout the years. Eveything has to come to an end someday."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Suzukigunwrote on 23.04.2021:[10.0] "He may not be nearly as good as he once was, but in his prime, he was one of the best ever. Few could evoke emotion in the booth the way he could. An absolute legend of the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: AmarantCoralwrote on 22.04.2021:[8.0] "Such is the legend of Jim Ross that I cannot rate him any lower than I have done. He is, for my generation, the undisputed voice of pro wrestling. But his work in AEW is a disservice to his legacy, so much so that his poor run as one of the more lesser-performing commentators in network wrestling must be reflected in his score. His professionalism has given way to uncharacteristic breaks in kayfabe, and all too often he shirks his responsibility of putting over wrestlers in favour of seemingly mocking the product he is employed to call. The first two acts of the career of the man under the black hat are iconic and I remain grateful for and in awe of his catalogue of work, but after a certain point you have to question whether the value of his voice alone is still resulting in a net positive, in the face of the detriment to the product his words are causing, and whether it wouldn't be better to hang up the Stetson."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: AnBwrote on 22.04.2021:[9.0] "Good old JR. I never quite understood how he managed to make words considering how little he moved his mouth. His voice is a part of wrestling for me and he always did pretty good at building hype, but I distinctly remember not being a fan of some of the times he got more involved with the storylines."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: THATSGOTTABEKANEwrote on 12.03.2021:[10.0] "Jim Ross commentated wrestling during my childhood. His voice is just embedded inside my head together with Iconic moments and matches he's commentated. He does seem out of place in AEW but that doesn't really affect my score for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: AJStylopzwrote on 09.03.2021:[7.0] "Good'ol JR! JR is one of the best commentators I've had the pleasure of listening to while I watched WWE matches as a child. He was always great, and he seems genuinely one of nicest guys ever. (I take back what I say LOL)"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: StrongStyle2020wrote on 05.02.2021:[6.0] "A great announcer during the Attitude Era, but a very mediocre one outside of that. Over the past 10+ years, he seems checked out, and going through the motions. For as many great calls as he has made, sadly he has made 10x as many awful ones by this point. Mid South and early NWA he was adequate, but certainly had not reached the level of '97."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Wrestling Foreverwrote on 06.09.2020:[10.0] "Für mich einer der besten Kommentator die es im Wrestling jemals gab. Leider durch seine Krankheit im Gesicht gezeichnet aber trotzdem versteht man ihn sehr gut. Sein Podcast ist auch richtig stark und er hat auch eine richtig gute Blogseite. Kommentierte immer sehr emotional vor allem wenn sein Freund Steve Austin gewann wurde er besonders laut. J. R. hinterlässt in der WWE als Kommentator eine Lücke die man nicht schließen kann. Edit 28. 04. 2019 Bedanke mich nun für Jims Zeit bei der WWE. 26 Jahre sind sehr lang und Jim hat da viel erlebt auch Storyline Entlassungen, schlechte Matches und so weiter. Immer noch ein Top Kommentator. Edit 06. 09. 2020 Finde ihn bei AEW als Kommentar auch richtig stark."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Matt Mackswrote on 06.09.2020:"Although it pains me a little bit, seeing as Jim Ross was and is one of my favourite commentators ever and responsible for so many awesome moments in the WWF Attitude era and even further back when he started in the WCW/NWA, making Ric Flair matches so incredibly exciting to watch. But all of that fire, all of that passion seems to have vanished over years and years of becoming jaded in WWE and simply becoming old and no longer understanding modern pro wrestling. There are still a lot of instances where he is AEW's voice of reason and is able to contribute a lot to the story in the ring, but it usually requires at least one performer in the ring that Ross either likes or at least " gets" . In many other situations during the weekly broadcasts he appears old, out of touch or even blatantly dismissing of the wrestlers' performance. While his partner Tony Schiavone has the same issues, Schiavone at least keeps himself in the background, while Ross usually takes the reigns of the commentary direction away from anyone else. Undoubtedly, he is one of the legendary commentators in the business. But it is also time for him to not only mention his self-awareness of his age, but also to act on it. // Update: Removing my rating because of his disrespectful and in some instances downright sexist commentary the last few weeks. I do not enjoy hearing Jim Ross anymore, AEW."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Lixyxwrote on 06.09.2020:[5.0] "I never got the praise he got, he had some catchphrases, some good expressions, but that's about it. I would rate him 7/8 in WWE, but the work he is doing in AEW is so awful, he makes me want to listen to Michael Cole."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ElPolloLocowrote on 10.01.2020:[8.0] "He used to be very good, bringing some sort of big time sports commentary to pro-wrestling. I personally prefer Gordon Solie but when Jim Ross was firing on all cylinders he was really really good. But then his motivation went south already when he was working for WWE and has been going steadily south. His NJPW stint was truly unprofessional and the sooner AEW tells him to deliver the goods or go back home the better. Jim Ross has been a great addition to pro-wrestling, has been part of countless memorable moments (Mick Foley vs The Undertaker to say but one) but his time is clearly over. To quote Jim Cornette "Of course Frank Sinatra is a legend, but how many records did he sell last year? "."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: gigiferwrote on 14.11.2019:[5.0] "he was a great commentator until he left wwe. for the first time. Remember his commentary for Mae Young classic it was awfully bad. Now Jim Ross is done. His commentary is getting worse and worse every show."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: JuliTheCage87wrote on 24.10.2019:[6.0] "Bester Kommentator, den das Wrestling-Business jemals gesehen hat. Er besitzt nicht umsonst so einen Legenden-Status. UPDATE: Muss jetzt leider abwerten. Auch wenn er eine absolute Legende ist, sollte er dem Kommentieren den Rücken zuwenden. Sehr monoton und einschläfernd, bringt momentan mehr Commentary-Botches als Josh Mathews und die Atmosphäre von früher ist auch nicht mehr da. UPDATE 2: Uff, bitte hör' auf."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[9.0] "Perhaps the best ever. His voice is certainly tattooed to my mind. It's good hearing him again in AEW & he was taken off WWE WAY too early. Ross & Lawler is my favorite duo & they worked well with one another."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Cow Manwrote on 24.05.2019:[10.0] "Bah Gawd, Jim Ross is one of the greatest commentators in wrestling! His work has always been great, but he probably did his best stuff during the Attitude Era in the WWF. The raw emotion in his voice as he commented on the action is something that most commentators today can't match. Good God Almighty, this man deserves a 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: JEK 1991wrote on 30.10.2018:[10.0] "Excellent ringside announcer. He was always entertaining the fans on Monday Night Raw. He was the babyface and Jerry Lawler was a the heel. Best ringside announcing team. He would say "Stone Cold! Stone Cold". His voice was recognizable. As a wrestler he was horrible but his 10 rating is for his announcing. I miss this guy. Excellent announcer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: RatingsMachinewrote on 11.10.2018:[9.0] "Jim Ross was one of the best announcers of all time, and whether or not you consider him the best comes down to personal preference. But time has not been kind to Jim's ability, and it has been a good few years since Jim should have called it quits."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Steamboat2511wrote on 29.09.2018:[10.0] "Schlicht und ergreifend DIE Stimme des Wrestlings und Kommentatoren-Legende. Kein anderer Kommentator hat je vor oder nach ihm so ein Big-Match-Feeling entstehen lassen, wie JR. Viele Matches sind durch seinen Kommentar noch ein wenig besser geworden bzw. geadelt worden. Unzählige geschichtsträchtige Situationen und Matches sind mir mit seinen Worten in Erinnerung. Er hat der WWE im verbalen Sektor Epik, Dramatik und Leidenschaft verliehen. Am genialsten sicherlich im Zusammenspiel mit dem King. Stimmfarbe, Emotionen (oft sorgfältig zum Höhepunkt/Finish hin gesteigert), Leidenschaft fürs Wreslting, Sachverstand, Eloquenz, die Fähigkeit spontan die richtigen Worte zu finden und sein Sinn für die großen Momente sind nur einige seiner vielen Stärken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Dragon Fighterwrote on 17.05.2018:[7.0] "He is one of the best if not the best commentators in wwe history. He is an icon during the attitude era and ruthless aggressive era for sure. His passion and skills were tremendous without a doubt. He added more story and emotion into matches I agree. However, I give him 7 because of his downfall in the last few years. I don't blame him for his wife's death but since then he become very annoying. He is more of a WWE guy and tends to defend this company no matter how awful its booking is. Furthermore, his performance at NJPW shows in the US was awful and soulless. He didn't know shit about their wrestlers. So yeah, he is a legend but I still have to deduce some points for some obvious reasons."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: CHN325wrote on 01.02.2018:[9.0] "Second to only Bobby Heenan when it comes to the commentary table. A true legend of the business and a genuinely nice guy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: taabr2wrote on 10.09.2017:[10.0] "The voice of the Attitude Era! Jim Ross is one of the best announcers in wrestling history and arguably the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Headlockwrote on 02.07.2017:[4.0] "Wäre er nur in der WWE/WCW gewesen hätte er 8 Punkte bekommen, Aber bei New Japan als Englischer Kommentator komplett schlecht! Besonders bei denn G1 USA Specials! Wo er in jedem Match einen Wrestler mit einem anderen vertauscht hat, wenn man denn kleinen Luchador nicht mit dem großen Blonden Power Wrestler auseinander halten kann, sollte man in den Ruhestand gehen"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Lee Vilenskiwrote on 20.06.2017:[10.0] "It's funny, at time of writing, Jim Ross is down as the 27th best wrestler of all time according to CageMatch; on par with Edge.   With that being said, he has probably had the most influence of anyone not named Vince McMahon over major wrestling matches, and made even the worst ideas work just with his commentary alone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Summerslam Fan 01wrote on 05.03.2017:[10.0] "Legende.  Jim Ross ist einfach die Stimme des Wrestlings, es wird nie wieder so ein guten Kommentator wie ihn geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: coolserazwrote on 22.02.2017:[10.0] "Greatest play-by-play commentator ever.  Not just for when he got hyped. The way he got indignant when heels attacked the babyfaces made the babyfaces more sympathetic and the heels extra devious."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Longa-46wrote on 24.08.2016:[10.0] "Da braucht man nicht lang diskutieren - Jim Ross war der beste Kommentator in der WWE. Seine einzigartige Stimme und Kommentare drücken ihn aus. Einige Momente hat er wirklich sensationell kommentiert. Lawler und Ross - legendäres Team am Pult. Zack, 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Super Mastodonwrote on 14.03.2016:[10.0] "The greatest wrestling commentator of ALL TIME! He could even be one of the greatest commentators in all of sports history! JR is just great and there will never be anyone like him ever again!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: MAGICIANwrote on 22.01.2016:[10.0] "Kurz und knapp der beste Kommentator der WWE Geschichte. Einzigartige Stimme, einzigartiges, impactvolles und stimmungsvolles Commentary. Eine Legende. Good God almighty."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: rockcitizenwrote on 20.01.2016:[10.0] "Legende. Mir fällt hier nichts Negatives ein, ich fand ihn immer super, sehe Monsoon und ihn auf einer Stufe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Kick Out City Bitchwrote on 30.07.2015:[10.0] "A competent commentator who is respected by everyone in the business, beause he has the right eye for talent. His markout moment are legendary every '90's-early '00's kid needs to love him. He is the guy behind the desk, doesn't matter in which company.   BTW: His podcast is the best wrestling podcast that exists."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: rxted rkowrote on 22.04.2015:[10.0] "Eine Legende unter den Kommentatoren. Er hat mit seinem Beitrag unzählige Momente unvergesslich gemacht oder sie zumindestens perfektioniert. Selbst die langweiligsten Matches hat er aufgewertet. Er konnte einfach Müll in Gold umwandeln. Es wird wohl schwierig sein für alle WWE-Nachfolger, diesen Mann zu toppen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Viper99wrote on 04.04.2015:[10.0] "Jim Ross ist einfach der beste WWE Kommentator aller zeiten! Er hatte so viele Großartige Momente der WWE Geschichte kommentiert wie zb. Mankinds sturz vom Käfig oder Austins Turn bei Wrestlemania. Immer wenn ich an diese Momente denke, denke ich an Jim Ross! Außerdem finde ich Jim Ross wirklich sympatisch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: zackwoowoowooryderwrote on 11.02.2015:[10.0] "Jim Ross ist und bleibt die Stimme der WWE und daran wird sich auch nicht ändern. Ein Mann den ich extrem mochte und auch von seiner Art her super fand. Und er ist so ziemlich der einzige Kommentator der WWE der wirklich immer Neutral war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Y2J316wrote on 28.11.2014:[10.0] "Bester Kommentator aller Zeiten. Ich finde er kann auch schach für Millionen zu einem ereignis wie ein WM-Finale machen. Schade das vince ihn immer wieder los werden wollte. Ich hätte ihn gerne heute noch anstatt Cole."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Phenomenal91wrote on 27.07.2014:[10.0] "It's hard to get wrestling fans to agree unanimously on ANYTHING, but if there's one thing we all agree, it was that Jim Ross was the greatest play by play announcer of his generation, and possibly the greatest of all time. He always called the action with passion, insight, and occasionally humor, and was entertaining every time. Even though, for some reason I'll never figure out, the WWE insisted in placing him in embarrassing storylines, requiring him to get in the ring, and even openly mocking the Bell's palsy that almost ended his career, he stayed loyal to them for the better part of 20 years. That is a loyalty and commitment to the sport you love and the company you work for that you probably won't find anywhere else in the wrestling world. Now that JR's no longer actively involved in the corporate politics of WWE, he's giving insight into wrestling through his podcast, a longtime insider's view from the outside. I miss his commentary. I miss him. He said we haven't seen the last of him in a big time wrestling project. I certainly hope that's true."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: alcoholicmetalmayhemwrote on 20.04.2014:[6.0] "Keine Ahnung. Versteh den Hype nicht so ganz. Ganz stinknormaler Kommentator. Zu diskutieren welcher Kommentator besser ist, ist ohnehin Blödsinn. Was macht ihn besser wie einen anderen Kommentator?  Hat in seinen Rollen die er in den Fehden hatte gelegentlich überzeugt."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Lord Regalwrote on 15.01.2014:[2.0] "Ich finde JR ziemlich langweilig und seine Rollen kann er meiner Meinung nach auch nicht gut spielen. Meiner Meinung nach einer der schlechtesten WWE Komentatoren."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: TheUnderTakerwrote on 30.12.2013:[10.0] "Bester Play-by-Play Wrestling-Kommentator aller Zeiten. Diverse Bgründungen haben Andere besser formuliert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: koeddylaemmlewrote on 29.09.2013:[10.0] "For me Jim Ross is not only the voice of the, he is the voice of wrestling. Jim Ross made so many moments even more spectacular through the emotion he conveyed... something that is noticeably missing from the current product."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: KobashiKentawrote on 05.09.2013:[10.0] "@Fabi89: Die "boyhood dream" line war von Vince, nicht von JR.  Zur Bewertung: Die wichtigsten Punkte wurden bereits genannt, sein Wrestling-Sachverstand, seine Stimme, seine Begabung besonderen Momenten diesen letzten "epischen" Touch zu verleihen machen ihn zum besten und wichtigsten WWE-Kommentator aller Zeiten. Beim ebenfalls bereits genannten 3-Way Match bei Wrestlemania XX liefert er die beste Kommentatorenleistung ab, die ich jemals gesehen hab. Mehr Emotion geht nicht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: HighlightHEELwrote on 23.08.2013:[10.0] "Für mich unter den Wrestling-Kommentatoren, was Howard Finkel unter den Ringsprechern ist. Ein Gott in seinem kleinen Reich. Seine Stimme, sein Fachwissen und die Emotionen, die er transportieren kann, lassen ihn absolut unvergesslich werden. Bei so vielen großen Momenten macht seine Stimme im Hintergrund das Geschehen noch epischer. Ich würde ihn jederzeit Vollzeit zurück holen, wenn ich könnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Alex Maedawrote on 03.08.2013:[9.0] "Lebt sehr von Stimme, Emotionen und Authentizität. Hat den Sport geprägt wie wohl kein anderer Kommentator, aber für die Höchstnote haben mich seine ständigen Phrasen irgendwann zu sehr genervt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Antimasterwrote on 29.07.2013:[10.0] "Der Kerl ist einfach der beste Kommentator, den es gibt. Wie er epische Momente rüberbrachte, das wird es kein zweites Mal geben, zudem auch fachlich oberes Nivau."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Scuzzlebuttwrote on 30.06.2013:[10.0] "Was soll man noch groß über ihn sagen. Er ist einfach der beste der jemals am Kommentatorentisch der WWE platzgenommen hat. GOOD GOD ALMIGHTY! GOOD GOD ALMIGHTY! THAT KILLED HIM! AS GOD AS MY WITNESS, HE IS BROKEN IN HALF. Einfach nur eine Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Lecterwrote on 05.06.2013:[10.0] "Best the business has ever had. Only guy with the ability to make truly legendary WWE calls, which is a darn shame."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: believeintheshieldwrote on 02.05.2013:[10.0] "Der Beste Kommentator den die WWE zu bieten hat. Eine legende an der Seite von Jerry Lawler. Mitreißende Kommentare und immer einen passenden Spruch auf lager, das ist es was Jim Ross auszeichnet, daher 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "One of the greatest announcers of all time, if not the greatest. He really brings the emotion and drama to a match with his commentary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Tobi23wrote on 07.11.2012:[10.0] "The best there is, the best there was, and propably the best there ever will be"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: cmkanewrote on 03.10.2012:[10.0] "Eine Legende und der beste Kommentator aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: FSFLYwrote on 20.09.2012:[10.0] "Er ist der beste Kommentator den die WWE seit ihrer Entstehung hat und sein Markenzeichen die rote Mappe und der Hut und sein Sauce ist die beste der Welt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: VanderVaartwrote on 24.04.2012:[10.0] "Der beste WWE-Kommentator aller Zeiten. Weder langweilig, noch hektisch. Ruhig und Sachlich. Genau so soll es sein. Mit Lawler ein nahezu perfektes Team. Allerdings sollte der Unfug gelassen werden, einen Menschen, der leider eine Gesichtslähmung hat, in den Ring zu steigen. Außerdemhat er zu viel unnötige Körpermasse. Da ist es besser, wenn er nur Kochbücher herausbringt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Sirius Van Grathwrote on 25.03.2012:[10.0] "Jim Ross ist der beste WWE Kommentator aller Zeiten! Er kommt zwar meiner Meinung nach nicht an Joey Styles ran, ist aber trotzdem einfach "Good ol' J. R. ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Marlowewrote on 20.02.2012:[10.0] "Der beste Wrestling-Kommentator aller Zeiten. Nur für sein Theme würd ich ihm gerne nen Punkt abziehen^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Fabi89wrote on 02.11.2011:[10.0] "Bester Mann am WWE Pult, der genau das richtige Gespür für die sprachliche Begleitung einer Wrestlingshow an den Tag legt. Hat zahlreiche besondere Momente erst zu dem gemacht, als was sie heute erinnert werden. Man denke nur an Foleys Sturz vom Hell in a Cell Käfig oder Shawn Michaels "boyhood dream"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Y2John Cenawrote on 14.10.2011:"Meiner Meinung nach ist Jim Ross der beste Kommentator überhaupt. Er besitzt das nötige Fachwissen, kann auch die Moves richtig benennen und, das gefällt mir am meisten bei ihm, konzentriert sich auf die Matches anstatt sich mit einem anderen Kommentator über irgendetwas total unwichtiges zu streiten."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Kitanoyamawrote on 16.09.2011:[10.0] "Auch wenn er manchmal nicht gut zu verstehen ist, was sicherlich von seiner Gesichtslähmung stammt, ist er einer der besten seines Fach, wenn nicht der beste. Er besitzt viel Sachverstand und weis stets genau was zutun und zusagen ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Rated R Punkwrote on 06.09.2011:[10.0] "Für mich der Vorzeige Kommentator! Eine Pflicht bei jeden WrestleMania da schon alleine sein Kommentieren verdammt episch ist! Jim Ross glänzte immer durch Fachwissen und war stets Professionel. Zurzeit baut er ein bisschen ab, aber das fälllt finde ich nicht besonders zur Last."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: WWE4evermaybewrote on 20.08.2011:[10.0] "Dieser Typ ist eine lebende Kommentatoren-Legende. Er macht mit seinen emotionalen Kommentaren ein 5 Sterne zu einem 6 Sterne-Match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: FriarFergusonwrote on 16.05.2011:[10.0] "Eine Wahnsinnstimme, lässt Wrestling seriös, ernsthaft und sehr bedeutungschwer wirken. Dazu Sätze wie etwa "a man with only one leg cannot be WWE Champion, no offense to John Cena or any one legged man". Der Beste Kommentator im Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The Big Jackwrote on 26.02.2011:[10.0] "Für mich der beste Kommentator der letzten 20 Jahre. Und er hat es einfach immer noch drauf! Wenn man ihn bei der Old Shool Ausgabe sieht und hört, das ist einfach ein Genuss. Wie er und LAwler Cole einfach ignorieren. Göttlich! Und auch als Agent ist er sicherlich viel wehrt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: TheRatedRLegendKillerwrote on 09.02.2011:[10.0] "Neben Heenan der beste Color-Kommentator aller Zeiten. Hat Ross sich erstmal in Rage geredet, ist es einfach ein Genuss ihm zuzuhören. Siehe Wrestlemania XX (Main Event): Schade, dass er als Kommentator nicht mehr zu hören sein wird, aber ich bin mir sicher, dass er als Talentsucher auch ein Talent ist :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Rallewrote on 30.01.2011:[10.0] "Kommentatoren beim Wrestling sind ein bisschen wie die Musik in Filmen. Ohne sie geht es nicht, wenn sie schlecht oder unpassend ist, stört sie das Filmerlebnis. Gute Filmmusik unterstützt was man zu sehen bekommt und steigert das Filmerlebnis. - Jim Ross hat es geschafft mit seiner Art zu kommentieren und seinen Emotionen jedes Wrestlingmatch aufzuwerten. Sein "Oh my god! " hat sich bei mir ins Gehör eingebrannt. The best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Mizisawesomewrote on 03.01.2011:[6.0] "Ich versteh nicht warum Ross als einer der besten Kommentatoren angesehen wird. Er benennt moves fast schon generell falsch. Und ich bin auch kein Fan seines Südstaaten-Akzents. Mich nervt es mehr Ross zu zuhören als, dass ich es gut finde. Aber ich will ihn hier auch nicht ganz niederreden, denn einwas konnte er immer perfekt: Die Emotionen der Situationen, die stattfanden authentisch rüberzubringen. Wenn jemandem ein Rohr über den Kopf gezogen wurde war Ross völlig außer sich. Wenn etwas trauriges stattfand sank seine Stimme so, dass die Situation wirklich vollkommen ernst rüberkam. Und als er mit Tazz zusammen Smackdown kommentiert hat, war das eines der besten Moderatoren-Teams ever. Natürlich war das beste Team Ross und King, keine Frage. 6 Punkte für die Emotionalität, 4 Punkte Abzug für die oben genannten Sachen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: skoeswrote on 06.12.2010:[10.0] "JR ist und bleibt der beste Kommentator im Wrestling-Business, was er auch bei der "Old-School"-Ausgabe von RAW vor kurzem wieder unter Beweis gestellt hat. Während andere Kommentatoren teilweise vollkommen emotionslos kommentieren oder einfach nur nerven (Michael Cole), weiß JR genau, wann man seine Stimme anheben muss und wann man auch eher ruhig bleiben kann. Die WWE täte gut daran, ihn wieder - wenn auch nur ab und zu - am Pult einzusetzen. Volle Punktzahl!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Baldrickwrote on 16.11.2010:[10.0] "Kapitel 1 in jedem Kommentatorenlehrbuch: Jim Ross! Smarter Witz und eine wohltuende Abgeklärtheit lassen JR auf ewig das Mass aller Dinge der Play-by-Play Gilde bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Muutzwrote on 16.11.2010:[10.0] "Was hab ich mich gefreut J. R. in der Oldschool Raw ausgabe wiederzusehen. Schade das er nicht mehr am Kommentatorentisch ist. Eine Legende und der BESTE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: D-Stroyer DeLuxewrote on 20.10.2010:[10.0] "Jim Ross ist die eine, die einzige, die wahre Stimme der WWE... Wie Edge es so treffend ausgedrückt hat "I'd rather listen to a recording of JR than to Michael Cole live! " JR ist der beste Kommentator, den die WWE je hatte, wobei Tazz dicht folgt. Seine Aufnahme in die HoF ist mehr als gerechtfertigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The Ramwrote on 26.09.2010:[10.0] "Der beste Wrestling-Kommentator den ich kenne. Ich liebe seine Sprüche und find es schade das er nicht zurück kommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Perry Coxwrote on 20.08.2010:[10.0] "Es ist unglaublich schade, dass JR nicht mehr kommentieren wird. Er ist für mich die Ikone der Ringkommentatoren und sollte ein Vorbild für jeden sein, der denselben Weg einschlagen will. Immer loyal und verlässlich und am Pult kaum zu ersetzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Franjisewrote on 07.07.2010:[10.0] "The greatest announcer of all times! Keine Frage, Jim Ross ist DER Wrestling-Kommentator. Emotional, mit dem nötigen Fachwissen ausgestattet und zu jeder Zeit den richtigen Kommentar. Mr. BBQ-Man (wie ihn Santina mal so schön bezeichnete) wird auf ewig eine Legende am Mikrofon und in diesem Sport sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The Viperwrote on 03.07.2010:[10.0] "Unfassbarer Kommentator. Eine absolute Legende mit Jerry Lawler wohl das beste Duo, das es jemals gab und es überhaupt geben wird"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Papa Popanzwrote on 03.05.2010:[10.0] "Der Mann ist eine lebende Legende am Mic... hoffentlich lässt ihn die WWE net ziehen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: RockerDropperwrote on 30.04.2010:[3.0] "Furchtbar. Er hat Ahnung vom Wrestling, ja; aber als Kommentator ist er imo unterste Kanone. Ich höre seinem Genuschel einfach nicht gerne zu, ich finde ichn nicht unterhaltsam und kann sein ganzes Auftreten nicht wirklich leiden.  Tony Shiavone, Jerry Lawler, Jesse Ventura, Bobby Heenan, Vince MacMahon... ja selbst Randy Savage habe ich lieber zugehört.  Aber jedem das seine! :)"
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: KASHwrote on 30.04.2010:[10.0] "Einfach der beste. Besser als Monsoon, besser als Heenan, besser als VKM, Heyman, Ventura und alle neumodischen. Der klassiker unter den Kommentatoren und die stimme der Attitude Ära. Denke mit Jim Ross verbindet man einfach die besten und spektakulärsten Momente im Main Stream Wrestling bzw. im ganzen Wrestling. Glaube kaum das irgendwelche Japanerfans coole Momente mit seinem einprägsamen Zitat in Verbindung bringen können. Jim Ross ist die heimliche, aber dennoch präsente Stimme des Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Cloverwrote on 06.04.2010:[10.0] "Ich liebe es, ihm zuzuhören! Wenn er sich in Rage redet, gehts richtig rund! Da wirkt alles, was man sieht, doppelt so gut! Er ist für mich der beste Kommentator ÜBERHAUPT. Hoffentlich zieht die WWE ihr Ding nicht durch, ihn irgendwann komplett zu ersetzen... gute Besserung ihm."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Exist 2 Inspirewrote on 03.04.2010:[10.0] "Der wohl mit Abstand beste Kommentator den ich je gehört habe! Fände es wirklich schade wenn er jetzt nicht merh weiter kommentieren würde!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Italian Straight Edgewrote on 24.03.2010:[10.0] "Er ist nicht mein Lieblingsannouncer, aber er ist auf jeden Fall der beste Wrestling-Kommentator der Welt. Und sicher auch einer der besten aller Gezeiten. Punkt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Moyawrote on 14.03.2010:[10.0] "Verdient in der Hall of Fame. Er schafft es, aus einem guten Match ein großartiges werden zu lassen. Viele große Momente der Wrestlinggeschichte verbindet man automatisch mit seiner Stimme und seinem Kommentar. Hoffentlich kann er noch weitermachen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: shoopdawoopwrote on 10.03.2010:[10.0] "Bah gawd! He's busted wide open! Hard right hand to the midsection! Good god almighty! He's going on the top rope king!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Eddiewrote on 06.03.2010:[10.0] "Ich glaub bei JR muss eigentlich gar nicht viel gesagt werden!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The Cripplerwrote on 26.02.2010:[9.0] "Er ist nicht einer der Besten......... Er ist der Beste ! Die Stimme des Wrestlings!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: MikeBSwrote on 15.02.2010:[10.0] "JR hat mehr oder weniger meine Jugendzeit kommentiert ;-) Viele, viele Matches und Erinnerungen hängen kausal mit seiner einzigartigen Stimme zusammen. Soviele Spots oder Finisher hängen einfach an seinen Lippen. Einfach der richtige Kemmentator zur besten Zeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Anti-Championwrote on 14.02.2010:[0.0] "Hat weder Austrahlung noch eine dominante Stimme, sein Stil als Kommentator ist einfach nicht zu ertragen. Hört sich an wie ein typischer Radiokasper, nur ohne eigenen Stil."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Hulksterwrote on 10.02.2010:[10.0] "Der beste Wrestling Kommentator Weltweit. Er kennt sich im Gegensatz zu seinen Deutschen Kollegen mit den Wrestlingattacken aus. Ich hoffe wir sehen ihn bald als Kommentator wieder."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Schandmaulwrote on 10.02.2010:[2.0] "Kann ihm nix abgewinnen. Langweilt mich als Kommentator. Weiß nicht wie ich es weiter beschreiben soll. Ich kann ihm zuhören, ja. Aber seine Stimme fesselt mich nicht. Ich kann ihm fachlich nichts vorwerfen, aber seine Art zu kommentieren.... wobei ich positiverweise zugeben muss, er stört mich nicht wenn ich mich auf ein Match konzentrieren will."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: RoHSupporterwrote on 25.01.2010:[10.0] "JR ist eine Legende des Sports Enterainment und deshalb bekommt er eine hochverdiente 10 von mir!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: TheROCKwrote on 22.01.2010:[10.0] "Jeder Wrestling Fan über 20 und älter wurde mit dieser Stimme groß. Allein seine Stimme lässt mich immer noch von besseren Wrestling-Zeiten schwärmen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: RIKYwrote on 13.01.2010:[10.0] "DIE Stimme der WWE. Good ol' JR hat die Fähigkeit jedes Match zu einem Highlight zu machen. Ich hoffe auf seine baldige Rückkehr."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Aesopwrote on 20.12.2009:[10.0] "Einer der besten Kommentatoren überhaupt. Seine Leistung ist zwar nicht mehr so gut wie früher doch er ist immer noch einer der besten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: downtown2wrote on 16.12.2009:[5.0] "Ein sehr geradliniger Veteran, der als Saubermann fast nicht wegzudenken ist. Er scheint alle Infos auf Knopfdruck abrufen zu können, ist aber auch ein übler Patriot und leicht verstaubt dazu."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Fountain of Misinformationwrote on 22.10.2009:[7.0] "War mal ein exzellenter Kommentator, hat über die Jahre aber wirklich stetig abgebaut und neigt heute zu den ständig gleichen Phrasen (Shelton Benjamin athletischen Hintergrund, die Hand- und Schuhgröße von Big Show usw. ) und Standard-Sprüchen, mit welchem er gut 80% seines Kommentares füllt und streckt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: element-41wrote on 04.10.2009:[9.0] "Er ist seit Jahren DIE Stimme der WWE. Er gehört auf jeden Fall in die Hall of Fame. 9 Punkte!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: NewGuywrote on 03.10.2009:[10.0] "Wüsste nicht was es an ihm auszusetzen gäbe! Seit Jahren die Stimme der WWE, eine der wenigen Dinge, die unverändert gut bleibt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: 108 Sternewrote on 25.09.2009:[5.0] "Ätzender Typ, mit einer Persönlichkeit, die einen in die Mattscheibe schlagen lassen will. Fachwissen und langjährige Erfahrung hin oder her, aber der Mann ist für mich einfach der mieseste Kommentator und Experte, den ich je gehört und gesehen habe."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Basket Casewrote on 15.09.2009:[10.0] "Der beste Kommentator ever und das egal mit welchem Partner."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: DJ MaSchwrote on 13.09.2009:[9.0] "Nicht merh so gut wie früher in der NWA/WCW oder zu Beginn seiner WWF Zeit trotzdem noch immer der beste Play-by-Play Kommentator im Mainstream Bereich."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: MattBornewrote on 06.09.2009:[10.0] "Wirkt auf mich stets authentisch und überzeugend mit seinem Wissen, die Splittung von Jr. und dem King, fand ich aber alles andere als schön, da ich sie zusammen sehr gut fand. Hoffe für ihn, das er bezüglich seiner Zukunft die richtige Entscheidung trifft, ich würde ihn auch gerne bei Tna sehen. Bin aber genauso froh, wenn er bei der WWE bleiben würde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: alfredwrote on 03.09.2009:[10.0] "DIE Stimme der WWE, auch wenn er in letzter Zeit öfters mal unpassende Movebezeichnungen von sich gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: 123 kidwrote on 03.09.2009:[8.0] "Er ist mit Matt Striker wirklich der beste Kommentator bei WWE."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Turboladerwrote on 30.08.2009:[10.0] "Einer, der sich seinem Job voll hingibt. Der beste Kommentator der WWE ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Alorionwrote on 24.06.2009:[10.0] "Einer der einzigesn Kommentatoren der WWE der es schafft in einem während einem Match keine Moves falsch zu benennen und überzeugt mit Fachwissen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Legdropswrote on 19.06.2009:[7.0] "Leidenschaft, Wissen und einen gewissen Unterhaltungsgrad möchte ich dem guten JR nicht absprechen. Mitreißen kann mich sein Kommentar allerdings nicht."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Bloodywrote on 19.05.2009:[10.0] "Good Old JR der beste der besten mehr braucht man wohl da nicht zu sagen ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: REYMVPwrote on 18.04.2009:[6.0] "Finde ihn nicht so gut, weil er manchmal sehr undeutlich spricht!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The-Game91wrote on 04.02.2009:[10.0] "Meiner Meinung nach der größte Kommentator den die WWE jemals hatte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Father Nelsonwrote on 01.02.2009:[9.0] "Always loved good olŽ J. R. ! But itŽs time to retire for good."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: michawrestlingfanwrote on 15.01.2009:[10.0] "Da brauch man echt nicht viel zu sagen. Er ist einfach der beste Kommentator den es gibt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Jakeswrote on 21.12.2008:[10.0] "Fand voll lustig wie er immer schrie : Oh no ! Not the FU xD"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Jar Jar Binkswrote on 21.12.2008:[10.0] "Kein Kommentar! ;) Nein also mal im Ernst. Dieser Mann ist einfach der beste Kommentator, den es im Moment gibt. Er schafft es immer wieder ein Match spannend zu machen oder interesante Informationen rüber zu bringen. Für mich der vollkommenste, ja sogar perfekte Kommentator.  What a Slubberknocker!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ScrWwe94wrote on 21.12.2008:[10.0] "Ich liebe seine tollte Calls. Einfach unglaublich wie faszinierend er kommentiert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: nicojansonwrote on 29.11.2008:[10.0] "Die Legende am Kommentartorenpult schlechthin, unglaubliches Wissen über diesen Sport und einfach toll, ihm zuzuhören. Besser gehts nun wirklich nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: LordTrailerwrote on 11.11.2008:[9.0] "Legendär! Er hat die großen Momente in vielen Ligen kommentiert und wohl den ein oder anderen Wrestler dadurch over ("Austin wins, Austin wins") gebracht. Aber er muß aufpassen, dass er nicht zu einer Karikatur seiner selbst wird, eben weil er so viele Catchphrases geprägt hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Amazing Bluewrote on 11.11.2008:[10.0] "Er ist definitiv der beste, aktive Wrestling-Kommentator auf diesem Planeten. Er kann immer rüberbringen, was er soll/will und es hat sich über die Jahre einfach gezeigt, dass er für die WWE nicht ersetzbar ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: lp4everwrote on 26.10.2008:[10.0] "Was anderes als 10 Punkte für J. R. kommt für mich nicht in Frage. "Business is about to pick up! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Animal360wrote on 24.10.2008:[10.0] "Good old J. R. ist einfach Legendär der wohl nie zur Debatte stehen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Unrated Superstarwrote on 07.10.2008:[10.0] "Sehr viel besser als Jerry Lawler und auch IMO kompetenter als der King. Bildete mit Foley für kurze Zeit das perfekteste Kommentatoren-Team schlechthin, aber auch mit Tazz hat er einen guten Kollegen an seiner Seite. Frag mich nur, warum die WWE zeitweise versucht hat ihn aus der WWE zu werfen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: GeneralUwewrote on 26.08.2008:[2.0] "Einfach nur nervtötend. Kommentiert viel zu übertrieben und wirkt oft lustlos. Ich kann den Hype um ihn einfach nicht verstehen."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: nacho83wrote on 17.08.2008:[10.0] "Die Stimme der WWE. Allein schon die Tatsache, dass die WWE niemanden findet, der Jim Ross Platz einnehmen kann der dabei so ein hohes Niveau beibehält, zeigt wie stark er am Mikrofon ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Rated-RKOwrote on 13.08.2008:[10.0] "Für mich mit Abstand der beste Kommentator der WWE und nicht zu vergleichen mit den Salamigehirnen Carsten und Günter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Fanthaizawrote on 07.08.2008:[10.0] "Einer der beiden besten Kommentatoren die WWE hat (auch wenn einer sich nur noch um die Website kümmert), strotz vor Fachwissen und auch historischen Kenntnissen und er bereitet sich PERFEKT auf die Matches und Shows vor. Ein ganz Großer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Cartman099wrote on 30.06.2008:[10.0] "Bester Kommentator aller Zeiten! Er wird uns bei Raw fehlen.  Schade um einen so grandiosen Menschen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ecw foreverwrote on 22.06.2008:[10.0] "Der Kommentator überhaupt und einer der grössten "Wrestling-Minds" der Geschichte des Pro Wrestlings, so sehe ich dies, seine Blogs sind zwischendurch immer wieder nett, und seine Matchempfehlungen sind immer top, hinzu kommt noch die riesen Symphatie die ich für ihn habe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: e-trom995wrote on 15.06.2008:[10.0] "Sehe ich genau so. Jim Ross muss eine 10 bekommen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Riley Mathewswrote on 01.06.2008:[4.0] "Dadurch das er der erste Kommentator war der in die WWE-Hall of Fame gekommen ist muss er ja gut sein. Ich persönlich höre weder hn noch Jerry Lawler gern.  Persönlich würde ich ihm eine 5 geben aber da er in der HoF ist kriegt er eine 4. Für mich ist der beste US-Kommentator Joey Styles."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Garvinwrote on 15.04.2008:[4.0] "Davon abgesehen, dass ich JR nie wirklich leiden konnte, hat er sich in den letzten Jahren dramatisch verschlechtert. Er hat sicher ein Fachwissen, von dem sich manch einer seiner Kollegen durchaus eine Scheibe abschneiden könnte, doch er wirkt auf mich zu lethargisch."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: nightfallwrote on 10.04.2008:[10.0] "Der Kommentator an dem sich alle anderen messen lassen müssen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ZuluBunsenwrote on 23.03.2008:[8.0] "Ja, er hat seine Aussetzer und vielleicht ist er unterdessen zu alt für den Job, trotzdem bleibt Ross immer noch einer der besten Kommentatoren, die bisher Matches kommentieren durften. Eine Legende seines Fachs welche aber in den letzten Jahren Abnutzungserscheinungen gezeigt hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Rated R Champwrote on 20.03.2008:[10.0] "Schlicht und einfach der beste Play by play Kommentator, nicht nur der WWE sondern der ganzen Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Juvicidewrote on 11.03.2008:[10.0] "Es gibt niemanden aus dem Wrestlingbusiness, den ich aufgrund seiner menschlichen Persönlichkeit mehr respektiere als Jim Ross und einen solch genialen Kommentator wie ihn, der die Matches und vor allem die Big-Matches mit so viel Feuer und Leidenschaft kommentiert wie er, wird es kein zweites Mal geben. Trust Me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Excellence of Executionwrote on 10.03.2008:[10.0] "Für mich gemeinsam mit Gorilla Monsoon der beste pbp Kommentator ever!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Grissomwrote on 17.02.2008:[8.0] "Fand ihm vor ein paar Jahren etwas besser, aber er ist immer noch der beste Kommentator den die WWE hat. Er kann die Matches gut"Erzählen" und weiß immer, wann der richtige Zeitpunkt ist auch mal lauter und emotionaler zu werden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Mick Funkwrote on 26.01.2008:[10.0] "Der Kommentator überhaupt. Hoffe er macht es noch lange."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Zichowrote on 20.01.2008:[10.0] "Für mich der beste Kommentator und Color-Kommentator denn die WWE je hatte. Seine Emotionen reißen einen bei großen Matches noch mehr mit und daher Bestnote für JR"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Bullit69wrote on 13.01.2008:[10.0] "Er is der Beste! Und mit Jerry im Schlepptau bilden sie das beste Kommentatorenteam!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: jimpanse1980wrote on 06.01.2008:[10.0] "Durch seine ruhige, fast erzählende Kommentierweise ist er legendär geworden. Sicher der Beste im Business"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: DrBreswrote on 16.12.2007:[8.0] "Hat sich verdient gemacht, was eine gute Benotung gerechtfertigt. Klar: JR hat nachgelassen, er hält sich aber tapfer, wenn man bedenkt mit welchen Gesichtsproblemen er zu kämpfen hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: jerseyhoolwrote on 02.12.2007:[10.0] "Unzweifelhaft einer der besten am Kommentatorenpult - ich wuerde nur Gorilla Monsoon noch ein Stueckchen weiter nach oben hieven. Nichts desto trotz untrennbar mit dem Wrestling verbunden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Maxi22wrote on 06.11.2007:[4.0] "JR ist nur noch ein Schatten seiner selbst. Sicher, für Big Matches ist er immer noch gut, aber sonst klingt er so, als würde ihn nicht mehr interessieren, was im Ring passiert. Im Vergleich zu früher (Attitude) hat JR stark abgebaut."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Thomas Carlsonwrote on 28.10.2007:[10.0] "Wie oft wollte man ihn schon von dem Pult weghaben. Vinnie hat es oft genug versucht aber irgendwie sitzt Ross doch fast jedesmal neben Lawler. In der WCW war er gut aber da gab es damals noch Wrestling. Hat sich dann zu einem guten Sports Entertainment Kommentator entwickelt. Vergessen wir mal seine erzwungene Heel Zeit oder das er im Office manchmal fragwürdige Entscheidungen getroffen hat. Ist eine Legende und solange er lebt wird er sicher Kommentator bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: dariawrote on 27.10.2007:[8.0] "sicher von den derzeitigen Mainstream-Kommentatoren der Beste"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ghostwrote on 19.10.2007:[10.0] "Ganz klar bester Kommentator der WWE/WWF! Es gibt einfach keinen besseren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The-Real-Diablowrote on 07.10.2007:[10.0] "Gibts nichts mehr zu zu sagen... der wahrscheinlich beste Kommentator aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Neuhofwrote on 02.09.2007:[10.0] "Genialer Kommentator; zwar sind einige Kommentare etwas markig, aber ich gehe davon aus, dass das die Vorschriften sind, die den WWE-Angestellten gegeben werden (btw auch bei Zapf, Schäfer, etc. ). Hat mehr als nur einen eigenen Stil, ist u. a. durch seinen Dialekt nicht gerade der typische 08/15 Announcer. Alles in allem: 1!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: shannonmoorewrote on 19.08.2007:[10.0] "Der Mann hat ne Stimme und ne Überzeugunskraft dem würde ich auch Yu-Gi-Oh! abkaufen wenn er sie hyphen würde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Hunter2007wrote on 14.07.2007:[10.0] "Er hat die Stimme, die die Matches so aufregend machen. Es gibt keinen besseren als J. R. ... What a Slobberknocker!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Sabu316wrote on 12.07.2007:[10.0] "Ein Gott am Mikrofon. Gute Matches kann er zu sehr guten Matches machen und schlechte Matches kann er mit seinem Kommentar auch erträglich gestalten. Was er wirklich wert ist hat man gesehen als die WWE kurz auf ihn verzichtete."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: real americanwrote on 12.07.2007:[10.0] "Unglaublich guter Kommentator! Seine Klasse zeigt sich schon darin das die WWE ihn verschwinden lassen wollte weil er ihnen zu hässlich ist und ihn dann aber sofort zurück holte weil er mit seinem Fachwissen, seiner Liebe zum Busines und seinem guten Draht zu praktisch jedem im Lockerromm einfach unersetzlich ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ReY-mYsTeRiOwrote on 24.06.2007:[10.0] "er hat zu 100 % verdient in der hall of fame aufgenommen zu werdenJ. R IS THE BEST"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Meiner Meinung nach der mit Abstand beste Kommentator aller Zeiten! Außerdem gibt es nur ganz ganz wenige, die solch eine Leidenschaft für das Business haben wie er! Daher ein überaus verdienter Hall of Famer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: MasterOfPuppetswrote on 24.06.2007:[10.0] "Manche Matches wären ohne seine Stimme niemals so in Erinnerung geblieben... He is the one and only.... Jim Ross."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Crusherwrote on 24.06.2007:[10.0] "Ich find ihn echt klasse! So einen guten Kommentator wird es nicht so bald wieder geben. Hat mich echt für ihn gefreut, als er in der Hall of Fame aufgenommen wurde!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Mr Wrestlemaniawrote on 24.06.2007:[10.0] "JR ist der beste kommentaor aller zeiten! SLOBBER KNOCKER"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Hardcoremaniacwrote on 24.06.2007:[10.0] "Einfach der beste! Dieser Mann ist echt großartig, an ihn kommt keiner ran. Die Aufnahme in die HoF hat er sich eindeutig verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Blue Meaniewrote on 24.06.2007:[10.0] "Zusammen mit Lawler der Beste Kommentator. Er bleibt (meistens) objektiv, kann dennoch mit seiner Fachsprache ala "Gouverment Mule" oder "Slobber Knocker" unterhalten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Carlito Cenawrote on 24.06.2007:[10.0] "Die Kultfigur des Kommentars - ich sag nur mal Slobber Knocker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The Mountiewrote on 24.06.2007:[10.0] "Dass die WWE ihn zurückholen musste, obwohl sie ihm zu alt, hässlich und unmodern ist, sagt alles: Keiner kann Good Old JR am Pult das Wasser reichen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Conquistador37wrote on 08.11.2024:[7.0] "Not really my style - because I prefer people that help elevate others more than themselves but he absolutely helped make Big Van Vader/was inarguably the pivotal moment in Vader's career. Hansen also brought Lex Luger to Luger's pinnacle and their feud is underrated gold. I feel there was also strong chemistry and "eyes glued to the screen" stuff with Rick Martel. If he had a bigger hand in putting over other workers I would rate him even higher but I think he squandered his talent in the name of personal greed, still a solid 7 though - making Vader ranks high with me and good Stan Hansen can be excellent."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Zak22wrote on 07.11.2024:[8.0] "To make some things clear, I'm only really familiar with Stan's work in All Japan (and like 2 AWA matches), Stan had a varied career and I have some gaps. Stan was not a slick, stylish wrestler, Hansen was a big, brutal, mean bastard and I love it. Hansen's work was stiff and hard hitting which made his matches quite special and he often played the role of what I call the "test", by this I mean that if someone wanted to be a star in All Japan, they had to pass the "Hansen Test", both in kayfabe and in shoot, could they take and overcome a beating by this brute, and it makes for some good in-ring storytelling. I keep calling Hansen a brute or brutal but that is a good thing and shouldn't detract from the fact that Hansen was a pretty good worker who could work a decent pace with younger guys. Hansen is one of, if not the greatest Gaijin in Japanese wrestling history. Legend."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: TPGwrote on 30.10.2024:[9.0] "Stan Hansen is a name of legend. Very occasionally would he have an off day, and he could deliver classic after classic when he's on-form. The Western Lariat, even today, it a finisher to be feared. I think that he's best at playing the heel, and that run is more fondly remembered. I heard that Hangman Adam Page has cited Stan Hansen as one of his inspirations, and he sure as hell picked the right guy. Both have these dominant and violent cowboy characters, as well as a similar wrestling style."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: kaeleighwrote on 26.09.2024:[9.0] "MOVEZ sind geil aber manchmal braucht es einfach nur eine krachende Western Lariatooo! Stan Hansen macht mit so wenig so viel. Kaum ein Wrestler schaft es durch seine Aura und Legende ein Puplikum so in seiner Hand zu haben wie die Lariat!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: JediSaiyanMaster1203wrote on 21.08.2024:[10.0] "To me, the best cowboy wrestler, no doubt in my mind. Here you have a man who was struggling to get over in America, trying to find his place as a star, decided to go over to Japan and-arguably-became the greatest gaijin wrestler of all time. This man is as tough as you can get, someone who's not afraid to get stiff with his opponents and can really curate a fantastic big hoss type match where he and his opponent trade bombs. A very underrated style of wrestling if you ask me, nothing quite like watching big men (fat or muscular) just going at it, bumping into and/or slamming eachother, hitting powerhouse moves or just straight up striking eachother. Stan Hansen is in that special type of category of wrestlers like Minoru Suzuki who are at their best when they become obstacles for their opponents, a test of strength kind of wrestler, someone who their opponents keep trying to take down with hard hitting moves and see if they can do it. And how can I forget to discuss what Stan is also known for, The Lariat. To me, the best lariat comes from Stan Hansen, many have done great ones, but his is so brutal looking and he really gives it his all. I also have to bring up, his look was great as well. Coming out with the cowboy hat, the vest (that Steve Austin most certainly took notes from), the chaps, swinging a bull rope around while chewing tobacco made him look like a total badass and a very believable cowboy, he nailed the look to a tee, oh and he's very charismatic. Overall, a good contender for best wrestler from Texas (which is saying A LOT, considering how many greats come from that state) and best gaijin wrestler (again, BIG compeititon for that title and he could hold it), there will never be another Stan "The Lariat" Hansen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: KobashiChopMewrote on 03.08.2024:[8.0] "Hansen is the best of the cowboy gimmicks out there, current day included. That said, a lot of his work most people will find boring. Me, personally, I am a fan of how he worked, but I can understand how it can also not be peoples cup of tea."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: ABQMIKEwrote on 25.04.2024:[10.0] "The last outlaw gunslinger. He was the ultimate American in the Puro scene. His lariat was The Lariat, violent, brutal, and beautiful."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: cartercr12wrote on 26.02.2024:[10.0] "So good, so freaking good in the ring. His booming voice and hard hitting style. The perfect American in Japan. Basing off his matches with Baba and Andre. One of very few people who could actually wrestle with Andre. An old school gem, one of the best. Such a good gimmick and look."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Luna100wrote on 01.12.2023:[7.0] "I got tired of Hansen quickly in my 90s All Japan Pro Wrestling watch, he can go hard occasionally, but way too often is dull as hell, and did not jell well with the style too well, especially against Mitsuharu Misawa - who had one of the worst rivalries I have watched through (truly terrible at times)."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: SavageTygerwrote on 28.09.2023:"LOVE Stan Hansen! An absolute machine that never seemed gassed whether he fought 5 minutes or 30 minutes it was non-stop, hard-hitting action. Hansen and Brody is the most dominant tag team of all time IMO and both guys were massive draws everywhere they went."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: MattHallwrote on 14.07.2023:[9.0] "This motherfucker can fucking Lariat the shit out of you and knock your head off of your body. Haven't seen much of his career, but he is an icon in Japan, and had a run with the AWA heavyweight title, His match with Hogan in 1990 was very good. The Lariat is one of the best finishers in wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Giantfan1980wrote on 07.06.2023:[7.0] "If you need a guy for a slobberknocker, then this guy is the wrestler you call! Saw a few of his matches here in the US but he made his bones over in Japan and that's pretty unusual for an American wrestler to spent most of his career in Japan and become one of the most well known wrestlers of his day and could possibly be the best of the "cowboy" gimmicks. LARIATO!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Puro113wrote on 02.02.2023:[10.0] "You gotta love Stan Hansen. The big tough Texan set the template for modern day hoss matches, and his work in Japan is legendary. Probably the best brawler to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: benh2wrote on 13.01.2023:[9.0] "Nobody could brawl like Stan Hansen could. Absolutely perfect in the big gaijin heel role and was a great adversary to all the babyface heroes. He was on the stiff side thanks to his partial blindness but that suited the Japanese style of the time and right through the 80's and into the early 90's he was excellent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: TheWrasslinHardcorewrote on 24.12.2022:[9.0] "Stan Hansen is one of the best brawlers of all time. His matches are always entertaining and have an element of realism and brutality to them due to his stiff strikes. His match with Kenta Kobashi is truly one of the best matches I? ve ever seen. If I saw more Stan Hansen I could easily give him a 10 but I? ll stick to a 9 for now"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: SquilliamFancysonwrote on 12.06.2022:[7.0] "An intimidating brawler, good at being a gaijin heel, and decent at psychology. Not spectacular, but was able to contribute to great moments."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: UWF Rules Enthusiastwrote on 21.04.2022:[7.0] "Stan Hansen was a very good brawler, but he was somewhat limited because of him purely being a brawler. His move set was not very diverse. However, he was good at what he did, and he was involved in some great matches."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: GriffinXwrote on 02.02.2022:[10.0] "Hansen's role as the big wild and dangerous American in Japan drew a lot of money. The man managed to work with so many different types in his career and make it work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: benny5bellyswrote on 17.01.2022:[10.0] "The last gunslinger in town. I love Stan. Every little thing he does just adds so much to any given situation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: XXDoubleHHXXwrote on 11.01.2022:[10.0] "Did this guy ever have a bad match' Or a bad promo' The answer is no. He's a hard hitting cowboy that is determined to make it look as real as possible and succeeds, the guy will lariat you to death just for crowd cheers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: MrJabroniCamelClutchwrote on 02.09.2021:[10.0] "Most likely Japan most beloved and legendary gaijin , has had quality matches with the likes of Kobashi , Kawada , Tenryu and Giant Baba .... an icon of puro."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Kungwrote on 26.03.2021:[9.0] "Every gaijin wrestling in Japan for the rest of time will be rightly compared to "The Lariat". I'm not sure if he's the greatest American to wrestle there, but he's in the Top 3!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Ma Stump Pullerwrote on 21.02.2021:[9.0] "Hansen was fantastic: never got a good grove in the early days but his later work was intense, unique, and unlike anyone else at the time. His brawling style mixed in with his size and presence made for remarkable matches when paired with a strong babyface as the monster foreigner, able to beat them down and grind them into submission with his ability to just stiff his opponents to death. Guy was such a heel that he turned all the other way and became a huge hit in Japan, one of their biggest stars for a pretty long while. Even today I'd say he's definitely still there in the top five in terms of popularity. Hansen wasn't perfect and a lot of his matches can be hit or miss: not everyone is able to convert Hansen's way of working into tangible good matches and he notably wasn't particularly strong when the other guy isn't a convincing face and many of his matches devolve into heatless arm work, but Hansen for the most part, either in a chaotic tag team with Brody or terrorising the Super Generation Army is great viewing, and even Hansen in his later years as a banged up and very limited vet is interesting in how he presents himself as a more vulnerable but still capable of smashing someone's head in version of himself. To this day I think no one has touched Hansen in terms of overall package, and I'm not sure we'll ever see someone like him again."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Ratewrestlewrote on 12.07.2020:[8.0] "Fantastic wrestler in AJPW, for years Hansen become the go man and you can understand why. He was just no nonsense and put brute strength. The Lariat is still one of my favourite moves"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: JokeyZockeywrote on 16.09.2019:[10.0] "Der größte und beste Gaijin aller Zeiten! Gemeinsam mit den Four Corners of Heaven machte er das Puroresu in den 80ern und 90ern zu der großen Attraktion, die es heute ist. Dieser riesige Texaner hat definitiv einen Anspruch auf den Titel ''Härtester Hund der Wrestling-Neuzeit'', was er alles in seinen Matches austeilte (und einsteckte) war teils einfach nur pervers, vor allem natürlich die legendäre LARIATOOOOO! Doch Hansen war nicht nur hart, sondern auch wirklich ein extrem starker Wrestler. Viele grandios gute Matches gegen wie bereits erwähnt die Four Corners of Heaven und weitere Gegner, der Cowboy lieferte eigentlich immer ab. Im Gegensatz zu vielen seiner Konsorten hörte er auch rechtzeitig den Schuss und hinterließ so eine wirklich beeindruckende Legacy, die schließlich auch nichts anderes als 10 Punkte zulässt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Zo-Zuwrote on 09.09.2019:[10.0] "One of the best wrestlers, certainly the best brawler, to have ever stepped into the ring. Everything Hansen did he did with gusto, investment and gravitas. Often imitated, never duplicated, a true one-of-a-kind act. My favourite wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: JEK 1991wrote on 24.07.2019:[10.0] "Great performer in the ring. He is legendary in the AWA and Japan. Great heel! He was one of the first wrestlers to bleed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: PuroresuLoverwrote on 08.06.2019:[10.0] "King of Lariat, supreme heel, and the Ultimate Cowboy: Stan Hansen! Hansen is the representation of old-school wrestling and Puroresu, the man is simply awesome."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: RatingsMachinewrote on 23.10.2018:[8.0] "Stan Hansen is definitely an acquired taste, because he doesn't do anything overtly fancy that immediately grabs your attention. But stick with him, and you'll be rewarded a classic old-school brawler, who has been part of some great matches."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Makai Clubwrote on 14.10.2018:[10.0] "A legend of the entire sport. From his iconic entrance to his stiff style including his lariat which is iconic by itself. Fantastic brawler with many classic matches in the USA and Japan. All time legend IMO."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: jamzell00wrote on 13.04.2018:[10.0] "I don't know what it is about Stan but good god I love him. His super stiff style along with his intense presence made for some unforgettable matches and moments. The fact he may be the most beloved gaijin of all time despite almost killing crowds during his entrance is some amazing stuff. Yes he did tend to get blown up easier than most all time greats but his body of work is still great.  He is the reason I love Kobashi so much and that alone is enough for me"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: taabr2wrote on 11.09.2017:[10.0] "In my opinion the greatest gainjin in Japanese wrestling history. Hansen was an awesome brawler and played the bully heel role to perfection. Also the guy has easily the best lariat I have ever seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Squared Circlewrote on 30.08.2017:[8.0] "Really enjoyed watching him perform.  Hard hitting, stiff style with intensity.  Although, he was better in tag teams as he would lose steam after awhile and get sloppy in singles matches.  That costs him a point and of course the botch that almost ended Bruno's career drops a point."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Blood Pumpwrote on 04.04.2017:[9.0] "Had the best clothesline (or Lariat) in the business whether he was in the states or Japan. Stan cemented himself as a hard hitting worker who put on some of the most physically brutal matches known to man. His bout with Vader is a hard watch but a perfect example."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: NastyYaffawrote on 01.01.2017:[10.0] "A legend - Stan Hansen is one of the greatest wrestlers of all-time, amazing offense, great selling when needed to - a total beast."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Mizzle Assault Antwrote on 01.05.2016:[10.0] "An absolute all time great, honestly he has a case for the best ever. His physicality is next level stuff, his aura is amazing, the intensity and violence he can bring is off the charts. He had a wonderful career in Japan but has many classics all around the world. He helped to shape modern puro more than most people realize. A legend in every way."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: mdkarlwrote on 30.10.2015:[10.0] "Hansen wasn't politically compatible to work in a North American promotion for very long.  AWA actually gave him their title in hope he could save their dying company and Hansen said thank you but then promptly headed to Japan for a tour leaving AWA humiliated and forced to strip the title from him in absolute embarrassment.  In the ring, Hansen didn't care who he was wrestling... he was going to be stiff.  He took it as well as he gave it, but his matches were always going to be worked realistic.  This made Hansen a huge favorite with certain audience.  In Japan, Hansen would rank as one of their top 10 wrestlers of all time.  In a company like WWE after the Hogan Era, Hansen would have really struggled to be much more than a mid-card act like Vader did.  Personally, I love this type of wrestler and grade him a 10 but acknowledge that he never could have main evented one of the very large North American companies."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Viper99wrote on 11.04.2015:[10.0] "Kann "Tons of Spunk" nur zustimmen. Hansen ist wohl DER beliebteste Gaijin schlechthin. Dazu noch die unglaubliche Matchpsychology und die starken In Ring Leistungen egal ob als Stiffer Brawler, Grappler oder so als "High Flyer"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Tons of Spunkwrote on 11.04.2015:[10.0] "Das japanische Publikum muss gewusst haben, dass in diesem Texaner das Kämpferherz eines Japaners schlagen muss: Je mehr Matches ich mir von Stan Hansen ansehe, desto mehr stockt mir der Atem, was dieser Berg von einem Mann im Ring alles zeigen konnte: Hansen war natürlich berüchtigt als stiffer Brawler, aber auch als Powerhouse, der hier und da auch mal durch die Luft segeln konnte, überzeugte er auf ganzer Linie. Außerdem hatte Hansen großartige Qualitäten als Seller und Matchmaker, der jeden Gegner (auch in der Niederlage) toll aussehen lassen konnte. Er fand immer den richtigen Ton für die jeweils erzählte Matchstory und brachte dabei auch maximalen Einsatz. Auch fällt mir beim besten Willlen kein anderer Wrestler ein, der mit 140 kg so außerordentlich konditionsstark war: Mit Mitte 40 noch 20+ Minuten voll aufdrehen zu können, ist einfach unglaublich. Selbst die Four Corners mussten sich regelmäßig abschinden, wenn sie gegen ihn in den Ring stiegen - und das auch im Kampf um die Publikumsgunst: Zur Hochzeit seiner Popularität wurde Hansen nicht weniger geliebt, als die Lokalmatadoren. Er machte den Sack rechtzeitig zu und hinterließ ein großartiges Lebenswerk, das noch heute als Paradebeispiel dient, wie unterschiedlich eine amerikanische Wrestling-Karriere in Fernost verlaufen kann. Hut ab, Fuchinkan!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Wrassler9000wrote on 31.08.2014:[10.0] "Stan Hansen was one of those guys that made Japanese Puroresu watchable in Japan. Although he was born an American, people consider him a Japanese legend. He definitely deserves this rating."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Alex Maedawrote on 08.09.2013:[10.0] "Zusammen mit Vader der beste Gajin aller Zeiten. Die menschliche Definition von Intensität und Glaubwürdigkeit. Lariato!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Leonewrote on 13.12.2012:[10.0] "Stan "The Lariat" Hansen.  When it comes to wrestling, this is a man who rivals Stone Cold Steve Austin as being the greatest badass from Texas.  When working in America, he was a strong heel, but his potential was barely scratched there.  In Japan, to this day, Stan Hansen remains one of the best gaijin wrestlers they've ever had.  His entrance was awesome.  Due to his poor eyesight, his stiffness was accidentally legendary.  His Lariat finisher was as stiff as the swing of a baseball bat.  He is on the list of men who have body slammed the Andre The Giant.  When he was into his 40s, he was putting on some of the best matches of his career.  Great respect for the guy.  Fun to watch, and he was great on the mic as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Katschewrote on 08.08.2012:[10.0] "für mich der beste brawler aller zeiten! seine schlachten in den neunzigern bei all japan warem klasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Rated R Champwrote on 29.12.2011:[10.0] "Muss man zu Hansen noch groß etwas sagen? Nicht umsonst stand der Mann in Japan mal auf einer Stufe mit Kobashi & Co. Die Killer-Lariats kamen ja scheinbar von einer Sehschwäche, die ist mir aber in seinen Matches sonst nie aufgefallen und das ist auch schon ne Leistung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Kenshin Uesugiwrote on 26.05.2011:[10.0] "Wer Stan Hansen nicht mag, der mag auch kein Wrestling das ist ganz einfach so. Wer es schafft als Texaner in Japan so geliebt zu werden, wer so oft die Triple Crown hielt und dabei noch so cool und natürlich auszusehen, Wer der Inbegriff einer fiesen Schlägertype wird, wer selbst jetzt noch auf dem gesamten Globus kopiert wird, der ist wahrlich eine Legende. Wenn es schon solche dämlichen Chuck Norris Witze oder so gibt, dann auch über den Mann vor dem eben dieser, Vin Diesel, Jason Statham, Schwarzenegger und Sylvester Stallone reiß aus nehmen würden. Aus den einfachen Grund weil sie befürchte müssten das Stan „The Lariat“ Hansen ihnen die Schädel abschlägt ! ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: jerseyhoolwrote on 29.09.2010:[8.0] "Der Mann, der dem guten Vader das Auge aus der Höhle prügelte & selbst so gut wie ein an Grauem Star erkrankter Luchses sieht. Stiffer Worker, was aber durch seine Sehschwäche etwas gemildert wird. Zweifelsfrei zu recht eine Legende in Pro Japan Wrestling!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Boggenauerwrote on 19.08.2010:[10.0] "Ich habe mir nun einige alte Matches von Hansen angeschaut und ich finde das dieser Mann echt Unglaubliche In-Ring skills hat sein Lariat sah wirklich unglaublich gefährlich aus, immer wenn er den Lariat ausgeführt hat hab ich geschaut ob dem gegner noch der Kopf an der richtigen Stelle sitzt. Einfach Krasse Leistungen von Hansen deshalb von mir 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Eddiewrote on 29.10.2009:[8.0] "Old School Heel, der für meine Begriffe aber etwas zu langsam wrestlet.. Aber man kann ihm schon gut zugucken, 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: hatebreederwrote on 19.10.2009:[10.0] "Nach seiner Western Lariat steht niemand so schnell mehr auf. Wahrscheinilch der erfolgreichste und bekannteste Gayjin aller Zeiten! Lariattooooo~ !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Gustelwrote on 07.08.2009:[10.0] "Allein die Story mit den Augen is mir 10 Punkte wert, zum schießen das Ganze."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Nachtfalterwrote on 03.07.2009:[9.0] "Ich habe ihn in Japan sogar den im Ring ja nun wahrlich nicht übermäßig talentierten Hulk Hogan zu einem richtig guten Match ziehen sehen, was schon einiges über Hansens Fähigkeiten aussagt. Keine Bestnote nur, weil er den letzten Schritt zum Topstar in den Staaten nie geschafft hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Baszdmegwrote on 05.09.2008:[10.0] "Mein Lieblingsamerikaner auf japanischem Boden; die Stiffness wollten viele kopieren, aber nur die wenigsten haben es geschafft. 10 Punkte für DIE Gaijinikone!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Pulpulwrote on 31.03.2008:[10.0] "Der wohl beliebteste Gaijin aller Zeiten. Unfassbar was Hansen für Reaktionen hervorgerufen hat. Seine Art im Ring aufzutreten, einzigartig. Ich verneige mich vor einem der Größten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: LexLuger4everwrote on 24.02.2008:[8.0] "Seine Erfolge in Japan sprechen Bände, da besitzt er sowas wie Legendenstatus! Ansonsten wurde er in den Staaten oftmals fehleingesetzt, so z. B. in der WCW in den frühen 90ern. Er ist dafür bekannt, einer der härtesten Brawler zu sein, die man jemals gesehen hat und nach seinem Lariat steht niemand mehr auf. Da würde wohl sogar JBL vor Neid erblassen, aber der hat ja wieder andere Stärken!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Wolfpacwrote on 20.12.2007:[8.0] "Ich mag ihn aber eins verstehe ich nicht: Wenn z. B. ein Ahmed Johnson einen Wrestler verletzt heißt es sofort das er gefeuert werden soll und ein schlechter Wrestler sei, aber wenn Hanson jemandem den Hals bricht ist das cool?"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Hirnklopswrote on 20.12.2007:[10.0] "Die kultigste Kante, die jemals einem Menschen den Hals gebrochen hat. Hansen war ein Halbgott in Schweiß und Blut, und Chuck Norris hat bei ihm gelernt. Sex, Drugs & LARIATS~!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Moshpit-Hooliganwrote on 12.11.2007:[10.0] "Einer der härtesten Wrestler aller Zeiten. Er wurde oft kopiert doch nie erreicht (nix gegen JBL, aber er ist auch nur eine Stan Hansen Kopie). Dazu wohl beste US Wrestler in der Geschichte von AJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Rashomonwrote on 23.07.2007:[10.0] "Unglaublich einflussreicher Wrestler. Noch heute ist das Lariat der wohl meistgebrauchte Finisher in Japan. Und auch in Amerika gab es viele Leute, wie beispielswiese JBL, die von ihm beeinflusst wurden. Einer meiner All-Time Favourites bei den Schwergewichten..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Brando Calrissianwrote on 01.11.2024:[10.0] "One of the greatest to ever do it, but is often forgotten about or not mentioned. A real shame as Go Shiozaki is absolutely incredible in the ring and can get any crowd behind him as the incredible underdog he is despite being so gifted in the ring. I don't know what else to say about him other than...go watch his matches. He's great!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: nabigoyewrote on 28.08.2024:[10.0] "Einer der besten Wrestler der Welt (zumindest bis vor ein paar Jahren). Großartige Chops. Legende bei NOAH, muss für mich gleichzeitig immer mit Marufuji genannt werden. Sein 20/21 GHC Titelrun war großartig. Zudem hab ich irgendwie ne starke Connection zu ihm."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Joe907wrote on 21.07.2024:[10.0] "One of the best wrestlers in the world. Shiozaki's chops look very painful. Consistently been of the best in-ring workers all-round since the mid-2000's. The way he structures his matches are excellent. Good story-teller. Even in his 40's, he puts on awesome matches. He held NOAH on his back and will be remembered as a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Zak22wrote on 11.06.2024:[9.0] "Really talented wrestler who has had some fantastic matches over the years, he does have some of the "I chop you, you kick me" booking which I don't like but his talent is undeniable."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: DangoDaisukiwrote on 01.10.2023:[7.0] "Für mich ist Shiozaki schon immer ein Oberer Midcarder, der sehr stark gepusht wurde. Charisma ist in meiner Meinung wirklich fast gegen 0 und vom Kämpfen her sehe ich ihn gerne, aber nicht in langen Main Events, da ich mich dann etwas langweile da er mich nicht komplett catcht."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Wrest lingaddictionwrote on 18.05.2023:[10.0] "Shiozaki has some of the most painful looking and sounding chops in the business. Works well as both a tag team wrestler and a singles wrestler. You can't deny the greatness that is Go Shiozaki and the level of presteige that he's brought to NOAH and the GHC Heavyweight Championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Wrestling Foreverwrote on 02.05.2023:[10.0] "Absolute Legende wie Naomichi beide sind bei NOAH Triple Crown Champion. Kam auch wieder von einer langen Verletzung zurück, wo man auch sicher dachte das war es mit Go Karriere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: TheOneAndOnlyCactuswrote on 03.04.2023:[10.0] "NOAH's Strong Arm is an amazing striking babyface, with tons of charisma and great selling ability, combined with an expert understanding of wrestling psychology. An intense fire, determination in his eyes, you really want to root for him, which was important as his prime started when NOAH was in its darkest period. Shiozaki was one of the greatest wrestlers of the 2010s, is still going strong today, and I would argue is one of the greatest of all-time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: BadAssTranslateTradingwrote on 20.03.2023:[9.0] "While Go's career has taken a different path than many would have visioned for him, its hard to deny that hes been a fantastic performer everywhere hes been. His original NOAH run, going from Kobashi's son to the next top heavyweight was great, his All Japan run was great, and his 2015-present NOAH return has been the best of all of them. Whether as an ace, a challenger, or a tag guy, Go has an awesome hard hitting moveset and always puts forth his best effort."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Logue38wrote on 28.02.2023:[10.0] "He is the best in the world. His chops, selling, match structures, excellent babyface charisma, etc. He's one of the best wrestling storytellers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Shioharawrote on 18.01.2023:[10.0] "Best wrestler in the world (a tie between him and Miyahara) and has been for years now. Kenta Kobashi's style remains alive thanks to him. Single handedly carried NOAH during the pandemic era. Go Shiozaki IS NOAH"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: calebmullingsrasslinwrote on 20.09.2022:"Go Shiozaki is in my opinion the best wrestler in the world. Still in his prime at 40 you could pit Go against any competent wrestler and get a banger of a match. He's what I aspire to be when I wrestle."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: dnmtwrote on 17.08.2022:[10.0] "Despite some quirks and stutters early on (that were mostly outside of his control), Go Shiozaki is arguably the greatest wrestler of his generation. Someone who embodies the spirit of what we all love about Pro-Wrestling NOAH - their history, their intensity, their determination - and keeps that aura about him every time he steps in the ring. I don't know of any other wrestler who so perfectly incarnates a promotion and all it entails. From the Kobashi style to the Misawa gear, there is a reason no one even bats an eyelash when he says "I AM NOAH"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: jamzell00wrote on 01.06.2022:[10.0] "That title match in 2018 against Sugi changed him and the tag run with Nakajima solidified him as an all timer to me. He finally unlocked that 2nd gear in him and became so fun and captivating to watch. He had always been an amazing wrestler but he wasn't the guy to carry a company. Then in comes 2020 and him beating Kaito for the belt. Starting his best run ever with the phrase "I am NOAH". He put them on his back and was determined to bring NOAH back to the top.The company may not look the best right now with its booking but he deserves so much credit for getting more eyes on the current NOAH product during a pandemic no less. Completely different guy nwow"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: benny5bellyswrote on 02.02.2022:[9.0] "As anyone ever had louder chops than Go. He has been with NOAH through a lot of a lean years and carried them during the first year of the pandemic"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: GriffinXwrote on 19.01.2022:[10.0] "Go was always one of those guys that was very good but seemed just short of great. Than his last GHC title run he put NOAH on his back at a bad time for the company and the world and carried it to better time. Along the way he broke into that great level"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Lalo Camposwrote on 20.09.2021:[10.0] "One of the best wrestlers that I have ever seen, the last pupil of Misawa and the second best pupil of Kobashi (the 1 is KENTA)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Ma Stump Pullerwrote on 02.06.2021:[9.0] "I didn't feel Go very much in his early years: very much bland, not a lot to him beyond a generic appearance and okish wrestling. I never quite got on board like Kobashi and the rest of his peers who thought he was going to be a top tier ace and groomed him that way, and I do feel like that damaged his rep in later years, because he just wouldn't make that expectation in terms of numbers. He'd always have that shadow of burden as being the top guy and, while I feel like he was a fairly good performer and still to this day has strong elements of storytelling and pacing that few can protest to have in his matches, he's definitely gotten a lot better from those days, refining his style and look to match his status as the face of NOAH for years to come. His 2020 title run was, for the most part, quite good barring some of his longer matches which I find he doesn't do well. Go is suited for 30 minute matches where his selling is not too exaggerated and prolonged to be unrealistic, but long enough that he can sell damage effectively. He's great at putting over threats and showing subtle changes to his style. He can brawl, work technical, his offence looks fantastic for the most part, and he's a solid tag specialist as well. He's a student of the game no doubt, the only real issue is that most of his career hasn't been his 2020 peak, and Go has had his fair share of mediocrity to go around, unlike Tanahashi or Suwama who even in their weak years as aces have still pulled out some great bouts."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Golden Loverwrote on 28.03.2021:[9.0] "In my opinion the best wrestler in 2020, he was such a boss during his title reign knocking out a banger in basically every big match. Can't wait for his comeback."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: ExcitingProWrestlin3wrote on 16.03.2021:[10.0] "Go Shiozaki is a prime example of a protégé of one of the greatest of all time that turned out fantastically. Sure he may seem like a carbon copy of Kobashi at some points, but most of the time, he seems to be forming a niche and legacy of his own as one of the many faces of NOAH. He is NOAH, for he has helped ascend it from it's darkest of times along with the rest of the talented roster. If I had made this comment in 2019, I would've likely given him an 8 or a 9, but his 2020 run has allowed me to fully understand the extent of which he can go. He really cut down on a lot of weaknesses people point out about his in ring skills, and truly has provided some of the greatest matches of COVID era wrestling. #WEARENOAH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: PokemonGoShiozakiwrote on 09.03.2021:[10.0] "My man. Dude revitalized NOAH and really put it back on the map with his recent title reign, which had banger after banger."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Bushidospirit22wrote on 01.03.2021:[10.0] "His recent title reign was probably the best championship reign since his mentor Kobashi's reign as GHC Champion. Every single title match during his reign told a unique story and all were amazing in their own way. Wrestler of the year in 2020."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: ShiningWizard109wrote on 27.02.2021:[10.0] "Go Shiozaki has always been a personal favorite of mine, however, he really proved it to the world in 2020. His GHC Heavyweight Championship reign went above and beyond, and can truly be considered as one of the best reigns of the belt. He is the iron man for NOAH during this pandemic, and gives his heart in each match he has."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: dinosaurjrwrote on 05.02.2021:[6.0] "Shiozaki isn't bad but to me he has never been able to fill the shoes of his master. He's always a solid upper midcareer than can be pushed to the main event when need be however he isn't very charismatic and In the ring he's just good and occasionally great"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: ZSJGunWwrote on 03.02.2021:[10.0] "One of the best of the world. This man is just pure gold. His current title reign is being just one of the best I've ever seen. He just can't stop creating masterpieces."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: pierreMinnewrote on 28.01.2021:[10.0] "Am I really forced to tell why I give this guy a 10 ? I don't think so since he put classics after classics last year. And the better thing he was always a great wrestler ! From his wXw work at the end of the 2000's to today and even back in 2004 with Kenta Kobashi, he always impressed me in a ring. His match against Nakajima last novembre is one of my favorite matches ever. Very charismatic guy. Fantastic babyface. A true machine and one of the bests storyteller ever. That's why I'm giving him a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: AndoCommandowrote on 23.11.2020:"I've never been that fond of Go Shiozaki. While he's not an imitation of his trainer Kobashi as other wrestlers turn out to be, I still found him more of a downgrade to his contemporaries. That being said, 2020 has easily been Shiozaki's best year and if you've been following NOAH at all, makes a strong case for WOTY. Even the more controversial, artsy matches he's been a part of I still appreciate for being bold and ambitious during a time where many failed to adapt. Great performances against the likes of Kenou, Marufuji and Nakajima."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: elcompactowrote on 10.11.2020:[10.0] "2020's male MVP with not much competition. Every singles match I've watched this year, from Kiyomiya to Kenoh has been very good at worst and MOTYC at best. One of the most consistent wrestlers in the world today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: laldilawrote on 29.03.2020:[7.0] "I've yet to see the much heralded Fujita match from today, but my experience with Shiozaki is that he's pretty solid but nothing spectacular. For as much success as he's had, I can't really find any match or moment in particular to point to to say this is what makes him great or why you should care. He's a good hand for Noah to have for sure but I don't think I'd consider him great or a favorite for me."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: TOUGH AND HARDwrote on 23.12.2019:[7.0] "A worthy student of the greatest wrestler of all time, but also somewhat of an imitation. Though he never peaked as high as (Kobayashi) Kenta, Shiozaki has had a more consistent journey, and has yet to decline physically. Frankly, I think the way people use numbers on this website is absurd, and I think things like 9s and 10s should be reserved for complete wrestlers who rank among the absolute greatest of all time (eg. Misawa is a 9, and the more charismatic Kobashi is a 10). Shiozaki is more than good. He's great. However, he is not quite excellent, is not a draw, has many world title reigns to his name but is nearly just-another-guy in a promotion that can barely draw a thousand people. Shiozaki is a (sometimes upper) mid carder in a promotion on life-support, a promotion that spurned him for trying to make his way in the world and still hasn't fully opened its arms to him again. I wish he had gone to New Japan years ago, where he'd have more worthy competition to hone himself against."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: arrancarwrote on 26.09.2019:[9.0] "Shiozaki is currently one of my favourite wrestlers. It's very rare to find a wrestler who is excellent at not only wrestling but also portraying a character. Shiozaki has an air of royal arrogance about him, and in that sense he reminds me of Vegeta from Dragon Ball Z. Shiozaki's use of facial expressions is some of the best I've ever seen. He reacts to every single action that takes place in the ring. This isn't to say he goes over the top with big smiles or scowls to every little thing that occurs, but I can always tell what he is thinking after every single action he, his tag partner, or his opponent(s) take. It's incredibly immersive to see someone's emotions so clear, as I feel like I can really empathise with what he's going through. The main idea Shiozaki seems to communicate is pride. He looks absolutely disgusted when someone tries to even suggest they might be stronger than him, and his fiery reactions show how enraged he becomes at the idea of not being the best. When Shiozaki has a suitable opponent, he will exude a great sense of intensity as if he wants nothing more than to completely destroy them and prove his dominance. Even though the NOAH fans struggle to get behind him ever since he briefly left for AJPW, Shiozaki still manages to wow them with his brutal chops and great visual storytelling abilities, winning them over to some extent by the end of his matches. It's not hyperbole when I say that I see a lot of Kobashi's best qualities in his pupil."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: InactiveGuruwrote on 31.05.2018:[8.0] "Superb. he isn't perform but no one is but Go will give you his all every single time. You never have to worry about the match quality with Go. Superb performer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: My Bloody Doobwrote on 23.04.2018:[9.0] "The direct pupil of the legendary Kenta Kobashi, Go Shiozaki might not be remembered for living up to his senpai's great career, but he did build himself and NOAH enough to at least be remembered as a a wrestler who had amazing potential. He didn't have the same Western appeal that a few of his contemporaries had, KENTA and Marufuji, and I wouldn't even say he had as big of personalities as those guys either, but what he lacked in personality he made up for in his pure fighting spirit. He wouldn't always be the toughest or most skilled guy in the room, but no one could match him in his ability to give it his all no matter what. I think he would've left a greater impact if his big push hadn't come at the same time as Misawa's death, but at least for a few years he tried to carry on the legacy of NOAH even into it's recent dark days. If there's one thing that Shiozaki can live up to in Kobashi's name, it's the fire inside of himself."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: LrockBesnarwrote on 11.04.2018:[10.0] "This guy really has a star light. I think NJPW is exactly where he needs to continue his career. I do not know if there is room for him or not. Maybe he does not want to go, but i think Shiozaki's place is NJPW. It's still early for him. Go Shiozaki is a real puroresu star. He should not spend his career and his life with nonsensical tag matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Makai Clubwrote on 27.03.2018:[9.0] "People have said that he is generic and boring and I'm utterly shocked by those comments, Go is the far from generic. He is arrogant without being over the top with it but he has morals and he is disgusted by those who stray from the purity of wrestling. Whether it's his subtly smile when he comes up against and opponent who he thinks is beneath him or his scowl against people who he dislikes. He is an excellent wrestler as well. I'm loving his new look with him going all bald."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Chekerwrote on 06.05.2017:[7.0] "I find Go just a tiny bit overrated. I'm rarely impressed by his work - with a great wrestler he can have a great match, but with a lesser talent he's just okay. He's got a lot of intensity, I'll give him that."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: eldenaaaaawrote on 02.09.2014:[10.0] "Shiozaki is about experienced as they come for someone who's never wrestled for the WWE; he honed his skills in the NOAH dojo and he became somewhat of a protege of legendary grappler Kenta Kobashi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Matzinhowrote on 28.07.2014:[10.0] "Auch wenn sich das im Matchguide hier nicht niederschlägt - Shiozaki hat seit 2007 bestimmt 10 bis 15 überdurchschnittlich gute, sehenswerte Matches pro Jahr abgeliefert. Er ist einer der besten Schwergewichtler der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Lecterwrote on 06.06.2013:[6.0] "Shiozaki's decent. Good look, decent charisma, fine in-ring work though no classics yet. Not quite sure what he's done to warrant a 9+ average, though."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Valerionwrote on 04.12.2012:[9.0] "für ganz klar einer der besten Japaner, und mMn bei NOAH die Nummer 1, er ist charismatisch, groß, stark und hat sehr viel Impact. weiß durchaus zu gefallen!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Fountain of Misinformationwrote on 07.03.2012:[8.0] "Klar, ein klasse Wrestler und vielleicht aktuell die besten Chops im japanischen Wrestling, aber im Vergleich zu beispielsweise den New Japan-Stars wirkt er immer noch wie vor fünf Jahren, wird so nie einen "eigenen Charakter" haben oder "wie ein Star" wirken und genau das wäre notwendig, wresltlerisch ist ja alles da, aber dies alleine reicht in seiner Position eigentlich nicht mehr aus."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Top-Hardywrote on 12.07.2011:[9.0] "Klasse Wrestler und zurecht eines der Aushängeschilder von NOAH. Einziger wirklicher Star aus dem NOAH Dojo und dazu noch super charismatisch. Ist jetzt durch den Titelgewinn hoffentlich entgültig an der Spitze in Japan angekommen und hat das Zeug einer der Größten zu werden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Hennewrote on 14.03.2011:[10.0] "Erstaunlich charismatisch für einen Japaner. Dazu ein guter Wrestler, hat mich überzeugt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Raywrote on 14.03.2011:[9.0] "Von 8 auf 9, weil... mir kein Grund einfällt es nicht zu tun. Denn es gibt keinen!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Double Jwrote on 12.03.2011:[10.0] "Neben Hiroshi Tanahashi und Daisuke Sekimoto und vielleicht noch CIMA der beste Wrestle Japans. Unvergleichlich hart, gute Ringübersicht, symphatisch, DER MANN in Noah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Hu-Manwrote on 24.02.2011:[10.0] "Außnahmetalent aus Japan. Ich liebe seine Chops und bin immer wieder begeistert von seinen intensiven Auseinandersetzungen im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Matt4Wrestlingwrote on 20.02.2011:[9.0] "Besitzt eine durchaus gute Technik, nur scheint er oft die Geduld im Ring zu verlieren, wodurch er sich Fehler erlaubt, die einfach unnötig sind. Wenn er mehr an sein Temperament im Ring arbeiten würde, könnte man ihm in einem Atemzug mit Kobashi nennen!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Sandmannwrote on 04.05.2010:[9.0] "Sehr guter Wrestler der mich immer unterhalten konnte bei ROH. Auch wenn seine Zeit mit Sweeneys Truppe nicht so wirklich passte. In den Matches war er immer ein Garant für Topleistungen und sehenswerte Matches. Hoffe er kommt noch mal zurück"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: rv27wrote on 08.03.2010:[10.0] "Gefiel mir sehr gut bei den beiden ROH Events wo ich in der Crowd war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Super Dragonwrote on 28.01.2010:[8.0] "Ein sehr talentierter worker der in ein paar jahren eine große Zukunft in Japan haben wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: alexshelley84wrote on 07.01.2010:[10.0] "Großartiger Worker und auch einer der wenigen Japaner die Charisma besitzen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: DJ MaSchwrote on 06.01.2010:[9.0] "Mitlerweile schon mehr als ein Talent, ist mit seien 27 Jahren schon unfassbar weit. Rein wrestlerisch kann man ihn schon zur Weltklasse zählen, an der Ausstrahlung haperts noch ein bisschen, aber auch da ist er auf dem besten Weg. Hat sich ja auch in Amerika schon einen Namen gemacht. Der Mann ist DER kommende Top Star in Japan und die Zukunft von NOAH."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Anti-Championwrote on 22.12.2009:[9.0] "Mit Mitte/Ende 20 schon eine feste Größe, Super Wrestler.  Freue mich schon auf die kommenden Klassiker in den nächsten Jahren :)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Eddiewrote on 07.10.2009:[8.0] "8 Punkte derweiln für Shiozaki, da sein Match gegen Saito doch ansehnlich war. Er macht spaß, doch die Distanz zu Misawa, Kobashi und Co. ist schon noch groß, da sehe ich einfach noch Potenzial in ihm. Noch ein oder zwei Titelverteidigungen mehr gegen Main Eventer und ein Punkt gibts drauf."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Psycho Shooterwrote on 24.06.2009:[9.0] "Definitiv ein zukünftiger Star im Wrestling Geschäft, wenn er es nicht schon ist. Er hat sich in letzter Zeit fantastisch entwickelt und startet jetzt 2009 richtig durch mit konstant starken Leistungen und richtig guten Kämpfen. Ich bin sehr gespannt, was aus ihm als GHC Champion wird, das Zeug zu einer guten Regentschaft hat er allemal."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: ShakDragoonwrote on 19.01.2009:[9.0] "Definitiv ein sehr guter Wrestler, der sich mittlerweile auch in den USA einen Namen machen konnte. Ich denke aber die wirklich großen Titel sind für ihn nur in Japan drin."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: XSigiXwrote on 19.01.2009:[8.0] "Im Ring wirklich gut und unterhaltsam. Als Heel und Mitglied von Sweet'n'Sour Inc. bei ROH leider völlig unbrauchbar, da er teils zu sehr wie ein Face agiert und mit Hero im Team meines Erachtens null Chemie hat. Seine Japanauftritte kann ich nicht beurteilen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Blazewrote on 03.01.2009:[8.0] "Neben Morishima, Tanahashi und vielleicht auch Goto der zukünftige Star der Heavyweight Division. Wrestlerisch ist er sehr gut und kein langweiliger Brawler wie viele Heavyweights. Im Gegensatz zu Mori und Tanahashi fehlt bei ihm aber noch irgendwas um ganz an die Spitze zu gelangen. Für mich ist das einerseitz die Ausstrahlung, andererseitz auch sein Look. Die anderen drei kommen schon noch gewaltiger daher. Trotzdem wird er es sicher zum World Champion schaffen und hoffentlich auch weiterhin zusammen mit Maru, KENTA und Mori Abstecher zu ROH machen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Herr der Kritikwrote on 30.12.2008:[7.0] "Mann der Zukunft und imo einer der derzeit besten Schergewichter. Abwertung wegen dem RoH-Aufenthalt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: 150pwrote on 14.12.2008:[9.0] "Hat als Heel zwar seine Schwächen, braucht auch noch ein bisschen, um mit diesem Gimmick bei der ROH Crowd over zu kommen, ist jedoch gerade in seinen Japan Matches einer der besten in diesem Sport."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Tomkowrote on 23.11.2008:[9.0] "Japanische Technikmaschine, die mich bisher in noch keinem Match enttäuscht hat! Wird seinen Weg gehen!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: dariawrote on 26.05.2008:[9.0] "erstmal noch die 8 - muss ja noch Platz nach oben sein - aber in jedem Fall der zukünftige japanische Superstar. Auch hier mal das neue System genutzt und auf 9 Pkt korrigiert."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Hirnklopswrote on 11.05.2008:[10.0] "Rockt. Mehr fällt mir einfach nicht ein, außer: Rockt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Eaterwrote on 11.05.2008:[9.0] "Fantastisches Talent. Wird es in wenigen Jahren an die Spitze der japanischen Topligen geschafft haben, bis dahin noch mit Potential nach oben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[9.0] ""Nur" 9 Punkte, es muss ja auch noch Luft nach oben geben. Es würde mich gar nicht wundern, wenn Shiosaki irgendwann auf der selben Stufe wie Kobashi und Misawa steht. Die personifizierte Zukunft NOAHs."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: affenmannwrote on 11.04.2008:[7.0] "Er ist zweifellos sehr talentiert, aber ich sehe da doch noch einiges an Luft nach oben und Verbesserungsmöglichkeiten."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Aaronwrote on 04.03.2008:[8.0] "Shiozaki ist DAS Talent in Japan schlechthin und kann mit etwas mehr Erfahrung vllt. auf den Spuren eines Kenta Kobashi wandern!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: The Showstopperwrote on 26.01.2008:[10.0] "Ein Mann, der bei seinen Auftritten in Deutschland immer wieder überzeugen konnte. Hat alle Anlagen, um das nächste Ace von NOAH zu werden, wenn die Legenden abtreten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: D-Stylewrote on 07.12.2007:[8.0] "NOAHs Zukunft. Aufstrebender Megastar, und er wird was ganz Großes werden; denn er gibt sich verdammt Mühe. Note 2 mit Tendenz nach oben"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: SternessDustOmegawrote on 06.12.2007:[10.0] "Phantastisch im Ring. Ich hoffe das er von schwereren Verletzungen verschont bleibt die nächste Zeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Baszdmegwrote on 20.08.2007:[10.0] "Ziemlich genialer Wrestler, die Zukunft Japans und mit Sicherheit früher oder später mal ein GHC Champion. Dazu kommt noch eine breite Fanmasse, besonders hierzulande."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: PuroDragonwrote on 29.07.2007:[10.0] "Die Zukunft von NOAH, man schaue sich nur seine Matches mit Murat oder Danielson an, außerdem ist der Junge erst 25"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Carlito Cenawrote on 24.07.2007:[8.0] "Der Mann ist zu beachten, er wird in Zukunft eins der japanischen Aushängeschilder."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Blue-byte92wrote on 24.06.2007:[10.0] "Als ich ihn das erste mal hab wrestlen sehen , hat er mich so überzeugt wie es bisher bei keinem anderem Wrestler der Fall war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Soerenwrote on 24.06.2007:[10.0] "Hat mich live verdammt überzeugt und eine herauszuhebende Leistung vollbracht, was mich auch zu keiner anderen Bewertung als die Note 1 bringt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Kruemelwrote on 24.06.2007:[10.0] "Unfassbarer Wrestler. Einfach nur geil ihn live zu sehen, wenn man weiß, dass dieser bald komplette Shows in Japan ausverkaufen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: STRIGGAwrote on 24.06.2007:[8.0] "Go zeigt einen der schönsten Moonsaults, die ich je gesehen habe. Natürlich sind seine weiteren Fähigkeiten alles andere als zu verachten. Wie schon hier erwähnt: Der Mann für die Zukunft."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Pulpulwrote on 24.06.2007:[10.0] "NOAHs zukünftiger Top Mann. Go gehört die Zukunft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Sabu316wrote on 24.06.2007:[10.0] "Der zukünftige Star der Szene. Er ist jetzt schon sehr sehr gut im Ring und dabei hat er noch einige Jahre vor sich. Wird sicherlich noch einige denkwürdige Matches bestreiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Fabibiwrote on 31.08.2024:[6.0] "Bruno was a good babyface and managed to connect with the New York area crowds. He was however nothing special in the ring, even for his time he was far from being the best. His ability to draw is undeniable and we don't have huge amount of footage from his career."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: cioranwrote on 20.09.2023:"Reminds me of Hulk Hogan a lot, great look, very limited moveset, superb ring psychology, good at selling, consistent. Over with the crowd at MSG. Except a mildly better worker, much worse talker. His early matches seem to not have been recorded anywhere and the later ones honestly aren't recorded well until the mid 70's which is near the end of his career (though he comes back a few times in the early-mid 80s), so I'm not going to give him a rating. My father watched Bruno growing up (he wanted to name me Bruno but my mother wouldn't let him) and legitimately believed this guy was the greatest thing ever. I don't get it, but maybe his 60s stuff was better or maybe he was just a product of his time. Or maybe it doesn't carry over from MSG to watching it on TV. IDK. My uncles thought pretty much the same thing as my father. In the 60s the only guy more over with Italian-Americans was the Pope. I've never seen a match of his I thought was great, but none of them were bad either. For a 50-something year old guy even his match with the Honky Tonk man was fun and the first time I remember seeing him. I'm probably missing context on a lot of the feuds."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: swissarmybazookawrote on 08.09.2023:"His work is a byproduct of the era he wrestled in. Many modern fans won't understand it and dismiss him. Bruno however, is one of the biggest attractions ever in wrestling. He carried the WWWF in the stages when they needed someone like him most. WWE has tried many times to have someone carry the title like him but it's simply impossible to have someone in the modern era be on top for that long and keep the level of popularity he did. Truly one of the greats There will never be another Bruno Sammartino."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Khalid Acewrote on 16.07.2023:[7.0] "Bruno is respected by the wrestlers & fans so that counts for something I guess. his work with WWF but boy he was terrible. He didn't have one match that I can recommend to anyone because he's unwatchable in the ring. However his work beforehand was solid."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Giantfan1980wrote on 07.06.2023:[6.0] "Just based on historical importance, Bruno should be in the top 10 wrestlers of all time. He is from the era just before mine so I was never high on the 60's-70's style."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: greaterdalewrote on 01.06.2023:[10.0] "Usually I tend not to rate wrestlers based on how popular they were, but with Bruno you kind of have to? The man was champion for 7 years and drew HUGE in the New York territory. I've watched his matches before and I thought they were fun considering the era. Yeah there's a lot of punching in his matches, but that's never really bothered me, like don't get me wrong, I'm all for flippy fast paced moves, but Bruno's was able to do so much with a limited moveset, and more isn't always better. But yeah a lot of his rating is going to be based on his huge drawing ability and mammoth sized title reins. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: crs285wrote on 13.04.2023:[10.0] "Legend in the ring. His in-ring work was really good for the time with insane strength, and he connected perfectly with his audience. He carried the early WWWF as their champion for an insane length of time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: greenlawlerwrote on 05.03.2023:[5.0] "Let's be very clear. Bruno was really popular. He was not great in the ring. The WWE machine continues to control the narrative. There are dozens of better wrestlers who don't have the advantage of being as protected, popular as Bruno. Any one who gives Bruno a ten is not objective at all."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Conquistador37wrote on 02.12.2022:[5.0] "Dude is BORING. I was never, will never be a fan of "The New York style" but Bruno was definitely less awful than most in that territory. His commentary was sometimes ok enough but he often seemed LOST. Overrated overhyped but not total crap; again BORING. there is worse, but: "BORING" is the most apt description. 4.5 rounded up. (and YES I watch things for "how they were", I'm straight up saying it: New York/WWWF/McMahonland's in ring pace was B! O! R! I! N! G! and Bruno is just another example of that.)"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "One of the most revolutionary wrestlers ever, he was a valuable gem to the old days of pro wrestling. Incredible wrestler and incredible guy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: face painted legendwrote on 01.11.2022:[10.0] "I say it all the time, he was the perfect storm for his time. If you were to have all of the stars align at once to make the perfect performer for an era it would be bruno in his. The WWWF, ran by Vince McMahon Sr at the time, had a large Italian American demographic coming to the shows, and being the smart man that he was Sr. capitalized on that by not just bringing Bruno who was a larger than life, hard working, blue collar, Italian American superman more the less in both look and what he was capable of doing in to the territory, but relying on him for so many years to be his world champion. And man did it ever work. 4, 000 something days as the world heavyweight champion, set the record for number of times selling out madison square garden, a real life hero to many people at the time, etc. Now obviously, a lot of what he did as far as promos, in ring work, etc, wouldn't translate to today at all. However, for his time, it was exactly what was needed for that territory, and the demographic that they were looking to draw at the time. I am glad he made peace with WWF/E before he died and got celebrated like he should be in his final years. Nothing but love and respect for the living legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: TheOneAndOnlyCactuswrote on 13.09.2022:[10.0] "The longest reigning WWE Champion of all time, and a record that will simply never be topped, Bruno Sammartino was a hero for Italian-Americans, but his popularity went beyond this community. The Italian Superman was a draw everywhere, but especially MSG, where people kept filling up the garden to witness the prowess of this powerhouse. A bonafide legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: DuthtyBabehwrote on 27.08.2022:"He was, quite simply, one of the greatest professional wrestlers of all time, and there was a reason he was called ? The Living Legend.? Bruno Sammartino was always open to talk, and some of our favorite al-time stories are archived below. Bruno? s eldest son, David, didn? t have the career his father did, but has his own unique take on the business too"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Ozzywrote on 07.08.2022:[9.0] "Though Bruno wasnt exactly charasmatic or elegant in his in ring ability, he was one of the most important wrestlers in WWE or rather WWWF history. Everyone knows of his 2803 day reign as historic and record holding, and his combined WWWF world title reign of 4040 days, tis a staple of what made WWE what it is today, he was the John Cena or Hulk Hogan of his day, going through everyone in his path from legends such as Gorilla Monsoon, Ken Patera, and Baron Mikel Scicluna to his ex tag partner turned rival in Spiros Arion and possibly greatest rival in Larry Zbyszko. Bruno paved the way for what wrestling is today by bringing the forefront of popularity to the most successful promotion to date"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: CMX-7wrote on 20.05.2022:[10.0] "Bruno Sammartino - Absolute Legend! of early Pro Wrestling, we can proudly say that he is the ICON of all Wrestling. Many fans of the current wrestling product (I call them snobs) who write that the matches are slow and terrible, although it did not occur to these people that the business was going in a different direction at that time. Bruno Sammortino is a worthy person who deserved the honor of being the first!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Thibaultwrote on 19.05.2022:[6.0] "Bruno Sammartino was even slower than Hulk Hogan and his acting was very straightforward. He was used as a superhero to please the kids of his time, but I don't think you can make him into a wrestling giant like Lou Thesz, Rikidozan, Buddy Rogers, etc."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: TigerDiverwrote on 11.04.2022:[9.0] "Bruno Sammartino lives and breathes wrestling. This man sold out Madison Square Garden more times than I could count and was a massive international draw at one point in the pinnacle of his career. There's a reason the whole MSG venue went complete and utter silence when he lost the WWWF Title for the first time. Yes, that's how much the fans loved him. Yes, that's how big of a deal he truly is. His late 80s 'special attraction' run doesn't hold a candle to his heyday, but even then so, I still think he's fun to watch nevertheless. I will knock him a bit on his in-ring work, which was a little too kicky-punchy, more of the same stuff for me. But the fact that he did so little and gathered ten times the amount of reaction of guys today speaks volumes for itself. Couldn't be a more fitting term for him than "The Living Legend.""
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: GriffinXwrote on 08.02.2022:[10.0] "If not Bruno there is a chance the WWWF would of survived after leaving the NWA. The simple fact is the man carried that company for so long. 11 total years as champion because he was such a huge draw. The man was the blue print for the long running face champion"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: ALFwrote on 11.07.2021:[10.0] "Der beste World Champion vor Wrestlemania:War immer ein fairer Wrestler. Ausstrahlung, Super Body - ohne Steroide! Hatte eine super Fanbasis ... Zusammen mit Hulk Hogan, Ultimate Warrior, Superstar Billy Graham und Undertaker mein Wrestling Mount Rushmore! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Kungwrote on 20.06.2021:[10.0] "The legend of all legends in WWE history. He had the look, the gravitas, and the near-unanimous support from the fans in New York, and he may very well be the greatest champion WWE has ever had."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: BUIOOMEGAwrote on 13.10.2020:[10.0] "Legend of the legends, immortal. He raise the standard for the major drawer of the history, his model of success will make famous the likes of Hulk Hogan and John Cena as well. An icon. Forza Italia!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[10.0] "You want to talk about a wrestling god, here you go. A pioneer and someone who prided himself in taking the business seriously. Helped get wrestling into the mainstream."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: LandonRyanWyattwrote on 03.02.2019:[10.0] "The greatest star in the old WWWF. Bruno was the Hogan of his time, everywhere he went, he drew. Bruno basically owned MSG for the majority of the prime of his career. A true legend in the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: jajt1989wrote on 10.11.2018:[7.0] "The crowd love him and he always put on a show. Definitely didnt have a massive move set but that didnt matter when your selling out crowds and the crowd is always going nuts for you."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: JEK 1991wrote on 31.10.2018:[10.0] "A legend definitely. One of the last wrestlers to not use steroids. He was strong naturally and can pick up the 600 lbs Haystacks Calhoun. He sold out Madison Square Gardens many times and was exciting to watch. I am glad that he is in the WWE Hall of Fame. I know Vince JR blacklisted him for many years but that has ended. This man was like Hulk hogan and way better than him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Steamboat2511wrote on 02.10.2018:[7.0] "Im Grunde vor meiner Zeit und somit ist eine Wertung mit Vorsicht abzugeben. Sein Standing für das Wrestling ist enorm groß und kaum zu überschätzen! Er ist eine wahre Legende der alten Schule und wird für immer in den Analen dieses Sports stehen. Seine Ringfähigkeiten (freilich ohne sie mit dem heutigen Stil zu vergleichen) gefallen mir jedoch in den wenigen Matches die ich gesehen habe nicht so gut, wie die einiger Zeitgenossen und so gibt es einige Abzüge."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: RatingsMachinewrote on 22.09.2018:[10.0] "By his own admission, Bruno wasn't the worker that some his contemporaries were. But he didn't need to be, because his strength was in connecting with the fans in way that those same contemporaries were unable to do. And Bruno was good enough at what he could do in the ring that the fans were with him every step of the way."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: BIGWACKENHUTwrote on 01.09.2018:[10.0] "The virile Everyman. Strong, potent and sporting a bold 70s haircut. As a child I viewed Bruno as a hairy, slightly paunchy man in a baggy speedo. He didn? t look like he could hold a candle to chiseled body builder types that populated the 1980s wrestling landscape. It was much later that I learned he was stronger, braver and far more potent than anyone who ever laced up a pair of boots. It was at that point I noticed his bulk and girth. This was a big, brutal, durable man with staying power.  To the unpracticed eye his matches may seem lethargic and lacking the technical virtuosity that we see today. But what his matches possessed was a level of ? realism? that resonated with the audience. Surely, no one would except Larry Holmes would attempt to take out a foe in a real fight with a drop kick. But stomping and punching, wrenching knees and imposing your superior will power with tests of strength. This is a logical approach to professional wrestling.  His matches are less cookie cutter than many of the greats- despite the limited move set and his excessive length. The lack of high spots actually adds to the realism. His charisma is off the charts. The modern product would benefit from the sort of visceral, brawling style that he used. Is Bruno the greatest wrestler ever? He has to be in the conversation and a strong case can be made."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Rabidwrote on 20.04.2018:[10.0] "Maybe not the best worker at the time and he wasn? t the flashiest, but Bruno Sammartino will probably be the WWE? s biggest draw for its history. Bruno sold out Madison Square Garden so many times, I? ve lost count. His matches with guys like Larry Zybsko and Gorilla Monsoon are legendary. Bruno Sammartini was a wrestler who was larger than life, a character who connected with millions and he was a childhood hero for many. Without him, there is no Hulk Hogan, without him there is no John Cena. Without him, WWE may have never been the phenomenon it is today. Thank you Bruno for your contributions to the business and RIP."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: ItalStal624wrote on 08.11.2017:[10.0] "Bruno transcends any rating, in my opinion... he was larger than life, a Superman, a hero and a role model... he was a champion inside and outside the ring... he was my hero when I was 12, and almost 50 years later, he still is... I can barely watch the current product, but I am always up for watching Bruno take on Toru Tanaka, Gorilla Monsoon, or Waldo Von Erich :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Luv all wrestlingwrote on 23.09.2016:[10.0] "A multi time Madison Square Garden sell out, Bruno was the reason WWF had the opportunity to overthrow the territory system. He also wrestled quite well and is a neat throwback to watch nowadays."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Squared Circlewrote on 10.12.2015:[10.0] "Belongs with Hogan, Flair and Andre on the Mount Rushmore of wrestling.  His first championship run was insane.  Then after the Pedro Morales interlude, he was right back at it.  Sold out Shea Stadium, Madison Square Garden, Boston Garden and Japan.  He even crossed over for some good work with another legend Harley Race.  The guy had main event written all over him.  Even when he was retired, he'd get back in the ring and sell the place out.  Simply fantastic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: KimboSlicewrote on 08.09.2015:[10.0] "einer der besten Wrestler, die jemals lebten. Er steht nicht nur für einen Rekord, den man niemals brechen wird, sondern auch für Leistung und Talent. Ein Mann, der seinen Namen in der Wrestling Welt unsterblich gemacht hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Brianjacksonwrote on 10.04.2015:[9.0] "One of the most legendary wrestlers in history, his ability to sell out Madison Square Garden almost every month for over a decade is a remarkable achievement. He was the first true WWWF Champion and made New York the successful territory that would go on to become the WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Lifethhrdwrote on 31.12.2014:"10 The Greatest Champion of All-Time. As big a gentleman as he was a champion. Bruno was a great "scientific"wrestler but could also brawl with the best of them"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Torshavnwrote on 23.08.2014:[10.0] "Il leggendario Bruno Sammartino is one of the most famous, most important and well-respected wrestlers in the world, and rightfully so. Although he is not known for being the best talker in the industry, as some feuds of his show he wasn't bad at all on the mic. Combine that with a great presence, a great in-ring ability, and there's Bruno Sammartino for you. No wonder this guy was a huge draw in the Northeast."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Basket Casewrote on 30.01.2014:[10.0] "Eine ganz große Legende des Wrestling. Toller Wrestler, großes Charisma, nicht umsonst war er so lange WWE Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: yanuswrote on 15.12.2013:[8.0] "Overrated by people that think, that the wwf or wwwf was the biggest company in the world before 1984. He was a great draw, but only for a local territory - the champions of the AWA and the NWA were much bigger names in the wrestling world than Sammartino. I'm also not the biggest fan of his in-ring work. Nonetheless, you have to judge him highly because of his drawing ability in New York and his great presence."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: RJLwrote on 03.12.2013:[10.0] "One of the founding fathers of pro wrestling as we know it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Elitemasterwrote on 28.10.2013:[10.0] "It's incredibly, on how this wrestler is very good, I like Bruno Sammartino."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Randy Owrote on 03.05.2013:"Dieser Mensch scheint eine schwierige Person zu sein. Am meisten über diese Person wundert mich jedoch das er und ich zitiere:"-verstieß seinen Sohn David, nachdem er herausfand, dass dieser Steroide einnahm" aber Arnold S. ein enger Freund ist. Sein leben lang Prinzipien haben und sie dann brechen und zur WWE zurückehren nach dem ihm angeboten wurde, sein Leben zu verfilmen. Finde ich persönlich alles andere als Bewunderns Wert.  Ob er ein Guter Wrestler war, kann ich nicht sagen. Edit: Daher das ich ihm seine schöne Wertung jedoch nicht herunterziehen möchte gebe ich lediglich mein Kommentar ab."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Irri Busenbenderwrote on 19.02.2013:[10.0] "Die größte Legende aller Zeiten in der WWE. Endlich da wo er hingehört.. in die Hall of Fame"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: chaoswrote on 14.02.2013:[10.0] "Was kann man über diesen Mann sagen was noch nicht gesagt wurde? Nichts!  Er ist eine absolute Legende und endlich in der Hall of Fame!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Sirius Van Grathwrote on 15.10.2011:[10.0] "The Living Legend ist der perfekte Name für ihn! Ohne ihn wäre das Wrestling wohl nie so populär geworden.  Sammartino verdient die 10 Punkte absolut, weil er wirklich ein WRESTLER ist. In seiner Ära waren nicht alle Main Eventer Ring-Feuerwerke. Siehe Hogan oder Warrior. Aber Bruno Sammartino ist einfach nur klasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Raywrote on 02.09.2011:[10.0] "Es ist Bruno Sammartino, eigentlich sollte der Name allein ausreichen. Er ist eine Legende, er hat Wrestling revolutioniert!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Manu Adamswrote on 22.07.2010:[8.0] "Er ist die ''Living Legend'' und war auch zu seiner Zeit ein klassen Wrestler nur hatte er wirklich kaum Mic Work und versprach sich desöfteren, weshalb er für mich eigentlich als Kommentator der WWF Championship Show völlig ungeeignet war, hat aber auch zu seinem Vorteil McMahon viel reden lassen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Italian Straight Edgewrote on 04.10.2009:[10.0] "Mein Landsmann war zweifelsohne einer der besten Wrestler ''of all times''. Nicht umsonst war er insgesamt ganze 11 Jahre WWWF Champion (heute: WWE Champion). Dazu konnte er ganze 176 Mal als Headliner der damaligen WWWF (heute: WWE) für eine ausverkaufte Halle sorgen. Sehr schade, dass er etwas gegen das Mainstream-Wrestling und die WWE hat und deshalb nicht in die WWE Hall of Fame aufgenommen werden möchte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Eddiewrote on 08.06.2009:[10.0] "Genialer Wrestler zu seiner Zeit, er war nicht umsonst knapp 8 Jahre der Champ, und das in Folge. Wohl ein Rekord für die Ewigkeit, es sei denn Eddie Steinblock ist noch länger aktiv.. Aber das ist ein anderes Thema.. Für Sammartino 10 Punkte, zu seiner Zeit war er das non plus ultra der Catch Szene."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: theflo438wrote on 12.10.2008:[10.0] "DER CHAMP IST HIER. 11 Jahre WWWF Heavyweight Champion und ein wahrer Pure Wrestler, der auch das heutige Produkt der WWE verabscheut. Er war wohl ein Fighting Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: ecw foreverwrote on 02.09.2008:[10.0] "Sammartino war nicht der über Wrestler für die ihn viele halten, und ich ihn auch hielt. Er war eine Charismabombe mit soliden Skills, sein Mic kann ich nicht beurteilen, aber sein Charisma war sau stark."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: ZuluBunsenwrote on 21.03.2008:[10.0] "Eine lebende Legende dem man viel zu verdanken hat. Man mag seine Meinung zum heutigen Produkt teilen, es bleibt aber ein Fakt, dass er eine der wichtigsten Persönlichkeiten des Business ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: LexLuger4everwrote on 25.02.2008:[8.0] "Fast 8 Jahre am Stück WWWF Champion gewesen, was natürlich ein Rekord für die Ewigkeit bleiben wird! Seine Matches waren gut, sonst kam er bei mir aber nie über den Status eines ganz normalen Wrestlers hinaus."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: AnFuwrote on 16.01.2008:[10.0] "Cooler Typ, dazu einen unglaublichen Rekord augestellt. Bestnote!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Bullit69wrote on 13.01.2008:[8.0] "Finde es toll, dass er derart gegen Steroide und Ähnlichem is!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "Der Champion welcher am längsten den Titel der WWF hielt. Eine unglaubliche Leistung in all den Jahren die Spannung der Titelmatches aufrecht zu halten. Deshalb von mir ne 1!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: The Yetiwrote on 01.11.2007:[10.0] "Acht Jahre am Stück Champion, danach noch einmal 4 Jahre am Stück. 10 Punkte sind eine Beleidigung für jemand, der zurecht ''Living Legend'' genannt wird. Auf YouTube gibt es einiges von ihm zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: shannonmoorewrote on 22.08.2007:[10.0] "Vileicht der größte aller Zeiten wie ich finde, dazu tragen seine großen Erfolge genau so dazu bei wie seine Ansichten und dass er diese auch wirklich einhält. Denn selbst ein der WWE ach so feindlicher Bret Hart kam als er in die WWE Hall of Fame aufgenommen werden sollte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Blade Bourdeauxwrote on 02.07.2007:[10.0] "Das Sinnbild einer Wrestling-Ära, die er selbst geprägt hat. Und ein Mann mit Prinzipien. Gäbe es hier eine Note 0 würde ich sie ihm geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: SkipImpactwrote on 24.06.2007:[10.0] "Ich bin froh dass er doch wieder einen Blick ins Business wirft und ROH unterstützt. Ich habe nicht viel von ihm gesehen, das was ich gesehen habe war jedoch sehr gut. Seine Erfolge, sein Charisma, seine geschichtliche Wichtigkeit und seine Prinzipien verdienen auf jedenfall 10 Punkte. Vielleicht hat er in anderen Bereichen schwächen von denen ich nichts weiss, jedoch bewerte ich nach bestem Wissen und Gewissen und das sagt mir 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: ABoyenswrote on 24.06.2007:[10.0] "Macht seinem Spitznamen alle Ehre - er ist die wahre "living legend"! Was er geschafft hat wird wohl kein anderer Worker mehr erreichen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Hirnklopswrote on 24.06.2007:[10.0] "Die coolste Sau, die jemals einen WW(W)F/E - Ring betreten hat. Der Kerl hat mehr Charisma in einem Haar als das gesamte ECW - Roster. Wer kann, sollte sich Kämpfe von ihm besorgen, der Mann hat mehr als gerockt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Keithnelson18wrote on 11.02.2025:[10.0] "Ilja Dragunov is easily one of my favorite wrestlers in the world right now. Almost every match Ilja has had since he's been in WWE have been bangers, with people like Gunther, Dijak, Bron Breakker, Carmelo Hayes, Ricochet, JD McDonagh, & etc. The man is also an amazing seller, he deserves either the Intercontinental Championship or World Championship in the near future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: zacharymahabirwrote on 10.02.2025:[10.0] "Might be one of the most intense...people ever, fuck the "wrestling" part, he's just the physical embodiment of intensity. Nothing but greatness for someone like Ilja"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: WillOspreaywrote on 07.02.2025:[10.0] "Dragunov is currently in my top 3 favorite wrestlers in the world right now, its a shame to see that he got hurt and will be out for a while. what got me hooked into him was his intensity, selling ability, and pure wrestling. when he's going on the offense deep in a match it can look like he's mauling his opponent and doing whatever he can to win. and when he's taking all the offense from his opponents, (WALTER, Dijak, etc) he can make them look like he's in legitimate pain and being brutalized without overselling, and he even sells his own offense which is something we rarely see in the modern times. 10 points to the future intercontinental (and hopefully world) champion!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: venuswrote on 25.01.2025:[5.0] "A very hit-or-miss wrestler. Liked his matches in wXw, the WALTER matches in NXT are some of the best wrestling I've seen but after that, he just became a parody of himself. Comes off as very dork-like with him acting like a shonen anime protagonist with villainous verbiage as a gimmick. His selling comes off way too cartoonish for me. He's still capable of producing good (vs. Breakker in a #1 contender's match for Zayn's IC title on RAW). I like that he has a falling forearm as one of his finishers, good ring-gear and I like his indie-like entrance. Extremely talented yet overrated wrestler."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: ItsLugerwrote on 20.01.2025:[10.0] "One of the best active wrestlers in the world in my opinion. Everything Ilja does is the definition of intense, from his promos to how he always carries himself and looks, and to of course his in-ring. He is one of the best sellers in the business, he's able to sell everything to make it look like he is in excruciating pain but somehow isn't over the top. When it comes to match catalogue, he has his instant classics with WALTER in NXT, in my opinion, each other's greatest rivals. I haven't seen most of his indie matches but I've seen his matches with Shingo, against him and as a team, WALTER and Timothy Thatcher, and Tyler Bate, each and everyone absolutely excellent. Ilja had an amazing trilogy with Carmelo Hayes, which really brough the best out of Melo and really made him a star. On top of this Ilja in his last year in NXT was able to get not 1, not 2, but 3 incredible matches out of a very green wrestler in Trick Williams, something that hasn't really been done since then and is just absolutely incredible. There are few wrestlers in the world who despite being excellent themselves, would be able to bring out those series of matches out of someone who doesn't even have a full page of matches yet, I think you would genuinely be in Kenny Omega and Konosuke Takeshita territory in that regard. I fully believe that if Ilja had not been injured, he would have had a case for TV wrestler of the year for 2024, seeing as his matches on TV already before he was injured were some of the best for the company for the year."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Its Clobbering Timewrote on 13.01.2025:[9.0] "Ilija is that guy he's one of my favorite wrestlers currently. Every Match Dragunov has had is an banger and the level of intensity that he does with every move is amazing. Ilja can have a good match with anyone he's never had a bad match. His Matches that he Vs Walter In NXT UK & Takeover 36 are some of my favorite and best matches of all time. I can't wait to see what more he has in store for the future."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Arthurrxzzwrote on 07.01.2025:"Dragunov is the perfect combination of pure wrestling, with the emotion of entertainment, a monster!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: MEDaminewrote on 05.01.2025:[10.0] "A Future legend, I love his fighting spirit sm, and he's one of the best in the whole world, every program he had (like Gunther/Walter, Dijak, Trick and Carmelo) was great, you can put him against any opponent and he will still be enjoyable to watch"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: GameBoyAbysswrote on 19.12.2024:[9.0] "The brightest up-and-comer on the main roster, and it's such a shame he was injured in mid-2024. Mark my words, next year will be the year of Dragunov, his enthusiasm and passion for wrestling is infectious, and in a few years he could very much be in the position of best in-ring worker in the company, which I'd say is currently held by his rival, GUNTHER."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: AceHagannwrote on 27.11.2024:[7.0] "While not the most fruitful call to the main roster in WWE, Ilja shouldn't be dismissed so easily. He gives it his all in the ring, making his matches feel very intense, brutal, even. Not much to say in other areas, but he is still an overall good performer."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Wrestlingfan0808wrote on 31.10.2024:[10.0] "Intensity intensity intensity. Hes one of the few wrestlers that make this shit look real. A very Bright future ahead despite the latest setback. One of the best wrestlers in the world"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Rosyawrote on 29.09.2024:[7.0] "Everything Ilja did in NXT was perfect, but when it came to be part of the bigger picture, he looks weaker. I'm not quite sure whether it's a bad booking or comparison with other superstars who look bigger and brighter. The fact is Dragunov has lost himself, so he urgently needs a long-term story to show his abilities if he's ready to shine on huge TV shows or he isn't that format"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Galmondiwrote on 22.09.2024:[10.0] "The best seller in the world, he's selling everything like he's being shot. Other than that he's also amazing in the ring, has presence, charisma, he's believable and he's a futur world champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Crofallwrote on 11.09.2024:[10.0] "Ilja is one of the few people I always stop whatever I am doing and mind meld with the computer, phone or screen he is on. Ilja has a hall-of-fame worthy set of matches at 30. He makes every move he takes or does feel like an absolute gunshot, I pray the stars align for this man to become a world-champion in the coming years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: jsbortswrote on 08.09.2024:[8.0] "I think Ilja is a very talented person athletically, but I find his theatrics to be extremely off putting and distracting, and it prevents me from enjoying things the way that I should for how much pain he's putting his body through. The issue is he's always trying to show me how much everything hurts that I can't focus on any move of offense, it feels that every single time I'm watching his matches I'm just watching him get destroyed until he overpowers the guy thats destroying him with no explanation as to why Ilja is a threat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Dsetwrote on 04.09.2024:[3.0] "Don't understand the hype this guy gets. Seems like he could work well as an underdog but the way hes booked as a threat is just unbelievable. Constantly overpowering people twice his size with no reason behind it just takes me out of the matches completely. He has some undeniable talent but the way hes portrayed and the way he wrestles is just hard to watch for me. Feels like another wrestler that is getting over solely on booking and nothing else. Hopefully something changes and he takes inspiration from other people his size and develops a more "realistic" stlye in the ring at some point but at this point it just makes any match hes in hard to watch for me. Best of luck to him but right now I could not take him seriously as anything beyond a mid-card filler when him and the company give me no reason to do so outside of booking him to win."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Willie 19200wrote on 28.07.2024:[10.0] "Ilja puts in always put 150% effort in to his matches and never fails to deliver some of the best matches I've ever seen. His matches with Gunther and Carmelo Hayes are some of NXT's best put on matches and I love to re-watch them from time to time. Definitely in my top 10 in-ring competitors right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Joe907wrote on 21.07.2024:[10.0] "Ilja gives everything he has in the ring. He is one of the best sellers. Highly talented and brings the intensity to every match. He is athletic, technically sound, and is hard hitting. He'll bring the best out of anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Cletxawrote on 15.07.2024:[9.0] "I have witnessed the majority of his career. He makes me so excited in the ring. A special wrestler who lives in the moment. Especially the times of NXT UK and wXw were tremendous. He is a big potential, I hope WWE uses it well. I hope he will compete with Gunther in Wwe as soon as possible."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: XNoWayKemoSabeXwrote on 05.07.2024:[10.0] "I've yet to be disappointed by a Dragunov match. No matter the opponent, Ilja always seems to go balls to the wall, making his matches pure adrenaline-filled fun to watch. He is currently one of my favorite wrestlers to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: arihenrique11wrote on 22.05.2024:[9.0] "This guy has everything to be LEGENDARY! He makes good matches with anyone, his microphone skills are good and his charisma is above average. I find it incredible all the blood he gives for the company he works for, he is exceptional"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: blastermertwrote on 14.05.2024:[9.0] "Ilja is definitely to become one of the all time greatest, I love watching his brutal to bloody, high-maneuver, versatile performances and not even that, but his in-ring acting and entrance is flawless. I enjoy seeing those exploded veins on his temple when he gets furious, a Kurt Angle quality in-ring acting in my opinion. I hope he becomes what he deserves, and the future set before our eyes lays out a perfect booking for him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: bogurtwrote on 14.05.2024:[9.0] "Ilja is on his way to becoming on of the greatest of all time. There is a intense brutality to his wrestling style with his passion and charisma both in and out of the ring showing why he'll continue rising now that he is on the main roster."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: WrestlemaniaConnorwrote on 13.05.2024:[7.0] "He is amazing in the ring but we need to know him a bit better first and then maybe he will be champ win royal rumble or maybe even win king of the ring so lets so what happens. He is amazing in the ring but we need to know him a bit better first and then maybe he will be champ win royal rumble or maybe even win king of the ring so lets so what happens."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: MarcusRNMwrote on 11.05.2024:[10.0] "One of the most talented in ring wrestlers to ever step foot in a WWE ring. A soon to be star on the Main Roster and probably a future Grand Slam champion. His matches with Gunther/Walter were so good and I cannot wait for them to be revisited on the Main Roster."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Frank Shooterwrote on 09.05.2024:[10.0] "There are plenty of words I can use to describe Ilja Dragunov, but the one that is more true than anything else is SPECIAL. This dude is capable of making you invest either a big Main Event style match or the simplest of squashes with his character and in-ring work, one of the best I've ever seen. As Michael Cole said on his match against Ricochet, he is not intense, he is INTENSITY. His H-Bomb finisher is one of the best I've seen, really convincing and terrifying. He is also notable in the mic and character work and he presents himself with the image of what a traditional World Champion level star is, sharp dressed, honorable and confident. There is no way he couldn't be a future World Champion in WWE one day, he is a generational talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: gamzeewrote on 07.05.2024:[10.0] "one of the greatest of all time for my money. the platonic ideal of intensity inside of a wrestling ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: SirDuckDuckwrote on 07.05.2024:"Truly incapable of having a bad match. Not only does he make himself look great in the ring, he is also able to make his opponent look like a star as well. His intensity in the ring is truly outmatched"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: DarekPetrelliwrote on 28.04.2024:[10.0] "I know, it may seem like an exaggeration, but for me it's 1) Shawn Michaels 2) Bryan Danielson and 3) Ilja Dragunov. He's still very young and yet he has an incredible catalog of matches, very few people manage to drag you into a match like he does. His charisma is unmatched. Usually I don't like over the top characters but with Dragunov I make an exception because he nails that too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: UltraNano54wrote on 27.04.2024:[10.0] "Out of all the guys to come from NXT UK, I feel Ilja has grown the most and has benefited the most from NXT UK. Within the next decade, I could even see this guy becoming a world champion because he has just that much potential if they book him right."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: jcheng777wrote on 25.04.2024:[10.0] "One of the most brutal and dangerous wrestlers on the planet. Massive fan of his in ring style, which is wildly entertaining. Would love to see a main roster title run this year."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: TheEnigmatic1wrote on 24.04.2024:[10.0] "Ilja Dragunov is one of the best wrestlers in the world and I hope the main roster does him good, He has some of the most realistic looking matches ever between his feuds with Gunther, Carmelo Hayes, Dijak. So many amazing matches where he sells each match as a fight and he has the best facial expressions where he looks like he is in legit pain. Then even when looking at him in promos and segments he has so much charisma and he is confident when talking because he knows how good he is, He makes every match feel like a big match. I hope he wins a Major title on the main roster because he is way too good to waste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: lukatesa21wrote on 21.04.2024:[10.0] "I can't remember him having a boring match, what a wrestler, hope he wins titles on the main roster."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Juanca1210wrote on 09.04.2024:[10.0] "One of the best pro wrestlers in the world. His selling, his moveset and the drama that he puts in the ring makes Ilja a very special performer in the world. WWE has a great athlete on his roster. In only 5 years of WWE career, he gave two of the best matches in WWE history against WALTER, AKA GUNTHER. The future of Ilja looks very good. The Ilja's matches of NXT in 2023 were fantastic, the combats against Dijak, The fatal 5 way for the NXT NA championship, Trick Williams, Corbin and Breakker. And his feud with Carmelo Hayes is one of the best trilogies of 2023. I have a lot of expectations in Ilja, and I will follow his adventures in the main roster."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Froschiwrote on 06.04.2024:"Er ist so ein guter Performer und ein sehr guter Seller. Die beiden Matches mit Gunther waren eine 10 von 10."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Tonostrawrote on 04.03.2024:[10.0] "Ilja Dragunov is, to me, the most perfect wrestler WWE has right now. If I had to put a picture next to the word "Intense" in the dictionnary, I would put a picture of Ilja Dragunov. This young russian born wrestler speaks english in such a delicate way, it makes him even more scarier when he gets in the ring. I love to describe him as a "I'm gonna f you up but you are gonna f me up in return" man. The kind of guy who will give everything he has in the ring, but will also receive as much as he gives. His feud with WALTER was something special, and they both told a great and believable story. Ilja can go far in the main roster, and I can't wait to see a third match with Gunther, this time on the grandest stage of them all. 10/10, this guy is just above everything else."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: JediSaiyanMaster1203wrote on 27.02.2024:[10.0] "Ilja Dragunov is the best guy in NXT right now, this man is an amazing wrestler in the ring, his psychology, storytelling, body language, look, facial expressions, it's all off the charts. This man could very well be a top star in WWE, if "The Fed" believes in him, can pull off "David vs Goliath" style stories off perfectly. Similar to Eddie Kingston, this man doesn't realize that wrestling isn't real, LOL!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: bigotownsendwrote on 10.02.2024:[10.0] "Ilja Dragunov has cemented himself in best in the world status and hes done that and more all the while being relegated to NXT which, despite its overall incline in quality in the past year or so, isnt the go-to wrestling show for work-rate. Dragunov is a machine, its been said to death but its because its true. He is the most intense professional wrestler currently working and can have the best match on any given night. His bombastic and impassioned personality compliments his hard-hitting move-set with an arsenal of manoeuvres that feel like they could end a match at any time. Its not just been in the past few years that hes been this good though, hes been on the top of his game for years whether it be his wXw run or proving that pro wrestling is an art form with his series of matches with Cara Noir in Progress, all the way to his match with WALTER at NXT TakeOver 36 which as it stands is still one of my favourite matches of all time. The fact that he is only 30 is mental, he still has his best years ahead of him and I can see him being a major player once he makes his well-earned leap to the main roster."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Captain Memowrote on 05.02.2024:[10.0] "The most intense wrestler in North America. Maybe the world. He's absolutely brutal and elevates everyone that faces him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: salenronaykwrote on 23.01.2024:[10.0] "He has done everything perfect. In ring, story telling, psychology, you name it and Ilja will give 120%. Its been amazing watching him grow over the years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: CatboyMathuswrote on 31.12.2023:[10.0] "Probably in the top 5 of the best wrestlers in the world right now, his intensity is unmatched, he now has really decent mic skills and I belive that Ilja doesn't know the difference between shoot and wrestling, he is perfectly doing his job and he hasn't reached his peak yet !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: ivxnb15wrote on 01.11.2023:[10.0] "One of the best in the world today this guy is an amazing wrestler and has a banger theme He never fails to entertain the crowd its a crime he still not on the main roster but glad he has FINALLY won the nxt championship well deserved I love this guy. He definitely has a bright future ahead."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Eldinwrote on 26.10.2023:[10.0] "Ilja Dragunov's in-ring abilities are nothing short of awesome. His prowess is his unbelievable offensive, impeccable selling, and a consistent ability to deliver the best matches on any card. He is undeniably one of the best talents in the industry at this moment, and his future looks promising."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: celticinvaderwrote on 11.10.2023:[10.0] "My favourite male talent in WWE for the past few years. A Dragunov match is brutal to watch, with rough offensive moves and superb selling. He looks like hes taking so much pain, but delivering it too. His Mad Russian persona comes through every time too, and its such an entertaining character to watch talk, move, and wrestle. Cannot wait to see what else is done with him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Lutwiejwrote on 11.10.2023:[10.0] "Ilja Dragunov is one of the wrestlers that make me cringe in pain when I watch their matches. His unbelievable offensive is magnificent, he's one of the best strikers in the game right now. His selling is pure art, watching him sell is like watching a man being put through unbelievable torture. He's matches with Hayes or WALTER are one of the best WWE matches of modern era. Amazing. 10/10 for me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: SockyDocky8wrote on 09.10.2023:[10.0] "Ilja Dargunov has submitted his name in being in consideration for the best wrestler in the world! He has one of the brightest futures in the industry and lets just hope that when he gets his call up to the main roster that he gets treated the right way and is given a chance to shine like we know he can!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: derpwrote on 25.08.2023:[10.0] "One of the most talented wrestlers in the business right now and that I've ever seen, always is able to make mediocre or bad competitors look good, amazing at selling, his way of expressing pain and making everything look like a real fight, has immaculate charisma, and his psycho character are the cherry on top and makes him an incredible wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Gold Fistswrote on 02.08.2023:[10.0] "Ha... I said that Gunther and AJ Styles were tied for the title of best wrestler in the WWE at the moment, but now it's a three way including Ilja Dragunov. I can't help myself after seeing his match with Carmelo. I honestly wish it was Gunther vs. Dragunov III at SummerSlam instead of Gunther vs. McIntyre, but oh well, it'll still be great. No wonder this has been Dragunov's highest rated year."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Immortan Scottwrote on 31.07.2023:[10.0] "An impossibly talented wrestler. He's worthy of a ten but it still feels too soon to rate him that high. If he keeps having amazing matches, he's guaranteed to earn that and I very much look forward to that day. UPDATE: screw it, that match with Carmelo Hayes at Great American Bash was so great that I'm bumping him up to ten already."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: GoldenIceboxwrote on 24.07.2023:[10.0] "Ilja Dragunov is everything I want to be as an actor. This man just knows how to really boil professional wrestling down to an art. His selling is immaculate, second to none I believe, and his most well known attribute. He has levels of charisma befitting of a man who has earned every ounce of the respect and admiration he deserves and more, and his understanding of psychology and workrate is something that could only come straight out of the playbook of someone who doesnt just want success, but rather someone who CHASES it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Itayboiwrote on 12.07.2023:[10.0] "Top 10 maybe top 5 workers in the wwe with an insne and spicel kind of charisma and a stack of grate matches in the past and of dream ones loking forwards, whatnis there not to like"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: TheOverridewrote on 14.06.2023:[10.0] "I can confidently say that Dragunov is overall my favorite wrestler right now. Watching his matches is a pain and I mean that in a good way; It might make Shawns Michaels fans angry but Dragunov is for me the best seller in history; His cries of pain, the way his body reacts to the damage, makes me feel like he really got hurt; And the way he connects his attacks, makes me believe that he is fighting for real. In the ring he is the most complete, he can go technical, brawler, strong style and even the occasional high flyer movement. His promos are with great passion, and his character as an honorable warrior but with anger issues is great. I haven't seen him as a heel, but I assume he would be a total psycho. I hope he makes it to the top of WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Egyptian Dragonwrote on 31.05.2023:"One of the best in the world today. He is the biggest underdog in wrestling today alongside Orange Cassidy , he may be the next big thing and the next Daniel Bryan. He wrestled five-star matches with the likes of WALTER and Dijak. I hope he wins the world title someday."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: arkhamoutlaw10wrote on 30.05.2023:[10.0] "The best seller in WWE at the moment. Really makes you believe that it hurts, in a way that most other wrestlers can't come close to replicating."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Penta Suzukiwrote on 16.05.2023:[10.0] "For my money, Ilja Dragunov is currently one of the best wrestlers in the world and one of my absolute favourite to watch. He's an incredible worker who makes everything look good and brings intensity and believability to every situation. His offense is stiff, brutal and perfectly executed. Meanwhile, his selling is masterful, in fact, I don't think there's anyone better at it in the Industry right now. He's a good, authentic promo, charismatic, great conveyor of emotion and has a unique look. Just a complete all-rounder who many would say is currently wasted on the small stage of NXT, but as I don't watch main roster WWE anymore, I'm delighted to have him there and it will be a sad day when he leaves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Storyline Guywrote on 21.04.2023:[10.0] "My favourite from NXT UK. Ilja Dragunov for me is one the best in ring talents in WWE. He had stupendous matches over the last 4-5 years be it on the independent scene, NXT UK or NXT. An amazing technician with great moveset that allows him to have amazing matches with any type of opponent. He does not talk much but the way he speaks with great intensity and emotion is enough to sell the feud/match. Dragunov = Intensity, passion, emotion...be it in ring psychology, promos, mannerisms, facial expressions, style, character he just makes you feel it. Dragunov has mastered the art of wrestling. I hope he achieves great things in WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: AyoWrasslinwrote on 19.04.2023:[10.0] "HE IS HIM. Ilja is just that guy, and I knew he was him upon first seeing him. As soon as I see a european wrestler who doesn't where knee pads you know he is that guy. Just amazing hard-hitting action. 10/10 / Recommendations: vs WALTER[Takeover 36 & 10.29.20] vs Devlin [ ALL ], vs Breakker & McDonagh [Halloween Havoc '22], vs Roddy [4.7.22], NA Title 5-way [Stand and Deliver '23]"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: kmccoy83wrote on 13.04.2023:[7.0] "I've tried to like him, but I just can't get behind this guy. No doubt, he has a bit of talent. He just has a weird look to me and doesn't in the least begin to intimidate in the style his brawling would seem to want to dictate."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Chellxmerr28wrote on 05.04.2023:"I happened to get acquainted with Dragunov back at WxW, at first he hooked me with his usual, classic look and at the same time unusual behavior, his facial expressions were beyond his image, and then it was time to see him in the match and I will say one thing, I was fascinated, I liked Dragunov's style so much, I simply adored such styles, it was something! I was so afraid that big companies would not accept him and he would get lost, but I'm glad that this is not the case and he did not get worse in the big promotion, he continued to dictate his style, I can't wait for Dargunov to thunder over NXT again. I hope he will also be lucky in the main roster, such a talent should not be omitted"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: JeanneLafont94wrote on 01.04.2023:[10.0] "The world does not deserve Ilja Dragunov, it is fantastic and deserves a bigger platform than NXT. I think back to Sheamus, Drew McIntyre or even Cody Rhodes. Im totally fascinated by him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: KKeanelwrote on 01.04.2023:[9.0] "Yeah, that's what I love. Intensity, passion and psychology which he puts in his matches is absolutely outstanding. Alongside Gunther, type of guy who convinces my mind to think "what is he doing in WWE? ""
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Enriquepollazzowrote on 27.11.2022:[10.0] "This guy is friggin fantastic! He is like some diamond in the rough. You could take him right now and plug him into the top of AEW, NJPW, WWE or anywhere and hed have brilliant matches and be awesome with his character. He is a 10. It's ridiculous he isn't pushed more."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: TheOneAndOnlyCactuswrote on 14.09.2022:[10.0] "The Tsar of professional wrestling brings incredible intensity like no one else today, and brings realism like few have done in the modern day. You can feel his passion for the business. He has great facial expressions, mannerisms, moves etc. If I had to show someone who is the Quintessential wrestler amongst the current active ones, it would be him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: FamousBirdwrote on 19.08.2022:[10.0] "Dragunov is a world-class wrestler, full package, intensity, athleticism, consistency, connection with the crowd, promos, flexibility to do either technical, submission or absolute belter hard-hitting matches. Had an amazing title run that unforunately ended with an injury, just a superb talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: JoshuaWrestling63wrote on 13.07.2022:[9.0] "Ilja ist einfach mega Hab ihn das erste mal 2015 bei der wXw live gesehen und anfangs wusste ich noch nicht unbedingt was ich von ihm halten soll.. Doch nach und nach hat er mich überzeugt Nicht nur mit seinen können im Ring Sondern auch sein gimmick.. Es ist sehr speziell und sowas mag ich Es ist cool das er es jetzt zur wwe geschafft hat ich hoffe das sie ihn nicht wie manch andere kaputt machen"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: PhenomenalGunwrote on 27.06.2022:[9.0] "What an absolute unit. No one, and I mean no one can make this sport look as believable as Ilja does. His intensity, the passion, his expressions, his mannerisms, everything, you can feel it through the screens that this guy's life is professional wrestling. He has some of the best matches with just about anyone and is actually solid on the mic, pretty useful to have a guy that can speak fluent English, German, and Russian around. He's a multi-talented star and if they want to, they can have him killing it on the main roster by next year. I can't give him a 10 yet because he hasn't reached the status of legend but if he continues at this rate he undoubtedly will. UNBESIEGBAR!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: texasyoshwrote on 19.06.2022:[9.0] "This dude is fuckin crazy. Every bump he takes he sells like death. He is the ideal Euro babyface that never gives up. Fantastic."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: jamzell00wrote on 27.04.2022:[10.0] "Did not know how crowds outside of germany would take to him but I'm so happy he's a beloved guy in the wwe. One of the few guys I will make an effort to seek out in the company because he's that damn good. Happy for the guy"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Okaro143wrote on 20.02.2022:[9.0] "Ilja Dragunov is a superstar in the making. He has been great consistently delivering good to amazing matches whenever i see him in the ring. The sky is the limit for him as he has all the makings of a World a Champion. It's upto management on how high his accomplishments will be."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Ukrainialitywrote on 11.11.2021:[10.0] "Idealniy wrestler. Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Dy1789wrote on 18.10.2021:[9.0] "Ultimate fiery babyface. Very intense and believable against someone like Walter. Charismatic and will get everyone behind him. Long live the czar."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: GenerationalCreatorwrote on 24.08.2021:[10.0] "simply amazing, Ilja Dragunov is a unique talent since her wXw days, excellent matches and rivalries, especially against Cara Noir and WALTER, one of the best WWE signings in thesimply amazing, Ilja Dragunov is a unique talent since her wXw days, excellent matches and rivalries, especially against Cara Noir and WALTER, one of the best WWE signings in the the last few years and it will certainly generate good results for the company as it is already generating."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: marexcelwrote on 01.08.2021:[10.0] "Wie viel Intensität darf es sein? Ja! Ilja! Am Bildschirm schon immer absurd, aber seit ich ihn live gesehen habe, hat er mich absolut in seinen Bann gezogen. Irre Aura, stark im Ring und als Persönlichkeit im WWE-Umfeld nochmal richtig gereift und auf dem Weg ein europäischer Top-Star zu werden. Hoffentlich traut man sich das Ende August. Er bringt mittlerweile das gesamte Paket mit und das so abgerundet, dass es eine Unterhaltungsgarantie gibt, wenn er auf dem Bildschirm ist. Promos und Segmente funktionieren, die Matches sind oft einfach stark und er schafft es sehr konsequent, seinen Stempel aufzudrücken und damit auch schwächere Gegner in den sehenswerten Bereich zu holen. Ganz groß und da geht noch mehr."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: pierreMinnewrote on 27.03.2021:[9.0] "I love Ilja Dragunov, even if I didn't saw him in wXw. He is incredibly athletic, one of my favorites in WWE. His style is what I love, this guy can give a very good match to every opponent, like not too much people can do."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Brett1980wrote on 21.01.2021:[8.0] "Is very durable. Always makes a good comeback after looking dead. Very eccentric and his facial expressions are believable. Stands out as different."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: EUJBFTYwrote on 22.07.2020:[10.0] "Ilja is one of my favorite current wrestlers. His eccentric demeanor adds an intensity to his matches and I can't wait for his title match with Walter when/if NXT UK comes back!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Pinkd56wrote on 23.06.2020:[7.0] "There's an element of nostalgia remaining for when Ilja was the most exciting worker in Europe. Unfortunately his work has increasingly shown signs of being rather formulaic and those sparks of excitement we had are now gone. Leave NXT UK for your own good."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: BDDwrote on 09.04.2020:[10.0] "Dragunov is a very good wrestler, one of the best in Europe, he is charismatic, and his facial expressions are very interesting, his matches are generally very good, considering even reaching the MOTYC level, as they are always very intense and very physical too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: joelbevanwrote on 11.03.2020:[9.0] "I'm a massive fan of Dragunov, I love his intensity, in-ring skills and his entrance is also fantastic. The facial expressions he pulls really add to a match too, and he is able to keep his character the entire time he's in the ring. For some great Dragunov matches, watch his trilogy with Cara Noir, his match with Jordan Devlin and his match against Chris Brookes from last year's SSS16."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Nerfair1wrote on 23.02.2020:[10.0] "I LOVE the character and the intensity of Dragunov. He's also a great technical wrestler. His matches against WALTER and Cara Noir are particularly good. I see a great future for this guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Fan-since-1990wrote on 18.10.2019:[10.0] "Für mich eines der absoluten Highlights bei NXT UK. Macht mächtig Freude, ihm im Ring zuzusehen. Verdammt guter Wrestler, spannende Moves, gut am Mikro und dazu auch noch äußerst sympathisch, wenn man ihn backstage trifft. Klasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Unsaintedguywrote on 29.08.2019:[9.0] "I'm really invested in this guy. He's smooth and his facial expressions after every bump are golden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: KyleEnjoysWrestlingwrote on 01.08.2019:[8.0] "Ilja Dragunov is one of the younger stars of today who I am really interested in going forward. The first thing that caught be right out of the gate is that he's a Russian babyface. In American wrestling, an age old trope is the evil Russian character, so to see a Russian portrayed as a good guy is a welcome change of pace. Next is obviously his intensity & odd mannerisms. Despite being small, he hits hard & will never back down from someone the size of WALTER. I think he's an awesome addition to NXTUK, which is where he is currently rising in stock. My only criticism is that I think his finisher often looks weak & I think he should change it up."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: DeathByElbowwrote on 07.05.2019:[10.0] "Für mich der Breakout Star in Europa seit Jahren. Immer konstante leistungen bei WXW gezeigt, das er mitlerweile welt weit gebookt wird und nun auch bei NXTUK ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Sebastian Vwrote on 13.03.2019:[9.0] "Alles an Ilja ist sehr gut. Im Ring ist er unglaublich konstant, zeigt nie schlechte Matches und hat schon einige richtig gute Matches gezeigt sei es gegen Walter im Caratfinale 2017 oder am Tag 2 des Carats 2018. Er mischt Strong Style und Technik mit gutem Characterwork und starkem Storytelling sowie gutem Crowdwork. Die Crowd kann er sowieso sehr gut in seinen Bann ziehen, da er sehr charismatisch ist, sein Gimmick toll verkörpert und einfach eine Main Eventer und gleichzeitig doch Underdog Ausstrahlung hat, obwohl er auch der Überlegene sein und dabei glaubhaft ist. Auch sein micwork ist inzwischen sehr intensiv und eindringlich geworden. Alles in Allem ein sehr guter Wrestler, einer der besten Europas und daher 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: netti patewrote on 23.12.2018:[9.0] "one of the - if not THE best - in Europe; I was a big fan of his Ivan Drago" (from the rocky movie) gimmick"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Cal Vamwrote on 15.08.2018:[10.0] "To be honest, I wasn't really impressed by him when I first saw him at 16 Carat Gold in the triple threat match against Bad Bones and WALTER. I didn't get what the fuss was about, but the more I watched him, the more I became interested in him. I searched for his background and soon realized that this man is all about great character work. Seriously, how can you not get behind this guy? He's putting everything into his matches and I love him more everytime I see him compete. Great in-ring psychology with almost everyone and capable of great storytelling.  I absolutely hate the fact that I missed a chance to see him live a few years ago."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Oliver95xwrote on 30.03.2018:[9.0] "Habe bisher nie ein schlechtes Match von ihm gesehen. Ich finde er hat Charisma und ich bin immer wieder beeindruckt was er einsteckt. Einer der besten die die wxw zu bieten hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Malay Boywrote on 29.03.2018:[10.0] "Ilja is very charismatic and energetic wrestler. I have a goosebumps when watch his entrance. He has very hard style wrestling skill and watch him fight with stiff wrestler is very exciting."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: TheLoudMouthwrote on 04.01.2018:[9.0] "Ein unfassbar guter Worker in Diensten der wXw, der sich über die Jahre kontinuierlich verbessert hat. Ein absoluter Charismabolzen mit ebenso starken Leistungen im Ring und am Mikrofon. Das Beste: er hat mit gerade einmal 24 Jahren immernoch unglaublich viel Potential, dass er hoffentlich ausschöpfen kann."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Wrestling Foreverwrote on 08.12.2017:[9.0] "Der Unbesiegbare bei wXw, seit er sich von Bones den wXw Shotgun Championship geholt hat, hat er kein Match verloren und da waren starke Gegner schon dabei neben Bones auch Tischer einer seiner Lehrer. Er ist auch noch sehr jung hat aber schon sehr viel drauf und man hört total an seiner Sprache er kommt aus Russland. Nur gibt es hier Probleme das ich fast nichts von ihm verstehe da er nur Russisch sprich. Untertitel bei seinen Promos würde ich sehr begrüssen. Edit 06. 01. 2017. In der aktuellen Shotgun Ausgabe hat man gehört er kann Deutsch und das richtig gut. Die Cerberus Zeit ist nun für ihn vorbei nun kommen neue Aufgabe. Die erste große die zweite Käfigschlacht bei wXw Back to the Roots XVI. @Sweeney Weiß ich auch es hat mir nur überrascht das er das so gut kann. Er ist ja Russe und da habe ich das nicht so erwartet und klar ist er nicht mehr der Unbesiegbare aber trotzdem immer noch ein sehr starker Wrestler. Edit 8. 12. 2017 Ich empfehle euch Ilja Dragunov ganz privat (Teil 1) auf YouTube anzuschauen. So ehrlich sah man ihn nie zuvor und ja sein Deutsch ist perfekt. Ohne Russischen Akzent erfährt man wieder so viel über ihn auch wie viel Scheiße er durchmachen musste."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Gloverwrote on 20.03.2017:[9.0] "His performance in this year's 16 Carat alone has given me an incredible impression of Ilja Dragunov. His energy and fire are infectious from his entrance to the finish of his matches and everything in-between. He can brawl like hell and deliver some fantastic offense, but more than anything he can tank hits like almost nobody else. After 16 Carat, Ilja is one of the main reasons why I want to follow wXw more closely."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: DerMilanowrote on 16.03.2017:[8.0] "Einer der besten Wrestler den die wXw aktuell hat. War am Anfang nich sonderlich von ihm begeistert, hat sich aber stetig gebessert und im Jahre 2016 eine Reihe von sehr guten Matches geworkt (Käfigschlacht, Carat gegen Bailey, in Köln gegen Walter und beim Tourfinale gegen Bones). Allerdings braucht er einen Gegner, der ihn durchs Match zieht wie z. B. Walter. Daher zur Zeit noch nichts für den Main Event (World Title), sondern eher für den Shotgun Title."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: King of Darknesswrote on 12.03.2017:[10.0] "Ilja ist einfach klasse. Super stark im Ring mit einem super geilen Finisher! Er hat so so viel Charisma und überzeugt sowohl von der Ausstrahlung als auch am Mikrofon. Der Split vom Cerberus tut ihm gut und der Sieg im 16 Carat Gold Turnier wird ihn nach oben befördern. Das Gimmick eines russischen Kämpfers ist genial."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Sweeneywrote on 02.03.2017:"@Wrestling Forever in der Bloopers ausgabe hört man, er kann viel besser deutsch als in der von dir besagten Shotgun ausgabe. Zudem wurde er schon klar besiegt. Carat 2016."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: 1893wrote on 27.10.2016:[7.0] "Der irre Ilja ist das mit Abstand beste Mitglied des Cerberus. Gibt immer Vollgas im Ring und gehört trotz seines jungen Alters wrestlerisch schon zu den Topleuten der wXw. Sein Charisma kommt auch immer besser durch."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: CGNRavenswrote on 28.08.2016:[7.0] "Ilja geht ab! Gefiel mir mit Svetlana besser als mit Polak, aber auch beim Cerberus ist er der beste im Bunde und wirkt völlig irre, so wie es sein muss. Er hat immer noch Luft nach oben, ist blutjung aber im Ring schon solide bis gut. Körperbau ist auch besser geworden - 22 Jahre jung! Das muss man sich auf der Zunge zergehen lassen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: BulletClubwrote on 19.04.2016:[9.0] "Bei Ilja ist noch so viel Luft nach oben und genau deswegen ist es schwer ihn zu bewerten wie ich finde. Man würde ihm am liebsten 10 Punkte geben aber ich denke Ilja hat noch einen langen und großen Weg vor sich."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: MaxWxWwrote on 18.03.2016:[8.0] "Hat mich beim 16 Carat überzeugt. Richtig gut ob im Tag Team oder alleine, einfach einer besten bei der wXw momentan."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: BlueDiamondwrote on 18.03.2016:[8.0] "Hat sich sowohl im Ring, als auch vom Körperbau prächtig entwickelt und macht mit seiner Zugehörigkeit zu Cerberus sowie in seiner Funktion als Tag Champion einen guten Job. Beim Carat konnte man sich sicher sein, dass wir von ihm in den nächsten Jahren noch Großes bei der wXw zu erwarten haben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: DNPwrote on 21.12.2015:[7.0] "Als Teil von Cerberus bekommt man nun ein Charisma zu sehen, welches ich zumindest bisher so von Ilja nicht kannte. Er passt perfekt zu der Gruppe und zu Adam Polak. Vom Ringkönnen her selbst erachte ich ihn jetzt schon als einen der Besten von wXw. Dragunov hat auf jeden Fall eine große Zukunft vor sich!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Viper99wrote on 12.06.2015:[8.0] "Ein Mann für die Zukunft. 22 Jahre Alt und ein wirklich guter Worker! Sein Gimmick ist Okay, aber in Ring ist er super."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Deezywrote on 06.06.2015:[9.0] "I can't believe how good he is at just 22 years of age. His toughness is incredible, bearing in mind that he took nothing away from his stiff style full of headbutts even after a skull injury."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Miranda7wrote on 28.05.2015:[10.0] "Mein absoluter Favorit! Er spielt fast perfekt und hat in den letzten Jahren auch kampftechnisch viel verbessert. ILJA! ILJA! ILJA!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: SRwrote on 13.05.2014:[8.0] "DER Newcomer des Jahres 2013 im deutschen Wrestling. Bringt sein Gimmick fantastisch rüber und ist gut im Ring. Zurecht der erste wXw Shotgun Champion gewesen. Dann der Rückschritt durch die scheinbar langanhaltende Verletzung, mittlerweile aber schon wieder bei der GWF in Dresden aufgetreten. Kann es kaum erwarten, ihn wieder in Oberhausen begrüßen zu dürfen. Für mich einer der Wrestler, von denen ich mir in Zukunft großes erhoffe."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: affenmannwrote on 23.12.2013:[6.0] "Hat ein absolut geniales Gimmick, welches er auch super rüberbringt, und ist für wrestlerisch schon ziemlich weit, wenn man sieht, wie wenig Erfahrung er erst hat. Am Körperbau sollte allerdings noch gearbeitet werden."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Son of Libertywrote on 15.12.2013:[9.0] "Ich habe bisher noch kein schlechtes oder nicht unterhaltsames Match von Dragunov gesehen.  Leider momentan verletzt... Hoffentlich bald wieder gesund und fit.  Ich bin gespannt auf seine Zukunft im Wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Goldeneyewrote on 03.12.2013:[8.0] "Was für ein Gimmick! In Deutschland aktuell einmalig und damit für jede Veranstaltung eine besondere Attraktion. Bringt mit seiner Mimik das Gimmick wirklich gut rüber und die Verbindung mit dem Publikum stimmt. Toller Run als Shotgun-Champion den er aktuell hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Dreamforcewrote on 25.11.2013:[5.0] "Er spielt seine Rolle sehr gut und seine nette Ringbegleiterin unterstützt die Wirkung nochmal deutlich. Was die Fähigkeiten im Ring angeht, war er nicht überragend, aber auch nicht schlecht."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: cookie monsterwrote on 22.10.2013:[9.0] "Einer der sehr talentierten! Vorallem in dem Alter. Überzeugt sehr mit Gestik und Mimik, wrestlerisch ist er einer der großen Namen für die Zukunft. Mit Sveti rundet es das ganze perfekt ab. Wird in Zukunft auf jeden fall was sehr großes. Denn Talent hat er massig!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Weskerwrote on 07.10.2013:[8.0] "DRAGUNOV! DRAGUNOV! Was für ein junger Gott! Hat natürlich vom Wrestlerischen her noch einiges zu lernen, die letzten Performances haben aber gezeigt, wie gut er unterhalten kann und dass er einfach tolle Matches abliefert. Und er ist noch so verdammt jung! Spielt seine Rolle nahezu PERFEKT und zeigt im Ring echten Kampfgeist, was sofort auf das Publikum rüberspringt. Bin ziemlich gespannt, was für eine Zukunft auf diesen russischen Titanen wartet. Hier gebe ich gerne 8 Punkte, weil er einfach begeistert. Und das soll Wrestling doch am Ende des Tages tun, oder?"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Blue Meaniewrote on 20.08.2013:[8.0] "Unterhaltsames Gimmick, das er überragend spielt und optimal von seinem Valet Swetlana Kalashnikowa ergänzt wird. Wrestling Skills sind - grade angesichts seines Alters und Ringerfahrung! - klasse! Kommt mit 19 schon sehr souverän rüber und wenn er so weiter macht, ist eine Verpflichtung durch WWE eigentlich nur eine Frage der Zeit!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Matt4Wrestlingwrote on 19.08.2013:[8.0] "Ich bin zwar der Meinung, dass sowjettische Gimmicks mittlerweile out sind, oder sein müssten, aber es kommt darauf an wie man sie verkauft. Mit seinem Valet an seiner Seite und seine, für sein Alter, hervorragender Wrestling-Stil, passen einfach. Natürlich gibt es hier und da noch was zum verbessern, was er bis jetzt mit Charisma mehr als nur ausgleicht, aber ich sehe noch großes Potential. Top!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: That 70s Blokewrote on 19.08.2013:[7.0] "Definitely one of the most promising rookies of Europe, only 19 years of age and he's already capable of stealing the show!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: LeonAusBOTwrote on 19.08.2013:[8.0] "Sensationelles Gimmick, mit Svetlana Kalaschnikova die passende Begleitung. Aus der Hinsicht schonmal Top. Durfte ihn nun ein paar ma in OB wrestlen sehen und es gefällt mir ziemlich gut. Der Höhepunkt natürlich das Match zwischen ihm und Blunt um den Shotgun Titel. Das war sensationell. Befindet sich auf dem richtigen Weg, da kann noch ordentlich was draus werden!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Eddiewrote on 09.05.2013:"Ein Jahr Ringerfahrung und hat das Gimmick des Jahrhunderts. Cooler Typ dem ich natürlich keine Wertung bis dato gebe, allerdings könnte er mit seiner netten Begleitung die Entdeckung des Jahres werden. Und er schubst gerne Fans beim Entrance. Starker Mann."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Keithnelson18wrote on 11.02.2025:[7.0] "I'm 50/50 on Ospreay, he can either make me excited during a match or pissed off during a match. The dude can have a good match, but most of the time he doesn't sell when needed to or he no sells too much. If it's for a burst of energy, I accept that, but when he does it over and over in the same match, I get annoyed. Another thing, Dave overrates his matches half the time. Besides that, he's a good wrestlers and can have a good match, if he quit no selling, he would've gotten a higher score from me."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: wrestlingswiftiewrote on 10.02.2025:[5.0] "The internet's current golden boy, Ospreay is 50/50. While he is capable of having a good match, it's gotta be with someone who REALLY can mesh well with his style. For example, I consider his matches with GUNTHER, Kenny, or Danielson to be some of his best... But if he's in there with someone like Ricochet, someone who will try to outdo his stupidness, the match becomes bullshit. I also find his matches hard to build suspense when he constantly gets up after a beatdown from the dominant wrestler. He even just legit no-sells at times, which wouldn't bother me if he didn't do it in every match, followed by a video-game looking sequence. Also, his usage of big moves is a big pet peeve for me, because he doesn't know WHEN to do them. He's one of the most 50/50 wrestlers ever, when he's good, it's excellent... But when he's bad, total crap."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DDTINCwrote on 28.01.2025:[10.0] "One of those guys who can just put on a 5 star classic with anyone, whether it's Bryan Danielson or shota umino. Without a doubt the best wrestler of the past 5 Years and he is only 30."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WillOspreaywrote on 23.01.2025:[10.0] "This man has been my favorite wrestler out of ANY wrestling promotion since revolution 2024. he has been putting out banger after banger, he already has multiple classics that being against Swerve at Forbidden Door, PAC at ALL OUT, and i will never forget the spectacles he put on against Bryan and Okada. i get that his style isn't for everyone, but you gotta admit he's a huge draw for AEW, his high flying and fast paced style is one in a million and he will go down in history as one of best to ever do it. it is virtually impossible to have a bad match against him. every PPV match that he has competed in is mustsee. he is only 31 years old and already established himself as possibly the best in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: dsv the raterwrote on 21.01.2025:[10.0] "This guy is the best high flyer of all time, no joke, he's the only one who manages to surprise me with every match I see of him, it's impressive, surreal, top 5 best in the world right now without a doubt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Lukeathonwrote on 13.01.2025:[10.0] "Will Ospreay is a wrestler of 2 halves for me, the first half is when you see him wrestle on TV, while you are at home, and you think "There is NO way this guy can kick out of all of this" and it takes you out of the match a little, but by the end he's done so many cool moves at such a frantic pace with no error that you cant help but think, this guy is kinda cool. Will Ospreay's 2nd half is when you watch him live - in person. Because literally any complaint flies out the window, his wrestling style gets crowds to come alive, his move set gets the biggest reactions by far and more than anything, he makes you have an amazing time because you don't have the time in the audience to think about anything other than Will Ospreay wrestling at 90mph in front of you. To me, Ospreay is a genuine spectacle, maybe not a spectacle of Pro-wrestling as a whole but in terms of getting crowds going and perfecting his style, he's well and truly levels ahead."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JLHarmanwrote on 13.01.2025:[10.0] "I'll make it simple, Will Ospreay is one of the best wrestlers in history! And since January 4, 2019 he's THE best In-Ring wrestler and still is in 2025. Yes, there are many excellent wrestlers in the business, but no one has the consistency of Ospreay. It's virtually impossible to have a bad match when Ospreay is part of it. He's one of my top 3 favorite wrestlers of all time, and it wouldn't surprise me if in the years to come he reached number 1 !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TWBwrote on 08.01.2025:"Osprey is absolutely one of the best in the world today. I get that his style is not for everyone but you can't deny that what he does in the ring is pure magic."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: darkflame4527wrote on 05.01.2025:[8.0] "Will Ospreay is one of the most exciting wrestlers on the planet, with his athleticism (mainly his agility) off the charts compared to 99.9% of wrestlers in the world. His high octane style of wrestling is objectively captivating and has produced sensational matches (favorites being vs. Oku, Danielson, and Omega) on a seemingly weekly basis. He still we always be known as the one Dave Meltzer has glazed the most with almost every match of his this year being >5* which is so unrealistic. The whole >5* thing defeats the system's purpose, but alas. His promo work is really average though. His promo trying to roast Triple H generated a lot of hate from the fans, as his animosity towards Hunter seemed pretty unwarranted as he probably wasn't even mentioning him on the Pat McAfee show. His best work has always been in NJPW, the indies, and just anywhere other than AEW. Yeah his matches in AEW have been stunning, but as a "wrestler" as a whole, his work has downgraded. I remember his promo against Kenny Omega in NJPW last year and my goodness, the raw emotion during that was amazing. He has devolved heavily from that and is losing so much respect from a lot of people. One of the best in the ring, but a complete afterthought in every other aspect of being a wrestler which is pretty unfortunate."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AceHagannwrote on 30.12.2024:[9.0] "Will is a genius in the ring. While he tends to base his matches on flashy maneuvers, he doesn't really need them. He is great at adapting his wrestling style based on his opponent. Charismatic, great with the crowd. He is always a highlight on a card."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: 25ChopsofDeathwrote on 30.12.2024:[10.0] "His 2024 alone gives him this rating but he's been evolving into a legend for quite some time now. One of the best sellers in the business and has good chemistry with just about any wrestler he's paired with. His WK 17 match with Kenny Omega might be my favorite match of all time and it's mainly because of his performance. Excited to see more of his legendary career in AEW"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: HeavenlyHalberdwrote on 19.12.2024:[10.0] "Will Ospreay has been the best wrestler in the world for at least 5 years as of the time of this writing, and with his absolutely insane catalogue of great (including tons of all-time great) matches, in my mind he's cemented himself as one of the greatest wrestlers of all-time and he's still in his prime. Only a handful of other wrestlers have the amount of great matches he does, and Ospreay has done nothing but continue to innovate and improve throughout his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: coppercowrieswrote on 19.12.2024:[10.0] "Ospreay used to have some holes in his game that lowered my ranking for him a bit, but since joining AEW he has absolutely evolved and excelled. The mic time has made him a great talker and very comfortable, and he's finally got that crowd connection that eluded him a bit in New Japan. His matches are a great combination of power and spots, have calmed down into something more psychological, and when paired with another great performer always deliver."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BoltMelon1wrote on 17.12.2024:[10.0] "Best in the world. Most exciting wrestler of all time. Could easily become the greatest wrestler of all time. Best finisher in wrestling (Hidden Blade), best theme song in wrestling. Don't really know what else to add. He is a generational talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ZephsPancakeswrote on 12.12.2024:[10.0] "Potentially the greatest wrestler of this generation. Will is a person who I've had the pleasure of watching progress over the course of around 8 years currently and have seen him progress from one of the most spectacular high flyers of all time into a much more complete wrestler, blending many styles into his work. His transition from a junior heavyweight to a heavyweight is probably the best of all time I would argue, he has maintained influence from the likes of Marufuji and Hayabusa whilst also changing his game from the high flying "flippy" offense most people discredit him as only being, to a more high octane fast striking style with elements of high flying blended in. The most reliable "big stage" wrestler in the world currently and heralded by critics for good reason. His style may not be for everyone but most people write him off for what he used to be, instead of focusing on what he is today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: justwrestlingwrote on 12.12.2024:[10.0] "Generational wrestler in my opinion. Every paper view match he delivers. Since joining AEW his mic skills has improved and he has natural charism. Need to see him be AEW champ in 2025. Some people will hate on his style but I enjoy it. His matches always got the crowd the loudest and most engaged. In 2024 he had lots of great matches from Danielson, Fletcher, Swerve, Takeshita, to the triple threat match at Wrestledream."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: SimpleJack316wrote on 05.12.2024:[10.0] "Will the thrill. A living legend. This man deserves a 10, hell make it an 11. I mean...if you want an idea on just how all-time elite this guy is(when its all said and done he's going to be one of the greatest pro wrestlers ever, hands down. Maybe THE best) just take the AEW PLEs for example since the second they signed Ospreay. Every one of them i mean EVERY SINGLE ONE take a guess at who has the highest rated(whether its WON or Cagematch or whatever source you can find) match on the card....you guessed it....Ospreay. Doesn't matter who he's facing. What the stipulation is. Where the match is on the card. He's the #1 attraction. He's the best part of the show. Month after month. PLE after PLE. He's still so young and already has as many classic/5 star/highly rated/critically acclaimed matches as legends like Kenta Kobashi and Bryan Danielson. The fans don't lie. The masses have spoken. This guy is BIG TIME. If he eventually makes the move to WWE(which i believe he's always resisted because of their policy on having him live in the USA) he will be THE guy. The next Stone cold/Rock type level of popularity. He's got a banger theme song. Great mic skills/promo work. Looks the part/has cool looking attire. He can play a PERFECT heel if he needs to(see match against Kenny Omega at Forbidden Door for example), to go along with being more over as a face as just about anyone ever. And above all else he's the single most exciting and entertaining in-ring performer this sport has ever seen. Bar none. He's set the bar at an entirely new level with the way he wrestles. His offensive arsenal/move set is unlike anything anyone has ever seen before. The pace and intensity at which he delivers his moves...to go along with the accuracy AND degree of difficulty. Its stuff of legend. He's just so freakin' cool. Everything about him. Even the catch phrases and nick names. The look and the style. That little crown thingy he does with his hands. The performance. Everything is cool. Fans eat it up. Anyone who watches and comes away thinking "all he does is flip around and he doesn't sell enough"....just know you're the extreme minority here. Maybe you're missing something/looking for the wrong things. Idk. Because when I watch all i can think of is how this man took the sport of pro wrestling, something I had already been in love with for decades, and gave me a whole new perspective on it/rekindled my childhood joy and fascination. He's special. A generational talent. And its an honor to watch him do what he does."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: VitaminJ19wrote on 02.12.2024:"Not personally a fan of a lot of his work. A lot of it is repetition and doing moves for the sake of doing moves. I have mostly watched his AEW work, which I have found very frustrating at times to sit through with the extreme lack of selling and move spamming. Will Ospreay is the quintessential wrestler that evokes the modern era of "doing moves for the sake of doing them without thinking of why they are doing them""
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: davo2027wrote on 01.12.2024:[10.0] "Best in ring worker in the business. A very underrated seller. Great at telling stories in ring. Once in a generation performer. Any promotion would be lucky to have this guy. One of one."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: cheesewrote on 25.11.2024:[3.0] "The most repetitive wrestler I have ever seen. He has never wrestled a different match during his aew career no matter how different the beginning is, he will revert to doing the same sequence to pop the crowd. He can hardly pop the crowd without big moves, he has a lot of potential but instead he decides to wrestle like hes trying to keep the attention of a 3 year old. Its awing how people think hes the goat when he throws wrestling out of the window and decides he wants to wrestle like he's from an anime. He cant even sell a limb if he wanted to, against danielson he hits a hidden blade with the arm that was worked the entire match and for fletcher, although he sells about 5 moves, he immediately goes back to using his normal moveset with moves that involve his neck and shoulders because of his nuance to adapt to anything."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Maniaofmaniawrote on 13.11.2024:[7.0] "I like will's work alot but he is also far from the best in the style that goes to the prime of people like Dragon kid and cima Hayabusa and Sasuke. Hell, he even uses move named for one of them. os this loose him innovation points but other wise his match output level if not with in question output rating 90/100 innovation rating. 60/100 150/200 Total rating 75/100 or 7.5/10 round down 7"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Willie 19200wrote on 10.11.2024:[10.0] "This is one of the greatest high flyers in the world and an amazing technical performer. Every time I see a Will Ospreay match I'm speechless. This is a man who is 30 years old with some of the best matches with people like Okada, Naito, Omega, Ricochet, Danielson and so many others. I'm excited to see whats next for Ospreay in AEW and hope that he succeeds in his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Chr1st0phwrote on 28.10.2024:[10.0] "I think people who say he's just flips and tricks are missing what really makes Ospreay one of the best in the world right now. People can say he uses "no selling" too much, but I think he uses it to an extent that makes the match a lot more enjoyable. Would I be sad if he dialed the times he did it down, no in fact I would be a bit happier. However, when he does do his "HAAAAAAAAA" into the air and hit a hidden blade, he is always down for a while. It's adrenaline. I also believe he's a talent that can be in the midcard right now, and then next PPV cycle be a main title contender and I wouldn't bat an eye. When he say's he's the best I truly believe it, same with Kenny Omega. Look at his match catalogue this year so far in AEW. Takeshita at Revolution, Danielson at Dynasty, Roderick Strong at Double or Nothing, Swerve at Forbidden Door, MJF on Dynamite and All In, PAC at All Out, Young Bucks at Grand Slam (with Fletcher), Ricochet on Dynamite, Ricochet/Takeshita at Wrestledream. All of these matches were either my favorite match or my second favorite match on that card."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Wanglerwrote on 27.10.2024:[9.0] "Not keen on his Oi Oi Saveloy Mockney muppet persona and his songbook is League 2 standard heard across England every Saturday 3 pm. He's also fairly crap on the mic - yes you are, Bruv. But there's little denying that Osprey's immense in the ring with almost any opponent and his array of offence is as strong as anyone around. As the old adage used to go, put Flair / Steamboat in the ring with a mop and they could produce a watchable 20 minute match, same currently applies to Osprey."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TypicalDuckywrote on 23.10.2024:[4.0] "To give him credit, this AEW run has been more enjoyable than I expected (bar the MJF matches). Ospreay isn't even the worst wrestler to work his style; he's arguably the best at it. The problem is I find his style unbearable to watch. I quite enjoy him when he's doing his fun spots with nothing past the surface level, but any time he attempts to delve below, it's impossible for me to find any enjoyment in him. God forbid Ospreay from doing a limb-work-based match. The way he structures his more serious matches is really not good. Most evident of this is something like the third Oku match, which has a solid 5 minutes that gets lost in a weirdly structured match that has conflicting ideas at the core of it. Thankfully for me, this AEW run has had a lot of fun TV tag matches; I actually wish we got him in them a lot more, as he is a very solid tag worker. Even then, him being good in these only comes from him being an incredibly explosive wrestler who functions well as a hot tag and not him having any sense of good structure and pacing. Because that's his problem, it's not really the no selling (although that also sucks), it's not the flips, it's the fact that his match structure is incredibly unappealing. He either does a match that is built around big spots, claiming to tell a story with them, or a match with his atrocious melodramatic acting. Obviously, there are exceptions. The Danielson match is pretty good, but most of the time, I really don't find this man entertaining in big matches, which is, unfortunately, what he wrestles in most of the time."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Daydreaminwrote on 23.10.2024:"Genuinely one of the best wrestlers I have ever seen, his matches are usually very high quality and he carries himself like a star."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RaidersFan4wrote on 23.10.2024:"Will Ospreay is one of the best wrestlers Ive seen awhile his matches between 2022-2024 are the best Ive ever seen in my life hes truly one of a kind wrestler and will continue to do amazing things in the future"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TreyHalowrote on 17.10.2024:[10.0] "My current favorite wrestler and genuinely a trailblazer of his style whether you love him or hate him, at the end of the day there's only Will Ospreay and all the "clones" can't even really exist right now without being compared to him, and what makes him so special is that none of the those aforementioned clones really measure up to them (as much as I do think some of them are overhated), he's one of the greatest talents of this generation and in a lot of ways he changed how I view wrestling, I used to view it in a "whatever I don't like is bad" way as if there is a definitive right or wrong way to do it, when in reality wrestling is a subjective ART that can be approached in millions of ways and nobody does the "Ospreay way" even remotely as well as Will himself, and it's very likely nobody ever will, he kept my love for the game alive in 2019 when I was dwindling on wrestling entirely, so it's only right I give him a 10 now, especially considering his match catalog is legitimately endless, so for all of that, I bestow a beautiful perfect 10/10..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: NoaHS106wrote on 16.10.2024:[9.0] "Für mich ist er der Beste Wrestler im Bereich seines Stils den er Wrestelt. Auch Promotechnicch ist er seht stark auch wenn da noch ein wenig Luft nach oben ist. Und zu seiner Aura muss ich wohl nicht sagen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Essalimwrote on 08.10.2024:[9.0] "Ospreay is one of the most innovative and athletic wrestlers in the world. His ability to execute incredibly complex and risky high-flying maneuvers with precision is world-class. When it comes to mic skills, though not his strongest asset, Ospreay has grown on the mic over time but i still wanna see him doing better and better when he grabs the mic. What I dont like about Ospreay? His selling, and sometimes he exaggerates his flying moves to the point that he takes them out of the context of wrestling and enters into a show and a circus."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BiosJoshiBarwrote on 07.10.2024:[2.0] "I'll be honest: the "Hybrid High Flyer" style no longer captivates me. When I first delved into independent wrestling around 2007, it was thrilling and fresh. Fast forward 15 years, and this style has stagnated, showing little evolution or variation. Matches featuring Will and similar wrestlers often feel repetitive, lacking any real change or innovation. I recognize that Will faces a significant amount of criticism from certain fans, and I worry I might get grouped into that sentiment. However, I'm not here to claim that "it's not wrestling" or that this style should vanish. My concern is that this approach has dominated modern wrestling, with Will leading the charge, and it feels like a missed opportunity for growth and diversity in the sport."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Nootnootwrote on 03.10.2024:[9.0] "As a pure athlete, there are a tiny number of wrestlers who come anywhere close to Ospreay. His conditioning, physical stamina and match pacing are all top tier, and that is worthy of praise. I find myself sucked into his matches as though Im watching an Olympic masterclass in gymnastics and athletics combined. This can be a double edged sword, and some of his matches might trend towards formulaic- he has a style, he executes that style well and he sticks to it- but it makes sense from a performance perspective for him to stick to what hes good at, especially since its a style that so many others try to emulate. Its a style I enjoy, so Ill rate it highly, but similarly? There are some valid critiques, rather than bad faith blind criticism for the sake of criticism. His promo work has improved a lot on the mic ever since stepping up to heavyweight wrestling and embracing an authenticity in his personality post injury return and babyface turn in NJPW. I find his best opponent to be ZSJ- the two men drag each other out of their respective comfort zones in a way few others do. Ill never be bored watching Will work, because for pure spectacle and surprising amounts of substance , hell never disappoint. 9/10 for me"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RaysBruwrote on 26.09.2024:[10.0] "Will Ospreay is the best wrestler right now, able to adapt to nearly any style and opponent. He portrays emotion well, making his promos feel authentic and allowing me to become invested in his matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Breakdawallzwrote on 20.09.2024:[9.0] "[9.0] Will is one of those wrestlers that you look at and just say wow how does he even do that. When it's all said and done I truly believe that he will go down as one of the top 5 wrestles to have ever lived."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: NPCwrote on 20.09.2024:[9.0] "Arguably one of the best wrestlers that i have ever seen on my tenure as a wrestling fan, his moves are brutal and perfectly executed. Him and Kenny Omega are a match made in heaven with their matches. However, the only thing that he's kinda lacking is his promo skills. But overall a phenomenal (no pun intended) wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Saladbagelwrote on 20.09.2024:[9.0] "Will Ospreay never seems to have bad matches. His in-ring talent is exceptional. He's not a 10/10 since he's not a complete package just yet (although he has been improving his promo game over the years), so a 9/10 will suffice here."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: maven loverwrote on 20.09.2024:[5.0] "I'm deeply baffled by the way contemporary culture sees this guy as the next coming of Jesus Christ. I would be foolish to rate sub-5, because he's clearly talented; his high-flying, Omega-esque style can be very beautiful at times, & when (& only when) he is paired with someone he meshes well with he can really bang out a fun, solid 20 minute affair, but Will Ospreay is not a wrestler without his problems and issues. He never sells, his promos are weak, he spams big moves, he kicks out of big moves all the time; his matches never breathe, he's the epitome of a "non-psychology worker" in modern society, & his recent "Omg it's Meltzer, yeah! " & "Nobody is on my level" comments are the last sort of thing that AEW needs right now. He can be fun in ring, but this rating just seems unreal to me."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: trickwillywonkawrote on 17.09.2024:"Extremely talented in the ring and a future legend. He is alright when it comes to presence and talking although that doesn't hurt his appeal. The only thing holding him a bit back for me personally is the booking, hopefully it will improve in the future. As it stands, he is a future pro wrestling GOAT."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: missilemilwrote on 16.09.2024:"Honestly, the GOAT of the current wrestling landscape. He has not had a bad or even average match with anybody yet since debuting in AEW. Everything he touches gets a serious match feel, and you cannot duplicate that."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Icekommanderwrote on 09.09.2024:[10.0] "As of the moment I'm writing this, probably the single wrestler that I am most excited about watching. While I can respect knocking him a point or two because you don't like his out-of-ring work, for me the number one quality I am looking for in my wrestling is having great matches and nobody is more electrifying in 2024 than Will Ospreay."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: travis807wrote on 08.09.2024:[10.0] "He's the consensus Best In The World for a reason. Not since RVD have I had the pleasure of watching a wrestler so ahead of his time in terms of what he can physically do in the ring. Will has also proven himself to be a great promo and storyteller. I've lost track of how many times I've thought "that's the best match I've ever seen" in the last couple years. He's the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: jsbortswrote on 08.09.2024:[10.0] "Yeah, i'm not sure why he gets so much hate. Will Ospreay is probably the peak (at this point in time) of a high flying wrestler, having adjusted well to remove a lot of the things that create discomfort watching him (i.e. landing on his neck for no reason constantly), and having developed really well off styles of the past. Ospreay clearly has a really huge appreciation for wrestling before him and incorporates a lot of wresting history into his presentation, so it really feels like almost every match he has is a love letter of sorts to wrestling. He is not my favorite style of wrestler, but he is undeniably incredible at what he does, and if I'm going to show any person who doesn't watch wrestling a match, he's one of the first three or four wrestlers I'd show them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: danzitorockwrote on 06.09.2024:[9.0] "One of the most divisive and influential wrestlers of his generation, I really like Ospreay, I think the real problem is the guys that try to copy him, but the original is very good. I'm not a fan of everything he does, but his capacity of working great matches is undeniable, it's a shame that he gives too much for people that are absurdly beneath him, I don't like this, but it's his choice, it shows how much of a generous and unselfish person he is, he's always trying to have great matches and showcase his opponents the same way he does to himself. His major flaws are the selling and the lack of improvisation, Ospreay has a strict formula of things that work, and a lot of his matches feel the same, sometimes it become more about the athleticism and moves than story and emotion, and I'm not the biggest fan of that. With that said, I like a lot of his works, and I don't know if this is an unpopular opinion, but I like him as a character even more than I do as a wrestler, I think he can speak very well and it's really versatile when it comes to fit in any role. Started as a skinny highflyer, but over the years gained a lot of muscle and added power moves into his arsenal, becoming a very complete wrestler. He was always very appealing."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Kevichellawrote on 20.08.2024:[10.0] "Im not a fan of giving out 10s when theres always room for improvement, but to me, giving Will Ospreay a 9 would feel like Im undervaluing him. His in-ring work and story telling is exceptional. Kenny Omega is my favourite wrestler for the same reasons as Will (and their matches together wow) but its very likely that Will may take my number 1 slot."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BULLETCLUB4EVERwrote on 12.08.2024:[10.0] "The greatest wrestler right now! He remember to me the TNA AJ Styles. He is also amazing at the promos. Happy to see him in AEW"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: CorpusSkiptotelicumwrote on 10.08.2024:[9.0] "Probably the highest ceiling of any wrestler ever. It's been said many times, but if you could build a wrestler in a computer, it would be him. Hell of an athlete, everything he does looks good. Mechanically sound, crisp, explosive, solid technical ability, high impact and looks like it hurts. Pretty much fearless in the ring and capable of the most insane spots and bumps you could imagine. Incredible progression since his ultra flippy early years into a heavyweight style. There's a big difference between him and other US workrate guys like Adam Cole and Johnny Gargano, they may do the same moves in theory, but the execution from Ospreay is many tiers above. The questions around Ospreay have always been about his head. He takes the Kenny Omega type maximalism and drops it on almost every match he's in. It's no recent criticism of his, but in making every match an "epic", sometimes they blend together when you've seen too many of them. His selling is also spotty at best, there are many of his better matches that would be taken to another level if he was more consistent. His matches sometimes lack structure and turn into back and forward bombfests. If he could learn to do these things consistently, he'd be one of the greatest ever. For me personally, he's just so good at execution that I still enjoy pretty much all his matches even with all the problems they tend to have. Now that he's in an american promotion and has dramatically improved in things like promos, I have hope that he can finally start bringing things together. He's still pretty young and has a long way to go."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: nabigoyewrote on 01.08.2024:[6.0] "Leider ist Will Ospreay überhaupt nicht mein Fall. Er ist ein super Athlet und kann tolle Moves zeigen aber das wars denn für mich leider auch. Wenn auch nicht so schlimm wie vor einigen Jahren, gefällt mir dieses flippy floppy immer noch nicht. Mal, klar ganz nice, aber allgemein ist es mir einfach zu viel. Selling ist ebenfalls schwierig, da egal welcher Move, kaum den Impact hat, den er haben sollte. Zudem stört mich das jedes Match dieses "Epic feel" haben muss, wodurch einfach große Moves gespammed werden ohne Impact zu haben und in der häufigkeit die besonderheit verlieren. Ich kann verstehen warum viele ihn gut finden, aber meins ist es einfach nicht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: namisuzwrote on 30.07.2024:[8.0] "Will Ospreay is a skilled and athletic performer, known for his high-flying moves and dynamic matches. However, his reliance on these high-risk maneuvers can sometimes come at the expense of storytelling and ring psychology. He often undersells his opponents' moves, which can take away from the match's overall realism. Recently, there have been noticeable mistakes in his performances, which highlight the need for more precision and consistency. While he has the potential to be one of the best, focusing on these areas could enhance his overall presentation and longevity in the industry."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: SigmaAngeloAsteriawrote on 28.07.2024:[7.0] "I do not understand why he is so highly rated. He is good in the ring, but a lot of other wrestlers can outshine him. Decent promo, he can talk, even though some of his promos are awful. And he has that problem of no-selling, which makes sometimes finishers look completely redundant. If he sells a little bit more, he'd definitely get an 8 or 9, but for the moment, just a 7"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: felixshanewesternwrote on 27.07.2024:[10.0] "In years to come we might very well see Will Ospreay as the greatest to ever do it. For now, he's one of the best wrestlers in the world, who is constantly improving. He has one of the best match catalogues ever, is a decent promo, and has strong presentation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: A 64wrote on 24.07.2024:[10.0] "The fact that this man can put 5 star classics very often in a very small period of time yet he's just in his early 30s is genuinely scary. Future GOAT for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: XNoWayKemoSabeXwrote on 24.07.2024:[10.0] "The Billy G.O.A.T himself! I've only really seen his AEW work and some clips from NJPW but this dude is legit built different. His most recent matches with MJF and Swerve are just a testament to the fact that this dude can GO! He's (in my opinion) the best in the world right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Aspionwrote on 22.07.2024:[10.0] "(Sorry english is not my firtst language) Probably the best highflyer in history, Im still waiting for his big moment with some main title and long rain (expect revpro)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: woolyshamblerwrote on 21.07.2024:[4.0] "this guy stopped being good around when he was moving up from junior heavyweight to heavyweight in NJPW. i never want to see ospreay in a 40 minute main event because of his well-documented problems with doing believable moment-to-moment selling. his crazy athleticism works against him because he performs his moves _too_ perfectly, given the grueling nature of a main event heavyweight match. a wrestler for the social media age, ospreay's wrestling is not best watched as part of a full match, but as contextless 10 second clips posted online for engagement."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Hazelyzewrote on 19.07.2024:[6.0] "He's freakishly athletic, yeah. His entrance theme is great, yeah. And when in there with someone like a Danielson or Omega or Takagi or another on that level, he can make some magic happen. But I often feel a sense of... inauthenticity in his work that I never really felt with other super highly acclaimed workers. Often his matches feel less like a flowing story and more like a checklist of things to make fans believe he is the greatest in the world. And unlike an Omega, he does not have a protected finisher. Everyone kicks out of the Hidden Blade. Everyone kicks out of the Storm Breaker. I seem to recall even the Tiger Driver got a 1-count kickout, which makes the current "why am I so violent" story feel again, inauthentic."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Dkexwrote on 18.07.2024:[10.0] "Er mag ja ein A... sein, aber wenn man das bewerten müsste, hätten hier einige Wrestler ganz andere Punktewertungen. Im Ring ist er absolut fantastisch und gilt legitim als einer der Besten der Welt, vielleicht sogar der beste Wrestler der Welt. Dazu hat er eine Tonne an Ausstrahlung, seine Micskills sind nicht überragend, aber richtig gut. Das Macht ihn zu einen der besten Gesamtpakete im Wrestling aktuell. Er hat schon soviele denkwürdige Matches geworked, das es schon verrückt ist, und der Mann ist erst 31. Er ist eine zukünftige Legende im Pro Wrestling, ohne Zweifel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Joe907wrote on 16.07.2024:[10.0] "Overall the best wreslter of this generation. Will Ospreay is the most talented wreslter ever. He can do it all. Lucha, British, Japanese style. He can hit you with an os-cutter, hidden blade, or stormbreaker. He has a lot of matches that are just mind-blowing awesome. He is just on another level bruv."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: SlapViperLLCwrote on 14.07.2024:[4.0] "Will Ospreay is a generational talent, Ill give him that but he hasnt surprised me or even pop me when watching AEW and throughout his career as well. Hes the type of guy that wants great matches but also wants the ratings and reviews from others that some say it really doesnt matter. I wish he worked on his skill and grappling while also trying to separate from his remaining high flying spots and risking anymore damage to himself that he hasnt or will receive in the future. And his promo skills, good talker but he keeps repeating the same words like bruv, that really gets a bit tiredsome after the third week but that could be just me. Entrance is at least a plus, I will admit his theme has been stuck in my head for awhile now, hopefully they dont change it in the future. In closing, I wish him nothing but the best in his career in AEW and beyond but I will say that I will not be becoming a fan anytime soon and maybe never."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JBruce1018wrote on 11.07.2024:[9.0] "Very few issues with Ospreay, but promos and selling are it. However, before I was able to watch him more often, I wouldve thought he was a no-sell king and the worst promo of all-time, which hes neither of those. I dont particularly love his style of storytelling in the ring, but this chap definitely can tell a story his way. I also find him pretty charming in his out of the ring interviews, which I wish he was able to carry over to his promo work. Ill keep watching him and this score could definitely go up as I see more and I cant imagine that it would fall with how outstanding he is in between the ropes."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: gabsdaverowrote on 02.07.2024:[9.0] "Hes amazing. Absolutely stunning. The only issue I have with him is his lack of selling in every match, and being kinda reckless with his grappling moves. Other than that, and hes one of the best ever. Still many years to come, , what a dude!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: likethemousewrote on 01.07.2024:[10.0] "My personal favourite wrestler and he also almost single handedly got me back into pro wrestling over the past year. His moveset is so impressive and executes them all so smoothly its such a treat to watch. Future AEW champion 100%"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Cletxawrote on 01.07.2024:[9.0] "Ospreay is a tremendous wrestler. I feel its quality every time I watch it. He can do very good work even with wrestlers far below his level. But there is one problem, it doesn't sell at all, and this is very damaging to realism. We know he can sell, but he does it very rarely. He deserves 10 points for his skills in the ring, but because of this aspect, he is not completely perfect. Not 9, not 10, completely 9.5."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Hatefwrote on 21.06.2024:[10.0] "without a doubt, one of the best of all time! his in-ring skills are really sick and stunning and it makes almost all of his matches very enjoyable! he can give every single wrestler, their best match of their entire career. bro is in his early 30s and has accomplished lots of things with tons of banger matches! usually, wrestlers with very high ring skills are not very good at promos or on the mic but Will, is also very good in those things and he's proven it since he joined AEW!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: FrightenedRabbitwrote on 18.06.2024:[10.0] "Still young, right now probably the best wrestler in ring, pretty charismatic, the future of this guy is really brilliant"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RealGrapsThomsenwrote on 09.06.2024:[8.0] "Dont get me wrong, Ospreay is a good wrestler, but one thing that really holds him back for me is how he does not sell at all. He can cut a good promo and he can do great moves, but it can just be so frustrating when he gets dropped on his neck multiple times only to either kick out at 1 or just simply pop up like nothing happened at all."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: StardomIconwrote on 04.06.2024:[6.0] "I mean this sincerely, but if I was a teenager, Will Ospreay would be my favorite wrestler. When I was younger, I equated professional wrestling with cool moves. As I got older though, I realized wrestling is so much more than spamming moves. Like a great musical album, I prefer pacing and actually enjoy downtime, as it makes the big moments stand out more. I like heartfelt promos, evolving character work, and watching people overcome adversity. With that being said, Will is just not my cup of tea, although I wouldn't argue with anyone who loves to watch him. Using Bret Hart's criteria of rating a wrestler by look, promo, and in-ring ability, here goes. Starting with look, Ospreay performs well in this category. Although his gimmick seems to never change, his look is suitable for his style. His promo work isn't for me, but I don't think that's where he is focused anyways, as the majority of his ability to get over stems from his in-ring athleticism. There's no denying Ospreay is an all-time great athlete, but his matches just don't hold much meaning for me. It doesn't look like he is trying to win a fight as much as he is trying to show off new flips and highly choreographed counters. Also, I've never seen anyone win a match following a handspring moonsault to the outside of the ring, no matter how flashy it looked. I would have liked to have seen Will in WWE just because I would like to see him take on new challenges. I'm glad he can have better quality, long matches in AEW, but I would have liked to seen him evolve. Could he handle more complex character work or evolving storylines? Could he get over with a new audience? Ospreay is entertaining to watch in AEW, but it's not much different than his NJPW work. So in conclusion, Ospreay is a generational talent, but wrestling is so much more than spamming flashy moves. The best wrestlers evoke emotions out of audiences in a myriad of ways, and I'm not sure if Ospreay is capable of that."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: mr-peanut-butterwrote on 01.06.2024:"I find it incredible that people sit behind a keyboard and critique Ospreay, claiming he does too much of this or too little of the other. If you cannot sit back and just enjoy the absolutely amazing things this guy can do in the ring then you are probably just jaded by the constant negativity that surrounds modern wrestling. I think Ospreay is incredible, i have had the fortune to see him wrestle live and he's even more impressive up close. Must watch for me whenever I know he's wrestling on a PPV."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Yokoyamawrote on 29.05.2024:[10.0] "He still has an amazing future in front of him, but we can already confirm that he is going to be remembered as one of the greatest wrestlers of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: gamzeewrote on 27.05.2024:[10.0] "one of the greatest of all time and an incredibly multifaceted and talented artist. when he retires, the wrestling world will weep."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WrestlingGuruwrote on 26.05.2024:[10.0] "Will Ospreay will go down as one of the ebst high flyers of all time but he isn't just that. He can wrestle all styles in wrestling, it's jsut high flying is definitely his strong suit. I wrongly assumed he was a one trick pony and he proved me wrong and i'm glad he did. Everything Ospreay does is perfect. His promos are also much ebtter tahn they have any right to be. What a talent. A generational talent, he's no joke."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GhassaneJabriwrote on 20.05.2024:[10.0] "As of the day I'm writing this, Will Ospreay is easily the best wrestler in the world. Not only has he earned his title of Mr. 5 Stars, but he's easily the most reliable athlete for big matches. His extremely high-flying style was very cool, but his transition to one that relies more on technicality has caused his wrestling to be incredibly fitting for any of the great athletes he faced somehow. He is incredibly fluid and brutal when he needs to and his performances are always incredible to witness, and he proved it time and time again against some of the best wrestlers of his generation (Kenny Omega, Shingo Takagi, Bryan Danielson, Okada...)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Matugawrote on 13.05.2024:[8.0] "Extremely impressive and well-rounded wrestler, but it feels like at some point his matches have become slightly formulaic although still incredible due to the sheer athleticism and technique on display. To be frank, although the AEW audience eats up everything he does, I personally would prefer a bit more variety and experimentation because although the Danielson match was amazing, I would've liked for it to be a more Danielson style match than what it ended up being."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WrestlemaniaConnorwrote on 13.05.2024:[8.0] "I saw a video of him doing his crazy moves Im impressed by how hes doing and when he comes back he will be Winning more than ever."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: OldSchoolFan3098wrote on 10.05.2024:[8.0] "Will is a talent that has grown leaps and bounds since he debuted. While his in ring work is very good, he has at times not delivered when it comes to his promos. The quality Will has in his matches has been amazing especially since he graduated up to the heavyweight class. His recent work has been great as his match at Dynasty was one of the best I've seen in a long time. As a fan, when you see a talent being able to have a great match no matter the opponent, you have to respect that. I think he has a bright future not only in AEW but also in any other company he might participate in."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: leonconnelly652wrote on 09.05.2024:[6.0] "Amazing athlete it's just something about his ring presence that bothers me. Its like a lack of aura of something he doesn't seem like a badass warrior to me, he's a guy who can do cool flippy shit not much more to me. And His facials can be incredibly cringe and overacted"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: An Wrestling Guy12wrote on 04.05.2024:[10.0] "Ospreay. The best wrestler right now. Every match of him is ******. The guy has the best matches. Nothing lower than a 10. If there was an 19, I would give him that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ahdude36wrote on 03.05.2024:[10.0] "At that age, already being the current best wrestler in the world and having beaten the majority of the top guys in the business(that he's able to currently). Absolutely incredible. His aura on TV is ridiculous with the crowd. He can do almost any type of wrestling and pull of some of the most insanely cool moves you will ever see."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Pigeon Scratchwrote on 29.04.2024:[10.0] "Already one of the best wrestlers of all time. Incredibly charismatic, a massive amount of personality, and someone so incredibly special and one of a kind, who genuinely puts in his all in every match he's a part of. A massive inspiration for neurodivergent people too. I've only recently started watching him and he's become one of my absolute favorites in under a quarter of a year."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: CoRdelwrote on 25.04.2024:[10.0] "Following this lad since his early years in NJPW, where he was just the greatest high-flying alongside Ricochet. Seeing him becoming heavyweight and being involveld in many more matches with pillars of modern japanese wrestling. Now, just travelling the globe to elevate everyone and create banger matches. Ospreay is already a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: devwilwrote on 24.04.2024:[9.0] "(From 2022) Ospreay is... like... 9.49/10 for me, if we're rounding. As far as his abilities in the ring go, I don't think there's much of an argument against him as a virtually perfect performer; I almost always LOVE his matches. My problem is there's just always something missing from him as a "character": I don't really love what I've seen of his United Empire stuff; he was decent as a super earnest babyface, but I think that's slightly limiting too. At risk of playing into their feud too much, the difference between Omega and Ospreay is that Omega is a really entertaining personality both during matches and outside of matches. Conversely, Ospreay--at this point--just isn't charismatic enough for me to throw the full 10/10 at him. But he's shockingly still young enough that he could still land on a character/personality that pushes my rating to 10! (2024 update) I'm not changing my rating but I'm more confident than ever that he will never be a 10 for me. He's just too unpleasant of a personality (beyond any face/heel dynamics)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: jcheng777wrote on 24.04.2024:[10.0] "A complete package in the ring. His heel run has completely elevated him to a completely new level. Possesses probably the most explosive and electric in ring repertoire currently and will likely be a top 5 in ring worker of all time when its all said and done."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: nizzyhizzywrote on 23.04.2024:[8.0] "I changed my mind about Will Ospreay after the match with Danielson, it reminded me how much I loved this dude as Jr Heavyweight and despite him doing a lot of the same stuff over and over again, I don't really mind it as much anymore. Dude's a hell of a talent, a great asset to any company he signs with."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Daigotsuwrote on 23.04.2024:[10.0] "Will is the total package. He's got great babyface energy and can connect with the crowd. And his in-ring work speaks for itself. For most of the 2020s he's been the best wrestler in the world by some distance. Electrifying style that can mesh with anybody."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: wildothedildowrote on 23.04.2024:[10.0] "I honestly believe when it is all said in done. Will will have an amazing claim to being the best wrestler who had ever lived. The man is legit on a different level in terms of in ring work and has become an amazing promo. The dude seems to love wrestling so much. I understand that his style is not everyone's cup of tea but when it is said and done he will be an undeniable great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Scott Blaculawrote on 23.04.2024:[7.0] "There are some things about Ospreay I find undeniably good. I really dig the intensity he can bring to his matches. He has some pretty remarkable cardio. HIs agility and precision are outstanding. He can even be fairly charismatic on the mic. With all those good things being said, when watching his matches, I am often struck by one prevailing thought: I kind of wish he'd pull back some. By that I mean I wish he would, at times, work a bit more conservatively. Much of that intensity I like can be overdone a bit for my taste, often leading matches where he feels akin to spamming special moves in a fighting game. The athleticism is impressive, but it has the effect of much of his matches feeling less like a well told story and more like an acrobatics exhibition. There are two matches where I think he's performed his style in a why I found very appealing. One was his match against Walter (Gunther) and the other was (most of) his match against Kenny Omega at Forbidden Door 2023. I want to like his work more, but I'm left thinking much of his matches are the same."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: CSTLWwrote on 23.04.2024:[10.0] "Undisputed best wrestler in the world, already one of the best in the ring all time, and hes not even 30. The way he is able to incorporate high-flying moves without making it look like guys are waiting to catch him is incredible. To those who call him a flippy flop wrestler, you are blind to his amazing hard-hitting offense outside of his other-worldly acrobatics. One of the best choppers in the game right now, his strikes are cringy (in a good way) and the hidden blade is still one of the most brutal-looking moves in history. He really has it all. Even if he had the charisma of a wet towel, he would still get a 10 from me solely based on how good he is in the ring. Hell, even take away his aerobics and he would still be at least a 9. Will Ospreay is a legend, and were not even halfway into his career. [EDIT] the best wrestler in the world today and anyone who doubts it takes wrestling way too seriously."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: sarahlicitywrote on 23.04.2024:[10.0] "You can say what you like about his personal conduct, but when it comes to between the ropes, Ospreay is simply undeniable. Like Omega, like Okada, like Danielson, it is incredibly hard, if not completely impossible, for Ospreay to put on a bad match. The man is only 30 and yet he's got a catalogue of amazing matches that rivals the "good matches" catalogue of many insanely talented wrestlers. In the past twelve months alone: Danielson, Takeshita, Alexander, Umino, Bailey, Sabre Jr, Tsuji, Naito, Omega II. You might look at Dave Meltzer's star ratings and think he's too generous to Ospreay, but no, he's the real fuckin' deal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: bigotownsendwrote on 21.04.2024:[10.0] "He is what he says he is. Puts 110% into every single match and is one of the very best workers going today. One of the only complaints I ever used to see about Ospreay was his mic work, and even then he has improved tenfold and has more than come into his own as a fantastic promo. He has the potential to become the ace of AEW in the coming years and its not out of the realm of possibility that he could become a huge draw for them considering every single one of his matches is must-see. Ive seen this guy go from a skinny kid doing flips on the indies to one of the best professional wrestlers in the world in the span of about 6 or 7 years. There is only going up for Will Ospreay (hes elevated, you might say)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Punkman21wrote on 11.04.2024:[10.0] "Ospreay is a fantastic wrestler. Incredibly athletic, his moveset is out of this world, and I'm extremely excited for the future of his career. Certainly AEW's MVP going forward, alongside Swerve. His promos are engaging enough, but in the ring is where he truly shines. Can't give him anything less than a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RaySivanuiwrote on 10.04.2024:[7.0] "He's very athletic. I've watched a bunch of his matches, from Walter, to Omega, to Dunn. One thing that some of these guys do that makes it hard for me to put them up there at the top is no-selling. There's too many instances where he gets hit, puts his head down, and when whoever he's facing runs to the ropes it's like he never got hit at all and he charges them. I've been a wrestling fan since Hogan and Warrior and Rude and King Haku. If big hits don't register, I immediately think "this is fake". Years later today, I grew up obviously and I know it's all fake, but don't try to convince me it's real by doing fake things like no-selling. If you want the audience to buy your "work", sell like it's real."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Kevlar1787wrote on 04.04.2024:[10.0] "Will Ospreay may be the single best wrestler on the planet today. Not only can he have some of the greatest matches you can see today with other top-tier talent, he can even draw out incredible performances from wrestlers below him on the talent scale. His evolution as a performer from that first Ricochet match I watch has been truly astounding. His promo style is unique and engaging, and his character work is simple and relatable. The absolute total package of a wrester in the modern era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Jacksonwrote on 03.04.2024:"Great wrestler. Amazing matches against Kenny Omega, Kazuchika Okada and Zack Sabre Jr. Great theme song too"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DENDYwrote on 29.03.2024:[7.0] "Ospreay is a weird one for me. I genuinely dislike the guy due to behaviour outside the ring surrounding Sid Scala, and in the ring Im not sure if hes as good as people say. Hes undeniably incredibly athletic, but it can feel like hes cosplaying other, better, wrestlers often. When I see an Ospreay match I will often see the best bits of other bouts with better workers, but just pushed together without the psychology. I never really buy his selling or facial expressions, his promos will often just be borderline unwatchable also. Ill avoid including my personal feelings toward him as a guy who I dont think should be where he is in the industry due to the defence of an abuser like Scala and the blacklisting of talents who spoke out against him, as horrific as those things are, but I still don't feel I could rate him higher than an 7. His best matches are always with workers who are better and more charismatic than him, hes the worst when were supposed to root for him, hes just too unlikeable."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Lalo Camposwrote on 25.03.2024:[10.0] "One of the best wrestlers of all time, he will receive his flowers at the end of his legendary career, but he is one of the best on the planet today, if not the best on the planet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: May11wrote on 18.03.2024:[9.0] "He is one of the most talented wrestler. He can also cut good promos. And i am also excited to see him on weekly tv."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: jjcharg77wrote on 18.03.2024:[9.0] "I need to see ore of him cause ive seen highlights of him pre aew and only his aew run so far but hes looking like legit thee best wrestler in the world. miles ahead of anyone in any company"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TripleCrownwrote on 17.03.2024:[10.0] "I hate to rate him so highly, simply because I just don't like him. But I would be incredibly stupid to let my personal feelings about him cloud my judgement on his ability as a professional wrestler. He is truly one of the best ever. Does he do some stupid things in-ring that could really, really hurt himself? Yeah, but Mitsuharu Misawa is my favourite wrestler of all time and he did the exact same thing. Ospreay has innovated a lot of moves and put on incredible matches. The only thing I could really put him down on is his promos, personally I don't think he's very good, he has charisma but his work on the mic isn't up there, yet. Would've done better going to WWE in my opinion, as they would reel him in a little bit and improve on the small shortcomings. At least in AEW he's able to do what he wants, wrestle the way he wants, and I guess that's the most important thing as a performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ultravioletshiroiwrote on 11.03.2024:[10.0] "Will Ospreay is one of the best wrestlers ever. He can execute high flying moves, strikes and grapples flawlessly. He can sell like a million bucks and he regularly wrestled 5 star matches in Japan and his match against Chris Jericho in AEW. He has also proven in AEW that he pretty good mic skills. He's truly a jack of all trades."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: morgomirwrote on 08.03.2024:[10.0] "He is actually the best pro wrestler in the world. No matter who his opponent is, in every company, the match will be great. He's probably the best recruit for All Elite Wrestling. He's a high flyer, with also powermoves et brawling styles, a total package. Only 30 years old, and a lot of legendary matches, a lot of 5-stars + matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MichaelB137182wrote on 08.03.2024:[9.0] "This rating system shows exactly the issue with some wrestling fans on Cagematch. My dude legitimately hasnt had one bad match this year. And maybe 3 non bangers and a handful of classics. The best bout machine currently in wrestling, taking over from Kenny Omega. 9 more months left of the year, this guy will be cemented as an all time great if he sticks to the pace he is going at currently. Absolutely amazing wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: satumwrote on 07.03.2024:"Overrated and uninspiring . You could rearrange any of Ospreay's sequences in a match and it would be the same match . No story being told . Sure , the moves are cool and impressive but personally I dont see much special about him . He certainly does these moves the best though out of anyone else . He is impressive in that sense . Not what I look for in pro wrestling though ."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: PorcoRosso1wrote on 07.03.2024:[2.0] "One of the most unlikeable wrestlers I've ever seen. His best matches are him receiving a pasting by the other guy and his worst matches are when I'm supposed to root for him. I just can't do it. He's such a vile man. His offense is insane but it's tainted cause I can't enjoy any of it because of the person performing. Sometimes if you turn your brain off it's cool though. The man should be a contender at best and never hold the gold of a promotion. He's too unreliable and also not very bright. He's had plenty of good matches but those are less common nowadays. Bad wrestler overall. I think the real reason why I dislike Will is because like MJF I never feel an authentic aura of someone wrestling in a struggle but rather a person playing a performative piece. As an example Terry Funk I believe when he wrestled he was crazy, but with Will, I don't get any of that just some dummy doing cool moves and giving weird facials. I know he can sell and work over a limb and he's fine doing those things, but as time has gone on and he's been put in more positions of power in different companies with no one to correct him I feel he's gotten even more performative."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ohchxrliewrote on 04.03.2024:[10.0] "Will Ospreay is the best wrestler in this current generation. It can be in NJPW or now in AEW. He's a one of a kind wrestler that I believe only history will truly point out just how brilliant he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Divus Rolexuswrote on 02.03.2024:[10.0] "For a long time (until 2020) I was very skeptical about Will Ospreay. I thought he was a good junior heavyweight but really overrated. Then he solidified himself in the Heavyweight division in NJPW and I started to change my mind about him. Since 2022, he's on a roll putting great matches on great matches. I do think he changed the image people had of him, he really was a real pain until the United Empire. I couldn't think about him as a face, I just wanted to slap him. But then he completely accepted the full heel character and he developped the unique aura he has today. Currently, he's a face for me, I'm totally rooting for him in much of his matches. His in-ring work is also perfect, he does everything excellently and no one can take him that. At only 30 years old, he still has a bright future and can become one of the GOATS in the coming years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DB1091wrote on 28.02.2024:[9.0] "Unquestionably, Will is one of the greatest wrestlers in the world right now. He consistently produces high level performances and thrilling in-ring contests with a variety of wrestlers around the world, and his matches are always must see spectacles. He will no doubt translate this to AEW, where there is a number of dream matches for him to have. His in ring technique has been fine tuned over time and he is not simply a spot monkey or flippy guy, as may be the perception to some. He does tell very good stories in his matches. One concern for him now reaching a global TV audience is that his idea of a character or promo outside of his wrestling seems to be to yell bruv a lot and swear, and this will quickly become tedious on weekly television. Hopefully there are people he can work with as he moves to AEW now to further develop that side of his ability and then he truly does enter the realms of being talked about as one of the best of all time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JimboJobsonwrote on 28.02.2024:[10.0] "What is left to say about this man? He is the perfect professional wrestler in every way and you should go out of your way to watch his work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: YagameTheRealKingpinwrote on 25.02.2024:[10.0] "Ospreay mit Abstand einer der besten Wrestler sowohl Aktuell als auch All-Time. Er beweist jedes Mal aufs Neue das er mit absolut jedem ein hochwertiges Match worken kann. Zu dem kann er auch so mit seiner Mimik und Gestik soviel übertragen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Hyunminleewrote on 23.02.2024:[10.0] "One of the greatest wrestlers of all time. He built different. He is made for wrestling. He was amazing when he was junior heavyweight. His highflying moves were unbelievable and he made lot of bangers. The match with Ricochet and Shingo Takagi will be remembered forever. After he became heavyweight, he became one of the best all-rounders. His grounding skills and striking skills are great and he still using unhuman highflying moves. And he made too many bangers. His NJPW and Europe indies runs were so amazing. Not only in-ring skills, he is very charismatic and he can do great promos. I think he is one of the icons in this generation. But I dont want him to overdo. I wanna see him longer in the wrestling. Nevertheless, he is obviously one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DanyloFilipokwrote on 22.02.2024:"One of the best if not the best wrestlers of our generation. Although he started as a typical highflyer in PROGRESS and first few years in NJPW, in the last 3-4 years he absolutely carried as a wrestler who can be the great face and even greater heel. Almost every fight is a banger. He has one of the best move sets in the industry. Never understood people's hate for this man. 10/10"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GM56 Championwrote on 16.02.2024:[5.0] "He's so-so. He's capable of doing great high flying moves and sequences, but his constant screams and weird promos annoy me. He's insanely overrated and so are his matches. He's worked wonderful matches with Omega, but he's also capable of ruining matches with his crowd pleasing schtick (like his match with Sabre at Royal Quest). As far as I'm concerned, a not too charismatic flashy guy, but with tendency to ignore the psychology and drama which is a terrible mistake to do. I'm not into him so far"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Cepek44wrote on 11.02.2024:"Will came a very long journey in his career, from being a spot monkey and a high flyer who could do all sorts of aerial manouvers at any given time, then turning into heavyweight, mixing his high flying skills with some hard-hitting strikes, becoming the wrestler he is today. And today, he's easily one of the best wrestlers in the world. I feel like there's still something missing for him to be labeled as #1 guy in all of pro wrestling, but he's definitely in the top 5. He's putting on banger after banger everytime he gets inside the ring, no matter who he is facing. He can cut a hell of a promo and get you invested in a certain match just by this promo and the story he tells in it. He has proven himself in every aspect of the game and for that, he should have everybody's respect. As I'm writing this, his time in NJPW is over. I hate that he's leaving, but I wish him all the best in AEW."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BruceMarcos524wrote on 04.02.2024:[10.0] "The best gaijin in NJPW after Kenny Omega. One of the best pro-wrestlers in the planet and one of the best athletically gifted performers in history. At first when he was a Junior Heavyweight, I thought that he was just another spot monkey who relied on acrobatics and circus moves to make the match exciting, one of the examples is when he squared off Ricochet in BOSJ in 2016. But upon promoting to the Heavyweights, Ospreay improved and became the best wrestler of his era. Given that he has the entire encyclopaedia of great matches of his career, Ospreay bringing his 100% on every match against Kenny Omega, Shingo Takagi, Kazuchika Okada, etc. He is so good even at his worst he is a 4-star performer. No wonder this guy has currently the most number of 5-star and above matches in wrestling history. Ospreay is also known for being one of the most brutal guys in the ring as he is willing to take nasty and dangerous spots to himself and to opponents. A total package guy with tons of arsenal of moves. His finisher, the Stormbreaker, is one of the most beautiful visually performed finishing move in my opinion. The Hidden Blade however is the stiffest move and one of the most dangerous moves in pro-wrestling as you don't know when he's going to hit it because you cannot see it coming. Just one of the cons of his career is the toll of his body in the long run. Because of his 200% effort he put on his body, I am worrying that he might retire at an early age due to injuries taking effect. I just hope he needs to slow down in the future so that we could appreciate him for a long time. But there is no denying that the level of work rate and athleticism Ospreay has is greater than most of the wrestlers today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: KEIwrote on 01.02.2024:[10.0] "BILLY GOAT. Probably my favorite wrestler at the moment. One of the best wrestlers of all time. His ability to show incredible matches time after time is mind boggling. 10 out of 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: LIGEwrote on 25.01.2024:"OSPREAY, I love you. You are the number one in the world, and you will always be the number one wrestler in my heart!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: The Quick Manwrote on 13.01.2024:[10.0] "Nobody put on as many match of the year candidates of the past two years than the Billy GOAT himself. Debated on whether to give him a 9 or a 10 but 2023 Will Ospreay was simply on a level few wrestlers can hit even once in their entire career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: arrancarwrote on 10.01.2024:[9.0] "Like a few wrestlers I once considered all-time greats, Ospreay has sadly dropped over the last few years. He's still one of the best in the world and even my consecutive WOTY for 2022 and 2023 (simply for his high match output), but I've found myself becoming numb to his structuring and psychology. He used to be a pure high-flyer and was fantastic at that, but then he developed his game as he took on size and became one of the genuinely most explosive and intense wrestlers in the world with his insane strikes and power moves, all while funnelling his world-class athleticism into less high-flying-based efforts. There's also the fact that his overall selling has massively improved since his early days, making his matches far more character-driven. This all basically makes Ospreay the 'perfect' wrestler, physically excelling in every single form of offence he attempts and being more than adequate in the various 'wrestling fundamentals' areas. This has been the case ever since about 2019 when he first began his ascent out of NJPW's junior division. The reason I think lesser of Ospreay despite his incredible abilities and record is that he's simply become far too predictable for me to enjoy his matches or individual performances nearly as much as I used to, and with his strongest points now no longer impressing me as strongly, his few outright flaws that I've previously overlooked have also now become more prominent and thus more annoying. I've sprinkled these thoughts into various reviews of Ospreay matches I've left on this site, but my main issue with Ospreay now is that EVERY match he has -- whether it's against a multi-time World Champion, an up-and-coming star, or just a random indie wrestler -- will turn into an 'epic' 50/50 back and forth of big moves, counters, finishers, and near falls. Now, that sounds pretty awesome on paper, but do you ever just gorge yourself on fast food? That's what this is. Seeing all these crazy back-and-forth trades and teases makes sense when it's in a major feud and/or on a massive stage (i.e. an event like the G1 finals, Wrestle Kingdom, etc.), but Ospreay chooses to do this basically every time he steps into a ring, at least for his singles matches. The first time you see Ospreay go all out against a top NJPW star, it's possibly one of the greatest matches ever, but when you see him just do a slightly condensed version of that exact same performance only a month later against a random US indie dude, it starts to feel a lot more hollow, and that trend continues with each consecutive iteration. This structuring issue wouldn't be as annoying if Ospreay at least made effort to not copy-and-paste ALL the exact same spots and sequences from one match to the next, since you KNOW with Ospreay matches these days you're getting about 90% of: slingshot crossbody splash to the outside, 'pip pip cherio' flying elbow, Kawada kicks, backflip push kick into enzuigiri, hook kick, Cheeky Nandos Turnbuckle Kick, octopus hold, handspring into flipping enzuigiri, spinning backbreaker, Spanish Fly, sit-out powerbomb (often out of a Spanish Fly counter to a lariat) OsCutter, Marufuji-esque across-the-ring flying low kick once opponent enters from outside the ring, etc. And that's just his signature moves, which isn't to mention his various finishers, or now sadly ex-finishers, like his Hidden Blade, Tiger Driver 91, and Leap of Faith, all of which are fantastic moves that have now lost almost all their appeal because they've quickly turned into cheap near falls just to pop the crowd, which is another example of the negatives of Ospreay's excesses. Yes, each wrestler has their formula and their signature moves, but I'm struggling to think of someone who does EVERYTHING they can EVERY single match in almost the EXACT same order like Ospreay. He's almost the opposite of Kento Miyahara, since he does way too much stuff and tries to be too varied, which in turn comes around to him actually not being that varied or creative. You can't deny that Ospreay is the absolute opposite of selfish, since he always allows his opponents to show off their own abilities alongside him as best they can. Now, I know this is seen as a positive because of how wrestling used to suffer from every wrestler only ever looking out for themselves, but I think Ospreay is *too* charitable, since this is what results in us getting all these copy-and-paste 50/50 'epics' every week. These matches are theoretically meant to put Ospreay's opponents over, even in defeat, because they're proving they can hang with Ospreay. I counter with: if *everyone* can take Ospreay to his limit, "taking Ospreay to his limit" means absolutely nothing. Imagine if Ospreay only ever got taken to those 50/50 epic trading sequences a few times a year? That would then be a lot more meaningful and would actually give us reason to care about those wrestlers who did so, especially if they were far lesser-known wrestlers. Instead, Ospreay gets taken to his limits every other week, and no-one truly benefits in the long term as a result. For me, a true wrestling legend should be capable of putting on compelling matches without having to purely rely on their physicality and athleticism, but by having truly compelling 'filler' work (i.e. character work, selling, and low-level offence) in between their pure moves, and I'm starting to think Ospreay simply isn't capable of that. He's indeed given some great selling performances before, both in terms of real-time selling and long term limb-selling, but those are few and far between, plus even then I've become more annoyed by how over-animated his expressions, vocalisations, and movements can be. Ospreay is still capable of having truly amazing matches, but now those are ones that fully step outside his usual formula. I'm hoping Ospreay makes the necessary changes to truly become one of the greatest of all time, but with the success of his current methods I'm not sure that's too likely."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: thedman0310wrote on 08.01.2024:[3.0] "The most overrated man in professional wrestling. I have no clue why people like Ospreay so much when there are so many other wrestlers who can do his style better. His promos suck, he has no psychology, and he spams big moves like he's playing one of the SmackDown games. His match with Ricochet getting popular led to Ospreay becoming the ultimate "GIF wrestler" prioritizing cool moves over working a decent match. He gets carried like he's a reusable grocery bag. If it wasn't for guys like Ricochet, Shingo, or Omega, he'd still be toiling as just another British indy worker. He's also a total prick in real life. If you want an amazing high flyer, watch Ricochet, El Hijo Del Vikingo, or Rey Mysterio. Hell, just watch Nick Wayne, he's basically just a better Ospreay than Ospreay."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RaixnQuinzowrote on 07.01.2024:[10.0] "One of the best of all time, match ratings and match quality prove that. He is always fun to watch and when he's on the screen you always wonder what he's going to do next."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AEWPoewrote on 06.01.2024:[10.0] "[10.0] "There are certain Wrestlers that have come along and defined Pro Wrestling. Will is one of those guys, currently the best in ring Pro Wrestler the sport has to offer! There are other names yes of course but for me he is the Billy GOAT! The AEW Chapter that is coming in 2024 will be Elite Bruv! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Pinkd56wrote on 26.12.2023:[9.0] "Best British wrestler of all time in terms of match quality. Growth of his skillset in his short career is astonishing."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Wrestling Foreverwrote on 25.12.2023:[10.0] "Klasse Mann einer für die Zukunft irgendwann war es nur eine Frage der Zeit bis PWG ihn bookte er hat sich durch seine Matches aufmerksam gemacht. Danke auch an wXw den ohne wXw hätte ich sicher nie etwas von Will mitbekommen ist auch so bei Damian O Connor, Marty, Zack und noch weitere Wrestler aus England und Irland. Zurück zu Will sehr over egal wo er auftritt, tolles Gimmick, muss großer Assassins Creed Fan sein. Sehr guter High Flyer von ihm wird man noch viel sehen. Edit 08. 06. 2016 Aufwertung von 9 auf 10 Punkte. Will ist echt der Wahnsinn und nun hat er wieder was geschafft erster und jüngster Brite der das NJPW Best Of The Super Junior gewonnen hat. Gratulation an Will. Edit 12. 01. 2017 Wieder mal ein Edit 2016 war für Will ein fantastisches Jahr. Nun ist das Jahr 2017 und er hat sich wieder verändert. Er ist nun blond und wird wieder bei neu gegründeten Ligen auftauchten und natürlich bei den bekannten. Er ist ja nach wie vor unglaublich begehrt. Edit 14. 04. 2020. Habe sogar ein Match aus seiner Ace Pain Zeit gesehen schon da hatte er solch schwierige Moves drauf. Will verbessert sich von Jahr zu Jahr. Aktuell vermisst er auch Japan sehr weil er nicht hinfliegen darf Gründe sind bekannt. Edit 25.12.2023 die Jahre hat sich Will wieder gesteigert. Er ist ein Wrestler der so viele Matches vom WON im (*****) und darüber bekommen hat das man es nicht mehr begreifen kann. Und 2024 wird sich auch wieder viel bei Will ändern denn er kommt zu AEW mit einem Vertrag. 2024 wird er aber auch noch einen Vertag mit NJPW haben einen Doppelvertrag."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JediSaiyanMaster1203wrote on 27.11.2023:[10.0] "Bruvs! Will Ospreay is a total god in the professional wrestling world, this man is one of those wrestlers who could give 10% effort and put on a 5 Star Match with the easiest of ease. This man is among the all time best high flyers in the ring, his athelticism is insane and he always finds ways to come up with unique moves with no problem, he makes every springboard move look effortless. He's even improved on the mic, watch his "You're either going to pass this torch or I am going to take it from you" promo and you'll see what I mean, he's came a long way. Has charisma to him, the aura he brings and how he carries himself like a star is nice to see that you don't often see from a lot of guys nowadays. Not to mention, his drip game is on point, always having awesome ring and entrance gear whenever he shows up, he's always looking like a star, which is kind of missing nowadays. He recently signed with AEW, and I look forward to seeing what he does now and hope he becomes world champion sometime down the line and becomes a big star, having bangers with everyone on the roster (especially Bryan Danielson, make it happen Tony! ) Overall, Will Ospreay might just be England's best wrestler they've ever had, he's a truly gifted performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: OnurP1wrote on 19.11.2023:[10.0] "Will Ospreay is the best in-ring performer in the current wrestling landscape. He can do many different styles and has a versatile moveset. His promo game has also improved quite a lot compared to the past, he has become a great all-rounder. He's no longer just a junior heavyweight high-flyer, he's more than that. He is now the better than everyone else when it comes to match quality and has been that way since the pandemic. He'll become a star wherever he goes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: theelevatedonewrote on 18.11.2023:[10.0] "My absolute favourite wrestler of all time (this account is named after him). I watched him come up on the British Indies back in the glory days and he has gone from strength to strength ever since. So many classic matches, so much charisma, hes the closest thing I have to a hometown boy in wrestling, which makes me love him even more. 2023 has been his year, putting on bangers in every major promotion possible. I will continue to watch his career with excitement"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: cioranwrote on 16.11.2023:[8.0] "Current flavor of the moment ICW wrestler which is why the reviews are all either 10/10 "OMG BESTEST" or 2/10 "This guy is overrated". Much of the criticism and some of the praise is accurate though. He's legit good and among the best of the aerial workers outside of Mexico. IMO, most of their top of the card aerial workers are substantially better than him, but they're also lighter and he's not wrestling the luchador style, but more indie or X-style. But missing some key things. Strong worker but very hit or miss on a lot of stuff. Extremely technically competent flippy style guy with a dash of British strong style which makes it look substantially less ridiculous than most of the modern flippy stuff. He's become substantially more selfish as a worker too, refusing to lose much and wanting titles and getting in "his stuff". In a lot of ways, he's a blank canvas and his matches seem heavily dependent on who's he's wrestling. Reminds me of a young Jeff Hardy or AJ Styles, except they were both at least passable on the mic and Styles was a much more proficient and less selfish wrestler. When WO has a good match it's great and when he doesn't it's still OK but usually plodding and goes on too long. Arguably a spot monkey with limited in-ring psychology. Like vintage Hardy, solid, but not great, physique. He's shorter and lighter than billed and it will be evident in the Fed. Poor to non-existent gimmick, which seems to be "I'm really good at stuff". Has arguably the worst mic work of any serious, working pro wrestler consisting mostly of "Oi" and "Bruv" and a bunch of stuff I think is some kind of English dialect. Among the most difficult to understand wrestlers from my perspective as an American and I don't think he can ever get over in the WWE barring speech coaching as I genuinely have no idea what he's saying 9/10 times, but who knows. He's over in England and the UK, so they obviously can understand him. IDK how much of a problem that is in the rest of the world. Wrestles a lot of the same spots. Not going to age well as you can't do this style and spots he does beyond 35 and his mat work is limited and his mic work is non-existent. Should have paid more attention to Shelley than Styles as he is able to do better and more consistent flippy work. The Kenny Omega and Mike Bailey matches were excellent and legit 5 star affairs. The Walter match was mediocre, which is where you can see the limitations in his mature style, since we've seen Walter/Gunther able to work well with lightweights like Ilja Dragunov. Disregard the scores on a lot of his matches, ICW loves him atm and will give anything he does 7/5 stars. Wait until he joins WWE or AEW instead of NJPW and the indies and everyone in ICW hates him for more honest reviews. The guy's good for this aerial style, but he's not Brett Hart or a luchador."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AyoWrasslinwrote on 15.11.2023:[10.0] "The GREATEST Wrestler in the world today. The perfect mix of epic technical professional wrestling shown in his bouts against ZSJ and he also displays top notch high flying abilities shown in every single match he has. 10/10 Recommendations: vs ZSJ [New Beginning in Sapporo 2020, High Stakes 2020, NJ Cup '21], IWGP Jr. Title 4-Way Match [WK 12], vs Tanahashi [G1 Climax 29], vs Ibushi [WK 13, G1 Climax 29, Sakura Genesis '21], vs Oku [High Stakes '22], vs PAC [High Stakes '19], vs Okada [NJ 46th Anniversary, WK 15, WK 16, G1 Climax 32, G1 Climax 33] vs Jay White [War of the Worlds '17] vs Ricochet [ALL], vs Mysterio [ WCPW World Cup] vs Fenix [WrestleCon '17], vs Shibata [ New Beginning in Osaka '17], vs Omega [WK 17, PWG BoLA, Forbidden Door], vs Jericho [All In: London], vs Naito [G1 33]"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WrestlingBullwrote on 06.11.2023:[2.0] "If there is one guy I don't understand the hype for, it is this guy. He has no charisma, all of his promos are atrociously bad, I still remember the one he did to build his match against Okada during the pandemic and it was legit one of the worst thing I've ever seen and I have been watching wrestling for almost 20 years. He is the epitome of what, unfortunately, wrestling has become in 2023, if you have seen one of his matches, you have seen them all, the exact same forced epic formula, no psychology, over-choreographed, 30 to 45 min just for the sake of it, 20 nearfalls, 20 dangerous moves, sells like death for a couple minutes then magically stand up to hit another flashy move which absolutely ruins what he was doing a few moments prior."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: bigben123wrote on 02.11.2023:[5.0] "Beneath the flashy moves and crazy sequences, there is hardly anything to grasp. Once or twice a year, he will absolutely string everything together to formulate a match that is thrilling and logical but for the most part, it's a frustrating mess. He is very inconsistent and works best as a blank canvas for other wrestlers to feed off. Wrestling Will Ospreay is like a litmas test for your abilities as a pro-wrestler. Kenny Omega, Orange Cassidy, Jon Moxley and Tetsuya Naito are all examples of this and even so, the match is still dragged down by Ospreay's performance either ways and I find that I normally enjoy the match for the exact opposite goal they strived towards."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: skyesversionwrote on 30.10.2023:[10.0] "Will Ospreay is arguably the best wrestler in the world right now. He's a great high-flyer who can also be technical when he wants to. His only flaw is his mic work to be honest and that's because of his strong British accent. But other than that he's absolutely amazing. I could watch like 100 Will Ospreay matches back to back and I wouldn't get bored. That's how amazing he is. I know some people think that his matches are horrible because all he does is flips but he's called the "Aerial Assassin" for a reason."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Okaro143wrote on 30.10.2023:[10.0] "One of my favourite wrestlers ever. Unfortunately, a very controversial and polarizing figure. Personally I think that he is the best in ring performer in the history of professional wrestling. His athleticism is through the roof, His moveset is limitless. I personally Love Ospreay but I see a lot of pundits and fans that don't really connect with him. Many hate his Wrestling style and some hate his personal life. Be that as it may, his wrestling ability is at the top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WOOPSwrote on 01.10.2023:[0.0] "I dunno why I ever gave him 8, probably because 3 years ago he actually tried to branch of his junior ways but now he really just regressed back to being a spot monkey with matches that lack everything except a bunch of moves. Yes, he's genuinely a great athlete who can perform those moves incredibly well but he trades em for any substance or psychology behind these moves. I can't see the point of his matches because they're not wrestling matches, these are just circus spectacles performed by a very talented gymnast. Will lacks in mic department and in my opinion, he has absolutely no charisma. I'm so over just spotfests at this point, I want to see some sense in my wrestling. If I'd want to see just cool moves being performed, I'd play 2k games, at least they're more fun than Ospreay's formulatic movespams."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: KENTAfanwrote on 02.09.2023:[10.0] "It's funny. A couple of years ago, back in 2021, when NJPW was pushing him as a top star and he was picking up so many wins against guys like Shingo, I didn't like him as much. I resolved to believe that he was taking away from other talents. Fastforward 2 years later. Ospreay has come back from a career-ending neck injury, and has solidified himself as one of the greatest of all time, and I am 110% on board. He can have a classic with anyone. His presence and arsenal of moves are on par with anyone, in fact very few can compare. Ospreay is currently 30 yrs old, and he is without question the greatest wrestler of this generation. I humbly apologize for the 9/10 rating I gave him a few years ago. He is without a doubt an 11/10, the greatest wrestler in the world today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: deceivrwrote on 25.08.2023:[4.0] "In a great consideration to his talents instead of personal troubles and incidents, he is far from the best wrestler in the world. To me, he is the definition of the phrase "same old". The way he works matches is not that impressive to me; high-flying move, "strong style" moves, random cheap shot or taunt, terrible finisher (Hidden Blade), repeat. There are bits, however, that make me feel very impressed for his aerial ability, especially in his younger years. In contrast to today, his younger version is by far his best, one that was no stranger to high-flying technical prowess, ala Tiger Mask. Today, his singles matches, at best, are not one-and-done, but more one-and-far-too-much. His strong suit, for me, is having to be worked by another competitor. It is perfectly A-OK if you like his style or his persona of work, but it is very much a far-cry from a style that needs to be suited for somebody like me. It is also to note, opinionated of course, that Ospreay desperately tries way too hard to be like the greats of by-gone eras; he is, among many other characteristics, a selfish type of worker in terms of praise and overall effort. One thing to also note is the very troublesome nature of himself backstage and on media. He has, of course, done wrong (everybody has), but, overall, he has just gotten to a level where brushing aside anything that he has done in a backstage manner is ludicrous. He has given time to defend troublesome figures, such as his friends Paul Robinson and Scott Wainwright, who had done very devious deeds, but had to be stuck right to Ospreay to avoid further scrutiny and negative press and, ultimately, a full blackball from the industry. It is a great thing that one of those said people, Wainwright, had been kicked out of the industry. He had also done some very foolish deeds in regards to the debated Pollyanna/blackball controversy, the Sadie Gibbs harassment scandal, among other discretions, wherein that he would deliver, what many consider to be, half-arsed apologies. Scamming money intended for family members is also one that tends to be a topic of discussion. These troubles, however, must not make one person be automatically disliked, no matter how much of it is true or factitious. Ospreay, ultimately, is a wrestler who is flawed, but not as flawed as his personal troubles that make me cringe every time that I see him. It is not "asinine" to dislike Will Ospreay; it is valid, like disliking any other type of professional wrestler."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: NoNowrote on 22.08.2023:[10.0] "Just the GOAT of this all game. He has the best moveset in the man's wrestling. His match of his is against Michael Oku last year made me love him, and since i watch all this match. This man is largely responsible for the lack of my love for wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: KittyAlpha2424wrote on 22.08.2023:[10.0] "2023 is officially the year where Ospreay takes the throne as the best wrestler in the world. Despite his insane work rate, this man fires on all cylinders in every match, which speaks on his many capabilities in the ring not including his super athleticism which he is formally known for. Will has seriously revved up his physique and with it, his ability to project a 'fighting spirit' fueled by excellent psychology and emotions, something that people detracted him for in the past. Matches such as his two with Kenny Omega and his recent bout with Tetsuya Naito are perfect examples of just how damn good he is now. Much like Okada, you can drop him into either major American promotion right now, and it wouldn't be believable or even appropriate (as far as booking decisions go) for him to lose. He is on a different level right now. And, as a wrestling fan who indeed cares about the wrestler's health, I fear Ospreay's massive workload is going to take a toll on him too soon; I truly hope that not be the case though. Nonetheless, he has more than just world-class athleticism and grit to tell an excellent story in the ring. Easy 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheOneAndOnlyCactuswrote on 18.08.2023:[7.0] "Will Ospreay is undoubtedly a phenomenal athlete, one of the most gifted that I have ever seen in the ring. He is more than that though, as he also possesses a large bag of moves in his arsenal, that he adapted for his heel persona. He also will bump like a boss and is very expressive when he wrestles. But, the people who said he has improved in his storytelling... I mean yeah he has, kinda, but is still very flawed in that department, as his match with Okada in the G1 Climax showed. Plus, he is very reckless, a danger to himself and other performers. Edit: Revised my rating. I think I was a too harsh with a 3. My feelings towards him have remained the same after his second match with Kenny Omega, but 7 is a fairer rating."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheOverridewrote on 16.08.2023:[10.0] "The people who say that Ospreay has no selling or psychology and that he only does spots, they have never seen a match of him, they do not pay any attention or they have only seen his fights from 5 years ago. Ospreay has a unique aura for someone of his physique and has reached a level where every defeat of his is as impressive as seeing Okada or Roman Reings lose. He can work any style: aerial, striker, technical, hardcore, a mix of everything, nothing escapes him. Like I said, he has great microphone skills and the only reason I can think of someone would say he's no good is because they don't like his accent. He is one of the best at the moment and he is only 30 years old, so he will go even further."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Vanstylerwrote on 13.08.2023:[10.0] "Probably the best wrestler in modern era. He's just the best at everything he does (High Flyer, grappling, submission, technique), it doesn't matter who his opponent is, he just shines and makes the best of him. But don't believe me, believe all the 5 star matches that he made."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Anthony Leonewrote on 06.08.2023:[10.0] "One of the greatest wrestlers in the world. He's so fun to watch and never has a bad match. He can wrestle any styler, even as he's starting to age, with all his injuries, he's still such a great wrestler. The United Empire is such a cool faction and with Ospreay at the head, they're easily one of my favorite factions in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Iceqwrote on 01.08.2023:[10.0] "Es ist schon witzig wie viele Leute noch immer ein ganz falsches Bild von Ospreay haben, wie als wäre er der selbe Wrestler aus dem Jahr 2016. Der Mann war schon damals gut, aber hat sich seither so unfassbar entwickelt. Würde jetzt ganz klar meinen, dass er der beste Wrestler der Welt ist, da er mit jeder Mann ein MotN haben kann und das jede Woche, auf ganz verschiedene Arten und Weisen. Dabei darf man nicht vergessen, dass er gerade mal 30 Jahre alt ist und er mittlerweile mit seinem Stil sehr zurückgefahren ist und so hoffentlich ein paar Jahre länger aktiv sein kann, auch wenn er heutzutage auch noch die ein oder andere gefährliche Aktion zeigt. Bin echt gespannt, wo es ihn noch hinführen wird in seiner bereits legendären Karriere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MOXHAVOCwrote on 28.07.2023:[10.0] "Will Ospreay is one of the best wrestlers in the current era. He possesses a perfect blend of various wrestling styles, with high-flying maneuvers. The list of high-quality matches he has given till now is unbelievable, especially considering he is only 30 years old."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: costa95wrote on 26.07.2023:[10.0] "Billy the GOAT is Amazing, he is great in the ring, his accent make him more badass, and he is on his prime so young."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MasteroftheMatchGuide99wrote on 18.07.2023:[10.0] "A man who is horribly underrated and I ain't just saying he is because I like him. Will Ospreay is like taking all the skill of Angelico, Jack Evans, the Hardys, and the combined charisma of WWE's greats (Looking at you Austin, Rock, and Hogan) and combining it all into a very capable wrestler. He has been a great driving force for high-flyers and risk takers as well as a good example of adapting to other styles and gave us 2 of the best matches of 2023 with Omega at Wrestle Kingdom (which is Japan's Wrestlemania) and Forbidden Door II (which is AEW's Starcade). I bet he could even be a major force in WWE, since high-flying has diminished after the death of 205 LIVE. Ospreay is without a doubt a great wrestler and ranks way up there in entertainment. He will surely be deserving of Match of the Year, and when he retires, we will lose a great wrestler. AEW, WWE, and Japan all want him. They should all have him, and all deserve him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Malarkianwrote on 18.07.2023:[10.0] "If you don't like Will Ospreay in 2023 it's because you've made the conscious choice to not like him. Which is fine, you don't HAVE to like him but anytime I see someone say Will is just a spot monkey high-flyer with no psychology I know to disregard it because they obviously haven't watched a match of his in 5+ years. He does everything well, rarely (if ever) takes a night off, elevates every match he's in, and has done wonders for the British independent scene. He's also by all accounts worked a lot on himself as a person and all interviews I have seen with him he comes across as humble hardworking, and grateful. People giving him a rating of 3 and 4 is asinine."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: John Brandowrote on 09.07.2023:[9.0] "Will Ospreay ist zu meinem absoluten Lieblingswrestler geworden. Schon allein die Rivalität gegen Omega zeigt, zu was er imstande ist. So wurde ich auch zum großen Fan des Jungen. Er gehört zu den besten der Welt, den Beweis hatte er endgültig bei Forbidden Door erbracht. Ich bin "nur" bei 9 Punkten, da Will eigentlich ja noch so jung ist und eine längere Sportler-Karriere allenfalls noch vor sich hat. Die Mauer zur "10" wird aber sehr bald fallen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: hbkronoswrote on 07.07.2023:[7.0] "I strongly agree with the people saying that he has a lack of in-ring psychology and character work. He does some cool spots and moves, but sometimes less is more."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: crs285wrote on 04.07.2023:[7.0] "Ospreay is a cool move spot guy. His selling and psychology need work. At times with the right opponent, he can put it all together for a great match. He is good on the mic but usually makes a better face than heel."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GeneBlastKyodaiwrote on 02.07.2023:[7.0] "Like the previous commenter said, will Is great and intense, but he is a guy playing a character that doesnt suit him, he is a great wrestler, but he shouldnt be playing a character thats like a mob boss because he just comes off as a whinging baby especially when he does those elbows to the back of the head. He needs to play a face. Playing a heel is not for him and it limits him. Only look at his face performances vs his heel performances to know my words are true."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: duketsao7wrote on 02.07.2023:"I am totally apalled by the Meltzer wagon. Will is entertaining and intense for sure, but basic stuff like punches, kicks, psychology of rest between moves, timing, selling, facials are far more important than flashy and strong-style Japanese moves. Bret Hart did those things like the master that he was. Has Ospreay ever done them as well? Hell nah. A good to great talent. But an Eddie Guerrero was far better."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Egyptian Dragonwrote on 30.06.2023:[10.0] "The most phenomenal wrestler in the ring i have ever seen in my entire life. He is exceptional. amazing, extraordinary, talented and great. by the time he retires, he is going to be the greatest wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: znezaaljwrote on 29.06.2023:[10.0] "While I understand why many dont like his high-flying style, which might shift focus from the contests storytelling, there is no denying that Ospreay is one of the best wrestlers working today. Having transitioned from light heavyweight to heavyweight has also signified a change in his wrestling style, having partly left behind many of his continuous flips to instead focus in working more deliberate, narratively coherent bouts (clearly exemplified in his matches against Omega). I believe Wills ceiling is still ahead of him, and as he progresses in his career well get to see the best version of the Kingpin. Lets hope he stays in NJPW for years to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ItsToniTime89wrote on 29.06.2023:[10.0] "Will Ospreay ist für mich einer der besten Wrestler der Welt. Er macht nahezu jedes Match zu einem Showstealer und es ist immer wieder eine Freude, wenn er in den Ring steigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Neon Aussiewrote on 27.06.2023:[10.0] "Quite possibly the greatest wrestler of the current time. Typing this the night after he had one of the most incredible matches Ive ever witnessed against Kenny Omega at Forbidden Door. In the top 5 for best wrestlers of the 2020's, now he just needs to win some World Heavyweight Championships"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: PacMannWrestlingFanwrote on 24.06.2023:"Billy Birdman is overrated and formulaic to death. The Shingo Takagi/Birdman trilogy ruined my enjoyment of seeing his matches outside of being a piece of shit bringing in his sex pest friends."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Doof Warriorwrote on 22.06.2023:[10.0] "His transition from lightweight to heavyweight couldn't have gone better. His talent is really undeniable. Who knows how long he'll be able to operate at the level he's at but he's in contention for the best today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: gargoylesmainwrote on 07.06.2023:[10.0] "It's hard to argue that this dude isn't the best in ring worker in the world right now. He has grown exponentially from his early days of frenetically flying around the ring, calmed down and matured both as a person and in his wrestling style, using a much more grounded offense. He sold his ass off for Kenny at WK17, and did the best promo and character work of his career. His only weakness for a while was in character work and connecting with the crowd, but I think he's come a long way in that as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Jaedynr5wrote on 23.05.2023:[10.0] "the best wrestler in the world right now, the way he's evolved from flippy somewhat characterless face to an amazingly well-rounded heel, it's a shame that most people haven't given him another opportunity after his match with Ricochet and just lump him into the "boring high flyer" pile when he's become something far more than that, every match he has is must see, and he's on the track to being the Best Bout Machine for the 2020s, and the fact that he isn't even 30 yet makes everything i'm saying far more impressive"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheLegend27wrote on 11.05.2023:[10.0] "Will Ospreay is an amazing wrestler due to his exceptional athleticism, innovative moveset, and ability to tell compelling stories in the ring. His high-flying style, combined with his technical skills, has earned him a reputation as one of the most exciting wrestlers in the industry today. All in all, an amazing wrestler, throughly enjoyed his work, and hope to see more in the future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: lilrorowrote on 06.05.2023:[10.0] "Best pro wrestler ever He is probably the best performer and promotion in New Japan Pro-Wrestling right now. Physical ability, intelligence as a professional wrestler, humanity, visuals, everything he has is just awesome."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Jambowrote on 25.04.2023:"He's by far the most overrated wrestler there is today. His matches feel heavily choreographed to the point where it looks like a circus act. He also had some good matches, but he then does things that pull you out of the immersion like no selling or doing moves that make no sense. His mic skill is pretty bad. I don't remember if he ever hurt other people, but he had a bunch of incidents where he injured himself pretty seriously while doing pointless high-risk moves that didnt add anything to the match."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheCoolGuywrote on 19.04.2023:[3.0] "All of his matches look so choreographed and his in ring psychology is terrible. I cant recall a single memorable promo of his or a single time he sold a move. Hes popular with some people for some reason so thats gotta stand for something right? This man is now talking about retirement at 29. Sacrificed his body for star ratings instead of trying to be the best wrestler on the biggest stage. 10/10 in the Tokyo Dome 3/10 in reality."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AJ The Guywrote on 18.04.2023:[10.0] "Will Ospreay has proven me and many of his doubters wrong over the years. I thought he was all flash and no substance when he first arrived on the scene in NJPW as a junior. I hoped that he would develop into an all-around worker like AJ Styles before him, and he did just that and then some. This guy is must-watch and it's a shame that people still associate him with that Ricochet match from 2016. He's grown so much since then, adding masterful striking and power to his game. His matches are paced very well and he carries himself like a star. He's right up there with the best of the best and it's time we all just accepted it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: IronStarwrote on 11.03.2023:[10.0] "Will Ospreay is the best man wrestler in the world. He has the best moveset in the man's wrestling. He is extremely talented pro wrestler. Present and future of pro wrestling. He is just too good. I am sure about he will win IWGP World Heavyweight Championship at WK 18 main event"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ChrisPrattAsMariowrote on 04.03.2023:[10.0] "29 years of age with the resume that he has is absolutely insane. Tied with the most 5 star matches (It's another man's opinion but still a credible source) in such a short time is incredible. He can perform in Kings Road, high flying, and strong style matches with a wide array of moves. My favorite match of his is against Kenny Omega at Wrestle Kingdom 17."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Xwrestlingx2003wrote on 27.02.2023:[10.0] "William Peter Charles Ospreay, King of 5 star matches, He is amazing in the ring, I enjoy watching him every time, He can put up a good match even with weak or average wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Wright15wrote on 02.02.2023:[10.0] "No wrestler in history has had as many great matches in their entire career as Will Ospreay has had by age 29, and it is not even close. Ever since 2014, in every match, whether he is working in front of a crowd of 100 people at a RevPro spot show, or in front of 40 thousand people in the Tokyo Dome, he has given everything his body has to offer. As a result, he has already dealt with scary neck issues, but he has learned in the last couple years to adjust to a moderately more safe style. He is also one of the most athletic wrestlers ever, as he can pull off moves that would seem inconceivable to most other workers. His timing and pacing are superb, his heel work is viscous, and his fire-ups as a face are gripping. His promo ability used to be inconsistent (sometimes fantastic, sometimes terrible), but he has become more and more consistent over the past year. Before even reaching the age of 30, he has already cemented himself as arguably the greatest in-ring performer of all-time and as one of the all-time greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: eBentowrote on 25.01.2023:[9.0] "Will Ospreay is arguably the greatest in-ring athelete the United Kingdom has ever produced for pro-wrestling. He's nimble, athletic, quick, high ring IQ and has that all important ability to tell a story through emotional ring work. He isn't perfect as a character, but his in-ring prowess MORE than makes up for it. Check out any match of his in the last 4-5 years, you're gauranteed to have a great time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Tyler72wrote on 22.01.2023:[9.0] "One the best performers, who's also getting better and better. Will Ospreay has seen a fairly large improvement in how convincing his performance is, especially seen at last year's match with him against Tetsuya Naito, and later at 2023's Wrestle Kingdom where he fought Kenny Omega. Lots of agility, charisma and power throughout all of his matches that completely separate him from any other wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Bongowrote on 14.01.2023:[10.0] "In the last few years, there is no wrestler on this planet that has come even close to the body of work of Will Ospreay. Every single match he puts on is must see and a number of his matches already live in history as some of the best ever. The most important part in all this though, is that he is still not even 30 years old! Even typing that out doesn't feel real. In the future, seeing as he's already this close, there is no doubt in my mind that Will Ospreay will be remembered as one the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: benh2wrote on 12.01.2023:[9.0] "Ospreay's output in recent years has been phenomenal. Works harder than anyone and never phones it in. He was a bit of a spot monkey in his early days but outgrew that long before everyone realised he did. He still has a little way to go in terms of structuring a match and long-term selling; he's already put on some of the greatest matches of recent times so if he can improve this final bit too then he will be pretty untouchable."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Platinumpiggwrote on 08.01.2023:"[10.0] Simply the best. The frequency this guy puts out match of the year contenders is simply unprecedented and unbelievable. After the 2022 Will had its impossible for me to rate Ant higher than him. And after wrestle kingdom 17, he looks to still be the goat in 2023."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WhatIsLooveeewrote on 06.01.2023:[10.0] "Will Osprey has done a lot of work on himself. At first he was just a talented high-flyer, but he gradually progressed and now that he has moved to the heavyweight division, as for me, he has earned the title of one of the best wrestlers in the world at the moment. He is extremely athletic, good at selling and is able to tell a story in the ring through his actions and facial expressions. Will has outgrown the status of an indie talent and has become a really hot big star who has a number of matches on his account that can be considered a real classic, for example his recent massacre with Kenny Omega. Without a doubt, 10 points."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: texasyoshwrote on 05.01.2023:[8.0] "I think Ospreay is an inconsistent wrestler, but you can't deny he has tremendously grown as a professional wrestler over his career. Whether as an incredibly high-flying junior heavyweight, to his much-grounded work as he graduated into the heavyweight division, Ospreay has had a catalog of great matches over his career. That said, I DO find some flaws with the way many of his matches are structured. Seemingly none of the offense becomes relevant in the final stretches of Ospreay's matches, with countless reversals that amount to not much. If you've seen one of those matches you've seen them all. That said, Ospreay has been able to move away from this, and it makes much better matches. Ospreay has the potential to be one of the best of his generation."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MostlyIncompetentwrote on 04.01.2023:[10.0] "Obviously this is coming off the back of his match with Omega, but at this point calling him anything less than one of the greatest wrestlers in the world is lunacy. 6-7 years ago, you could make the argument that his matches were just spotfests, but even then there was plenty of real psychology that the naysayers just ignored. But now, it's undeniable that he's one of the greatest to ever do this, and for me he's one of the 4 or 5 greatest wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Vukowrote on 17.12.2022:[10.0] "This guy was a big deal in the junior division in NJPW but his transition in heavyweight + his heel turn Okada was the best moment for him to be probably one of the best 10 wrestlers for this modern era. I just regret that his reign as IWGP World Heavyweight Champion was short because of an injury. But fuck, he's gonna wrestle Kenny Omega at Wrestle Kingdom 17 and have another 5 stars (this guy is 29 years old but he is at 2 matchs or 1 to be the wrestler with the most 5 stars matchs)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: KSupreme3wrote on 06.12.2022:[10.0] "Love him or hate him, this guy is going to go down as one of the best to ever tie up a pair of boots one day, especially in this modern pro wrestling landscape. The man is an absolute workhorse, and it? s clear that Meltzer is high on Will. It? s rare to see someone keep such a consistent quality in their work, and it? s been such a honor to see his career unfold. He? s fought some of the greatest wrestlers in the world and I must imagine what his upcoming 1-on-1 with Kenny Omega is gonna be like. Ospreays future is shining very bright."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Shadow Explosionwrote on 30.11.2022:[2.0] "My rating got deleted cause this site had a weird glitch at the time. Anyway I don't like this guy. I don't think he's a the dirt worst in ring guy but he's certainly gotten worse since everyone hyped him up as one of the greatest Jr. Heavyweights, and now he does stupid ass spots that make no sense, it's even more bewildering that he does those same spots in nearly every match, just like the Shingo matches that all feel the same. He's infected the indy scene with so many clones that want to be him and do his moves like that stupid springboard cutter. His selling is at god awful right now, he used to be really good at selling too but it's just become comical, I laugh everytime he sells that he's in pain because of ridiculous he sounds. He's very athletic but it never translates into the match because it feels like he's just showing off and doesn't want to have a good match. I think the best way to describe Will Ospreay is that he wrestles like he's in a Phase 4 Marvel Movie. High Octane and Comical, but doesn't tell good stories or has anything worth of substance."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Enriquepollazzowrote on 27.11.2022:[9.0] "Well..He's certainly too freaking good to give any less than a 9. I never liked this guy. He used to yell and his voice would crack. Now though. He has like Jay white and other njpw young lions aged pretty well. Into a better character anyway. Not just some guy. So what will he do character wise from here? Id say he needs to scale back the neck breaking match style and work on character. But he's pretty successful as it is! #1 in njpw is better than one of many guys in aew and midcard in WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: amaiwrote on 27.11.2022:[6.0] "i can? t lie i? ve never been the biggest Ospreay fan, i can appreciate how much he? s progresses from the flippy days but i guess he? s just not for me"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Mcbolskywrote on 22.11.2022:[10.0] "Dude is the present and the future of modern wrestling. Can work any style, with anyone. His high flying has toned down and he's started becoming more versatile as a performer and him leading UE is great too. He's gonna be World Champ once again next year and will start to become one of NJPWs top top guys with Okada, Umino, Naito, and Jay White."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MainEventMasterwrote on 11.11.2022:[10.0] "Will Ospreay is everything a pro wrestler should be, looks like an absolute star, wrestles like an absolute star, IS an absolute star. Might be considered in the GOAT conversation when its all said and done."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: lionheartedclmtwrote on 08.11.2022:"I'm not putting a rating to this because my own personal biases about Ospreay outside of the ring would prevent me from giving a fair rating. Ospreay is perhaps one of the best wrestlers in the world right now, I will not argue against it. However, he has a lot to do before convincing a lot of people of that. His style is still very junior based and heavily focused on reversals of moves, which, while not a bad thing, does lead to a lot of sequences or even entire matches that do not land. And as mentioned before, his behavior on public internet spaces and outside of the ring, particularly in the British wrestling scene, are unbecoming of someone who is touted as what could be the foreign ace of the second biggest wrestling company in the world."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DEDEwrote on 05.11.2022:[6.0] "Sehr guter Wrestler das muss man objektiv einfach zugeben. Allerdings liegt genau hier Ospreays Problem, jedes Match muss mit biegen und brechen episch werden ob es dazu passt oder nicht. Seine Promos sind zudem absolut schlecht und wirken furchtbar aufgesetzt. Am Ende lande ich dann eben leider bei befriedigend. Menschlich ist er leider ein ziemlicher Ausfall, dies werte ich allerdings hier nicht mit."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Inserthere750wrote on 17.10.2022:[10.0] "very athletic, very cute, but hes British so hes not getting a 10 from me(JK). All jokes aside hes a very entertaining wrestler and one of the best if not the best foreigners on the New Japan roster in 2022."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: xnviuswrote on 08.10.2022:[9.0] "one of the most entertaining wrestlers today. when it's all said and done he'll easily be a 10. flippity shit wrestling >>>"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BAILE3wrote on 04.10.2022:[10.0] "Best wrestler in the world right now, and my current wrestler of the year. Tore it up in AEW and had an expectedly great G1 run."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: OnlyHalfTheEffinShowwrote on 14.09.2022:[6.0] "I feel like he's a very good wrestler if you like that oversaturated indy style of work where it's a million moves and flips a minute and no time to sell, but besides that near as I can tell he's just a douchebag. Rages on twitter, shoots on people in matches and apparently blackballs people from companies."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: LivingLegendwrote on 14.09.2022:[0.0] "One of the most overrated wrestlers ever, possibly the MOST overrated. Ridiculous, over-choreographed spot-fests, ridiculous facials, his bumping is Shawn VS Hogan levels of overkill, his offense has no rhyme or reason, he's a black hole of charisma, can't cut a good promo to save his life, and to top it all off he's gotten people blackballed from wrestling promotions because he needed to protect his rapist friends. Absolutely awful in every facet of wrestling."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: KGPlaywrote on 28.08.2022:[10.0] "In my opinion he is the best wrestler in the world. I love watching every his match. He is just perfect wrestler. I hope, he will become AEW World Champion one day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Benwerderwrote on 28.08.2022:[10.0] "Einer der besten Wrestler der Welt, wenn nicht sogar der beste. Ein Wrestler der irgendwann einer der größen sein wird. Früher spotty, jetzt hat er eine unglaubliche matchpsychologie und liefert immer. Von der matchqualität die er ständig abliefert, würde ich sagen, dass er der beste Wrestler 2022 (bisher) ist"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: No Onewrote on 26.08.2022:[10.0] "Haters are gonna hate, but Will Ospreay is The Man. He is already one of the greatest in-ring performers of all time. Everything he does in the ring is well timed & brilliant. He manages to tell different stories in every match. Legendary feud with Jimmy Havoc, and incredible rivalries with Marty Scurll, Zack Sabre Jr, KUSHIDA, & Hiromu Takahashi. He now has found himself in an unexpected legendary rivalry with the mighty Shingo Takagi. He has already put on way too many matches that will withstand the "Test of Time". When he shows up to wrestle he generates an immediate extra sense of excitement. Was a great heroic Babyface. Is now an excellent arrogant, "In love with himself" Heel. Is the rightful heir to the spot left by Kenny Omega as NJPW's true "Gaijin ACE". Popularized The Hidden Blade & The OsCutter. Can have a great match with anyone under the sun. Gives it his all with each outing, and his body is paying a heavy price for it, which brings his career longevity into heavy concern. Already is one of the best Jr. Heavyweight wrestlers to transition to the Heavyweight division in NJPW history. Should ultimately challenge Kenny Omega for being the greatest Gaijin Wrestler in NJPW history. One of the most accomplished wrestlers under the age of 30 in professional wrestling history. UPDATED: Every single thing that I said about Will Ospreay still holds very true. Also, at this point, based on his numerous accolades, it is also safe to start calling him by a new nickname, "The Five Star Match Machine" Will Ospreay. Which also does sound similar to "The Best Bout Machine" Kenny Omega."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: PentaEL0Miedowrote on 24.08.2022:[10.0] "The best wrestler in the world at the moment. Does it in England in Japan and in America. My lock for Wrestler of the year in 2022"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Muggowrote on 23.08.2022:[10.0] "I'm very surprised that Ospreay has such a low rating, not that a 9.05 is bad by any means, but being under 30 and having 44 matches (at the time of writing) rated a 9 or higher on this site, you'd expect his rating to be around the 9.5 mark. But, It isn't and I don't understand why. He's obviously one of the best wrestlers in the world, His promo skills are decent, although promo's aren't as important in Japan compared to the US. He's one of the best heels in wrestling today and he's got a lot of charisma and has a good look. He's even shed his skin from his early years as a Spot monkey, and is one of the best storytellers in NJPW in 2022."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Prince DY8wrote on 21.08.2022:[10.0] "In my opinion one of the best wrestlers in the world right now. He deserves beat Okada but NJPW didn't allow that. I hope he'll win it next year. He deserves more than that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ROCKETMANwrote on 21.08.2022:"Amazing heel... One of the best heels right now in the world. His post match interviews are always gold and he never fails to crack me up"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WrestlingFan892wrote on 18.08.2022:[9.0] "He is very young and unbelievably good, in Japan he has made memorable matches. As a heel he is very good, he was a high-flyer for years, but he has managed to mix various wrestling styles nowadays. In the promos he needs to improve but for the rest he is one of the best wrestlers today."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: CutterClubwrote on 11.08.2022:[6.0] "I have issues giving Will anything higher than a 6. His mic work is atrocious and his in ring work is either absolutely awe-inspiring or cringey. He tries to use the smarmy bad guy character to mixed results (it either plays off and he seems smarmy and cheeky, or it doesn't and he appears as an unintelligent jackass). All of that being said, you can't balk at his in-ring work when its on point. If he can get a better grip on promos and actually flesh out his character beyond being a meme who oversells or calls people pussies, then he can easily become one of if not the best in the game."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: zags7000wrote on 09.08.2022:[10.0] "He has really come into his own in the last couple of years and taken up the mantle as best foreign wrestler in Japan after Omega left. Omega left big shoes and I don't know if Ospreay has reached that level just yet, but I think he's getting close. He's tremendous in the ring and a pompous arrogant heel that makes you root against him. Not the strongest in the promo department but also underrated. He gets a lot of criticism here for that but it's not nearly as bad as some say. Annoying as hell (in a good way) and always great and can tell a story with the best of them. He transitioned well from highflyer in his early career to a safer heavyweight superstar and didn't lose anything that made him special. All around, one of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JoshuaWrestling63wrote on 13.07.2022:[10.0] "Vor 6 Jahren hab ich ihn die 9 Punkte gegeben.. Aber mittlerweile geht's nicht anders als die 10 zugeben. Der hat sich nochmal krass gesteigert.. Seine Matches sind einfach unglaublich gut und ich hab lange keinen mehr gesehen der so krasse kick outs hinbekommt wie er."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Matt Mackswrote on 29.06.2022:[10.0] "Ospreay is the total package for a modern superstar wrestler. In 2022 his style is flashy, but not senseless and his character work, crowd interaction at this point is able to match his athleticism and in-ring acumen. Ospreay is on the small list of wrestlers who I could literally watch wrestle every day without getting bored."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: hazynoodleswrote on 28.06.2022:[10.0] "One of the best wrestlers in the world. Unique offense, incredible sequences and very high-speed. At 29 years of age he has not hit his limit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: UltraNano54wrote on 15.06.2022:[7.0] "He has improved a lot over the years but he has to learn that yelling a lot is not the same thing as selling. His better matches are the ones when he tones down the flippy nonsense which he has done slightly better in his current heavyweight days."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: eltetechoriwrote on 12.06.2022:[10.0] "Talent where there is, a great future that still has ahead, is a fighter that if you let him creativity makes you wonders in a ring, it's worth seeing, quite a lot."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: NoSellwrote on 30.05.2022:[10.0] "Best wrestler in the world bar none and one of the greatest in ring performers of this generation. He's still only 29 folks."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: jamzell00wrote on 17.05.2022:[6.0] "He can still be great when he has someone who works to his strengths but after that he's somehow gotten worse to me. I adore the Shingo series but since my rating in 2018 I havent enjoyed any of his big matches catching up on them. Him being a heel is literally just acknowledging he's a POS outside the ring and going from there. He went even harder into the marufuji cosplay in ring and its been hit or miss ever since."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Sussybackaamoguswrote on 01.05.2022:[10.0] "He's a great pro wrestler no matter what people say. His character is indeed kind of confusing but you can't deny his qrestling abilities."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Mutant34wrote on 01.05.2022:[9.0] "the hate over ospreay is going way beyond these ratings. Of course he's not a GOAT, but he's one of the best today and has a great range of moves, as well as a great appearance that combined with good facial expressions give him an inevitable charisma"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MadManJaxonwrote on 18.04.2022:[10.0] "The BEST wrestler in the world and it's not even close. There is no one as good as Ospreay in this planet. Best in ring performer, so much charisma, knows how to tell story while in the ring and so much more."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Therminatorwrote on 14.04.2022:"Will Ospreay is deffinetly not my favorite wrestler but I appriciate the work he does. Vader feud and match was one of the most entertaining things I have seen in indy wrestling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Brutish Dandywrote on 13.04.2022:[9.0] "His matches are a bit much for me, often feeling like they need a good five minutes shaved off of them, but that's the style of the day and nobody does it better than Ospreay does. Him moving up to heavyweight was inevitable and he's slowly becoming a personal favorite of mine with his dickhead behavior and more strike-based style."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Miloswrote on 13.04.2022:[2.0] "Flippy stuff and choreographed exchanges with unnecessary no-selling, that's all Ospreay has to offer. While he was still bearable as a junior heavyweight, him transitioning to heavyweight and entering the IWGP Heavyweight Title picture let him bring out the worst Gedo-ism has to offer. Not giving him 0 because he actually looks like a wrestler and is impressively athletic."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GreatAether531wrote on 08.04.2022:[8.0] "Will Ospreay is an anomaly. He's a hell of a talent, and his run from 2017-2019 saw him having all-time in-ring performances and showing he's rounded out to be quite an excellent talent in the ring rather than just a gif machine. That being said, his heel run has shown he doesn't have the personality of a star at all. His attempts to be 'cool' or 'badass' often feel phony and leave him coming across as a geek. Normally, when a wrestler as good as Ospreay doesn't have a good personality, it's a product of them being bland or dull, but in the case of Ospreay, I've recently found him actively annoying or obnoxious in a way that undermines my interest to see his matches even when I know I'll most likely love watching it. I also can't help but notice he's slowed down considerably since bulking up despite still wrestling a style that requires him to go balls to the wall in a way that he can't anymore. He still gets a high rating because his matches remain great enough and because the previous run in Japan was just so exceptional, but I don't think I've ever seen such a wide gap between character and in-ring ability before."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Luna100wrote on 01.04.2022:[10.0] "He is one of the best going today, he has become a lot more versitile. He is probably the best British wrestler ever. His match quality is top notch and he has a large amount of charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GabrielBOD22wrote on 07.03.2022:[10.0] "My favorite wrestler right now, and he'll be one of the main reasons why I will be a professional wrestler. He is absolutely outstanding, can have a good match with, almost anyone. My biggest problem with Ospreay is that his mic skill wasn't really good, but over the years I really saw an improvement there. Hopefully, this is not his ceiling. He's just 28, so he really has a lot of time to reach awesome levels."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ZFIELDwrote on 10.02.2022:[1.0] "At this point, Will Ospreay is an empty vacuum of a wrestler. He's incredibly athletically gifted and can have a decent match with the right opponent but left to his own devices his matches are spot fests hampered by an overused bloated style that focuses entirely on excess. He is entirely artificial. There is no heart to any of his matches, he does his moves, they don't mean anything, and after a while it becomes tedious. At best he can be used as a foil for someone else's story. On top of that his facial expressions, selling and his movements, in general, are incredibly corny and fake. I don't think he has ever attempted something cool and not come across as lame. There is no subtly to him, he's a maximalist wrestler and extremely overindulgent. There is nothing to him or his matches below the surface."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Minorsmile09wrote on 07.02.2022:[10.0] "I've not seen him much on the mic, but he's a FANTASTIC wrestler. He can do it all, he can wrestle technically, he can fly high like almost no other, and he can use absolutely brutal looking strikes. He's put on countless classic matches and isn't even 30 yet. I know some people don't like him due to some dirt sheet backstage politick stuff, but it honestly isn't something I much care about when rating wrestlers. Unless he's a giant asshole to literally everyone like HBK was in the 90s, who cares and why is it something people are trying to be a private detective for. Lol. Will Ospreay is awesome."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Strong Zero Machinewrote on 05.02.2022:[10.0] "February 2022 at just 28 years old Ospreay is one of the best ever! 17 5+ stars matches! It's simply impressive!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GriffinXwrote on 23.01.2022:[10.0] "Ospreay is simply a fantastic wrestler. The last few years he transformed from a great highflyer to a damn good all-rounder with amazing high-flying skills. When it comes to the action in the ring few are better than him right now"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: nWo-Joshi-Guywrote on 23.01.2022:[10.0] "I think you might have to be British (like I am) to truly appreciate how obnoxious Ospreay's personality is lol. But remember he is playing a wrestling character and it is not real-life. Some people have trouble distancing the two. Anyway, he is an incredible performer, capable of things nobody else is. Stormbreaker is one of my favourite finishers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: njpwawwewrote on 03.01.2022:[10.0] "One of the best wrestlers of the day hopes that he will score well in the G1 event. He is worth this score. This guy has proved time and time again that he's the best lightweight of the day, playing between the lightweight and the heavyweight, and that wrestler can do that to Will."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: NikoKillbainwrote on 01.01.2022:[10.0] "Leading a heel NJPW faction could've been too big a stretch for Ospreay, but he's nailed it to this point. Starting the year with two of the company's MsOTY vs Okada and vs Kojima, he then went on a great run to the Championship, beating ZSJ, SANADA, Shingo and Ibushi in hugely entertaining matches. He then upped it further with his defense vs Shingo, but then his year went on ice, mainly due to covid. 2022 will have as big an Ospreay component as last year."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Darkdreams88wrote on 15.11.2021:[9.0] "Ospreay is amazing both in the ring and out of it. He has been great from the first match I seen him in, but has improved tremendously with experience, especially over the last two years. His timing is amazing now when it comes to the "Holy Shit" moments that he is known for as well as when to turn that off and slow the match down for a little. I love his promos and he seems to have a great time doing them, especially when playing a heel. When I am watching his matches, everything else dies as they are just to good and you never know what awesome moment he will create next! When meeting him outside of wrestling, he was extremely nice and was a lot of fun to talk to and would take the time we needed to enjoy the moment. The crazy part is he is still so young and is not in the prime of his life yet! I cannot wait to see where else he goes and what else he achieves in his career. I also cannot wait for the day that I get to see him wrestle live on the east coast of the US!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: benny5bellyswrote on 11.11.2021:[9.0] "Ospreay is on another level to all but a select few wrestlers operating today. His detractors are mostly going on gifs of his match with Ricochet 5 years ago. Unlike most of the flippy dudes across the wrestling world when he does hit his high spots they actually look like they have impact. He has also developed striking to his game that look more stiff than a lot of the purists faves. There is still the odd dumb spot in his matches. He is up there with Dynamite Kid as the best ever British export. He has a resume of matches that are up there with the best of today's wrestling.Just remember the golden rule of enjoying Wills wrestling....block him on Twitter."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Nobuo98wrote on 14.10.2021:[5.0] "Will Ospreay is a gifted athlete, he performs his holds beautifully, but that is where all his virtues end, he is completely unable to sell his opponent and generally does not care about it, for him the main thing is to show his best side, not caring about the opponent"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ABTyrsonwrote on 18.08.2021:[10.0] "Just so friggen talented. His series of matches with Shingo in particular in NJPW have been the stuff of legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: FightForeverwrote on 29.06.2021:[10.0] "Will Ospreay was the best in the world up until he tragically got injured, derailing what was likely going to be an amazing reign. Nevertheless, he has had countless classic matches with an amazing moveset and always excites me. A great face and heel, and a masterful worker, Ospreay is truly deserving of a 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WrestlingStuffwrote on 21.06.2021:[10.0] "He combines strong hard hitting style and aerial techniques at best. William Ospreay has a lot of potential to be par with Tanahashi and Okada's legacies, he just needs to injure himself less."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BEER CATwrote on 09.06.2021:[4.0] "The dodged bullet. Will Ospreay is an elite athlete and a master of a certain sort of moveset-based style that can pop any crowd in the world in the short term. Long term, it's poison. The tricks don't hit the same the 100th time you've seen them, and Will is a negative asset in almost every other facet of the game. He sells via overdramatic indicating, usually for a few seconds, he is not cut out for character work, he can't promo, has maybe the worst facial expressions in the world, his style is proven to be unsafe and unsustainable, and he deserves to be viewed as a bigger backstage liability than he's treated as. His best rivals (Shingo, Okada, Scurll, Kushida, ZSJ) have contextualized his melodrama well enough to get some good ones out of him, but he was never the better worker in any of those matches."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ExcitingProWrestlin3wrote on 07.06.2021:[3.0] "I am genuinely sorry for any Will Ospreay fans, but dear lord is he over dramatized and overrated. He's an unbelievably talented, almost god-tier athlete, but his character and psychological work is just an eyebrow raiser. His recent run and match against Okada did help uplift and make me think he has a brighter future, but prior to that, I'm often finding myself very confused, his promo work isn't all that great either."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Lennoxwrote on 22.05.2021:[10.0] "I think his move up to heavyweight really made me like him a lot more. Sometimes I have my problems with his performances but when it clicks I can't deny he's one of the best today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: chopsueywrote on 13.05.2021:[10.0] "His style isn't always my preference but I can't deny the talent with his athleticism and match quality. His character is a great dickhead heel right now and the United Empire feels like a big main event faction."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AmarantCoralwrote on 25.04.2021:[10.0] "It's easy to criticise Ospreay's character work when his primary promotion is one whose presentation language does not line up with his mother tongue. Beyond this, NJPW is a sports-based pro wrestling promotion. Will has adapted his style to his heavyweight frame and is now the quintessential allrounder. He's a once in a generation athlete and I have to believe pretention and/or misplaced anger has a lot to do with the recent reframing of a previously almost universally-appreciated talent who's only sharpened his ability in the time it's taken for his detractors to come to their new opinions."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JBWrestlingwrote on 18.04.2021:[10.0] "Its amazing how much he has accomplished at such a young age. He still has nearly a decade and a half of prime left. The sky is the limit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Targetwrote on 15.04.2021:[5.0] "I thought I should write an extended review. I do not like Will Ospreay as a performer in many ways. To begin with, he is a liar. I remember him saying before WK 14 that he had plans to continue to develop the welterweight division. He told everyone that the welterweights were just as good as the heavyweights. That the welterweights under him would be in the main event of the WK. His words made sense at the time and I even began to understand him at that moment. And then what? He lost the title and then he was promoted to heavyweight. He simply fooled everybody. He said words, but he didn't back it up with action. Let's go over the execution. The main disadvantage of Ospreay is that he always has the same formula for matches, which is that he'll surprise people with acrobatics and big holds. At first you like it, but when you watch another Ospreay match, you're sure to see what you've seen before. On top of that, Ospreay has an unspoken charisma, which makes him hard to see as a face. I've seen him play the spotfielder's hil and I liked it. But he's a bad face. Then, I don't like Ospreay stealing moves just because he wants to. There's no backstory or anything like that. Take Chris Heero. I don't think I need to explain why he uses his elbows in this fashion. Why does Ospreay use them? Because he wants to. A man once said that wrestling has a history, but Will Ospreay is a bad wrestler, so he has no history. Ospreay's not bad in terms of being a wingman wrestler. He needs a stooge in the match to lead him, but the main problem is that Will himself is constantly stealing attention, which makes one not notice the story. That's what I was saying, he can't work different styles. Then, the level of his matches is not a puroresu. Look at the fight with Takagi. It's a spotfest that the same NJPW fans spit on when they see AEW's matches, yet they give that spotfest a 10/10. I think that says something. I could go on and on about Ospreay, but I think all I've written is enough to give you an impression of him."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GoodGoodSnapwrote on 14.04.2021:[10.0] "Rating will always be for the performer, and it is impossible to deny Will Ospreay as one of the best going today. Unreal athleticism, especially given his height, and unlike many high flyers has an incredible knack for selling and allowing big moments to hang in the air at just the right moment. Will go down as one of the most important figures in directing the stylistic changes that professional wrestling has gone through in the past 10 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: symolagwrote on 09.04.2021:[10.0] "He's one of the best in the world right now period. He's able to combine high flying wrestling and technical wrestling. Thanks to the increase in muscle mass, he is also demonstrating great strength in the ring. His win over Kota is well deserved. Explosive."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Makoto92wrote on 08.04.2021:[1.0] "William is one of the most overrated wrestlers in the world. Even when he turned heel, he didn't forget about spotfests, although he tries to disguise these under very primitive drama. No matter how he changes and what he tries to change - he always remains as a decent high-flyer with almost zero charisma."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: KyleEnjoysWrestlingwrote on 24.03.2021:[8.0] "He's one of those internet darlings who I mostly found to be very overrated. That said, when he turned heel & bulked up not long ago, I started to come around. Before I always saw him as mostly a spot monkey. Sure he was a better spot monkey than most; but still -- that just doesn't do it for me. But he's now showing more personality, charisma, & in ring range."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Bushidospirit22wrote on 16.03.2021:[1.0] "I don't think there's a more overrated wrestler than Will Ospreay. As far as I can remember, I've only seen one Ospreay match that I actually enjoyed (Wrestle Kingdom 12). Everything he does in the ring is either so overtly convoluted or overacted, that it completely takes me out of any match he's in. Every match he's in also seems like it has to be about him, either getting his moves in or overselling his opponents' moves, that they get almost nothing from wrestling him. His work feels like I'm watching a stuntman from a bad 80s Hong Kong action flick, and there are probably over a dozen guys on the lucha indy scene who can do his high flying moves better than he can. In addition to his ring work, he's a vacuum of charisma, and his promo work, especially since his big heel turn, is all-time cringe-inducing bad."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: sanjurowrote on 29.01.2021:[7.0] "Ospreay put so much together in 2019 that it looked like he'd finally learned how to back up his undeniable athletic skills with the storytelling and passion that actually makes a wrestler great. Then he backslid in the worst way, his heel turn exposing all of his deficiencies as a character and giving him free license to make his matches even more about his showboating than before. When paired with an opponent who matches his dynamic flying with the sense of wanting to maul him (Chris Hero, Matt Riddle, Shingo even ZSJ and now Okada), he looks like the best in the world. Otherwise, with the exception of Hiromu (who can run circles around Will in every possible way as both a worker and a creative mind and persona), it's pure acrobatics that never add up to anything. That 2019 fire he showed on his rise up the junior ranks makes me think he still has it in him to be genuinely great. For now, though, the disconnect between his off-the-charts athleticism and his rock-bottom charisma and understanding of what "the work" truly means holds him back."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AlexLennonPWwrote on 21.01.2021:[10.0] "Have the people who have rated 0-3 ever seen a Will Ospreay match? Because you can't watch his bouts with Takahashi, Okada and Ibushi without being wowed. It's a shame a promotion through him under the bus, which is information that doesn't seem to have reached everyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: SoaKaswrote on 12.01.2021:[10.0] "Ich mochte ihn in der Junior-Division schon immer gerne, aber er hat mir noch nie so gut gefallen, wie jetzt aktuell in seinem Heel-Run als Heavyweight. Ich gehörte zwar auch zu denen, die ihn anfangs als unnötigen Spotmonkey gesehen haben, aber mittlerweile hat er auch deutlich bewiesen, dass er diese Spots nicht benötigt und ein sehr guter Wrestler ist. Wer Ospreay noch immer als Spotmonkey sieht, sollte sich sein WK15 Match gegen Okada ansehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TsurutaOHwrote on 13.12.2020:[7.0] "One of the most consistent wrestlers we have today, with undeniable skills but who at the same time suffers from an uncomfortable heel interpretation, an abuse of overselling, and that often he does things just because he can, he trying to shoot is ridiculous and it bothers me a lot how "edgy" he becomes and irresponsible, I still remember how he almost broke Ibushi's nose, he was making a good start to the year, but currently it is a little difficult to keep up with him, who knows he might improve his performance as heel."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: klauswrote on 30.11.2020:[10.0] "Ich verstehe nicht, warum er teilweise so schlecht beurteil wird. Es gibt sicherlich Gerüchte ausserhalb des Rings, die meines Wissens nach überhaupt nicht bewiesen sind. Als Wrestler jedenfalls gehört er meiner Meinung nach zu den Besten seiner Zunft. In seinen Interviews gibt er sich auch sehr autentisch, jedenfalls nicht abgehoben und arrogant."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AndoCommandowrote on 24.11.2020:"From 2019's WOTY to an utterly atrocious heel stint where he now talks like a meme Kenny Omega and can't be arsed to sell moves half the time."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: rainmakerpunkwrote on 07.11.2020:[10.0] "Best highflyer in history, his move set has to be the most impressive ever, he's honestly an underrated storyteller which you could see in his WALTER, ZSJ, and Okada matches, among others, he's a jaw dropping performer and one I always love to see in the ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: elcompactowrote on 16.10.2020:[3.0] "I'm really not a fan of Ospreay's in ring style. His "look at how good I am at the flippies" match formula has long become tiresome. He's a very selfish worker, only out to make himself look good - on a level I've never really seen before. If you're a fan of the spotfest style of wrestling with a ton of illogical offense then you'll likely enjoy the work of young Billiam. Not at all for me though."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: shittylittlerasslinwrote on 15.10.2020:[4.0] "To be honest, he doesn't buy any of my interest. Comparing him to the likes of Fenix or PAC, which I consider pretty talented highflyers, he is just more natural as a gymnast. I think he misses the wrestling fundamentals' points and is not a very good professional wrestler. For those who appreciate spot feasts, he is adequate. However, for the professional wrestling purists (which I don't consider myself as such), he's pretty weak. For me, an average wrestler with very good physical skills, defying gravity and so."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: zephyrwrote on 10.10.2020:[3.0] "Ospreay seems to think of himself as the coolest person to ever step in a wrestling ring. And every time someone gives a positive opinion on him, that belief gets stronger and he adds more pointless "cool" stuff to his matches that actually look awful. His offense STILL lacks impact after all these years and he doesn't really look good doing anything other than ridiculously choreographed counters and jumps. The more I see of him this year the less I like him. One of the most overrated wrestlers in the world."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: arkhamoutlaw10wrote on 05.10.2020:[0.0] "One of the worst wrestlers in the world, the most overhyped by far. While he's capable of being carried if he tones down his worst impulses, his ego has only increased in the last year since becoming a heavyweight and he's giving less respect to his opponents. The total burial of Tomohiro Ishii, the no sell of SANADA's Paradise Lock, making the Hiromu return match at the Dome all about himself, he's a complete trainwreck of a wrestler right now. His facial expressions are the worst in wrestling right now, a truly atrocious actor and his promos are unbearable. His moveset is abysmal, with the Stormbreaker being one of the weakest and least invigorating finishers in modern wrestling, and every time he goes for it, the matches get dragged down. He cannot lead a match as he either does reversal spams throughout or he does slow terrible offence to build a match without any realisation of how to pace. In addition, the fact that he openly admitted to blacklisting a sexual assault victim in the British wrestling scene means he should not be trusted in any locker room."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ElPolloLocowrote on 28.09.2020:[7.0] "Another infuriating character cut from the same cloth as Randy Orton: when Will Ospreay is properly motivated he is absolutely incredible, amazing, fantastic. Look at all those matches with the likes of Marty Scurll, Kushida, Shingo Takagi, Dragon Lee... this man will keep you glued in front of the screen with an incredible combination of insane athleticism, speed and amazing moves. But when he's not motivated he will give in to his worst instincts, a terrible combination of poor overselling, goofy facials and theatrics and somewhat poorer attempts at playing 80's King's Road AJPW. It's a shame that promoters have often given in to these tendencies just to keep him happy because one can only imagine what a consistent and consistently evolving Will Ospreay would be."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: qveenovhellwrote on 25.09.2020:[2.0] "There's more to being good than being a flippy boy. Ospreay is one of the most overrated performers of his generation. Being an awful person doesn't help my opinion of him, for sure, but even before I knew he was a bad person I already found his matches flat and uninteresting. He sacrifices substance for style."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Zakaria Guiguiwrote on 22.08.2020:[10.0] "I saw Ospreay wrestling for the first time live last year and mamma mia I didn? t know where I was ! This guy is unreal I? ve never seen things he? s used to do before he? s honestly on another level of wrestling ! I just love highflying style it? s my favorite and I loved it more since I met him! I always know he? s gonna give a big performance in matches but I always like what the hell am I seeing right now ! ? I hope everyone will have the chance to see him at least once wrestling you? ll never forget him !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Ma Stump Pullerwrote on 06.08.2020:[8.0] "I can't really put Ospreay any higher at the moment, if only because of his relatively inconsistent selling and lack of proper heavyweight bouts to go off of in order to judge how effective he could be at that level. That being said, he's gotten a LOT better over the last few years, moving from his flip monkey style (that, while fun to watch, was ultimately wrecking his body) into a more mat based technique, which preserves his career for longer and ultimately allowed him to actually slow down a bit, which was a huge problem for his earlier stuff, when his matches happened so fast that there was no real time to sell or really do anything to build up the match. That being said, the slower style does lead to some long stalling with rest holds, and he does have a habit of taking really unnecessary risky bumps when it really doesn't add anything to the match at hand. He's not terrible in any massive way, but I imagine that with more ring experience, he'll be much better than he is at the moment."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Yumichi95wrote on 31.07.2020:[10.0] "Impressionnant surement 1 des seul catcheur a qui je met 10 et on a intérêt a en profiter car je pense que d ici 2023 sa carrière sera terminer tellement sont corps prend de risque."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Yazmanwrote on 21.06.2020:[10.0] "One of the best wrestlers in the world today. An intense dedication to his craft - whether in front of 300 people or 30, 000 people, Ospreay does everything he can to put on an excellent match for the fans. As a heavyweight now he will surely prove that he belongs in the top tier of the sport."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: haroldanthony3wrote on 14.05.2020:[10.0] "Eight years to his career his talents and skills are at a level where every match he has in any location, against just about any other wrestler or wrestlers in either singles, or tag matches have a great change of being great. He has achieved success in every promotion that he's has had somewhat of a regular in or been able to be a part of the storylines. He has adapted his style in an attempt to preserve his body for him to have a longer career. He has also been able to positively improve other wrestlers careers by associating with him such as saving Paul Robinson's career twice and being influenical in getting Robbie Eagles, and El Phantasmo into New Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: VillainClubwrote on 28.03.2020:[10.0] "Sein 2019 war Fantastisch. Als Junior Wrestler bei New Japan hat er alles erreicht. Auf seinen Heavyweight Run freue ich mich schon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: kaantheviperwrote on 13.02.2020:[9.0] "When I saw him back in 2016 I didn't took him seriously. He was a spot monkey and I didn't had any huge hopes for him. Slowly he changed my mind by giving me some of the best matches I've ever seen. Every other day he evolves and adds something to himself. He has a bright future for sure."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Cleanerwrote on 06.01.2020:[10.0] "Unglaublich, dass der erst 26 ist und schon einen Wrestlingstil geprägt hat - ohne darauf beschränkt zu bleiben. Denn wo oft nur "Flippy-Shit" und Geschrei statt echtem Selling war, hat sich der Junge in Japan wirklich zu einem Top Wrestler entwickelt. Seine Art sich im Ring zu verhalten, seine ganze Präsenz, wirkt mittlerweile viel erwachsener, reifer und kämpferischer. 2020 wird man ihm wohl auf die ganz große japanische Schwergewichtsbühne holen und ich bin sicher, dass er dort mithalten und noch besser werden kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Leon101wrote on 05.01.2020:[10.0] "Der mit weitem Abstand beste High-Flyer den es je gab. Mittlerweile auch weit von dem puren Spotmonkey entfernt. Im Ring ist er einer der besten der Welt, in Sachen Characterwork und Storytelling wird er ebenfalls immer stärker. Alles andere als eine 10 wäre fatal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: LatinoHeat93wrote on 26.12.2019:[10.0] "Hat sich in diesem Jahr nochmal Stark gesteigert vorrallem bei New Japan hat er nach dem Abgang von Omega die Rolle des Top Gaijin erfolgreich übernommen und hat bewiesen das er mehr als ein High Flyer ist und auch im Heavyweight Bereich mitmischen kann. Wohl eines der besten Gesamtpaket die es IM Business gibt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: 20SaiDa19wrote on 26.12.2019:[10.0] "Ospreay has continued to improve year on year and if he carries on this way he could very well end up an all time great. His 2019 has been phenomenal and as of right now I don't think anyone really comes close to touching him, as far as being as consistently good in-ring as he is. His style has also evolved and nowadays his matches are more strike based, although he is still more than capable of having flippy spotfests when he feels the need to. Will's selling has also improved a lot over the last 18 months and the screaming that once used to annoy me, is no longer an issue I have with him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheFrenchDisasterwrote on 18.12.2019:[9.0] "In 2019, Will Ospreay silenced many haters, he has confirmed himself as one of the best wrestlers in the world today. The 2019 edition of the Best Of The Super Juniors marked a change in Ospreay's in-ring personality as he focused more on mat-wrestling and he does not jump in the ropes every 2 seconds anymore. He delivered many 5+ star matches and is a great champion."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JokeyZockeywrote on 02.12.2019:[10.0] "Vor gut fünf Jahren noch ein krasser Spot-Monkey, der fast nur durch Akrobatik glänzen konnte, heute der wahrscheinlich neue beste westliche Wrestler der Welt! Ospreay's Entwicklung in den letzten Jahren bzw. seit er regelmäßig(er) bei NJPW auftritt war einfach phänomenal. Er schaffte es mit der Zeit, seine Flugkünste mit dem pragmatischen Puroresu-Stil auf der einen und einer grandiosen Storytelling und Selling-Fähigkeit auf der anderen Seite zu verknüpfen, was ihn nach Omega's Abgang dieses Jahr zur neuen Best Bout Machine (bei NJPW) gemacht hat. Unzählige Hochkaräter im BoSJ und G1, vor allem natürlich das Match gegen Shingo, sowie einfach mittlerweile die Präsenz eines fast-schon Veteranen, der Jung aus Essex hat sich einfach gemacht. Er wird in den nächsten Jahren (sofern er, toi toi toi, von großen Verletzungen verschont bleibt) einer der großen Eckpfeiler im NJPW-Kosmos sein!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheV2wrote on 01.10.2019:[7.0] "2-3 years ago I wouldn't have seen any potential in him. He's mostly known for his tremendous athletics, which makes him able to do almost anything as a high flyer. However he used to be very generic as a complete package. He didn't develop at all in his character work, which was almost Low Ki level not existent. And his moves were just visuals that didn't have any value for a wrestling match. However especially in New Japan he has improved a lot in recent times. He works his matches more strategically. It's still a choreographic feeling, but you get his intention of winning the match. His character truly lives now, huge development! So as a whole he still is rather a 6 to me yet. But this is one of the biggest developments I've seen. You can truly feel the improvements from time to time. And this incredible passion and his work-rate can be rewarded with a 6. 5/10."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Zo-Zuwrote on 09.09.2019:[7.0] "In the canon of hyperathletic flippy dudes crawling all over the current wrestling scene Ospreay is the least obnoxious, mostly because he actually does possess some decent selling and fundamentals. It's a shame he sometimes lets his excesses get the better of him. Grounded by a more believable presence he can be brilliant, but some of his matches are overworked Cirque du Soleil shit."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ArrogantDanwrote on 03.09.2019:[7.0] "There's no doubting that Will Ospreay is a talented wrestler, and yes, probably one of the most talented in the world. Has he ever been a better high-flyer than Ricochet? Or Fenix? Or Místico? Probably not. I don't know if it's entirely fair of me to be down on him for his booking in NJPW, but my God. His time as solely a junior heavyweight was defined, not only as one of the top talents, but also as a loser when it counts. He just couldn't quite best Kushida for the longest time. Marty Scurll beat him so often, he did a "death-and taxes" promo about his inevitable victories. Admittedly he got the better of those two at, and after, Wrestle Kingdom 12... then lost to Marty who lost to Kushida a few months later. He canonically feared Taiji Ishimori throughout BOSJ 25, who was the new hotness who beat Ospreay in the block. When Hiromu beat Ishimori, WIll was cocky and confident that he could beat Hiromu again at Dominion. Then he lost. Despite all this, he had a pretty good legacy when he began to compete against heavyweights. Beating a former junior for a shot the NEVER Openweight was a pitch perfect stepping stone for him. Beating Ibushi was maybe a little much, but hey, I could believe Ibushi was headed to bigger and better things, and it did Ospreay a huge favour in making him look like he belonged with the big boys. I was into him in the New Japan Cup, and super ready for him in the G1 - think of all those fresh match-ups! Then BOSJ 26 came, and despite the losses of talent to injury and the WWE, NJPW made it the biggest one yet. It was the fact that they were missing Hiromu, Kushida, Despy, and ACH that made me forgive putting Ospreay back in the division he'd had his back to for months. Then he never lost clean. Then he won his block. Then he beat the guy who, unprecedentedly, went undefeated in a ten-wrestler block. Then he won the championship. Then he held the belt throughout the G1 where the title shots he could dole out with losses were pointless"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: taabr2wrote on 31.08.2019:[9.0] "Will Ospreay is the best and most mind blowing high flyer in an era where everyone is a crazy high flyer. However what I find most impressive about him in that in the past year how much he has matured as a worker. He has toned down the reckless spots and shown to be pretty good at other styles in wrestling. Watching his evolution has been great and he is still evolving. Outside of the WWE circle Ospreay is definitely one of the more well known names in professional wrestling and he was a big part of the UK independent exploding in recent years. I got a feeling though bigger things is in store for Ospreay and I think anything is possible for his career going forward."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: UsualSuspectwrote on 16.08.2019:[10.0] "Greatest high flyer of all time. He started including a great amount of psychology and selling in his matches around 2018. I think he belongs in the top 3 best wrestlers of 2019."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JOEvsISHIIwrote on 15.08.2019:[9.0] "Ospreay is extremely athletic and probably the best high flyer in the world. His selling and technical wrestling, while still not great, are improving at an extremely high rate and pretty soon I'll be able to give him a 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: NEVERoverweightChampionwrote on 10.08.2019:[8.0] "Quite the opposite from the comment below, I like him more now. He's doing less flippy shit and improved in the last year, I think he gained confidence, his selling is better (way less screaming and others... weird crying dog noises ? ) and he gained some weight too so he looks better.  I agree he isn't the most believable guy as a tough striker but I prefer to see him doing that than non stop flippy high spots against heavyweights. That said, while he's not just a flippy monkey anymore he still does a lot of useless or weird flippy moves and I agree on his constant posing (and facial expressions) that are ridiculous and just too much. That's his "trying too hard" side. I know a lot of people see him as IWGP Heavyweight Champion material but I don't see him at that level yet. He doesn't have the character, the attitude, nor the presence or the charisma of a top heavyweight wrestler at all. So he still has a lot to do before getting to the next level but I don't think it's impossible for him. He has a good intensity, is pretty consistent at his level (let's say he's a reliable wrestler, he's a good hand) and he can have a real banger if he's with someone that can force him to tone it down or force him into a dynamic that makes more sense or is clearer like against Shingo or against Okada with whom he has the most evident story right now.  He is a great athlete who can do very spectacular stuff so I understand that he wants to show that sometimes, but he still needs to tone it down a bit, especially as a heavyweight and he needs to learn how to work smarter, even for his health it would be better. To summarize, right now I can buy him as a Junior Ace but he struggles to definitely convince me as a top level heavyweight, or at least I'm not that hot on him as most people seem to be. There's still a lot of little things that bother me in most of his matches but I like him, he sure is a talented guy with a lot of passion for what he does, no doubt about that."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheGorgis309wrote on 30.07.2019:[9.0] "Some may not like his spotty style of pro wrestling, but his matches are always spectacles and damn pretty to look at. And it's also hard to dismiss him considering how much he's given to wrestling (he is physically shattered human at the age of 26 due to numerous injuries). With all this considered, I have to give Ospreay a glowing review, I mean what other performer of the last 20 years has been as consistently good in the ring for as long as Ospreay? There may be a few, but in my eyes, Ospreay leads that class."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: wrestlinggenius247wrote on 25.07.2019:[10.0] "Best in ring performer in the world, no one else currently competes consistently at the level ospreay does and he does so badly wracked with pain. better than okada better than omega."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Ferdinand Fisawrote on 21.07.2019:[10.0] "Ospreay is the best in the world and there is no reason to dense that. He always delivers amazing Matches and has become crazy charismatic and awesome in and outside of the ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: LeafKingwrote on 17.07.2019:[4.0] "I want to call him overrated. To be fair though I understand his appeal... but that appeal doesn't attract itself to me at all. I like high spots just fine, but this guy, while a more talented acrobat than most high spot guys, just overdoes it to a disgusting degree. His selling also makes me cringe and his personality is extremely off putting. He's had a few very good to great matches, but I will never like this guy."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: seirahwrote on 27.06.2019:[10.0] "the first wrestler i changed my mind. for me he was just a "generic flippy guy", but his matches vs ibushi and vs shingo show me that this guy is argubly the best in ring worker at the time, good job little guy"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Fab96wrote on 09.06.2019:[8.0] "I'm not Will Osprey's number 1 fan. With that said, I think we can all agree on the fact that he is one of the best (if not the best) Jr Heavyweight of all time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Garrettwrote on 06.06.2019:[10.0] "I had to change my rating of him from 9 to 10 after watching BOSJ 26. Rocky Romero, Bandido, El Phantasmo, and Shingo Takagi are serious MOTY candidates, other than those he also has had tremendous matches against Ricochet, Hiromu Takahashi, Jimmy Havoc, Okada, Jay White, and eternal rival Marty Scurll. I also like how he combined his high flying move set with a flavor of strong style. I would go so far as to say Will is the best high flyer of all time and is poised to move up with the Heavyweights."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Aurtletheturtlewrote on 05.06.2019:[10.0] "Best in the World. People saying that his matches have declined in quality must be watching a completely different company or just be blind in general. Ospreay has elevated his ability to the point where he can carry anyone to a star making match, his performance during the 26th Best of the Super Juniors rivals Okada's 2017 G1 Climax run. Ospreay can do anything and everything within the ring, he sells like utter death, he can create counters for moves that should be impossible to do, he has the high flying abiltiy of Hayabusa and the striking of Naomichi Marufuji, he never botches. Simply unmatched and unrivaled right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ZestyZuluWarriorwrote on 05.06.2019:[8.0] "If you like "flippy wrestlers" and "flippy matches" then you'll like Will Ospreay. If you don't well then... you won't like Willy Ospreay. It's pretty cut and dry. I find him entertaining and find myself getting invested in a lot of his matches. I will agree with some previous commenters that his matches have declined but I still find them fun. mostly."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: My Bloody Doobwrote on 21.05.2019:[10.0] "Incredibly talented for his age. Like Ibushi, he is an enigma who came out of nowhere and quickly made an impact in New Japan only 4 years into his career. His meteoric rise gave way to a backlash from those down on his style, but he has still continued to impress me even to this day. It's special watching a guy evolve through the years, and as long as he keeps chilling on the high spots, a dedication to longevity will pay off some day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: PuroresuLoverwrote on 19.05.2019:[9.0] "Will Ospreay is pretty good! His transition to a flippy-dee-floppy-dee-fluppy-dee guy to a hard hit is awesome! 6 months ago I doubted that one day, Ospreay would ever be an Heavyweight in NJPW, but now... I can see him in the G1 Climax making a lot of MOTYC. I hope that happens before he leaves."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AJStylopzwrote on 10.04.2019:[9.0] "Ospreay is someone who can either be fantastic or go overboard with spotty selling and flippy shit. I think he can one hell of a bumper and seller and can look great in a match with everyone but he still needs to work on certain stuff. Overall I think he is great"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Louis Frankfurt 1899wrote on 09.04.2019:[10.0] "Will Osprey gehört im Ring zu den besten Wrestlern der Welt. Fast jedes Match von ihm macht Spaß und er gehört zu den Wrestlern die ein mit Moves am häufigsten Sprachlos machen. Einfach Wahnsinn was Ospreay im Ring zeigt vorallem in dem Alter. Dazu kommt das er auch Matchpsychologie und Seeling inzwischen richtig konsequent beherrscht. Gehört auf jeden Fall in meine persönliche Top 5 der besten Wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TylerWhitewrote on 07.04.2019:[9.0] "Im Ring einer der absolut besten Wrestler unserer Zeit, wenn er dabei ist, kann man eigentlich davon ausgehen, dass es ein gutes Match wird. Außerhalb des Ringes ist er vielleicht nicht ganz so starkam Mic, aber das braucht er aktuell in NJPW auch gar nicht wirklich, doch er ist sehr charismatisch und hat die natürliche Face-Ausstrahlung. Es gibt glaube ich keinen spektakuläreren Highflyer akutell. Moves, die du dir nicht einmal vorstellen kannst, haut er raus.  Noch dazu ist er noch sehr jung und hat eine noch größere Karriere vor sich. Ich schätze er wird noch eines der großen Aushängeschilder von NJPW werden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AsterDaviswrote on 25.01.2019:"Not really my kind of wrestler but I saw his match against Drew in WCPW and I thought he was fantastic. Some of the stuff he does is still slightly eye-rolling to me like the stuff with Ricochet and Ibushi but it's all down to taste. Amazing wrestler but not my thing."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Cibswrote on 07.01.2019:[7.0] "Probably the most spectacular wrestler on the planet at this moment. I think Ospreay is good but not great as many think, although he is still young and over the years can improve in areas where he clearly has problems; especially at the time of selling and making sense of all those endless jumps."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RatingsMachinewrote on 01.11.2018:[9.0] "Will Ospreay is a tremendous performer, even if his style clearly infuriates those who have a very narrow view of what wrestling is."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JessePinkman1998wrote on 02.09.2018:[9.0] "Es macht einfach Spaß einem Will Ospreay zuzusehen. Er ist eigentlich der typische Highflyer ABER viel besser. Seine Moves sind spektakulär und innovativ. Vor 2 Jahren hätte er von mir 7P gegeben aber er hat sich in allen Belangen enorm verbessert. Und der Typ ist halt auch erst 25. 2018 sind es 9/10 für mich mal sehen wie es in 2 Jahrem aussieht"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Cal Vamwrote on 15.08.2018:[7.0] "Not a big fan of "flippy shit", but I have to admit - Ospreay is a master flippy shitter (not meant as an insult). From time to time, he delivers some absolute killer matches (my favorites are against Havoc, Scurll and Galloway), but he also has a lot of spotfests - pointless spotfests, but that usually doesn't prevent me from watching them. When I watch Ospreay wrestle, I either have a good time watching a great match, or I have a good time watching a solid circus. On the other hand, his selling is not exactly the best and being forced to listen to his screaming is like a million knives stabbing my ears."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Sebastian Vwrote on 06.06.2018:[9.0] "Im Ring ist er absolut unantastbar für mich und in meinen Augen im Moment der beste High Flyer der Welt. Er ist unfassbar beweglich, dynamisch, schnell, innovativ, sauber und vor Allem zu keinem Zeitpunkt ein Spotmonkey. Unglaublich guter technischer Wrestler und eine Matchpsychologie wie sie nur wenige haben. Außerdem ist er ungemein konstant und zeigt nie ein einziges schlechtes Match. Vom wrestlerischen her eine glatte 10. Aber dennoch ist er niemand, der in meiner persönlichen Top 10 auftaucht, da mir das vom Charisma her für einen absoluten Topstar noch zu wenig ist. Ja er strahlt absolut was aus und zieht auch Reaktionen besonders in Japan aber sein ganzer Charakter ist mir immer noch irgendwie nicht ausgreift genug, sein Gimmick ist nicht wirklich aussagekräftig. Beim Micwork ist er auch absolut gut aber nicht überragend unterhaltsam, kein Catchphrase der mitreißt oder unfassbar einprägsame Promo. Er ist dennoch in beidem gut und deshalb 8 Punkte. Insgesamt macht das für mich 9 Punkte, da zu den 10 die angesprochenen Aspekte fehlen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Gothic Bloodletterwrote on 03.06.2018:[10.0] "Will is one of my favorite wrestlers. The British miracle - on another it you will not name in any way. Osprey is the brightest representative of the modern British generation, along with Zak Sabre Jr. A fantastic athlete, capable of everything. His natural talent, coupled with incredible enthusiasm, allows Will to literally blow up the crowd. It has a desire, enthusiasm, a spark that allows you to steal the hearts of absolutely all spectators in the arena. Godfather. ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: The Phenomenal 1551wrote on 14.05.2018:[9.0] "Der gute Will hat in den letzten Jahren eine grandiose Entwicklung durchlaufen. Zuvor reiner Spotwrestler und High Flyer, ist er mittlerweile ein technisches Gesamtpaket der Extraklasse. Und dann ist der Kerl erst 25 Jahre jung und schon so verdammt gut. Gerade seine letzten Performances bei NJPW legen dafür Zeugnis ab. Auch sein Selling, das vorher häufig ein Kritikpunkt bei ihm war, ist mittlerweile konsequent und richtig gut. Ospreay liefert aktuell richtig ab und hat ein sehenswertes Match nach dem nächsten. Das kann gerne so weiter gehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: LrockBesnarwrote on 07.05.2018:[10.0] "The best high-flyer after Ricochet. He's very talented. Very charismatic. He did 3 5-star matches, even though he was 24 years old. He is moving very fast. He is doing great matches and trying to win the attention of the audience but there is a lot things that he has to pay attention to. He's taking a lot of risk. If he is seriously injured, it may cause his entire career to end. You know that British wrestlers always play heel because of their characteristics. But Ospreay looks very clean. I think he is a very good babyface, even though he is British. It will may be irrelevant for you, but i think he is more talented than Zack Saber (who has overpushed along 1-2 years). I think Ospreay is best English wrestler after Pete Dunne."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Viper99wrote on 23.04.2018:[10.0] "Ich verfolge Ospreay nun schon seit 2015 als er fast nur bei den RevPro "Weeklys" zu sehen und finde seine Entwicklung sowohl großartig als auch Erschreckend. Er mauserte sich vom relativ Charismalosen High Flying Publikumsliebling zu einem sehr guten High Flyer welcher dann auch für PWG auflaufen durfte bis hin zu einem der Key Player in der Japanischen Junior Division. Er ist heutzutage einer der besten und konstantesten Worker die es auf diesem Planeten gibt! Er ist einfach ein Garant für ein gutes Match und das gerade mal mit 24 Jahren. Er wird nach seinem Rücktritt lange in Erinnerung bleiben, als einer der besten und Innovativsten Worker sowie zuvor schon ein Liger, Benoit oder Dynamite Kid."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: coolserazwrote on 08.04.2018:[9.0] "Amazing wrestler. Absolute human highlight reel. Unfortunately, he is not going to last long with his breakneck pace every single match and I am afraid the damage is already done. Regardless, he has provided us a lot of great memories so far and I hope he keeps providing them to us."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Vylkhinwrote on 07.04.2018:[10.0] "Puts on classic over classic over classic. Amazing wrestler, always entertaining, sells his opponents's holds like no one, unbelievably athletic and talented."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Even Flowwrote on 27.12.2017:[10.0] "Has potential to be something big. Really puts on a spectacle with his high flying moves. Really sound technician(though he tends to not show it much). He seems to be constantly improving on his weaknesses: Mic skills were poor at the beginning but are much better now (Still not great) and his selling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Spartak87wrote on 12.12.2017:[10.0] "Will Ospreay is an amazing talent. He looks a bit like the heir apparent to AJ Styles, especially AJ's earlier work. A high flyer who can mat wrestle as well. He has had some incredible matches. And he has gotten even better since he joined NJPW. His matches with Ricochet and KUSHIDA stand out as well as the match he had with AJ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Dragon Fighterwrote on 11.11.2017:[9.0] "King of flips. He is not for everyone. Of course, if you love flips, dives, you should watch this guy. I understand someone dislike him. At times, he can overkill flips and dives, which annoys you. I don't have much problems with those. Amazing talent for sure. I have seen he elevated guys like jay white, flips gordon, chris brookes, robbie eagles from Aussie. That's great. He is very young and can improve in the future. The only thing many fans and i dislike is obvious : his selling- very hit and miss. It doesn't matter if you ignored it. That's why i only give him 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: The Big Blue Machinewrote on 28.10.2017:[10.0] "One of the best junior heavyweight in the world, Will Ospreay is like a dancer: his elegance and his agile movements makes his match seem nearly unreal, like something from a videogame. The more I see, the more I love this guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: sign squadwrote on 27.06.2017:[10.0] "Haha, sorry ich kann nicht mehr vor Lachen. Manchmal ist dieses getrolle einfach nur super lächerlich. Eine 2 für Spektakulär aber konstantes Overselling gegeben von einem DIE Hard Dragon Gate Mark. Das kann man sich nicht ausdenken. Ospreays Timing ist fantastisch, seine Spots sind fast immerzu perfekt und seine ganze Art wie ich sie bei PROGRESS und New Japan sehe feiere ich hart. Dabei bin ich echt kein wahnsinnig großer Spotmonkey-Fan. Aber einige haben's halt drauf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ParisTheSpiderwrote on 08.06.2017:[10.0] "Will Ospreay zeigt immer wieder verrückte Sachen im Ring. Sein Match mit Ricochet hat mir sehr gefallen. Im Ring ist Ospreay einer der besten High-Flyern aktuell."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheGreatestManRed22wrote on 03.06.2017:[10.0] "Yes He got a lot of haters. Ospreay is awesome he is not a spotmonkey as many say. He showed and continues showing his mature more and more. His career in NJPW has helped to be one of best highflyer in thew world right now. His selling has improved same that his offensive. I say that in a few years he will improve even more."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TooSweetPhilwrote on 03.06.2017:[10.0] "Ein weiteres riesiges Britisches Talent in Will Ospreay. Für sein Alter hat er schon extrem viele sehr gute Matches geworkt und ist damit in so einigen Indy Ligen zum Veteranen geworden. Bei CHAOS nun als schöner Newcomer, dazu immer tolle Homecomings in England. Komplett überzeugend im Ring und dafür 9 Punkte. EDIT: Nein, ich habe gerade sein Match gegen KUSHIDA vom BOSJ gesehen und mal ehrlich. Wer jetzt keine 10/10 gibt, dem fehlt etwas, Ospreay sellt nun auch immer konsequenter und deutlicher. Er wird innovativer und kann aus jedem Move irgendwelche noch spektakuläreren Variationen entwickeln. Für mich sind das jetzt ganz deutlich 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Prophet of Disasterwrote on 27.05.2017:[9.0] "Will Ospreay is amazing.  He is arguably the best high flyer in the world right now, but has proved during his heel work that he is a good mat based wrestler too.  I think he's really good at playing the dick heel character, and hope that he does this more in the future.  He has a lot of potential as he is so young, although his high risk style isn't good for his body and I hope this doesn't cut his career short."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Blood Pumpwrote on 06.04.2017:[7.0] "One of the most beloved Cruiserweights of our time but not for me. Hes super fast and can do things in that ring I never could but hes just not as good as a lot of other lightweight wrestlers in the ring. Hes a spot caller (and aside from that talks way too much in his matches as is), rushes spots, and hasn't proven to me he can be compelling without his acrobatics which, say what you will about Ricochet, Ricochet can. Will has proven a handful of times he doesn't know how to work a match with someone who doesn't spam spots. I won't outright say his matches are ruining the idea of wrestling but I do wish he'd at least try to make his bouts a bit more dramatic."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JordanACEwrote on 14.03.2017:[8.0] "The brits are just dominating wrestling at the moment and Will Ospreay is one of those guys who leads the brits! Just the best high flyer in the world, being only 23 is unbelievable!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Lardo Parcelwrote on 27.02.2017:[8.0] "Lots of raw talent. He's not even 25 and he's already competing for major championships all over the world. He's still improving. His psychology's getting better, his abilities are getting better, and his mic skills are developing rather quickly. I can't wait to see how good he can be in 2 years."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Chekerwrote on 14.02.2017:[9.0] "Will Ospreay is fucking incredible. Great wrestler, one of the two best high fliers on this green Earth (I'd say tied with Ricochet), carries himself pretty nicely, whether as a heel or face. He just gets wrestling. If he doesn't kill himself until then, he absolutely will be *THE* best wrestler in the world in a couple of years."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Rattlesnake3-16wrote on 14.02.2017:[9.0] "From backyard wrestling to the top of the Indy, Ospreay has already achieved in only four year a great career. 2016 was awesome with a five stars and the junior cup. I hope the best for him for the future"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheWrestlingFanwrote on 13.02.2017:[10.0] "Ospreay is no doubt a highly-touted potential. He's athletic and able to pull out some magical high risk moves everytime he competes. However, I really hope he will slow down his in ring style a little bit and do more selling, especially after some big moves that could legitimately damage someone, such as piledriver, superkick, or powerbomb.   Having watched his recent matches in New Japan, he has proven me wrong when he fought Shibata for RevPro British Heavyweight title. He shows he can radically change his in ring style into a more grounded style that is combined with strong style essence. He is definitely up there as the next legendary Jr. Heavyweight wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Southwestwrestlefanwrote on 30.01.2017:[8.0] "Hes good just not for me, if you like flips and highflying hes for you just not sold for me. sorry will! but i do like some of his matches."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DylanTBAwrote on 09.01.2017:[9.0] "Will Ospreay is incredible, there's no other way to put it, his high flying, exciting offence, his speed, his hard hitting moves such as his running knee to the head, he has it all- well, apart from his mic skills, never ever put Ospreay on the mic, that Essex accent kills my ears. He's had numerous incredible matches, such as with Ricochet for example, and continues to improve with every move, At 23, he has years and years left in him and I hope to see him win the IWGP championship at some point."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: hrikygwrote on 01.01.2017:[9.0] "Ospreay is one of the best high flyer in the business today. He is a great spot wrestler. People may say that he is a spot monkey or something like that. But they have to understand that doing these spots are not easy also and i feels that he has improved his mat wrestling skills also after going to NJPW. He shows real determination with great timing and skills. I gives him a 4. 5 outta 5 for his in-ring skills and a 4. 5 outta 5 for his selling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: LSEstrelawrote on 01.01.2017:[7.0] "Ospreay is raw talent, and the sky is the limit for him, but he still has so much to learn... The selling, the psychology, is absolutely... meh."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Luv all wrestlingwrote on 26.10.2016:[10.0] "His selling still is not the best, but he has had so many motyc, crazy unique moves, and has grown to become such a great performer, Will Ospreay deserves nothing less then a 10 for the quality of his work today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Rasslin Ruleswrote on 16.10.2016:[10.0] "Mit seinem spektakulärem und schnellen Stil macht er in der Wrestling-Welt und darüber hinaus auf sich aufmerksam. Er ist sehr charismatisch und sein Selling gefällt mir sehr gut. Das Argument des fehlenden Realismus finde ich lächerlich. Wrestling wird schon seit den 60ern nicht mehr "realistisch" dargestellt. Zudem ist Ospreay ja noch jung und ich glaube er wird als Revolutionär noch einer der ganz Großen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TrevPuroFanwrote on 11.10.2016:[0.0] "I'm sorry, but Will Ospreay just doesn't do it for me. I hate his spot after spot style, maybe I don't have a problem with these type of wrestlers, but the way he no sells every move or damage his opponent does to him, is annoying. For example, he just turns 360 and lands on his feet after a superkick from Marty Scurll. Ospreay is the true definition of a spot monkey."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DevilsSkywrote on 04.09.2016:[7.0] "A very talented man who's set to dominate the Cruiserweight seen,  Ospreay certainly has good athleticism and is a young star. I've never heard him on the mic before, so I won't leave my opinions there, only thing I'm worried about is his future in the business. If he wants to make it long term, he's going to have to improve on the more technical side of things and his selling, for a 30 year old or 40 year old would unlikely be able to do "flippy shit", especially if he got injured or something."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: The Chosen Onewrote on 14.07.2016:[2.0] "Sure Will Ospreay has had some great matches with the likes of AJ Styles and Zack Sabre Jr but he uses this style of wrestling that I find cool but then gets old and boring after a while and thats what most of Will's matches are like. Take his match with Ricochet for example they did a bunch of cool stuff but then it gets boring ten minutes in."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Obermackerwrote on 14.07.2016:[6.0] "Britischer Hüpfakrobat, der in seinem Bereich defintiv vorne dabei ist, aber Null Charisma und Micwork ziehen ihn runter und wenn man natürlich auf einen Bererich des Wrestling so beschränkt ist (noch dazu darauf besteht, daß man unbedingt seinen Stil gehen muß), dann bleibt er ein Nischenwrestler. Gegen Heavyweights stinkt er natürlich voll ab, sein Glück jedoch ist, daß das Cruiserweight-Wrestling in England und Japan eine starke Tradition hat. Mit andauernd riskanten Spots ist natürlich seine Dauer von Vorhinein in diesem Business begrenzt! An alle Smarks: Enjoy it while it lasts!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: mrjoshdudewrote on 14.07.2016:[9.0] "Probably the fastest rising star in a long time. Obviously the guy is crazy talented and cuts a fantastic promo which is all impressive as it is but even more so when you take his age into account. I doubt it'll be long before I move my rating to a 10, he's got plenty of years left in him and yet has done so much already in 2016 if he can keep things up the way he is he'll be on everybody's radar."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Mandzukic9wrote on 21.06.2016:[7.0] "Aufwertung von 5 auf 7 wird fällig: In seinem Stil macht ihm keiner was vor. Es ist unfassbar wie weit er für sein Alter ist. Spätestens das Match gegen Ricochet bei NJPW sollte auch den letzten Zweifler von seinen IR-Fähigkeiten überzeugen: Das war pure Werbung für unseren Sport!  Dennoch kann ich ihm keine acht Punkte geben. Dafür ist er als Gesamtpaket einfach noch nicht überzeugend. Insgesamt wirkt er doch relativ farblos und wenn er nicht wrestlen würde wie ein junger Gott, würde ihn auch keiner wiedererkennen. Dazu kommt teilweise grauenhaftes Selling. Vielleicht sollte er sich mal mit seinem Kollegen Marty Scurll zusammensetzen und ein bisschen was an sich verändern. Wenn er den WWE-Vertag haben möchte der ihm scheinbar winkt, muss er auch noch einiges an Eisen in die Luft stemmen.  Ich finde dass eine 9er oder 10er Wertung zu diesem Zeitpunkt noch unangebracht ist. Der Kerl ist 23 und wir können froh sein wieder mal ein so tolles junges Talent zu haben, welches jetzt schon unglaublich stark ist, sich aber noch gewaltig steigern kann und wird."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Zedwrote on 10.06.2016:[6.0] "Das ist also dieser Will Ospreay, den alle so hart bejubeln. Aber wieso? Am fehlenden Charisma und Micwork liegts ja wohl nicht. Die nicht vorhandene Ausstrahlung kann auch nicht diese Jubelstürme auslösen. Wieso also rechtfertigt sein Kampfstil eine solche Wertung? Wo hat der denn was besonderes an sich, was nur wenige andere haben? Guter In-Ring Worker, aber absolut nichts besonderes, und schon gar keine Rechtfertigung um ihn so hoch zu loben."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BrentDelivinewrote on 09.06.2016:[8.0] "Reading rating comments that values Ospreay under the 5 points mark make me cringe a little. Can't be proud a 23 year old man has gotten such popularity and wrestling on such a big stage from the sounds of it. INCREDIBLY talented, one of the best wrestlers WWE hasn't got their greasy fingers on yet. I dare say he will be the UK equivalent to Tanahashi by the time he's 29."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Awesome1wrote on 01.06.2016:[8.0] "if you are a fan of pro wrestling and you haven't seen Will Ospreay before than you need to see this guy. At only 23 he has become one of the best high flyers in the world today but still lacks story telling and mic skills. my only real concern is that Ospreays whole move set is a spot fest"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Zavacwrote on 09.05.2016:[9.0] "He is a phenomenal high flyer but need to improve about the story telling and selling. His match with marty scurll is one of the greatest of all time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Jobbswrote on 25.04.2016:[7.0] "Will Ospreay is a hit and miss type of guy for me. He is definitely recognized as one of the best high flyers in the world but his matches sometimes can be a bit much. I feel like he has very little understanding of psychology and storytelling in his matches but his matches w/Havoc, Scurll, Styles, & KUSHIDA have really showed that he can sell and have a story filled match but his matches w/Ricochet and Sabre are the types of matches that I'm not really into though. Overall though he's got a very promising career in my view."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: meatrockit83wrote on 17.04.2016:[10.0] "Will Ospreay is a special talent.  Every time out, he's better than he was previously.  He's not just a high-flyer, he's a great seller and a capable technician.  And he's not "sloppy" or "reckless" with his flying; always on point.  Virtually no one is as good as he is at his age and experience level; a prodigy, if you will.  Ospreay, Sabre, Jr. , and Scurll are the new wave of British wrestling.  He may not be long for NJPW and it'll just be a matter of time before he's wowing us in WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Brainbreakerwrote on 15.04.2016:[8.0] "Ospreay ist ein verdammt guter! Mit seinen gerade einmal 22 Jahren darf er bereits in Japan worken. Das schafften in dem Alter nur wenige Gaijins - und das soll was heißen. Sein Stil ist unterhaltsam, präzise und leidenschaftlich. Er macht den 450° so routiniert wie andere einen Missile Dropkick. Aber da liegt auch das Problem, was ich mit ihm habe (und was ein nicht unbeträchtlicher Teil der Community hier zu haben scheint): Ospreay lebt von seinen inflationär eingesetzten Spots. Damit kann er Storytelling und In-Ring-Psychologie überspielen, aber nicht ausmerzen. Es wäre wünschenswert, wenn er in den kommenden Jahren sein Standardrepertoire eingrenzen könnte, damit er das Besondere auch nur zu besonderen Anlässen auspacken muss. Auch aus gesundheitlichen Gründen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MaxWxWwrote on 14.03.2016:[10.0] "Überrangender Typ super sympathisch und dazu unglaublich unterhaltsame Matches. Ein äußerst spektakuläres Move-Set und sein Charisma machen ihn für mich zu einem der besten High Flyer Europas. Dazu ist er erst 22 Jahre alt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: craigohwrote on 17.02.2016:[10.0] "this young man is Gold, technically great in the ring with some of the finest High Flying wrestling in the World (and I mean that) "the aerial assassin" has had such awesome matches in the last 12 months against Mark Haskins, Mark Andrews, A. J. Styles and Jimmy Havoc (the latter being a 5 star classic of British wrestling, if able to definitely watch this match) really impressive on the mic for a young wrestler as well. needs to be signed by a major company because this kid has got everything to be a global star."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BlueDiamondwrote on 21.01.2016:[9.0] "Er ist im Moment einer der Topleute bei Rev Pro und im Eurowrestling. Gesegnet mit einer spektakulären Athletik, Charisma für die Fans und konstant guten In-Ring Leistungen 2015 und 2016. Wünsche ihm nur das Beste für die Zukunft, da er das Potential zum Topstar hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RainmakerF7wrote on 23.10.2015:[10.0] "Ospreay is an amazing high flyer. He's got great skills and he is oozing with charisma. His recent match with Kazuchika Okada was epic and put him on my map. Good luck Will, I hope you will do well and I hope we will once see You at the top.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: steviecwwrote on 16.06.2015:[9.0] "Stand-out of RPW and Progress, Ospreay couldn't be more on the up following a series of incredible matches with Matt Sydal, AJ Styles, Rocky Romero, Zack Sabre JR, Amazing Red, Jimmy Havoc, Marty Scurll and Noam Dar. Delighted he'll be at PWG's BOLA this year. Hope to see him appear for ICW someday soon too."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JamesHarrisonwrote on 15.03.2015:[10.0] "Will Ospreay is for sure the best Highflyer in Europe hands down. He always puts on a great performance anywhere he goes. He's got a great future and will make it to the bigtime no problem what so ever!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Matt4Wrestlingwrote on 02.01.2015:[8.0] "Top Charisma und Top-High Flyer, der nur noch nicht zu wissen scheint, wann es am besten ist für ihn die Bremse zu ziehen! Außer High Flying müsste er sich noch mehr Boden-Manöver aneignen, was besser für ihn wäre, falls er irgendwann nicht mehr fliegen kann!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Blue Meaniewrote on 08.12.2014:[7.0] "Sehr solider Highflyer, der in Oberhausen bei wXw sehr schnell over war. Vllt. teilweise etwas zu spotlastig, aber dafür zumeist sauber in seinen Moveausführungen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Boris The Menacewrote on 07.04.2014:[5.0] "Greg Burridge claims Ospreay is one of the best workers in the UK at the moment, I really don't see it. At the moment I see a decent high flyer that has a lot of work ahead of him to become one of the top workers in the UK."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Pinkd56wrote on 01.09.2024:[3.0] "Duran appeared to be a very good actor on LU, but has been shown up with the lower production values of MLW. I think it is very difficult for a non-wrestler to get much more than this score as a result."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: benny5bellyswrote on 20.02.2024:[6.0] "He was good in a promotion that was heavily edited and probably had multiple takes. Anyone who has the misfortune of watching MLW will know it is increasingly diminishing returns and there is really not much there outside of the unique atmosphere and presentation of Lucha Underground, he is not the only person to exposed once out of the production studio wrestling promotion. Very much lightening in a bottle that had little longevity."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: crs285wrote on 13.04.2023:[9.0] "Dario Cueto was the star of Lucha Underground. He played the role of evil businessman perfectly. He made the show with his charisma and abilities on the mic. He is also improving MLW"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: GriffinXwrote on 27.03.2023:[4.0] "So damn Corny. I get the guy is an actor and likely told to play it that way by the companies he is in but that doesn't make it good. He commits the biggest sin of a non wrestler he takes away from the actual in ring talent"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: WhatIsLooveeewrote on 09.02.2022:[10.0] "One of the best evil boss characters and one of the brightest characters in the history of Lucha underground. Initially, a little-known average actor who had never been previously associated with wrestling was able to become an incredibly convincing and charismatic fanatic owner of his own temple who obsessed with violence. This role just perfectly suited Luis and brought him fame. At the moment, he's probably the only (or at least definitely the main one) reason to watch MLW Azteca."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[8.0] "Such a shame that Lucha Underground never got a swan song. Cueto was a character that brought the whole show together. I know he's an actor, but I'm surprised he hasn't popped up elsewhere to reprise his role as a manager in a different company. I suppose El Rey owns the rights to the character, which might make it difficult, but if he ever has the possibility of wrestling those rights away, I'd love to see him as a manager of a Spanish speaking talent in the future."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: cpatchjwrote on 04.03.2018:[7.0] "He's a good actor and he plays his role well, but in the grand scheme of wrestling history, I think he's a solid 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Johnny Ampedwrote on 12.09.2017:[10.0] "ich schließe mich meinen Vorrednern an und gebe El Chefe die höchste Bewertung. Bei Luis Fernandez-Gil handelt es sich um einen Darsteller, der die Kunst des Schauspiels in vollen Zügen beherrscht. Er ist eins mit seinem Charakter und das merkt man durchgehend. Gil stellt seinen Charakter völlig authentisch und unterhaltsam dar und geht vollkommen darin auf. Ich als Zuschauer merke das und bin völlig begeistert. Mimik, Gestik, Micwork, Optik, einfach alles passt. El Chefe for the win!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: taabr2wrote on 11.09.2017:[10.0] "For his role on Lucha Undergroud Dario Cueto is quite good. Definitely a big reason why is the fact that he is an actual actor who know how to play a television character."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Hypocrisywrote on 16.04.2017:[7.0] "Dario Cueto gefällt als schrieriger El Chefe. Jedoch lassen einerseits die kurze Zeit im Business und andererseits das wenige an Spontanität eine bessere Bewertung noch nicht zu."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: ApexOfEvolutionwrote on 28.12.2016:[9.0] "Die Personifizierung von Lucha Underground. El Jefe trägt die Show wie kein anderer mit seinen großartigen schauspielerischen Fähigkeiten. Die 10 Punkte gebe ich nur deshalb nicht, da ich ihn vorher gerne mal irgendwann als klassischen Manager sehen möchte um zu sehen, wie er sich da schlägt. Aber das hat ja noch Zeit. Ich hoffe Dario Cueto bleibt LU noch lange erhalten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Cleanerwrote on 06.09.2016:[10.0] "Allein die Idee, keinen Wrestler sondern einen professionellen Schauspieler für eine solche Rolle zu verwenden ist klasse. Cueto hat sich über die zwei Staffeln als absolutes Aushängeschild von LU bewiesen, seine Promos sind jedes mal ganz große Klasse. Er füllt die GM-Rolle definitiv "sehr gut" aus"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: mrmctommywrote on 23.08.2016:[9.0] "One of the better personalities in televised rassling. It helps that he's a legitimate actor, but he also has a natural knack for presentation and showmanship."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Luv all wrestlingwrote on 13.08.2016:[10.0] "Dario Cueto gets a 10 for his great acting, every line he delivers is on point and gets you to feel what he wants you to feel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Mizzle Assault Antwrote on 03.08.2016:[10.0] "An actual professional actor who understands how to work a crowd on the mic... this dude is an incredible find. Honestly anyone who can't see the major value in this guy must be nuts. One of the best GM type characters ever but he's so much more. Fantastic character, fantastic performance."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Carrot Junkiewrote on 01.07.2016:[10.0] "Cueto is fantastic.  Great actor, great promo, and a surprisingly strong manager for Matanza.  One of the most interesting, developed, and three-dimensional characters in wrestling right now.  Hell, he's probably the best character to come from a non-performer since Paul Heyman."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: The Sick Lebowskiwrote on 14.05.2016:[10.0] "Natürlich, er ist professioneller Schauspieler, aber Wahnsinn, wie gut er die Rolle als gestörter, schmieriger "El Jefe" spielt. Die Segmente mit ihm sind absolute Weltklasse, und für einen Schauspieler lässt er sich vor den Kameras auch recht gut hin- und herschubsen. Ganz dicke zehn Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: killowenskillwrote on 04.05.2016:[6.0] "I sincerely do not understand why Dario such high ratings. The role he is not top class, playing some kind of mumble that gives game to anyone who threatens him. And the actor's performance is not at the highest level. I like Lucha Undeground, but work Cueto does not impress me."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: NastyYaffawrote on 19.04.2016:[7.0] ""El Jefe" is a solid on-screen boss of Lucha Underground. Not on the level of the best GM's/bosses in wrestling (Vince), but he is good."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Klabauterwrote on 16.03.2016:[10.0] "Die wohl beste Autoritätsfigur im Wrestling-Business. Das wird sehr, sehr interessant, wenn er seinen Platz im Tempel zurückerobert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: JuliTheCage87wrote on 15.01.2016:[9.0] "Also wenn der Typ nicht klasse ist... Anfänglich dachte ich, dass die Sprachprobleme bezüglich seines Englischs den Charakter schnell sterben lassen würde, allerdings ist er mit der Zeit zu einer festen Größe in Lucha Underground herangewachsen, was Mic-Performance und Story-Telling angeht. Er versteht es, innerhalb von wenigen Sätzen einen riesigen Inhalt widerzugeben, was natürlich auch an der Grandiosität von Lucha Underground liegt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: DanTalksRasslinwrote on 05.12.2015:[9.0] "Though Lucha Underground is his first role in wrestling, the man now known as Dario Cueto has been a film and TV actor for well over a decade and brings that experience to his role as a fantastic "evil boss" character.  Cueto has the mic skill and acting chops to pull off his role, and plays it just over-the-top enough to always be entertaining.  I look forward to seeing how his character develops."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Frompartsunknownwrote on 14.10.2015:[10.0] "Dario Cueto hat so viel Charisma, das reicht für eine ganze Kleinstadt. Hinzu kommen natürlich seine unglaublich coole Stimme und sein großartiges Schauspielerisches Talent. Er ist für mich die beste reine On-Air-Autoritätsperson an die ich mich erinnern kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: NewBreedwrote on 11.10.2015:[10.0] "Bei ihm weiß man gar nicht, ob er eine Rolle spielt oder einfach so ist. Genau so sollte es sein und es ist göttlich wie er Heat zieht. So sollte ein GM einer Wrestling-Promotion sein, auf seinen Vorteil und den der Promotion bedacht. Perfekt! Noch keinen Besseren gesehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: KimboSlicewrote on 19.08.2015:[10.0] "Überragend, großartig, göttlich... sucht euch etwas aus. Dario Cueto ist mit weitem Abstand eine der besten On-Air-Personen. Spielt seine Rolle mehr als authentisch und es macht einfach Spaß ihm zuzuhören und zuzusehen. Es stimmt einfach alles: das Aussehen, der Akzent, die Stimme, die Rolle... ganz großen Respekt an den Darsteller, welcher hinter der Rolle Cueto steckt. Einen Charakter so glaubhaft zu spielen als jemand, der in der Wrestling-Welt neu ist, ist verdammt stark. Einer meiner liebsten Charakter bei Lucha Underground."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Heel MaSchwrote on 07.07.2015:[10.0] "Einfach überragend in seiner Rolle, kann man nicht besser spielen. Dario Cueto ist mit Abstand DIE beste On-Air-Autoritätsperson sämtlicher Wrestlingligen 2015."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: MusSanwrote on 28.06.2015:[10.0] "Der Typ ist einfach genial. Der Paul Heymen von Lucha Underground. Spielt seine Rolle einfach ueberzeugend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Akeldemawrote on 14.05.2015:[10.0] "El Jefe ist im Moment einfach der genialeste Heel im Business. Sein Mic-Work ist exzellent, sein Auftreten einwandfrei. Der Moment wie er sich einfach einen Drink holt, obwohl El Parton gerade durch das Fenster in sein Büro geworfen wurde zeigt wie genial dieser Charakter ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: jchiofalwrote on 30.04.2015:[10.0] "After years of having the heel GM being tired, and repetitive, Dario Cue to breaks from the mold. Brilliant heel that you love to hate, with such a smooth attitude. Everything he says and does it deliberate, and to the point."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: sign squadwrote on 05.03.2015:[10.0] "Klar, der ist so gut in seiner Rolle, weil er gelernter Schauspieler ist. Aber verdammt, er ist SO fantastisch. Die perfekte Besetzung eines Heel-Besitzers, der mit dem dreckigsten Spanischakzent insbesondere im Zusammenspiel mit Konan mir extrem gut gefällt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Maryanwrote on 04.03.2015:[8.0] "I review him as I have seen him on Lucha Underground. The heel promoter that dislikes the babyfaces and pays the heels to do his dirty jobs for him... Pretty interesting but I hope Puma or Mundo will beat him off one day as of a storyline would go."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: HHH Pedigreewrote on 28.02.2015:[8.0] "Cueto is a realy good authority figure. He is powerfull, he speaks English and Spanish (He is from Spain, yeah). Alos, he isn't a Carter or a McMahon, he is an old School Authority Figure. He is the power above everything else, he isn't a wrestler and he isn't feuded with the wrestlers. That's cool."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: GonzoAppreciatorwrote on 12.11.2024:[10.0] "Easily my favorite deathmatch guy of all time. Kasai has absolutely no inhibitions when it comes to insane spots and has done everything short of dying in the ring to entertain his bloodthirsty audiences. Just take one look at his back to see how much he's given in the wrestling ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Trixsha Havoc 58wrote on 03.09.2024:[10.0] "Jun Kasai es mí luchador deathmatch favorito de todos los tiempos, el realmente tiene una excelente habilidad a la hora de luchar y su nivel de intensidad y tolerancia al dolor son realmente increíbles. Este tipo es realmente un loco que no le teme a nada y realmente admiro la pasión que tiene por la lucha libre, solo debes mirar su espalda para saber que este hombre es legítimo y peligroso, no cualquiera estaría dispuesto a continuar una lucha luego de haberte roto por completo el codo al punto de se te note el hueso. También es muy carismático y sabe cómo dar una excelente promo. Kasai es el GOAT del deathmatch y uno de los mejores luchadores japoneses de la historia."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: EyeSocketCrunchwrote on 18.07.2024:[10.0] "My #1. Other wrestlers may be better on the mat or better on the mic but none of them will ever hold a candle to the presence that Jun Kasai has. One of the strongest. and most dedicated performers still working today. He has somehow endured 25+ years of severe, body shattering torment, and is still able to bring it like a man half his age. If I see his name on a match, chances are I'll enjoy it. A world class look, world class charisma, and a world class tendency to bump like an absolute freak. He is one of the reasons I love professional wrestling. You might not agree with what he decides to put his body through, but I find it absolutely beautiful that he chooses to, and that he does it for us."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: butthead42069wrote on 17.07.2024:[10.0] "The single greatest deathmatch wrestler of all time in my book. Dude can work a great match without weapons but knows how to use those weapons to elevate the match to the next level. His psychology is next-level - particularly in the deathmatch space - knowing exactly what his role in each match is and how to use the format to push the storytelling to its absolute height without taking things unnecessarily far given his opponent. From car crash clusterfuck matches (Kasai/Matsunaga vs. Gage/Zandig) to next-level ultraviolence (Kasai vs. MASADA @ Pain in Limit 2012) to technical, psychological matches that push his opponent to the brink (his masterpiece of a match vs. El Desperado), he can do it all. Creative, psychological, technically sound, and charismatic enough to get any crowd chanting for him. He's everything deathmatch should be and more."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: AS173wrote on 30.05.2024:"A prime example of why death match wrestling deserves no place in the business. Jun Kasai's hideously scarred body is a testament not to his devotion and incredible dedication, as many here claim, rather it is nothing more than a testament to the sheer idiocy of the death match scene. That this masochistic idiot should be held up by his fans as a paragon of wrestling skill only demonstrates that the bar for excellence has fallen too low to measure. Jun Kasai is 49 at the time of writing this comment. If he lives to see 60, I will be surprised."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Suggarwrote on 14.02.2024:"On the Mount Rushmore of Death Match. Up there with the likes of Onita & Hayabusa in terms of innovation. He is a hardcore wrestler out of passion and not out of need, bloothristy bastard. One of my personal favorite active wrestlers."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: The Quick Manwrote on 13.01.2024:[9.0] "Potentially the GOAT of the Japanese deathmatch scene. Endlessly charismatic, absolutely insane, and always pops the more bloodthirsty fans of the wrestling world. His saga with El Desperado also did wonders in introducing him to new fans who don't keep up with the deathmatch scene."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: thedman0310wrote on 28.12.2023:[10.0] "This dude is an absolute fuckin lunatic. Not only is he willing to do some insane things to himself and others, but he's also a phenomenally talented wrestler. It's a damn shame we never got a singles match between him and Sick Nick Mondo."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Grapefruit Juicewrote on 13.12.2023:[10.0] "My personal favorite wrestler, exceptional deathmatch talent, technical abilities as well so he can go in a normal match. Jun Kasai the Crazy Monkey has given his body to the ring and will always be my GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Vanstylerwrote on 01.12.2023:[8.0] "Oh boy, I love Kasai. Always enjoy his matches and he's probably the craziest individual in the business. Not a perfect score because all his matches consists in dealing 20 finishers, breaking 200 light tubes and still kick out. Anyways, BIG RESPECT for this man and all he had done in his career."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Wrest lingaddictionwrote on 16.11.2023:[9.0] "This man is mental... The "Crazy Monkey" is deathmatch royalty being a multiple-time champion in companies like FREEDOMS which specialise in deathmatches and also being apart of NJPW's first deathmatch. what a career for someone who has LITERALLY left it all in the ring"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: tmxiconwrote on 04.05.2023:[7.0] "As high of a rating as I'm going to give anyone who is primarily a deathmatch wrestler. Kasai is a capable wrestler who I will give credit to devoting himself entirely to his specific vision of pro wrestling. That said, it's not close to being my flavor of pro wrestling and my rating reflects that."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: mano007wrote on 31.12.2022:[7.0] "Jun kasai is a legend of the industry who is someone who is past his prime. But his deathmatches were a sight to behold."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Supacat15wrote on 23.09.2022:[7.0] ""Jun Kasai is a terrific wrestler who amused us for many years, but I'm only awarding him a 7 because of recent performances.""
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: dnmtwrote on 17.08.2022:[10.0] "Jun Kasai is one of the all-time greats, period. He's more charismatic than virtually anyone else in the country. An amazing aura and presence, Kasai is something like what a crazed 8-year-old boy would make a pro-wrestler be if they had never seen pro-wrestling and had to imagine one. "Yeah, he's covered in scars and his name is Crazy...Monkey? And he wears pilot goggles and jumps off balconies onto people! " Just everything great about pro-wrestling wrapped up in one person. A pioneer for an entire sub-genre as well and someone who laid the foundations for death match wrestling as the true art form it now is. It's sad that he's been lumped in the death match bin by some who would refuse to even watch him, but they truly don't know what they are missing out on. Joke's on them. No death match, no life."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: CLUCKwrote on 27.06.2022:[7.0] ""Crazy Monkey" Jun Kasai one of the legend of hardecore deadmatch, i enjoy watching him wrestling in deathmatch alot"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: LIGERISMwrote on 21.06.2022:[10.0] "Jun Kasai is an enigma. No one has done more for deathmatch wrestling than Jun Kasai and no one has performed deathmatches for as long and at such a high level as Jun Kasai. Kasai has consistently produced classic deathmatches for 20 years. No one else can even come close to claiming that. Being a great deathmatch wrestler is one thing, but Kasai's in-ring talents have shown time and time again as he has been able to hold his own in every non-deathmatch promotion he's worked for. A legend by every definition of the word."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: yunuskayabrandwrote on 03.08.2021:[3.0] "actually i would congratulate this guy for his efforts, but this guy is just crazy he is so sadistic when i see him in the ring it makes me sick to my stomach"
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: XXDoubleHHXXwrote on 03.08.2021:[10.0] "He is the very definition of hybrid. His wrestling skill in both Deathmatches and normal singles matches, but what amazes me is how far he is willing to go to impress the audience putting his own body in the worst situation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: ExcitingProWrestlin3wrote on 16.06.2021:[6.0] "A deathmatch legend of unparalleled proportions, sure, but I usually rate off of current form, and the toll on his body has taken, most certainly, though I still see him as a satisfactory wrestler who can still rumble."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Khalid Acewrote on 31.12.2020:[7.0] "Jun Kasai is a great wrestler who entertained us all those years but I am only giving him a 7 because of what I've seen from him lately."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: medousewrote on 29.10.2020:[10.0] "My common sense tells me to rate him 8 or 9, but my heart is screaming 10! My final score is a tribute for all the insane shit this guy ever done in his wrestling career. The fact he still walks and talks is a real miracle. I've seen him doing things no man would survive. Crazy Monkey fears no man, no weapon, no height. Jun Kasai is a true deathmatch legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: laldilawrote on 15.06.2020:[10.0] "Initially had him at a 9, probably because there are deathmatch guys I personally like more, but that's really insane because he's an absolute legend in the field and one of the best to ever do it. I'm so glad he's back in action. There are few wrestlers with a better look; his back alone is absolute carnage and he somehow always bringing it despite taking the amount of punishment he's taken. A legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: RatingsMachinewrote on 25.10.2018:[8.0] "Jun Kasai is one of the better death match wrestlers out there, although he sometimes takes things a little too far."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Zeocrymerwrote on 15.08.2018:[10.0] "My favorite deathmatch wrestler (and one of my favorites in general) of all time. No other person in his field can truly capture the endearing charisma and absolute manic energy like Jun Kasai. The guy looks like he should be a touring bassist for Marilyn Manson in the early 2000's, his body is all scarred up, and even to this day he still does these insane deathmatches. Even beyond all the guy is just an excellent high flyer and an absolutely tremendous comedy wrestler. Kasai is the full package and that much more. A modern day legend, and the standard by which all deathmatch wrestlers should aspire to reach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: IsThisWrestlingwrote on 08.03.2018:[10.0] "The ultimate God of deathmatch wrestling, no matter what country you're talking about. Nobody will ever reach the caliber of the great "Crazy Monkey" Jun Kasai!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: The Chosen Onewrote on 27.06.2016:[10.0] "I have so much respect for this man. If you look at his torso and back it is just scared up like hell. He is definitely the best death match worker in Japan and maybe the whole world. He is actually a pretty solid technician and acrobatic as well. He has had some great matches and my favorite is with him and Masada."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: craigohwrote on 17.02.2016:[7.0] "Jun Kasai, probably the best Deathmatch worker Japan has ever seen, as put his body on the line so many times for the fans it's hard not to give him respect (although I'm not a huge Deathmatch fan, I can still respect the guys who can make the matches have good psychology and story) and Kasai can do that, the guy has an amazing understanding of ring Psychology and although his technical wrestling isn't his strongest element, he can still put a good match on (nothing exceptional - but still able to entertain the crowd). another key point is his look, the guy looks so grungy (in that Prodigy and mid nighties underground music culture look) and his scars, that it kinda gives him a unique and stand out image. his work is worth a watch especially for Hardcore and Deathmatch wrestling fans"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Zedwrote on 21.08.2015:[10.0] "Heiliger Harry ist das ein Verrückter Typ. Was ich von ihm gesehen habe bei Freedoms und CZW kann man kaum in Worte fassen. Einfah abartig krank, auf der anderen Seite dann doch wieder unterhaltsam, wenn ihm seine Gegner BBQ Spieße in die Stirn bohren und er unter Kasai Chants in die Kamera grinst. Einfach ein genialer Typ. Gibts eigentlich einen Grund wieso er nicht mehr für BJW antritt ?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: HongKongPhooeywrote on 06.08.2014:[10.0] "Jun Kasai is without a doubt the best deathmatch wrestler ever. His psychology really is top notch and when you watch a match of his you can't help but get sucked in. Even his non hardcore stuff from Zero-1 is really entertaining if you can find it. Kasai is really a secret gem in wrestling and will go down as ne of the most underrated workers of this generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Perko27wrote on 01.08.2014:[10.0] "Kasai is one of the greatest deathmatch wrestlers that has ever lived, his matches are so entertaining and he has given his body to the fans. It's sad that he hasn't and proberbly won't hold the BJW Deathmatch Title."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: herthajasperwrote on 06.01.2014:[9.0] "Der verrückteste Wrestler der Welt seine Matches sind einfach nur krank."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: itagorehorrorwrote on 24.12.2013:[9.0] "Jun Kasai is amazingly fun to watch. The energy he brings to matches, as well as involving the audience, is amazing and his willingness to take insane bumps is awesome. One of the stars of BJW that will always provide an awesome show. The Japanese crowd loves him and they have every reason to."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Sick Boywrote on 03.04.2013:[10.0] "Für mich als DM-Fan zurzeit das Nonplusultra in diesem Bereich. Wie er es schafft das Publikum mitzuziehen ist der Wahnsinn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Gredzillawrote on 17.03.2013:[10.0] "Mein Lieblingswrestler. Ehrlich. Als ich Big Japan das erste mal sah, sah ich den Typen da. Und normaler Weiße wenn ich Deathmatchwrestler sehe denke ich ja viele Narben aber als ich den sah, dachte ich mir "Was zur Hölle muss man anstellen um so auszusehen! " Als ich dann das Match, und danach viele andere sah, wars um mich geschehen. Das istn typischer Wrestler aus der japanischen Deathmatchszene wie ich sie mir vorgestellt habe. Ich will nicht wissen wo er seine Zähne verloren hat, oder wobei. Hab gehört er soll sich bei nem Match auch nen offenen Bruch geholt haben. (hab das Match aber nie gesehen und DAS will ich auch ned sehen) aber der Typ is einfach Hardcore in Person. Jemand der sich in ein Rassierklingenbrett donnert und dann mit Kenzans zugepflastert wird und dann auch noch mit ner Fliegerbrille blutüberströhmt da steht und lacht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Obermackerwrote on 23.01.2013:[7.0] "Bin zwar normalerweise kein Fan von Trash(Hardcore)Wrestling, aber dieser "Affe" ist schon unterhaltsam. Wie lange er den Stil noch gehen kann, is ne andere Frage!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Valerionwrote on 10.10.2012:[9.0] "Sieht aus wie aus einem Horrorfilm entsprungen, liefert absolut teuflische Matches und noch teuflischere Spots die sonst so gut wie keiner überleben kann ab. dafür 8. 0 Punkte. +1 für die Fliegerbrille!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: affenmannwrote on 06.02.2012:[9.0] "Großartiger und verrückter Deathmatch-Wrestler mit einzigartiger Aura, der auch durchaus Fähigkeiten in normalen Kämpfen zeigen kann."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: STRIGGAwrote on 24.01.2012:[10.0] "Jin Kasai hat so viele Facetten. In erster Linie ist er natürlich Death Match Wrestler, doch ist er nicht nur auf diese Sparte festlgelegt, sondern kann auch durch Technik, Spots und Comedy-Elemente überzeugen. Das Gesamtpakat Kasai ist für eine Promotion einfach unglaublich vielseitig einsetzbar. CRAZY MONKEY~!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Matt4Wrestlingwrote on 22.01.2012:[10.0] "Crazy? Absolut! Er hat in seinem Hardcore-Style soviel Technick, dass man genau hinsehem muss um nix zu versäumen, auch wenn er manchmal dann nur in Unterhose wrestlet oder seinem Gegner zum Abschied ein Kuss mit auf dem Weg gibt! Ein totales Packet, wechsle bloss nicht zum normalen Wrestling!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Rated R Champwrote on 01.04.2011:[8.0] "Der Kerl ist wohl absolut einzigartig. Er hat Ausstrahlung und ist ein grundsolider Wrestler, aber dazu hat er einen absoluten Knall, der ihn wohl früher oder später in den Rollstuhl befördern wird. Aber auch wenn ich prinzipiell kein Freund von Death Matches bin, ist Kasai einfach beeindruckend, er versteht es, zwischen der ganzen Brutalität immer auch eine Geschichte im Ring (oder halt daneben) zu erzählen. Zudem sind seine Matches wirklich eine absolute Attraktion."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Kumbaowrote on 15.10.2010:[10.0] "Kann mich den ganzen Lobhuddeleien nur anschließen. Macht selbst jenseits der Deathmatches eine großartige Figur, aber gerade in dieser Matchart spielt er all seine Trümpfe aus. Hart, kreativ, witzig, talentiert, großartige Ausstrahlung... die Liste ließe sich ewig fortsetzen. Einer meiner absoluten Lieblingswrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Jay Burgerwrote on 17.08.2010:[10.0] "Kasai ist neben Ito und Miyamoto aktuell der einzige Death Match Wrestler, dem ich ohne Probleme 10 Punkte geben würde. Zwar kann er kein Match so gut führen wie Ito und kann nicht durch so unglaublich viele Spots und Moves welche perfekt sitzen wie Miyamoto zeigen, aber Kasai hat in diesem Bereich eine art Aura wie sonst keiner, seine Matches sind intensiv, er schreckt vor keinem Move zurück, nichtmal von 7 Meter Sprüngen ohen Schutzmatte, und hat unglaubliche Schmerzresistenz. Kasai ist für mich das Sinnbild aller Death Match Wrestler und er schafft es, das Matches nie langweilig werden und das (meistens) ohne irgendwelche unnötigen Risiken einzugehen. Auch er versteht es, Matches langsam anzugehen und er haut in der Schlussfase alles raus, was er hat um das Publikum zu begeistern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: RickRollwrote on 18.04.2010:[9.0] "Harter und zugleich auch verrücker Hund der nicht lighttubes braucht um im Match zu überzeugen, sondern er kann auch ohne irgendein einsatz von Waffen gute Matches zaubern. Kann den technischen und High Flying stil gehen, aber natürlich auch den Hardcore Stil. Einer der besten Deathmatch Worker und schon jetzt eine lebende (Hardcore) Legende."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: T-Waynewrote on 31.03.2010:[9.0] "Crazy Monkey.... yep, dieser Name trifft voll und ganz auf ihn zu, jedoch im positiven Sinne. Ist mein persönlicher Lieblings-Deathmatchworker, weil er (was viele andere Deathmatchwrestler nicht besitzen) ein gutres Moverepertoire hat und zu seinen Hardcore-Skills auch noch gute Technik-Skills hat. Und das, was er seinem Körper antut, um andere Leute zu unterhalten ist in der Tat "crazy"."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Eddiewrote on 16.03.2010:[9.0] "Das geile an Kasai ist, dass er nicht nur mit Barbed Wire und Lighttubes um sich werfen kann und damit den Gegnern weh tun kann, sondern er kann auch wirklich wrestlen, was ihm kaum jemand zutraut. Dafür gibt es von mir 9 Punkte, da ich sowohl auf Death Matches stehe, als natürlich auch auf technical Matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: micha92wrote on 14.02.2010:[10.0] "Total krank was er im Ring anstellt und zudem ist er noch ein genauso guter Techniker wie Deathmatchwrestler, weshalb er nur 10 Punkte kriegen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Aquifelwrote on 14.12.2009:[9.0] "Verrückter Hund der Jun Kasai. Sieht wild aus, hat hohen Wiedererkennungswert und als Death Match Wrestler rockt er einfach. Rein wrestlerisch kann er nicht mit Ito mithalten, ist aber trotzdem auch grundsolide, wenn nicht besser, was ihn in den Death matches noch besser macht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: kingbogwrote on 22.11.2009:[9.0] "völlig wahnsinniger death matcher. irrwitzige bumps und ein sehr cooles gimmick. der pearl harbor splash ist einfach legendär"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Hypocrisywrote on 31.05.2009:[8.0] "Wahnsinnig innovativer Death Match Worker mit dem Hang zum Fliegen aus großen Höhen; ich glaube er nennt das Pearl Harbor Splash."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Mick Funkwrote on 12.05.2009:[8.0] "Einer meiner Lieblingsworker im Bereich Deathmatches. Großer Wiedererkennungswert."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Kingpin39wrote on 24.10.2008:[10.0] "Mit Abstand der krankeste Deathmatch Wrestler denn ich je gesehen habe. "Long live Kasai""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Baby Duckwrote on 11.06.2008:[9.0] "Ich hab bisher nur wenig von ihm gesehen, aber was ich gesehen habe war krank. Wahrscheinlich einer der besten und härtesten Hardcore Wrestler die es derzeit gibt Ein Typ bei dem man bei jeder Aktion glaubt das wars jetzt"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Baszdmegwrote on 20.04.2008:[10.0] "Wohlt nicht mehr ganz beisammen im Kopf, aber das zeichnet ihn wohl aus. Wie ich finde einer der besten japanischen DMler überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Masadawrote on 08.03.2008:[10.0] "GROßARTIG! Vereint alles , was ich bei nem Wrestler haben will."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Moshpit-Hooliganwrote on 15.11.2007:[10.0] "Der Deathmatch-Worker aus Japan. Eigentlich braucht man nur ein Wort zusagen... SICK! Und das sollte ein Deathmatch ja wohl sein. In seiner Art zu Wrestlen hat er ganz klar ein "Sehr gut" verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: mdbnasewrote on 25.10.2007:[8.0] "Sehr unterhaltsam und auch technisch ok! ... und auch ein schöner Rücken kann entzücken!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: shannonmoorewrote on 07.08.2007:[4.0] "Irre....... bitte sofort auf die Battle Royal Insel."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Moonbloodwrote on 02.07.2007:[10.0] "PEARL HARBOR SPLASH~! Kasai ist 'ne verdammt coole Sau und macht jedes Match allein durch seine Anwesenheit sehenswert. Seine Technik geht absolut in Ordnung und in Death Matches ist ihm sowieso nur schwer was vorzumachen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RratedShawnterwrote on 10.02.2025:[10.0] "Optisch 10/10 (moneypieces waren crazy) Outfit auch crazy (vorallem die hot topic Mäntel) In-Ring abillity war auch 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: dhruboezitwrote on 26.01.2025:[10.0] "I liked Edge. The Edge that was in the Brood, wrestled against the Dudleys and the Hardys, had an affair with Lita, cashed in on Cena, and was in a tag-team with Randy. That's the Edge that everyone likes in fact. He's a legend, no doubt. 12 world world champion (yet most of his title reigns are forgettable, short-lived and almost like ball-play). But he was a great in-ring worker and a dependable main eventer for WWE during his prime. He's a very versatile wrestler in my opinion, considering his tag-title run. Buuuuut now he's washed. He's old, aged badly, has bulging bug eyes and can't cut a good promo anymore. He's ruining his legacy by wrestling these nonsensical matches in bingo halls in AEW. Not to mention, "Cope" is a horrific name. I'll still give him a 10 because he's always going to be the Rated R Superstar for me, from the WWE, and from the Ruthless Aggression era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CrandonMartin2001wrote on 25.01.2025:[10.0] "Edge has had an incredible ability to evolve and excel at every stage of his career. As one-half of an iconic tag team with Christian, he helped create some of the funniest and most charismatic moments on the mic, while delivering countless classic matches that defined an era. Transitioning into a singles star, Edge became the ultimate foil to John Cena--a "Green Goblin"-like nemesis who thrived in making every rivalry feel personal and unforgettable. His emotional return to WWE in 2020, after a near-decade-long retirement, remains one of the greatest comebacks in wrestling history. Even in AEW, despite some mishandling, Edge is still a spectacle to watch because of who he is--a true legend whose presence alone commands attention and respect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Lukeathonwrote on 13.01.2025:[10.0] "So... Cope? I cant really knock his career, to me he's had brilliant characters, brilliant runs, brilliant in-ring work, has a love for the business, the only thing which I'll critique him for is for him having quite rubbish ideas, from his vision of the Judgement Day to... Cope, I wouldn't trust him running a show. From the amazing rivalry with Cena where he cashed in Money In The Bank, to his destiny feud with Christian, to having the best ever WWE Saudi Arabia match with Seth Rollins to his electric returns in 2010, 2020 and 2023, to a whole heap of other things, Adam Copeland is an all-timer wrestler. If you don't agree...then cope with it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Nudlewrote on 12.01.2025:[6.0] "Barring the worst name change in wrestling history, he's good, but he's actively hurting his legacy with his current run. I genuinely believe that he was never THE guy, just the guy that works with THE guy. He's a great heel, but a boring babyface. He's also clearly a massive backstage politicker. Bro barely puts anyone over, when he obviously should. He beat the entire House of Black while injured, granted the injury wasn't part of the story but seriously way to bury their entire stable."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MEDaminewrote on 07.01.2025:[10.0] "I really like Edge Copeland, AEW run aside, he's one of the greatest in the century, he's really good in the ring with an amazing match catalogue, really great in the mic, and incredibly charismatic, imo he's in top 5 the best heels in WWE history"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ozwernwrote on 07.01.2025:[7.0] "Recent name change is ridicilolus but aside that obviously had a great career. But this AEW run just isn't working for me. Instead of being in the main event, center of attention, he should be putting over young talent. Just not really into what they've been doing with him. Hopefully it'll improve."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: tmxiconwrote on 18.12.2024:[7.0] "Edge/Adam Copeland has never really been an exceptional worker, but he usually holds his own. He's not the kind of guy who elevates lesser workers, but when he was surrounded by guys who stood above him in that regard, he has proven himself as a guy who can rise to the occasion."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Conquistador37wrote on 11.12.2024:[10.0] "I've been rewatching his career and so far we are into Summerslam 2001. Edge was one of the top reasons to watch WWF from the time he arrived 'til this period. And I know he's going to keep doing great things. I'm loving reliving this. Looking forward to the next few years where he keeps shinning and growing in a myriad of ways. I haven't seen anything after his return mind you, so that entire era has been discounted. EDIT: We are now at the end of 2004/beginning of 2005 and being sidelined with so many injuries has only IMPROVED his overall because now, his mic skills are unparalleled and his in ring story telling is second to none. This is where his career truly took off and it wasn't stalling to begin with. One of the greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: wrestlingswiftiewrote on 04.12.2024:[6.0] "I find him overrated, but he's not all that bad. When given good circumstances or a great partner, he can put on a compelling program. (See his recent feud with Christian or the well-known cheating scandal against Matt Hardy.) But by himself... He's mediocre."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AceHagannwrote on 26.11.2024:[8.0] "Adam's AEW run has been nothing but disappointing. Forgettable for the most part. And while not as bad, his last WWE run wasn't much of a highlight. Edge's run in his earlier years is an entirely different matter. One of the best heels at the time. An awesome "love to hate" kind of wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Nolan Greenwrote on 21.11.2024:[9.0] "One of the best heels in WWE history and involved in one of the best feuds in WWE as well with John Cena. His Ultimate Opportunist gimmick was great and delivered the best spear in the business, even better than Goldberg. However, I think Christian was the better of that team and Edge as a babyface when he came back in 2004 wasn't great. It took a while for Edge to become a good worker, but when he did, he could walk and talk and return from injury after injury until he broke his legs doing something stupid. What the fuck. Christian for the win."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DanParkeswrote on 21.11.2024:[6.0] "He was great in his early years, then he became a legend during his Rated R superstar and Ultimate Opportunist years... sadly his career was cut short but he came back... and it was great at first, but then he had to go over everyone, and maybe it would have made sense back in his prime and you can give some slack to The Miz and Seth Rollin feud because they can bounce back. He should not have gone over Judgement Day right after he was kicked out especially Finn Balor and especially on his way out of WWE. I know a lot of people love him but the way he came into AEW, and he just had to go over Christian who has been working his butt off on possibly the greatest run of his career for Edge/Copeland to just come in and take it away, just leaves a bad taste in my mouth. I would have probably given a 7-8 if we didn't take his last run in WWE and his AEW run into account."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BananaOilwrote on 23.10.2024:[7.0] "The biggest (non-injury related) tragedy of Edge's career is that he's so good at playing a heel that everyone started to love him and now he's been stuck as a babyface for the last 12 years despite honestly not being a very good one. Edge's original run as the Rated R Superstar was generational. From about 2005 to 2012 he was absolutely untouchable and the most entertaining guy on any given show. He could have a good match with anyone, good promo with anyone, and had consistently good booking that kept his matches exciting cause you didn't know how he was gonna cheat next. Unfortunately, since turning face back then, and now post-return, he's become very bland. I would have loved him to be a wily babyface that still cheats on occasion but does it to heels instead ala Eddie Guerrero; but instead he just says grit a lot and is just kind of a cool dad character. Which is fine, I'm still happy he got to come back and his matches aren't bad, but it's such a stark dropoff compared to his glorydays that I have to average it out to a 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TripleCrownwrote on 14.10.2024:[8.0] "One of the very few saving graces of WWE during the mid to late 2000s. Edge was a fantastic wrestler, who, with the right opponent, could draw a lot of money. He is perfect as a heel, especially during the timeframe I mentioned. The minute he had to retire and whatnot, it's quite obvious the fans would never look at him the same (i.e a huge heel) and would love him as a babyface. Had a lot of memorable matches, moments, the guy had done it all. Mic work is excellent, not on the same level as The Rock or Steve Austin, but definitely up there for sure. Wasn't a big fan of his early 2000s push, again, that time he was just a natural heel and trying to make him a babyface was never going to work. The TLC spot from WMX7 will be remembered forever, absolutely iconic moment. Can't really comment on his recent WWE/AEW runs as, to be frank, I dip in and out of the product so I can't really rate him fairly on that. All in all, he was a great wrestler, great kryptonite to John Cena."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JackBurtonsTruckwrote on 14.10.2024:[9.0] "Copeland was the highlight of WWE for me as a teen. From the Brood to his first retirement, I was there for all things Edge. His match with the Hardys and the Dudleys is in my top 5 all time without a doubt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jsbortswrote on 11.09.2024:[9.0] "Adam Copeland/Edge is a really good TV character and has had some really fun matches throughout his career in a variety of different roles. He doesn't have the top level catalogue that others have mostly due to working in the same company for such a long time; however, he reached the top of that company in many ways, was a many time earner of their top prize, has had the best match at multiple of that company's biggest shows and main evented them as well. Shame his career was shortened by injury, and shame that his AEW run, which was pretty good, came at the other side of 50 and with another injury added to it. Slowly also became one of the best promo guys and has a really great eye for putting stories together."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Fabibiwrote on 31.08.2024:[7.0] "Edge is a great sports entertainer, he has charisma and good mic skills. He is decent in ring but paired with the right opponents he had memorable matches. He won important matches like the Royal Rumble and Money In The Bank and he had legendary moments (TLCs, live sex celebration, first MITB cash in, return at Rumbe 2020, ect...). Edge isn't the best in the ring but he made the most out of his opportunities to build a legendary career."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Chosen Onewrote on 28.08.2024:[8.0] "Edge... Er war unterhaltsam mit und gegen Christian, aber hat mich um die erste Brand Extension herum nicht mehr begeistert und seinen Höhepunkt in der Ruthless Aggression Era gehabt, der ich leider nichts abgewinnen kann. Dennoch, als WWE Champion und als "Opportunist" war er ziemlich cool. Sein Moveset war ganz nett. Am meisten mochte ich ihn aber für seinen Look, seinen Entrance, seinen Charakter, seine Mic Skills und die Storylines, in der er verwickelt war. Er hatte irgendwie etwas an sich in seiner Blütezeit. Auch durch seinen Kleidungsstil fiel er mir auf."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ceasara63wrote on 04.08.2024:[9.0] "Edge, aka Adam Copeland, is one of my personal favorite professional wrestlers ever. This man has so much talent, and is so versatile. He can be a great face, and an even greater heel. He's more than capable of having great matches, even nowadays as he is in his early 50's. He's a great main eventer, mid-card guy, tag team wrestler. His promo abilities have gotten better the further into his career he's gone; he can be serious, he can do comedy. I'm not sure there's a performer in professional wrestling history as well-rounded as he is. Countless classic matches, countless classic rivalries, countless classic championships runs and not to mention being one of the pioneers of the Tables, Ladders and Chairs match; Copeland has carved out such an amazing legacy for himself that he continues to build upon. After it seemed for a long time that he wouldn't be able to finish his career on his own terms, I'm really happy that he's been able to come back and give us a brilliant second run, both in WWE and AEW. He's been doing some of the best work of his career against guys like Rollins, a proper rivalry with Christian Cage after all this time, etc., I can't wait for him to come back."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "Edge was the first wrestler I ever remember watching when I was younger. For that, I will always hold him in such a high regard. While I personally do not like that his career is, more than likely, going to end in another company outside of WWE, I cannot deny for a second that this man is so goddamn good at what it is that he does, and seemingly only gets better as he ages. He was gone for nearly 10 years and came back and got better. I don't know how he does it."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: 2pt0EcoBoostFusionwrote on 01.08.2024:[9.0] "Man, what a career this man has had. Adam Copeland may have not been the biggest draw for his generation, but he sure was an inspiration for many wrestlers and wrestling fans, especially since he's returned back in 2020. His accolades list is incredible and he has proven to be a formidable face and heel when he plays either of those characters. Adam's feuds with Randy Orton and John Cena were fun to watch as well. In-ring, Adam Copeland was very solid and he still has it in the ring despite being away from the ring for many years and having spinal stenosis which is a brutal injury for any wrestler. Since signing with AEW, he's been great and has had good programs with everyone he has worked with, the injury he received at Double or Nothing was unfortunate and it's a bummer he's going to miss Wembley this August. All in all, Very happy Adam is still around the industry, wrestling needs more people like Adam Copeland."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JPowers10wrote on 31.07.2024:[9.0] "-One of the best heels in WWE history. Had some solid moments as a face as well. One of the most iconic moments in Royal Rumble history with his return. Cool character and had a specific look that made him memorable. Great promo. He was a part of one of the greatest tag teams in WWF history. He isn't a 10 because I haven't been a fan of his work in the past 2ish years."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Johanwrote on 26.07.2024:[5.0] "I don't see it, I don't think I ever saw it, WWE was ruthlessly behind him in a time where internet was primitive, fans hadn't changed much and they had no competition, his wrestling is good and cool but nothing impressive, his offense never looked good, his mic work is good too but again, there is nothing amazing, and now from 2022 forward I'm gonna rate him just a 5...because he is washed in the ring, isn't the cool wrestler he once was, his promos have become bland and generic and he has been going over everyone bar fucking Roman Reigns who still needed help to win, if it was prime Edge I would've considered 8, but washed Edge is a 5."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: woolyshamblerwrote on 21.07.2024:[6.0] "edge was my childhood favorite wrestler, but actually having gone back to watch him in 2005/06 really soured my good memories. edge was an entrance and a look, woefully cringey on the mic and unconvincing between the bells. edge had no business being pushed over christian, but being in the WWF and being tall and sexy, he was pushed anyway. his only watchable stuff has been in AEW, he's actually been really fun and showing fresh fire that he never showed elsewhere. i would score him 5 but will go to 6 based on sex appeal alone"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JBruce1018wrote on 11.07.2024:[7.0] "Edge/Adam Copeland is a fine performer, but never should have been the breakout star of the Edge and Christian tag team. His slight frame, poor finisher and goofy facial expressions in match would have been done during the Ruthless Aggression era, but his affair with Lita and ability to carry that over into his new heel persona saved his career, IMO. Honestly, one of the weakest main event faces ever and one of the best scumbag, main event heels ever. For someone that I never really GOT on why they were cheered, I thought that he portrayed the perfect counter to what John Cena was and while Randy Orton is Cenas greatest in-ring rival, Edge was by far Cenas perfect foil as far as character work goes."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: darkflame4527wrote on 29.06.2024:[10.0] "Adam Copeland/Edge has been improving in different areas since his return in 2020. His in-ring work has overall been more believable. now us witnessing a spear that doesn't look like he's cuddling his opponent, more like throwing them to the ground. His promos work has been the best in the business for years and his legacy as both a singles performer and as a tag team specialist gives him a hall of fame career in both routes. 31 total titles in the WWE with him getting two titles in a year in AEW is UNDENIABLE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: twinkertonwrote on 24.06.2024:[7.0] "Edge is a pretty good wrestler. He's well past his prime at this point and probably shouldn't be wrestling with his injury history, but he's still capable of putting on an OK match. His character work and promo ability have carried him to a very good career, even if his in-ring work was deciding average."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Zak22wrote on 16.06.2024:[8.0] "A Edge vs Cena DVD got me into wrestling as a kid, so Edge has a lot of nostalgia for me. Edge was a talented wrestler with good charisma, he was excellent in tag wrestling and made the step up to world champion well. Only criticism would be that some of his rivalries lacked great in-ring work. Maybe he was overshadowed by Orton and Cena."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: bbdtmemewrote on 03.06.2024:"He's really one of the most dedicated and passionated performers ever. His heel persona is one of the most credible and well interpreted in WWE history: he had the talent to bring an actual immoral event in his life and use it as a launching pad for his solo run since the split with Christian. In fact, he was an innovator in the Tag Team Division together with Christian especially through TLC matches and dangerous matches like that and then again with Randy Orton (Rated RKO was an awesome heel couple). In his solo run, he was also one of the Smackdown! 6 that in the early 2000s helped create an amazing show week after week under the booking of Paul Heyman. His feuds with John Cena, Undertaker and Foley are today some of the most memorable ones in WWE. Despite his first retirement happened at an early age, mainly caused by the heavy bumps he took in the "extreme years", he managed to come back in WWE in 2020 where he was more of a locker room leader with some good storylines but during his AEW stint he's giving to the fans everything he has as a TNT Champion in his 50s with amazing spots and really good promos thanks to the creativity freedom he's been given by Khan. So, I think he's one of the most talented talkers in the business for suuuure and an overall good athlete and narrator in the ring, especially in "alternative" stipulations."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rassle Fanwrote on 05.05.2024:[9.0] "One of the greatest wrestlers and entertainers ever. His career path and trajectory are top shelf. I was very surprised he left WWE but I also realized he's at the gravy part of his career. He's still clearly motivated but everything he does now is just the sweet topping and it's great to see him relaxed and having fun."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MasteroftheMatchGuide99wrote on 04.05.2024:[10.0] "Whoever saw this guy coming? When he saw a Mania the first time, he was just a moderately handsome teen with a kick-ass mullet in Toronto. Nowadays, he's recognized as one of the GOATs. He's in a rare class of people who have defeated John Cena, main-evented a Wrestlemania, beat the Undertaker, accomplished the Grand Slam of titles and the Grand Slam of stips (at least 1 Elimination Chamber, King of the Ring, MITB, and TLC Match), and held the "Big Gold." In fact, whether as Edge or Adam Copeland, this guy is really fun and awesome to watch. In WWE, he said "YOU MUST HATE ME! " and boy did we. Then in AEW "Love me" and boy do we. This man has played the system like a fiddle and is still giving 110% even though his body says "You can't" because his ego says "Yes, he can! " Edge deserves all his accolades because he made sure to be a believable guy. I respect him highly and give him deserved praise for his work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MarkMcMarkington2wrote on 02.05.2024:[7.0] "Ive always preferred his less successful tag team partner known as Christian. Edge had a role similar to Triple H, he was the guy that worked with THE guy. But hes not as good at that role as HHH was. I dont think anyone has a more over inflated kayfabe resume than Edge too. He won 11 world titles in WWE. I honestly dont know why."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SoaKaswrote on 02.05.2024:[7.0] "Sadly I'm too young to have experienced him in his prime. I only really know the Edge past his return and he doesn't do anything for me. 7 points out of clips and matches from once upon a time but he really doesn't move me in a single way. The fact that he is working on THIS level while being 50 (! ) years old is incredibly impressive, however."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: mryne9wrote on 21.04.2024:"Not quite the elite of the elite, but certainly one of the most memorable performers in history. Tag team royalty who was able to separate himself from the tag-team division and establish himself as a Hall of Fame level singles competitor as well."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bean1985wrote on 07.04.2024:"Hes one of the greatest of the last 2 decades but compared to the likes of HBK, Angle, Hitman etc, he is in a lower tier.. Liked him more as a heel, but he was not 97 HBK or villain Angle of early 00s"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: tosiekwrote on 02.04.2024:[10.0] "Edge is one of the greatest talent of the era. His work through 2000s is just his best all the stuff and always delivered with a great match. If he didn't retire he would become the goat. But since his return he's doing some fine stuff in aew before he retires"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BruceMarcos524wrote on 26.03.2024:[8.0] "He is one of the best villainous WWE superstars in history due to his edginess, no pun intended, and his savage remark against his opponents. He rose up to the ranks from being a mid-card guy to becoming one of the marquee draws in sports entertainment. His time as a tag team with Christian was great, one of the three tag team pillars during the Attitude Era. Unfortunately, his career went lay low after their split. He was struggling at the cooldown years, but it is until 2006 when Edge became one of the most important guys in WWE of the late 2000s. His rivalry with John Cena was his best feud of his career as he truly reached the magnitude of success during their feud. Edge found a way to finally reach the main event status that he was longing for 8 years in the company without some certain connection from the higher-ups. Unfortunately, most of his world title reigns are short, I think not even a single title reign even reached 100+ days. Also, his finishing move is one of the least believable and the weakest Spears in the history, due to the nature of the move is only effective for big powerhouse wrestlers. Although his Con-chair-to is one of the most brutally devastating spots to ever perform. Edge had one of the most remarkable returns last 2020, believing that he may never wrestle again. Although his second WWE run is very lacklustre and most of his matches are way too dragged down possibly due to being extra careful while performing in a match due to his recent injury. His run in AEW so far is good but I don't want to further review on it since he only got signed a few months ago. One of the hardest working performers in WWE and one of the most decorated WWE superstars in its own history."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MarshalAtlanticwrote on 22.03.2024:[7.0] "He no doubt carries a lot of history, prestige, and weight to his name, but the core of his worth was never all there for me. Never came across as a top guy or especial talent. An all around decent wrestler, and played his spotlight company role perfectly, but not outstanding to me in any way, except perhaps in that all-rounded serviceability."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ultravioletshiroiwrote on 15.03.2024:[9.0] "Edge was a great wrestlers who always put on good to great matches in the WWE and he's still around today and still in great shape. He had the charisma, the skills and the entrance to be a star. He was also really good as a tag team partner."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: houseofcopelandwrote on 09.03.2024:[10.0] "My GOAT. Edge was the first wrestler I ever saw back in 2008 during the Road to Summerslam. His chilling promo to Vickie Guerrero was entrancing and since then, I have firmly been an Edgehead. After his unfortunate retirement in 2011 post Wrestlemania 27 (the less said about that the better), I went back to watch his entire career and fell in love. Once he returned in 2020, it was like he never lost a step. Now in AEW and still kicking ass, I truly hope he gets at least one more proper title run (preferably as an unhinged heel in the House of Black but we ain't talking about that right now) and gets to call it a career on his terms."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Dirty Diegowrote on 06.03.2024:[9.0] "Edge still revalent to a degree this present day has pretty much done it all by 2011 when I thought he retired he already reached legendary status, his early years tagging with Christian were magic in my top 5 tag teams of all time not just because of their classic matches their standout ones being the TLC matches with the hardyz and Dudleys but their humerious promos and comedy segment that made them must see characters to watch in 2000 , the stuff they did with Kurt angle and mick Finley was hilarious , He broke out as a single star a year later and you could see then he was a future top star, he got injured then he came back and became the rated r superstar, , he had a great feud with John cena that tlc at unforgiving 2006 sticks out as well as with the undertaker main eventing wrestlemania 24, Edge was a top single star from 2006-2011 as deserved, he came back in 2020 and had some great matches with Seth Rollins and Randy orten now he is giving back to the Buisness hopefully helping young talent in AEW to make the company grow"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Neoabsurdistwrote on 10.02.2024:[9.0] "Edge: Ringwork: 9/10, Micwork: 7, 5/10, Gimmick: 8, 5/10, Charisma: 10/10, Potential/Einfluss: 10/10 Ingesamt: 9/10"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Horrorshowwrote on 02.02.2024:[9.0] "One of my personal GOATs. Edge/Adam is great, can never truly hate the guy. His spear isn't the best, But he's got undeniable charisma about him and a great personality."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bloodshot03wrote on 31.01.2024:[8.0] "Edge has been around for a long time now, and at this point he is a hall of famer for American wrestling. I still will occasionally rewatch the TLC matches, and his Rated R Superstar character was great stuff as well. I remember when he debuted there was a vignette which used some lyrics from a Nine Inch Nails song Mr Self Destruct - this caught my attention immediately! And all these years later I think he has had a good but short career at AEW. I hope to see one more tag run with Christian!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: hamstermatchwrote on 03.01.2024:"Boring. I just dont have a lot to say about him. He does not bring anything new to AEW and his storyline with Christian is largely carried by Christian and assumed nostalgia. His wrestling is not very interesting. Maybe he just needs some time to adjust to a new environment but its good he was not given the TNT belt at this time because he could not carry a championship. Booking nostalgia acts for a modern promotion is not very exciting. Some viewers just want to watch wrestling without doing hours and hours of research into old matches and storylines first."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MVCfanwrote on 13.12.2023:"As much as this guy is good to sometimes great worker. The fact that you have for your number two most important prize in your promotion, your feud has it to main guys a total age of 100 booking like this show. Why both all big three promotions new Japan, while no quite as bad as WWE and AEW cannot bring younger fans when you have people old enough to their grandparents fighting in the upper card. I'm using my comments on older workers to display my issues with wider booking and why i think the average age viewership of pro wrestling is so high. and not trending down for both AEW and WWE is above the average age of the US nation by about 5 years at leat some are Graceful eb enough to pull back from the title pictures [dragon for example] my rating for Copeland issues with booking aside 7.75./10 had some very good matches in his time most of them of the spot driven hardcore style."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: greaterdalewrote on 11.12.2023:[9.0] "Edge is great but not quite a 10/10 for me personally. He's had good success as a baby face and of course he was an awesome heel too. I'm really glad he's been able to have a career resurgence after unretiring he had a great run in WWE and now he's off to AEW to show he can make it outside of the WWE system. I honestly do think Christian Cage is the better of these two wrestlers, but it's pretty damn close as they're both stellar."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TotemKiller1wrote on 08.12.2023:[5.0] "If you were to genetically engineer a wrestler to perfectly fit in the WWE system the result would be someone similar to the artist formerly known as Edge. Copeland in his prime was perhaps the most average in ring worker in the world, since then having significantly slown down nowadays he's decidely below average in that aspect. When it comes to his promo ability and character work he's at least decent at that, but not spectacular. His run outside of WWE has been so far kind of bad (which unfortunately is not surprising).If there is one thing, which is a constant in Copeland's career, whether in WWE or AEW it is the fact that he's not a draw."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: deserterdragonwrote on 29.11.2023:[4.0] "Edge is the ultimate WWE system guy, a success story for a hype machine that can turn consistent adequacy (at best) into one of the 'best wrestlers of all time' purely through endlessly repeating a handful of moments and spots. Outside of his tag team work (consisting of, at most, 3 genuinely good matches), actually watching Edge weekly as a singles guy reveals a completely mundane wrestler, with an all-time terrible moveset, who's completely incapable of mimicking the humanity, spontaneity, or charm of a genuinely great hardcore worker, or mimicking the big match feel and storytelling of even a great WWE system guy like Cena. In between the bad matches, he cuts some bad, usually misogynistic, scripted promos. One of wrestlings great mirages: the more you look into it, the more you realize there's nothing there."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "I'm not gonna lie, I cried when Edge retired in 2011, one of the saddest days for me as a professional wrestling fan. Anyways, Edge is one of my personal favorites and one of the most legendary wrestlers in history. A man who's accomplished so much in historic career, competing mostly in WWE until in recent years where he decided to see if the grass is greener over in AEW. He took off as a tag team guy with his, real life, best friend Christian, taking part in a very influential run as a duo and rivalry with The Hardyz and Dudleys. Edge eventually turned to a singles competitor, his run in 2001 was so well received that he won the WON award Most Improved (if that means anything to you). He also took part in the "SmackDown Six" where he had amazing matches involving Chris Benoit, Kurt Angle, Rey Mysterio, Eddie & Chavo Guerrero. He took time off to heal from his (first of many) neck injuries, he did come back and hit his stride in the mid 2000s when he was paired with Lita, one of the best on screen heel couples, where he feuded with Matt Hardy, then went on to become the first Money in the Bank winner and cashed in successfully against John Cena for the WWE Championship, one of the best moments in history. His run in the late 2000s is among the best heel runs of all time, Edge is so natural at being a heel that you couldn't make him a face during this time. He did retired from another neck injury in 2011, and was out for years until 2020 when he returned to WWE to compete in the Royal Rumble match, one of my favorite moments in my life as a wrestling fan, it felt too good to be true. While his return run in WWE has had some hiccups, it was a mostly good run thanks to his feud with Seth Rollins and still showcasing he can go. His current AEW run is going fine, though it's only been a month since he started. Overall, I love Edge ever since day 1, one of my all time favorite guys, top 10 for me, no doubt in my mind that he's one of the GOATs.I mean, what's cooler than being known as "The Rated R Superstar"?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: crs285wrote on 19.11.2023:[10.0] "Edge was one of the best pro wrestlers of his generation. In the ring he was better than most of his peers at every level yet he was somehow even better on the mic and getting a crowd to react a certain way to him whether heel or face. His injury in his prime was depressing and then for his return made him even more beloved."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DangoDaisukiwrote on 24.10.2023:[7.0] "Seine beste Zeit hatte er meiner Meinung nach als Tag Team zusammen mit Christian. Mehr als ein Tag Team Wrestler habe ich in ihm nie gesehen und ich habe auch nie den Hype um ihn verstanden. Trotzdem war er mir immer noch lieber als andere die viel zu viel gepusht worden sind. Er ist generell trotzdem ein relativ guter Wrestler."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: IBladeDailywrote on 17.10.2023:[8.0] "Edge has had some great moments and great matches. However, I have never bought him as the top guy of his own era, much less any other era. He's grown a lot as a storyteller, was definitely in the upper echelon of 2000's WWE but it was largely a down period and creatively uninspired."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheWatcherwrote on 22.08.2023:[10.0] "I'm not giving many pro wrestlers a 10/10 but I can definitely say without a doubt, if it wasn't for Edge I wouldn't be in this whole mess in the first place. He was the first pro wrestler I saw when my dad put on SmackDown in late 2010. We also found his action figure at a local grocery store that night and bought it, great memories. Incredible work whether it was heel or face work, jumping off a 20 foot ladder, or promo skills I mean this guy had it all. The rockstar "Rated-R" theme fit him so well. I got the chance to see him perform in real life 2 weeks before he retired on SmackDown and he can really work a crowd and wasn't even in the match that night. I found old DVDs after that night of him and Christian, The Hardyz, and the Dudley Boyz ladder matches and yeah let's just say Edge helped re-innovate pro wrestling in the early 2000's. I also credit him to getting me back into pro wrestling during a dark time in my life when he returned at the Royal Rumble in 2020. That pop he received on his return was just insane and probably top 10 all time and not only that but it was motivating and chilling in a good way. Every match he had or has currently (2023) feels important and I feel entertained which is harder to say about other pro wrestlers these days. Edge easily goes in my personal top 5 and probably even top 10 in terms of GOATs amongst the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: FattitudeErawrote on 21.08.2023:"Rated R Superstar / Ultimate Opportunist Edge is up there as one of the best heel runs in WWE history. His character work, in ring style and consistent high quality of matches are a highlight of the Ruthless Aggression era. He left a noticeable hole in the WWE when he retired in 2011 and I am delighted for him to have had the chance to return against all odds during his most recent run. If this is the end, its the end of an era and Edge will be missed once again. Legend."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ViolenceBretwrote on 09.08.2023:[10.0] "One of the greatest bad guys to ever enter the ring, when Edge ways playing by the rules and being an all around swell-guy, it was bland. Not that it was horrible, but it just didn't seem organic. Once the Matt Hardy and Lita dirty laundry became present, we saw a great personality shift in Edge. As a tag-team wrestler, nobody was better, as Christian Cage provided a lot of foundation for their matches. Once the duo split things were a little rocky, as the cool guy with sun glasses just seemed overplayed. For whatever reason it seemed like Edge was getting injured every 2-weeks, thus his on-screen time was rare. Yet once he fully recovered and it was revealed he was truly the ultimate opportunist, things were great. His matches against John Cena were prime professional wrestling, and he held the world heavy weight title well. Once the injuries piled up and it was time to call it a day, Edge had a great career. But surprise surprise, through the magic of stem cells and falling on a bike, we saw an unexpected return. Old man grizzled Edge is pretty cool all things considered, his fight with Randy Orton was excellent. To describe the appeal of Edge, he's kinda like a combination of Jake the Snake Roberts and Hollywood Hulk Hogan. In other words, awesome. 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BigshowYTwrote on 27.07.2023:"A great slime ball in his original run before his retirement, he could is a great contender for the greatest Canadian wrestler alongside Bret and Owen Hart, Chris Benoit, and others. His role with both Lita and Vickie is disgusting in the right way to gain heat on him. He is the villain and was great with Randy Orton. When he returned from wrestling at the Royal Rumble it could be said that his return was the greatest ever. He is also a championship machine, he won a lot of tag team titles and main event titles in a balanced, sleezy way. His finisher, the spear, is perhaps one of the greatest wind-ups before the delivery, the way he goes mental pushing his hair back with one hand up signaling the end is true dramatic storytelling. His revival of his wrestling career is just as good, if not better than his original run. He faced off in dream matches we thought we would never see again or see ever such as: A.J Styles, Randy Orton, Finn Balor, Roman Reigns, and Seth Rollins. In general he is one of the greatest heels, one of the greatest storytellers, and one of the greatest wrestlers of all time."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KroKrowrote on 16.07.2023:[10.0] "One of the greatest heels of the 2000s, Edge is good talker, a great all-rounder in the ring, Hes a great character worker, and as a great theme song. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: bigredtalk89wrote on 07.07.2023:[8.0] "One of the greats, probably the best rival of Cena's main event run, he's always been a great performer. I think he unfortunately suffered some from the move to PG programming, but his legacy stacks up against the best of them."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KTG1515wrote on 03.07.2023:[7.0] "Edge is good, if not very good, but I've never seen him as great. He's cleary a great wrestler and worker in general, but never resonated with me too much."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: face painted legendwrote on 25.06.2023:[9.0] "Had one of the most notable meteoric rises that I can ever recall in WWE because it happened organically and by way of hard work. He won every accolade that there was to win in the company and it felt like he won them all when he was suppose to win them, and how he was supposed to win them. He always knew when and how to reinvent his character to stay up with the times. Same with the alignment changes , when he was a face he was the guy you wanted to cheer for , when he was a heel he gave people a reason to call him whatever derogatory name that they'd call him. Also had many incredible feuds, memorable moments, and banger matches over the years. The one thing I admire most about him is everything he said he was going to do, he did it despite all of the injuries, obstacles, and set backs that he faced over the years."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: danzitorockwrote on 20.06.2023:[9.0] "Whether in the singles or tag team division, Edge is a great performer and one of the great legends of North American wrestling. My favorite version of him is definitely the heel one, but he can work any alignment really well, he's an extremely talented wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Giantfan1980wrote on 07.06.2023:[7.0] "Edge had the look, but I found him somewhat lacking on the mic and his move set of spamming the spear over the years grew old on me."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Draculamurawrote on 05.06.2023:[7.0] "Fand ihn immer interessant, aber nur besserer Durchschnitt und am Mikrofon auch nicht alles überragend."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Wrasslinfan619wrote on 24.04.2023:[10.0] "Oh man Edge, he's done it all and he's one of the best not only heels of all-time, maybe even faces of all-time, but imo one of the best period. He's had so many classics, tons of matches with Cena that were awesome, the Foley match all the Taker matches as well. Plus the feud with Rollins, and even the match with Balor, plus the TLC matches, matches like this prove why he's one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AyoWrasslinwrote on 13.04.2023:[10.0] "My GOAT and the Greatest Heel of all Time imo. This man's career was over and somehow made an impossible return and was even better at everything. He is 49 years old pulling out Avalanche Edgecutions and Canadian Destroyers. Better on the mic and inring and an even better storyteller. HE IS HIM 10/10 Greatest of all Time / Recommendations: vs Cena [ Unforgiven '06, Backlash '09], vs Rollins [Summerslam '21, Crown Jewel '21], vs Balor [Extreme Rules '22, Mania 39], vs Orton [Backlash '20], vs Bryan & Reigns [Mania 37], vs Taker [SummerSlam '08, Mania 24], vs Foley [Mania 22], Elimination Chamber '05, vs Hardy & HHH [Armageddon '08]"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DeanAndrews95wrote on 10.04.2023:[9.0] "Edge der Rated-R Superrrrstarrr gehört zu meinen absoluten Favoriten, Seine Zeit Hochphase zwischen 2006-2011 war Spektakulär und Spannend zugleich. Das Erste Matsch was mich zu einem Fan von ihm gemacht hat war gegen Mick Foley, egal gegen welchen Gegner er gekämpft hat er hatte die Ringkontrolle und eine gewisse Präsenz wie ein Schatten. Sein Comeback ist in Ordnung bis Gut er ist der Meister des TLC Matsches und ein Opportunist Sondergleichen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: sverkhchelovekwrote on 08.04.2023:[6.0] "Christian puts over Jungle Boy, Edge defeated Finn Balor (3 times over a year). One of the most overrated and selfish guys in the business. But hey, TLC matches were great."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Oswuoldwrote on 06.04.2023:[10.0] "What to Say... Incredibile? Mad? Extremly important? The man that put importance on TLC? A man that defined this business? *****"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: cobrenzoswrote on 08.03.2023:[9.0] "One of the best heels ever, he wasn't a bad face too, very charismatic too maybe he wasn't the best in the ring but still he has a lot of awesome matches even after his comeback in 2020 at 47+ years old, personally one of my favorite wrestlers ever"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: John Brandowrote on 07.03.2023:[9.0] "Edge-für mich einer der besten Heels im Business. 2008 war er so bockstark, dass ich mir immer gewünscht habe, er möge verlieren. Gerade natürlich gegen den Taker unvergleichlich. Ich bringe Edge eigentlich immer mit seiner Rolle als Opportunist in Verbindung, seine Zeiten als Face waren aber auch nicht verkehrt. In der WWE mit Christian ein wahres Dream-Team gebildet, als Einzelwrestler ja der Rekordhalter des Schwergewichts-Titels gewesen war er im Ring ein Konterer, der seinesgleichen sucht. Alles in allem ein starkes Gesamtpaket, seiner großen Bedeutung für die WWE kann er sich sicher sein. Ich vergebe "nur" starke 9 Punkte, denn am Ende hat er einen Platz in meiner Top25, nach ganz oben zu den absoluten Big-Playern verorte ich ihn allerdings nicht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: OnlyHalfTheEffinShowwrote on 15.02.2023:[9.0] "Edge is the guy that honestly grabbed my attention to wrestling in the first place. My very first memory of pro-wrestling was a promo he cut with Vickie Guerrero on Smackdown, in the midst of his feud with the Undertaker, right after they successfully lobbied Teddy Long to ban Taker's Hell's Gate submission move, in 2008. And boy oh boy, I barely knew anything about WWE, pro wrestling as a whole or who Edge was but he made me hate him in that promo. Edge as a whole has always been nothing short of an amazing worker, but somehow it was always his character work that made him the top heel. Like, fucking hell man did Edge make it easy to hate him. A decade later, and he manages to pull a Roddy Piper and turn that pure, concentrated heel heat and become one of the most loved legends in WWE's history."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: fruggmanwrote on 19.12.2022:[9.0] "Edge was my favorite wrestler as a kid, his first run in WWE is an almost storybook-like career trajectory that anybody would be lucky to rest on. From his early work as an innovative tag team specialist to his workhorse character on Ruthless Aggression SmackDown he showed promise as a solid in-ring talent despite not having much of a character. Then, his heel turn as the ultimate opportunist made him an all-time great with world championship reigns and a repulsively evil heel character that made his rivals come out looking infinitely better. If Edge had stayed retired after his 2011 WHC reign interrupted by a career-ending neck injury, his legacy would have been cemented. Against all odds, he somehow was able to return in 2020 without missing a step. His recent in-ring work in 2022 has been somewhat lacking given the wear-and-tear on his body but I am looking forward to how he ends his career in WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KSupreme3wrote on 16.12.2022:[10.0] "the Rated R superstar is somebody who I didn't expect to be as big as a star as he ended up being. After he left the Brood with Christian, they became one of the hottest tag teams in the WWF/E. Their matches against the Hardyz and the Dudleys are now iconic and groundbreaking. I thought he was just infinitely better with Christian by his side, because they had such great chemistry. I genuinely believed they were really brothers (which disappointed me greatly when i found out it was kayfabe). Once Edge went on his unforgettable heel turn, he became a bonafide star, whether we liked it or not. the Opportunistic Edge made me sick to my stomach each time he did something outlandish, and was able to draw massive heat every single night. Always knew his way around a mic and could cut a really good promo at any given time. I'm so happy to see that he can still compete despite his past career ending injury. Plus, his theme song is too fucking good. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "He can be a great tag team wrestler, he can be a great singles wrestler, he can be a great face, he can be a great heel. Need I say more?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Enriquepollazzowrote on 27.11.2022:[9.0] "He did so much cool shit as a tag team member. I think he may have been the best tag team member ever. Those matches with 3d and hardys were amazing for their time and very innovative and he did everything in singles after. Probably a 10 but not one of my faves."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: eltetechoriwrote on 12.11.2022:[10.0] "Superstar Rated R has always been a great exponent of wrestling for me and for many of us who grew up in his era. I've always loved him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: li0nsaultwrote on 10.10.2022:[10.0] "There's no need to talk about how great the Rated R Superstar gimmick was, but I think people don't appreciate babyface Edge enough. He was charismatic as hell from the start, and I believe Edge would've been successful without a heel turn. Of course, this gimmick change skyrocketed his career and made him a true icon. He's also a master storyteller. I can see that some people think that his in-ring skills are average, and that's a reason not to give him a 10. However, I think Edge excels at what a sports entertainer should do, and that's enough to give him the highest score."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheOneAndOnlyCactuswrote on 29.09.2022:[10.0] "Before the Rated R Superstar Gimmick, I thought he was going to be a mid-carders for life, as he was a good worker but pretty bland personnality wise since the start of his solo run. But his transformation made him into a true icon and he grew more confident on the mic over the years. Combine that with his great tag team run with Christian, and even with Randy Orton, and he deserves nothing less than a 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Flame233wrote on 22.09.2022:[10.0] "I cannot say or write anything that has not been said about this guy. He had the single greatest comeback to WWE in history, not just because he is a legend, but because even the next generation of WWE fans, that even though hasn't seen his prime, wanted him to return, genuinely missed him and rooted for him. And you can see that he has missed us too. He is a part timer, and yet he puts almost weekly fights. The textbook definition of a WWE Legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AlDente01wrote on 22.09.2022:[10.0] "I'm glad to watch the video of his comeback a few times a month and get the goosebumps every time - we've had one of the most amazing moments of the last decade. I will not write about his skills in the ring and behind the microphone, because we all know that. But it's really amazing that I can put on the usual weekly show and possibly Edge will fight. And it will not be a Goldberg-style fight - just a decent, full-fledged duel. After so many years and such a serious injury, Edge gives us the highest quality sports entertainment - for this eternal respect deserves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CommisarRobewrote on 04.09.2022:[9.0] "Edge is undeniably an icon of the WWE, his mastery of the spear, his tag team domination and triumphant return after injury are all amazing features of Edges career. In the present day he is still as good as ever and always puts on a great match, icon."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: milos1605wrote on 22.08.2022:[9.0] "One of best wrestlers on WWE roster. His tag team run with Christian is iconic, but they didn't deserve to win every TLC match. They rebuilt tag team division in WWE, together with Hardys and Dudleys. His solo run 2001-2005 was okay, had some great matches, but he needed to turn heel and it happened. As veteran of ladder matches and potential main eventer he was right choice to win first ever MITB, despite Shelton was best in that match by far. His cash-in is probably best ever, even better than Rollins's one. Unfortunately, he lost title too early. Imagine Cena and Edge closing WrestleMania. They had great chemistry and their rivalry felt natural. TLC match at Unforgiven was great. Rated-RKO was amazing team, two most disrespectful guys in wrestling teaming against two rule-breakers in shape of DX was great, one of last good feuds before PG era. His year long feud with Undertaker was one of best ever. Edge did so many things to Undertaker, and they finally met at Mania in one of most underrated matches ever. And ending of feud at SummerSlam was legendary. His run 2009-2011 was very good. Retirement promo in 2011 was really heartbreaking. Return at Royal Rumble is one of best ever, and that would be great even if he didn't continue to wrestle. Feud with Randy Orton was good and feud with Roman and Daniel was great. Seth Rollins was awesome in their feud and they had amazing trilogy. HIAC match was better than Rhodes vs Rollins, really violent. Dream match with AJ Styles didn't met my expectations, but it still was very good. Judgment Day thing is wasted, but it's not late to correct it. I'm really interested to see what would happen with him in future."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Yigitdenizkulwrote on 15.08.2022:[10.0] "Edge is one of the greatest wwe wrestlers off all time he is so good as a heel so good as a babyface he is definitly one of the most complete superstars off all time and he is also my favorite wrestler ever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Benwerderwrote on 02.08.2022:[9.0] "Eine absolute Legende! Sein 2020er Comeback war mit dem Punk Comeback eines der größten der Wrestling Geschichte und denn hat er sich in seiner Karriere durch so viele grandiose Matches (mit Christian, gegen Taker..:) viele Fehden die unglaublich gut waren (Takee, Cena? ) absolut verdient gehabt. Rein vom In-Ring Geschehen ist er als Part-Timer noch absolut auf ehemaligen Niveau und ist sogar besser in Shape! Mag aktuell nur nicht so ganz sein Charakter, zuerst Judgment Day und jetzt Friede freude Eierkuchen im wieder einen Face zu haben. Mag denn Ultimate Opportunist Edge deutlich lieber. 9/10 für einen grandiosen Wrestler und Storyteller!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RatedRjabroniwrote on 31.07.2022:"Edge is the GOAT! His best run was in 2006. So crazy he came back from injury and now is still better than 90 percent of current roster."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: sbg2022wrote on 11.07.2022:[10.0] "Edge at his age, could run circles, squares and triangles against most wrestlers right now, if not all of them. His run with Christian was the stuff of legend. But what he did in his later career, managed to surpass it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: robrob77wrote on 09.07.2022:[9.0] "Edge is 47 right now and he is much better than a lot of wrestlers, he is a true icon, a legend. Edge is awesome in several ways."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: PhenomenalGunwrote on 27.06.2022:[8.0] "Edge is a great wrestler no doubt about it. He is a prime example of the opportunistic and sadistic heel that so many have tried to emulate but failed. His heel work is convincing and he has always had a look that suits his character. One glaring flaw has always stood out to me, and that's that I've never seen a match of his that didn't use weapons, tables, ladders, etc. that was actually good. His in-ring work has always been what was lacking and I've never found his actual matches that compelling. That aside, he's a fantastic heel, and his best work has been as a heel, especially most recently with judgement Day which is why the booking to have him kicked out and turn face is so perplexing. It's WWE's own fault they only had 3 major babyfaces on RAW, and now one of them's a heel, one is injured, and the last they're not doing much with like they should be. Either way, although Edge is a fantastic heel, he's definitely not a GOAT, and not even in the conversation for being one of the greatest of all time. Maybe I need to go back and watch his stuff from the Ruthless Aggression era, but his matches since he's returned have not impressed."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: lindercrestwrote on 03.06.2022:[7.0] "Edge is an all-time favourite for a lot of people. I like him and agree that he's a legend, but he's not one of my favourites."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Thibaultwrote on 19.05.2022:[7.0] "Edge has exceptional charisma and good technical skills, but he does not belong to the circle of very great in-ring performers. He occupies an important place in the history of wrestling, without incarnating a legend in my eyes."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LilKazu69wrote on 10.05.2022:[6.0] "I used to be a big fan of Edge before his retirement, and I'm eternally grateful that he is back doing what he loves, but man, his matches since coming (except the one with Seth) have been Chinese water torture. I wish he just changes the formula for his matches. I would rate him 9 pre-retirement and 4 since coming back."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ryanmichael25wrote on 18.04.2022:[9.0] "Edge blocked me on twitter & im not sure why and I? m pretty sad bc I? ve always been a huge fan. Oozes charisma, plays a fantastic heel, brilliant on the mic, and a great storyteller in the ring. Genuinely so talented. In my personal opinion he? s one of the best performers I? ve ever seen. Bummer he blocked me tho so that? s why he? s not getting a 10. I like this new shtick with Priest too by the way."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CMX-7wrote on 13.04.2022:[10.0] "Watching him in his current WWE run) He's like wine getting tastier and richer over the years. His matches are amazing + his matches are starting to be in the top 10 in any given year! I love his new dark gimmick aka "Ministry of Darkness 2.0"! Bottom line: He is great in any era, like Jericho he is able to adapt to any environment and show amazing matches!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ChopChopChopwrote on 04.04.2022:[7.0] "He's always had a little something, I mean, definitely a main event performer but... He's just so overrated. Seriously, he has been playing the same thing for 15 years and never improved. Not to mention the fact that he has been constantly pushed to the moon,"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: WrestlingFan892wrote on 01.04.2022:[10.0] "One of the wrestlers who best connected with the public in history. Mic-skills, charisma, entertaining to watch, and has always done incredibly well as both face and heel, I think his theme now fits the persona very well. Not to mention that as a tag team he has become one of the best with Christian, he will be an unforgettable wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AEWInspectorwrote on 21.03.2022:[10.0] "Great wrestling, a living legend, Edge is without a doubt my favorite of all time and it's great to be able to watch him live since I started following him from 2012, and I never imagined he could come back, and there's not much to do say this guy is fantastic, even with almost 50 years old he manages to deliver great fights and his skills with the microphone are a chapter apart, there's no way to have a different note"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SquilliamFancysonwrote on 11.02.2022:[9.0] "Edge was brilliant in the Attitude Era as a tag wrestler, brilliant in Ruthless Aggression as one bastard of a heel, and since his comeback he's become a fiery babyface with the ability to be a dark, violent, sadistic tweener when it's needed."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: arrancarwrote on 07.02.2022:[6.0] "Edge was a competent "WWE-style wrestler" at best, meaning he had a pretty generic offence and limited psychology. He had to rely on backstage skits and over-the-top heel work to win fans over. Fair play to him for becoming as relatively big as he was/is in wrestling despite his wrestling itself being so mediocre. I'll admit that some of the character work in his heel runs has been fun, but he hasn't had a large enough number of great or very good matches to justify me rating him higher."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: hirsty97wrote on 02.02.2022:[10.0] "Edge can play both a face and a heel tremendously well. He's capable of working as a tag team and in comedy. He's a good promo hand and capable of wrestling hardcore style matches. In other words he's versatile and has a great moveset and look. His return arc since 2020 has exceeded expectations. He is an overachiever as he is one of the most decorated wrestlers in WWE history, I wouldn't rank him among the all time greats like Flair, Austin or Sting but I see him as more of an upper-mid carder."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: rishabhwrote on 31.01.2022:[10.0] "He was among my first favorite wrestlers when I started watching wrestling and still is one of my favorites. He could go from being the most despised heel to the most loved babyface in no time. He could put on great matches, cut excellent promos and had great character work. Simply put, there is no one like Edge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ONESTOPwrote on 27.01.2022:[9.0] "So damn great to see his 2. run. every time Edge is in the ring i canšt stop watching. hope he still have 4-6 more years left"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: benny5bellyswrote on 16.01.2022:[5.0] "I have just never got the love for Edge. He is a perfectly fine worker and at times a good promo. I tend to prefer his much earlier work especially his comedy stuff. His comeback has been a real damp squib"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CaptainCharisma1997wrote on 17.12.2021:[8.0] "Really good heel in his day and 1/2 of possibly the best tag team ever. Held back by his inability to play a good babyface and the fact that his career basically sucked from when they paired him up with Vickie through to his first retirement. I'm honestly surprised his rating is so high on here, that period where Vince put the world title on him 11 times in 5 years was generally pretty insufferable for the most part. If the two of them were treated equally there's no doubt in my mind Christian would have ended up the bigger star."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Phenomenal Nightmarewrote on 07.12.2021:[9.0] "Edge, the rated R Superstar, a great wrestler and WWE legend, has had ironic fights and great moments like winning many world and tag team championships, The MITB Briefcase and the Royal rumble 2 times. I got a little sad when he retired in 2011 and happy when he returned in 2020."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: FACEElmo295wrote on 06.11.2021:[8.0] "In 2006 Edge was my most hated wrestler, that's due to how well he did his job at being a despicable heel. Edge and Christian were great at being goofy, and Edge was clearly the one who had more going for him. It's no wonder WWE pushed him thanks to his look and charisma. I've always felt Edge is a superior heel compared to being a babyface, and sometimes his matches do lack something for me from time to time. That said his heel run from 2005 to 2009 was excellent, not been too big on Edge ever since his return, and his face runs haven't really caught much of my attention."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Muggowrote on 03.11.2021:[10.0] "Edge is one of the greatest heels ever, and likely the best of the 21st century. He has the looks, pretty good ring work, the mic skills and the charisma, so it's no wonder why he became that good. He also could play any type of heel whether it be cocky, vicious or a comedy heel. He has always felt off as a babyface, which is the main reason why he never became the guy in wwe, but the only other negative of Edge is that he's injury prone, but that's mainly down to the abundance of gimmick matches, which is his forte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kaswrote on 31.10.2021:[6.0] "Never really understood what people see in him. He's got a decent work rate and he's a good tag guy, but everything else is mediocre."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SlapViperLLCwrote on 26.10.2021:[10.0] "Usually when you are young you'll cheer the good guys/faces and boo the bad guys/heels. Edge was the only wrestler, no matter if they were heel or face I cheered. He has so much range throughout his character that it makes him one of the best. When he's a heel he can play that sinister and vicious heel or he can play more of a comedic effect. Him being face felt a bit weird but he can still cut great promos better than 90% of wrestlers today. In terms of workrate I felt as if Christian was the better wrestler but Edge was better all around and Edge still wasn't a terrible worker. People say he only shined in gimmick matches where I will say that was his forte but then you have to look at his matches like: V. Taker Mania 24, V. Rollins at Summerslam, V. Bryan and Reigns Mania 37 anything that he did apart of the Smackdown 6, and many more matches. I also hate to say this, because it is a very serious issue...him with the neck injury makes his selling feel way more realistic. I don't mean that as "Oh you need an injury to sell better". I mean that as wrestlers want to make wrestling look as real as possible, correct' So you take a guy who left wrestling for 9 years because he was forced to retire because of his neck and now he's back at wrestling and many stories in his returning matches have surrounded his neck and head and he sells it like he's legit in pain (He might actually be.) then it makes Edge's matches feel so much more real. Edge is truly the complete package and he is easily one of the greatest wrestlers to ever step foot into not just WWE, but to wrestling in general."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Pete Gallowswrote on 14.10.2021:[6.0] "Again, one of those guys that I just do not see what others see. I know Cornette raves about him, I just do not see what the hype is all about. I am glad he is healthy enough to wrestle again, I am happy for him, I hope he stays healthy, but I am not a fan of his work."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: wewantpunkwrote on 05.10.2021:[9.0] "Damals als Mark habe ich Edge gehasst und das ist ein gutes Zeichen dafür wie gut sein Heelwork war. Im Nachhinein und nach vielen Wiederholung wurde ich ein unheimlich großer Fan. Ein unfassbar cooles Erscheinungsbild, Entrance und In Ring Psychologie. Er versteht sein Handwerk. Die Spätphase ist super, aber schmälert nicht seine Wertung. Alleine die Undertaker Fehde war ganz großes Kino."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AlexLikesJoshiwrote on 15.09.2021:[6.0] "While his comeback was a touching moment Edge hasn't been great since his comeback and a lot of people have probably been reminded why he was the guy on the B-Show in his prime"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Eggi1304wrote on 07.09.2021:[7.0] "Edge ist ein solider In-Ring Worker. Aber eben auch nicht mehr. Ebenso am Mic ist er sehr solide, jedoch auch dort nicht in der absoluten Elite anzusiedeln. Das alles in allem kann einfach keine 10 Punkte ergeben. Wie gesagt er ist gut, aber nicht sehr gut. Deswegen 7 Punkte."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: vaventwrote on 23.08.2021:[10.0] "In my mind, Edge is the complete package. I don't agree at all with the people who say he's not great in the ring. Simply look at any of his recent matches, at the age of 47 no less, for evidence of this- compelling stories, different moves and strategies in every match. His promo skill is incredible. He's able to make the things he says sound incredibly believable in a way few others can do in wrestling. Always bringing the heat, innovating when he doesn't have to, Edge is certainly one of the best of the last 20 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Erdrickwrote on 09.08.2021:[7.0] "A solid hand as a heel, able to convincingly play a violently deranged, self-absorbed opportunist, but never really clicked as a babyface. Edge is surprisingly basic in the ring for someone who's achieved as much as he has, really only shining in gimmick matches."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Enchantiumwrote on 21.07.2021:[9.0] "Edge is a familiarised name when it comes to the term of professional wrestling as he is a Hall of Famer for a reason, the guy is great on the mic, great singles match competitor, tag team competitor and multi-man competitor. He was over as a singles competitor specially with countless singles title match victories, countless tag team title victories with Christian, and won two Royal Rumbles (2021/2010). His career has been brilliant but had a massive hiatus due to a career ending injury which was upsetting considering how big of a star he was but he is back and has a collection of new stars to face since most competitors from 2010 have left the company meaning Edge has new competition and is left with many dream matches which are bound to happen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BrayanLaPrewrote on 06.07.2021:[8.0] "Edge was about as successful as they come during his run with WWE. He's obviously one of the best tag team wrestlers ever, which plays heavily into the positive of his rating. I personally found his singles run to be a bit hit-and-miss, but he had some great matches over the years and delivered some excellent promos, as well. Never my personal favorite, but certainly deserving of at least an 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: zags7000wrote on 03.07.2021:[10.0] "One of the more complete superstars in WWE history. He's been in some of the best tag teams in history, most notably with Christian which was one of my favorite acts growing up. As a singles star, he's capable of great matches as well. One of the more charismatic superstars as well and someone who can be an interesting babyface while also one of the best heels. He can be funny while being serious and emotional in the right times. I don't think he gets enough credit but in WWE history, few check all the boxes the way Edge does."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Daigotsuwrote on 19.06.2021:[8.0] "I was always a big fan of Edge. His tag team run was obviously one of the foundational runs in WWE tag team history. He also had a very strong career as a singles guy. Good worker, good promo, good character. All around excellent wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kungwrote on 09.06.2021:[10.0] "If you're anywhere near my age, then you know just how amazing Edge has always been. He's in my favorite non-main event match in WrestleMania history (TLC 2), he was in my favorite tag team growing up (Rated RKO), his returns in 2010 AND 2020 are among my favorite moments in modern WWE history, and his passion and love for this business make him eternally likable. God I love Edge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ClickyBicky2000wrote on 14.05.2021:[6.0] "Never got the Edge hype. He had some excellent matches during his tag run with Christian but I never found him all that interesting during his single/world title pushes. I don't know what it is but I could never get into him."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The A-Listerwrote on 08.05.2021:[9.0] "Great as a face, great as a heel. Great tag team wrestler, kinda ovverrated as singles competitor. I like his 2nd reign, although I think he didn't need that 2nd Royal Rumble."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: uziwrote on 30.04.2021:[8.0] "Edge is really in the top 50 on here? Kind of crazy to me. Great wrestler all round but he's the best what of all time? In ring? On the mic? Draw? Gimmick? I don't see it."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: FrelixUZwrote on 25.04.2021:[10.0] "My Favourite of all time, I was devastated when he retired and when he returned I almost died of happiness, Excellent wrestler, very good technical in ring and can have a good match with anyone, I like his moveset and he has done everything you can do in this business. Gret charizma and one of the best on the mic of all time. Great expressions and amazing storytelling ability."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Grekkowrote on 12.04.2021:[10.0] "A legend in the business, Edge has done it all. 2x Royal Rumble winner, Multiple times World Champion, the catalyst for Money In The Bank and TLC's success. He also WAS Smackdown for a period of 3-4 years in the late '00s. Great promo skills, a complete nutcase when it comes to his own safety, amazing charisma and look, probably the best facial expressions in a wrestler. He can sell ice to an Eskimo."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: King of Strong Stylewrote on 09.04.2021:[10.0] "Edge ist einer der größten Stars der WWE und noch dazu ein absolutes Gesamtpacket er ist stark im Ring am Mic fantastisch und hat Charisma und noch dazu Schauspielerische Qualitäten und bringt sein Gimmick als Heel aber auch als Face immer rüber, auch wenn ich ihn immer lieber als Heel gesehen habe. Für seine Karriere muss man einfach 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: NahuelVerawrote on 07.04.2021:[10.0] "This guy is one of the reasons i love professional wrestling. My favorite Wrestler of my entire life, one of the best heels wwe has ever had and a man that deserves all the respect of the world. Thank you Edge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RickyHendowrote on 11.02.2021:[9.0] "One of the main players in the ruthless aggression era, had many great matches (although a lot relied on gimmicks). Loved his tag team with Christian and very happy to see him back"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: redcloudwrote on 03.02.2021:[0.0] "The overrated superstar. Note how all his best matches are gimmicked to hell. One of, if not the worst spears and all his offense looks awful. His tag team run with Christian was his peak and he was floundering badly until he decided to cheat on his wife with his friend's girlfriend. Being an awful person pays off!"
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Wrestling Foreverwrote on 02.02.2021:[10.0] "Adam hat mittlerweile mit dem Wrestling abgeschlossen. Er vermisst es nicht und wird nicht zurückkehren hat er auch auf eine Frage auf Twitter geantwortet ob er zurückkommt. Nein wird er nicht er genießt seine Zeit mit Beth und der gemeinsamen Tochter auch ist er inzwischen Schauspieler. Zu Aktiver Zeit gab es Zeiten da hab ich ihn gehasst vor allem in der Fehde mit dem Undertaker. Trotz des damaligen Hasses auf Edge hab ich anerkannt wie gut er war. Einer der besten Wrestler aus Kanada er hatte klasse Trainer, er ist ein rießen Spaßvogel. Edge durch lief lange den Under und Midcard Status eher er 2006 zum Main Eventer wurde. Edge hatte viele starke Matches und Fehden, musste auch mit vielen Verletzungen kämpfen eine führte dann zum Karriereende. Wer ihm 0 Punkte gibt hat das Edge Gimmick und seine Art des Wrestlings nie verstanden. Edit 02. 02. 2021 mich hat Edge Rückkehr 2020 überrascht, jetzt hat er auch den Royal Rumble zum zweiten Mal gewonnen, dann war er auch der dritte dem das mit der Startnummer 1 gelang."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Uweuwesenwrote on 25.01.2021:[8.0] "In einer der schwächsten Phasen der WWE war Edge der absolute Star und Champion. Jedoch hat Edge nicht viele Facetten und war auch am Mikrofon nicht der beste. In meinen Augen ist er ein Stück weit überbewertet. Im Tag Team jedoch eine Art Legende!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Old ride long linewrote on 17.12.2020:[8.0] "Edge and Christian easy 10. Edge on his own meh. Don? t let the absurd number of heavyweight titles he won fool you the guy was only a main eventer for 5 years before injury cut short his career. He had good matches but I think wwe fucked up his push to mainevent status after his tag team runs. I? m not sure if it was the same for guys who saw hbk and Bret heart be apart of tag teams for years before being elevated to main event status, but I watched edges whole career and for me personally to watch him go from tag team god to heavyweight champion in a little more than a year was bad booking in my opinion. Don? t get me wrong he had good matches, and charisma for days. and I could just be a hater but to me there was not enough time for my brain to get behind him as a big time title contender to a 9 time heavyweight champion. Regardless his matches with cena, taker, orton, Rey, Bautista, hhh, and especially Jericho have plenty of replay value. After rereading this I? ve decided I? m definitely a hater when it comes to edge and those 9 titles in 5 years lol I just think when a guy holds the belt for 3-4 months minimum it helps generate that extra heat to want to see him lose or win."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: eleddie2914wrote on 28.10.2020:[10.0] "No words to describe how great Edge is he is a legend and his comeback was sick. His match with orton was awesome and his past work makes him what he is a GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ilovewrestling1995wrote on 20.10.2020:[7.0] "Edge is a very decent wrestler but no way he is 9/10 . you kinda overestimate him . yeah his mic skills are 10/10 and especially when he was heel , he was awesome but his moveset is so basic and his in ring work is just average (expect from his hardcore and ladder matches ) ."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ma Stump Pullerwrote on 13.10.2020:[8.0] "It's hard to place Edge at a accurate level because his quality of wrestling changed so much: while some say Edge is a "bad" wrestler, that's completely untrue, especially if you look at him during his early days and early to mid 2000's work: he was actually a pretty damn solid worker who was surprisingly agile (keep in mind that Edge also isn't the smallest guy around) and could keep up with guys like Rey, Angle, etc. He did have to scale things down due to multiple injuries (especially to the neck) and his later years didn't have him as agile, but Edge knew what he could and couldn't do and made the best out of his battered body at that point. Promo wise, he's great, probably one of the most solid heels during the late 2000's who was not only deviously smart but wasn't afraid to murder someone in the ring if he needed to so. Perfect foe for Cena as well and got some of the better matches out of him. To say he wasn't a fantastic tag team specialist when the wealth of solid work he did with Christian, Orton, Benoit, Rey Mysterio and even in the short lived Team ECK is ludicrous. That being said, Edge suffered from the same problems that Christian did, namely always being below the top guys and being a great dance partner in the ring but not being a legitimately interesting champion for the most part, not helped by him consistently bouncing the belt after winning it and never really having a career defining run with it, which reduces his stock significantly. I have enjoyed his work since coming back through: hopefully he keeps up the solid promo work and gets some great matches before finally hanging up the boots."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Viniciouswrote on 26.06.2020:[8.0] "Great, yes, but in the upper echelon of main eventers, I never saw it in Edge. The definition of a B+ player. Nowhere near guys like Flair, Hogan, or The Rock. Obviously, now that he's returned he has a chance to build his legacy, and the things he's done at the age 46 has been excellent. Five more years of A+ promos and good in-ring work, maybe he get's into being the best close to guys like Jericho and Bret Hart."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: mjboyerwrote on 15.06.2020:[10.0] "Quite possibly my all time favorite. His return run only further proves to me why I love him so much"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Conorwrote on 22.05.2020:[10.0] "Probably the wrestler I associate most with the big gold belt in WWE. Edge could really do it all. He and Christian formed a tremendous tag team. And his singles runs in both the mid card and the main event were just excellent. No one could cut a promo quite like Edge either. He could be very dark and brooding as a heel, but he also had brilliant comedic timing when it was called for. One of the best to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BGAwrote on 12.05.2020:[7.0] "I don't know why but I never took to Edge like a lot of wrestling fans did. I was a much bigger fan of his tag team career than his singles, never warmed to him as a singles competitor. Always felt he lacked something."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Wrestlefan20wrote on 11.05.2020:[9.0] "He's proven to be an amazing heel. Not really that good of a face. His promo skills are also pretty good. Both a really good singles and tag-team wrestler. He's accomplished a lot, but a lot of his world championship reigns were transitional."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AAA3000wrote on 07.03.2020:[10.0] "Es gibt natürlich technisch bessere, aber auch bedeutend schlechtere. Sein Spare ist legendär, seine Bühnenpräsenz, sein ganzes Auftreten all das Drumherum da holte Edge schon immer alles raus. Für mich ist er einer der besten Heels und wenn es rein um die Präsenz geht mein Lieblingswrestler. Ja, noch vor Stone Cold und noch vor The Rock. Aber nur knapp!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JustAWrestlingFanwrote on 03.02.2020:[10.0] "One of the greatest bad guys in the history of wrestling. At his peak he drew so much heat and he played up to it amazingly to ensure a crowd reaction. He also knew how to play a symphatic face. I loved his ultimate oppurtunist phase with the money in the bank briefcases and the elimination chamber moment. Amazing in both singles and tag team matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KENTAfanwrote on 29.01.2020:[10.0] "One of the greatest, and often most underrated, in WWE history. Edge has always been an outstanding wrestler, with even more impressive charisma and mic skills. The guy can, and has, done it all. He's a legend, simple as that. I was still 12 years old when he retired, and his departure took away a part of my childhood honestly. His return at this year's Rumble was one of the most amazing things I've ever witnessed in wrestling, and his promo on Monday night was just as good. Edge took up acting during his time away from the ring, and it was definitely noticeable. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Erik1031wrote on 28.01.2020:[10.0] "When you break it down, Edge has had one of the greatest careers in wrestling. One of the few who can say had a HOF singles and tag team run. Him and Christian were so good together and they helped innovate tag team wrestling in the early 2000s. As a singles star though, Edge took off. He was one of, if not, the best heel of his era. In 2005-2006, nobody had more heat than him. As a face, he was a beloved figure. He just felt so cool and charismatic. He won every belt imaginable in WWE and feuded with every big star at one point or another. Involved in some all time great rivalries with Cena & Undertaker. He's kinda underrated as a performer and has had or was involved in plenty of classic matches. Saddened when he had to retire but his return at the Rumble was epic and I'm glad he gets to go out on his terms now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Vindicator1996wrote on 28.01.2020:[10.0] "I grew up watching Edge being the ultimate heel. He was capable of delivering great matches, at least for the average level of the era, but more than this he was a larget than life character. Also, his beginning teaming up with Christian is memorable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Anton9278wrote on 27.01.2020:[10.0] "An amazing wrestler who is an idol for me. Cool matches, promos and segments. Great feuds. Great legacy. In connection with the rumors of his return to the Royal Rumble, I remembered his departure, a farewell speech. His departure took part of my childhood. And when the first words of his musical theme were voiced in the Royal Rumble, I really have tears!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JEK 1991wrote on 03.11.2019:[10.0] "One of my favorites of all time. Great worker. He knew how to excite a crowd. Unfortunately neck injuries caught up to him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: redekkerwrote on 15.08.2019:[9.0] "In my opinion the most entertaining overall wrestler out of the "Big 3" tag teams of the early 2000s. Outstanding on the mic, put on some of the best matches year after year for a decade. Maybe the absolute worst spear in wrestling though. His other offense didn't look amazing either, after all his neck problems, but it's offset by his charisma and general heel persona."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[9.0] "Awesome as a tag team with Christian and really broke through the glass ceiling when he found his Rated-R gimmick. His terrible looking spear is part of the reason I can't bring myself to give him a 10 though. Every time he hit that move I just wondered why he used it. It may sound like a little thing, but it really did take away something from his overall package. But even that being so, he was still an joy to watch all the way throughout his career."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheGorgis309wrote on 10.06.2019:[8.0] "Edge was good in the ring, had a fantastic look, electric charisma, and his mic skills had you hanging on his every word.  His heel persona felt so devious and opportunistic. Everyone always says he's not that good in the ring because of his spear, which I admit is bad, but if you look at his earlier work he was doing flip sentons, hurricaranas and twisting headscissors. His ring work did take a hit after his neck injury, but the guy was still talented. In my opinion, he was slightly overexposed, I mean 11 world titles in less then 5 years is incredibly excessive, but I feel like he earned his pushes."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ElPolloLocowrote on 24.05.2019:[8.0] "I am rating Edge exclusively based on his promos. In the ring he ranked somewhere between inadequate and nothing special and many of the feuds he was involved in were typical of the Ruthless Aggression Era (bad) but each time he opened his mouth he was funny, witty and entertaining. One of the very few workers I consider a match for Jericho when it comes to promos, which coming from me is a pretty big accolade."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: zephyrwrote on 20.03.2019:[8.0] "Great look, AMAZING talker, natural heel. Not the greatest wrestler but generally knew how to work around that by being a cowardly heel."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tomaswrote on 07.03.2019:[9.0] "The fact that people here are giving Edge a 0/10 is just mental. Sure, he was never a Bret Hart, HBK, Eddie or Angle in the ring, but he was very decent and did take part in great tag team matches in 1999-2001 (especially the TLC stuff), in fantastic matches almost every week in the 'SmackDown Six' time in 2002 with some of the greatest wrestlers ever like Angle, Benoit and Eddie. In latter years, he participated in some of John Cena's first great matches in his career and had a great feud and series of matches with Undertaker in 2007-08. A solid 8. 5 (9) for Edge."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Steamboat2511wrote on 29.11.2018:[9.0] "Edge als Gesamtpaket gehört zu den besten Wrestlern überhaupt. Seine Matches waren fast immer unterhaltsam und überzeugten mit Technik und Ringpsychologie. Wie kaum ein zweiter hat er den Sprung vom legendären Tag Team Wrestler zum legendären Singels Wrestler geschafft. Verschiedene Matches bleiben dem Fan für immer im Gedächtnis (WM 17, 22, 24). Wie Jericho (und einige andere) konnte er perfekt sowohl Heel als auch Face verkörpern. Am Mic zeigte er sich ebenfalls auf höchstem Niveau und so gehört der Rated-R-Superstar zwangsläufig in meine Top 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Stott Onewrote on 27.11.2018:[9.0] "THE RATED R SUPERSTAR! My brother and sister were HUGE marks for John Cena. And I was the Edgehead. His promo work was dripping with sleaze and he could make a crowd go crazy with hatred. One of my favorite heels of the 2000s, I was so sad to see him leave so soon. Also, before he became my favorite thorn in Cena's side, he was putting on tag team classics. Not just with Christian, though they are awesome, but also his teaming with Rey Mysterio was one of my favorite parts of early Smackdown tag division along with Los Guerreros and Benoit/Angle"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Aurtletheturtlewrote on 20.10.2018:[6.0] "Perhaps the most overrated wrestler of all-time. Edge was comfortable being a snivey heel with okay cheap heat promos and not much else. He featured perhaps the worst incarnation of the spear in pro-wrestling history and not to stop there, his weak moveset left much to be desired and only decreased from his believability as a world champion. Midcard at most."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Oliver95xwrote on 27.09.2018:[10.0] "Edge hatte einige sehr gutes Matches und kaum einer war so gut am Mic und hatte so viel Charisma wie er."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RatingsMachinewrote on 22.09.2018:[6.0] "Edge is so, so overrated. He worked so light as to make it obvious that he wasn't coming close to touching his opponent. I'm not saying he had to hit the other guy as hard as he possibly could, but Edge took it so far in the other direction that it made his offence looks terribly weak; his punches looked more like a guy flapping his arms than throwing a punch. His interviews were OK; they weren't great, but they got the job done."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: pappahousewrote on 04.09.2018:[9.0] "Einer der besten Wrestler aller Zeiten, eine Intensität im Ring die ihres gleichen sucht.  Den Beef den er mit Matt Hardy wegen LIta hatte und daraufhin folgende "Live-Se*-Show" verhindern hier die zehn Punkte. Ich war damals echt geknickt, als er sein Karriereende bekannt geben musste. Ein gutes Beispiel, dass man es doch von einem Tag-Team-Wrestler zu einem etablierten Single-Wrestler schaffen kann."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: InactiveGuruwrote on 01.06.2018:[9.0] "One of the best heels to ever work in wrestling, you honestly couldn't say he was one dimensional as he plays the comedy jester tag team extremely well with Christian when the time called for it. I won't explain Edge in detail as let's be honest we all know who he is."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Shiza kunwrote on 23.05.2018:[8.0] "As a kid, I probably hated no one more than Edge, which to me goes to show his amazing ability as a heel in the late 2000's. The "Ultimate Opportunist" aspect of his gimmick was amazing, with great examples of this being his MITB cash-ins and stealing Kofi's spot in the Elimination Chamber at No Way Out 2009. He was never as interesting as a babyface unfortunately, even though I will admit his return at the 2010 Royal Rumble had me marking out the most I ever have during a live show. All of his most memorable matches have been either gimmick matches, tag-matches, or a combination of the two, and in those, he never stood out as the most amazing in-ring performer, so for me, what makes me rank him as highly as I do is his character work. Unfortunately, his career was cut short, but it helped elevate his best friend Christian to take his spot, which to me, is absolutely beautiful."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CHN325wrote on 01.02.2018:[8.0] "Great wrestler, great tag team worker, terrible spear. Made a great transition from tag team specialist into main event heel. Great mic work."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sheepwrote on 17.12.2017:[10.0] "Die Bedeutung von Edge für die WWE der letzten 10 Jahre ist unmöglich zu überschätzen. Eine herausragende, an denkwürdigen Momenten reiche Karriere hatte er ja schon hingelegt, als er noch mit Christian gearbeitet hat. Auch sein Match gegen Shawn Michaels beim Royal Rumble 2005 ist mir im Gedächtnis geblieben. Im Ring war er sicher kein Gott, aber sehr ordentlich und nie langweilig.  Der Moment, wo aus dieser tollen Karriere eine einmalige wurde, ist dann natürlich der erste Cash-in des Money-in-the-Bank-Koffers Anfang 2006 gegen John Cena. Ab da spielt der Mann in einer eigenen Liga, was Storytelling und Charakterentwicklung betrifft - und eigentlich ist auch die WWE von diesem Moment an eine andere.  Was er von da an alles unglaubliches tun durfte, muss man nur aufzählen.   Die Etablierung der später fast zu Tode recycleten, aber seinerzeit geilsten, weil dreckigsten Methode, einen Titel zu erringen.  Die Live-Sex-Celebration, die bis heute ihresgleichen sucht... in was auch immer.  Der Spear gegen Mick Foley durch einen brennenden Tisch.  Der Sturz durch mehrere Tische im TLC-Match gegen John Cena.  Der bestürzende Angriff auf den Undertaker nach dessen Steel-Cage-Match und damit der erste Teaser der späteren Jahrhundertfehde.  Die Rückkehr als Kameramann und der Beginn der für mich unvergesslichen Taker-Storyline.  Die Affäre mit Vickie, die aus einem weiteren hinterhältigen Heel den goddamn dirtiest SoB in the game machte.  Das unglaubliche Finish des Triple-Threat-Matches bei Armageddon 2007.  Das Match gegen Taker bei WM24, eines der besten des Deadman.  Der Sturz des Undertaker durch vier Tische und die Scheinbeendigung von dessen Karriere.  Das Cell-Match beim Summerslam 2008, eines der besten Matches, das ich je gesehen habe.  Die folgende Auseinandersetzung mit Triple H und Jeff Hardy.   Die WWE sagt oft: "Anything can happen here! " Solange es Edge gab, stimmte das. Er konnte alle Gesetze brechen, die wir für unkaputtbar hielten. Er fehlt mir."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Summerslam Fan 01wrote on 15.12.2017:[8.0] "Edge ist und bleibt etwas Überbewertet.  Klar er ist als Heel einer der besten wenn nich sogar unter den Top 10 Ever.  Aber ansonsten ? Privat hörte man ja mit der Lita/Hardy Geschichte nix Positives über ihn, kann ja sein das er sich geändert hat. Hat in meinen Augen keine Ausstrahlung, aber ein guten Psychoblick der dieß ausgleichte, Fehden gegen den Taker, Cena und Tag Team bleiben Unvergessen.  Also ist absoluter HOF aber in meinen Augen nie ein wirklicher Topstar"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheV2wrote on 20.11.2017:[10.0] "Edge ist mein absoluter All-Time-Favorit und wohl einer der besten und einflussreichsten Heels überhaupt.  Der Hauptgrund für meine Begeisterung für Edge ist auf jeden Fall sein Charisma und die Art und Weise, wie er sich zu einer einzigartigen Heel-Persönlichkeit entwickelt hat. Als Face waren seine Leistungen ebenfalls zufriedenstellend, aber als Heel ist er eben ein Zucker-Rivale für jeden Face. So hat er auch die Karriere von zum Beispiel Cena, als auch die Karriere von Jeff Hardy sehr positiv beeinflusst.  Im Ring ist er für den heutigen Wrestling-Standard kein Top-Performer. Genau so wenig ist das ein Untertaker und genau so wenig wird das auch ein Cesaro zum Beispiel im Vergleich zum Wrestling-Standard in 20 Jahren sein. Man sollte finde ich die Leistungen auch an den Erwartungen der dementsprechenden Zeit bewerten. So waren auch die Matches von Edge immer unterhaltsam aufgrund seiner Persönlichkeit. Edges Persönlichkeit wurde immer sehr gut in seinen In-Ring-Handlung reflektiert.  Insgesamt ist Edge vielleicht nicht der erfolgreichste Wrestler schlechthin, aber er ist für den Erfolg von sehr vielen WWE-Legenden mitverantwortlich. Man kann sich Edge bei so vielen Leuten einfach nicht wegdenken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ianlapierrewrote on 04.11.2017:[6.0] "Completely overrated. Yes, I know, he was a great wrestler. His tag team work is some of the greatest work the business has ever seen. Yes, I know, he was a good heel champion later in his career. I never regarded him as one of the best main eventers. I regarded him as one of the worst main eventers during one of the weakest periods in wrestling history. And to make matters worse his career was cut short by a career ending injury."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DCFC95wrote on 26.10.2017:[10.0] "One of the greatest heels of the Ruthless Aggression Era. Edge was excellent on the mic as an evil heel and believable as a marketable babyface. He was involved in excellent feuds with Taker , Cena and DX and more than capable of putting on a 5* match. 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "I'll say it: Edge was the best heel of the 2000s, even better than Triple H. No one was a heel heat magnet as him, and despite some repetitiveness in his promo, Edge always captured the audience's hate. Also, Edge has always been very versatile, being able to evolve from an hardcore specialist to an in-ring storyteller. His feud with John Cena and Undertaker are simply masterpieces, as he was able not only to have incredible matches with them, but also to be on their level at the mic. Edge is, without a doubt, one of the best wrestlers in the history of WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: xPETERxwrote on 15.09.2017:[6.0] "Ach, der gute Rated-R Superstar, der mit Cheating eine beachtliche Zahl an World-Title gewinnen konnte. Ich fand den Spear als Finisher immer unglaubwürdig. Wenn man jenen mit dem Gore, oder dem von Reigns vergleicht. Schwach. Ausserdem hat er Matt gescrewed! Am besten gefiel er mir noch im TagTeam. Am Mic wohl sehr gut und auch entsprechendes Schauspiel-Talent. Allerdings machte es nie Klick was sein Move-Set im Ring als Singles Wrestler anging."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: taabr2wrote on 10.09.2017:[9.0] "Edge was a great talent in wrestling but not really an all time great in my opinion. He was a good tag wrestler and a great brawler. His best role is when he was playing the heel to top faces like John Cena, Batista and Undertaker."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ChristianMB1wrote on 27.07.2017:[9.0] "Unarguably delivered the greatest "cheating heel" performance. His selling, ring psychology and mic work were all legendary. He was so believable and easy to hate during his prime. The only thing that keeps him out of the GOAT discussion is his slight underperformance as a babyface."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Arousalswrote on 17.04.2017:[7.0] "A good performer, able to reinvent himself at the proper times. I think he got way more than what he deserved in terms of titles and accolades, but that's the nature of the game in WWE (and after all, he was supposed to be "The Ultimate Opportunist")."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Blood Pumpwrote on 07.04.2017:[8.0] "One of my favorites back in the day but looking back Edge was really just amazing on the mic. Hes a good in ring talent and some of the matches hes been a part of are some of the best matches and moments in history. The TLC match at WM X-7 in general is a bonafide 5 star in my eyes and his work with Guererro (particularly the Ladder match) and Angle are fantasic singles examples but I can't think of too many times where he himself carried a match. Hes always had something to add and deserved the main event push he got, but I would hardly call him top 50 let alone 25."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RonAyyyyyyyywrote on 28.02.2017:[10.0] "Edge is one of the all time greats, a good face and an absolutely fantastic heel, and a very good in-ring worker too, especially in hardcore matches. As a heel, no matter who he faced, he was always able to take the feud to the next level thanks to his ultra-intense attacks and promos. Edge really shone prior to the PG switch though, when he was able to show what he was willing to put his body through to get over or to steal the show. Pretty much any main event match that doesn't involve Batista is great in a storytelling sense, but his triangle ladder matches and his feuds with John Cena and the Undertaker have produced some of his best work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring: Klar war Edge ein guter, aber eigentlich würde ich ihn nur 8 Punkte geben, aber immer wenn ich an ihn denke, muss ich an die 2 Spears denken bei WM 17 und 22 die ihn unsterblich gemacht haben deshalb 1+ Punkt. 9/10 (50%)  Promos/Schauspieltalent:Er konnte Perfekt den Ultimate Opportunist spielen und das merkte man an seinen Promos. 10/10 (25%)  Charisma/Statur/Gimmick:Hier leider nur etwas besserer Durschnitt. 7/10 (25%)  Sind dann insgesamt 8, 75 Punkte für den Rated R Superstar.  = 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MarkyMark0wrote on 16.01.2017:[9.0] "Ah Edge, one of my all time favorites. Edge was a great heel as well as a good face. His run with Christian totally reeked of awesomeness and they put on some great matches with the likes of the Dudley Boys, APA, Hardy Boys and so many more. Christian turning on him during the Invasion story line was probably one of the best things that happened to him as later on he'd go on to have a tremendous run as a singles competitor. He really hit his stride when he became the Rated-R Superstar Edge. His promos were great and he was able to play such a slimy heel that you loved to hate and he could really go in the ring when he wanted to. Edge will go down as a great and him being in the Hall of Fame proves just how good he really is."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: rjsbx11wrote on 08.01.2017:[10.0] "Edge is my favorite wrestler of all time, however, I'll give him an honest evaluation.  Edge was such a unique wrestler with a great personality and character. He is one fun heel and he totally embraced the cowardly yet opportunist antiques so well. He's kind of the veteran version of Seth Rollins. In his earlier career, he was quick for a guy his height and had diverse moveset. A great tag specialist, his risk taking and bumping took a few notches off his career which ultimately made him a good yet inconsistent worker in his later years. However, he supplanted diminishing ability by being an awesome talker and a damn good heel. A little overbooked in terms of titles, he established himself as a reliable main eventer who could draw heat and interest into any feud (including one that helped legitimize John Cena). While a personal favorite, he's just a outside that top tier rank of greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rasslin Ruleswrote on 04.01.2017:[8.0] "Er hat zwar echt immer super unterhalten und mit dem was er hatte (begrenztes Moveset, fehlende Athletik, ... ) echt immer das beste rausgeholt, besonders als Heel. Einfach ein sympathischer Typ, dem ich den Erfolg auch gönne, auch wenn die Anzahl der Titel und Erfolge vielleicht etwas hoch ist. Trotzdem gehört er am Ende des Tages nicht zu den ganz großen für mich"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SuTonwrote on 11.12.2016:[5.0] "One of the better promos during the late 2000s, a level of intensity when spewing his hatred for whomever that helped sell matches, but not on the level of mic workers like a Jericho, Punk, or Guerrero who can control crowds in the palm of their hand. As an in-ring worker, he shined best during gimmick matches and always displayed a satisfactory level of talent outside of them; he's someone I thought was never a good despite great matches with some of the best workers of all time. He's almost always clearly the worst in those cases and his shit offense sticks out so heavily. Edge also tended to play a weak babyface. He was good for a laugh as partner with Christian, but he didn't have much range outside his tired "ultimate opportunist" shtick and could never generate as much heat as when with Vickie/Lita."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rattlesnake3-16wrote on 09.11.2016:[10.0] "Simply the best heel of the 2000's, he had great storylines particularly with taker and cena ... and is stricking spear remains the best the company had known... the rated ten superstar edge !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Alex Maedawrote on 20.10.2016:[10.0] "Edge war ein großartiges Total Package, sowohl als Tag Team-Wrestler als auch im Einzelbereich sehr erfolgreich. Als Heel super am Mic, sogar als Comedy-Babyface ganz unterhaltsam, nur sein letzter Face-Run hat mich ein wenig enttäuscht. Ansonsten lieferte Edge im Ring zahlreiche denkwürdige Momente, seien es die waghalsigen TLC-Spots, sein erster Cash-In oder die Matches gegen Cena oder den Undertaker. Insgesamt eine überragende Karriere eines Ausnahmetalentes, das die WWE sichtlich vermisst."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Snedgewrote on 15.10.2016:[3.0] "Schon als Kind konnte ich nicht verstehen, warum er und Christian in so kurzer Zeit 7 Tag-Team-Championships halten durften. Die beiden waren dünne feminin wirkende Langhaarige, die ich einfach nur pfui und unlustig fand, obwohl sie damals Face waren (und ich war als Kind eigentlich immer auf Seiten der Faces). Gangrel war cool, aber seine beiden Gefolgsmänner mehr als überflüssig. Warum durfte Edge so gut wie jede Fehde (außer gegen Cena natürlich, wie jeder) gewinnen? Gegen Gangrel, Christian, die TLC-Matches, Kurt Angle, Lance Storm, Randy Orton, gegen Kane sogar mehrmals und natürlich Matt Hardy! Und sein Spear ist der schlechteste, den ich kenne. Von der Privatperson Adam Copeland fange ich lieber gar nicht erst an (spannt seinem besten Freund die Freundin aus und McMahon findet das auch noch geil -, -). 3 Punkte gebe ich für die TLC-Matches, für einige In-Ring-Techniken und weil er als Heel mit Lita wirklich effektiv Heat gezogen hat."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheOneWhoKnockswrote on 09.10.2016:[10.0] "Jesus, what is it with all the negative backlash from some people on here regarding Edge? Edge was an incredible talent. One of the greatest heels of all time, this man knew how to get heat against anyone. He was so good at it he managed to get the crowd fully behind John Cena, something not many have managed to achieve. And besides that feud, his feuds and matches with the likes of Undertaker, Jeff Hardy, Mysterio, Kurt Angle, Eddie Guerrero and many others were all brilliant, he was a master at ring psychology and his promo skills are vastly underrated. As "The Rated-R Superstar" he was one of the greatest ever microphone workers. His tag team with real life best friend Christian also remains one of the greatest tag teams of all time in terms of both ring work and entertainment value, and in terms of entertainment value almost nothing tops his heel partnership with on screen "wife" Vickie Guerrero between 2007-09. Edge is a legend and fully deserving of all his accolades."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: steviecwwrote on 07.09.2016:[9.0] "Saving grace of the WWE main-event scene during some fairly terrible times, not to mention a remarkable and well earned rise through the WWE, mid-card and Tag Team divisions. He won almost everything there was to win, WWE Championship, World Heavy Championship, US Championship, IC Championship, King of the Ring, Money in the Bank, Royal Rumble, Triple Crown, Grandslam and more."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: NHJ2190wrote on 17.08.2016:[7.0] "Das Paradebeispiel eines Wrestlers der nach jahrelangem Erfolg in der Tag Team Division den Sprung in den Main Event geschafft hat. Insgesamt im Ring absolut im oberen Drittel anzusiedeln. Ich mochte sein Gimmick als Ultimate Opportunist. Allerdings gibt es 2 Kritikpunkte: Ich fand die Frauengeschichten mit Lita und Vicky Guerrero einfach nur nervig und am Micwork hatte er bis zum Ende hin noch deutlich Luft nach oben. Nichtdestotrotz ein verdienter Worker mit einem viel zu plötzlichem Karriereende. EDIT: Muss 1 Punkt abziehen, da er mir in der Attitude Era neben Christian als Tag Team übel aufgestoßen ist und ziemlich genervt hat."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Strezemannwrote on 10.08.2016:[7.0] "In the ring, Edge had weak offense and was pretty dull to watch on weekly television for the last half decade or so of his run, though every couple of months he'd throw caution to the wind and deliver a very strong match. Despite not being that exciting a worker on a day-to-day basis, it was impressive that he kept going for so long and managed to get as over as he did even, all following serious neck surgery. Prior to his surgery, and even on a couple of very memorable occasions later in his career, he'd take some insane risks and really put it all on the line to entertain. On top of that, he was always one of the better characters on WWE TV, starting with him having surprisingly strong comedic timing right off the bat to playing a very strong heel because of the fallout of a real-life occurence, to playing a very entertaining mad man that I think many 'crazy' personalities have since been inspired by. The staggering number of underwhelming matches he had keeps me from giving Edge a great rating, but he sure did have a number of great, memorable ones, too."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ApexOfEvolutionwrote on 02.08.2016:[10.0] "Meiner Meinung nach der beste Wrestler aller Zeiten! Seine Fehde gegen den Undertaker hat mich damals wieder zurück zum Wrestling gebracht. In der Kombination mit Vicky Guerrero fand ich ihn damals wahnsinnig unsympathisch (und das ist positiv gemeint! ) Habe mir dann im Internet auch ältere Matches angesehen und fand ihn fast immer großartig. Technisch sauber, jede Aktion absolut glaubwürdig. Hätte noch einige Jahre großartiges Wrestling bieten können. Sehr schade, dass er aus gesundheitlichen Gründen nicht weitermachen konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KevinZaynwrote on 24.07.2016:[10.0] "Er ist der Wrestler, den ich echt am meisten vermisse. Er war so ein grandioses Talent. Für mich persönlich ist er auch nach CM Punk das Zweit Beste Gesamtpaket, das es jemals gegeben hat. Er hatte einfach alles drauf und konnte sowohl als HEEL als auch als FACE überzeugen. Auch wenn es in die Comedy Schiene ging war dieser Mann absolute Weltklasse, 10 Punkte für den Rated R Suuuuuperstar"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ErycK24wrote on 04.07.2016:[9.0] "Edge was a very skilled wrestler. It is very unfortunate that his career came to such a sudden end when Edge still had a ton of wrestling in him. He performed amazingly in many fantastic matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Okaro143wrote on 29.06.2016:[9.0] "Edge is one of my favourite wrestlers. I really like his character as the ultimate opportunist. When he retired, I was really sad. He is one of the best to step in the ring and has one of thebest gimmicks of all time with good in-ring abilities."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JordanACEwrote on 27.06.2016:[10.0] "The Ultimate Opportunist is one of the most iconic wrestlers in the past 10 years, from his legendary feuds with John Cena to his amazing feud with Chris Jericho, he was always entertaining. A true legend of the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Sick Lebowskiwrote on 14.06.2016:[10.0] "Gehört zu meinen Lieblingswrestlern der jüngeren Vergangenheit. Schade, dass er seine Karriere schon recht früh beenden musste. Im Ring ziemlich stark, am Mikro auch gut und in manchen Skits z. B. mit "Bruder" Christian und Kurt Angle zusammen absolute Weltklasse. Lange Zeit einer der Wenigen, auf die ich mich während des WWE-Schauens gefreut habe, ihn zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Grisham1986wrote on 04.06.2016:[7.0] "A very, very good contemporary heel. Edge had a similar backstory to Austin, who got a little inconsistent in the ring after a terrible neck injury and - at the same time - reached the proverbial stardom with a new character. However, I can't help but think most of his resumee, title-wise, is unjustified, especially between 2008 and 2009. Still, I can't really dislike Edge. Most of his matches with Cena and Undertaker were legitimately among the most entertaining in the late 2000s."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: thetruenaitchwrote on 20.05.2016:[9.0] "One of the best talkers, greatest workers and rightfully most decorated superstars in WWE. His 2002 run is simply flawless and could still bust out high-quality performances for eight years, and constantly at that, after an almost career-halting neck injury."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: WrestlingNerdwrote on 06.04.2016:[10.0] "Ich mochte Edge schon immer. Fing als Tag Team Wrestler an, im Team mit Christian einfach genial... ich sag nur 5 second Pose! und danach auch als Singles Wrestler eine WUcht. Er hat wirklich den Sprung aus einem Tag Team hin zum guten bis sehr guten Einzelwrestler geschafft.  Bei ihm passte einfach alles, meiner Meinung nach. Fängt beim In-Ring Können an, geht über die Musik und den Auftritt und das Charisma bis hin zu seiner Art. Wenn man ihn so in Interviews hört oder bei Shows, merkt man er ist ein absolut lustiger und Sympathischer Typ. und er schaffte eins, was nicht viele umbedingt schaffen, er funktioniert perfekt als heel aber auch als Face. 10 Points for the Rated-R-Superstar Edge!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Longa-46wrote on 09.03.2016:[10.0] "Edge ist einer der besten Heels, allgemein ein klasse Gesamrpacket. Grandios am Mic, seine Promos waren auch immer gut und Charisma hat er auch sehr viel. Er funktioniert als Heel sowie auch als Face einfach perfekt. Egal ob im legendären Tag Team mit Christian oder als Single Wrestler. Man muss nur mal an die Fehden mit dem Taker, Foley oder auch John Cena denken. Einfach grandios. Schade dass er zurücktreten musste, er war einer der Besten in der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LegendaryDeadmanwrote on 02.03.2016:[10.0] "Kann meinen Vorrednern nur zustimmen.   Der (! ) perfekte Heel, dazu als Face auch gut funktioniert später.  Er ist einfach Mr. World Heavyweight Champion. Wenn man mal an die klasse Jahre um 2007 zurückdenkt.  Tolle bis unvergessliche Matches auch im Tag Team Bereich, vorallem mit Christian.  Am Mic für mich mit einer der besten aller Zeiten.  Im Ring gut, aber nicht perfekt.   Will dafür aber dennoch keinen Punkt abziehen. Er hat mich einfach über Jahre sehr gut unterhalten. Schade dass er so früh in den Ruhestand musste... Hätten noch 5-10 gute Jahre mit ihm werden können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheLoudMouthwrote on 17.02.2016:[10.0] "Edge... was soll man groß zu ihm schreiben? Neben Chris Jericho der beste Heel derzeit, den die WWE zu bieten hat. Großartige In-Ring Skills, starkes Micwork und anständige Promos. Glatte 10 Punkte. (Bewertung vom 30. 10. 2009) --- UPDATE: Sehr, sehr schade, dass Edge seine Karriere frühzeitig beenden musste. Einer der besten Heels, die ich jemals erleben durfte. Authentisch, tolles Micwork, gute In-Ring-Skills. Er hat sein Gimmick als Ultimate Opportunist wirklich perfekt rüber gebracht, war zudem auch als Face mehr als ordentlich. Danke für die tollen Wrestling-Momente, Mister Copeland!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MAGICIANwrote on 11.02.2016:[10.0] "Edge ist einer der besten Worker, der besten Heels und allgemein der besten Superstars, die die WWE je hatte. Ob im sehr unterhaltendem Tag Team mit Benoit, ob als Heel mit Lita oder zusammen mit La Familia, einfach großartig. Auch als Face konnte er glänzen. Ein tolles Gesamtpaket. Im Ring ist er ebenfalls sehr gut und einfach nur awesome am Mikrofon. Seine TLC Matches, sowie seine Fehden mit dem Undertaker, Mick Foley oder John Cena werden wohl nie vergessen sein. Auch die Ausstrahlung.... er hatte einfach alles, was man zur Spitze in diesem Business braucht. Volle 10 Punkte. Eine großartige Karriere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Pizzafahrerwrote on 25.01.2016:[10.0] "Nenne mir einen Wrestler der durchweg alles mitbringt, was man in diesem Business braucht: The Rated R Superstar Edge! Man was habe ich Ihn immer gefeiert. Dass seine In-Ring Karriere aus und vorbei ist, ist definitiv ein Verlust.  Dafür ist die Vorfreude auf seine Network Show mit Christian um so größer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Zedwrote on 08.01.2016:[10.0] "Edge hatte eine beeindruckende Karriere. Vom Jobber aus Ontario zum Mehrfachen World Champ und Hall Of Famer.  Er zeige damals schon nach dem Split der Brood dass er Charismatisch ist und eine Menge drauf hatte. Im Tag Team mit Christian an einigen der besten Tag team Matches beteiligt, und ich meine damit nicht nur TLC Matches. Schien dann allerdings in der Midcard zu versauern und seine Karriere stagnierte etwas zwischen 2003 und 2005.  Dan kam die Fehde mit John Cena und der Aufstieg in das Main Event. Dort zeigte er als Heel wieviel Potentiel wirklich in ihm steckte.  Schade dass er sich nicht selbst sein Karriereende aussuchen konnte, jedoch scheint es ihm ohne das Wrestling auch gut zu gehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: awesomepunkwrote on 03.12.2015:[10.0] "Edge war einer der besten Wrestler, den es je gab. Vom Charisma bis hin zur Leistung im Ring war er einfach Klasse und hat alle seine Rollen super gespielt. Sein gezwungener Rücktritt war ein ganz ganz großer Verlust für die WWE und für das Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Phenomenal91wrote on 09.11.2015:[10.0] "He was a modern day legend. Very sad that it came to such a sudden and untimely end. But what a journey! From "our nuts rule all" to the Rated R Superstar, Edge had so many highs during his short but long career it's dizzying to think about. He is truly what the ideal modern day wrestler was, a 10 in all departments, capable of anything and everything in the ring. And on the mic, he could make you laugh or piss you off so badly you'd want to throw a brick at the TV just to shut him up. But it was never boring when Edge was out there, good or bad. He richly deserves his early entry into the Hall of Fame and I'm glad to see him enjoying his retirement with an acting career. Anything less than a 10 is an injustice. He was a legend in his time, and now one beyond it too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Der Rated R Superstar war auch einer der Besten. Edge ist eine Legende, dass er für immer aufhören musste finde ich sehr sehr schade."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jacobphillipswrote on 13.09.2015:[10.0] "had it all. good on the mic, great heel, over 30 championship reigns in wwe, excellent matches and was by far one the most entertaining stars in wwe history. his extreme spots were awesome to watch"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: PWCwrote on 20.06.2015:[10.0] "My favorite wrestler of all-time and one of the very few I'll give a 10 to. Great look that would wear cool trench coats to the ring. Edge has done it all. Edge had sickening ladder matches with Christian in 2001. Edge won the very first Money In The Bank Ladder Match in 2005, before the match type itself hardly matters anymore. His live sex celebration with Lita in January 2006 was the most watched episode of Raw for the year. His feud with Matt Hardy in 2005 was great and there actually a GOOD reason why everyone hated Edge so much in 2006. After Lita was left go, it actually made sense why Edge was together with Vickie, and so on and so forth. Edge was the first person to create a custom belt (besides John Cena) with a cool Rated R title belt and so on and so forth. Not to mention an individual with an actual theme song with Alter Bridge. Thank you Edge! Thank you Edge!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MusSanwrote on 20.05.2015:[10.0] "Bei seiner aktiven Zeit war er mein lieblings Wrestler. Schade das es seine Karrire beenden musste. Einfach eine wrestling Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jbbhammywrote on 15.05.2015:[10.0] "Amazing wrestler, great career, deserved all the World Titles he got. Still to this day, I believe, had the best Spear in the WWE. Shame he had to retire due to injuries and things. He was involved in some of the best matches of all time. His feud with the Undertaker in, I think 2008, was one of the best feuds ever and produced some amazing matches. He always delivered as a wrestler and on the mic and at one time, I truly hated him even though I knew he was good and that's exactly what you want from a heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: robertothefirstwrote on 02.05.2015:[10.0] "Edge ist einfach der beste Heel Allerzeiten! Egal ob mit Lita, Vikie oder auch alleine er konnte mich immer total überzeugen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Joel DXwrote on 26.04.2015:[10.0] "Einer der Fassettenreichsten Wrestler. Sehr gut als Heel, aber auch als Face Top. Man brauch sich nur seine legendären Ladder-Matches anzugucken. Er war sowohl am Mic als auch wrestlerisch sehr gut, zudem sehr charismatisch. Er war nicht nur als Singles-Wrestler Top, auch im Tag-Team mit Christian oder mit Randy Orton konnte er überzeugen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Viper99wrote on 20.03.2015:[10.0] "Es ist einfach so traurig das dieser Mann seine Karriere so früh beenden musste. Er war einfach ein Großartiger Entertainer! Er war ein Gesamtpaket! Er hatte Charisma, Er war Großartig am Mic, Fantastisch im Ring und wohl der beste Heel der Modern Era! Aber auch früher im Tag mit Christian hat er grandiose Matches gegen ua. Die Hardys oder die Dudleys gehabt. Edge ist so ein Wrestler der Perfekt scheint! Und meiner Meinung nach war er das auch!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ganymedwrote on 04.03.2015:[10.0] "Positiv ist seine Ausstrahlung als Heel und seine schauspielerische Leistung. Seine Ausstrahlung hat was, seit seinen Anfängen in der Brood hat er mich in der Hinsicht begeistert. Auch seine Schauspielkunst war überragend, sei es als Comedy-Part im Team mit Christian oder als arroganter, feiger Heel. Lediglich als Face war er in der Hinsicht langweilig, aber da er meist eh als Heel unterwegs war, sehe ich darüber hinweg.  Punktabzug gibt es für seine Arbeit im Ring. Rein ringtechnisch fand ich ihn ziemlich langweilig, lediglich in seinen Anfängen als Tag Team Wrestler konnte er mich überzeugen.  Edit: Gerade mal meine Bewertungen überprüft, weiß nicht, wie ich darauf gekommen bin, Edge mit befriedigend zu bewerten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Y2J316wrote on 28.11.2014:[8.0] "Guter Wrestler und habe ihn auch immer gerne gesehen. Seine Fehde mit Cena 06 bleibt da doch im Gedächtnis hängen. Später mit Vickie kams mir zwar hoch aber trotzdem mag ich ihn. Schade das er seine Karriere vorzeitig beenden musste. Auch zurrecht in der Hall of Fame."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Muyo90wrote on 23.11.2014:[9.0] "Als Tag Team Wrestler mit Christian schon phänomenal, das wahrscheinlich beste Tag Team was die WWE je hervorgebracht hat. Seine Solokarriere hat das dann nochmal übertroffen. Trotz seiner athletischen Ausstrahlung konnte er gegen jeden Main Eventer mithalten und hat unfassbare Matches gezeigt. Zwei die mir besonders in Erinnerung geblieben sind: Das HiaC Match gegen den Undertaker und das TLC Match gegen John Cena.  Ein großartiger Athlet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KASHwrote on 26.09.2014:[9.0] "Edge war immer ein Sonderling in der WWE Main Event Welt. Für mich war er um 2002/03 vom Standing her dort, wo er hingehört. Im Ring war er durchaus gut, Charisma ist auch auf guter Höhe vorhanden, aber irgendetwas fehlte mir bei ihm zum großen Sprung nach oben und zum vollem Anerkennen der Seriösität. Allerdings bietet das Wrestling das Potenzial, dass nicht immer "der beste" der Champion wird, sondern es auch der trickreichste sein kann. Das "Ultimate Opportunist"- Gimmick hat ihn dann doch noch zum perfekten Main Event Charakter gemacht. Einen wie ihn wird es dann doch lange nicht mehr, vielleicht auch überhaupt nicht mehr geben (Da nur noch mono World title vorhanden)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: 8BitLegendwrote on 21.09.2014:[8.0] "Edge ist ein super Typ und hatte eine vergleichsweise kurze, dafür sehr bemerkenswerte Karriere. Unterm Strich fand ich ihn ein klein wenig overpushed. In der Liga eines Shawn Michaels oder Undertakers habe ich ihn nicht gesehen, allerdings war er teils sogar erfolgreicher in den 2000er als die beiden genannten. Es ist schade für uns Fans, dass er so schnell aufhören musste, aber gut für ihn, dass er rechtzeitig die Reissleine gezogen hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DolphRyderHawkinswrote on 16.07.2014:[10.0] "Absolutely Incredible Wrestler Maybe The Best I EVER SEEN I Think All The Titles He Won Were Deserved"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: zackwoowoowooryderwrote on 22.04.2014:[10.0] "Für mich einer der besten die je in diesem Business aktiv waren. Seine In-Ringqualitäten sind unbestreitbar, aber auch am Mic eine Legende, fand ihn immer sehr lustig und unterhaltsam, egal ob als Heel oder als Face. Eine Szene die ich nie vergessen werde, war die Szene, wo er zusammen mit Jillian am Glücksrad "Right Round" von Flo Rida singt, eine richtig lustige Szene. Leute wie Edge gibt es nicht zweimal, jemand der sich so für die WWE eingesetzt hat und auch junge Talente gefördert hat, aber ist trotz seiner Erfolge immer auf dem Boden geblieben ist und dafür respektiere ich ihn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Edge and Christianwrote on 20.04.2014:[10.0] "Langsam aber sicher gehen die großen Stars der WWE und man muss hoffen das die WWE wieder ein paar Talente findet und auch fördert.  Edge war genial.  Ob als Tag Team mit Christian, das mein Lieblingsteam war, als Heel wo er mir außer mit Vickie damals immer gut gefiel oder als Face wo er z. B. gegen Del Rio die Fans mit Christian auf seine Seite zog und einfach nur irre lustig war.   Ich fand es damals echt schade, dass er aufgehört hat und es ist wohl bezeichnend was an ihm verloren ging, wenn ich sage, dass ich wenige Monate später aufgehört habe Wrestling zu schauen.  Jetzt nach drei Jahren Abstinenz vom Geschehen schaue ich wieder vile seiner alten Matches und hoffe, dass er wieder einige Auftritte, z. B. als Host, Kommentator oder Manager hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Klinsi89wrote on 10.02.2014:[10.0] "Dieser Typ hatte einfach verdammtes Charisma. Wusste mich immer zu überzeugen und war lange Zeit mein Lieblingswrestler. Durfte auch ziemlich viele Erfolge feiern: Royal Rumble, King of th Ring, Money in the Bank und diverse Titel als Single und Tag Team Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RepoManwrote on 10.01.2014:[6.0] "Für mich absolut überbewertet, klar er ist ein Allroundtalent vorallem am Mic, nur wurde das Gimmick schnell nervig."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: edge4everwrote on 25.12.2013:[10.0] "Mich wundert es nicht das Edge leider seine Karriere beenden mußte bei den Spots die er gezeigt hat. Er ist und bleibt mein lieblings Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ratedrkowrote on 25.12.2013:[10.0] "The Ultimate Opportunist, der wohl beste Wrestler, der jemals in der WWE gearbeitet hat!  Er wurde soviele Jahre lang unterschätzt und es hat es später allen gezeigt!  Edge war mit einer Leidenschaft beim Wrestling wie kaum ein anderer!  In jedem Match hat er alles gegeben, selbst Wrestler mit schlechten Skills konnte er zu Höchstleistungen treiben.  The Rated R Superstar hatte einfach das Gesamtpaket. Grandiose Promos, Storys und Matches!  Wenn dieser Mann keine 10 Punkte verdient hat, dann hat es sicherlich keiner.  Ein unglaublicher Verlust für die Wrestlingwelt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: yanuswrote on 15.12.2013:[5.0] "Edge is a wrestler, who I have real problems to properly rate. Good look, but a poor physique. Good on the mic, but also declined drastically in that regard in the last years of his career. Charismatic, but his mimic and expressions were sometimes ridiculous. Average at best in the ring - only very good in hardcore or gimmick matches. Overall,  Edge has as many positives as negatives, so a 5 rating appears to be fair."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: tgwrote on 26.11.2013:[10.0] "Edge ist jemand, den man in Anbetracht der aktuellen WWE-Shows einfach nur vermissen kann. Bis 2005 bzw. Anfang 2006 hatte ich persönlich nicht einmal die größte Ahnung, was in diesem Mann schlummert. Mit seinem damaligen Titelgewinn gegen Cena und allem, was in den folgenden Jahren um und mit diesem Mann in den Shows passierte, avancierte er aber schnell zu einem meiner All-Time-Faves im Mainstream-Wrestling. Überragender Heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Undertalkerwrote on 11.11.2013:[10.0] "Schade, dass er seine Karriere so plötzlich beenden musste! Er war ein Komplettpaket! Auch wenn er in seiner Beliebtheit nie an die ganz ganz großen des Business herangereicht hat, war in Edge doch, egal ob es um Charisma, In-Ring-Skills, Micwork oder Staraura geht, einfach alles zu finden. Er war ein in seinem gesamten Auftreten einzigartiger Worker, der nach seiner verkorksten Rückkehr im Jahr 2004, etwa ein Jahr später als Rated-R-Superstar, das für ihn passende Gimmick fand. In diesem konnte er seine Stärken vollstens ausleben und uns unvergessliche Momente und Matches bescheren. Am stärksten wird mir wohl für immer die Zeit bei Smackdown in Erinnerung bleiben, in der er seine wöchentlichen Intrigen rund um General-Managerin Vickie Guerrero spann und so ständig versuchte, das für ihn Günstigste herauszuholen. Für mich war dies die beste Charakterzeichnung seiner Ultimate-Opportunist-Attitüde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Daneraswrote on 03.11.2013:[9.0] "Ich habe ihn nicht gemocht. Aber ehrlich, seine Gimmicks waren nicht langweilig! Sondern spannend! Ich habe mich ab und zu wegen ihn aufgeregt. Er hat uns gute Unterhaltungen gegeben. Er kämpfte auch sehr schnell, und hatte viel technisch darauf! Er hüpfte auch gut, und war flink! Schade für seine Karriere. Ich hoffe, er kann trotzdem weiterhin im Wrestling mitwirken, bsp. als Coach, oder was auch immer. Viele können sicher von ihm viel lernen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ProRedstonewrote on 02.11.2013:[10.0] "Als Heel und als Face einfach großartig, einer der bester Worker die es je gab ...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheWALLwrote on 27.10.2013:[10.0] "Ohne ihn wäre ich kein Wrestling Fan. Er hat mir gezeigt das Wrestling der beste Sport der Welt ist. Un dafür bekommt er 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: WCW Foreverwrote on 19.10.2013:[10.0] "War ein ganz großer der in jeder Rolle zu überzeugen wusste, sehr schade das er nicht mehr in den Ring kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jun Kasaiwrote on 14.10.2013:[10.0] "Guter Wrestler mit viel Charisma und enormem Talent am Mikro, der zu fast jedem Zeitpunkt seiner beeindruckenden Karriere zu überzeugen wusste: Ob im genialen Team mit Christian, seiner Zeit als Midcarder oder später im Mainevent. Ein großer Verlust für die Wrestlingwelt und ein würdiger Hall of Famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: goofy1991wrote on 12.10.2013:[10.0] "Für mich das volle Paket: am Mic extrem stark, viel Charisma, gut im Ring, sowohl im Tag-Team als auch als Singleswrestler. Leider musste er seine Karriere viel zu früh beenden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: koeddylaemmlewrote on 19.09.2013:[9.0] "A simply amazing career cut far too short, but when you give as much as Edge gave on a weekly basis you'd be pretty freakin' messed up too. Edge left us with so many memorable moments and will always be remembered fondly by fans even though a large majority of his success came as a smug heel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "War mein Lieblingswrestler bevor er aufgehört hat, alleine schon das Match gegen Mick Foley ist schon eine 10 Wert, einer der besten Heels den die WWE jemals hatte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[10.0] "Vom Tag Team Champion über diverse IC-Titelgewinn in den Wrestling-Olymp. Was er erreicht hat, macht so schnell niemand nach, auch wenn die Gürtel in der WWE immer weniger wert erscheinen, so glänzt Edge mit einem Royal Rumble Sieg, dem erfolgreichen Einlösen des ersten Money-in-the-Bank-Koffers sowie dem Sieg des KotR-Turniers! Zu Recht ein Hall-of-Famer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: HighlightHEELwrote on 20.08.2013:[10.0] "Mein absoluter Liebling zu meiner Zeit als Mark. Auch danach noch mein absoluter Liebling. Und, nebenbei, mein All-Time-Fave. Im Ring ganz oben dabei. Sein Rated-R/Ultimate Opportunist Gimmick ist vermutlich mit das Beste der neueren Zeit. Ach ja, zu seiner besten Zeit war er der absolut beste Heel im Business. Als Face immer noch gut, aber niemals so überragend wie als Heel. Sehr gute Fehden, z. B. gegen John Cena. Eine geniale, gegen den Undertaker. Sein Micwork in seiner Hochzeit ist eines der wenigen, was für mich an Chris Jericho (mein Mic-Fave) dran kommt. Leider in der Spätphase seiner Karriere durch seinen verdammten Nacken ein wenig eingeschränkt. Nach seinem Rücktritt hat mich erst der "Summer of Punk" wieder dazu gebracht, WWE zu gucken. Edge, I still miss you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Palace of Wisdomwrote on 14.08.2013:[10.0] "Edge. Einfach nur Edge. Er spielt für mich in einer Liga mit den größten. Dieser Mann hat mir so viele wunderbare Wrestling Erinnerungen geschenkt und meiner Meinung nach, immer alles gegeben. Sein Karriereende kam viel zu früh und er fehlt mir noch heute. Im Ring und am Mic über jeden Zweifel erhaben. Einer der besten Heels aller Zeiten und jemand dem man die Liebe zum Wrestling immer geglaubt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: gil3boywrote on 11.08.2013:[10.0] "Great wrestler and mic talker, he was one of the guys that put their bodies on the line the most. He deserves every title he won! LEGEND"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Chris1201wrote on 06.08.2013:[10.0] "Mein All-Time Favourite! Zurecht! Ein sehr guter Wrestler mit sehr guten Mic Fähigkeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Boris The Menacewrote on 20.07.2013:[5.0] "I just never understood what wrestling fans found in Edge, an average worker at best that has no place in any Hall of Fame out there."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sir Vida Loca IIIwrote on 07.07.2013:[6.0] "Meiner Meinung nach einer der überschätztesten Wrestler der letzten Jahre. Am Mic war er zwar immer sehr unterhaltsam, im Ring war er jedoch höchstens durchschnitt. Allein die ganze TLC und Ladder Matches welche Edge gerne zugesprochen werden, wenn man sich dies anschaut sollte man mal drauf achten, er bekommt immer am wenigsten ab. Natürlich ist dass schlau von seiner seite aus, auf der anderen darf man ihn zumindest in diesen Klassikern dann aber keinen zu großen Lob zukommen lassen, weil er absolut austauschbar gewesen wäre."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: alsdncjswo34wrote on 04.07.2013:[10.0] ""Langsam aber sicher gehen die großen Stars der WWE und man muss hoffen das die WWE wieder ein paar Talente findet und auch fördert. Edge war genial. Ob als Tag Team mit Christian, das mein lieblings Tag Team war, als Heel wo er mir außer mit Vickie damals immer gut gefiel oder als Face wo er z. B. gegen Del Rio die Fans mit Christian auf seine Seite zieht und einfach nur irre lustig ist. Ich finde es schade das er aufhört aber es ist besser als das wir ihn in einem halben Jahr im Rollstuhl sehen. Ich hoffe das er einen Platz hinter den Kulissen oder auch als Kommentator oder so bekommt damit er uns allen erhalten bleibt. Edge I miss you! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Valerionwrote on 14.06.2013:[10.0] "Edge ist das totale Package! Er kann wrestlen, hat einen guten Körper und war ein Gott am Mikrofon und des Schauspiels.  Mein absoluter All-Time-Favourit! Hat bewiesen das man es entgegen der Meinung aller mit dem 100% Willen bis an die Spitze schaffen kann! Der Rücktritt war ein schwarzer Tag in der Geschichte des Wrestling! Thank you Edge!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DaNiwrote on 13.06.2013:[7.0] "Ein Superstar der die neue Ära sicher prägte. Seine Laddermatches waren grandios, auch seine Fehden gegen John Cena und die Soap um Lita waren gut verkauft. Leider mag ich Edges In-Ring Stil nicht besonders. Der Stil ist eigenartig und besonders aber eben nicht meins. Mit guten Kontrahenten hat er dennoch sehr unterhaltsame Matches abgeliefert."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Lecterwrote on 06.06.2013:[8.0] "Very good promo, very charismatic, very into his role. Had good matches on occasion, but a pretty weak moveset and some soft-looking offense. Still carved out a great career for himself."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: PercyWatsonwrote on 22.05.2013:[10.0] "Klasse im Ring und am Mic. 2007/2008 bin ich angefangen Wrestling zu schauen, Edge in der Fehde gegen den Undertaker war wohl der Hauptgrund es weiter zu verfolgen. Schade das er seine Karriere beenden musste. Vielleicht kommt er irgendwann als GM oder in anderer Rolle zurück. Ich würde mich freuen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheIbarwrote on 03.05.2013:[10.0] ""Thank you, Edge! " For me Edge is the greatest professional wrestler of all time. When I was a kid, I saw him on WWF SmackDown TV Show in 2000 (and that was extremely awesome to become a fan of professional wrestling in Russia when pro-wrestling wasn't as global as now) and from the first show I've seen to WWE WrestleMania 27 he made me proud of being a professional wrestling fan. And it's so awesome that I caught Edge and Christian times, because that was the funniest, the most entertaining, simply one of the best teams in wrestling history. Edge has provided so many brilliant and fantastic moments and matches along with Christian, The Hardy Boyz, The Dudley Boyz, Lance Storm, Rhyno, Owen Hart, Michael Hayes, Gangrel, Test, William Regal, APA, Kurt Angle, Chris Jericho, Chris Benoit, Eddie Guerrero, Vickie Guerrero, Randy Orton, Ric Flair, Shawn Michaels, Mick Foley, Batista, The Big Show, Kane, The Undertaker, Rob Van Dam, Rey Mysterio, John Cena, Lita, Triple H, Jeff Jarrett, Dolph Ziggler, Alberto Del Rio, Curt Hawkins, Zack Ryder. His charisma, his in-ring abilites, his mic skills, his truly Rated R actions, his rivalries, his passion for this business, his work rate, his cutting-edge promos, his matches – all of these made Edge what he is today – one of the greatest Hall Of Famers in the history of this industry. Words can't describe how perfect this man is for me. I just want to thank him for his illustrious career in WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: believeintheshieldwrote on 02.05.2013:[10.0] "Er hat mir im Ring richtig gut gefallen und hat seine Rollen immer voller Elan gespielt. Vor allem im Tag Team mit Christian hat er mir gut gefallen Meiner Meinung nach hat er sich 10 Punkte verdient"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Mountiewrote on 01.04.2013:[10.0] "Edge hat im Ring nicht die Extraklasse eines Michaels, eines Angle, eines Danielson erreicht, noch hatte er die körperlichen Voraussetzungen, die ihm eine Riesen-Karriere garantiert hätten. Als Gesamtpaket war er aber eben doch eine Klasse für sich. Er hat mit vollem Körpereinsatz jeden Charakter, den er hatte, zum Leben erweckt und mit dem als Rated-R Superstar seine Vollendung erreicht, die ihm auch eine vollendete Karriere bescherte. Er hat alles erreicht, was es zu erreichen gab - und dabei immer Freude bereitet. Das frühe Karriere-Ende hat ihm einzig die Phase genommen, in der er wie Michaels oder der Taker um seinen eigenen Mythos ein umjubeltes Alterswerk hätte aufbauen können. Schade, aber nicht zu ändern. Danke, Edge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: sebi7wrote on 28.03.2013:[10.0] "schade das er nicht mehr aktiv ist ein unglaublich charismatischer typ ist das und den spear beherrscht niemand so glaubwürdig wie er"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Epischer Namewrote on 20.03.2013:[10.0] "Einer meiner absoluten Lieblingswrestler. Er hat einfach alles :Das aussehen, das Charisma und natürlich konnte er mich einfach sehr gut unterhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Eagle Whiskeywrote on 06.03.2013:[4.0] "Pluspunkte gibt es für sein wrestlerisches Können. Minuspunkte für seine Angsthasen Gimmicks mit Vickie G. Ebenso für seine gesamte Person. Seine Performances am Mikrofon sind ohne Emotionen und gähnend langweilig. Seine Schauspielerischen Fähigkeiten sind gleich Null, seine Rollen spielt er dementsprechend unglaubwürdig. Für mich ein total überschätzter Wrestler."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jack Slaterwrote on 02.03.2013:[10.0] "Einer der wenigen die mich sowohl als Face als auch als Heel zu überzeugen wissen. Da ich eigentlich eher der Fan von Heels bin und Edge da wohl einer der besten überhaupt ist, seine In Ring Performances auch immer gut waren, sein Charisma sowieso genial ist und er auch am Mic was kann. There you go 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Diggertakerwrote on 14.02.2013:[9.0] "Great heel, great tag, great career, great move-set. But I think Spear doesn't fit him... maybe as a secondary move and almost a finisher like Triple H's spinebuster..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated R means Attitudewrote on 03.02.2013:[10.0] "Absolut genialer Mann hat über seine ganze Karriere hinweg keinesfalls gelangweilt, und immer gute Matches gezeigt. Dazu noch einige sehr sehr starke Fehden gehabt. Zum einen gegen Cena, gegen Matt Hardy und natürlich gegen Undertaker. Aber auch die Tag Team Matches mit Christian waren absolut stark. Die TLC Matches gegen die Dudleys und die Hardys sind heute noch absolute Lieblingsmatches von mir. Musste seine Karriere ja leider viel zu früh beenden. Allerdings wäre er meiner Meinung nach in einer anderen On-Air Rolle durchaus gut aufgehoben. Sein Mic-Work ist nämlich ebenfalls weltklasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: HeelJenniwrote on 05.01.2013:[10.0] "Eine Legende an den man sich in der Wrestling Welt auch noch in ein paar Jahren erinnern wird. Ich war immer ein sehr großer Fan von ihm, egal ob als Face oder Heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Yoyowrote on 21.11.2012:[10.0] "With dedication, passion, and tons of hard work, the Rated R Superstar left his mark in the world of wrestling, specially during the brilliant last five years of his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tobi23wrote on 05.11.2012:[10.0] "Für mich auf einer Stufe mit dem Undertaker! Als Face und als Heel überzeugend, technisch und charismatisch weltklasse, am Mic eine Grante. Einer der Besten der letzten 10 Jahre!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JuliTheCage87wrote on 28.10.2012:[10.0] "Immernoch einer meiner Lieblinge auf ewig. Im Ring wie am mic sehr gut, aber seine Ausstrahlung und die Gimmicks haben ihn zu dem gemacht, was er schlussendlich war: perfekt. Er hatte auch immer die richtigen Partner/Manager/Begleiter, sei es Lita, Vickie oder der andere Teil des besten TagTeams der WWE-Geschichte, CHRISTIAN."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LM Punkwrote on 30.08.2012:[10.0] "Ein top Entertainer der letzten Jahre. Sein Verlust ist heute noch bemerkbar in der WWE. Das Loch das er hinterlies ist noch nicht geschlossen, Er hatte doch sehr gute Feden die die WWE-Shows intressant gemacht haben. Bei ihm stimmte immer die Action im Ring, die Promos, einfach ein super Gesammtpaket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Hankinswrote on 22.08.2012:[10.0] "Ich glaube der unumgängliche Rücktritt hat seinem Legendenstatus sehr gut getan. Er ist in einer Zeit abgetreten, wo er auf dem Zenit seines Leistungsvermögens war und somit bleibt er bei Fans als fantastischer Wrestler und Entertainer in Erinnerung. Ich habe ihn wirklich gerne gesehen und hoffe, dass er seine "Rente" genießt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: dudemanbearpigwrote on 18.07.2012:[10.0] "Edge is easily one of the best wrestlers of the past decade, having been involved in many memorable matches and storylines. But the best thing about him is how he evolved throughout his career. He went from pseudo-Goth midcarder to comedy tag team wrestler to smiling pretty boy babyface to Rated R Superstar to respected veteran. It's a shame his career had to end when it did, but it was an amazing career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Franziwrote on 03.07.2012:[9.0] "Absolut einer der Besten. Schade, dass seine Karriere so früh zu Ende ging."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: VanderVaartwrote on 27.06.2012:[9.0] "Schade, dass seine Gesundheit nicht mehr mitmacht. "Glücklicherweise" erst kurz nach Wrestlemania.  Am Mic und im Ring eine feste Größe. Verdient erarbeitet hat er es sich durch spektakuläre TLC-Matches. Edge ist einmal durch einen Drogentest gefallen. Danke MITB schaffte der "Ultimate Opportunist" es als Heel an die Spitze und nutzte dann seine Chance auch. Edge hätte viel mehr Geld mit Filmen verdienen können, aber er lehnte zum Glück ab. Legendär sein grandioser Auftritt im "Mind of Mencia" 2006 als Kommentator im "The Royal Religious Rumble"."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Axel Browdywrote on 26.06.2012:[10.0] "Einer der besten Wrestler der jeh in einem WWE Ring stand, zu dem finde ich er ist verdient in der Hall of Fame gelandet. Er ist einfach mein Lieblingswrestler, und meiner Meinung nach ist er einer der größten, und besten Wrestler die es in der WWE gab!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: alewrote on 24.04.2012:[10.0] "Es gab eine Zeit früher als ich 12 oder 13 war, eigentlich noch totaler Mark und alle haben Edge gehasst, nur ich fand ihn immer richtig gut. Ob als Face oder Heel, den er am besten verkörpert, Edge bringt alles für einen Top Main Eventer mit. Seine In- Ring Skills waren immer gut, nur noch getopt von seinen sagenhaften Promos, meiner Meinung nach, mit Chris Jericho und CM Punk der beste Micworker in den letzten 10 Jahren (Rocky und SCSA mal ausgenommen). Edge war einfach mein Alltime Favorite und mir hats wirklich Tränen in die Augen trieben, als er seine Karriere beenden musste (Damn ninjas cutting onions). Zusammengefasst mehr als verdiente 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Prodirwrote on 24.04.2012:[10.0] "Edge ist seiner Linie treu geblieben, er hat sich seit seinem Debüt kaum verändert, was Wrestling-Stil, Promo-Stil, aber auch Rafinesse und Verstand angeht. Auf diesen Worker war immer Verlass, auch in schlechten Zeiten, denn einen Stich konnte er immer setzen. Sei es Extreme, ein Showstealer, ein Schocker oder eine Überraschung. Ohne Edge wäre die WWE nicht da, wo sie bis kurz vor 2012 stand. Seine Promos sind immer dann gut, wenn sie gut sein sollen. Steht er vor dem match of the Year, dann liefert er auch ein Match of the Year. Egal, ob Heel oder Face, seine Promos, seine Mimik, seine Gestik, sein Handeln zieht immer irgendeine Reaktion, und wenn er schon welche erhält, dann massiv. Er mobilisiert und war bisher das größte mediale und unterhaltende Zugpferd der WWE. Seine Karriereende kam dazu abrupt, doch gebührlich verabschiedete man ihn und gibt ihm nun 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: xirxes69wrote on 08.04.2012:[10.0] "One of the most entertaining superstar in this decade, especially when he was a heel.  I will put him in top 50 wrestler of all times .. and top 10 heel of all times"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: NoHomewrote on 20.03.2012:[9.0] "Zu seiner aktiven Zeit einer der besten und spektakulärsten Wrestler der WWE. Super Worker am Mic absolut solide. Schade das er seine Karriere beenden musste."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kid Rockwrote on 09.03.2012:[10.0] "Edge hatte ohne jeden Zweifeln eine der wohl abwechslungsreichsten und komplettesten Karrieren in der jüngeren WWE-Vergangenheit, brachte mit jeder Rolle die er im McMahon-Imperium darstellte, ob als nerdiger Comedy-Heel im E & C-Gespann, unberechenbarer Psycho-Heel, oder in seiner Paraderolle als Ultimate-Opportunist, einen enormen Unterhaltungswert mit sich und sorgte auch innerhalb des Seilgevierts, wenn auch nicht auf Weltklasse-Niveau, für konstant starke Kost. Mich hat der Mann jedenfalls schon immer begeistern können, auch wenn nicht jede Phase seines WWE-Runs nach Plan verlief (allen voran der substanzlose als konturloses Babyface nach seinem Comeback 2004). Schließlich fand er 2006 als Rated-R-Superstar seine beste Rolle, sorgte mit fantastischen Fehden gegen Mick Foley, John Cena, Shawn Michaels etc. für großartiges WWE-TV ehe seine Karriere den qualitätstechnischen Höhepunkt in seinem Run als Top-Heel von Smackdown 2007 und 2008 und der Fehde gegen den Undertaker fand. Seine Risikobereitschaft und sein Einsatzwille die uns schließlich die unvergesslichen TLC-Kämpfe zur Jahrtausendwende brachten, bleiben dabei fast schon eine Randnotiz. Sein zwangsläufig daraus resultierendes Karrierende ist tragisch, keine Frage, aber die vom charismatischen und unendlich talentierem Kanadier gezeigte Vernunft, sich für seine Gesundheit zu entscheiden und seine großartige Karriere dafür zu beenden, macht ihn für mich sogar noch sympathischer als vorher. Die HOF kann kommen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Marlowewrote on 20.02.2012:[10.0] "Hat mir als Heel am besten gefallen, ich habe ihn gehasst. Schade, dass er aufhören musste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Icebreakerwrote on 23.12.2011:[10.0] "Der Rated R Superstar ist einer DER Topathleten der WWE. Bei ihm stimmt einfach alles: der Look, der In-Ringskills, das Micwork etc. Es macht einfach Spaß diesem Mann zu zu sehen, man sieht ihm seine Leidenschaft fürs Wrestling einfach an. Ohne ihn wäre die WWE bei weitem langweiliger. Sympathisch und cool kommt er daher und überzeugt sowohl als Face als auch als Heel, als Einzel- oder Tagwrestler. Als Heel sucht er natürlich seines gleichen und nur wenige können sich mit ihm messen, aber mich störte einfach das er in den letzten Tagen als Heel zu wenig zeigen durfe. Seine Titelverteidigungen waren ständig nur DQs, Edge durfte in den letzten Monaten als Heel einfach zu wenig zeigen, deswegen freue ich mich jetzt das er Face ist. Doch mir ist es egal was er ist, er fasziniert einfach. Einer meiner absoluten Lieblingswrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: EnemyOfJusticewrote on 04.12.2011:[10.0] "Als Heel habe ich ihn in meiner Markzeit so gehasst, das soll schon was heißen. Hatte seine beste Zeit mit der "Familia", aber vorher und auch nachher immer ein Einschaltgrund. Ich denk, man braucht nichts mehr über die außergewöhnlichen Qualitäten Adams zu sagen. Thank you, Edge... Adam Copeland! Ich vermisse ihn wirklich und wünsche ihm noch ein schönes Leben und würde es begrüßen, wenn er häufiger mal die WWE besucht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Teekaywrote on 27.10.2011:[8.0] "Ist leider aufgrund seines Gimmicks oft unter seinen Möglichkeiten geblieben. War aber ein Klasse Heel."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheCMMizNexuswrote on 06.10.2011:[10.0] "Im Ring stark, Charisma ohne Ende und stark am Mic dazu : 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MaikBaaderwrote on 23.09.2011:[7.0] "Guter Wrestler mit einigen wirklich guten Matches. Als Single Wrestler gut, allerdings fand Ich Ihn als Tag-Team Wrestler doch besser. Ändert aber nichts daran, dass er sein Job als Singles Wrestler gut rübergebracht hat. Schwanke zwischen 7 und 8 (7. 4 P). Da dies hier nicht möglich ist runde Ich mal ab."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DanielBryan1986wrote on 22.09.2011:[10.0] "Edge sah ich bereits seid seiner Tag Team Zeit mit Christian. Mir gefielen die TLC Matches zwischen den Dudleys, E&C und den Hardys nur bedingt. Als sich das Team E&C trennte dachte ich alles klar Midcarder. Allerdings in der Fehde mit Kurt Angle überzeugte er mich ebenfalls. 2004 und 2005 war eher der schleichende Main Event Aufstieg der leider nach dem MITB Einlösung durch Over Cena beim Rumble gestoppt wurde. 2006 wurde dann doch noch sein Jahr. Für mich ein Allrounder der einfach in der WWE ein großes Loch hinter lässt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rey2004wrote on 05.09.2011:[10.0] "Top Superstar - Sehr guter Team Wrestler noch bessere Singles Wrestler. Glaubwürdiger Main Eventer ob Heel oder Babyface. Auf einer Stufe mit den Allerbesten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated R Punkwrote on 04.09.2011:[10.0] "Als Heel war er einfach genial! Die Story damals gegen den Undertaker ist für mich Legendär! Edge hat einfach auch lange das SmackDown Roster getragen als Heel und mit ihn wurde es NIE langweillig! Auch als Face konnte er überzeugen (abgesehen von dieser Spear! Spear! Spear! Sache, die hat mich extrem aufgeregt) Edge hat sich auch wirklich hochgearbeitet vom Tag Team Wrestler zum dauer Main Eventer (nenn mir einen Wrestler der sich wirklich so hochgearbeitet hat) Am Mic rockt er extrem und auch seine Ring Skills sind für WWE Verhältnisse gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CM Punk und Edgewrote on 26.08.2011:[10.0] "Mit Punk mein absoluter Lieblingswrestler. Es gab einfach nichts was er nicht konnte, ich habe mich immer gefreut wenn er zu sehen war, denn dann hieß es: klasse Promos und/oder starke Matches. Ganz klare 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: swaswa96wrote on 22.08.2011:[10.0] "Einer der schmerzvollsten Verluste der WWE in den letzten Jahren. Er wird bestimmt mehr vermisst werden als Batista oder Chris Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: GTS Punkwrote on 16.08.2011:[10.0] "Besser geht es nicht. Sei es Mic-Work, In-Ring Qualität oder Unterhaltingwert.  Die WWE hat einer der besten Wrestler aller Zeiten verloren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Wuschl 85wrote on 16.08.2011:[9.0] "Ich finde seine Rolle als Heel einfach nur genial. Sein Micwork ist erste Sahne und momentan ist er für mich so ziemlich der interessanteste Worker im Kader der WWE. Edge konnte mich schon früher mit seinen tollen TLC-Matches begeistern (vor allem auch im Tag-Team mit Christian). Die Rolle des Heel passt zu ihm, schon allein auf Grund der wahren Tatsache mit Lita und Matt Hardy. Seine wrestlerischen Skills sind unbestritten hochwertig aber ich denke auch noch etwas ausbaubar. Ich sehe in ihm noch viel Potential wenn ich z. B. das Match von WM 22 sehe, außerdem ist er immer für eine Überraschung gut. (siehe Vickie Guerrero) Ich gebe mal 8 Punkte, da er noch viel ungenutztes Potential hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tribbel Eitschwrote on 14.08.2011:[9.0] "Ich fand Edge in der Rolle als Face okay. Nicht schlecht, schließlich konnte er ein Match stets spannend gestalten, hatte Charakter und Persönlichkeit und stellte dementsprechend gute Promos auf die Beine. Komplett begeistert hat er mich jedoch als Bösewicht, da war er meiner Meinung nach stets einer der besten seiner Zunft. Sein vorzeitiges Karriereende ist schade. Die Entscheidung war vom gesundheitlichen Standpunkt aus jedoch absolut richtig."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: WWE4evermaybewrote on 12.08.2011:[9.0] "Der Rated-R-Superstar weiß, wie man die Leute unterhält. Seine MitB-Cash-Ins waren mega. Seine Fehden gegen Cena und Taker waren göttlich. Und natürlich seine Promos, vor allem die des Psychos Edge, einfach unnachahmbar. Punktabzug gibt es, weil er mir als Face überhaupt nicht mehr gefallen hat. Außerdem sind seine Ring-Fähigkeiten auch nicht die volle Punktzahl wert, aber trotzdem, er fehlt der WWE. Vielleicht gibt es doch noch Hoffnung auf ein Comeback. Never Say Never."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Brainbreakerwrote on 04.08.2011:[9.0] "War ohne Frage einer der absoluten Top-Stars der Liga und ein perfekter Heel, wenn er gerade einmal Psycho-Edge sein durfte, was jedoch nur selten vorkam. Stärkste Phasen waren die Zeit kurz vor seiner Verletzungspause, als er schon am Mainevent kratzte und mit Rey, Angle und co regelmäßig Topmatches zauberte; dann als Ultimate Opportunist in einer Dauerfehde gegen Cena 2006 und in der Story gegen den Taker 2008.  Seit seiner Rückkehr Ende 10 war Edge ein wenig im Leerlauf eingefahren und konnte mich als Face nicht sonderlich überzeugen, wenngleich er immer ein Garant für gute Matches war. Insgesamt ein Superstar, der sich eine zukünftige HoF-Aufnahme redlich verdient hat. Für ne glatte 10 mangelte es ihm an schauspielerischer Wandelbarkeit, die dann einen HBK, Jericho oder Rock doch noch weiter abheben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The last Outlawwrote on 02.08.2011:[8.0] "Also, zu Edge muss ich sagen, das er für mich Persönlich einer der Besten Heels war, die Fehde mit dem Undertaker war spannen und vorallem unterhaltsam. Ich habe mich jedesmal geärgert wo er mit La Familia rauskam und den Taker alles mögliche in den Weg gestellt haben. Schade und traurig, das er seine Karriere beenden musste. Dafür war sein Abschied schön."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Darkiwrote on 29.07.2011:[10.0] "Schade das er seine Karriere so früh Beenden musste. Er war wirklich ein sehr guter Wrestler. Vor allem in der Fehde mit den Undertaker hat er besonders geglänzt. Wo er am ende den Psycho gespielt war einfach nur genial. Und im Ring war er sowieso immer sehr sehenswert.  Wirklich schade, er hat auf jeden Fall ein großes Loch hinterlassen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Michael Shawn Hickenbottomwrote on 29.07.2011:[10.0] "Ich ziehe den Hut vor Edge (ebenfalls wie vorm Undertaker^^) . Aber er hat sich in über 12 WWE Jahren zu einem der besten Superstars entwickelt. Sein Karriereende erschütterte jeden Wrestlingfan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JohnOlafBlackwrote on 26.07.2011:[10.0] "hat für mich eine Ära geprägt, super am Mic, super Charisma, Matches waren nie langweilig mit ihm im Ring!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: tosi82wrote on 23.07.2011:[10.0] "Seine ganze Karriere ist einfach nur 10 Punkte wert. Allein was für Matches er hingelagt hat, vs Taker vs Jeff vs Foley, ... dazu kommen noch Klasse TLC & Tag Team Matches. Am Mic als Heel ist er einer der beste, aber auch als Face macht er sich gut. Er gehört in die Hof!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: NHJ2102wrote on 11.07.2011:[10.0] "The Rated R superstar... ein unglaublich guter Wrestler! Am Mic auch sehr unterhaltsam, genial storylines gefiel mir als single Wrestler bedeutend besser als beim Tag Team wobei da auch begnadete Matches abgeliefert wurden.. schade das er aufhören musste"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Orton7wrote on 26.06.2011:[10.0] "Edge ist einer der besten Heels aller Zeiten... Ich bin mal gespannt, wie er sich als Face nach seiner Rückkehr schlägt... EDIT: Volle Punktzahl bleibt auch nach seinem Karrierende... Ein ganz Großer ist von der Bühne verschwunden und ein herber Verlust für die Wrestlingwelt...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Donald Duckwrote on 23.06.2011:[9.0] "Als Heel war er einfach göttlich am Mic. Da kann man sagen was man will. Einer der besten aller Zeiten. Als Face dagegen, war er einfach nur miserabel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: nVVo-Fanwrote on 12.06.2011:[4.0] "Total überschätzt finde ich. Im Ring hat er mich enorm gelangweilt. Einzig am Mic war er ganz passabel."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kraeschwrote on 25.05.2011:[10.0] "Ein kompletter Wrestler / Superstar. Super am Mic. Super Mimik. Super im Ring. Dazu an einigen der denkwürdigsten Spots und Matches zumindest der WWE Geschichte beteiligt. Finde es toll, dass er als WHC Champion abtreten durfte, denn er hat es absolut verdient! THANK YOU Edge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Fabi89wrote on 19.05.2011:[10.0] "Edge kann ohne Zweifel behaupten, alles aus seiner Karriere herausgeholt zu haben. Hat wohl den Paradeweg für einen WWE Star hingelegt. Ausgehend von einem Debut als Tag Team Wrestler, als welcher er Geschichte geschrieben hat, konnte er sich mit der Zeit als interessanter, frischer Teil der Midcard etablieren und sich dann Stück für Stück in Richtung Main Event bewegen. Im Ring immer ansehnlich, lag seine größte Stärke jedoch darin, die jeweilige Rolle bis in das letzte Detail glaubhaft zu verkaufen. Als opportunistischer Heel grandios, später aber auch in der Face Rolle absolut gewinnbringend für die Shows. Es ist schade, dass er seine Karriere derart abrupt beenden musste, er hinterlässt jedoch unzählige tolle Erinnerungen. Einer zukünftigen Rückkehr in einer Autoritätsrolle oder dergleichen sollte zudem wohl nichts im Wege stehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tabowrote on 19.05.2011:[8.0] "Goodbye Edge! Schade drum. War einer der ganz großen. Obwohl er ab und zu etwas link und mit Sicherheit nicht immer fair "gekämpft" hat zählt/zählte er doch wohl zu den bekanntesten der WWE"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Johnny-Tennerwrote on 16.05.2011:[10.0] "Ich bin Froh den großten Teil seiner Karriere verfolgt zu haben, er war immer einer den ich immer wieder gerne sah. Zu keinem Zeitpunkt fand ich ihn langweilig. Egal ob wegen seinem Genialen Gimmick, seinem Aussehen, seinen Theme, ein schlichtweg genial Wrestler der beim verfolgen seine Karriere immer eine Geschichte erzählt. Edge der Tag Team Wrestler, Der Rockstar der als Opputunist einer der Erfolgreichsten Wrestler seiner Zeit würde, der mit seinem Legendenstatus dann zum Face turnt und sich feiern lässt. Er hat immer überzeugen können er konnte am Microfon die Fans unterhalten, sowie im Ring eine Geschiche erzahlen. 10 Punkte für eine tolle Karriere und dafür das er mich jede Sekunde unterhalten hat. Er zählt zu den Wenigen Glücklichen den ich immer mit 10 Punkten belohne und ganz bestimmt Ewig in Erinnerung behalten werde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Savior10wrote on 14.05.2011:[10.0] "leider hat er seine karriere beenden müssen , denn er war sowohl als heel und als face sehr stark!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: badboyswrote on 06.05.2011:[10.0] "Einer der besten Wrestler aller Zeiten geht in den Ruhestand, leider mit Edge geht mit Abstand mein persönlicher Lieblingswrestler von der großen Bühne, der alles hatte Charisma, in ring skills, mic work und ein sehr guter wrestler war. Edgehead for Life."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Charismatic Enigmawrote on 02.05.2011:[10.0] "Er war einer der komplettesten Wrestler/Sports-Entertainer, den es gibt. Technik, Intensität, Mic-Skills, Schauspieltalent. Im Team mit Christian einfach nur awesome und auch alleine in den letzten Jahren ein Garant für spannende Matches und unterhaltsame Storylines. Sei es in der La Familia vs Undertaker Story als genialer Heel, oder zuletzt als spaßiger Publikumsliebling. Er hat alles erreicht und kann erhobenen Hauptes abtreten. Thank you, Edge!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated R Champwrote on 28.04.2011:[10.0] "Edge schaffte es (ähnlich wie Chris Jericho), trotz klarem Main Eventer Status, nie restlos an die Spitze der WWE. Doch genau wie bei Jericho sehe ich den Fehler dabei nicht bei ihm, da er wirklich alles mitbrachte was es im Geschäft braucht. Im Ring war Edge zwar nicht erste Liga, aber dennoch ein starker Wrestler, der immer für gute und unterhaltsame Matches zu gebrauchen war. Am Mikro war der Mann sowieso top und zählt wohl zu den besten Heels, die die WWE jemals hatte. Edge brachte einfach ein Gesamtpaket, wie man es nur sehr sehr selten findet und die Tatsache wie lange und wie oft er sich für die WWE aufgeopfert hat verdient einfach Respekt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheUndertaker1986wrote on 28.04.2011:[3.0] "Ich weiss nicht was die Leute hier alle an Ä-T-S-C-H so toll finden?  Dieser Mann hat vielleicht gute fertigkeiten am Mikrofon aber sonst? Wrestlerisch nicht unbedingt das gelbe vom Ei und seit jahren gehört er nur noch zum B-Personal der WWE. Das sieht man ja alleine daran das Edge die letzte Zeit im B-Brand verbrachte. Klar war er vor 2 Jahren noch bei RAW aber wieviele Titel gewann er dort? Hab diesen Mann noch nie so sehr gemocht und ich werde es wohl auch nie. Einzig seine Fähigkeiten am Mic bringen Edge noch zu 3 Punkten wobei hier eher 2. 985 eher angemessen wäre... Edge Goodbye... Ich werde dich NICHT vermissen. Weder als Rated R Superstar noch als Adam Copeland alias Edge. In diesem Sinne eine angenehme Rente Ä-T-S-C-H"
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CemeteryKeeperwrote on 27.04.2011:[10.0] "Edge gehörte schon immer zu meinen absoluten Faves. Als Heel hat man ihn absolut gehasst, aber auch als Face konnte er wunderbar Überzeugen. Edge hat Geschichte geschrieben! Erste TLC Matches, erstes Money in the Bank Match, die meisten Tag Team Titel Errungen und insgesamt die meisten Championships innerhalb der WWE errungen. Hut ab vor dieser Leistung!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: FriarFergusonwrote on 25.04.2011:[5.0] "Durch seinen frühen Rücktritt völlig überbewertet. Nicht schlecht im Ring und am Mic, aber doch weit von dem entfernt, was andere in ihm sehen. Gerade als face langweilig."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Mathias Rekaschwrote on 23.04.2011:[10.0] "Es liegt natürlich nahe, dass man einen Mann zeitnah nach seinem Rücktritt mit der Bestnote ehrt, doch Edge hat sich diese wahrlich verdient. Nachdem nach seiner Rückkehr nach seiner schweren Verletzung der Facerun absokut in die Hose ging, erfand man ihn komplett neu und spätestens mit dem Gewinn des ersten MITB-Koffers begann er seine Legende als Singles Wrestler zu kreieren. Schon im Tag Team mit Christian konnte er mich sehr gut unterhalten und hat viele Klassiker kreiert. Ich bin froh, dass ich ihn bei seinem wahrscheinlich letzten WWE-Auftritt in Deutschland in Kiel die Ehre erweisen durfte. Er reißt eine Lücke, die man erst langsam wird schließen können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Dennizwrote on 22.04.2011:[10.0] "Super Wrestler in allen belangen. Thank you Edge !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: -Sylar-wrote on 17.04.2011:[10.0] "Einfach einer meiner Lieblingswrestler. Sowohl am Mic als auch im Ring immer Bestleistungen. Diesen Mann kann man nicht aufhalten... naja bis auf Verletzungen. Hoffentlich ist er bis zum Rumble wieder fit denn ohne den Rated R Superstar ist die WWE nicht mehr das selbe. Edit: Als Face leider nicht so gut wie als Heel, sein dauerndes Spear geht mir auf die nerven -. - THANK YOU EDGE !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Baptizatorwrote on 15.04.2011:[10.0] "Alles außer die Höchstpunktzahl wäre einfach Unangebracht für diesen tollen Wrestler.. Grandiose Comedy Segmente und Matches zusammen mit Christian.. Die Tolle Fehde gegen den Undertaker... Das sicke Hardcore Match gegen Mick foley.. Und naürlich die ganzen Ladder und TLC Matches, die er so einzigartig gemacht hat.. Um all das zusammenfassen muss man eigentlich nur eines sagen: THANK YOU EDGE! THE ULTIMATE OPPORTUNIST,  THE RATED R SUPERSTAR HAS LEFT THE BULDING.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: troppiewrote on 15.04.2011:[10.0] "Gründe für eine Höchstwertung wurden hier schon vielfach genannt, deswegen belasse ich es bei einem simplen: thank you Edge"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Titanwrote on 14.04.2011:[10.0] "Edge steht gemeinsam mit Chris Jericho an der Spitze der Heels bei World Wrestling Entertainment. Er ist technisch sehr versiert, zeigt 1A-Matches und ist mit einem Mic-Work ausgestattet, dass man nur noch mit den Ohren schlackern kann. Jedoch wirft ihn seine Verletzungsanfälligkeit immer wieder ein Stück nach hinten und zudem ist Edge auch nur wirklich als Heel zu gebrauchen; Edge als Face ist zwar nett gemeint, aber zahlt sich längerfristig nicht wirklich aus für die Fans."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Italian Straight Edgewrote on 13.04.2011:[10.0] "Wohl einer der komplettesten Wrestler der jemals bei WWE unter Vertrag stand. Strotzt vor Charisma, Ausstrahlung, bringt Gimmicks fantastisch rüber. Im Ring ebenfalls sehr talentiert. Ich erinnere mich noch gern an das Jahr 2007. Ich war seinerzeit kompletter Mark und hasste Edge so sehr wie die Kids heute jeden, der gegen John Cena antritt. Weiterer Beweis dass er in der Tat nach "Awesomeness reeked". Das E&C-Team natürlich der Hammer und alles was mit ihnen zu tun hatte gehört zu meinen Edge-Lieblingsmomenten. Später alles (wirklich alles! ) erreicht, was es zu erreichen gab und das zu Recht. 11-facher World Champion hört sich zwar etwas übertrieben an, kann aber damit leben. Meine persönliche Lieblings-Era von ihm war wohl 2006 mit Lita, womöglich dank der Hammer-Fehde gegen Cena. Überzeugte als Heel und als Face. Es ist eine wahre Tragödie, dass dieser Mann seine Karriere frühzeitig beenden musste und womöglich nie wieder in den Ring steigen kann. Musste auch paar Tränen zu vergießen als er seine Abschiedspromo hielt. Die Hall of Fame ist sicher. Er gehört ohne Frage zu den besten WWE-Workern aller Zeiten und an dieser Stelle muss gesagt werden: THANK YOU EDGE! WE'LL MISS YOU."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jerseyhoolwrote on 13.04.2011:[10.0] "Mr. "Diabolisches Grinsen"! Alleine sein Gesichtsausdruck in vielen situationen macht ihn sehenswert. und da sowohl Mic-Work als auch Ring-Skills auf hohem Niveau anzusiedeln sind - alles richtig gemacht, WWE! Mal ausnahmsweise kein Talent verschwendet.... EDIT April 2011: Und wieder einmal holt das wahre Leben die Show schneller ein, als WWE lieb sein kann. Danke an Mr. Copeland! Danke für spektakuläre Matches, danke für überraschende Titelgewinne, danke für die "5 Second Pose"! Wir werden dich vermissen! Viel Glück für den weiteren Lebensweg! Gez. Deine Fans."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: bigdaniel1992wrote on 12.04.2011:[10.0] "Edge ist und bleibt für mich, der größte Superstar den WWE hat. Seine In-Ring Leistungen sind beständig gut und seine Promos zeugen von Elektrizität, Spannung und Charisma. Seine unvergesslichen Matches gegen Eddie Guerrero, Chris Benoit, HBK oder auch gegen den Undertaker zeigen deutlich was WWE an ihm hat. Einen Mann, auf den man in schweren Zeiten immer bauen kann. Seine Gimmicks sind beständig interresant. Egal ob nun als Rated R-Superstar jede erdenkliche Chance nutzt, sich als Vickies Ehemann Titel erschleicht oder als psychopath alles was ihm im Weg steht zerstört. Er ist und bleibt unantastbar.  Das hab ich vor 2Jahren geschrieben.  Jetzt im Jahr 2011 tritt Edge also zurück. Ich war den Tränen nahe. Durch ihn hab ich mich für das Wrestling begeistern können. Mein erster PPV war New Years Revolution 2006. Ich bin damals ausgemarkt. Es folgten all die schönen Erinnerungen. Die Zeit mit Lita gegen John Cena, Wrestlemania 22 gegen Mick Foley, Rated-RKO, La Familia, Fehde gegen Jeff Hardy, Royal Rumble Sieg und die anschließende Fehde gegen Jericho, insgesamt 11 World Title. Mit Edge verliert die WWE einen ganz großen Superstar. Ein Moneymaker wie er im Buche steht. Auch wenn man es sich früher nicht eingestehen wollte: Man schaltete den Fernseher oft nur wegen ihm an.  Ich bedanke mich beim Ultimativen Opportunisten, dem Rated-R Superstar für all die schönen Jahre. THANK YOU EDGE!  Wir sehen uns in der Hall of Fame ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Y2J Problemwrote on 12.04.2011:[10.0] "Turn out the lights... Selten hat mich eine Meldung so geschockt, wie die seines Rücktritts. Man kann ihm nur Respekt zollen, für die Entscheidung aufzuhören, bevor er gelähmt oder sogar tot ist. Über seine Leistungen brauchen wir garnicht anfangen zu sprechen, höchstens eine handvoll können mit ihm mithalten! Viel Glück auf deinem weiteren Lebensweg, Adam Copeland! ... the show is over!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Neuhofwrote on 12.04.2011:[10.0] "Was soll ich zu diesem Mann noch sagen? Imo nicht nur wrestlerisch die Nummer 1 der WWE (und nebenbei auch in der Weltspitze noch sehr hoch anzusiedeln), auch noch ein Gott am Micro, der wahrlich seinesgleichen sucht. Großer Pluspunkt ist noch dazu, dass er immer sehr motiviert ist. 1!  EDIT: Ja, und das war es nun. Mein (neben Michaels) Dauerfave hat aufgehört. Vielen, vielen, vielen Dank, Adam Copeland, du wirst als einer der größten in Erinerung bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: dsierwrote on 12.04.2011:[10.0] "Danke Edge für all die tollen Momente, die 5-Sterne Matches, die genialen Fehden, die super Zeit im Tag-Team mit Christian, die Neuerfindung des TLC, die Zeit, in der wir dich hassen durften, die Zeit, in der wir dich lieben durften und dafür, dass du mein absoluter Favorit und Lieblingswrestler warst und bist. DANKE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Boggenauerwrote on 12.04.2011:[10.0] "Wirklich Schade ein Zwangsrücktritt für Edge ist wirklich Bitter hätte er das nicht mit seinem Genick gehabt hätte er noch locker ein paar Jahre geschafft was wirklich sehr schade ist, der Kerl war als Heel wie auch als Face einer der Unterhaltsamsten Worker der gesammten WWE konnte im Tag Team und Einzelbereich überzeugen, am Mic unglaublich gut und total Charismatisch. Zu seiner Heels Zeit als ich noch jünger war hab ich es einfach geliebt ihn zu hassen das hat den Kerl so besonderst gemacht egal wie er gespielt hat er hat es fantastisch gemacht, er bleibt mir in unglaublich vielen guten Matches und Fehden als einer der besten Worker der WWE in errinerung, vielleicht was ich auch hoffe wird man ihn noch in einigen Gastauftritten in der WWE sehen denn am Mic kann er eindeutig überzeugen. So Klasse wie Adam Copeland war so geht er auch in den "Wrestling" Ruhestand deshalb kann ich gar nicht anderst und gebe dem Rated R Superstar volle 10 Punkte, für diese bewundernswerte Karriere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: wolverinewrote on 12.04.2011:[10.0] "Einer DER unterhaltsamsten Worker aller Zeiten - angefangen als Part eines DER drei Tag Teams meiner Jugendjahre - Egde & Christian vs. Dudley Boyz vs. Hardy Boyz. Diese sechs Tag Teams hatten noch wirklich großartiges Tag Wrestling geboten.  Über seine Midcard Karriere bis zum Durchbruch und zum Gewinn seiner ersten WWE Championship - in dessen Regentschaft der WWE Titel sogar "Rated R" wurde. Edge hat in seinen Matches immer die überraschenden, unvorherrsehbaren Mänover gezeigt, doch was in meinen Augen noch weitaus nachhaltiger in meiner Erinnerung bleiben wird, waren seine oftmals unerwarteten, und somit einfach (Es sei an dieser Stelle einfach mal so erwähnt) "HAMMER-Momente", in denen er ein ums andere Mal überraschend seinem Namen als "Ultimate Opportunist" gerecht geworden ist und sich wieder einen der ganz großen Titel sichern durfte - eben "Rated R Superstar""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: xXxwrote on 12.04.2011:[10.0] "Er hat mich als Heel immer so richtig ausmarken lassen aber selbst dann konnte ich nicht anders als ihm zuzugestehen dass er gut ist , wenn er sich mal wieder einen Title erhaschte, den dann jedoch stark verteidigte. Charisma in hohen Dosen, exzellentes Mic-Work, eigentlich nie langweilige Matches und immer klasse Promos. Meine drei Lieblingsmatches aller Zeiten beinhalten auch jeweils ihn, selbst wenn er eines davon verlor. Starker und facettenreicher Worker und Entertainer. Thank you Edge!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: gangster316wrote on 12.04.2011:[10.0] "Egal ob Heel oder Face, er hat immer eine gute Figur abgegeben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: UndertakerChriswrote on 12.04.2011:[9.0] "Einer der unterhaltsamsten und talentiertesten Wrestler aller Zeiten. Bleibt für mich zwar etwas überhyped, dennoch kann ich sonst nichts an ihm aussetzen. Seine Storys spielte er unglaublich. Sowohl in seinen Promos, als auch während seiner Matches. Der "ultimate opportunist" zeigte jedes Mal, was er drauf hat. Besonders beeindruckend fand ich seine Fehde gegen den Undertaker 2007-2008, was gleichzeitig mein Einstieg ins Wrestling war. Großartige Matches, selbst wenn ich damals, noch in der guten, alten Mark Zeit, kein Edge Fan war. ^^ Ich hoffe einfach, dass das nicht alles war, dass wir von ihm gesehen haben. Auch, wenn er innerhalb der nächsten 2 Jahre sicher nichts mit der WWE zu tun haben wird, bin ich sicher, dass wir ihn in diesen Wochen nicht zum letzten Mal gesehen haben. Auch, wenn es nicht aktiv im Ring ist, eine sonstige Rolle käm garantiert sehr gut an. Danke Edge für all die genialen Momente."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ryklon Stephenswrote on 12.04.2011:[10.0] "Eine Wrestlingkarriere mit so vielen unglaublichen Momenten, großartigen Matches und auch leider vielen Verletzungen geht zuende. Einer der besten Wrestler dieses Jahrtausends hört auf. Ich bin traurig, aber zolle Edge meinen Respekt für die Entscheidung aufzuhören. Die Entscheidung war wohl nicht ganz leicht. Vielleicht sehen wir ihn ja noch mal wieder. Das wäre ein Traum."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kankurowrote on 12.04.2011:[10.0] "Edge war und wird immer einer meiner absouluten Lieblingswrestler bleiben. Er hat über all die Jahre hinweg für viele tolle Momente gesorgt. Es ist schade, dass er auf diese Weise abtreten muss. Bleibt nur noch zu sagen: Danke für alles, Adam!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Opalawrote on 12.04.2011:[10.0] "Unglaublich schade das er zurücktreten musste. Gehörte immer zu den Unterhaltsamsten Wrestlern der letzten Jahre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Whole Fucking Showwrote on 12.04.2011:[10.0] "Am Mic unübertroffen und im Ring für absolute Klassiker verantwortlich (vs. Hardy Boyz, Dudley Boyz, Undertaker etc. ), kurzum: Einer der Besten aller Zeiten. Steht für mich auf einer Stufe mit Rock, Austin, HBK, Bret Hart und Flair."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TeeHaawrote on 12.04.2011:[10.0] "Adam Copeland ist auf Jahre hinweg einer der Besten seiner Zunft. Sein Psycho-Gimmick passte ihm wie angegossen - sein Micwork und seine Mimik sind auf Höchstniveau. Wer die Matches um Edge und Christian vs. Dudleys vs. Hardys nicht gesehen hat, sollte das nachholen... die Fehde mit dem Undertaker verdient eine eigene DVD. 10/10 klare Sache!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Paierowrote on 12.04.2011:[10.0] "Habe ihn die letzten 4 Jahre live verfolgt, er gehörte von Anfang an zu meinen Lieblingen! Tolle Matches tolle Promos einfach pure Unterhaltung!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Dediwrote on 12.04.2011:[10.0] "Edge einer der besten Wrestler der letzten Jahren . Er hat immer gute Matches gezeigt . Ein guter Heel beste Fehde gegen den Undertaker.  Danke Danke Edge für diese tollen Jahren Thank you !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bananaramawrote on 12.04.2011:[10.0] "Einer der Gründe, warum ich WWE die letzten Jahre verfolgt habe. Immer unterhaltsam, gute Matches, was will man mehr?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Maxiennewrote on 12.04.2011:[10.0] "Danke Danke Danke.  Es waren immer wieder schöne Matches mit ihm. Sicherlich einer der besten den die WWE hatte zu heutigen Zeit.  Es gab zwar immer wieder Phasen wo ich ihn nicht mochte. Aber die Leistung die er im Ring gezeigt hat waren immer riesig. Die WWE verliert durch ihn einen der wichtigsten Männer den sie hatten. Ich hoffe doch das die WWE versucht ihn weiterzubinden im Hintergrund als Scout für neue Talente weil er weiß wie es geht Talente zu finden.  Damit nochmals Danke Danke Danke Edge für viele wunderschöne Stunden Wrestling und Promos auf höchstem Niveau."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Golgotawrote on 12.04.2011:[10.0] "Bei einer solch kontinuierlich großartigen Leistung, ob nun im Ring, am Mic oder Backstage - bleibt einem gar nichts anderes übrig, als eine glatte 10.  Edge war einfach überall einsetzbar. Großartig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Cenafan 09wrote on 12.04.2011:[10.0] "THANK YOU EDGE! HE MADE A GREAT JOB IN THE LAST 19 YEARS. WE WILL ALL MISS YOU. Wieso müssen immer die Guten zuerst gehen. THANK YOU EDGE FOR EVERYTHING!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: HesBackwrote on 04.04.2011:[10.0] "Einer der besten Heels überhaupt. Ich bin im allgemeinen eher Face/tweener Fan, aber Edge hehe ja der bringts^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: C0nspiracywrote on 27.03.2011:[8.0] "Egal ob im Team oder alleine Edge ist ein solider Wrestler der fast alles beherscht von High Flying , Spotwrestling , sowie Matwrestling, Er hat einen guten Entertaiment Faktor. Fazit: Eine bereicherung für jeden Arbeitgeber."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Lions Denwrote on 10.03.2011:[6.0] "Ich finde ihn weder am Mic noch im Ring wirklich beeindruckend. Klar hatte und hat er seine Momente, aber er ist definitiv keiner, der mich wirklich mitreißen kann."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jeffrey Nero Hardywrote on 04.03.2011:[10.0] "Genialer Wrestler. Als Heel war er wirklich der beste der ganzen WWE und zog beeindruckende Reaktionen auf sich. Als Face macht er auch alles richtig , ist aber besser als Heel. Ansonsten Mic und Ring-Skills sind immer noch top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: exxterwrote on 27.02.2011:[10.0] "Damals wie heute ein Top Star und sein Gimmick gefällt mir zur Zeit soooo gut, nur weiter so Edge :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Dark Tomekwrote on 27.02.2011:[10.0] "Edge ist einer meiner Favoriten. Fand die Zeit als er mit Christian noch am Anfang im Tag Team war ziemlich cool. Zudem mag ich seine Entrance Musik, die meiner Meinung nach bei einem Wrestler extrem viel ausmacht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Smi-48wrote on 15.02.2011:[9.0] "Ein über die Jahre gereifter und an Charaktertiefe kaum zu überbietender Worker. Die Tatsache, dass er alle Stufen - vom MidCard Tag-Team bis zum MainEventer - durchlaufen hat, macht ihn so glaubwürdig. Ein Prachtexemplar an Entwicklung, ein wahrer Heat-Magnet. Konkurrenzlos guter Heel, derzeit der Maßstab aller Dinge. Ein leichtes Manko ist, dass er durch sein Oportunisten-Gimmick manchmal schwächer dargestellt wird, als ihm meiner Meinung nach gut tut, zusätzlich scheint ihm in der jüngeren Vergangenheit eine latente Verletzungsanfälligkeit nachzuschleichen. Nachtrag: Geht es nur mir so oder baut er im Ring massiv ab? Sein Spear verkommt zur Lachnummer und auch die Bewegungsabläufe erscheinen unrund - werde ich mal im Auge behalten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RIKYwrote on 08.02.2011:[10.0] "Es wird mal Zeit DEN Heel schlechthin zu bewerten! Als Heel ist er eine gestandene Grösse an die nur ein Triple H und Chris Jericho (als Heels) herankommen! Seine Mic-Skills, seine Performance und sein Charisma sind hervorragend! Als Face sehe ich ihn nicht so gerne, im Moment (02/2011) sehe ich ihn auch nicht als Face sondern eher als Tweener (Aktionen gegen Kane mit Bearer). Man sollte aber auch bedenken dass sein Status auch einer gewissen Storyline-Ex-Frau zu verdanken ist und seinem Ruf als Ultimate Opportunist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Awezomewrote on 07.02.2011:[9.0] "Einer der größten Wrestler aller Zeiten. Der Mann hat schon im Tag Team mit Christian fasziniert und als der Ultimate Opportunist hat er als Main Eventer die WWE gerockt. Leider, leider, leider zerstörte die PG Era den Rated R Superstar. Als Face nur noch durchschnitt und körperlich auch nicht mehr auf höchsten Niveau. Hoffentlich zeigt er noch ein 5-Sterne Match bei WM und das am liebsten gegen Christian.  9 / 10 Punkte; ohne PG wären die 10Pkt möglich gewesen"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CenationFanwrote on 05.02.2011:[9.0] "Ich finde Edge ist schon ein mehr als sehr guter Wrestler, seine TLC-Matches sind absolut klasse... aber manchmal kommt er mir irgendwie komisch rüber. Aber trotzdem find ich ihn gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Zamunerwrote on 02.02.2011:[10.0] "Super Mic-Work, stark im Ring, perfekter Schauspieler. Ich kann mich noch gut an die Heel-Zeit 2008 erinnern, Edge vs Undertaker hat dafür gesort, dass ich in diesem Jahr jeden PPV gesehen habe und mich endgültig wieder an das Wrestling gefesselt. Diese Zeit ist leider vorbei, genauso wie Edge & Christian vs Hardy Boyz vs Dudley Brothers. Doch Edge schaffte es immer wieder sich neu zu entwickeln. Sicher schafft er das auch als Face und selbst wenn nicht, als Heel ist er unbezahlbar. Vielleicht mal wieder als Psycho-Edge, wie er kurz auftrat 2008 gegen Mick Foley, der Chickenshit-Heel ist etwas abgenutzt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Overlordwrote on 01.02.2011:[9.0] "Einer meiner absoluten Lieblingswrestler. Hat mich spätestens nach seiner Fehde mit Cena und deren Match bei Unforgiven absolut überzeugt und hat seinen Spot zurecht inne. Im Ring sowie am Mic einfach klasse und sicherlich einer der Besten, den die WWE zu bieten hat. Sein aktueller Face-Run weiß zu gefallen und man sollte Edge nicht so schnell wieder zum Heel turnen, auch wenn er so sein volles Potential ausleben kann. Leider lässt er es seit Bekanntgabe seines potentiellen Karriereendes doch etwas langsamer angehen, sowohl im Ring als auch am Mic. Nichtsdestotrotz einer der unterhaltsamsten Wrestler der WWE und zu Recht der aktuelle World-Champ bei Smackdown."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheRock 7 Champwrote on 30.01.2011:[10.0] "Edge, einer der Top Superstars in der WWE. Am Mic sicherlich auch einer der besten in der WWE und auch im Ring liegen seine Skills richtig hoch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: rey mysterio 104wrote on 30.01.2011:[10.0] "Edge ist seit einigen Jahren vollkommen zurecht im Mainevent. Ob als Heel, der nur auf seinen Vorteil aus ist, oder so wie jetzt als Publikumsliebling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: GamePrincewrote on 27.01.2011:[10.0] "Edge ist einer der alles perfekt beherrscht. Am Mic ist er super, im Ring genau so und als Heel war er jahrelang meine Nr. 1 - bis halt Chris Jericho kam. Auch als Face ist Edge brauchbar, denn allein seine Matches machen ihn immer sehenswert.  Tolle Matches, Tolle Fehden ... einfach ein super Typ!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: NaGoyahwrote on 23.01.2011:[9.0] "Sowohl als Heel als auch als Face ein guter Worker, und einer der besten der letzten 10 Jahre"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Yannick009wrote on 21.01.2011:[10.0] "Momentan einfach der beste Wrestler der WWE. Mic-Skills ebenso top!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TaraTerrellwrote on 21.01.2011:[10.0] "Für mich der beste Wrestler in diesem Buisness ! Sowohl gut im Ring als auch am Mikrofon. Mein absoluter Lieblingswrestler in jeder Hinsicht < 3"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Mario095wrote on 17.01.2011:[10.0] "hab ihm letztes Jahr live gesehen also für mich einer der besten Wrestler der Welt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: svenheinrichwrote on 15.01.2011:[10.0] "Einfach der beste Micworker den die gesamte wwe zu bieten hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Lampard4000wrote on 10.01.2011:[10.0] "Super Heel, super Wrestler, super Mic-Work, was will man mehr?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Auditorewrote on 10.01.2011:[10.0] "Ihm kauft man einfach alles ab. Bitte hör niemals auf Adam Joseph Copeland."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: thereisonlyonewrote on 04.01.2011:[10.0] "Einfach der beste und realistisschte heel in der Geschichte der WWE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KingOfTheRingwrote on 31.12.2010:[10.0] "Einfach genauso unterhaltsam wie talentiert. Er kommt überzeugend rüber und keiner seiner Titelgewinne war bisher unberechtigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Schmidi2121wrote on 26.12.2010:[10.0] "Einer der besten Wrestler die je einen WWE Ring betreten haben.  Außerdem wahrscheinlich einer der Überzeugensten Heels überhaupt.  Seine Promos sind auch wahnsinnig Unterhaltsam.  Einfach ein Perfekter Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LowJomoKiwrote on 25.12.2010:[10.0] "Zum Teil auch 10 Punkte für seinen unglaublichen Unterhaltungswert, sowohl als face aber noch mehr für mich als Heel mit seinen unglaublichen Schockermomenten und Cheats die er nutzt. Seine Promos sind klasse und im Ring ist er auch stark wenn auch nicht ganz mein Favorit... völlig verdient 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: teekay86wrote on 25.12.2010:[8.0] "Einer der besten Heels im Roster der WWE. Sehr Charismatisch, gut im Ring und sich nicht zu schade Bumps zu nehmen. Ich hoffe jedoch, das er auch nach seiner Verletzungspause einer von "den Bösen" bleibt, da ich ihn mir als Face nur schwer vorstellen kann."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Matt4Wrestlingwrote on 20.12.2010:[9.0] "Ein sehr solider Worker, wenn nur nicht immer sein Verletzungspech dazu käme! Hinzu kommt, dass er oft versucht, zu sehr als ultimativer Face, sollte er die Rolle mal haben, rüber zu kommen. Da wünscht man sich gleich wieder er sei Heel (die Rolle beherscht er besser)! Er müsste für beide Rollen endlich seine Mitte finden, dann wäre er außer der ultimate Opputunist, wirklich ein ULTIMATE!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AlexPrimewrote on 15.12.2010:[10.0] "Edge- der wohl momentan beste Wrestler den die WWE zu bieten hat.  Geniales Micwork, Gute- Sehr Gute Ring-In Skills und Charisma.  Über die Jahre hatte er teils die genialsten Gimmicks der WWE und er wusste auch immer in jeder Rolle zu überzeugen.  Als Heel überzeugt er wie kein anderer, und auch als Face macht er seine Sache gut !  Auch als World Champion war er immer glaubwürdig- egal ob er sich jetzt seinen Titel feige erstohlen hatte oder ihn fair erkämpft hat. Der Mann ist genial und ich bin froh, dass ich mit ihm in Sachen Wrestling aufwachsen durfte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Necronwrote on 08.12.2010:[7.0] "Verkörpert für mich irgendwie die erste Generation der neuen Superstars, mit denen ich eben nicht mehr aufgewachsen bin. Für mich ist er zu schmächtig und seine Matches sind sich zu ähnlich... weiß auch nicht - ist halt nich so ganz mein Fall."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jack Londonwrote on 23.11.2010:[10.0] "Ein weiterer Superstar aus Kanada, tolle Ring-Skills, tolle Mic-Work, ein toller Finisher, legendäre Fehden ob mit oder ohne Partner, Edge prägt das Main Event seit Jahren und hat nichts anderes als die volle Punktzahl verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Finnish Nightmarewrote on 10.11.2010:[10.0] "Der Mann kann einfach alles und hätte einen Triple H schon längst ausgestochen wenn er den selben Körperbau und Stephanie hätte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Woerpwrote on 09.11.2010:[10.0] "Ich muss meine Bewertung über Edge von damals 8 auf ganze 10 Punkte heben, denn mittlerweile ist er für mich zum Inbegriff eines perfekten WWE Wrestlers geworden. In diesen Club kommen nicht Viele rein, und auch nicht alle davon bekommen von mir 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated R Userwrote on 06.11.2010:[10.0] "Edge hat die WWE im letzten Jahrzehnt definitiv geprägt. Ob als Tag Team Wrestler (als die Tag Team Division noch eine Bedeutung hatte), indem er, zusammen mit Christian, den Hardys und den Dudleys das TLC Match hervorbrachte, sowie das Ladder Match generell revolutionierte. Oder auch in der Singles Division, wo er uns vor allem im Main Event mit genialen Fehden beispielsweise gegen Cena oder dem Undertaker unterhalten hat. Ein zukünftiger Hall of Famer, der, nach dem Rücktritt von Shawn Michales und der Pause von Chris Jericho, aktuell das beste Gesamtpaket der WWE darstellt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Cheffewrote on 01.11.2010:[10.0] "Edge hatt sich im letzten Jahrzehnt, meiner Meinung nach zu einem der Besten Wrestler aller Zeiten gemausert. Im Ring ist er Technisch super, und am MIC ist er ein GOD !  Hoffe das er dem Sport noch lange erhalten bleibt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: GabberGizmowrote on 28.10.2010:[10.0] "Für mich ist Edge einer der Besten und Komplettesten Wrestler der letzten Jahre ! Er ist unterhaltsam und hat jetzt schon einen Legendenstatus aufbauen können. Weiter so Edge !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: dnstoniewrote on 20.10.2010:[9.0] "Super Entertainer, und das nicht nur im Ring, sondern auch am Mic. Leider passt er nicht mehr richtig in die derzeitige WWE. Der Ratet-R- Superstar wäre eher was für TNA... doch das wird nie passieren. So wird er sich wohl auch weiterhin damit abfinden müssen auf Laptop-GM's einzudreschen oder ähnlichem Blödsinn."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Fat Mikewrote on 15.10.2010:[9.0] "Einer der besten Heels des Mainstream-Wrestlings. Edge ist im Ring wirklich gut und am Mic ein wahrer Gott."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CM Dannywrote on 13.10.2010:[10.0] "Von Beginn an war ich ein Fan von Edge. In der Brood/Ministry hat er mir nicht so gut gefallen, weil er nur einer von vielen war. Seine erste Sternstunde kam dann jedoch im Team mit Christian. Die zweite Sternstunde folgte an der Seite von Lita. Im Moment wünsche ich mir einen richtig langen Titlerun für ihn, das Gimmick des Ultimate Opportunist sollte das doch möglich machen. "Rated R" darf er ja leider nicht mehr sein, das wäre ja nicht kinderfreundlich. Edge macht Bret Hart ganz schön Konkurrenz als bester Kanadier im Business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DJ MaSchwrote on 13.10.2010:[9.0] "Ein Weltklasse Schauspieler, Entertainer und Heel. Auch seine wrestlerischen und rednerischen Fähigkeiten zählen ohne Frage zu WWE Spitze. Leider hängt Edge seit seinem Comeback beim Royal Rumble ein wenig in der Luft und wie es mir scheint ist er auch ein wenig behäbig geworden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Ramwrote on 26.09.2010:[9.0] "Also da ich mich ja lange selbst als Edgehead bezeichnen konnte weiß ich seine Leistungen im Ring als auch am Mic zu schätzen aber was ihn für mich wirklich ausmacht ist seine Ausstrahlung.  Wenn sein Theme ertönt und der Rockstar die Halle betritt ist auf eimal kurz vergessehen das man eigentlich für den Gegner ist. Man muss ihn einfach feiern ob man will oder nicht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Pyromaticwrote on 17.09.2010:[10.0] "Zurecht im Mainevent. Hat eine starke Entwicklung hingelegt und ist neben Jericho einer der besten Heels der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kitanoyamawrote on 01.09.2010:[10.0] "Edge ist ein hervorragender Techniker und macht auch bei seinen Promos eine sehr gute Figur. Er kann jede Rolle sehr gut spielen, wenngleich er als Heel durchaus besser rüberkommt wie als Face. Abgerundet wird dies durch seinen genialen Entrance der nur noch vom Undertaker übertroffen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SelfEsteemwrote on 26.08.2010:[10.0] "Edge geniesst bei mir eine Aufmerksamkeit wie sonst nur Miz und das vollkommen zurecht! Im Ring ist Edge eigentlich immer grundsolide, aber wenn man ihn lässt ist der Mann gold wert. Ich wa selten so von einem Match gefesselt wie vom Mainevent von Wrestlemania 24. Sein Micwork ist ganz weit oben anzusiedeln, irgendwo auf einem Level mit Jericho oder Cena, was ja eigentlich schon genug Lob ist. Mit seinem Micwork verbunden ist seine größte Stärke: Charisma und Glaubwürdigkeit. Der Mann lebt sein Gimmik von Kopf bis zum Fuß und da kann ihm auch keiner das Wasser reichen. Alles andere als die Höchstnote wär natürlich unangebracht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SES-Memberwrote on 20.08.2010:[10.0] "Wenn Er will kann er viel Heat auf sich ziehen und das ist auch gut so. Am Mic ohne Frage klasse und seine Matche wie zum Beispiel gegen den Undertaker oder auch Y2J waren einfach klasse. Viel Charisma und einfach jmd der seine Rolle klasse spielt. 10 Punkte für Joseph Copeland"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheRatedRLegendKillerwrote on 19.08.2010:[10.0] "Einer der besten Heels aller Zeiten! Mit seinem immensen Schauspielkönnen kann er sowohl den irren Psychopath, als auch den smarten Lover von guerrero oder Lita spielen. In Ring Skills ist er einer unter den top 5 der WWE, Mic Work der beste der Welt(! ) und charismatisch wie es nur geht, Wahnsinn. Einer meiner absoluten all-time Favourites..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Lowflyerwrote on 18.08.2010:[10.0] "Für mich ist Edge der beste und kompletteste Wrestler der letzten Jahre, der in allen Belangen nicht nur unglaublich versiert sondern auch unterhaltsam ist, wie kein Zweiter. Auf dem Zenit seiner Schaffenskraft, hat er schon einen Legendenstatus aufbauen können. Edge wird mir sicherlich als DAS prägende Gesicht meiner Zeit als Wrestling Fan in Erinnerung bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Fichtelmeierwrote on 18.08.2010:[10.0] "Edge gehört zu absoluten Elite der WWE, Stark am Mic, unfabar starke Gestik uud Mimic, dazu bockstark im Ring. einfach ein super Gesamtpaket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sloverwrote on 18.08.2010:[10.0] "Edge, einer der besten, die die WWE hat. Ist stark am Mic, hat gute Ringfähikeiten. Er ist einfach genial."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Blacc84wrote on 18.08.2010:[9.0] "Seine Gestik ist einfach genial. Gerade in der Fehde mit dem Undertaker hat er mir gefallen man musste ihn einfach Hassen. Im Ring hat er auch was drauf."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Dean Winchesterwrote on 17.08.2010:[10.0] "Edge is einfach toll.  es macht einfach spaß dem ultimativen opportunisten zuzuschaun!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Vanniwrote on 17.08.2010:[10.0] "Der perfekte Heel, ein klasse Schauspieler, stark am Mic, überzeugend im Ring. Das ist Edge, ein Mann, der mittlerweile aus dem Main Event der WWE nicht mehr wegzudenken ist und da auch hingehört. Ihm gehört sicherlich unter anderem die Zukunft in der Promotion - und das ist auch gut so."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Y2Mikewrote on 15.08.2010:[10.0] "The Rated R Superstar ist absolut genial. Mit Chris Jericho der beste Mann, den die WWE zur Zeit hat. Er hätte sich mal einen längeren Titlerun verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jericho is excellencewrote on 14.08.2010:[10.0] "Edge ist einer der wenigen Worker der WWE, die wie kaum ein anderer für konstant hohe Qualität stehen. sein Micwork ist klasse, und vor allem seine Mimik und wie er sich bewegt. Das Paradebeispiel hierzu ist für mich das Hell in a Cell Match gegen den Undertaker. Während seinem Entrance ist ihm der Wahnsinn quasi ins gesicht geschrieben, und man nimmt es ihm zu 100% ab. Ich liebe es einfach wenn er dieses wahnsinnige Flackern in den Augen hat, und auch seine Gestik in der Ringecke vor dem Spear. Edge ist einfach ein total Package, zu der tollen Mimik, dem Micwork und dem Charisma kommen noch die starken technischen Fähigkeiten, dank denen er schon so manchen Klassiker auf die Bretter gezaubert hat. ohne ihn wäre die WWE nicht das selbe, allein schon wie er die TLC-Matches revolutioniert hat. Das Ultimate Opportunist-Gimmick ist eines der geilsten , die ich je gesehen habe. All diese Eigenschaften, gepaart mit seinem sehr tollen Look machen ihn zurecht zu einem der erfolgreichsten Wrestler aller zeiten.  Edge ist wohl einer der besten Heels, die das Business je gesehen hat, reisst mich mit jeder Promo mit, und hat so ganz nebenbei den mit Abstand besten Theme-song. Alles andere als 10 Punkte ist daher meiner Meinung nach nicht gerechtfertigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: anglejoewrote on 14.08.2010:[10.0] "Edge wurde ab 2006 immer mehr zu meinem Fav-Wrestler. Top Heel mit Super Mic-Work und exzellenten Wrestling Skills. Einfach eine EINS"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Finlay Thornwrote on 10.08.2010:[10.0] "War lange Zeit meine Nummer 1 und auch wenn er das heute nicht mehr ist, finde ich ihn trotzdem nach wie vor super! Edge ist für mich einer der besten Heels aller Zeiten, am Mic gefällt er mir fast immer und an seinen Matches habe ich auch nur selten was auszusetzen. Er ist einer, den ich immer wieder gerne sehe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: milliwrote on 04.08.2010:[10.0] "Er ist neben Chris Jericho einer der Wrestler, die so viel für ihr Heel Image getan haben, dass ein plötzlicher Faceturn einfach unglaubwürdig wirkt. Deswegen ein guter Move der booker ihn wieder zum Heel zu machen. Die Storyline die ihn zum Face machen könnte müsste sehr groß angelegt sein und ein für ihn einschneidendes Erlebnis enthalten. Meiner meinung nach ist so etwas aber unnötig weil man ihn als Bösewicht einfach nur genießen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: WrestlingFanDuisburgwrote on 03.08.2010:[10.0] "Im Ring super, am Mic auch und Charisma hat er auch. Als Heel vor allem als Ultimate Opportunist richtig starker Heel. Als Face auch nicht schlecht, als Heel zieht er aber deutlich mehr an Reaktionen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheRock902102wrote on 18.07.2010:[9.0] "Einer der Top 3 Wrestler+Worker in der WWE momentan.  Seine Matches legen die Messlatte enorm hoch, selten n schlechtes Match gesehen,  seine Promos sind einfach nur grandios am Mic gibts kaum bessere..  Seine Fehde gegen John Cena gefiel mir besonder gut, vorallem weil immer erstklassige Matches herauskamen...  Sicherlich bald wieder Champ"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: HBK1986RKOwrote on 17.07.2010:[9.0] "Sehr, sehr guter und modernern Athlet. Leider etwas verletzunganfällig aber das kommt mit dem Alter."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Blazewrote on 16.07.2010:[6.0] "Ganz passabler Wrestler und sehr guter Mic Worker, der unbezahlbar für seine Company ist, aber dennoch dem Standard Alttagstrott eines Mainstreamwrestlers verfallen ist."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: P92wrote on 09.07.2010:[10.0] "EDGE begeistert mich sowohl im Ring mit technischen Manövern, als auch mit extremen Hardcore-Aktionen(Gute-Alte-Zeit).  Am Mic ist er auch einzigartig mit seinem unverwechselbaren kanadischen Akzent. Außerdem wird er bei mir als "favorite Wrestler" gehandelt, da er mit seinem Gimmnik "Ultimate Opportunist" (siehe No Way Out 2009) überzeugt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: FuXwrote on 07.07.2010:[10.0] "Eine Bewertung ist eigentlich fast unnötig. Edge hat in den letzten Jahren wirklich durchgehend gute Arbeit geleistet und sich seinen Platz an der Spitze wirklich verdient. Das Einlösen gegen Cena war der größte Moment seit Jahren und sein absoluter Durchbruch. Gut das er wieder Heel ist, da sein gesamtes Auftreten einfach nicht zu einem "Guten" passt. Er wirkte als nicht-ar***loch etwas gehemmt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: morph80wrote on 30.05.2010:[10.0] "Wenn jemand als Heel die Crowd auf seiner Seite hat, dann hat er es wirklich drauf. Gut dass sein Facerun nicht allzulange war, denn er verkörpert den perfekten Heel und sollte das auch erstmal bleiben. Ist ein perfekter Entertainer und wird uns hoffentlich noch viele gute Fehden bescheren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JeriMizwrote on 22.05.2010:[10.0] "Edge ist nach Jericho einer meiner Liebsten Wrestler, Ob face oder Heel, Edge muss man einfach lieben. Er ist Stark im Ring, und versteht es Richtig gut seine Rolle zu spielen.. zuletzt als face und dann der relativ überraschende Heel-Turn einfach Großartig"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Straight Edge Jerichoholicwrote on 21.05.2010:[8.0] "2005.. 2008... da hat er mich unterhalten teilweise auch 2009 aber momentan find ich den iwie langweilig kp wieso ^^ jednfalls überdurchschnittlich gut, mic work stimmt auch = 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Erasedwrote on 21.05.2010:[9.0] "Einer der wenigen, der kontinuirlich gute Leistungen bringt. Bringt seine Rolle wirklich überzeugend rüber und ist dabei auch im Ring noch überdurchschnittlich gut, was man ja heute nicht mehr unbedingt überall findet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: STRIGGAwrote on 19.05.2010:[9.0] "Großartiger Wrestler und Entertainer, der sich mit noch einigen Jahren im Rampenlicht wahren Legendenstatus aufbauen kann."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MarcTrixwrote on 17.05.2010:[10.0] "Er ist ein spitzen Wrestler, als Heel einfach Weltklasse, aber als face farblos. Er ist von den Mic-Fähigkeiten fast auf dem gleichen Level wie Chris Jericho.. auch Weltklasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Edge96wrote on 11.05.2010:[10.0] "Super am Mic, genial im Ring, Tolles Charisma. Für mich gemeinsam mit Chris Jericho der beste Mann in der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: InUteroHeartwrote on 05.05.2010:[10.0] "Was soll man über Edge sagen,  neben Randy Orton meine absolute Nummer 1 in der WWE!  Seine Promos sind mehr als klasse und sein Ringkönnen steht meiner Meinung nach auch außer Frage!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Cripplerwrote on 04.05.2010:[9.0] "Er ist einer der besten Wrestler den die WWE zu bieten hat. Unglaublich gut im Ring und sehr gutes Micwork."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sandmannwrote on 04.05.2010:[8.0] "Als Rated R Superstar war Edge genial (mit Lita zusammen). Im Moment find ich ihn eigentlich recht langweilig. Der Beginn seiner WWE Karriere als Mann aus dem Publikum begann auf jeden Fall schon sehr vielversprechend. Mit der Brood war er in einem der coolsten Stables aller Zeiten und sein Tag Team mit Christian war einfach unglaublich. Auch als Singlewrestler stellte sich schon bald der Erfolg ein, wobei ich ihn immer noch lieber als Heel sehe als als Face."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Momotoswrote on 02.05.2010:[8.0] "Hat sich die 10 durch seinen miserablen Face Run versaut, dennoch einer der besten, den die WWE zur Zeit hat ... allerdings nur als Heel einsetzbar, diese Rolle füllt er allerdings perfekt aus. Aber für mich muss ein Top-Wrestler in jeder Rolle funktionieren. Was bei ihn als Face nicht geklappt hat. dennoch starke 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RickRollwrote on 01.05.2010:[7.0] "Guter Wrestler mit einigen starken Matches, gesegnet mit gutem Micwork, der jedoch nur als Heel (gut) funktioniert."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Damon Strikerwrote on 01.05.2010:[10.0] "Schon immer einer meiner Favoriten! Im Ring überdurchschnittlich, mit überragendem Charisma ausgestattet und am Mikro einer der besten! Fast alle seine Fehden und Matches sind mir positiv in Erinnerung geblieben. Besonders an seine Zeit zusammen mit Lita als "Mr. Money in the Bank" bzw. "Rated R Superstar" denke ich gerne zurück. Leider sehr verletzungsanfällig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Moyawrote on 18.04.2010:[8.0] "Edge ist irgendwie ein spezieller Fall. Er hat schon Qualität, kann gute Matches abliefern und ab und an auch mal gute Promos abhalten. Seine Tag Teammatches gegen die Dudleys und gegen die Hardys waren teilweise echt grandios. Auch alleine hat er schon das eine oder andere gute Match abgeliefert. Gut fand ich seine Heelzeit mit Vickie Guerrero. Was ich an ihm kritisiere ist das er als Face nicht mehr so grandios ist als als Heel, und das er mir zu viele World Title gewonnen hat. Ingesamt macht das dann einen ganz guten Worker, den ich aber nicht als Top-Star sehe."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Eazyewrote on 16.04.2010:[9.0] "Sehr guter Techniker, gute Promos und bisher gute Gimmicks. Als Tag Team mit Christian immer gut, man erinnere sich doch noch an die tollen Matches und Segmente, als EInzelwrestler und Maineventer auch sehr gut. Was mir aber bis heute noch ein Dorn im Auge ist sind diese vielen World-Titelruns, die einfach zu kurz waren und er selten einen Titel clean verteidigt bzw. gewonnen hat(Sein Ultimate Oppurtunis GImmick verhinderte das ja ein wenig, aber diese vielen TItelwechsel und selte clean gewonnenen Titel... ). Ansonste blüht er auch langsam in seiner Face Rolle, gefällt mir sehr gut. Wenn er mal einen langen TItelrun haben wird, der mir auch in der Erinnerung bleiben wird, liegen 10 Punkte problemlos drin."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: PunkZEROwrote on 15.04.2010:[10.0] "Überragende In-Ring Skills, Top Charisma und ein MicWork, dass im positiven Sinn jenseits von gut und böse liegt. Als Face noch etwas ungewohnt und man merkt, dass er sich in der Rolle noch nicht so recht wohl fühlt, aber immer noch besser, als der Grossteil seiner Kollegen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: THE GAME 4-EVERwrote on 11.04.2010:[9.0] "Als Face leider lange nicht so gut wie zu seiner Heel Zeit. Dennoch einer wenn nicht der Top Worker bei der WWE! Charisma und Mic Work leiden nunmal nicht unter einem schlechten Face Turn."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Parlaelwrote on 05.04.2010:[9.0] "Als Face nicht so klasse, aber dennoch überzeugend. Einzig und allein sein "Spear, Spear, Spear! "-Gehabe nervt ein wenig. Vielleicht wird das noch mit der Zeit, ich zweifle jedoch dran. Super Micwork, im Ring Klasse, super Ausstrahlung. Mal sehen wie er sich weiter gegen Jericho und Swagger schlägt, vielleicht ist da ja noch ein Punkt drin."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Carnevalewrote on 02.04.2010:[9.0] "Sein Charisma, sein Mic Work, seine In-Ring Skills und allen voran wie er sein Gimmick verkörpert - Weltklasse. Ein absoluter Top Heel - und genau das ist das Problem: Bisher gefällt er mir als Face gar nicht, seine Mimik und Gestik passt nicht zum Face Charakter, auch seine Promos. Daher nur noch 9 Punkte, als Heel klare 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: cmPunKwrote on 31.03.2010:[10.0] "Spear, Spear, Spear, Spear! Einfach gut der turn vom Super-Heel zum Face. Obwohl ich ihn als Heel mit Vickie am besten fand. So finde ich ist er wrestlerisch begabt. Klasse am Mic-Work. Einen langen Titel Run hätte er auch mal verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Franjisewrote on 31.03.2010:[10.0] "Keine Frage. Mic-Work, Ring-Work, Charisma. Alles was ein Main Eventer braucht hat Edge. Er steht verdient da wo er ist, und ist einer derjenigen, die jahrelang arbeiten mussten, um es in den Main Event zu schaffen. Dazu hat er sich immer wieder neu erfunden. Rated R Superstar, Ultimate Opportunist... All das ist Edge. Ein verdienter Main Eventer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Viperwrote on 30.03.2010:[10.0] "Finde ihn als Heel zwar besser, aber die 10 Punkte hat er sich trotzdem verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Batistawrote on 28.03.2010:[10.0] "Bei ihm gilt das gleiche wie bei Chris Jericho! Blos find ich Edge im Ring stärker und Chris ist am Mic ein bisschen besser aber beide sind auf absolutem Top Niveau wie ich finde^^ Edge ist einfach klasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: antihiphop2002wrote on 28.03.2010:[9.0] "Einer der top Heels unserer Zeit! Hat sicherlich noch das ein oder andere gute Jahr vor sich. Währe er nicht so anfällig für Verletzungen währe er seit 5 oder 6 Jahren ununterbrochen der wahrscheinlich beste Heel der Welt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Future Divas Championwrote on 24.03.2010:[10.0] "Einer meiner Lieblinge, wenn nicht sogar mein Lieblingswrestler in der WWE überhaupt. Klasse Gimmick, als Heel unglaublich überzeugend, am Mic einfach nur grandios und auch als Face garnicht schlecht (sehe ihn persönlich einfach lieber als Heel. ) Ich hoffe, dass er noch sehr, sehr lange dabei sein wird, aus ihm könnte man noch ganz viel rausholen. Überings mein Favorit für eine Mentoren-Rolle in der nächsten NXT-Staffel!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Wizz21wrote on 15.03.2010:[10.0] "Ausgezeichnete In-Ring Skills, Top Charisma, genial als Heel und immer noch sehr gut als Face. Für mich neben CM Punk und Chris Jericho derzeit der Beste den WWE zu bieten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: reiminhowrote on 15.03.2010:[10.0] "Edge hat einfach alles was ein Wrestler benötigt. Er hat das Charisma und die mic-skills um eine gute Fehde aufzubauen und die in-ring skills um mit fast jedem Gegner ein gutes Match auf die Beine zu stellen. Er hat seine aktuelle Position in der Card zu 100% verdient. Die Rolle als Heel hat er unglaublich gute beherscht, meiner Meinung nach sogar besser als die aktuelle Face Rolle wobei diese bisher auch schon sehr überzeugend ist. Ich erwarte noch einiges von ihm."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KevinMichaels79wrote on 14.03.2010:[10.0] "Hat alles, was ein zukünftiger Hall-of-Famer braucht: Starkes Ringverständnis, großartiges Mic-Work und Ausstrahlung. Einer der wenigen WWE-Stars, die sich nicht abnutzen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DaRkwrote on 12.03.2010:[10.0] "Edge is BACK. Was soll man zu diesem großartigen Wrestler nur schreiben? Seine wrestlerischen Künste sind einfach beeindrucked. Auch am Mic überzeugt er einen. Das Comeback war auf jeden Fall weltklasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Gretchen2010wrote on 11.03.2010:[10.0] "meiner Meinung nach, einer der besten. Er ist super im ring und die Geschichte mit seinem Spear, Spear, Spear, Spear, Spear, Spear ist auch total lustig. Deswegen gebe ich ihm die volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MJ Goldbergwrote on 09.03.2010:[9.0] "Guter Wrestler, stark am Mic, als Heel der wohl beste!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: the king of kingswrote on 08.03.2010:[10.0] "Also für mich klar, er ist der beste Heel. Die Fehde mit dem Undertaker war auch richtig klasse. Jedoch mit Rey konnte er wenig anfangen wie ich finde. Er hat super Aktionen drauf wie den Spear und den Edgecution. Und seine Segment sind immer interessant."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: gunniwrote on 07.03.2010:[9.0] "In seiner freakigen extremen Art mit dem Hang zum leicht wahnsinnigen ist er der perfekte Superstar. Er weiß überall zu überzeugen ob im Ring oder außerhalb. In einer Kolumne einer Bekannten Wrestlingzeitschrif, wird in der aktuellen Ausgabe gesagt, dass es in der letzten Dekade zwar viele Maineventer gab, aber es fehlte der "Über-Superstar". Und das kann meiner Meinung nach Edge werden, er hat das gewisse Etwas was einem, egal face oder nicht, in den Bann zieht!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Unrated Superstarwrote on 06.03.2010:[10.0] "Einer meiner absoluten Top-Favoriten! Er hat das Zeug, um die Nachfolge von The Rock und Stone Cold antreten zu können. Sein Mic-Work ist einfach klasse, im Ring zeigt er Qualitäten, die man bei manchen hoch gehandelten Wrestlern vermisst. Hinzu kommt noch enormes Charisma! Könnte mit Cena, Orton und CM Punk die zukünftige WWE-Spitze darstellen. Derzeit die absolute Nr. 1 bei SD! neben dem Taker und Jericho! Außerdem schafft er es grandios die ganzen Marks mit seinen "unfairen" Siegen bzw. Titelgewinnen zur Weißglut zu bringen! Schon alleine dafür gibt's die 10! Aber nun versucht die WWE ihn krampfhaft zum Face zu turnen und die Fans zu stupiden "Spear"-Chants zu animieren. Als Tweener würde Edge deutlich besser funktionieren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: rv27wrote on 06.03.2010:[10.0] "Göttlich. Super Wrestler + Geniales Micwork = Edge Er ist echt immer Unterhaltsam ob man ihn hasst oder mag."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CharismaticEnigmawrote on 28.02.2010:[10.0] "Er ist ganz einfach einer der Besten und hat die 10 Punkte verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: breunig88wrote on 28.02.2010:[9.0] "Er ist für mich einer der besten Wrestler überhaupt! Zwar nicht DER beste aber einer der Besten"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: VanZan82wrote on 28.02.2010:[9.0] "Geile Promo's, geile Matches.. gutes Auftreten.... Fehde mit Chris bisher sehr cool.... auch als Face wirklich gut!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CenaSuckswrote on 26.02.2010:[8.0] "Egde ist zurück! Eine eindrucksvolle Rückkehr am Royal Rumble und als Face gefällt er mir viel besser, deshalb hebe ich meine Wertung von 6 auf 8 Punkte!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Manu Adamswrote on 13.02.2010:[10.0] "Edge gehört derzeit zu den besten Wrestlern. Hat unglaubliches Micwork, ist bzw. war ein grandioser Heel und ist im Stande hervorragende Matches abzuliefern. Mal sehen wie er sich gegen Chris Jericho oder vor allem wie er sich als Face schlägt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Exist 2 Inspirewrote on 09.02.2010:[10.0] "Edge ist toll, ob als Heel oder Face, aber besonders als Heel kann er überzeugen. Wrestlerisch gut und sein Mic Work ist sowieso genial. Hat die letzte Dekade in der WWE deutlich mitgeprägt und zählt wohl schon heute zu den Legenden im Mainstream Wrestling. Das einzige was stört sind seine vielen und vorallem kurzen World Titel Regentschaften."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Aquifelwrote on 08.02.2010:[9.0] "Neben Jericho definitiv einer der besten Leute der WWE. Nicht nur top im Ring, sondern auch am Mic. Einziges Problem: Ich finde "Chickenshit Heels" an sich totlangweilig zumindest wenn sie so inflationär auftreten wie in der WWE. Edge meistert diese Rolle zwar, dennoch wäre es mal schön, seinen Charakter nicht wie einen Verlierer dastehen zu lassen, der nicht ein einziges mal clean oder ohne Hilfe gewinnen kann. Mal sehen, was er jetzt so vollbringen darf, nach seiner Verletzungspause."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Desperadowrote on 07.02.2010:[10.0] "Als Rated R Superstar in den letzten Jahren immer ungemein unterhaltsam. Ob in der Zeit mit "Ehefrau" Vicky oder davor mit Lita (hier noch einen Tick mehr). Währenddessen hat Edge eine vielzahl an grandiosen Matches bestritten und auch die Fehden, in die er gebookt wurde waren eigentlich immer geil. Hervorzuheben sind hier natürlich die Fehde mit Cena und die mit dem Undertaker. Nun nach jahrelangem Heel Dasein, turned man den Ultimate Opportunist zum Face. Ich bin mal gespannt, wie das klappt... Auf jedenfall weiterhin 10 Punkte für Edge der im Ring und am Mic einfach immer überzeugt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Anti-Championwrote on 06.02.2010:[4.0] "Das Ultimate Opportunist Gimmick war ja schon vor dem Rumble ausgelutscht, mehr als einen weiteren 4 oder 6 Wochen Titlerun von Edge wird es eh nicht geben. Der Übergangschampion in Perfektion. Die Glaubwürdigkeit sackt von Jahr zu Jahr mehr ab."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Edgececutionwrote on 06.02.2010:[10.0] "Endlich ist er wieder zurück und Smack Down ist wieder um einen Top Wrestler reicher"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Reiskartoffelwrote on 06.02.2010:[10.0] "Edge kommt zurück, und plötzlich kriegen SD und Raw viel bessere Shows hin. In meiner Mark Zeit hätte ich Edge am liebsten umgebracht, wenn er Batista imemr den Titel gekostet hat. Und jetzt versteh ich: Edge war ein verdammt guter Heel. Jetzt ist er nach langer Zeit mal wieder Face. Ich glaube, er wird da auch verdammt gut sein. Edge ist einfach der beste immoment, egal in welcher Hinsicht (finde ich)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BMwrote on 03.02.2010:[10.0] "Gimmick TOP - MicWork - TOP - Moves - TOP - Entrance - TOP - Unterhaltungswert - TOP!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: tobiasthegreatone1wrote on 02.02.2010:[10.0] "Super Typ. Er spielt sein Gimmick so gut. Ich kauf ihm das total ab. Sein Stil ist zwar unspektakulär, aber seine Matches sind toll und spannend. Verdienter Maineventer bei SmackDown. In meinen Augen einer der besten World Heavyweight Champions, der dem Titel auch sehr gut tut. Ergänzung: HAMMMMMMMMMEEEEEEEEEEEER GEIIIIIIIIIIIIIIL! Edge is Back! Ich hätte es nicht gedacht das er so früh wieder kommt. Aber egal ich freue mich das er wieder da ist"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: kotelettwrote on 01.02.2010:[10.0] "Willkommen zurück Edge! Er ist einfach der beste in jeder Hinsicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated R Deadmanwrote on 24.01.2010:[10.0] "Edge ist der beste Wrestler der WWE (mit Christian), hat ein klasse Gimmick, und holt auch gegen Cena (der immer fast nur langweilige Matches hat gute raus)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheROCKwrote on 22.01.2010:[10.0] "Awesome. Heel des Jahrzehnts (mit HHH & Jericho). Ganz großer im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ShakDragoonwrote on 19.01.2010:[9.0] "Vorallem als Heel ein sehr guter Worker, mit ordnentlichem Mic-Work und mehr In-Ringskills als die meisten anderen WWEler... meiner Meinung nach, ist sein Gimmick-Bruder aber sogar noch einen Tick besser. Ich hoffe Edge kann zum Royal Rumble erfolgreich zurücckkehren."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Quackeltikkiwrote on 04.01.2010:[10.0] "Edge ist meiner Meinung nach momentan einer der besten heels. Ich finde man merkt leider sehr deutlich, dass er zur Zeit fehlt. Außerdem bin ich sowieso absoluter edgehead! Habe mir neulich "a decade of decadence" zugelegt und es bisher keine Sekunde bereut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Denzwrote on 04.01.2010:[10.0] "Edge konnte mich als Face schon überzeugen, jedoch macht er seine Arbeit als Heel bzw. als Ultimate Opportunist viel besser. Am Mic ist er mit Chris Jericho auf dem gleichen Level. Besonders gefallen hat mir seine Fehde mit dem Undertaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: chryzzwrote on 01.01.2010:[10.0] "Er ist mit abstand mein Lieblingswrestler. Er hatte in den lezten 3 Jahren Grossartige Feheden mit John cena , Batista, und dem Undertaker"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: mugel 187wrote on 01.01.2010:[10.0] "Der Beste im Business zur Zeit. Um ihn kann man eine ganze Organisation aufbauen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Larskanonewrote on 30.12.2009:[10.0] "Klar einer der größte Stars in der WWE nach der Jahrtausendwende und auch einer der besten aller Zeiten, mit klasse Fehden, klasse Promos und klasse Matches"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RatedRJuliwrote on 29.12.2009:[10.0] "Er und Jericho machen Smackdown erst sehenswert. Klare 10 Punkte für ihn"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kenshin Uesugiwrote on 23.12.2009:[9.0] "Der beste Heel seit Jahren. Ohne Frage bei ihn stimmt alles, das Gesamtpaket ist gut bis sehr gut. Allederings stört mich seine zu kurzen Title-Runs, kaum gewonnen muss er ihn schon wieder abgeben . Das zieht seine Leistung stark herab. Edge könnte besser eingesetzt werden. Ich hoffe die WWE ändert da mal was."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Aesopwrote on 18.12.2009:[10.0] "Einfach nur ein klasse Wrestler. Früher im Tag Team mit Christian war er genial und hat die Tag Szene aufgemischt. Seine Leistung in den TLCs war schon genial doch dann der Sprung in den Main event. Einfach super. Im Ring ist er gut und hat so viel Charisma wie kaum ein anderer. Das Gimmick ist genial und er zieht mehr Heat als so ziemlich jeder andere Wrestler, ausgenommen von Jeriho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: downtown2wrote on 16.12.2009:[10.0] "Wenn man überhaupt etwas an Edge bemängeln kann, dann die Verletzungsanfälligkeit. Alles andere gehört zum Besten, was es gibt. Exzellente Match-Führung konnte man von ihm sowieso schon immer erwarten, trotz der zahlreichen Verletzungen. Sein extrem widerlich gespielter Heel-Charakter ist meines Erachtens nach die bester Rolle eines Bösewichts, die ich je gesehen habe. Mein persönlicher Favorit derzeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Detrituswrote on 13.12.2009:[10.0] "Der Mann hat einfach alles was ein Wrestler heutzutage braucht: eine fast unübertreffbare Fähigkeit im Ring und natürlich am Mic. Dazu eine Ausstrahlung die seines Gleichen sucht. Im Moment kann kein aktueller Supperstar ihm das Wasser reichen (wenn es um den komplettesten Wrestler geht)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: XtremeEnigmawrote on 12.12.2009:[10.0] "Tja, was soll man da noch sagen? Extrem gute Ausstrahlung, Mimik usw passt einfach alles. Am Mikro ein Gott, meines Erachtens nach sogar noch etwas besser als Chris Jericho, welcher natürlich auch eine Klasse für sich ist. Im Ring meines Erachtens nach einer der besten Wrestler der WWE, sehr vielseitig und manchmal spektakulär. Bin gespannt, ob man ihn wirklich Face turnt, aber von mir bekommt er verdiente 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: chaoswrote on 23.11.2009:[10.0] "Ein absolut kompakter Wrestler, weil er ein Top Face wie auch einen super heel spielen kann, und obendrein sehr gut am Mic und im Ring ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Prince of darknesswrote on 22.11.2009:[10.0] "Ich kann ihn zwar nicht sonderlich gut leiden vergebe hier dennoch die 10 Punkte weil er viel mehr Talent hat wie zum Beispiel ein The Rock und das wird er uns nach seiner Rückkehr beweisen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Papa Popanzwrote on 21.11.2009:[10.0] "Für mich einer der besten Performer des letzten Jahrzehnts, sowohl innerhalb, als auch außerhalb des Ringes, am Mic und seine Stories sind glaubwürdig. Geiler Typ Hoffentlich wird er schnell wieder fit"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LebendeLeichewrote on 18.11.2009:[10.0] "Einfach ein genialer Wrestler! Hoffentlich ist er bald wieder im großen geschehen dabei."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ultrakaoswrote on 06.11.2009:[10.0] "Edge ist eine klasse für sich. Er ist der Beste Heel der WWE allerzeiten. Am Mic genial und ein Super Techniker. Sein Heel gimmick bringt er 1a rüber und trotzdem wird ihm zugejubelt. Hoffe auf beldige rückkehr aber dann leider wohl als Face"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Last Ridewrote on 04.11.2009:[10.0] "Absoluter Topmann, in allen Bereichen. Dass mal die ein oder andere Mimik übertrieben wirkt, kommt in den besten Familien vor. Ich freue mich schon auf sein Comeback, er wird SD gut tun, sofern er nicht wider erwarten bei RAW aufschlägt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Remootwrote on 03.11.2009:[8.0] "Von vielen Überschätzt... lebt von einem guten gimmick und davon immer die richtigen Gegner zur richtigen Zeit zu haben (Foley, Undertaker, Cena) Ein guter Worker keine Frage.... aber nicht auf einer Stufe wie der Taker oder HBK."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: reaperwrote on 27.10.2009:[10.0] "Er hat es einfach drauf. Seine In-Ring Fähigkeiten, sein Micwork alles perfekt. Mal abwarten wann er zurückkommt. ich für meinen teil bin schon echt gespannt darauf"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Cloverwrote on 23.10.2009:[9.0] "Mick Foley hat es einmal gesagt und ich stimme zu: Edge ist als Heel einsame Spitze! Technisch sowieso gut und daher auch nach seiner Rückkehr wieder oben dabei! Allerdings ist seine Aktion mit Lita unverzeichlich - der war zu der Zeit selbst verheiratet... und dann auch noch die Schnalle vom Kumpel klauen (was ja auch im realen Leben Fakt war) ... schämen soll er sich auf ewig (rein menschlich beurteilt). 9 Punkte für den Rated R Superstar."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Triple Awrote on 22.10.2009:[10.0] "Der Heel der WWE ist ein klasse Mann am Mic und zwar so was von überragend, dass man ihm sogar in seiner Heelrolle Mitleid schenkt, wenn er sich über irgendwas beschwert. Im Ring trotz seiner Größe überaus beweglich und technischer Hochstandard. Kann echte Klassiker liefern und ist zudem der Meister der Mimik und Gestik. Es würde mich nicht wundern, wenn er nach seiner In-Ring Karriere als GM oder Kommentartor eingesetzt wird oder vielleicht sogar nach Hollywood geht. Dieser Mann ist schon fast das Paradebeispiel für einen Entertaimentheel und kann bei Gimmick Matches sein ganzes Potential ausschöpfen. Nur der Spear ist als Finisher irgendwie ein wenig lahm, da sollte er mal einen richtigen Sensenmove, d. h. nach dem ist wirklich Sense höchstens bei Wrestlemania oder ähnlichen nicht. Alles in allem der Mann bei Smackdown neben Taker und neuerdings Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Joe111wrote on 21.10.2009:[10.0] "Grandios! Super Wrestler, super micwork und nie langweilig! Einer oder sogar der besten Wrestler von heute."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: homicidal cena michaelswrote on 09.10.2009:[9.0] "Er ist ein sehr guter Wrestler und Micworker und hat Ausstrahlung. Er könnte zwar mehr Muskeln haben aber nicht so schlimm. Er weis wie man Matches leitet und anderen etwas liefert."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: cartmanwrote on 07.10.2009:[10.0] "einfach genial. super mic-work. und nach dem ich mir die dvd angeschaut habe, bin ich ein noch größerer fan. seine tag-team-matches mit christian spitzenklasse. zuletzt war das wrestling nicht mehr auf diesem niveau, aber das hat die edge mit charisma locker flockig wieder wett gemacht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: element-41wrote on 04.10.2009:[10.0] "Der mit Abstand beste "Dauerheel" der WWE. Er hat eine riesen Ausstrahlung, macht richtig gute Promos und was das wichtigste ist, er ist stark im Ring. Alles in Allem einer der Besten Wrestler, den die WWE je hatte. Deswegen sind 10 Punkte das mindeste!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Edgecutionerwrote on 01.10.2009:[10.0] "Kurz und knapp: mit das Beste, was WWE seit Jahren zu bieten hat. Eine sagenhafte Karriere, sympathischer Kerl, technisch klasse, am Mic klasse... EDGE ist auf dem besten Weg, der beste und erfolgreichste kanadische Wrestler aller Zeiten zu werden. RATED R-SOME!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Paulinawrote on 30.09.2009:[10.0] "Geniales Mic Work, Super Segmente und ganz netts Wrestling, das alles liefert Edge. Er war als Heel einfach Göttlich und mit ihn wurde SD nie langweillig, er war für mich eine Zeit lang der Heel der WWE und hoffe das er als Face mehr ziehen kann als damals 2004, Seine titelgewinne waren zum größten Teil unnötig, diese vielen Gewinne haben jedoch zum größtenteil sein Gimmick ausgemacht"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Big Bad Booty Babywrote on 25.09.2009:[10.0] "Für die meisten ist es Chris Jericho, für mich ist es Edge: das "Total Package". Er ist super im Ring, liefert grandiose Matches ab, er kann geniale Promos halten, die ich auf Grund ihrer Intensität noch etwas besser als die von Jericho finde und er hat ein geniales Gimmick, das er mittlerweile perfekt verkörpert und darstellt. Bei ihm passt einfach alles zusammen. Sein Wrestlingstil, sein Auftreten, sein Charakter; einfach alles!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Basket Casewrote on 14.09.2009:[10.0] "In den letzten Jahren einer der Besten des Business. Ich bin gespannt wie es nach seinem Comeback weitergeht, ob er wirklich Face turnt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: schneiderwrote on 09.09.2009:[10.0] "Absolute Superstarausstrahlung und -gimmick! Einfach ne coole Sau! Nur lasst ihn bitte nicht als "Schwachstruller-Face" zurückkehren. Hab da so ein ungutes Gefühl nach seinem letzten Auftritt via Titantron, im Wortduell mit Jericho. Lieber wär es mir wenn er zwar als Face zurückkehrt, jedoch sich knallhart an Jericho für dessen Aussagen rächt..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Scotty Westwrote on 05.09.2009:[10.0] "Wie ich dieses Gimmick hasse. Die zehn Punkte gebe ich, weil er wirklich immer gute Arbeit leistet und dieses Ultimate Opportunist Gimmick ist wirklich sehr interessant, weil sehr oft unerwartete Ereignisse eintreffen. Obwohl ich hasse, wenn dies passiert, find ich den man toll, weil wirklich mein Interesse weckt die nächstes Show zu schauen, nur um zu sehn wie er mich wieder auf die Palme bringt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: billygunnwrote on 03.09.2009:[8.0] "Also, wie soll ich sagen?  Im Ring perfekt, am Mic der beste im Moment für mich, sehr unterhaltsam und man kann nicht sagen das er the "OverRated-R" Superstar ist!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: 123 kidwrote on 03.09.2009:[10.0] "Es gibt keinen anderen Wrestler der mich so fasziniert wie Edge. Er kann alles machen was er will und ich finde es immer noch klasse. Ein ganz gorßer, der wirklich alle guten Eigenschaften eines Wrestlers besitzt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Turboladerwrote on 29.08.2009:[10.0] "Der beste Heel überhaupt, weiß am Mic zu überzeugen und hat auch einiges im Ring drauf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kroatewrote on 24.08.2009:[10.0] "Verfügt über ein sehr überzeugendes Gesamtpaket. Einer der besten Wrestler, den die WWE momentan zu bieten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The-Game91wrote on 10.08.2009:[10.0] "Edge dominierte über Jahre das Smackdown Geschehen. Er ist ein Top Heel und hat klasse Ring Fähigkeiten, am Mic grandios... Eben typisch Kanadisch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: WWE Chairmanwrote on 07.08.2009:[10.0] "Mit Jericho und Orton einer der top 3 heels, gutes mic work und im ring auch super einer der besten die die WWE je hatte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tamjukwrote on 28.07.2009:[10.0] "er hat einfach alles drauf klar er darf nicht zeigen was er kann aber das ist ein generelles Problem. In seiner Rolle ist er perfekt. 10 Punkte Period"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Schandmaulwrote on 26.07.2009:[7.0] "Gut, aber überbewertet. Am Mic fand ich ihn in letzter Zeit (vor seiner Verletzungspause) ziemlich langweilg, aus der Story mit Vicky war für mich auch schon lange die Luft raus bevor sie beendet wurde. Dennoch einer der sicher besten bei WWE."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Gustelwrote on 21.07.2009:[10.0] "Nach Y2J einer der Besten(meiner Meinung nach). Klasse Promos und im Ring knallts auch. Sollte er nach der jetzigen Verletzung zum Face werden wirds spannend ob er das auch so hinbekommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: D-generation-Swrote on 11.07.2009:[10.0] "Der beste aktive Wrestler, mehr kann man dazu nicht sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: wweinspectorwrote on 09.07.2009:[10.0] "Für mich der beste aktive Wrestler. Am Mic kann keiner ihn schlagen, nicht mal Chris Jericho. Und im Ring traumhaft! Und dazu noch einer der besten Heels in der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Psycho Kanewrote on 06.07.2009:[10.0] "Ohne jeden Zweifel der Ultimate Opportunist. Unzählige Heavyweight Titel in den letzten 2 Jahren (glaub 5 x World Champion und 2 x WWE Champion), dazu die meisten Tag Team Titel gewinne. Cooler Typ, sehr guter Wrestler, einfach Super!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: PhilippPascalUndertakerfanwrote on 04.07.2009:[6.0] "In der Ministry Zeit echt cool und auch der Biker Taker mochte Edge noch. Umso schader fande ich es als man sie in eine Fehde packte und irgendwie war es auch unlogisch das Edge solange durchhalten konnte und ging nach einer gewissen Zeit auf gut Deutsch gesagt, nur noch auf die Eier. Irgendwann konnte man Edge nicht mehr sehen meiner Meinung nach. Jedoch Wrestlet er gut und ich mag ihn jetzt wieder ein wenig seit er Vikki fertig macht ich hoffe das er bei seinem Comeback sich endlich ganz von ihr abwendet und sogar eventuell mit Taker zusammen arbeitet? Naja wohl kaum das die den Top Heel weggeben :D aber ich denke Edge< --->Taker ist ausgelutscht deswegen auch nur eine drei. Eben weil die Fehde am Ende keine Spannung mehr hatte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: 3durch16wrote on 03.07.2009:[10.0] "meiner Meinung der zurzeit bester Wrestler. Er hat ein perfektes Mic-Work und hat auch eine gute Ringtechnik."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: pildaYwrote on 24.06.2009:[10.0] "Jetzt endlich ohne Vicky! Aber unabhängig davon 10 Punkte, da er einfach alles hat was einen Spitzenwrestler ausmacht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Alorionwrote on 24.06.2009:[10.0] "Mit Chris Jericho bei weitem der beste Heel im Geschäft. Schafft es immer weider durch gute Promos/ Matches das Smackdown Mainevent zu retten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Neubauteneinsturzwrote on 19.06.2009:[10.0] "Edge ist einfach klasse. Er ist einer der besten, die das Business zu bieten hat und gibt einen herrlichen Heelchampion ab. EDIT: Obwohl ich Edge-Mark bin, muss ich Jinx recht geben. Edge ist vor allem in Promos oftmals unfreiwillig komisch. Aber gut unterhalten fühle ich mich dennoch^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Freitag Nacht Koestlichkeitwrote on 17.06.2009:[10.0] "Überragendes Entertainment! Im Moment mein absoluter Lieblingswrestler. Als Face beschissen, als Heel ohnegleichen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jinxwrote on 15.06.2009:[4.0] "Irgendetwas hat mich an ihm immer gestört und seit man mit Jericho den direkten Vergleich hat, kann ich es benennen: Edge ist einfach zu albern. Das Rated-R-Gimmick hatte ja sowieso nur Biss solange Lita noch an seiner Seite war. Nach ihrem Abgang war es dann nur noch auf dem Papier existent und heute, nach der Sache mit Vicky, ist es eigentlich nur noch lächerlich. Alles was er tut, tut er in übertriebenen Stil. Dadurch wirkt er oft unfreiwillig komisch, was unterhaltsam sein kann. Oft wird dadurch aber eine Promo plötzlich in eine Richtung gelenkt die die Spannung vermissen läßt. Er ist halt kein Orton der mit einem gemeinen Blick die Kameralinse zu Eis erstarren lassen kann. Auch hat er die Angewohnheit in einem Match an der falschen Stelle das Tempo herauszunehmen z. B durch posing etc. Sonst im Ring natürlich gut, aber das sind andere auch (wenn man sie denn läßt). Fazit: wenn man kein Edge-Mark ist muß man in der richtigen Stimmung sein um sich gut unterhalten zu fühlen. Sonst sieht man sich lieber einen Jericho an."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CMFabewrote on 15.06.2009:[10.0] "Mein aktueller lieblingswrestler. Er ist einfach zurzeit das perfekte Gesamtpaket. Das war besonder 06-08 zu sehen. Er ist der geborene Heel während er mir als Face (zum Glück schon lange nicht mehr) ziemlich auf den Sack ging. Seine Mtach sind immer gut bis sehr gut und seine Promos zu denen muss man nichts mehr sagen. Diese ganzen nervigen Marks die mich immer wieder fragen warum Edge mein lieblingswrestler ist gehen einem nach der Zeit ganz schön auf die Nerven."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Perry Coxwrote on 14.06.2009:[10.0] "Edge ist sogut wie auf dem Höhepunkt seiner Karriere angekommen. Erfolgreicher geht kaum noch, aber genau das ist es: Die Titel. Erst gewinnt er sie und einen Monat später verliert er sie wieder, dann gewinnt er den Titel wieder und beim nächsten PPV verliert er ihn wieder. So kann es mit einem wie Edge nicht dauerhaft weitergehen. Er braucht bei nächster Gelegenheit einen vernünftigen, langen und überzeugenden Titel-Run. Wie oft hat er beispielsweise den World Heavyweight Title in 5 Runs gehalten? 6 oder 6 1/2 Monate? Es wird Zeit für eine kleinere Neuausrichtung seines Charakters. Momentan hat er einen Titel nicht so nötig, deshalb könnte man sich z. B auf eine längere Story mit einem Chris Jericho geben, wenn dieser mit Rey fertig ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: stinger89wrote on 03.06.2009:[10.0] "Der wohl beste Heel überhaupt im Buisiness... Auf Grund des Bookings manchmal zu abgedreht, aber generell: Sau unterhaltsam. Immer wieder hasse ich den Kerl, also spielt er seine Rolle gut ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Eddiewrote on 02.06.2009:[8.0] "The Ultimate Opportunist gefiel mir schon in seinen Tag Team Anfängen. Die Matches die er mittlerweile oft zaubert sind wirklich meist sehr schön anzusehen, doch auf einem Level wie The Rock, HBK, Taker oder Bret ist er NOCH nicht, 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Soapywrote on 27.05.2009:[6.0] "Sicher immer noch einer der besten Heels der WWE, aber das Gimmick wird wirklich langsam langweilig. Frischer Wind muss her!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: mrfantasickwrote on 25.05.2009:[10.0] "Er ist einfach der beste Heel in der WWE seit langem."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: PetePetePetewrote on 25.05.2009:[10.0] "Momentan der überzeugendste Maineventer neben Y2J. Sowohl am Mic wie auch im Ring ist er konstant top. Gute Matches zeigt er gegen praktisch jeden, schauspielerisch ist er meiner Meinung nach der beste in der WWE und in Sachen Micwork gab es seit Jahren kaum einen besseren. Auch wenn er seit Vichie nicht mehr an seiner Seite ist klar weniger Heat zieht. Er ist halt einfach zu cool, das sehen nun selbst die Marks. :-D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Rated R Superstar EDGEwrote on 11.05.2009:[10.0] "Naja er ist der perfekte worker. Im Ring ist er verdamt gut, hat Carisma und über sein Mic Work muss man nichts mehr sagen. Was mich an ihm stört sind die vielen Runs als World champ. Ich meine 9 in gut drei Jahren. Wen das so weitergeht ist er in 10 Jahren 25 facher Worldchamp. Ich finde die WWE könte ihm den Titel ruhig mal länger lassen. So wie vor Wrestlemania 24 wäre gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jar Jar Binkswrote on 10.05.2009:[10.0] ""Ultimate Opportunist" Diesen Namen trägt Edge wohl nicht umsonst. Er trägt immer wieder den World Title. Warum und zurecht? Er bekommt den Titel zurcht, obwohl ich auch gern neue Champs sehen würde, aber als Champ ist Edge am Besten. Er spielt seine Heel Rolle grandios, der Beste neben Orton, sein Mic Work ist schwer in Ordnung und technisch ist er sowieso ausgezeichnet und da Vicky weg ist, darf er endlich wieder alleine durchstarten --> ganz klar 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: T-Waynewrote on 10.05.2009:[10.0] "Meiner Meinung nach ist er der beste Mann der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Randy85Ortonwrote on 05.05.2009:[10.0] "Mein Lieblingswrestler neben Randy Orton! Geile Ringpräsenz, geile Matches und lustig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: NewGuywrote on 03.05.2009:[8.0] "Tja 9 Runs sind schon heftig für 3 jahre! Aber naja er ist ein guter Heel! Mir gefällt nur nicht, dass er durch seine vielen "gestohlene" Titel recht schwach wirkt. Aber man merkt er darf auch schon ab und zu austeilen, so schlimm wie bei Santino Marella ist es bei weitem nicht ;-)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MemphYwrote on 28.04.2009:[7.0] "Meine Güte hat der sich gemausert.. echt eine starke präsenz in der wwe und mit vielen titel runs ... edit : Mir reichts langsam, wie kann ein Wrestler in 3 Jahren 9mal WHC werden? DAS IST BULLSHIT!  ich verstehe ja , dass er der beste , vielseitigste heel usw. ist , aber 9 runs ... 9 !"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Randy Orton xXx Edge xXx MVPwrote on 22.04.2009:[10.0] "Klare 10 Punkte da Edge der beste Heel seiner Zeit ist. Mich würde es freuen wenn er auch mal Legal Titel gewinnen würde. Sein Moveset ist gut, seine Mimik klasse und er schafft es ja auch immer wieder ganze Hallen zum buhen zu bringen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KingofKings1991wrote on 21.04.2009:[10.0] "Edge ist ein sehr guter Techniker. Ihm sollte die WWE größere Aufgaben geben und ein weiteren Titel dazu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: REYMVPwrote on 19.04.2009:[10.0] "Für mich ist Edge momentan der beste Wrestler der WWE. Aber ich hätte gern ein Turn zum Face! Mit Vickie usw. ist es langweilig geworden. Und mal wieder bei Wrestlemania 25 sein Titel verloren, dass geht langsam aber sicher auf die Nerven. Aber zum Glück wurde er nicht gedraftet, denn Edge ist für Smackdown sehr wichtig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Blackbirdwrote on 18.04.2009:[10.0] "Edge ist neben Jericho der beste Heel der WWE. Sein Micwork ist dem von Jericho beinahe ebenbürtig und auch im Ring hat er einiges drauf. Allerdings gewinnt er mir zu viele Matches, indem er irgendein Hintertürchen nutzt - was allerdings gut zu seinem Gimmick passt. Zudem ist er für mich derjenige in der WWE, der außerhalb des Rings am vielseitigsten und überraschendsten ist (Elimination Chamber '09, Titelgewinn gegen Jeff und HHH). Hat zudem eine richtig geniale Mimik drauf. Keine glatte 10, aber auch keine 9, deshalb bekommt er knappe 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheGamewrote on 16.04.2009:[10.0] "Einer der besten Heels der WWE. Er ist außerdem ein sehr guter Wrestler mit exzellentem Micwork. Verdiente 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: yokosbrotherwrote on 13.04.2009:[10.0] "Edge verdient seine aktuelle Stellung in Smackdown. Er hat in den letzten Jahren viele tolle Leistungen gezeigt und sich dabei wenig geschont. Es ist ein Wunder, das in den TLC Matches vor knapp 10 Jahren er sich nicht umgebracht hat. Auch stimme ich dem Kommentar von Matt Macks zu. Ich will mehr von Edge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Matt Mackswrote on 12.04.2009:[10.0] "Es wird Zeit für Edge, einen neuerlichen Charakterwandel durchzuführen. Die Zeit als Chickenshit-Heel an der Seite von Vickie Guerrero war auf verschiedene Weise enorm unterhaltsam, dennoch kann es nicht so weitergehen wie bisher. Auch die vielen Titel von Edge nehmen langsam komikhafte Formen an, auch wenn seine Präsenz und seine qualitativ hohe Konstanz am Mikro und im Ring diese vielen Titelwechsel einfacher verzeihen lassen. Was ich mir wünsche, ist eine Periode des Psychopathen Edge, der letztes Jahr kurz vor SummerSlam für ein paar Wochen wütete. Ein solcher Edge würde mir gefallen, auch wenn außer Shawn Michaels eigentlich kein frischer Gegner mehr im Main Event für den Rated R Superstar bereitsteht. Obwohl... Shawn Michaels vs. Edge? Book it, Vince."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: manager1977wrote on 07.04.2009:[8.0] "Nicht mein Typ Wrestler. Für mich zu wenig Ausstrahlung. Aber sehr medienwirksam. Verkauft sich super. Kommt aber bei weitem nicht an andere Wrestler ran."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheUndertakerwrote on 02.02.2009:[10.0] "DAS Perfekte Gesamtpaket der in jeder Rolle glänzt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The-Real-Diablowrote on 02.02.2009:[9.0] "Er spielt seine Rolle zwar perfekt, aber sein Gimmick stört so allmählich doch ein klein wenig. Man sollte aus ihm den Psycho-Heel machen, der auch selbstständig Matches gewinnen kann, so wie man es am Ende der Taker Fehde schon angefangen hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RatedRKO84wrote on 31.01.2009:[10.0] "Am Mic ist er einfach super er zieht immer unglaublich viel Heat auf sich, auch wenn ich der Meinung bin dass die Storyline um ihn und Vickie Guerrero langsam ausgelutscht ist, dennoch im RIng gehört er ebenfalls zu den besten in der WWE. Und dann innerhalb von drei Jahren 7 World Title Gewinne in der WWE, das kann nicht jeder ;-)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RobbyUnitedwrote on 25.01.2009:[10.0] "Edge ist in der WWE von der Heel Seite wohl kaum zu übertreffen In Ring Fähigkeiten Top, Mic Work top was will man mehr."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: vida-locawrote on 23.01.2009:[8.0] "Sicher einer der besten Heels den die wwe momentan hat, trotzdem finde ich dass edge auch etwas überschatzt wird. Dass die wwe ihn kein einziges world/wwe championship match richtig gewinnen lässt wird sich eines tages rechen.... auch den Spear den er als Finisher zeigt ist viel zu soft und daher unglaubwürdig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tomkowrote on 06.01.2009:[10.0] "Hat einfach alles, was ein Main-Eventer braucht! Den Look, die Fähigkeiten, eine unglaubliche Mimik und ein perfektes Heel-Work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Smoky63wrote on 05.01.2009:[10.0] "Einfach bombe der Typ, der Großteil seiner Matches gefällt mir... auch als Hardcore Wrestler überzeugend, ich denke, das TLC Match (wenn es iwann mal zustande kommt) gegen Jeff könnte ein Klassiker werden..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Azarothwrote on 05.01.2009:[10.0] "In seiner Rolle als Rated R Superstar kann Edge das ausspielen, was er von allen Heels der Company am meisten hat, nämlich sein Charisma. Dass seine wrestlerischen Fähigkeiten da oft nicht vollständig zur Geltung kommen, sollte man als World-Wrestling-Entertaining(! ) Fan schon in Kauf nehmen. Zwar hat der Psycho-Edge der gegen Ende der Undertaker-Fehde einmal angedeutet wurde auch so seine Reize, jedoch bringt Adam Copeland auch in seiner "ultimate opportunist"-Rolle gerade bei PPVs auch im Ring Top-Leistungen. Eine andere Note als 10 Punkte kann man hier mMn nicht vergeben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: nicojansonwrote on 01.01.2009:[10.0] "Ist einer der besten. Tolle Story um den Undertaker letztes Jahr und einfach einmalig im Ring, wenn er mal alles zeigen dürfte. Tolles Charisma und als Heel einfach unschlagbar. Auch damals als Tag-Team Wrestler hatte er deutlich verdiente Erfolge mit Christian und seit seinem Wandel zum Rated R Superstar hat er das gefunden, wpzu er ins Wrestlinggeschäft gekommen ist, um die WWE Zuschauer zu Unterhalten. Klasse Typ im Ring, aber Persönlich ein ziemliches Arschloch(siehe Matt Hardy, dem er ja Lita ausgespannt hatte). Aber trotzed noch immer verdient da, wo er ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sallywrote on 31.12.2008:[5.0] "Wrestlerisch ist Edge wirklich kein schlechter Typ, aber in seiner Storyline mit Vicky kommt er ja kaum dazu sein Talent zu beweisen. Als er noch gegen z. B. John Cena eine Fehde hatte gefiel er mir um einiges besser."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jakeswrote on 21.12.2008:[6.0] "Mag ihn irgendwie nicht der hat so ne schmutzige art :) Aber trotzdem super wrestler deshalb 6 punkte"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: spawnforeverwrote on 17.12.2008:[10.0] "Als Heel kommt er super rüber , für den world title ganz gut geeignet aber gleich 6 mal in ca. 3 jahren. naja dass war ja dass booking aber so würde ich sagen einer der besten die es gibt. Ringintiligenz, improvisation und wie er dass gimmick rüber bringt , obwohl ich ihn gerne wieder als Face sehen würde, aber sonst einfach pefekt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ScrWwe94wrote on 17.12.2008:[10.0] "Unglaublicher Heel, der immer eine gute Show abliefert. Überraschungs Rückkehr 2008 bei der Survivor Series wo er sich den WWE-Title sich sichern konnte, welchen er aber wieder bei Armageddon an Jeff Hardy abgeben musste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kane15wrote on 11.12.2008:[9.0] "DER Superheel in der WWE... ohne ihn wärs irgendwie langweilig :)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KSkevkevwrote on 06.12.2008:[7.0] "Es kotzt mich einfach an das er seine Titel noch nie ehrlich gewonnen hat! Ansonsten kann ich ihn eigentlich leiden."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: michawrestlingfanwrote on 28.11.2008:[10.0] "Der beste Heel im Geschäft. Er hat den Erfolg einfach verdient und mich freut es, dass er zurück ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Miteamexicowrote on 27.11.2008:[10.0] "Er ist einfach einer der Besten in diesem Geschäft. Er bring immer klasse Leistungen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Maikwrote on 24.11.2008:[10.0] "Also ich muss sagen Edge gefällt mir von Jahr zu Jahr besser... Als er bei RAW war, war er bis zum Ende nicht gerade Erfolgreich. Zumindest nicht so wie er es verdient hatte! Aber jetzt bei SmackDown hat er oft genug bewiesen das er es verdient im Main Event zu stehen und auch mal länger den Titel zu halten. Er hat seit dem er bei SmackDown ist (2007) bereits 4 mal sich den höchsten Titel des Brands gesichert, super Matches mit Batista und Undertaker gehabt und durfte sogar WrestleMania headlinen zusammen mit dem Undertaker. Außerdem mag ich den "Psycho-Edge" zudem der Undertaker ihn gemacht hat. Alles in allem hat er sich die 10 Punkte 100%ig verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Ayatollah of RocknRollahwrote on 24.11.2008:[10.0] "Ein Phänomen! Er kann jede Crowd gegen sich aufbringen und steht nicht umsonst an der Spitze der WWE auf Seiten der Heels. Er ist der Beste im Business im Moment und sorgte mit dem Undertaker dafür, dass SmackDown! mich fast ein halbes Jahr weit mehr interessiert hat als RAW. Seit seinem Heel-Heel-Turn macht er einfach noch mehr Spaß mit seinem Psycho-Gimmick. Er wird auf lange Sicht der beste Heel bleiben, da er auch am Mic, bei der Ausstrahlung und den Ringskills nahezu keine Schwächen aufzeigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Animal360wrote on 24.11.2008:[7.0] "Wieder Champ, Klasse Entertainer aber sein Gimmick vom Bösen buben ist mir zu "ausgelutscht" deshalb nur 7 pkt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Hitman-Hartwrote on 24.11.2008:[10.0] "Ich bin Edge Fan seit ich ihm zum ersten Mal im Ring gesehen habe. Sehr viel Charisma, gutes Mic Work und seine In-Ring Skills sind wirklich klasse! Er hat einfach alles drauf. Ein kompletter Wrestler. Leider... ja leider gibt es einen Knick in seiner wirklich guten Karriere... und der Knick begann mit Vicky Guerrero. Was soll das? Was möchte die WWE damit bezwecken? Wollen sie Edge unglaubwürdig darstellen? Als ein Weichei der es nicht alleine hinbekommt Champion zu werden? Ich finde es wirklich schade das die Fehde mit dem Undertaker ziemlich versaut wurde. Sowas hat die Fehde um beide Wrestler nicht verdient. Edge sollte sich von seinen Edgeheads und vorallem von Vickie Guerrero lösen und endlich wieder zeigen was er kann! Richtig gut Wrestlen und Entertainen! Daher bekommt Edge jetzt noch eine 2 von mir. Ansonsten klar eine 1... aber erst wenn er wieder der gute alte Edge ist ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: mdbnasewrote on 23.11.2008:[10.0] "Sowohl als Face als auch als Heel überzeugend. Guter Wrestler, gutes Mic-Work, glaubhaft und immer unterhaltsam. Daher bleibt keine ander Möglichkeit... 10pts."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: undertaker619wrote on 23.11.2008:[10.0] "Edge ist der beste Heel der ganzen WWE und wird hoffentlich bald wieder WWE Champion sein!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: domi1984wrote on 17.11.2008:[10.0] "Edge hat ein tolles Mic Work und im Ring ist er klasse. Neben Jericho mein Fav. bei der WWE. Klare 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The System Failedwrote on 14.11.2008:[10.0] "Er ist definitiv der Beste Heel der WWE. Seine Promos sind jedesmal nahezu perfekt, er hat eine unglaublich starke und unverwechselbare Mimik und Gestik und schafft es schon vor dem ersten Wort mehr Heat zu erzeugen, als jeder andere Wrestler. Auch im Ring ist er klasse und sehr abwechslungsreich. Absoluter Top-Worker, der jeden der 10 Punkte mehr als verdient hat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rocky-Takerwrote on 12.11.2008:[10.0] "Einfach nur Hammer. Der Mann versteht sein Fach und weiss zu Unterhalten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: hostrodwrote on 11.11.2008:[9.0] "ohne Worte - er lebt seine Heel-Rolle einfach. Den Punkt Abzug gibts nur wegen der manchmal zu theatralischen Mimik, wenn er sauer ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LordTrailerwrote on 09.11.2008:[10.0] "Edge Leistungen sind nicht nur hervorragend sondern auch unheimlich konstant. In einer Zeit in der es Heels nicht leicht haben, beständig als solche wahrgenommen zu werden, bleibt nur die 10. Wrestlerisch (in der WWE) und vom Charisma her einfach eine Bank."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Zizouwrote on 06.11.2008:[4.0] "Hat mir zuletzt in der Vickie-Storyline im Gegensatz zur Batista-Story gar nicht mehr gefallen. Zu übertrieben und als Psycho-Edge nicht mein Fall. Das Gimmick müsste für meinen Geschmack in eine andere Richtung entwickelt werden."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: squadra3wrote on 06.11.2008:[9.0] "Hat mir früher nicht wirklich gefallen, aber aktuell ist sein Gimick perfekt auf seine Fähigkeiten abgestimmt. Hoffe das sich bei seiner Rückkehr da nichts ändert!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Semcoolwrote on 02.11.2008:[10.0] "DER Heel in der WWE da er seine Rolle als Psycho-Edge genial spielt und absolut mein Lieblingswrestler ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Johnnywrote on 25.10.2008:[10.0] "Ich habe noch nie einen Wrestler mit einer besseren Ausstrahlung gesehen!  Heal hin oder her, der Charakter "Edge" ist einfach außergewöhnlich, sodass ich nichts anderes als 10 Punkte vergeben kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: alkoholiKAwrote on 17.10.2008:[10.0] "Ein Perfekter Worker. Genial im Ring (was viele manchmal übersehen) und am am Mic. Zudem ein extrem guter Schauspieler, spielt die Rolle als feigen Angsthasen perfekt. Man bedenke nur manchmal seine Gesichtsausdrücke wenn er in seinen Promos durch die Musik vom Undertaker oder Batista unterbrochen wird^^ Bester Heel der WWE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: edge141wrote on 07.10.2008:[10.0] "EDGE ist auf jeden Fall einer der besten Wrestler der WWE! Er hat alles was ein guter Wrestler braucht. dazu ist er einer der besten heels und ein super Schauspieler !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: El Reywrote on 07.10.2008:[8.0] "Einer der aufstrebenden und zugleich zwielichtigen Worker. Er ist als Champion glaubwürdig aber sollte mehr Matches clean gewinnen. Hinter den Kulissen mag ich ihn eher nicht so sehr weil ich ein großer Matt Hardy Fan bin aber bei dieser Geschichte war Lita nicht ganz unbeteiligt"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: E-T-Wrestlerwrote on 06.10.2008:[10.0] "Edge ist ein perfekter Wrestler, der mit viel Technik und effizienz seinen Gegner besiegt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SeEn2005wrote on 05.10.2008:[10.0] "Ein unglaublich guter Wrestler, der eine tolle Leistung bei seiner Fehde gegen den Taker gezeigt hat. Ich hoffe, sein Können wird von der WWE gut weiter genutzt, denn es wäre schade, wenn so ein Talent vergoldet wird ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RBoss90wrote on 01.10.2008:[10.0] "Edge im letzten Jahr der Hauptgrund gewesen, warum ich SmackDown! so aufmerksam verfolgt habe. Lieferte sich mit dem Undertaker eine Fehde, die in die Geschichtsbücher eingehen wird, schon dadurch, dass sie über ein Jahr dauerte und trotzdem nie langweilig wurde. Im Ring kann er auch mich schwachen Wrestlern gute Matches abliefern und er verkörpert sein Rated R Superstar Gimmick perfekt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Scotty 2 Hottywrote on 01.10.2008:[10.0] "Genialer Heel, der sowohl am Mikrofon als auch im Ring zu überzeugen weiß. Im Ring hat er über die Jahre hinweg zwar ein wenig nachgelassen, dafür steigerte er sich aber stetig am Mikrofon. Ein weiterer Punkt, der die vollen 10 Punkte für den Rated R Superstar rechtfertigt ist, dass er so gut wie jede Matchart mitgehen kann. Egal ob Hardcore, Ladder, TLC oder ein einfaches Singles Match, Edge überzeugt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ghostwrote on 29.09.2008:[7.0] "The (ove)R-rated Superstar - Edge. Obwohl ich ihn eigentlich ziemlich gut finde, in der Heel-Rolle vermag er zu überzeugen, fand seine Fehde mit Cena besonders gut - finde ich aber dass er etwas overrated ist. Gerade die sehr lange dauernde Story mit Vicke Guerrero hat mir kaum gefallen, und ich begreiffe nicht ganz wieso die Grimassen und Heel-Gestiken von Edge als das beste was es gibt bezeichnet wird - ist mir schleierhaft, da es doch ziemlich an der Grenze zu schlecht geschauspielert ist."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SirFlubbi42wrote on 29.09.2008:[10.0] "Der beste Heel den ich bewusst mitbekommen habe. Ist einfach genial was seine Entertainerfähigkeiten angeht. Im Ring hat er im Tag Team und mittlerweile ja auch solo, nicht nur überzeugt, sondern sogar Standards gesetzt. Ein komplettes Paket an Spielfreude, Athletik und korekter Einstellung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: StoneColdRevowrote on 28.09.2008:[10.0] "Wer ist der beste Heel im ganzem Jahr? Das ist wohl Edge. Er ist gut im Ring und hat ziemlich gutes Mic-Work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: GoddeKSCwrote on 26.09.2008:[10.0] "Edge ist einfach der beste Heel der Liga zur Zeit! Das sieht man schon alleine an der Tatsache, dass Edge nur im Ring stehen muss um Buhrufe zu ergattern wie es sie schon lange nicht mehr gab! Im Ring top und eine Schauspielkunst, dass sich die Hollywood-Stars bald Sorgen machen müssen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: HCN007wrote on 21.09.2008:[10.0] "Edge ist wohl ein extrem guter polarisierender Heel, der eigentlich jede Sparte eines Heels bedienen kann. Die TT-Zeit mit Christian, dann der Split bishin zu den MITB-SLs und die Fehden gg. Foley, Cena, Batista und den Undertaker haben gezeigt, dass er nicht nur einer der größten ist, er ist momentan das Beste, was die WWE zu bieten hat. Top im Ring, Top am Mic, Charisma und Ringpräsenz ohne Ende und wohl der beste Schauspieler der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Theron083wrote on 19.09.2008:[10.0] "Edge gehört für mich zu meinen absoluten Favoriten. Er ist ein klasse Wrestler und ein extrem guter Heel. Besser gehts einfach nicht find ich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Julezwrote on 07.09.2008:[10.0] "Er ist ein Top-Wrestler und ein großartiger Heel. Wenn man nur an die TLC-Matches zurückdenkt, bekommt jeder Fan eine Gänsehaut. Die Fans lieben es, ihn zu hassen. ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Niklas1106wrote on 04.09.2008:[10.0] "Erstklassiger Schauspieler, der seine Rolle glaubhaft verkörpert. Wrestlerisch kann ich keinen Schwachpunkt an ihm finden. Er ist ein guter Maineventer und momentan der Heel der WWE schlechthin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: King of Queenswrote on 04.09.2008:[10.0] "Um die 10 Punkte kommt man bei Edge einfach nicht mehr vorbei. Die jüngsten Promos sind genial, die Matches mit dem Undertaker saustark, seine schauspielerischen Fähigkeiten einzigartig. Edge verkörpert mit Jericho momentan DEN Heel der WWE und wird sich mit weiterhin konstanter Leistung sicherlich noch mehr als einmal WWE-Champion nennen dürfen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tripple-Dwrote on 29.08.2008:[10.0] "der top heel der letzten jahre! super mic-skills mit nahezu perfekter gestik und mimik... obwohl ich eigentlich kein großer fan von EDGE bin, muss ich das nahtlos annerkennen - 10 punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Blue Meaniewrote on 25.08.2008:[10.0] "In den letzten Monaten hat er einfach nur überzeugt und das in allen Belangen. TOP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: carlos4wrote on 24.08.2008:[7.0] "Derzeit der klar beste Heel von Smackdown... Bei RAW seh ich Jericho & Orton vom Potential her auf einer ähnlichen Stufe wie Edge. Ich find seinen Gimmickwandel durchaus gut, da es mittlerweile schon direkt genervt und nicht mehr überrascht oder ähnliches hat, als Hawkins & Ryder oder andere zum Ring kamen und ihm halfen. Allerdings weiß ich nicht, ob mir das Psychopathen- Gimmick gefällt, da ich Übertriebene Gestik nicht mag und das grad bei Edge oft übertrieben ist, weshalb ich auch einiges an Punkten abziehe. Er hat gute schauspielerische Fähigkeiten, aber für mich ist weniger oft mehr, grad in Punkto Gestik & Mimik."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Wise Warriorwrote on 22.08.2008:[7.0] "Obwohl bei mir Entertainment weit über dem Wrestlerischen steht kann ich Edge keine wirklich hohe Wertung geben. Der Edgemeister ist ein charismatischer Clown und am Mikrofon unschlagbar, aber für mich sind seine Single-Matches eine wahre Qual. Ich kann mich nicht erinnern, ob er neben dem Speer noch einen anderen offensiven Move beherrscht..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Frutzwrote on 18.08.2008:[10.0] "In den letzten Wochen und Monaten hat Edge sich zu meinem absoluten Top-Heel entwickelt. War ich nach meiner Rückkehr noch skeptisch, was seinen Status betraf, bin ich mittlerweile nur noch begeistert von ihm. 5-Sterne-Promos wöchentlich, im Ring seit je ein starker Wrestler und mit einer Fähigkeit für Mimik und Gestik ausgestattet, die beängstigend gut ist. Er ist der Top-Star im SD-Rooster und einer der Garanten dafür, dass sich das blaue Brand ganz allmählich vom B-Show-Status befreit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: nacho83wrote on 17.08.2008:[9.0] "Das einzige, was ich spontan kritisieren kann, ist die Tatsache, dass der Mann ein wenig sehr verletzungsanfällig ist. Ansonsten eines der grössten Talente, die in der WWE gerade vorhanden sind."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DarkIcewrote on 15.08.2008:[9.0] "Ich würde am Liebsten 9, 5 geben, geht nur nicht^^ Die WWE hat in ihm einen, und dafür dürft ihr mich verfluchen, Anti-The Rock. Gutes bis Sehr Gutes Micwork, klasse In Ring Action (sofern zu sehen). Er ist im vergleich zu Rock einfach nur verhasst. Für mich derzeit der beste bei SD"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Yetiwrote on 15.08.2008:[10.0] "Für mich ist Edge derzeit DER Wrestler der WWE und DER Grund, Smackdown zu gucken. Jede Woche eine Hammerpromo, interessante Story + Charakterentwicklung, schauspielerisches Talent und gutes Wrestling. Edge ist wirklich das Maß aller Dinge. Mir fällt kein besserer Heel ein. Wenn es ums Heelsein geht, sag ich nur eins: Triple H kann einpacken!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: wwegirlwrote on 13.08.2008:[9.0] "Sehr gut hoch gearbeitet! Manchmal einfach nur nervig und overrated aber er spielt seine Rolle sehr gut!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated-RKOwrote on 12.08.2008:[10.0] "Zur Zeit der beste Heel der WWE er macht seinen Job super deswegen ist er ja mein Favorit bei SD! er hat einfach das Talent Heat auf sich zu ziehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: sono fagunwrote on 06.08.2008:[10.0] "Der Topheel der Firma, er ist einfach der ultimative Bösewicht, ein super Schauspieler und Wrestler. Mimik, Gestik und Ausdruck: top! Die Storyline mit Vickie stört mich zwar, reicht aber nicht für einen Punkt Abzug."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Stephanwrote on 05.08.2008:[9.0] "Ich mag ihn nicht besonders aber er ist ein ganz großer was sein Micwork und und seine Faces angeht mich stört ein wenig die Geschichte mit Vicky aber das hat sich ja jetzt wohl erledigt obwohl ich ein Old Scool Fan bin und Ihn nicht mag trotzdem 9 Punkte für seine gute Arbeit"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rookie of the Yearwrote on 04.08.2008:[10.0] "Für mich momentan einer der überzeugendsten Wrestler der WWE. Man nimmt ihm sein Gimmick voll und ganz ab. Technisch hängt er zwar manchmal etwas hinterher, aber das tut seiner guten Arbeit keinen Abbruch, finde ich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Edibaswrote on 04.08.2008:[10.0] "Derzeit das beste Gesamtpaket im Wrestlingbusiness. Er kann in jedem Gebiet überzeugen, egal ob im Ring oder am Mikro. Charisma besitzt Edge ohne Ende und ist derzeit einfach der beste Mann im Business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Legendkiller rated rkowrote on 04.08.2008:[10.0] "So, meiner Meinung nach ist Edge der wohl beste Worker, den die WWE zu bieten hat!  Einen besseren Heel gibt es zurzeit nicht, er hat auch schon Triple H bei weitem überholt, denn die letzten 2 Jahre drehten fast nur um den Rated "R" Superstar, sein Micwork ist einfach einsame Spitze, man kauft ihm seine Promos, da er sie sehr realistisch rüber bringt und Konkurenz brauch er zurzeit nicht fürchten, denn in SD! beherscht er das geschehen. Wenn ich mir allein schon seine Mimik und Gestik angucke allein bei der Hochzeit! Wie er alles rübergebracht hat und seine miesen Aktionen, einfach herrlich, als Triple H reinkam und Edge sich verhalten hat. Einfach großartig, er ist für der wohl einzigste Grund warum ich SD! einschalte. Er bringt auch Faces perfekt rüber, weil er den Heat der Fans magisch anzieht. Und er ist nicht nur ein großartiger Schauspieler, nein!  Im Ring überzeugt er auch!  Ein grund mehr warum ich mich auf das Hell in a Cell beim Summer Slam freue, denn er wird dort"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Batista619wrote on 30.07.2008:[10.0] "Der wird sich noch öfter die wichtigsten Titel der WWE umbinden. Super Wrestler. super am Mic super wrestlerischeres Können und er hat ein Riesen Charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated-R Starwrote on 29.07.2008:[10.0] "Der BESTE Heel aller Zeiten. Spielt seine Rolle mehr als perfekt. Mehr gibts auch nicht zu sagen. 10 Punkte plus..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Swanton-Bombwrote on 27.07.2008:[10.0] "Viel Charisma, exzellente Ring-Skills, tolles Mic-Work, super Heel, genialer Schauspieler und noch vieles mehr. Ohne Zweifel 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: flo99wrote on 27.07.2008:[10.0] "DER Heel der WWE. An ihn kommt im Moment nicht einmal Chris Jericho an. Am Mic gehört er für mich nicht zu den Allerbesten, ist aber sehr gut, Charisma hat er auch und er liefert die besten TV-Matches des Jahres(v. a. gegen CM Punk, Big Show und Matt Hardy)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Raptorwrote on 23.07.2008:[10.0] "Bester Heel der WWE, ganz einfach hier 10 punkte zu vergeben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Main Eventwrote on 20.07.2008:[10.0] "Edge ist wirklich einer der besten Wrestler der Welt. Er kann auch unheimlich gut schauspielen und sein Mic Work ist auch beachtlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kane123wrote on 14.07.2008:[10.0] "Er ist der beste Heel den WWE hat........... und mic-work ist wirklich super............... Wrestlerisch hat er auch was drauf"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Movadowrote on 13.07.2008:[9.0] "Er ist nach Meinung vieler, auch nach meiner eigenen, der beste Heel den die WWE zur Zeit hat. Besser noch als Orten. Er könnte, nein er wird eines Tages den Rang eines Ric Flairs haben. Schon allein seine Leistungen am Mic, seine ganze Gestick und Mimik, die Art wie er die Storylines Umsetzt, einfach einer der Besten die bisher gesehen habe. Ganz zu schweigen von den In-Ring Qualitäten, er kann fast alles. Der einzige Grund warum ich keine 10 geben kann ist einfach die Tatsache das es noch Luft nach oben gibt. In ein paar Jahren wird er mehr als eine 10 verdient haben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Adam-Copelandwrote on 10.07.2008:[10.0] "Er liefert alles... Toller Heel, gute Mic Arbeit, Tolle Matches! Das einzige was Edge derzeit fehlt ist der Gürtel :D!  Leider findet die Hochzeit jetzt doch statt, ABER die soll ja vom Undertaker unterbrochen werden! Hoffe es wird eine ähnliche Fehde wie gegen Kane."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: hanseplastwrote on 06.07.2008:[10.0] "Zur Zeit der beste Heel den es in der WWE gibt. Allein sein Mic-Work, seine Mimik und seine Körperspache in den Promos sind schon genial und seine (Wrestling)aktionen sind auch top. Ein unglaublicher Typ, den man einfach nur hassen kann als mitfiebernden Wrestlingfan!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Peisistratoswrote on 05.07.2008:[10.0] "Dank seiner momenaten Form als Heel hab ich meine Note abermals verändert und vergebe Edge nun die Höchstnote. Er gefällt mir als Heel immer besser, gerade jetzt, da jetzt auch noch eine psychopathische Komponente in seinen Handlungen hinzukommt!  Bitte mehr davon!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kevichenkowrote on 02.07.2008:[10.0] "Edge ... ja sehr guter Heel. Spielt seine Rolle als Heel extrem gut. Sehr gutes Wrestling und sehr gutes Mic-Work ... volle Punktzahl ! Auch wenn ich ihn nicht sonderlich mag^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bandiwrote on 02.07.2008:[10.0] "Für mich der derzeit beste Heel der WWE, absolut überzeugend macht keine Fehler im Ring und Gestik einfach Weltklasse Bin gespannt wie es mit seiner "Familia" weitergeht"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: THEROCK316wrote on 01.07.2008:[10.0] "Er ist der PERFEKTE Heel Auch wenn die Sache mit Vickie jetzt langsam vorbei sein koennte und er alleine arbeiten oder mit einer schoenen Frau zusammen betruegen koennte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Phenomwrote on 22.06.2008:[10.0] "Bei meiner glaube ich 5. 10 Punkte Bewertung werde ich bestimmt bald wieder eine Warnungsemail bekommen, aber hier ist das einfach nicht anders möglich. Denn wer hat mehr Charisma, Austrahlung, und bessere Mic skills als Edge? Genau, keiner! Im Ring ist er ebenfalls ein Ass, hat jeden einzelnen seiner Titel verdient, und sollte meiner Meinung nach niemals aufgegeben werden. Bitte WWE, dieser Mann muss einfach mal in die Hall of Fame. Nunja, gut das sein Potenzial zur Zeit auch genutzt wird, ich wünsche ihm viel Glück!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The-SwiZZlerwrote on 18.06.2008:[10.0] "Einer der Besten der letzten Zeit.. Super Mic-Work, Super Technik im Ring, Kann auch mal ins Extreme gehen... Alles was ein Top-Star braucht.... World Title absolut gerecht erhalten !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Nedgewrote on 13.06.2008:[10.0] "Edge ist ein ziemlich kompletter Wrestler. gutes Gimmnick, gutes Mic work und gute Ringfähigkeiten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Riley Mathewswrote on 10.06.2008:[10.0] "Definitiv der Top-Heel der WWE. Viel Charisma, Klasse Micwork und er ist auch ein guter Techniker und hat natürlich schon viel harte Bumps (speziell in den TLC-Matches) hingelegt. Schade nur das die Technik etwas leidet wenn er ein Heel ist aber darüber sehe ich jetzt mal hinweg."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: andrekoenigwrote on 08.06.2008:[8.0] "Edge ist ein Wrestler der schon viel in seiner Karriere überstehen musste. Er war bei jedem TLC Match dabei und hat sich eigentlich immer verletzt, was bei diesen Matches eigentlich kein Wunder ist. Der Rated 'R' Superstar verkörpert die Rolle als Heel perfekt und wirkt auch immer glaubwürdig. Der größte Markel bei Edge ist: das wenn er der Heel ist, seine Technik darunter leidet. Er zeigt zwar ansehnliche Matches, aber wenn er ein Normales Match bestreitet schaft er es selten ein 4 Sterne Match zu kreieren."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jimpanse1980wrote on 05.06.2008:[10.0] "Update: Edge ist The Man bei Smackdown und der beste, weil frischeste, Heel, seit langem. Kann jede Art von Matches gehen, wirkt immer überzeugend. Von seinem Charisma und seinem Micwork brache ich hier nicht weiter zu sprechen. Auch in Zusammenarbeit mit "La Familia" ganz großes Kino"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DeadHeadwrote on 04.06.2008:[10.0] "Er ist der beste Heel der WWE, er hat eine sehr gute Technik und er schafft es auch immer wieder sehr gute Matches abzuliefern. Das ist die 1. ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: xXShawnMichaelsXxwrote on 03.06.2008:[10.0] "Einfach ein sehr guter Wrestler er weiß was er macht und entertaint mit seinem Heel Gimmick"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rob the bobwrote on 24.05.2008:[9.0] "Er hat mich in letzter Zeit Vollkommen überzeugt. Er macht seinen Job gut und ist sehr authentisch. Er kann auch was, nicht wie der rest, der von der WWE gepuscht wird.. mal gucken wies mit dem Wahren "Mr. Money in the Bank" weitergeht.."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sockewrote on 23.05.2008:[10.0] "bester Heel in der WWE, legendäre TLC-Matches, als Single-Wrestler sogar noch besser, logo 10 Punkte, nur die aktuelle Story mit Vickie & dem Taker nervt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Deadman walkingwrote on 20.05.2008:[8.0] "Okay bleiben wir fair auch wenn Ich ihn völlig unsympatisch finde und die Fehde mit dem Taker nervt nur noch, er ist ein Top Wrestler mit tollen Moves."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DirtiestPlayerwrote on 08.05.2008:[10.0] "Perfekter Heel. Perfekte Ausstrahlung. Nur seine Story mit Vickie Guerrero gefällt mir in letzter Zeit nicht so gut. Wünsche mir eher jemanden wie z. B. Layla an seiner Seite. Wäre noch mehr etwas fürs Auge. Aber egal, trotzdem ganz klar Note 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheBigBwrote on 29.04.2008:[8.0] "Auch wenn ich Edge nicht mag , er ist ein Riesentalent im Ring , sehr gute Technik und sehr überzeugende Reversals die er zeigt , das Ratet R Superstar - Gimmick passt sehr gut zu ihm . Ich muss Edge doch sehr loben , obwohl ich Undertaker-Fan bin . Leider gibt es nur die Note 2 da die WWE Edge zu einer Witzfigur gemacht hat , ich finde die Affäre mit Vickie Guerrero einfach nur lächerlich !"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LexLuger4everwrote on 22.04.2008:[10.0] "Ob man Edge mag oder nicht, muss man zweifellos anerkennen, dass er sich seit 2005 zu DEM Heel der Company gemausert hat! Edge ist für mich von der Entwicklung her der Mann der letzten Jahre: überragende Mic-Skills, an Mimik und Gestik einfach nicht zu überbieten und auch im Ring ziemlich stark. Wenn er keine 10 Punkte bekommen soll, dann bekommt sie niemand."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: X-Raywrote on 17.04.2008:[10.0] "Ein Vollblutwrestler. Gibt immer mehr als 100%! Sei es am Mic oder im Ring oder Backstage. Er kann nichts mehr verbessern, daher Rated 10 Superstar!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rob Van Duesenschrauberwrote on 15.04.2008:[9.0] "Hat in den letzten Jahren eine irrsinnige Entwicklung hinter sich. Edge ist jetzt nicht umsonst ein Main Eventer und da gehört er jetzt auch hin."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Fran7iCwrote on 12.04.2008:[10.0] "Starker Wreslter mit super Attitüde zum Leben. zZ. Bestes und sehr erfolgreicher Wreslter. Mein #1 Favorit"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Die Gurkewrote on 10.04.2008:[9.0] "Mein 2t liebster Heell nach Jericho. Gute In-Ring Skills und gutes Mic-Work, allerdings finde ich sein Heel-Gimmick manchmal etwas übertrieben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Blade Bourdeauxwrote on 10.04.2008:[9.0] "Man merkt ihm einfach an, dass er seinen Traum lebt. Der derzeit beste Heel der WWE, eigentlich zu schade für die aufgezeichneten Shows von SD, aber da kann er wenigstens in seiner Rolle glänzen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: nightfallwrote on 10.04.2008:[9.0] "Eine Kleinigkeit stört mich an ihm. Ich kann aber nicht genau sagen was. Ansonsten einer, wenn nicht der, Beste(n) aktuelle Sports Entertainer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ditrhavwrote on 10.04.2008:[5.0] "Ich verstehe nicht und werde es nie verstehen was die Smarks an diesem Kerl finden. Gerade sein so oft und viel gelobtes Charisma kann ich nicht entdecken. Von der Mimik her halte ich ihn für einen ganz schlechten Schauspieler, sein Micwork ist aber in Ordnung. Wrestlerisch mag er einiges drauf haben, allerdings sieht man davon in letzter Zeit nicht mehr allzu viel, da Mr. Copelands Gimmick darin besteht sich die Siege zu erschleichen ohne viel einstecken zu müssen. Wenn der Mann endlich mal wrestlen darf und eine ordentliche Storyline bekommt bin ich gerne bereit mein Urteil zu revidieren, aber so gibt es zunächst nur eine mittelmäßige Note."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ultimativboesewrote on 30.03.2008:[6.0] "Alle lieben ihn.. alle finden ihn toll. "Bester Wrestler der WWE usw" Er ist in meinen Augen gut.. aber auf dauer ziemlich nervtötend"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ultimate-warrior-xwrote on 29.03.2008:[10.0] "Einfach nur genial was Edge abliefert. Schade nur, dass er aufgrund seines Gimmicks als feiger Heel im moment nicht alles zeigen kann wass in ihm steckt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Urbaner1982wrote on 26.03.2008:[10.0] "Edge ist der Old School Heel schlechthin. Leider doch in letzter Zeit ein wenig abgebaut. Ich erinnere mich da noch an den Hair v. s. Hair Match gegen Angle. Ganz groß! Und aufgrund seiner Vergangenheit, auch ne 1. Hoffe inständig, dass er irgendwie den Title behält..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Hunter2007wrote on 21.03.2008:[10.0] "Die WWE hat heute kaum einen besseren Heel als Edge. Im Ring ein Talent, am Mic wird es bei ihm nie langweilig! Er ist einfach in jeder Hinsicht genial, egal was er macht. Er schafft es, dass man ihn so richtig hasst und ihn dennoch bewundert. Sowas ist schon selten bei Heels zu sehen. Auch in WWF-Zeiten hat er ordentliches bewirkt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: edge-head92wrote on 15.03.2008:[10.0] "Gegenwärtig der beste Wrestler der WWE!  Sowohl im Ring als auch am Mikro."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheBastion90wrote on 15.03.2008:[10.0] "Als Heel Wunderbar, als Face eher Fade. Klasse Mainevent Fehden mit Unterhaltungswert. Ein Mann mit Charisma, Ausstrahlung und Fähigkeiten im Ring. Zwar des öfteren durch Verletzungen zurückgeworfen, aber immer wieder zurückgekommen und wie es mir scheint jedesmal ein Stückchen besser!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Instant Classicwrote on 13.03.2008:[8.0] "Ein guter Wrestler mit viel Charisma, der seinen Gott-Status bei den Smarks allerdings einfach nicht verdient hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AnFuwrote on 02.03.2008:[10.0] "Edge ist genial, hat sich den World Heavyweight Title fast direkt nach seiner Verletzung wieder umgeschnallt und ist das auch völlig zurecht! Er verkörpert sein "Rated R"-Gimmick perfekt und benötigt jetzt nicht mal mehr die geniale Lita an seiner Seite. Sein Charisma ist klasse und am Mic ist er sowieso einer der Besten. Bestnote und aus!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Giant2wrote on 28.02.2008:[6.0] "Also, tut mir Leid, ich kann mit Edge absolut nichts anfangen. Er wird, weil kein Besserer da ist in diese Position gepresst und hochgejubelt. Nein, da sind Orton und auch Kennedy besser."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: kikibuwrote on 28.02.2008:[4.0] "Entertaiment mag ja wichtig sein, aber Er vergisst halt worum es wirklich geht beim Wrestling."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kaefigtierwrote on 26.02.2008:[10.0] "Er ist momentan einer der besten Worker der WWE. Sein Gimmick ist genial. Edge ist sehr charismatisch und ein sehr glaubwürdiger Heel. Wrestlerisch ist er auch top. Ich finde es nur schade, dass er den Titel bei Wrestelmania voraussichtlich an den Undertaker verlieren wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tee777wrote on 19.02.2008:[8.0] "Hatte ihm zuerst ne 5 gegeben aber er wird immer besser vorallem sein Finisher ist klasse! Zurecht Champion freue mich auf das Wrestelmania Match mit dem Undertaker!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Joeevil123wrote on 19.02.2008:[10.0] "Der Imo beste Wrestler der WWE. Hätte ich vor ein paar Jahren niemals gedacht , hat aber eine enorme Entwicklung vollzogen. TOP!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Fumaryuwrote on 07.02.2008:[10.0] "Edge gehört zu den Großen der WWE. Gute Schauspielerei, aber auch gute wrestlerische Fähigkeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Father Frostwrote on 07.02.2008:[10.0] "Edge ist momentan DER unterhaltsamste Wrestler bei Smackdown und WWE überhaupt! So lange musste er in der MidCard darben und jetzt, and der Spitze, haut er so dermaßen auf die Kacke, dass es eine wahre Freude ist. Den Heel gibt er so wunderbar fies und hinterhältig (mit der richtigen Note Selbstironie)- schade nur, dass er seine derzeitigen Matches auf Teufel komm raus unfair gewinnen/verlieren muss. Ein bisschen könnten die Autoren auf seine Fähigkeiten Rücksicht nehmen, die kommen leider zu kurz. Jemandem mit seinem Charisma wünsche Ich noch eine lange Titelregentschaft!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Baxiwrote on 30.01.2008:[10.0] "Er ist sicherlich einer der unterhaltsamsten Wrestler in der WWE, hervorragend am Mic und seine ring-Fähigkeiten waren zumindest mal sehr gut. Im Moment verstehe ich nicht warum man ihn JEDES Match durch DQ gewinnen lässt, Heel in oder her. Obwohl es nach seiner Verletzungsgeschichte verständlich ist das es keine so riskanten Matches mehr gibt wie in seiner WWF Zeit, denke ich aber das er immer noch mehr könnte als er derzeit im Ring zeigen darf. Wenn ich dann mal von der aktuellen Phase absehe hat er meiner Meinung nach immer noch ein "sehr gut" verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: D3adm4nwrote on 29.01.2008:[10.0] "DER Top-Heel zur Zeit. Da kann HHH so viel intrigieren wie er will, zur Zeit führt am WHC kein Weg vorbei."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Redmoskau9wrote on 22.01.2008:[10.0] "Ohne Ihn würde ich schon lang kein Smackdown mehr gucken. Er brachte einfach frischen Wind rein. Sein Gimmik ist ihm auf den Leib geschnitten. ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Muutzwrote on 19.01.2008:[10.0] "Mir gefällt dieser Heel-Gimmick von Tag zu Tag mehr. Seine Mikeskills sind für mich auch besser als manch anderer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ibanezwrote on 07.01.2008:[10.0] "Ne Glatte 1... Wrestlerische Fähigkeiten, Micwork, Entertainment.... alles Top!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Stone Cold Andywrote on 04.01.2008:[10.0] "Einer der besten Heels und überhaupt besten Wrestler des 21. Jahrhunderts. Ein tolles Heel- Gimmick, gute Leistungen im Ring und am Mikrophon- das alles macht Edge zu einem absoluten Topstar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: mr sledgehammerwrote on 04.01.2008:[10.0] "Genialer Wrestler. Genialer Heel. Früher ein sehr überzeugender Face. Ausgezeichnete In-Ring-Skillz und talentiert am Mic. 10 Punkte für den Rated-R-Superstar sind wohl das Mindeste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Champwrote on 04.01.2008:[10.0] "Gehört zu den Besten im Biz. Starker Wrestler und stark am Mic! Spielt seine Rolle als Heel perfekt. Von ihm können andere Heel-Champs noch einiges lernen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "The Rated R Superstar ist zur Zeit einer der besten Wrestler der WWE und hat sich den Run als Champ verdient-hoffentlich kann er den Titel lange halten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: yogywrote on 01.01.2008:[10.0] "Hoffentlich bleibt er jetzt mal länger Champion-mindestens bis zur WM. Er hat sichs verdient und sein Rated-R Superstar Gimmick ist echt klasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated HHHwrote on 01.01.2008:[10.0] "Wie ich finde bester heel in der wwe. Wrestlerisch auch gut und am mic wird er auch immer besser."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KIIIIING NIKITAwrote on 28.12.2007:[10.0] "Hervorrangeder Wrestler mit grandiosem Micwork. Ich kann ihn nur zu seinem Aufstieg ins Mainevent beglückwünschen. Von einem Tag team Wrestler zu einem Übergangschamp(gegen CEna) zu dem HEEL von Smackdown überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RhinoRaineswrote on 25.12.2007:[10.0] "Aktuell wahrscheinlich der beste Heel im Biz! Ein sehr würdiger World Champion, der hoffentlich endlich mal einen längeren Titlerun bekommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheAdaawrote on 24.12.2007:[8.0] "Er kann wrestlen keine Frage, aber warum zum Geier wird er so schwach dargestellt? In meinen Augen ist er ein großartiger Heel, der aber total falsch gebookt wird. Er benötigt ständig Hilfe, liegt in Matches hinten an und gewinnt nur durch Glück. Wie gesagt, in meinen Augen geht die WWE das Booking von Edge falsch an."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Meanbeastwrote on 09.12.2007:[10.0] "Klasse Heel, einer der Besten seit langem, kann auch wrestlerisch gesehen TOTAL überzeugen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Pulpulwrote on 28.11.2007:[8.0] "Auch wenn er wrestlerisch irgendwann einfach auf der Stelle stehen geblieben ist, hat er sich doch zu einem absoluten Superstar in der WWE entwickelt. Mittlerweile hat er diese Superstar-Aura die man braucht um an der Spitze der WWE zu überleben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Baldrickwrote on 26.11.2007:[10.0] "Der mit Abstand beste Schauspieler im Roster. Dazu unter den Top 5 In-Ring Performern. Ein geborener Heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Heatwrote on 26.11.2007:[10.0] "Wer hätte das gedacht, dass Edge alleine so geil ist. Mich hat er schon mit Christian zusammen fasziniert(wahrscheinlich weil ich jung war und er in ner Royal Rumble Gilberg so lässig aus dem Ring geworfen hat aber naja, reden wir nicht drüber) und tut es als Singles Wrestler nur noch mehr, die WWE hat das richtige getan, und auch in der Zukunft, werden sie viel von Edge haben, hoffe ich doch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Schorschwrote on 26.11.2007:[10.0] "Der wohl beste Mann im WWE-Roster derzeit. Immer unterhaltsam, ob im Ring oder am Mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: devilsoldierwrote on 20.11.2007:[10.0] "Einer der Besten, im Team mir Christian einfach genial, selten so gelacht bei Promos. Wird immer besser!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Joe710wrote on 18.11.2007:[10.0] "Ich muss ehrlich sagen, dass mir Edge erst seit seinem WWE Titelgewinn richtig gut gefällt. In dieser Rolle und als Rated R Superstars blühte er regelrecht auf. Dieser Bursche könnte eines Tages, einer der größten WWE Stars aller Zeiten werden. Ich wage sogar zu behaupten, dass er womöglich die Siegesserie des Takers bei Wrestlemania 24, dieses Jahr beendet ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: aulitwrote on 04.11.2007:[10.0] "Wie wertvoll er inzwischen ist merkt man erst jetzt, wo er lange Verletzt ist. Er hat alles was man zum Superstar braucht. Inklusive der Leidenschaft und Hingabe. Ich hoffe für ihn, dass er von schweren Verletzungen verschont bleibt. Dann wird er uns noch einige Jahre unterhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: John of Gauntwrote on 29.10.2007:[10.0] "Für mich der beste Heel in der WWE. Verkauft sich perfekt und hat auch wrestlerisch einiges drauf. Da kann man sich nur aufs Comeback bei Survivor Series freuen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Benny110106wrote on 28.10.2007:[8.0] "Seit nunmehr 10 Jahren ein Garant für starke Matches in der WWE. Hat es von einer Bump-Maschine zum Megastar geschafft. Er wird uns noch viel mehr zeigen und das wollen wir auch sehen !"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Matzelwrote on 22.10.2007:[10.0] "einer meiner absoluten Favs. toller wrestler und toller schauspieler. dass einzige was mich ein bischen stört, ist dass er manchmal zusehr den angsthasen raushängen lassen muss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: V12-Viperwrote on 17.10.2007:[10.0] "Technisch sehr begabter Wrestler, Top-Heel und für WWE unverzichtbar"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Oli10wrote on 01.10.2007:[10.0] "Einer der besten Wrestler der heutigen Zeit! Super im Ring, tolles Auftreten und genialer Einzugssong!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Medeawrote on 29.09.2007:[10.0] "Edge vereint ein unglaubliches Charisma mit sauberen Moves und einer sehr unterhaltsamen Mimik. Er spielt eindeutig in der Oberliga und ist für mich der beste Wrestler der jüngeren Generation! Ich hoffe auf eine möglichst schnelle Rückkehr, da er meiner Meinung nach eine Bereicherung für jede Storyline wäre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Schockwrote on 28.09.2007:[10.0] "Aktuell absolut HOT -- Intensität, Charisma und wrestlerisches Können! ... eben Rated R!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: dariawrote on 18.09.2007:[10.0] "einer der ganz wenigen Gründe für mich, noch mal bei der WWE reinzuschauen - Spitzentechniker, supercharismatisch - sehr verdient on top, obwohl es verdammt lange gedauert hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bhanduwrote on 15.09.2007:[10.0] "WWE's Total Package. Guter Wrestler, guter Talker, Ausstrahlung im Überflüß - einer der besten Heels, die WWE in den letzten Jahren hervor bringen konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Noreiuswrote on 14.09.2007:[10.0] "einer der besten heels überhaupt! am mic klasse, schafft es auch als heel zum Teil Komik in seine Storylines zu bringen (z. B. mit Kane). sein stil is sowiseo top und ich finde er hat auch prima schauspielerische qualitäten. also, gebt dem mann den whc titel zurück wenn er wieder da is! der beste champ! rated r-superstar 4 life!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LizardKingwrote on 09.09.2007:[10.0] "Hammer! Ich kanns kaum erwarten dass er wieder zurückkehrt. SPielt die Heelrolle perfekt! Super im Ring. Und abgesehen von all diesen Talenten hat er neben punk und orton das mit abstand beste entrancetheme"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DannyGeigwrote on 06.09.2007:[10.0] "Als Heel einer der besten nur hat er mal einen langen Titelshot verdient. Auch einer der besten Tag Team Wrestler überhaupt. Edge wird der neue TRiple H wenn er denn nicht schon als Heel viel besser ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Manuelwrote on 06.09.2007:[10.0] "Der Rated R Superstar bekommt endlich sein Gold das im ansteht"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Damnmasterwrote on 21.08.2007:[8.0] "Guter Wrestler! Allerdings hat mir nicht gepasst, wie er sich den Titel vom Undertaker geholt hat!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: real americanwrote on 20.08.2007:[10.0] "Edge ist der Top-Heel der Gegenwart, da kann HHH Backstage noch soviel versuchen ihn untenzuhalten, der Rated-R Superstar ist im Ring Klasse und auch am Mic auf extrem hohem Niveau. Die Cuttin Edge Segmente und unterhalten mich immer und die Zeit im Tag Team mit Christian sollte man nicht unterschlagen da grade die TLC Matches ein absolutes Must See sind. Er kann die WWE in den kommenden Jahren zweiffellos mittragen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Alan Smitheewrote on 08.08.2007:[10.0] "Seit seinem Heel turn ist der "Rated R Superstar" meine absolute Nr. 1 !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: shannonmoorewrote on 28.07.2007:[10.0] "Obwohl der Sprung nach ganz oben für ihn recht schnell ging fand ich ihn nie überpusht. Es enstanden in den letzen Jahren wenige neue wirkliche überzeugende Maineventer aber der hier ist ein ganz grosser geworden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bullit69wrote on 25.07.2007:[8.0] "Guter Wrestler! Könnte aber noch an seiner Statur arbeiten... is noch zu undefiniert!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Mick Funkwrote on 19.07.2007:[10.0] "Bester Heel zur Zeit in der WWE. Überragendes Charisma, tolle Mimik, solide Technik, gut am Mic. Sollte nur mal wieder bißchen Krafttraining machen da sein Körperbau doch sehr nachgelassen hat in den letzten Jahren. l"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BigVanVaderwrote on 16.07.2007:[10.0] "Z. zt einfach der MVP der WWE. Der Rated R Superstar zieht mich in seinen Bann ein umŽs andere Mal und bekommt endlich seinen verdienten World Heavyweight Title Push. Ich hoffe, dass Edge uns so noch lange erhalten bleibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: scotty619wrote on 10.07.2007:[10.0] "Der Ratet R Superstar gefällt mir besser und besser früher war er für mich nur ein Wrestler aber als er den WWE Champion würde war er mein held"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Azraelwrote on 04.07.2007:[10.0] "Edge hat einfach alles. In Ring Skills, Charisma wie kein zweiter und über die Mic Skills braucht man gar nicht zu diskutieren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Thomas Carlsonwrote on 30.06.2007:[10.0] "Was soll ich noch dazu sagen. Er ist einfach großartig in seiner Rolle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Svaniwrote on 30.06.2007:[10.0] "Edge hat den Top-Heel einfach im Blut, technisch kann man ebenfalls nicht meckern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ShaneOwrote on 28.06.2007:[8.0] "Sehr guter Heel, jedoch (immer diese Vergleiche) im Vergleich zu Christian wirkt er ein bisschen blass. Ein verdienter Champ und ein guter Worker ist er aber auf jeden Fall."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Steven McWheelerwrote on 27.06.2007:[8.0] "Irgendwie Overrated... Ich seh ihn nicht im Mainevent! Er hat so geile Matches um das Jahr 2000 rum geliefert, mit Christian, welcher sich gewaltig entwickelt hat im Gegensatz zu ihm... Seine damaligen Leistungen retten ihm 8 Punkte, da ich ihn In-Ring zu unglaubwürdig finde, jedoch abseits als guten Heel schätze"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DrBreswrote on 27.06.2007:[10.0] "Perfekter Heel - in Sachen Charisma, Glaubwürdigkeit und Entertainment-Faktor einfach Top. Auch im Ring immer eine gute Figur."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ywainwrote on 25.06.2007:[10.0] "Ein Klasse-Wrestler und mit das Beste, was die WWE derzeit zu bieten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: HHH-Stephwrote on 24.06.2007:[10.0] "Richtig geiler Wrestler. Er ist im Moment der Topheel der Liga. Hat sich den WH Title redlich verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Adrammelechwrote on 24.06.2007:[8.0] "Ein guter Entertainer den ich sehr sympatisch finde! Ich glaube er hat eine lange Zukunft in diesem Sport wenn er auf dem Boden bleibt und keinen Höhenflug bekommt. Ich mag ihn, auch wenn er dem Undertaker auf so unfaire Weise den Titel abnahm, aber "thatŽs the show"!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: cena-hbkwrote on 24.06.2007:[8.0] "Ein toller Wrestler und ein toller Champ aber er könnte ruhig etwas mehr zeigen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Foerstawrote on 24.06.2007:[10.0] "Ganz hohes Niveau in Sachen Umsetzen des Gimmicks udn Kampfstil, ebenfalls starker Mic-Performer. Name ist Dauerzustand - BE ON EDGE - (indem er die Koffer vom Money in the Bank erfolgreich einsetzt)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Spartan 24 I7wrote on 24.06.2007:[10.0] "Auch wenn er immer wieder Wrestler die ich noch lieber ansehe "unfair" besiegt(Undertaker) gibts wegen Spear und seinem Gimmick die 1"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Mr Lovewrote on 24.06.2007:[8.0] "Edge ist einfach einer der Top Heels der WWE, der auch noch ein paar Jahre vor sich hat. Bei Smackdown wird er es sicher einfacher haben als bei RAW. Seinen Titel hat er sich auch verdient. Er spielt seine Rolle einfach gut und hat auch gute Micskills"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Trevedaswrote on 24.06.2007:[8.0] "Gut im Ring, besser im MicWork, genial bei den Promos. Sollte er so weiter machen gibt es auch die 10 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RatedRKOwrote on 24.06.2007:[10.0] "Mein Liebling derzeit (abgesehen vom taker). Seine Aktionen und sein "feiges" verhalten, seine ironie und seine hinterhältigkeit.... die rolle ist ihm auf den Leib geschrieben. Wrestlerisch hat er auch was drauf. Also gimmick bestens, fähigkeiten sehr gut. -BACKLASH TITELWECHSEL-"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Amurebkuwrote on 24.06.2007:[10.0] "Ich mag Edge nicht! Er hat einfach diese Art die ich nicht leiden kann. Genau deswegen bekommt er diese starke Bewertung. Er ist einfach ein absoluter Top-Heel! Den Titel hat er sich verdient. Seine Matches sind immer sehr ansehlich und er gibt auch immer alles. Zudem super starke Promos! Tolles Mic-Work!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TugayGwrote on 24.06.2007:[8.0] "Also der perfekt heel; shafft die Fans immer sauer zu machen^^ Im Ring auch gut, aber auch bei ihm gibt es bessere. Charisma hat der Bursche auch. Wenn ich könnte würde ich ihm 9 Punkte geben, aber naja dann ehrer 8 als 10"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Eines der größten WWE Talente, 21 Title ... einfach Spitze!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sebastian Bogowrote on 24.06.2007:[10.0] "Ich finde ihn sowohl als Einzelwrestler aber auch früher im Tag Team mit Christian einsame Spitze. Er macht die WWE für mich interessant. Er ist mittlerweile schon so weit, schwächere Wrestler zu einem sehenswerten Match zu ziehen. Über sein Charisma und seinem sehr guten Unterhaltungfähigkeiten muss man doch gar nicht erst streiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Undertaker13wrote on 24.06.2007:[8.0] "Top Heel (neben Triple H) der WWE aber irgendwie kann ich ihn nicht leiden. Wahrscheinlich deshalb weil er glaubt das er der Beste ist, es jedoch aber noch nie richtig bewiesen hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Showstopperwrote on 24.06.2007:[10.0] "Einfach der perfekte Heel: gute In-Ring Skills, solides Mic-Work, dazu noch ein Gimmick, das wirklich zu ihm passt. Sein WHC-Run ist zwar aus der Not geboren, aber nicht unverdient und definitiv eine Bereicherung für Smackdown."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Matt Hardywrote on 24.06.2007:[10.0] "Der beste Heel der WWE! Er hat Charisma ohne Ende, sein Mic Work ist genial und im Ring gehört auch nicht gerade zu den schlechtesten! Schade, dass er den Titel schon zwei mal nach kurzer Zeit wieder abgeben musste..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Wrestling For Lifewrote on 24.06.2007:[10.0] "Edge gehört zusammen mit Triple H zum besten Komplettpaket, was WWE zu bieten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Chris Cagewrote on 24.06.2007:[10.0] "Einer der besten Heels überhaupt, und auch einer der besten World Champions der letzten Zeit. Er überzeugt in seiner Rolle einfach so verdammt gut, was auch die Ratings von RAW zeigten als er noch Champ war. Mit Lita verlor er zwar den wichtigsten Bestandteil seines Gimmicks, aber mit Randy hat er einen Partner gefunden der das wieder ausgleicht. Trotzdem hat er es nicht verdient so von der WWE verheizt zu werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bomberman2000wrote on 24.06.2007:[10.0] "Als World Heavyweight Champion einfach der Bringer schlechthin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Milhousewrote on 24.06.2007:[10.0] "Im Moment trotz John Cena, Triple H oder Shawn MIchaels der MVP von RAW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jupp365wrote on 24.06.2007:[10.0] "Edge hat mich seit dem Beginn seiner WWE Karriere begeistert. Hat seinen Titel genau zur rechten Zeit gewonnen. Musste lange draufhin arbeiten und wusste den Titel wahrscheinlich mehr zu würdigen als Leute die nicht so lange im Buisiness sind wie er und den Titel viel eher erhalten haben. Er ist der beste Heel den die WWE derzeit hat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: timbo7111wrote on 24.06.2007:[10.0] "Gucke erst seit kurzem wieder WWE, aber Edge hat mich voll begeistert. Absoluter Vorzeige-Heel, den bringt er sehr gut rüber. Ausserdem noch sehr intensive Matches. TOP!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: -Y2J-wrote on 24.06.2007:[10.0] "Eindeutig das beste, was die WWE zur zeit zu bieten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Garvinwrote on 24.06.2007:[10.0] "Derzeit mein absoluter Lieblingswrestler. Bringt alles mit, was einen guten Wrestler auszeichnet und ist unbestritten einer der Stützpfeiler für die WWE, auch in den nächsten Jahren. Seine Entwicklung in den letzten Jahren ist phänomenal. Sein Gimmick erste Klasse. Der Rated-R-Superstar hat nichts anderes als die Höchstnote verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Litawrote on 24.06.2007:[10.0] "Edge is und bleibt mein absoluter Liebling in der WWE... ! Er spielt seine Rolle des Rated R Superstars perfekt.. ! Seine Fehde gegen Kane, Mick Foley , John Cena oder jetzt mit Rated RKO vs. DX ist einfach unglaublich.. ! Er ist ein wahrer Champ.. ! Es ist immer wieder schön ihn gewinnen zu sehen.. ! Auch wenn er seine Matches unfair gewinnt wie zB beim Summerslam gegen Cena finde ich ihn wirklich super.. ! Edge und Lita waren das schönste TV paar das ich je gesehen hab .... ! Edge ist und blei"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Mediwrote on 24.06.2007:[8.0] "Ich weiß nicht woran es liegt, aber zu 100% hat er mich (noch) nicht überzeugt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Carsteinwrote on 24.06.2007:[6.0] "sicher kein schlechter Wrestler aber in der Internet Community doch etwas overrated. Technisch solide, aber sicher kein Benoit, auch mic work mäßig solide aber ned mehr. Eigentlich ganz braver Durchschnittsworker der Uppermidcard. Mehr aber auch nicht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Dav1d1anwrote on 24.06.2007:[10.0] "danke! Für die tollen Match gegen Cena! DU hast Lita/Raw wieder cool gemacht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: suntan superstarwrote on 24.06.2007:[10.0] "mister money in the bank! Konstant gute Leistungen im Ring und die Fähigkeit die Menschen in der Halle immer gegen sich aufzubringen, machen Edge zum wahrlich perfekten Heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Doerbenwrote on 24.06.2007:[10.0] "einer der wenigen Mainstreamworker die ich wirklich gut finde, bin absoluter mark von ihm und würde mir sogar wieder einen WWE PPV antun, wenn Edge den titel gewinnen und einen langen Run haben darf;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sandman16wrote on 24.06.2007:[10.0] "Edge ist einer der besten Wrestler in der WWE. Hat unglaublich viel Charisma und sein Mic-Work ist auch sehr stark. Er kann der WWE noch viel bringen wenn er richtig eingestzt wird. Ein neuer Push auf den WWE-Title wäre nur gut!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Babuswrote on 24.06.2007:[10.0] "Einfach genial - Wrestlerisch schon so gut, dass er auch mit schlechten Worken gute Matches zeigen kann und am Mic, egal ob als sympatischer Nerd im Team mit Christian oder als bitterböser Main Event-Heel, einfach nur spitze. - Wahrlich ein Rated-R Superstar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: darksaber999wrote on 24.06.2007:[10.0] "DER Heel der WWE in den letzten Jahren. Gut am Mikro, große Portion Charisma, und sehr gut im Ring. Man liebt es ihn zu hassen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Hennewrote on 24.06.2007:[10.0] "Sowohl im Tag Team mit Christian damals sehr erfolgreich, als auch jetzt endlich als Singles Wrestler. Für mich der WWE Wrestler des Jahres 2006."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: relentlessETwrote on 28.01.2025:[9.0] "The heart and soul of Big Japan Pro-Wrestling's Strong Division. When I first saw Sekimoto, I thought this isn't a real person. Turns out the size of his muscles match up with his wrestling ability. Comedically large, but with the strength, explosiveness and agility of a rugby player, Sekimoto is one of the most unique wrestlers I have ever seen, and for him to consistently stay on top of his game for 25 years is incredible. I rate him a 9 because although he is an incredible wrestler, he's a little lacking when wrestling smaller guys, and sometimes in those same matches he would sell unconvincingly. His best matches are always against heavyweights the same size or bigger than him. Nonetheless, absolute legend and I hope to watch him again live someday."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Lakhiarfarhad91wrote on 30.07.2022:[9.0] "Daisuke Sekimoto is legit one of GOATS. A guy who really thrives in both singles and tag team wrestling. He is so charismatic and a crowd favourite. He can play a great underdog and an aggressor."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: JoshuaWrestling63wrote on 14.07.2022:[10.0] "Ich Kenne ihn eigentlich hauptsächlich aus der wXw und habe auch ein paar kämpfe live gesehen. Der hat ne Ausstrahlung das ist unglaublich, obwohl er mit 1, 75 nicht wirklich groß ist hat der ne Power.. Seine matches sind immer ein Highlight"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Wrestling Foreverwrote on 20.03.2022:[10.0] "Was für ein Powerhouse ich liebe seine Schlachten gegen WALTER aber nicht nur die auch ist er einfach ein klasse Trainer. Wo einer seiner erfolgreichsten Schüler in Japan klar Yuji Okabayashi ist. Neben seiner Kraft ist er auch unfassbar beweglich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: benny5bellyswrote on 03.01.2022:[8.0] "A big beefy lad who has big beefy meat slapping matches, sometimes that is all you want in your pro wrestling"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: hitakiwrote on 09.08.2020:[9.0] "top tier strong japanese wrestler, this guy is built like a rock and the stamina he got during the matches is unmatched"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: mjboyerwrote on 22.06.2020:[9.0] "One of the best powerhouse wrestlers to ever do it. Not too many guys like him in the puroresu scene."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Weltmonarchwrote on 18.06.2020:[10.0] "Bestes Powerhouse was ich je live gesehen habe. Eigentlich schade, dass er eigentlich fast immer in seiner BJW-Blase geblieben ist. Hätte ihn mal gerne eine längere Zeit woanders gesehen (ROH, NJPW)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: KENTAfanwrote on 10.09.2019:[10.0] "Sekimoto is 38 now but he's still going stronger than ever. I can see him wrestling into his late 40s, maybe even more, if he wants to. Regardless, despite being relatively unknown to mainstream wrestling fans, he will undoubtedly go down in history as one of the greatest wrestlers of all time. No exaggeration. I have never seen a man of Sekimoto's size fly around the ring like he does, executing missile dropkicks better than most high-flyers while throwing around people twice his size like they're nothing. And on top of that, he has incredible ring IQ and can bring out the best in just about anyone he's paired with. He is just a once in a lifetime wrestler, plain and simple."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Hwordwrote on 27.02.2019:[10.0] "My favourite active wrestler. An impressive powerhouse and underrated grappler with a mastery over the basics. Always does his best to make his opponents look good, even when defeating rookies or juniors in dominating fashion. In the midst of his 20th year and putting out classics every other week."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: RatingsMachinewrote on 25.10.2018:[8.0] "Daisuke Sekimoto is a great powerhouse wrestler, and is a lot of fun to watch when he's having hard-hitting matches."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: My Bloody Doobwrote on 25.02.2018:[10.0] "The face of the Big Japan Pro Wrestling Strong Division and arguably the best powerhouse in the world right now. The only other man who comes close to him would be Shuji Ishikawa. Together with Yuji Okabayashi they are at least in the top 5 best tags teams in the world of the last decade."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: HUNTERBC88wrote on 16.07.2017:[10.0] "He is a very good wrestler and as far as I know, he is the only male Japanese wrestler that was born in the 80s and made his debut in the 90s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Viper99wrote on 18.06.2017:[9.0] "Sekimoto ist für mich einer der besten Männer im Asiatischen Raum. Dies beweist er immer wieder bei Big Japan und All Japan und selbst in der WXW hat er es als Unified Champion mehrmals bewiesen. Er ist für seine Masse einfach unglaublich flink und beweglich und ist vom Style her ein komplettes Gesamtpaket, welches jeden Stil mitgehen kann. Großartiger Wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: deathsitcomwrote on 22.12.2016:[10.0] "Deisuke Sekimoto ist ein in Stein gehauener Berserker, ein Monolith, ein Mann, der jeden Ring durch seine bloße Anwesenheit ausfüllt. Er ist so breit wie hoch und vernichtet dich mit German Suplexes und chops, die am anderen Ende von Raum und Zeit noch widerhallen. Eine wandelnde Quantensingularität des wrestlings und zudem einer der ganz wenigen Menschen, die erhaben einen Vokuhila tragen können. Wir senken unser Haupt vor dieser Urgewalt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Luv all wrestlingwrote on 11.09.2016:[9.0] "Daisuke Sekimoto is a jacked, strong style beast capable of striking your face off, blocking harder hits and has a great crowd connection/charisma. One of the best practitioners of modern day strong style."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: The Sick Lebowskiwrote on 22.05.2016:[10.0] "Ganz, ganz starker Power Wrestler. Ich kenne ihn hauptsächlich von der wXw und seine Schlachten gegen Big Van Walter sind grandios. Wundert mich echt, dass er "nur" bei Big Japan ist und nicht schon längst bei einer der größeren Ligen wie New Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Gloverwrote on 15.11.2015:[10.0] "Absolutely unbelievable monster of a man, and one of, if not the best hoss on the planet today. He just has that spark in him that makes any moment he's in the ring a great one. What really puts him over the top is that not only is his offense fantastic and the way he carries himself perfect, but he can sell with the best of them on top of that. Plus his German Suplexes are immaculate."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: CJ Duskwrote on 14.05.2015:[9.0] "The Japanese Hulk! He may only be 5'9 but this man is a true powerhouse. A master of Strong Style who always puts on intense hard hitting matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: ThySmithywrote on 07.11.2014:[9.0] "One of the strongest wrestlers on the planet. Daisuke has one of the best Big Man movesets in professional wrestling history and the athleticism that he has is simply outstanding , Hopefully he has a run in NJPW some day because he is way to good to be doing smaller Japanese promotions for the rest of his life"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: apc24wrote on 23.01.2014:[9.0] "Though Daisuke is from a death match promotion, he really knows how to work matches that can be compared to the All Japan days in the 90's"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Blue Meaniewrote on 17.06.2012:[10.0] "DON'T FUCK WITH DAISKE! Diese Erfahrung mussten schon viele Wrestler machen, die von Sekimoto per Deadlift German oder Lariato getötet wurden.  Einer der besten Powerhouse Worker Japans, wenn nicht gar weltweit. Zusätzlich aber auch agil und technisch nicht unbegabt. Mit seinen Matches kann man i. d. R. eig. nie etwas falsch machen. Update 2012: Mittlerweile zurecht AJPW Regular. Tag Team Titel dort schon gehabt und ein Match um die Triple Crown dürfte auch hoffentlich nicht mehr lange auf sich warten lassen. Z. Z. definitiv einer der besten der Welt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: ARIZAwrote on 15.06.2012:[10.0] "Aktuell einer der besten Männer in Japan. Etwas schade, dass er bei aus dem BJW-Dojo stammt und der Liga immer noch sehr verbunden ist. Es wäre einfach schön ihn bei den großen Ligen New Japan oder All Japan im Main Event zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Kenshin Uesugiwrote on 05.10.2011:[8.0] "Hm, ein etwas kleiner bulliger Japaner der Technik, Sauberkeit und Beweglichkeit in einem vereint ? Und noch dazu alles und jeden kraftvoll durch die Gegend wirft und schleudert ? Das erinnert mich an jemanden, im Grunde ist Sekimoto einer neuer Kensuke Sasaki ! Nur das er noch kürzere Beine hat und kleiner ist. Jedenfalls der Mann der maßgeblich dafür verantwortlich ist, das dass Wort " deadliften " im Umlauf gebracht wurde."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Miloswrote on 27.07.2011:[10.0] "Der beste Wrestler der zwei vergangenen Jahre. Er hat grossartige Tag Team Matches mit Yoshihito Sasaki und Yuji Okabayashi sowie unzaehlige legendaere Kaempfe in BJW, DDT, ZERO1 und AJPW gehabt. Ich finde seines Match gegen Masa Takanashi 2010 MOTY und seine KO-D Openweight Title Macht ist die beste von viele gute Regenshaften des DDTS."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Mick Funkwrote on 07.07.2011:[5.0] "Überzeugt mich bei den letzten Auftritten, die ich gesehen habe leider überhaupt nicht mehr. Meiner Meinung nach auch etwas überbewertet durch seine Auftritte bei wXw."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Obermackerwrote on 02.05.2011:[8.0] "Beeindruckendes Kraftpaket mit ein bisschen zu kurzen Beinen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Double Jwrote on 10.04.2011:[10.0] "Sekimoto weiß immer vollkommen zu überzegen, ein tolles Powerhouse mit viel kraft. Ich hoffe er findet seinen weg zu größeren Ligen wie New Japan oder Noah, verdient hätte er es vollkommen! Edit: Ich weiß nich genau, warum ich ihm nich volle Punktzahl gegeben hab, drum änder ich das mal^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Matt4Wrestlingwrote on 17.01.2011:[10.0] "Ein brawler, ein techniker, guter Tag Team Wrestler, sagt ihm was er machen soll, er hälte mit! Ein allrounder, was er oft genug unter Beweis gestellt hat und sicherlich weiterhin tun wird!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: cagefighterwrote on 02.01.2011:[10.0] "Echt ein atemberaubender Wrestler. Ich liebe es das in Japan mehr Wert auf den Kampf gelegt wird und genau da glänzt er wirklich und das nicht nur durch pure Kraft , sondern auch mit etwas athöetik und guter Psychologie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: MaKnowrote on 23.08.2010:[8.0] "Sekimoto ist ein echtes Kraftpaket - im Ring macht er wahnsinnig viel Spaß, insbesondere weil er so viele verschiedene Stile mitgehen kann! Das einzige, was die Wertung etwas nach unten drückt ist der Mangel an großen Kämpfen und Titeln. Schade, dass er bis dato noch nicht einmal für NOAH im Ring stand, in deren Kader würde er sich, denke ich, ziemlich gut machen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Rise Againstwrote on 25.05.2010:[10.0] "Unglaubliche Kraft, und trotzdem sehr beweglich. Er ist vielleicht nur halb so groß wie manche, dafür aber doppelt so breit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Marcywrote on 07.05.2010:[9.0] "Seitdem ich ihn beim Carat sehen durfte bin ich noch beeindruckter von ihm. Der Mann hat eine solch enorme Präsenz wenn er nur im Ring steht, das ist wirklich unfassbar. Muss man erlebt haben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: RickRollwrote on 28.03.2010:[9.0] "Ein absolutes TIER. Schafft es selbst mit nur 2 Moves, (obwohl er mehr besitzt) ein ansehnliches MAtch zu kreieren.  Unglaublicher Wrestler der genau meinen Geschmack trifft. Dazu ist auch er in Deathmatches klasse, LEIDER gibts ihn wirklich zu wenig im Bereich deathmatches, aber das ist ok, denn dann ist es etwas "besonderes" wenn er den Deathmatch stil wrestelt, denn er DEFINITIV beherrscht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Eddiewrote on 28.03.2010:[8.0] "Daisuke hat so eine unglaubliche Ringpräsenz dass es kracht. Er hat Power, baut ein Match logisch und gut auf, und kann viele Stile mitgehen, egal ob es von Anfang an brutal zur Sache geht, ob es um Submissions geht oder ob er auch ein wenig Tempo ins Match bringen muss, er kann es und er tut es. Und außerdem, wer hat denn bitte schon Walter gedeadliftet? 8 Punkte bisher für Daisuke!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Soerenwrote on 18.03.2010:[9.0] "Deichkind hat mich nach seinem 2. Carat noch mehr überzeugt seit seinem 1."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Raywrote on 08.03.2010:[10.0] "Ich war schon vorher ein großer Fan des guten "Daiskes", aber seit dem 2010er Carat verehre ich ihn abgöttisch. Er hat eine unglaubliche Intensität, Kraft und ist einfach mit jedem seiner Blicke imposant. Dazu kommt, dass er zum HmmmBap der Young Bucks die Welle mitmacht. :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: NextOne86wrote on 05.10.2008:[9.0] "Einer der besten Japaner in den letzten Jahren, sehe ihn sehr gerne, hat noch eine große Zukunft vor sich... Göttlich Daiskeee~!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Kaffoe 666wrote on 12.08.2008:[9.0] "Tolle Mimik, toller Wrestler. Kann n Japan noch ein großer Star werden, ich seh ihn gerne!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Matt Hardywrote on 09.05.2008:[8.0] "Hab ihn jetzt ein paar mal gesehen und Sekimoto gefällt mir extrem gut. Sehr überzeugendes und glaubhaftes Auftreten, dazu eine sehr geile Mimik. Auch im Ring gefällt er mir mit seinen tollen Suplessen und hoher Intensität ziemlich gut. SEKIMOTO~!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: STRIGGAwrote on 01.01.2008:[8.0] "Er wirkt wirklich wie ein junger Masato Tanaka, der im Ring stets das rüberbringen zu vermag, was elementar ist: Man sieht ihm den Siegeswillen an, die nötige Verbissenheit und eine tolle Mimik leisten ihr übriges. Ich freue mich auf viele weitere großartige Matches von ihm."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Piruelwrote on 11.02.2025:[10.0] "The goat, the reason I am a wrestling fan. Words can't describe how much this man means to me, my childhood hero."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: danzgalliwagwrote on 04.02.2025:[10.0] "The first Ring of Honor guy to make it in WWE. And ever since then, he has been convinced that he is the best wrestler in the world. Now, in his later years, he comes face to face with guys whose stories are a lot like his. But nobody's story is the same. Life is a series of choices, and at the end of the day, it's where you're at right now that you have to be at peace. CM Punk has not always been at peace with where he's been at. And that's why every decision he has ever made led him back to the WWE--the right place and the right time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: V0icesAreLouderwrote on 03.02.2025:[9.0] "Punk is a polarizing as they come and it's amazing and horrible at the same time, part of wrestling is getting a reaction and he does that perfectly. His promo game is unmatched, now he has big ego and we all know that and it works and it doesn't at times and it's very clear when it doesn't (the entire Hangman feud). Now he is good in the ring, good, not great. And especially now at his age with the amount of injuries he has had. Personally I'm sick of him, I haven't found him entertaining since 2013, I was not excited for his return, I know I'm a minority on that and I can acknowledge a lot of people are. All in all, I am not a CM Punk fan, he just hasn't done anything that I like in a long time, but that crowd loves and that's what matters."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rassle Fanwrote on 02.02.2025:[5.0] "CM Punk's fans are the MAGA of wrestling. Meaning, they will jump off of a cliff to defend him. A comment on Instagram some time ago summed it up perfectly "This man can never do any wrong". Punk is a wrestling populist and he knows this and capitalizes perfectly on the fans who are incapable of examining his career and behavior critically. "He wasn't fired from (redacted) he quit! ". Now, can he wrestle? Yes. Is the best in the world at it? No. He is one of the greatest promos ever in the tradition of Roddy Piper and Terry Funk. You believe everything he says because he believes everything he says. He's been involved in some fantastic feuds with Raven, John Cena, Samoa Joe, Homicide, MJF, and Eddie Kingston just to name a few. He's a lock for the Hall of Fame. He's just too much of an insufferable and disingenuous blowhard (so much for reproductive and trans rights in WWE eh, Phil), to rate him any higher."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wrestlingswiftiewrote on 01.02.2025:[8.0] "I'll never forget his first go-around in wrestling. From his days as a scrawny little misfit from Chicago in IWA, to his days as the (original) devil in ROH, to his legendary WWE run, CM Punk has cemented himself as one of the greats in the modern era. I'll have to knock a couple of points off because of his current run, though... Not the Punk that I remember."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Lejzywrote on 27.01.2025:"CM Punk, one of the best wrestlers ever, and still has so much left to give. Every match he's in is a straight-up banger. His comeback got me back into wrestling. Pure love."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dhruboezitwrote on 26.01.2025:[10.0] "One of the greatest - especially on the mic. Punk always knew how to engage fans and that worked like a charm for his career. Post 2011 he's among the most recognizable wrestlers on the face of the planet and a very polarizing figure - but a massive draw nonetheless."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CrandonMartin2001wrote on 25.01.2025:[10.0] "CM Punk is one of the most polarizing and captivating figures the business has ever seen. Much like LeBron James, you either love him or hate him--but for me, it's all love for Punk. His career startedin Ring of Honor, where he helped elevate the independent wrestling scene to a new level. His iconic ROH World Championship "Summer of Punk" is still talked about today. When he went to ECW under WWE's umbrella, Punk showed he could hang on a global stage, bringing his straight-edge rebellion and in-ring talent to the mainstream. The feud with Jeff Hardy was nothing short of brilliant. It's one of my favorite feuds not just of the 2000's but of all time. Their matches were emotional, personal, and unforgettable, solidifying Punk as a top-tier performer. Then there's the "Pipebomb." In my opinion, the greatest promo of all time, where Punk blurred the line between reality and storyline like no one before or since. It wasn't just a promo; it was a cultural reset for WWE, making fans feel like they were seeing something raw and unfiltered. It turned Punk into a phenomenon overnight and proved he was one of the best talkers in the history of the business. Punk's AEW run was polarizing, much like his career as a whole. While it ended on bad terms, you can't deny how fun it was to see him back in the ring, delivering great matches and cutting fire promos. His return after seven years away felt like a moment the entire wrestling world had been waiting for, and for a while, he made AEW must-watch television. Now that he's back in WWE, it feels like a full-circle moment. He's thriving again, showing the world why he's one of the best to ever step in a ring. Love him or hate him, CM Punk is a generational talent, and his legacy as one of the all-time greats is undeniable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Brutish Dandywrote on 16.01.2025:[7.0] "Exceptional on the stick but just kinda basically good in the ring. Not bad, per se, but not amazing either. Far better as a heel than a face. Swiped half of his moves from KENTA and then ducked him for a decade. Childless, middle-aged atheist hated by all his former associates who's lauded for doing things he didn't do. Like Cody Rhodes on Opposite Day."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Madripoorwrote on 13.01.2025:"I used to own t-shirts of this guy but he's become everything he swore he hated: a corporate puppet that puts in minimum effort and still gets pushed over younger talent, the same talent he "wanted to help". Now he will get the Wrestlemania main event he deserved 10 years ago, stealing it from people who worked for it every day, just like The Rock took it from him. How the tables have turned."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mister Cute Facewrote on 11.01.2025:"[9.0] One of the best of this generation, and that's saying a lot. We're lucky we get to see him again. It's like he never missed a step. [5.0] 9/4/2023 Edit: I hate making this edit. this dude is a clown and a cancer to locker rooms. Super talented in the ring, super crappy in the back. His attack on his own show is so pathetic. This dude is unhinged and needs help. He has attacked people physically, on the mic, and has over inflated himself in his own eyes. He even hates Regal. Enjoy retirement Phil. You've definitely earned it. / 2024.01.16: now he's back "home"? Give me a fucking break. I know most punks walk into Walmart and say "aaaah home! ""
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: darkflame4527wrote on 06.01.2025:[10.0] "One of the most influential talents in pro wrestling history, both in and out of the business. he revolutionized the way we see wrestlers today, how we view the business as a whole. he also has been credited by many as the driving factor behind the culture change in the WWE locker room, incentivizing him to come back and help put wrestling mainstream, like in the attitude era. love him or hate him, it is undeniable that he is one of the most legendary and most important individuals that we have ever seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MEDaminewrote on 04.01.2025:[10.0] "A captivating figure in the world of professional wrestling. His matches are a masterclass in storytelling, seamlessly blending technical wrestling with high-impact maneuvers. And Imo the second-best mic talker (just behind Cena), his "pipe bomb" promo is legendary, and his ability to connect with the audience is unmatched. Imo If he didn't stop wrestling for like 7 years, he would have been the undisputed GOAT of Pro Wrestling as a whole."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rosyawrote on 03.01.2025:[9.0] "I can't deny what contribution CM Punk made to the development of WWE. I think many people already understand that if it weren't for the confrontation with John Cena, it's unlikely the men and women from indie wrestling would have succeeded in WWE. But I would like to say this: Punk, saying that he came for the money, is a little disingenuous, because money has no smell, and CM Punk could have returned to the company under the leadership of Vince McMahon. First of all, CM Punk returned to wrestling as he wanted attention from the audience, the absence of people around him that he could not stand, and only then did it come to money. Although I would even add ambition before the last point, and it is clear how CM Punk wants to finish HIS story with the main event of WrestleMania. And the debut in the elite company was a failed experiment before returning home. Everything happens"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HappyNekoowrote on 01.01.2025:"Meu wrestler preferido. Vi pouca coisa da era pré wwe dele mas o que vi gostei muito. Assim que possível vou atrás do que ainda não vi."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: actionjaxonwrote on 30.12.2024:[10.0] "My second favourite wrestler and the wrestler who i think for now is the best wrestler in the world.Great in the ring great on the mic and even great on commentary no buddy can touch him in my opinion.His feuds with john cena, samoa joe and drew so many more are epic.He can be great babyface and also a great heel.A lot people say people like bryan danielson bret hart kurt angle and seth rollins are the best wrestlers in the world which i get why people would say that they are great wrestlers and if you think they are the best thats all right they are great and you can have your own opinion.But in my opinion cm punk is the best wrestler in wwe and in the world! ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MonkeyFacedKillawrote on 30.12.2024:[10.0] "Despite it being the internet age where there are no secrets left unexposed in the pro-wrestling world, CM Punk manages to blend real-life drama with pro-wrestling flawlessly. You're not really sure when there's real heat or when the wrestler CM Punk starts and the person Phillip Brooks ends which is something wrestling should be all about - suspension of disbelief. He's been able to bring this believability to every program he has been in since his return. You can tell that he's thought deeply about each of his promos and matches, which make up a large portion of my top 10 favorites of all time. GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Michael Shawnswrote on 30.12.2024:[10.0] "One of the most important and controversial wrestlers going today. Love him or hate him, he always seems to bring people into professional wrestling, and whenever he's gone, people go away. He's a great wrestler, an incredible talker, and contributed to some of wrestling's most important moments. Of course, with age, his abilities don't harken you back to his prime days (which people wax lyrical about a little too much), but he's one of the few things where his presence alone is the reason why people watch WWE. Very few wrestlers have that sort of magnetism about him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: anarchovampwrote on 27.12.2024:[9.0] "At his peak, CM Punk was arguably the total package as a wrestler, not only one of the best workers around despite his physical limitations, but an incredible storyteller both in and outside of the ring. Had some of the greatest individual runs of all time, in Ring of Honor with iconic rivalries against raven that launched him into superstardom, the legendary Summer of Punk in WWE, and even as recently as his rivalries with MJF, Drew McIntyre, and CM Punk. In many ways, Punk's career mirrors that of a fellow Chicago icon in Michael Jordan. Both were legendary stars who left in their prime, before returning after failing to make an impact outside of their field, before eventually leaving again and coming back for one last run. Of course, for Jordan, his final run with the Washington Wizards is notable for being by far the worst part of Jordan's career, and I have to say, I feel somewhat similar about his WWE return. This isn't to say either were bad, Jordan was still at least a borderline all star, and Punk can still put in good and even great work, like the aforementioned McIntyre feud, but like how Jordan went from averaging 30 to taking a couple of a games to get to 30, Punk, whether it's due to an older, more damaged body, his potentially shaky job security, or some other factor, almost seems to be stuck in second gear, especially in promos. The scathing punk has now been replaced with a more composed and professional CM Punk who openly claims that his number 1 goal is to make money. Punk is obviously allowed to feel this way in real life, but when he's portraying what's practically the same character he has had since that faithful 2011, it does frankly strike as a bit hollow. So while, like Michael Jordan in the early 2000s, punk is still a valuable wrestler and can even channel what made him elite in the past, even a slight drop off will be noticeable when you were at one point the Best in the World."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Braden Pittmanwrote on 21.12.2024:[10.0] "CM Punk has made me cry exactly twice. Once on November 18th 2012, at Survivor Series. At this time I wear John Cena shirts to school and have a creepy amount of his posters. My poor father found it right to spend his birthday money from his parents to buy us 2 nosebleed tickets to watch John Cena dethrone CM Punk and once again become WWE champion. I donned my lime green wristbands and baseball cap, and got ready to celebrate. I was the biggest John Cena fan in Indianapolis that night, As you could guess, that didn't end up happening. Towards the end of the match The Shield debuted, a monumental and historical moment in hindsight, costing Cena the bout. I broke down watching Punk escape with the title. As we walked to the car through the muggy midwestern downpour I whined to my dad that I had just had "the worst night of my life". The second time CM Punk made me cry was on August 20th, 2021, when he returned to wrestling after 7 long years. CM Punk is the best in the world. 5/5 stars."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nikinho66wrote on 20.12.2024:[10.0] "The Best in the World. For those that could be interested, please take a look at the documentary about him made in 2012. I had a massive lot of respect and admiration for Punk back at the time, as a kid i idolized him, loved every time he was in the ring, holding a mic or whatever else he could do but this documentary just uplifted everything about him. This guy has it all, an underdog that became an undeniable phenomenon of wrestling, man from these matches at ROH, to the debuts in WWE, you could only feel the fire that literally burned inside of him, he loves this industry he loves wrestling, talking, doing promos, he loves learning and teaching, i still don't get why people do not see him as a legend, he makes the crowd moves, pop like no one else. Someone that is that controversial is just someone that actually speaks the truth and is being genuine, he loves this industry but he doesn't often play by its rules, thus why some call him "the most controversial superstar of all-time" but this is what adds this touch that makes him even greater. The story of a kid that was fan of wrestling, genuine to himself, a punk-rock amateur and even metalhead that only wanted to do what he loved and inspired so many people. His influence is actually wild, just as him. And the most sincere thank you to the legend, the greatest of all time Paul Heyman for believing so hard in this man that he actually appeared on my TV a random monday night and that i've been a fan since that moment and forever on. BITW forever. XXX"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fuchinkanwrote on 12.12.2024:[10.0] "I hated you, but when you returned to Pro Wrestling, I cried as if I had loved you since childhood. I became interested in ROH because of watching your matches. I became interested in Old School Wrestling because of your passion for it. I followed AEW because of you. I became a WWE fan because of you. I became a metalhead because of you. This Fire Bronse is specifically yours. You are the best in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: kelseywrote on 04.12.2024:[9.0] "CM Punk is excellent on the microphone, good in the ring, he had an amazing gimmick and he can draw money. CM Punk's weakness is his in ring skills but even then he is still good. CM Punk was given chances more than other people but he shone in that spot."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: maven loverwrote on 01.12.2024:[10.0] "A fantastic, passionate worker whose stellar 2000's-era WWE/"ECW" work will always stand out to me as formational in my wrestling fandom. Can work face or heel equally well, is excellent at moving around the ring with purpose / getting the small things right, & did a great job shaking off the ring rust after the 7-year haitus. Has already spent the few years he's been back to put out solid efforts with people like MJF, Samoa Joe, Ricky Starks & Drew McIntyre, the later of which was pretty much a '24 WWE highlight. Isn't afraid to speak his mind in an industry with too many people whom nod their head & refuse to even try to say "fuck that, this is stupid." I think that it's a good thing that his mic/charisma skills are even better than his ring skills, because this assures that after in-ring retirement, he will be guaranteed television presence (manager, commentary, etc), should he desire it. I sure know I would. Super excited for what the future holds for this guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mj2609wrote on 28.11.2024:[10.0] "One of the most influential wrestlers of all time along with being one of the greatest talkers of all time. Was never a favourite of the management and always turned bad creative given to him interesting in the early part of his WWE career. Made himself a superstar with the pipebomb and didn't look back after that. MITB 2011 is still one of the greatest matches I have seen. Left in 2014 and became even a bigger star and kind of a cult figure bcoz of his mystique and legacy he left. Although widely speculated, he came back to AEW in 2021 with one of the greatest returns of all time and was part of some of the best feuds and segments in the company (Eddie Kingston and MJF). Whatever happened was unfortunate on both sides. BUT then made another of one of the greatest returns of all time and came back to the place that he left 10 years ago and also got sued for it. Unlike his 2021 return, no one knew about this, even on the internet.His return started off-track bcoz his injury but his feud with Drew Mcintyre is locked in for the best feud of the year imo and the Hell in a Cell match is also a big contender for match of the year. One of my all-time favs since 2009."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AceHagannwrote on 26.11.2024:[9.0] "One of the best talkers in the history of the business. His promos always feel packed with emotion, and they can sway you however Punk wishes. To top it off, he is a great in-ring performer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Taibhsewrote on 22.11.2024:[10.0] "CM Punk - the guy who rekindled my childhood wrestling fandom with the second "Summer of Punk" in 2011 after I'd fallen out of love with it for several years, then somehow got me back into wrestling *again* a decade later with his AEW return. Since then, he has continued to be what he always was - controversial, iconoclastic, and inimitable. He's great in the ring and peerless in feuds and promos. He is a true original and however many he inspires there will simply never be another him, ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Larixkhwrote on 19.11.2024:[5.0] "How complicated it is to rate Punk in 2024.. at one time I would have given him 10 and today he still does good work, but here it is.. this guy is a complete moron who thinks he is above everyone.. and the worst is that his fans are ready to do anything to defend him and justify even when he is wrong. I can get past certain behavior outside of kayfabe but not for CM Punk, he has disappointed me too much, too many times and I do not want to be one of the people who defend a guy capable of attacking a guy backstage in a neutral position just because he does not agree and feels superior."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ItsAllAWorkAnywaywrote on 13.11.2024:[8.0] "CM Punk envisions himself as the Macho Man, but might be best described as this generation's Ultimate Warrior - Someone who crafted their gimmick on the indies, exploded at the WWE level, yet fell out of favor with leadership because he felt his own celebrity was larger than the promotion who ultimately created him. John Cena? He managed to get movie deals and TV deals as a result of wrestling. CM Punk? Got a couple of UFC fights in, did some spoken panel stuff, and buried the promotion who wanted him to be their centerpiece all before returning to the WWE as an attraction wrestler/gatekeeper. Good for him for realizing where his bread was buttered, but it definitely removes the allure that he can draw on his own."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: smuielthepunkwrote on 15.10.2024:[10.0] "THE BEST ON THIS MICROPHONE, IN THAT RING, EVEN IN COMMENTARY! NOBODY CAN TOUCH ME! Theres nothing much to say THE BEST WRESTLER IN THE WORLD"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: hfield07wrote on 14.10.2024:[10.0] "Look - 9, In Ring - 10, Mic - 10. Punk is the total package. Unique in the ring and out, does all the small things right. You catch things watching his matches multiple times you didn't see the first time. He creates stories."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Philnoxwrote on 11.10.2024:[10.0] "The wrestler who calls himself "The Voice of the Voiceless" and "The Best in The World". Is he all of that? I don't know. But it definitely is an indisputable fact that CM Punk is one of the most known wrestlers still active today, and one of the last ones you could truly call a "draw" without making any kind of overstatement. He can still go in the ring in 2024 and can still put out very good matches, and is definitely a wrestler who will be remembered for all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RaysBruwrote on 11.10.2024:[8.0] "I still hesitate to rate Punk higher because, although he's a great wrestler and promo, I don't think he's the best in the world. Despite his long-standing claim of being the "Best in the World, " I believe he falls short of that title. However, he excels at making you feel and creating an authentic experience. I respect his ability to draw crowds and fill arenas. I'm evaluating him as a wrestler, not as a person, but it's unfortunate that his flaws and personality sometimes overshadow his talent."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JoKu2311wrote on 10.10.2024:[10.0] "My first rating on a wrestler and it has to be CM Punk. I don't know if I would still love the sport as much as I do now, had he not made me a super fan in 2011. Before that, I was too young to understand how good Punk was even in the late 2000s in WWE. The summer of Punk is the best thing that I could have imagined as an 11 year old and I still frequently watch the hype video for MitB 2011 to this day. It was the first time I was completely hooked in a wrestling storyline and saved years of otherwise pretty bland WWE shows. When he left in 2014, I was so sad and lost all hope to see him in the ring again. Then he returned and I was instantly more excited to watch wrestling as a whole again. His promos can be solid gold and he rarely disappoints in the ring even if he does not perfectly match the current idea of amazing wrestling. His recent Hell in a Cell match against Drew showed how capable he still is of putting on great matches. He is no Ospreay etc. but he is an absolute legend. I can understand people who dislike him but I am one of those who love him as a wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KMacwrote on 07.10.2024:[6.0] "Decent in the ring for his age but he messes up a lot and when he botches it looks really bad. Punk isn't even good on the mic anymore either which was his strongest attribute before he came back. He was an 9 in his prime but corporate Punk isn't that guy anymore."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sbprodwrote on 07.10.2024:[10.0] "2nd favorite of all time. Im 21 now and remember MITB 2011 like it was yesterday. He the greatest promo of all time, and an exceptional in ring performer with incredible psychology. Don't know what else to say, just greatness"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sxltsnxffxdaewrote on 06.10.2024:[10.0] "it's very funny to see how people, because of one incident, are ready to almost tear Punk to pieces. people forget about everything that punk gave us in the 2010s-2014s. and the AEW run was also good, . And he's still THE BEST IN THE WORLD upd. 2024 no one could have imagined that in 2024 he and Drew would be able to make a potential feud of the year"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PunkedIconXwrote on 26.09.2024:"[10.0] Definitely my favorite wrestler of all time, from his early work in ROH summer of punk work, to his ses work, to the summer of punk in 2012 and his AEW run. Ive loved punk for a very long time. LONG LIVE CM PUNK"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Maniaofmaniawrote on 24.09.2024:"Outside his matches with Joe, Hero, Raven and at push Homicide are his only matches I would rate high highly in the first part of activity as a pro wrestler. the only good match in the second run was the dog collar match with MJF he does not have the catalogue of matches of Misawa, Han, Toyota Pirata 1980s' Flair et al. I have never and will never care about promos, so that does not boost punk up for me. for me to him anything more than a 5 would be Disingenuous for me. He had a few good matches on the indies noting of note for me in either run in WWE and one good match in AEW."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: danzitorockwrote on 24.09.2024:[10.0] "CM Punk is my favorite wrestler of all time, without a doubt... I chose to support him as a kid, but it's when you're an adult that you realize how crazily good the guy actually is, and start to think about how right your younger self was to pick him to have as an idol. I'm glad I chose Punk, I knew he was incredible, otherwise I wouldn't root for him, but I didn't knew how right I was at that moment, Punk is fabulous as a wrestler, unique, unpredictable, smart, charismatic... truly the best in the world. There's a story that says John Cena called Punk 'the last territory wrestler', and I think he's absolutely right, Punk has many characteristics that you don't see much around anymore, and it's just a blast to watch him do anything, super influential guy, he completely dictates the landscape of the business. What I always say about Punk, is that no matter weather you love him or hate him, it's almost impossible to be neutral about him, everything he does is interesting, it makes you wanna watch, because anything can happen, he's magnetizing. A very divisive guy, specially as a person, it's impossible to deny that he makes wrestling much more exciting, he's just a mega star, with a lot of legendary matches and feuds out there. I couldn't know that as a kid, but it's really relieving to have a guy to identify with and share values and perspectives about wrestling, and Punk is that guy, I love how he doesn't forget the past, the people that forged the way and did some pretty awesome things, he was heavily influenced by some legends, and that's why the legends love him and respect him back. Punk is always the subject, he's a rebel for nature, a revolutionary, very vocal and with a strong personality, that's why he's the most loved and the most hated. Long live Chicago Phil, my undeniable GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: babarazam1wrote on 22.09.2024:[10.0] "Will always be one of my favourite wrestlers ever the greatest ever to pick up a microphone and in his prime was great in the ring as well despite never being that gifted athletically. There will never be anyone like him ever and they will NEVER make me hate him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Galmondiwrote on 22.09.2024:[10.0] "Amazing performer in and out of the ring. One of those guys we will still talk about in 200 years. A genius. Maybe the best talker in history. I'm glad he decided to come back and i'm glad he's back in WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ChadCashwrote on 19.09.2024:"Punk was the best promo of his generation and if that title doesnt go to MJF today then it goes to Punk again. Punk is also one of the best in ring story tellers I have seen. I am so greatful that Punk came back to wrestling because everything he has been involved with since his return has been fantastic. He clearly has a great wrestling mind and I hope we see him involved in creative somewhere once his career winds up."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Spirealwrote on 17.09.2024:[10.0] "Punk may not be the wrestler that made me like wrestling, but he's certainly the one that got me hooked. Everytime he's disappointing me, he just pulls me back in. His programs with Jeff Hardy, Cena, The Undertaker, , MJF and now McIntyre are memorable because he's that good in the mic and in the ring. The other great thing about him is his coolness factor, how he embodies straight-edge and stood out in WWE like no one else could during his initial run. His best years might be behind him but he still feels relevant."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AlexInTheBoothwrote on 15.09.2024:[10.0] "Simply put one of the greatest Professional Wrestling minds and performers of all time. From his work in ROH to his great run beginning in WWECW and finally culminating in the WWE summer of Punk. He was already one of the greatest of all time before returning in 2021. But then the return happened. Beginning with Darby, and ending with Joe at ALL IN. Punk's run in AEW was something to behold for someone like me who was getting back into wrestling when he returned. You can argue that his body is on the decline and his in-ring work begs for something more, but his mind has not slowed down at all. I'm very excited to see what he does behind the scenes after he hangs up the boots."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ISimon1912wrote on 10.09.2024:[8.0] "First of all, I don't like CM Punk, I started watching wrestling at the end of 2013, meaning I only caught the end of his first run before the 7 year hiatus. But then, being older and wanting to see more about him, I researched more about his career and went to see his impeccable work in ROH, including the legendary trilogy against Joe in 2004 and the feud against Hero in the indies, then comes the run in WWE that begins not so well, but from 2009 onwards the man begins, in my opinion, his prime starting in the feud against Jeff Hardy and reaching its peak in the infamous pipebomb and the classic at MITB in 2011. After the end of that run and the controversial form he left the business turned him into a martyr until his return to AEW which was my turning point in my perspective, Punk is talented, has good ring work, all timer promo and is a draw, in AEW although there is something very good in the feud against MJF , the most memorable was his numerous problems backstage that resulted in his departure and a return to WWE (the same one that said he would never return), this return makes me hate this guy, currently the promos he does are not funny, the matches are ok (if he pushes too hard he gets injured), and what was once "Voice of the voiceless" is now a WWE puppy because he knows that if he messes up, it's over for him in wrestling, if it weren't for these events I would even rate it with a 10 for influence, but I can't stand him or his sick fans who think this rest of the wrestler is the most incredible thing they've ever seen (maybe in 2011, but remember that was almost 15 years ago)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: travis807wrote on 09.09.2024:[8.0] "Unfortunately in 2024, Punk is barely serviceable in the ring without a ton of smoke and mirrors. On the mic, hes as good a speaker as hes ever been. But his words carry less weight than ever. The magic of Punk was that he had an unwavering conviction that youre convinced is real. Hes been reduced to a good, not great, character whose appeal draws in large part out of being a curiosity. Thats the gentlest I can put it. But you have to give him credit for his past work. Who knows, maybe Punk will manage to find that guy again, if even for one night."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jsbortswrote on 08.09.2024:[8.0] "Great on the mic for many many years, one of the best in understanding the psychology both in ring and out of ring about how to put a match together. I think Punk was actually at his best in the WWE when he was able to use a lot of MMA influences to put together what worked fights should look like as MMA grew more popular. I think that's CM Punk's best contribution to wrestling outside of some legendary promos. His in-ring legacy is his ability to further define what wrestling should look like on American television during the MMA revolution. That being said, I think even back to his Ring of Honor days, Punk's always been well below average athletically, and not capable as his counterparts in speed, quickness, strength, agility, or technical movement. Punk hasn't been an innovator of any moves inside the ring but often has done other's moves in a less crisp and less intense way. He's learned how to get the absolute most out of his athletic ability and lack of physical tools, but his ring work leaves a lot to be desired and his entire moveset consists of moves others before him have done much better. His 7 year hiatus robbed him of a lot of what was left of his physical prime, and his work in-ring since his return has been an all around disappointment considering his injuries and his lack of conditioning, understandable at his age. Punk's best in-ring work was often cited as his ROH days, but even in his Samoa Joe matches, widely regarded as his best ROH work, I find them to be tedious rewatches that only shine due to the absolute abomination that was mid-2000's North American wrestling, as opposed to a lot of great ROH matches at that time. With all that being said, he has an undeniable success that I cannot denigrate, despite certainly not being someone who understands his appeal in a broader sense. Punk is able to turn even your disinterest in him into something worth talking about, and able to turn that into eyes on a product- which is truly the ultimate aim of any wrestler. for that he deserves to be considered very successful, but frankly he's just not one of the all-time greats."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: McGuireShowwrote on 06.09.2024:"Legitimately the lightning rod for pro wrestling fans, love or hate him, CM Punk is often an easy conversation starter for wrestling fans. After his hiatus, he has managed to come back where he left off - generating headlines and ratings."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RVLTIONVGG01wrote on 31.08.2024:[10.0] "Simply the Best in the World, thanks to him I got hooked on wrestling when I was 6 years old back in 2007 and his career has proven me right. Words are unnecessary. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Chosen Onewrote on 28.08.2024:[7.0] "Als Anführer der Straight Edge Society fand ich ihn erst interessant - da aber dann auch wirklich interessant. Die Fraktion hab ich gefeiert, auch wenn sie nie weit genug ausgebaut wurde. Da hätte mehr gehen können. Die Geschichte mit Nexus war komisch. Der Summer of Punk war dann aber wieder legendär. Er hat die Dinge ausgeprochen, die Fans sich gedacht haben und war so ein Sprachrohr für alle. Sein AEW Run war okay. Sein jetziger Run überzeugt auch leider weniger. Er ist sehr washed, auch am Mic. Punk kann weit überdurchschnittlich gut talken, kommt an sein altes Ich aber nicht heran. Das liegt einerseits an seiner neuen Art und andererseits, dass er kein Rebellen-Image mehr hat; er kämpft nicht mehr gegen die Maschine an, sondern ist ein Teil von ihr. Es spricht sich ja auch rum, wie gut er sich auf einmal mit allen Backstage verträgt und ich habe auch das Gefühl, dass so gewollt ist."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nudlewrote on 26.08.2024:[10.0] "I am biased to the point that if you called me a cult member I might agree, but this guy has been my idol since I was young. Love him or hate him, he's one of the biggest stars in modern wrestling and is top 3 ever for me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Xzaviiiwrote on 21.08.2024:[6.0] "The thing we can say is that "Cult of Personality" really suit him, thats what he does to his fans. Punk is actually really good in the ring and good also on the mic. So why im putting 6 and not 10 ? Because all of his drama, Punk doesnt look like a good person. First of Hangman Page, then brawl out and finally, of course, Jack Perry. Even the comments Rollins said on him, all of this make me hate this man. I dont understand how the fans are still behind him and not see a patern between all of these drama, Punk is in all of these. Also, Punk is 45, he is a veteran and supposed to be "mature", he should not get into these kinds of bullshits and should not choking a 26 years old kid who didnt even hit his puberty yet (Yes, I seriously believe Jack Perry did nothing wrong), thats not what a "mature" veteran should do. Also I 100% believe the words of Hangman and Rollins, this guy is probably toxic as hell and it wouldnt surprise me."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CicconeYouthwrote on 21.08.2024:[10.0] "CM Punk is the best in the world for a reason... The milestone he created at Money in the Bank 2011 remains a historic moment in professional wrestling, and very few people have been able to provoke something with such a profound moral and even philosophical impact. Beyond that, he's also an outstanding wrestler, incredible on the microphone, and has the perfect look to complement his wrestling style"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Joelwrote on 20.08.2024:[9.0] "I really enjoyed this (9) CM Punk rundown. It's one of the best I've seen in a while. However, I'm a bit disappointed that some of the promos are not up to date and don't match the current day. I wish this could be fixed. Overall, I love this a lot as CM Punk is one of my all-time favorites. I admire not only his work but also how he carries himself as a person."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ITGfromDiscwrote on 09.08.2024:[10.0] "I think you have to give CM Punk a 10/10. ROH was the emergence of Punk, showing indie audiences that he was one for the future with feuds with Raven, Joe, and Cabana. WWECW showed a slightly less edgy character, but worked hard to gain the trust of management and main roster fans, eventually holding the ""ECW"" title. His Smackdown run resulted in a great feud with the most popular wrestler of the late 2000's, Jeff Hardy. A 3x WHC champ, his 2 runs with the WWE title served as a reminder of his polarity, with his Pipebomb promo inspiring a new generation of wrestlers. When he came back to wrestling in 2021 after 7 years away, he got back in the swing of things, but his AEW title reigns were short and controversial, as was his time there. Now, he's a veteran of the game, trying to imprint his legacy in WWE before injuries catch up to him once more. Overall, he's a controversial wrestler, who left wrestling at the near top of his game, but he's making up for it now with his runs in the 2020's. 10/10 wrestler, a surefire hall of famer, and one of the greatest wrestlers of the 21st century by far."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BrainChickenwrote on 09.08.2024:"CM Punk deserves a 10 (from me) for being a game-changer in wrestling. His promos, especially the iconic "Pipebomb, " are unforgettable and have revolutionized the industry. In the ring, his technical skills and storytelling abilities create compelling matches. His rebellious persona and genuine passion make him relatable and inspiring. Punk's authenticity and impact on wrestling are why he's one of my favorites."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fabio Garganowrote on 09.08.2024:[9.0] "He completely changed the game and paved the way for many independent wrestlers who potentially didn't have the physique or in-ring abilities that WWE was looking for at the time. Punk was one of the first to break his rules. And by arriving at the highest level, he proved that he could stand up to the greatest of all time, whether in the locker room, on the microphone or in the ring and demonstrated in turn that he too could to be one of the greatest of all time. I'm only going to talk about Wrestling. Sooner or later, One day or another, everyone will understand the wrestler that CM Punk was."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 12psiwrote on 08.08.2024:[10.0] "Okay, so Punk is without a doubt my favorite wrestler of all time. His ability to sell a story and a gimmick throughout his time in the WWE was truly unmatched, with his in-ring ability and stamina leaving little to be desired as well. The personal elements, frankly, I think also make him a defining Wrestler of an era that has been all about truly blending kayfabe and reality, something he has done second to none. Lastly, I would emphasize that his WWE arrival came at the perfect time to help shape the defining feud of the defining superstar of this era (Cena feud 2011-13)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wrest lingaddictionwrote on 05.08.2024:[10.0] "Possibly the biggest draw in pro wrestling history. His in-ring work for much of his career, while not brilliant, was never bad, and has unteachable levels of promo skills that 99% of wrestlers just can't get to."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "Punk is, in my eyes, one of the best talkers ever. Many people will try and downplay his career after what happened with AEW, but it's very hard to deny how much this man has done for pro wrestling. It just goes to show how good he is when they sold out the rampage where he returned on the back of a RUMOUR he was coming back to wrestling. It shows how good he is when he had fans chanting his name in wrestling arenas for years after he had left."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cletxawrote on 31.07.2024:[10.0] "he doesn't need to wrestle to become a legend. He can back the company even when he can't wrestle. Perhaps the most important wrestler in history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ceasara63wrote on 30.07.2024:[9.0] "CM Punk is one of my favorite professional wrestlers of all time. I think his promo abilities are unmatched, one of the best guys on the microphone in the last thirty years. He has so much passion, so much energy, and that especially shines through when he's got something really good for him to sink his teeth into. And his wrestling ability is on par as well, he's had a countless number of classic matches over the years, and despite his constant injuries nowadays, he's still able to go at a very high level. His storytelling abilities are amazing, he's had so many compelling feuds, most of them many blood-feuds, for example; MJF in AEW, Raven in Ring of Honor, etc., and he's super good at pulling you in and making you feel. And plus, he has left an indelible mark on professional wrestling. For that, I'm going to give Punk a 9/10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Zak22wrote on 29.07.2024:[8.0] "Very talented wrestler who has insane PR, he isn't the greatest of all-time and people only see him that way because he was in WWE with mid workers. Punk was great in ROH, he had a great feud with Chris Hero and he was a bright spot in a dark age in WWE but Punk is a bit of a prick and it has effected his work with him not always doing business right. And Punk has had some pretty mid-years throughout his career. One of the best in WWE history but not wrestling history."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BizarroMaskwrote on 27.07.2024:[8.0] "Maybe he is an assh*le in real life , but if you should judge only the wrestler and not the person behind , he has incredible gimmick and create a personna who is easy to hate and loves. Not the greatest in ring but that's only what miss him to be maybe the greatest of all."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: bigredtalk89wrote on 25.07.2024:[8.0] "Good, but vastly overrated in the ring. I think his strength lies in his promo skills, and while not bad in the ring, I don't think he was ever close to being what he thinks he is. I also don't think his promos are quite as good as his fans think they are, but I understand he's divisive and that the people who love him LOVE him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Aspionwrote on 23.07.2024:[4.0] "(Sorry english is not my firtst language) In ring fine but on microphone awesome but also so problematic guy and we need to remember all bad thing that he do i mean everyone do something stupid in his live but this guy just trying to do more then the others like its some freaking tournament a;so in AEW run and actual in WWE he doesnt look good at in ring level, and I have hope that he not not going to make any problem at WWE right now and also they not going to push him to much for the good sake of the company"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: woolyshamblerwrote on 21.07.2024:[10.0] "there is no one in wrestling today who is better at getting people to talk about him and stay invested in him. CM punk, accept no substitutes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ReverseFlash2002wrote on 18.07.2024:[10.0] "CM Punk is one of my all time favorites and I love just about everything he does. Hes promos feel like hes talking to you and feel real. Hes had so many memorable matches over the years with guys like Cena, Danielson, UnderTaker, MJF, Joe Hero, Raven & Moxley. He will forever be my favorite of all time and always has the most top notch stories in any promotion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Diohwrote on 14.07.2024:[8.0] "CM Punk is an iconic figure in the world of professional wrestling. With a career marked by moments of great impact, Punk has stood out not only for his skills in the ring, but also for his provocative persona and his unparalleled ability on the microphone. Among the main themes of his career are his straight edge philosophy of life, his memorable feuds with other renowned wrestlers, and his unique fighting style. CM Punk has developed several personas throughout his career, each with a defining characteristic. His "Straight Edge" gimmick deserves an 8, standing out for its authenticity and ability to resonate with a specific audience, especially his offensive way of dealing with Jeff Hardy. The "Best in the World" persona gets a 10, being widely recognized as one of the most convincing and impactful in wrestling history, communicating with the audience, not a super hero Cena and not an Omega Heel Orton. The "Heel Punk" against Undertaker was also effective, with a score of 7, showing the most assholish side a heel can have. Ratifying all his roles, Punk knows how to be a fucking Punk. Punk is widely recognized as one of the best in wrestling in terms of trashtalk and promos. His skill on the microphone deserves a 10, standing out for his ability to engage the audience, build narratives and unsettle his opponents with sharp words. Punk's greatest highlight is simply THE POWERBOMB THAT CHANGED THE WHOLE WRESTLER, EVERYONE LEARNED FROM PUNK THAT MUSCLES AND STRENGTH DON'T MATTER IF YOU'RE A DOOR ON THE MIC. CM Punk has been involved in some of wrestling's most intense rivalries. The feuds against Chris Jericho (score 9) and Jeff Hardy (score 9) are particularly notable, both for the feud with Jericho abusing Punk's lifestyle and his past, and for the exchange of roles with Jericho against Hardy, where Straight Edge feuded with Junkie Jeff, marked by emotional confrontations and high-level fights. The rivalry with John Cena gets an 11, and is considered one of the most important and exciting in WWE in recent times.Some of Punk's rivalries haven't reached the same level of success. The feud with Rey Mysterio, for example, deserves a 4, failing to capture the same attention and intensity as other Punk rivalries... Although CM Punk is a highly technical and charismatic wrestler, his athleticism is considered a weak area, with a score of 4. Since the beginning of his career, he hasn't had anything positive, he wasn't a high flyer, he wasn't a powerhouse and much less technical. However, CM Punk's finishing moves are iconic. The GTS (Go to Sleep) gets a 10, being a visually impressive and effective move. The Anaconda Vise submission deserves a 9, proving that moves that almost everyone uses these days are quite convincing in his hands. CM Punk is undoubtedly one of the most influential and polarizing wrestlers of his generation. His skill on the microphone and his ability to create memorable characters place him among the big names in professional wrestling. However, his lack of athleticism and some less impactful rivalries are points that could be improved. Compared to others in the same category, Punk stands out for his originality and cultural impact, but some technical limitations prevent him from achieving complete excellence. I started wrestling, in its consumed form in 2010-2012, where Punk was post nexus and the beginning of the MITB rivalry against Cena, I never understood how great he became at the time, but now almost 14 years later, I see that without him as a great pillar during this era of wrestling, many current events that we see mainly in WWE, would not appear, especially Rollins and Roman (The Shield) and the huge leverage for NXT, love it or hate it, without him, much of today would not be possible."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: OctagonEnjoyerwrote on 06.07.2024:[8.0] "A wrestler who while I still like, his recent actions have made me reject him as one of my GOATs. Don't get me wrong, I've liked Punk for most of his career. His run in ROH is legendary, his first WWE stuff was ok, but then you got stuff like his feud with Jeff Hardy and the SES (my favorite incarnations of Punk). And while I wasn't watching wrestling with him during his prime BITW WWE title run, looking back I agree looking more into that era that the stuff that happened here was great. Just like how I agree WWE fucked him on that first run, and I agree with him and his name being used as a martyr figure and chanting it to put WWE in its place. And when he came back to AEW I was happy and excited, and there was some good stuff there like the Darby stuff, the Mox feud, the Eddie Kingston feud, and that one Daniel Garcia match on Rampage. But looking back at it now and especially since the incidents (which sadly are a big part of his legacy now and that I'll get to), 2022-2024 CM Punk is one of my least favorite wrestlers in modern wrestling. Having slow and boring Anthony Fantano review-level "bret hart tribute" matches with he botches a lot (he botched the same move twice in a row for A PPV MAIN EVENT FOR THE WORLD TITLE). I watched some of Bret Hart's stuff, and he wasn't slow and boring. And then we get to the backstage stuff (lemme make this clear before I say it I am NOT a big young bucks/elite/jack perry fan so this has nothing to do with bias, and if they were FULLY in the wrong I would shit on them), where he comes off as a hypocritical crybaby ("if you have a problem with me meet me in the back" THEN YOU AND YOUR FANS GET DEFENSIVE WHEN THEY MEET YOU IN THE BACK? ), not caring about non his camp people or the company's PR despite being given a lot (the Rocky III rant being on the day where they announce essentially "his" show), and playing the victim and blaming everyone else except the injury prone 45+-year-old man with anger issues that can't keep his hands to himself ("the young bucks took a victory lap" despite being booed for an incident that has nothing to do with them as Perry was a punk endorsed guy). Also, his fanbase becoming one of the most annoying wrestling fanbases, acting like the man can do no wrong and still thinking it's 2011 and CM Punk is in his prime, and his actions being a PART (mind you A PART, not the entire reason) why internet wrestling discourse has been so terrible with AEW. Making me root for when he comes back so my boy Drew can kill him and Punk inevitably gets injured again. In conclusion, Are there worse wrestlers out there? YES. Are there worse human beings in the wrestling business out there? YES. But that doesn't mean Punk gets off scoff-free. A great wrestler with a tainted legacy."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: louiscornwrote on 28.06.2024:"The Greatest to ever do it, the reason I fell in love with wrestling. No one compares to him on the mic, and he backs this up with great in ring skill"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: brb75wrote on 25.06.2024:[10.0] "Sure, he is not at his peak right now and he is getting older, but anyone saying that he didn't bring a lot of people back into wrestling, myself included, is a liar. Right under the Rock and Rowdy Piper when it comes to mic work and he was also one of the best wrestlers in the world for a while. Sure his personality can be hard to deal with it, but he has an attitude and i definitely respect that. Anything other than 10 for his entire career is a blasphemy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Sick Lebowskiwrote on 18.06.2024:[8.0] "Punk ist ein Großmeister am Mikro und im Ring überdurchschnittlich. Aber eben auch nur überdurchschnittlich. Natürlich kann er mit den richtigen Gegnern absolut fantastische Matches hinlegen, keine Frage. Aber ich sehe in ihm nicht den absoluten Megastar, wie es viele sehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Reccaswinthwrote on 07.06.2024:[8.0] "CM Punk is a great wrestler but his legacy is tarnished by his ego and poor attitude which bleeds into everything he does inside the ring and out. Punk is a great upper midcarder and transitional champion - and he has proven so in Wrestling's most prestigious and successful promotions, but he is not nor will he ever be 'the guy'. He is not what Sting was to WCW, what AJ Styles was to TNA, or what Steve Austin was to the WWE. Normally this wouldn't matter to me, however Punk's entire persona in and out of Kayfabe is that he earnestly believes he deserves to be 'the guy'. Whether it's Ring of Honor, WWE, AEW, or even UFC Punk acts as though he is God's gift to wrestling. The problem is that he isn't. Sure he can wrestle but he's no Misawa or Michaels, and sure he can talk but he's no Dusty Rhodes. Maybe at one point he had the opportunity to be just as good as or even better than the all-time greats but when he started to face adversity at what was the peak of his career he gave up and made a jackass of himself in the MMA world - something that I found particularly offensive as it lends credence to the stereotype that Professional Wrestlers are not legitimate athletes. He clearly did not learn his lesson when he returned to Wrestling via AEW and I still don't think he has even though he's crawled back to the WWE. Hopefully CM Punk will at least finish his Wrestling career without further humiliating himself or the business."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TurdFergusonThe2nd1wrote on 04.06.2024:[7.0] "Great promo for sure and has passion to be at the announce table, but it's hard to say whether or not he should still be competing in 2024. I was a huge Punk fanboy from 2007 onwards until he left but the injuries and demand for more aren't really warranted now. I'm slightly more interested in the show if he's involved, but it's not the same as it once was. He's still worth watching for historical purposes."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Taper1994wrote on 02.06.2024:[10.0] "With WWE becoming a monoploy in the US scene during the 2000s, there was very little options for alternative in the US so a ton of small independents started to draw attention and no one was drawing attention like CM Punk. From his matches with Chris Hero in IWA in 2002 and his bitter personal feud with Raven in ROH in 2003, CM Punk was making waves as one of the best performers in pro fessional wreslting only he was doing it at the smaller stages. After have a legendary throligy with Samo Joe in ROH in 2004, CM Punk was given the call to the big league of WWE (which also lead to another fantastic story in 2005 when Punk won the ROH title and threatened to go to WWE with the belt without droping it). Of course it's well know how much of a tumultuous run Punk had in WWE, labelled as a 'Heyman guy', not having the right look, Punk finally getting the right push in 2009 and delivering an excellent feud with Jeff Hardy only for WWE to have Undertaker cut him off at the knees because he wouldn't toe the company line. CM Punk fully believed he was going to leave WWE that night on 27th June 2011 when he sat crossed legged on that stage and cut the now famous pipe bomb promo. That promo single handely launched CM Punk into superstardom and following up with the excellent match with John Cena at Money in the Bank 2011 where Punk won his first WWE title put Punk solidly in the #2 slot behind Cena. And despite being 2, Punk 3rd reign with the WWE title was still longer than any of Cena's reigns. Regardless of being given all that, Punk was unhappy with the politics of WWE and left the company bitterly in 2014. It was such a bitter dispute that Punk left pro wrestling for years and only came back when an alternative finally rose up with AEW in 2021. Punk's return saw AEW draw their biggest numbers ever, and Punk himself delivered a classic feud with MJF to boot but once again Punk's backstage behviour reared it's ugly head and by 2023 he was back in WWE again after causing shit in AEW. Punk might be a political shit steerer but he is a damn entertaining pro fessional wreslter. The best in the world? Nah, ignoring guys like Bret Hart or Hiroshi Tanahashi who have careers under different circumstance, I already think Bryan. who had a similar career trajectory to Punk is better but Punk is great enough for a 10 from me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Willie 19200wrote on 20.05.2024:[10.0] "CM Punk is my favorite wrestler of all time. CM Punk is a guy who shined in every company he was in, from the original "Summer Of Punk" in Ring Of Honor, to CM Punk with the ECW title, To his 2011-2013 in WWE with the title, to leaving wrestling in 2014 and come back 7 years later in AEW. Except it all went down hill in AEW, the beginning was really good, feuding with Darby Allin and MJF, and then he won the title, got injured, won the belt again, disrespected the elite, was out of action for over 6 months, just to come back have banger matches with Ricky Starks and Samoa Joe, and then got fired for fighting Jack Perry. Now he's suffering another injury after returning to WWE. Whether you like him, hate him, agree with him, or disagree with him, He will still have a place in the wrestling history books as one of the greatest and controversial characters in wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: doobwrldwrote on 18.05.2024:[10.0] "Most certainly one of the most influential wrestlers ever, not only just for the independent scene, but for WWE itself. Hell, one could even argue AEW in some way shape or form. Its amazing to see how many people are consistently inspired by this man, and for rightful reasons. One of the coolest professional wrestlers to be honest, and such a talented individual in the ring who can work pretty much any style. Microphone skills do not need to be notated, as he is easily on the shorthand all time when it comes to promo. Rooted in controversy, sure. Hes a human, were all going to have our grievances and our moments, but there is no denying just how much impact Punk has had on not just this generation, but wrestling as a whole."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pigeon Scratchwrote on 17.05.2024:[9.0] "CM Punk is such a controversial character and has been for over a decade now, even before his departure from WWE in 2014. This is especially true in recent years, when it comes to his AEW run, how it ended, and his surprise return to WWE. I am not gonna deny that CM Punk absolutely has some issues he's gotta work on, especially backstage. Still, I can't help but love him, and I can't help but be biased in some way. I genuinely do think if it wasn't for CM Punk, WWE wouldn't be as good as it is now. If it wasn't for 2011, I think the following decade would've been very different and frankly worse in a lot of ways. While it wasn't just him, he definitely helped in bringing a change in how WWE looked at its roster, and he brought in business during his time on top. And damn it, at least back then he was damn good in the ring. So yeah, my rating is definitely slightly inflated due to just liking him as a person (well, for the most part, I think he was a knob in AEW), and with a focus on how his voice and actions led to so much good."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: gilmoregirlswrote on 17.05.2024:[7.0] "Satisfactory entertainer. Great on the mic with believable conviction. Uncoordinated in the ring, though. Physique and look are up and down but mostly good. Sometimes his micwork feels overly workshopped. Seems to have a maladjusted attitude and constant chip on his shoulder. His in-ring work is almost entirely forgettable because of how wonky he is in the ring. One of his crutches is to CONSTANTLY evoke legend names during his promos so the viewer subconsciously associates his starpower with the mentioned-legends. Sorry, bro. You ain't in the same league as Dusty, Funk, Piper or Macho Man. This guy is very, very manipulative and subversive. It was very obvious that he was trying hard to get fired from AEW so he could return to a revamped Vince McMahonless WWE. Check out his UFC matches if you want a good laugh and to see how uncoordinated he is in the realm of fighting. His "impress me" attitude is pretentious and abrasive. His modern ringwork, in WWE and AEW, is pretty bad. This guy is coasting on the nostalgia of the "Summer of Punk"."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nocarnybarneywrote on 16.05.2024:[7.0] "Lack of consistency and wrestling ability brings him down a good bit for me. He's been a top guy for like a cumulative total of 5 years of his entire career when you subtract injuries and backstage shenanigans he always seems to find himself in. Can't name a lot of memorable matches, but can name memorable feuds and promos he's done. I give him this rating because in some ways he is incredibly disappointing by not living up to his potential"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: tlaustinwrote on 09.05.2024:[7.0] "A younger me would've given him a 10, but once you get into fights with every single person you encounter in the real world, you have to realize at some point that you're the problem. I also don't think his WWE return has been very good--AEW fans were already aware that his body was falling apart after his famously botched shotgun lariat and many injuries, and one of the first things he does in his WWE comeback is tear his triceps on Drew's Future Shock. So. 10 for his indie legacy + charisma + incredible first moments in WWE that you almost certainly know about if you're on this site, -2 for being one of wrestling's most toxic people on the planet, -1 for being injury prone yet still threatening (and sometimes succeeding) in stealing spotlight from better wrestlers due to politics. The best thing I can say about him right now is that he helped carve out Drew Mcintyre's best character yet. He should head to the sunset sooner rather than later before he does more damage to the industry or himself."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: colinmcevwrote on 30.04.2024:[7.0] "CM Punk is a good wrestler who is great at cutting promos and is just an absolute elite-level shit-stirrer. Not great, in my humble opinion, but you have to give him this much: he's never boring. (It's really funny how bad his UFC run was, but that's neither here nor there...)"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CoRdelwrote on 25.04.2024:[10.0] "This guy is my favorite of all time. Say whatever you want about Punk but his work has always been amazing. A great career, really good and unique in-ring style, and of course one (if not the one) of the best on the mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jcheng777wrote on 25.04.2024:[9.0] "Notwithstanding his controversies, Punk has always managed to deliver excellent storylines or matches, despite slowing down in the latter since his return which has been marred by several injuries. One of the best mic workers of the last 20 years and served as the trailblazer for Indy wrestlers in the WWE, a legend which will likely be immortalised in the HOF once its all said and done."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CurlyHairMetalPunkwrote on 23.04.2024:[8.0] "CM Punk as a professional wrestler is flawless on the microphone and conjures up the intensity of his childhood hero Roddy Piper, and in the ring while he is not an absolute perfectionist like Bret Hart, CM Punk is still quite good despite some slight sloppiness. Where CM Punk falls short is in his look as he gives off high school indy wrestler vibes. Kevin Nash was correct in his assessment that CM Punk needed to take a shower, hit the weights, and get a clue. Undoubtedly CM Punk created quite a legacy for himself. Forget watching his ROH stuff, go watch his WWE stuff with Jeff Hardy, Rey Mysterio, John Cena, Chris Jericho, Daniel Bryan, Undertaker and Brock Lesnar."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: skyblueswrote on 18.04.2024:[10.0] "My favourite wrestler of all time. I remember watching WWE as a kid, and I didn't really get invested until I saw CM Punk. He is obviously a great talker, and can make any storyline memorable simply on the microphone, but I also love the stories he tells in the ring during matches. His matches capture my attention unlike any other wrestler. He knows how to capture a crowd and keep them in the palm of his hand. His work on the indies is legendary, his feuds with Raven and Samoa Joe are forever etched in wrestling history. He really did change the game in WWE, and gave some of their biggest stars their best matches (ie. John Cena, Undertaker). When he returned to wrestling in 2021 and signed with AEW I started watching wrestling again and I'm glad I was able to see so many of the great matches he's put on since his return. His match with Eddie Kingston is one of my favourites to come back to and rewatch. His feud with MJF is the best in the history of AEW. Although the build was messy, his matches against Moxley were sick. The early Collision run was also tons of fun, and culminated in his final match in the company against Samoa Joe at All In (which was my MOTY last year, great professional wrestling). Now, he is back in WWE. I was skeptical at first, but the feud with Drew McIntyre is set to be some legendary stuff and I can't wait to see that play out. His injuries have been unfortunate, but I think people are tougher on CM Punk than they are on literally every other wrestler for their injuries. I hope he has a speedy recovery and he can get back in the ring soon. CM Punk has been my guy for as long as I've watched wrestling and I can't imagine anything changing that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: bzgameswrote on 12.04.2024:[8.0] "One of the few wrestlers too good for a booker to hold down. No matter where he went he quickly rose to the top as premier star. A savvy in-ring worker and perhaps the greatest promo in wrestling's history to boot; CM Punk is a living legend for the industry. Sadly, this past two years of lackluster in ring outings and constant drama has soured me and many others on CM Punk. He's one of the best ever, but I can't help but feel like he should've been THE best ever."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: forwardtodeathwrote on 11.04.2024:[5.0] "The CM Punk of old truly embodied the punk rock ethos, but just like many aging punk rockers he decided to take the golden pathed road of hypocrisy for the almighty dollar. There's really no shred of punk left in the man, just a shell of former performer whose body has fallen apart despite people 15 years his senior having successful runs. His modern value is purely based off of nostalgia, cult following and controversy which makes him less the modern Bret Hart and more the modern Hogan, someone shoved down our throats and is way past his prime, someone who claims to stand for one thing but represents the polar opposite. I think Punk's favorite band Minor Threat put it best; small man, big mouth."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DEDEwrote on 11.04.2024:[2.0] "CM Punk war für mich sehr sehr lange einer meiner absoluten lieblings Wrestler, über seine Runs bei ROH / WWE bis zu seinem Abgang muss man sicherlich keine Worte mehr verlieren. Leider hat er in den letzten zwei Jahren seine Legacy Leider absolut zerstört und mich als Fan so oft enttäuscht und mittlerweile verloren. Er war schon immer eine schwierige Person, aber was er sich in den letzten zwei Jahren geleistet hat ist in meinen Augen nicht mehr tragbar. Ein absoluter Egoist, der sein Ego über alles stellt und immer anderen Leuten für sein Fehlverhalten die Schuld gibt. Er shootet über fast 10 Jahre bei jeder Gelegenheit gegen die WWE und wirft dann seine eigenen Prinzipien mit dem neuen Vertrag über Bord. Dementsprechend hat er für mich jegliche Glaubwürdigkeit verloren und die Ehemals Größe Stärke das micwork fällt für mich weg. Im Ring sicherlich aufgrund des Alters auch nur noch bestenfalls durchschnittlich. Eine Verletzung jagt die nächste, mit Best in the World hat das alles nichts mehr zutun. Ein Wrestler der so verdammt schwierig ist und mich so oft und massiv enttäuscht hat kann ich keine andere Note geben. Es tut mir selbst weh, mit dem Punk von damals hat das alles nichts mehr zutun und er zerstört massiv seine Ehemals legendäre Legacy durch Geldgier, Fehlverhalten und Widersprüchen in seinen eigenen Prinzipien."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ThatWrasslinGuywrote on 07.04.2024:"CM Punk is the best wrestler in the whole 21st century. I don't really know what to say He is an all-timer 10/10"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: arisenbywrote on 06.04.2024:[5.0] "[5.2] The CM Punk of the early-to-mid 2010s was practically a god. He was a man on top of his game in the biggest promotion in the world, reigniting interest in it during one of its worst times and a permanent highlight of a show that tended to verge on unwatchable. Sure, he was never quite as good in-ring as his fellow early ROH alums, but he made up for it by being one of the best talkers in the wrestling world, arguably a top 10 of all time, and was in a place where he could rest on that. The CM Punk of 2024 is none of that. He has retained his world-class skills on the microphone but realized the business had moved on from him and was bitter over it. His second AEW run and subsequent return to WWE just made it apparent that Phil Brooks has become a toxic, self-important parody of everything that made him great. All of this might have been forgiven if he was still decent in the ring, but he isn't. The in-ring work was always a weak point for Punk, but he has slowed down and can't stay healthy for the life of him. Of the two years since Double or Nothing 2022, almost half of that time has been spent on the shelf. What good he has in his legacy is simply not enough to override his current-day mediocrity, or how hard he has seemingly intentionally worked to destroy any goodwill he had with all but the most casual of fans, who have nothing to frame his impact but the hushed reverent tones of those remembering a man who is now a shadow of himself."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ClawIzukawrote on 04.04.2024:[2.0] "CM Punk did a lot for indy wrestling, even after going to the WWE. He was the guy all us indy fans wanted to see succeed because it meant our other favorites had a chance. He made it to the top of the mountain and then it call came crumbling down. I get why he left the WWE, and after years being away he finally came back. Unfortunately his comeback was just terrible. Going straight to the top, getting hurt, causing issues and just overall being someone I just wanted to go away. The "lets shoot on each other" promos got boring fast, especially when he was the one to get his feelings hurt. The matches were not up to par at all for a guy at the top of AEW at the time and he looked like didn't belong in the ring with Hangman. Even the MJF stuff was just saying insider bullshit, which I'm sure some people loved but I just started to skip over it. Then he left in disgrace and left an entire company worse off than when he arrived, only to go back to the place he spent years bad mouthing because they almost killed him just to immediately get hurt again."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ultravioletshiroiwrote on 03.04.2024:[8.0] "CM Punk is hard for me to rate. On one hand I think he had one of the best promo skills in the history of WWE. He could wrestle a good match too and hang with the top guys in WWE. He had 5 star matches with John Cena, Randy Orton and Undertaker. His in ring psychology is among one of the best and he has tons of charisma. He deserves to be as over as he is but if anything goes against him it's his attitude. CM Punk is very hotheaded and at times just a total jerk, sometimes for seemingly no reason like his beef with Elijah Burke. He also ruined a part of his legacy by going to the UFC to try and do what Brock did except failing miserably two times in a row before retiring, and I was rooting for him as a wrestling fan to win those matches."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hazelyzewrote on 02.04.2024:[10.0] "Still the best in the world. Still the most compelling character in wrestling right now. Amazing how he was gone for 7 years, but promo-wise he hasn't lost a single step. One of my personal GOATs. Has had classic rivalries everywhere he went. Joe in ROH, Cena in WWE, the Brock stuff, the Taker stuff, and the MJF feud in AEW. Yes he's controversial and not everything he says I agree with. But as a character and a wrestler, second to none for me. *****"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Amaury08wrote on 01.04.2024:[0.0] "I appreciated CM Punk a bit when he arrived at AEW in 2021, having only known him through videos but it's one of the biggest disappointments in professional wrestling. Besides the fact that he was burned in the ring, his so-called real promos turned out to be a damp squib, this man is a liar and a definite manipulator. He intentionally tackles and emits false information with a total rewriting of the events that happened. He destroyed a locker room, making pro-punk and anti-punk, putting himself at the center of everything. No punk you didn't leave all elite, you were fired following your abusive behavior. Currently, in 2024, he is doing more harm to the world of professional wrestling than anything else, he is injured and does not perform, he takes advantage of the media and interviews to criticize his colleagues in the business. There were a few matches of his that I enjoyed during his comeback run, but the man behind it doesn't excuse the poor and deplorable wrestling behavior."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sarahlicitywrote on 27.03.2024:[8.0] "This is a hard rating to make, because for a long time, Punk was one of my favourite wrestlers, and, like many of his fellow RoH Golden Age alumni (see also: Joe, Danielson), the template for what a wrestler in the 2000s should be. But at some point, possibly in the twilight of his famous 434-day title run, the shine of the industry started to decline for Punk, and it started to show. The 434-day title run, after all, showed that Punk was at the top of the game and a money machine for WWE, but Vince had to be Vince, and he didn't capitalise fully on that. It wasn't just sour grapes that Dwayne was in the main event of WrestleMania, after all; like many champions before and since who weren't the Anointed One (see also: Foley, Edge, Rollins...) Punk was an afterthought. And at some point after WrestleMania XXIX, you can see the enthusiasm leave his body in real time. Maybe if he stuck to his retirement in 2014, he could've gone out on the moral high ground and his legacy as the Best in the World would be secure. But then he came back, and we thought all was well. Certainly, the first couple of feuds to shake off the ring rust gave us hope. But as Nolan's Harvey Dent once said, you either die a hero or live long enough to become the villain. The justified bitterness to the corporate suits in WWE turned to his fellow wrestlers, and, to turn a phrase, he became everything he despised; a Cubs man turning into the New York Yankees. A man who paved the way in cutting shoot promos started getting upset when people would cut them against him. His narcissism backstage ballooned to the point that if you weren't 100% behind him, then you were effectively banned from appearing on the same TV show. And at the same time, the magic in the ring was noticeably absent. Maybe the industry advanced without him, because he clearly didn't have the spark he once had. And, of course, we have to mention Brawl Out and Brawl In. Look, if there's backstage problems, and one man is at the centre of all of them, then maybe that one man is the problem. Even if he was goaded by others, he's older than all of them and therefore should really be the wiser man. So with nowhere to go to, he jumps the shark and goes back to the company who made him wrestle half to death before unceremoniously firing him on his wedding day. Granted, McMahon's fall from grace might've smoothed over the cracks, but they're still visible, and I think I'd have more respect for this iteration if he just admitted that. At the end of the day, the CM should never stand for "company man", which is what he is in 2024, with the Voice of the Voiceless we grew up loving far away in the rear view mirror. Punk still holds a special place in my heart, which is why it pains me to give him a rating lower than a 10, but I still have to be realistic, he's just not the same guy he was."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 2pt0EcoBoostFusionwrote on 18.03.2024:[6.0] "This rating review is probably going to ruffle some feathers, but I could care less. CM Punk, although at one point was very talented in-ring and had some phenomenal mic skills (and to this day for some credit, still does), has fallen a little off the edge in terms of just about everything, and I fault that to him being his own worst enemy. The only reason why CM Punk still has a job in wrestling is due to his drawing power, which is immense. Besides the drawing power he has however, CM Punk has been quite iffy to watch since coming back to wrestling in 2021. CM Punk has been injured multiple times since coming back and has had some slow in-ring moments and a few botches. Not to mention some very infamous moments like "Brawl Out" and the All In 2023 incident, I can go on and on about the infamy, but I don't want to exactly discredit CM Punk, hence the 6 point rating (the highest rating I will give him), which is mainly due to his regression as a wrestler due to perhaps age catching up (I do sometimes say age is just a number). CM Punk is a very important wrestler, no doubt about that, but he is way past his prime and it is showing a lot, not to mention he's got a massive ego and is considerably one of the biggest egomaniacs in all of wrestling."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Its Clobbering Timewrote on 13.03.2024:[10.0] "CM Punk is the Best in the world and its not even close he changed the game and is one of the most important wrestlers ever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Vanstylerwrote on 11.03.2024:[8.0] "Same as Marty Scurll, a super talented guy with a trash personality. It's no surprise that many wrestlers end up having personal issues with this individual, he's an insatiable ego machine.But that aside, he's had a legendary career with incredible matches worth reliving. His current career, on the other hand, has aged as badly as milk"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TripleCrownwrote on 03.03.2024:[8.0] "The perception of CM Punk has changed a lot in recent years, which is understandable given the whole AEW stuff. A lot of people take what happened in AEW way too seriously, he still put on a lot of great matches and was undoubtedly their biggest star. People seem to forget that CM Punk was the best thing going for a long, long time. Made WWE bearable during late 2000s and early 2010s. People say his stuff in-ring is sloppy, which I must admit sometimes it can be. But the important thing is that he doesn't stink out the joint whenever he wrestles. Took a lot of inspiration from Japanese wrestlers. Which, again, some people take great offense to. Haven't even mentioned his mic work yet, which is something he is quite possibly most known for. He'd still be a star regardless of his ability on the mic, but having that charisma really made him into a top name in professional wrestling. Recent injuries appear to show that his body is in a decline, I really don't think he has much longer left as a professional wrestler. Won't talk about the UFC stuff because it isn't relevant to his ability as a professional wrestler. Shame he felt the need to take that much time off post WWE but that's just life."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mxkamiwrote on 23.02.2024:[6.0] "Punk was my favorite wrestler for several years. He was different from the others on the cookie cutter WWE roster when I saw him, so I was drawn to him. Then, I got older. Punk's reputation became more known to me as I got more into Indies, and I started to think he was problematic and a partaker of his own Kool-Aid. He has NEVER been a workrate guy. Yeah, yeah... Something, something Chris Hero IWA 90-minutes, blah blah blah. Those matches are so overrated. As is Punk. His behavior in AEW was juvenile, preaching to the choir how guys would get chances, he wanted to put people over. People could come to him. Starts cutting promos on people. Someone does it to him, a newsworthy occurrence happens. Repeat that a couple more times, and he's fired. Don't even try to predict which side I take in Brawl Out, because I rarely watch AEW and can't stand the Bucks. Oh, wooooooooooooooooooooooooow, he's *SUCH* a good promo! I mean, formerly. Yeah. His words ring hollow now, and other people have far more in the tank on the stick than Punk, and without having to reach into their bag for every sentence. He's old, he's injury prone now, he's cranky, he has nothing in the tank anymore, and he's seeming more and more tone deaf by the day. I wish I felt the same as I did in 2011. But I don't. And I just don't care anymore."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GreatAetherBosswrote on 15.02.2024:[8.0] "It's strange, rating Punk. Biased as a Chicagoan, biased as someone who loves a good promo, biased as a fan of what he once was, nowadays I don't see that as much. I remember being at the United Center when he came back, and let me tell you every video, every clip, every single documentation of that night when Cult of Personality hit doesn't do any justice to the noise. The roof blew off the building, fell back to Earth, then blew off again. We couldn't hear ourselves much less the music playing, and no one dared leave their seats until he was done talking. It was cathartic in a way, bringing the circle whole, ending a long drought of no CM Punk in wrestling. It was great seeing a childhood hero in a ring again, especially since when he was wrestling before I barely watched. I wasn't a big wrestling fan until after he left in 2014 but I still knew how big he was. But nostalgia can't exist when what makes you nostalgic is right in front of you, and after the highs of his return started wearing down, so did his body seemingly. Injuries can and have messed up careers in the past, but with Punk, he's just cursed it seems. Win the AEW Title? Break your foot in a freak accident days later. Come back and have a weird build to a main event reclaiming of your title on PPV? Tear your triceps. Come back to WWE and make it to the final 2 of the Royal Rumble and put yourself in the conversation for a world title match? Oh hey tear the other tricep while you're at it. Throw in the Brawl Out incident and the Brawl In incident and you got a really weird career since 2021 alone, never-mind his past run from 2011-2014 with the WWE and the ups and downs of that. At the end of it all, Punk is a whirlwind of a wrestler and even more-so as a person. Either you love him or you hate him, and it feels like he forces no in betweens. I dare make the attempt to be in between the two. One of the best talents I have seen, an icon on the mic who makes crowds go more silent than anywhere else, and a leader when he needs to be that can make seemingly anything thrown at him work out. However, we can't look past how he's been as a person since coming back, and even before to an extent. Time will tell how things go with WWE since he's out for who knows how long, but here's hoping I can come back to this and say he's worthy of a 10."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BigPeanutGuywrote on 14.02.2024:[10.0] "The best to ever do it. The best finisher, the best in ring charisma, the best mic work, unbeatable in ever single aspect of being a professional wrestler. Go ahead and cry about it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: juiceisloosewrote on 09.02.2024:"Everything happening in the past few years from his AEW run to his run in WWE now, has proved to me that Punk should retire once and for all. His situation in AEW and even before in other companies he was previously involved in does not make him look good and I think that people are tired of defending him and his antics. Sure, he was good in his time but his toxic behavior should not be tolerated anymore just because he has this "legendary" status in the bussiness. This man has admitted on video that he has bullied and deliberately hurt a woman in the ring who was trying to get in the business and said that if it was any other wrestler but him, she would've just been fucked and thrown aside. And he now claims that he's an advocate for women in wrestling? Sorry but I just can't defend this piece of shit of a human being with his history of misogyny and other hateful shit. I really really hope I won't have to see him in any area of wrestling in the near future."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CDProsProwrote on 09.02.2024:[0.0] "Narcissist crybaby and very out of touch, shame he hates Hulk Hogan because hes a bigger primadonna than he is. Good he keeps getting hurt because it is telling him to go quit again. Not a nice person. Not a nice person and he steals things into making his aura. Keeps stealing the spotlight with promos from the 70s among the ridiculous tops he wears. Kinda sucks into marketing himself too, just has nothing other than cheap stuff, only original thing is his straight edge lifestyle. He takes everything like own cities stars, his finishers are KENTAs and Tenzans. His great act was in 2011 where he is famous for moaning about WWE into a storyline. In fact he is boring to sum him up, he is boring and gets no respect from me personally. Not the only one."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: VictoriaDTwrote on 27.01.2024:[6.0] "Punk is great at pretty much everything when it comes to being a wrestler. But, these past couple of years it has become increasingly clear that he is an extremely toxic backstage presence. It doesn't seem to me that he cares all that much about wrestling and his return has been mostly about money, which is fine, but that just makes it feel all the more fake and transparent. It's not about AEW Vs. WWE, that's too childish for me. It's about integrity, living by your word, and being a good person. I don't see that in Punk at all, I hope he redeems himself, but at the moment he just isn't there."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kynarionwrote on 27.01.2024:[10.0] "To me he is everything I want in a wrestler - insane mic skills, great in ring work, outstanding presence - whatever role he is in, he excels magnificently, but I would say he really shines as a heel, an effortlessly dislikable villain. The Straight Edge Savior gimmick was a standout moment from him, very memorable. He's a truly one of a kind wrestler, from his indie days to superstardom, I don't think there will ever be a wrestler quite like CM Punk again. Has had many great feuds and I personally consider his feud with Raven in ROH to be one of the best of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SLM248wrote on 24.01.2024:[10.0] "CM Punk is without a doubt my favorite wrestler of all time. I know he is controversial to some but, to some extent that's what drew me towards him. He is exactly the wrestler a young boy like me needed to see to draw me to watching pro wrestling. Without CM Punk I would not be a wrestling fan right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BruceMarcos524wrote on 20.01.2024:[9.0] "I know most of the people nowadays are 50/50 with CM Punk giving by his recent situations. But there is no denying that CM Punk is one of the most important wrestling stars of the last 20 years. Controversial but no doubt second's biggest draw in wrestling next to John Cena of the last 20 years. He has no catchphrase to remember, but his content of his promos is what it should remembered. One of the first indie darlings who broke barrier in the WWE. One of the guys who exposed the politics in the business, as his "Pipebomb" is considered one of the best remembered promos in wrestling history. In-ring skills he has solid fundamentals, and he can even go with more talented stars like Bryan Danielson or AJ Styles. But no question one of the biggest pros of CM Punk is his promos. When CM Punk speaks, people listen as you might get something interesting coming from his mouth. Most of the people wanted to hear what CM Punk has to say so a lot of people only tuned in to Raw or Smackdown just to hear Punk talk and providing reality check insults to his opponents. AEW did a tremendous job bringing Punk's passion back in wrestling but unfortunately Punk wasted his run there because he cannot deal with the people in the backstage professionally. Now he's back in WWE, let's see how long Punk would last until he will suffer another breakdown. Despite of his recent issues, still he has millions of supporters who backs him. Overall, CM Punk is an above average wrestler with excellent microphone skills. Huge asset and a draw to whichever promotion he works on."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Chosen1EJB05wrote on 17.01.2024:"10.0 Fantastic on the mic, A master in the ring, A rare sight of being able to be an effective face and heel. There will never be another like Punk. Never"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: shilderwrote on 14.01.2024:[10.0] "Talk about putting ass to seats. Punk will sell out an arena in a heart beat. This guy has the "IT" factor every wrestler tries to find. His hard work ultimately paid off far later than it should have. If you are here and you don't know about CM Punk just go to youtube and let the rabbit hole begin. Enjoy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Quick Manwrote on 13.01.2024:[7.0] "I've been a CM Punk mark since 2006, but his AEW run totally soured me on him. He's only average in the ring nowadays, carried by some undeniably fantastic promo work and stories. Time will tell if his WWE return can save him for me or if I truly am firmly off the Punk bandwagon in 2024."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Dntbamarkwrote on 10.01.2024:[8.0] "Fantastic promo, decent-in-ring worker who could work as a babyface and/or as a heel. I initially wasn't much of a fan of his work until he did the SES thing where he became something of a cult leader as well as his heel work with Jeff Hardy. I think Punk was a guy who got better and better the more opportunities they gave him to succeed, unfortunately he was never going to overtake guys like John Cena or Randy Orton and get that shot at the top spot. Even when he was WWE Champion, he never felt like he was the top guy and he was always playing second or third fiddle to whatever storyline SuperCena was doing at the time. His WWE exit and subsequent retirement was something we all saw coming, he was at a point where he needed to walk away and get away from the business for the betterment of his health and sanity. He tried his hand at UFC and despite never actually winning a match, he still went in there and gave it his all which is more than I can say for some of the guys on here knocking him for that. Punk's AEW run started off great but eventually grew tiresome due to his constant involvement in controversies and injury issues, the post All-Out Scrum incident was embarrassing to Punk and he shouldn't have lowered himself to that level when dealing with the "wrestlers" in that company. The highlight of his AEW run was his program with MJF and I was hopeful to see what he would do with the "Real World Champion" storyline but unfortunately his blow-up at All-In and subsequent departure from AEW screwed any chance of seeing where that story could go. When it comes to his AEW run, I don't blame Punk for it going sour, that company has a clear issue with leadership and TK is someone whose easily manipulated by wrestling carnies like The Bucks, Omega and their little kliq. It's a shame that they all couldn't settle their differences and make an angle out of the thing but like I said, thats on TK and AEW. The biggest issue I have with Punk is that he's a politiker, he's someone whose not happy unless things go his way. I've heard countless stories of guys who knew him in ROH and WWE and introducing someone like that into a company that has clear leadership issues was never going to work. With his recent WWE return, I wasn't a fan of his return promo. Punk's on his best behavior here, you can tell he's trying his best to be a good soldier, I hope it works out for him and I hope they don't try to screw him around and brings things back to where things were when he left the company."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheLegendaryEricwrote on 01.01.2024:[9.0] "CM Punk has always been a decent in-ring worker and has delivered some fantastic promos throughout his storied career. However, his ego has ultimately driven him down and he becomes bitter when he doesn't get what he wants in the industry which makes him extremely difficult to deal with if he can't put personal feelings aside. Overall, he's certainly done well in the industry and will definitely be remembered as an outspoken 'cult of personality', but recent evidence has shown this unfiltered outspokeness has also proven detrimental to him as well. Edit: Despite, the amount of controversy he brings, you can't deny he is a massive draw wherever he goes and when he's at his best he provides great storytelling as well as the occasional banger match. 2 more point."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JoeyConundrumwrote on 01.01.2024:"The best in the world, in the ring, on the microphone, even on commentary, no body can touch him. The greatest of the modern era, the true face of the pg era. He changed wrestling forever."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: kewf1988wrote on 24.12.2023:[10.0] "CM Punk is probably the Roddy Piper of the 2010s, but substantially better in the ring, as he consistently put out MOTY candidates, especially during his reigns as champion. But he is more known for his promos, especially the pipebomb in June 2011, which is still relevant to this day. He probably could have been the face in the company after the pipebomb, but his attitude probably prevented that, as he is way more antisocial than John Cena."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Seth Pilgrimwrote on 12.12.2023:[10.0] "He's the best on the mic, no doubt about that. That last promo, on smackdown tribute to the troops, was a masterpiece from A to Z. In-ring, i'll have to wait to see him back in action as i don't watch AEW (even though i saw his last match there, vs Samoa Joe at Wembley and it was pretty good. He's not the most skilled there, but as far as i remember he delivers, he has the intensity and the mojo that's needed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: god is a mythwrote on 11.12.2023:[7.0] "Let me drop a pipe bomb on Punk - The man should have been a standup comic rather than a wrestler. I am obviously exaggerating. His promos are good but he has never been an in-ring great. His big matches disappoint me. His two time limit draws with Joe bored me to death, his matches with Cena were in WWE which are not known for work rate. When he came to AEW he botched multiple moves in his match with Adam Page when he became champion for the first time. Every time you put him in with a good worker he comes off as second best. If you judge wrestlers by how good they are in the ring he is crazy overrated because of how well he talks."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: greaterdalewrote on 11.12.2023:[10.0] "CM Punk is an excellent talent that has had awesome matches and legendary promos. He's not exactly the best backstage presence and very much politiced a ton in AEW. But most top stars generally do. I will always love that his last moments in AEW was holding a pro transgender sign moments after lunging at his billionaire boss (not the smartest move but very ballsy.) My favorite match was his dog collar match with MJF and his match with Brock Lesnar at summerslam 2013 was quite good too. I'm glad he's getting another shot in WWE, his early promo work has been hit or miss and we haven't seen him in the ring yet, though its obvious he was good at doing that style a decade ago. I'm very much looking forward to the eventual Roman vs CM Punk match up and that should make big money. I would do that in a year and turn Roman babyface for that because I think there's big money in heel CM Punk in a while after they ride the initial welcome home babyface schtick."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ForeverHeelwrote on 04.12.2023:[0.0] "Oh Man, Leute jetzt wird es hart für mich. Ich kann diesen Comeback Hype von Phil Brooks ja und nicht "CM Punk" nicht verstehen. Ich bin nicht hier, um Freunde zu finden. Ich bin hier, um Geld zu machen hatte er im O-Ton in die Kamera in Nashville reingelabert. Einer der seine Identität für Machtelite verkauft hat, dass MJF und Eddie Kingston bei AEW in den Promos Brooks sagten. Das was Brooks vor zehn Jahren als er noch ein Außenseiter war mit guten Promo mit sogenannten Pipe Bombs zu catchten ist nun er selbst geworden. Der John Cena vorgeworfen hatte er könnte nicht wrestlen und nur wegen des Geldes weil mehr als andern verdiente ist das Doppelmoralisch. Ich bin kein Cenafan und er gehört nicht zu meinen Liebingiswrestlern, aber er hatte 2015 einen guten US-Title-Run. Reigns, Cena, und Lensar haben etwas was einen Phil Brooks fehlt Kämpferherz und Leidenschaft. Leute wie LA Knight, Austin Theory oder Damian Priest haben sich stark entwickelt und sind In-Ringtechnisch wie so am Mic besser geworden, es würde mich nicht wundern wenn sich die ersten Newcomer oder Youngstars sich über seine moralische Denkweise beklagen. Und ja hasst mich dafür das meine Meinung über den großen Helden "CM Punk" was er nicht ist, er ist ein Lügner und ein Heuchler der nur ein Legends Contract will, um in die Hall Of Fame reinzukommen um und noch mehr Money zumachen."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Enchantiumwrote on 04.12.2023:[9.0] "CM Punk will forever be considered a controversial name wherever he dabbles his foot. Despite that, he will always be one of the best names on the microphone. He manages to make anyone look like a beginner on the mic with his quick-thought-out insults and smart, quick-witted lines. His wrestling is good and technical, and it always works well for people with different styles, maybe apart from someone who does stupid and unnecessary flips. It is nice seeing him get the same pop as when he left, and it is great to see him back in the place where he actually belongs. A place without an incompetent booker. I really hope his next journey in WWE will be as enjoyable as his previous ones."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Are Youwrote on 03.12.2023:"CM Punk is one of the most controversial and charismatic wrestlers in the history of professional wrestling. He has a strong personality, a sharp tongue and a rebellious attitude that make him an icon for many fans. CM Punk is a great talent and an excellent performer, who knows how to entertain and excite the audience with his skills in the ring and on the microphone. He is also a fighter who is not afraid to express his opinion and challenge the status quo, even if it costs him opportunities or problems with the company. He is an example of someone who follows his dreams and passions, without letting himself be discouraged by difficulties or criticism. However, I also think that CM Punk has some flaws and some questionable attitudes. He can be ungrateful, disloyal and hypocritical, changing sides or opinions according to his convenience or interest. He is someone who thinks he is superior to others and who does not accept defeats or failures well."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Undertaker4everwrote on 01.12.2023:[10.0] "Einfach The Best In The World. Freue mich das er endlich wieder bei der WWE zu sehen ist. Dachte mir nämlich nach seiner AEW Entlassung das war es jetzt mit seiner Wrestling Karriere aber wie gesagt ich bin wirklich gespannt auf sein WWE Comeback da ich schon früher ein riesen CM Punk Fanboy war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nudel1701wrote on 29.11.2023:"Passend zu seiner Rückkehr zur WWE gebe ich mal meinen Senf dazu. Subjektiv gesehen ist es immer noch surreal, dass Punk wieder da ist. Er ist seit Beginn meines Fandaseins mein absoluter Lieblingswrestler (an das Standing bei mir kommt nur Bryan Danielson ansatzweise ran). Natürlich ist er objektiv gesehen ein schwieriger Charakter, jedoch denke ich, dass die WWE ihn für einen letzten großen Run in seiner Wrestlingkarriere so gut es geht hinbekommen wird und natürlich ist das auch von Phil persönlich abhängig. Ich wünsche mir einfach, dass alles gut geht und wir noch 4 - 5 Jahre Spaß an dem Wrestler CM Punk haben dürfen, denn das ist zweiflesohne dass, was ihm am besten liegt und hier auch die meiste Beachtung finden sollte. Klare 10 Punkte von mir."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: alidoyduwrote on 29.11.2023:"CM Punk is back baby. this is the most fabulous thing that has happened since edge's return. So we are lucky. watch and enjoy only. dont be sob"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MegaSPSwrote on 29.11.2023:[10.0] "cm punk is one of the best ever. he was always one of, if not, the hottest act in every company hesworked in whether it be wwe, aew, roh, iwa mid south, whatever the company is, punk was the star for a reason. always really good in ring and even better on the mic. he quit wrestling in 2014 and for 7 and a half years straight fans chanted his name practically weekly. he returned to wrestling making his debut in aew, which put aew on a huge pedestal and had some of the biggest stories in the company until he got fired. his recent return to wwe after 10 years is the biggest thing to happen to the company in a long, long time. everywhere punk goes theres money and he's the reason behind it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tomas Cunhawrote on 28.11.2023:[10.0] "Absolutely brilliant wrestler. When he speaks, you listen. When he appears, you watch it - hate him or love him. Has created countless memorable moments and matches throughout his wrestling career. CM Punk will unquestionably be remembered forever by wrestling fans."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CorpusSkiptotelicumwrote on 28.11.2023:[4.0] "A mixed bag is the best way to put Punk's career as a whole. Not the most gifted athlete but as master of structuring, selling, and overall intelligent psychology, he was one of the best wrestlers in the world for quite a while, from ROH to the first WWE exit. And as a wrestler and even as a character, some of his best work was done in ROH, with the original summer of punk being in the shortlist for best storylines of all time. His time in the E started off slow with some interesting bits like the straight edge society, but truly came into its own after the pipebomb. Some of the best segments and matches in company history come from those three years. After coming back to AEW, everything was going right. The MJF rivalry, and especially the short Kingston feud are some of the best work of his career. As it tends to happen though, Phil Brooks screws CM Punk and heavily taints his legacy. No matter what he does in the WWE, the damage is done. I think his collision return promo is a great encapsulation of who he is currently. "Tell me when I'm telling lies? " As good as he is, CM Punk is one of the biggest charlatans in wrestling history. He calls himself Punk, but there's nothing 'Punk' about Phil Brooks. He says that he's all for women's rights but he's on tape joyfully degrading and admitting to exploit and physically assault a woman, something he's never addressed. He talks big about workers rights and then he signs for a callous company that fired more than a hundred wrestlers in the middle of a pandemic. He calls other wrestlers soft and then proves that he can dish it out, but can't take it back as it took a single cheeky remark by Jungle Boy for him to blow up and get violent. If he was actually 'punk', if he truly loved wrestling like he says he does, he'd do what someone like Jon Moxley does, indie dates for the love of the game. Instead he jumps from one billionaire to another, from vince to dana white to tony khan to whoever owns the wwe now. Its a real shame because he truly is a talented performer. The only true statement in that whole promo was that he's grown older, which he follows up with the biggest lie, that he's wiser. The man clearly has a shit ton of unresolved issues, he's erratic like if Kanye was a wrestler. This dude in his first AEW promo said that he needed to be healed spiritually, mentally and emotionally to return... you think that he's a healed man as he walks back to the WWE? no fucking way mate. And yet, the spell he has on people is undeniable. One more hype return and everyone forgets everything else... like it never happened. Cant even be that mad, its impressive. A real cult of personality."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wrasslinfan619wrote on 26.11.2023:[10.0] "I posted this without A comment A few months ago but I'm gonna post one now, oh CM Punk. Backstage issues makes him set out to kill his reputation, he's doing none of that in my eyes. But this is about CM Punk the wrestler, I understand rating him low cause his backstage issues but I just can't. He's always been one of my favorites, and he's one of the most influential wrestlers to ever do this. WWE, AEW, ROH, The indies, at one point TNA he's done it all and he's been great in every promotion. His best run was in my opinion his 2011-2013 run in WWE, but he's had amazing runs in AEW and ROH as well. Not only is he slept on in the ring its for A good reason, top 10 microphone worker and he might even be top 5 in my opinion. Overall he's in my opinion one of the best of this generation and I'd debate any generation. Edit: Oh hey he's broke the internet only days after I posted this, welcome back Punk you've earned this 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JediSaiyanMaster1203wrote on 17.11.2023:[10.0] "CM Punk is my favorite wrestler to emerge from the independent scene from the 2000s, a man who feels like he was for the old school territory days and was brought up in the wrong generation. He's easily in the top 10-15 best talkers on the microphone, he's so good that people believe 100% everything he says whether it's his fans or detractors. While he may not be the best in ring wrestler, he's a great storyteller and worker who can put on great matches. CM Punk has so much charisma, that he could read a phone book and make it entertaining. Everywhere he's gone, he's had legendary runs in every promotion whether it's ROH, WWE, AEW, etc. having great feuds from Samoa Joe to MJF, he's a perfect storyteller. Overall, a total package of a performer in my eyes no matter his size and was the man who has been instrumental in bringing people's interest in wrestling back."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: devxntewrote on 14.11.2023:[10.0] "I'm going to preface this by saying CM Punk is my favorite wrestler of ALL TIME. That being said, CM Punk is one of the last wrestlers who are actually the complete package. He can easily get people invested into what he's doing, he knows how to work the fans, he has a great understanding of in ring psychology as well as being able to give tribute to older wrestling with a modern twist to them. He has been apart of some of the greatest stories that AEW has ever seen, and throughout his career he has been able to make the most out of what was given to him. He's polarizing for a reason and he's a top 3 draw in professional wrestling today because of how good he is. His character work is damn near flawless, his ringwork is great, Punk just gets it. His match catalogue is amazing, I'm going to try to go in order for listing what I consider to be his classic matches, His series with Chris Hero, His dog collar match with Raven, his trilogy with Samoa Joe, All of his matches against Danielson, vs The Briscoes, His match against Aries to kick off the summer of punk, His matches against Jeff Hardy, His matches with Cena (Including the MITB 2011 and the Raw 2013 ones) The Undertaker match, Jericho in 2013, Lesnar at Summerslam, His match against Kingston, his matches with MJF, his match with Moxley at All Out, the renewal of the Samoa Joe feud. Just fantastic. And that's just matches that I think are bonafide classics and don't include just "good" matches that he may have had or matches that I personally think are great (the Adam Page match or the TLC 2011 match comes to mind). Not only that but boy can he tell a story. The feud with John Cena, he made the Kevin Nash thing watchable, the Chris Jericho story was probably the best story at WM28 minus Rock-Cena and then the next wrestlemania having the best story and match with Undertaker. His feud with the Rock was rock's best work when he returned. His feud with Rey Mysterio, his story with Jeff Hardy which was a precursor to the Straight Edge Society. and of course his two summer of punks. Again, he is one of the last wrestlers who gets it. He knows how to make people feel and he knows how to straddle the line between real and "kayfabe" (I hate using that word to be honest). This is why I am giving him a 10. And it's sad that we're seeing a decline in his rating due to backstage stories that in the grand scheme of the wrestling business, aren't that bad lol."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: skyesversionwrote on 12.11.2023:[8.0] "I mean...I can't say that he's a bad wrestler. That would be like me saying that John Cena is a bad wrestler. They're both great, but have gotten into a few backstage messes. I've only heard of one from John Cena so that's enough talking about him. We're talking about the magnet that CM Punk most likely has strapped to his back. Like he draws attention and he's not even an active wrestler right now! Like it's crazy but honestly not surprising. He also draws lots of heat. Just to name a few, The Elite backstage altercation, the Pipebomb Promo (scripted or not it still counts), and the All In thing with Jack Perry. He's a problematic person but a great talent. It's weird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MrCheesyPotato37wrote on 11.11.2023:"Polarising. One of the greatest mic workers of all time. Has changed the wrestling business forever. Has had countless classic matches too. All round top tier wrestler."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GrecoRomanYeomanwrote on 27.10.2023:[10.0] "The best in the world. Name another wrestler that can ignite such strong feelings in the wrestling community. Love him or hate him: you'll turn on the TV just to see wtf he's doing. He's been great in the ring throughout his whole career, especially during his ROH/WWE runs. His time in AEW was great, he's even the reason I started watching it in the first place, but it was rough. Punk's aging, injuries, and constant drama really impacted his in-ring work and everyone's perception of him. However, I really enjoyed the ROH callbacks during his recent run with Samoa Joe. Very sad way for his career to (most likely) end in such a stupid way by making Tony "fear for his life backstage". It will be great and hilarious if he makes a WWE return, but if he does Impact or NWA then maybe I'll have to start paying attention to those promotions!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MarshalAtlanticwrote on 19.10.2023:[7.0] "Punk was a decent and entertaining wrestler to watch in the 2000's. He had skill, character, and an underdog appeal. He of course also very important to American wrestling. That being said I could never personally find him compelling enough in the ring to rank him among the greatest. He's not a guy I was ever specifically excited to see in a match. Him promo work was undeniable but I haven't found him exceptional beyond that. His AEW run was pretty underwhelming too, with just a few noteworthy matches and a whole lot of backstage drama. Still, he has his place, and I can't deny his overall career has been pretty good."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Excellence of Executionwrote on 05.10.2023:[8.0] "Punk ist ohne jeden Zweifel ein echt Guter, der alles mitbringt, was ein WWE Main Eventer braucht. Vor allem am Mic ist er überragend. Nicht nur verbal sondern von der gesamten Präsenz her. Allerdings funktioniert er im momentanen WWE Umfeld als Heel WEIT besser. Als Face muss er sich immer dem handzahmen WWE Schema dessen, was ein PG Face ausmacht, unterordnen. Und das macht viel von seinem Gimmick bzw. seinen Möglichkeiten zunichte. Ziemlich überbewertet finde ich Punk allerdings im Ring. Da ist er zwar keineswegs schlecht, jedoch nicht halb die Offenbarung, die am Mic ist. Gerade in größeren Matches hab ich ihn schon öfters botchen sehen. Alles in allem ein starkes Gesamtpaket - wie gemacht für die WWE. Ich finde ich es aber teilweise etwas überzogen, wie sehr er im Netz abgefeiert wird. Mit seinen beiden Ausflügen in die UFC, bei denen er wirklich überhaupt nicht gut aussah, hat er sich definitiv keinen Gefallen getan. PS.: Ebenso wenig mit dem Theater bei AEW."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Awes0max13wrote on 04.10.2023:[10.0] "Absolutely one of the best ever to ever step in the ring, CM Punk is one of those few wrestlers that draws raw, guttural reactions from fans because of his polarizing personality, his venomous promo skills, and versatile in-ring skills over the years. Punk was a highlight of the early 2000s independent scene with a defined character and crisp in-ring skills that put him on par with other greats of the era, before becoming a unique & solid hand in WWE. Punk continued to show off his adaptability and talent with great matches and stand-out characterization (his run as a cult leader for the SES was a major highlight at the time) before going white hot with one of the best promos of all time. Even with ups and downs, Punk had an aura about him, a guarantee that he would put out great matches with a variety of opponents and could hit the nuclear option at any moment, something that continued even during his hiatus from in-ring action. He got right back in step during his AEW comeback with some quality matches but sometimes couldn't quite match up with other great talkers in the promotion before his eventual release. A 20+ year career with significantly more highlights than lowlights and the ability to present himself in a once-in-a-lifetime package in the ring and on the microphone is worth celebrating, even if his reputation outside the ring is not the most stellar. Punk has brought me a lot of joy over the years and I'm glad I went on the roller coaster that was his career because there's never been quite anything like it in wrestling and probably won't be again in my lifetime. One of a kind, for better or for worse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: robbyplahawrote on 28.09.2023:[10.0] "My favorite wrestler off all-time with Triple H this man made me the huge wrestling fan I am today. I do hope he returns, as Survivor Series in Chicago is looming we might see him back in the square circle again. CM Punk has major accomplishments in every promotion he been in, ROH, WWE & AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SavageTygerwrote on 27.09.2023:"The most polarizing professional wrestler of all time IMO. People either love him or hate him, I don't think there is any in-between and he doesn't care either way. Punk has always been 100% authentic for better or worse and I will always take authentic over passive-aggressive tweeters of the modern-day generation any day"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ECWCWWEAEWwrote on 22.09.2023:[9.0] "Punk is one of my favorite wrestlers of all time, and yet recent events has caused me to not know for sure how to feel about him over all. His backstage personality, his inring persona and who he seems to be outside of the wrestling world all seem completely unrelated and yet he is all 3 of those vastly different personalities. Oh well I guess. his matches are still phenomenal and his mic work will always be second to none"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SIRasdf23wrote on 21.09.2023:[9.0] "*NOTE* This is based purely on CM Punk's ability as a wrestler and not his activities outside of the ring (even if those activities occasionally force themselves INTO the ring) You cannot deny that Punk is one of the most talented wrestlers of his generation. Even in his last days with AEW, he could hold a crowd in the palm of his hand with his match and promowork. He's one of the few wrestlers who can truly say he played a key role in reshaping how many people enjoy wrestling nowadays. Heck, you can even argue that AEW itself was founded by Punk's rebellious attitude against what had basically been a monopoly on the wrestling business that WWE had in the 2000s/2010s. And, he got to prove that he still had it when he came back to AEW. He had, arguably, some of the greatest matches and storylines of his entire career in AEW, it's just such a shame that his attitude and ego eventually led to the whole thing shattering into dust over time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: staabi2hottywrote on 21.09.2023:[10.0] "Pepsi Phil Brooks. My oh my, how the fickle internet wrestling community used to love you and how we used to chant your name as an act of rebellion at WWE events. How you have single handedly been the only wrestler to make me interested in watching WWE when it went PG, had the most iconic promo of our current generation in which you said things that no one else could say, and most talent has felt but never had the balls or the amount of charisma or ability to get over to be able to cut a shoot promo on a PG program in the early 2010s where Vince was in everyone's ear directing things to be exactly the way he needed them CM Punk was the one man to stick it to him which is also exactly what he did to the Elite and was the most over thing to happen in AEW history i would say everyone cared about AEW more than WWE for a minute but ultimately CM punk has been blackballed by AEW much like back in 2014 with WWE for the most part and hell there's rumors now that he could return to WWE now but who knows. Yes CM punk certainly has drama surrounding him and problems keeping his mouth shut. But come on guys, have you never had a moment in your life where you are just sick of the BS and you are sick of the way people are talking to you and you just want to punch them in the face? Punk is the guy you can vicariously live that action through, he is the embodiment of a modern day stone cold steve austin, the character who puts up a middle finger to his boss, his rivals, his former friends, and society alike.. Only thing is he is straight edge which kinda makes him nothing like steve austin and his own character at the same time yeah! Don't listen to the fickle IWC, Punk is a legend and should be looked at as such. Is he Top 10 wrestlers all time? Hell no, but he is one of the most influential of our generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DangoDaisukiwrote on 18.09.2023:[6.0] "CM Punk wird immer schlechter im Ring und von dem was er momentan leistet hat er keine hohe Punktzahl verdient. Aufgrund seiner Indy und WWE Vergangenheit gebe ich ihm gerade noch 7 Punkte. Edit: Nach dem ganzen Hin und Her, auch dem schlechteren Wrestling eine leichte Abwertung auf 6 Punkte. Ich hoffe für CM Punk dass er irgendwann wieder zur Besinnung kommt."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MasteroftheMatchGuide99wrote on 17.09.2023:[5.0] "I used to be a big fan of him, but this guy has a huge problem with creating a toxic work environment and seems to burn bridges no matter where he goes. As good as he is in the ring, his attitude has severely soured me on him, especially because I can't tell if he's trying to cause problems or if he just doesn't care. In wrestling, skill is half the job, and the other half is personality. His volatile behavior is the main reason why I have him at halfway. In other respects, he certainly has been a good wrestler, but over time, his body seems to have broken down and he's much slower than he was in WWE and ECW. I understand he's older than that time of his career, but as charismatic as he is, his body seems to be in the category of "writing checks that the body itself can't cash." Like I said; fantastic wrestler, charisma maestro, but his attitude and fragility are both too big of a negative to ignore."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ptomlinson98wrote on 13.09.2023:[9.0] "Probably the most important Western wrestler of his generation. Never the best in-ring but stood out a mile in WWE as an excellent technician. Was doing his best ever work in AEW, handled his physical limitations really well and became an even better in-ring storyteller as his body began to fail him a little. Such a captivating talker, didn't ever really feel like it was a wrestler cutting a promo but a man who gives a shit, talking freely. If his final contribution to the wrestling world was a feud with Samoa Joe that ended in front of 81, 000, what a way to go. I respect his inability to compromise on his beliefs but can't help but think he'd have a 10/10 career if he could've gotten out of his own way a little towards the end."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GoldLigerwrote on 10.09.2023:[7.0] "Punk is one of the most important American wrestlers ever. Not the best, certainly not in the ring, but most important. This guy covered in tats that lived the gimmick of never taking drugs in an industry known for abusing them and came up on the indies made it to the top of the largest wrestling company in the world and their first big competitor since the death of WCW on the back of excellent mic work and connecting with a lot of fans in a way most people just didn't, all while being one of the first to open doors thought permanently shut in WWE and beyond. That said, Punk's influence doesn't mean he's a 10, nor does his promo work no matter how good it was. As an in-ring guy, Punk was good, but never great, and his best matches often involve some of the greatest in-ring workers of all time in their prime elevating him; I found his AEW run had some of his best work because he actually slowed down and worked more psychologically instead of doing as much indie stuff that only ever looked good in his youth in ROH. The only exception would be his mystical chemistry with Cena; the two of them were ideal opponents. Finally, there's the elephant in the room. Punk's always rubbed people the wrong way, and in some ways that added a lot to his character, but what he pulled backstage in AEW is just not something I think is excusable. There's politicking and then there's fighting people in the locker room over petty disputes, and him getting his own show where he got to dictate who would and wouldn't be in the locker room somehow didn't even solve the problem. If Punk's last moments in pro wrestling were a feud with Joe that ended in an excellent match in front of 81k in Wembley, then hey a lot of guys have gotten way worse send-offs, but there's so much more he could've accomplished if he had just swallowed his pride and uncurled his fists. As a talent I would say an 8, with a point for his mark on the industry and two off for his backstage behavior in AEW."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wildothedildowrote on 08.09.2023:[8.0] "As a character on screen, Punk is undeniable but his toxicity backstage ruins what could have been one of the best characters in wrestling history. He has the gift of gab but is a winey manchild who thinks that everyone else is the problem when the only time issues arise he is the constant in all the backstage drama."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ThatHouseCDN780wrote on 08.09.2023:"8/10 - CM Punk is probably one of the most naturally oozing charismatic wrestlers of all time. The negative is that because everyone tells him he's the best in the world; he now acts like he's the best in the world. Petty personal feuds and big timing everyone has finally caught up with him lately. 8/10 for skill and 3/10 for ego"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mshulman5wrote on 06.09.2023:[7.0] "I don't like CM Punk. He's a drama queen and it follows him everywhere he goes. Everything has to be what's best for Punk... That said he's obviously a highly skilled mic guy. His best wrestling days have long past but he can still put on a solid if not slower paced match and look decent. He was never an A+ guy in the ring. He's a 7 on a good day. I do see there's a lot of Punk marks on this site though... smh... 9.26 average rating is hilarious."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wcwfanwrote on 05.09.2023:"There are very few - if any - active wrestlers with the magnetism of CM Punk. When he's on screen, he's very hard to ignore. There are better technical wrestlers for sure but he can still go. Capable of telling a brilliant story through his promos and matches and I think his feud with MJF is my favourite story AEW's done by a distance. Its a shame how it ended between Punk and AEW - for all the rumours, very little of the saga played out in public so its hard to judge who was in the right and wrong, but his behaviour at the All Out 2022 press conference was the height of unprofessionalism - it made him, Tony Khan and AEW as a whole look absolutely terrible and I think it'll take a lot of work and time for the brand to recover."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: travis-404wrote on 05.09.2023:"10/10 CM Punk is a special talent, truly one of the greats in a generation full of them and yet above all he managed to stand out. Punk is a wrestler I've looked up to for most of my life. At the end of the day what makes him so special is why we've been robbed of him for so many years, his ego above all else is why he is so good, that swagger he walks with, that charisma he talks with make him a highly combustible man and never has that been seen more clearly than his most recent run in AEW. But even that was unable to dim the flame that Punk with his old school sensibilities brought to the Modern World of Wrestling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: methodatlaswrote on 03.09.2023:[3.0] "CM Punk's return to professional wrestling after a 7-year hiatus was nothing short of spectacular. Like many, I was there at AEW Fight For The Fallen in 2021, chanting "CM Punk" at the top of my lungs. The energy, the anticipation, and the subsequent euphoria that followed his debut on Rampage in Chicago were palpable. Every hair on my arm stood on end, and it felt like the wrestling world had shifted on its axis. But what followed this grand return was a series of unfortunate events and decisions. The drama that unfolded, both in the ring and behind the scenes, left many of us puzzled. The CM Punk that we had once championed now seemed embroiled in controversies that threatened the very fabric of his legacy. The audacity of asking for stock in AEW upon returning from his first suspension was a head-turner for sure. Was it the same Punk we knew from before, or had time away transformed him into a more demanding and perhaps more entitled superstar? While he didn't get the stock he demanded, being handed his own TV show seemed to be a compromise, but also an acknowledgment of his star power. However, the crescendo of his disputes with AEW management led to a contract termination on grounds that were legally justifiable, saving AEW from any financial obligations. It's disheartening to see how someone, who had such a triumphant return, had it all unravel so quickly. Whether you're a fan who loves to hate Punk or one who hates to love him, his impact on the business can't be denied. Maybe, as time heals wounds and perspectives shift, we'll once again cheer for the straight-edge superstar. But for now, it's a farewell tinged with a mix of admiration, disappointment, and hope for better days. Until then, goodbye, Punk. See you in the squared circle... maybe in another seven years?"
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: No Onewrote on 03.09.2023:[10.0] "One of the greatest promo artists in pro wrestling history. His "Pipe bomb" promo is legendary. One of the main guys that built Independent Wrestling into a cult phenomenon. One of the first wrestlers to ever be called a "ROH Legend". His feuds with Chris Hero, Raven, Samoa Joe, & John Cena are legendary, and his matches against them will all withstand the "Test of Time". Amazing storyteller. Highly charismatic. Is considered a "Real One". Was pretty much the first Independent Wrestling Legend to become a major success in the WWE. His matches against The Undertaker, Brock Lesnar, Daniel Bryan, & Jeff Hardy in the WWE also stand out as memorable. His WWE World Title reign between 2011-2013 is highly memorable. What he does in AEW will be very interesting & should be exciting. He is the ultimate "Prodigal Son" of pro wrestling. UPDATED: Similar to The Ultimate Warrior, CM Punk is a Legend. However, it is a strange legacy, as a lot of controversy nearly overshadows his legacy. CM Punk's name will also probably have a lot of question marks surrounding it when Hall of Fame discussions arise. His ROH Hall of Fame induction may even be the only one that he ever receives."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HammertonWaywrote on 02.09.2023:"For someone who built a career by making backhanded comments to those he didn't like on live television, it is highly hypocritical that he couldn't take those comments himself from others. Had been toxic for the company for over a year and has finally been fired. Good riddance."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Lyracwrote on 18.08.2023:[6.0] "Honestly. While i believe that Punk is indeed a great wrestler and can amazing with microphone. His childish personality just ruins it all for me. Since return i dont see anything special in him. While he can still wrestle 3.8 star on a good night him having a bad attitude doesnt help. After all he is 44 years old now and should act more maturely. Even when he was crowned the main champion of a company he still did stupid things. Like who the fuck starts having backstage fights when they're supposted to be the 'Main Man'? Im happy that his run with the main belt is over and i hope he never gets his hands on it ever again. Again he is still a unique and great wrestler but his personality, ego, inmature acts just ruins everything."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MDavis2001wrote on 14.08.2023:[6.0] "Hit his in-ring prime during his ROH days and is a Hogan-esque egomaniac, but can still put on a good match when he isn't attempting avalanche hurricanranas and buckshot lariats. Not in my top 10, maybe not even in my top 100, but still deserves props for bringing in new fans with the pipebomb promo back in 2011."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Scapwrote on 12.08.2023:"Here is one guy that kept me interesting in wrestling has an adult. He spits great promo that feel genuine, no just a comedy routine like but something that feels like a real person might say if they were really articulate. Also great in the ring, it's rare that someone his size can rely this much on psychology, he doesn't have the flashiest style, he doesn'T do flips but he knows how to build a match that keeps fan entertained and accomplish what ever the goal of the match was(getting someone over, furthering an issue, ect) He brought me back as a fan with his famous pipe bomb promo and brought me back again when he came to AEW."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ViolenceBretwrote on 11.08.2023:[9.0] "CM Punk is easily one of the most complicated men in the wrestling industry. To get the elephant out of the room, he was completely right about The Elite, yet Tony really should have showed more back-bone to both parties. Regardless of drama, CM Punk has done things his own way. Like Roddy Piper before him, Punk's greatest strength is his wit and command over the English language. In WWE he caused a slew of controversy for simply speaking truth, and in Ring of Honor he was a heat magnet for crowds. On the independent scene, he demanded attention and was captivating. Once Punk made the jump to WWE, an internet darling was born and the fans had someone new to root for. He was the antithesis of John Cena for better or worse, but at that time he was the antidote we all needed. Having burned nearly every bride imaginable, Punk was free of WWE and could do anything he wanted. Naturally he went into MMA and well... he came back to professional wrestling fast. AEW at times feels like the resurrection of WCW, and old stars returning is just half the fun. Despite being prone to injury, Punk is always a good main event champion that can tell stories. Regardless, he loses some points for that previously mentioned MMA run which was just sad. He might have borderline personality disorder, he might be antisocial, but hey, there is nobody else like him. 9.9/10"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: celticinvaderwrote on 05.08.2023:[9.0] "Prime CM Punk might be the best ever on the mic, anti-establishment in the best way possible, and reminiscent of Stone Cold Seve Austin sometimes. Lots of fun to watch in the ring too, dude CARRIED the PG era in his heyday and the Summer of Punk is one of my favourite storylines ever."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KKeanelwrote on 02.08.2023:[8.0] "Punk is that type of guy who you would love to watch on a TV screen on a weekly basis, but if you would be part of his enviroment, he would quickly change your mind. Normally I'm not review private character or actions of people here, but his toxic character made people sick generally everywhere he was. As a wrestler? Brilliant. His ROH, 2009-2013 WWE and first 9 months in AEW runs were absolutely insane. As a talker? I don't need to talk about pipebomb and other fantastic stuff. But as a co-worker or guy whose actions I know? I have a very big problem. TK's big gift in form of 2-hour long Saturday program for Punk only to avoid not favourable co-workers is impressive and I hope that good start of this show and interesting Phil's stuff will last longer that his previous good things done in wrestling."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gold Fistswrote on 24.07.2023:[7.0] "He's very smooth both in the ring and on the mic but he probably shouldn't spend any more than five more years in the business. Three points off for being one of the most notable backstage crybabies of all time."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Matt51295wrote on 20.07.2023:[4.0] "Wrestling equivalent of "Old Man Yells at Cloud". He had some good matches in ROH but I really don't get the love. Just a dude who claims to be anti-establishment yet has a hissy fit when someone breaks his rules."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: John Brandowrote on 17.07.2023:[9.0] "Ich halte es für schwierig einen CM Punk zu bewerten, der wirklich eine "besondere" Persönlichkeit im Wrestling-Zirkus darstellt. Einerseits kann ich verstehen, dass es die Leute aufregt, wenn er zu riesigen Ego-Ausbrüchen neigt und sich einfach nicht in den Dienst der Mannschaft stellen will. Er überwarf sich mit der WWE, obwohl er dort eigentlich immer Sonnenlicht genoss. Nicht umsonst war er lange dem Wrestling ferngeblieben. Auf der anderen Seite kann man aber auch nicht abstreiten, dass Phil Meilensteine für die Geschichte des Wrestlings schuf (Summer of Punk, Colt Cabana, Gürtel-Regentschaft). Im Mikrofon verfügt er über eine dermaßen hohe rhetorische Intelligenz, dass es ein Genuss ist, ihm zuzuhören. Im Ring ist er auch für den ein oder anderen Klassiker gut. Letztenendes habe ich mich für 9 Punkte entschieden, da ein CM Punk, so schwierig er möglicherweise auch sein kann, sicherlich seine Daseinsberechtigung hat und er auch irgendwo nicht mehr wegzudenken sein wird aus den Wrestling-Geschichtsbüchern."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DillonAAAAEWWWEwrote on 16.07.2023:[10.0] "CM Punk is one of the GOATS has had amazing matches with everybody can wrestle any style amazing promo guy can do legit everything you want he is an all timer"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DhruvChouhanwrote on 10.07.2023:[7.0] "I wanted to give a 7.5 but thats not an option. To me he is more of a 7 than an 8 so i am gonna underrate him here a bit. A very good wrestler with high peaks but consistency wise does not touches the elites of his generation."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MattHallwrote on 10.07.2023:[10.0] "I've always loved his ring attires, especially his SummerSlam 2011 ring attire. Should've been a lot bigger in the WWE during his tenure there, he is also smooth in the ring and on the mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KTG1515wrote on 03.07.2023:[6.0] "Depending on what CM Punk you get, you might get a great wrestler. His true strength is on the mic, while his wrestling has always been overrated, but solid. His antics outside the wrestling ring is what hurts him here, but is a captivating personality nonetheless."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NEVERoverweightChampionwrote on 29.06.2023:[6.0] "He is alright, surely a great talker with charisma but he is also extremely overrated in the ring and maybe one of the worst athlete I've seen for someone booked as a main event talent."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Megastar309wrote on 27.06.2023:"One of the best on the stick & fantastic in the ring, Punk truly has it all. However, I feel his only limiting factor is his attitude backstage. For me, his backstage problems are the only reason his isnt a 10/10 wrestler. Nevertheless, Punk is incredibly entertaining."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MMS200055wrote on 25.06.2023:[9.0] "We must never confuse, one thing is that the wrestler is unprofessional or controversial in his speeches, the other is that he is very good in the ring, creating great rivalries, having quality micskill and consequently high popularity. Without a doubt CM Punk has his place in wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SoaKaswrote on 23.06.2023:[8.0] "Based on his current status, that is the most I can give. He's a total legend and the first wrestler I ever liked when I was a kid. However, there's age and there are injuries that drag his rating down. Also I'm tired of the shoot-style promos and I hope he goes back to being a great mic worker like he was for the majority of his career."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Egyptian Dragonwrote on 19.06.2023:[10.0] "One of my favorite wrestlers of all time and one of my childhood idols. No one can ever beat him when it comes to holding mics and talking. He is a great performer and one of the most charismatic wrestlers of all time. His classic rivalries and matches to the likes of John Cena, Samoa Joe, Jeff Hardy, etc. are considered of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: comewhatmay927wrote on 18.06.2023:[5.0] "This guy used to be a ten for me, but his behavior post WWE has been abhorrent. I dont know what a multi-millionaire with a hot wife, who reads comics, goes to concerts, and eats muffins for a living has to be so pssed off about. His matches have been bland, or outright stolen from better wrestlers since his return, and his latest comeback promo was underwhelming and repetitive. Might be time to pursue that acting career, Phil. You used to be someone I looked up to, now your misery just makes me sad."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: crs285wrote on 18.06.2023:[8.0] "One of the more controversial men in this century in terms of active pro wrestlers. Have had issues backstage in both WWE and AEW. In the ring he is good with a great moveset and is the best in the world on the mic. Has a great connection with most crowds. His MMA run hurts his image he tries to play of being a legit striker in the ring."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: InsertFunnyNameHerewrote on 18.06.2023:[10.0] "CM Punk as a wrestler is nothing short of world class with fantastic mic work, a legacy of great matches and multiple events sold out off of his name. Probably one of the 5 best wrestlers of the last 20 years"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Lunawrote on 16.06.2023:[10.0] "My favourite wrestler of all time and I doubt that will ever change. Made me fall in love with wrestling in 2009 and then brought that feeling back in 2021. A special performer and an enthralling person. On the mic he is unmatched by 99% of the industry (the 1% being MJF), in the ring he has always been incredible and has changed his style perfectly as the years have gone. For better or worse there will never be another wrestler like CM Punk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Giantfan1980wrote on 07.06.2023:[7.0] "Never was the biggest fan, but it's hard to argue against him. I'm not going to sit here and try and vote bomb the guy to be edgy."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LGL19wrote on 04.06.2023:[10.0] "CM Punk is the greatest ratings draw in years. No matter how you may feel about him or think about him you can't deny he brings eyes to whatever product he's on. My personal opinion on CM Punk is that i think he is one of the GOATS. His mic work is impeccable and it's authentic and his in ring work and story telling has always been second to none."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JaybirdJaredwrote on 30.05.2023:[5.0] "His whole first run came when I was away from wrestling for 16 years. When I started watching again, his reputation preceded him. He was probably a 9 before retirement. Since then, he has been unprofessional, prone to botches, and full of his own hype. A cancer to any locker room he is in. He won the AEW Championship at their biggest show, and in the press conference, buried the company and his old friend who had not been booked in months, because he has poor impulse control and believes his personal BS is more important than advancing his role or his industry. His career kinda mirrors that of Michael Jordan, and his AEW stint has been like Jordan with the Wizards, and his gripe bomb has been like Jordan being a horrible executive. Best days so far behind him, but still believes his excrement does not stink."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Dancerwrote on 26.05.2023:[10.0] "Been excellent everywhere he goes (except for UFC). Top 10 best promo guy ever and certainly welcome on my TV screen. When Punk took the big break from 2014-21, he was still one of the most talked about guys in the whole sport, that's the impact that he had. Giant draw but his ego and the Brawl Out will forever taint his legacy. A complex figure for sure, but it would be very hard to not rate him a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: gargoylesmainwrote on 21.05.2023:[8.0] "As a performer his career has been overall fantastic. His pre-retirement work was really memorable, both on the mic and in the ring. I'd say a 9 on the mic and a 7 in the ring. His return in AEW is a very mixed bag though, and has sullied his legacy, with promos that border on cloying and botchy ring work that shows his age."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pinkd56wrote on 20.05.2023:[10.0] "At this point, CM Punk is the only true star/draw in American professional wrestling of the 2010s and 2020s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: adam johnsonwrote on 03.05.2023:[7.0] "gave him a 9 before and that was before he came back to wrestling he should of stayed away instead of being a whiny weeb causing beef for no reason so a 7 now"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wadexerowrote on 18.04.2023:[10.0] "The absolute best, best worker in Roh best worker in WWE and one of the best even as a natural athlete in his mid 40's in AEW. His mic skills are elite and only comparable to Austin and The Rock. Even at this point in his career he is an asset to any company."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HumanJerkywrote on 08.04.2023:[10.0] "Best in the World! Was amazing as the leader of the Straight Edge Society, was fantastic on the indies with a legendary feud with Raven and a beauty of trilogy with Samoa Joe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PunkPariahwrote on 17.03.2023:[10.0] "CM Punk is my favorite wrestler of all time. Dude got me as into wrestling as I am. People are gonna act like they know him and are gonna pretend that they care about/are affected by a fight he had, that's fine whatever. In reality he's one of the greatest in ring story tellers of all time, arguably the best on the mic of all time, and he can work a hell of a damn match that's for sure. CM Punk has achieved enough to put him down as one of the biggest draws in pro wrestling history and he doesn't have anything left to prove. My favorite for a reason and he keeps proving why he is one of the greatest of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: texasyoshwrote on 15.03.2023:[10.0] "orig written, 5/20/22 Punk gets it. He's so smart in the ring even at this stage of his career. He's had an unbelievable career with a book full of great work. Hats off. updated 3/14/23: lmao you guys legit have serious derangement syndrome by being able to separate the "art with the artist" with CHRIS BENOIT but not phillip brooks. i dont know what to tell you man. sorry he buried your favs, hell even my favs, but let's be serious for a minute"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Puro113wrote on 09.03.2023:"I will not be giving a rating to CM Punk at this time. I just wanted to share this anecdote. CM Punk returning on AEW Rampage is probably my favourite wrestling moment ever. Watching it live made me experience emotions I don't think I've ever felt as a wrestling fan. Genuine excitement, optimism, catharsis and joy. Punk was always a shining light during his WWE days and always one of my favourites. He was a guy who lots of people looked up to. To say that I am disappointed in what happened with the media scrum is an understatement. It was a slap in the face to all the fans who coveted his return for nearly a decade, and it risked permanently destroying the reputation of the only mainstream competitor to WWE in 20 years. Such a childish and disrespectful act that has put a dark shadow over his legacy, and destabilised an entire company. I still hope that Punk can find his way back to AEW, as ultimately, wrestling is better for his involvement. But he has a lot to atone for."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: M3n747wrote on 02.03.2023:[9.0] "I can't say anything about his time in others promotions, but his feud with MJF was the biggest reason to watch AEW for me. The entire storyline was executed pretty much flawlessly and I'm really glad I got to see it as it unfolded. In fact, not too long after the feud ended and Punk disappeared from AEW programming, I lost interest and stopped watching their shows - but I know that if Punk were to return, so would I."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: coppercowrieswrote on 19.02.2023:[7.0] "Wild on the mic, and responsible for some of the most talked about moments in wrestling. Most of his points from me come from his ability to talk and work the crowd, as I never considered him a top tier in ring performer. His initial feuds in AEW were entertaining, and told a clear story. Sadly, he looked sloppy and gassed in the last couple matches he worked, and appears to be injury prone now. After the gripebomb, it'll be interesting to see how he's viewed by the industry in a few years."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Xwrestlingx2003wrote on 06.02.2023:[10.0] "CM PUNK, He has everything a wrestler needs, he is a complete Package, Punk's mic skills is commendable and this makes him better than others, He has shown interesting feuds and matches over the years, 10 for punk"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: yourherowrote on 29.01.2023:[10.0] "There was a time when he was the best in the world. He still has S-tier promo skill but is only a shell of himself in the ring, repeatedly getting injured before he can get his groove back. His body of work is too good for me to put him below a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: manicpanicwrote on 29.01.2023:[4.0] "Definitely an outlier opinion, but as someone who only really watched him in his AEW era, i just don't get the hype. It felt like everything he did was alluding to how great he is/was, but when it came down to showing that he just didn't match up to the expectations"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Okaro143wrote on 22.01.2023:[10.0] "Insanely popular and rightfully so. Had a brilliant run on ROH and an excellent feud against Joe for the RoH Title which also produced imo the best ROH match when Punk and Joe wrestled a 60 min time limit draw in 2004. Left ROH and went to WWE's ECW brand where he became the face of ECW. Left ECW and became a 3 time World Champion before feuding with John Cena in 2011 in what could and should have been an era defining feud. It was During his feud with Cena, Punk turn heads by cutting a pipebomp promo and crossing forbidden door boundaries of professional wrestling. Since then, he has only gotten popular and put himself over despite being made to play second fiddle to The Rock and John Cena. He would burn out while working for WWE and got into a lot of controversy but the fans always loved him. Joined AEW in 2021 after 7 years of quitting wrestling and became the top draw of professional wrestling. Caused another big stir after winning his second AEW Championship and again left. Very controversial figure but no doubt insanely popular and a huge name in pro wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LMCwrote on 18.01.2023:[7.0] "Very good wrestler. If it wasnt for his ego hed have achieved so much more in pro wrestling. His wwe run was good. As was his time doing ROH and the indies."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: benh2wrote on 17.01.2023:[9.0] "An excellent in-ring worker; good moveset and selling and great psychology (which is a premium nowadays). Has even more talent on the mic and his promos are executed with such conviction that you always listen and always end up believing what he's saying, whether he's babyface or heel. Had a memorable end to his ROH run then once he found his feet in WWE hit it out of the park. Even after many years he returned to AEW and showed he could still draw money and put on matches more meaningful than most others."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Daigotsuwrote on 15.01.2023:[8.0] "By the time Punk got to AEW, he was older, and his body was starting to break down. But he still pulled out some very good matches against the right opponents. He's more about storytelling than workrate, and he's a very good storyteller. His charisma is obviously elite; Punk really is a top notch promo and character guy. It's a shame how it ended, but history will be kind to Punk's AEW run, I predict."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mcbolskywrote on 11.01.2023:[3.0] "Wow what a fall from grace huh? 10/10 WWE career followed by a 0/10 AEW career, insane. His character work from 2011-2013 was absolutely amazing and he really garnered a cult like following, I myself was included. Then he went to UFC, got smoked there. Acted a little bit and had that stint on backstage. THEN WE COME TO AEW. Man I was excited for him to be back I really was. But once I found out that he broke his foot from jumping into the crows after winning at double or nothing, I knew that was the beginning of the end. AEW works a crazy style and for him to be in the ring with the likes of Sammy Guevara, I could see the writing on the wall. The post media scrum at All Out was the final nail on the coffin and TK did absolutely nothing about Punk openly burying the company."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KuczyPLwrote on 07.01.2023:[9.0] "There's no denying that Punk is one of the best and most important wrestlers in the last twenty years. And I'll admit - although I don't condone Punk's actions after All Out 2022 (where he might have just shown his true colors), I can't take away his impressive in-ring skill and mic work. The latter is when Punk shines the brightest. There's a huge amount of promos by him that not only they kept the fans interested in what Punk had to say, but also they played a huge role in Brooks' best rivalries in his career (like the ones with MJF or John Cena). To close out this comment, while I 100% blame Punk for his actions at the conference post-All Out, you just can't forget he's the guy that just knows how to entertain viewers and make his feuds watchable."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Collywobbleswrote on 01.01.2023:[10.0] "I do not understand the people who have taken personal offense to the shit CM Punk pulled in 2022. Tribalism to that degree is just bizarre. That aside, Punk is one of the most compelling figures and characters wrestling has seen. Commands attention like few ever have, always one of the most gripping acts on a show. The promos speak for themselves, tons of good matches and rare star-power. Wrestling is more interesting when Punk is around."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WhatIsLooveeewrote on 29.12.2022:[9.0] "You can argue for a long time about Punk's personality, remember his scandals, but he is very good as a wrestler. Punk was an innovator and one of the few indie wrestlers who had achieved great heights in the largest wrestling company by that time. CM Punk is an amazing speaker, as can be judged by his speeches in WWE, when he was one of the best villains and by the amazing microphone battles with Maxwell Jacob Freedman i AEW and the only attraction to him now is that he is constantly referred to the past, not developing as a character. He has a number of great matches both on the indie scene and in bigger companies, he is able to stir up interest to rival and tell a good story. Cm Punk is an extremely talented performer who reveals himself particularly well as heel and, despite all the conflicts and rumors associated with him, he has contributed to the development of the industry."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MetalZillawrote on 25.12.2022:[0.0] "Just a disgrace to the great sport of professional wrestling. One of those things that makes you embarrassed when someone finds out you're a wrestling fan. How can anyone legitimately say this guy is a good wrestler... or rather, a wrestler, at all? Its a joke. and people wonder why pro wrestling numbers are going down."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: fruggmanwrote on 19.12.2022:[8.0] "CM Punk is someone who when locked in and creatively energized can create magic. In ROH he became legendary for his mic skills and MOTY candidates against Samoa Joe and Raven, so much so that WWE scooped him up. Despite clashing with Vince McMahon and Triple H, he was able to become a multi-time world champion and got himself over with nearly everything he was given. Retrospectives of Punk's WWE run tend to focus on his 2011 Summer of Punk era, but he did some stellar work with the Straight Edge Society faction and his infamously intense rivalry with Jeff Hardy in 2009. During the Summer of Punk, he began to openly speak about his frustrations with WWE creative and being in his view underutilized. In 2011, this was justified, losing his feud with Triple H at the height of his overness seemingly out of spite. However, Punk still was not happy even after being given a 13-month-long WWE Championship reign due to never main eventing WrestleMania. This ultimately resulted in his walkout of the company and his 7-year long sabbatical from wrestling. This is where I think Punk began to lose it, he created a narrative to his fans of being mistreated and self-mythologizing that further fueled his ego and narcissism. His unbelievable return to wrestling with his AEW run was fantastic for the most part, only to once again be thwarted by Punk's backstage issues. I hope CM Punk can have one final storyline to go out on, but if not I think I would be fine with his retirement."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Enriquepollazzowrote on 10.12.2022:[10.0] "Love him or hate him he does everything well and had a really good run in AEW. He enhanced every guy he got in the ring with and let them all take their shots at him while giving it back. He earned my respect. Someone needs to remove all the 1's and 0's here. Obviously those are not acceptable ratings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: arrancarwrote on 04.12.2022:[6.0] "I preface this by saying that my rating and my comments have not been swayed (at least not significantly) by the recent drama surrounding Punk's backstage actions and IRL personality. Punk was one of my favourite wrestlers as a kid when I first saw him with WWE's ECW reboot. His MMA-inspired look made him look badass and legitimate, and that was before I even knew what MMA was. I also just loved how confidently he presented himself, further adding to his aura. I sadly fell out of wrestling around 2009, so I totally missed Punk becoming a big star around that period. I've since gone back to see some of Punk's best work from that period in WWE, plus I've seen most of his ROH/indie work, and of course his whole AEW run, and I have to say... Punk has never been very good in the ring. I think most people are probably aware of that and just excuse it because of his character work and mic work, which I'll admit is definitely very good and occasionally great... but in such a physical medium as wrestling, for me to really consider Punk a 'great' wrestler I would need to see far better in-ring work from him. He's just noticeably unathletic and double-left-footed in his movement and move delivery. It's nothing terrible like with what you see with genuinely bad wrestlers, but it's definitely noticeable when compared to the other wrestlers on the various rosters Punk has been a part of throughout his career. That doesn't mean that Punk doesn't still have some very good or even great in-ring moments in the matches throughout his career, and even now he will have a few moments that are really cool, but they're never consistent enough to the point where I could comfortably say that he's a great worker. To get past his lack of, well, any real in-ring skills, he would mostly rely on lots of decent but extremely dry technical work or decent but low-effort brawling, which never made him the most exciting wrestler. I'll say his in-ring work is more appropriately qualified as mostly just 'good' at best, but there were definitely matches and periods where his performances could be only described as 'alright' or 'fine' at best, and sometimes even just outright poor. I might actually say that his AEW run featured some of his best wrestling work, since he had the experience at that point to know how best to pace himself and tell in-ring stories that covered up his lack of pure in-ring skill, compared to how often mediocre he was in ROH and WWE just be default of being in those companies longer and thus having more time to eventually disappoint. I've got to give him congrats for becoming as big of a wrestling star as he is without really having a high-quality level of wrestling skill, but I personally prefer wrestlers who are best known for their actual wrestling, and not because they can just talk well. Talking is still a very valuable skill, but it doesn't supersede in-ring work for me."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "Because of his recent actions, people are iffy on him, but looking back, he is still one of the greatest ever, the matches, the promos, my god. One of the most unique wrestlers we may never see again."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nothingleftinsidewrote on 30.11.2022:[9.0] "I'm not sure if 8 or 9 is the better call here, and I do think he's an all time great, but he's such a wiener and tarnished his legacy which keeps him off Mt. Olympus. One of the best talkers of all time, he's limited athletically but a great storyteller in the ring; he's had many 30+ min matches (good ones at that). He looks undersized but his gimmick is kind of an in-your-face reminder of why he looks undersized. Great babyface or heel, somehow much more layered and nuanced as a babyface- it's hard to manufacture babyface support when you're such a natural dickhead like Lockport Phil. No other singular wrestler represented the American indie scene of the 2000s- there's a reason why people wept at his return in 2021. No other singular American wrestler represented so much of the identity of the hardcore wrestling fan in the past 20 years. When he was on the screen, it really did feel like the good old days again. It really did feel like you were finally seeing a guy you believed in making an impact and speaking for you, providing the kind of wrestling TV that you had yearned for for so long. Perhaps the best executor of worked shoot angles; an irony that was his downfall. Well, that and his whole ego. He had people chanting his name at wrestling shows for all seven years he was gone, and they probably still will for years to come. In his final run, even though he didn't loose, he did a good job of making younger guys look better- he's capable of elevating and getting the best out of guys like Cena, Brock, Undertaker, and even guys like Eddie Kingston. He even made the WWE title, probably the most prestigious title in wrestling, mean more when he had it, which I think is a rare feat. A complete run in AEW would have been the crowning achievement, but rampant unprofessionalism (including his own) doomed him before he started. A+ talker, A- worker, C look."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: hectorfwrote on 25.11.2022:[7.0] "porque en su era en wwe era muy bueno pero en aew era muy politiquero y hacia muchos botches es solo mi opinion"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Vukowrote on 24.11.2022:[5.0] "At the beginning of his carrer, ROH, WWE, CM Punk was clearly a fucking good wrestler. But his transition to MMA was a bad idea (and for sure, it was his only way to continue to do something because there was no other compagny to book him). But when he cames to AEW, the only best storyline was with MFJ for me. He was obligated to be carried in the ring by the other and with a ton of injury when he was AEW World Champion + the backstage incident with The Elite and what he said in press conference -> He buried himself."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: elsh33pwrote on 19.11.2022:[5.0] "One of the all-time greats as both a character worker and a speaker in general, but I always found him incredibly overrated as an actual pro-wrestler once he set foot in the ring. He's probably the most triumphant example of someone who was over back in the day, established an enduring fanbase that kept his hype going long after he left the business, and then didn't really bring anything for newer or previously unengaged fans when he came back. Pretty much every future run by an unretired legend is going to be measured against his, and that probably won't be to his benefit considering how it ended. But at least we got the angles with Kingston and MJF."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: whiterice47wrote on 14.11.2022:"1/10 The man is a mark for himself. He believes his own hype so much he chose to start his MMA career at the highest level, fought one of the worst fighters (Mike Jackson) and failed."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KesagakeOKwrote on 13.11.2022:[10.0] "Perhaps not the most athletic competitor in ring, but easily the best ring psychologist and promo working today. Any program or match he touches is immediately better for having him as part of it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: VanguardWhowrote on 11.11.2022:[10.0] "Tempted to half-jokingly subtract a point for his weird elbow drop and for spawning a whole generation of wrestling fans who think they're as cool as him (2022 EDIT: or for ending his big miracle return run in the dumbest way imaginable, but let's all be honest, being a relatively harmless self-absorbed dweeb in the wrestling industry is like being a shoplifter in Alcatraz), but I could never in good faith rate Punk below a 10/10. Don't get me wrong, even as a huge Punk fan, I'll wholeheartedly admit that if there's any wrestler who could be described as the bare minimum of a 10/10, it'd be him. His ring work got a little janky towards the end of his career, his physique was never the best, there were some odd inclusions in his moveset (including significant parts of his latter-day offense being, essentially, an unlicensed KENTA tribute act); if the 10/10 rating is supposed to imply perfection, he might be the most imperfect 10/10 ever. None of this changes that he was one of the most important and influential wrestlers of the 21st century, that he was one of the greatest mic workers that wrestling has ever seen regardless of on-screen role, and that even if his best in-ring days were behind him going into his WWE run, there were absolutely still points before that where he was up there with some of the greatest in-ring workers in the history of American wrestling, and points in his WWE career where he still made genuine magic happen despite his physical abilities not being at their peak, against a variety of opponents. There have been better and more consistent in-ring workers with greater longevity, there have been more muscular and athletic wrestlers with more believable physiques and impressive conditioning, but as far as I'm concerned, the list of people in the history of American wrestling who matched Punk in aura, in presence, in believability as a character, and in simply making professional wrestling feel special, especially going into the 2010s, is a very short list indeed. Flawed in individual areas? Absolutely. As a complete package? Transcendent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CMX-7wrote on 01.11.2022:[10.0] "CM Punk is my favorite wrestler, he has always attracted attention with his persona, his excellent microphone skills and his cool acting charisma is brilliant! His career and his great moments like Summer of Punk 2005 and 2011! or his great Pipe-bomb which is forever iconic in the world of Pro Wrestling and don't forget his great feuds and matches against Samoa Joe, Jeff Hardy, John Cena, Raven, Rey Mysterio and and of course the leadership of WWE (Well, you understand:) ) , we will remember him as the Indie Legend who first reached the top of the WWE by creating a revolution and restructuring! His return is in 2021 with a magical applause, of course, he will go down in the history of the best returns, I love his feud with MJF ! ) Now I will insert my thoughts about the current situation, for a start, CM Punk BANNED me on Instagram for my opinion, but this is a separate story)) After the news about Punk, it seems to me more and more that he deliberately created a scandal around his person in order to get out of the wrestling business, don't get me wrong, but this is a brilliant plan, it was clear from his face that he was tired of all this, and he decided to end his career in his native Chicago and at the same time take away the title from the undefeated wrestler AEW - MOX, and then leave with a lot of hype.. this is my stupid theory, I may be wrong... Despite all this, Punk deserves 10 points, for his contribution to the business with his great promos and matches, and I no matter how toxic and resentful a whiner he is, his career and his work deserves attention."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CutterClubwrote on 01.11.2022:[10.0] "Excellent in the ring (especially in his prime), untouchable on the mic, and has a deeply devoted cult following. Review bombing him over a backstage dispute with three clowns is not a fair assessment of his career or wrestling ability which is what these ratings are for."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LoboXwrote on 31.10.2022:"Cm punk is one of the best wrestlers I have seen but. I don't like CM Punk as a person. He goes for business for himself. He should apologize to the fans. I hope he can change. It is never too late."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kbnuevewrote on 26.10.2022:[10.0] "Don't care if he is a dick or not, Punk is without a doubt one of the greatest wrestlers of all time. In his year in AEW, he has always been the most interesting wrestler and the main reason to watch Dynamite. God tier storyteller and phenomenal on the mic and in the ring, noone can deny this"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: li0nsaultwrote on 23.10.2022:[9.0] "Let's forget about what he could've been done behind the scenes, Punk is one hell of a talent. A guaranteed member of my Mount Rushmore regarding mic skills, wonderful in-ring performer, and a master storyteller. A major turning point in the history of wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: killowenskillwrote on 08.10.2022:[10.0] "The "fans" who give absolutely low ratings to the wrestler, based on behind-the-scenes intrigues that are known only because of insiders, and which can be either complete lies and bullshit, as has happened many times before, or can be a plot basis for future feuds, are so funny. Punk has always seemed to be a complicated person, but his love for wrestling is perfectly expressed in his detailed and wonderful matches, which are almost unparalleled even now, after 7 years of vacation, not particularly frequent performances, and after recovering from a new injury. I don't care about his sides outside the ring, he's not a rapist, not a racist, not a homophobe, not a sexist and not a mean asshole who traumatizes his coworkers, so people should not care. UPD: Behold, people are beginning to rejoice at his injury, and that he is prone to damage. How low do you have to fall to be considered a wrestling fan and write things of this level? And all because of what? Because of the altercation between the wrestlers, which should not concern the fans in any way, not to mention the fact that there is no reason to believe any one particular version? As well as the fact that behind the scenes the Punk could really be under pressure because of Cabana's position in the promotion? Never before have individual representatives of the community seemed so disgusting to me. UPD 2.0: sidz2298, CrossFaceX, simonitro, who has Shawn Michaels rated at 10, is a funny dudes, like Shib Vicious, as well as the already listed CrossFaceX, who rated at 10 to Chris Benoit. If you think that you can seriously evaluate a wrestler by behind-the-scenes scandals, then stick to your great ideology and don't be hypocrites, lol."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wuzong Shenwrote on 29.09.2022:[2.0] "I guess after what happened after All Out 2022, more and more people knew what kind of person Punk really was. He was just famous for his shoot promo, which is getting boring after so many years. His match wasn't so good, especially after he came back to AEW. However, what really make me feel sick and disgusting is his behavior out of the ring. He once said he hate wrestling and won't come back again, but he did, for the money, I guess. He claimed that he came back to help young talents, but that was a lie, too. He betrayed his friend Colt. He destroyed an important PPV, which almost held for him, in his hometown. He caused trouble in each and every place he went. I don't believe any word he said, and I don't want to see him again. He was successful, but now he just makes me feel disgusting."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ItsToniTime89wrote on 27.09.2022:[6.0] "Vor einem Jahr hätte ich dem guten Phil noch volle 10 Punkte gegeben, da ich selbst seit seiner WWE Zeit großer Punk Fan bin. Aber seit einigen Wochen trübt sein Ego und sein Verhalten meine Einstellung über ihn. Sich über eine Company und deren Promoter stellen, das geht selbst als CM Punk gar nicht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Spankywrote on 26.09.2022:[10.0] "My comment cant do CM Punk justice. Anything u could want in a wrestler is there and in spades. He is untouchable on promos, he is right up there with Mick Foley or The Rock. He is a very polarizing individual and a lot of people hate the guy but there is no denying his talent. It's insane how over he is with the fans in modern wrestling. His return to wrestling was phenomenal and the best moment in AEWs young history. One of the best returns OF wrestling. The reaction he got then may never be replicated in wrestling ever again. I recommend listening to his ROH shoots because they give great insight into his wrestling mind before he went to the WWE. The fact that he was able to have great matches with Brock Lesnar or Undertaker and Rock while completely demoralized really shows how much passion he puts into the industry. Not to mention the fact that he worked for months with a staff infection. In my opinion, he should retire. And spend the rest of his years with his wife and dog Larry. In case you couldn't tell CM Punk is my favorite wrestler and the fans and bookers of the future will definitely remember him. And id say for the better."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheOneAndOnlyCactuswrote on 22.09.2022:[10.0] "I'm judging strictly on how he is... or I guess was since he is past his best, as a wrestler. And he is one of the best of his generation. Very versatile between the ropes, capable of playing multiple facets of the face and heel dynamic, a great promo guy able to command attention with a mic, whether in promos or on commentary. Like him or not, you can't deny his talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheEnigmatic1wrote on 20.09.2022:"Punk Has ruined his own legacy, at first his AEW run was very fun and it was really cool to se him work with the younger guys and he is still one of the best workers of all time. but since he seems to be such a Bret Hart fan he picked up one of harts worst traits his bitterness and inability to just shut up some times."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kid Rockwrote on 09.09.2022:[10.0] "Ist CM Punk einer der größten und technisch versiertesten In-Ring-Techniker aller Zeiten? Keineswegs. Kann CM Punk zuweilen ein egozentrischer und cholerischer Arsch sein, mit der Neigung, verbrannte Erde zu hinterlassen? Absolut. Und dennoch, selbst wenn es komplett persönliche Befangenheit ist, kann ich nicht anders als Punk 10 Punkte zu geben, da mich dieser Mann, vor allem seit 2011 und seinem Durchbruch als Main Event Superstar im Mainstream-Wrestling, auf seinem bisherigen Pfadt emotional mitgerissen hat, wie kaum ein anderer Akteur im Geschäft vor, oder nach ihm. Was ich bei CM Punk besonders schätze, neben seinen großartigen Fähigkeiten am Mikrofon, seinem Gespür für In-Ring-Psychologie und einer schönen "Old-School"-Mentalität für den Sport, ist schlicht und ergreifend seine "Realness"....seine Authentizität, seihe Ehrlichkeit und sein damit verbundenes echtes Charisma als Wrestling-Persönlichkeit...etwas was, wie ich immer gerne erwähne, für mich solche Charaktere wie Mick Foley, Steve Austin oder Eddie Guerrero zu absoluten Größen im Pro-Wrestling aus der Masse hervorstechen ließ...Es hat seinen Grund, warum Punk, wie er in dem vergangen Jahr bei AEW gezeigt hat, einer der letzten wirklichen Zugpferde im Buisness und dabei nach wie vor einzigartig ist. Jener letzter (und vieles spricht dafür, dass es der letzte sein könnte) Run bei der Khan-Promotion war für mich ein schönes Alterswerk, welches sich Punk im nochmal aufbauen konnte und ein, gerade nach dem traurigen WWE-Abgang 2014, doch noch insgesamt würdiges und befriedigendes Karriereende. Klar, mit Anfang/Mitte-40 und einer hohen Verletzungsanfälligkeit, hat Punk In-Ring nicht mehr die Hütte abbrennen können (und dabei dennoch einige wirklich starke Matches noch zeigen können), doch speziell mit der MJF-Fehde, konnte der Second City Saint nochmal sein Wert als versierter und charismatischer Veteran mit It-Faktor unter Beweis stellen (etwas was ein Chris Jericho im Vergleich, so sehr er sich abstrampelt, schlicht nicht mehr zu zeigen vermag). Die Umstände seines aktuellen Abgangs sind absolut unschön und es war klar, dass diese die Fanschaft nochmal ordentlich spalten würden (und den zahlreichen CM Punk-Hatern im Netz nochmal ordentlich Futter liefern würden). Andererseits, wird die Wahrheit immer in der Mitte liegen, genauso wie die "Schuldfrage". Klar hat Punk mit seinem Verhalten nicht wirklich was zur Deeskalation des Ganzen beigetragen, allerdings spricht es wiederum für ihn, dass er sich keinen Bullshit gefallen lässt und am Ende des Tages offen und ungeschönt für das Einstehen wird, an was er glaubt. Und das ist etwas, was hoffentlich irgendwann mal selbst die selbstgerechtesten Gutmenschen unter den Smart-Marks zumindest respektieren könnten. Falls es dies gewesen sein sollte....vielen Dank Punk für die gute Zeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pete Gallowswrote on 09.09.2022:[10.0] "Cm Punk is highly likely an insufferable prick in real life, I also absolutely hate how pathetic he was in the UFC, a total loser, who would close his eyes every time he punches a punching bag (he still apparently successfully hit that stupid faced looking young buck moron). Seriously, did you guys watch that documentary about Punk on YT before his UFC debut? He was about as coordinated as a fighter as a toddler is at dancing. Abysmal. Despite of him being a total prick, or thanks to it, thanks to him being a prima-donna, an egotistical jerk, he? s at least interesting, unlike almost everyone else currently in the business. I have stopped watching wrestling on regular basis in early 2000, when WCW went to sh1ts, I have watched it every once in a while, when there was enough commotion going on. Other than that retarded Vince Mcmahon retirement recently, this is the first time in years, when some event lived up to the expectation. I was very entertained by Punk? s pipe bomb, what was it, 8 years ago? And now..the media scrum..I hoped it was an angle, but unfortunately, it was seemingly too good, to be just an angle. I love how Eric Bischoff was criticising Punk, as if Controversy suddenly couldn? t Create Cash! I still hope they? ll turn it into an angle, to make some serious money out of it, but Punk being an injury prone jerk that he is, he of course once again let his mouth write a check, his ass could not cash. Because he is a physical anti-talent, which is a real shame. If he was about a third as good, as he acts like he thinks he is, he would be the best ever. Can you imagine any other business, where an employee/? a contractor? , or whatever he is, publicly sh1ts on the company? s management, the vice presidents? and then these vice presidents walk to him and want to confront him, very likely physically and they all start to fight? That? s more entertaining, than last 10 years of on screen pro wrestling combined. As a wrestler, he? s really not that good, as an actual fighter, he? s a total loser, but still good enough, to (allegedly) take out a young buck with one arm, but his self-assured whining is so entertaining, that I have to give him a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Shib Viciouswrote on 08.09.2022:[2.0] "Punk is coasting by based on who he used to be as opposed to the wrestler he is now. One of the best sellers around but his offence is lacklustre, he always has a high profile botch or two in him seemingly every match and whilst good on the mic, now that he is not acting as the voice of the fans regurgitating their complaints from online forums, he is clearly nowhere near as good as his legacy would suggest. And now it's clear the man is a straight up narcissist pos who is fortunately made of glass so we perhaps won't have to put up with him much more. "Fragile Mind, Fragile Ego, Fragile Body""
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TalesOfSymphoniawrote on 08.09.2022:[0.0] "Certified lockerroom cancer, currently in the process of attempting a coup in AEW. He and his boys are attemptiting to steer AEW from what it's supposed to be. Never particularly impressive in-ring and has to be carried by better workers. His two terrible AEW titles runs have seriously hurt the AEW world championship, Hangman Page, Jon Moxley, and AEW as a whole. His simply isn't worth all the trouble he causes."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LivingLegendwrote on 08.09.2022:[0.0] "CM Punk is the definition of overhyped. He was never that good of a wrestler. He wasn't bad, but his best matches involved heavy carry jobs from his opponent. His main selling point is his mic work, which is really good. Any positives this man has are thrown out the window when you take a slight peak behind the curtain. CM Punk is a hypocritical, egotistical mark for himself. He cares about nobody besides himself. He has a long history of being a diva, but just this past year he has: went off script on live TV after Hangman Adam Page took a super vague dig at him that nobody in the world remembered until Punk brought it up on TV. He pushed one of his co-workers into a demotion (nearly unemployment). He went onto a media scrum as the world heavyweight fucking champion and completely buried multiple wrestlers, including 3 EVPs, and then had a legit fight with them like an angsty high school student. In conclusion, CM Punk is an egotistical, hypocritical, washed up has been who leached off of the last ounce of relevancy he had after walking out of WWE and may have killed an upstart wrestling company. I hope to never see his crybaby mug in a wrestling ring again."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jamzell00wrote on 08.09.2022:[10.0] "One of the main reasons I'm still a wrestling fan today. In 2011 he made me realize how much I loved this shit and his return did the same thing. He's one of the few reasons I kept up with both the wwe during his run there and currently AEW. This version of him now is clearly not the same guy he was athletically in ring but he knows it and it works for his matches. This is from a guy who wasn't athletically gifted to begin with. Add on him still being an amazing promo and yeah he's one of my favorite wrestlers ever and one of my favorite going today. Edit: The coincidence in when some of these ratings dropped is too funny even for me. Get over yourselves for fucks sake lol"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CrossFaceXwrote on 07.09.2022:[0.0] "I don't usually write comments, but I think I have to write this time. CM Punk is the most selfish, hypocritical, self-conscious egotist. This man is like a child who can't change his habits at all with age and has delusions that he thinks the world is all his own. Look what he did in AEW, he let both the fans and his co-workers down. I don't care about his achievements, now he looks like nothing but trash to me. I hope he never shows up in the professional wrestling industry again. Seriously."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: flightaker321wrote on 05.09.2022:[10.0] "Punk just speaks whatever comes to his mind I can't hate on him for that, oh and he's also an all time great promo and a pretty damn good worker. His current Aew has been great outside of him getting hurt, in WWE he had great matches and feuds with the likes of Hardy, Bryan, Taker, Cena, etc. Haven't seen his ROH but I'm sure that was great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: McGravedigger98wrote on 05.09.2022:[7.0] "Seit über 13 Jahren bin ich Fan von CM Punk und kenn ihn schon seit seiner Ring of Honor Zeit. Auch nach 8 Jahre außerhalb des Wrestling Business liefert er immer noch grandiose Matches ab, die mich bei jedem PPV begeistern. Nur steht ihm leider ab und zu sein Ego im Weg, was man aktuell leider sieht."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GwenCube64wrote on 05.09.2022:[8.0] "One of the best in his prime, pretty solid in his current run. Probably the greatest return in modern wrestling history, has one of the greatest promos in wrestling history, an overall great talent that I do think gets overhyped a little bit by nostalgia."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ElJasonwrote on 24.08.2022:[8.0] "Ein wahnsinns cooler Dude, von dem ich schon seit seinem ersten Heel Run 2009 Fan bin. Auch wenn man bei seinen Matches teilweise noch die Abwesenheit vom Wrestling Business merkt, er liefert klasse Matches ab und ist zurecht AEW World Champion"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Makoto92wrote on 19.08.2022:[1.0] "If I was living in 2011, I might have considered CM Punk to be the best wrestler in the world and in the universe, but I started watching wrestling long before his famous "pipebomb", so to me he's just another indie guy. The current Punk is the worst thing I've seen in the last few years in wrestling in general. He is in the bad shape and he thinks it's normal. None of his singles matches in AEW are without a lot of references to his matches from the company, which he slurps over and over and over. It's very hard to watch and I honestly think that the people who still like Punk are the real heroes."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ozzywrote on 17.08.2022:[9.0] "CM Punk is my third favorite superstar of all time, he can talk, he can wrestle, he can do just about anything you ask of him. CM Punk is one of the greatest on the mic, jis promos in WWE during his fued with Jericho were top notch, the pipebomb was no doubt the best promo WWE had in 10 years not delivered by Paul Heyman, and going into his work with Paul E, the 2 had a chemistry that couldnt be hidden, one of the best wrestler and manager duos other than Pual and the Beast. His wrestleing ability was one of the best of his time from his time in ROH, to WWE and even in AEW he can still keep up with the younger guys. the only reason i give him a nine is because he wasnt as talented or as momentous to wrestling as some of the other guys like Taker, or Jericho, HBK or anyone along those lines in my opinion. but CM Punk is still one of the greatest of his generation."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Benwerderwrote on 31.07.2022:[10.0] "Im Ring definitiv gut, aber seine Ausstrahlung, sein Micwork, seine dadurch vielen brillianteb Storys macht ihn zu einem der größten stars der 2000er, 2010er und auch 2020er, da er nirgendwo nachgelassen hat. Freue mich aufs Comeback!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sbg2022wrote on 02.07.2022:[10.0] "He's the reason why wrestling was so great within the last few years. He's the reason why WWE was great in 2011."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WOOPSwrote on 09.06.2022:[7.0] "A tough one to rate cause when I was like 10 years younger, I was his huge fan and Punk was definitely the best in the business but now he is so damn bad. He is past his prime (not like Hardys but still), all his feuds look like he lives in the last, when he was relevant. He puts down young talents like Darby, Max, Adam constantly and this is just frustrating. Bryan Danielson is the good example of the opposite but quite similar story: lots of injuries, coming back from a long break, but Bryan is just built different lmao, always was relevant. Too bad Tony Khan is the biggest CM Punk sucker, but oh well."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PorcoRosso1wrote on 06.06.2022:[3.0] "Cody Rhodes wrestled a match with a torn pec. Kenny wrestled for years with Vertigo, no knees, no use of his shoulders, and a hernia. Cm punk stubs his toe, gives up the big one and lets everyone down again. Once he was the most compelling wrestler in the world but the past 7 years have revealed him to be what he is a man who is insecure and wants to be known for his accomplishments in anything other than the one thing he is good at pro wrestling. He failed at all those things and if he didn't fail they were eclipsed by the past achievements that ate him alive and turned him into even more of a scumbag. The whole colt cabana thing is just sickening honestly imagine being friends with someone for years and then just ditching them when you said you would help them out. If you like this current run of his you gotta like the person because Punk was never an athlete and his body has deteriorated to the point he can't do a lot of the things he used to do. When he's able you can get at best 15 minutes of him before he starts to fade and everything becomes clearly labored. I don't like Punk as a person so there really isn't much to get outta his matches for me. He is a good promo and he has realized his passion for sport again but his happiness came at the expense of the young talent of this company, and nothing ever came of Darby from that match with Punk and even MJF is in this weird shoot-work angle which is a rip off of the summer of punk stuff. Honestly, just a chore having him around and influencing everything the way he has. Hopefully, he's gone long enough for Tony to give up on him that would be fitting for his career TBH."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NeoSwas36wrote on 04.06.2022:[9.0] "What CM Punk did for wrestling is remarkable. He put the indies on the map, produced too many good matches there, was talked about in the WWE for years after he left, and he's doing great in AEW. A good wrestler and a great promo. 9/10"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mjp28wrote on 04.06.2022:[4.0] "He was pretty entertaining on the mic, and told a decent story in the ring, however his moveset was lackluster, and was too small and 'skinny fat' to be believable as a condender to the world championship, let alone the actual champion. Baring maybe Kevin Nash, I don't think there is another wrestler that is as nauseatingly high on themselves as Punk; especially relative to their ability. Best in the world? Is he---or his fans for that matter----serious? Doesn't hold a candle to Styles, Omega, Rey, Eddie, and dozens of others when it comes to acrobatics; Angle, Benoit, Hart, Hennig, and dozens of others when it comes to technical ability or realism; and Okada, Tanahashi, Michaels, Hart, and dozens of others when it comes to match psychology. Then there's ring presence, power, look, etc. all of which he is even worse off for. The man is the epitome of overrated, and on top of that try hard. Best in the world? Maybe at having a cry, and a bitch & moan, but thats about it."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Saint2212000wrote on 03.06.2022:"One of the greatest and most influencial wrestlers of his generation. Very easily, one of the most compelling characters in pro wrestling. Has it all, whether it be Charisma, Mic skills or In ring ability. Although he has gotten a bit slow in his old age, he makes up for it with his smart mathces involving a lot of in ring psychology. Has had a great career winning World Championships in every promotion he has worked for and when he finally puts down his boots for good, he will be remembered as one of the bests to have ever done it."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Big daddy hhfwrote on 02.06.2022:"He is a legend. A Great heel a great babyface and a hero. he can make a fire when he pick that microphone and he can do it in the ring too"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LaothFriuswrote on 30.05.2022:[10.0] "He might botch once in a while but his ring and mic work are amazing, can carry programs by himself and was an important wrestling part of history on 2011."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: zags7000wrote on 10.05.2022:[10.0] "Amazing on the mic and in the ring and produced some classic matches and promos. He was able to get people to believe in him and get the crowd to react to him more than many (especially compared to his peers in his generation). So much so that it gets annoying at times with his chants after he left. Yes, it's annoying and he is too full of himself in real life that you want to rate him lower. However, some things you can't deny, and him as one of the best of his era is one of those things. His feud with John Cena and the match at MITB remain the high point for WWE in the last 20 years. You can also say his match with Samoa Joe is the greatest in ROH history. Since coming back he has picked up where he left off. Still an amazing promo and, after an initial ring rust, he has added to his classic matches with one after the other."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dtrain1291wrote on 04.05.2022:[10.0] "Easily one of the most compelling characters in wrestling history. Changed wrestling landscape in 2011, rewarded with long but ultimately disappointing title reign. Electric comeback in AEW. One of the few true draws in wrestling once again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WrestlingFan892wrote on 01.05.2022:[8.0] "Giving it a 10 seems too much for CM Punk. He is a complete wrestler, one of the best mic talkers in history, a lot of charisma, intensity, pride, even good in tag teams. But he has never stood out for his physicality and has always been a wrestler with little strength. Currently speaking, if he wrestles for more than 20 minutes he looks very tired and his physique is currently even worse than years ago, he has been neglected a lot, I really like CM Punk because he has always been a very good face, I can say the same as heel, but he is not a perfect wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mushroomsoupwrote on 17.04.2022:[7.0] "Overrated, both by his fans and himself. He's collected many titles and honors so far: ROH World Championship, 2x MITB winner, 3x WHC, a 434-day (! ) reign as WWE Champion, faced The Rock, was the last challenger to Taker's streak before it was broken... And you can't even say he wasn't worthy of it, his promo skills are really the best in the world, and like it or not, he was responsible for arguably the greatest storylines of both ROH and WWE in this century. But, he still managed to crap on that legacy. His hypocritical and cocky attitude backstage according to dozens of people in the industry, this fake idea that he was a godlike never before seen wrestler when he was only pretty good in the squared circle, his narrative of being undervalued by WWE, despite being a 434-day world champion, when guys like BD, Owens, Bálor and even Ziggler have more talent than him and haven't had 1/2 of the success that Punk had there, and of course, those 7 years he spent acting like the ultimate Mr. Know It All of wrestling and firing shots at people who were actually doing something good for the business, all of those things made me lose some respect for CM Punk. I'd give him a 6 for this confusing career, but I gotta say, he's made wrestling more interesting since he signed for AEW, with his fantastic feud with MJF and his promos that are always very entertaining. And he actually seems to be cool now, so at least Punk is back and doing great right at this moment."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: macieggkwrote on 14.04.2022:[10.0] "I'm judging him only from the time of his AEW debut and then I thought that although it was the best moment in history of wrestling, our expectations shouldn't be very high. He hasn't been wrestling for 7 years and isn't too young, but holy shit. Week in a week CM Punk is proving that he's stil the best in the world, and he's better than ever before."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Eiven fight newrote on 06.04.2022:[10.0] "Nach seinem Abgang habe ich auch kein Wrestling mehr verfolgt. Seit seiner Rückkehr verfolge ich es wieder. Ausschließlich AEW. CM Punk hat natürlich eine andere Aura als vor acht Jahren. Nicht mehr der Rebell. Aber für mich immer noch sehr faszinierend und einzigartig. Mein absoluter Liebling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jorgeisthe1wrote on 07.03.2022:[10.0] "The Best in the World. Nothing more, Nothing less. His matches always have an aura around them. He is a fantastic wrestler, a GOD on the mic, and seems like a decent human being. His matches against, Cena, Taker, Samoa Joe, and most recently MJF, are 5-star classics."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rivermanwrote on 02.03.2022:[9.0] "Understands wrestling on a very deep level. Hence, he is able to craft very engaging stories in the ring. However, that talent is eclipsed by his ability to craft them outside of the ring. One of the most engaging talkers wrestling has ever seen and transformed himself from a good hand to a superstar for that reason"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Dendowrote on 21.02.2022:[8.0] "This guy gets credit for reshaping pro wrestling as we know it not once but twice. First as one of the most iconic and influential independent acts of his generation and again as a breakthrough star who shook things up in the world of corporate TV wrestling. The number of CM Punk wannabes and imitators that followed in his wake tells you something about the way his in-ring style and overall persona resonates with hardcore wrestling fans. He's the Stone Cold of the 21st century."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Punk is a god tier promo, brilliant storyteller, and has overlooked technical abilities. The absolute best on the microphone, in the ring, even in commentary... just not at MMA..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: I Am Phenomenalwrote on 10.02.2022:[10.0] "He was once my favorite, my hero. 11 years later... he remains my favorite (and hero)! I love everything about the guy. CM Punk is 43yo and still can put one hell of a show on the microphone, in the ring, even in commentary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rodriwrote on 06.02.2022:"One of the most captivating wrestlers and one of the most important personas in the history of pro-wrestling. His wrestling style changed since is returned but is still really good."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: rishabhwrote on 31.01.2022:[10.0] "When the WWE was barely watchable and the product was the total shits, this man stepped up and made it better. Even before the WWE his work in ROH was very good and he is one of the best wrestlers to come out of ROH. His pipebomb promo is still one of the most iconic promos of all time. Even in 2013 when he wasn't really enjoying what he was doing, he still put on fire matches. He could get the best of any opponent and worked well with whichever wrestler he wrestled. His matches with Samoa Joe, John Cena, Brock Lesnar are still some of my favorites. He came back and he hadn't lost a step and doing great in AEW. So glad he's back."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PhenomenalGunwrote on 14.01.2022:[6.0] "Never got the hype for this guy. His mic skills never interested me since it always sounded like he was whining about the same thing over and over, his career peaked when he did the pipe bomb, which retrospectively, was more entertaining for the shock value rather than being a promo of any real substance. He definitely can't go like he used to because his recent matches have been flops in-ring wise. Just being honest here. Hey, I'll give him credit, he made the PG era slightly less boring, he got reactions from crowds that were insane, and I'll even say he used to be a good in-ring worker in WWE, but I'm still sitting here waiting for him to move the needle in AEW, hmm...."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: giovypotiwrote on 30.12.2021:[10.0] "CM Punk, in my opinion, is one of the best wrestlers ever. He is the reason why in the early 2010s, I started to follow wrestling again. One of the best of all time with the microphone, very good also in the ring. It is incredible how WWE did not realize what they had."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CaptainCharisma1997wrote on 16.12.2021:[10.0] "I've given a lot of thought to this, but I truly believe that CM Punk is the greatest talent in wrestling history. I hesitate to call him the GOAT only because of how short his time on top wherein he was doing his best work was, but it's possible that he can eventually claim that title as well now. Either way, he's the best performer in the history of the wrestling industry. The absolute best talker ever; his conversational promo style is so much more organic and real than everyone else's that I essentially look at him as the Marlon Brando of wrestling. One of the best wrestlers ever, and shockingly underrated as an in ring talent. For some reason people never float his name when they're talking about the best performers strictly from an in-ring perspective, but idk why; his catalog speaks for itself and there's only a small handful of guys that I'd feel comfortable saying were better or equal to him in that regard or that can do psychological storytelling on his level. Simply the man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wrestling Foreverwrote on 15.12.2021:[10.0] "Es dürfte klar sein Phil ist einer der diskussionswürdigsten Wrestler aller Zeiten, geliebt, gehasst, überbewertet und so weiter. Erster Kontakt mit ihm durch das Power Wrestling Magazin. Nix von seiner Indy Zeit da gewusst, er wurde gelobt auch das er einer der nächsten Mega Star sein kann was er dann bei der WWE wurde, jedoch hat das schon lange gedauert. Hat sich wegen fehlenden Indy Matches längst, geändert ich habe inzwischen zig Indy Punk Matches gesehen, ich kenne auch den Summer Of Punk von 2005 und so vieles was er auch vergessen hat. Seine WWE Zeit hatte Höhe und Tiefen was seine aktuelle AEW Zeit angeht. Er ist fit, er liefert gute Matches ab und er zeigt auch das er immer noch talken kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: michmoose21wrote on 15.11.2021:[10.0] "My first favorite wrestler. Awesome promo and great storyteller and one of the greatest ever imo. Cannot wait for his AEW run"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ToastyLogiwrote on 13.11.2021:[10.0] "CM Punk is the total package. He's got the mic skills, look, in ring work, and has had amazing rivalries over the last 10-15 years. So glad he's back to wrestling in AEW. Hasn't missed a beat either."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: FACEElmo295wrote on 11.11.2021:[6.0] "He was worth taking a punt on in WWE due to the fact he bought something different to the table. He has a unique look, but not one that could draw the masses back to the product. His microphone skills are incredibly good, everyone talks about the pipe bomb and that is great, but he had so many classic promos from 2009 until 2013. The feud with Cena really added something to WWE, but his 2011 - 2013 WWE Title run was really lacklustre due to bad booking. Punk does have good matches, but some just miss their cue. I feel CM Punk is very overhyped, he had a certain IT Factor to him, but isn't a big star and his wrestling ability gets overrated. Great talker, his look isn't the best for gluing people to their TV screens, and his wrestling skills whilst good feel too indie-arrific for WWE. AEW ain't overtaking WWE anytime soon with Punk and Danielson as their two biggest signings this year."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jorhorgewrote on 19.09.2021:[10.0] "THE GOAT. CM punk is the Goat one of the best in history his microphone was incredible, possibly the best heel in history or if not one of the best. You can match Punk to a random one and they make you a 5-star match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: kamitron12wrote on 13.09.2021:[10.0] "Man...What can I say about this man that hasn't already been said. I wish there was an option to go above 10 because I would pick it in a heartbeat. I'll start with ring skills. CM Punk should honestly be up there more when in the discussion for Greatest Wrestler of All Time. He was DAMN good in the ring, and as shown from his Darby Allin match, can still put on a more than good match despite not having wrestled for SEVEN AND A HALF YEARS."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DDM1405wrote on 12.09.2021:[9.0] "He may not be the GOAT, but Punk is easily my favourite wrestler of all time. He is phenomenal on the mic because it feels like he believes every word he says. His gimmick makes you believe in him since he merges his real personality with his wrestling persona perfectly. In the ring, whilst his work has never been exactly smooth or clean, he knows how to lay out a match to tell a good story whilst making it all look believable, and after 7 years gone it seems like he still has that ability."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bad Jobberwrote on 10.09.2021:[4.0] "overrated. he talks good, sure. but people want him to bury talent when they say that is bad for every other wrestler. fans, get off of punk's crotch. like come on guys, he is not as good in the ring. he's not the second coming of christ, stop hyping him"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: aggeLwrote on 04.09.2021:[10.0] "Best wrestler ever, in my personal opinion atleast. Has had a hell of a career in the Indies and WWE, can't wait to see what he does with AEW, I hope they book him well cause they got gold on their hands. Amazing promo skills, and amazing in-ring talent. For anyone who disagrees with me regarding the latter, then simply watch the CM Punk VS Samoa Joe Trilogy from ROH. All 3 matches are just beautiful , and he certaintly kept it up with his run in WWE. His ROH promos were amazing, and then his promo game in WWE just became like 150 times even more amazing, just international gold. Please don't screw this up AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: elvikingo29wrote on 30.08.2021:[7.0] "Played this anti-authoritarian character (as a heel or face) that was absurd in the wwe especially. However, he's a God to some people. He was smarter than them, making them believe he always had a chip on his shoulder, despite being a millionaire later on. The mic being referred to a pipe bomb in his hands is absolutely an appropriate metaphor, nevertheless, he's all talk. His character doesn't work for some of us because he can't physically back up his arrogant attitude. As someone considered one of the best, (self-proclaimed best in the world) he's definitely not as good as any of his contemporaries. Comes across as a puny weak punk, made worse after his embarrassing attempt at mma - still evident on his nose every time you see him. The thought that he's dangerous is laughable. He started incorporating more mma-based moves into his offense; combining that with his persona makes for the least interesting kind of wrestler to me: a total wannabe that can't make me buy into his illusion. His promo tales have been mildly interesting from a literal standpoint, but again, unbelievable character given the setting. The fans don't even know what "cult of personality" or "voice of the voiceless" actually means, and talking about stuff like propaganda in storylines, or using bad fight techniques, only works on dumb audiences that don't understand real life. It's a sad fact that wrestling fans respect people like him more than the likes of Kenny Omega."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: vaventwrote on 23.08.2021:[9.0] "One of the best there's ever been on the mic, just incredibly good at conveying his message and controlling a crowd. I wish I could give him a 10 for that alone, but there is the whole in-ring component of being a wrestler, and I believe he's only around an 8 in that regard. Good at telling stories, great at the basics, but doesn't really do anything in the ring that makes him stand out as one of the greatest to ever do it. Still, he's had a greater impact on the wresting world than perhaps anyone else in the last decade."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Residentwrote on 21.08.2021:[10.0] ""The Best In The World" No one else in modern Wrestling can capture the fans quite like him. Had the 6th longest WWE Title reign of all-time and while MMA didn't work out so well, he's one of the best Pro wrestlers of all time. From early days in Second City Saints wirh Colt Cabana in IWA Mid South ans Ring of Honor all the way up to his time in WWE and his return in AEW. Very few can touch him on the mic or in the ring. It's great to see him back in a Wrestling ring where few are as good as him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: raspymortenwrote on 21.08.2021:[10.0] "... Man, it happened. It only took little under half an hour of him being back, for me to remember why CM Punk's one of the greatest professional wrestlers ever. Nobody has more control over an audience than him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: eltetechoriwrote on 13.08.2021:[10.0] "He is one of my favorite fighters, without a doubt he had a very interesting role, and finally important, in the McMahon company, it was a joy to see him for several years leaving Cena in the shade."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: marexcelwrote on 05.08.2021:[10.0] "Best In The World. Mehr als nur ein Nickname in meinen Augen. Schafft es mit Promos und In-Ring-Action gleichermaßen mich in seinen Bann zu ziehen. Die früheren IWA MS und ROH-Werke fehlen mir sogar teilweise, aber das, was ich gesehen habe, reicht einfach, um von seiner Art und seinem Können Fan zu sein. Freue mich sehr, wenn sein Comeback bald ansteht und ich hoffe, dass er sich damit würdig vom Business verabschieden kann, welches er so stark geprägt - in den Indys, aber auch in seinem WWE-Run."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WhatTheHeckleswrote on 04.08.2021:[7.0] "A decent wrestler with some good mic skills, CM Punk is a name that has been on the lips of the internet for years now, as everything seems to point to his return according to the fans. while as cool as it would be to see the current rumors about him coming to AEW would be great, I don't know if he'll still have the same impact or ring skill as he did during his previous tenures in wrestling before going to UFC."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: yunuskayabrandwrote on 03.08.2021:[6.0] "this man is a name that has left a mark on wwe. But it doesn't appeal to me and doesn't have a lot of extra moves in the ring, and it's overrated by fans."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BK7Neunzigwrote on 30.07.2021:[9.0] "Punk konnte in seinen starken Phasen die ganze Show alleine rocken. Alter Schwede, hat der Mann geile Promos drauf... Mit Heyman an seiner Seite war das einfach nur zu böse. Denn das war für mich auch der beste Punk - der Heel, den man entweder hassen oder lieben muss. Dass der Mann jemanden nicht erreicht - keine Chance. Als Wrestler war er für mich persönlich nie all zu spektakulär. Natürlich hat er mit fähigen Gegnern auch die ein oder andere unvergessliche Schlacht geschlagen. Aber, zumindest rein wrestlerisch, hat er jetzt auch nicht all zu oft die Hütte abgerissen. Langweilig war er jedoch nie. Ich werde seinem Comeback auf jeden Fall stark entgegenfiebern und bin extrem gespannt, ob ich mich vielleicht sogar noch um einen Punkt nach oben korrigieren muss."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BrayanLaPrewrote on 23.07.2021:[10.0] "Perhaps the most divisive wrestler of the past decade, CM Punk is a legend of the highest order, IMO. If the goal is to elicit a real and emotional response, then there were few in the history of professional wrestling who were better than Punk. Whether he was The Voice of the Voiceless, the leader of the Straight Edge Society, The Best vs. The Beast, the Best in the World or a punk with bleach-blonde hair and basketball shorts, Punk knew how to engage the crowd as well as anyone ever has. Multiple classic matches, even more definitive feuds, and a mark on the industry that has already lasted a generation. 5 star wrestler, 10 out of 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AllEliteRobotnikwrote on 29.06.2021:[10.0] "10 years later and his infamous Pipebomb promo speaks nothing but the cold hard truth about WWE and Vince McMahon. He is the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mjs2212wrote on 23.05.2021:[8.0] "I've come to appreciate CM Punk more as he rose to prominence. I didn't really understand all the hype behind him when he was first starting out in WWE, but after 2011, my mind changed completely. I wouldn't go as far as to say he is my favorite wrestler ever, maybe even slightly overrated, but he has earned my respect through his great rivalries with The Undertaker, Rey Mysterio, and John Cena. His relationship with Paul Heyman was amazing to watch as well, and I wish that we actually got more of it because they had great chemistry. It's too bad he walked away from wrestling so abruptly and that is always going to bother me about Punk. However, he's a solid performer and one of the most important figures in the 2010's."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Damian Gibsonwrote on 29.04.2021:[10.0] "One of the best of all time, on the mic and in the ring. Looked cool. Funny. Great sense of self and his "character". Understood wrestling psychology better than most. Truly the Best in the World."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wewantpunkwrote on 13.04.2021:[10.0] "Einen absolut tollen In-Ring Stil und grandios am Mikro. Es fällt mir echt schwer was negatives zu CM Punk zu sagen. Er kann super Promos liefern und kann auch fantastische Matches über die Bühne bringen. CM Punk ist definitiv "Best in the world" in dem was er tut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AndoCommandowrote on 19.03.2021:[10.0] "One of the most intricate workers I've ever seen. Seriously, it's a shame he never got the appreciation he deserved after outselling Cena."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JBoogieRom28wrote on 12.03.2021:[10.0] "CM Punk is arguably the greatest wrestler on the mic to ever step foot in WWE. For most of his WWE career, he was underused. 2011 was his outbreak and he made people want to watch not just him, but wrestling in general. He is truly an icon in wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sammy Suriwrote on 09.03.2021:[6.0] "He definitely is a little overrated and he's a selfish guy who jumps ship when things go south. He was there wrestling everyday as long as things were nice for him and he was champion, soon as it was others' turn he wasn't willing to be on the losing side of the show although others did it for him because it was entertaining to the fans and. I guarantee you as soon as he come back to wrestling his hype bomb momentum will disappear and becomes just another talented entertaining wresler. If he didn't believe in the company why did he need their audience and platform to attack them? Without the company he wouldn't be a record World Champion and wouldn't be able to demand more. He's one of the most hypocritical characters who knows how to manipulate average IQ public, though very entertaining and undoubtedly talented."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ProWrestlingGuy316wrote on 15.02.2021:[10.0] "Mein absoluter Lieblingswrestler, was vermutlich mein ganzes Leben lang so bleiben wird. Punk war einfach unglaublich vielfältig: im Ring sehr gut, extrem charismatisch, konnte Heel und Face gleichermaßen gut mimen und ist einer der besten Redner im Wrestling aller Zeiten (in meinen Augen der beste). Obwohl er in mehreren Rollen glänzte und auch bei Leuten, die sich vom Wrestling abgewendet haben, das Interesse kurzzeitig wieder geweckt hat, wurde er bei WWE nie als absoluter Top Star eingesetzt. Er durfte nicht einmal einen Main Event bei Wrestlemania bestreiten, obwohl es sich kein Zweiter mehr verdient hat. Was soll man da noch sagen? Triple H und Vince McMahon haben ihre Jasager bzw. alle, die ihnen in den Hintern kriechen, besonders gerne."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RickyHendowrote on 11.02.2021:[9.0] "Would've been a 10 if he'd stayed in WWE for longer. His run in 2011 is my personal favourite of any wrestler, he was just untouchable on the mic. Also loved his stuff in ROH"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: autopsy12wrote on 10.02.2021:[6.0] "I'm sorry but I have never seen the appeal of this guy. He could talk and wrestle, sure, but one of the top ten all time greats? I really don't think so. Everything I've seen from him I have also seen many others do better. He isn't bad obviously but he gets way overrated and I still to this day think he has the most obnoxious fanbase of any pro wrestler ever."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kungwrote on 03.02.2021:[9.0] "CM Punk was easily the best promo guy in WWE during the 2010s and one of the best in-ring. His ability to draw the crowd in night after night is probably the reason why so many fans keep chanting his name seven years after he left for the final time. He was the one guy who could adequately rival John Cena's stranglehold on the WWE until Daniel Bryan blew him and everyone out of the water a few years later. Also, he was a hell of a Ring of Honor Champion."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Old ride long linewrote on 18.12.2020:[8.0] "I just can? t with cm punk. His character was great until it wasn? t. He went from face to heel but the whole straight edge thing got stale after awhile it? s like he forgot he was on live tv every week and that his schtick would eventually get old. Should have either switched to part time or He needed to evolve his character. He does have a lot of classics and I recommend going back to rewatch but he is not GOAT material."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: medousewrote on 29.10.2020:[10.0] "It's hard for me to find another wrestler, who could compete with CM Punk in mic skills. I remember so many great promos he did in WWE. His feuds with Jeff Hardy, Jericho or John Cena were great. He was always unpredictable. He shocked the wrestling world with so many crazy things he's done, you would never expect anyone else to even pull it off. For example he left the company with WWE championship and he finished one of the RAW episodes with the biggest red pill WWE universe ever had to swallow. The best entrance themes, the best attitude, the best work ethics. He is The Best In The World."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: eleddie2914wrote on 28.10.2020:[9.0] "Cm punk an awesome superstar he had great matches and great world title runs. Punk's momentum was killed in 2014 which led to his departure but before that punk was the best in the world."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ilovewrestling1995wrote on 21.10.2020:[10.0] "One of the best technical and best on the mic wrestlers of the world . his heel work and his matches were always so perfect ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Legend003wrote on 06.10.2020:[9.0] "Zu seiner Hochzeit (2011-ca. 2013/14) der unterhaltsame und beste Superstar. Starke Promos und Matches und zeigte unglaubliches Charisma. In-Ring Work war auch ziemlich stark. Leider hat WWE falsche Entscheidungen getroffen (Titelwechsel ad Rock, Entlassungsdatum, ? ), deshalb sehe ich keine Rückkehr mehr."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BUIOOMEGAwrote on 05.10.2020:[10.0] "One of the best of his generation, of the entire WWE history and the real revolutionist of the 00's wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ma Stump Pullerwrote on 25.09.2020:[8.0] "Punk pre WWE was consistently pretty good: his run in ROH was fun and established his ability to tell good stories in the ring right off the bat, as well as passionate promo work which endeared him to the fanbase. His weakest point was actually his in ring work as Punk had a habit of doing rather awkward moves or stuff that just didn't look impactful. His influences from KENTA are pretty damn obvious, but he couldn't really hit as hard as him, or have that intensity he had, so the effectiveness of such moves really didn't show well. In WWE, Punk's quality sorta bounced up and down based on his motivation at the time: if he was trying to prove himself with a big event or push with a guy he liked, he'd give it a proper shot (his work with Cena, Bryan, Lesnar etc) then he could be fantastic, but at other times it felt like he was just phoning it in and not giving a shit, which led to rather mediocre matches and unremarkable years. Sure, Punk could talk for days and was deeply engaging when given the tools to work with, but he wasn't a good draw as WWE Champion and his face work always felt disingenuous- me personally, he always seemed to prefer being a heel and it suited him a lot more than vice versa. Disenchantment in his later years there would make his matches seem a lot less impressive as well- don't really have any that stand out at all. Punk was good, but he definitely wasn't great, and acting like he was beyond some amazing top quality matches and a worked shoot promo when the vast quantity of his matches were good at best is disingenuous."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gathawkwrote on 16.09.2020:[7.0] "Hands down one of the best talkers in modern wrestling era, I could listen to his promos for hours. Pretty ok in the ring, knows how to tell a good story, although tends to botch a move from time to time."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PuroresuLoverwrote on 24.08.2020:[7.0] "CM Punk was a good wrestler, but very overrated. His peak was in ROH, but still, he was not one of the BITW as people claim. His selling is pretty weird and poor, he executes his moves in a very awkward way too, but sometimes, they can look very beautiful and even brutal. He has a very great mic-skill and a good arsenal, but like I said, he executes it in a very weird way. Still, I would pay to watch one last match."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JuWFEAEwrote on 29.06.2020:[9.0] "Punk ist einer der wohl besten Mic-Worker aller Zeiten. Trotzdem war er nie mein Lieblings-wrestler. In-Ring find ich ihn auch ganz gut, obwohl er schon lange nicht mehr gewrestled hat. Leider gab es ein Paar Botches an die ich mich sehr negativ erinnere."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Viniciouswrote on 26.06.2020:[10.0] "Personally one of the best wrestlers to ever do it. His work on the microphone and in the ring made him "must see" TV in my book."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jie En Mawrote on 20.06.2020:[10.0] "Apart from the fact he's my idol, my inspiration & my favourite of all time (which I may be bias), he's one of the best example what a in-ring performer should be. So great at portraying his character, whether as a face or a heel. One of the best (if not the best) in terms of mic skills, his in-ring work was decent, his charisma and personality gained him a huge fan base and the immortal support from hardcores. Be honest, he wasn't perfect. 9. 5 will be the better score for me, because he wasn't as big of a draw like rock and austin and some other guys, an outspoken individual that divided people's opinion, whether you will like him or hate him. Nonetheless, still one of the best all-round performer in the history of this industry."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Iceqwrote on 09.10.2019:[10.0] "Eines der besten Gesamtpakete aller Zeiten. In-Ring-technisch gehörte er zu den besten, jedoch sind es seine Promos die in von allen Unterscheiden. Seine Pipe Bomb ist meine persönliche Lieblingspromo und sein Match mit Cena von MitB 2011 ist das beste in den letzten 10 Jahren in der WWE. Schade das er wahrscheinlich mit dem Wrestling abgeschlossen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[10.0] "CM Punk was the first indie darling to enter WWE after years of the essentially being blacklisted & Punk changed the game. He was a breath of fresh air even before his career defining "pipebomb". I loved what he did with his cult-like character & wish we got more from that stable. He was sound in the ring & great on the mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kingtaeyeonwrote on 20.07.2019:[9.0] "Great worker put up with a lot of crap towards the end of his career that unfortunately soured the taste of wrestling. I'd be selfish to say I hope he comes back to wrestling one day even if it's behind the scenes with AEW or ROH. Could have been nice to see him in BosJ or G1"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DanTalksRasslinwrote on 12.07.2019:[9.0] "Punk was certainly among the best talents of his era, both in terms of in-ring ability and psychology, and his excellent promo skills.  He had an excellent run in ROH, which included the better version of the "Summer of Punk" storyline, and also did very well for himself in WWE, though he wasn't quite able to convince the company - even when he was champion - to fully invest in him as top star.  His biggest flaw may well have been his apparent ability to be his own worst enemy backstage, and the way in which his WWE run - and wrestling career in general - doesn't sit well with many fans."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TylerWhitewrote on 23.04.2019:[10.0] "CM Punk ist einer der wirklich besten Wrestler aller Zeiten und eines der besten Gesamtpakete aller Zeiten und zwar auf so vielen verschiedenen Ebenen, die man nun Aufzählen könnte. Zunächst einmal ist Punk einer der großen Indy-Wrestler der 2000er Jahre, der sich schon in den Indys einen großen Namen machen konnte und durch seine Allround Fähigkeiten und auch seine In Ring Skills auffiehl. Seine teils extrem langen Matches mit Chris Hero sind absolut großartig und seine Matchserie mit Joe bei ROH ist bis heute eine der besten aller Zeiten und alle drei sind die wohl besten Matches aus seiner Karriere. Unter den vielen Namen der Indys war er dann mit der erste, der den Weg zur WWE geschafft hat. Nach einem mittelmäßigen Start bei ECW wurde es dann immer besser mit zwei MITB Wins und World Title Runs, ehe dann der Summer of Punk 2011 kam, was der Höhepunkt seiner WWE Karriere war. Besonders als Micworker konnte er dort nochmal zeigen, dass er einer der besten Aller Zeiten ist, was sein Gesamtpaket so genial macht. Doch war ist eigentlich die Lehre aus dem Summer of Punk? Sicherlich war es für alle die Smart Marks großartig zu sehen wie CM Punk ihnen die Worte aus dem Mund nimmt und all das furchtbare an der WWE ausspricht und damit wirklich einen Grad an Realismus in die WWE bringt. Und sicherlich gehört die Pipebomb Promo zu einer der besten überhaupt und seine Fehde mit Cena zu einer der besten der neuen Ära. Doch die traurige Lehre daraus ist doch, dass sich eigentlich trotz alledem gar nichts geändert hat. Die Ganze Story könntest du heute nochmal bringen und sie wäre noch genauso aktuell wie damals. Die WWE ist wirklich leider too big to fail, sie können die Kritik an sich selbst in dieser Deutlichkeit in ihr Produkt selbst einbauen und trotzdem ändert sich gar nichts, weil sie es nicht nötig haben. Schade, denn Punk war wirklich jemand, der das Wrestling Verändern wollte und könnte. Er hätte der ME bei Mania 28 sein MÜSSEN!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LunarGrey1wrote on 29.01.2019:[10.0] "His IWA -MS/ROH promos and matches are just as good if not better than his WWE stuff, one of the greats in my opinion"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: zephyrwrote on 08.01.2019:[8.0] "World class promos and character and consistently good in-ring work. Wouldn't personally consider him one of the all-time greats but he was certainly a capable and entertaining wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cibswrote on 08.01.2019:[10.0] "A diva and weeping baby, BUT... also an incredible wrestler. CM Punk is one of the most charismatic men I've seen in all these years, he connected with the audience naturally and also in the ring was tremendously good. Very versatile and never boring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kaswrote on 10.12.2018:[10.0] "I dislike the recent notion that Punk was not popular during his WWE run (which could be a response to the also ridiculous notion of him being the most popular wrestler since Stone Cold) because the fact of the matter is without Punk a lot of WWE's roster simply would not be wrestling there. He showed that an indie star lacking the preferred body type could get over to the point of becoming one of the top guys in the entire company and is often said by many people to be the reason they got back into wrestling. On top of this, he's an all-time great promo, a fantastic storyteller, good technical wrestler, has a good moveset, and always had an interesting character. Fantastic wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Stott Onewrote on 30.11.2018:[9.0] "Amazing all-around performer. Great mic skills. The ability to work well as either a Face or a Heel. He's had a number of great matches in his career and I hope his failure in MMA doesn't sour him on eventually returning to wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Steamboat2511wrote on 29.11.2018:[9.0] "CM Punk gehört auf jeden Fall zu den Wrestlinggrößen dieser Tage. Letztlich ist er einer der besten Wrestler der Welt. Technik trifft intelligente Matchführung. Am Mic gehört er zu den besten überhaupt, wie er am markantesten im Sommer 2011 bewiesen hat. In dieser Zeit konnte er auch endlich zu einer der größten Persönlichkeiten überhaupt heranreifen, mit teilweise unglaublichen Reaktionen der Fans. Ich hätte ihn gerne (länger) an der Spitze der Company gesehen und würde mich sehr über seine Rückkehr freuen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Amico Leonardwrote on 16.11.2018:[9.0] "Cm punk is one of my favorite sport-entertainers ever (I have a Tatoo on my left arm dedicated to him). One of my greatest role models in real life , and one of the first (if not the first to my memory )that bringed his real persona as the whole thing to create his gimmick: he is in real life a straight edge a punk rock fan and he was in real life upset with WWE back in 2011 when he did his infamous ? shoot promo ? that made him a legend. He is to our era what Stone Cold was for Attitude Era, a pioneer a revolutionaries that took the company to the next era (the nowdays era is called ? reality era? started with CM Punk rise in 2011). Probably the greatest talker of all times, his promos are legendary sometimes I playback them to remember me how great they were. Some of his feuds are part of history and are some of the best rivalry ever made in WWE , the one against Jeff Hardy or Rey Mysterio in the first half of his carrear and the most famous ones with John Cena , Orton Undertaker or Chris Jericho. Also his matches are some of the best ever and some of my favorite matches ever with the opponents that I cited before. His ring work is excellent he wasn? t the best athlete or the best body ever but he was probably one of the best (if not the best) storyteller of that period with incredible facial expression and in ring genius to create counters and jaw dropping moments in the ring. I loved also his ROH period were probably his athletic ability were even better allowed to do less scripted matches. The only reason I not give him 10 is becouse in reality he was a meteor in the buissness , becouse most part of his carrear he wasn? t a main eventer and , I am sad to say it, becouse his ? post WWE?  actions and statements were really bad. He he spat in the dish where he ate and denied wrestling most of that, in a matter of fact, for a jealousy against Daniel Bryan that in 2014 was more over than him. I Compare in some way his carrear to Bret Hart one, great but worst ending ever."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KINGwrote on 09.11.2018:[10.0] "He could do everything. One of the few not annoying WWE babyfaces, great heel as well, eccellent entertainer and fantastic wrestler, the most underrated on the roster till his 2011 push, he deserved everything he got, his programs with Jericho and Undertaker were WM main event material but the WWE had other options. His sad departure can't shadow a stellar career and I hope he stays coherent by never coming back."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RatingsMachinewrote on 11.10.2018:[8.0] "CM Punk was a really good worker; not quite great, but close to it. But his biggest strength was his mic work, where Punk was one of the best. As the 'Pipe Bomb' showed, if you gave Punk the chance to talk about a subject that he passionately believed in, you would get a fantastic promo."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: taabr2wrote on 06.10.2018:[10.0] "One of the best talkers in wrestling history who has a good argument for being the best mic worker of his generation. CM Punk was also a great wrestler although. Punk had great charisma which is what carried him to the top of professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Summerslam Fan 01wrote on 10.09.2018:[6.0] "Der Mann der die WWE ohne Worte verließ, Phil Brooks war immer unzufrieden selbst als er 434 Tage Champion sein dürfte, musste er seinen eigenen Run kritisieren. Dann Jamnert er rum war er nicht im Main Event von Wrestlemania stehen darf und ein The Rock oder The Miz schon, die ja seiner Ansicht nach nicht auf seinem Level sind, Punk muss in einem klar sein die Company wird immer machen was am besten für sie ist, ein Rock zueht viel mehr Aufmerksamkeit und Kohle als ein Punk ist einfach so , auch bei einer Katastrophalen Leistung gegen Cena. Und kaum ist er nicht Champ seit einem Jahr ist er weg, haben Leute wie Dolph Ziggler die seit Jahren nicht mal ansatzweiße den Spot bekommen haben den Mr. Ego Cm Punk hatte heulend die Tasche gepackt? NEIN In meinen Augen hat der Typ absolut Unprofessionell gehandelt. Am Mic näturlich Gold aber im Ring war er nie so groß wie er selbst dachte, sah nie wirklich durchtrainiert aus. Und scheint Privat auch ein ziemlicher Ar... zu sein"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sheepwrote on 05.08.2018:[5.0] "Ein bisschen mehr Demut und Dankbarkeit und ein bisschen weniger Ehrgeiz hätten ihm gut getan. Zumindest, wenn man seine Fähigkeiten mal realistisch und ohne den Mordshype betrachtet. Nie zuvor hat ein Wrestler ein solches öffentliches Fazit gezogen, wie Punk es getan hat, und folglich misst sich seine gesamte WWE-Laufbahn nun nachträglich an seinen Worten. Klar, die WWE hat Mist gebaut, dieser Arzt sogar gewaltig großen, und dass Vince und Hunter hinter den Kulissen schlecht mit ihm umgegangen sind, mag ich angesichts des Bookings in seiner Zeit an der Spitze gar nicht leugnen. Seinen Zorn diesbezüglich verstehe ich. Dennoch muss ich immer wieder mit den Zähnen knirschen, wenn ich höre, wie er darüber jammert, für ihn sei nie Platz gewesen, keiner habe ihn je unterstützt und was für ein verkanntes Jahrhundertgenie er doch war. Wir sprechen hier von dem einzigen Mann, der je zwei MITB-Matches hintereinander gewinnen durfte. Ein Mann, der 434 Tage lang Champion bleiben durfte. Und ja, ich will sogar so vermessen sein, zu behaupten, dass Punk im Ring bei weitem nie so großartig war, wie er selbst, Paul Heyman und die ganze Wrestling-Welt ihn fand. Ich kann mich an kein einziges Match erinnern, indem er mich wirklich so begeistert hat, wie es etwa Triple H, Batista oder Edge wiederholt getan haben. Entweder hat er im Build-up und den Promos so gute Arbeit geleistet, dass die Aufregung das Match tragen konnte (etwa mit der SES), oder das Match fand in Chicago statt (MITB 2011), oder sein Gegner war selbst so herausragend, dass Punk nur mithalten musste (Summerslam 2009 gegen Jeff Hardy). Punk war ein Wrestler (mit Betonung auf: war), der Storytelling und Psychologie draufhatte, zweifellos. Aus dem Kontext der Storyline herausgelöst waren seine Matches aber selten über Durchschnitt, häufiger darunter. Und jetzt hat er sich zwei Mal in der UFC verhauen lassen, und der Hype? Der lebt noch vier Jahre später. Ich hoffe, er kommt zurück - und beweist mir, dass ich falsch lag."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Shiza kunwrote on 23.05.2018:[8.0] "As a Chicago native, I can confirm this man is a cult hero of sorts for many. And rightfully so, since CM Punk was certainly an amazing performer, both in-ring and on the mic. In his early WWE years, I didn't particularly care for him, especially his run as leader of the Straight Edge Society. However, his run in 2011 that got a lot of people talking genuinely got me hooked back into wrestling and made me wonder what would happen next. Unfortunately, WWE booking killed the white-hot angle once the Kevin Nash/HHH storyline was introduced, but even after this, Punk had a solid run as one of top guys, especially during his 434-day title reign in which he had several classic matches. What I found even more impressive was his ability to flawlessly transition from face to heel. Ultimately, I never personally connected with him on the level of other guys like Daniel Bryan. So while not necessarily one of my favorites, I cannot deny his skills and versatility and am looking forward to checking out some of his work pre-WWE."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Oliver95xwrote on 23.05.2018:[10.0] "Im Ring und am Mic einer der besten. Er hat Charisma und es gibt nichts an ihm wrestlerisch gesehen auszusetzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mikawo91wrote on 21.04.2018:[6.0] "CM Punk ist ohne jeden zweifel einer der besten Wrestler den die WWE je hatte, allein von seinen In-Ring-Skills verdient Punk volle 10 Punkte. Das viele Fans ihm eine Träne hinterher heulen ist verständlich. Ich, für meinen Teil mochte Punk zum Ende nicht mehr so sehr wie zu Beginn. Bis zu seinem Heelturn im Jahr 2009 gegen Jeff Hardy war Ich ein großer CM Punk Fan. Zugegeben in seiner Anfangszeit als Heel mit seiner Gruppe, die Staight Edge Society, und als er sich an die Spitze des Nexus intrigierte, und die Gruppe dadurch spaltete, fand Ich Ihn noch sehr unterhaltsam, aber danach begann sein langsamer Abstieg. Das von vielen hochgelobte WWE Championship Match gegen John Cena bei Money in the Bank 2011, fand Ich eher langweilig. Sein Streit mit Ryback, das Gejammer über ein Wrestlemania Main Event, sein Diven-haftes auftreten Backstage, sein gleichgültiges Verhalten gegenüber seinen Fans, und seine Differenzen mit Vince McMahon und Triple H gingen mir nur noch auf die Nerven. Das viele hoffen das CM Punk sein Comeback in der WWE oder in einer anderen Wrestling-Liga gibt, halte Ich für unwahrscheinlich, da weder Punk selbst, noch die WWE oder eine andere Wrestling-Liga Interesse an einer Zusammenarbeit zeigen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MitsuharuMisawawrote on 31.03.2018:[6.0] "I do not consider him as one of the greatest of all time. I do not believe he was involved in so many great matches as people seem to think. But I admit he is very good on the mic."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: andrewmossighiwrote on 28.03.2018:[10.0] "CM Punk has to be one of the greatest professional wrestlers of all time, because he was the best professional wrestler in the world during his prime. Punk was a perfectionist; someone who prides himself on being nothing but the best in almost every, wrestling category there was. In the ring, he was able to outperform or carry a match to a classic with just about anyone he worked. As a storyteller, Punk could make a believer out of anyone who saw his matches live or through a television screen. On the microphone, Punk was one of the most excellent talkers in the history of the business. Period. The reason why I glorify Punk is because he was never afraid to express his mind in regards to others (Vince McMahon, Ryback, Triple H). Grant it, some of what he said in Colt Cabana's Podcast might have been fabricated, but for the most part, Punk was ambitious, and he was willing to sacrifice everything to become the top star of WWE despite the restrictions set on him due to his status as a former indie star. FACTS!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: G23G23Gwrote on 07.03.2018:[10.0] "Meiner meinung nach ein sehr guter wrestler und micworker. Er hat auch einen sehr guten finischer den gts der richtig glaubwürdig ist. Und an alle die ihn hier haten wir bewerten hier doch den wrestler und nicht die privatperson."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: turkeltonwrote on 17.02.2018:[5.0] "Ich verstehe die hohe Wertung nicht. Okay ich gebe natürlich gerne zu seine In-Ring Fähigkeiten und sein Mic-Work verdienen 8/9 Punkte, aber er scheint Backstage mit einen Hogan, Nash oder jungen Michaels vergleichbar zu sein. Was bei mir aber hauptsächlich die Wertung runter reißt ist der Punkt das er seinen ganzen Fans, in meinen Augen, den dicken Finger zeigt. Es läuft nicht wie er es will - er haut ab oder macht nicht mit. Seine Fans wollen ihn wieder sehen ggf in einer anderen Liga - interessiert ihn scheinbar auch nicht, er taucht ja nirgends auf. Ich verstehe auch die Leute nicht die so einer Personen noch hinter her trauern oder in Arenen ihn mit irgendwelchen Chören ehren. aber jedem das seine"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CHN325wrote on 02.02.2018:[7.0] "I liked Punk, just maybe not as much as others. Great mic skills, worked his ass off to get where he was. Maybe thought a litte too much of himself."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: josepedropintowrote on 26.12.2017:[10.0] "The man who got me back into wrestling. Usual route: at 11 years old started watching, by 14 logged out out cause I found out it was fake and it wasn't connecting any more. I never left it completely, there was still the random Stone Cold, Bret Hart or Mick Foley match on youtube. Then, one day, there it was: a one hour video with Punk's pipebomb and all the segments leading up to Money in the Bank 2011. I watched that in awe. Then I watched the match. And I've been watching ever since."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PrinceJrwrote on 03.12.2017:[10.0] "Ich vermisse ihn wirklich sehr. Er war das Beste, was WWE zu bieten hatte in der PG Era. Obwohl er besser als Cena war in quasi allem, Wrestling, Mic Skills, Pops ziehen, wurde er so stark wie möglich zurückgehalten, um Cena stark aussehen zu lassen. Selbst in seiner 434 tägigen Titelregentschaft hat er fast gar keine PPV Main Events bestritten. WWE hat es soweit gebracht, dass er seine Leidenschaft und Liebe fürs Wrestling verloren hat und fast gestorben wäre im Ring. Hoffentlich entscheidet sich Punk nochmal in den Ring zu steigen egal wo außer WWE, dennoch wird er auch nicht jünger."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: freddnwrote on 17.10.2017:[7.0] "Bewies schon bei ROH; IWA Mid South, FIP und anderen Independentligen seine Klasse und bot dort bereits spektakuläre Fehden und Aufeinandertreffen mit Chris Hero, Raven und Co. Startete recht vielversprechend bei WWE und nahm in der ECW von Anfang an eine prominente Rolle ein, wenngleich seine Position hier sehr schwankte. Insbesondere als Face hatte er sehr mit dem kleinen Spielraum als Babyfaceworker zu kämpfen. Nach dem Heelturn wurde er einer der besten Heels des Kaders. Sein unrühmlicher Abgang schmerzte viele Fans. Der folgende UFC-Ausflug war seinem Namen hingegen nur schädlich."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "One of the best wrestler of all time.  His controversial figure has made one of the most talked superstar in the world, and you know, controversy creates cash.  Despite him being one of the finest wrestler WWE has ever seen in the ring, I have always believed that Punk was even better at the microphone, and that his oratorical skills could have made him an incredible politician, had he not chose to be a pro-wrestler.  What a shame he is wasting himself with MMA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: steviecwwrote on 01.10.2017:[10.0] "One of the greatest professional wrestlers of all time. His stock has fallen with some WWE faithful but he had stunning matches, defied expectations and finishes his career having amassed reigns with the WWE Championship, World Championship, ECW Championship, ROH Championship, ROH Tag Team Championship, WWE World Tag Team Championship and WWE Intercontinental Championship, as well twice winning the MITB match, winning a plethora of independent championships and enjoying a run in the prestigious PWG promotion. A Hall of Fame worthy career that helped pave the way for numerous "Indie darlings" to reach top spots in WWE and NXT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheJoker5wrote on 22.09.2017:[10.0] "Awesome wrestler and talker, he had the mastery of psychology behind the fight and knew how to lead Undertaker to a 4. 25 Match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ChristianMB1wrote on 27.07.2017:[7.0] "Good mic work although at times inconsistent. I had the feeling virtually all of his promos either built up a ton of heat for his matches or completely flunked and killed the feud"s momentum. His ring work is above average, He had good storytelling, but he had a rather small move-set that was never overly impressive. Had he not retired so early and under such circumstances he would surely earn an 8 from me (and possibly even a 9 if he did well for the last 6-7 years of his full-time career)."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ConkerPikaKidwrote on 25.07.2017:[8.0] "Oddly, for whatever reason I used to hate him, but now that he's gone from the wrestling scene I have started to like him, which is surprising considering that I used to say that he's the worst wrestler in the world.  Punk was a one of a kind wrestler, with great charisma, excellent finisher, and amazing theme song.  It's not up to me if he wants to come back to the wrestling scene, but I would appreciate if it happened, even if it was just a one night deal."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Redpalmer12wrote on 24.07.2017:"WWE killed CM Punk's passion, love, heart, and spirit for wrestling 2013 and 2014 he started to lose that passion WWE begs him to comeback they're that desperate for Punk to come back its funny to me that Vince and his bitches begs Punk to comeback guess what wwe and Vince ya brought that on yourselves screwing punk not to mention... WWE house show and on the road schedule was just too much for punk, but he still had the courage to do it for us and PERFORM FOR US THE FANS THE WRESTLING FANS WWE and Vince McMahon is the example and assholes mostly Vince McMahon firing punk on his wedding day and won't give younger talent a chance, but if WWE does care about talent how come they let Punk wrestle with staph infection he even told doctors about it yet they didn't do shit honestly Punk lost the Passion, Love, Heart, and Spirit for Wrestling WWE killed it all I have to say is fuck Vince McMahon and his retarded company"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ajaxwrote on 06.06.2017:[9.0] "A lot of people are rating Punk based on his attitude as a person, which is completely asinine. This is about rating Punk as a wrestler, and as a wrestler he was a star, probably one of the top guys WWE has had since it went PG. People are pointing to the Pipe Bomb as his only good promo, they obviously haven't been paying attention, Punk has been one of the masters of the promo since RoH, up there with Austin, Rock, Hogan or Flair. In ring he was the perfect balance between the safe and brandable 5 moves of doom and the blistering offence of the indies. Punk as a character constantly evolved, from a literal punk to the Saviour to the Best In The World. If there is any negative it's that he's had one or two sloppy moments. He's a legend that we'll look back on in the same vein as Bryan."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Super Bratwrote on 09.05.2017:[8.0] "CM Punk was a good wrestler with exceptional mic skills. Like most of WWE's larger talents, Punk's best work was during the years previous to his WWE start."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheWrestlingFanwrote on 12.04.2017:[10.0] "One of best all rounder wrestler that ever step foot in squared circle. Outstanding in ring skills and excellent mic worker. Hopefully he will return to wrestling one day"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Lariatooowrote on 05.04.2017:[3.0] "Undeniably the hottest thing in years during his prime. I also enjoyed his previous work during the SES storyline and yes, even some of his work in WWECW. However he's a person who believes his own hype and during the end of his tenure (even if he was hurting) he was sloppy and was uninteresting. An important part of WWE during 2011 and a good wrestler throughout his career in ROH and WWE, however he is wildly overrated."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Blood Pumpwrote on 30.03.2017:[8.0] "While he is an impeccable talent, I feel Punk never fully reached his height. He came close with his feuds against Joe and Cena but he had the potential to be one of the best not only of the indys but by WWEs standards if only he'd stick it out a few years longer. Punk was always great on the mic, but I could never get over some of his flaws in ring. He was ambitious enough to make a five star classic sure but he was also usually sloppy in his execution and that sloppiness shows even in his more acclaimed bouts. Again he made up for it with ambition and some good ideas but I don't agree with the notion of him being 'The Best'."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: XLVChampionwrote on 03.03.2017:[10.0] "Mein absoluter Lieblingswrestler. Zu seiner aktiven Zeit der beste im Ring und am Mic. Hoffe, dass er eines Tages zurückkehrt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Owenwrote on 02.03.2017:[5.0] "While he was a decent wrestler, his bitter, ungrateful attitude costs him points, in my opinion. He whines that he isn't appreciated by the WWE, so he quits. The man was WWE champion for over a year, headlined wrestlemania twice and was paid millions of dollars. How much more appreciation does he want?"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LordGabrielwrote on 26.02.2017:[3.0] "I liked him when he was in SES but then he become selfish and thought he was the best (in real life) , also very overrated with his mic skills which he said his frustrations, then he walked away cause he wasn't put in the Main Event... like a kid... good luck in UFC boy.. maybe you will win one match..."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Champlifewrote on 13.02.2017:[10.0] "Der Beste den es gibt, Der beste den es gab, Der beste den es je geben wird ! Würde ihn gerne wieder sehen in der WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: triplexwrote on 27.01.2017:[10.0] "My all time favorite Pro Wrestler, CM Punk is the best wrestler in the world, in and out of the Ring, and i have to say that if anyone tell's the oposite probably is just a hater, because no one done more in ring than this guy!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Real Raterwrote on 22.01.2017:[10.0] "Ring: Egal wo, der Typ hat einfach im Ring, gerockt egal ob WWE oder in den Indy Ligen. 10/10 (50%) Promos/Schauspieltalent:Für mich mit The Rock der beste allerzeiten, hat sich 2011 einfach unsterblich gemacht. 10/10 (25%) Charisma/Statur/Gimmick:Sein Gimmick war super und Charisma hatte er auch trotzdem nur 8/10 Punkte. (25%) Sind dann insgesamt 9, 5 Punkte für den Straight Edge Superstar, ob er The Best In The World ist, keine Ahnung aber im Ring und Promos halten, gibt es nur ganz wenige die in seiner Liga mitspielen, vielleicht bleibt er der einzigste US Wrestler, dem ich 10 Punkte gebe.  = 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Chekerwrote on 06.01.2017:[10.0] "I always thought CM Punk was underrated, only now is he getting the credit he deserves. Punk was an incredible promo and an excellent wrestler, a total package any company would love to have on its upcard. He helped pave the way for guys that would've previously been considered "too small" or "missing the look" to make their way into the WWE, and I think that influence will become even more obvious (if it's not enough already) as the years go by. I miss this guy often."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rasslin Ruleswrote on 04.01.2017:[7.0] "Hatte zwar grandiose Matches, jedoch ist er meiner Meinung nach im Ring etwas überbewertet. Oft war die Ausführung einfach zu unsauber. Am Mic ist er bekanntlich ein Gott. Allerdings hat er ein riesiges Ego, was der Grund dafür ist, warum er nicht einer der ganz großen ist. Jetzt kann er sich ja gerne bei der UFC die Kariere komplett ins lächerliche ziehen"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Aj Bagi Ajaxwrote on 03.01.2017:[10.0] "Ich hoffe einfach nur das CM Punk irgendwann mal in die WWE zurückkehrt. Dieser Typ hat einfach die Ausstrahlung, die Mic skills und die nötigen In-ring Kenntnisse, um dauerhaft für Spannung in der WWE zu sorgen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NastyYaffawrote on 01.01.2017:[10.0] "One of my all-time favorites, and a guy who I truly believe is a part of the elite - one of the greatest wrestlers of all-time. He could do it all - fantastic on the mic, charismatic, great babyface worker, tremendous heel worker, fantastic psychology & character work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ClaudeSpeedwrote on 07.12.2016:"Was macht ihn besser als Hulk Hogan oder Kevin Nash ? Promos schön und gut, konnten die beiden Beispiele auch grandios und hatten auch tolle Matches. Aber was macht diese Backstage-Bitch so besonders ? Weil er im Live-TV gegen seinen Arbeitgeber shootet ? Die Leute die den Backstage-Politkern der alten Garde schlechte Bewertungen gegeben haben aber Punk 10 Punkte geben sollten mal in sich gehen und sich fragen ob ihre Bewertungen Sinn ergeben."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AtticusFinchwrote on 25.11.2016:[10.0] "Best in the World wasn't just a nickname for Punk, it was the truth. The guy had it all, spanning from his indie days to his final WWE days. He played the cool rebel and he played the arrogant asshole. He played the underdog and the cult leader. On the mic, no one could touch him. He could go toe-to-toe with some of the greats and in some cases, he was better. When it came to wrestler, he was excellent. He toned down a lot of his indie moveset and it's understandable as to why. But he managed to make it work. One thing I feel that rarely gets brought up is how well he was able to express emotion in his facial reactions. Non-verbal speaking is key to acting and when it comes to sports entertainment, there aren't a lot of great actors. It stuns me when I see people call him overrated. He had it all (even if he was skinny-fat). It's a real shame if he truly is finished with wrestling, but never say never."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Luv all wrestlingwrote on 10.11.2016:[10.0] "Great charisma, presence, and almost always has a great match, CM Punk is a prime example of an average build guy being larger then life using hard work and mad skills."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Squared Circlewrote on 09.11.2016:[1.0] "And now you know why I never liked this guy.  I give him one point for his mic skills.  He had an intensity about him on the mic, but it was a complete oversell.  I never thought for a minute this guy could beat anybody in a straight up fight, not to mention some of the gigantic legends that he is rated above on the site.  Now we know, he can't fight to save his life.  Well, I guess now the rest of you know.  He never had any believability to his character and that just make him straight up annoying.  I see my comment was critiqued.  I thought I was clear, but I'll elaborate.  It was always hard for me to buy in that this character was a tough guy when I felt 2/3's of the area would whip his tail."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jokiller2wrote on 20.10.2016:[10.0] "A great wrestlers. 5 stars in the ring, 5 stars on the mic. His 434 day reign is my favorite of all time. The storyline agains Cena back in 2011 is my favorite ever, and it was all because of his mic skills. He has everything I want from a wrestler... except retiring at a pretty young age.... Oh and BTW why is there a guy talking about that he can't fight. Bro, that's WWE not UFC -_-"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Chrissiwrote on 07.09.2016:[10.0] "Einer meiner absoluten all time Favs! Zum ersten Mal wurde ich auf ihn aufmerksam in seiner überragenden Fehde mit Jeff Hardy 2009. Ehe 2 Jahre später mit seiner legendären "Shoot-Promo" und dem daraus resultierendem "Summer of Punk" das absolute Highlight folgte. Seit dem kann/konnte ihm niemand mehr in Sachen "Gesamtpaket" das Wasser reichen (wobei einige im aktuellen Roster das Potential dafür haben). Wrestlerisch meistens auf einem sehr hohem Niveau und am Mic ein absoluter Gott. Ich kann mich ein keine einzige schlechte Promo von CM Punk erinnern... er war und ist einfach ein grandioser Talker. Und obwohl er nicht mal diesen so typischen "Look" eines Stars hatte, war er trotzdem ein absoluter Topstar. Es ist sehr schade ihn in der aktuellen Wrestlingwelt nicht mehr bestaunen zu können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Dr Middywrote on 05.09.2016:[10.0] "One of the guys who actually brought me back to watching wrestling full time. Punk had it all, the ability to tear the house down in a match with his immensely good storytelling abilities, the mic skills to captivate a crowd, and the charisma to tie it all together. When he was on his top game, you could see the passion he had for the business, and the drive he had to be one of the best. The list of matches he had that I love is so long, and it's such a shame that passion will probably never come back. Nevertheless, he has left a hell of a legacy on the business that I hope he at least can be proud of."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Interceptorwrote on 03.09.2016:[7.0] "Meiner war er nicht. Aber das musste er auch nicht. Was er an Leistung brachte, war sehenswertes Entertainment. Über seinen Abgang kann ich nichts sagen, will ich auch nicht. Nur eines: Manches hat mich an ihm genervt, aber schade fürs Gesamtpaket."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: croatiantwat1950wrote on 22.08.2016:[10.0] "The best thing to hapoen to WWE in PG era. I loved his in-ring psychology, his near legendary promos and many of the feuds. In 2011, he brought so much fans back into wrestling with the pipebomb storyline, myself included. I freaking miss this guy, no matter how much he bashes wrestling. I hope he succeedes in UFC."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: test85wrote on 18.08.2016:[8.0] "CM Punk ist ein guter Worker, aber bei weitem nicht "The Best in the World". Für mich sind und waren u. a. Y2J, HBK, Hart, Hennig & Styles im Ring besser. Aber sowas ist eben bei der Klasse Geschmackssache. Mich stören die vielen Kicks die er immer zeigt. Zwar sind diese nicht so nervig wie das ewige gechope von Flair aber mir sagt dieser Stil eben nicht zu. Seine lange Regentschaft liest sich auf den Papier gut, war aber ab einen gewissen Zeitpunkt nicht mehr gut. (Ich glaub das war nach NoC und man hatte das Gefühl er hätte den Title nur mehr um von Rock beim RR entthront zu werden) Großen Respekt auch das er einfach so die WWE verlassen hat. Aber das meiste was er danach gesagt war Bullsh... und es gab doch einige Aussagen die ich nicht nachvollziehen kann. (Wegen Verletzungen kürzer treten - UFC wird dich sicher weniger mitnehmen. Habe genug Geld gescheffelt - Kann aber keine Krankenhausrechnung bezahlen usw. ) Glaube aber das man sicher wieder einmal in der WWE sehen werden. Aus ähnlichen Gründen wie Flair & Hogan."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SweetestThing2wrote on 13.08.2016:[10.0] "The best in the world he was and he proved it each and every time he went out and performed in that ring and on that mic. His in ring ability was perfect and had a way to mix technicality and psychology in one nice blend. Sure the guy is an asshole and sure he truly believes that he is the best in the world but dammit if he did not prove it each and every time. CM Punk's mic skills were about as perfect as you can get. Punk spoke with passion, conviction and logic. One of the amazing parts about Punk was the gimmick never came off as a gimmick like Steve Austin before him it felt like an extension of himself. A rebel with a cause, A cause to take down anyone in his path to not only proving he was the best but that he was better then you with his straight edge lifestyle and the discipline really showed. The kick ass kick pads and the cool trunks with the all the different colors and the stars and i especially loved his Randy Savage and Bret Hart tribute attires which shows what kind of wrestling fan he is and shows he still can be humble even when everyone else around him thinks he is an egotistical jerk with no care in the world for anyone but himself. CM Punk was special because he lit a fire under World Wrestling Entertainments ass when they needed it the most and kept me around when i was so close to tuning out of wrestling forever. His pipe bombs were some of the best promos ever cut and his feuds with the likes of Jeff Hardy and John Cena will forever be etched in wrestling history. This was a man that gave bullshit and never took it. Played by his own rules when everyone else were followers. The straight edge savior also managed to ask WWE the real questions. The questions of what if we tried, what if we were daring. CM Punk to me is one of the most ballsy and honest wrestlers that ever graced a pro wrestling ring and even if Philip Brooks himself pisses me off sometimes i can't help but remember that when he said he was the best in the world he meant it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gad Chablewrote on 11.08.2016:[10.0] "Die Wertung bleibt gleich, aber ich möchte das Ganze mal etwas allgemeiner - völlig unabhängig von der damaligen Kontroverse beschreiben: Punk ist für mich DAS perfekte Wrestling-Komplettpaket. Es gibt zwar einige begnadete Wrestler, die sich mit ihm im Ring messen können, aber was Charisma angeht, gibt es kaum jemanden auf seinem Level. Der Typ ist echt sowas wie ein Demagoge und weiß Wörter genauso wie sein langjähriger Mentor Paul Heyman auf solch eine starke und prägnante Weise einzusetzen, dass er gewissen Angles und Segmenten immer wieder dieses "GANZ BESONDERS"-Siegel aufdrücken konnte. Dieser Mann hat etwas ganz Besonderes, das man im Wrestling so vielleicht nie wieder sehen wird. Abseits davon hat er einen absoluten Star-Appeal und ist in jeder Hinsicht einfach ein "Character", wie man so schön sagt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Brandon Pichawrote on 09.08.2016:[10.0] "Have always been a fan of CM Punk.  Always found him very entertaining and energetic.  The only wrestler like him in WWE today is probably Seth freakin' Rollins.  WWE will never have another CM Punk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Devitciiuwrote on 30.07.2016:[10.0] "I remember the first time I saw the GTS. Wow. Punk was the man but I was afraid the WWE and Vince would destroy him. In the end, I guess they did but just in a different way than most of the other wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kick-Out-At-Twowrote on 04.07.2016:[4.0] "Für mich einer der überbewertesten Wrestler aller Zeiten. Der beste der Welt ? In was ?  Am Mikro ? Da war er wirklich obere Liga , aber besser wie Jericho , Heyman , Stone Cold und Co. ? Im Leben nicht.  Im Ring ?  Man muss Ihm eingestehen das er aus vielen Sparten gute Sachen konnte , aber nach wirklichem Einschlag sah das nie aus. Sein Finale oft äußerst Unsauber und bei schweren Jungs am Rande seine Kraft. Mimik ebenfalls nicht mein Fall. Charakterlich wohl untere Schublade in seiner Gehässigkeit zu Kollegen.  Anstatt seiner zum Ende hin miesen Statur mal wieder ein Fitnessstudio zu gönnen konnte er wohl den Hals nicht vollbekommen ("Ich dachte, es würde MEIN Jahr werden! ) und das nach seiner Rekord-Titelhaltung.  Kein Verlust für die WWE."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BastiTakes0ver3Dwrote on 27.06.2016:[10.0] "@Shango Haha ja genau kla er macht alle in UFC platt und Lesnar sowieso hahaha ich lach mich schlapp danke das du mich zum lachen gebracht hast."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SE Finestwrote on 09.06.2016:[10.0] "2016 and people still chant his name. Only Triple H fanboy hate this guy . Great in the ring, fantastic on the mic, totally should return and then main event Wrestlemania."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Carrot Junkiewrote on 06.06.2016:[8.0] "Though he was tremendously overhyped and occasionally sloppy in the ring, there was a power and verve behind everything Punk did that is sorely lacking in wrestling today.  I thought his fourth-wall breaking character went too far after his feud with Cena (on-screen kayfabe breaking is proven to be bad for the business), but he was an electrifying speaker with great ring psychology.  His ability to sell in particular is something I miss."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ErycK24wrote on 05.06.2016:[10.0] "Cm Punk is the best wrestler of the 2010's its a shame that Vince's dumb ass would push guys like Roman and Batista over Punk. WWE has lost its edge since losing Punk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Grisham1986wrote on 04.06.2016:[4.0] "Truthfully, I never found out what was the big deal with Punk, mostly in-ring. He portrayed his gigantic ego on screen and had the verbal skills, and I wholeheartedly agree he had the skills to pull it off. But apparently, a lot of folks are really convinced that he was the best ever in ring just because his gimmick demanded he told everyone so. Now, I admit that even (or should I say mostly? ) in ROH, Punk was a reallygood storyteller, a good storyteller who however didn't really excel in the more concrete aspects of being a pro-wrestler. Punk was no powerhouse, no technician, no high-flyer. And I wouldn't even say he was a brawler, clearly, but rather some sort of mild all-rounder. Sloppy executions and very apparent move-calling have always made his matches an on and off thing as far as quality is concerned, and Punk was rather capable to cover it by working the crowd in a good way. I find his series with Bryan a tad overrated as well, and his recent speeches about how he labeled everything he did before as "fake" and how MMA is the "real thing" kind of unpleasant."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ApexOfEvolutionwrote on 31.05.2016:[10.0] "Habe ihn 2014 "nur" 9 Punkte gegeben, da mir sein Finisher nicht gefiel. Das muss ich nun revidieren, da das Gesamtkunstwerk CM Punk mit etwas Abstand betrachtet noch genialer wirkt. Seine Promos aus 2011 gehören zu den besten überhaupt. Dazu technisch nahezu perfekt und spielte seine Gimmicks brilliant, wobei er mir als unangepasster Face immer besser gefiel. Und ja, man kann ihn für seinen plötzlichen Rücktritt 2014 kritisieren, da er die fehlende Anerkennung doch auf einem sehr hohen Niveau beklagt hat. Immerhin war er der WWE Champion mit der längsten Regentschaft der letzten Jahre. Aber passt das alles nicht auch irgendwie zur Person Phil Brooks, die wohl auch im echten Leben ein unangepasster Typ ist? Vielleicht ist er auch ein infantiler, narzisstischer Egomane, aber das macht ihn und das Gimmick CM Punk nur noch interessanter und glaubwürdiger. Ich hoffe, ihn in ein paar Jahren nochmal in einem Wrestling-Ring zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JordanACEwrote on 31.05.2016:[10.0] "is there anything left to say about this guy?  Mic Skills - 10. In Ring Skills - 10. Story Telling - 10. Punk was the complete package.  Always was and forever will be one of my favorites."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dkexwrote on 27.05.2016:[9.0] "Also ich muss sagen seine Zeit bei der WWE hat mir sehr gut gefallen, er wusste sowohl als Heel und auch als Face zu überzeugen, gerade seine Mic Skills stechen doch ziemlich hervor. Vom Charisma her ist er sicherlich einer der größten der letzten Jahre. Auch im Ring konnte er mich zumeist sehr gut unterhalten, zugegeben, den GTS fand ich nie besonders gut. Abgesehen davon hatte er sicherlich bessere In-Ring-Fähigkeiten als einige andere die ganz oben stehen/standen. Privat mag man von ihm halten was man möchte (sein Gemoser nach seinem Ende bei der WWE war schon etwas unnötig) aber ich möchte CM Punk hier als Wrestler bewerten, und daher fällt das nicht in meine Wertung.  Sein Gimmick fand ich klasse und konnte es eigentlich immer überzeugend darstellen.  Einerseits ist es wirklich schade dass er nicht mehr bei der WWE ist, auf der anderen Seite muss man zumindest nicht mit ansehen wie er im laufe der Jahre abbauen würde (bei dem ein oder Anderem leider immer wieder zu beobachten)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DropTheSoapwrote on 25.05.2016:[5.0] "I have always found him overrated and I'll probably always will... No worthy catchphrases, average physique, and just decent on the ring, with poor execution. Moreover, I'll always remember how he talked way too much in a lot of his big matches (see Rock vs. Punk, for one, or some of his matches against Cena) when he had the job to carry the opponent. His luck was one and one only: Punk was a huge wrestling fan who happened to be a fan of the industry (and more than anything of himself), hence he could play the part of the man ostracized by the system pretty believably in the crowd's eyes."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jobbswrote on 28.04.2016:[10.0] "One of my favorite wrestlers ever. He just brought it every time he stepped in the ring and he produced so many classics as well and has made a huge impact in wrestling. His matches vs Hero, Bryan, Joe, Cena, & his match with Lesnar at SS 2013.  are some of the best ever and ones I highly recommend as well. He could do it all in the ring and adapted to the style of the opponent he was wrestling that particular night. I honestly couldn't hate this guy even if I tried as well. Just one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Zedwrote on 13.03.2016:[7.0] "Keine Ahnung was alle an ihm fanden, ich famd ihn zu Indy Zeiten schon hart überbewertet. Seine Mic Sills waren ja ok, jedoch spulte er diese Nummer immer wieder ab, bis man es nicht mehr hören konnte. Im Ring war er zumindest solide, in den Indys hat er mir etwas besser gefallen. Fand die Finisher immer lahm, sowohl den GTS als auch die Anaconda Vise. Und sein Abgang spiegelt das von ihm was ich so Privat auch von ihm gehört habe, sehr unprofessionell. Dennoch ein ordentlicher Athlet gewesen mit ein paar netten Phasen und einer großen Fanbase, jedoch nie meinen Geschmack getroffen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: James Dean Wrestlingwrote on 09.03.2016:[9.0] "I'd be lying if I said I didnt miss this guy. CM Punk was a treasure. I had a small taste for him when he was coming up WWE wise (06-10), but like others, once 2011 hit, he hit his stride. His work in the indys was well enough. As most of our favorites are over the years.  But that 2011-2013 period was a good time. Sure there were a lot of things internally that went wrong but CM Punk was quite the talent. When he could, he could deliver great promos. When he could, he would do a good deal in the ring. Miss him but happy for his future. I hope to see him make one more walk down that ramp."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheLoudMouthwrote on 17.02.2016:[10.0] "Eines der größten Komplettpakete im gesamten Wrestling-Business. Überragend im Ring, überragend am Mic, überragendes Maß an Charisma, überragendes Gimmick. Völlig unverständlich, dass er in der WWE nicht dauerhaft nach seinem Können eingesetzt wurde. Viel Erfolg im MMA, Mister Brooks!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MAGICIANwrote on 16.02.2016:[10.0] "Erstmal zum Allgemeinen: In RoH super, in der WWE göttlich. CM Punk weiß genau, wie man Spotlight und Aufmerksamkeit ziehen kann. Er ist im Ring einer der besten, die es jemals gab. Am Mikrofon ist er ohne Zweifel DER beste Superstar, den es je gab. Ich habe nie jemanden gesehen, der so eine unfassbare Ausstrahlung in seiner Stimme hat und der so unfassbar gute Promos abhält wie CM Punk. Das Charisma, das er an den Tag legt, ist einfach unfassbar. CM Punk hat in seiner Prime Time in der WWE mal eben die 3 besten Promos abgehalten, die dort jemals ausgestrahlt wurden, er hat 4*+ Matches am laufenden Band gewrestled, hat ein Moveset, mit denen man ein ganzes Roster füllen kann, eine Ausstrahlung wie kein Zweiter... Er hat die WWE ab 2011 praktisch alleine gecarried... Einfach ein großartiger Worker, insgesamt einer der 3 besten Wrestling Superstars, die es jemals gab. Schade, dass ich hier nicht mehr als 10 Punkte vergeben kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gherdezwrote on 03.02.2016:[10.0] "Just the best wrestler of the last decade. A complete one, also got kick-ass mic skills, always amazingly portrayed his gimmick no matter what the situation was. A top face or a top heel, it's the same for him, even tho I feel he gives the best of himself while showing off as heel. Best in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: callousedwrote on 28.01.2016:[10.0] "One of the best workers of the last decade. Great promo skills. A true legend if he wouldn't have walked out."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Aceonwrote on 23.01.2016:[10.0] "Top Gesamtpaket, hatte alles was ein Maineventer braucht. Wurde dann auch endlich mal ordentlich von WWE eingesetzt auch wenn die Rückkehr von The Rock ihn direkt wieder eine Reihe nach hinten schob.  Im Endeffekt einer der besten Worker aller Zeiten. Dass er so "früh" zurückgetreten ist, lässt darauf schließen, dass er auch etwas im Kopf hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: awesomepunkwrote on 13.01.2016:[10.0] "Einer der besten Wrestler den die WWE in den letzen Jahren gesehen hat. Schon zu seiner Zeit bei der ECW hat er mir in seinen Matches sehr gut gefallen. Die Matches wurden im laufe seiner Karriere immer besser und auch am Mic hat er sich in der Zeit stark verbessert. Charisma hat er schon immer gehabt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JeMewrote on 11.01.2016:[9.0] "Es gibt wirklich Leute hier, für die sollte es keine Möglichkeit geben zu bewerten. *hust* Shango *hust* Auch bezogen auf deine sonstingen Bewertungen (Sid 10 Punkte? :D)  CM Punk gehört zu den talentiertesten Wrestlern des neuen Jahrtausends und hat sowohl am Mic wie auch im Ring Klassiker abgeliefert. Ein Pro-Wrestler der mit fast jedem Gegner ein gutes Match worken konnte, und der fast gänzlich auf alberne Catchphrases verzichtete. Selbst einem The Rock konnte er am Mic die Grenzen aufzeigen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Harlequinwrote on 11.01.2016:[10.0] "My personal favorite wrestler of all time. He shattered the barriers of kayfabe culminating into me becoming the mark I am today. He SINGLE-HANDEDLY turned around the WWE at a bleak time, something that John Cena is unfortunately unable to do, but I guess WWE just can't see that. An allrounder that is capable of telling a story in the ring, his previous work of course outshines his last days in the WWE however. His charisma is all you could ever ask for in a wrestler. 100% wholesome and believable, with an absolute sharpened steel tongue capable of putting the industry's greats to shame. Thank you, CM Punk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SteveTheBeastwrote on 27.12.2015:[10.0] "Punk ist einfach Best in the World. Schade, dass er seine Wrestling-Karriere niedergelegt hat, aber so freue ich mich noch mehr auf seine ersten UFC Fights :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: roy-harperwrote on 12.11.2015:[10.0] "Best in the World! Nicht nur zur WWE-Zeit der Beste am Mic, sondern sein ROH-Run unvergessen und auf höchstem Niveau!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RooneyDXwrote on 19.10.2015:[10.0] "Einer der besten Techniker. Ich weiß nicht ob er wirklich in der wwe fehlt, denn sie ist voll mit Talenten, trotzdem Cm Punk war einer der besten, ob er je zurückkommt. Neu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sascha Legendkillerwrote on 16.10.2015:[8.0] "Cm Punk ist meinen Augen auf eine Stufe Ric Flair gut, aber nicht Weltklasse. Er ist nicht der Beste der Welt kann das, aber gerne (falls er je zurück kommt) weiterhin behaupten. Der alte Cm Punk gefiel mir besser."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cojotewrote on 13.10.2015:[10.0] "The best all around wrestler of his generation. The Best in the World. His matches versus Samoa Joe are incredibles. His match versus John Cena is great, the best match in WWE for a decade. A man that show MMA skills in ever match. A great ring story-teller, one of the best ever. One of my five favorite wrestlers ever with Bret Hart, Sting, Eddie Guerrero and Bryan Danielson: a dream team, that never will happen, to Survivor Series. A great entertainment and wrestler. Thanks for all this years and for your extraordinary career, CM Punk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Six Three Timeswrote on 13.10.2015:[10.0] "Punk is, by a wide margin, the most skilled all-around performer since The Rock. Equally capable of putting together a 5 star match and a pitch perfect promo, he had no weaknesses, unless you count an inability to put up with criminally negligent and stubborn management as a weakness. His feud with Cena that produced the legendary pipebomb, his match with the Undertaker, his matches with Samoa Joe, all go to illustrate what a supremely unique talent this man was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ts14wrote on 22.09.2015:[10.0] "Hab CM Punk leider nie im TV gesehen da ich zu der Zeit eine WWE bzw. Wrestling Pause eingelegt hatte. Jedoch muss ich sagen was ich auf Youtube gesehen habe hat mich echt begeistert. Guter könner, der leider nicht sein ganzes können in der WWE zeigen durfte aber der zweifelslos zu den besten seiner Zunft gehört. Und seine Promos waren durchweg einfach super. Sein Shoot gegen die WWE oder die Promo mit Triple H im Ring, hat mir einfach gefallen. Deswegen 10 Punkte für Punk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hardcorewrote on 14.09.2015:[10.0] "The best wrestler of the so-called Universe era. With good technical skills, great mic skills and oozing charisma he was the wrestler to watch during his WWE period. Its a shame his career ended the way it did cuz he was really a guy you loved and hated at the same time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jacobphillipswrote on 13.09.2015:[9.0] "one of the best wrestlers of the modern era who fully deserved his 434 day title reign. one of the best on the mic in wwe history. his promo's were truly engrossing and never afraid to speak his mind. his in ring skills were good and nearly always put on good matches"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Habeldiwrote on 02.09.2015:[10.0] "Für mich einer der ganz großen. Egal ob im Ring oder am Mikrofon, Punk wusste immer, wie er Reaktionen vom Publikum bekommen konnte, Positiv wie Negativ. Egal wie er von der WWE eingesetzt wurde, ob als Anführer einer Straight-Edge-Sekte oder als Anti-Helden und Sprachrohr der unterdrückten Masse, es wirkte immer so, als würde das, was er in den interviews, Segments und Promos abliefert seiner wirklichen Meinung entsprechen und keine Rolle oder Skript, welcher ihm diese Vorschreibt. Dieses Können, sich in die Charakterzüge seines Gimmicks so hineinzuversetzen und es so natürlich rüber zu bringen gehört meiner Meinung nach zum ganz großen Kino und sichert Punk in Kombination mit seinen In-Ring Fähigkeiten einen Platz unter den Besten der Besten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Strikerwrote on 25.08.2015:[0.0] "10 Punkte für seine Fähigkeiten und sein Charisma. Seine Story Lines hatten immer etwas besonderes und er hat es immer wieder geschafft mich zu beeindrucken. - 10 Punkte dafür, dass er uns angelogen hat. Von wegen er ist körperlich in der Lage nicht mehr weiterzumachen. Sein persönlicher Krieg gegen die WWE kotzt mich auch langsam an. OK es gibt sicher Probleme zwischen den Parteien und die WWE ist sicher auch nicht fehlerlos, ganz im Gegenteil. Er soll mal nicht so tun als hätte ihn die WWE wie den letzten Dreck behandelt. Er war für sehr lange Zeit Champ, hatte super Matches gegen den Undertaker und eine Klasse Fehde gegen Cena. Das er nicht Dicke mit seinem Arbeitgeber ist sahen wir auch in den Story Lines, das ist uns allen bewusst. Irgendwann muss man auch anderen Talenten Vorrang geben und ein bisschen im Hintergrund abtauchen. Ich würde mich freuen wenn er sich entscheiden würde noch mal zurückzukommen, was nur zu 0, 001% wahrscheinlich wäre, aber zurzeit fehlt er nicht wirklich. Es gibt einige die sehr angepisst über ihn sind und ich bin einer davon."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Josh76wrote on 20.08.2015:[7.0] "CM Punk is a good wrestler and has some pretty good promos but overall I didn't like his character. He goes from a Straight Edge Savior and then to the Rock hating cheap wrestler that needs Paul Heymand there to help. Than he walks away from it all to go to UFC? ! Not the angle I would go."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ShooterMcShootwrote on 10.08.2015:[10.0] "Was one of my favorite guys. Honestly, it was too bad how his career ended. A real shame. I'm not a UFC fan so I doubt I'll watch his fights, but I wish him well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: beaverandbuttholewrote on 06.08.2015:[10.0] "While the CM Punk circlejerk that still exists is very annoying, I can see why people love Punk. Sadly, I got into wrestling basically as Punk was about to leave. However, to put it simply, Punk could be the greatest all-around wrestler ever. Outstanding on the mic and in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hunter Dunnwrote on 17.07.2015:[10.0] "Any one giving him under a 5 is sour. He was an incredible wrestler with a few 5 star matches under his belt, and many others that could be argued as deserving it. Very good on the mic and could manipulate any fan. Very good in the ring, could put on a great match with anyone. Both an incredible heel and babyface. He was the only person that was able to make an impact the way he did in the PG era, he started a revolution that the company dropped the ball on. ROH or WWE, he was the best in the company while he was there"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: hankthetankwrote on 02.07.2015:[10.0] "CM Punk is an incredible talent who had the ability to make you love or hate him. His promos as a person leaving WWE and as he leader of the SES were great.  His wrestling was also very good and he was willing to stand up to Vince when he wanted out.  I hope he returns to Wrestling one day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rikishiwrote on 22.06.2015:[10.0] "Das komplette Paket. Am Mikro der Beste, den es gibt, im Ring gehört er definitiv auch zu den Besten und Charisma besitzt CM Punk auch einiges. Da kann es nur die volle Punktzahl geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kevin434wrote on 14.06.2015:[10.0] "BEST IN THE WORLD, so nannte er sich... ZURECHT! Dieser Mann hatte alles, Charisma, Ausstrahlung, Im ring ein mega Worker, und sein einmaliges Mic Work. Dieser Mann konnte mit jedem ein gutes Match worken, sein storytelling ist mega gut, und er war der mann der endlich mal die die Eier dazu hatte und was gesagt hat was in der WWE alles schief läuft, das er aufgehört hat verstehe ich, schaut ihn doch mal an, es geht ihm so viel besser, und wenn es ihm besser dadurch geht dann muss man das akzeptieren, danke für alles Punk! #BITW"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MrDXW1213wrote on 13.06.2015:[10.0] "CM Punk is one of the few guys in recent memory to really draw me in with his promos. He was a wizard with the microphone and could make you love him or hate his guts all in one promo. His technical ability, while not the best, or better than Danielson or Benoit more specifically, he is great. He has two 5 star single matches to show for it. His run on the indies was very memorable. His extremely long matches with Hero, Joe, and other were just amazing. His first Summer of Punk was great. His first few years in the company was ok. But after he turned Heel against Hardy and had that fued and became a preacher for straight edge, he was great. The Nexus thing sucked, Once the Summer of Punk II happened, he was just money from there on. Bottom-Line, I think Punk is a once in a lifetime talent. One whose wrestling career ended to early, but I do have to agree with him when when he says he's the best.... well one of the best in wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ezewrote on 02.06.2015:[7.0] "Ich respektiere den Wrestler CM Punk, vielleicht könnte ich mich sogar als Fan seiner Arbeit einordnen.  Er war ein frischer Wind in einer Generation ohne die klassische Star Power, weshalb der Titel " The Best in the world" auch viel zu hoch gegriffen ist.  Seine wrestlerischen Fähigkeiten möchte ich ihm auch gar nicht absprechen, allerdings stößt mir immer der Gedanke seines Abgangs zwischen die Anflüge von Respekt und Ehrfurcht.  2 Begriffe die dem Mann Phil Brooks leider unbekannt sein dürften.  Mit seinem Abgang spuckt er seinen lang jährigen Fans inŽs Gesicht und nutzt jede Gelegenheit finanzielle Vorteile aus diesem zu ziehen.  Grundsätzlich kein falscher Ansatz, allerdings ist es mir suspekt dass er sich bei seiner Bezahlung und den Storylines der Vergangenhet immernoch beschwert hat."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Szene Nordwrote on 01.06.2015:[10.0] "Einer meiner Alltime-Favourites. Tooles Charisma, super Mic-Work, In-Ring Skills und Psychologie WELTKLASSE... schade, dass er vom Wrestling zurückgetreten ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Triple Hwrote on 13.05.2015:[10.0] "Man kann über CM Punk streiten. Er scheint privat kein einfacher Mensch zu sein. Ich fand sein "Voice of the Voiceless" Gimmik nicht schlecht. Erst als er mit Paul Heymann zusammen gearbeitet hat gings für ihn in der WWE irgendwie bergab. Das er aber nach dem Ausscheiden aus der WWE dann noch weiter stänkern musste halte auch ich für überflüssig. Trotzdem kann ich dafür aus sportlicher Hinsicht keinen Punkt abziehen, denn als Wrestler ist Punk einer der Besten der letzten Jahre, den die WWE gesehen hat. Und auch wenn sich Cena Fans jetzt angegriffen fühlen, er hatte recht mit seiner Aussage, das er nur deswegen schon so lange der Posterboy der WWE ist, weil er Vince besser in den Allerwertesten kriechen kann. Ich hoffe sehr, das er sich eines Tages wieder mit der Promotion versöhnen wird, was aber sehr schwierig sein wird, wenn Paul Michael Levesque weiterhin CEO bleibt, denn ich glaube das nur der Senior CEO in eines Tages wieder in die Arme schliesen könnte, da er wohl doch eingesehen hat, das mit Punk auch Fehler seitens der WWE gemacht worden sind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: OmegamonX1229wrote on 29.04.2015:[10.0] "Truly among the best of the best. Great technical skill, excellent on the mic, with a charismatic if not controversial personality. His outspokenness and personal drive and ambition as a performer rightly establishes him as among the all-time greats. It is a shame and a travesty that WWE killed his passion for wrestling, and did not utilize him to his maximum potential."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: thenoah1wrote on 12.04.2015:[8.0] "One of the best promo guys I've seen, and his in-ring capabilities are even greater. I'll admit unfamiliarity with his indie career (though I've long championed Punk/Joe II to be the best American match ever performed (or at least in the top two)), but his WWE days show him to be an absolutely awesome technician, making classics with the likes of Cena, Lesnar and Bryan, among so many others, short though his run was."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GTS Punkwrote on 14.03.2015:[10.0] "Punk wird immer einer der Besten des Wrestlingsgeschäfts bleiben. Bei ihm stimmt einfach das Gesamtpaket. Er hat den unbändigen Wilen und den Ehrgeiz etwas zu erreichen und zu bekommen was er haben will. Punk ist am Mikrofon mit Heyman, Rock, Jericho und Triple H in einem Atemzug zu erwähnen und im Ring technisch brilliant. Er kann einfach Geschichten erzählen. Was Punk aber besonders erfolgreich gemacht hat, waren seine vielen vielen Facetten. Als kleiner Rebell 2007 angefangen, der die Fans unterhalten will hat er sich 2009 zu einem unsympathischen, ekelhaften und großartigen Heel als Heilsbringer der SES weiterentwickelt. Danach als New Nexus sektenähnlichen Anführer hat er den Weg nach oben ins Main Event anforciert. 2011 mit der großen Storyline mit Cena, HHH und McMahon und dem Summer of Punk- hach das war Balsam für die ach so geschundene Wrestlingseele. Dann wieder als Heel- pardon bester Heel aller Zeiten unterwegs. Lange Rede, kurzer Sinn. Alles was Punk anfässt wird zu Gold. Er fehlt der WWE und wird ihr immer mehr fehlen, so ein wahnsinnig brillianter Performer läuft nicht alle Tage rum."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Blade Bourdeauxwrote on 08.03.2015:[8.0] "Ich denke schon, dass er seinen Weg machen wird. Das was ich bisher von ihm gesehen habe, ist in jedem Fall vielversprechend. Aber, den Beweis ganz großer WWE-Klasse muss er noch antreten. Von der reinen Statur her, tritt er in Konkurrenz zum HBK. Das ist zwar eine hohe Hürde, doch wenn ich ihn mit 8 oder mehr Punkten bewerte, muss er genau da für mich hinkommen. Wird in jedem Fall spannend.  Update 2011: Ein Punkt rauf, er ist im Ring noch nie in Zweifel gewesen aber als böses Heelmind ist er fast Gold wert. Sein hinterhältiges Gimmick vereint für mich den Manager der alten Tage (Heenan) mit dem gemanagten Work wie Flair. Update 2015: Ein verbitterter Typ mit maßloser Selbstüberschätzung bleibt am Ende übrig. Für den Abgang der in 1 Liga mit dem Warrior oder anderen Quittern fällt "nur" noch 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: pfuschiwrote on 07.03.2015:[8.0] "Punk was one of the best in modern wwe days, very sad that all turned out as it has.  maybe he could have been a great one."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mandzukic9wrote on 27.02.2015:[10.0] "Er mag ja seine Ecken und Kanten haben, aber er ist einfach ein einmaliger Charakter in der Wrestling-Welt. Bin mir außerdem sicher, dass seine Karriere noch lange nicht zuende ist.  Sein "best in the world"-Gimmick ist einfach unglaublich cool. Am Mic ist er ohnehin einer der Besten und im Ring kann er auch mit den größten Gurken überhaupt gute Matches aus dem Hut zaubern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ProGraps2018wrote on 17.02.2015:[9.0] "There isn't much I can say about Punk that hasn't been said already. He was a great worker, and one of the more entertaining people to watch every week, whether a heel or face. Though a lot of his WWE stuff was rehashed from his time on the indies, I'm ok with that because it worked."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mantafahrerwrote on 29.01.2015:[10.0] "Hahaha, CM Punk hat keine Ausstrahlung und ist schlechter als Cena? Ich kann mir nichtmal ein Paralleluniversum vorstellen, wo das möglich wäre, absoluter Nonsens, persönliche Meinung hin oder her. Kann Punk überhaupt nicht ausstehen, finde er ist ein egoistisches Schwein bis zum Abwinken, aber ich muss ihn als Wrestler bewerten und da kann man in Anbetracht des Charisma, der Skills im Ring und am Mikro sowie den Einfluss auf die Wrestling-Welt nicht weniger als die Höchstpunktzahl vergeben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Akeldemawrote on 29.12.2014:[10.0] "Einer der besten Worker aller Zeiten. Bereits zu ROH-Zeiten absolut klasse, aber erst in der WWE wurde er zur Legende. Top Mic-Skills (einer der Besten überhaupt), tolle In-Ring Fähigkeiten, war involviert in großartigen Fehden (z. B. John Cena 2011) und hatte im Gegensatz zu vielen anderen Kollegen unglaubliches Charisma. Weniger als 10 Punkte kann und will ich nicht vergeben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ggultra2764wrote on 25.12.2014:[10.0] "The complete package of an excellent pro wrestler. He had a varied moveset, was one of the best mic workers in recent years and could work well as both a face and heel. A shame the WWE was rather clueless at points with how to effectively utilize the talents he offered up."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: tobimexicanwrote on 25.12.2014:[3.0] "Promos sind etwas was er kann. Und ja er besitzt eine Gute Technik. Aber ich kann diesen Jammerlappen nicht ab. Er Erinnert mich an einen Talentierten Ultimate Warrior, bei ihm hab ich das gefühl das das Best of the World geschreie ihn zu kopf gestiegen ist. Würde mich nicht wundern wenn er bald seinen realen Namen auch bald in Punk ändert."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tzarwrote on 21.12.2014:[10.0] "The absolute complete package as a wrestler, a man of a strong personality in real life.  One of the few best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Heel MaSchwrote on 16.12.2014:[10.0] "Für mich DER Wrestling Star der letzten zehn Jahre. Zu Beginn seiner WWE Karriere noch ein farbloses Babyface, dass von seinen guten Matches und seiner Reputation die er sich als "King of Indies" über Jahre vorallem durch seine Auftritte bei ROH und IWA-MS erarbeitet hatte lebte. Nach seinem ersten Heel Turn konnte er seine tolle Ausstrahlung und vorallem sein weltklasse Mic-Work auch endlich auf der großen Bühne präsentieren. Nach seiner legendären Pipebomb Promo und dem Summer of Punk 2011 stieg er dann in Sphären auf in denen ihn die Internetfans schon seit Jahren gesehen hatten. Das trotz des historisch langen Titelruns nicht der verdiente Wrestlemania Mainevent rausgesprungen ist meiner Meinung nach ziemlich schade."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NightShadowWarriorwrote on 12.12.2014:[10.0] "Super Wrestler Mic Work TOP aber er muss jetzt darunter leiden das "Dwayne" zurück kommt und seine Filme vermarktet"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Eagle Whiskeywrote on 02.12.2014:[8.0] "Für mich als Powerhouse Fan ist Punk etwas zu mickrig. Dennoch stellt er natürlich eines der besten Gesamtpakete im Wrestling dar. Leider gefiel mir die Rollen die er in der WWE spielen musste fast nie!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Muyo90wrote on 23.11.2014:[9.0] "Ich muss zugeben, dass ich lange Zeit kein wirklicher Freund von CM Punk gewesen bin. Das lag keineswegs an seinen Ring-Skills. Aber irgendwie gefiel mir sein Gimmick überhaupt nicht. Das änderte sich dann als Leader der New Nexus: Ab dort an hab ich ihn gefeiert, da er dort reihenweise Top Promos abgeliefert hat. Seine Matches waren stets auf hohem Niveau, sodass man mit Fug und Recht behaupten kann; CM Punk war einer der besten seines Faches. Leider hat er viel zu früh aufgehört.  10 Punkte gäbe es für ein WWE Comeback ;)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Arrow-Squadwrote on 03.11.2014:[6.0] "Konnte mich nie wirklich packen. Er war sehr gut am Mic und hat seinen eigenen Look, aber im Ring fand ich ihn immer sehr langweilig."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Geronimowrote on 02.11.2014:[6.0] "CM Punk ist ein sehr guter Wrestler, keine Frage. Aber was er Privat abzieht ist ja wohl unter allerster Sau ! Er verklagt die WWE, nur weil er im neuen WWE 2k15 ist ? Das ist doch einfach lächerlich. Der Mann hat genug Geld und es ist sogar eigene Promo für ihn und er verklagt die WWE ?   Lächerlich !   Wrestlerstil: 9 Punkte.  Privat: 0 Punkte !  Insgesamt: 6 Punkte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Viper99wrote on 29.10.2014:[10.0] "Er ist einfach der Best in the World! Er ist genial am Mic, erstklassig im Ring und einer der sich 24/7 lang den Ar*** für die WWE aufreißt. Er wird im moment zwar als Mädchen dargestellt das nur rumheult, ABER er hat auch guten Grund rumzuheulen. Er wurde einfach seit Jahren ignoriert. Er musste seine 434 Tage als Champion an The Rock verschenken. Er stand noch NIE im Main Event bei Wrestlemania, aber The Miz darf rein(Miz ist warlich kein schlechter aber schlecht im vergleich zu Punk). Really WWE Really.  Trotzdem alles in allem ist er der beste Worker in der WWE und meiner Meinung nach neben Cena das Face der WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JasonSummerswrote on 01.10.2014:[10.0] "He is best in the world he has great moves because of wwe he left wrestling what a shame for wwe they never learned how to use a wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Y2J316wrote on 28.09.2014:[10.0] "Kann dem Bodenwischer nur 10 Pkt. geben. Er brachte viel frischen Wind in die WWE zurück. Mochte seine Matches und seine Mic skills waren auch super. Schade das er die WWE verlassen hat. Hoffe das er eines tages nochmal zurück kommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: EvilPriestwrote on 17.09.2014:[4.0] "Not very fast nor agile, bad high flyer but decent technical wrestler with good promos. He acted like a little bitch with his departure, WWE doesn't need this guy. He doesn't deserve the hype he's got, there are hundreds of better wrestler than him, in PWG he would look ridiculous right now..."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 8BitLegendwrote on 07.09.2014:[6.0] "War als WWE Wrestler körperlich bereits auf dem absteigenden Ast, machte dies aber durch seinen smarten und kontroversen Charakter gut und war dennoch in der Lage das ein oder andere gute Match zu zeigen. Leider besteht ein Teil der Kontroverse auch daraus, dass Punk auch real wenig umgänglich ist, wie er es nicht nur über Social Media, sondern auch durch seinen unrühmlichen, egoistischen Abgang letztlich bewiesen hat. War Voreiter einer Generation von Indie-Wrestler wie Sami Zayn oder Cesaro in der WWE, diese haben ihn in vielerlei Hinsicht bereits überflügelt, so dass Punks Vermächtnis letztlich die Kontroverse um seinen schwierigen Charakter bleiben wird."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Man of Steelwrote on 22.08.2014:"Ja, der Liebling der IWC der Riesen Pops bekam und sich dann wie eine DIVA ohne Snickers verzogen hat weil es nicht nach seinem gusto ging... Ja schön er muss Verletzungen auskurieren, das muss ein Bryan auch und kann trotzdem Stellung beziehen. Für einen großartigen Wrestler und eine ebenso großartige Diva gibts nicht mehr als 5... Edit: da er ja nun wohl wirklich aufhört.. nö, einfach nur nö..."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: zackwoowoowooryderwrote on 20.08.2014:[10.0] "Zurecht "The Best in the World". Einer von wenigen die es geschafft haben in der Indie-Szene zu den Topleuten zugehören und dann auch noch beim Marktführer sich an die Spitze zuwrestlen. Seine Fähigkeiten am Mic werden von keinem überboten und auch im Ring gibt es nicht viele die besser sind als er. Schade das er aufgehört hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: stytcheswrote on 14.08.2014:[10.0] "The Best in the World - auch wenn er unterdessen den Ring verlassen hat hinterlässt er eine unglaubliche Karriere die ich quer durch die Indies bis in die WWE verfolgen durfte. Mein Favorit der 00er und 2010er Jahre, ohne Frage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Phenomenal91wrote on 26.07.2014:[10.0] "I'm changing my original rating for this man because I don't think I'm doing him justice. Not only is this man a great wrestler who is the total package, he also did the impossible: he went from indy superstar to ruler of the WWE all on his own terms, never once compromising his vision or integrity. No garbage storylines, no hogging the spotlight, no backstage politics-he conquered the WWE and did it all when the stuffshirt "higher ups" didn't believe he could or should. He's an inspiration. I hope he's not done with wrestling forever, but I admire and respect him for everything he's done for the sport. He'll go down in history as one of the greatest. Long may he be the Voice of the Voiceless."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bolievewrote on 23.07.2014:[10.0] "Was soll und kann man zu CM Punk sagen? Ja, er ist aus meiner Sicht der beste der Welt, ohne jeden Zweifel!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Johnmydietsodawrote on 16.06.2014:[10.0] "CM Punk isn't the most athletic guy around. He's not big. But he's very good. He is absolutely money on a microphone, one of the best I've ever seen. Though I find him to be a better heel, he is great as a face or a heel. Despite not being naturally athletic, he worked at his craft, and became a great in ring performer anyways. He's not some freak of nature or a blue chip athlete with a great pedigree. He's a dude who loved wrestling and worked hard at it. He's got charisma, and great story telling ability. He is the whole package in my opinion. He's a special talent, and one of the greats. He has a special chemistry with John Cena as well, as they showcased many times, most notably at MITB in 2011, and on Raw in Feb 2013 with Cena's mania title shot on the line. I hope we see him in a WWE ring again someday. If not, he's still one of the all time greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Surviv0rwrote on 15.06.2014:[10.0] "Der hat mit seinen Abgang ein Riesenloch im WWE-Roaster hinterlassen. Er ist unterhaltsam, ein sehr guter Techniker und mobilisiert die Massen. Seit er weg ist gucke ich bei RAW und Smackdown nur noch ab und an rein. Zu viel 0815."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hirnklopswrote on 12.05.2014:[7.0] "Abwertung. Das "Complete Package" der WWE zeigte zum Ende hin mehr als deutliche Abnutzungserscheinungen, und wenn der Walk-Out keine Storyline ist, dann MUSS ich ihm Punkte abziehen. Das hätte man anders regeln können, und nicht Tausenden von Fans den Rücken zudrehen. Klar, man kann ausgebrannt sein, aber dann sollte man halt 'ne Auszeit nehmen, gelber Urlaub vom Doc. Aber ich kann mich irren, und es war eine Story, Punk kommt bald wieder und hat die Welt getrollt. Dann geb' ich ihm 20 Punkte, und wenn ich dafür die Seite hacken muss. Wofür ich erst mal wieder meine Skills auffrischen müsste. Wenn ich sowas tun würde."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Steenericowrote on 11.05.2014:[9.0] "Schade, dass CM Punks Durchschnittwertung so runtergezogen wird, nur weil er eine eigentlich nachvollziehbare Entscheidung (sofern natürlich die genannten Gründe für diesen Schritt stimmen sollten, wovon ich aber mal ausgehe) getroffen hat. Punk ist ein toller Wrestler mit hervorragendem Mic Work, der sowohl in der WWE als auch in den Indys für viele tolle Momente gesorgt hat. Ich gebe ihm neun Punkte, die er sich durch seine Leistungen mehr als verdient hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wwefan98wrote on 11.05.2014:[9.0] "einer der besten Wrestler überhaupt. Ich verstehe nur nicht so ganz warum er mit seiner Aktuellen rolle unzufrieden war. Ich meine er hat doch alles ereicht was man bei der WWE ereichen kann da ist es doch mal nicht so schlimm wenn man dann mal etwas in dei Minecard gesetzt wird. Aber so Ringtechnisch einer der besten und am Mic sowiso."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sign squadwrote on 28.04.2014:[7.0] "So CM Punk is a solid talker, he is charismatic, he is also an above average worker, but he is one of the worst wrestlers you have ever seen? Sure sounds like a perfectly valid explanation. Punk ist in der Tat erschreckend unsportlich für jemand in seiner Position. Da Sportlichkeit glücklicherweise kein KO Kriterium ist, bleibt da seine große Klappe, die sehr amüsant ist. Seine Arbeitseinstellung ist stark abhängig von dem Programm, in dem er steckte. Jetzt ist er raus, kommt vielleicht nicht wieder, tja, kannst nix machen. Warum man aber als finanziell abgesicherter Wrestler nicht einfach einen Schlußstrich ziehen darf, ohne dafür diese extrem unreflektierte Schelte von der "IWC" zu kassieren ist für mich nicht wirklich begreifbar. Als Pro-Wrestler hab ich ihn fast immer (außer bei TNA oder ECW V3. 5) gerne gesehen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Flang2806wrote on 21.04.2014:[10.0] "Geilster wrestler aller zeiten , ich hoffe er kommt zurück aber das glaube ich nicht das wär eine zu geile storyline"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Chris1201wrote on 17.04.2014:[9.0] "Nicht umsonst als einer der Besten gehandelt. Im Ring mehr als gut. Am Mic war er einfach unglaublich stark."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Shogun1996wrote on 14.04.2014:[10.0] "CM Punk one of best wrestlers in the planet NOW. His mathes is beautiful and wonderful! His mic skills is awesome! He - BEST IN THE WORLD!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Yesyesyes98wrote on 12.04.2014:[10.0] "One of the best superstars of all time in my opinion. He is flawless on the mic and is simply outstanding in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DanielBryan1986wrote on 31.03.2014:[8.0] "CM Punk hatte es Anfangs schwer in der ECW. Auch nach Sieg bei Wrestlemania 24 im Money in the bank sollte es nicht funken. Für mich machte er erst 3Jahre nach Debüt eine gute Rolle. 2013 nur gutes match gegen Undertaker und 2014 der unrühmliche Abgang."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Shankwrote on 26.03.2014:[10.0] "Great wrestlers, entertainer, story teller, promo cutter. Great at everything. There is a reason why legends respect him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Slyderwrote on 18.03.2014:[10.0] "Ich versteh' nicht, wieso man CM Punk nach dem, was grad passiert bewertet. Ob er nun noch bei der WWE unter Vertrag steht und auftritt oder nicht, hängt doch wenig von der Wertung ab, oder? Hell, wie'n Tunnel die Menschen hier.   Mich hat CM Punk über die Jahre immer sehr gut unterhalten. Jede Storyline mit ihm, war einfach perfekt umgesetzt (Obwohl ich die von ca. 2007-2009 mit dem WHC nicht ganz so geil fand). Wer CM Punk also nach aktueller Storyline "disliked" sollte sich vielleicht mal "Best In The World", die DVD von CM Punk geben. Diese DVD erspart mir jetzt einiges an Schreibarbeit. :P  Natürlich hoffe auch ich, dass alles gerade Storyline ist und er nicht wirklich geht. Falls das aber nicht der Fall sein sollte, "CM Punk bei ROH" "CM Punk bei der UFC" "CM Punk bei TNA". Mehr muss ich nicht schreiben, oder?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: rockcitizenwrote on 10.03.2014:[10.0] "Best. In. The. World. Mehr braucht man zu ihm eigentlich nicht zu schreiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DieOffenbarungwrote on 09.03.2014:[10.0] ""Best in the world"... vermutlich nicht, aber sicher nicht ganz unbegründet. Wollte hier eigentlich nur 9 Punkte geben, da mir im Ring noch etwas fehlt! ;) Aber wie könnte man jemand weniger geben der so hart arbeitet! ? So oft Heel geturnt und dann wieder Face, gefällt mir in beiden Rollen sehr gut. Aber nicht nur von den Rollen überzeugend, ebenfalls am Mikro. Bei beiden würde ich ihm eine klare 10 geben, im Ring nicht immer perfekt, daher hier die 9! Insgesamt sind das immer noch die 10 und die hat er verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JeffHardy3107wrote on 04.03.2014:[10.0] "Punk ist einer der besten Wrestler der WWE zurzeit. Bzw. einer der besten, den sie in letzter Zeit HATTEN, weil er ist ja nicht mehr da.. und wird ja voraussichtlich auch nicht wieder kommen, schade. Riesiger Verlust. Klar, gibt es im Roster noch welche, die etwas besser sind, aber sicherlich nicht viele. Und am Mic ist er einfach krass, ein Genie. Für mich das beste Gesamtpaket zur Zeit. Unterhielt mich die letzten 2 Jahre am meisten von Allen und hat durchaus die 10 verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: spesiniwrote on 28.02.2014:[10.0] "One of the best wrestlers ever. He combines awesome mic skills and awesome in-ring skills. His feuds are always awesome (vs Lesnar, vs Undertaker, etc. )."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Foleysbabytoywrote on 26.02.2014:[10.0] "Phil ist zur Zeit einer der besten In-Ring Akteure in den gesamten USA. Am Mic halte ich ihn darüber hinaus für einen der Topleute "of all the time". Er hat Ausstrahlung, ist authentisch und besitzt sogar eine eigene Meinung (und wo gibt es sowas schon? ). Ganz klar das beste, dass die WWE zu bieten hat/te"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jay arewrote on 16.02.2014:[10.0] "He is indeed the best in the world. He's been a very good wrestler for a very long time. One would hope he is able to smooth out his WWE relationship eventually and return there, although I would not mind seeing him wrestle for other promotions either."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Matzinhowrote on 09.02.2014:[7.0] "Punk ist eine echte Charisma-Bombe und am Mic ein Genie. Schon zu Indy-Zeiten fand ich, dass er prädestiniert für die WWE ist. Leider hat das auch für seinen Wrestling-Stil gegolten. Der hat mir noch nie zugesagt. Zu unglaubhaft, zu spot-lastig, zu unsinnig. Selbst die Matches, die allgemein empfohlen werden oder von Meltzer gut bewertet sind haben mir nicht zugesagt. Ich hatte teilweise Mühe, nicht einzuschlafen. Insgesamt ein guter Entertainer."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: eldenaaaaawrote on 08.02.2014:[10.0] "cm punk is one of the best wrestlers right now and one of the main reason I watched wwe"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DudeLove177wrote on 04.02.2014:[10.0] "Einer der Besten die es gab. Stehe voll zu seiner Meinung. Was soll das, da kommt irgendein Ehemaliger seit langem wieder und gewinnt den Rumble. (Ins gemachte Nest setzten! ) Ob The Rock oder Brock alle schauen mal rein und werden dann gepuscht. Sollten Sie mal lieber den richtigen puschen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pratchett79wrote on 31.01.2014:[10.0] "Er mag für manche nicht der Beste sein, den es gab, gibt und geben wird, aber er ist so gut... so verdammt gut in dem was er tut. Ich sehe gerne zu wie er in den Shows Wrestling und Entertainment lebt und nehme ihm dabei einfach alles ab weil er es authentisch rüberbringt. Und darum geht es doch letztlich bei dieser Sportshow-Wrestling... die Bereitschaft alles dafür zu geben gut zu unterhalten sollte von den Offiziellen mehr gewürdigt werden wenn es so erfolgreich klappt wie bei ihm!  Von daher - auch wenn vielleicht ein Dean Malenko besser am Boden war, die reinen CatchPhrases von Rock am Mic mir immer noch mehr Gänsehaut erzeugen, ein Foley einfach irrer war, ein Undertaker legendärer ist, ein Cena... nun gut - der ist in allem schlechter ;-) - meine 10 Punkte gehen an CM Punks Gesamtpaket!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KnockoutKid13wrote on 28.01.2014:[10.0] "Perfect mic skills, awesome wrestling manuevers, charisma... itŽs simple THE BEST IN THE WORLD!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: J0KERwrote on 23.01.2014:[10.0] "The Best in the World CM Punk! Er trägt den "BITW" Titel zu recht was Punk in den letzten Jahren auf die Beine gestellt hat ist einfach der Wahnsinn! Abgesehen davon das er einen bestimmten Charisma hat den ich nicht irgendwo zu ordnen kann ist er auch ein super Wrestler im Ring! Am Mikrofon ist er das Beste den die WWE seit 10 Jahren hatte keiner weiss zu überzeugen wie Punk es tut die Mimik die er hat ist einfach super. Ebenso hat er fast alles erreicht was Titel angelangt und hat ebenfalls ein Title Run die über 400 Tage angedauert hat. Respekt! Fehden gegen Cena, Y2J, Hardy, Heyman, Orton waren Weltklasse er ist in der heutigen WWE das beste was man derzeit neben Bryan den Fans anbieten kann. Ein Mann denn man umbedingt im Ring als auch am Mikrofon geshehen haben muss! Stichwort: Pipe Bomb!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CmPunk2803wrote on 14.01.2014:[10.0] "10 verdiente Punkte für den besten Mic Worker der WWE und weit drüber hinaus. Dem nicht genug im Ring gehört er auch zur absoluten Spitze. Best in the World !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: coolm619wrote on 11.01.2014:[10.0] "Man.. What can I say about CM PUNK ? There's no need to say anything about him... It's known already... HE'S THE BEST IN THE WORLD god dammit. His charisma is brilliant and in-ring skills are just amazing, he can work with almost everyone and make a hell of a match with anyone."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: herthajasperwrote on 06.01.2014:[9.0] "Der beste aktive WWE Wrestler mit guten Mic-Skills und technisch hochwertigen Wrestling"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: yanuswrote on 05.01.2014:[9.0] "One of the biggest talents in the wrestling industry. Punk has everything - charisma, presence, mic-skills and in-ring skills. So why no 10 ? Well the guy seems to half-ass his way lately in the ring (since Summerslam 13), he gets more and more sloppy. Besides that, after his huge push in 2012 the guy is still a very mediocre draw."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CmNag66wrote on 05.01.2014:[10.0] "Für mich wahrlich The Best in the World haut ein fantastisches Match nach dem anderen Raus am Mic sowieso sensationell und auch an Charisma mangelt es ihm ganz sicher nicht, für mich das perfekte wrestlerische Gesamtpaket. Er macht für mich jede WWE Show interessanter und ist einer der Gründe überhaupt noch WWE zu gucken. Außerdem ist er seit Jahren auf einem Wahnsinnig hohen Niveau unterwegs. Er kann sowohl als Face als auch und besonders als Heel vollends überzeugen vor allem sein Heel Run 2009 war meiner Meinung nach einfach nur großartig und der Grund warum er mein Lieblingswrestler ist. Es war definitiv kein Zufall das dieser Mann den längsten WWE Championship Title Run der letzten 25 Jahre hatte, denn er ist einfach der Beste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SharpestToolwrote on 01.01.2014:[8.0] "I wish 8. 5 was an option. CM Punk has been one of my favorites since his IWA days preceding his ROH tenure, forgettable TNA run, and an up and down WWE journey.   This was easily a 9 if we were rating Punk up until his match with Jericho that was his first following his WM loss to 'Taker. I legitimately thought that what seemed to be an obvious decline regarding in-ring performance was part of some "Punk is rusty" storyline.   Nope.   He has been 60% of the wrestler he was just months prior as of that match with Jericho. He's starting to realize that his body can't hold up, and frankly, I won't be sorry to see that god-awful homage to Savage in the form of a flailing elbow become more of a rarity. The sloppy GTSs, flying calf kicks, springboard clotheslines (etc) need to be eliminated or touched up.   His mic work became outstanding starting with his feud in ROH with Raven, and is another facet of his game I would hate to see continue to decline. His anti-authority shtick was getting old BEFORE creative gave that gimmick to half of the mainevent roster, and the Paul Heyman feud dragged on far, far too long. This is an area where I hope and assume I'll see improvement, or at least a reversion to his elite status.   I would hate to see Punk tarnish his legacy permanently."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: cookie monsterwrote on 27.12.2013:[9.0] "Seit Indy Zeiten verfolge ich CM Punk, und die Shoot Promo hat echt was gerissen und die WWE etwas bedeutsamer und Glanzzeiten wieder rausgehauen. Seine Matches sind einfach genial besonders in ROH hab ich ihn extrem gern gesehen. Mic Skills hat er auch genug. Top Punk immer weiter so :)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LS Incwrote on 25.12.2013:[10.0] "CM Puck has always been a great wrestler and a fantastic entertainer so my rating must be so high."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JourneybyTrainwrote on 22.12.2013:[8.0] "CM Punk is one of the best wrestlers of his generation, both in the ring and on the mic."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: apc24wrote on 17.12.2013:[10.0] "He's Best in the World for a reason. This is proven by what he puts in the ring and how hard he's worked to make it to the top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RJLwrote on 13.12.2013:[10.0] ""The Best in the World" is certainly a well deserved title to this man. Day in and day out he proves why, he is in fact, one THE best wrestlers to ever step foot insinde a wrestling ring whether it'd be in ROH, TNA, WWE, or any other place in the world!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LordOfLimitwrote on 12.12.2013:[10.0] "Der Mann mit dem besten Mic-work der zurzeit in der WWE aktiv ist. Im Ringbist er auch ziemlich gut. Als Face finde ich ihn am besten aufgehoben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Garvinwrote on 09.12.2013:[10.0] ""In Punk we trust! " - Genau so sieht es aus. Er weiß, was er kann und was er tut. Er ist nicht der beste der Welt, da gab es andere vor ihm, die wrestlerisch besser sind oder waren. Natürlich muss man ihm zu Gute halten, dass er in einer Zeit im WWE Main Event agiert, in der er durchaus nicht alles von dem abrufen kann, was er tatsächlich kann. Auch die Zeichen der Zeit machen bei einem CM Punk nicht Halt. Dennoch unbestritten eines der besten Talente, dass die WWE in den letzten Jahren zu bieten hatte. Am Mikrofon macht ihm sowieso keiner was vor. Daher ein klarer Fall von 10 Punkten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: tgwrote on 26.11.2013:[10.0] "Die größte Hoffnung die man bei WWE seit fünf Jahren hatte. Schon zu Independent-Zeiten einer meiner absoluten Lieblingsworker, ist Punk mittlerweile wohl so etwas wie der 'Retter' des Mainstream-Wrestlings geworden. Und wem wäre so etwas zuzutrauen, wenn nicht ihm?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Dreamforcewrote on 25.11.2013:[10.0] "CM Punk ist unbestreitbar einer der größten Wrestler dieser Zeit und hat sich einen Platz in der Hall of Fame sicherlich schon längst verdient. Er zeigt im Ring eine unglaublich große Performance und ist ungeschlagen wenn es um Promos geht. Seinen Job als WWE Champion hat er grandios gemeistert und weiß Fans zu fesseln."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: showstoperwrote on 21.11.2013:[10.0] "For a long time he was the only reason to tune into Raw every week."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DrPillemannwrote on 16.11.2013:[10.0] "Der beste und wichtigste Wrestler dieses Planenten derzeit. Ausstrahlung, Charisma, Beliebtheit, In-Ring-Skills, Mic-Skills. CM Punk bringt das gesamte Paket. Ist zusammen mit Daniel Bryan derjenige, der mich wieder zur WWE zurückgebracht hat. Auch wenn ich ihn nach der Heyman-Fehde bitte, bitte, bitte in den nächsten 10 Jahren ohne Kendo-Stick sehen möchte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BretHart83wrote on 15.11.2013:[10.0] "CM Punk:Best in the World? Ich sage:Definitiv!  Weiß zu überzeugen. Egal ob als Face oder als Heel. Wobei er mir persönlich als Face besser gefällt.  Sowohl im Ring als auch am Mic großartig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Silaswrote on 13.11.2013:[10.0] "" I've proved to everybody in the world that I am the best on this microphone, in that ring and even on commentary. Nobody can touch me....... "  Es ist genauso wie er es sagt. BEST IN THE WORLD"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Undertalkerwrote on 11.11.2013:[10.0] "Ihm ist es gelungen, sich von einem typischen Vince-McMahon-Charakter zu scheiden und dennoch den Durchbruch zu schaffen. WWE war anfänglich nicht stark daran interessiert ihn zu pushen, aber er zwang sie dazu. Dies gelang ihm meiner Ansicht nach, da er einen eisernen Willen besitzt, sich nicht verbiegen lässt und wie 2011 im Summer-of-Punk gnadenlos das sagt, was er denkt. Obwohl er eben eher den Eindruck eines Indy-Wrestlers vermittelt, hat Vince durch Punks Attitüde daher letztlich doch das, was er haben will: und zwar einen Charakter, der ganz anders und größer ist, als der einer gewöhnlichen Durchschnittsperson (Larger-than-Life). Wrestlerisch weiß er genau, welcher Move zu welchem Zeitpunkt passt und versteht es somit, eine Geschichte im Ring zu erzählen. Was die In-Ring-Skills betrifft, ist das die wichtigste Eigenschaft überhaupt. Unterm Strich hat er sich die Höchstpunktzahl redlich verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SoRoNwrote on 11.11.2013:[10.0] "zurzeit der mit abstand beste allrounder (ring/mic skills, auftreten, charisma) keiner kann ihm zurzeit das wasser reichen! best in the world trifft es zurzeit schon ziemlich genau!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Goldberg82wrote on 10.11.2013:[10.0] "Im derzeitigen WWE-Roster wird CM Punk seinem Gimmick "Best in the World" gerecht. Er hat zu recht die längste WWE-Champion Regentschaft seit Hulk Hogan bekommen. Beim Summerslam 2013 gegen Broke Lesnar hat er mich wieder begeistert. Dies war ein sehr gutes und intensives Match, was beide Worker over gebracht hat. Zu dem kommen seine legendären Matches gegen Chris Hero im Indy-Bereich als auch bei RoH gegen Samoa Joe. Im Ring gefällt er mir sehr gut; die vielen Kicks, der Go To Sleep, seine Aktionen vom obersten Seil, die an den Macho Man angelehnt sind und seine hohe Beweglichkeit. Sein Start in der WWE war eher schwierig, da CM Punk als ehemaliger RoH-Champion erstmal von der WWE zur OVW gesteckt wurde. Gut, dass er mit Paul Heyman einen starken Fürsprecher hatte, welcher Ihn im WWE-Brand ECW und bei der OVW auch stark gefördert hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ProRedstonewrote on 02.11.2013:[10.0] "Einer der besten Wrestler die es je gab ! Für mich der Stone Cold der PG Era."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Clutcher-SBwrote on 02.11.2013:"Simply The best in the world he has proven it day in day out, he is no debate the best wrestler 2008-2013."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LeonAusBOTwrote on 22.10.2013:[9.0] "Sehr guter Micworker, guter Wrestler, gibt aber bessere Wrestler. In der WWE nicht zu Unrecht sehr erfolgreich. Geht mir aber mit der Dauerpräsenz irgendwie auf den Keks"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gazzawrote on 20.10.2013:[10.0] "CM Punk ist mein persönlicher Lieblingswrestler. Am besten gefallen mir seine überragenden Skills am Mic. Er ist einfach sehr charismatisch und hat einen Humor, der mir sehr gut gefällt. Abgesehen davon ist Punk im Ring auch einer der besten im amerikanischen Mainstream Bereich. Außerdem imponiert mir die Straight Edge Einstellung von Punk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WCW Foreverwrote on 17.10.2013:[10.0] "Ob Als Heel oder Face, Punk überzeugt immer. Er ist einfach THE BEST IN THE WORLD!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DJ MaSchwrote on 05.10.2013:[10.0] "Ja was soll man zu Punk noch sagen? Er ist schlicht und einfach der beste der Welt. Keiner schafft es Emotionen am Mic und im Ring so gut zu vermitteln wie er. Durch seine Intensität wirkt alles viel realistischer als bei jedem anderen WWE Superstar. Im Ring ist der "Second City Saint" schon länger über alle Zweifel erhaben und seit seiner Pipebomb im Sommer 2011 hat er uns nun auch am Mic unzählige Promoklassiker geliefert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hazzanfallwrote on 19.09.2013:[10.0] "Ich mochte Punk schon immer, aber seitdem die WWE sein Potenzial erkannt hat und ihn richtig einsetzt, bin ich richtiger Fan von ihm geworden. Vor allem einer der wenigen der sowohl als Face und Heel überzeugen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: koeddylaemmlewrote on 19.09.2013:[10.0] "CM Punk changed WWE, opening the gates for many of the big indy names to finally get their shot in the big leagues... And has it paid off! Phenomenal all around talent who always brings something special to the table."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MultiXerowrote on 29.08.2013:[8.0] ""Im the best in the World" das behauptet er immer von sich selber. Nun, ich selber kann dem nicht zustimmen. Das er ein guter Wrestler ist steht wohl außer frage, man braucht sich nur im Matchguide umzusehnen. Und auch am Mic ist er manchmal unterhaltsam, aber imo nur manchmal, denn ich finde, dass seine Promos ziemlich eintönig sind. Und auch er selbst kommt mir ziemlich Arrogant vor, das zeigt er immer wieder. Aber dennoch muss man einfach einsehen, dass er neben Cena wohl das Aushängeschild von der WWE ist. Ne solide acht von mir."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ZenHyenwrote on 28.08.2013:[10.0] "Absoluter Lieblingswrestler. Top am Mic. Top im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "Einfach unglaublich dieser Typ, was er immer abliefert ist Klasse. Klasse Charisma, ein Gott am Mic und im Ring einer der größten, wenn nicht sogar DER größte den es jemals gab und geben wird. Nur Michaels kann ihm im Ring das Wasser reichen. Ein zukünftiger WWE Hall of Famer, da bin ich mir sicher."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[10.0] "Am Anfang begeisterte mich Punk nicht sonderlich, zwar war auffällig, dass er irgendwie anders war, doch haute mich das noch nicht aus den Socken. Gegen Ende der SES hatte er mich dann in seinen Bann gezogen, und auch als Leader von New Nexus konnte er überzeugen. Zu Recht einer der am längsten regierenden Champions der Geschichte, top In-Ring-Leistung wie auch top Mic-Work. Charismatisch mit einer guten Einstellung, unterhält auf höchstem Niveau und liefert mich die besten Matches der Company ab, egal, ob nun gegen Cenas, Lesnars oder Bryans und co. ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheWALLwrote on 26.08.2013:[10.0] "Man kann meine Bewertung von 10 Punkten nur mit einem Satz erklären. Best in the World! Punk kann alles Perfekt.  Er ist der Aktuell Beste Wrestler auf der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: UnforgivenSicknesswrote on 23.08.2013:[10.0] "CM Punk hat alles was einen Wrestler ausmacht. Charisma, gutes move-Set und die nötige Motivation. Noch besser wäre es wenn er noch ein Kommentator ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HighlightHEELwrote on 21.08.2013:[10.0] "Ich werde CM Punk sicher nicht zum besten Wrestler aller Zeiten erklären. Im Ring ist er das auch im aktuellen Roster nicht, da es Daniel Bryan gibt. Am Mic ist er es in Jerichos Abwesenheit sehr wohl. Seine Promos sind immer glaubwürdig, er versteht es, seine Emotionen in diese einfließen zu lassen (weshalb er wohl im "pissed"-Modus am Besten ist) und die Crowd mitzuziehen. Das, was er im Sommer 2011 geleistet hat, bis er es nicht mehr leisten durfte, war großartig. Guter Face, der sich seiner Fans wohl stets sicher sein darf. Als Heel vor allem in der SES stark, sein Run mit Heyman wurde leider von seiner Popularität so ziemlich gekillt. Die Tatsache, dass er im Ring fast jeden zu einem besseren Match ziehen kann plus seine Pipebombs machen ihn wohl dauerhaft zum Nr. 2 oder 3 Babyface bzw. Heel (hier könnte er auch Nr. 1 sein) der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: FallingStarwrote on 21.08.2013:[10.0] "Best in the World. Do I need to say more? In all honesty one of the most complete performers not only today, but of all time! Great in the ring, can wrestle a technical match or a wild brawl. Believable both as face and as heel. Awesome on the mic. Loads of charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SecondC1tySaintwrote on 20.08.2013:[10.0] "Für mich definitiv der beste überhaupt. Egal um was es geht ob es um die In-Ring fähigkeiten geht , die Mic skills oder sonstiges er kann einfach alles. CM Punk ist für mich so ziemlich der beste beweis dafür das , wenn man einen Traum hat und dafür arbeitet man ihn auch erreichen kann. Und auch , wenn er ungerechtfertigt nicht im Main Event steht sind seine Matches meist trotzdem das Match des Abends so wie bei Summerlsam zuletzt gegen Brock Lesnar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: voicelesswrote on 12.08.2013:[10.0] "CM Punk ist der warscheinlich beste Wrestler der Welt. So gut wie Shawn Michaels oder Kurt Angles finde ich ich seine Rinskills zwar nicht (was warscheinlich daran liegt, dass er bei der WWE höchstens ein Drittel seines Könnens zeigen darf - ich kenne nur 3 seiner ROH Matches) aber bei den Micskills ist er für mich der beste aller Zeiten. CM Punk ist einer, der es schafft das Publikum für sich zu gewinnen, oder Heat zu bekommen ohne hirnlose Catchphrases, die einem auf die Nerven gehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MrFisch5wrote on 01.08.2013:[10.0] "Alter Schwede vor der epischen Promo vor Money in the Bank fand ich ihn nicht wirklich stark, lag vllt auch daran das ich noch jünger war, aber seit diesem Moment, seit dieser Promo welche wohl die beste und ausschlagskräftigste Promo der Neuzeit war ging es steil nach oben. Im Ring top und am Mic ebenso einer der allerbesten und für mich hat er jetzt schon einen wahnsinnigen Legendenstatus erreicht. Denn mir kommt es so vor das die WWE ihn und Cena jetzt schon fast auf gleichem Niveau stehen hat, denn er bekommt jetzt auch Matches gegen Rock, Lesnar, den Undertaker und ich bete zu Gott hoffentlich auch gegen Steve Austin bei WM 30. Das wäre dann mal ein Match was wirklich den Begriff , , Once in a Liftime'' verdient hätte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Alex Maedawrote on 30.07.2013:[10.0] "Auch wenn es teilweise schon sehr albern ist, wie seine Die Hard-Fans bei auch nur der kleinsten Kritik an die Decke springen, muss man einfach sagen, dass CM Punk der wohl mit am härtesten arbeitende Wrestler in der WWE ist. Das behauptet er selber, da stimmen ihm auch seine Kollegen zu (zumindestens die Leute, die sich auf der Best in the World-DVD zu Wort melden) und das nehme ich ihm auch als Fan ohne zu Überlegen ab. Man merkt einfach bei jedem seiner Auftritte, wie viel Herzblut er in seine Arbeit steckt, egal ob er eine Promo hält, egal gegen wen er im Ring steht, egal welches Gimmick/welche Gesinnung er gerade verkörpert und egal, ob er im Opener (was zwar aus dem jetzigen Standpunkt sehr unrealistisch wirkt, aber wir haben schon genug Beispiele erlebt, die vom World Champ zum Edeljobber degradiert worden sind) oder Main Event steht.  Klar, Herzblut und harte Arbeit allein reicht nicht immer, aber dass der gute Mann ein Allround-Talent ist, muss ich hier wohl nicht noch extra betonen. Zu Recht ganz weit oben hier bei Cagematch und hat sich seinen Hype, sei er manchmal noch so übertrieben, über Jahre lang hart erarbeitet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Alex91wrote on 23.07.2013:[10.0] "Er hält einfach fast immer geniale Promos und ist dazu im Ring noch einer der besten. Auf jeden Fall auf einer Stufe mit Shawn Michaels"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: babakondawrote on 21.07.2013:[10.0] "The Best In The World for real. Nobody can do it like Punk. He has everything what makes a perfect wrestler. Charisma, Moves of every type and maybe the best on the mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TripleAwrote on 12.07.2013:[10.0] ""BEST IN THE WORLD" mehr braucht man eigentlich garnicht über Punk sagen. Im Ring sehr gut und am Mic quasi unschlagbar!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Darkiwrote on 07.07.2013:[8.0] "Ganz großes Kino was er zurzeit da am Mic abliefert.  Also ohne ihn wäre Raw nur halb so gut.  Ein Punkt gibt es aber abgezogen, weil er mich seit seinen Kampf gegen Jeff Hardy in Jahre 2009 im Ring nicht mehr begeistern konnte. Edit: Muss mal die Wertung von neun auf acht nach unten korrigieren. Zwar sind seine Matches meisten immer noch gut bis Sehr gut, aber in Sachen Promos hat er gewaltig nachgelassen. Immer zu behauptet er, er wäre der beste der Welt. Wäre mal schön, wenn er eine Promo bringen würde, wo er dieses nicht behauptet. Das langweilt doch nach ein Zeit sehr. Acht punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sir Vida Loca IIIwrote on 06.07.2013:[10.0] "Meiner Meinung nach der aktuell beste Wrestler. Im Ring gehört er mit zu den besten und sein Mic-work überzeugt sowieso. AUch wirkt er, sofern sein Gimmick dies zulässt - immer Authentisch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Ruwrote on 02.07.2013:[10.0] "Truly the Best in the World in the ring, on the mic, even at commentary. Nobody can touch him!  Even a heel turn failed to ruin his popularity with "CM Punk" chants ringing out against greats like The Rock and the Phenom himself, the Undertaker!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Swarley Stinsonwrote on 28.06.2013:[10.0] "Auch, wenn ich ihn früher nicht leiden konnte, so ist er doch mittlerweile einer der Besten Wrestler ever. Er hat eines der besten Micworks und ist ein absolut hochleistungs Allrounder. Er holt immer das beste aus jedem seiner Gegner raus. Legen.. wait for it.. där'es match bei WM gegen den Taker. Muss auch früher oder später wieder der WWE Champ sein. Super Gimmick und Ausstrahlung, er Elektrisiert, wie einst The Rock."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: lesnabiswrote on 27.06.2013:[4.0] "The best cheater of the wold 2012. Some wrestlers like Sammartino or Cena has worn the WWE belt with honor or dignity, the 2012 PUNK's reign's championship matches has been tainted with a lot of external interventions and cheats. Starting as a hero the megalomania psychotic character he chose ruined great part of his popularity.  If Cagematch want to be so trick in his rating difficult to understand why they are not deleting the 59 guys who rated 0 the 11 times WWE champion John Cena."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DaNiwrote on 25.06.2013:[10.0] "Eine glatte 10! Konnte seinen Weg lange Zeit verfolgen, mittlerweile ist er einfach einer der größten Wrestlingstars weltweit. Ein Typ, der ohne unnatürliche Muskeln und große Powerhouse Skills ganz oben mitspielen kann ist sowieso eine seltenheit. Nun schafft Punk es auch noch seinen Stil den anderen Gegner aufzuzwingen. Was er beispielsweise aus Cena rausholt ist einfach bombastisch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AlanArcadewrote on 14.06.2013:[10.0] "Einer der besten Wrestler, die es heutzutage im Business gibt. Ich habe CM Punk seit seiner Ankunft in der WWE beobachtet und hoffte immer, dass er eines Tages WWE Champion wird und er wurde nicht nur Champion sondern auch der längste, des letzten Jahrzehnts, was ich mir bei John Cena nur zu träumen erhoffte. Schade, dass das Ganze einfach so wegen Cena vs Rock weggeworfen wurde. Es ist eine Schande..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: marcogiannelliwrote on 11.06.2013:[10.0] "the best in the world! my favourite wrestler after The Undertaker"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AdRwrote on 24.05.2013:[10.0] "CM Punk ist einfach ein Gott des Wrestlings. Momentan der beste in der gesamten WWE. Er funktioniert als Face genauso wie als Heel. Seine In-Ring Skills sind genauso wie seine Mic Skills überragend. Es ist nur ein bisschen schade, dass er aktuell als ein Feigling dargestellt wird. Das ist aber noch lange kine Rechtfertigung für einen Punktabzug. 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Unrated Superstarwrote on 18.05.2013:[10.0] "Nach Edges Abgang mein absoluter Favorit in der WWE (Lesnar tritt ja nur Teilzeit auf)! Neben Jericho und Daniel Bryan gehört er immer noch zu den glaubhaftesten Charakteren, die man momentan in der WWE vorfindet. Sein Straight Edge Heel-Gimmick in der Fehde gegen Jeff Hardy hat mir schon gut gefallen und auch sein Werdegang nach der legendären Pipe Bomb-Promo ist beachtlich (auch wenn seine lange Titelregentschaft von Hollywood Rocky beendet wurde). Mal schau'n mit was Punk uns demnächst wieder überrascht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: rapha0702wrote on 15.05.2013:[10.0] "Es ist nicht nur ein Gimmick, für mich ist CM Punk wirklich "The Best in the World".  Er ist ein perfekter Techniker und hat mit die besten Mic Skills in der WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheIbarwrote on 03.05.2013:[10.0] "When CM Punk first came into WWE, he was so fresh that nobody knew what to do with him. But Paul Heyman took this talented young man under his wing and right now we have first-class superstar. He had something special, something that other guys didn't have. And he little by little made his way to the top of professional wrestling. Coming from an indy promotion, CM Punk showed the whole world that he can be one of the hottest professional wrestlers in WWE. And he remains one of the hottest superstars right now. His promos are cutting-edge and his matches are outstanding. For me the best period in his career was the feud against Jeff Hardy and the whole unimaginably good Straight Edge Society times. He was the cult of personality back then. And, for sure, we still see the cult of personality in his eyes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: believeintheshieldwrote on 02.05.2013:[10.0] "Der zurzeit beste Wrestler den die WWE zu bieten hat! Hervorragende Ringfähigkeiten und gute Schauspielkünste. Er ist sehr Überzeugend in seiner Rolle als Heel, hat mir aber auch als Babyface gefallen, daher 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BrahmaBullwrote on 17.04.2013:[10.0] "Man dieser Typ hat einfach echt alles um in diesen Business erfolgreich zu sein! Und das ist er allemal! Ausstrahlung /Charisma, In-Ring Skills, perfektes Micwork! Zur Zeit das beste was speziell die WWE zu bieten hat. Daher bekommt er von mir völlig zurecht 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Freyr33wrote on 16.04.2013:[10.0] "CM Punk ist für mich einfach ein wunderbares Komplettpaket.  Gute Mic-Skills, gute In-Ring Skills, sowohl als Heel als auch als Face optimal. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: the headlinerwrote on 11.04.2013:[10.0] "Das beste was die WWE momentan zu bieten hat, guter face, guter heel, guter athlet und der beste mic- worker momentan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: derboerner90wrote on 10.04.2013:[10.0] "CM Punk darf sich vollkommen zurecht als "Best in the World" titeln.   Die Ringfähigkeiten suchen ihresgleichen und außerdem ist er am Mic einfach unschlagbar!   Sowohl als Face als auch als Heel eine feste Größe der WWE und momentan einer der wenigen Gründe Wrestling noch zu verfolgen....   Zu den Kritikern die sein teilweise "Angsthasen-Image" kritisieren (als Heel) : Man sollte bedenken das alles gescripted wird und das sicher nicht seiner Art entspricht!   BEST IN THE WORLD!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HooliNerdwrote on 10.04.2013:[10.0] "Das beste Beispiel wie es funktionieren kann in der Wrestling-Welt. Ein Gott am Mic und im Ring. Er hat alles erreicht und das schon mit Mitte 30. Best in the World!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: corbywrote on 09.04.2013:[10.0] "Er unterhält mich am besten kann mir jede Fehde geben sowie Matches. Gut bis Fantastisch im Ring. Am Mic gut und sonst ist überall zu gebrauchen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KevinMichaels79wrote on 28.03.2013:[9.0] "Das beste Gesamtpaket, dass es momentan in der WWE gibt. Ein zukünftiger Hall-Of-Famer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: gil3boywrote on 19.03.2013:[10.0] "One of the greatest heels of all time. He is very talented and knows MMA. Before he debuted in WWE, he won his first world title in Ring of Honor. When he debuted in WWE he was a fan favorite in ECW, later on he won the ECW heavyweight title. He also won the World Title, WWE title, Tag Team title and Intercontinental title in WWE. He is one of the greatest WWE champions of all time having a 400+ title reign. He possesses great mic skills and makes good promos."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mizisawesomewrote on 13.03.2013:[8.0] "Hier ist die traurige Wahrheit: Punk ist lange nicht mehr so gut wie er vor 2-3 Jahren noch war. Seine Promos sind das einzige was beständig gut geblieben ist. Doch körperlich sieht er überhaupt nicht mehr wie Wrestler aus. Wenn man da an sein WWE-Debut denkt: Da sah er wirklich noch ordentlich durchtrainiert aus, aber jetzt: Na... ja. Aber auch im Ring hat er arg nachgelassen. Für mich nur noch 0815-Matches in der letzten Zeit. Das mag vielleicht an seinem Aufstieg liegen. Aber ich als einer der größten Punk-Fans aller Zeiten erlaube mir einfach mal meine Bewertung runter zu korrigieren. Aber unter 8 wird sie auch nie gehen, dafür hat er zu viel geleistet in seiner Karriere."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "Best in the world isn't just a catchphrase, it's the truth. It's a shame WWE has never truly appreciated him, since even during his 14-month-long WWE title reign, he was taking a back seat to John Cena most of the time, and they made him lose the title to a part-timer in order to give Cena the big WrestleMania win."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Titansrevengerwrote on 06.03.2013:[8.0] "Punk seems like an underated 9, but I think that he is a high 8. He is somewhere in between an 8 and 9 given that is even possible. I believe that the common denominator is that Punk is really.. really good when he steps between those ropes. He has such an eclectic style of moves, that are interchangeble and extensive. He seems to bring out the right stuff at the right time. If it's time for a tap out, bring out the anaconda vice, if it's time for a ko unleash the GTS, or simply use a roundhouse kick. CM Punk is the best wrestler that the WWE has seen in sometime. He has proven that he can wrestle just about anyone and have a good to great match. His matches against John Cena are proof of this. His mic work is simply brilliant, he can talk on end for hours and not bore. His achilles heel might be his lack of size, because lets face it the guy is pretty scrawny. However his tatooed body unique and interesting and adds to his character. The guy just has so much in his favor, he's going to be hovering around the main event for along time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jake Westwrote on 28.02.2013:[10.0] "Wie kann man CM Punk nur 0 - 7 Punkte geben mit der Begründung er langweilt einen oder er hat im Ring nichts drauf. Was soll das. Cm Punk hat das geschaft was sonst keiner geschaft hätte seid 2011, nicht einmal Super Cena. Er hat eines der bestn Raw matches aller Zeiten gezeigt trotz eines Infekts. Er ist zurzeit auch einer der besten Wrestler die es gibt. Sein Mic Work ist sehr gut. Und mir persönlich hat er den Spas am Wrestling zurückgehohlt. Von mir aus hätte er ruhig weiter Champion sein können und bei Wrestlemania gegen Cena antreten, dort gewinnen dann den neuen Gütrel vorstellen und mindestens bis zum Summerslam Champion bleibn. Es ist ein Witz 1, 5 Monate Raw ohne Champion und dann Cena als Champion. Und jemand hat geschrieben er hat kein Charisma, schau dir mal Raw an und hör auf Scheise zu erzählen #CMPunkBestInTheWorld"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jack Slaterwrote on 28.02.2013:[10.0] "Völlig gleich ob man Ihn nun mag oder nicht. Weniger als 9 ist mal gar nicht drin. CM Punk ist technisch herausragend, sehr athletisch und generell in seiner In Ring Performance kaum zu überbieten. Dazu hat er, was einigen großartigen Technikern leider fehlt. Charisma und sehr gute Mic Skills. Nicht jede Promo gefällt, aber das passiert auch den Besten. Lustig finde ich eher, wie angestrengt er versucht als Heel durchzugehen aber einfach viel zu beliebt beim WWE Universe ist um das zu schaffen. Zwar bin ich keineswegs ein Fan von Punk, aber er ist einfach "sehr gut" - heißt also ich finde ihn ebenfalls zu gut um ihn nicht zu mögen und ich freue mich bereits riesig auf das Match gegen den Taker ! Wie gesagt, weniger als 9 ist überhaupt nicht drin. 10/10 sind absolut gerechtfertigt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: UndertakerChriswrote on 21.02.2013:[10.0] "Um es kurz zu halten, Punk ist momentan einer der Besten, wenn nicht sogar DER Beste. Er lieferte seit 2009 durchgehend die besten Fehden ab und holte aus jeder alles raus! Sei es gegen Hardy, Mysterio, Cena, Del Rio, oder die Zahnfee. Es ist wohl auch kein Zufall, dass Letzterer eine niedrigere Bewertung hier auf CM hat als Punk.  Über ein Jahr und mehr als 400 Tage WWE Champ, das muss mal jemand nachmachen [dürfen]. Dazu kommen großartige Leistungen trotz mangelnder Beachtung von Seiten der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Machisiowrote on 18.02.2013:[10.0] "Zurzeit das Beste was die WWE zu bieten hat! Für mich ganz klar the best in the world!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Diggertakerwrote on 13.02.2013:[9.0] "CM Punk is the best wrestler of 2011 and 2012. Indie-like impactful move-set and WWE-like charisma and mic-skill. Even when he wrestled on the independent circuit, he had a mic skill better than many of the WWE. He's also the guy who gave an adjustment in the situation that Cena had left in WWE. But there's something about him I don't like and don't know what is."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: N8y Modianowrote on 13.02.2013:[10.0] "Top Mic-Work, Super In-Ring-Skills, weiß als Face und Heel zu überzeugen. Ein ECHTER Wrestler und kein 'Superstar'"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fabi89wrote on 11.02.2013:[10.0] "Überragende Erscheinung im Wrestling-Zirkus. CM Punk hat in den vergangenen Jahren außergewöhnliche Leistungen am Fließband abgeliefert und sich seinen Platz in der WWE-Spitze absolut verdient. Tolles Micwork, starkes Wrestling, tonnenweise Charisma und einen Sinn für Details - Punk ist ein begnadetes Allround-Paket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Irri Busenbenderwrote on 06.02.2013:[9.0] "Er ist ein wirklich sehr sehr Realer BUUUU.. deswegen 9 Punkte von mir und jetzt DW"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Wohl das Beste, was die WWE momentan zu bieten hat. Technisch unglaublich vielseitiger Mann, der nicht nur im Ring, sondern auch in Promos punkten kann. Er überzeugt in nahezu jedem Match und war verdient der längste amtierende WWE Champion seit Jahren. Er wird sicherlich auch noch die nächsten Jahre an der Spitze der WWE stehen und das zurecht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Woerpwrote on 03.02.2013:[10.0] "Vor 2006 kannte ich Punk nicht, da ich erst später ROH kennen gelernt habe (danke Flosch). Als er bei WWE ECW anfing, war er der Grund da mal öfters reinzuschauen. Ich mochte ihn immer mehr, denn Punk überzeugte im Ring und am Mic (wenn er mal was sagen durfte). Als er dann sein erstes MitB Match gewann bzw den Koffer gegen Edge einlöste, bin ich ausgemarkt. Nach dem Title-Run hatte ich Befürchtungen, dass man ihn fallen lässt. Aber er hat sich aus dem Loch hochgearbeitet, alle im Weg liegenden Steine weggekickt. Seit seiner Fehde gegen (den von mir verhassten) Jeff Hardy gehörte er zu den wenigen Gründen, warum ich WWE treu blieb. In 2010/2011 hat er es dann geschafft, dass CM Punk mein absoluter Lieblingswrestler seit Stone Cold ist. Seit über zehn Jahren Wartezeit also hab ich wieder einen All Time Favoriten. Der Einzige der da noch rankommt, ist Daniel Bryan. CM Punk = Best in the World!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AirStarwrote on 31.01.2013:[10.0] "Wohl einer der besten Wrestler die je einen Wrestlingring betreten haben. CM Punk vereint einfach alles was ein Superstar haben muss. Perfektes Mic Work, Super In-Ring Skills und natürlich noch die perfekte Ausstrahlung für sein Gimmick. dazu passt natürlich die Gimik und Gestik bei ihm genauso wie sei Gottgegebenes Charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gomphwrote on 31.01.2013:[10.0] "Ist seit langer Zeit mein Hauptgrund überhaupt noch WWE zu gucken. Im ring ein äußerst talentierter, vielseitiger Wrestler der in der Lage ist mit jedem Gegner ein gutes Match abzuliefern und sich mit allem Recht "Best in the World" nennen darf. Am meisten gefällt mir jedoch sein Mic-Work. Seine Promos sind erfrischend anders verglichen mit dem anderen Kram der jetzigen Era. Er ist ein verdammt guter Redner, der gerade als Heel meiner Meinung nach sehr authentisch wirkt. Gerade jetzt im Moment, wo er selbst Rocky am Mic blass aussehen lässt, spricht dafür das er einer der Besten am Mikro überhaupt ist. Ich könnte im stundenlang zuhören! Auch wenn die WWE sein Potenzial erst spät erkannt hat ist er doch jetzt - gerade nach dem langen Titelrun - auf dem besten Weg sich langfristig als Top-Star zu etablieren. Ich freu mich drauf, ist bestimmt noch weiter Luft nach oben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sandman16wrote on 20.01.2013:[10.0] "Ein großes Talent, gar keine Frage. Verfügt über Charisma, ist sehr gut im Ring - auch wenn er da bei der WWE noch nicht alles/soviel zeigen durfte - und am Mic kann er auch überzeugen. Er hat ganz bestimmt eine große Zukunft vor sich und ich bin gespannt drauf, wie sein weiterer Weg verlaufen wird. Update: Sensationell wie sich Punk entwickelt hat, seitdem ich den Kommentar hier veröffentlicht habe. Das Beste was die WWE seit langen zu bieten hat und das wird auch zukünftig erst mal so bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: fcwieslawrote on 18.01.2013:[10.0] "Seitdem er angefangen hat mit der Straight Edge Society finde ich ihn einfach nur Geil... Sagenhaftes MicWork! Vorher nicht so, aber jetzt hat er den Dreh raus... Im Ring ist er auch sehr gut und deswegen sehe ich eine gute Zukunft für ihn! Edit: Tatsächlich der Beste der Welt... Naja zumindest aus WWE-Sicht... Seine Promos zünden immer, er hat keinen Filter zwischen Hirn und Mund... Hat meist tolle Matches und ist eben einfach mal der längste Champion der letzten 26 Jahre verdient... Einfach Grandios. Daher die volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Heatwrote on 09.01.2013:[10.0] "Best in the World? Aktuell ja! Matches, Promos, Segmente, einfach alles was er macht macht er sehr gut. Für mich sind es die Kleinigkeiten in seinen Matches und Promos, die ihn höchst authentisch machen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dennis131wrote on 05.01.2013:[10.0] "CM Punk einer der besten momentan in der WWE.  Er hat die 10 Punkte verdient"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HeelJenniwrote on 05.01.2013:[10.0] "Ein sehr guter Worker den ich nicht mehr missen möchte. Er weis ganz genau wie er mit dem Publikum umzugehen hat und seine Leistungen im Ring ist auch spitze (auch wenn ich glaube dass er bei WWE nicht 100% von seinem können zeigt).  Ich hoffe das ich ihn irgendwann mal bei einer Indy Show erleben darf, auch wenn dafür zurzeit die Chancen nicht sehr hoch sind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Avactzwrote on 28.12.2012:[10.0] "Pipe Bomb! 2012 = year of cm punk. A lot of great matches and promo he made in this year proved that he is the best in the world. Respect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mar-Twrote on 06.12.2012:[10.0] "CM Punk ist ohne Frage das Beste was die WWE zur Zeit zu bieten hat und scheinbar hat auch die Company es endlich begriffen. Vom 5 Sterne Match mit Cena zu einer Titel Regentschaft von über einem Jahr - gespickt mit tollen Promos, tollen Matches und einem grandiosem Heel Turn per GTS gegen The Rock- hat er sich 10 Punkte verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Titanwrote on 28.11.2012:[10.0] "CM Punk ist einer der vielseitigsten Entertainer der WWE, auch wenn er nicht immer optimal eingesetzt wird. Seine Matches gegen seine Gegner waren klasse, obwohl man storylinetechnisch gerne mal ins Klo greift. Die Geschichte rund um die Straight Edge Society und Big Show hätte man sich in meinen Augen klemmen können. Dafür gefällt mir, dass man ihn zum Leader des New NeXus gemacht hatte, trotz mieserabler Darstellung zu Anfang der New NeXus Storyline. Punk gibt immer 100% und aufgrund seiner technischen Feinheiten im Ring und seiner Ringpsychologie schafft er es, ein gutes Match auf die Beine zu stellen und hinzu kommen noch seine Mic-Skills, die mich jedes Mal aufs Neue unterhalten. Es gibt nicht viele Entertainer, die ein gutes Komplettpaket abgeben wie CM Punk. Die 1-Jahr-Regentschaft spricht da für sich..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Klabauterwrote on 23.11.2012:[10.0] "Punk ist einfach "The Best in the World".   Er überzeugt im Ring und am Mic.  Sein Heelturn und seine Zusammenarbeit mit Paul Heyman sind dazu noch das i-Tüpfelchen.  Allerdings darf sich sein Heel-Gimmick in nächster Zeit nicht mehr nur auf das "Respect"-Getue beschränken, sondern es muss dann auch wieder was "Neues" kommen...   Im Moment hat sich Punk aber die 10 Punkte mehr als verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: swantom98wrote on 20.11.2012:[9.0] "Als erstes möchte ich sagen, dass CM Punk ein sehr großes Talent ist und seine Sache im Ring und am Mic sehr gut macht. Dennoch gibt es nur 9 Punkte da mir sein derzeitiges ŽŽBEST IN THE WORLD``nicht gefällt und er 24 h von Respekt labbert. Da fand ich sein straight edge Gimmick z. B. in seiner Fehde gegen Jeff Hardy sehr viel reizvoller.  Aber die 9 Punkte hat er sich Dank seiner genialen Mic-Skills und seinen In ring Skills verdient.  Vielleicht gibt es die 10 Punkte noch, wenn er sein Gimmick ändert."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JuliTheCage87wrote on 18.11.2012:[10.0] "Was soll man zu ihm noch sagen? Von der Indy- zur Mainstreamlegende, grandiose Promos und bessere MicSkills als Mick Foley, Steve Austin oder The Rock. Er wäre zu Attitude- oder Ruthless-Agression-Ärazeiten wahrscheinlich als ihr größter Star hervorgegangen, da er ein genialer Techniker ist und die WWE bei ihm als einer der wenigen Wrestler weiß, wie man ihn bookt. Die Segmente sind echt zum Dahinschmelzen und er ist immer noch der, der mich an der WWE festhält, trotz PG. Best Wrestler In The World, und das zurecht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BestInTheWorld96wrote on 25.10.2012:[10.0] "Er ist das beste was die WWE derzeit zu bieten hat. Stark am Mic und die In-Ring Skills sind herrausragend (auch wenn er oftmals nicht sein ganzes Repertoir zeigen darf). Völlig verdient ''The Best in the World''!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Greedy7wrote on 12.10.2012:[10.0] "Der aktuell beste Wrestler der Welt. So wie CM Punk sich selbst zitiert: The best in the world! Seine Mic-Fähigkeiten sind jetzt schon legendär, die selbst Rockys fast in den Schatten stellen. Seine In-Ring Skills sind perfekt, sowie die von Daniel Bryan. Ausstrahlung und Charisma hat der Junge einfach, da kann man nichts sagen. Das einzige was mich momentan ein bisschen stört ist, dass die WWE ihn als einen ängstlichen Heel hin stellt, bitte man kann doch nicht Mr. McMahon nicht stärker wirken lassen als den Champ, aber das ändert nichts, dass CM Punk einfach nur AWESOME ist.  Ps. WWE lasst ihn solange Champion sein wie es nur geht, am besten bis zur nächsten Wrestlemania."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: tobiwrote on 04.10.2012:[10.0] "Er macht einfach momentan den Unterschied aus. Beherrscht wrestlerisch diverse Stile, ist zudem äußerst charismatisch, mit Ecken und Kanten, in seiner jeweiligen Rolle also stets glaubwürdig. Sein Move-set und sein Erscheinungsbild gefallen mir zudem sehr. 10 Pkt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: goofy1991wrote on 02.10.2012:[10.0] "Für mich das aktuell kompletteste Gesamtpaket. Im Ring ist er sehr stark, am Mikrofon einer der besten überhaupt und auch vom Charisma her absolute Spitze."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cartman099wrote on 14.09.2012:"Sehr geehrtes Cagematch-Team.  Ich bin zwar ein großer Fan von eurer Seite und gebe sie von Zeit zu Zeit an meine Bekannten/Kameraden weiter, die sich ebenfalls mit dem Wrestling befassen wollen. Dennoch möchte ich anmerken, das euer Kommentar "tatsächlich jedoch handelt es sich um einen freundlichen Tribut an den größten Käfig der Welt (Vielen Dank, Punk! )" mir nicht ganz so gut gefällt, weil es sich in meinen Augen wie ein hochnäsiges Eigenlob liest. Da ich nicht weiß wer die Profilseite zu Ihm angelegt hat, muss ich es wohl oder übel hier hinein schreiben und bitte darum, das ich bei einer kommenden Reaktion eurerseits entsprechend benachrichtigt werde."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: diamond dustwrote on 06.09.2012:[8.0] "Ich finde CM Punk ist sicher einer der besten Wrestler der Gegenwart, wenn er mich persönlich auch nie überzeugt hat. Das liegt vor allem daran, dass er gegen "Monster" oft noch weniger glänzen kann, als das andere seiner Zunft können. Dennoch charismatisch und am Mic eine Macht. Alles in allem eine 8 und noch Luft nach oben!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: S04TIMwrote on 01.09.2012:[10.0] "CM Punk ist einfach ein Gott in allem was er macht. Und nennt sich völlig zurecht 'Best in the world'. Er ist immer und immer wieder unterhaltsam"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LM Punkwrote on 30.08.2012:[7.0] "hat noch nicht das optimum aus seiner Karriere gemacht. Dass er als WWE-Champ oft nicht im Main-Event steht sagt rechtfertigt meiner Meinung nach 7 Punkte. Aber er hat noch Zeit. Im Ring und am Mikro im Augenblick das beste was die WWE hat. Aber er wurde in den letzten Jahren nicht immer gut eingesetzt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: deralexwrote on 23.08.2012:[10.0] "Hoffe dass sein heelturn richtig durchgezogen wird!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Killazwrote on 23.08.2012:[10.0] "CM Punk ist für mich der beste Wrestler. Er hat es überall drauf: im Ring, Mikrofon und sogar als Kommentator! Sein Storyline im Sommer letztes Jahr war die absolute Spitze, er hat es geschafft mit Cena ein 5 Star Match zu machen was man bei der WWE nicht seit den 90 Jahren gesehen hat. Ich hoffe sein Reign als WWE Champion wird so lange dauern wie es geht, seine Matches wo er den Titel verteidight waren alle außer den bei SummerSlam sehr gut. CM Punk ist einfach der Beste der Welt :D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CMPunkVotVwrote on 22.08.2012:[10.0] "Zur Zeit, einfach der beste, es macht immer wieder Spaß ihm zuzugucken bzw. zuzuhören. Einfach nur der Best in the World. Und nein ich bin nicht so Punk verliebt wegen meinem Namen, ich mag auch durchaus andere "Wrestler"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Seven c7awrote on 22.08.2012:[10.0] "The Best In The World mehr kann man nicht sagen es gibt in der wwe keinen der jetzt zuzeit besser ist als cm punk"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: cmkanewrote on 20.08.2012:[10.0] "CM Punk ist einfach der beste Wrestler der Welt.  Sowohl im Ring als auch am Mic mehr als überzeugend.  Als Babyface leider mit etwas weniger Biss in den Promos/Segmenten als früher, aber das ändert sich hoffentlich nach seinem möglichen Heel-Turn (oder zum Tweener ala Stone Cold Steve Austin) wieder"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TxRattlesnakewrote on 07.08.2012:[10.0] "Z. Z. einfach nur der Beste. Sowohl am Mic als auch im Ring, auch wenn er in letzter Zeit nicht mehr sein komplettes Repertoir im Ring zeigen durfte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nouriwrote on 28.07.2012:[10.0] ""Best in the world" Vielleicht stimmt das derzeit sogar, er steht berechtigterweise so lange als WWE-Champion an der Spitze des Unternehmens. Er ist nicht nur einer der besten Athleten überhaupt innerhalb des Seilgevierts, sondern auch am Mikrofon überragend und sehr charismatisch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Brainbreakerwrote on 23.07.2012:[10.0] "CMPunk ist mit Sicherheit in Post-Attitude-Ära DER Prototyp eines hochklassigen, erfahrenen ehemaligen Indy-Wrestlers, den die Internet-Smarks lieben und liebten, der zur WWE wechselte und dort nicht nur einen langen, schwierigen Aufstieg gemeistert hat, sondern in einer Position angelangt ist, die nur wenigen Wrestlern im McMahonschen Universum vorbehalten bleibt: Die Möglichkeit der eigenen Kreativität am Mic und im Ring freien Lauf zu lassen. Und im ersteren liegt seine Stärke. Punk hat die Macht des Mic, mit dem er die Fans kontrolliert, nach belieben zwischen Face- und Heelrolle wechseln kann. Im Ring ist er dagegen Anhänger der alten Schule: Kein High-Spots a la JoMo, lieber saubere Technik und Authentizität. Dabei gelang Punk lange Zeit nicht der Spagat zu einem ebenso runden Storytelling, zu dem er erst in den letzten Jahren gefunden hat. EDIT: im vergangenen Jahr der einzige Grund, weshalb ich PPVs geschaut habe, wo er eine Granate nach der anderen abliefert. Jetzt hat er die 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Leonewrote on 05.07.2012:[10.0] "I watched CM Punk's matches in ROH & NWA TNA back in the early 2000s and really liked the guy, hoping for big things.  Due to his size and his personality, you wondered if he would ever make it to "the big time", fast forward at least 5 years later, he has become a multiple time world champion, had some fantastic feuds with a number of wrestlers, developed 1 of the best characters the WWE has had (and needed) in years.  And other than Edge, I personally think he is John Cena's best opponent.  He has come a long way from being a tag team wrestler and mid-carder in the indies, and I hope to see more great matches from him for years to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Franziwrote on 03.07.2012:[10.0] "Die Zukunft der WWE. Egal ob im Ring oder am Mikrofon in Interviews, er überzeugt als Heel und Face. Sein Shoot gegen Vince bleibt legendär. Hoffentlich sehen wir noch mehr von ihm in den nächsten Jahren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Monday Night Wars85wrote on 25.06.2012:[6.0] "Ich weiß nicht warum CM Punk so absahnt? ! Ich kann mich mit der neuen Generation der WWE nicht anfreunden. Ich finde ihn overrated genau so wie Cena. Es liegt wohl daran, dass er mir nicht als Gimmick fehlen würde, so fern er mal nichtzu sehen ist. Was sein Rating allerdings hier hoch pusht ist zu einem sein Straight Edge Lebensstil und "go to sleep" gefällt mir."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LeBelle1wrote on 21.06.2012:[10.0] "Bei CM Punk stimmt einfach alles. Er hat das Gesamtpaket von sehr gutem Wrestling, Micwork und Ausstrahlung und er ist so wie er ist. Deshalb die volle Punktzahl!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ARIZAwrote on 15.06.2012:[10.0] "Egal ob bei ROH oder anderen Indys oder heute bei der WWE. Punk ist ein Meister im Ring und am Mikro. Etwas anderes als die Höchstwertung ist für mich unmöglich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Luke1984wrote on 12.06.2012:[10.0] "Was soll man da noch viel zu ihm sagen? In allem was er tut sogut wie perfekt. Die WWE kann froh sein, so einen wie ihn zu haben. Der letzte wirklich seriöse Newcomer im stätigem Main Event."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 7TheEwrote on 02.06.2012:[9.0] "Schon seit seinem Beginn bei WWE einer der besten auch heute noch mit die besten Promos und gutes Wrestling!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sascha311wrote on 02.06.2012:[10.0] "Zur Zeit ist CM Punk einfach an der Spitze der Wrestling Welt und somit einer der Besten Wrestler der Welt und für mich ist er einfach einer der besten World Champions aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jericho is excellencewrote on 22.05.2012:[10.0] "Derzeit der beste Worker der US-Mainstream Szene. Im Gegensatz zu vielen Jungs die aus den Indies hochkommen ist Punk nicht nur im Ring unbestrittene Weltklasse, sondern ist auch am Mikrophon zu den Allerbesten zu zählen. Wenige Wrestler haben je den Ausdruck "Total Package" so verdient gehabt wie Punk. Der erste Face-Run war gut, als Heel zeigte er seine ganze Klasse und mit seinen 2011er performances Pipe-bombte er sich dann in die Riege der Greatest of all time. Seit Jahren der Grund Nummer 1 WWE zu gucken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Remixxismwrote on 20.05.2012:[10.0] "Mit Punk wird es nie langweilig. Er ist für mich so der Clown in der WWE. Am Mic ist er einfach genial und auch im Ring hat er die besten Voraussetzungen um zu gewinnen. In der Fehde mit Jericho hat mir Punk eindeutig besser gefallen, schon allein weil er nicht immer das gleiche macht. Mal ist er der Lustige, mal der Böse. Immer abwechslungsreich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Undertaker95wrote on 14.05.2012:[10.0] "Die Entwicklung einfach genial , wo er in der ECW war hätte ich nie gedacht das er so weit kommt aber er hat es geschafft Suuper !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kenji-sanwrote on 06.05.2012:[10.0] "Bei CM Punk stimmt einfach alles. Er verbindet gutes technisches Wrestling mit sehr guten Promos. Er ist einer der wenigen WWE-Superstars mit denen man sich selbst identifizieren kann. Seine Fehde mit Chris Jericho ist eine der besten die er gehabt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NoHomewrote on 01.05.2012:[9.0] "Sehr Guter Wrestler, Unterhaltsamer Worker, Guter Micworker -> Update: Mittlerweile gefällt mir dieser Kerl immer mehr die Fehde mit Cena, jetzt die Fehde mit Y2J großes Kino!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BenniRKOwrote on 23.04.2012:[9.0] "CM Punk ist in den letzten Jahren auf ein gleiches Level wie Chris jericho gestiegen, da Ihm Niederlagen wie 2010-2011 nichts mehr ausmachen.  Er ist derzeit immernoch einer der Interessantesten Charaktere der WWE da er im Gegensatz zu Leuten wie Cena oder Orton Ecken und Kanten hat und somit kein „Superheld“ sondern jemand ist mit dem man sich vergleichen kann und jemand der nahbar ist.  Sein wrestlerisches Können ist ohne Frage mehr als gut, wobei er in seiner Indiezeit noch etwas besser war oder besser gesagt durfte er da mehr zeigen.  Darum würde ich CM Punk 9 von 10 möglichen Punken geben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ZZRuebewrote on 22.04.2012:[10.0] "Punk ist Punk - und das ist gut so. :-)) Er kommt IMMER authentisch rüber,  hat Charisma + Ausstrahlung (ich habe ihn nur einmal live erlebt, aber der Funke springt sofort über) - zusammengenommen mit seinem wrestlerischen Können finde ich, ist's 'ne ZEHN! :-D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Prodirwrote on 15.04.2012:[10.0] "Eigentlich benötigt er keine Bewertung, denn es bedarf zu keiner, aber der Formsache wegen: Sein Run in der WWE begann gefühlt im Jahr 2009 nach dem Sieg in der Fehde gegen Jeff Hardy, nach mehreren Ups and Downs kam dann Money in the Bank 2011 und Punk steht automatisch als Symbol der Revolution. Typisch Punker. Best in the World? Aber natüüüürlich, mein lieber Johann. Da ich aber seit der letzzten Stunde alle Bewertungsphrasen und -metaphern genutzt habe, erlaube ich mir diesen Kommentar: Yes, you do have anybody's attention now!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mintaquewrote on 11.04.2012:[10.0] "Hats im Ring drauf und ist am Mic echt klasse. Schön das ihm die WWE jetzt den Status gibt den er verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MicCheckwrote on 07.04.2012:[10.0] "Keiner verbindet Ernsthaftigkeit und Comedy so gut in seinen Promos wie CM Punk. Keiner bringt Emotionen sowohl am Mic als auch im Ring so gut rüber wie er. Wie er Johnny Laurinatis dauernd auf die Schippe nimmt ist einfach nur genial.  Er brachte mich mit seinem Pipebomb-Gimmick dazu, RAW wieder regelmäßig anzuschauen und ist derzeit einer der wenigen Gründe, warum ich überhaupt noch die WWE verfolge. Kurz gesagt: The best in the World."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Alex Riley 4 wwe championwrote on 19.03.2012:[10.0] "Am Mic und im Ring der beste Wrestler in der WWE! Er spricht seine Meinung offen aus und ich bin dankbar, dass er geblieben ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Saschwrote on 12.03.2012:[10.0] "Gefällt mir persönlich nicht so gut in der Rolle des Heel liegt aber eher daran das er mir zu symphatisch für diese Rolle ist, da ich ihn lieber als Face sehe. Spielt seine Rolle als Heel aber auch sehr gut er kann zu einem der ganz ganz großen meiner Meinung nach werden. Wrestlerisch hätte er sich ne 10 verdient. Mal sehen was noch kommt.  Hehe, und wie vor zweieinhalb gesagt einer der ganz großen! weiter so!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Alorionwrote on 04.03.2012:[10.0] "Gefällt mir seit langer Zeit sehr sehr gut. Am Mic top und auch im Ring sehr stark."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Man of Warwrote on 22.02.2012:[8.0] "@Mirko, hast du schon mal was von Meinungsfreiheit gehört? "Kogoro Mori" gibt einen plausiblen Grund warum er ihn nicht mag und dieser Grund entspricht sogar der Wahrheit. Egal was er oder auch ein Jericho machen, das sage Ich als wirklich großer Fan von Jericho, hier ist es immer richtig. Von euch hört man immer nur "er ist gut im Ring und am Mic blablabla". Von mir bekommt er nur 8 Punkte denn mit einem Shawn Michaels kann er einfach nicht mithalten und seine Promos sind nicht unbedingt die abwechslungsreichesten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Golgotawrote on 13.02.2012:[10.0] "Versiert am Mikrofon, unglaublich gut im Ring und auch privat sehr sympatisch. Einer der Größten seiner Generation! Gefällt mir als Heel besser, aber auch als Face ist er großartig. Er bringt einfach alles autentisch rüber."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: EnemyOfJusticewrote on 02.02.2012:[10.0] "Best in the World! Ob als Straight Edge Superstar oder eben als der Beste der Welt und Revolutionär, ich mag den Menschen Phil Brooks und CM Punk einfach. Promotechnisch wohl auf Platz 1, im Ring das wohl beste Gesamtpaket jetzt, Charisma ohne Ende, zeitweise hatte er unangenehmen Phasen, doch CM Punk ist zu jeder Zeit wohl der Beste, den die WWE hat und haben wird!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fighter Daronwrote on 02.02.2012:[8.0] "Jericho's successor in all aspects, inring working, mic, charisma and IWC overrating."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CM Yodawrote on 01.02.2012:[10.0] "Für mich momentan einer der Hauptgründe beim Wrestling bleiben. Einfach authentisch, lebt sein Gimmick und ist so immer glaubwürdig. Ein super Techniker und am Mikro ein Gott. Nach seine Promoserie im Sommer 2011 habe ich ihn endgültig ins Herz geschlossen. Auch wenn das Storyline war, es war ein Stück weit auch die Gedanken- und Gefühlwelt CM Punks. Wann immer ich ein Interview lese, wirkt es werder gekünstelt noch aufgesetzt. Für mich einer der besten seiner Generation , vielleicht der kopletteste den das Wrestling im Moment zu bieten hat - the best in the world! ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Manolowrote on 30.01.2012:"Im Ring hervorragend, auch wenn es da noch Wrestler gab und gibt, die ein Stück weit besser sind/waren. In der WWE aber der beste Wrestler nach Bryan Danielson und im Gegensatz zum ehemaligen American Dragon ist Punk auch am Micro absolut spitze. Für moch hat er definitiv das stärkste Gesamtpaket im US-Mainstream."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Senajwrote on 27.01.2012:[10.0] "Er hat alles was es braucht um an der Spitze zu sein. Sein ganz eigener Stil macht ihn zu etwas ganz Besonderem.  Momentan ist er vielleicht wirklich der beste Wrestler der Welt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nohmetalheadwrote on 19.01.2012:[10.0] "Momentan der beste aktive Wrestler im Mainstream Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Alex Tremewrote on 16.01.2012:[10.0] "Phillip hat mich schon in seiner ECW-Zeit sehr von sich überzeugt. Er ist als Heel, aber auch als Face ein guter Worker. Mic-Skills hat er alle Male und technisch ist er auch begabt. Ich sehe eine große Zukunft mit der WWE. Und wenn nicht, dann hat ROH einen Topstar mehr. CM Punk 4 life. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dragonulteowrote on 06.01.2012:[10.0] ""The Best Wrestler in the world" that is what the WWE Champion, CM Punk, says and i agree with him that he is a great superstar"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Iksuepsilon83mwrote on 25.12.2011:[10.0] "Nachdem ich anfangs dachte, kein schlechter, aber auch keiner, den man immer sehen möchte und später von ihm ziemlich genervt war, habe ich jetzt erst gemerkt, dass er eigentlich nur schlecht gebookt wurde und man jetzt erst sieht, wie genial er wirklich ist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: skoeswrote on 08.12.2011:[10.0] "Am Mikro (mittlerweile) ein absoultes Ausnahmetalent (da auch spontan, er spielt mit dem Publikum), und auch zu reihenweise guten Matches fähig.  Absolut überzeugend und daher die Bestnote"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: chicagomadepunkwrote on 26.11.2011:[10.0] "CM Punk schafft es immer wieder eine hammer Promo rauszuhauen, ist ein super worker und schafft es als einziger RAW interessant zu gestalten! Da kann ich nichts anderes als 10 Punkte vergeben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MaecksPiwrote on 20.11.2011:[10.0] "Momentan der beste und interessanteste Wrestler in der WWE !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Roode66wrote on 06.11.2011:[10.0] "Einer der besten und charismatischten Wrestler der WWE, einer der besten Micworker der WWE und der beste Heel, den die WWE seit Edge und Jericho zu bieten hat. Lediglich als Face weiß man anscheinend nicht, wie man mit ihn umzugehen hat, aber das ist generell eine große Schwäche der WWE. Aber momentan überzeugt er ja noch in seiner Rolle, auch wenn man den Hype um Money in the Bank herum und die Story gegen Cena, Nash, Hunter und co teilweise wieder in den Sand gesetzt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MadDogwrote on 31.10.2011:[10.0] "Best balance between character and in-ring work to come in the 2000s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: stallownagewrote on 29.10.2011:[10.0] "Was soll man zu CM Punk noch großartig sagen? Die Charisma-Bombe in Person, der beste Promoguy der Liga, wenn nicht sogar ligenübergreifend in Nordamerika und auch im Ring eine verlässliche Größe. Erhielt im Sommer endlich DEN Push zum absoluten Main Eventer und bot zahlreiche Momente, die sogar mit Attitude-Highlights locker mithalten konnten. Hat außerdem momentan so ziemlich das geilste Shirt seit Austin 3:16 oder der nWo am Start. Wird nach dem kurzen Triple H-Intermezzo auch sicher bald wieder im Titelrennen etabliert sein und Wrestlemania mit der WWE Championship betreten. Kann man ne 11 geben?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheIronSheikwrote on 28.10.2011:[10.0] "Sehr genialer Mann. Er hat alles, was man braucht, Charisma, kann am Mic überzeugen und ist dazu noch Klasse In-Ring.  -10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Shankswrote on 27.10.2011:[10.0] "Punk hatt sich wirklich durchgebissen und nun steht er mit ganz oben. Seine Fähigkeiten im Ring und am Mic sind einfach großartig.  Für mich der beste Wrestler zurzeit, ich hoffe das es so weiter mit ihm geht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: StrongGreatSelfishwrote on 27.10.2011:[10.0] "Mic-Technisch ein Gott, Ringmässig ein Gott, Ausstrahlung ist mit den kurzen haaren viel eher da, als mit den langen.  Der Kerl kann Matches auf die Beine stellen gegen z. B Chris Hero, John Cena, Bryan Danielson... ganz egal.  Der Mann verdient seine 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheRatedRLegendKillerwrote on 25.10.2011:[10.0] "CM Punk bringt eine gewisse Frische in den Main Event RAWs, die die WWE schon seit langem benötigt. Ein fantastisches Mic-Work, gepaart mit einer ordentlichen Menge an Charisma und genialen In-Ring Skills, machen CM Punk zu einem der interessantesten Wrestler/Sports Entertainer aus der "kleineren Riege" seit Chris Jericho. Punk ist mit wöchentlichen Top-Leistungen mittlerweile der Hauptgrund sich Raw anzuschaun und macht sich damit für die WWE schier unentbehrlich. Hält der Push des Straight Edge Superstars noch eine Weile an und geht der Aufbau weiterhin so gut, hat man in Punk einen neuen Main Eventer gefunden, der mit seinen Promos auch Pay per Views verkaufen kann. Hail to the Punkster!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MVPforeverwrote on 22.10.2011:[10.0] "Ein Promo-Gott. An sein Match gegen Cena bei MitB wird man sich wohl noch länger dran errienern können. Auch im Ring ist er einer der Besten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nguyen2103wrote on 21.10.2011:[10.0] "CM PUNK ist einfach nur Göttlich und mein Vorbild in sachen Lebenstil. Der Typ hat einfach alles, er hat den Look, kann Wrestlen und ist einfach nur eine PIPEBOMB am Mic. Solche Wrestler gibst nur selten, vor allem diese drei genannten Eigenschaften. Das macht ihn einfach komplett. Ich sehe ihn nicht als besten Wrestler der Welt aber den Komplestesten Wrestler, der Welt. Nach seiner Karriere könnte er alles machen, Kommentator, Trainer oder sogar Headbooker. Traum wäre, wenn er Booker wäre und Danielson als Trainer für die WWE fungiere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nerowrote on 19.10.2011:[10.0] "CM Punk. Ja, was soll man noch sagen, eigentlich ist alles klar: Er ist aktuell der beste Techniker im WWE-Roster. Er ist aktuell der beste Micworker im WWE-Roster. Er ist aktuell der beste Kommentator im WWE-Roster. Er hat am meisten Charisma im aktuellen WWE-Roster. Er ist sowas von over. Er hat die beste Mimik im WWE-Roster. CM Punk kann ohne Zweifel behaupten, er sei der Beste der Welt, ohne zu lügen. Mehr gibt es zu Punk nicht zu sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JeriMizwrote on 18.10.2011:[10.0] "BAM, da ist der Punk den ich sehen will! Micwork und seine Gestik, einfach alles drum und dran ist Göttlich, er kann Wrestlen und ist einfach Mr. Rebellion! Jetzt gibts wieder keinen Zweifel an den 10Punkten! PS: Ice Cream Bars!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: what89wrote on 13.10.2011:[10.0] "Ich war nie CM Punk Fan, aber da ich seit MitB wieder das Tagesgeschehen verfolge muss ich feststellen, dass er das Beste ist, was die WWE momentan zu bieten hat.  Klasse am Mic, sehr gut im Ring und außergewöhnliches Charisma, verpackt in einer bisher geilen Storyline.  Deshalb momentan 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rio123wrote on 11.10.2011:[10.0] "Der Stefan Raab des Wrestlings. Der Mann hat Charisma, Mic-Skills, In-Ring Skills und alles was er anfasst wird zu Gold!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Crushingwrote on 11.10.2011:[10.0] "Einfach der beste Superstar in der WWE zurzeit. Im Ring unglaublich gut, Mic-Skills sind ausgezeichnet. Als er 2010 als Kommentator fungierte, war er einfach nur ein Gott im Kommentieren. 10 Punkte, sehr gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mustafawrote on 09.10.2011:[10.0] "Was soll ich nur sagen. Er ist der aktuelle David Guetta der WWE. Er mischt sozusagen die Szene richtig auf. Ich hätte nie gedacht, dass er irgendwann mal ein Maineventer wird, weil er als Anführer des New Nexus so richtig schlecht dargestellt wurde. Die Fehde gegen Randy Orton war ja mal für'n A****. Und dann als er der No. 1 Contender war ist er sozusagen explodiert. Seine Promos waren göttlich, seine In-Ring Skills haben sich verbessert (NICHT DAS FRÜHER AUCH SCHLECHT WAR) und das allerwichtigste er durfte Vince McMahon, Triple H, Kevin Nash und John Cena in den Arsch treten. Jetzt muss er nur gegen Alberto Del Rio fehden und den Titel gewinnen und natürlich ohne die Beteilung von John Cena. Mehr habe ich nicht zu sagen. 10 saubere Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dsierwrote on 08.10.2011:[10.0] "Ich muss zugeben, dass ich vor seiner Sommerfehde gegen Cena kein großer Punk Fan war. Ich fand ihn sogar überbewertet. Aber jetz hat er mich vollkomen überzeugt und ich bin der Meinung, dass CM Punk derzeit der beste Worker innerhalb der WWE ist. Super Micwork, super In-Ring Skills, Ausstrahlung und Charisma ohne Ende. Nichts als 10 Punkte für CM Punk!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KoZywrote on 07.10.2011:[10.0] "Auch wenn er schon lange dabei ist kommt seine Karriere erst jetzt so richtig ins Rollen meiner Meinung nach. Zusammen mit Randy Orton und John Cena die Zukunft der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ShakDragoonwrote on 04.10.2011:[10.0] "Er ist für mich Chris Jericho's legitimer Nachfolger: Charismatisch und extrem talentiert... ein absolutes Total-Package, der bei WWE hoffentlich auch nur im entferntesten ähnlich gute Matches, wie bei ROH zeigen darf! Die Fans scheinen seine Leistung zumindest allmählich zu würdigen, wenn man sich die Merchandiseverkäufe ansieht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sirius Van Grathwrote on 02.10.2011:[10.0] "CM Punk ist ein Gott im Ring, am Mikrofon und hat eine Menge Charisma!  Und hinzu kommt noch sein Lifestyle! Deswegen 10 Punke."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: hhhwrote on 25.09.2011:[10.0] "CM Punk hat mir mit seiner Promo die er vor Money in the Bank bei RAW gehalten hat aus der Seele gesprochen (was das Thema WWE anbelangt). Die Art und Weise wie er mit dem Mic umgehen kann verdient mindestens 10 von 10 Punkten!  Auch sein wrestlerisches Talent, welches er im Ring zu Tage legt ist zu begutachten.  Ausserdem find ich, dass bei ihm ein Gimmickwechsel genau zur richtigen Zeit kam, denn ich könnte mir den Summer of Punk nur schlecht mit einem Straight Edge Heel Punk vorstellen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ragewrote on 24.09.2011:[10.0] "hat alles was ein wrestler braucht.... hat ein sehr gutes mic work und im ring ist er unglaublich... hat viele moves drauf auch wenn er nich alles zeigen kann/darf"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WhiteHummerDriverwrote on 16.09.2011:[10.0] "Nachdem ich 2004-2005 durch immer mieser werdende WWE und vor allem Cena-Überschuss absolut den Glauben ans Wrestling verloren hatte, war Punk einer derjenigen der mir wieder Freude am Wrestling gegeben hat. Nicht nur waren seine Matches in ROH sehr geil, nein vor allem ist dieser Typ für mich der charismatischste Wrestler den ich seit den goldenen Zeiten von Austin, Rock und 90er Jahre Heel-HBK gesehen hab. Die heutigen Stars wie Cena und Orton haben für mich keine große Ausstrahlung weil sie auf mich wie Fließband-Roboter wirken. (Cena hat im Gegensatz zu Orton - der wie ein Produkt eines WWE-Zuchprogramms wirkt - wenigstens ein natürliches Charisma) Punk hingegen überzeugte mich allein schon mit seiner Mimik beim Entrance zu Joe vs Punk 2 als ich ihn das erste mal sah. Dazu kamen endgeile Promos jedesmal wenn er das Mikro in die Hand nahm (hauptsächlich als Heel 2003 und während des Summer of Punk 2005), tolle Leistungen im Ring sowohl im Einzel- als auch im TagTeambereich, und extrem unterhaltsam am Kommenatorenpult (was er offenbar auch bei WWE nicht verlernt hat).  Dazu eine knallharte Ich-sag-was-ich-denk-Einstellung mit der man entweder umgehen kann oder nicht, die ich jedoch respektiere.  Und mit seinen Promos im Sommer hat er nun endlich das erlangt was ihm schon seit 2009 zusteht: ein (scheinbar) fester Platz im Main Event.  Micskills+Ringskills+Charisma = für mich eins der besten Komplettpakete dieser Generation im Us-Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: VanderVaartwrote on 13.09.2011:[10.0] "Er nimmt keine Drogen (Alkohol, Zigaretten, ... ) und erfüllt somit seine Vorbildfunktion.  Vor der Kamera erläutert er sein Straight-Edge-Gimmick, wenn auch ironischerweise meist nur als Heel. ("I am better than you"). Er ist der ROH-Wrestler, welcher es in der WWE bisher am weitesten gebracht hat. Punk hat viele "stiffe" Moves im Reportoire, obwohl es nicht sehr spektakulär wirkt, aber eben effektiv. Trotzdem muss ihm die Zukunft in der Entertainment-Liga gehören, da er sich auch nicht davor scheut sich die Haare schneiden zu lassen oder eine Maske zu tragen. Nun darf er endlich auch offiziell Face sein. Argumentativ gesehen, war es aber schon die ganze Zeit. Die Ratings sind zwar nicht sonderlich gestiegen. Im Internet hat CM mit seinen "Shoots" dafür aber eine unglaubliche Aufmerksamkeit erreicht. Sollte er nach seiner Karriere Kommentator werden und es wird nicht schlechter als der Testlauf, dann sieht die Zukunft für ihn sehr rosig aus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Baldrickwrote on 09.09.2011:[10.0] "Mir hat Punk als Face durchaus zugesagt, aber was er als Heel und sogar als Tweener zeigt, ist grossartig. Man lässt ihn endlich machen. Und Punk liefert. Genau das ist für mich, was einen guten zu einem sehr guten Wrestler macht. Überdurchschnittlicher Performer im Ring und mitverantwortlich für einen der besten Charaktere und Storyline der letzten zehn Jahre!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rey2004wrote on 05.09.2011:[10.0] "The Straight Edge! Sehr guter Wrestler, guter Performer - Superstar!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated R Punkwrote on 04.09.2011:[10.0] "Nach mehreren Anläufen schaffte er es nun endlich komplett im oberen Bereich der WWE Fuß zu fassen (das wäre ihn schon damals in SmackDown auf dauer gelungen wenn er nicht hinterher für den Undertaker gejobbt hätte und man diese Kacke mit der SES abgezogen hätte) Aber mittlerweile ist CM Punk DER Grund die WWE zu schauen und ich wollte mich schon verabschieden als nicht klar wurde ob Punk einen neuen Vertrag unterschrieben hat. Und auch jetzt überzeugt er auf ganzer Linie und haut lauter geile Promos raus! Ich hoffe man lässt Punk nicht wieder fallen und behält ihn auf dauer im Main Event!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ringsidewrote on 03.09.2011:[10.0] "CM Punk ist einer der größten hoffentlich sehen wir ihn noch lange Zeit in der WWE und auch wieder als Champ! Vor allem überzeugt er durch seine Mic Skills und Ringfähigkeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CMPunk17wrote on 02.09.2011:[10.0] "Er sollte das Gesicht der WWE sein meiner Meinung nach ist er der beste wrestler auf der Welt weil er das perfekte Gesamtpaket hat, in der Attidude Erä währe er besser gewesen aber auch jetzt kann man gar nicht genung von ihm kriegen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MC Punkwrote on 02.09.2011:[10.0] "The best in the world! Sicherlich ist das etwas übertrieben aber CM Punk ist zweifelsohne einer der Besten. Großartiges Micwork und klasse In-Ring Skills. Er hat die WWE fast schon revolutioniert und ist im Moment ganz klar DER Mann der Promotion, denn seit Punk im Main Event steht ist es wieder deutlich interessanter geworden.  Ganz klar ein zukünftiger Hall of Famer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kitanoyamawrote on 01.09.2011:[9.0] "Er ist einer derjenigen die ihren eigenen, tatsächlichen Lebenstil sehr gut in der WWE repräsentieren und darstellen können. Außerdem hat er sich über die Jahre hinweg kontinuierlich gesteigert, besonders was sein Micwork angeht. Sein Wrestling ist zwar nach wie vor nicht das ansprechenste, aber er gibt eine rundherum überzeugende Figur mit sehr guter Qualität ab."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Navidwrote on 31.08.2011:[10.0] "Er stellt im Moment das Beste dar was die WWE zu bieten hat. Was ihm noch fehlen würde wäre ein Wrestlemania Mainevent. Hoffentlich sehen das die Booker dieses Jahr ähnlich.  UPDATE: Ich schrieb die obrigen Zeilen Ende Januar 2011 und trotz überragender Leistungen wurde er bei Wrestlemania nicht auf die ihm gebührende Position gesetzt. Unfassbar welchen Hype man um ihn und den "cult of personality" aufbaute und wieder versaute. Dennoch hat er seinen Legendenstatus sicher und wird von mir wie vielen anderen nie mehr vergessen werden. Im Moment was das Gesamtpacket angeht "the best in the world"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Schandmaulwrote on 30.08.2011:[5.0] "Mal ein kleines Update. Ich weiß nicht warum ihn alle so toll finden. Im Ring ist er solide, am Mic ok. Aber mehr seh ich da wirklich nicht. Ich finde seine Micskills bei weitem nicht so toll wie sie gemacht werden. Gerade seine legendäre Rede bei RAW fand ich einfach nur ok, aber nicht mehr. Dazu gefällt mir sein Wrestlingstil nicht sonderlich. Mit anderen Gegnern ok, aber ich hab in der WWE noch kein Match mit ihm gesehen das mir richtig gut gefallen hätte."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheCMMizNexuswrote on 27.08.2011:[10.0] "He's God. Ob im Ring oder am Mic der beste der WWE im Moment .....  Pipebomb :D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CMPunkGRGDXwrote on 27.08.2011:[10.0] "Ich bin Fan der ersten Stunde und ich finde es großartig wie die WWE ihn pusht. CM Punk ist einer der, wenn nicht sogar der beste Wrestler bzw Superstar im Business der heutigen Zeit. Sein Stil, Gimmick, Mic-Skill übergossen mit spitzenmäßiger Ring-Performance - Das ist es was mich an ihm fasziniert. Ich hoffe, dass er seine beste Zeit noch vor sich hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CM Punk und Edgewrote on 26.08.2011:[10.0] "Einfach in allem das beste was die WWE heute zu bieten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Danninhowrote on 26.08.2011:[10.0] "Bin schon sehr lange Punk Fan und ich fande ihn bei RoH einfach genial, als er dann zur WWE ging wurde er meiner Meinung nach nie wirklich gut eingesetzt immer mal wieder was gutes doch wieder fallen gelassen die jetzige Rolle ist genau das was Punk braucht, enn jetzt ist er auf dem Level wie ich ihn kenne einfach göttlich und wenn die Booker das so weiter machen hat er das Zeug der Austin der neuen Generation zu werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: swaswa96wrote on 22.08.2011:[10.0] "Meiner Meinung nach der beste im Ring und am Mikrofon, der heutzutage in der WWE ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheAdaawrote on 20.08.2011:[9.0] "Schon in den Indys war Punk eine Klasse für sich und nicht umsonst hat er sich dort bereits eine loyale Fanbase aufgebaut. Als er dann in die WWE kam wurde er unten gehalten, musste vieles über sich ergehen lassen und der Durchbruch wollte einfach nicht kommen. Das hat sich mittlerweile geändert und Punk hat sich an der Spitze festgesetzt. Mit genialen Mic Skills, herausragenden Wrestlingskills und ein enormes Charisma helfen ihm dabei momentan RAW im Alleingang zu tragen und dafür brauch er nicht einmal den Titel. Punk ist momentan das heißeste Eisen der WWE und das zu Recht. Er hat es sich verdient."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Damon Strikerwrote on 19.08.2011:[10.0] "Sehr guter Wrestler mit der nötigen Ausstrahlung und einem tollen Charakter, den Punk immer wieder aufs neue weiterentwickeln zu können scheint. Hat mit seinen tollen Promos in letzter Zeit bewiesen, dass er auch auf diesem Feld ganz oben mitspielt. An der Höchstpunktzahl führt kein Weg vorbei!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wwefan4everwrote on 19.08.2011:[10.0] "CM Punk ist einfach nur weltklasse pur. Seine Shoot-Promo hat er extrem gut over gebracht und seine Technik ist der hammer. CM Punk schon immer einer der besten Worker der Welt klasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jack Casadywrote on 15.08.2011:[10.0] "Momentan der beste Wrestler der WWE.  Cooles Outfit, geile Einstellung, klasse Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JohnOlafBlackwrote on 15.08.2011:[10.0] "hat sich über die letzten Jahre zu einem der absoluten Top-Performer der WWE gemausert!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bananaramawrote on 14.08.2011:[10.0] "Ich habe ihn schon immer für recht talentiert gehalten, auch wenn mir sein Gimmick vorher nie so recht zugesagt hat. Aber in letzter Zeit hat er immer wieder bewiesen, dass er sich hinter den Großen des Business nicht verstecken braucht. Er bringt alles mit, was man braucht. Charisma, einen eigenständigen Charakter, In-Ring Skills und Mic Work was einen unterhält. Zudem ist er der erste, der es geschafft hat mit Cena ein 5 Sterne Rating auf die Beine zu bringen, was nicht mal ein Michaels geschafft hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sloverwrote on 13.08.2011:[10.0] "CM Punk ist zurzeit der Worker, der am meisten Stimmung in die Halle und gutes Wrestling abliefert. Seine Promos sind einfach genial und Matches immer sehenswert. Er wird (hoffentlich) eine neue Ära in die WWE holen. Zurzeit passt einfach alles und deswegen 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: the-ayatollahwrote on 10.08.2011:[10.0] "The Voice of the Voiceless must be heard!  Absolut genial im Moment. Er kann der nächste ganz große revolutionäre Superstar werden, der Messias den die Wrestlingwelt im Moment dringend nötig hat. !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JTGTheManwrote on 09.08.2011:[10.0] "Kann allen nur zustimmen. Der Mann IST das Wrestling Pur. Technisch super, klasse Moves, Charisma und Mic-Skills explodieren nur so vor Genialität. Der Mann weiß echt wie manŽs macht. Mein persönliches Highlight dieses war und wird auch definitiv MitB sein und bleiben. Allein die Crowd hat das Match schon mind. zum wichtigsten des Jahres gemacht. Alles in Allem ein großartiger Wrestler an den sich die Wrestling Welt auch noch in 100 Jahren erinnern wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jaytodadeewrote on 07.08.2011:[10.0] "Der Kerl bringt einfach alles mit. Sensationelles Micwork, Charisma, Technik, ein Hammer Gimmick, ... . 10 Punkte - ohne wenn und aber!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SinMysterio1904wrote on 07.08.2011:[10.0] "also er einer der besten der je in der wwe war / ist sehr guter techniker und ein perfekter allrounder außerdem ist er auch super am mikro 10 PUNKTE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Basti1989wrote on 04.08.2011:[10.0] "Als Boss der Straight Edge Society hat er mich eher genervt. Was er aber seit ein paar Monaten im Ring abliefert ist ganz großes Kino. Lässt man ihn aus der Story mit Cena als Sieger hervorgehen und ihn Tweener sein, dann wird er ein Mann sein, der in 10 Jahren solch einen prägenden Eindruck hinterlassen hat, wie seinezeit The Rock oder Steve Austin. Und wenn man es geschickt anstellt, dann kann man Del Rio und Punk in eine Fehde packen, Cena seine Auszeit nehmen und dann bei WM gegen Rock - ohne Titelbeteiligung - antreten lassen. Punk muss derjenige sein, der den Platz im Dauer-Mainevent einnimmt. Edge war so jemand und Michaels oder der Undertaker - je nachdem, wer gerade fit war. Denn außer Cena, Orton und Mysterio hat man keine Alternativen und so besteht immer die Gefahr der Langeweile."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MrDestinywrote on 04.08.2011:[10.0] "Super Mic-Skills, super Wrestler, super Gimmick und hammer Heel"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: StoneColdStunnerwrote on 03.08.2011:[10.0] "Genialer Wrestler, mehr hab ich dazu nicht zu sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Mountiewrote on 02.08.2011:[10.0] "Lebte in den ersten WWE-Jahren als Babyface von guten Matches, seiner Frische und dem teils absurden Hype um ihn. Seit er Heel ist, hat er sich aber gefunden und glänzt mit einem starken und - wie er mittlerweile auch bewiesen hat - variablem und krisenfesten Charakter. Auch wenn ich mich immer noch über einige übertriebene Ausläufer des Internet-Rummels um Punk amüsiere, ist jetzt einfach festzustellen, dass Punk auf dem ersehnten Spitzenplatz in der Liga angekommen ist - und das völlig zu Recht. Nachdem er die Fesseln des Straight-Edge-Gimmicks abgelegt und 2011 endgültig die Decke durchbrochen hat, fehlt mir nach langem Sträuben auch die Argumentationsgrundlage seine Wertung nach oben zu begrenzen. Weil Punk aber trotzdem immer noch etwas mehr gehypet werden muss, als er ist, noch die Zusatzbemerkung: Punk ist immer noch längst nicht der neue Austin oder Rock (und erst recht nicht größer) und auch nicht die Ablöse für John Cena. Wer mit solchen Namen hantiert, geht von einem Mann aus, der die Liga tragen würde - und das hoch. Ob Punk das kann - der Beweis ist noch anzutreten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Papa Popanzwrote on 02.08.2011:[10.0] "Mann das ist ja mal endlich nen geiler Typ Egal ob Heel oder Face UPDATE:Best in the world today"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Marco2911wrote on 01.08.2011:[10.0] "Zurzeit einfach perfekt. Am Mic ist er perfekt. Im Ring sehr sehr gut. Hat Charisma. Er weiß zu unterhalten. Man kann nur die 10 Punkte geben. Best in the World"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tribbel Eitschwrote on 31.07.2011:[10.0] "Es fällt mir schwer, CM Punk zu bewerten, ohne in Euphorie zu verfallen. Ich versuch's trotzdem: der Mann ist einfach unbezahlbar gut. Der Mann kann wirklich unfassbar gut reden, hat ein wahnsinnig cooles Auftreten UND kann auch noch wrestlen. Best in the World!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wuschl 85wrote on 31.07.2011:[10.0] "Toller Typ. Sein Gimmick kommt glaubwürdig rüber. Könnte einer der großen Stars der Zukunft werden. Hoffe nur das er behutsam zum Main-Eventer aufgebaut wird. Ich denke es besteht viel Potential nach oben deshalb gebe ich noch keine 10 Punkte. Einer der interresantesten Wrestler derzeit--> So jetzt ist es soweit es gibt die 10. Inring-perfomance, Charisma, Promos. Die Punk-Ära beginnt und hält hoffentlich an........"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Auditorewrote on 28.07.2011:[10.0] "Er ist einer der Wrestler die man auf ewig sehen will, die perfekt zuferlässig sind und die immer wieder um Trubel um ihre Person sorgen können. Außerdem im Ring und am Mic unfassbar stark. Wer so gut ist, machts mir leicht ruhigen Gewissens 10 Punkte zu geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RoadRunnerwrote on 28.07.2011:[9.0] "Für mich erst seit seinem Heel-Turn im Zuge des Cash-In interessant, da ich zum einen seine Vorgeschichte nicht kannte und zum anderen auch erst dann sein Mic-Work vor Augen bzw. Ohren geführt bekommen habe. Von den Promo-Skills ne klare 10 und auch die InRing-Skills sind durchaus auf dem obersten Level anzusiedeln - was für mich noch fehlt, ist der Draw-Faktor, bei dem er sich aufgrund der jüngsten Ereignisse auch auf dem Weg in die BellaEtage befindet. Aber da er dort aus meiner Sicht noch nicht angekommen ist und sich über einen längeren Zeitraum dort bewährt hat, reicht es (noch) nicht für die Maximalwertung."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The-SwiZZlerwrote on 27.07.2011:[10.0] "war seit dem anfang seiner wwe-karriere ein fan von punk.. super ring und mic-work ! leider bei seinem einstieg bei ECW am anfang nur ein nebencharakter.. aktuell der beste in der wwe, für mich vom mic work her auf einer wellenlänge mit the rock und vom ring-work her auf dem gleichen level wie shawn michaels... für mich absolut 200 punkte wert !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cranewrote on 26.07.2011:[10.0] "Für mich ist CM Punk zurzeit der beste Wrestler den die WWE hat. Seine Promofähigkeiten sind einfach überragend und im Ring braucht er sich auch hinter keinem zu verstecken. Hoffentlich hat die WWE das jetzt endlich erkannt. Die Fehde gegen John Cena ist einfach genial aufgezogen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The last Outlawwrote on 26.07.2011:[10.0] "Cm Punk, hat mich damals schon begeistert, als er noch in der ECW gekämpft hat, sein Lebensstil gefällt mir besonders gut, und die Entwicklung die er in den letzten Monaten , vorallem in den letzten Wochen hatte unglaublich, als ich gelesen hab CM Punks vertrag geht zu ende und er wil nicht verlängern, dachte ich : schade war echt nen Wrestler den ich gern gesehen hab, doch dann kam die Bombe was jetzt abgeht ist unglaublich spannend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: latinoheat4everwrote on 25.07.2011:[10.0] "Ein echt genialer Worker am Mic sowie im Ring. Klasse Matches hat er auch genügend gezeigt und am Mikrofon steht er den besten wie The Rock in nichts nach... wenn man ihn lässt. Insofern hat er bewiesen, dass er einer der Größten der Neuzeit werden kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bangjaminwrote on 25.07.2011:[10.0] "Ein Revolutionär der Neuzeit. Jahrelang bin ich davon ausgegangen: Okay, es wird nix spannendes mehr kommen. WWE verfällt zu nem ollen Kiddies-Programm! Aber dieser Mann hat es wirklich geschafft die WWE so interessant zu machen wie lange schon nicht mehr und das auch mal außerhalb des WWE Universums! Er ist Gold wert und das trägt er zurzeit auch völlig zurecht. Er hat einfach alles, was ein vollkommener Wrestler der Wrestling-Neuzeit braucht: Mic-Skillz, Ausstrahlung und ein riesiges Move-Repertoire (auch wenn er leider in der WWE [noch] nicht alles auspacken durfte bisher)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: zeroegwrote on 23.07.2011:[10.0] "Ein großartiger Wrestler, der am Mic einer der besten ist wenn nicht sogar der beste."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LowJomoKiwrote on 23.07.2011:[10.0] "Bemerkenswert, ein Wrestler der von der Statur her eigentlich nicht direkt zur WWE passt: eher schmächtig und klein, kann nicht mit Powerhouse Aktionen punkten und braucht aber trotzdem weder Maske noch ein überirdisches Gimmick um sich als Champion in der WWE zu etablieren. Wrestlerisch ist er klasse und seine Mic-Skills sind spitze auch als Kommentator finde ich richtig unterhaltsam. 8 Punkte. Ich erhöhe aufgrund der letzten Geschenisse auf 10, denn momentan gibt es kaum einen Superstar der diese 10 Punkte mehr verdient hat als Punk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: tosi82wrote on 23.07.2011:[10.0] "Punk ist pures Gold für die WWE. Was er aus sich in den letzten Jahren gemacht hat ist echt top. Durch seine 2 MitB Siege konnte er sich im ME etablieren und man sieht jetzt was man davon hat. Hammer Promos, Hammer Matches und er weiß wie man mir den Fans umgehen muss um sie auf seine Seite oder gegen sich zu bekommen. Vllt wird er der neue Stone Cold, wer weiß."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kaepplewrote on 22.07.2011:[10.0] "CM Punk scheint im Augenblick das Wrestling in den USA ganz alleine auf seinen Schultern zu tragen - und dabei ist er doch eigentlich der arbeitsloseste WWE Champion aller Zeiten. Im Ring hat er mich immer begeistert, egal in welcher Liga er angetreten ist. Bei seinen Promos war ich oft hin- und hergerissen - manche trafen genau ins Schwarze, andere ließen mich weitgehend kalt. Aber dieser Sommer 2011 ist geprägt von seinem Namen, seinen Promos, seiner brillanten Mimik und Gestik, dem Hype um seine Figur, seinen Twitter-Meldungen und Youtube-Videos. CM Punk hat dem Wrestling mit seinen kürzlichen Auftritten ungeheuer viel gegeben. Und mich ein bisschen mit der WWE versöhnt, die mit ihm gemeinsam hier so viel richtig gemacht hat. Starker Wrestler, fantastischer Charakter - volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mephistowrote on 21.07.2011:[10.0] "Er war schon immer mehr als nur großartig, aber mit der aktuellen Entwicklung und all den Geschehnissen macht er sich unsterblich :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gorthaurwrote on 21.07.2011:[10.0] "Nach seinem Heelturn in der WWE hat sein Charakter deutlich mehr Tiefe gewonnen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ruuviwrote on 21.07.2011:[10.0] "In letzter Zeit ist er zu einem meiner Lieblingswrestler geworde, da er einfach mal Dampf in dem doch recht lahmen Amy-Wrestling gebracht hat. So eine ein guter verkauf einer Storyline sollte gewürdigt werden, dazu ist seine Leistung im Ring gut und seine Mic arbeit brilliant."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Michael Shawn Hickenbottomwrote on 21.07.2011:[10.0] "In meiner persönlichen Top 10 ganz weit oben! Dieser Straight Edge Superstar ist genial!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CM Punk Fanwrote on 21.07.2011:[10.0] "Er ist nicht umsonst mein Liebling, er hat Ausstrahlung, gewisse Fähigkeiten, fast alles. Ich gebe ihm deswegen 10 Punkte , weil ich es sehr Weltklasse fand, wie er gegen John Cena gekämpft hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Falki87wrote on 21.07.2011:[10.0] "Ich verfolge seine Karriere schon seit seiner Zeit bei ROH und bin froh, dass er nach den quälenden Jahren bei SD endlich den Durchbruch geschafft hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: shoopdawoopwrote on 21.07.2011:[10.0] "10 Punkte denn: Ihm gehört die Zukunft des Mainevents"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: spankywrote on 20.07.2011:[10.0] "Er hat sich gegen meine Erwartungen zum absoluten Top Heel etabliert und überzeugt in dieser Rolle fast vollkommen.  edit: Nun ist er endgültig am Gipfel angekommen! --> "The Best In The World""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: downtown2wrote on 19.07.2011:[10.0] "Toller Wrestler und wahnsinnig am Mikro, dazu äußerst wandelbar. Seine bisherige Laufbahn machte einfach Spaß und die Straight Edge Einstellung dürfte ihn bei den Offiziellen weit nach vorne bringen. Der Durchbruch als absoluter Mega-Star dürfte gelungen sein, er ist nun neben Cena das Gesicht der Promotion. Mit seiner Ausstrahlung und Einstellung kann er eine neue Ära prägen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NHJ2102wrote on 19.07.2011:[6.0] "Der überbewertetste Wrestler den ich jemals gesehen habe"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Obermackerwrote on 18.07.2011:[7.0] "Als heel um Vieles besser als als fahles face, aber den push durch Sonne, Mond und Sterne kann ich nicht 100% nachvollziehen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Booker Cwrote on 18.07.2011:[10.0] "Punk ist einer der besten Micworker die es in der WWE gibt, aber den großen Hype um ihn verstehe ich nicht ganz. Punk ist sehr gut, aber im Gegensatz zu ein paar anderen Wrestlern, überschreitet er diese Grenze, wie ich finde, nicht. Im Ring ist er gut, aber nicht mehr. Das liegt aber wohl auch daran, dass ich nur seine WWE Zeit kenne. Edit: Im Ring hat er nun auch mich überzeugt und was Punk momentan abliefert ist weltklasse - 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Benji1706wrote on 18.07.2011:[10.0] "Natürlich hat Punk in den letzten paar Wochen sehr viel Hype und vor allem Geld generiert. Aber sch... geil war es trotzdem!  Zur Zeit stellt er eigentlich alles da, was seit Jahren gesucht wird. Ein CHARAKTER! Ein WRESTLER! Ein Mann mit ECKEN und KANTEN! KEIN Superheld! ... ich glaube so langsam merkt WWE, welch ein Talent sie in den letzten Jahren praktisch verschwendet haben.  Aber nicht nur in WWE, sondern auch in ROH hat Punk sensationelle Sachen gemacht (Matches gegen Joe etc. ) und es ist kaum zu glauben, dass Phil erst 32 Jahre alt ist. Prepare world... a PUNK is comin!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: oschihubertwrote on 18.07.2011:[10.0] "Auf dem Weg nach Oben. Wenn er jetzt nichts falsch macht kann er in die Liga eines Austin/Rock/Hogan/Cena aufsteigen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: chaoswrote on 18.07.2011:[10.0] "Dieser Typ einfach absolute spitzenklasse in jeder Sekunde!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: y94wrote on 18.07.2011:[10.0] "@tamam So ziemlich jede WWE Ikone von Steve Austin über Triple H, Edge, The Rock, Shawn Michaels und Bret Hart hat etliche Jahre und etliche Anläufe gebraucht um den ganz großen Durchbruch zu schaffen. Spätestens nach dem vergangenen PPV kann sich CM Punk in diese Liste einreihen. Qualität setzt sich nun einmal langfristig durch, auch in der WWE.  Edit: Und nein, nicht jeder x-beliebige Worker hätte derartige Promos durchziehen können. In der gesamten Wrestlingszene gibt es bestenfalls eine handvoll Personen, die über vergleichbare rhetorische Fähigkeiten wie Punk verfügen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated R Userwrote on 18.07.2011:[10.0] "@Tamam Die Antwort auf alle deine Fragen - die ich nicht als rhetorisch betrachte - ist: Weil er nicht gepusht wurde. 10 Pkt. alles andere kann ich an dieser Stelle nicht vergeben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Stockwrote on 18.07.2011:[10.0] "Eine lange Erklärung für 10 Punkte ist wohl nicht nötig. CM Punk hat spätestens in den letzten Wochen bewiesen, dass er der beste Wrestler/Superstar auf dieser Welt ist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tamamwrote on 18.07.2011:[5.0] "Ohne Frage ist er klasse am Mic und genial im Ring. Aber dieses übertrieben obergehype zurzeit geht mir so ziemlich gegen den Strich. Da wird ein CM Punk vor Austin, Rock, HHH gestellt ? ! Was ist los mit euch "Internetfans" ? Wie schnelllebig ist das Buisness denn geworden ? Habt ihr alle vergessen wer die großen der großen sind die die WWE mit egal was sie machten getragen haben ? !  Was hat Punk den bitte geleistet ? Ein Titelrun der in die Hose ging ? Etliche Fehden die in die Hose gingen ? Wenn er so großartig wäre wie immer alle sagen - warum versauerte er dann bei Smackdown in der Midcard ? Warum verliert er 1 Jahr lang bei einem PPV ?  Und jetzt haut er eine Shoot Promo raus die hier auch total überwertet ist weil Promos die einen Fehdenhintergund hatten, die eine Zeit geprägt haben, sich hinter diese Shoot Promo stellen müssen ? Ich wette das die Hälfte des Rosters eine annährnd gute Shoot Promo gebracht hätten, hätten sie die Freiheiten gehabt wie Punk ! ;) Die Promo mit Vince und Cena war dagegen echt großartig !  Trotzdem darf man seine vorhandenen Fähigkeiten nicht außer acht lassen ! Aber hört auf diesen Typen so weltklasse darzustellen ! Er ist ein einfacher Heel wie ein The Miz, ein Del Rio mit riesen Fähigkeiten. Aber hat er der Company irgendwas großes beschert ? NEIN !"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ChristianHwrote on 17.07.2011:[10.0] "DER beste Wrestler der Welt und unglaublicher Mic-Worker. Mittlerweile auf einer Stufe mit Austin anzusehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: al2010exwrote on 17.07.2011:[10.0] "Sehr guter Wrestler (auch wenn er durch PG und die WWE limitiert ist), ausgezeichnetes Micwork, großartiger Look und ein interessanter Charakter. Der kompletteste Wrestler der WWE. Außerdem mein absoluter Lieblingswrestler. Wenn er geht dann ab zu NJPW :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Danicheckwrote on 17.07.2011:[10.0] "Hab im Cageboard wegen der Sache nachgefragt. Es liegt ein Datenbankproblem vor und sollte demnächst behoben werden. Zieh meine Wertung und Vermutung zurück, hab ja wie gesagt im CB nachgefragt, für mich hat sich das alles geklärt. Ich bewerte ihn erst wieder, wenn das Problem gelöst ist. Edit: OK, jetzt bewerte ich. 10 Punkte für ihn, weil er ein Top-Wrestler, Top-Micworker und eine super Austrahlung hat. Schade, dass er eine Pause macht, aber er hat sich das verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Smi-48wrote on 14.07.2011:[10.0] "Ich fand ihn unerträglich als Face, zu overhyped ... bis ... bis ... na, Ihr wisst schon, bis er sich zum universellen Heel mit wahnsinnigen Promos entwickelte. Von da an variierte er seine Leistungen im Ring, sprang auf zwieleichte Taktiken wie überzeugende Maneuver gleichzeitig an und macht im Moment einfach nur von vorne bis hinten Spaß. Dass er sich von seiner Demontage zum Jahreswechsel blendend erholt hat, macht ihn nur noch stärker. So leicht wird Punkaus den Weeklys nicht wegzudenken sein, so einfach werden seine Promos nicht ersetzt werden können. Und weil Straight Edge einfach bedeutet, dass er besser als wir ist, erlaube ich es mir, den finalen Punkt bis zur Höchstwertung noch hinauszuzögern - der Junge muss ja noch Ziele haben ... vieleicht dann mal ein überzeugender Run als Face ... Orton macht es gerade vor. EDIT: 10 Punkte. Juli 2011."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Blackbirdwrote on 14.07.2011:[10.0] "Update: Die letzten Wochen beweisen wohl eindeutig, dass alles außer 10 Punkte für Punk eine Frechheit wäre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Play2Xwrote on 14.07.2011:[10.0] "Es kann doch nicht sein, dass ich diesem Wrestlinggott noch keine Wertung gegeben habe? ! ? Super In-Ring Skills, Einer der besten Mic-Worker die es bis jetzt gab, immer glaubhaft... Als Kommentator große Klasse... Was will man bitte mehr... Einer der Letzten aus einer Riege großer Wrestler! Wie ich diese(n) Wrestler vermissen werde!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Biersackwrote on 13.07.2011:[10.0] "CM Punk zeigt in den letzten Wochen wie gut er wirklich ist, wenn man ihn richtig einsetzt. Besser gehts nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: affenmannwrote on 12.07.2011:[10.0] "Spätestens durch die Fehde mit Cena dürfte er auch im Mainstream den Main Event-Status zementiert haben. In den Indies war er schon großartig, aber seine Entwicklung zum absoluten Nonplusultra der WWE war noch beeindruckender zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: hong kong phooeywrote on 11.07.2011:[9.0] "beeindruckender Wrestler, der immer für Stimmung sorgt - ob am Mirco oder im Fight!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: El Reywrote on 09.07.2011:[10.0] "CM Punk ist wohl der beste Wrestler der Welt.  Sein "Gimmick" ist er selbst, er ist Wrestling-Fan wie du und ich, und einer der besten Performer der Welt.  Diese Kriterien machen ihn zum vollkommenden Wrestler der neuen Generation. Wenn man ihn lassen würde, wäre er sogar noch besser."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LyrixFTWwrote on 08.07.2011:[10.0] "Der Hauptgrund meines Cagematch Accounts, ich muss diesen Mann einfach mit 10er Wertung von mir sehen! Seit er in der WWE ist und annähernd Micspace bekommen hat mein absoluter Liebling, und der einzige Grund warum ich mittlerweile Wrestling abseits von WWE & NOAH ansehe. Der mit abstand beste Mann der letzen 4 Jahre in der WWE, ein super Techniker mit High Flying EInflüssen und nebenbei der beste Heel seit Ewigkeiten, vllt sogar der größte Amerikanische Heel allerzeiten! Mittlerweile hat Punk wohl Legendenstatus, auch für WWE-only Fan's durch seine unglaublich Promo am 27. Juni. Der einzige der im auf technischer Ebene etwas anhaben kann ist wohl Danielson, den ich aber absolut uncharismatisch (Wenn auch fehlgebookt) und ehrlich gesagt etwas overrated finde... Aufjedenfall das absolute Spitzentalent, und DAS Total Packkage der WWE. Schade das er geht :( Aber noch hoffe ich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tobster254wrote on 07.07.2011:[10.0] "CM PUNK !  In dieser Zeit ein PERFEKTER HEEL CM Punk hat absolut überzeugt!  Sein Mic work ist sehr gut und endlich wieder mal eines was charakter hat und welches in Erinnerung bleibt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Marinhowrote on 03.07.2011:[10.0] "Für mich einer der Komplettesten Wrestler die es momentan im Buisness gibt!  Klasse Matches Klasse Promos Klasse Mic work"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Paierowrote on 02.07.2011:[10.0] ""I'm the BEST wrestler in the world! " Da steckt eine Menge Wahrheit drin! Hinzu kommen exzellente Promo-Skills, auch als Kommentator mehr als gut!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jerseyhoolwrote on 01.07.2011:[10.0] "Ich verfolge CM Punk seit seiner Zeit bei ROH & habe immer gehofft, dass er eines Tage bei WWE landen wird. Nachdem er nun bereits den World Title halten durfte & ich jedes Mal innerlich frohlocke, wenn der Punkster zum Mikro greift, sehe ich mich in meiner Vermutung bestätigt, dass er wohl die übergrossen Fusstapfen von Shawn Michaels ausfüllen könnte. In seiner derzeitigen Tweener Rolle brilliert er Woche für Woche (und freiwillig buht diesen Mann ohnehin niemand mehr aus, wie man aus den lauten, stetig wiederkehrenden "CM Punk" Sprechchören erhören kann) und veredelt damit jede Show. Zwar nicht ganz in einer Liga mit Michaels, aber nichts desto trotz einer der grössten Charismatiker, die das Mainstream Wrestling derzeit zu bieten hat. *EDIT* Nach seiner Shoot-Promo bei RAW habe ich noch mehr Respekt vor diesem Mann. Einer der grössten Charismatiker beim Marktführer & trotzdem auf dem Absprung! Er zieht sein Ding durch & das verdient Anerkennung. In einer Zeit, in der Individualität ohnehin nichts mehr wert ist, ist jemand wie Punk ein Juwel. Bleibt nur zu hoffen, dass wir ihn nach seiner verdienten Auszeit bald wieder im Ring sehen...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cena4Lifewrote on 30.06.2011:[10.0] "Der Mann begeister mich mehr und mehr, seit ich ihn kenne. Hatte ne längere Wrestlingpause (1990-1999 aktiv verfolgt, 2000-2007 gar nicht verfolgt, 2008-2009 etwas verfolgt, 2009 - jetzt so aktiv wie nie verfolgt), daher kannte ich ihn nicht solange. Aber von meiner anfänglich skeptischen Meinung bin ich mehr und mehr abgerückt und wage nun zu behaupten, dass er der kompletteste Wrestler in der WWE ist und dass sein Verlust die WWE mehr trifft, als alle bisherigen. Ausgenommen HBK, aber dass sein Ende mal kommt war abzusehen. CM Punk währe dauerhaft richtig gebookt, die totale Lebensversicherung in dieser schwierigen Zeit. Der Mann ist ein GOTT am Mikrofon, ist top im Ring, holt selbst aus schwächeren Gegnern ein gutes Match raus und vor allem nimmt man ihm genau das ab, was er sagt bzw. spielt. 10 Punkte sind zuwenig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HBK1986RKOwrote on 30.06.2011:[10.0] "Einer der besten aktuell und wenn er weiter macht wird er auch weiter größer und stärker mit seinem SE-Style."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PunksAwesomewrote on 30.06.2011:[10.0] "CM Punk ist einfach ein Alleskönner, er kann aus jedem Match ein sehenswertes machen und am Mikrofon ist der Mann ein Gott. Egal welche Rolle er spielt, man kauft ihm alles ab, er ist einfach das Gesamtpaket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JohnnyCashwrote on 30.06.2011:[10.0] "Bin inzwischen von einer 7 auf eine 10 gegangen. CM Punk gehört zu den ganz Großen im Geschäüft, das muss man einfach sehen. Ob am Mic oder im Ring gibt es aktuell kaum Wrestler, die ihm das Wasser reichen können. Er hat das Potential der nächste Austin oder HBK zu werden, auch weil er den Mund Backstage aufmacht & seine Kompetenzen wohl langsam mehr anerkannt werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The lonesome death of Hattie Carrollwrote on 29.06.2011:[10.0] "The best there is! Und wenn er den Titel gewinnen und mehr als nur einen "Summer of Punk" ausrufen darf, auch gern "the best there ever will be"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Charismatic Enigmawrote on 29.06.2011:[9.0] "Muss meine Bewertung dringend mal anheben. Auch wenn die Stories um ihn herum nicht immer zum Erfolg verdammt waren, versteht er es immer und überall brilliant zu unterhalten, egal ob gerade die Ringglocke geläutet hat, oder er ein Micro in die Hand bekommen hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fischy667wrote on 28.06.2011:[10.0] "Einer der komplettesten Wrestler die es im Moment im Business gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Chris Herowrote on 28.06.2011:[10.0] "Hammertyp! Kann alles, was man als Superstar in diesem Business braucht, um der Beste zu sein! Und er ist NOCH BESSER!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TeeHaawrote on 28.06.2011:[10.0] "Ringleistung => Check! Promos => Check! Charisma => Check! Was anderes als ne 10/10 kann ich beim besten Willen nicht vergeben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: cartmanwrote on 28.06.2011:[10.0] "Momentan einer der besten in der WWE. Glaubwürdig. Geiles Mic-Work. Sehr gute In-Ring Skills. Zeigt trotz PG Ausrichtung und WWE Limitierung sehr gute Matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tabowrote on 28.06.2011:[9.0] "Momentan einer der ganz großen, schade dass sein Vertrag mit der WWE bald endet. Zuvor will er sich aber noch als World Haevyweight Champion feiern lassen, und ich freue mich schon sehr auf dieses Match^^"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hu-Manwrote on 28.06.2011:[10.0] "Der beste Heel im Pro-Wrestling. Wäre Jericho noch aktiv, würden sie sich den Titel teilen. Der Mann ist einfach unglaublich. Technik, In-Ring Psychologie, Mic-Work und Charisma in Hülle und Fülle. Das Musterbeispiel für einen richtig guten Charakter im "Sports Entertainment"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Johnny-Tennerwrote on 25.06.2011:[10.0] ""CM Punk ist der Jesus der Neuzeit und Straight Edge die neue Glaubensrichtung. ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WWE4evermaybewrote on 24.06.2011:[10.0] "Tja, was soll man zu ihm noch sagen? Er ist ein Garant für gute Matches und tolle Promos. Der momentan kompletteste Wrestler in der WWE. Hoffe natürlich, dass er erhalten bleibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Y2Mikewrote on 24.06.2011:[10.0] "Ich muss ehrlich zugeben, dass mir CM Punk während seiner WWE Zeit nicht sonderlich zugesagt hat. Dies ist anscheinend daran gelegen, wie ihn die WWE eingesetzt hat. In seiner derzeitigen Rolle gefällt mir Punk äußerst gut. Sein ganzer Charakter wirkt auf mich (vorallem am Mic) viel natürlicher und authentischer. Bleibt nur zu hoffen, dass ihn die WWE auch in Zukunft so gut einsetzt. (9 Punkte).  Update: CM Punk hat lange genug bewiesen, was für ein großartiger Performer er ist. Zurzeit der beste Worker im gesamten Mainstream! (10 Punkte)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mick Funkwrote on 21.06.2011:[10.0] "Ím Moment das größte Komplettpaket, das in der WWE aktiv ist und das Highlight von fast jeder Raw Sendung. Die Fehde gegen Cena könnte unter Umständen ganz großes Kino werden. Hoffentlich wird das nicht verbookt und hoffentlich kann man Punk in der Company halten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Undertakemaintwrote on 17.06.2011:[10.0] "Der Kerl ist am Mic, sowie im Ring einfach der Hammer, die WWE sollte sich mal überlegen ihn besser einzusetzen, und noch mal eine Fehde gewinnen zu lassen. Verdiente 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: lostwrote on 16.06.2011:[10.0] "Ganz klar 10.  Für mich einer der Besten überhaupt!  Weltklasse im Ring, Genial am Mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bluminho 93wrote on 07.06.2011:[9.0] "Cm Punk gehört für mich definitiv zu den besten aller Zeiten. Nur schon wenn man bedenkt, was er bei seiner Statur bei WWE erreicht hat, muss man einfach den Hut vor ihm ziehen. Es stimmt einfach Alles bei ihm: Die Wrestlerischen Fähigkeiten, Micwork, Charisma, seine Darstellung als Heel. Einfach nur Top. Den einzigen Punktabzug bekommt er von mir wegen seiner Face Zeit in der WWE. Er war mir da schlicht zu farblos und schon nach wenigen Monaten nach seinem ECW Debut uninteressant. Doch dies kann natürlich bei Weitem nicht über seine restlichen phänomänalen Leistungen in diesem Sport hinwegtäuschen. Daher bekommt Punk von mir wohlverdiente 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Neuhofwrote on 22.05.2011:[10.0] "CM Punk ist der wohl unterhaltsamste Wrestler, den man zurzeit im kompletten Wrestling findet. Nicht nur, dass er im Ring exorbitant stark ist (wenn auch etwas arg häufig leicht überbewertet wird), Punk's Können, sobald man ihm ein Mikrofon in die Hand gibt, ist besser, als alles, was ich seit Jahren sehe. Ob als Messias-ähnlicher Stableleader, Face-Singles-Wrestler, oder auch Kommentator, Punk ist einer der allerbesten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Schiggywrote on 08.05.2011:[10.0] "Auch wenn er schon 1 Jahr absolut beschissen dargestellt wird, CM Punk hat nichts anderes als die volle Punktzahl verdient. Ein klasse Worker, habe mal bei der Survivor Series 2005 ein Plakat gesehen, auf dem stand: "CM Punk is the new Shawn Michaels. " Das kann ich so unterschreiben. Er hat alles: klasse In-Ring Fähigkeiten, mit dem er absolut geile Matches auf die Beine gestellt hat (sowohl in der WWE, als auch im Indy Bereich); geniales Mic-Work, gerade als Heel kann er mich hier immer wieder aufs neue unterhalten; Ausstrahlung und einen Charakter, der sich von den anderen abhebt. Für seinen Straight-Edge Lebensstil kriegt er vollsten Respekt.  CM Punk hat das Zeug zu einem klasse World-Champion und hat es einfach nicht verdient sich für jeden Face hinzulegen. Ich mein, Punk hat jetzt seit einem Jahr kein PPV Sieg mehr.. really? really? Derzeit würde ich die Auszeit, über die gemunkelt wird, begrüßen. Lasst ihm 2 Jahre Zeit sich zu erholen und sich zu finden und dann sehen wir einen besseren Punker als je zuvor!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Opalawrote on 05.05.2011:[10.0] "Er brauch eine andere Fehde sonst geht er noch unter. Sonst ist er Perfekt im Ring und am Mic. 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ballswrote on 30.04.2011:[10.0] "CM Punk hat einfach alles: die In-Ring Skills, die Fähigkeiten am Mic, das richtige Gimmick und einen guten Look. Woche für Woche reißt er sich mit sehr guten Leistungen den Allerwertesten auf und muss dafür für Orton jobben. Dass er sein Gimmick wirklich lebt macht Punk noch authentischer. Leider wird CM Punk in der WWE oft verheizt und ich kann verstehen, wieso er sich ausgebrannt fühlt. Punk ist nicht so wie ein 08/15 WWEler, er äußert sich zu den Dingen, die ihm nicht gefallen und provoziert auch mal seinen Arbeitgeber mit Colt Cabana Shirts oder der Sache mit den Entertainern/Wrestlern. Das alles macht Punk zu einem genialen Wrestler und verdient die Höchstnote."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Dennizwrote on 22.04.2011:[10.0] "Das beste was die WWE zu bieten hat. Mic Work und Ring Skills 1A... besser gehts nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated R Champwrote on 09.04.2011:[10.0] "CM Punk agiert mittlerweile schon seit etlichen Jahren auf einem konstant großartigen Level. Zu ROH Zeiten war er, mit tollen Leistungen am Mic und im Ring, zurecht einer der größten Stars der Indy Szene und er hat es als einer der ganz wenigen Indy-Lieblinge auch geschafft, sich in der (gänzlich anderes ausgerichteten) WWE zu etablieren. War er dort zu Beginn als Face noch etwas farblos ist er mittlerweile wieder seit einigen Jahren in der Heel Rolle unterwegs, in der er einfach brilliert. Punk ist einfach eines der besten Gesamtpakete die das Geschäft zu bieten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Babuswrote on 06.04.2011:[8.0] "Lange war ich der Meinung, dass die WWE-Leistungen CM Punks im Internet auf Grund seines Messiah-Rufs aus Indy-Zeiten massiv überbewertet werden würden. Zu seinen Face-Zeiten war er trotz Straight Edge-Gimmick eher farblos, seine ersten PPV-Matches mit Morrison oder Chavo meist enttäuschend und überhaupt wirkte sein Stil mitunter wie ein Fremdkörper im WWE-Universum. Mittlerweile muss man aber sagen, dass Punk und seine Promos aus der WWE eigentlich nicht mehr wegzudenken sind. Ich halte ihn zwar weiterhin nicht für den größten Redner unter der Sonne, aber Punk hat es in einer Zeit, in dem die meisten WWE-Gimmicks sehr simpel gestrickt sind, verstanden seinen Charakter konsequent weiterzuentwickeln, sodass er heute die vielleicht interessanteste Figur im WWE-TV ist. So macht mir Punk wirklich eine Menge Spass. Es bleibt zwar immernoch das kleine Manko, dass ich Punk im Ring kaum besser als den Durchschnitt finde - aber vielleicht kann er mich hier ja auch noch ein zweites Mal überraschen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rob Van Duesenschrauberwrote on 01.04.2011:[10.0] "Vor über 3 Jahren habe ich zu Punk einen Kommentar abgegeben und die Bestnote verteilt. Daran hat sich bis dato nichts verändert. Punk war der Grund, warum ich angefangen hab Indy-Wrestling zu schauen und heute ist er der Grund wieso ich Raw anschaue. Großartiger Wrestler, großartiger Entertainer, einer der besten im Business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Elvis6wrote on 20.03.2011:[9.0] "Zurzeit der Heel schlechthin in der WWE. Seine erstes Jahr war wohl vergeudet. Erst mit dem Turn kam er richtig rüber. Dieses leicht Geistesgestõrte Gimmick bringt wohl kein anderer so gut wie er. Hoffe er darf mal wieder im Titelgeschehen mitmischen. Promos, Auftreten u Wrestlingskills top. Und anscheinend auch privat ein cooler Typ. Mein Hauptgrund Raw zu schauen"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Y2John Cenawrote on 05.03.2011:[10.0] "Super Mic-Work, er spielt sein Gimmick sehr überzeugend -IMO der beste Heel der WWE. Im Ring wesentlich stärker als der Durchschnitt. =>10 pkt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jack Londonwrote on 21.02.2011:[10.0] "Toll am Mikro, toll im Ring, eigentlich auch ein tolles Gimmick, aber im Moment fehlt ihm die richtige Fehde.  EDIT: Punk ist der beste Entertainer, den das Mainstream-Wrestling hat. Punk ist großartig im Ring und darf das nun auch auf der großen Bühne beweisen, er ist großartig am Mic und auch seine Gestik ist die eines wahren Superstars. Kurzum: Punk hat alles, was es braucht, um einer der ganz großen zu werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Matt4Wrestlingwrote on 15.02.2011:[9.0] "Mal gepusht, dann nicht, mal ganz Groß, dann total unbedeutend-hat das ein CM Punk verdient? Im Independent-Bereich hat er schon lange überzeugt, warum muss er sich dann von WWE immer zwischen ganz schlecht und herrausragend hin und her einstufen lassen? Wenn er endlich mal sein ganzes potentiall ausschöpfen darf oder dürfte, würde man sehen, was alles in CM Punk steckt!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RIKYwrote on 14.02.2011:[10.0] "Straight Edge means I am better than you... Und genau DAS beweist CM Punk jede Woche auf's neue! Er ist im moment einer DER Top-Heels der WWE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CenationFanwrote on 05.02.2011:[8.0] "Ein guter Wrestler mit großartigen Mic-Skills. Als Anführer der "Straight Edge Society" hat er mir überhaupt nich gefallen, aber seid er der Anführer des "New Nexus" ist, gefällt er mir als Hell auch wieder viel besser."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: troppiewrote on 05.02.2011:[10.0] "Klasse Wrestler, unglaubliches Micwork, sehr viel Charisma, kurz gesagt Total Package und damit 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wolverinewrote on 03.02.2011:[9.0] "Punk versteht es zu unterhalten und ist sehr wandelbar was seinen Look angeht - seine In-Ring Skills sind hervorragend, genauso wie sein Mic-Work. Sein Booking im Rumble hat mich hingegen verärgert, aber vermutlich hat es seinen Sinn erfüllt - es wird mich daran erinnern, dass Punk 2011 ähnlich wie 2010 eine DER beherrschenden Figuren im Rumble war. Angesichts so einer Präzens dürfte es nur noch eine Frage der Zeit bis zum Rumble Sieg sein."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Zamunerwrote on 02.02.2011:[10.0] "Er ist da angekommen wo viele ihn immer gesehen haben. Er überzeugt mit sein Promos und seinen Matches Woche für Woche, aber speziell die Promos sind herausragend. Punk gehört in diesem Bereich in eine Kategorie mit Jericho. Leider kann man ihn in vielen Punkten mit Jericho vergleichen. Beide sind eigentlich mit das Beste was die WWE zu bieten hat / hatte. Aber Punk wird wohl nie in die Riege eines Rock, Austin, Shawn Michaels, Undertaker, Triple H, Cena aufsteigen und eine Show alleine tragen können. Ich sehe hier das gleiche Problem wie bei Jericho: Manchen ist es einfach nicht vergönnt ganz nach oben aufzusteigen, auf die letzte Stufe im Olymp. Sich darüber zu streiten warum das so ist ist müßig. Ich freue mich über jede Fehde mit ihm, jedes Match und jede Promo... wie bei Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GamePrincewrote on 27.01.2011:[9.0] "Einfach ein super Typ. Am Mic sehr stark und im Ring hat er auch viel drauf. Aber er kann sich noch steigern ... da ist auf jeden Fall noch Luft nach oben. 2010 fing mit seiner Fehde gegen Rey gut an, aber ein Big Show und sein Gesundheitszustand ruinierten leider sein Jahr. Jetzt hoffe ich, dass er 2011 wieder zeigen kann, was in ihm steckt!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Yannick009wrote on 21.01.2011:[9.0] "Super Techniker mit den nötigen Mic-Skills. Freut mich dass es nach seiner Verletzung endlich wieder da ist! Kann Raw allein aufwerten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Big Jackwrote on 20.01.2011:[9.0] "Ich finde CM Punk ist die Zukunft. Gerade jetzt, wo man nicht mehr so sehr sein Straight Edge Gimmick benutzt, gefällt er mir wieder. Wrestlerisch echt super und am Mic, meiner meinung nach sowieso der Beste in der WWE!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Akkuswrote on 19.01.2011:[10.0] "Einfach für mich der einzige WWE Charakter den ich interresant finde. Seine Mic Künst esind genial. Seine Mimik göttlich un dim Ring auch nicht von schlechten Eltern. Nachdem man mit der SES sein Gimick fast gegen die Wand gefahren hat ist die neue Rolle noch geiler. CM Punk ist der Grund warum ich mir jeden Montag Raw ansehe!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CharismaticEnigmawrote on 19.01.2011:[10.0] "Was soll man viel über CM Punk sagen : Er ist im Ring einer der besten, den die WWE im Moment im Roster hat und sein Mic-Work kann sich auch mehr als nur sehen lassen ! Als Heel ist seine Ausstrahlung auch deutlich imposanter als als Face, wobei ich ihn sowohl als Face, als auch als Heel mag. Ein kompletter Wrestler, der der WWE hoffentlich noch lange erhalten bleibt und dem WWE-Universe viel Freude bereiten wird ! eine glatte 10 !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: chryzzwrote on 18.01.2011:[10.0] "Als heel mehr als Goldwert. Als Face auch überzeugend dennoch als heel besser. Punk gefällt mir derzeit sehr gut. Bei ROH ebenfalls. Nur als face fand ich ihn etwas alngeweilig deshalb "nur" 9 punnkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Detrituswrote on 17.01.2011:[10.0] "Ganz großen Respekt vor seiner Einstellung. Wenn man dann auch noch solche Matches abliefert wie Punk und auf die Einnahme von Schmerzmitteln verzichtet, kann er eigentlich nur ein Vorbild für die ganze Welt des Sports sein. Im Ring ist er einer der Besten seines Fachs und hat es verdient weiterhin einer der Topstars der Liga zu sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheRock 7 Champwrote on 16.01.2011:[10.0] "Sein Gimmick als Straight Edge Savior gefällt mir. Als Face war er ganz gut, aber als Heel ist er einfach nur göttlich! Im Ring ist er der Hammer und am Mic reißt er mich immer mit. CM Punk ist mit Sicherheit einer der besten Superstars der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: rwddwrote on 15.01.2011:[10.0] "Als Face damals nicht soo sehr überzeugend aber jetzt als Heel die absolute Granate ! Mic work ist das beste seit The Rock und sogar besser als das Kennedys ! Er ist ein super Wrestler und hat eine mega Ausstrahlung . Er ist authentisch und man kauft ihm alles ab , was er sagt ! Als er dann zum Heel wurde 2009 wurde er zum betsen Gesamtparkets des Jahrzehnts ! Weiter so !  ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: stinger89wrote on 13.01.2011:[10.0] "Einfach nur Goldwert der Mann. Als Face gefiel er mir schon gut, nutzte sich nach einer Zeit aber schnell ab. Der Heelturn hat ihm richtig gut getan. Seit gut 2 Jahren ist er am Mic immer wieder erste Sahne.  Im Ring ist er meiner Meinung nach ebenfalls unter den Top 6 der WWE. Ich hoffe er kommt demnächst nochmal ins Titelrennen. Verdient hätte er es allemal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RhinoRaineswrote on 12.01.2011:[10.0] "Er hat in den vergangenen zwei Jahren eine fantastische Entwicklung genommen und dürfte momentan das beste Komplettpaket im Wrestling-Biz sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sandiegowrote on 12.01.2011:[10.0] "Jeder Athlet, der Straight Edge in diesem Business lebt ist 10 mal mehr Superstar und Vorbild als jedes hochgepushte Anabolika-Monster. Das gepaart mit Punks wrestlerischer Klasse und seinem genialen Mic-Work machen ihn zu einem der Besten, die es derzeit gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: StevenHLRwrote on 12.01.2011:[8.0] "Ich finde Punk momentan als Nexus Anführer macht er sich nicht schlecht! Doch irgendwie sollte er sich selbst auch noch "Bestraffen" Gut, die idee, jeder muss sich was antun damit sie im Neuen Nexus sind ist ansich nicht schlecht! Doch da sollte doch der Anführer mitziehen!  Okay vom Monitor runter springen ist vielleicht ein bisschen zu Extrem! Doch für den Anfang ist es sicherlich nicht schlecht!  Das sich Sleader(oder so... ) und der Afrikamen nichts gemacht haben gibt sicherlich für die nächste RAW Ausgabe spannung! Vielleicht hat das auch noch Auswürkungen auf das bevorstehnde Match gegen Cena! Hoffe ich aber nicht, man kann aber damit Rechnen das Nexus sicherlich seine Finger im Spiel haben wird beim Match!  Wen Punk so weiter macht würde mich das Match bei WM27 gegen Cena freuen! Sind zwei hammer Wrestler mit viel potenzial! Gebe sicherlich ein hammer Match!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: theiconwrote on 04.01.2011:[10.0] "CM Punk ist für mich der besste Promo Held der WWE-Geschichte. Seine Wrestling-Skills sind auch genial. Zusammen gibt dass einfach nu ein genialer Wrestler. Er ist eine lebende Legende. Ich hoffe er wird sehr bald wieder champ"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jeffrey Nero Hardywrote on 30.12.2010:[10.0] "Zu erst mal ist der Kommentar meines Vorschreibers, das dämlichste was ich je gehört habe. Dieser Mann hat was anderes als 10 Punkte nicht verdient. Er ist ein am Mic und im Ring ein Gott und ein klasse Kommentator."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ray Robsonwrote on 29.12.2010:[10.0] "CM Punk ist ein Phänomen. Als er noch Independent unterwegs war, konnte ich ihm trotz des Hypes nichts abgewinnen. Doch jetzt... er ist einer der wenigen Wrestler, die in der WWE noch dazu gewonnen haben. Dieser Charakter ist einfach großartig, ihm nimmt man seine Rolle sofort ab, seine Promos sind Gold wert und nehmen vieles aufs Korn, was im Wrestling eigentlich "normal" ist - weil CM Punk eben zu Intelligent dafür ist. Klasse im Ring und unfassbar unterhaltsam - 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Icebreakerwrote on 28.12.2010:[10.0] "Zu gegeben, ich habe nichts oder kaum etwas von Punk außerhalb der WWE gesehen. Aber das muss ich auch nicht, um zu wissen was er kann. Von den Promos her steht er einfach auf dem Olymp neben Edge, Jericho und The Rock. Er bringt sie phänomenal rüber und beeinflusst den Zuhörer auf geniale Art und Weise. Mimik und Gestik passen grandios dazu. Einzig das dauernde Straight Edge Gelabere Woche für Woche hat eine zeitlang genervt. Im Ring ist er zweifellos einer der besten der WWE. Leider darf er nicht alles zeigen. Ein super Techniker, der vermag es Geschichten auch innerhalb des Rings zu erzählen. Egal ob Matten- oder Spotwrestling, er kann beides! CM Punk lebt für das Wrestling und das merkt man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: maxiking125wrote on 28.12.2010:[10.0] "Ja Punk is back... und das als neuer NeXus Leader. Na wenn das keine geniale Comeback Storyline is...  Ich komm jetz mal zur eigentlichen Bewertung: Micwork= ist mehr als nur solide Ring-In= er war eine Leitfigur in ROH und beweist sich auch in der WWE obwohl er echt nich mehr soviel zeign darf naja er hatts trotzdem drauf Resultat: 10 Punkte für den neuen NeXus Leader"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Double Jwrote on 27.12.2010:[8.0] "Die 8 Punkte gits für seine ROHund sein göttliches Mic-Work. Was er in der WWE nur im Ring zeigen darf ist zum Kotzen. Kick, kick, Kick, GTS ende. Immer die selbe Leier."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Schmidi2121wrote on 26.12.2010:[10.0] "Er ist Wrestlerisch und auch am Mic Herausragend.  Ich finde es großartig das er sich auch in der WWE halten und vorallem durchsetzen konnte.  Das schaffen ja nicht soviele Indy-Topstars die in die WWE kommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gretchen2010wrote on 18.12.2010:[9.0] "Phil ist einer meinr favs. Ich meine mal ich habe ihn am anfang nicht so gemoch aber nun ist er top. ich vermisse ihn aktive im ring und bin froh wenn ich ihn als komentator bei WWW-Superstars sehe."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Overlordwrote on 15.12.2010:[9.0] "Definitiv einer meiner Lieblingswrestler. Ob im Ring oder am Mic, Punk überzeugt in allen Belangen, egal in welcher Rolle. Seine aktuelle Rolle als Commentator ist ihm eigentlich wie auf den Leib geschneidert, doch nach seiner Verletzung soll er doch bitte wieder seine unbestrittene Klasse im Ring unter Beweis stellen, am besten als Heel in einer Fehde gegen Bryan."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AlexPrimewrote on 15.12.2010:[10.0] "CM Punk ist ein sehr interessanter Worker.  Am Mic gefällt er mir seit seinem Heel Turn vor etwas mehr als einem Jahr außerordentlich gut und im Ring war er schon immer gut.  Vorallem in seiner Indy Zeit wusste er zu überzeugen.  Auch zurzeit am Kommentatorentisch gefllt er mir sehr gut !  Woche für Woche freue ich mich auf seine Kommentare.  Nur hoffe ich, dass er schon bald wieder in den Ring zurückkehrt, denn da ist sein wahrer Platz."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Denzwrote on 10.12.2010:[10.0] "10 Punkte, Super Kommentator und Wrestler... upps, er ist ja Superstar und kein Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Leikkywrote on 04.12.2010:[10.0] "Hat mir besonders in seiner Indy-Zeit sehr, sehr gut gefallen. Man verheizt sein Talent hier ein wenig, aber noch akzeptabel. Ein unglaublich überzeugender (obwohl überzogener) Heel mit guten Mic-Skills. Dass auch die Promos damals besser waren, steht außer Frage. Aber sie sind immer noch gut. Die ewig gleiche Betonung? Ist meiner Meinung nach sehr passend. Er ist in seiner Rolle nunmal von sich überzeugt und muss sich nicht extrem erklären oder verdeutlichen. Alles also in einem sehr guten Rahmen. Sehe ihn im Ring sehr gerne. Mehr davon also bitte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Necronwrote on 03.12.2010:[8.0] "Seine Kämpfe ziehen mich in den BAnn, aber sein Charisma dockt bei mir nicht an. Keine Ahnung warum, aber ich mag Punk nur, wenn er kämpft. Sobald er redet oder versucht, in einer Storyline interessant zu wirken, langweilt mich das."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Yordakuswrote on 02.12.2010:[10.0] "Punk ist in allen Hinsichten ein Top Worker!  Im Ring hat er es mehr als drauf und am Mic machen ihm zur Zeit nur wenige etwas vor!  Ich bin mehr als glücklich, dass er trotz verletzung jetzt noch auftritt und am Komentatoren Pult ist er sogar noch besser als Matt Striker :-D Punk ist einfach genial!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Boggenauerwrote on 02.12.2010:[10.0] "Der Mann kann mich in jeder hinsich überzeugen hat ziemlich gute In-Ring Skills und am Mic einfach Göttlich, sehr gute Promos kann er auch liefern als Heel ist er einfach Unglaublich Straight Edge means I'm better than you einfach Klasse wie der Kerl Heat zieht. Zudem ihn im moment als Kommentator zu verwenden während seiner Verletztungspause ist keine schlechte Idee ich höre ihn mir gerne an, ich kann es kaum abwearten ihn wieder im Ring zu sehen. Von mir volle 10 Punkte für den Straight Edge Savior."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kennedy Olivenwrote on 13.11.2010:[6.0] "Ich weiß das ich mir sicherlich den Zorn vieler zu ziehen werde. Ich weß auch das Punk eigentlich eine bessere Note verdient. Ich weiß auch das Punk ein wirklich hervorrangender Wrestler ist, super Mic-Skills hat und auch sonst einen super Heel abgibt. Aber wo ist sein ganzes Momentum hin? Nach der Fedhe gegen Hardy 2009 war er der TOP-HEEL und war so dermaßen Over. Dann kam die Sache mit der SES. Das hat ihm mehr geschadet als geholfen. Denn die Idee war zwar gut aber Punk kann nicht ein Stable von 4 Leuten alleine tragen. Dafür war der Rest einfach zu schlecht(mit Serena hätte man vielleicht noch was anfangen können). Dann kam noch das Verletzungspech und Punks Overness war total im Keller. Das Beste ist er nimmt sich die Auszeit und kommt dann mit einem Super-Comeback & einer Top-Fedhe wieder in seine alte Form zurück."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: elcattivo83wrote on 13.11.2010:[8.0] "Wrestlerisch einer der Besten die es in der WWE gibt. Leider konnte er sich noch nicht so in Szene setzen wie er es eigentlich verdient hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: XoXwrote on 04.11.2010:[10.0] "CM Punk ist eines der besten Komplettpakete, die das Main Stream Wrestling zur Zeit zu bieten hat. Ein Gott am Mikrofon, charismatisch und im Ring top. Leider hat man oft das Gefühl, dass WWE ihn zu sehr unten hält, gerade was das Booking in der SES-Zeit anging. Ich hoffe sehr für Punk und WWE, dass sich das ganze nach dem Ende seiner Verletzungspause wieder ein wenig wandelt, denn dieser Mann gehört ganz nach oben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gaven Eolowrote on 22.10.2010:[10.0] "hat mir als Face schon sehr gut gefallen und als er damals, ausgerechnet gegen Edge, seinen Money in the Bank-Koffer eingelöst hat, bleibt ein Moment für die Ewigkeit.  Als Heel ist er aber noch eine Nummer größer einzuschätzen. Unglaublich starkes Mic-Work.  Er gehört unbedingt wieder in eine Main Event Fehde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Aesopwrote on 18.10.2010:[10.0] "CM Punk ist ein fabelhafter Wrestler, seine In-Ring Skills sind sehr gut und begeistern mich immer wieder. Er hat auch einiges an Charisma, dies kann er am besten als Heel einsetzen. Punk hat es geschafft aus seinem Lebensstil eines der besten Heel-Gimmicks zuschaffen das es je bei ROH gab und auch in der WWE weiß er mir als hochnäsiger Straight Edge Superstar zu gefallen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Homicide187wrote on 09.10.2010:[10.0] "Punk ist einfach super. Ich habe alles bei IWA, RoH usw aufgesaugt, weil ich ihn so super fand und nun hat er sich auch bei WWE durchgesetzt. Ich hoffe das er wieder stärker dargestellt wird, aber das wird schon kommen, immerhin kann er wirklich alles!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rookie of the Yearwrote on 24.09.2010:[10.0] "War am Anfang skeptisch als er zum Heel geturnt wurde, spielt dort aber sein volles Potential aus. Für mich einer der besten (wenn nicht sogar der beste) von SmackDown. Klare Sache: 10 Punkte :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Piurrywrote on 23.09.2010:[10.0] "CM Punk gefällt mir eigentlich schon immer extrem gut. Der Style, der Stil, es passt einfach.  Wurde für einen mehrfachen Champ in der WWE in letzter Zeit leider sehr sehr bescheiden eingesetzt bzw stark unter Wert verkauft. Hoffe aber jetzt nach der Fehde mit Big Show und dem Ende der SES auf Besserung, er hat es imo verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DirtiestPlayerwrote on 20.09.2010:[8.0] "Im Moment leider nicht viel mehr als ein Edeljobber."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pyromaticwrote on 17.09.2010:[8.0] "Super Wrestler und Entertainer, wird aber ständig von der WWE schwach eingesetzt. Ein wirklich starker und konsequenter Push wären angebracht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Ramwrote on 02.09.2010:[10.0] "Er hat mir schon immer im Ring gefallen und am Mic (oder auch ohne) ist Punk einfach perfekt. CM Punk ist der Jesus der Neuzeit und Straight Edge ist die Neue Glaubensrichtung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JayLethalwrote on 29.08.2010:[10.0] "Ja, was soll man zu diesem Mann noch großartiges schreiben? Einfach ein klasse Wrestler, der einfach unglaubliche In-Ring Skills hat. Technisch beinahe perfekt und eine Austrahlungen, die einfach mitreisst. Seit ich ihn bei diversen Indy Ligen gesehen habe, bin ich ein CM Punk Fan. Ein Wrestler der sein Gimmick lebt und das finde ich super! Eine super Lebenseinstellung ;) CM Punk and the Straight Edge Society for Gold!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Whole FN Showwrote on 18.08.2010:[10.0] "Bestnote für einen sehr guten Micworker, einen Guten Wrestler und an den Mann, warum ich mir wenigstens die WWE Showberichte durchlese."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Miz 28wrote on 18.08.2010:[10.0] "Im Ring un am mic absolute stark. Momentan hängt sie Straight Edge Society etwas in der Luft aber das will ich beider Bewertung nicht berücksichtigen weil Punk ist de rletzte der etwas dafür kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ISAGwrote on 18.08.2010:[10.0] "War schon immer begeistert und ein riesen Fan von ihm und seinem Können. Hat so zeimlich jede Indy-Liga dominiert und mischt jetzt ganz oben bei der WWE mit. Nur die langen Haare fehlen mir etwas. Aber ansonsten einer der besten Wrestler auf dem Planeten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Vanniwrote on 17.08.2010:[10.0] "Definitiv 10 Punkte. Stark am Mic und im Ring. Mehr braucht es nicht für einen nahezu perfekten Superstar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: boiddewrote on 01.08.2010:[9.0] "Hat sich in der WWE zu einem der besten Entwickelt, hat aber noch Luft nach oben"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NewWolfwrote on 01.08.2010:[8.0] "Viel Charisma, gut im Ring. Einer de wenigen, die es vom Internetliebling zum Mainstreamstar geschafft haben"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jerichoholicwrote on 28.07.2010:[10.0] "Mit dem Heel-Turn und der Fehde gegen Jeff Hardy hat man all das richtig gemacht, was man beim ersten Run mit CM Punk noch falsch gemacht hat. Sein Straight Edge Gimmick gibt dem Charakter endlich die nötige Tiefe und kommt natürlich hervorragend an. Dass Punk damit gut umgehen kann, beweist er nahezu jede Woche bei Friday Night Smackdown. Hier offenbart er immer wieder, dass er zurecht an der Spitze steht - er hat den Superstar Look, er hat das nötige Charisma und natürlich auch die Fähigkeiten im Ring. Sicherlich reichen seine Matches qualitativ nicht mehr an das heran, was er bei ROH gezeigt hat (was aber noch lange nicht bedeutet, dass sie in irgendeiner Weise schlecht sind). Aber in seinen bisherigen Main Event Matches hat Punk aber gezeigt, dass er dramatische Big Matches auf hohem Niveau zeigen kann (alleine durch seine Mimik kann er die Zuschauer in seinen Bann ziehen), wie es für die WWE nötig ist. Daher traue ich ihm auch durchaus einen glaubwürdigen und hochklassigen Wrestlemania Main Event zu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Whopperlewrote on 28.07.2010:[10.0] "Vielleicht der beste Heel den die WWE momentan hat. Also für 2010 sollten echt drei Fotos in die Galerie ; )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SES-Memberwrote on 27.07.2010:[10.0] "CM Punk hat sich in den letzten Jahren deutlcih verbessert. Ich muss zugeben, am Anfang habe ich an Ihm gezweifelt als Er Face war, doch ab Extreme Rules hat Er sich immer mehr gesteigert und spielt nun shcon seit mehreren Monaten seine Rolle als ``Savior`` einfach klasse. Im Ring ist er klassse und zeigt dauerhaft eine Klasse Leistung wie man z. B. in der Fehde gg Jeff Hardy sehen konnte und am Mic ist Er eh einer der Besten bei SD. Deutliche 10 Punkte von mir für CM PUNK"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Manu Adamswrote on 26.07.2010:[8.0] "Wird wie ich glaube uns noch lange als WWE Main Eventer erhalten bleiben. Seine Matches insbesonders gegen Jeff Hardy sind exzellent und auch am Mikro hat er einiges drauf. Seine Straight Edge Society ist ebenfalls herrvoragend, Punkte Abzug gibt es allerdings für seinen schwachen Face Charakter."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheRock902102wrote on 18.07.2010:[9.0] "Vielleicht einer der wenigen, der die WWE in den nächsten Jahren oben halten kann.  Seine Matches sind extraklasse, ein absolut guter wrestler. Auch sonst ist CM Punk ein Typ mit einem riesigen Unterhaltungswert.  Es dauert nicht mehr lange bis er wieder World Champion ist, er macht einfach nur Spaß !"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The-Game91wrote on 14.07.2010:[8.0] "Ich finde CM Punk etwas überbewertet. Seine Moves sind durschnittlich da er sie oft verbotcht und am Mic ist er auch kein Gott.  EDIT: Heel Punk ist übberragend und zeigt hier was er wirklich kann. Ein richtiges Arschloch sein."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Medeawrote on 30.06.2010:[9.0] "CM Punk hat mich zunehmend mehr überzeugt. Nicht nur durch seine Ausstrahlung und durch sein mitunter auch wirklich sehr lustiges Micwork sondern zuletzt auch durch sein toughes Wiederaufstehen, um dem ungerechtfertigten Buhen des Publikums, welches er verletzungsbedingt auf sich zog, ein Ende zu setzen. Das war eine fabelhafte Fortsetzung des Matches!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Brahma Bullwrote on 26.06.2010:[8.0] "Ein gutes Jahr nach meiner Wertung muss ich meine Note nach oben korrigieren. Im April 2009 gab ich ihm 6 Punkte. Heute geb ich 8. Er ist ein klasse Worker und hat sich hervorragend entwickelt und in der WWE involviert."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WrestlingFanDuisburgwrote on 03.06.2010:[10.0] "CM Punk ist klasse. Als Face hat er mir sehr gefallen und wie es sich für einen guten Heel gehört mag ich ihn als Heel nicht. Die Idee mit der Straight Edge Society finde ich richtig cool. Seine Maske sieht zwar etwas doof aus aber gute Idee."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Metal Wolfpac Crewwrote on 01.06.2010:[9.0] "Kann dieser Mann eigentlich noch besser werden? Ich mein der Heelturn war schon ein genialer Schazug. Die Straight Edge Society zu gründen hat ihm noch mehr Tiefgang gegeben. Aber die Geschichte mit der schwarzen Maske macht ihn für ich zum Gott. Noch mehr Stilfigur für seine "Sekte" kann man nicht sein. Ich würde mir wünschen, dass die SES noch weiter ausgebaut wird und sich auch namenhafte Stars ihr anschließen. In dem Stable steckt so viel Potenzial auch in der Hinsicht, dass man Kritik an sich selber üben kann und potenzielle Wiederholungstäter in die SES stecken kann (nur so ne Idee). Technisch ist er natürlich oberste Güteklasse und hätte es daher verdient öfter Main Event zu stehen oder den World Title zu gewinnen, grade jetzt wo er zu einem Symbol geworden ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: coldbeer316wrote on 29.05.2010:[10.0] "Gefiel mir als technisches Babyface schon sehr gut, aber als Heel nur noch ein Gott! Man muss eigentlich nichts mehr zu Cookie Monster;-) Punk sagen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MarthaHartFanwrote on 29.05.2010:[9.0] "Hat sich von ganz unten nach ganz oben gekämpft. Verdient allerhöchsten Respekt. Allerdings stört mich das SES-Gimmick massiv!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Aquifelwrote on 23.05.2010:[10.0] "Was will man zu Punk noch sagen? Wrestlerisch hat er es einfach drauf, das hat er schon unzählige Male bewiesen. Was Promos und Gimmick angeht ist er momentan einer der besten und interessantesten Charaktere überhaupt. Etwas anderes als 10 Punkte kommt gar nicht in Frage, wobei man sagen muss, dass er als Face in der WWE recht blass war. Aber das kann man ihm nicht ankreiden. Einer der Gründe, weshalb es sich dann doch lohnt die WWE zu verfolgen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Y2J Problemwrote on 23.05.2010:[10.0] "Der "Retter der gradliniegen Gesellschaft" oder einfach "Straight Edge Savior". Allein für den "Rauswurf" von Jeff Hardy 10 Punkte. Das äußerst gute Mic-Work und die guten Matches sind da ein tolles Beiwerk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Erasedwrote on 22.05.2010:[9.0] "CM Punk bringt sein Straight Edge Gimmick gut rüber. Er spielt seine Rolle sowohl als Face, als auch als Heel gut und wird auch angenommen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cenafan 09wrote on 22.05.2010:[10.0] "CM PUNK ist die Zukunft von WWE. Er ist in seiner Heel Rolle einfach nur göttlich"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MarcTrixwrote on 19.05.2010:[10.0] "Klasse Wrestler, hat gute In-Ring Skills und es macht einfach Spaß ihn im Ring zu sehen. Außerdem ist er wirklich sehr gut am Mikrofon. Seine Promos sind meistens mitreißend und wirklich sehr gut umgesetzt. Ich hoffe er bleibt uns noch lange im Main-Event erhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Straight Edge Jerichoholicwrote on 19.05.2010:[10.0] "CM Punk!  ROH Matches super, IWA MS Matches Super, Einige WWE Matches Super(z. B gegen Jeff Hardy beim TLC Match) und als Heel einfach nur göttlich!  Der Mann kann reden! Die SES strahlt für mich mehr sone Psycho-Gruppe aus aber ich finds klasse so!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Edge96wrote on 12.05.2010:[10.0] "Fand ihn als Face super und als Heel einfach nur genial. Göttlich als geradliniger Savior. Auch seine Socitey passt gut zu ihm. Die starken Mic Fähigkeiten und sein Können im Ring überzeugen mich ihm 10 Punkte zu geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Perfectionwrote on 09.05.2010:[10.0] "CM Punk ist wahrscheinlich der Beste, wenn nicht einer der Besten, All Rounder die es gibt. Am Mikro ist er Top, genauso wie im Ring. Er macht mit dem Fans was er will und hat eine sehr gute Ausstrahlung. Ich glaube, dass er momentan seine beste Rolle in der WWE gefunden hat. Die Straight Edge Society hat mit ihm als Savior sehr viel Potential und ich hoffe, dass dieses Stable noch lange bestehen bleibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sandmannwrote on 04.05.2010:[10.0] "Um ehrlich zu sein gefällt mir Punk jetzt mit der Straight Edge Society noch besser als früher bei ROH. Er hat sich seinen Weg wirklich hart erarbeitet bei WWE und kann schon jetzt auf eine sehr erfolgreiche Karriere zurückblicken. Wer hätte gedacht das Punk, der sich ja durch die OVW arbeiten musste, so im Mittelpunkt bei WWE stehen wird. Mir wird er natürlich immer als Leader der Second City Saints in Erinnerung bleiben. Bei ROH gropartige Matches mit Samoa Joe und Raven. Als Kommentator auf den ROH DVDŽs immer richtig cool. ROH Champion, WWE Champion... was will man mehr!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Defraggerwrote on 29.04.2010:[10.0] "Als Face schon im Ring super gut, nun , als Heel mit feingeschliffenem Charakter für mich grandios. Die Promos jede Woche sind absolut top und sehenswert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Big Bad Booty Babywrote on 15.04.2010:[8.0] "So leid es mir tut, aber ich muss meine Bewertung ändern. Im Gegensatz zu vielen anderen gefällt mir Punks derzeitige Situation längst nicht so gut. Man beschränkt zu sehr auf seine Rolle als Savior, in der er zwar Unmengen Heat zieht, was ihn aber nicht gleich großartig macht. Einerseits hat die Geschichte mit seiner SS, tschuldigung, will sagen SES (ist das nur eine zufällige Verwechslung oder hat Punks Straightedge Handheben in Kombination mit den Glatzköpfen um ihn herum mein Unterbewusstsein an eine geschichtliche Paralle erinnert? ) etwas und war in dieser Form noch nie vorhanden, womit man TNA zumindest eines voraus hat. Trotzdem gefällt mir sein Auftreten nicht, wahrscheinlich ist es der eindeutige Versuch von Seiten WWEs den perfekt auf amerikanische Klischees abgestimmten Antichristen zu schaffen, für den Punk herhalten muss, was mich so unglaublich nervt und bei mir Ablehnung hervorruft. Punk ist eigentlich so viel mehr..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: catchfanwrote on 14.04.2010:[7.0] "Als Heel um einiges besser als als babyface, trotzdem kein Worldtitle-Material."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MW - Societywrote on 06.04.2010:[10.0] "Punk ist zur Zeit neben Chris Jericho mit abstand der beste Heel der Liga darum auch 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hennewrote on 04.04.2010:[10.0] "Wer seine ROH Matches kennt, weiß, dass er nicht "nur in TLC Matches" eingesetzt werden kann. Der Junge ist Gold. Er weiß es, die WWE weiß es. - - 2010: Hat sich mittlerweile im Konzert der Großen zurecht etabliert und ist durch seine SES und die neue, alte Ausrichtung des Gimmicks nahezu unverwundbar geworden, ähnlich wie ein Chris Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kankurowrote on 02.04.2010:[10.0] "Zeigt als Heel seine wahre Klasse, insbesondere was die Promos angeht. Im Moment einer der interessantesten Charaktere in der WWE. // Update: Aufwertung auf die Höchstpunktzahl. Was Punk in den letzten Monaten abliefert, ist ganz große Klasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: XCornwrote on 02.04.2010:[10.0] "Neben Jericho ist er der beste Mann am Mic momentan und auch seine Ringskills gehören zu den besten in der WWE, ja im Pro Wrestling überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Batistawrote on 02.04.2010:[8.0] "Guter Wrestler und stark am Mic! Seine Straight Edge Society kommt gut an! Für mich einer der Top-Stars der WWE!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Moyawrote on 28.03.2010:[9.0] "Ist sowohl ein guter Wrestler als auch Mic-Worker. Zählt sicher zu den interessantesten Personen zur Zeit!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Venomwrote on 24.03.2010:[10.0] "Wenn der Taker, HBK, Triple H oder ReyRey irgendwann mal kürzer treten bzw ihre Karrieren ganz beenden, dann muss man sich um die WWE dank Leuten CM Punk keine Sorgen machen... Punk, der schon jetzt eine gute Rolle spielt und einige Erfolge vorzuweisen hat, ist in meinen Augen DIE Zukunft für WWE... natürlich neben den schon etablierteren Big-Shots wie Cena, Orton oder Edge!  Punks Vorteil: Er kombiniert sein charismatisches Auftreten mit hervorragenden In-Ring-Leistungen sowie fesselndem Mic-Work ala Chris Jericho!  10 Points Punk! Period!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 123 kidwrote on 18.03.2010:[10.0] "Als Face fand ich ihn schon klasse, aber als Heel ist er einfach nur göttlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Italian Straight Edgewrote on 16.03.2010:[10.0] "CM Punk war schon immer mein Lieblingswrestler. Ich lebe ebenfalls den Straight-Edge-Lifestyle. In letzter Zeit war er als Face leider etwas langweilig. Da kam der Heel Turn gerade recht. Ein Heel Superstar, der nicht trinkt, nicht raucht und keine Drogen nimmt? Genialer geht's nun wirklich nicht! EDIT: Technisch klasse und am Mikrofon göttlich unterhaltsam. Verdienter Main Eventer. Ich habe so ein Gefühl, dass er dieses Jahr auf jeden Fall einen World Title um seine ''Chicago Made''-Hüften tragen wird. Und die Straight-Edge Society ist auch klasse ... aber Luke Gallows und Serena stehen immer so steif rum ..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Holisterwrote on 16.03.2010:[10.0] "Neben Jericho der beste Heel der WWE. Was er am Mic zeigt ist unglaublich auch in Ring steckt er fast alle in die Tasche."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Edi Gliederwrote on 14.03.2010:"Spricht mich überhaupt nicht an, seine Promos sehe ich mir gar nicht mehr an, da sie inhaltlich und vom Stil immer gleich sind."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Turboladerwrote on 13.03.2010:[8.0] "Wenn man bedenkt, wie viele Moves er auf dem Toprope schon versaut hat, dann sind die Punkte wohl gerechtfertigt. Seine Matches sind auch ziemlich langweilig, sein MicWork mag zwar gut sein, aber nicht überragend. Edit: Ich muss meine Wertung an diese Stelle doch mal ändern, da er als Heel echt klasse ist und weiß zu überzeugen, respekt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: tobiasthegreatone1wrote on 11.03.2010:[10.0] "Mit der SES auf einem bomben Niveau im moment wohl der beste Heel der Wwe er ist der einzige der immer mit seinen Promos überzeugt. Alles andere als 10 Punkte zu geben wäre ungerecht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CM Hardywrote on 08.03.2010:[10.0] "CM Punk, klasse Wrestler muss man echt zugeben, und Charisma wie es nicht viele haben. Seit dem Heelturn blüht er richtig gut auf bei der WWE. @ apfelschorle: Schonmal was von Storyline gehört?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated R96wrote on 08.03.2010:[10.0] "momentan finde ich der beste heel in der wwe. mimik und mic-work sind weltklasse und seine ring-künste sind auch nicht schlecht. Außerdem finde ich seinen finisher ganz gut. das einzige was mich stört ist die straight edge society (also eher gesagt die mitglieder:ich hasse gallows und ne frau mit ner glatze will ich auch nicht sehn). aber trotzdem volle 10 punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Carnevalewrote on 08.03.2010:[10.0] "Sein Gimmick ist genial, sein Stable sehr spannend und glaubwürdig, am Mic ist er einer der absolut besten. Auch im Ring ein starker Worker, einzigst sein Go2Sleep Finisher hätte mehr Impact nötig, irgendwie packt er mich nicht ganz. Trotzdem ganz klare 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sebiwrote on 06.03.2010:[10.0] "Super. Im Ring ein super Worker und am Mic ebenfalls talentiert. Als Heel sowieso die coolste Sau, wobei er auch als Face mich überzeugen kann. Sein derzeitiges Gimmick gefällt mir sehr gut und seine SES ist eines der besten Stables was es zurzeit gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Zizouwrote on 05.03.2010:[10.0] "14. 08. 09: Gefällt mir als Heel noch besser als als Face. Punk/Hardy macht Smackdown im Moment zum No1 Brand! - 10 Punkte ------------- 05. 03. 10: Nach der Hardyfehde gings etwas bergab, doch seit nun die SES ins Leben gerufen wurde gefällt Punk mit seinen Promos und seinem "Jesus"-Image wieder richtig gut! weiterhin 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Acid Dwrote on 02.03.2010:[9.0] "Punk ist wirklich ein sehr talentierter Mann. Ob Im Ring, oder am Mic. Egal ob Face oder Heel, er spielt seine Rolle sehr überzeugend und mit viel Hingabe. Mir gefällt es immer, wenn jemand seine Rolle mit Leidenschafft spielt. Und das ist bei Punk definitiv der Fall. Den durchgeknallten Sektenführer bringt er sehr gut rüber. Ich würde mir nur wünschen, das er in den Shows wieder eine größere Rolle bekommt, wie es bei der Fehde gegen Hardy der Fall war."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CMorrisonwrote on 02.03.2010:[10.0] "Das psychopatische Jesus Retter Gimmick ist schlichtweg genial. Sein Move-Set habe ich schon immer gemocht. Freu mich schon auf die Rey Mysterio Fehde bei WM wobei ich nicht hoffe das dann Punk seine Haare verliert (Hair vs Mask Match). Was Serena und Luke angeht bin ich noch nicht ganz überzeugt, aber das kann ja noch werden. Aber da ich ja nur Punk bewerte gibts auf Grund seiner Mic-Fähigkeiten und dem exzellenten Move-Set ne glatte 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Cripplerwrote on 26.02.2010:[6.0] "Er ist ein guter Heel, die Fehde mit Jeff Hardy war einer der besten die ich je gesehen habe, aber mit der zeit stört mich Brooks als Heel und durch die Partnerschaft mit Gallows wird das Ganze auch nicht besser"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Wise Warriorwrote on 26.02.2010:[10.0] "Der Straight Edge Saviour ist gerade das absolute Heel-Top-Paket. Bleibt nur zu hoffen, dass die WWE ihn gut einzusetzen weiß..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fat Mikewrote on 24.02.2010:[9.0] "Punk ist einfach Klasse! Er hat ordentliches Charisma, ein super Mic-Work und weiß im Ring eigentlich auch immer zu überzeugen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LebendeLeichewrote on 22.02.2010:[9.0] "Er ist einfach genial in seiner jetzigen Rolle und dazu einfach gut im Ring. Geh mit meiner bewertung deshalb noch nen Punkt höher."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: the king of kingswrote on 14.02.2010:[8.0] "Ein richtig guter Wrestler, macht richtig gute Aktionen und kann sein Gimmick gut ausspielen, aber es gibt welche die ich mehr mag, deswegen "nur" 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wizz21wrote on 06.02.2010:[10.0] "Momentan neben Jericho und Edge der coolste Worker den die WWE zu bieten hat. Sollte meiner Meinung nach aber trotz seiner World Title Runs noch mehr als ohnehin schon gepusht werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mr Wrestlemaniawrote on 23.01.2010:[10.0] "Ein Großartiger Entertainer und der grund warum ich zurzeit Smackdown schaue."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pizzafunghiwrote on 22.01.2010:[7.0] "Vor 2 Jahren hätte man mich gerne mitten in der Nacht anrufen dürfen um mir zu erklären, was so toll sein soll an CM Punk. Durch seinen Heelturn und die Hardyfehde ist dies nun überflüssig. Gutes Gimmick, klasse Micwork, gut Matches. zZ. leider schlecht eingesetzt, hoffen wir mal die WWE lässt sich für ihn noch was gutes einfallen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jinxwrote on 20.01.2010:[6.0] "Musste meine Wertung leider heruntersetzen. Ich mußte nämlich feststellen, dass mein Interesse an ihm schnell nachließ sobald die Fehde mit Hardy vorbei war. Ohne den richtigen Gegner fehlt ihm irgendwie die Magie und dann wirkt er schnell eintönig."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pinguwrote on 18.01.2010:[6.0] "Seine Titelruns haben mich leider nicht überzeugt, Wrestlerisch ok, aber ich weiß nicht, irgendetwas fehlt mir an ihm zum Main Event... mit seinem Vollbart mehr zum schreien und lachen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CM Punk Mitbwinnerwrote on 15.01.2010:[10.0] "Wenn er weiterhin so glaubhaft dargestellt wird, hat er das Zeug zum Maineventer"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mugel 187wrote on 12.01.2010:[10.0] "Als Straight Edge Saviour einfach genial. PunkŽs Gimmick ist einfach das perfekte Heel Gimmick. Er kann oder viel mehr darf am Mic wieder überzeugen und über seine In-Ring Leistung brauchen wir nicht zu reden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RiotMorawawrote on 08.01.2010:[10.0] "Einer der großartigsten Wrestler... über seine legendären ROH-Fehden oder seine Kämpfe mit Chris Hero muss man ja nichts mehr sagen. In der WWE wurde er teilweise sehr sehr schäbig eingesetzt... aber das wird wieder^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: chelsea-cenawrote on 08.01.2010:[10.0] "Mein absoluter Favourit! Hervorragende Skills! Sein Heelturn hat mich sehr gefreut! Würd mich mal wieder freuen ein richtiges Fehdenprogramm zu bekommen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PassiV1wrote on 06.01.2010:[10.0] "Muss hier mal eine Verbesserung anstellen. Seine Fehde im Sommer hat ihn entgültig zu einem 10er-Kandidaten gemacht und sein aktuelles Gimmick rockt einfach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Moonlightwrote on 02.01.2010:[10.0] "Mit Vollbart und HBK-Brustbehaarung jetzt noch besser, einfach WOW!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Razor995wrote on 02.01.2010:[5.0] "Ich gebe hern Punk nur 5 Pkt weil, anfangs war es ja ganz lustig so zu ECW zeit von ihm aber dann hat man versucht ihn ganz nach oben zu bringen natürlich kann man was aus ihm machen aber das was die WWE gerade mit ihm anstellt ist der größte MÜLL. Ich fand es schon zuviel das er erst World Heavyweight champion war dann Tag Team Champion, dann nochmal World Heavyweight champion usw. Und sein jetziger part lässt auch zu wünschen übrig"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Topwrote on 31.12.2009:[10.0] "CM Punk war immer einer meiner absoluten Lieblingswrestler, das hat sich auch nicht geändert, als er als Face in die WWE gekommen ist. Er hat bewiesen, dass er auch das kann, indem er allein durch seine Fähigkeiten im Ring und seltene Promos over gekommen ist. Aber jetzt nach seinem Heel Turn, kommt mir der Facerun einfach nur lächerlich vor. Sicher, er ist immer noch nicht so gut wie bei RoH, weder im Ring noch am Mic, aber man muss bedenken, dass er immer noch stark limitiert wird. Inzwischen ist aber sogar sein Moveset wieder viel technischer und man sieht alte schon bekannte Moves aus den Indys wieder. gegen den Undertaker nach dem Summerlslam. Auf jeden Fall hat CM Punk durch seinen Turn eine dringend nötige Charakterentwicklung durchlaufen und gezeigt, dass er sowohl im Ring als auch am Mic einer der Besten der WWE ist und ich kann nur hoffen, dass die WWE das nutzt und ihn endgültig als Main Eventer auftreten lässt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: finsterwegwrote on 23.12.2009:[10.0] "Der Mann der Zukunft in der WWE, auch wenn mir gerade sein Gimick nicht gefällt. Das Clean gehabe ist irgendwann verbraucht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: gunniwrote on 15.12.2009:[9.0] "Ich muß sagen, jetzt als heel hat er mich auch als Fan! Nun kann er zeigen das er was kann, im Ring ja sowieso aber auch verbal! Bei RoH war er ja schon als heel unterwegs und war da ja auch super. Es gibt Wrestler denen liegt das babyface einfach nicht, die müssen sich als heel etablieren und bekommen dann erst ihre Fans, wie eben CM Punk aber auch Edge."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GabberGizmowrote on 13.12.2009:[3.0] "CM Punk gefällt mir überhaupt nicht ! Egal ob im Ring oder ausserhalb des Ringes. Sein ganzes Verhalten und sein Kampfstil haut mich nicht vom Hocker !"
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Telecinewrote on 01.12.2009:[8.0] "Punk ist seit seinem Heel Turn einfach unglaublich verbessert. Dass er ein guter Wrestler ist, wusste man schon vorher, aber seine Rolle war vorher einfach nicht wirklich klar definiert. Jetzt als ein Anti-Drogen-Prediger (In Christians Worten "Nerd") bringt er das Publikum gegen sich auf und schafft es sogar, mich als Smark teilweise ein wenig zu reizen. Außerdem ist er seit seinem Heel Turn auf einmal blitzschnell zu einem glaubwürdigen Main Eventer aufgestiegen, was nach seinem ersten Titelgewinn (der allerdings auch im Aufbau-Verhinderungs-Brand Raw geschehen ist) nicht der Fall war."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Larskanonewrote on 23.11.2009:[9.0] "Im letzten 3/4 Jahr zu einem der Topstars, Topheels aufgestiegen, hat mir aber bereits als Face sehr gut gefallen, aber finde trotzdem dass er als Heel sehr überzeugen ist. Außerdem hat er in diesem Jahr auch seine besten Fehde (mit Jeff Hardy) gehabt, und hat vor allem dort grandiose Promos gehalten. Gebe aber keine 10 Punkte , da er bzw. WWE es nicht geschafft hat ihn im ME zu etablieren."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MrSmackdownwrote on 22.11.2009:[10.0] "Aus den Indys an die spitze der WWE, Straight Edge, best in the World!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Peep86wrote on 22.11.2009:[10.0] "Ein sehr sehr gute Paket das er bildet. Was besonders gut auffällt, ist die realistisch Matchführung. Sein Gimmick zieht er auch glaubwürdig von Sendung zu Sendung durch. Schön auch das er mal nicht so absolut wwe like aussieht"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Andi68Hitmanwrote on 14.11.2009:[9.0] "Für mich in beiden Belangen schon jetzt einer der ganz Großes des Business. Als Heel und Face in meinen Augen gleichmassen stark. Versteht es gute Reaktionen beim Publikum zu ziehen und hat ein immenses Move-Arsenal ... Auf die weitere Entwicklung darf man sehr gespannt sein. Der Triple H-Ersatz, wenn dieser sich anderen Dingen im Geschäft zuwendet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Undertaker 4 everwrote on 11.11.2009:[10.0] "Ein Top-Heel mit den besten Vorraussetzungen, um in ein paar Jahren in die WWE HoF zu kommen. Als Face okay, aber als Heel grandios! Eifach SUPER!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ultrakaoswrote on 06.11.2009:[10.0] "CM Punk ist ein Klasse Techniker. Sein Face Gimmick war Klasse. Auch sein Heel Turn finde ich Ok aber nervt es ein wenig das er nur über seinen Gradlinigen lebensstil redet. Aber was ich dumm finde ist das seine Titelruns so kurz sind -. -"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: New Evolution90wrote on 05.11.2009:[3.0] "Früher hatte er noch charisma und den Drang nach vorne zu kommen. Jetzt , finde ich, da er schon ein paar mal den World Heavyweight Titel hatte kann er sich so eine Leistung im Ring leisten. Ich glaub nicht. Ich hoffe das er sich bald vom "Badass" zu einem "Messias" ändert"
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Last Ridewrote on 04.11.2009:[9.0] "Er gibt momentan wohl den besten Heel neben Jericho, seine Entwicklung innerhalb der WWE im letzten Jahr kann man nur positiv sehen. Ich denke auch nicht, dass sein Titlerun zu kurz war, er wird schon bald wieder ums Gold kämpfen und sich oben etablieren. Die eventuell verfehlte Kleideriordnung ausserhalb des Ringes sehe ich nicht wirklich als Problem für die Zukunft. Super am Mic, stark im Ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Perry Coxwrote on 22.10.2009:[10.0] "Endlich hat CM Punk seine Rolle gefunden: als böser Mann, der für das Gute Straight-Edge eintritt. In dieser Rolle gefällt auch mir CM Punk besser denn je. Er liefert tolle Promos und zeigt keine 08/15-Matches, sondern epische Schlachten, wenn man es so nennen darf. Endlich schafft die WWE es, ihn vernünftig einzusetzen und unterzubringen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Joe111wrote on 21.10.2009:[8.0] "Ich finde es falsch, wie einige ihn loben und ihm die Punkte hinterher schmeißen. Ich muss dazu sagen, dass ich Punk nur nach seiner Zeit in der WWE bewerten kann. Und hier ist er für mich keine 10 Punkte Wert. Er ist einfach noch kein "Must see" wie Undertaker, Edge oder HBK, die immer sehr gute Leistungen bringen. Er hat sich Promomäßig verbessert und schon Sicherheit am mic erlangt, jedoch fehlt seinem Charakter trotzdem noch die Tiefe und etwas, was ihn auch langfristig interessant hält. Ehwig kann er dieses straight edge Gerede nicht aufziehen. Wrestlerisch habe ich von ihm leider auch noch kein sehr gutes match gesehen was eine 10 Punkte- Wertung rechtfertigen würde. Mit den richtigen Gegnern kann es durchaus ganz gut werden aber er kann weniger talentierte Worker auch nicht zu Meisterleistungen ziehen. Ein richtiges Breakoutmatch fehlt für mich einfach noch."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BoeserLobowrote on 05.10.2009:[10.0] "Sehr guter Mic-Worker. Durchaus als Champion überzeugend. Als Heel mittlerweile in der WWE absolut überzeugend. Zeigt regelmässig, dass er sehr gute und spannende Matches abliefern kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: element-41wrote on 04.10.2009:[9.0] "Starker Wrestler! Gut im Ring und am Mic. Herausragend als Heel und hat einen der besten Finisher in der WWE. 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Edgecutionerwrote on 01.10.2009:[6.0] "Also bitte, CM Punk ist KEIN Bret Hart, KEIN Shawn Michaels, KEIN Chris Jericho... etc. Diese Vergleiche sind doch meiner Meinung nach seeeehr weit her geholt. Von so einen Legendenstatus ist er so weit entfernt, wie der Macho Man von einem weiteren WWE-Run. Ich will Punks Fähigkeiten ja nicht in Frage stellen. Ohne Zweifel sehr talentiert im Ring, guter Turn... aber sorry. Live/ bei Houseshows ist CM Punk so aufregend, wie ein Stück Brot. Und seine Fähigkeiten am Mic? 10 Punkte? Was müsste dann ein Rock bekommen? 100 Punkte? Nur weil er jetzt innerhalb von ein paar Wochen zum x-fachen "World Champion" gemacht wurde, ist er noch lange keine Legende. CM Punk hat einzig und allein davon profitiert, das WWE es in den vergangenen Jahren nicht geschafft hat, richtig gute Leute vernünftig aufzubauen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jollietwrote on 29.09.2009:[10.0] "Viele ziehen den Vergleich zu Chris Jericho (zurecht! ). Ich finde aber, er ist der Bret Hart des 21. Jahrhunderts. C M Punk kann einfach alles und wird zur Zeit brilliant eingesetzt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Champwrote on 20.09.2009:[10.0] "Ich muss meine Bewertung ändern. Wrestlerisch einer der besten, am Mic großartig. Klasse auftreten, gute Einstellung. Lebt sein Gimmick wie kein anderer. Seit seinem Heel-Turn hat er endlich ein Gimmick bekommen, was nicht besser hätte passen können. Seine Promos und sein Interagieren mit den Fans ist ungeschlagen. Nur Jericho schafft das genauso gut. Im Ring gehört er eh zu den Besten. Für mich bleibt nur ein ehrliches Fazit: Straight Edge means, I'm better than you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Basket Casewrote on 14.09.2009:[10.0] "Seit seinem Heel-Turn der heißeste Superstar des ganzen Rosters für mich. Einfach grandios was Punk zur Zeit abliefert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mr van Damwrote on 14.09.2009:[10.0] "Als er ROH verließ habe ich gebetet das er kein Grinse-Face werden würde. Leider wurde er es, in der ersten Zeit war das auch ansprechend, doch sein Run als Heavyweight-Champion setze man total in Sand. Seit seinem Heel-Turn endlich wieder der Punk, den ich so vermisst hatte. Ich hoffe man pusht ihn und setzt ihn dauerhaft im Main Event fest. Die Zukunft von WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Clevermindwrote on 14.09.2009:[10.0] "Auch wenns Klischee ist, aber seit seinem Heelturn ist CM Punk so interessant für mich wie noch nie. Er darf endlich seine vollen Stärken am Mikrofon ausspielen, und das was er sagt ist so wahr, dass das Publikum ihn schon deswegen zwangsweise hassen muss (ich persönlich teile allerdings Punks Ansichten! ). Die Fehde gegen Jeff war für mich die interessanteste Fehde seit langer Zeit in der WWE. Und jetzt nach dem Sieg gegen den Undertaker (noch dazu schön kontrovers) hat Punks Stern gutes Pontenzial noch weiter zu steigen. Auch wenn es im Ring bessere als ihn gibt (was aber sicher auch an dem Wrestlingstil der WWE liegt, in anderen Ligen zeigte Punk immerhin auch mehr) ist der Straight Edge Superstar momentan einer meiner Favoriten bei der WWE. Und wenn Punk sein Gimmick tatsächlich auch im realen Leben beibehält (falls es wirklich wahr sein sollte), könnten sich manche Wrestler ne ordentliche Scheibe davon abschneiden (ohne jetzt Namen nennen zu wollen ;-))"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Big Daddy Swrote on 14.09.2009:[10.0] "CM Punk war als Face schon sehr talentiert und kam gut an, aber sein neues Heel Gimmick als "Just Say No"-Prediger steht ihm noch besser. Für mich eine der positiven Überraschungen dieses Jahres. Was ihm zum Beispiel gegen Batista an körperlicher Präsenz gefehlt hat, macht er nun durch seine scharfe Zunge und seine aggressive Art im Ring wett. Mal schauen was die Zukunft für ihn noch bringt, der Sieg gegen den Undertaker dürfte ihm auf der Leiter noch ein Stück weiter geholfen haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: real americanwrote on 08.09.2009:[9.0] "CM Punk ist ein großartiger Wrestler mit viel Charisma dessen stiffer Stil mit den Low Kicks und Knee Lifts mir unglaublich gut gefällt. Er hat gegen Joe legendäre Matches gezeigt und die Promos in seiner Fehde mit Raven bei ROH waren unglaublich, sein Gimmick und das er es auch privat lebt machen ihn noch sympatischer. Nach seinem Heelturn funktioniert er bei der WWE nun auch perfekt, das "Straight Edge means I'm better than you" Gimmick ist ihm auf den Leib geschneidert, und auch im Ring hat er jetzt in der WWE schon ein paar richtig gute Matches gezeigt. Am Mic ist Punk sowieso über jeden Zweifel erhaben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 108 Sternewrote on 07.09.2009:[8.0] "Der einzige neuere WWE-Star, dem ich bescheinige, daß er eines Tages eine Legende werden könnte. Er hat was!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: alkoholiKAwrote on 06.09.2009:[10.0] "Ich kenne Punk erst seit er bei der WWE ist, und das fande ich bis vor kurzem sehr sehr blass. Als Face absolut farblos und in meinen Augen einfach langweilig. Sein erster Championship-Run letztes Jahr war ja ebenfalls ein totaler Flop. Dankenswerterweise ließ man ihn Heel turnen und das direkt gegen den Top-Face, Jeff Hardy. Die Promos in der Hardy-Fehde fand ich wirklich sehr gut. Er vermittelt wirklich das Gefühl, dass Straight-Edge einfach "besser" ist. Wie bei allen Fehden gilt auch hier: Wenn die Storys authentisch und echt sind (wirken), dann begeistern sie das Publikum. Deshalb derzeit als Heel: Absolute 10 Punkte! Momentan neben Jericho der Top-Heel. Meiner Meinung nach deutlich vor Orton."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Maikwrote on 05.09.2009:[10.0] "CM Punk ist für mich das beste Beispiel eines Wrestlers, der einfach ein falsches Gimmick hatte. In der ECW oder bei RAW war er Ringtechnisch gesehen ja recht gut, Promos hab ich nich viele von ihm mitbekommen... Aber er war für mich einfach uninteressant. Seit er bei SmackDown ist wurde er immer besser. Und als er zum Heel wurde einfach nur Super! Wirklich, kaum ein Wrestler interessiert mich zur Zeit mehr. Seine Promos sind super und die Matches auch! Außerdem mag ich es das er nich als der "Feige"-Heel dargestellt wird, wie es so ziemlich 80% der Heels sind. So solls weitergehen, er bringt SD! immer weiter nach oben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mrfantasickwrote on 05.09.2009:[10.0] "Ich muss jetzt einfach die Note nach oben korrigieren, denn das was uns CM Punk jede Woche bietet ist schon richtig stark. Seine Matches sind eigentlich alle sehr sehr stark und seinen Promos und die schauspielrische Leistung genauso. Es macht richtig Spaß dem Typen zuzuschauen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Uzuwrote on 04.09.2009:[10.0] "Ein genialer Wrestler der sich steigert und steigert. CM Punk ist verdient an der Spitze der WWE als World Champion. Sowohl als Heel als auch als Face überzeugend. Sehr gutes Micwork und geile Promos."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jimpanse1980wrote on 04.09.2009:[10.0] "Punk ist nun schon 3-facher Heavyweight-Champion, aber erst anno 2009 als Heel ist er tatsächlich im MainEvent etabliert und liefert die besten Promos und Matches seit Egde's kometenhaften Aufstieg. Auch bei Punk überzeugt sowohl Gestik als auch MImik und das Ganze drumherum. Hier sieht man mal wieder, dass es Wunder wirken kann, wenn man jemanden einfach mal machen lässt. Technisch gabs an Punk nie etwas auszusetzen, nun hat er seinen (wenn auch schon aus ROH-Zeiten bekannten) Straigt-Edge-Heel ausgepackt und liefert Woche für Woche gigantische Promos ab, durch die man es liebt ihn zu hassen. Und ich bin mir sicher, das Ende der Fahnenstange ist noch längst nicht erreicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: reene82wrote on 04.09.2009:[10.0] "CM Punk bringt richtig frischen Wind in den Main Event der heutigen WWE. Gute bis sogar sehr gute in-Ring-Skills tragen dazu bei, dass seine Matches mich zumindest nie langweilen. Was aber mehr zu der 10 beiträgt, sind seine überragenden Fähigkeiten am Mic und auch die nonverbale Kommunikation mit dem Publikum - Genau das, was für mich den guten vom sehr guten Wrestler unterscheidet. Wir können uns alle glücklich schätzten, dass dieser Mann bei Smackdown in den letzten Monaten so gepusht wurde. Hoffe, dass die nun beginnende Fehde mit dem Undertaker dazu beiträgt, dass Punk uns neben seinem Straight Edge Gimmik weitere Facetten seines Charakters präsentieren kann. Dann nämlich gehört er zweifellos zur Zukunft der WWE und wird in den kommenden Jahren einer der ganz Großen werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: billygunnwrote on 02.09.2009:[9.0] "Jung, charismatisch und Talentiert - Das macht ihn zu einem Wrestler, der die WWE noch lange aufmischen wird. Ich persönlich, finde das er seine Heel-Rolle wunderbar darstellt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The-Real-Diablowrote on 01.09.2009:[10.0] "Endlich ist Punk da, wo er hingehört: In den Main Event. Der interessanteste Charakter momentan innerhalb der WWE und jemand, der sich sicherlich im ME festbeißen wird. Er hat schließlich absolut alles, was man dazu benötigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wichtgestaltwrote on 30.08.2009:[9.0] "Tjaha, anfangs kannte ich relativ wenig von ihm und war nach seinen Promos bei ROH sowie der dazugehörigen Matches schwerbeeindruckt. Dann allerdings konnte ich länger Zeit bei der WWE "live" verfolgen und irgendwie sprang der Funke in seiner Face Zeit nicht über. Vorallem sein erster Run als Champion war, meiner Meinung nach, "verbockt". Dann deutete sich sein Turn an, welcher in der Fehde gg. J. Hardy dann konsequent vollendet wurde. Jetzt freue ich mich wie blöd auf die Fehde gg. den Undertaker und hoffe, dass er mit dieser entgültig in den WWE-Olymp aufsteigt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HCN007wrote on 30.08.2009:[10.0] "Endlich da angekommen, wo er hingehört und mit dem Heel-Turn endlich an dem gewonnen, was ihm als Face immer gefehlt hat. Charisma, Micwork, Standing, Lebensstil und Erfahrung machen ihn zu einem unverzichtbaren Zukünftigen Eckpfeiler der WWE, was 2010 sicherlich der Fall sein wird, da er dieses Jahr mit Jeff Hardy und dem Undertaker 2 Fehdengegner hat, die ihm in den WWE-Main Event nachhaltig helfen werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Paulinawrote on 30.08.2009:[10.0] "2009 ist ganz klar CM Punks Jahr! Jetzt ist er endlich Heel geturnt und kann am Mikrofon rocken, er zieht ohne Frage ganz perfekt Heet und schafft es alle Fans mit seinen "straight edge" gegen sich zu bringen, die Rivalität gegen Hardy den Publikumsliebling macht das ganze noch Perfekt, ich bin gespannt darauf wieviel Heet er nun ziehen wird wo er Jeff Hardys Karriere beendet hat und ihn dann noch angegriffen hat. Es gibt viele gründe warum man zurzeit SmackDown gucken sollte, und CM Punk ist in der Top 3"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: XtremeEnigmawrote on 30.08.2009:[10.0] "Zur Zeit geht für den Mann aus Chicago wohl ein Traum auf: Zuerst gewinnt er zum zweiten Mal hintereinander das MitB Match und dann darf er mit einem perfekt ausgeführten schleichenden Heelturn zum wohl besten Charakter bei Smackdown werden. Punk liefert derzeit nur noch grandiose Promos ab und die Fehde gegen Jeff Hardy hat ihn wohl nach ganz oben katapultiert. In meinen Augen hat er den Platz an der Spitze mehr als verdient und aus dem Main Event wird ihn wohl keiner mehr so schnell herausbekommen, außerdem warten frische Fehden gegen den Undertaker oder andere Smackdown Faces. Zur Zeit mein persönlicher Fave-Superstar mit einem noch unverbrauchten Charakter... weiter so WWE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mathias Rekaschwrote on 28.08.2009:[10.0] "CM Punk ist am erdachten Bestimmungsort seiner Fanscharen angekommen - und zwar als funktionierender Heel. Mit einem langsamen und stetigen Aufbau ist es gelungen Punk als derzeit interessantesten Charakter bei SmackDown und glaubwürdigen Champion aufzubauen. Nun darf er bei WWE auch endlich sein volles Potenzial ausschöpfen - und er wird es den Verantwortlichen entsprechend danken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: FeDDeXXwrote on 28.08.2009:[10.0] "CM Punk ist schon ein sehr guter Wrestler in seiner Zeit bei ECW. Dann bei RAW hat sein Run als WHC nicht gerade einer der Besten. Aber jetzt bei Smackdown und seiner Fehde mit Jeff Hardy ist er endgültig im Main Event angekommen und nun kann er hoffentlich den Titel auch gegen den Undertaker verteidigen. Ich bin sehr gespannt was die WWE mit ihm anstellt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cpt Dave Charismawrote on 24.08.2009:[10.0] "Egal ob Chick Magnet, Crooket Moonsault oder Cookie Monster... CM steht für großartiges Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: derBosswrote on 23.08.2009:[10.0] "Diesem Mann gehört die Zukunft der WWE. Er hat es geschafft sich im Main Event zu etablieren und liefert in den letzten Wochen geniale Promos ab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: rey mysterio 104wrote on 23.08.2009:[10.0] "Ich finde es sehr gut das man ihm das "Straight Edge Superstar" Gemmick gegeben hat, weil er dieses Gemmick nicht spielen muss und das dadurch viel authentischer wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AMMOwrote on 19.08.2009:[8.0] "Wird in der WWE immer schlechter. Man schafft es nicht ein funktionierendes Gimmick zu integrieren. Wer das Kayfabe brechen muss um von Indy Fans ausgebuht zu werden muss gut sein. In der WWE wird er neben all den Badehosenwrestlern kein Licht sehen, und wird ausserhalb der ECW von den Mainstream Fans nie als Titel Anwärter anerkannt werden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Amurebkuwrote on 14.08.2009:[10.0] "Super Gimmick! Ich mag sein Auftreten und seine Art total gerne! Hat sehr viel wrestlerisches Potential für die Zukunft. Ich hoffe, dass er sich weiterhin im Mainevent positionieren kann. Er ist einfach klasse, vertritt meine Einstellung vom Leben (keine Zigaretten, kein Alkohol, keine Drogen) und kann ohne weiteres als einer meiner Lieblingswrestler betitelt werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Azarothwrote on 12.08.2009:[9.0] "CM Punk... Lange Zeit stand der Name bei mir für.... eigentlich nix. Er war zu seiner Anfangszeit in der WWE (Ich habe seine Indy-Karriere nicht verfolgt) ein ziemlich farbloser Face (den 2-Wochen-Heelturn mit der New Breed zähle ich mal nicht) der auf mich ziemlich austauschbar wirkte, das einzig markante an seinem Charakter waren eine gewisse Stiffness und die Straight-Edge-Haltung. Mit der Zeit wurde Punk aber immer besser gebookt, sodass ich ihm seinen ersten Money in the Bank Sieg auch gegönnt habe. Nach dem eher misslungenen ersten Titelrun offenbarte sich aber erst knapp ein Jahr später, was für Qualitäten der Punker wirklich besitzt. Denn seit dem schleichenden Heelturn schafft er es, mich Woche für Woche aufs neue zu begeistern. Die Promos werden immer besser und auch im Ring gefallen mir seine Aktionen besser, wenn er sie als Heel ausspielen darf."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: onlyKINGwrote on 08.08.2009:[10.0] "Als Heel noch besser! Einfach klasse! Der (kommende) Superstar und Maineventer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: T-Waynewrote on 02.08.2009:[10.0] "Super als Heel bei WWE und bei ROH. Ein sehr charismatischer junger Wrestler, der mir schon vor seiner WWE-Zeit sehr gut gefallen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: homicidal cena michaelswrote on 27.07.2009:[9.0] "CM Punk ist ein guter Techniker welcher auch Highflying Aktionen zeigt. Seine Matches sind gut aber er wird oft schlecht dargestellt z. B. wenn er durch DQ einen Titel verteidigt oder gegen einen Umaga nur einstecken muss. Man sollte ihn als Babyface oder Tweener besser darstellen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Thomas Carlsonwrote on 19.07.2009:[7.0] "Gut Indy Gott war er keiner für mich. Für TNA Fans sicher auch nicht. Obwohl TNA selbst schuld ist weil sie ihn nicht wollten. Gut war er bei ROH und zum lachen brachte er mich auch. Es gibt aber gewisse Dinge die bei der WWE nicht funktionieren. Inzwischen hat er sich geändert und scheint ins Anfprderungsprofil zu passen. Mit seiner Einstellung scheint er auch ideal zu sein gegenüber den "Medikamenten" Sündern. Bei den Promos in der WWE fehlt mir noch der gewisse Kick. Trotzdem gehen sie in Ordnung. Ist bei Smackdown besser aufgehoben als bei Raw. Gegen die Brocken durfte er nicht gut aussehen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: undertaker619wrote on 22.06.2009:[7.0] "Leider fehlt mir bei Punk immer wieder die Mic-Work, wie es von einem MVP, Ken Kennedy oder nicht zuletzt Chris Jericho an den Tag gelegt wird. Dennoch muss ich sagen, ist Punk ein technisch sehr versierter Superstar, der nicht ohne Grund bereits dreifacher World Champion ist (wenn man den ECW Titel aktuell als World Titel mitrechnet! )."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Legdropswrote on 19.06.2009:[7.0] "Zugegeben, der Zickzackkurs, den die WWE mit ihm abzieht, kommt ihm nicht gerade entgegen. Dennoch wirken seine Matches auf mich immer häufiger wie "Dienst nach Vorschrift". Würde mich sehr über einen baldigen Heel-Turn freuen, der ihm endlich Profil verleihen könnte."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Roseswrote on 12.06.2009:[10.0] "Der vielleicht beste Wrestler den die welt gesehen hat wobei er bei ROH besser rüber kam, obwohl er als world champion auch ganz schön was her macht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Soapywrote on 06.06.2009:[7.0] "Hat für mich nicht die nötige Ausstrahlung um längerfristig oben mitzuspielen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mysterioflowrote on 06.06.2009:[4.0] "ich verstehe nicht warum ihr was an dem findet. ich finde ihn in seiner rolle nicht gut."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Afroman Undertaker 619wrote on 22.05.2009:[10.0] "Bei CM Punk stimmt alles Entrance Musik, Finisher, alle Moves einfach nur ein Klasse Wrestler. Ohne Worte ein Straight Edge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Main Eventwrote on 17.05.2009:[9.0] "Ich wusste immer schon dasss aus CM Punk mal was wird. Auch wenn er zur Zeit "nur" übergangs-Champion ist. Er ist einfach ein toller Wrestler und wenn das mit dem Straight-Edge tatsächlich stimmt mag ich ihn noch mehr."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NewGuywrote on 09.05.2009:[10.0] "geht mir auf die Nerven, dass er nicht genug gepusht wurde bis jetzt. Letztes Jahr trotz World Title in der Midcard! Hoffentlich wird er diesmal so in den Main Event Bereich gepusht wie er es verdient hat! Wäre neben John Cena ein super face!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jar Jar Binkswrote on 05.05.2009:[9.0] "CM Punk... Zu seiner ROH Zeit unglaublich stark mit extremen Moves, die er uns heute leider nicht mehr zeigen darf. Heute lange Zeit farblos, allerdings hat er vermutlich mehr Ansehen als jeder glaubt. (2x MitB, 1x WHC Champ, Triple Crown Champ) Das Punk ein großartiger Wrestler ist, ist unumstritten und ich finde ihn sehr sympatisch, einer meiner Lieblingswrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated HHHwrote on 03.05.2009:[10.0] "Die Zukunft des Buisness. Hat alles was ein World-Champ braucht, das Charisma, die Fähigkeiten im Ring und am Mic. Würde ihn trozdem gerne als Heel in der WWE sehen, um Fehden wie gegen Taker oder Jeff Hardy zu sehen. Von CM Punk werden wir noch viele großartige Matches sehen und ich wüsche ihm das er eines Tages mal Wrestlemania Headlienen darf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: txcwrote on 28.04.2009:[6.0] "bleibt in der WWE einfach farblos, wird aber dennoch zur sehr mit Titeln überhäuft"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Peiski Bombwrote on 21.04.2009:[7.0] "Im Ring mehr als solide, viel Charisma aber leider einschläfernde Promos. Nebenbei hat er auch noch eine gewisse Vorbildfunktion. Aber aus irgendeinem Grund reicht es für mich doch nicht zu einem ''gut''."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Undertaker94wrote on 18.04.2009:[10.0] "Er ist sehr talentiert und hat einen einzigartigen Kampfstil."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: REYMVPwrote on 14.04.2009:[9.0] "CM Punk ist ein großartiger Superstar. Aber Matt Macks hat recht! Man sollte nicht zu lange warten... Ihn als HEEL zu pushen ist glaub ich auch gut, bei Judgement Day hat er so oder so Chigago hinter sich! Genau wie bei Edge in Toronto. Fazit: Die WWE kann glücklich sein das sie CM PUNK haben!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: deadmaninc93wrote on 13.04.2009:[10.0] "Sein Kampfstil ist einfach nur einzigartig und höchst unterhaltsam."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Finlay Thornwrote on 01.02.2009:[8.0] "Meine Meinung über CM Punk schwankt von Zeit zu Zeit ein wenig. Er hat seine Phasen, in denen finde ich ihn brilliant, dann kommen wieder Phasen, in denen er mich eher langweilt, wozu zum Beispiel die gefühlte Endlos-Fehde gegen Morrison um den ECW-Titel gehörte oder auch die Tag-Team-Zeit mit Kofi, die mir nicht so wirklich zusagte. Einen Markout hatte ich dagegen natürlich bei seinem Titelgewinn, doch die schönste Zeit mit CM Punk war für mich immer noch die, wo er damals bei ECW die New Breed infiltriert hat. ^^ Göttliche Segmente hat er da imo auf die Beine gestellt. Ich mag ihn wirklich sehr, wünsche mir aber mehr solcher Storys für ihn und vor allem braucht er dringend mehr Mic-Time. Dass er reden kann, hat er bewiesen, also sollte die WWE ihn das auch mal öfter zeigen lassen. Für mich ist er eigentlich schon ein Typ für den Mainevent, aber dazu braucht es auch gutes Booking und keine 08/15-Fehden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ScrWwe94wrote on 22.01.2009:[10.0] "Toller Wrestler der sich auch den World Title verdient hatte; für ihn is in zukunft noch viel drinnen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: N3m35i54wrote on 03.01.2009:[10.0] "Einer der wenigen Gründe, weswegen ich überhaupt noch Raw schau"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Superbeastwrote on 28.12.2008:[10.0] "I simply love him... allthrough his career... he has improved more and more and is still learning... potential to be one of the best ever!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated R Superstar Hunterwrote on 18.12.2008:[10.0] "Wie ich finde, einer der besten Wrestler. Hamma charisma, super technik und auch am mic überzeugend. Ich sehe in CM Punk den Maineventer der Zukunft und hoffe das er noch viele World Title gewinnen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Larethwrote on 17.12.2008:[7.0] "Ich würde gerne mehr Punkte geben, aber eins ist mir bei CM Punk klar geworden: Da ist gimmicktechnisch noch viel Luft nach oben. Seine Matches machen mir wirklich viel Spaß, aber seinem Charakter fehlt einfach der Biss. Das macht die Promos langweilig. Ich erinner mich, wie um Vickie Guerrero herumtänzelte, als er seinen Titel gewonnen hatte. Das war nicht männlich und championhaft, das war kindisch und einem Champion unangemessen. Ich bin aber überzeugt, dass er auch diese Hürde spielend schaffen kann."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Phenomwrote on 10.12.2008:[9.0] "Absolutes Riesen Talent! Ring skills sind absolute 10. Gefällt mir echt super! Mic sowieso, auch wenn er aufgrund seines zurzeit ziemlich schlechten Gimmick kaum dazu kommt, was zu sagen. Was Punk braucht ist ein Heel-Turn. Und zwar ziemlich schnell in den Main Event mal die ganzen ausgelutschten immer wieder Champs austauschen. Wie gesagt, sein Gimmick finde ich ziemlich blöd. Da er aber so gut im Ring ist, griegt er von mir noch 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: King of Queenswrote on 08.12.2008:[7.0] "Hier sieht man deutlich, was ein verfrühter World Title Gewinn anrichten kann. Eine einstige Zukunftshoffnung und der von mir als Breakoutstar 2008 prognostizierte CM Punk hängt in der wertlosen TT-Division mit einem Zappelphillipp fest. Und nun wieder glaubhaft als Main Eventer zu funktionieren, muss sich bei CM Punk einiges tun. Schritt 1 hierzu wäre eine glaubhafte und langsam aufgebaute Fehde, die ihn an die ME-Region heranführt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nicojansonwrote on 27.11.2008:[10.0] "Ihm gehört die Zukunft. Ein top Wrestler, der von der WWE völlig falsch eingesetzt und gepusht wird, weil es bei ihm so wirkt, das er zwar etwas gepusht wird, aber dann wieder für Midcarder Jobben muss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Foerstawrote on 24.11.2008:[10.0] "CM Punk steht für mich für: Geiles Gimmick, geiler Entrance + Musik, geiler, schneller Stil! Er hat die 10 vollkommen verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Ayatollah of RocknRollahwrote on 24.11.2008:[8.0] "Sehr starker Wrestler, manche nennen ihn auch "König der Indys", aber Fakt ist heute, dass Punk noch nicht den Durchbruch geschafft hat und ich daher nur 8 Pkt. vergeben kann. Er ist stark, auch wenn sein Straight-Edge-Gimmick nervt, und er hat das Zeug es an die Spitze zu schaffen. Allerdings sollte man solange den Hype runterschrauben, denn seine Regentschaft ar auch wegen des Bookings noch nichts besonderes... Ich lasse mich aber gerne eines bessseren belehren."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Lionsaultwrote on 19.11.2008:[10.0] "Ein der wenigen, vielleicht sogar DER einzige WWEler, der problemlos mit der Welt-Elite mithalten kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: rv27wrote on 16.11.2008:[10.0] "HAmmer Wrestler auch wenn er sich noch nicht zu hundert prozent der WWE angepasst hat, oder vllt auch nie wir. er is und bleibt ein INdy Wrestler vom denken und vom Handeln her. Aber für das hat er sehr gute arbeit geleistet und leistet sie auch immernoch in der WWE. Naja sein World Titel run war total verbookt und sehr sehr unglaubwürdig aber naja wer weis was die WWE noch mit ihm vor hat. Die Zeit wirds zeigen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Eddiewrote on 16.11.2008:[10.0] "Bei ROH wohl einer der All Time Faves, und das zu Recht. Bei WWE hatte er den Durchbruch fast geschafft, ehe das Booking ihn absägte. Aber trotz allen Fehl-Bookings zeigt er konstant gute Leistungen und ist einer meiner Faves, absolut genial der Mann, 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Blazewrote on 14.11.2008:[8.0] "War bei ROH immer erste Sahne, in seiner Anfangszeit bei WWE auch, danach aber am schwächeln. Momentan ist er wieder zurück bei alter Stärke und kann hoffentlich das gewohnt hohe Level halten. Im Ring wird er bei WWE aufgrund seiner Fähigkeiten auch weiter ordentlich aufräumen und dem ein oder anderen Non-Wrestler zeigen was Wrestling ist. Letztendlich fehlt nur noch ein Stück, das ihn auch bei WWE zum ersten Star werden lässt, was aber in Zukunft sicher noch kommen wird, wenn WWE erkannt hat, dass er der Star überhaupt sein kann."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: domi1984wrote on 05.11.2008:[10.0] "Aufgrund seiner ROH-Zeit 10 Punkte. Bei der WWE muss er sich erst noch beweisen, das er das Zeug zum absoluten Headliner hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Semcoolwrote on 02.11.2008:[10.0] "Seit ROH einer meiner Lieblingswrestler oder wie die WWE es vorschreibt Entertainer"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Animal360wrote on 22.10.2008:[8.0] "Gute 8 Punkte da er trotz seiner, im Gegensatz zu anderen, schmächtigen Statur viel aus seinen Chancen macht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tunisian Warriorwrote on 11.10.2008:[10.0] "Eines Tages können wir mal von uns behaupten den ersten großen WWE Titelgewinn von CM Punk erlebt zu haben.... weitere werden(und müssen einfach! ) folgen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Roennewrote on 08.10.2008:[10.0] "AUf dem Weg nach ober absolut geil und auch Backstage vorbildlich. Er lebt sein Gimmick was soll da noch Schiefgehen Punk gehört die Zukunft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: A-marwrote on 03.10.2008:[10.0] "Super Worker, einer meiner faves. !  Seine World Title regentschaft ähnelte die von Rey Mysterio!  Als World Champ nicht überzeugend!  War als ECW Champ viel besser. Hatte dort auch nicht Gegner wie Batista oder Chris Jericho."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Scotty 2 Hottywrote on 01.10.2008:[10.0] "CM Punk ist jemand, den ich Woche für Woche sehr gerne sehe. Im Ring auf jeden Fall auf guten bis sehr guten Niveau, nur sollte man ihn öfters ans Mikrofon lassen. Seinen World Title Run fand ich im Gegensatz zu vielen ganz gelungen. Passte halt zu seiner Rolle als "Underdog Champion". Allerdings bin ich mir sicher, dass ihm in der Zukunft ein längerer und dominanterer World Title Run bevorstehen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MrWrestlingwrote on 30.09.2008:[10.0] "Ein super Wrestler. Schon bei ROH hat er mir sehr gut gefallen. Die Art und Weise wie die WWE ihm den Titel abgenommen hat und ihn nun aus dem Main Event entfernt finde ich jedoch sehr Schade. Aber ich bin mir sicher das er einer der ganz Großen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: StoneColdRevowrote on 29.09.2008:[10.0] "CM Punk ist toll. Stark im Ring und stark am Mic. Schade das die WWE in kampflos den Title abergenommen haben, oder das er nicht alles das zeigen kann, was er darf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GoddeKSCwrote on 26.09.2008:[8.0] "Ich kenne CM Punk leider nur aus der WWE! Und was er da zeigt, ist zwar schön und gut, er hat das Potenzial langfristig oben zu stehen, aber irgendwie muss es bei mir noch "klick" machen, damit er für mich den ganz großen Durchbruch schafft. Das ist für mich während seiner Titelregentschaft leider nur im Ansatz passiert!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Miteamexicowrote on 23.09.2008:[10.0] "Für mich einer der nächsten Topstars der WWE, ihm gehört die Zukunft. Seit langen mal wieder einer der alles kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Theron083wrote on 20.09.2008:[9.0] "CM Punk ist mein Lieblingsface. Ansonsten bin ich eher Heelfan und deswegen kriegt Punk wohl auch keine 10 von mir. Ein Tick fehlt ihm noch zur "Perfektion". ;) Wie er den WHC Titel hielt wurde einfach zu falsch dargestellt, ein cleaner Sieg gegen JBL, ansonsten immer irgendwas mit Ablenkung oder DQ. Das Problem war einfach das er nach dem Money in the Bank- Gewinn zu schwach dargestellt wurde und ein cleaner Sieg gegen Batista einfach nicht glaubwürdig war, auch wenn er gut mithalten konnte usw."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: doggdropwrote on 19.09.2008:[8.0] "Punk ist aufjedebfall ein guter Wrestler keine Frage, trotdem finde ich ihn teilweise überbewertet! da er mich am Mic nicht überzeugen kann!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MonsterDNLwrote on 25.08.2008:[10.0] "Ich finde er hat den World Heavyweight Championship verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hitman-Hartwrote on 22.08.2008:[10.0] "Sehr guter Wrestler.. nur müsste man ihm mal die Möglichkeit geben zu zeigen was er im Ring kann. Wenn ich mir alte Matches von ROH ansehe dann möchte ich sowas auch bei WWE sehen! Schade das es für die WWE zu riskant ist.... trotzdem bekommt CM Punk eine 1 von mir ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: aidenfordwrote on 21.08.2008:[10.0] "gefällt mir sehr gut, ob er aus seiner Titelregentschaft gestärkt herausgehen wird und ind den Main Event kommt, bleibt zu sehen, aber ich bin zuversichtlich :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NJackwrote on 18.08.2008:[10.0] "Wieder mal einen Wrestler, von dem ich gedacht habe: Indy ein Star, bei der WWE nur ewiger MIdcarder. Wäre ja nicht der erste gewesen, bei dem das so passiert. Aber nun ist er WHC und bleibt das wohl auch noch ne Weile. Und er hat mich auch zu seinem Jünger werden lassen. Als ich das RAW gesehen habe, in dem er den WHC-Titel geholt hab... als er reinkam... die Musik, das eincashen... Das war einer der größten Mark-Out Momente der letzten Jahre. Das war schon nah an dem Moment, als Stone Cold damals den ersten Titelgewinn erreichen konnte. OK, nicht ganz so krass, aber doch sehr nah dran. Alleine dafür: 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kane15wrote on 14.08.2008:[9.0] "Sehr guter Techniker und ein überzeugender World Heavyweight Champion :)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: xXShawnMichaelsXxwrote on 13.08.2008:[7.0] "Potenzial ist deutlich vorhanden, aber außer ein paar GTSs hab ich noch nicht viel von ihm gesehen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheGamewrote on 03.08.2008:[10.0] "Ich fand ihn im Ring bisher im Ring ziemlich gut auch wenn er mich am Mic noch nicht so überzeugen konnte. Toller Wrestler! Trotzdem 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MemphYwrote on 30.07.2008:[10.0] "In der WWE hat er noch nicht das MAximum erreicht. WennŽs soweit ist gibtŽs nen 10er... mittlerweile doch verdient, durch ihn als champ wird raw gleich interessanter"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fliplippwrote on 24.07.2008:[8.0] "ja cm punk ist ein sehr guter wrestler der alles hat (ausser vielleicht mehr muskeln) was man braucht"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Weihnachtsmannwrote on 23.07.2008:[8.0] "Der Mann hat Charisma, im Ring ok, am Mic ebenso, entwickelt sich weiter mit Potenzial nach oben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: gerybundy68wrote on 16.07.2008:[7.0] "Guter Typ - leider noch schwach am Mic. Wird hoffentlich nicht verheizt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wieauchimmerwrote on 12.07.2008:[9.0] "Fantastische Fähigkeiten im Ring (auch wenn er sie nicht allzu oft zeigen darf - aber dafür gibts ja ROH-DVDs) , besitzt für mich eine Menge Charisma, zeigte allerdings allzu oft nur durchschnittlich bis (halbweg) gutes Micwork (was sich aber sicher noch ändern kann/wird). Da sein Gimmick/Charakter für mich aber noch etwas mehr Kontur bedarf und aus der obengenannten kleinen Schwäche gibts hier "nur" 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: aulitwrote on 12.07.2008:[8.0] "Punk hat alles um dauerhaft im WWE Main Event zu stehen. Das Potential wird nun langsam umgewandelt. Wenn nichts dazwischen kommt sind hier bald 10 Punkte fällig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Desperadowrote on 09.07.2008:[8.0] "Seinen Titlerun finde ich ein bisschen verfrüht, aber das ändert nichts daran, dass CM Punk ein enorm starker Wrestler ist. Er kann verschiedene Stile wrestlen und in allen gute Matches zeigen. Allerdings ist er auch kein Garant für gute Matches. Mit dem falschen Gegner können diese sehr schnell langweilig werden. Charisma steht wohl außer Frage und Mic-Work ist auch sehr stark, wenn er mal darf. Mit einer kleinen Gimmickentwicklung kann aus ihm ein riesen Star werden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: blackwhitesunwrote on 09.07.2008:[10.0] "CM Punk is God. Hat alles, was man braucht. Ein fantastischer Wrestler, der auch am Mikrophone gut ist (auch wenn man bei WWE noch nicht viel davon gesehen und gehört hat). Der Push war längst überfällig. Nun liegt es an der WWE, ob er OVER THE TOP geht, was davon abhängt, wieviel er jetzt zeigen darf. Für alle, die ihn nur von WWE kennen: Besorgt Euch mal die Triologie gegen Samoa Joe bei ROH. Das ist Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ibanezwrote on 08.07.2008:[10.0] "Einer der Top-Wrestler der momentanen Zeit!  Kann trotz des Erfolges in der WWE leider nicht seine ganze Palette an Können zeigen...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: EddieG4Lifewrote on 04.07.2008:[8.0] "Ist auf dem bestem Weg zum Top-Star! Eines der vielversprechendsten Talente der WWE, und hat meiner Meinung nach vollkommen zurecht den World Heavyweight Titel bekommen. Zu 10 Punkten fehlt allerdings noch klein wenig!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RockZauwrote on 03.07.2008:[10.0] "Von der Independent Szene bis heute, als WWE World Heavyweight Champion hat mir mich jedes mal mit in den Bann gezogen. Punk ist GOTT!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Blood Red Sandmanwrote on 01.07.2008:[10.0] "Von 5* Matches bei Ring of Honor bis zum World Heavyweight Title bei WWE heute. Der Mann ist GOTT!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: McKnupwrote on 01.07.2008:[10.0] "Hat mich jetzt vollends überzeugen können=Aufwertung!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nacho83wrote on 25.06.2008:[10.0] "Falls die WWE ihn endlich einmal zum Heel turnen würde könnte er wieder zeigen, was er wirklich in Sachen Promos drauf hat, als Face ist er einfach nicht sooo der Bringer. Trotzdem momentan einer meiner absoluten Lieblinge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: flo99wrote on 23.06.2008:[10.0] "hat mir bisher sehr gut gefallen, zumindest das, was ich gesehen habe, am mic hab ich ihn noch nicht gehört, also kann ich das nicht bewerten. Und dass er mit dem MitB-Koffer noch nicht gepusht wurde, erkläre ich mir damit, dass eigentlich jeff hardy jenen bekommen sollte und noch kein push vorhergesehen war. Aber er wird noch kommen, da bin ich sicher"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ecw foreverwrote on 18.06.2008:[3.0] "Mag ihn nicht, trotzdem 3 Punkte gehen denke ich ok."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sockewrote on 25.05.2008:[8.0] "CM Punk is für mich ein kleines Rästel, am Mic gut im Ring auch, sonst auch aber das letzte fehlt irgendwie. Könnte aber daran liegen das er "noch" bei der ECW is, weiss nich genau. Seit dem Koffergewinn hat er irgendwie auch alle Matches verloren, ka warum. 8/10 mit offentlich Tendenz nach oben!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Frutzwrote on 25.05.2008:[8.0] "Mir gefaellt CM Punk in der WWE sehr gut und nach dem MitB-Sieg dachte ich an einen grosssen Push, kam aber nicht. Immer Moment nicht so klar, wo es hingehen soll, kann aber auch beabsichtigt sein. Seine In-Ring-Faehigkeiten sind Klasse und am Mic macht er auch keine schlechte Figur. Nur im ME ist er noch nicht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: elroyguesswrote on 23.05.2008:[8.0] "Ich kann mir nicht helfen: so gerne ich CM Punk sehe und so sehr ich seine Fähigkeiten schätze, ich habe immer das Gefühl, dass ihm für den ganz großen Sprung irgendwas fehlt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: e-trom995wrote on 22.05.2008:[10.0] "Meine Meinung hat sich über ihn in letzter Zeit stark verbessert. Er ist ein starker und guter Wrestler und verdienter Money in the Bank. Leider wird er viiieeeelll zu sehr unterbewertet im Moment bzw. verliert er Single Matches gegen William Regal und Chuck Palumbo ? ! Naja ich hoffe die WWE weiss was sie da mit ihren zukünftigen Champion macht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Deadman walkingwrote on 20.05.2008:[8.0] "Er ist ein guter Wrestler und hat Charisma, seine Straight Edge Einstellung finde Ich klasse."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Brooklyn Brawlerwrote on 16.05.2008:[8.0] "Persönlich kann ich eigentlich nicht all zu viel mit ihm anfangen... aber das versuche ich mal außen vor zu lassen. In-Ring - in seinem Fall Technik, Speed und Moveset - sehr gut, auch das Selling wirkt immer glaubwürdig, am Mic sehe ich dagegen noch etwas Verbesserungspotential - aber er ist einer der WWE Superstars die seit längerem so weit Over sind wie es wohl möglich ist - und ein paar clean losses schaden da gar nichts sondern helfen eher noch..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Haribowrote on 14.05.2008:[8.0] "Im Indy-Bereich eine Ikone hat er sich mittlerweile an den WWE-Stil gewöhnt. World-Titel-Potential."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Riley Mathewswrote on 11.05.2008:[8.0] "Wenn er das Roster wechselt dann hoffentlich zu Smackdown denn man hat ja gesehen was mit Kennedy passiert ist als er zu RAW gewechselt ist. Kann gute Matches bestreiten wie z. b. gegen Edge und die Promo vor dem Match war auch sehr gut. Hab zwar gehört das er zu sehr von sich selbst überzeugt ist. Aber dadurch das er das MitB-Match gewonnen hat sieht es so aus als ob Vince die Einstellung anscheinend wenig stört."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: fettbotwrote on 10.05.2008:[10.0] "mMn einer der 5 besten Wrestler, die es momentan in der WWE zu sehen gibt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Xodanwrote on 08.05.2008:[10.0] "Meiner Meinung nach sollte er schnellstmöglich nach RAW oder SMD kommmen, den ich finden ihn für der ECW mittlerweile zu gut. Top-Wrestler im Ring, tolle Gimmick und seine Straightedge-Einstellung kommt wohl bei den WWE-Oberen gut an wie man so hört. 10 Punkte von mir!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LexLuger4everwrote on 28.04.2008:[8.0] "Bei ROH hervorragend, bei WWE besserer Durchschnitt. Mir fehlt an ihm noch ne ganze Menge, um ihm die 10 zu geben, allem vorran bessere Promos und nicht nur das typische 08/15 Mic-Work."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Muffiwrote on 14.04.2008:[9.0] "Er hat gesagt er will an der Spitze von diesem Geschäft stehen und er ist auf einem guten Weg dahin. Leider im Ring keine Leistungen wie bei RoH oder IWA-MS durch den WWE Stil, aber trotzdem noch große Klasse. Ansonsten hat er eigentlich alles um ein großer Star zu werden und er wirds auch packen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CoLoGn3 KeVwrote on 13.04.2008:[9.0] "1. Hammer im Ring!  2. Gut am Mic!  3. Cooles Gimmick!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JBL-just a big Legendwrote on 13.04.2008:[8.0] "CM Punk ist ein Vorbild für die Kinder, denn er ist Straight Edge, deshalb gewann er in meinen Augen auch den MitB Koffer. Wrestlerisch ist er solide, auch wenn er vor WM oft das gleiche Programm abgespult hat, mittlerweile hat er sich ein klein wenig geändert. Eine Fehde mit Chris Jericho dürfte hoch interessant sein!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fran7iCwrote on 12.04.2008:[4.0] "Nicht mein Fall. Hat zwar eine prima Einstellung zum Leben ist aber als Wrestler in einer falschen Rolle."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: xXJohnCenaXxwrote on 12.04.2008:[9.0] "Erstmal muss ich sagen, dass ich kein richtiger Fan von ECW bin und wahrscheinlich auch nie sein werde, aber die WWE baut auf ihn auf, erstens weil sein Gimmick sich natürlich perfekt vermarkten lässt und weil er dazu auch noch wrestlen kann, wenn er also in diesem Gimmick bleibt und sich durch einlösen seines Money in the Bank Vertrages eventuell den World Heavyweight Championchip Gürtel vom Undertaker oder wer auch immer ihn hat holt, dann wird ihn die WWE wahrscheinlich lange halten lassen, because he's drug-free, alcohol-free and better than you"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AnFuwrote on 11.04.2008:[7.0] "Ein Face, denn ich nicht wirklich leiden kann, nicht gut!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Die Gurkewrote on 10.04.2008:[9.0] "Der Mann hat Talent bis zum Abwinken, auch wenn man das auf aufgrund von schlechtem Booking im Moment nicht sieht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nightfallwrote on 10.04.2008:[8.0] "Bei In-Ring Leistung und Mic-Work ist noch Luft nach oben. Aber da er noch relativ jung ist, hat er definitiv das Potential ein ganz Großer zu werden. Und darauf hoffe ich auch."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Domiwrote on 07.04.2008:[10.0] "Cooles Gimmick, super Moves, super Matches HOFFENTLICH kommt er von der ECW weg und bekommt den Push den er verdient. Einer für ddie Zukunft und zurecht der Sieger des MitB matches"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Matzelwrote on 04.04.2008:[10.0] "Ist absolute spitzenklasse. Bekommt von mir aber vorerst nur ne 8, da ich weiss dass er noch viel mehr aus sich rausholen kann und ich mir noch spielraum nach oben lassen möchte. -update: inzwischen bekommt er von mir die 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: FameAsserwrote on 28.03.2008:[10.0] "Neben Mr Kennedy die Zukunft von WWE! Absolut charismatischer Typ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Dave Concordiowrote on 27.03.2008:[10.0] "CM Punk ist einfach der Money Man... WWE sollte diese Geldkuh endlich melken! Topmann, der RoH 2004 gerettet hat und dem auch die Zukunft gehören sollte. Wer anderes behauptet hat schlichtweg keine Ahnung vom Wrestling :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Urbaner1982wrote on 26.03.2008:[10.0] "Da ich ihn auch mal hier in Germany Live gesehen habe, muss ich sagen, ist er schon zurecht in der WWE. Hat sich wirklich "hochgearbeitet". Als ECW Champ auch glaubwürdig rübergekommen. Wenn Khali World Champ werden darf, darf auch CM-Punk ECW-Champ werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kaffoe 666wrote on 25.03.2008:[10.0] "Hat alles was man braucht. Ihn vermisse ich im Indy-Bereich am meisten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ZuluBunsenwrote on 25.03.2008:[10.0] "Einer der besten Wrestler der von ROH hervorgebracht wurde. Als Heel unschlagbar, als Face aber auch nicht zu verachten. Ausserdem ebenfalls sXe, schlussendlich ergibt das 10 Punkte für Phil."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: -Y2J-wrote on 21.03.2008:[8.0] "Guter Wrestler, Charisma ist durchaus vorhanden und Promos kann er auch halten. Leider darf er dies aber in der WWE nicht mehr wirklich zeigen - genau wie einige Moves, die ihn früher ausgezeichnet hatten. Sein Straight Edge- Gimmick sagt mir zu und wenn nichts gravierendes schiefläuft, sollte ihm eigentlich eine großartige Zukunft bevorstehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Instant Classicwrote on 13.03.2008:[10.0] "Charisma, In-Ring Können, Micwork, Punk hat einfach alles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: D-Stroyer DeLuxewrote on 26.02.2008:[10.0] "bei TNA und ROH einfach nur phänomenal, leider lässt die WWE ihn das nicht zeigen. Dann wurde ihm sein Finisher "geklaut" (die Anaconda Vice)... im Großen und Ganzen wird er komplett verbookt, technisch gesehen hat er aber extremes Potential."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: FifaFrancescowrote on 25.02.2008:[10.0] "Hat immer hart an sich gearbeitet, auch schon bei ROH... und ein Pluspunkt: Er war in Essen und ich hab ihn gesehen...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Aaronwrote on 25.02.2008:[8.0] "Punk ist einfach eine arme Sau! In der WWE wird ihm nie die Freiheit im Ring gegeben, die er bei ROH bekommen hatte! Wenn Punk bei der WWE weiterkommen will, sollte er sich wieder außergewöhnlich machen und sein Gimmick wieder durchziehen. Denn was er derzeit in der WWE an Upfucks abzieht, geht auf keine Kuhhaut mehr und suckt einfach nur noch! Trotzdem werte ich hier das mal für seine Indy Zeit!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: renol2007wrote on 24.02.2008:[8.0] "Ist ein guter Wrestler der mich aber noch nicht so recht überzeugen konnte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Joeevil123wrote on 19.02.2008:[6.0] "Kenne seine Matches von früher nicht , in der WWE hat er mich noch nicht überzeugen können. Das er was kann sieht man an der Veranlgung , nur muß er es auch mal abrufen. Ich warte weiter , solange bleibts bei ner 3."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mr sledgehammerwrote on 17.02.2008:[8.0] "Ein guter Wrestler mit ordentlichen Leistungen im Ring und am Mic, hat aber trotzdem noch einiges ungenütztes Potenzial."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nevermore811wrote on 04.02.2008:[4.0] "kenn ihn nur aus der WWE Zeit und in der is er net sehr berauschend! Bringt zwar solide Matches, aber null Charisma oder Mic Fähigkeit! Aber lass mich gern noch eines besseren belehren!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Joe710wrote on 01.02.2008:[10.0] "Ich muss CM Punk einfach eine 10 geben, weil er einer der wenigen Wrestling Superstars ist, die Realness ausstrahlen und dabei cool rüberkommen. Eine sehr interessante Persönlichkeit, besonders wegen den Tattoos, seiner Straight Edge Einstellung, der langen Haare, den Piercings und seinem Musikgeschmack. Ich glaube mit ihm könnten sich viele indetifizieren, weil er einfach wie dieser Rebell wirkt, der es den alten mit Drogen vollgepumpten Säcken zeigen möchte. In seiner ROH Zeit hat er sich natürlich unsterblich gemacht, doch ich finds toll das er jetzt bei der WWE ist. Er ist zwar noch lange nicht in der Position, in die er vielleicht gehört. Aber ich bin guter Hoffnung, dass hier ein weiterer Top Superstar auf uns zukommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Baby Duckwrote on 31.01.2008:[10.0] "Mein Lieblingswrestler der sich derzeit in der WWE herumtreibt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Galottawrote on 24.01.2008:[8.0] "Er könnte noch dynamischer und spektakulärer sein. Dann hätte er auch ein Sehr gut sicher."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Typicalwrote on 24.01.2008:[10.0] "Gibt ihn endlich nen Heel Turn, dann ein Mic und ab in ein Stable mit Edge damit es echt aussieht. Dann kann der Junge endlich mal zeigen was er kann. Als Face is er einfach nur schlecht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Zichowrote on 22.01.2008:[8.0] "Macht auf mich mittlerweile einen charismatischen Eindruck, sein Mic-Work hat sich auch verbessert, aber seine InRing Moves sind meistens eintönig und langweilen mich schnell. Dennoch sehe ich bei ihm noch Potential, dass es sich verbessern kann."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tomwrote on 12.01.2008:[6.0] "In der WWE zeigt er mal so gut wie gar keinen guten Matches in ROH hat er mir viel besser gefallen schade um sein Talent!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 61ilhanwrote on 09.01.2008:[10.0] "klasse wrestler macht einfach spass ihn anzuschauen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Stone Cold Andywrote on 05.01.2008:[10.0] "Großartiger Wrestler. Schon als junger Bursche hat er das Haus gerockt. Bei der WWE konnte bzw. durfte er bisher noch nicht so richtig zeigen, was er kann, aber das mag noch kommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hunter2007wrote on 31.12.2007:[10.0] "CM Punk hat Kämpfergeist und das merkt man in jedem seiner Matches. Auch wenn es kein Erfolg ist, zeigt er eine überragende Leistung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: EvenflowDDTwrote on 31.12.2007:[8.0] "CM Punk - In der WWE eine billige KENTA-Kopie - Bei Ring of Honor genial, besonders seine Fehde mit Raven wird ewig in Erinnerung bleiben als eine der besten Fehden aller Zeiten. Respekt für seine Einstellung. Sogar bei einem "Anbruch" der Schädeldecke keine Schmerzmittel zu nehmen ist hart."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MA Excellentwrote on 30.12.2007:[8.0] "Er ist sehr talentiert und holt aus jedem Match das Beste heraus. Straight Edge ist nicht nur Gimmick, sondern er bringt es glaubhaft als seine Eistellung rüber. Promo-Fähigkeiten, Crowd-Reaction, Vielseitigkeit im Ring und sein Hintergrund aus anderen Ligen machen ihn zur potenziellen Legende. Jedoch muss er dazu noch ein Stück des Weges gehen, daher gebe ich zunächst eine 2. Wenn er mal Headliner eines der großen 4 PPVs ist und den World Title hält, dann ist es eine 1 !"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mr Money in the bankwrote on 21.12.2007:[10.0] "CM Punk ist einer der Wrestler bei denen es schwer ist zu beschreiben wie hammer sie sind . Er hat Talent am Mic sowie im Ring man kann kaum etwas an ihm aussetzen und es wäre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Frommeltwrote on 11.12.2007:[8.0] "Hammer Typ der hoffentlich seiner Einstellung treu bleibt, ich traue ihm aber zu das er sich nicht verbiegen lässt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: xDonNightyxwrote on 10.12.2007:[10.0] "Verfolge seine Karriere nun schon seit seinen Anfängen bei RoH und ich muss sagen, er ist einfach ein klasse Wrestler mit viel Charisma. Sein Mic work und seine Promo Fähigkeiten sind ebenfalls spitze, bei WWE durfte er das nur noch nicht wirklich so recht zeigen, bei RoH war sein Gimmick tiefsinniger. Wenn er irgendwann auch mal Heel ist und ordentlich Zeit bekommt, werden die letzten Kritiker schon sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: novacanewrote on 30.11.2007:[8.0] "Toller Wrestler mit Charisma und jeder Menge Talent. Wird mit der richtigen Einstellung mal ein Großer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Meanbeastwrote on 29.11.2007:[10.0] "Einfach einsame Spitze der Mann, sehe den jetzt schon seit 2002, und schon damals fand ich den einfach nur klasse! Ein zukünftiger ganz Grosser!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Texas Tornardowrote on 22.11.2007:[10.0] "Ein Awesome Wrestler, schade das er bei der WWE ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: bastinhowrote on 21.11.2007:[8.0] "Er hat natürlich das Zeug zum absoluten Topstar zu werden, aber das, was er bis jetzt in der WWE zeigte (bzw. zeigen durfte) ist einfach nicht mehr als guter Durchschnitt. Man sollte ihm vielleicht einmal mehr als ein 10 Minuten Match bei einem PPV geben, damit er sich wirklich entfalten kann."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mdbnasewrote on 29.10.2007:[8.0] "Perfektes Komplettpaket. Muss leider eine Note abziehen, da ich irgendwie nicht warm mit ihm werde; und seine Matches, obwohl meist klasse, interessieren mich einfach nicht so richtig!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Benny110106wrote on 28.10.2007:[6.0] "Mr. Indy hat nun Erfolg in der WWE. Ist ihn zu gönnen aber mehr wie 3 noch nicht. Dies wird sich aber ändern. Vielleicht wird er mal der nächste HBK. Er hat noch Zeit und Talent das wird schon."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DrBreswrote on 26.10.2007:[8.0] "Auf bestem Wege, ein großer zu werden. Derzeit langweilt er mich aber ein wenig, was aber zum großen Teil am bescheidenen Booking derzeit liegt. Außerdem schade, dass sein Move-Set bei der WWE so beschnitten wurde..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ghostwrote on 25.10.2007:[8.0] "Hat immer noch einwenig den Status "Geheimtipp" - denke er könnte durchaus einer der kommenden Top-Stars der WWE werden, wenn's so weitergeht. Die Fans lieben ihn, hat ein natürliches Charisma, sein - auch gelebtes- Straight-Edge-Gimmick ist sehr modern, hat einen hervorragenden und eigenen Wrestling-Stil und ist natürlich im Moment der "Hauptdarsteller" von ECW on Sci-Fi! Zurecht!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated-R-Fanwrote on 21.10.2007:[6.0] "Er ist gut, keine Frage. Doch als ECW Champion ist er aufgrund eines z. B. Big Daddy V unglaubwürdig."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jigsawwrote on 02.10.2007:[10.0] "Wird hoffentlich irgendwann WrestleMania headlinen. Nur sein Go 2 Sleep ist nicht so der burner. Da mocht ich die Anaconda Vice oder seinen Shining Wizard um einiges mehr. KENTA zeigt G2S um einiges härter. Aber ansonsten natürlich absolut top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nick Toxicwrote on 23.09.2007:[10.0] "Topmann, bei WWE das Aushängeschild des ECW - Brands. Independent sowie bei TNA auch nur genial. CM Punk ist ein Mann für die Zukunft! x)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Soerenwrote on 19.09.2007:[6.0] "In meinen Augen "nur" ROH Durchschnitt. Charisma und Mic ist vorhanden. Derzeit aber für seine Leistungen overratet. Er kann mehr, darf es nicht zeigen. Daher nur 6 Punkte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WCWlerwrote on 18.09.2007:[10.0] "Im Ring: KlasseAm Mic: FantastischSein Auftreten: BrilliantEinfach 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bhanduwrote on 16.09.2007:[8.0] "Fantastischer Wrestler, allerdings konnte er dies bei WWE bisher nur bedingt zeigen. Hat Ausstrahlung in Massen, gefällt mir als Heel aber um Längen besser als als Face. Solange er sich keine Feinde backstage macht, wird er es zum 2nd Tier Main Eventer bei WWE schaffen (Niveau Booker, rey, benoit)."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: uzulwrote on 15.09.2007:[6.0] "er hat viel potential. keine frage. nur sollte nicht immer der indy bereich mit der WWE verglichen werden. jede liga(ob groß oder klein) hat ihren stil. er sollte in der ECW langsam aufgebaut werden. einen längeren push, dann starke fehde um den titel herum. das gewisse etwas fehlt noch, der funke springt noch nicht über(bei mir). doch er wird den richtigen weg schon finden. trotz aller(auch WWE internen) hürden. und vergleicht bittepunk nicht HBK..... punk ist, HBK war(nie)."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: etstoanawrote on 11.09.2007:[6.0] "Wrestlerisch zwar ganz gut, passt aber meiner Meinung nach mit seinem "Streight Edge" Image nicht in die ECW."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LizardKingwrote on 09.09.2007:[10.0] "Endlich ist er ECW Champion. Wurde ja über ein Jahr konstant gepusht und ist bei den Fans beliebt wie nochwas. Jetzt soll die WWE ihm noch mehr Zeit geben Promos zu halten, denn am mic ist er einer der besten die ich kenne. Klasse am mic und im Ring. Der ECW Titel ist nur der Anfang..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sebigentnerwrote on 02.09.2007:[8.0] "Sehr sympathisch! Hat das Zeug zum absoluten Topface und Dauermaineventer! Hätte ihn gern ganz oben in der WWE!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bullit69wrote on 17.08.2007:[8.0] "Is ein klasse Mann aber verstehe nich warum er nich mehr die Anaconda Vice benutzt!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: velocity is not dead yetwrote on 07.08.2007:[10.0] "Gefällt mir im Mainstraim Wrestling nicht mehr. Für mich ein Indy König."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: FiveStarwrote on 21.07.2007:[10.0] "Hat mich damals zum Indy-Wrestling Fan gemacht. Ich habe selten jemanden gesehen, der Emotionen und Dramatik am Mikrofon so gut rüberbringen kann. Auch seine Matches bei Ring of Honor sind unvergessen. Punk gehört für mich zu den größten..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Yetiwrote on 08.07.2007:[10.0] "Ein Rundumglücklich-Paket. Mic-Skills, Charisma, In-Ring-Skills, Großer Fanzuspruch. Sehr schade, das die WWE-Offiziellen ein Problem mit ihm haben, nur weil er eines von Paul Heymans ''Biestern'' ist und dass er einige Moves nicht zeigt/zeigen darf. Pepsi Twist habe ich in seiner WWE-Zeit noch nie gesehen und den Pepsi Plunge werden wir wohl nie sehen, da es ja ein Pedigree vom Top Rope ist, obwohl man so doch perfekt eine Fehde mit Triple H aufstellen könnte, um ihm einen starken Push zu verpassen. Trotzdem, G2S is einfach mal geil, und auch sonst zeigt er IMMER ordentliche Matches. Hat sich einen WWE-Titel, egal welchen, mehr als verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MGStylezwrote on 08.07.2007:[6.0] "Wrestlerisch ein durchschnittlicher ROH Worker(was schonj sehr gut ist)CHarismatisch und Mic-worktechnisch einfach noch nicht viel von ihm gesehen. Eine 3"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ShaneOwrote on 28.06.2007:[8.0] "Schwer zu bewerten. Der Indy CM Punk hätt eine glatte 1 bekommen, der WWE Punkster eine 3. Also bekommt er ne zwei. Ich hoffe, das er bald mal sein ganzes Potential abrufen darf."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Im Ring ist er zwar nicht so überragend wie von den meisten Internet Fans immer gesagt, dafür sind die Promos und das Charisma God Like, Die Intensität der Punk Promos habe ich so noch kein zweites Mal erlebt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Azraelwrote on 24.06.2007:[6.0] "Kann eigentlich mehr als er momentan zeigt, talentierter Wrestler, einer der wenigen Hoffnungsschimmer der neuen ECW. Hoffentllich lernt er Backstage noch manieren, damit er sich nicht alles verbaut."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nataljawrote on 24.06.2007:[8.0] "Ein toller Wrestler. Ich konnte ihn in Mannheim 2007 am Schulter berühren. Tolles Gefühl."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Trevedaswrote on 24.06.2007:[10.0] "Riesen Potenzial, hat alles was man braucht um nach ganz oben zu kommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Starker Charakter, großes Talent ... die Zukunft der WWE !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Milhousewrote on 24.06.2007:[10.0] "Aktuell das Beste, was das moderne Wrestling zu bieten hat in meinen Augen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: D3adm4nwrote on 24.06.2007:[8.0] "Er ist auf dem Weg, ein ganz ganz Großer zu werden. Stellt sich nur noch die Frage, ob und wann er dieses Ziel erreicht. Talent ist auf jeden Fall genug vorhanden!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mediwrote on 24.06.2007:[10.0] "Bisher hat er immer saubere Kämpfe und gute Techniken gezeigt. Zudem sind seine Mic-works auch nicht die schlechtesten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Knurkselwrote on 24.06.2007:[10.0] "Wird sicher noch einer der ganz Großen in diesem Business werden. Viel zu talentiert im Ring und am Mic für seine jetzige Rolle, aber das wird sicherlich noch kommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: suntan superstarwrote on 24.06.2007:[10.0] "ravenŽs bester schüler. er verreint charisma und matskills wie kein anderer. Seine Zeit ist aber noch nicht gekommen er sit einfach zu gut, denn wenn die wwe bereit wäre den sport weg von den anabolika-monster hin zu den ernsthaften wrestlern muss cm punk diese generation anführen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Doerbenwrote on 24.06.2007:[10.0] "in der wwe überzeugt er, überraschenderweise, auch. d. h eigentlich war es klar das er überzeugen würde, er ist einer der 15 besten wreslter der welt /oder die ich kenne, und ich kenne viele/ und ich war mir nicht sicher wie die WWE ihn einsetzten würde... naja, sie tun es wie ich es erwartet habe ziemlich schlecht aber er überzeugt trotzdem."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Anti-Championwrote on 24.06.2007:[10.0] "Charisma Note 1. Promos Note 1. Ringskills Note 1-. Macht unterm Strich eine 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: shannonmoorewrote on 24.06.2007:[10.0] "straight edge ? der gute jeff hat aber schon mal an drogen geschnüffelt. Davon abgesehen ist CM punk ein sehr guter wrestler der mich schon bei ROH jederzeit begeistert hat. Hoffe er schafft den Durchbruch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Joe907wrote on 21.07.2024:[10.0] "The longevity on this man is insane. Still one of the best wrestlers at 50 years old. He's been putting on bangers for over 20 years. His technical wrestling is excellent and such a hard hitter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Makai Clubwrote on 02.10.2022:[9.0] "One of the most underrated wrestlers in the past 20 years. He was never flashy, but he was a tough, rugged brawler who would make anyone looked good with his incredible selling and could get you off your feet with his simple, yet effective offence. Currently having a great GHC Heavyweight Title reign and is doing a great job working with the youngish NOAH roster, wrestling unestablished main eventers like Kotoge and making them stars, just by beating them. That's how good he is. Excellent wrestler, very underrated."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: jamzell00wrote on 04.06.2022:[10.0] "Of all the grumpy wrestlers over 50 he might be the grumpiest. All his big matches feel like fights which given his history makes sense. The dude had open heart surgery in 2017 which should've slowed him down but nope. All he did was come into 2018, win the GHC title and be the best champion in wrestling that year. All while getting chopped and kicked in the chest as if nothing fucking happened. Adore this man and will appreciate him until he eventually retires. An absolute animal"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: GriffinXwrote on 09.02.2022:[10.0] "A classic badass of a wrestler. Helped to carry NOAH many times over the year having many great matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: NoSellwrote on 01.02.2022:[10.0] "As far as I'm concerned he's the best over 50 wrestler in the world and on of the best in the world regardless of age. Amazing wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: benny5bellyswrote on 03.12.2021:[9.0] "Just a big mean son of a bitch. He is absolutely fantastic and still carries an aura to him that few can match."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Kungwrote on 27.10.2021:[10.0] "One of the greatest over 50-year-old wrestlers I've ever seen in my entire life. He brings something exciting to every match he's a part of."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: GGS06wrote on 31.07.2021:[10.0] "It's going to be a shame seeing Sugiura retire, since he's one of the best. His lifelong career in NOAH has provided some amazing matches, at his start he was just a good wrestler but now he's evolved into one of the best. His style is good and always provides awesome matches. Sugiura gets the 10 for all of his amazing matches and his excellent career in NOAH."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Bushidospirit22wrote on 01.03.2021:[10.0] "Arguably one of the best wrestlers over the age of 50 ever. The man can still bring it better than most wrestlers half his age. I wouldn't be shocked if Sugi is still wrestling at a high level when he is close to sixty barring any major injury."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: VillainClubwrote on 03.01.2020:[10.0] "Fantastischer Wrestler besonders für sein alter noch sehr gut. Es macht spaß seine Matches zu verfolgen. Der Typ ist einfach Banane mit Fast 50 liefert er immer noch großartige Matches und feinen Strong Style."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: BadAssTranslateTradingwrote on 13.08.2019:[10.0] "The most consistent pro wrestler of all time. At 49 years old Sugiura is better than hes ever been and has been performing at a very high level for the past 20 years. He has never disappointed in a big match and deserves to be called a legend. 1 of the best talents of this generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: PuroresuLoverwrote on 12.05.2019:[10.0] "This dude is amazing! He is the Big Boss of NOAH! He never disappoint us , he's one of the greatest of all time in Puroresu, I hope NOAH gives him a respectful retirement match in the future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: RatingsMachinewrote on 01.11.2018:[8.0] "Takashi Sugiura never received the plaudits that the likes of KENTA and Naomichi Marufuji did, in part because their striking and high-flying orientated styles respectively were both flasher and more in vogue at the time. But he was as good a worker as either of them, and in recent years he has enjoyed something of a resurgence as the cornerstone of Pro Wrestling NOAH."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: My Bloody Doobwrote on 17.05.2018:[8.0] "The dark horse of his generation to say the least. Probably because he never gained the western exposure that his peers did like KENTA and Marufuji. That said though his talent was as equal to theirs, except he got into the game at a much older age, so he wasn't really as focused on until he was already in his late 30s. Though he didn't wrestle a lot in the west, most of his signature moves and finishers were western inspired, most notably by Kurt Angle. His greatest skill is that he is a great all-rounder who isn't the best at striking, flying or technical work, but he can still hang with the best. All that said, I really don't think he should be holding the GHC championship anymore. NOAH booking is for a different topic, but Suigiura's best roles weren't always at the top."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: prowrestlingisrealwrote on 22.01.2017:[10.0] "Sugiura is probably the best wrestler in Noah right now, great brawler, a technical savage, he can have good matches with a lot of guys out there, his selling is awesome (especially the headbutt selling), he can work as a single or a tag, Sugiura is the man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: AboutToCrashwrote on 21.03.2015:[10.0] "The first thing that made me love Sugiura it's that he and KENTA were the only ones in NOAH's Jr division who were not only about the flip-flops, they had more grappling-all rounding style and his matches were really refreshing. Sugiura entered the big guys league in the NJPW vs NOAH feud. When he returned from NJ he started wrestle with legends and even won his first heavyweight championship after a great fight against Shiozaki. He's very good in the ring, he could pull off athletic and technical matches but he also got hard hitting shoot fight kind of style. One of the last saviors of NOAH, without a doubt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Claudio Herowrote on 10.11.2014:[10.0] "Bei Sugiura ist die Sache klar. Ein Super Wrestler und Techniker der seiner Promotion auch in den Krisenzeiten treu geblieben ist. Habe viele Matches mit ihm gesehen und er hat mich immer überzeugt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: TakerFanwrote on 08.03.2014:[8.0] "Mister zuverlässig von NOAH. Liefert immer mindestens solide ab und ist im Ring wirklich stark. Stiff und immer intensiv arbeitet er mit so ziemlich jedem Gegner richtig gut. Oft fehlt mir aber die letzte Begeisterung für seine Arbeit, es wirkt alles zwar gut, aber ohne das besondere."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Kenshin Uesugiwrote on 06.08.2012:[8.0] "Keiner prügelt sich so schön mit Takayama! " Das sagt und meint nicht nur mein kleiner Bruder, denn Sugiura ist im Ring eine Wucht. Wrestlerisch versiert in vielen Bereichen und mit seinen gerade mal 1. 78m trotzdem ein glaubwürdiger ~Powerschubser~. Hat mit seiner Rolle als ~Big Boss~ eigentlich den idealen Platz bei NOAH neigt leider auch dazu mit Shiozaki im Verbund, zwar vieles toll zu können und zu zeigen, aber nicht immer es zu schaffen ein wirklich ein Gefühl von sehenswerten Matches mit richtigen Fluss zu erzeugen. Das ist nie schlecht oder wirklich langweilig aber nicht so wie es halt sein sollte und wie man es bei NOAH unbedingt braucht. Trotzdem toller Wrestler der mit seinem Einsatzwillen und doch eher beschränkten Mimik, hat er wohl von Honda beim Training gelernt was schon wieder cool ist, die Arche mit auf Kurs hält."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Matt4Wrestlingwrote on 16.03.2011:[10.0] "Ein super Techniker, der mit jeder Wrestling-Art mithalten kann. Kann es noch weltweit, außer in Japan, zu etwas bringen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Hu-Manwrote on 24.02.2011:[10.0] "Ein großartiger Athlet. Zurecht World Champion geworden. Ich finde seinen Wrestling-Stil richtig gut und mag es, dass er gegen jeden Gegner ein gutes Match zeigen kann. Ein Allrounder wie Kurt Angle... 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Mick Funkwrote on 09.12.2010:[9.0] "Im Moment bei Noah einfach der Wahnsinn, hoffentlich hält das noch eine Weile an."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Fountain of Misinformationwrote on 16.10.2010:[9.0] "NOAH bestes Eigengewächs und zugleich derzeit bestes Pferd im Stall. Der endgültige Durchbruch kam spät, er war meiner Meinung nach etwas zu lange als Junior-Heavyweight (wo er körperlich auch nicht wirklich reinpasste, obgleich er wiederum auch nicht genau das ist, was man sich unter einem Schwergewichtler vorstellt) unterwegs aber nun steht er dort, wo er hingehört, an der Spitze seiner Liga. Da er ja erst spät Wrestler wurde, stecken noch einige gute Jahre in ihm, worauf ich mich freue, denn diesem Mann kann international im Wrestling-Ring keiner etwas vormachen, er muss sich vor niemandem verstecken und zeigt immer Einsatz und Hingabe im Ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: MaKnowrote on 15.08.2010:[10.0] "Sugiura ist im Puro mittlerweile einer der ganz Großen - der späte Einstieg ins Geschäft hat ihm in seiner Entwicklung überhaupt nicht geschadet, höchstens insofern, dass er wohl bald physisch nachlassen wird. Umso mehr freue ich mich aber auf die kommenden 3-4 Jahre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: DJ MaSchwrote on 06.01.2010:[9.0] "Rein wrestlerisch gibt es kaum jemanden der ihm das Wasser reichen kann. Hat verschiedene Wrestlingstile drauf, technisch überragend und zudem legt er noch eine ordentliche Intensität an den Tag. Austrahlung ist hier leider nicht sehr ausgeprägt, deswegen "nur" Neuen Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: daniel88wrote on 03.01.2010:[9.0] "seine leistung gegen hero hat mich schon irgendwie beeindruckt, so "hilflos" hab ich hero noch nie gesehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: hatebreederwrote on 07.12.2009:[10.0] "Ungeheuer intensiver und starker Wrestler, der sich für nichts zu Schade ist. Man kann sich jedes Match von ihm ansehen, ohne dass einem langweilig wird. Toll, dass er endlich den ganz großen Wurf mit dem Gewinn des GHC Titel gelungen ist. Feel Good Moment 2009"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: batze22wrote on 06.12.2009:[10.0] "The Champi is Here! Garatulation an Suigura das er endlich GHC Champion geworden ist :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: STRIGGAwrote on 17.09.2009:[9.0] "Ein absoluter Top Wrestler, dem weltweit kaum jemand etwas vormachen kann. Technisch brilliant, dazu Power-Moves. Zudem ist er mit einer ungeheuren Intensität bei der Sache."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Tomkowrote on 03.02.2009:[8.0] "Ganz starker Techniker, dessen Aktionen immer realistisch und superhart aussehen. Ich kann meinem Vorredner nur zustimmen: Er ist wirklich um Längen cooler als Angle!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Kaffoe 666wrote on 25.03.2008:[8.0] "Klasse Style. Sugiura trägt mit seiner Leistung immer maßgeblich zu guten Matches bei...  Er ist zudem einfach viel cooler als Angle :-P"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: AnFuwrote on 05.01.2008:[8.0] "Ich schätze seinen Stil und seine Ringfähigkeiten. Auch bei ihm fehlen die großen Titel, aber eine 2 ist es allemal."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: ZephsPancakeswrote on 19.12.2024:[10.0] "One of the most influential and revolutionary wrestlers of all time, a perfect blend of high-flying based offense mixed with hardcore elements. A lot of your favourite active wrestlers will be inspired or take from Hayabusa. A truly tragic story, a wrestler who's career was cut far too short and a wrestler who isn't acknowledged nearly as much as he should be in regards to the importance of wrestling history. Equally as apt in tag, singles or stipulation matches, Hayabusa was truly one of a kind and someone who will truly live on in wrestling history forever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: TreyHalowrote on 27.10.2024:[10.0] "A revolutionary in terms of high-flying offense, one of the best of all-time and the fact his career got cut short is a genuine tragedy, one of the most influential wrestlers of his time and truly way too overlooked in terms of importance to wrestling history... 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Zak22wrote on 06.08.2024:[10.0] "An inconsistent genius. Some of his matches leave me feeling cold whilst others are incredible. He had all the talent, great technical and athletic ability. A deserving legend who unfortunately got badly hurt. I'm beyond glad that he was showcased in AJPW and had a legendary main event run as the face of FMW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Wrest lingaddictionwrote on 05.08.2024:[9.0] "Japans ultimate underdog. Hayabusa was an incredible talent in the ring and had some underrated character work throughout his career. Even though his career was cut short his influence on the business is undeniable. He invented moves that modern greats like Seth Rollins and Kota Ibushi have been well known for using. His loyalty to FMW is also comendable as he turned down offers from WWE and NJPW to stay in Onita's promotion."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: thedman0310wrote on 29.01.2024:[10.0] "One of Japan's best Junior Heavyweights, Hayabusa never truly got the exposure he deserved. He was dedicated to FMW to a fault when he easily could have gotten more money and exposure in other companies (I believe WWE and New Japan both gave him offers). His career was sadly cut short, but while he was around, the Phoenix of FMW burned bright"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Makai Clubwrote on 05.03.2023:[6.0] "An iconic figure in the world of the Japanese Indies. Influential world-wide, the star wrestler of a promotion, which, while was losing popularity under him, probably would've floundered more after Megumi Kudo's retirement if not for him. Beloved by his peers and fans alike. But however, despite his innovative moves, amazing imagery of his look and his charisma, his wrestling is just so, so underwhelming. Occasionaly, I can find entertainment in his performance but he mostly leaves me cold. His wrestling comes off derivative of a much exciting style with his own style infused with it, his peers, such as Mr Gannosuke come off way more interesting and capable. A mid-level star, yes. A great wrestler, no. My rating is based upon my enjoyment of him, more so his legacy, which is palpable. Even if it can link to the rise of Seth Rollins. A crime against humanity."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Brutish Dandywrote on 14.01.2023:[7.0] "Had a great look and a killer theme but his in-ring stuff was pretty mid. I find his matches shockingly underwhelming given the hype, especially considering his contemporaries were guys like Kintaro Kanemura, Jinsei Shinzaki, and Rob Van Dam. Honestly liked his run as H the best, as short-lived as that ended up being."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: WhatIsLooveeewrote on 13.12.2022:[10.0] "One of the biggest "what if" in wrestling, in my opinion. An innovator and a person with an impressive life story that motivates to never give up. Hayabusa successfully combined hardcore style, performing in the FMV, and high-fly, showing very impressive maneuvers, even inventing several ones. A talented performer who can show moves that seemed amazing in those years, speak and tell a good story in a match. His career ended too soon due to a terrible injury, but even after that, he connected his life with wrestling, becoming a promoter and continuing to appear on the ring from time to time and live the dream of someday soaring above it again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: ForeverHeelwrote on 01.11.2022:[10.0] "Er war nicht der beste japanische Wrestler, nein er war der beste Wrestler aller Zeiten. Long live the Phoenix Hayabusa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: XXDoubleHHXXwrote on 18.10.2022:[10.0] "Hayabusa was FMW's Diamond in the rough. Constantly putting on bangers with the top stars of All Japan and FMW, he became a instant fan favorite. He tried to do new things with H character or Darkside Hayabusa that I liked but the fans just wanted the normal Hayabusa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: GriffinXwrote on 04.06.2022:[9.0] "A great high flyer that wowed fans for years. To hid credit and detriment he was loyal to FMW till the end. And he showed so much bravery and dignity with how he handled his injury"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: CoolKylewrote on 29.11.2021:[10.0] "He was incredible, and isn't talked about enough. With FMW going under, It's so sad he never got that big full time NJPW/NOAH move, and his best work has been lost to time. He could've legit been the missing link between the 4 Pillars/3 musketeers & Tanahashi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Kungwrote on 03.03.2021:[9.0] "While it's perhaps true that he was never as good in-ring as Jushin Liger or Keiji Mutoh at the time, there are few junior heavyweights in history who mean more to more wrestling fans than Hayabusa. The man who innovated such gorgeous moves like the Falcon Arrow and Phoenix Splash had way too short of a career, and life, but his wonderful legacy continues on through equally marvelous talents like PAC, BxB Hulk, and Bandido. Rest easy, legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Khalid Acewrote on 29.06.2020:[6.0] "Well, I can't say I am surprised Hayabusa has this high rating because he was loved by almost everybody but he was as good in the ring as his opponent was, he could never put up a good match with someone who isn't better than him in the ring."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: arrancarwrote on 22.11.2019:[8.0] "You'd have to be insane to not see what a talent Hayabusa was. Yeah, he was a bit of a spot-based worker a times, but damn, he was SUCH a great high-flyer in a time when very few people could do even 30% of what he was doing. His style was incredibly explosive, unlike a lot of high-flyers today whose styles feels more 'floaty' and weak because they focus too much on technique (especially overly contrived technique) as opposed to impact. Hayabusa would definitely botch every now and then, but when he properly hit his aerial spots, they would always look beautiful and damaging. In FMW, he would often get rather bogged down by working the messy hardcore brawl style that the company loved, but he would always look great whenever he was allowed to run wild and fly around. I can't rate him any higher than an 8 because he's one of those workers who, despite very obviously being extremely talented, often didn't have the appropriate partners to produce properly great matches. This meant that while he would hit some awesome spots in his big matches, his opponents often wouldn't give him the same amount of interesting work back, thus he's sadly lacking in seriously great matches. He's had plenty of quite good to really good matches, and some great individual performances, but that's it. Also, as I said, his wrestling was a bit limited outside of his aerial attacks. This isn't to say he was only an acrobatic attraction though, since he definitely also had a variety of impressive and even rather brutal power moves, but his aerial work always took the centre stage, and for me, a truly top-tier outstanding wrestler requires a bit more diverse and equally spread-out offence. Given what a star he was in Japan (despite being part of a non-major company) and the notoriety he's gained as a high-flying icon in the west, it's absolutely appropriate to refer to Hayabusa as a legend."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: richeyedwardswrote on 25.01.2019:[2.0] "Having watched through a good amount of his 97 work in FMW and AJPW I have come to the conclusion that he is a really overrated and often very bad wrestler. He is lazy, just has his big spots and has absolutely nothing to offer in between his springboards. He also does not sell really at all either. Now he is not a complete stiff as he is carriable, but only by some extremely great wrestlers such as the 4 pillars and Akiyama. Through his 97 run in AJPW he is often against a young Kentaro Shiga and Shiga works rings around him. By all accounts a really nice guy and he did have some presence but he was not a good wrestler."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: JEK 1991wrote on 31.12.2018:[10.0] "Excellent high flyer! Always exciting to watch. He was a big name in FMW. Very quick in the ring. He only made one appearance in North America for ECW. His career was very short due to back injuries."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Steamboat2511wrote on 02.10.2018:[8.0] "Einer der wenigen japanischen Stars die mich als Fan des American Wrestlings fesseln konnten. Seine Death- und Garbagematches meine ich damit nicht, da ich kein so großer Freund dieser Ausrichtung bin, auch wenn Hayabusa viel in diesem Bereich gearbeitet hat. Es ist eher das innovative Highflying was mich an ihm fasziniert hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: RatingsMachinewrote on 22.09.2018:[6.0] "I was a big Hayabusa fan; he could do spots that were, for the timeframe, incredible. But that was all he could do, and if you wanted a Hayabusa match with some meat to it, something other than just spots, you needed someone to carry him. To his credit, Hayabusa could be carried to some great, great matches. But they were great almost entirely because of who Hayabusa was facing rather than Hayabusa himself."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: InactiveGuruwrote on 01.06.2018:[9.0] "Great hardcore high flying wrestler. It was the Japanese equivalent of Sabu. Such a shame his career and later his life was cut short. RIP, you'll always be missed."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Kasper Faulwrote on 08.11.2016:[9.0] "Sehr stark im Ring gewesen. Sein Match in der ECW gehört bis heute zu meinen Lieblingsmatches. Sehr schade das er sich so schwer verletzt hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Sonny Blackwrote on 07.08.2016:[10.0] "Für mich einer der besten japanischen Wrestler, klasse Matches bei FMW. Leider viel zu früh gestorben. R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Viper99wrote on 07.03.2016:[10.0] "Einer der Männer die das Junior Wrestling revolutioniert und groß herausgebracht haben. Er ist wahrlich ein Pionier und eine Legende des Wrestlers. Leider musste er durch einen unglücklichen Unfall das aufgeben was er geliebt hat und wo er eine Riesen Passion hatte. Später dann auch viel zu früh verstorben. R. I. P Hayabusa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: sign squadwrote on 28.08.2015:[7.0] "Als Gimmick mit diesem Highflying Stil fand ich ihn damals extrem cool. Der Mann war für mich die #2 von FMW nach Onita in Sachen Star-Power. Was ihm fehlte war in meinen Augen eine größere Möglichkeit, auch für andere Ligen zu arbeiten. Ein wenig rumgekommen ist er ja, allerdings wäre eine Karriere nach FMW in größerem Rahmen bestimmt etwas spannendes geworden, zumal er körperlich ja sehr gut dabei war. Das unrühmliche Ende mit dem Unfall und seinen Folgen war schockierend und traurig. Nachdem ich nun heute ein Video vom 23. 08. 2015 gesehen habe, bei dem er vor Kollegen und Fans sich aus dem Rollstuhl stemmt und mit Hilfe einer Krücke zum Ring geht und sogar eine Ringtreppe hinauf kommt bin ich einfach nur beeindruckt und gerühert, was dieser Mann gekämpft hat, um wieder gehen zu können. Fast 14 Jahre nach seinem Unfall hat er nie aufgehört zu kämpfen und in meiner kleinen Wrestling-Bubble ist das ein absolut fantastisches Vorbild wenn es darum geht, niemals aufzugeben."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Matzinhowrote on 11.08.2014:[9.0] "Auch durch sein markantes Aussehen bedingt ist er einer der bekanntesten Juniors. Nebenbei ein spektakulärer Wrestler, der besonders in Hardcore Matches brillierte. Ich hoffe, dass er sich seinen Traum, noch einmal in den Ring zu steigen und ein letztes Match zu bestreiten, erfüllen kann. Ich habe erst kürzlich gelesen, dass er Fortschritte macht und schon wieder einfaches Krafttraining absolviert. Er peilt sogar eine konkrete Jahreszahl an, wann sein comeback stattfinden soll, die habe ich jetzt aber nicht im Kopf. Müsste so 2017 oder 2018 gewesen sein."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Weskerwrote on 02.03.2013:[10.0] "Zu dieser Ikone fehlen mir einfach die Worte. Fast schon unmenschlich, was dieser Mann geleistet hat. Absoluter Meister seines Fachs. Eine verdammte Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Ballswrote on 11.04.2012:[10.0] "Hayabusa ist einer der besten High-Flyer und Deathmatch Wrestler Japans gewesen. Er war nicht nur in Hardcore-Matches extrem gut, sondern zeigte auch in "normalen" Matches sehr gute Leistungen. Leider kam dann die schlimme Verletzung und somit das Karriereende Hayabusas, doch ich sehe mir immer noch gerne alte Matches von ihm an."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Wolfhartwrote on 20.12.2010:[10.0] "Ich ziehe meinen Hut vor ihm. Bei Hayabusa fällt mir wirklich nichts ein, was ein Wrestler besser machen könnte. Seine Hardcore/UV-Sachen mag ich ihm nicht negativ auslegen, auch wenn ich kein Freund davon bin - das hat schließlich nix mit seinen wrestlerischen Fähigkeiten zu tun. Und die waren absolut brilliant."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: chaoswrote on 31.08.2010:[10.0] "Eine wahre Legende und ein super Highflyer! Seine Gimmicks waren immer der Hammer und haben immer überzeugt.  Ich wünsche ihm alles Gute, denn "the Phoenix will never Die"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: RickRollwrote on 09.05.2010:[10.0] "In der tat eine Legende. Hayabusa konnte als H überzeugen, aber richtig genial war er als Hayabusa. Er muss eigentlich "nichts" machen, er hat schon so ne "aura" an sich die ihn so von anderen unterscheidet, sowas habe ich noch nie sonst bei einem Wrestler "bemerkt". Dazu als Darkside Hayabusa auch richtig geil, beherrscht dasHigh Flying wie ein Masterund sein Gimmick war auch ganz große klasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Super Dragonwrote on 25.12.2009:[9.0] "Einer meiner All-Time Faves, super Wrestler der den anfang der DM in Japan begründete, leider musste er sich veletzten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Mick Funkwrote on 08.10.2009:[10.0] "Man muss die Art seiner Matches mögen, aber was er gemacht hat, hat er sehr stark gemacht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Jar Jar Binkswrote on 24.09.2009:[10.0] "Ein unglaublicher Wrestler wo man sich nur fragen kann, warum er sich verletzen musste. Absoluter Spot Monkey und das meiste was der abgeliefert hat war einfach nur sick, da musste er sich fast irgendwann was gröberes tun. Er war aber trotzdem ein großartiger High Flyer und seine Moves waren immer ein Augenschmaus. Toll!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: T-Waynewrote on 08.11.2008:[10.0] "Fantastischer Wrestler, der seine Karriere leider viel zu früh beenden musste"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Masadawrote on 14.05.2008:[10.0] "Ihm gebührt vllt. ein großer teil für den Erfolg von FMW. Großartiger Highflyer der auch in Death/Exploding/Electrified Barbedwire und wie sie alle hießen Matches wunderbar zurecht kam. So einen einzigartigen Worker wird man wohl nie wieder sehen, Leute die ihn jemals bewundern durften können sich sehr glücklich schätzen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[9.0] "Saugeiler Spot-Wrestler? Check. FMW Ace? Check. Legende? Never. Hayabusa gehört zu meinen Lieblingswrestlern, aber ich bestreite, dass er jemals in einer Major Promotion im Main Event gestanden hätte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: ecw foreverwrote on 17.04.2008:[9.0] "Ich muss sagen der Typ ist derbst geil. Ich meine der hatte von allem was. Besonders sein Phoenix Splash gefiel mir. !"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Baszdmegwrote on 14.03.2008:[10.0] "Revolutionär des Highflying, musste leider einen hohen Preis dafür zahlen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: SuckerPunchwrote on 14.03.2008:[10.0] "Einer meiner All-Time-Puro-Faves. Die Spots, die Bewegungen, die Ausstrahlung, einfach großartig. Zudem verbindet man mit ihm auch unweigerlich eine der vielleicht coolsten Ligen aller Zeiten: FMW! Hätte ihn das Schicksal nicht so hart getroffen, stünde er heute bei den Juniors auf einer Stufe mit Liger. So eben in der ewigen Rangliste irgendwo in den Top5 des japansichen Junior-Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Cybermikewrote on 02.01.2008:[10.0] "Einer meiner Absoluten Favs. leider viel zu Früh vom Ring verbannt worden, man kann eine Rückkehr wohl entgültig ausschließen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Doerbenwrote on 22.11.2007:[10.0] "Hätte er weiter machen können, wäre sein Stern größer als der des Kenta Kobashi geworden. So ist Hayabusa aber ohne weiteres immernoch als einer der größten Stars aller Zeiten zu sehen.  EDIT: @ Rob: Hätte er weitermachen können heißt ja nicht, das er innerhalb des nächsten Jahres größer bzw. besser geworden wäre. Ich bin der festen überzeugung das Hayabusa beides geschafft hätte, jedoch nur Schrittweise. Es hätte lange gedauert aber ich bin der meinung er wäre letztenedes größer geworden;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Ebessan Jackwrote on 17.08.2007:[10.0] "Als ich ihn das erste mal auf Tape sehen konnte, war ich erst einmal völlig paff. Nicht nur weil er einen einzigeartigen Wrestling-Stil ging, sondern die Aura, die Präsents im Ring, war unglaublich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: aoPSIwrote on 10.01.2025:[7.0] "Kairi Sane deserves a 7.33/10 for her solid performances in 2024. She showcased impressive in-ring ability alongside Damage CTRL, contributing to the group's chemistry and success. While not always in the spotlight, her work was consistently reliable and entertaining."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: MEDaminewrote on 06.01.2025:[9.0] "I won't let the booking change my opinion about her, she's still a really talented and entertaining wrestler. When given a chance, her matches are always great to watch, she should get a push soon"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: vifnlvkwrote on 06.01.2025:[7.0] "Kairi Sane used to be my favorite wrestler. The first match I watched was the womens Royal Rumble in 2018, and she looked like a star. She continued to be my favorite until her departure from WWE in 2020. When she came back, I was super excited, but her booking and ring work have been lacking, and I unfortunately cannot connect with her."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: TripleCrownwrote on 30.12.2024:[9.0] "One of the best Joshi wrestlers of her generation. She was absolutely fantastic in STARDOM and had tons of great matches. Never really found success in WWE, she just seems to float about which is a shame. Has a great look, not too sure about her mic skills as I'm not Japanese, but in WWE at least, they haven't really done much to show her ability on the mic and such. Overall, great wrestler who has gotten lost in the shuffle twice now in WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: StardomIconwrote on 10.12.2024:[10.0] "Kairi is an all time great wrestler. Her signature moves are amongst the best in wrestling and prove that you don't need to come up with a gimmicky move to get over - just do a common move really well and put your own touch on it. She has been subjected to jobber status since returning to the WWE in 2023 and I understand why some new fans don't understand the hype behind her. Moreover, she herself said she struggles with the sports entertainment style of wrestling where things are overly choreographed and slowed down. Regardless, her work in 2022-2023 in Stardom and NJPW prove she is still one of the best wrestlers in the world. Her pirate princess gimmick is based in reality as she sailed the world in college competing in world sailing championship competitions. She does not have the technical prowess of many joshi but she has an aura around her while her charisma is unmatched. It's sad to see how WWE treats legendary wrestlers as she is being given the 2023 Shinsuke Nakamura treatment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: AceHagannwrote on 28.11.2024:[9.0] "Absolutely brilliant. Kairi is extremely gifted in the ring, with a charismatic persona that transcends her language barrier limitations. Definitely underrated for those who've only seen her in main roster WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Khalid Acewrote on 14.11.2024:[6.0] "On ability in the ring alone, she's definitely in the top 10 women wrestlers EVER. But, WWE have ruined her, twice by the way. For someone this talented to have matches like what she's had in WWE is criminal. I actually remember my excitement when I heard WWE signed her " the first time " I was like finally I get to watch some great wrestling in WWE but I was disappointed. For someone who considered himself a Kairi Hojo fan I've got to rate Kairi Sane based on her current average performances sadly."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Elconcarowrote on 13.11.2024:"Kairi is phenomenal. Shes so undervalued by WWE Rn. She could be a top Baby face she has the look, the moveset everything you need."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: tion24wrote on 03.11.2024:[9.0] "Similar to her Damage Control stablemate, Iyo Sky, she is an incredible athlete and a fantastic performer. She is unfortunately a bit limited in her promos because of the language barrier but that doesn't take away from her charisma in the ring and ability to connect with the crowd while performing."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Kb2295wrote on 18.10.2024:[9.0] "Her Stardom run is legendary, her black and gold NXT run is great, and her main roster run has just been ok but is tipping in the right direction recently. Reuniting in the tag division with Io has certainly helped but she's a generationally great babyface & that's what she's back to now. Looks really comfortable out there, and the solid ring work and fun move set is taking care of the rest. If a mid card title is introduced for the main roster women's division, she's on the short list of worthy inaugural champions."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: JackBurtonsTruckwrote on 14.10.2024:[8.0] "A fantastic in ring talent, with undeniable charisma and likability. Her current run isnt her best, but her body of work overall speaks for itself."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Galmondiwrote on 22.09.2024:[9.0] "I don't care what anyone say, she's still one of the best and i know that she still has a lot left in the tank. She seemed to lack confidence when she came back but now it's better. Now all she needs is a push."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Samarimuswrote on 19.09.2024:[10.0] "I still believe Kairi is a 10/10 wrestler, but for some reason; especially since she came back into the WWE, nothing seems like its working and its especially apparent when Kairi is fighting one-on-one, and not with either Asuka or Iyo by her. Shes completely given up on the pirate princess gimmick that was so iconic to her during her first run, to become some sort of jokester. Im still going to give a 10, assuming its a minor issue, with the opponents shes fighting; but shes definitely not as amazing as she once was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: wrestlinggod45330wrote on 18.09.2024:[5.0] "While being an all-time great wrestler and still having great babyface energy, this current run really don't really pay homage to her reputation as most of her matchs have been filed with botchs, miscommunications and clear chemistry issues with most of her opponents. It may be her past concussions or a langage barrier issue but if it wasn't for the rest of Damage CTRL doing the heavy lifting, she'd probably be lost in the shuffle. There's something with Kairi and the WWE environment that just doesn't click."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: TrueJugoBetrugoNo1wrote on 15.09.2024:[7.0] "Sie ist in Ordnung und hat im Ring auch definitv etwas drauf. Ich habe jedoch Hin- und Wieder das Gefühl, dass einige Aktionen etwas "wackelig" ausgeführt werden, was teilweise doch ungeplanter aussieht, als es vielleicht sein sollte. Nichtdestotrotz ist auf jeden Fall noch Potential vorhanden und wenn sie langfristig die Sprachbarriere meistern kann, liegt ihr eine große Zukunft zu Füßen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: sKiaWeVwrote on 11.09.2024:[9.0] "Even when being underutilised by WWE it is hard not to be entertained watching Kairi Sane. Excellent in-ring, excellent at creating narratives and always makes the best of whatever is given to them. You can see by the way the crowd reacts to Damage CTRL that they're all such naturally likeable, charismatic wrestlers and can be put on any card."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: thunderrockwrote on 22.08.2024:[9.0] "A Joshi wrestling legend. Im so glad they turned Damage CTRL babyface because Kairi is such a natural babyface. It took her a while to readjust to WWE wrestling but when she is given enough time she really proves all the doubters wrong. And Im so happy were getting Sky Pirates as a tag team again, although Id love to see Iyo turn heel and have them feud with each other. Also seeing the crowd pop for them makes me so happy. I just hope before she retires we get to see her with a singles title, the fact she has only had one singles title run which lasted maybe 2 months is ridiculous."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Odinohkawrote on 19.08.2024:[9.0] "Another outstanding Japanese wrestler who should have deserved better stories and matches in the main roster. Her alliance with Asuka, though poorly constructed at the start, gave the women's tag team division its first real, consistent team. The chemistry between Asuka and Kairi was superb and their reign was one of the best. While Kairi as a heel is a likeable character, nothing is better than when she's a face. She's naturally supportive, she's funny, she's serious in the ring but brings a real touch of freedom, lightness and freshness just by her presence. Her movepool, though sometimes amusing, has great impact and is highly original. Her comeback is less impactful than I'd hoped and she seems to have lost a little of her technique, but Damage Control / Kabuki Warriors is one of my favorite clans. I hope to see a lot more of her in the ring, to find opponents at her level and with whom chemistry works, and that she regains her formidable level. And if possible as a face."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Joe907wrote on 18.08.2024:[10.0] "Kairi was a fierce joshi in Japan. Her matches were amazing with Io Shirai, Mayu Iwatani, and Meiko Satomura. Winner of the first Mae Young classic. Her stable Damage Control has been great lately on the main roster. Great in-ring performer with a nice moveset."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Sal1314wrote on 05.08.2024:[10.0] "Kairi is an amazing storyteller, with a cool personality and a natural sense of humor to connect with audiences. She shines as an underdog babyface, using her selling ability, facial expressions, and technique to create a compelling narrative in the ring. Unlike some wrestlers who rely solely on high spots and atletism, Kairi brings depth and context to her performances. During her prime days in Stardom, Kairi had memorable matches with top stars such as Iyo Shirai, Meiko Satomura, and Mayu Iwatani. Even in her post-WWE run, she delivered an amazing match with Sasha Banks, aka Mercedes, but her career highlight was when she wrestled back-to-back high-profile matches with Saya and Mayu while dealing a foot injury. She had a good run in NXT and the Mae Young Classic, but she has been underutilized on the main roster in WWE. Instead of allowing her to shine as an underdog babyface and elevate people like Liv Morgan, Zoe Starks, Sonya, and Dakota, they have relegated her to a secondary sidekick heel role alongside Asuka and Iyo. I hope we see a babyface turn and rivalry with Asuka, Iyo, Rhea, and Liv."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: JulianPera50wrote on 04.08.2024:[10.0] "We have nothing to discuss about her in-ring skills, she is a perfect 10 when it comes to that, a legend as a wrestler. If we talk about her character, she is a super lovable relatable wrestler, even when she is a heel you cannot do more but to love her, she really shows passion for professional wrestling, ¿what else can we say that hasn't been told already?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Cletxawrote on 02.08.2024:[10.0] "it's really fun to watch her. She is one of the best female wrestlers. I hope she will come to a more important level in WWE. I expect a championship from her."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Akyri0wrote on 30.07.2024:[10.0] "One of the coolest female wrestler of all time. She oozes charisma. A shame she's treated like she's no big deal in WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: namisuzwrote on 25.07.2024:[10.0] "She is one of the best women's wrestler, I wish WWE could use her better. But she's clearly awesome in the ring and my favorite women's pro wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Midcardaholicwrote on 16.07.2024:[9.0] "I miss when they were all in on that pirate gimmick, but shes a talent, shes athletic, and she has success in Japan, shame shes a jobber in the WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Quack7183wrote on 25.06.2024:[6.0] "She has so much potential, but WWE isn't showing any of her skills. WWE needs to do something different than being the oddball out in Damage CTRL. I know could be an amazing breakout star, and WWE just needs to let her be just that. She is forgettable in the WWE. Fix it WWE. I can't give her a higher rating than 6, which saddens me."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: YellowJournalismwrote on 04.05.2024:[4.0] "I am only basing this rating on her work in WWE. Kairi seems like a perfectly adequate worker, and a good seller but she makes a lot of mistakes that can disrupt the flow of segments and matches. Some that come off the top of my head is Kairi missing the queue to leave the ring as Bianca Belair, Naomi, and Jade Cargill were entering and then deciding to exit the ring (late) from the hard camera side. Then dancing on the hard cam side while the other women are doing their entrance until Asuka came and dragged her to the side of the ring w/ the announcers tables (where she was supposed to be all along). The next is trying to pin Jade Cargill at backlash when Asuka had tagged in as the legal woman. While I think Kairi can be a good wrestler, there isn't a lot of room to accept these kinds of mistakes on TV and PLEs, especially since they make the other wrestlers in the matches/promos look worse."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: DanParkeswrote on 07.04.2024:[10.0] "Kairi Sane is such a natural fan favorite and face! She is an incredible wrestler and character - she is quick and so full of stamina. Her runs in Stardom, NXT and WWE main roster have all been impressive and have contributed to my increased watch and follow rate of wrestling in general! It's overstated, for good reason, but she has the best elbow drop in the entire business! Her promo skills and charisma is incredible, whether in Japanese or English. She deserves all the flowers for the work she puts in! Her current run in WWE looks like she is just having so much fun (in the ring, backstage, in promos and at fan meet and greets! ) She is a treasure! Watching her moves, she puts full force into them so that despite her smaller stature her moves feel like they physically hurt more than some heavyweights!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: mxkamiwrote on 11.02.2024:[10.0] "All time Joshi. Her Stardom work of the past and more recently with REstart until her venture back to WWE the second time is full of truly great moments and matches, especially with Io Shirai. Realistically, as of right now, probably deserves a 9 as opposed to a 10. How so? My word, I love this woman's work... But holy smokes, this current WWE run where she's tagging with Asuka again, is... Less than great. She looks uninspired, sloppy (which I assure you, she is not), and like she doesn't want to be there. Just look back a few months at her closing moments in Stardom, and tell me you don't see a difference. We'll see if this changes how I feel about her over the long run, but one middling run doesn't negate years of great matches and feuds for me. And it doesn't hurt that the In-Sane Elbow is so damn beautiful."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: crs285wrote on 05.02.2024:[9.0] "Kairi Sane is a great women's wrestlers. In the ring she has a great move-set, and her athletic ability is amazing. Her charisma is good although not speaking Japan does hurt my understanding of what she says sometimes. She is a huge star in Japan and she has been very good in WWE as well."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: JediSaiyanMaster1203wrote on 27.11.2023:[9.0] "Might just have the best elbow drop of all time, Kairi Sane is an incredible wrestler who is very charismatic and can play her gimmicks well. Let's cross our fingers and hope she gets fantastic booking in WWE and wins tons of belts."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Eduardo23wrote on 06.11.2023:[10.0] "Amazing in-ring performer with loads of charisma, great mic skills, and aura. She is incredible as a face or as a heel and has delivered excellent matches and stories over the years. To top it all off she is drop-dead gorgeous, a stunning goddess with a precise arsenal, a strong spinning back fist and the best flying elbow of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Wrestling Foreverwrote on 05.11.2023:[10.0] "Wahnsinns Joshi die WWE Zeit war doch auch richtig stark. Auch wenn sie nur zwei Titel gewann. Aber sonst viel erreicht. Wünsche ihr und ihrer Familie in Japan alles Gute. Bei Stardom war sie schon eine der Besten. Edit 05.11.2023 Kairi ist wieder bei der WWE. Mal schauen wie wird der Second Run."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: shilderwrote on 05.11.2023:[10.0] "There are many of my wrestling friends who weren't familiar with her work in Japan or while she made her first run with WWE. So I have been hyping her up for weeks urging people to go watch her tag title run with asuka as well as watch her NXT matches with likes of Shayna Baszler. She is truly a full package wrestler with so much value. She brings to the table what some within the women's division wish they could. An aura. Glad to see her return at Crown Jewel. Can't wait to watch how this run plays out"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: zeropercentwrote on 16.09.2023:[9.0] "She's an utter joy to watch and strikes a good balance between stylish gimmick and coming across as a genuine threat. I don't think I've ever heard her cut a promo and it doesn't matter because she's so expressive and charismatic in the ring and with her gestures."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: JayEpicenterwrote on 03.07.2023:[10.0] "Funny enough years ago when I was watching NXT and heard she was coming I was very skeptical hearing about someone known for having a fantastic elbow somehow making her great. When I saw the elbow I had to admit it was wonderful, but I still I had doubts she'd be able to translate to WWE/NXT and the rest of her arsenal. I was proven wrong as she became my favourite act in NXT, be it her pirate gimmick, her adorable personality, great strikes and fast paced exciting offense, she truly captured my fandom. She made me become more interested in the joshi scene, and years later I checked out Stardom, and am glad she came back there to have wonderful matches, be it agaisnt Mercedes or teaming with REstart. She has been a success in the west and the east, been part of memorable tag teams and a great singles competitor, and meshed in factions, even a inaugural champion for the new IWGP Women's World Title, a true legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: 5hadowCroftwrote on 23.04.2023:[10.0] "Sie hat den besten Finisher Elboggen-Drop & viele andere Aktionen die absolut inSANE sind. Die WWE weiß garnicht, was sie mit Kairi versäumt haben. Sie ist so talentiert, i love her."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: nWo-Joshi-Guywrote on 26.02.2023:[10.0] "Outside of having the best elbow drop of all time; KAIRI has a ton of other really cool offensive. I actually think she may have been surpassed by a few others in Stardom currently in terms of pure in-ring skills but her eccentric character and charisma are almost unmatched. The perfect babyface but also an unbelievably entertaining heel in WWE as well!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Bullshark1wrote on 22.01.2023:[9.0] "WWE had a real star on their hands and they dropped her like it was nothing. When I saw Kairi in NXT, it blew me away. She had a mediocre NXT Women's Championship run, later followed by being on the main roster and the Kabuki Warriors, which was a highlight of her career. Now she's back with Stardom, and although I don't watch that company, I know she's doing good work there and will continue to get bigger and bigger."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: TobiGeldner81wrote on 16.01.2023:[8.0] "Sehr gute Athletin und sehr unterhaltsam. Ihr promos sind meist lustig. Hätte länger bleiben sollen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Kungwrote on 18.11.2022:[10.0] "There was a time that Dave Meltzer said that she, Io Shirai, and Mayu Iwatani were the three best wrestlers on the planet. I'm not sure that's ever been true, but I'd put Kairi's ability up against just about any other woman wrestler in the business during the 2010s. Not to mention, she might have the greatest elbow drop of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: li0nsaultwrote on 04.11.2022:[10.0] "One of my favorites, and one of the reasons I started watching Stardom. So naturally charismatic that she connected with crowds that didn't even speak her language, with high level in-ring work, and she's also a great storyteller. A literal total package"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Flame233wrote on 15.09.2022:[9.0] "I was not there to witness the Pirate Princess, and I regret that so much. From a little bit of research every one can se that people loved her, and I'm sure I would have too. Her Diving Elbow Drop is a absolute treat, and the connection to crowd is exceptional. The Kabuki Warrios seem to have been a great tag team with great chemistry, and the way I see it is she was better than Asuka (not to diminish the Empress). I hope she is happy at Stardom, and that one day she returns to WWE, and maybe we will se her with a main title around her waist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: GreatAether531wrote on 09.04.2022:[9.0] "I don't think WWE really knows what they had with Kairi. Even with the language barrier, she's still able to communicate her radiant babyface energy, come off as extremely likable without saying much, and plays an excellent face-in-peril with how well she bumps around and sells exhaustion. Aside from having the best elbow drop since Randy Savage himself, she manages to make strike-based offense look incredibly believable despite her small size, which really makes her comebacks pop. Looking forward to last her run at Stardom."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Okaro143wrote on 26.02.2022:[9.0] "Kairi Sane is one of the most outstanding women's wrestler of the 21st Century. She was one of the central performers in Stardom alongside Shirai and Mayu Iwatani before leaving for WWE and winning the 1st Mae Young Classic. She went on to win the NXT Women's Championship but didn't spend a lot of time in the Black and Gold Brand. She is best known as one half of the Kabuki Warriors; it was a stupid idea that pit two Japanese wrestlers as a team because Creative has no idea how to promote female wrestlers other than Charlotte but she was somehow able to make it worked alongside ASUKA. Ultimately, her 1st run with the biggest wrestling promotion of the world was underwhelming despite a great reign as Women's Tag Champion with ASUKA. Her rivalry with Io Shirai in Stardom is one of the hottest rivalries in Stardom."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Suzukigunwrote on 18.02.2022:[10.0] "Updating this because of how happy I am to see her back in Stardom. Her time in WWE was murky but in Stardom, she was a huge star and exceptional at what she did. I cannot wait to see her wrestle in the Stardom ring again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: WhatIsLooveeewrote on 09.02.2022:[10.0] "I didn't follow Kairi's career very well in Japan, but what I saw from her in America impressed me. She was part of a rather interesting storyline with Pentagon, after which she began performing in WWE, where, although she was very underestimated, she became a participant in the best match for the NXT women's championship and, in general, often showed good matches alone and then in a team with Asuka. A very talented athlete and entertainer, who clearly will not get lost after leaving WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Legend003wrote on 07.01.2022:[9.0] "Eine echt starke Wrestlerin. Mir gefiel sie schon bei Stardom, da zeigte sie schon ihr starkes Handwerk und konnte einige starke und mehr als sehenswerte Matches zeigen.. Das gleiche konnte sie im Mae Young Classic und auch bei NXT zeigen. Leider war ihr WWE-Main Roster Run leider nicht wirklich gut, aber trotzdem sah man ihr gewaltiges Potential. Ich hoffe, dass man noch einiges von ihr sehen kann."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: SammyMayawrote on 27.01.2021:[10.0] "Kairi Sane is an other-worldly talent. She has it all: athleticism, charisma, humble nature, and physical beauty. Proved that she ranks in the pantheon of joshi legends during her Red and White Belt runs in Stardom. Every match she had as World of Stardom Champion was consequential and against world-class opponents; the championship could have changed hands each and every time. Showed her mettle and never-say-die ethos in the matches against Meiko. Wrestled so many classics against Io. *Only* won the NXT Championship during her WWE run; should have had a longer reign, and should have at least been Raw or Smackdown Women's Champion at least once, but we, the general public, aren't privy to behind-the-scenes politics and the state of her health. Her team with Asuka rocketed in popularity due to the oozing charisma of both performers, although Kairi is the equal of Asuka in the ring and should not have been portrayed as the "weaker" of the two. Not surprising that she was a WWE Women's Tag Team Champion given her extensive past as a tag team specialist in Stardom. I hope her wrestling career isn't over; would love to see her on a retirement run in Stardom to close out her magnificent career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: KENTAfanwrote on 07.01.2021:[9.0] "She? s right behind Io in terms of being the female GOAT. One of the most charismatic women in the sport, so much so that she easily transcended the language barrier in NXT and immediately became a top baby face. Her run on the main roster was somewhat lackluster, but still enough to be called a success despite being subject to terrible booking. That said, her greatest work was undoubtedly done outside of the WWE, where she has had some of the greatest women? s matches ever. I think leaving WWE was the right decision for her, as she can now perform at full potential once more."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: STARDOGCHAMP90wrote on 21.10.2020:[8.0] "Kairi is one of the best Joshi wrestlers on the planet. She's had countless entertaining matches and won many prestigious championships. She won the Mae Young Classic, and had an unbelievably-short stint as NXT Women's champion. Kinda sad that she's not with WWE anymore but I hope she does bigger and better things in Japan eventually."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: CrazyCoffeewrote on 28.07.2020:[9.0] "Poor Kairi. A fantastic wrestler who was at the wrong place at the wrong time. Although she won the Mae Young Classic, everything went downhill from there. She has one of the shortest reigns as NXT women? s champion. And always had to put Shayna over to establish her as a monster heel. The feud never went further as Kairi was then called up to the main roster and be put on a tag team with fellow Japanese wrestler Asuka who was also struggling on the main roster after a historic run on NXT. The Kabuki Warriors were eventually tag team champions and did they did their best to make the women? s tag team belts prestigious, only losing it and Wrestlemania ( where Kairi ate the pin). From there, Kairi jobs to Nia ( who injures her on 2 occasions) and Shayna, looking a chump in the process and disappears for a while. When she reappears, she looks like a chump some more, getting attacked by Nia backstage, and then eating pins clean during tag matches. Kairi leaves WWE as a chump being beaten backstage by Bayley. News has it that Kairi will return to Japan and wrestle one more year before retiring. Sadly, if she does return to Stardom, she will now be at the mercy of the monster pushed Giulia, Bushiroad? s chosen champion... Arrivederci Kairi...."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: archiewrote on 14.07.2020:[10.0] "Perhaps my favourite wrestler to ever lace up a pair of boots. Endless charisma and athleticism topped off by the best elbow drop in pro wrestling. WWE doesn't know what they have with her, she's wasted on Vince McMahon who has a clear disposition for anyone who isn't a 6'4" 240 lbs Samoan monster. Even back down in NXT she was never given the spotlight as far as feuds go. Her most notable feud, with Shayna Baszler, very much felt like Shayna Baszler feuding with Kairi and not the other way around. Had she been given better opponents and more time she would currently possess a much better reputation than the one she currently has as a result of King Meltzer giving her no higher than 3 3/4 star for a match of hers. Watch her flourish when she returns to stardom soon. Just, you, wait."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: hirsty97wrote on 05.05.2020:[9.0] "Best female talent in WWE right now. Why are they sleeping on this talent? The way she was booked in the women's rumble, against Shayna, Lacey Evans was criminal. She is better than Asuka and younger. I thought good things would happen after the MYC but instead we've had nothing one year later."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: ooomegooowrote on 23.12.2019:[9.0] "Please, hey her back to Japan. Hey her back to STARDOM. And then I'll give her 10. Because in WWE, she's not in her place. She needs to talk, she needs to joke, but she's still can't talk in English. In Stardom, even if you can't understand what she talks, you you can imagine what is she talking about, and there is subtitles."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: ElPolloLocowrote on 24.08.2019:[9.0] "An unbelievable combination of skills, character acting and beauty, I cannot think of no other lady wrestler that can serve as a model for all the others to follow. Io Shirai may be the best I have ever seen in the ring but Kairi is the most complete package by a fair margin. The only problem is I am not 100% sold on this whole WWE thing but at least she's getting a big paycheck (hopefully)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: KyleEnjoysWrestlingwrote on 01.08.2019:[10.0] "Kairi is an incredible wrestler. Her ability to convey emotion is her best attribute in my mind. She does not have to speak a lick of English for us to know exactly what she's thinking. That's a skill that Vince & company don't recognize because they still have the mindset that everyone needs to speak. I completely disagree. She tells a great story with all her matches and she's a real pitbull in the ring. Despite being small, she can believably stand up to people twice her size. She has a magnificent presentation & you are just intoxicated to watch her perform. She also has the best looking elbow drop I've ever seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: DecentWrestlingwrote on 19.07.2019:[10.0] "Excellent face as she can be likeable and a complete badass. Amazing in ring work with a great finish."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: NEVERoverweightChampionwrote on 04.07.2019:[8.0] "Despite her size and very cute look she can be one of the most agressive striker in women's wrestling today. (or at least she was) She has one of the most pure babyface aura I have seen in a long time. Her work in Stardom was good despite being not that experienced at the time, wich was impressive. In WWE, she's doing her best with what they give her. I don't think she will leave an impact here because she doesn't really fit with the WWE style or even the American crowd but I wish her the best."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Kanatowrote on 18.06.2019:[10.0] "One of the most talented japanese superstars to set foot in WWE. Very impressive skills, her elbow drop is nothing less than beautiful and her pirate princess character would make her a very fit Miss Money in the Bank."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: ErycK24wrote on 08.04.2019:[9.0] "Kairi Sane is probably my favorite female wrestler right now, she never fails to put on a good showing."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: KoolAidCobainwrote on 25.03.2019:[10.0] "The inSANE Elbow Drop is one of my favorite diving moves right now, the air time Kairi gets just by hitting it is insane and the impact is absolutely painful looking. The amount of talent she has is absolutely phenomenal. And her gimmick would get along well with Io to have the Sky Pirates an actual team and maybe Women's Tag Team Championship contending. She's also extremely cute as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: zephyrwrote on 22.03.2019:[8.0] "For someone her size she certainly packs a punch; her moves look super impactful. She's charismatic and very likeable, which combined with her size, make her an ideal scrappy babyface. Unfortunately I find that not quite fitting to her style in the ring though. Not sure if that can be remedied in some way; perhaps it's just a personal issue I have. Overall very good wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: TwistedBlisswrote on 14.03.2019:[8.0] "Kairi Sane ist eine sehr gute Workerin. Ich bin ein Fan seit ihrem ersten Auftritt bei dem Mae Young Classic Tournament. Im Ring ist sie deutlich besser als viele andere Damen aber an Ihrer Gestik und Ausstrahlung am Mic muss sie noch arbeiten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: SNKwrote on 26.08.2018:[8.0] "One of the top female talents in the world. While not quite on the level of the very best workers such as Io Shirai or Meiko Satomura, Kairi has plenty of quality performances under her belt and be counted on to deliver a good match. Where she really shines is in her ability to draw sympathy from the crowd and play an excellent underdog. Kairi is somebody you just feel compelled to root for. There isn't a more loveable personality in all of WWE right now."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: BelieveInBlisswrote on 15.07.2018:[8.0] "She really impressed me so much in the Mae Young Classic. Especially when she threw risk out the window in her match against Toni Storm. Her mic skills are ok need a little work. But as far as selling the moves she is awesome. One of the stiffest shots in the Women's Royal Rumble match on WWE Hall of Famer Lita. I believe Kairi Sane will walk out of NXT Takeover as the new NXT Women's Champion."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Makai Clubwrote on 10.07.2018:[8.0] "Kairi is great, she has great babyface fire, her facial expressions are off the charts, she has one of the best elbows in the wrestling business today. She has great and unique offence and she is a tremendous seller. She is probably the worst out of the threedom but that's a testament to how good all three actually are."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: rjsbx11wrote on 11.02.2018:[9.0] "While she was overshadowed by Io Shirai in Japan, Kairi Sane has also been an incredible worker. She's one of the most natural babyfaces, and the pirate gimmick is endearing.  But as an in-ring competitor, she's one of the more brilliant movesets with a picturesque dropkick, a damn good spear (considering her stature) and the best elbow drop in wrestling. She was a bonafide star in MYC, and WWE has a potential money making machine when she grasps a good control of the English language."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Adaskerrwrote on 13.09.2017:[9.0] "Such a natural babyface, and a great wrestler as well. She doesn't even have to talk to be liked. If WWE can handle her right, she will be a big star."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Klabauterwrote on 04.09.2017:[10.0] "[Ursprgl. Kommentar 20. 03. 2017, 10:37 Uhr] 10 Punkte, da Kairi Hojo in wirklich allen Belangen top ist. Im Ring kommt in meinen Augen kaum ein Women's Wrestler weltweit ran. Allenfalls Asuka, Io Shirai und Sasha Banks spielen hier in einer Liga mit ihr. Dazu hat sie tonnenweise Charisma. Wenn sie spricht, ist das Publikum gefesselt. Zudem schafft sie es trotz der Tatsache, dass sie eine der drei Topstars von Stardom ist und wohl auch rein von den Statistiken her immer als Kandidatin auf einen Sieg gezählt werden muss, dass man ihr den Underdog-Charakter abkauft und sich auch mit ihr über Siege freuen kann und nicht sagt "Naja, hat sie eben wieder gewonnen, war zu erwarten. " Sollten sich die Gerüchte bewahrheiten und sie bei WWE antreten, dann ist sie in meinen Augen tatsächlich die erste, die die Aussage von Regal zu Asuka (greatest competitor that ever signed here) in Frage stellen könnte. Ich sehe in ihr schon jetzt eine vielleicht noch bessere Wrestlerin als Asuka, jedenfalls aber eine, die sich noch weit besser vermarkten lässt. Sie könnte das werde was Bayley lange bei NXT war, das liebenswerte Babyface, das von Kindern, wie Erwachsenen gleichermaßen geliebt wird. Nur mit dem Unterschied, dass Bayley in diese Rolle erst reinwachsen musste und Hojo, das im Prinzip schon jetzt lebt. [Update 04. 09. 2018, 21:53 Uhr]: Nach dem Mae Young Classic hat sich meine Meinung zu Kairi nochmals verfestigt, sie ist m. M. n. eine der besten der Wrestling-Welt. Sie spielt ihre Rolle so überzeugend, man nimmt ihr die Begeisterung für's Wrestling voll und ganz ab und es ist einfach schön ihr dabei zuzusehen, wenn sie sich freut. Auch die kurzen Stücke die auf Englisch gesprochen hat wirken schon überzeugend und nicht auswendig gelernt, wie es bei Asuka teilweise der Fall ist (auch bei anderen). Übrigens sollte nicht unerwähnt bleiben, dass sie auch die andere Seite die sehr ernste Kämpferin sehr gut drauf hat, wie man vor Allem bei Lucha Underground sehen durfte. Kairi = 1"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Magnus334wrote on 03.10.2016:[9.0] "In my opinion, Kairi Hojo is the perfect prototype of what a kid friendly baby face should be. She appeals to every single demographic and as good as she is, she is able to play the underdog seamlessly. Someone with the amount of classic matches Kairi has, it would be understandable to think she's unbeatable, but her facial expressions really convey that every match is not a given, especially against Io or others that are on her level.  Her countless matches with Meiko Satomura and Io Shirai are incredible matches that will be watched forever. I'm not a huge tag team fan but when Kairi tagged with Nanae Takahashi I thought those tag matches were some of the best I've ever seen. I don't speak Japanese, but she always has the audience in her hands and from what I can tell she has incredible mic skills. Among the countless Joshi women out there, Kairi really stands out and could be a success anywhere, even WWE. Don't think she's ever leave Stardom, but if she did, she'd be welcomed anywhere. P. s. She also has the best elbow drop in the history of pro wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Luv all wrestlingwrote on 11.09.2016:[10.0] "She has a gorgeous... elbow drop, Hojo has it all marketability, workrate, charisma and a character you can invest in, how is STARDOM and LU are the only companies that use her?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: rustybridgewrote on 10.08.2016:[10.0] "Heck of a fine young talent and has accomplished a lot already. Easy on the eyes, great ring work, charisma, character development, marketability, she has it all. Even though she is small she is able to make her offense believable, something many small wrestlers have trouble doing. Would to see her come to America, even for a few months. BTW, gotta love that elbow drop!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: RantsAbovewrote on 21.06.2016:[10.0] "One of the best underdog wrestlers currently. Everyone deservedly loves her elbow drop (RIP Macho), but for someone so tiny she's got a legit spear."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Blabewrote on 05.05.2016:[10.0] "Incredible wrestler who is only 27. She has a huge career ahead of her. (And her elbow drop is amazing. )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Matzinhowrote on 26.10.2015:[8.0] "Hat in diesem Jahr mit den Krachern gegen Satomura definitiv ihre Visitenkarte abgegeben. Die Fehde mit Satomura und der letztendliche Titelverlust bei Stardom wurden hervorragend gebooked - im Prinzip sind jetzt alle Bausteine gelegt, um später mit Hojos Sieg in einem Singles Match gegen ihre Feindin eine Ablöse einzuleiten und sie endgültig zum Star zu machen. Derzeit noch acht Punkte für eine gute Pro-Wrestlerin, der alle Türen nach oben offen stehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: ItsAllAWorkAnywaywrote on 14.11.2024:[8.0] "In lucha libre, Rey Fenix has established himself as a star. In professional wrestling, Fenix has established himself as an upper-echelon tag team wrestler along side his brother Pentagon Jr. Fenix's athleticism and death-defying style has endeared him to the fans. It is that style which as also unfortunately seen him rack up a myriad of injuries along the way as well. Just the same, there's few who are as exciting when Fenix is healthy, and a match with him involved is generally a treat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: benny5bellyswrote on 23.09.2024:[8.0] "I love a bit of Fenix and will be sad to see him go. By a country mile he is better than his brother. A shame he never got a proper singles push in AEW as the talent was there. A shame injuries always seemed to get in his way."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: An Wrestling Guy12wrote on 04.05.2024:[9.0] "The guy is a awesome highflyer. Not just that, he is a awesome wrestler when it comes to anything. He flies, he catches, he wrestles, he carries. The reason he isn't a ten is because of his charisma. But overall, he is a 9.5"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: BruceMarcos524wrote on 20.04.2024:[9.0] "Upon seeing few of Rey Fenix matches, both as singles and as a tag team, safe to say that he is one of the most spectacular highflyers amongst most luchadores. Although, luchadores are well known for excessive use of flashy spots, Fenix can make most of his moves very important to the matches he performed. His team-up with Penta El Zero Miedo, also known as the Lucha Brothers, are the most exciting and one of the best luchadores tag team in all of pro-wrestling. Seeing them fought the Young Bucks showed how much of an amazing chemistry these two teams got. Fenix is obviously the stand-out of the two and brought amazing highlights on most of their matches. Fenix reminded me of a young Rey Mysterio due to his abilities and I believe that Fenix fits to be the next Rey Mysterio, which means he could be the next top successful worldwide luchador if booked right. The only guys that I can think of that somehow can match Fenix's highflying abilities is El Hijo del Vikingo, which is another talented young luchador. Also, I love his edgy style and calling his opponents, "ZERO MIEDO" which means "No Fear" in Spanish. His personality showed that he is not just some generic luchador that we most commonly saw on lucha libre wrestling. Truly an excellent performer and always a blast when I see him on his matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Cleanerwrote on 04.04.2024:[8.0] "Sehr starker High Flyer, besonders damals bei Lucha Underground wirklich stark. An der Seite von Pentagon auch bei AEW ein Assett, wenngleich sein Ringstil teils allzu riskant ist und er häufig verletzt fehlt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Captain Memowrote on 05.02.2024:[10.0] "There are definitely more "flippy" guys out there than Rey Fenix but he may be the master of the ropes even still. It really looks like he defies gravity at times. I think him and his brother should be solidly in the world title picture wherever they go."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[9.0] "As good as Penta is, Rey Fénix might be better. In the ring, he's easily a top 5 high flyer in the wrestling world today, he's breathtaking to watch in the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: InsertFunnyNameHerewrote on 02.11.2023:[7.0] "I used to be a big fan of Fenix, especially in Lucha Underground when I was a kid, but as Ive grown up, Ive cooled off on this flaming bird. Hes still good, but in AEW, hes far less well-rounded of a wrestler than he was in Lucha Underground and it makes me sad because Ive seen him at his best."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: MadManJaxonwrote on 22.09.2023:[0.0] "I used to like him but he's been nothing but an injury prone. Not only that but he also managed to injure the ace of All Elite Wrestling aka Jon Moxley and ruined the International title. At this point I hope they take the title from him and put it on someone who can actually wrestle and be safe."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: SoomerSloomwrote on 17.09.2023:[10.0] "The thing that puts Fenix over the top of other luchadors that can perform hair-raising dives like him is that he has a constant smoothness, basically everything he does looks like he took the time to practice it, which makes it look death defying, while at the same time looking as though he was born with the ability to do it, it can look as though he doesn't even prepare himself. His tornillos are always incredible, his handspring cutter always looks impactful and despite a language barrier, he talks with a style that shows he's hungry for the top spot."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: crs285wrote on 25.06.2023:[8.0] "Fenix is a great luchador. Fenix has a great high-flying style and can be a great tag specialist or a singles star. His athletic ability is amazing, and he has a good move set. He understands pro wrestling with good selling and psychology."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: GonzoAppreciatorwrote on 05.02.2023:[10.0] "Easily one of the most exciting to watch wrestlers in all of wrestling and whether as a singles or tag guy Fenix almost always has the match of the night. Him and Penta have been one of my favorite tag teams ever since I discovered them and I adored his run in Lucha Underground."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Daigotsuwrote on 15.01.2023:[9.0] "Rey Fenix is a fantastic luchadore. Incredibly athletic and when he's on, oh boy is he fun to watch. Sometimes his matches devolve into spot-fests though, and he has had some issues with selling sometimes. I can quibble with parts of his act, but his ceiling is well above almost anybody else's."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: PhenomenalGunwrote on 15.01.2023:[8.0] "[Update from 10.0 to 9.0 to 8.0] Year after year, I like him less and less. His flaws become more noticeable over time in-ring and that's pretty much his main highlight is his in-ring ability. Still an exceptional talent, but I'm getting kind of bored of the same spots every match. [Old Review]: Best high flyer in the world, full stop! How the hell is Fenix this good! He can do moves I've never even seen before, things I question how it's even possible, and can wrestle an incredible match with just about anyone. The only one that embodies Zero Miedo more than Penta is his brother Fenix because he does things I think even Ospreay or the Bucks would think twice about. Fenix is my favorite luchador and that about sums it up."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: benh2wrote on 13.01.2023:[5.0] "Admittedly he's visually amazing in the ring and has some insanely good moves but his whole style requires too much cooperation from opponents and his selling is bad. I'm not sure if he knows how to tell a story in a match or not because he's always been in an environment where it's all about getting all your spots and reversals in so there's never any story to it anyway. All the moves just blend together and just numb you to his matches. I should be popping hardest for the last move, not the first."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: degaretwrote on 03.12.2022:[8.0] "Einer der besten Highflyer zur aktuellen Zeit. Seine Fehde mit Mil Muertes bei LU war phänomenal und einer der Gründe, weshalb LU damals so gut war"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Enriquepollazzowrote on 27.11.2022:[9.0] "Always great tag matches and singles matches. Was lucky enough to see him right before aew and now he is a superstar. He is really awesome."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: TheNomadMagicianwrote on 27.10.2022:[9.0] "Rey Fenix ist ein unglaublich starker Wrestler und Performer. Er zeigt regelmäßig neue Moves und sein selling ist Klasse! Er hat eine coole Ausstrahlung, auch wenn diese hinter seinem Tag Parter Penta zurück bleibt. Alles in allem Main Event würdig."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: GwenCube64wrote on 05.09.2022:[9.0] "Possibly the best to be wearing a mask at this current moment and has enough credit to be an all time luchador by the time he stops wrestling"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: UltraNano54wrote on 03.09.2022:[5.0] "The definition of a spot monkey. Sadly, his matches only work if you completely turn off your brain and stop thinking while watching his matches. He has potential but for now, I cannot really say that I am a fan of his."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: jamzell00wrote on 16.08.2022:[10.0] "One of the best flyers of a generation. It's like he's going out there and trying something new every night and I appreciate it. The label of spot monkey is a buzzword in the community but that has never once fit him. All his flying has impact and meaning to his matches and the best part is he isnt just limited to that. The dude has worked many guys with different styles to him and has always delivered huge. Nothing but respect"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: texasyoshwrote on 11.08.2022:[8.0] "Fenix pulls off incredible looking moves on a weekly basis, but I prefer Penta over the two. I feel there's something lacking in the cohesiveness in Fenix's matches, and he isn't as charismatic as Penta."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: KELLANwrote on 05.08.2022:[8.0] "Einer der besten High-Flyer aktuell. Seine Matches sehen mir jedoch oft zu inszeniert aus, als dass ich sie für glaubwürdig halten könnte. Finde da seinen Bruder Pentagon etwas stärker. Grundsätzlich aber eine Bereicherung für die Tag-Team Division von AEW. Potenzial: 6x AEW World Tag Team Champions - 1000+ Tage insgesamt - 1x TNT Champion - 80 Tage insgesamt. - [Upper] Mid Card"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: hoangminecraft6969wrote on 22.07.2022:[10.0] "No doubt best high-flyer in the world at this moment and he has the potential of replacing Rey Misterio as the best luchador of all time in my opinion. He's very young and has years to create a respectable career, but for now, he still deserves a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: CutterClubwrote on 28.06.2022:[8.0] "Not going to factor in his promo work as he rarely cuts them in English and I am not fluent in Spanish. Super fluid high flyer. Think of the craziest spot you can and Rey Fenix has had a part in it. Absolutely breathtaking at his best, injured or a little clunky at his worst. If he can find safer ways to utilize his talents he easily becomes a 9 or 10."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Wolfe7wrote on 20.06.2022:[10.0] "Might be the best Highflyer in the world for the past few years. He has one of my favorite movesets ever and a lot of his moves are really difficult but he almost never botches them. Just an incredible performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: TheCoolGuywrote on 05.06.2022:[8.0] "Seems a little bit overrated on here. Has good matches but theyre all the exact same. Not great on the mic but hes a really good high flyer. I cant give him a 10 or a 9."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: robrob77wrote on 20.05.2022:[9.0] "I cant give him a 10 because of the mic skills, but this guy is the best high-flyer out there and one of the best performers as well. He is second to none in lucha libre and high-flying maneuvers, and he has an amazing command of the ropes. He sells very well and he knows how to tell a story."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: arrancarwrote on 23.03.2022:[8.0] "Absolutely a great wrestler, and one of the best pure high-flyers ever, but DAMN is he overexposed in AEW. The dude insists on making every single match he has -- from his throwaway Rampage multi-man tags, to his Dynamite singles matches, to his big PPV matches -- feature every single flip and aerial stunt imaginable. Don't get me wrong, because I'll still find myself in awe at some of the absurdly athletic stuff he's capable of, but it absolutely loses its effect when he basically gives an "all out epic war" performance every time he's in the ring. This sadly means that when his biggest matches finally come, such as the Lucha-Bros-vs-Bucks cage match, all his crazy stunts feel less impactful because they're established as only being slight variations on stuff that we've seen him do a million times before. It almost sounds like I'm saying to Fenix: "UGH STOP BEING GREAT EVERY TIME YOU WORK! ", but I'm really commenting on a severe lack of creativity and long-term pacing that I see in him. With him being as agile and flashy as he is, he could easily add in a far greater number of less "EPIC" but still flashy and impressive athletic spots into his lesser matches so as to keep those matches fresh while still allowing him to appropriately save his craziest and most risky spots for his truly biggest matches. I'll definitely still marvel whenever he hits any of his beautiful spots, but at the same time I'll continue to be annoyed at him giving essentially the exact same performance in every single match regardless of the stipulation, story, setting, or opponent(s). If he ever manages to figure out when and when not to go "all out", and/or if he ever manages to noticeably inject some more creativity into his style, then he'll easily end up with a higher rating."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Stiff, rugged, and somehow still refined in his own way, Rey Fenix overcomes the pitfalls many spot monkey high flyers fall into. He uses his stiff strikes and grappling to set up the high spots, and earns it in a way others don't."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: GriffinXwrote on 24.01.2022:[10.0] "One of the most amazing, creative and spectacular highflyers I have ever seen. Guy wrestlers like he's a character in a video game able to do thing some guys can only dream off"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Wright15wrote on 09.01.2022:[10.0] "One of the very best high flyers of the last several years, no wrestler has ever mastered the ropes like Fenix. He makes even the most complex of maneuvers look effortless, and he understands how to time his spots perfectly in order to get the audience invested. He is about tied with (and probably slightly ahead of) Hijo del Vikingo for best Mexican wrestler in the world today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Maltewrote on 06.01.2022:[10.0] "Definitely one of my favorite wrestlers in AEW at the moment. The stuff he is able to do always amazes me. He is very smooth technically and is able to shine in singles and tag team matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Dawrestlingfan1991wrote on 04.01.2022:[10.0] "Greatest luchador of the modern era, just an amazing high flyer! I hope one day he becomes a singles champion in aew."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: NoSellwrote on 25.11.2021:[10.0] "I'd say he is the best active luchador at the moment. Amazing in tag and singles action. Does things that defy logic and rarely botches considering how many crazy moves he pulls off. He's awesome."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: IBladeDailywrote on 23.10.2021:[9.0] "One of the most original and insane wrestlers of this generation. Rey Fenix's high-flying is fantastic, his moveset is essentially if all of Rey Mysterio's moves were to MURDER his opponents! Lucha Bros are fantastic, love their style and chemisty but Fenix has a very bright future ahead as a singles wrestler as well. His match with Kenny Omega for the AEW title is still one of the best matches of 2021. But he also had a FANTASTIC match against Lance Archer, proving he can hang with anyone in the business and be believable. May end up a 10 in the end but he's already legendary."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Uweuwesenwrote on 15.10.2021:[10.0] "Rey Fenix ist einer der wenigen Worker, dessen Mic-Work und co eigentlich komplett egal ist. Er lässt Taten sprechen. In Sachen Körperbeherrschung ist er der wohl beste Wrestler der Welt! Matcherzählung ist ebenfalls Weltklasse. Human Highlight Reel!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Okaro143wrote on 17.09.2021:[10.0] "Hands down the best luchador I have ever seen. Easily one of the most if not, the most entertaining talent in AEW. Both a tag team specialist and an amazing singles wrestler. The most versatile wrestler and the best and most consistent performer of AEW since its inception. Fenix continues to impress and deliver every single time in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: VibesAndStuffwrote on 06.09.2021:[10.0] "Unbelievable. He's just an incredible athlete. I love this little guy like you wouldn't believe. Top luchador of the current day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Kungwrote on 02.09.2021:[10.0] "Fenix is our generation's Rey Mysterio. He does things in the ring that no one would ever dream of and he's got physical charisma for days. He's a legend in the making."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: allurvibewrote on 16.08.2021:[10.0] "Rey Fenix may be the most fun to watch wrestler today, maybe even of all time when it's all said and done."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: blastostgwrote on 28.07.2021:[10.0] "While he's always been an exceptional in ring talent, the last two years he has really taken things to the next level. Like his brother, he should absolutely be a main event talent in AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: voltxtreanwrote on 23.07.2021:[10.0] "Niemand ist vergleichbar mit Rey Fenix. Es gibt definitiv andere Luchadores da draußen, die verrückte Sachen machen können, und sie sind auch auf ihre Art einzigartig, um sicher zu sein. Aber Fenix ? hat wirklich eine großartige Liste von Gegnern, bei denen er erstaunliche Matches abgeliefert hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Z001Awrote on 17.07.2021:[10.0] "Ich wünschte, er würde einen konstanteren Schub bekommen, auch wenn er sich gelegentlich verletzt (es dauert jedoch nie lange). Trotzdem eine Freude zuzusehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Lyno123123wrote on 02.06.2021:[10.0] "(10/10) When human is created by God, Fenix is getting the athletic ability that God never intended to give to any human being. He is The BEST Luchador in modern wrestling today. There is some stuff that he do that made me question his humanity, And i will never understand how a human being able to move like he did with little to no effort. That took something beyond talent and effort to pull some stuff he did. And his selling is head to head with RVD in term of creative selling. And lets not forget his charisma to be able to pull the crowd in the palm of his hand. We probably wont see another Rey Fenix for another 50-100 Years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Icewrote on 30.04.2021:[7.0] "Just a luchadore that kinda botches here and there, but can be used for some fun sprint. Had a captivating storyline with Pentagon in Lucha Underground."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: StrongStyle2020wrote on 30.04.2021:[7.0] "Rey Fenix has declined as a performer in the past year. His lack of selling, psychology and storytelling that prevent him from becoming one of the top wrestlers in the world has always been there, but his high flying and breath taking offence has also gone down a notch over the past year. Frequent botches are now occurring, which were very rare between 2017 - mid 2020. He's still an entertaining talent, but dropped from the ranks of top performers on a consistent basis."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Android17wrote on 17.04.2021:[10.0] "Rey Fenix does stuff I've never even dreamed of before and makes it look as easy as walking. He should be a world champion someday."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Grissomwrote on 17.04.2021:[10.0] "Ich sag einfach mal Rey Fenix ist der beste Lucha LIbre Wrestler dieser Generation. Seine Workrate ist unglaublich und die Konstante, die er an den Tag legt bietet aktuell kein anderer Luchador an."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "The best worker in the world right now. Every match is dimes, every spot is spot on. Fenix elevates anyone he is in the ring with. I highly suggest watching his dark match with Baron Black, it may seem like hotshotting but I kid you not, the match is fucking fantastic and I love it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: spicyjuniormintwrote on 16.04.2021:[10.0] "Rey Fenix is to modern wrestling what Rey Mysterio was to wrestling in the 90's and early 2000's, only Rey Fenix is even more innovative, coordinated and mindboggling athletic. Maybe comparing him to one of the all time great luchadors might offend purists, but Fenix is worthy of the comparison as he's truly one of the best wrestlers in the world today. He is consistently one of if now the best match on Dynamite anytime he is booked. He can do singles wrestling, he can do tag team wrestling, he's charismatic and an incredible babyface (as anyone who's seen Lucha Underground can attest to) and he can be a very fun heel as well. Rey Fenix is great at everything. I pray that his schedule won't interfere with his booking in AEW because I see no reason why he can't be their world champion as he's more that skilled enough and he is extremely over with the crowd as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: flamagarawrote on 04.04.2021:[10.0] "The argument over who the best wrestler going today would be complex and have to consider many factors, but as far as who's the most entertaining in the ring? Rey Fenix has an easy claim to that. He does some of the most insane stuff and he makes it look easy. It's an easy decision to watch any match he's involved in."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: marexcelwrote on 21.03.2021:[7.0] "Seine Offensive ist gut und seine Bewegungsabläufe dabei sind einzigartig und definitiv Weltklasse. Sehr smooth und elegant, wie er sich bewegt. Abseits der guten Offensive liefert er mir im Ring aber zu wenig, was mich dann nachhaltig unterhält. Auch wenn seine Innovationen stetig präsentiert werden, habe ich irgendwann das Gefühl alles schon gesehen zu haben und die Abläufe ähneln sich. Sein Selling ist quasi nicht vorhanden und darüber hinaus liefert er wenig, was im Wrestlingring noch braucht. Als Spektakel funktioniert er gut, im Team mit Penta passt das, aber unter dem Strich hat er doch viel Luft nach oben, um sich wirklich für das oberste Regal zu empfehlen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: notme17wrote on 19.03.2021:[10.0] "Rey Fenix is the best high flyer in the world today. That? s even more impressive when you consider everyone does flippy shit, and he stands out as the best. AEW better realize they have something special with Fenix."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Scratchwrote on 09.03.2021:[9.0] "Rey Fenix is without a doubt one of the best flyers of his generation, and an incredible and innovative worker. Whether in solo or in tag-team, he will have the best match on the card on most days. The only thing stopping me from rating him a 10 is that he can sometimes be inconsistent. He has his bad days, and on bad days his flaws becomes glaring, whether because of the precision required by the style he is working, or because of the exhaustion due to his gruesome schedule."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Residentwrote on 06.03.2021:[10.0] "Probably the best high-flyer in wrestling today. Rey Fenix is an amazing wrestler. From seeing him in Lucha Underground to AEW, he just keeps getting better and better. Capable of doing moves no one else can do, the way he moves on the ropes is amazing. In one of the best tsg teams wirh Pentagon as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: TENzuwrote on 22.02.2021:[10.0] "A common thing people say when talking about Rey Fenix is "I've never seen that before. " He truly is an incredible performer. When you think you've seen everything in wrestling, Fenix will dazzle you with something you never even thought of. A standout performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Matidut09wrote on 12.02.2021:[10.0] "I love his collaboration with the Pentagon. He is a great flyer and a fanatic lucha. I love his fighting style, Animo"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Brett1980wrote on 15.01.2021:[8.0] "Generally very good. Sometimes his balance is incredible but when hes having a bad night it shows and he messes up spot after spot. He does tend to have more good nights than bad nights though."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: nWo-Joshi-Guywrote on 10.01.2021:[10.0] "I could go on forever but I'll keep it short and sweet as surely there exists nobody who cannot see how good Fenix is. He is simply one the best performers ever. He is great as a face or a heel and never needs to say a word in English to remain incredibly over. While sporting a somewhat generic Luchador look he usually looks awesome too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: michmoose21wrote on 09.12.2020:[10.0] "I know he may not be the best talker or seller, but Fenix may be my favorite wrestler to watch, ever. Every match of his I see something insane that I haven't seen before. He and Penta are two of my favorite wrestlers on the planet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: JBoogieRom28wrote on 22.10.2020:[10.0] "I was amazed by Rey Fenix in his Match With His Brother Penta El Zero M on the 10/27/20's episode of AEW and they were in one of the best matches I have ever seen them in even when they were in Lucha Underground. I was so amazed by that match and how well they match each other. Rey Fenix is just the best Luchador in America in general and I just love his matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: chrisbbbbbwrote on 15.10.2020:[10.0] "Fenix is the best luchador in professional wrestling. Between 2015 and 2019, he established dominance in both Mexico and on the American independent circuit. He was a regular for major indie companies, such as PWG and AAW. At the same time, Fenix helped define up-and-coming promotions, such as DEFY. Fenix reached success as a member of The Lucha Brothers, alongside his brother, Pentagon Jr. They quickly rose to be one of the best tag teams in the world. Most notably, they are the current AAA World Tag Team Champions, as well as former PWG World Tag Team Champions. In singles competition, Fenix has won the Lucha Underground Championship and the AAW Heavyweight Championship, among others. A major part of Fenix's style is his tremendous high-flying abilities. He is a master of the ropes, using them to perform some breath-taking dives. With Fenix facing his brother in the first round of the AEW World Championship number one contender tournament, it will be interesting to see what's next."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Ratewrestlewrote on 12.07.2020:[9.0] "Fenix is a very special talent who gets better every time i see him performer. From singles matches to Tag matches with the Lucha Bros, Fenix always delivers."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: BDDwrote on 04.04.2020:[10.0] "Fenix is probably the best luchador nowadays, he is incredible in both Tag Team Matches and Singles Matchs, besides being a very consistent wrestler, he can also do a lot of incredible moments, as he is very agile, but unfortunately he is not it has the Pentagon charisma, and it imbues it to shine brighter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Manking1wrote on 21.11.2019:[10.0] "Ein absoluter Wahnsinn was er im Ring zeigen kann (und regelmäßig tut). Für mich ohne Zweifel der beste Highflyer und Luchador den es derzeit gibt. Ihm könnte eine granz große Karriere bevorstehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: JuliTheCage87wrote on 24.10.2019:[10.0] "Es schmerzt zu sehen, dass ein Fenix besser bewertet wird als ein Neville. Ich weiß, so sollte man da nicht rangehen, aber das kann ich trotzdem nicht auf mir sitzen lassen. Alleine in der WWE-CW-Division gibt es mindestens fünf bessere und ausschließlich charismatischere Akteure. Guter Athlet, keine Frage, aber der Rest dann eher in Richtung AR Fox. Update: So können sich die Dinge ändern. Einer der besten Highflyer der Welt und meilenweit besser als sein überbewerteter Bruder."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Quantum99wrote on 18.10.2019:[10.0] "Er ist einer der besten Highflyer der Welt, wenn nicht der beste. Gutes Charisma, Mega im Ring und die besten Spots. Er ist gut als Single- und Tagteam Worker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: KyleEnjoysWrestlingwrote on 28.07.2019:[9.0] "Hands down, the most spectacular high flier in the game today. Never ceases to amaze in the ring. A great character solo & a great tag guy with the Lucha Bros."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: King of Strong Stylewrote on 17.07.2019:[10.0] "Der aktuell beste Highflyer der Welt der aber mehr kann als nur flippen, sein Selling ist stark, er hat viel Charisma und sein Gimmick passt zu ihm, noch dazu ist er ein sehr sympathischer und netter Typ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: ParisTheSpiderwrote on 14.07.2019:[7.0] "Fenix ist ein toller Luchador mit super Charisma. Im Ring ist Fenix sehr gut, er hat gutes Selling und teilweise geile Spots. Sein Match gegen Mil Muertes ist zudem eines der besten Wrestling Match. IM Ring liefert er ab. Von mir 7 von 10 Punkten."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: zephyrwrote on 19.03.2019:[9.0] "One of my favourite luchadors right now. Great speed and wrestling ability, very likeable, natural babyface."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Sebastian Vwrote on 16.03.2019:[9.0] "I'm Ring ist Fenix absolut begnadet. Einer der besten High Flyer die es im Moment gibt. Unglaublich flüssig und sauber in seinen Bewegungen und zudem nicht sporty sondern auch ein begabter Storyteller mit In-Ring Psychologie und Characterwork. Im Ring sind das für mich daher 10 Punkte. Ausstrahlung und Charisma sind auch absolut da. Er kann eine Halle mitreißen. Das Charisma ist vielleicht nicht auf dem Niveau der aller aller besten aber dennoch auf sehr hohem Niveau daher hier 9 Punkte. Das Micwork ist seine "Schwäche" obwohl das sehr relativ ist. Er kann frei reden und promos halten, bei denen vielleicht die letzte Intensität und Raffinesse fehlt aber dennoch bringt er es glaubhaft rüber deswegen da 7 Punkte. Alles in Allem 9 Punkte für einen sehr guten Wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: TKTrueWrestlingFanwrote on 10.11.2018:[10.0] "After watching Omega v Fenix, I really cannot doubt this man's potential. I really wish to see him new Japan so that he can give more lengthy spectacular matches like that one. He can do almost any flexible move and I think that if Rey mysterio defined high flying style, then he redefined it. Fenix can do traditional + lucha libre style which was clear from his match with omega. If you haven't checked out his match with omega, check it out! It is damn good and for me it was the best singles match of fenix I have ever seen. At last, I would like to say that this man should be given chances to main event in many promotions ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Redywrote on 30.10.2018:[9.0] "He is great, my favourite mexican wrestler. His moves aerials and athletics, his perfect overselling... He is awesome. And yes, i'm agree with the unpopular opinion: Fenix > Penta (and i like Penta a lot). I wish the best for Fénix, he deserve it!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Oliver95xwrote on 04.10.2018:[9.0] "Fenix ist im Ring der Wahnsinn. Er macht sehr viel Spaß, auch wenn manchmal der ein oder andere Move gebotched wird. Am Charisma könnte er noch arbeiten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: InactiveGuruwrote on 11.05.2018:[9.0] "Almost a perfect rating from me, that is hard to do. This guy is straight out impressive. If you watched Lucha Underground you certainly know what a good in ring performer and character he can be. Since then he got a lot more notoriety and has been used more often all around the world."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Wrestling Foreverwrote on 10.04.2018:[9.0] "Klasse Mann. Sympathisch, toller High Flyer kann ich mir nicht als Heel vorstellen. Inzwischen auch sehr im Indy begehrt. Hat sich durch Lucha bemerkbar gemacht. Auch in AAA einer der Top Wrestler. Ich kann nichts schlechtes zu Fenix posten. Ist auch noch sehr jung man wird noch sehr viel von Fenix in der Zukunft sehen. Edit 10. 04. 2018 Punkte bleiben gleich ansonst fast überall sieht man ihn mit und gegen seinen Bruder Penta. Einfach unfassbar was er drauf hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Dragon Fighterwrote on 18.11.2017:[9.0] "Very underrated and underappreciated. One of the best high flyers in the world right now. Great in ring work, can do some crazy flippy shit, omg moments. He also plays great babyface role as well. Definitely my favorite luchador to watch and enjoy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Luv all wrestlingwrote on 29.09.2017:[10.0] "Fenix has a good look, plays the underdog well, and has great high flying moves and matches. He is a good asset to any company and as Rey Mysterio Jr himself said he can be the next Rey Mysterio."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: My Bloody Doobwrote on 20.09.2017:[9.0] "Not as charismatic nor can he cut as good of a promo as his brother, but he makes up for that by being a better wrestler. He has this unique aura to him that makes his flippy shit stand out from the rest. He works great as an underdog, but I really think he can go beyond that."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: TooSweetPhilwrote on 10.06.2017:[9.0] "Zwar auch außerhalb ein sehr guter Wrestler, ist Fenix hauptsächlich durch LU bekannt geworden und ist dort auch einer der höchst-bearbeiteten Charaktere. Sein Gimmick passt perfekt zu ihm und er verkauft in seinen Matches immer eine fantastische Underdog Story mit super Selling. Auch im Ring gehört Fenix zu den Top Lucha Libre Wrestlern der Zeit, von mir gibt's 9 mit Tendenz nach oben!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Matt4Wrestlingwrote on 15.05.2017:[9.0] "Sehr solider bis ausgezeichneter High-Flyer! Erinnert nur leider etwas zu sehr an Rey Misterio, schafft es leider mittlerweile von diesem abzusondern. Kann noch sehr weit kommen!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Hypocrisywrote on 16.04.2017:[8.0] "Finde es toll, wie Fenix bei Lucha Underground eingesetzt wird und ja: Meines Erachtens hat er sich diese prominente Position tatsächlich schon verdient. Die Matches gegen Mil Muertes allgemein und das Grave Match im Besonderen waren schon sehr stark."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: NastyYaffawrote on 21.09.2016:[8.0] "Ever since Lucha Underground started, Fenix has been the most impressive in ring worker out of the whole roster there. He's a wonderful babyface wrestler; knows how to sell & he of course has some cool flips as well."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Viper99wrote on 10.07.2016:[9.0] "Ein großartiger und sehr Unterbewerteter High Flyer. Er ist unglaublich beweglich, agil und hat eine beeindruckende Körperbeherrschung. Leider sieht man nicht viele herausragende Technische Matches, aber die Rolle des Flippigen Publikumsliebling verkörpert er bei Lucha underground sehr gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Penkerwrote on 10.06.2016:[9.0] "Fenix begeistert mich eigentlich immer. Gehört neben Prince Puma und seinem Bruder Pentagon Jr. zu meiner persönlichen Top 3 bei Lucha Underground."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: The Sick Lebowskiwrote on 01.05.2016:[9.0] "Sehr starker Kerl. Gehört bei Lucha Underground definitiv mit zu den absoluten Top-Stars. Seine Matches gegen Muertes waren richtig gut, dass Grave Consequences Match sogar absoluter Wahnsinn. Ganz starke neun Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Mizzle Assault Antwrote on 22.08.2015:[10.0] "One of the best fliers working in the world today, Fenix can do things that will make your jaw drop to the floor. Discovered this awesome guy in Lucha Underground but he is great wherever he goes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: DanTalksRasslinwrote on 01.06.2015:[8.0] "With his mix of classic lucha aerial offense and Japanese strong style-influenced strikes, Fenix has an interesting twist on the classic lucha formula and is one of the young practitioners of the style to watch develop.  North of the border, he has already been involved in some of Lucha Underground's defining moments, including the "Grave Consequences" match against Mil Muertes."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: NewBreedwrote on 29.01.2015:[9.0] "Talentierter und junger Highflyer, der manchmal sogar zu viel Risiko geht. Ich hoffe er bleibt von Verletzungen verschont. Technisch manchmal noch ein klein wenig unsauber, aber Anlagen zu einem großen Star. 9, 0"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Mandzukic9wrote on 14.12.2014:[5.0] "Als Flieger natürlich sehr sehenswert. Allerdings halte ich nicht viel von diesen reinen Spotwrestlern.  Vorallem wenn die Hälfte verbotcht wird. Er kämpft teilweise sehr unsicher und tut sich zwischendurch richtig weh. Die Statur hat er auch nicht. Es gibt deutlich bessere Lucha Libres"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: HHH Pedigreewrote on 15.11.2014:[7.0] "Fine wrestler. Fenix uses the Mexican Style: aerial moves, 10. Psycology, 0. I saw him in Lucha Underdroung and he is a very athletic young wrestler, but he uses move after move after move without sense."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: robrosellwrote on 06.06.2014:[8.0] "A very talented guy, knows how to fly and fight, loves the strong style and is the new idol of AAA, the future of AAA is him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: LS Incwrote on 16.01.2014:[9.0] "A great high flyer. Probably the best in AAA together with Aero Star."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: EasyLinkwrote on 24.11.2024:"One of the greatest wrestlers of his generation, but unfortunately was too underrated in the WWF and WCW. This and his difficult fate became one of the reasons for his drug addiction, which cost him his life"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Nolan Greenwrote on 15.11.2024:[10.0] "He was Mr. Perfect for a reason. A master class athlete that could get a classic out of anyone. He was crisp and could play a cowardly heel perfectly. His pairing with Bobby Heenan didn't need to happen, but they were perfect together. He should have been WWE champion and probably would have been if he wasn't in the Hulk Hogan era. Even when he had bad matches in WCW and a depressing final match in TNA, he has enough great matches to counter that. What else can I say other than he's perfect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Zak22wrote on 23.09.2024:[8.0] "Very talented worker who unfortunately never really had a true peak due to injuries. Curt's series vs Nick Bockwinkel is really the last highlight of the dying AWA, and Curt had a good run with the IC title capped by a great match with Bret Hart. Anything post early 90s isn't great."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: benny5bellyswrote on 16.08.2024:[8.0] "One of the most beloved gimmicks of all time and yet at its heart it was incredibly simple. He had a hell of a run from AWA through to the WWE but he doesn't have a huge resume of must see matches but few will in that era of WWF. His Bockwinkel matches are as close to must watch as you can get in that era. It is a shame injuries robbed him of so much so we never got to see what it could do as a grumpy veteran but you suspect not much as wrestling in that era had changed so much."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Johanwrote on 03.07.2024:[10.0] "Amazing on the microphone as he sounded genuine and real, his wrestling skills are always in high regard as he was a all time great storyteller, psychologist and a very skilled seller with a fun but weak moveset, master of mat wrestling and chain wrestling. from 1984-1993 he was one of the best workers in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ALFwrote on 24.06.2024:[10.0] "Ich denke, in den späten 80ern bis in die frühen 90er das Paradebeispiel wie die Superstars damals aufgebaut waren: Cooler Finishing Move (Perfect Plex), prägnante Einzugsmusik, technisch versiert (wenn auch selten). Hatte das Zeug zum World Champion. Es wird mir ewig ein Rätsel bleiben, warum das nicht geklappt hat, genauso wenig wie warum man nicht z. B. Max Moon Ted DiBiase als Manager zur Seite gestellt hat? Das klingt zunächst sehr abwegig - aber nur auf den ersten Blick - denn hey, wenn der Million Dollar man "ALLES KAUFEN KANN" warum dann nicht auch einen Mondflug inklusive des "Comet Kid"? Da hätte man viele Geschichten darauf aufbauen können und vielleicht wäre dann vergeesen worden, dass der Designer der sich allerdings für das Outfit von Max Moon verantwortlich zeigt, in die Farbenschule gehört."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: BadaBing2700wrote on 16.06.2024:"Hennigs Perfektionismus war legendär, sein Sportsgeist unbändig. Er inspirierte Generationen von Wrestlern und bleibt eine Ikone des Sports. Seine Matches waren stets fesselnd, seine Ringauftritte unvergesslich. Ich habe ihn geliebt, schade das er so früh von uns gegangen ist. RIP Curt"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: andytuga86wrote on 10.05.2024:[7.0] "Gifted technical wrestler and a great worker, he had class and some kind of charisma as a heel mostly because of his cocky gimmick "Mr. Perfect". He often had a very intense ring presence. Still, I always found him slightly overrated. When he left WWF his career slowed down a lot."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: crs285wrote on 06.05.2024:[9.0] "Perfect was nearly perfect in the ring and on the mic. In the ring he was smooth and precise even with opponents who were unable to get good matches with other opponents. He was best as a heel on the mic as his charisma made him easy to hate. His last WWE run and after were not good but that wasn't on him as much as it was on booking, injuries and father time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Rassle Fanwrote on 01.05.2024:[10.0] "There's gimmicks that a wrestler was born for and Curt Hennig as Mr. Perfect is one of them. He really was perfect as a wrestler. He was athletic, crisp, good on the mic and even better when Heenan was with him. A shame he never won a major world title but he was so good he really didn't need one."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "Curt Hennig is one of the all time greatest professional wrestlers to ever grace the mat, it's a crime that this man never got a chance at the World Championship in the WWF, one of the all time best to never have won it. In AWA, he was an amazing talent who had classics with Nick Bockwinkel, showcasing his technical prowess in the ring and even winning the belt down the line in his time in AWA, he even was in a tag team with Scott Hall and became tag champions, the more you know. Safe to say his AWA run was met with success, but he gained more prominence by joining the WWF under the Mr. Perfect gimmick, and he literally lived up to the name. Not just for being an amazing performer in the ring, but because all the things he bragged about in his vignettes and whenever he would throw his towel onto someone's shoulder or behind him and have Bobby "The Brain" Heenan catch it and spitting out his gum to swat at it and never miss, Brock Lesnar put it as "he always had a horse shoe up his ass, " Shawn Michaels claimed he had an uncanny ability, and he sure did. This gimmick literally couldn't have been given to anyone else but Curt Hennig, he played it... Well, perfectly. Unfortunately, he never became WWF Champion thanks to him coming up during the Hulk Hogan era, and the same issue in WCW, where he was pretty much bound to be another guy on the roster, but he did have an entertaining country band gimmick with their funny hatred for rap music. Overall, "Mr. Perfect" Curt Hennig is one of the all time greatest professional wrestlers who was the total package when it came to being a wrestler: great in the ring, on the mic, charismatic and characater work. Kevin Nash said it best when he asserted that Heenan and Hennig were a duo similar to Lennon and McCartney, saying they didn't need eachother but worked so well with eachother. R.I.P. Curt Hennig"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Excellence of Executionwrote on 05.10.2023:[10.0] "Da kommt nur die 1 in Frage. Mr. Perfect war technisch einfach absolute Weltklasse und hatte seinen eigenen agilen und intensiven Wrestlingstil, so dass es eine Augenweide war im zusehen zu dürfen. Bei alldem war er auch noch absolut charismatisch und hat seine Rolle als Mr. Perfect wunderbar ausgefüllt. Ein Jammer wie er dann in der WCW völlig unter Wert verkauft wurde und später bei seinem WWE Comeback vollends in irgendwelchen 6 Minuten Matches verramscht wurde. Für mich einer der wohl talentiertesten Wrestler aller Zeiten, wenn es um Gespür für körperliches Timing geht. Selbst sein Overselling war einfach auf den Punkt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: DangoDaisukiwrote on 12.09.2023:[6.0] "Anscheinend ist Mr. Perfect so beliebt, das wusste ich gar nicht. Ich fand ihn schon immer solide, aber auch nicht so einen guten Wrestler was man eigentlich auch in seinem Matchguide sehen kann. Ich weiß auch nicht einmal was ich viel zu ihm sagen soll, da er für mich immer etwas irrelevant war, ist aber definitiv okay."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Curt88wrote on 30.07.2023:[9.0] "To put it simply, one of the very best to ever lace up a pair of boots. Great ability and a fantastic worker. I didn't like him growing up, but I think that's a argument for just how well his character work was. Now I can really appreciate how truly great he was"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "On the same level as Bret Hart and he probably wins the tie breaker by way of having better promo skills. Hennig's crazy bumping style did him in and after 1991, it was a steady decline of injuries, and drugs that led to his untimely demise. The only reason I hold him at an 8 is those lousy injuries really hampered his career and his tenures got flaky post 1991 when he was hopping company to company."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Cyclopz007wrote on 31.03.2023:[10.0] "Top 5 favourite wrestlers all time. Perfect 10. Discovered him and WCW love finding all his old stuff. Incredible talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: TheNorthEastwrote on 27.01.2023:[8.0] "I think it goes without saying that Mr Perfect was one of the greatest characters of all time. The way he was able to elicit heat and make himself appear as a legitimate threat against monsters such as Hulk Hogan is outstanding. I wish I could give Kurt at 10, however despite having the perfect 80s promo that style did not translate well into the grungy 90s and his work in WCW at times was just sad. He did find his groove with the West TX rednecks and it is a real shame that was cut short. Curt seemed to be finally finding a new grove when appeared in those early days on TNA/IMPACT but was sadly taken from us before we could see him rise again. I must also add I have seen little of his time in AWA and that may give me a different perspective."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: MainEventMasterwrote on 29.11.2022:[10.0] "Incredible in the AWA, put in a good effort while in the WWF, but fell off by the time he cane to WCW, but in his prime, he was incredible, better in his Curt Hennig AWA persona than the Mr. Perfect gimmick."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Wrestling Foreverwrote on 16.08.2022:[9.0] "Was diese Sport Vignetten angeht die hat er nicht wirklich alle beim ersten Mal geschafft. Ich habe Outtakes gesehen wo er es nicht schaffte aber diesen einen Wurf mit dem Football ich weiß nicht wie er das schaffte aber das war perfekt und er konnte echt alle Sportarten die man so sah. Privat wie man hörte war Curt ein unfassbar witziger Mensch. Wie er den Kaugummi immer wegschlug das konnte nur er und er konnte wunderbar talken. Man könnte über ihn sehr viel noch schreiben. Aber ich belasse es nun. Eine absolute Wrestling Legende leider ist er viel zu früh verstorben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Tomas Cunhawrote on 10.05.2022:[10.0] "This man was so, so entertaining to watch. From the moment his amazing vignettes aired prior to the debut of 'Mr. Perfect', to his ability inside the ring as well as to cut promos, and how he could elevate anyone around him, he was great. Unquestionably one of the greatest wrestlers of his generation, if not of all time. His work pre-WWF, his initial "perfect record" undefeated run in the WWF, the work as Intercontinental Champion, the partnership with Flair & Heenan during the back injury... his career is so complete and he was engaging in every role. Amazing talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Mikeymikeddd1wrote on 13.04.2022:[8.0] "He had a good run in WWF in the late 80's and early 90's. Also did well in the AWA when the talent over there started to get thin. His family name opened some doors for him. Didn't do that well later in his career. Maybe people on this site rate him a little too high. Injuries also hurt him and it seems like he didn't accomplish as much as he could've."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Conquistador37wrote on 14.03.2022:[10.0] "My basic criteria for rating a wrestler is "how watchable are they? " it ranges from "immediate and instant fast forward (zero) to "even if it's a 45 second squash match, I'm going to watch the entire thing with vested interest, and maybe even twice in a row". Mr. Perfect fits into a "10" with relative ease. I want to see everything he does against anyone. It doesn't matter if there is a story or if the match is so-so, if it's Curt Hennig- I'm glued. Even deep into his career and even deep into WCW sucking ass, I wasn't going to deny Curt any attention*. I'm certainly a Mr. Perfect mark through and though. (* ah except of course the moment he turned against The Horsemen and joined the nWo, he was just as much a victim as any other nWo member then - fast forwarding with contempt, but I won't dock points for that)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: rishabhwrote on 15.02.2022:[10.0] "If there was anybody who was born to play the "Mr. Perfect" persona, it was Curt Hennig. He was literally perfect in all departments of wrestling. His great technical ability and his ability to bump around and make his opponent look good make him one of the greatest in-ring performers of all time. Add to that, he had loads of charisma and mic skills and the way he carried himself around, he looked like an absolute star. He could do any role he was given even as a manager or a commentator. He's definitely one of the best wrestlers ever to be part of WWE who never won the World Championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: GriffinXwrote on 30.01.2022:[10.0] "Henning truly was as close to perfect as you got could get in the ring. He was so smooth and such a great seller to make who ever he was facing looking strong. Even after his back started to give him problems he put on great matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: TigerDiverwrote on 07.01.2022:[9.0] "Best known for his awesome 'Mr. Perfect' persona in the WWF Golden Era, which is still legit one of my all-time favorite characters in wrestling. With that said, he does have his fair share of classic works over in the territories as well before stepping foot in said promotion, most notably in Verne Gagne's AWA, where he was able to put on some of the greatest mat-classics of the decade. His technical skill is up there with the very best of them, and his ability to bump all over the ring like a madman will never not get appreciated. Had loads of mic skills while also bringing a vast amount of charisma to the table, and not to mention he can even do excellent jobs portraying a manager, or even a commentator! Unfortunately, his later work in the 2000s slightly tarnished his legacy overall, which would lead to his untimely death not so long after."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Ma Stump Pullerwrote on 06.11.2021:[8.0] "If the majority of his career was the quality of him in the AWA, I'd put him easily as a top top guy. Sadly, his WWF run is kinda overrated (outside of maybe a dozen great matches and a lot of eh ones and whatnot) him in WCW (which was almost all unmotivated crap outside of the Rednecks stuff and some good showings here and there) and him everywhere else, which is even worse than all of that, lol. In the ring, guy was fantastically consistent, a complete joy to watch, was intently focused on ring psychology and knew what and when to turn up the heat or cool things off, and was basically a universal teacher for many wrestlers after him. He wasn't the best at promos: I felt like sometimes he was a bit stilted and didn't quite know what he was talking about, or believed in it very much. Other than that, very solid and a great babyface or heel, torchpasser or cartoonish villain, guy could do it all and then some."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: IBladeDailywrote on 21.10.2021:[9.0] "One of the best of his era. Hennig's matches, persona, and talking ability kept him relevant any time he was near a ring. His matches with Bret Hart are all-time classics. I have only seen a bit of his AWA work (thanks WWE) but feel his absolute peak was as Mr. Perfect in WWF. He is one of my favorite IC champs of all-time and had underrated matches with Shawn Michaels as well. His promos and character work were always top notch and he hit a new level when Bobby Heenan became his manager. A very underrated manager and color commentator as well."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: No Onewrote on 12.09.2021:[10.0] "One of the greatest in-ring performers of all time. One of the best Ring Generals of all time. The greatest "Over the top" seller & bumper of all time. One of the smoothest in-ring performers ever. Memorable rivalry with the legendary Nick Bockwinkel. Former AWA World Heavyweight Champion. Was one of the best in-ring performers in the world during the early 19990's. One of the greatest & most memorable WWE Intercontinental Champions of all time. Produced memorable matches against the legendary Bret "The Hitman" Hart. Back injury turned him into a more limited performer, but he was still a smooth performer regardless. One of the greatest Midcard wrestlers of all time. Had great charisma. Great promo. Had the presence of a star. His "Mr. Perfect" gimmick is one of the most memorable gimmicks in pro wrestling history. His father Larry "The Axe" Hennig was also a legendary wrestler. His son, Curtis Axel, followed in the Hennig family footsteps and became a 3rd Generation wrestler. Never hit his full potential in the WWE because of injury & politics. Unfortunately was horribly misused in WCW, even though his "West Texas Rednecks" gimmick is memorable. Passed away way too soon. RIP to the legendary "Mr. Perfect" Curt Hennig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Pete Gallowswrote on 05.09.2021:[10.0] "A great wrestler. Athletic, good look, great mic skills, good moveset. Tendency to oversell, but a tremendous worker. It? s a real shame he had his issues and left us so young."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: thebigmilkmanwrote on 28.06.2021:[4.0] "Very Overrated in my opinion. He's not the worst but I'd say I think his stuff is pretty bad. Maybe that comes down to personal preference as his style is not my preferred style of wrestling but even then I tried to give his matches with Bret a chance and I just did not enjoy it at all. His WCW run was pretty bad too"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Daigotsuwrote on 19.06.2021:[9.0] "Hennig was a terrific wrestler, and could sell as well as anybody. He was a terrific worker and talker. By the time he got to WCW, he was just kind of there. His work was still good, but they obviously didn't have plans for him and he didn't have an opportunity to have classic matches. With that said, he was undeniably a fantastic talent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Nick Owrote on 15.06.2021:[10.0] "Mr Perfect was amazing. He was a great wrestler and could put on classic after classic. This man could also sell like crazy. I loved his Intercontinental Championship reigns and thought he was an amazing heel who could work the crowd. Some of my favorite matches if his are those with Bret Hart. Those 2 had unbelievable in ring chemistry. I think it's a shame Curt was never World Champion. R. I. P Curt Hennig Legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Lil akwrote on 04.05.2021:[10.0] "Als Mr. perfect einfach Perfect. Gimmick des Narzissten Perfekt dargestellt und der Finisher war auch mega. Er war auch gut im Ring und hat sehr technisch gewrestlet. Die Promos die ich gehört hab waren auch gut und Die Matches auch. Hätte eigentlich statt Hulk hogan dass Royal rumble 1991 gewinnen sollen und dann im Main Event die Wwf championsship gewinnen sollen. Einer meiner Lieblingswrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: StrongStyle2020wrote on 30.04.2021:[9.0] "One of the most well rounded performers of all time. Great on the mic, tremendous personality, and top quality athletic worker. His matches with Bret Hart showcased both guy's excellence of execution, and were almost flawless. In another era, would have been a multi time world champion."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: AnBwrote on 27.04.2021:[9.0] "Mr. Perfect was damn near perfect. More of a classic wrestling style guy, and was hit hard when the industry modernized. Completely wasted in WCW."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Brett1980wrote on 25.01.2021:[8.0] "AWA stuff was great and as Mr. Perfect was tremendous. Great at taking bumps. Extremely arrogant persona that was well, Perfect. His WCW stuff is not Perfect however."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: JEK 1991wrote on 10.08.2019:[10.0] "A great wrestler and very well gifted. He was always exciting to watch. Great at his heel role. If I grew up watching him he would have been my favorite. When he was a babyface in the WWF in 1993 he was not as good. Very technical Sadly that he passed away so soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[9.0] "He's a guy like Rick Rude who I don't think we got enough out of. He was amazing in the ring & played the Mr. Perfect character to a tee. A great heel who was easy to root against."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: BigWackenhutwrote on 21.03.2019:[10.0] "For being ? Perfect? Curt Hennig was of modest size. But he could bump like no one else and had the stamina to always leave the fans satisfied. After laboring against the randy old rooster Nick Bockwinkel in the AWA, , he surged into the national scene with his amazing Mr. Perfect gimmick. His package was enhanced when he was given a flamboyant, slender but massively endowed male companion to lead him to ring. Side note- Lanny Poffos outfit was pretty much a stitch for stitch remake of Angelo Poffos graduate mortar board and gown set.  Mr Perfect had a long prime but was never given the big prize in WCW and WWe. He was on the shelf for a while in the early 90s with a Lloyd? s of London policy spat. But he returned to high modcard status during a lengthy run with the NWO. Hennig will be best remembered for his Bockwinkel battles, initial heal run as Mr Perfect and sadly his career ending throwdown on a chartered flight. But any match he is in is worth watching. His battles with Bret Hart are top notch.  If there is a critique, it is that he flip flopped too much. But in the cartoonish wrestling landscape of the time, he always made his opponents look amazing. It is a shame that he did not get a run on top with Bret Hart chasing him.  A third generation wrestler, it would seem that a small, pink head is all that he shares with his boy Curtis Axel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: zephyrwrote on 20.03.2019:[8.0] "Another one of those wrestlers who were great in the ring but lacked the mic skills to become huge stars. Personally never really liked the Mr Perfect gimmick tbh."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Makai Clubwrote on 14.02.2019:[7.0] "If you ask me to base Curt Hennig off his AWA run, I would praise it to the hills and give him an 9 or maybe even a 10 because he really was fantastic. He could play the lovable face you wanted to root for or the detestable heel that you wanted to see his ass kicked. He could grapple with the best of them and was an overall great wrestler. In WWF though, meh. Honestly don't see why this run is praised so much. His wrestling can be hit and miss, he doesn't have a lot of great matches. Tons of good but never to the point where I feel the hype is justified. His bumping is beyond laughable. How any one considered him the measuring stick, I'll never know. His character whilst memorable, kinda one dimensional at the same time. I think he is pretty overrated overall. Still a good wrestler and has tons of great matches in AWA."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Steamboat2511wrote on 02.10.2018:[8.0] "Mister Perfect ist ganz sicher einer der besten Techniker der Geschichte. Bekannt für eine unglaublich akurate Matchführung. Charismatisch und am Mic konnte er mich jedoch nicht ganz so überzeugen. Legendäres bleibt dem Fan auch eher rar gesät im Kopf, wenn man von wenigen Matches gegen Bret Hart absieht. Als Top Player oder Top Champion konnte er sich letztlich nicht auszeichnen. Als Wrestler super, als Gesamtpaket Mittelmaß."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: RatingsMachinewrote on 26.09.2018:[7.0] "Hennig was a good worker who could make opponents look great and make matches great by taking wild but somewhat realistic bumps. But once he couldn't take those outlandish bumps, Hennig's limitations were made obvious, and he couldn't compensate for not being able to bump like he used to."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: pappahousewrote on 19.08.2018:[9.0] "Eine leider nicht mehr lebende Legende. Pure Technik und Anfang der Neunziger seiner Zeit weit voraus. Leider auch immer wieder mit Verletzungen am Rücken zu kämpfen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: TheLoudMouthwrote on 10.01.2018:[8.0] "Hennig war ein exzellenter Techniker und dadurch im Ring vielleicht sogar einer der besten Wrestler der Welt, halte ihn im Bezug auf sein Charisma allerdings für etwas überbewertet. Seine Ausstrahlung hat mich leider nie gepackt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: hirsty97wrote on 04.11.2017:[10.0] "To watch Curt Hennig wrestle, was wrestling's equivalent of watching Raphael paint. He embodied perfect in every sense of the word."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ianlapierrewrote on 04.11.2017:[6.0] "Mr. Perfect was a great in-ring worker who had some fantastic matches. He cut great promos and had many memorable moments throughout an injury-plagued career. He was never elevated to main event status. There was potential for so much more."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: taabr2wrote on 10.09.2017:[9.0] "Mr. Perfect has to be my favorite gimmick from the late 80s early 90s era of the WWF. Hennig himself was an amazing worker during that time and had great charisma."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: flashbackwrote on 06.06.2017:[10.0] "Mr. Perfect was literally the perfect gimmick for Curt - his work was incredible and the way he portrayed that gimmick was just money. It was as they say, the "real deal". He was also very influential, being described by The Click as their spiritual godfather. While it was kinda silly to put him in a stable called "west Texas rednecks", the program was hilarious and memorable. I think he would be working at a high level behind the scenes now if he were still alive, and helping shape the future of Pro Wrestling. The biz is definitely not the same without him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Coltwrote on 05.06.2017:[10.0] "Eine Legende. Sehr charismatisch und immer überzeugend, egal ob als Heel oder Face. Seine Duelle mit Bret Hart sind Klassiker. Ein exzellenter Techniker, der aber auch die härtere Art beherrschte. Nur wenige Wrestler brachten eine solche Coolness an den Tag. Hätte auch das Zeug zum WWE Champion gehabt, doch zu seinem Pech gab es mit Hogan, Savage und dem Warrior eine extrem starke Konkurrenz weshalb es "nur" zum IC-Titel reichte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Devitciiuwrote on 17.04.2017:[7.0] "Everything I do is per.. Hennig.  I look back a lot more kindly on Hennig now that I'm older. He was great in the ring, but a lot of his promos were a little too obvious. He kind of talked down to the audience and spelled everything out for them. In the ring, he was great but on the mic perhaps he needed some work. Surprisingly, the West Texas Rednecks were the promos that I remember being the best. Also, his 2000 era relationship with Russo and the New Blood was solid."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Blood Pumpwrote on 08.04.2017:[9.0] "As good as his in ring work was in WWE it wasn't exactly where he shone. Oh he had some amazing matches with Bret Hart and an underrated classic with Ric Flair but most of his best work came from the AWA. Most'll point at his matches with Bockwinkel, and fair enough they're almost all pretty damn glorious but that's not all there is to his career there. Hes had great matches with Wahoo McDaniel, Jerry Lawyer and a lot of the others. Hes apparently even had a great tag run with Scott Hall but I haven't seen those matches yet. Anyways he had arguably a much more rewarding run in AWA but even without considering it he'd be a high 8."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Real Raterwrote on 02.02.2017:[8.0] "Einer der Wrestler, der den Heavyweight Gürtel, hätte halten müssen.   In-Ring Skills:Einer der besten Technischen Wrestler, ende der 80er und Anfang der 90er. 8/10 (50%) Promos/Schauspieltalent:Auch hier kein schlechter. 7/10 (25%) Charisma/Erscheinung/Gimmick:Definitiv einer der Charismatischsten Wrestler Anfang der 90er. 9/10 (25%) Sind dann insgesamt 8 Punkte für The Perfect One.  = 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: AriesMarkwrote on 08.01.2017:[10.0] "This guy had everything going for him. Timing, match psychology, great selling ability, great athlete overall. Too bad he got plagued by demons later on in his life, but he will still go down as one of the best pure wrestlers of his generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ApexOfEvolutionwrote on 28.12.2016:[8.0] "Technisch ein einwandfreier Wrestler, fand ihn charakterlich aber langweiliger und uncharismatischer als einen Roddy Piper oder Macho Man. Neben Bret Hart und Chris Jericho aber einer der Namen, die man am meisten mit dem Intercontinental Championship verbindet. Gegen Bret Hart hat er dann beim ersten King of the Ring-Turnier meiner Meinung nach auch eines seiner besten Matches abgeliefert.  Leider auch einer der Wrestler dieser Ära, die viel zu früh von uns gegangen sind."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: MatteoMerdokwrote on 30.10.2016:[7.0] "I've watched his matches with Bret Hart, Ric Flair and Nick Bockwinkel. When I was young he was in the nWo, but to be honest from everything I've watched from him, he seems like a very crisp worker, but not too versatile. I can't give him a higher score until I see some more matches from him."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: SlickDevilSWPwrote on 06.10.2016:[10.0] "There's only one Mr. Perfect. I remember seeing him live in 1991 at the Nassau Coliseum against The Texas Tornado and I was one of a few cheering him. Curt Hennig was the man, plain and simple. One of the greatest Intercontinental Champions and could deliver a great match on impact. His death was sad especially seeing his return at the 2002 Royal Rumble showing he still had the goods at 44 years old. A man whose matches I still watch fondly today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Luv all wrestlingwrote on 09.09.2016:[10.0] "Mr Perfect was money, should have been a main eventer in WWE, but he still has been a part of plenty of great matches and feuds, shame how his undefeated streak ended though."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: TheGoatwrote on 24.06.2016:[8.0] "Not Perfect, but really good.  Perfect was crisp and could bump as well as anyone.  Great technician,  good charisma and average mic skills.  Perfect may have ranked higher if not for his back injury in 91, though he was still good after he returned in late 92 he seemed to lose a step."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Sick Lebowskiwrote on 19.06.2016:[9.0] "Starker Wrestler, sowohl am Mikro als auch im Ring. Als IC-Champ in der WWF richtig stark, in der WCW etwas schwächer, aber immer noch ziemlich gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Wrestlinglexikonwrote on 01.06.2016:[8.0] "Mr. Perfect habe ich immer gerne gesehen. Er stand seinerzeit für gutes Wrestling und ordentliche micskills. Zudem konnte er andere Leute over bringen und funktioniert als heel und als face. Wobei ich ihn als heel etwas stärker fand-war er ja auch die längere Zeit seiner Karriere. Es gab etliche unvergessene Ringschlachten mit Perfects Beteiligung und er wurde auch immer in irgendwelche Storylines eingebunden-blieb also präsent. (Ob die Stories jetzt gut oder schlecht waren sei mal dahingestellt). Auch wenn sehr viele in ihm eine World Champ gesehen haben(was ich durchaus verstehen kann), war er für mich "nur"der ideale uppercarder. 8 Punkte für den unvergessenen Mr. Perfect. :)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Y2J316wrote on 10.05.2016:[6.0] "Nich unbedingt mein Fall. Aber mann muss festhalten das der im Ring Sau gut war undauch am mic richtig gut. Nur waren da leider die Drogen im Spiel."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: EGeraldhuebnerwrote on 07.05.2016:"Neben so vielen anderen, der Technik King schlechthin als Wrestler (I. R. S. oder andere aber ebenso). Nur schade, das diese beiden oftmals garnicht richtig zeigen durften, was sie so alles drauf haben. Dafür meißtens mit sehr schmutzigen Tricks usw. ihren jeweiligen Heel - Gimmiks "gerecht" werden mußten. War zwar privat und backstage auch real etwas divenhaft oder ein Mensch, dem seine Begabung hin und wieder zu Kopf gestiegen ist. Aber das war bei ihm (denn er konnte ja wirklich etwas) verständlich und nachvollziehbar. Siehe dazu manchmal Bret Hart, Shawn Michaels früher, HHH damals und heute usw. usf. , - sein Tod hat mich dennoch sehr betroffen gemacht. Da zeigen sich halt einmal mehr die Schattenseiten in diesem Business. Curt Hennig hätte womöglich noch viele große Erfolge vor sich gehabt, leider kam es nicht mehr dazu. ps. @ Mantafahrer ... was soll denn daran so ungewöhnlich sein, das manche Wrestler, vor allem, nach deren Tod hier positive Bewertungen oder Sympathiepunkte erhalten ? So etwas seltsam zu finden ist ungefähr so wie sich noch darüber zu wundern, das manche Kommentarschreiber von ANDEREN angemacht werden, wenn sie sich wagen, etwas negatives über DEREN Favoriten zu tippen, - Beispiel Ultimate Warrior. Oder sich darüber zu wundern, wenn Kommentarschreiber angemacht werden, weil sie es sich wagen, etwas positives über Wrestler zu tippen, die DERJENIGE einfach nicht mag, - Beispiel Chyna bzw. Joanie Laurer ... dh. WENN SIE verstehen, was ich damit meine. ^^"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Mantafahrerwrote on 05.05.2016:[10.0] "Eines fällt mir immer beim Bewertungsschema auf - es gibt immer wieder Vorkommnisse, in denen Wrestler in sehr kurzen Zeiträumen bis zu zwanzigmal hintereinander die selbe kommentarlose Bewertung von multiplen Usern erhalten. Bei Curt Hennig hier kann man zum Beispiel im Bewertungsverlauf erkennen, dass er am 10. April innerhalb von gut 5 Stunden neunmal kommentarlos eine 8er-Bewertung erhalten hat - äußerst ungewöhnlich. Ist mir auch beim Ultimate Warrior aufgefallen, nur in anderer Richtung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: knightrider1983wrote on 01.05.2016:[10.0] "einfach nur top der man was er für matches abgliefert hat gerade gegen bret hart . schade das er Tod ist schon. hätte ihn gerne als wwe Champion gesehen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: WrestlingNerdwrote on 21.03.2016:[10.0] "Just Perfect! Einfach einer der besten aller Zeiten. Ebenso einer der größten der nie den ganz großen Titel in der WCW oder WWE gewonnen hat. Aber den IC Titel hat er stark gemacht, einer der besten Champs aller Zeiten.  Er hat es einfach geschafft, jeden der gegen ihn gewrestlet hat, besser aussehen zu lassen. Zudem war er am Mic ein absoluter Könner, hat sein Gimmick perfekt verkörpert und als Kommentator einfach super.  Wie sagte es Mr. Perfect Curt hennig gern : "he is absolutely perfect! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Mizzle Assault Antwrote on 25.02.2016:[10.0] "I love his bumping and his character work is to die for. If not for injuries and bad timing he could have been even more than he was. One of my all time favorite guys to go back and watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Squared Circlewrote on 28.01.2016:[10.0] "He did it all.  Nice early team with Scott Hall.  Nice run as AWA champ, feuding with Lawlor.  Great run at Hogan as Mr. Perfect and of course in the NWO.  Fantastic in the ring, excellent on the mic.  Nothing he could not do and do well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: CmNag66wrote on 09.01.2016:[10.0] "Ein Allroundtalent. Er konnte eigentlich alles, er war ein starker Wrestler, konnte gute Promos halten und hatte jede Menge Charisma er war einfach der Perfect Wrestler, eine absolute Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Armbarmaniawrote on 18.10.2015:[10.0] "Einer der wohl Besten Wrestler aller Zeiten der Leider viel zu früh von uns gegangen ist R. I. P. Mr. Perfect oder auch Curt Hennig war aber kein Wrestler der in die Geschichte eingeht weil er so viele Erfolge gefeiert hat sondern er geht in die Geschichte ein weil er ein Wrestler war der sein Gegner unglaublich Stark im Ring aussehen lassen konnte und aus jedem Wrestler das Maximum rausholen konnte. Curt Hennig hatte aber nicht nur Fähigkeiten im Ring denn er war auch unglaublich Charismatisch (etwas was man bei seinem Sohn leider vermisst). Beim Mic-Work konnte er auch bei den ganz Großen mitspielen und zu alle dem hatte er auch noch denn Look. Leider hat es nie für ein World Titel gereicht hätte ihn gerne als World Champion gesehen vielleicht hätte er den Titel genauso gut getan wie er dem Intercontinental Championship gut getan hat. Für mich klare 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: WrestleArtswrote on 25.09.2015:[8.0] "Ein kompletter Worker, vom Micwork, Look, Charisma bis zum Ringwork in allen Belangen gut, ironischerweise nirgendswo sehr gut, wobei man auch sagen muss, dass die schwere Rückenverletzung Hennig ziemlich zurückwarf und limitierte, was ihn jedoch nicht daran hinderte, im Spätherbst seiner Karriere noch einmal mit den West Texas Rednecks seine Entertainer Qualitäten unter Beweis zu stellen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ShooterMcShootwrote on 13.09.2015:[10.0] "He was, if you'll forgive the pun, perfect. An amazing worker, excellent on the mic. He could do just about anything, really. Also, I will say when I was a kid, the PerfectPlex was my favorite finishing move. I was always a big fan.   Also, I thought he was very underrated as a color commentator in the early-to-mid 90s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: DanTalksRasslinwrote on 06.09.2015:[10.0] "One of the all-time great technical wrestlers, Hennig stood out in his early years in the AWA due to his in-ring prowess, but also possessed a tremendous amount of charisma and personality that allowed him to - forgive the pun - perfectly transition to the WWF's character-based product.  Could always be counted on to get good performances out of virtually any opponent (including even Dennis Rodman on that iGW PPV).  Timing never seemed to work out for him to reach the World Title picture in either WWF or WCW, but he was always a memorable presence no matter where he was on the card."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Hardcorewrote on 03.09.2015:[9.0] "Very technical wrestler with oozing charisma and unbeliavable smoothness. Deserved a world title but never really got the push he deserved. unfortunately Mr. Perfect Curt Hennig passed away at 2003, I think could have been an awesome manager."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Zedwrote on 14.07.2015:[9.0] "Selbst heute noch über 10 Jahre nach seinem Tod wird sein Name mit technischem Wrestling in Verbindung gebracht. Dieser Mann war einfach Perfekt. Sein Look war perfekt(Zur damaligen Zeit), sein Moveset war perfekt, seine Ringübersicht war ebenfalls perfekt und nicht zu vergessen seine legendäre Theme Musik. Zum großen Gold hat es nie gereicht, aber wie man an Curt Hennig sehen kann ist der World Title kein Garant um eine Legende zu sein.  Charismatisch war Hennig allerdings nie so wirklich, wahrscheinlich ist das der Grund der fehlenden World Titles."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: NastyYaffawrote on 21.04.2015:[7.0] "Great in ring performer with some natural charisma in him. One of the smoothest guys ever in the ring, as well."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: pfuschiwrote on 07.03.2015:[9.0] "89 with The Genius already great, but with Heenan from 90-91 he was the greatest, the perfect team.  The perfect IC-Champion.  Because his greatness only lasted for 3 years I would not put him as high as Shawn but at his best he was as good as it gets.  Will always love to go back in time and watch my first topfave."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Viper99wrote on 22.12.2014:[10.0] "Einer meiner All Time Favorites! Er war super Charismatisch und TOP im Ring! Er hat mir immer Super gefallen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: austin1987wrote on 06.11.2014:[3.0] "Ich konnte mit ihm überhaupt nichts anfangen fand seine Kämpfe fast alle sehr langweilig und im Kopf geblieben sind mir nur sein Kampf gegen Bret Hart und das Summerslam Match gegen Shawn Michaels. Am Mic hat er mich nicht wirklich überzeugt und Charisma hat er für mich überhaupt keins. Finde er ist einer der überbewertetsten Wrestler."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Shentenzawrote on 28.10.2014:[10.0] "Wird immer einer meiner absoluten Lieblinge bleiben. Er hatte alles die Technik, Ringpsychologie, Stärke, das Aussehen, Charisma, war überragend am Mic. Was anderes als 10 hat er nicht verdient, er ist eben perfekt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Vimeswrote on 13.08.2014:[7.0] "War für seine Zeit sicherlich nicht schlecht, zählt für mich letztlich aber zu den überschätzteren Wrestlern. Wenn man mal ehrlich ist, hat er ohne Bret Hart oder Ric Flair in der Nähe nichts wirklich denkwürdiges geleistet."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: kekslpetewrote on 04.08.2014:[10.0] "Einer der Besten die je einen Ring betreten haben. Sein Wrestling-Stil ist unvergleichbar, seine Präsenz und vor allem sein Mr. Perfect Gimmick absolute Spitze, leider nie mit großem Gold gesegnet. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Macho Manwrote on 19.04.2014:[9.0] "Einer der besten Wrestler überhaupt sehr guter Techniker.  Schade das man Ihn künstlich unten gehalten hat, finde er hätte es verdient den Champion Gürtel zu tragen.  Sein früher Tod ist natürlich tragisch.  Er war fast so wie er sich nannte Perfect."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: TheKingOfSwingwrote on 11.04.2014:[10.0] "In my opinion, "Mr. Perfect" Curt Hennig is the greatest athlete to ever grace the ring. His movement, his selling, his theatrics, and his bragging were all done with perfect timing and only added credit to his name. Hennig raised Intercontinental title to new heights, such as his match with Bret at Summerslam, and probably held the belt when it meant more than it ever has. Hennig was versatile enough for any part of the card, but he always deserved to be at the top and i only wished he got his well-deserved World Championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Undertalkerwrote on 25.03.2014:[8.0] "Er besaß viel Charisma, hatte als Mr. Perfect ein klasse Gimmick und war ein sehr lustiger sowie sympatischer Typ. Technisch gehört Hennig zu den Besten und hatte vielleicht das stärkste Selling überhaupt. Seine Schwäche im Geviert waren nach meiner Ansicht eindeutig die High-Impact-Moves. Die fehlten bei ihm größtenteils und so hatte er einfach zu wenig Aktionen im Repertoire, um seinen Gegner auf eine glaubwürdige Art zu schwächen. Ob er sich ohne seine Drogenprobleme im Main-Event hätte etablieren können, ist für mich fragwürdig, aber trotzdem war er ein beeindruckendes Allround-Talent!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Tony2000wrote on 21.12.2013:[10.0] "Für die Wrestlerischen Fähigkeiten, kriegt Hennig 10 Punkte. Er war ein Weltklasse Techniker und meiner Meinung nach, der beste Seller überhaupt . Keiner konnte die Moves seiner Gegner, so gut verkaufen wie Curt Hennig . Für das Mic-work gibts 10 Punkte . Mit Roddy Piper und Rick Rude, ist Curt Hennig für mich der beste Mic-worker überhaupt . PS: nach Rick Rude und Rick Martel, ist Curt Hennig, mein absoluter Lieblingswrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: CLPSKYLINERwrote on 12.11.2013:[9.0] "Mr. Perfect ist Mr. Perfect. Legendärer Wrestler mit legendärer Technik."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Daneraswrote on 04.11.2013:[9.0] "Ich kann bis jetzt nur eines nicht verstehen: Er wurde nie Champion, und hatte keine grössere Erfolge erzielt. Sehr schade! Er erinnert mich manchmal an Shawn Michaels, wenn ich Curt im Ring sehe. Er kann sehr gut spielen wenn er geschlagen wurde, fast wie Shawn. Er kann super Mic machen. Schade, aus ihm könnte viel mehr werden. Ich bin jetzt gespannt wie es mit seinem Sohn weiter geht. Sein Sohn sieht sehr ähnlich aus wie er."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Chris1201wrote on 02.11.2013:[5.0] "Viel zu überbewertet! Habe mir viele Sachen von ihm angesehen, war aber nie überzeugt von ihm."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Giftzwergwrote on 22.08.2013:[10.0] "Schaue Wrstling seit Ende der 80iger, damals noch auf Eurosport, später dann Tele 5 und dann im Bezahl-TV. Curt Hennig war ein Klasse-Entertainer mit großartigen wrestlerischen Fähigkeiten. Es bleibt mir bis heute unverständlich, warum die WWF nicht viel mehr aus und mit diesem Mann gemacht hat. Habe ihn selber zwei Mal in Hamburg in den 90ern erleben dürfen. Absolut unvergesslich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Iksuepsilon83mwrote on 14.08.2013:[10.0] "Er machte seinem Gimmicknamen wirklich alle Ehre und ist in meinen Augen zusammen mit Scott Hall der beste Performer, der nie einen World Title in den Mainstreampromotions gewann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Louie Canderelliwrote on 20.04.2013:[10.0] "Was soll man über ihn sagen? ... er war der perfekte Wrestler und ein Vorbild für viele!  Sein Stil und seine Technik waren brilliant umgesetzt. Sein Finisher war gleich mit ein Pin verbunden und kaum zu entgehen... Mr Perfect hatte nach Bret Hart die beste Technik und hat bis auf den grossen WWF Gürtel alles erreicht! Der perfekte Angeber im Biz... da er auf Worte auch unfassbare Taten folgen ließ! Sein Handtuch Move ist immer noch das Non Plus Ultra in Sachen Trademark :D Er konnte Gegner richtig schlecht aussehen lassen wenn das Skript es zuließ. Ich kann Ihn nur die volle Punktzahl geben alles andere wäre respektlos Curt gegenüber!  Fazit: Ein wahrer Champion auch ohne den dazugehörigen Gürtel... der perfekte Wrestler und die Nummer 1!   R. I. P Curt Henning"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: HooliNerdwrote on 10.04.2013:[8.0] "Als Mr. Perfect legendär! Echt bitter, dass er den Drogen zum Opfer fiel... R. I. P."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Sentenzawrote on 30.03.2013:[10.0] "Der Name ist echt Programm! So viel Ausstrahlung und Charisma, gut am Mic und einfach genial im Ring. Seine Kämpfe gegen den Hitman bleiben mir in Erinnerung, genauso wie die tollen Videoclips ob Basketball, Football oder Golf einfach klasse. Mr. Perfect is just perfect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Leonewrote on 26.01.2013:[10.0] "Great charisma, great mic work and a fantastic wrestler who unfortunately never won the WWE title.  But on top of that, Curt Hennig was 1 of the best sellers in all of wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Yoyowrote on 13.10.2012:[10.0] "His ability and charisma rightfully earned him the nickname of Mr. Perfect, and I think he was the only one who could pull off the gimmick so successfully. Wrestle in peace, Curt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ritt79wrote on 24.09.2012:[10.0] "der zweit beste Techniker aller Zeiten, nach dem Hitman"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: tibocowrote on 23.09.2012:[10.0] "Er ist einer der Gründe gewesen warum ich damals als Kind länger auf geblieben bin! Und ich durfte ihn auch mal live erleben als die WWE am 1. 5. 02 in Köln war!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: LM Punkwrote on 30.08.2012:[8.0] "Im Ring konnte er mich immer überzeugen. Nur 8 Punkte weil er nie einen der grossen Titel gewonnen hat. Seine persönlichen und körperlichen Problemer verhinderten dies wohl. Trotzdem hatte er im Ring ein sehr hohes Niveau und auch sein Gimmik hat er gut rübergebracht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: reene82wrote on 25.08.2012:[10.0] "Durch die Hasbro-Figuren bin ich als Kind zum Wrestling gekommen. Und hab mir die Coolsten natürlich zuerst geholt. Seine war die zweite nach Hulk Hogan. Ich wusste damals gar nicht dass es diese Typen wirklich gibt. Dieser Kerl wäre heute der absolute Main-Eventer. Nachdem ich mittlerweile alles seit Anfang 90er, nicht nur wegen Mr. Perfect nachgeholt habe, könnte ich echt heulen. Er hatte echt alles was man braucht, um in diesem Buissens ein Grosser zu werden. Warum nur nicht? !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: AsgeirRaumliwrote on 14.06.2012:[10.0] "How can I discribe Mr. Perfect? Oh, he's simply perfect!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: SWObiwrote on 19.05.2012:[8.0] "Great worker, but never relish his full potential!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Lions Denwrote on 12.02.2012:[10.0] "In den 90ern mein absoluter Favorit, egal ob Heel oder Face. Großartige Technik, für damalige Verhältnisse flashiger Finisher und markanter Look, ohne wie ein Clown rumzulaufen. Schade, dass WCW ihn mit dem Country-Quatsch ins Lächerliche zog."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Für mich der jenige der am meisten verdient hätte mal den WWE Championship zu tragen. Mr Perfect war echt in allen Bereichen wirklich perfekt, Charisma, Mic Work und auch In-Ring Skills. Das Problem war wirklich nur das er nicht ganz von der "Leine" genommen wurde, weswegen ich ihn leider auch nur 9 Punkte geben kann..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Rey2004wrote on 05.09.2011:[9.0] "Super Techniker, klasse Performer - genialer Superstar! Leider zu früh verstorben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: GTS Punkwrote on 17.08.2011:[9.0] "Er ist unumstritten eine Legende. Er hatte alles was man brauchte um einer der großen zu werden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Raywrote on 21.07.2011:[9.0] "Dieser Mann war wirklich perfekt. Alles an ihm war stimmig und aufeinander abgestimmt. Kleine Gesten, die Mimik, die Moves, sein Selling (SEIN SELLING! )... alles stimmte. Schade, dass er so früh sterben musste und schade, dass er nie einen wirklich großen Erfolg erringen konnte. Das Talent und das Können dazu hatte er."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: MaikBaaderwrote on 20.07.2011:[10.0] "Einer meiner Lieblingswrestler in der WWF und WCW. Er hatte einfach alles was man in einer großen amerikanischen Promotion braucht: Die Fähigkeiten im Ring, am Microfon und von seinem Charisma brauch Ich gar nicht sprechen. Es bleibt mir immernoch ein Rätsel wieso er nie einen großen Titel halten durfte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: exxterwrote on 31.03.2011:[10.0] "Einer meiner Lieblingsstars von der frühen WWF Zeit. Klasse Matches, und cooles Gimmick. Schade das er so früh verstorben ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Butzelchenwrote on 09.03.2011:[10.0] "Ohne wenn und aber: Perfekt! Legendäre Matches mit Bret Hart. Klasse Micwork, geniale Technik. Sein damailger Wechsel zu WCW war ein Reinfall. Leider dann viel zu früh verstorben. Zu Recht in der WWE Hall of Fame. Vielleicht kann sein Sohn (Joe Henning aka Michael McGillicutty) in seine (großen) Fußstapfen treten. RIP!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Jerichoholicwrote on 11.02.2011:[10.0] "Ein absolutes Komplettpaket - sowohl von der Ausstrahlung als auch seinen Leistungen im Ring fast unerreicht. Schade, dass er schon sehr früh von einigen Verletzungen zurückgeworfen wurde und danach nie mehr an seine Bestform heranreichen konnte, dennoch besser als der größte Teil des damaligen Rosters. Es ist wirklich schade, dass man zu seinen Glanzzeiten nie den Schritt gewagt hat und ihm das World Titelgold um die Hüften geschnallt hat, dann würde man vielleicht auch heute noch von einer viel größeren Legende sprechen. Da geht ein Mr Perfect zwischen den ganzen Ric Flairs, Hulk Hogans und Bret Harts immer wieder unten, wenn es um die Größen der damaligen Zeit geht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Schlagschawrote on 24.01.2011:[10.0] "Eigentlich wurde hier schon alles gesagt, was man über ihn sagen kann. Meiner Meinung nach war es kein Gimmick, sondern er WAR Mr. Perfect. R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Necronwrote on 09.12.2010:[10.0] "Vor allem als "Mr. Perfect" ein sensationeller Heel, der eine tolle Ausstrahung, kreatives Micwork und interessante Old-School-Technik vereinte. Hat in der WCW meiner Meinung nach abgebaut und war dort nur noch in uninteressanten Fehden unterwegs. ISt aber nicht seine Schuld, deshalb 10 Points!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: C van Damwrote on 20.11.2010:[10.0] "Ein Gimmick muss zu einem Wrestler passen, nicht jeder kann ein Gimmick perfekt rüber bringen. Das "Mr. Perfect. ", ja das war DAS Gimmick für Hennig und er hat sehr gut rüber gebracht. Im Ring top, am Mic klasse, einfach nur... nur... perfekt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: justusjonaswrote on 15.11.2010:[10.0] "Ein grossartiger Wrestler. Mein absoluter Favorit. Technisch wohl das beste was man je in der WWE gesehen hat. Dazu am Mic auch hervoragend. Schade das er Privat so einen Mist gebaut und sein Leben lassen musste. Aber wir Bewerten hier ja den Wrestler und da kann man ihm nur die volle Punktzahl geben. Leider nie den World Title geholt. Er hätte es verdient gehabt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Woerpwrote on 09.11.2010:[7.0] "Technisch sehr gut, aber er kam bei nicht an, weder als Face noch als Heel. Und seine Matches fand ich nicht sehr berauschend, mit ganz wenig Ausnahmen z. B. Matches gegen Bret Hart, wobei in meinen Augen der Hitman die Matches meist gerettet hat."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: BenZenwrote on 20.10.2010:[9.0] "Curt Hennig war ein großartiger Worker. Dazu war er mit der Ausstrahlung gesegnet, die man braucht um ein ganz Großer zu werden. Das Gimmick des Mr. Perfect war auf ihn zugeschneidert und neben seinen In-Ring Skills spiegelte er das auch in so Kleinigkeiten wie dem immer perfekten Kaugummi-Wegschlagen wieder. Gerade als Heel bei seinen prägenden IC Titelregentschaften war er genial. Seine große Stärke lag aber eindeutig im Selling von Aktionen. Ich würde ihn sogar als einen der besten "Seller" überhaupt bezeichnen, Hennig konnte jeden Gegner gut aussehen lassen. Für eine Höchstnote fehlt mir nun nicht unbedingt ein World Title, sondern einfach eine gefährlichere Offensive, die ich bei Hennig immer vermisst habe. Bei einem Finisher wie dem Perfect Plex, aus dem andauernd ausgekickt wurde, fehlten effektivere Alternativen damit ich ihn mir als wirklichen Main Eventer vorstellen könnte. Für mich war das sein größtes Manko. Traurig dass er in seiner Karriere immer durch Verletzungen zurückgeworfen wurde und er am Ende auch noch viel zu früh von uns ging."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: DJ MaSchwrote on 18.10.2010:[10.0] "Sicherlich einer der besten aller Zeiten, schade das es nie zum World Title gereicht hat. Die Anlagen dazu hätte er ohne Frage gehabt, charismatisch war er ohne Frage und zudem noch ein wirklich guter In-Ring-Worker. Auch das Gimmick war für schlichtweg "Perfect"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Aesopwrote on 18.10.2010:[10.0] "Curt Hennig, er war wirklich nahezu perfekt. Sein Stil ist schön anzuschauen und charismatisch war er auch, doch seine Ringleistung sticht natürlich besonders hervor. Er war einer der besten Techniker der damaligen Zeit. Wie viele andere leider viel zu früh verstorben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Randy Owrote on 23.09.2010:[10.0] "Einer der Besten Wrestler auf dieser Welt.  Schade, das man zu seiner Glanzzeit nicht mehr aus ihm rausgehollt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Jack Londonwrote on 19.08.2010:[10.0] "Nicht zu überbieten, tolle Matches, Ausstrahlung ohne Ende.  Einer der besten aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Weegelwrote on 15.06.2010:[10.0] "Was soll man anderes sagen: The Perfect one. Gerade erst wieder einige seiner Classics gesehen, der Mann war schlicht brilliant"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: LabronBenoitwrote on 20.05.2010:[10.0] "Er war wirklich perfekt, machte seinem Namen alle Ehre. Danke für deine wunderbaren Matches, Curt! Rest in Peace"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: RickRollwrote on 26.03.2010:[10.0] "Curt Hennig lebte einfach sein Namen. Es gibt kein besseren Wrestler zu dem "Mr. Perfect" mehr passt als bei Curt Hennig. Er besaß UNMENGEN! an Charisma, hatte starke Mic-Skills, für mich sogar die besten mic-Skills. Ich hörte/höre ihn immer am liebsten zu. Sein Old-School Stil ist klasse und sein technisches Wrestling gefällt mir auch. Im Ring zwar nicht der allerbeste, da sehe ich ein paar Wrestler vor ihm, aber in der tat ein wirklich starker In-Ring Performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Showstopper45wrote on 16.03.2010:[10.0] "Was er angrief wurde immer Perfekt dieser Mann war im Ring sehr gut aber auch am Mic. Wie hieß es auf der DVD von ihm er würde sogar aus einen Haufen Steine ein gutes Match machen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: NewGuywrote on 20.02.2010:[10.0] "Hat die 10 Punkte wirklich verdient! War immer wieder cool ihn zu sehen, ob als Mr. Perfect oder als country-liebender Curt Henning zu WCW Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Aquifelwrote on 08.02.2010:[10.0] "Der gute Mr. Perfect. Charismatisch, starkes Gimmick und im Ring erste Sahne. Zu Zeiten als Hogan noch als guter Wrestler durchgegangen ist, hat er in Amerika schon gezeigt, dass es auch dort wirkliche gute Leute gibt, die ein "total package" und nicht nur Showmen sind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: novacanewrote on 03.02.2010:[9.0] "Top-Worker, der leider nie einen der großen World-Title halten durfte. Unvergessene Matches gegen Bret Hart, die für mich nach wie vor zur Creme de la Creme gehören. Leider haben Verletzungen und schlussendlich sein frühes Ableben eine noch größere Karriere verhindert. Von mir gibts dafür trotzdem 9 Punkte, da er mich immer perfekt ;o) unterhalten hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Denzwrote on 04.01.2010:[9.0] "Er hatte großartige Matches in den 80ern und 90ern mit Bret Hart. Technisch waren beide auf dem gleichen Level. Ich kenne niemanden, dem seine Matches nicht gefallen haben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Manu Adamswrote on 22.12.2009:[10.0] "Curt Hennig wurde seinem Ringnamen gerecht: Mr. Perfect. Und dass war er definitiv, gehört in meinen Augen zu den besten Technikern die das Sports Entertainment je hervor gebracht hatte. Schade, dass es nicht zu mehr als dem Intercontinental Champion gereicht hatte. R. I. P. Curt ''Mr. Perfect'' Hennig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: chryzzwrote on 22.12.2009:[10.0] "He was absolutly perfect einer der besten Wrestler der 80er und 90er Jahre"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: downtown2wrote on 15.12.2009:[9.0] "Der große Unterbewertete. Er konnte alles, machte alles. Die Hardliner lieben ihn vorallem, weil er für seine beeindruckenden Leistungen nie entlohnt wurde. Er schnallte sich nie einen World Title um, er war nirgends das große Zugpferd, aber sein Leben lang auf dem Sprung. Das man ihn nie konsequent nach oben pushte hat zum einen mit der Verletztungsanfälligkeit zutun, zum anderen mit Hulk Hogan. Diese verpassten Chancen machen diesen unwiderstehlichen Wrestler aber nur größer, als er es vermutlich zu Lebzeiten geschafft hätte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Prince of darknesswrote on 22.11.2009:[10.0] "Ein leider viel zu früh verstorbener Wrestler. Er war einer der besten zu seiner Zeit und wäre es bestimmt auch noch heute. Er war einfach Perfekt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Saschwrote on 27.10.2009:[6.0] "Gefiel mir nie besonders gut er macht bei jeden Match immer die gleichen Moves, aber er war halt nun einmal fester Bestandteil der Wrestlingwelt für lange Zeit deshalb 6 Punkte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: jupp365wrote on 09.10.2009:[10.0] "Würde ja anstatt mit 'sehr gut' lieber mit 'Perfect' bewerten, aber naja..... Hier sehen wir mal wieder einen weiteren von der WWF total verkannten Ausnahmeathleten. Meiner Meinung nach ist Mr Perfect bzw. Curt Hennig DER Wrestler schlechthin, dem das was er verdiente Zeit seines Lebens entweder durch falsches Booking, Verletzungen oder schliesslich durch seinen viel zu frühen Tod verwehrt blieb. In der WCW war er leider ziemlich uninteressant, aber seine jungen Jahre in AWA und WWF sind einfach großartig..... ja geradezu P-E-R-F-E-C-T. Schade dass er es nie über die obere Midcard hinaus geschafft hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Brainbreakerwrote on 29.09.2009:[9.0] "Neben Owen bestimmt der beste Wrestler, der nie den World-Title bekommen hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: finsterwegwrote on 24.09.2009:[10.0] "Wahr einfach Perfekt, ob als Werstler, Kommentator (wenn ich mich recht erinner verdankt Shawn Micheals ihm den Spitz Namen HBK), Manager.. er wahr nicht nur im ring eben eine ausnahme sondern hatte das was vielen abgeht Charisma!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Basket Casewrote on 14.09.2009:[10.0] "Grandioser Wrestler, der sicher mal einen großen Titel verdient gehabt hätte. Ging leider viel zu früh von uns."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Aglaoswrote on 15.08.2009:[10.0] "Definitiv der Wrestler, dessen viel zu früher Tod mir persönlich am meisten weh tut. Das "Perfekte Gimmick" hat er so gut verkörpert, dass ich früher nie so richtig begreifen konnte, warum Hennig so oft verliert. Er hat während seiner Karriere viel zu viel Pech gehabt und wurde zu deren Ende viel zu viel verjobbt. Insbesondere diese späte Phase war für mich nur schmerzhaft zu verfolgen. Was in meinem Kopf letztlich von ihm bleibt, ist sein Platz als bester Midcarder aller Zeiten. Auch wenn er eigentlich sehr viel mehr verdient hätte - nämlich eine perfekte Karriere! Ruhe in Frieden, Curt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: CM Dannywrote on 15.08.2009:[10.0] "Er war perfekt, es hat alles gestimmt. Das Können im Ring, das Charisma, seine Einzugsmusik. Er musste ja noch nicht mal was sagen. Der arrogante Blick ins Publikum (auf dem Bild sehr gut getroffen) hat gereicht und er wurde ausgebuht. Tragisches Ende, aber einer meiner All-Time-Faves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: 108 Sternewrote on 24.07.2009:[9.0] "Große Klasse, der Mann; wrestlerisch sowohl zu spektakulären Moves als auch zu bodenständigem Ringen fähig. Schade, daß er nie den Push zum Topstar bekommen hat sondern dauerhaft in der zweiten Garde antreten musste; ein typischer Intercontinental Champion, dem höheres nie vergönnt war."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Eddiewrote on 02.06.2009:[9.0] "He is absolutely Perfect, geniale Matches, cooler Techniker, nur ein World Title Run in einer der großen Promotions fehlt mir für die vollen 10, aber seine IC Title Matches waren durch die Bank weg gut, 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: BaptisteZorGwrote on 23.05.2009:[10.0] "Mr. Perfect, tja, leider wurde er unter seinem Wert verkauft. Er war ein ganz großer und er hätte die großen Titel mehr als verdient gehabt. Technisch einer, wenn nicht der beste, dazu seine unvergleichliche Ausstrahlung = Top Gesamtpaket. 10Pkt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The-Game91wrote on 29.04.2009:[10.0] "Ganz klar einer der besten Wrestler der niemals den World Title hielt. Für mich ausserdem der beste Intercontinental Champion aller zeiten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Theron083wrote on 13.04.2009:[10.0] "Nicht ganz perfekt find ich irgendwie, aber knapp dran und daher mit Legendenbonus+1 = 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: manager1977wrote on 07.04.2009:[10.0] "Einer der besten Techniker die je im Ring gestanden sind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Atze20wrote on 07.02.2009:[10.0] "Einfach nur perfekt. Im Ring: Wow. Am Mic: Noch besser. Ausstrahlung: Ohne Ende. Schade, dass er es nie zu so viel Ruhm geschafft hat wie etwa ein Bret Hart. Verdient hätte er es allemal gehabt. R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Mick Funkwrote on 05.02.2009:[10.0] "Überragender Heel und extrem stark im Ring. 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Schandmaulwrote on 05.02.2009:[10.0] "Grandios in allem. Am Mic, im Ring, als Manager, als Kommentator. Einer der Wrestler die aus einem Besenstiel hätten ein ordentliches Match rausholen können. Dazu der beste Dropkick überhaupt. Verdammt schade das er nie World Champion wurde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: stinger89wrote on 05.02.2009:[9.0] "Kenn nur wenige Matches von ihm. Aber die Leistungen und sein Ruf müssen die 9 einfach hieb und stichfest machen. Hoffentlich machts sein Sohn irgendwann mal so gut wie er!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: lostywrote on 21.01.2009:[10.0] "Wenn die Welt perfekt gewesen wäre, hätte er den Rumble 1993 gewonnen und dann bei WrestleMania IX mit Bret den besten MainEvent einer Wrestlemania hingelegt, mit ihm als Sieger... Leider, leider viel zu früh von uns gegangen..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Sinestrowrote on 05.01.2009:[10.0] "Das totale Paket. Wrestlerisch und Charisma mässig einfach genial und anscheinend einer der umgänglichsten Typen im Business! R. I. P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Blade Bourdeauxwrote on 30.12.2008:[9.0] "Er besaß alle Vorzüge, die ein absoluter Top-Star auch nur besitzen kann. Im Ring, am Mic, die Mimik. Und doch finde ich, er hätte mehr erreichen müssen und vor allem sein Leben nicht wegschmeißen sollen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Tomkowrote on 02.12.2008:[10.0] "Eigentlich eine Schande, dass ein so genialer Wrestler nie einen der beiden großen Titel halten durfte !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: test85wrote on 16.11.2008:[10.0] "Einer der Besten Wrestler aller Zeiten. Stand leider wie soviele andere im Schatten des wohl überbewertetsten Wrestler aller Zeiten:Hulk Hogan. Schade dass er nie den "Big One" gewinnen konnte. Geniale Matches(Bret Hart, HBK), super Promos und Charisma. Als ich ihn dann beim Royal Rumble 2002 sah, konnte ich meinen Augen nicht glauben. Natürlich hoffte ich, dass er es vielleicht diesmal schaffen konnte. Doch es kam alles anders. Auch als er bei TNA es noch einmal wissen wollte, hatte ich noch immer die Hoffnung. Doch leider kam alles anders. Er wird immer einer meiner All-Time-Faves bleiben. RIP, Curt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Hypocrisywrote on 01.10.2008:[9.0] "Warum keine 10 Punkte? Weil trotz seiner zweifelsohne perfekten Technik und der überragenden Arroganz scheinbar irgendetwas gefehlt hat, um ihn in den Main Events zu sehen. Ist aber nur ein kleiner Schatten auf der perfekten Karriere des Curt Hennig. Leider musste er viel zu früh von uns gehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: N3m35i54wrote on 26.09.2008:[10.0] "That's not good. That's perfect :D ach den typen konnte man hassen und lieben ^^ technisch und charismatisch ganz oben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Wise Warriorwrote on 11.09.2008:[9.0] "Fand seine Ankündigung des Finishers "And now, you gonna see a Perfect Plex! " total geil. Als Wrestler, Manager und Showman top! Seine WCW-Zeit fand ich dann nicht so prickelnd: schien vor seinem Tod aber wieder einen guten Run zu bekommen - schade..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: mugel 187wrote on 28.08.2008:[9.0] "Einer der besten seiner Zeit. Er und Bret haben die Matches ihrer (Wrestling) Generation abgeliefert."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: loewnboy4wrote on 04.08.2008:[10.0] "Mr. P war der erste Wrestler, den ich gesehen habe. Er hat mich für diesen Sport begeistert. Ein großer Techniker, exzellenter Entertainer. Hat immer eine super Show abgeliefert. Der -für mich- größte Intercontinental-Champion aller Zeiten! RIP, Curt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Exist 2 Inspirewrote on 27.07.2008:[9.0] "Toller Wrestler und leider viel zu früh verstorben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: LordTrailerwrote on 11.07.2008:[9.0] "Ich verkneife mir ein perfektes Wortspiel, aber war schon nahe dran. Sehr charismatisch und ein guter Wrestler. Seine Athletik hat ihm Aktionen erlaubt, die spektakulär und schmerzhaft für den Gegner aussahen. Am Mic war er zeitweise in einer anderen Liga. Nicht umsonst hat man ihn als Kommentator eingesetzt. World Title holte er nicht wegen mangelndem Talent oder Willen. Er war halt nicht am richtigen Ort oder verletzte sich häufiger. Schade."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: taxbaxwrote on 05.07.2008:[10.0] "Unglaublich gutes Gimmick. Unglaublich gute Verkörperung dieses Gimmicks. Unglaublich gutes Micwork. Unglaublich gute Technik. Perfect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ecw foreverwrote on 17.06.2008:[9.0] "Ein genialer Worker, sowohl technisch als auch Entertaimentmässig."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ulrich1506wrote on 26.05.2008:[8.0] "es ist und bleibt immer schwierig im Jahr 2008 jemanden zu beurteilen, der Anfang der 90er zu den besten gehörte... er war zum damaligen Zeitpunkt ein absoluter Topwrestler, sicher mit das beste, was die WWF seinerzeit zu bieten hatte - aber leider ein paar Jahre zu früh am Start, denn damals dachten die WWF-Oberen noch, man brauche Techniker für den IC-Title und Powerhouses als Worldchamp... und somit war Mr. Perfect eben leider kein World-Championchip-Material - und er wäre soooo "perfect" gewesen..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Frutzwrote on 25.05.2008:[10.0] "Viel braucht man nicht zu sagen, einer der besten Wrestler, die einen Ring je betreten haben und ein wunderbares Talent zu unterhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Berchwrote on 19.05.2008:[10.0] "Mr. Perfect war für mich schlichtweg das Beste, was die WWE/F in den frühen 90ern zu bieten hatte. Technisch ein Genuss, ein enorm gutes Micwork, das Gimmick ideal abgestimmt. Bei ihm stimmte einfach alles, auch wenn es nie zum ganz großen Titel gereicht hat. Leider wurde er in der WCW und danach auch in der WWE nicht richtig eingesetzt und konnte daher dort nie an seine grandiose Zeit anknüpfen. Doch auch das kann man sicherlich einem Wrestler verzeihen, der ansonsten "absolutely perfect" war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Baldrickwrote on 29.04.2008:[9.0] "Fantastischer Heel und begnadeter Techniker. Bis heute habe ich keinen besseren Dropkick von einem Nicht-Cruiserweight gesehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Ric Flair88wrote on 28.04.2008:[10.0] "Ohne Zweifel war er auf seinem Karrierehöhepunkt einer der talentiertesten Wrestler der Welt. Allein seine Matches gegen Bret Hart sind Grund genug ihm die 1 zu geben. Wäre Hogan nicht gewesen hätte sich dieser Mann auch den World Title geholt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: X-Raywrote on 19.04.2008:[10.0] "Absolutely Perfect in allerlei Hinsicht, was die Skills, die ein Wrestler mitbringen sollte, anbelangt. Leider viel zu früh gestorben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Ruppiwrote on 27.03.2008:[10.0] "Würde ihm normalerweise eine Note abziehen, weil er nie einen World-Title in einer der ganz großen Ligen gehalten hat. Kann ihm aber dennoch keine schlechtere Note als 1 geben. Es war einfach immer ein Genuss, ihm im Ring zuzusehen. Viel zu frühes Karriereende und viel, viel zu früh verstorben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: BigVanVaderwrote on 19.03.2008:[10.0] "Hat leider nie den Sprung in höhere Regionen geschafft dabei hätte er es auf jeden Fall verdient gehabt. In den frühen 90ern genial, zum Ende seiner Karriere nur noch ein Schatten seiner selbst auch wenn die West Texas Redneck Zeit sehr amüsant war, trotzdem 10 Punkte denn "He was, what he said he was and that was : "Absolutely Perfect"!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: jimpanse1980wrote on 17.03.2008:[8.0] "Sehr gut in allen Bereichen, aber nicht überragend wie ich finde. Zeigte konstant gute Matches, aber kein denkwürdiges Match. Aufgrund seiner Verletzungsanfälligkeit blieb ihm der große Titel leider verwehrt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Instant Classicwrote on 14.03.2008:[10.0] "Einer der besten Techniker aller Zeiten, unglaublich gut am Mic, wahnsinnige Ausstrahlung, simply perfect!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: lagunswrote on 13.03.2008:[10.0] "Im Ring einer der besten und in seiner Gewichtsklasse auch der schnellsten. Seine Kämpfe zb. gegen Bret Hart waren perfektes Mattenwrestling mit fantastischen Würfen, Locks und Konter-manövern. Hat auch die Moves der Gegner immer grandios verkauft. (bes. Whips in die Ecke, you know! ) Dazu hat er den "Mr. Perfect" sowas von überzeugend gespielt, das man fast sagen muss, das er Perfekt war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Fumaryuwrote on 07.02.2008:[8.0] "Gute Ausstrahlung und spielte seine Rolle ziemlich gut als Mr. Perfect. Technisch fand ich ihn in Ordnung, aber jetzt nicht umbedingt überragend."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: devilsoldierwrote on 07.01.2008:[10.0] "Einer der besten. Als Flairs technischer Berater einfach super. Danach auch immer hohes Niveau. Sein Match mit Bret Hart KoR 93 einfach göttlich. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Brahma Bullwrote on 04.01.2008:[10.0] "Wenn ich mir heute Matches mit Curt Henning ansehe muss ich oft mals noch mit der Zunge schnalzen. Henning war ein begnadeter Techniker und ein ebenso guter Entertainer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Pulpulwrote on 13.12.2007:[8.0] "Hennig war charismatisch und im Ring überzeugend. Dennoch stand er nie an der Spitze einer Liga, was ihm einfach im Vergleich zu anderen Legenden fehlt, um die volle Punktzahl zu erhalten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: TheAdaawrote on 19.11.2007:[10.0] "Curt Hennig, Mr. Perfect. Seine In Ring Skills perfekt, seine Mic Fähigkeiten perfekt, sein Charisma perfekt und seine Eingangsmusik perfekt. Er war wahrlich ein komplettes Paket. Er war ein grandioser Wrestler der es nie ganz nach oben geschafft hatte, es aber verdient gehabt hätte. Auf keinen anderen Wrestler traf die Aussage mehr zu: Curt Hennig war perfekt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: HBK-Xwrote on 25.10.2007:[10.0] "Ich fand Mr. Perfect immer super. Ein hervorragender Techniker. Ich liebte die Matches gegen Bret Hart! Hätte einen World Title verdient gehabt! Und er hatte ne coole Einzugsmusik! RIP Curt, We miss you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: FloriGPunktwrote on 24.10.2007:[10.0] "Mein absoluter Lieblings-Wrestler! Mir fällt wirklich kein Match ein, in welchem Curt mich je enttäuscht hätte. Am Mike ne Wucht, im Ring einfach nur perfekt und sein Auftreten einsame Spitze. Man, wie hätte ich ihm einen wirklich großen Sieg gegönnt (z. B. beim King of the Ring '93 gegen Bret Hart), doch leider durfte/konnte/sollte er diesen nie so wirklich erreichen. Für mich auch der beste/unterhaltsamste US-Heavyweight-Champ der WCW! PERFECT! R. I. P. Curt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Bullit69wrote on 30.09.2007:[8.0] "Er war halt Mr. Perfect! Diese Perfect-Clips nenn ich sie jetzt mal, waren auch sehr gelungen! Erinnert mich irgendwie an Kurt Angle mit langen blonden Haaren!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Wolfpacwrote on 23.09.2007:[10.0] "Eine Wrestling-Legende die zu früh von uns ging. Er war im Ring Super, am Mic eine Bombe mit sehr viel Charisma und er hätte den World Titel in der WWF und WCW verdient. Leider blieb dieser ihm verwehrt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Absolutely Perfectwrote on 18.09.2007:[10.0] "Curt "Mr. Perfect" Hennig war und ist mein absoluter Lieblingswrestler. Er war ein begnadeter Techniker, der nicht nur den schönsten Dropkick der Wrestlinggeschichte draufhatte sondern mit dem Perfect Plex auch den schönsten Finisher aller Zeiten. Warum er nie den grossen Titel bekam ist mir ein Rätsel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Obermackerwrote on 09.08.2007:[10.0] "Ein Verkäufer vor dem Herrn und einer der besten Intercontinental Champions aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: D3adm4nwrote on 06.08.2007:[10.0] "Mr. Perfect. Ein wirklicher erstklassiger Wrestler, hat es aber leider nie zu einem World Title gebracht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: H-Scorpiowrote on 01.08.2007:[10.0] "War ein toller Wrestler und ein guter Heel. Wenn man ihn als Face einsetzen wollte, musste man das mMn nach schon sehr geschickt einfädeln. Die Story um ihn und Flair und Heenan in der WWF war gut gemacht, auch ordentlich seine Fehde mit Lex Luger. Sehr viele gute Matches gezeigt, u. a. gegen Bret Hart und seine Bumps waren ähnlich wie bei Flair immer sehenswert. Später in der WCW leider nur noch in den ersten Monaten einigermaßen gut eingesetzt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: shannonmoorewrote on 28.07.2007:[6.0] "Ein sehr guter Wrestler ja aber konnte mich nie überzeugen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Trevedaswrote on 23.07.2007:[10.0] "Absolut Top in allen Bereichen. Leider viel zu früh verstorben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Steven McWheelerwrote on 27.06.2007:[8.0] "Super Wrestler und auch klasse Worker! Einer der brilliantesten Techniker überhaupt, jedoch fehlte ihm in meinen Augen immer das gewisse etwas..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: LexLuger4everwrote on 24.06.2007:[8.0] "Mr. Perfect war so ziemlich der beste, unter denen, die nie den World Title holten. Er hatte eine tolle Ausstrahlung und war im Ring nahezu perfekt! Leider war er wohl immer zur falschen Zeit am falschen Ort, denn ein paar World Titles hätte er echt verdient gehabt!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Mr Lovewrote on 24.06.2007:[8.0] "Mr. Perfect verkaufte seine Matches immer gut, er war ein toller Wrestler und ein sehr guter Technicker. Er spielte seine Rolle immer gut, war auch bei den Fans ziemlich beliebt und am Mic war er auch gut. Nur schade das man ihn nie wirklich zeigen lassen hat was er kann, die hätten ihn öfters einen Titel gewinnen lassen sollen und den auch über längere Zeit zu verteidigen. Mr. Perfect ist einfach zu früh von uns gegangen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Sicherlich einer der Besten ... Klasse Matches ... Einfach Perfect !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Yetiwrote on 24.06.2007:[10.0] "Ich denke, es ist nur verständlich, dass er so wenige Titel gewonnen hat. Es wäre nicht von Vorteil gewesen, ihn zum Champion zu pushen, wenn er sich kurz danach wieder verletzt. Ein ähnliches Schicksal wiederfährt Mark Henry, der recht oft sehr lange Zeit verletzt war. Wohin solche Sachen führen können, zeigen die Geschehnisse um den Titelverlust des Takers und Kennedy's Unglück in Bezug auf den MITB-Kofferverlust an Edge. Dennoch: ..... ab-so-lute-ly PERFECT!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Deadman81wrote on 24.06.2007:[10.0] "Unglaubliches Charisma und ein "perfekter" Techniker ! War für mich der beste Intercontinental Champion überhaupt. Leider viel zu jung verstorben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Smi-48wrote on 24.06.2007:[10.0] "War eine Bereicherung für jede Card, charismatisch wie sportlich ein ganz Großer, zu Recht Hall Of Famer 2007 in der WWE. War leider 5 Jahre zu früh auf seinem Zenit, als Big Men in der WWF noch Vorfahrt hatten. Einer der größten Techniker aller Zeiten. Nie entlohnt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: timbo7111wrote on 24.06.2007:[10.0] "Super Wrestler. Besonders seine Matches mit Bret Hart werde ich in sehr guter Erinnerung behalten. Von mir bekommt er eine "perfekte" 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Garvinwrote on 24.06.2007:[10.0] "Meines Erachtens der beste Wrestler seiner Zeit. Was wäre aus ihm gerworden, wenn er nicht von schlechtem Booking und Verletzungen geplagt gewesen wäre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: MarcHardwaywrote on 24.06.2007:[10.0] "ich sag nur, He was abzulutly Perfect! Rest in Peace, Curt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Dangerouswrote on 24.06.2007:[10.0] "Das allererste WWF-Match, das ich gesehen habe, war Mr. Perfect gegen einen Jobber. Schon von daher 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: affenmannwrote on 24.06.2007:[8.0] "Keiner konnte die Aktionen des Gegners so gut verkaufen wie er. Auch sonst natürlich ein klasse Wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ABoyenswrote on 24.06.2007:[10.0] "Wahrhaftig "Mr. Perfect"! Einer der Besten im Ring und außerhalb. Leider ist ihm das ganz große Gold immer verwehrt worden. Auch er ging viel zu früh."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Hirnklopswrote on 24.06.2007:[10.0] "Ich habe gefühlte 1000000 Matches mit ihm gesehen, und es war nicht ein Schlechtes dabei. Ich glaub, er war der Beste. Der Pele der Pro Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: mdbnasewrote on 24.06.2007:[10.0] "Hatte Top-Skills, Ausstrahlung und Charisma! Geniale Moves, und war blitzschell - Eben Mr. Perfect! ... aber leider mal wieder die Drogen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Sandman16wrote on 24.06.2007:[10.0] "Bei ihm ist der Name Programm. Ein großartiger Techniker mit starkem Micwork und unglaublich viel Charisma. Ohne Zweifel einer der besten Wrestler aller Zeiten. Absolutly Perfect!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Anti-Championwrote on 24.06.2007:[10.0] "Vermutlich der Beste Wrestler in der WWE der nie den Heavyweight Titel gewinnen konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: jerseyhoolwrote on 24.06.2007:[10.0] "Super Techniker, schmerzlicher Verlust für Buisness. Und unverzeihlich, wie die WWF ihn unten gehalten hat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Cybermikewrote on 24.06.2007:[10.0] "Wie Bret Hart schon sagte Der Tod von ihm war für ihn so Hart wie der seines Bruders, das zu Recht, Mr. Perfect war Perfect daran gibts nix zu Rütteln deshalb die 10. 0!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Giant2wrote on 24.06.2007:[10.0] "Hennig konnte wirklich alles: gute Ringskills, gutes Micwork, enormes Charisma... absolutely perfect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: wrestlingswiftiewrote on 29.01.2025:[10.0] "Sure, he was a dumbass in the ring, but that's what made his matches so great! Before there was Jeff Hardy, and before there was the BETTER version of Jeff Hardy; Darby Allin, there was Mick Foley. But you wanna know one thing he did better than both of them? Promos. His promos were brilliant, and he had such a far range of emotions he could make you feel. If he wanted to make you laugh? Just look at Dude Love or the Rock 'N Sock Connection for example. If he wanted to make you root for him as an underdog? Look at Mankind. If he wanted to be a brilliant heel? Watch his entire run in ECW. If he wanted to scare the shit out of you? Specifically watch Cane Dewey."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MrRaider959wrote on 27.01.2025:[10.0] "One of the most recognizable wrestling legends in the business. He is a pioneer of bringing deathmatches to America & was willing to destroy his body to elevate his opponents. Many moments like his matches in 2000 against Triple H, Hell in the Cell against Undertaker, and Backlash vs Orton are must see matches for him. God bless Mick."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: dhruboezitwrote on 17.01.2025:[10.0] "No words needed. The most recognizable and greatest hardcore wrestler in WWE history. Many great matches, with the Undertaker, Triple H, Rock, Randy Orton etc. An all-time legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MEDaminewrote on 07.01.2025:[10.0] "What a legend, one of the GOATS fr, he was really good in the ring, but that's not his strong point, he was really over with the fans thanks to him iconic character work, whether as Cactus Jack, Mankind or Dude Love, arguably the greatest character worker in wrestling history, I wish I was old enough to watch his stuff live"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Lloyhd4171wrote on 06.12.2024:"Mick Foley is a true anomaly in the world of professional wrestling, a performer whose legacy is built on an unmatched combination of character, heart, and sheer resilience. As a wrestler, Foley may not have been the most technically polished in the ring, but that was never the point. His appeal came from his ability to tell stories through physicality, often at the expense of his own well-being. From his brutal wars as Cactus Jack to the deranged depths of Mankind and the sheer absurdity of Dude Love, Foleys ability to reinvent himself and keep audiences engaged was nothing short of remarkable. What truly elevates Mick Foley as a professional wrestler is his ability to connect with fans on a deeply personal level. His promos were masterclasses in authenticity, blending humor, vulnerability, and intensity in a way that felt completely genuine. Foleys charisma wasnt rooted in traditional wrestling tropes; it came from his relatability and humanity. Whether he was flying off Hell in a Cell or delivering heartfelt monologues, Foley embodied the soul of professional wrestlingraw, unpredictable, and emotionally resonant. Add to that his kind-hearted demeanor off-camera, and its clear that Foley wasnt just a great wrestler; he was a great person who elevated the art of wrestling itself. In every sense, Mick Foley is a legend who redefined what it means to be a pro wrestler."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ItsAllAWorkAnywaywrote on 14.11.2024:[8.0] "Was Mick Foley "God"? No, but he was pretty damn good. While he didn't have the typical image (or build) of a babyface, he had the heel mannerisms down as a lunatic and/or psychopath and wasn't afraid to engage in the rough stuff (some of his more brutal spots were something of legend.) Yet once he teamed up with The Rock to form "The Rock N Sock Connection", Foley transcended from menacing psycho to lovable scamp (and as stayed there ever since.) Now one of the most revered personalities in wrestling, Foley can hang his hat on a decorated major league run."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: AVERAGEWRESTLINGFANwrote on 02.11.2024:[10.0] "One of the goats. Whether dude love, cactus jack, mankind, mick foley or anything else he was over and when people say putting your body on the line for our entertainment I always think of mick."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Willie 19200wrote on 25.10.2024:[9.0] "The hardcore legend with a legacy that inspired many. Mick is a guy you can tell genuinely cares about the business, a man who proved that you don't have to be tall and muscular to be an amazing wrestler. I love his hardcore style and I believe that he is one of the only people to have so many characters over in comparison to some wrestlers who struggle to get one gimmick over. Overall fantastic wrestlers."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: JackBurtonsTruckwrote on 14.10.2024:[9.0] "Foley has a legitimate legacy which isnt something every good wrestler can say. One of the most interesting and complex characters of our time, who also got 4 separate characters over with the audience (some people never even get 1 over)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: jsbortswrote on 08.09.2024:[8.0] "Mick Foley seems like an awesome person, loves the business, did some of the most insane stunts and matches anyone's ever had, and was a fantastic brawler. But outside of that he's just not an incredible worker next to the all time greats, but instead someone who outperformed their ability like few others have ever been able to do."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: 12psiwrote on 27.08.2024:[9.0] "Foley is my favorite wrestler of all time, has been since the first day I hit Smackdown v. Raw on the PS2. The gimmick commitment, psychological and narrative work is all impeccable, and watching his career unfold as it did is one of the greatest joys an NBC-affiliated product has brought me since the first season of the Good Place. Nobody does it better, but that's simply because nobody does it like him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Zak22wrote on 23.08.2024:[8.0] "A great character worker who did some incredible work especially in Japan. But I do find him, well, overrated overall. Mick wasn't a great wrestler or athlete but was a smart guy. Bumped too hard as well which can be very rough to watch. His best stuff is his character work and psychology but I'm more of a moves guy."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: BizarroMaskwrote on 02.08.2024:[8.0] "I think the hardcore style make him easy for Mick folley some atheltic default. Be beside that his several character make him a true icon of wrestling , very underrated promo and a great source of fun."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: XNoWayKemoSabeXwrote on 24.07.2024:[8.0] "One of the most memorable wrestlers from my childhood. I legit thought I saw this man die when he fell off the Hell in a Cell twice. A literally crazy person but an absolute workhorse. Bang Bang! Have a Nice Day!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: muchlikedonlinewrote on 21.07.2024:"(10.0) No one has ever given as many people as much as Foley. He's made countless stars. Rock and Triple H have their best matches to thank Foley for. Technical marvel's like Shawn Michales and Bret Hart can be elevated by the dynamic he adds to a match, and young glistening stars can be shot into the stratosphere like Randy Orton. The only negative you can give Foley is the TNA run, which was clearly out of sheer bitterness towards WWE for his treatment. But it's hard to hold anything against someone who has nearly died multiple times for multiple promotions and is as caring and giving to an industry that seems to only take from those who let it."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Big R3d Mach1n3wrote on 17.06.2024:[10.0] "Whether if you get Mankind, Cactus Jack, Dude Love or regular old Mick Foley it didn't matter which version you got because he'll always give his best self in the ring for every match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Chris777wrote on 17.06.2024:[10.0] "All the bullshit he did post semi-retired can not offset what he has done at his peak. If we only talk about his hardcore matches and all those memorable moments he has created, he is a 10. If we only talk about all those legendary promos, faces or heels, he is a 10. If we only take about his versatility as a character and the able to adapt to different situations and storyliens, he is a 10. He is an icon that is truly influential with his promo style and character development in the next 30 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Chosen Onewrote on 09.06.2024:[7.0] "Niemand kann bestreiten, dass Mick Foley eine Legende ist und 7 Punkte finde ich selbst fast schon gemein, aber so ganz hat seine Popularität sich mir nicht erschlossen. Er hat viele gute Matches, besonders die nach Hardcore-Regeln, aber so wirklich Klick gemacht mit ihm hat es für mich nur für einen sehr kurzen Zeitraum. Um 1997, 1998 herum fand ich ihn sehr gut. Die Interviews, in denen er über seine Jugend gesprochen und die Lore seiner Gimmicks erklärt hat und dabei alte Home Videos gezeigt wurden, waren sehr spannend. Auch seine Rolle im Austin-McMahon-Feud hat mich gepackt, weil er genau im Gegensatz zu Austin von Vince McMahon gemocht werden wollte und sogar zu ihm aufgesehen hat, während er von Vince nur ausgenutzt wurde. Ich finde, Mick hätte noch eher als The Rock eine Schauspielkarriere einschlagen können, weil er, wenn sich die Gelegenheit bietet, sehr gut acten kann. Nur leider nach dieser Storyline hat Mick für mich den Reiz verloren. Seine Matches mit Triple H waren unterhaltsam, so wie weitere Matches, aber Promo-technisch ging es zunehmed nur noch um, wie Jerry Lawler immer sagte, den Cheap Pop sowie Gerede über "Testicular Fortitude" oder es ging darum, sein neuestes Buch zu pluggen. Der Tiefgang hat irgendwann einfach gefehlt. Um ein Fazit zu ziehen: Mick Foley ist für mich leider ein Wreslter, bei dem ich mir denke, da hätte mehr gehen können."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Pigeon Scratchwrote on 07.06.2024:[10.0] "One of the most iconic hardcore wrestlers of all time, and simply one of the best. And while he was usually at his best in a death match setting, such as in Japan at Kawasaki Dream, or at HITC with The Undertaker in 1998, he never felt restricted as a performer. He was aware of what he can and can't do, and like the man himself said, he made up for his minor shortcomings to creativity. He was one of the best and most important hardcore/deathmatch wreslters in the industry, who could easily elevate anyone he fought against. Not only was he great and creative in the ring, he was also creative outside of it. There is a reason why Mick Foley is considered one of the best promo artists of all time. Promos like Cane Dewey literally cannot be topped, and even at the end of his career, you could always count on him for a good promo no matter the circumstances. He's also one of the most creative in terms of creating a character, and building the storylines to go with that character. He was absolutely limitless in the genres of his personas, and how he depicted himself. He could be a dark, serious character surrounded by insanity and violence, such as Cactus Jack or Mankind, or go for a more lighthearted type of character, like the latter end of the Mankind gimmick, and Commissioner Mick Foley. With these gimmicks and the stories that went with them, they always challenged wrestling and social norms. Seriously, whatever he did, he always did the absolute best, and sacrificed so much of his health for the business. A one of a kind wrestler that we may never see the likes of again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Taper1994wrote on 02.06.2024:[10.0] "Possibly the best hardcore/deathmatch wrestler of all time. Foley first became a indie darling with his insane deathmatches in Japan and the US indies. Usually these guys never make it in the "big time" promotions. However the difference between Foley and the other hardcore guys is that he is also an amazing wreslter who is able to tell amazing stories in the ring, a fantastic sympathetic underdog or a psychotic dangerous heel depending on what you needed him to be. That's why Foley was the hardcore guy who could get over in both WCW and WWF, while the rest wre mostly enhancment talent. Then during the highly competitive period between WWF and WCW where every TV segment looked at to see how well it did, Foley rose to the top of WWF in 1999 as one of the biggers draws in a period where wrestling was at it's most mainstream. Unfortunately, the years of deathmatches took it's toll on Foley and he was forced into semi-retirement just a little over a year after reaching the top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ismarizviwrote on 22.05.2024:[10.0] "A man who nearly kill himself several times just to entertain us.Mr foley baby boy really is a goat.From his promo to his character work and matches.Yeah he is not mat technician.But its always about entertain people and earn money"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ultravioletshiroiwrote on 17.04.2024:[10.0] "Great matches, a hardcore legend. Had some of the best and most memorable promos of all time. Gave his life to the sport of professional wrestling. Solid brawler. He has natural charisma and he's so different you can't compare him to anyone else."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: BruceMarcos524wrote on 07.04.2024:[8.0] "Wrestlers who thrive in hardcore, deathmatches or garbage wrestling is an automatic negative to me. People like Nick Gage, Atsushi Onita, John Zandig and Necro Butcher, crazy I know them, knows nothing in the technical aspect of wrestling. Even older guys like Terry Funk, The Sheik and Abdullah the Butcher. I just simply hate this kind of wrestling or whatever you called it. However, Mick Foley is an exemption on this. He uses this kind of environment as a gimmick and not as a kind of wrestling style that he holds on for the rest of his career. He could be technically sounding and flashy and that's how he is different from most of hardcore/ECW/CZW wrestlers. In ring, he is a storyteller, he wouldn't perform moves that is out of the story. One thing I admire him the most is his passionate mic skills. He sounded convincing and makes us believe on what he says. Many people tried to copy his style in terms of in-ring and promo abilities, but Mick outshines them all. His willingness to take excruciating damage on his body and almost try to risk his life for the sake of value and memory. One thing I remember vividly about him is his match with the Undertaker in Hell in a Cell, still the most talked about match 25-26 years passed. No doubt Mick provides us moments that he is even willing to take risky bumps that most of his peers couldn't do. His durability, his toughness and his passion are a testament on how great Mick Foley was on his heyday. His three faces of Foley (Cactus Jack, Dude Love and Mankind) gave equal amount of exposure in the wrestling business and only Mick could provide three alter egos that haven't been stale and worn out after all these years. Truly a legend in the business and one of the most respected performers in wrestling history."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: nosajdabeno37wrote on 14.01.2024:"Bang! Bang! And all the other catchphrases Mick has used. Because THAT IS FINAL! Can I rate yet, pretty please with a cherry on top?"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: K too Ywrote on 11.01.2024:[10.0] "Mick Foley was one of the best talkers of all time. He really made you feel what he was saying and was arguably the king of garnering sympathy from the fans. He valued wrestling over his own body and the amount of crazy shit he did is insane. Easily one of the best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: thedman0310wrote on 31.12.2023:[10.0] "My personal favorite wrestler ever. Although he didn't invent hardcore wrestling, he damn sure perfected it. Amazing wrestling, amazing promos, and amazing psychology. I met Mick when I was young, and took time out of his day to talk to a ten-year-old kid for fifteen minutes. FOLEY IS GOOD!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: kewf1988wrote on 24.12.2023:[10.0] "Mick Foley was a hardcore wrestler, but unlike most hardcore brawlers, he actually told a story with his matches rather than just hitting his opponents with weapons without any story whatsoever, like New Jack. This made for many MOTY candidates, as he knew how to work with using barbed wire and thumbtacks in big matches, and also could cut a really good promo and was extremely charismatic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: greaterdalewrote on 11.12.2023:[10.0] "There's a reason people say Foley is God. He's one of the legit toughest sons of bitches to ever work and was absolutely hardcore. People who only watch WWE have no fucking idea how incredibly violent some of his matches were, but like he really could do it all! Want a dastardly heel? Foley can do that. Want a loveable baby face? Foley can do that. Want hardcore wrestling? Comedy? great workrate? Oh yes Foley can do that. Want a enthralling promo? Well you get the point."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Bar786788wrote on 29.11.2023:[10.0] "Miss Foleys baby boy is the most unlikely of success stories - and underneath all those scars that make up that tough exterior is a truly beautiful mind and person who deserves the respect of every wrestling fan and everyone to come after him in the business. Its because of him that WWE would be able to defeat WCW in the Monday Night Wars, it is because of him that the Hell in a Cell match exists and is as iconic as it is, and it is because of him that we know professional wrestling even when pushing the limits to the extreme has a heart and a soul. For what he lacked in technical skills he made up for with ingenuity and charisma. The 3 Faces showed his range as a performer and he even had some of the most memorable matches of the later 2000s with the newer generation of Randy Orton and Edge, showing just how selfless he is as he continued to put his body in parallel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: JediSaiyanMaster1203wrote on 17.11.2023:[10.0] "No matter the gimmick, Mick Foley has always knocked it out of the park. Cactus Jack was a fun hardcore style wrestler, his best work was as a heel in ECW where Mick Foley was cutting his best promos and generating the most heat for being the opposite of what ECW stood for, his feud with Triple H is close second for Cactus' best work. Mankind was Mick's darkest character that gave us his most iconic and memorable moments from winning the WWF Championship to being thrown off the Hell in a Cell structure, you name it. Dude Love is his weakest gimmick, but it was still a funny character full of charisma, his feud with Steve Austin was great. Mick Foley is a true legend in the business, deserves all the respect and admiration in the world, one of the best promo artists of all time and was willing to sacrifice his body for our entertainment no matter how unnecessary it was. Lastly, he also has the reputation of being one of the nicest people in the business, a very likable guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MattHallwrote on 28.10.2023:[10.0] "Mick Foley is one of those guys that you can't simply hate. Foley is a hardcore legend, not only a hardcore legend but a WWE legend as well, one of the most iconic faces of the Attitude Era and Ruthless Aggression Era. Dude risked his safety for us fans to be entertained, and made special moments like falling off the Hell In Cell cage or taking a pedigree on thumbtacks. Foley is also a capable worker in the ring and his mic skills were good as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Gold Fistswrote on 25.07.2023:[9.0] "Have a nice day, Mr. Foley! Because after all the dedication he's left in the ring (or at ringside), he deserves it. Mankind, Cactus Jack, Dude Love, whatever you may call him, is the most famous hardcore/brawler wrestler in history. I sometimes question the bumps he's taken, along with his sanity to have taken them for our entertainment; or in some cases, our terror. The three faces of Foley was a very interesting-if you even count it as a single one-gimmick, and his WWE Championship win as Mankind list amongst the most iconic moments in wrestling history. Mick Foley pained himself all the way to legendary status, and it's a miracle that he's still alive."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: KKeanelwrote on 16.07.2023:[9.0] "I never was so in regarding his career and contributions to this business, but we have to admit one VERY important thing - none of wrestlers on this planet took as much incredibly dangerous bumps as Mick Foley. Hands down for him that he was doing this to entertain us. God bless he is relatively fine."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: devourblastwrote on 03.07.2023:[10.0] "A truly unique performer who was capable of reaching every nook and cranny of what professional wrestling encapsulates. It takes a monumental talent to portray the 3 Faces of Foley and have each one be not only fondly remembered but truly iconic. The amount of highlights in Mick Foley's career is frankly astounding. From Cane Dewey to HBK vs Mankind to 3 Faces at the 98 Rumble to Mankind vs Undertaker to Cactus Jack v Triple H, Mick knew how to truly give us his everything no matter how much damage he would take in the process. The fact that he seems to be one of the kindest people in real life cements his status to me as a true hero of the industry."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: texasyoshwrote on 18.06.2023:[10.0] "Foley was a guy that made you believe, point and simple. Excellent work in numerous companies, from ECW, WCW, WWF and in places like IWA-Japan. This also is to mention pretty good runs in places like TNA too. Foley may be the perfect everyman babyface, or another great example of a crazed heel. His promos would make you buy in, and his work in the ring would usually be pretty great. A guy that took the bumps that he did would instantly become memorable, but Foley transcended that standard to becoming a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Giantfan1980wrote on 07.06.2023:[7.0] "I don't think anybody comes close to being on the same stunt man level as Mick Foley. Good on the mic, good in the ring even when it's not hardcore related."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: homunculuswrote on 17.05.2023:[10.0] "Arguably the greatest hardcode wrestler of all time. On top of that, oozes charisma and is able to elicit a great crowd reaction from being the perfect underdog babyface. I love Mick Foley so much."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MilkDDTeawrote on 18.02.2023:[10.0] "Nobody ever has or will wrestle the way that Foley did. Watching him perform is like watching a car crash in a film. It's stupendous, and jaw-dropping. Many claim to put their blood, sweat, and tears into their work, but with Foley, you could see him do that before your very eyes. Foley exhibited an unmatched amount of dedication for his passion. He deserves all the respect in the world for the sacrifices he endured in the process of entertaining us."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Strong Zero Machinewrote on 15.02.2023:[10.0] "Creativity and charisma 10 he's funny, crazy and a really good guy. He put his body and his soul on the line for the love of pro wrestling. Deserve so much love dude!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Burning Back Fistwrote on 30.01.2023:[10.0] "One of the most versatile and adaptable characters of all time. To me he is the reason WWF toppled WCW after his historic WWF title win. No matter the promotion or character he was in Foley gave it his all, even in his late TNA run. Truly one of the most genuine kind hearted wrestlers in the history of the sport. Which no, does not equate to anything in his rating....but he already is a perfect promo from his ECW days, his interviews as Mankind with JR, his promos with Edge and Orton far later on his career? His matches with Sting and Vader in WCW, Terry Funk in Japan, Triple H and The Rock in the WWF and as already stated Edge and Orton in the WWE? When has Mick ever been a bad match or promo during the entirety of his career? Never. So on top of a great career in ring and being one of the most genuine dudes out of the ring? 11/10 for me. Arguably put his body through more then anyone else for the success of the business and others around him rather then himself"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: CommisarRobewrote on 29.01.2023:[10.0] "A hardcore legend, great on the mic and always a great character. Foley has been involved in some of the biggest matches in the industries history. Would also seem to appear that he is a great person outside of the ring that is always important."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheNorthEastwrote on 27.01.2023:[10.0] "One of the greatest storytellers in the history of pro wrestling. The way he we able to captivate the masses through both his matches and promos was remarkable. It shoudl also be noted that his success also came during a time when the unconventional looking wrestler was rarely given a push outside being a build up to job to the white meat babyface. What is still underrated about Foley was his run in IMPACT Wrestling where with new creative freedom he took his promos both serious and comedic to a new level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Abo96wrote on 21.01.2023:[10.0] "Ein absolutes Phänomen. Seine mangelnde Athletik machte er mit unheimlicher Leidenschaft für das Wrestling wett. Nur er konnte drei Gimmicks quasi zur selben Zeit verkörpern und zwar so, dass alle gleichermaßen over bei den Fans waren. Promos und Charakterwork unglaublich stark. Bekomme bei seinen Promos heute noch regelmäßig Gänsehaut. Hat seinen Körper quasi für das Wrestling geopfert, wenn man sieht was er seinem Körper alles zugemutet hat, ist es kein Wunder, dass er keine allzu lange Karriere hatte. Aus dieser hat er aber das meiste rausgeholt. Allein der Fakt, dass er mit seinem Look in der damaligen WWF mehrfacher World Champion wurde, zeigt welch ein außergewöhnliches Talent dieser Mann hatte. Trotz seiner vielen Hardcorematches hat bei ihm nahezu immer alles Sinn gemacht und vieles ist nicht mit den heutigen sinnlosen, überdrehten Materialschlachten vergleichbar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: benh2wrote on 13.01.2023:[9.0] "Few people are more beloved than Mick Foley. Obviously had no star quality but he succeeded despite that which doesn't happen very often. A weird charisma and excellent promo, you'd always listen and get on board with what he said. In the ring his psychology was tremendous and that was often overlooked because of his insane bumping. Personally I think his best in-ring work was in WCW and best promo work was in ECW but he constantly managed to stay relevant after the injuries caught up to him. A unique talent in the business."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: UltraNano54wrote on 03.01.2023:[7.0] "He is good and a legend but for me, he needed gimmicks to be interesting. I cannot think of a single match of his that I liked that didn't feature extreme rules and weapons so for that, I cannot rate him too highly."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: mano007wrote on 31.12.2022:"Man has a lot of charisma and a hardcore legend of the business. But people view him in rose tinted lens imo."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: markoutssjwrote on 28.12.2022:[9.0] "I loved Cactus Jack, Dude Love, Mankind, and Mick Foley. He was truly one of the best of his time, helped make a bunch of stars while also becoming one of the most loved and respected wrestlers in the business. I think what takes him away from being a 10 is the matches tried having at the end of his career when he was broken down and was just really bad to see. Even then the man is one of the most kind and genuine people in the business today and I think anyone would die to have the career he did, his body is paying for it but he will be respected and loved forever."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HBaumerSmithwrote on 11.12.2022:"10.0 the G.O.A.T, the Ali of Wrestling, the Gretzky of the ring. This man. Mick Foley, you are the greatest. Only Mox comes close to you. You gave your literal lifeblood for the love of this sport, and you're #1 in my book."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: khalekwrote on 07.12.2022:[6.0] "I think he is overrated. He has definitely charisma and mic skills, but ring skills are too average for main eventer."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MainEventMasterwrote on 02.12.2022:[8.0] "Mick Foley was good hardcore wrestler, he was good wrestler, he was a FANTASTIC promo, and is one of the most beloved souls in the history of wrestling."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: darbyrangerplatewrote on 14.11.2022:[10.0] "FOLEY IS GOD. There is so much to write about Foley. However, after all that has been written, the only conclusion we will reach will be what I have just written. Still, I want to scribble a thing or two. Despite being such a kingmaker and losing big matches, he is not known as a loser today, but made a big splash to be referred to as WCW Killer, King of the Deathmatch, Hardcore Legend and even God. Even when you look at it as a match, you will see that there is no name it can't beat. This is something surprising. Something that surprised even me as a huge fan. Thanks to the anomaly in his body and his extraordinary constitution, he saw these days. Sometimes I think that losing consciousness in matches (as a work) causes very absurd results because his moments of unconsciousness are quite rare, one of which is his famous match with the Undertaker. It's actually more of a compliment than a negative side. He's the one who provides it. Because he's such a strong son of a gun! May God grant him a long, healthy life and have a great time with his family. I'm sure Dewey, Noelle, Mickey and their other children have a lot of tactics to see and teach their grandchildren. And, I hope 80% of what he says in the latest news isn't. Her sitting in a wheelchair will devastate me and her fans."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Conquistador37wrote on 09.11.2022:[10.0] "One of wrestling's best stories (probably *THE* best). One of wrestling's best personalities. His contributions to wrestling history are collectively gargantuan in their scope. Gave of himself - more than any other, unquestionably. Put him on your Mount Rushmore."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: GM56 Championwrote on 23.09.2022:[10.0] "Magnificent on the mic, magnificent in hardcore matches and magnificent as a character. Has had many legendary bouts with the likes of Orton (which personally is my favourite one of all time), Undertaker, Triple H, Edge etc. Not a technical wrestler, but a hardcore wrestler who has sacrified his own body for our joy and for putting over wrestlers who are very well known and respected throughout the wrestling community and in the WWE itself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheOneAndOnlyCactuswrote on 22.09.2022:[10.0] "While his reputation as a hardcore stuntman is what people remember him for the most, I think he was also a man with a brilliant mind for the business, and that's what I like the most about him. I'm surprised he didn't become a movie actor after wrestling, as he is so gifted, so captivating. Plus he could go in the ring, he was more than just a stretch-o-holic. One of my all-time favorites."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: GwenCube64wrote on 06.09.2022:[9.0] "a nostalgic wrestler for me. an incredible hardcore talent, character trailblazer and icon of the 1990's wrestling landscape."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: crs285wrote on 05.09.2022:[10.0] "One of the nicest and most dedicated guys in the history of professional wrestling. Great in the ring and on the mic. Risked his body every night for the fans. Brought hardcore wrestling to new heights"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: danzgalliwagwrote on 08.08.2022:[10.0] "Say what you will about his in-ring work, which is unique and memorable in a violent, can't-look-away kinda way. Say what you will about his ability to cut a promo, which is off the fucking chain. But if there's one thing about Mick Foley that separates him from other wrestlers, it's how much he elevated young stars to a level of greatness that they didn't reach until they went toe-to-toe with him. Undertaker hadn't had a legit rival in years until Mankind stepped up in the mid-90s; Triple H wasn't taken seriously until his blood-feud with Foley; Randy Orton was just some cocky upstart until his hardcore match with Foley; Edge would've never been viewed as the icon that he is if not for THAT flaming table spot. Sure, a lot of this is speculation, but it can't be ignored the affect that Foley had on these guys' trajectory after being in the ring with him. Foley is one of the most selfless men in wrestling history, and he should be thought of as one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: cMa7oswrote on 20.07.2022:"Although hardcore wrestling is not my favorite type of wrestling, I still love Mick Foley and his characters, who are likeable, mainly due to their humane side. Even if his style of wrestling isn't too pleasing to the eye, he can tell a story like no other. Very charismatic and entertaining. 9/10."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: zachattack2023wrote on 11.07.2022:[10.0] "I think that mick foley is probally the greatest hardcore wrestler their have ever been he is also one wrestler that has had runs in wwe, wcw, ecw, japan, and tna he is just a fantastic wrestler and one who truly love what he does."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Aliquickkwrote on 19.06.2022:"One of the best hard-core wrestlers of all time, and was pivotal in putting wrestlers like Triple H over in amazing matches along the way. His brawling was believable, authentic, and grimson. He wasn't the best talent to grace the ring but he maximized his talent and whoever he was in the ring with along the way. He is worth of an 8-9 rating, leaning towards 9."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: PunkPariahwrote on 11.06.2022:[10.0] "If you don't like Mick Foley then I don't trust you as a person. Rule of thumb. Dude is so nice, charismatic, and gave his everything to the business. What a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Residentwrote on 08.03.2022:[10.0] "One of the best brawlers of all-time. Few can take as much punishment as Foley, the IWA Japan King of the Deathmatches from back in 1995. He also has a ton of charisma and is awesome on the mic. I enjoyed his matches in ECW and WCW and in WWE as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: PavelDragunovwrote on 12.02.2022:[10.0] "Hardcore icon! How many insanely cool moments I remember with Mick, it's impossible to count even with me. A huge number of memorable stories and confrontations, he could look interesting both in the role of a villain and in the role of a good man. Mick has enough images and each one is remembered for a lifetime. The quality of the fights was always at the highest level, Mick gave his all in the ring. His fights with Rock, Tripel H, Undertaker and many others are still in his heart. How many cool companies he visited, leaving his own unique mark in each. And how sincere Mick is on the microphone, he is really interesting when he speaks, and I really want to listen to his speeches! A unique appearance that did not interfere with his unique images and did not constrain him in the ring! Thanks to Mick Foley for His Amazing Career!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: GriffinXwrote on 09.02.2022:[10.0] "One of the biggest stars to do it and really the most unlikely guy to be as big as he was. Foley had some of the most compelling moments and matches in wrestling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: rishabhwrote on 31.01.2022:[10.0] "Probably my favorite wrestler of all time. He nailed every role he played, he could be the sadistic Mankind, the fun dancing Dude Love and he could also just be a hardcore wrestler who did crazy stuff, Cactus Jack. The amount of bumps this man took is insane and I don't know if there is someone close. And he isn't someone who can just do crazy shit he can tell a great story and whatever bump he took made sense and wasn't there just because. His promos were also very good and he will always get you invested in his work. The number of wrestlers he helped in their early career, Austin, The Rock, Edge, HHH, etc. the list goes on and on. He was a true star maker. There's no doubt that the Hardcore Legend gets a full 10. BANG BANG"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: OnlyHalfTheEffinShowwrote on 20.01.2022:[10.0] "For the sheer amount of punishment Mick has endured alone, never mind his stellar in-ring work, promo ability and comedic skills, he deserves a 10. There exists perhaps no wrestler in the history of the sport who put their health and wellbeing on the line so often and so selflessly, as it was often done in the putting-over of other stars. No man has earned the moniker of "The Hardcore Legend" as much as Mick Foley has."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: benny5bellyswrote on 12.12.2021:[9.0] "The things that man put his body through are insane. I love his run as Cactus Jack in early 90s where he always put on an incredible performance with his matches often being the highlight of big shows."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: CMX-7wrote on 04.11.2021:[10.0] "His career during the Age of Attitude and his feud with the Undertaker and the Triple H is a classic of the time, thanks to him, WWE Win WCW in the rating war! he is a very charismatic and epic wrestler) Hardcore legend in all its glory)) I miss him!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: IBladeDailywrote on 23.10.2021:[10.0] "His ability to tell layered stories with ridiculous set-ups is still something to behold. I first saw Mick in his first run in WCW in 89-90, was instantly drawn to him and terrified of him. As I was really young, I had no idea why he left or where he went but found him again on ESPN in Global where he was part of The Cartel. It wasn't much but when he returned WCW in late '91, I was very excited. His feuds with Sting and Ricky Steamboat were a lot of fun. His matches with Vader were unbelievably stiff, I had never seen anything like it before and I ended up genuinely worried for him. His ECW run, particularly his heel run, showed the world that Mick Foley was no hardcore hack. He was a master storyteller. Loved his matches against Terry Funk and Sabu. When he finally appeared in WWF, he was given some strong booking, getting the upper hand against the Undertaker many times. By the time he developed the "3 Faces of Foley" I was already a huge fan. His falls in the HIAC match with Taker have somewhat defined him amongst people younger than me but he was a vastly underrated worker and excellent wrestling personality long before that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: aggeLwrote on 02.10.2021:[10.0] "Foley is just insane. The amount of extreme moments he has made in the ring that can never be replicated is insane. His promos are also insane, and he has a very well deserved spot amongst wrestling legends. If you want to get someone hyped about wrestling, just show them Undertaker VS Mankind on king of the ring 98, or the edge vs foley match at wrestlemania! I feel like he still had so much more to offer in-ring, so it's a shame his career ended in 2010, but that's still a really really good run with some of the most iconic moments in wrestling history. One of the best wrestlers in the world hands down, gets a solid 10 and a half from me"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: eltetechoriwrote on 22.09.2021:[9.0] "A wrestler who marked an era, never better said, the Attitude Era, where his great fight against The Undertaker will be remembered forever, what a good job Mick Foley has done for the wrestling industry."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MrIslamywrote on 12.09.2021:[9.0] "He is pretty good in the ring but deserves a high rating for his dedication to his characters, no other wrestler could handle and play so many characters at the same time and pull it off but he does it."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: CoolKylewrote on 28.08.2021:[10.0] "One of the most underrated wrestlers of all time. Too many people remember him as the hard core guy, which is very well deserved but people forget about his top tier promo ability and being able to play the given character maybe better then anyone I have ever seen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: WhatTheHeckleswrote on 01.08.2021:[10.0] "Mick Foley is BY FAR one of the biggest legends of the wrestling industry, and for good reason. He was great on the mic, got over with the fans with just about every single one of his personas, and truly put everything on the line for the sake of putting on a good match. It could be argued that his ring skills weren't fantastic, but not every good wrestler needs to be a technical masterpiece with tons of moves, because wrestling as a whole is more then just moves, it's about storytelling and character work as well, and Mick Foley nailed it in that aspect. BANG BANG!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: BrayanLaPrewrote on 13.07.2021:[10.0] "A true professional wrestling icon. One of the definitive stars of The Attitude Era, as well as a driving force of professional wrestling outside of WWF during the 1990s. Not only was Mick Foley the master of the high spot, but he was a tremendous storyteller and an underrated wrestler. Foley is also one of the greatest mic-workers of all time. Countless classic matches, including bouts with The Undertaker, Shawn Michaels, Triple H, Randy Orton, Edge, and Terry Funk. A five-star wrestler who left an undeniable mark on the industry. 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: thebigmilkmanwrote on 28.06.2021:[6.0] "Foley is a really good wrestler and one of the most selfless men in wrestling. Which may have been his downfall because he could have been even bigger"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Mick was one of the very great characters in the history of the sport. His mic work was great and his charisma was fantastic. He was, uh, not the most athletic guy you'll ever see in the ring, but somehow he was able to pull out some truly spectacular matches and was more often than not one of the strongest workers in the WWE during his prime. He was truly a great storyteller in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MrJabroniCamelClutchwrote on 01.06.2021:[10.0] "One of the great wrestlers of the 90s and an icon of the WWF Attitude era , a pioneer of the hardcore ultra violent style of wrestling , had many classic matches with the likes of The Undertaker , HHH, HBK , Terry Funk and many others"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ALFwrote on 13.05.2021:[6.0] "Müsste man rein vom Charisma und Unterhaltungswert auf 8 oder 10 Punkte bewerten, ist aber meiner Meiner Meinung nach sehr eindimensional, was das Im-Ring-Können angeht. Eigentlich sind es halsbrecherische Stunts, keine direkten Wrestling-Manöver (Hell in A Cell vs. Taker). Außer Härte hat er in seinen Matches im Ring nichts, was mich begeistert. Seine rein wrestlerische Bandbreite bietet nur beinahe schon Verstümmelungsaktionen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: mjp28wrote on 24.04.2021:[2.0] "The man was a trailblazer, but not in a good way. He is the exact kind of wrestler no reasonable person should be able to suspend their disbelief to the point that he could be a world class fighter, let alone champion. To me, he was the first of long line of unconvincing and silly wrestlers which would takeover the wrestling across the subsequent years. His look just screamed 'how is he here, why is he even a chance in this match', and all his matches pretty much came down to a bunch of boring brawling, 'hardcore' spots, and putting his hand down someone's 'throat' (this has to be the single most stupid move in all of wrestling - who in their right mind believes that Foley or anyone could withstand the bite force of even an average man). Yes he does deserve credit for taking some big big bumps, not my thing but mad respect nonetheless, some of those bumps were insane. That said, thumbtacks and barbwire bats have to be amongst the most childish and silly things I have seen in a wrestling ring. As if thumbtacks or barbwire on a bat make any difference to the blunt force impact of landing on the ring or being hit by a bat. If Bret Hart, Kurt Angle, Kazuchika Okada, etc, make you believe Wrestling is real; Foley was and is their complete antithesis."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: AnBwrote on 16.04.2021:[10.0] "Foley's the best actor in the history of the WWF. Fit perfectly in pretty much whatever role he had to play. I guess a "negative" is that I always felt kinda worried seeing him in the ring, because you never knew how much damage he'd end up having inflicted on himself. I wasn't that over on Dude Love though."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Kungwrote on 27.01.2021:[10.0] "There are few pro wrestlers from the 90s who I respect more than Mick Foley. He could be the most beloved hero you could ask for and then also be the most hated villain. He was able to seamlessly dissolve into a bevy of different characters, each of which had its own quirks and intricacies that made them all memorable. I know I'm not the only one on here who would say that Mick Foley was born to be a professional wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Old ride long linewrote on 18.12.2020:[10.0] "Love reading all the love foley gets! And I agree anything less then a 10 is complete disrespect. I don? t think it? s possible for anybody to love wrestling and the fans of wrestling more than mick foley. Hell in a cell with undertaker at king of the ring 98? is probably the most famous wrestling match in history only rivaled by Andre hogan at wrestlemania 3. And if falling off the cell and then through the cell wasn? t enough to prove it he did it again vs triple h at no mercy 2000. He pulled of three gimmicks, sometimes in the same night, and sometimes even in the same match (check out royal rumble 98). Him along with rock taker hhh and Austin are the reason wwe survived and thrived during the attitude era. His matches with Terry funk and Abdullah the butcher in Japan are legendary. He sacrificed everything for the business and I can only hope that he feels all of the love that a large percentage of us have for him. First ballot hall of famer, personal top 10 favorite, and quite possibly GOAT material depending on wether or not your criteria includes passion for the business. Thank you FOLEY!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: inauricwrote on 06.10.2020:[10.0] "Greatest character worker of all time, most transformative worker of all time, one of the best promos to ever do it, one of the best brawlers and hardcore specialists in the game, his passion and intensity elevated countless matches and moments to legendary status, and he worked to get countless wrestlers we know and love today over. Actual GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Mr Wrestlemania 97wrote on 15.09.2020:[10.0] "The most underrated wrestler of all time. He gave us some of the best matches, moments and promos in the business to the point where it's one of the best resumes a WWE figure could have. Very under-appreciated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: kcraig316wrote on 09.09.2020:[10.0] "There have been times in my life when I've drifted away from following wrestling. Mankind was one of the wrestlers that brought me back in the 1990s. I had lost my ability to watch wrestling when it went exclusively to cable. Then I went to college and had cable again. I loved the insanity, the unpredictability, the risks he would take. Some criticize the HIAC match as being short and not having much actual wrestling. I hate that. Wrestling is more than wrestling. That's what makes it great. It's a spectacle, it's a stunt, it's a show, it's wonderful. Foley and Taker's HIAC isn't about the wrestling. It's about a man meeting his match and still not backing down."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Donniewrote on 28.07.2020:[10.0] "Mrs Foley's baby boy is my GOAT. He's the reason i love wrestling. He embodies everything that makes this bullshit worth watching and loving. Its hard to put it into words sometimes, he's just that special."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Khalid Acewrote on 15.06.2020:[6.0] "I like & have so much respect for the man for what he did to his body to put up good matches but his in ring work is a little poor."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: WCWStingwrote on 05.06.2020:[10.0] "Egal mit welchem Gimmick er überzeugt einfach immer und hatte im Ring auch echt was drauf und Lustig konnte der auch sein hatte alles was man von nem Wrestler haben will. LEGENDE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: JuWFEAEwrote on 16.05.2020:[10.0] "Mick Foley war schon immer ein sympathischer Typ. Seine Promos waren ginial und sind es heute noch. In Ring konnte er mich auch überzeugen. Durch sein allgemeines Hardcore Gimmick hatte Foley auch sehr viel Ausstrahlung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Wrestlefan20wrote on 12.05.2020:[10.0] "Can play a multitude of roles, ranging from comedic to serious and not lose any of his credibility. Pretty entertaining on the mic. Very good as both a heel and a face. Can transition from the mid-card to the main event seamlessly. Also a great wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TNBG2381wrote on 03.04.2020:[10.0] "Mick Foley is the definition of sacrificing everything to please people. Foleys hardcore style is legendary and he managed to get 3 gimmicks over at one time. His descent off the hell in the cell is iconic and his classic rivalries with the likes of Triple H, The Rock, and The Undertaker put him at the top tier of the professional wrestling business. Mick Foley has got to be one of the most selfless human beings to ever step foot in the wrestling business and that? s a rare quality in the wrestling world. 10/10 everyday! Thank you Mick Foley!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: AAA3000wrote on 07.03.2020:[8.0] "Freu mich immer wenn er auftaucht. Man bereut es fast nie. Er ist vielleicht nicht der beste Wrestler, aber definitiv ein unterhaltsamer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Conorwrote on 04.03.2020:[10.0] "One of the greatest of all time. Yes, he probably took more serious bumps than anyone else in the business, but this makes people forget that he was a master storyteller and had an above average work rate. Not only did he have an amazing character; he had 3 of them. Foley is one of those rare wrestlers that will always be beloved by the fans because of how much he gave the business. To top it all off, he has been a part of some of the most memorable moments in the history of the sport. One of my favorites ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: JEK 1991wrote on 21.11.2019:[10.0] "The man is a hardcore legend. Very comical and creative in his characters that he portrayed. He confused many by mixing his gimmicks from Dude Love to Cactus Jack to Mankind.  A pioneer for hardcore wrestling. He was great in Japan, WCW, ECW and WWF."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: thebuttonboywrote on 18.08.2019:[10.0] "Foley was fantastic at every facet of pro wrestling. I always enjoyed his promos. They range from intense to hilarious. The main event at Mind Games is truly a gem of a match, Showcasing his in ring psychology. Foley seamlessly transitioned into each of his separate personas, Making each character unique and believable. Foley was a beyond a great hand, he was also a great tooth and a great ear."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: pappahousewrote on 06.08.2019:[7.0] "Ein absolut sympatischer Typ, immer 100%, immer hardcore unterwegs, übelst eingesteckt in seiner Karriere. Ich glaube die Matches gegen den Undertaker stecken ihm heute noch in den Knochen, völlig verrückt. Mankind top und lustig, Dude Love dämlich, Cactus Jack hardcore. Wrestlerisch mit Sicherheit nicht der Größte."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[10.0] "Did so much for the industry in multiple different ways. In my mind, he shined brightest as Mankind with his initial feud against the Undertaker. But his character development didn't stop there & we saw him in an array of lights as he clashed in so many memorable feuds. Part of me is not too crazy that he really fast-tracked backyard wrestling & the abundance of hardcore in the mainstream. But I think that would have come eventually with or without Mick. Foley is more than just another hardcore wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ZestyZuluWarriorwrote on 28.06.2019:[10.0] "What is there to say about Mick that hasn't already been said here? An absolute hardcore legend, the man has LITERALLY given body parts and nearly his life for the business. Despite all the harsh years or wear and tear on his body he still was able to put on great matches with the likes of young Orton and Edge. His promo skills are one of the best in the business and I would recommend them all. He can play face or heel with ease and can definitely be in the "G. O. A. T" group."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: zephyrwrote on 20.03.2019:[9.0] "I used to think that all Foley had going for him was his willingness to completely destroy his body for people's entertainment. Turns out he was actually a really competent brawler. Plus great promos. Honestly much better than I remembered."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Der Commanderwrote on 11.03.2019:[10.0] "Mick Foley ist DIE Hardcorelegende. Egal ob als Cactus Jack, Mankind, Dude Love oder als er selber. Er hat alle Gimmicks sehr überzeugend gespielt. Einer seiner legendärsten Matches wird wohl das Hell in a Cell Match gegen den Undertaker 1998 sein. Dieses Match alleine begründet schon warum Mick Foley so legendär ist. Und gerade auch am Mic konnte Foley gute Promos abliefern. Definitiv einer der größten Legenden im Wrestling aller Zeiten und immer sympathisch! "Bang! Bang! " "And have nice day! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Steamboat2511wrote on 29.11.2018:[9.0] "Mick Foley ist eine Hardcore-Legende. Für mich, als WWE-Fan, ist er bedeutender als Funk und Co, da Foley unzählige Runs in der WWE hatte. Technisch keinesfalls der beste Wrestler, beherrscht er doch sein Handwerk und kann durchaus auch in normalen Matches überzeugen. Innerhalb der WWE hält sich sein Hardcore-Engagement, auf Grund der Ausrichtung der Liga, freilich in noch verträglichen Grenzen, auch wenn atemberaubende Spots und Matches (Mankind-Undertaker, Foley-Edge etc. ) bei ihm zur Tagesordnung gehörten. Foley ist jedoch mit einer so großen Persönlichkeit (und im Endeffekt vier genialen Charaktären) ausgestattet, dass er mich meist auf voller Linie überzeugt hat. Hinzu kommen wirklich starke Mic-Skills und eine Grundsympathie für diesen Mann, der auch in "Beyond the Mat" hinter die Kulissen blicken lässt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: RatingsMachinewrote on 25.10.2018:[10.0] "As well as being a prolific brawler, Mick Foley is one of the best on the mic that wrestling has ever seen. His anti-hardcore promos in ECW were of a calibre few have been able to come close to matching."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Oliver95xwrote on 27.09.2018:[8.0] "Eine Hardcore Legende und sehr sympatisch. Er hat Charisma und hat seinem Körper mehr zugemutet als nötig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Chrisxyzwrote on 30.08.2018:[8.0] "Absolute Hardcore Legende. Er hat in seiner ganzen Karriere immer sein Körper aufs Spiel gesetzt. Und so hat er viele epische Momente geschaffen. Wrestling technisch nicht mein Lieblings style aber man muss einfach wertschätzen was er getan hat"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Dragon Fighterwrote on 26.02.2018:[10.0] "The hardcore legendary, one of greatest wrestlers in wwe here. An absolutely passionate and magnificent master when it comes to microphone work. He cut some of the best promos I have ever heard. His character is versatile and entertaining. His charisma is also off the chart great. Sure he may not the best ever stepping into the ring but he can tell stories and have so many memorable matches. A truly GOAT at least in wwe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: jajt1989wrote on 14.02.2018:[7.0] "Loved watching him do what he did best and that was entertain the crowd and lay it all down in the ring, yes he might not of had the best move set, but every time he set foot in that ring something entertaining happened and it kept my eyes glued to the tv."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: A-Doublewrote on 06.02.2018:[7.0] "Foley ist ein Meister harter Bumps, und jemand der Schmerzen gut erträgt. Durch seinen unverkennbaren Look und seine verrückten Promos einer, den man nicht vergisst.  Als Wrestler aber halte ich ihn für unterdurchschnittlich. Man sollte keine Technik von ihm erwarten. Zudem basieren eigentlich alle seine denkwürdigen Matches nur auf spektakulären Spots, die einfach die Grenze immer weiter getrieben haben.  Der Unterhaltungswert ist trotzdem groß und er sticht definitiv hervor."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Viper99wrote on 01.02.2018:[10.0] "Hart Mick Foley zu raten da ich sehr gerne das Gesamt-Package rate. Foley hatte 4 verschiedene Gimmicks welche alle Unterschiedlich waren und trotzdem Genial rübergebracht wurden, dass man sich fast schon fragen kann, welches denn eigentlich schon sein "Haupt-Gimmick" war. Allein das macht Mick Foley schon besonderst, dass er einfach durch sein Charisma und sein Micwork 4 verschiedene Charaktere spielte und diese vorallem Interessant hielt. Er hatte nie den besten Look, aber das hat er bei seinen Gimmicks auch nie gebraucht. In Ring einer der stärksten seiner Era und von vielen sehr Underrated. Er hatte eine Unglaubliche Psychologie in und Außerhalb des Rings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: CHN325wrote on 31.01.2018:[9.0] "Was never the most gifted wrestler in the world, but rarely was he outworked. Gave his body to the business for the sake of entertaining the fans and was great on the mic. Earned every opportunity he was ever given. Transcended the the hardcore style and title of Hardcore Legend to just simply being a legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: taabr2wrote on 11.09.2017:[10.0] "A favorite of mine. Mick Foley is the greatest brawler in wrestling history. He is also has an amazing understanding of what works in wrestling. Foley was able to get himself pushed to the top thanks largely due to an overwhelming crowd support from his constant suicide attempts (at least that is what it seemed like sometimes) for our entertainment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Lucubangetwrote on 21.06.2017:[9.0] "One of my favorite performers when i was a kid in the late 90s. I was really into hardcore back in the day thanks to Cactus Jack and Mankind."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: LuchaFan28wrote on 28.05.2017:[10.0] "hey verdammt wie kann hier überhaupt ne andere Wertung als 9 oder 10 zustande kommen das ist einfach ne F***ing Legende er hat so geile Sachen gemacht. Er ist einfach der Hammer die Hardcore Legende schlecht hin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: warmongerswrote on 04.05.2017:[10.0] "Couldnt not give Mick Foley 10 out of 10. One of the biggest Overachievers in wrestling history and my first and most complete wrestling hero."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Blood Pumpwrote on 30.03.2017:[8.0] "These last two years have not been a good representation for this guy, but lets be real about this man. Mick is pound for pound one of the bravest heartiest wrestlers to step in the ring, more so then Terry Funk and believe you me that's saying a hell of a lot. Mick, for better or worse, has mangled his body for our entertainment since the start, but to call him just some glorified stuntman would be a mistake. One must ignore his absolute classic with Shawn Michaels or Sting, both which showed the mans staggering level of psychology, to call him such a thing. Yeah he thrived in the hardcore but he could get the crowd invested."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Owenwrote on 28.02.2017:[10.0] "Is there any doubt what rating he deserves? Anything less than a ten would be ridiculous. Tough, Charismatic, good on the microphone and creepy as hell when he wanted to be. The man is a living legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: coolserazwrote on 18.02.2017:[9.0] "Incredibly gifted on the mic with his promos - funny and goofy for Dude Love, insidiously creepy for Cactus Jack and balls-to-the-wall insane for Mankind. Great brawler and all but killed himself for the people. Happy to see him doing better today but you can see the toll taking bumps on concrete and thrown off cells has taken on poor Mick."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring: Er ist die wahrscheinlich größte Hardcore Legende, mit unzähligen Klassikern, der auch in normalen Matches ok war aber deshalb auch nur 9/10 (50%) Punkte.   Promos/Schauspieltalent:Einer der besten allerzeiten, seine Paraderolle war der Psycho Sadist Mankind. 10/10 (25%)  Charisma/Statur/Gimmick:Er hatte paar Knaller Gimmicks mit Mankind und Dude Love als Cactus Jack aber nur OK. 7/10 (25%)  Sind dann insgesamt 8, 75 Punkte für The Hardcore Legend.   = 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Wrestling Foreverwrote on 19.01.2017:[10.0] "Mag er heute schon sehr nervig sein. Er war sehr wichtig damals in der WWF Attitude Ära und im Monday Night War gegen die WCW. Was er auch schaffte er wurde mit allen Gimmicks außer Mick Foley WWF World Tag Team Champion da am meisten als Mankind das war auch sein erfolgreichstes Gimmick in der WWF. Auch er war mal dünn hatte schon in den 80er ein WWF Tryout wenn man ihn da sieht denkt man gar nicht das er das war. Auch schon vor seiner WWF Zeit ein Mann der anders war. Schon in der WCW ein harter Typ starke Fehden da gegen Sting und vor allem Vader. ECW Zeit auch stark hier als Cactus Jack auch einer der das Hardcore im Amerikanischen Wrestling geprägt hat. Er ist für viele Hardcore Wrestler von heute ein Vorbild. Egal welches Gimmick Mick hatte er kam an. Eine Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HeadCheesewrote on 02.12.2016:[10.0] "If their was ever anyone over a ten it probably be Mick Foley. One of the promos, one of the best brawlers, one of the best sellers, Mr. In Your House,  kinda creepy with fandom of Santa, an inspirational wrestler, and has been in some of the most notable matches in the history nearly 104 year history of pro wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: NastyYaffawrote on 02.12.2016:[8.0] "One of the most likeable guys in the business, a very hard worker who was not afraid to take some big risks. Very good in the ring, and a contender for the best promo ever too."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Puro Spiritwrote on 02.12.2016:[10.0] "A icon in the wrestling business that became famous for dangerous bumps and putting his body though all kinds of shit for the entertainment of us as fans ..... has had brutal classics with his mentor Terry Funk , HHH , Randy Orton and many others .... a special performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: SomeDudeOnTheInternetwrote on 16.11.2016:[10.0] "Hätte Wrestling ein weiteres Synonym dann wäre es Mick Foley. Die härtesten Matches in der WWE/WWF Geschichte und prägte die Attitude Ära und die Hardcoreszene mit. Er ist nicht für ein Technikspektakel im Ring bekannt, umso besser gefielen mir seine Gimmicks, micwork und tonnenweise Charisma und natürlich die Tatsache, dass er mit seinem Hardcorestil gezeigt hat wie sehr er Wrestling liebte. Die Fehden sind echte Klassiker genauso wie die HIAC-Matches gegen Triple H und Undertaker und viele weitere Matches gegen HBK, Orton, Ric Flair... usw. Foley is Legend, Mankind is Legend, Cactus Jack is legend, Dude Love is legend und vor allem Mr. Socko is legend. "Bang Bang""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: SweetestThing2wrote on 11.08.2016:[9.0] "As much as i have tried to deny it over the years i can't deny it any longer, Mick Foley is one of the greatest of all time. From Cactus Jack to Mankind to Dude Love, It didn't matter the man was a wrestling genius. The Man's mic skills are unparalleled, especially his promos in ECW. He was an intense performer in every promotion he was involved in. What i also love about Foley is he had the look for the character without having the look you are supposed to have as a wrestler. He was against the grain and made it work for him, an average Joe who became a successful professional wrestler, a best selling author and Santa Clause all without selling out. His Feuds with the likes of the Undertaker, the Rock & Triple H are among the greatest of all time with unforgettable matches and moments. He is a big part of Monday Night Wars and the Success of Raw is War and he just seems like a down to earth really nice guy and on top of that he made Noelle Foley so we can thank him for that. It is a Success story that should have never been but was and thank goodness for that. Mick Foley is God!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Coltwrote on 09.07.2016:[10.0] "Ich weiß echt nicht was ich schreiben soll. Also fasse ich mich jetzt ganz kurz: Foley ist eine Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: NHJ2190wrote on 22.06.2016:[9.0] "Eine der prägenden Figuren der WWF in den 90er und Anfang 2000er Jahren. Unglaubliche Matches geliefert, mit absoluter Härte und vielen WTF Momenten. Zusätzlich charismatisch bis in die Haarspitzen und ein überragender Micworker. Es würde ihm kaum gerecht werden einzelne Matches herauszuheben in denen er überragend geworked hat. Allerdings möchte ich zwei nennen: Das HiC Match gegen HHH 2000 sowie das Match gegen HBK 1996 bleiben bei mir in Erinnerung und sind bis heute absolute Klassiker."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: JordanACEwrote on 18.06.2016:[10.0] "Probably the greatest in history. Foley, Dude Love, Mankind, Cactus Jack... He just kep re-inventing himself and it worked every time! The sacrifices he made for this buisness are unmatched. The guy I respect the most in this, or any other buisness!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Sick Lebowskiwrote on 05.06.2016:[9.0] "Im Ring natürlich nicht dafür bekannt, jedes Match ein Technik-Feuerwerk abzuliefern. Aber er legt in nahezu jedes Match und jede Promo sein ganzes Herzblut, was teilweise zu sehr grandiosen Momenten führen kann. Darüber hinaus scheint er mir ein sehr netter, umgänglicher Mensch zu sein. Man hört zwar hin und wieder, dass einige glauben, seine nette Art sei nur berechnend und gespielt, aber wenn ich mir seine Bücher durchlese (von denen leider nur das erste gut ist, dafür aber auch richtig gut), glaube ich ihm, dass er wirklich nur der nette Kerl von nebenan ist, der sich seinen Lebenstraum erfüllen konnte. Alles in allem reicht es für mich nicht ganz für die Höchstnote, aber ein "Sehr gut" ist dennoch drin."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HowUDoingwrote on 04.06.2016:[10.0] "Mein persönliches Lieblingsgimmick von Foley ist ganz klar Mankind. Die anderen Gimmicks waren zwar auch sehr unterhaltsam, aber nichts war zu gut wie Mankind. Er ist eine HARDCORE-LEGENDE und hat Wrestling-Geschichte geschrieben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "All time great performer. Amazing promos, crazy bumps, great matches. The guy did it all and ascended to the top of the mountain against all odds."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: EGeraldhuebnerwrote on 27.04.2016:"Foley is God. Allein die Angaben der Jahre seiner Karriere und die zahlreichen Verletzungen sprechen hier eine sehr deutliche Sprache. Mick lebt, er atmet, denkt und stellt Wrestling einfach dar. Er ist zwar auch ein "glorifizierter Stuntman" wie Ric Flair (obwohl, der hat es gerade nötig ^^) sich mal ausdrückte sowie rein technisch gesehen eingeschränkt, hatte ohnehin nie so wirklich die Figur dafür, aber er würde sterben für seine Leidenschaft. Daher ist es auch gut, das er sich ziemlich zurück gezogen hat. Es gibt kaum jemanden, der sich so oft für seine Fans und gute Unterhaltung aufgeopfert hat. Kaum jemanden, den Kollegen wie Fans so dermaßen lieben und verehren. Als Begriffe wie "Hardcore" in der damaligen WWF noch ein Tabu waren, kam Mr. Foley und schenkte uns denkwürdige, epische, grandiose, atemberaubende Momente. Auch wenn man immer wieder den wahren Menschen Michael Francis Foley hinter der Figur Mankind / Cactus Jack / Dude Love usw. sehen konnte, machte ihn das noch sympathischer. Nebenbei hat er natürlich absolut geniale komödiantische Fähigkeiten und kann selbst ohne im Ring zu bluten einfach göttlich unterhalten. Es ist vollkommen egal, wie, wo oder wann man Mick Foley sieht, er begeistert in wenigen Augenblicken. Foley is God ... bless you Mick. ^^"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: blackmileswrote on 23.04.2016:[8.0] "Er hatte für mich nie ein 15 Minuten Match, welches mich durchgehend Unterhalten haben. Er hatte "nur" diese Unvergessenen Momente gegen Undertaker, Edge, Triple H usw die ihn mit Steve Austin als repräsetant der Hardcoreera Darstellen lässt. Als Mankind gefiehl er mir am besten, vor allem seine Phsycho Promos bleiben in Errinerungen. Aber auch in den anderen 3 Gimmicks Genial. In ring 4/10 +3/10 für die genialen Spots. Micwork 9/10 Charisma 9/10 Insgesamt 8 Punkte- Gut"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Mean Smark Callouswrote on 13.04.2016:[10.0] "The Man. Simple as that. Cactus Jack changed the way I saw wrestling. Possibly the toughest man ever in the history of the sport. Tremendous threshold (and penchant) for pain. Has had some incredibly brutal matches in Japan which I never get tired of seeing. Always cut great promos, and managed to create not one, but THREE awesome gimmicks/personas: Cactus Jack, Mankind, and Dude Love. His Hell in a Cell match with Undertaker in 1998 is now the stuff of Wrestling legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ApexOfEvolutionwrote on 29.03.2016:[9.0] "Toller Hardcore-Wrestler mit legendären Spots. Er spielte seine Gimmicks immer großartig, egal ob Mankind, Cactus Jack oder Dude Love, auch wenn ich letzteres ein wenig albern fand. Wenn er heute in den Shows auftritt kann er immer noch gut unterhalten. Und auch privat scheint er ja ein netter Typ zu sein."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DoktaC4ibbywrote on 19.03.2016:[10.0] "Probably my favorite from the Attitude Era and maybe even wrestling as a whole. His mic ability outclasses pretty much everybody in wrestling history by having three gimmicks and somehow making them all work, plus fantastic feuds (See Mankind vs McMahons, Dude Love vs Steve Austin), I will admit that he never was the best big man technician but considering the fact that nearly every single one of his matches was at least 7. 5/10 (Which not even the best technicians ever like Eddie Guerrero can claim that) and he took probably the biggest bumps in wrestling history at King of the Ring vs Undertaker, I can forgive him. Fantastic person in real life as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: James Dean Wrestlingwrote on 09.03.2016:[8.0] "Awesome wrestler and personality. So many great moments across his other 3 personas. Mic work is top notch and in the ring he got the job done. Miss this guy, but thankful for the great memories he left.  Bang! Bang!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MatteoMerdokwrote on 06.03.2016:[6.0] "Mick Foley may be a very charismatic entertainer, but as a wrestler he basically was famous for taking crazy bumps. He wasn't the best technician, he wasn't the best flyer, hell... he is infamous for throwing some really bad/weird punches. Mick was very entertaining, but as a pure wrestler... I have him at a 6."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Zedwrote on 05.03.2016:[10.0] "Ich kann durchaus verstehen dass einige Fans den guten Mick nur als Stuntman oder Bump Machine sehen. Jedoch darf man einfach nicht vergessen dass Mick seine Gesundheit komplett aufgab nur um seinen Traum zu verwirklichen, den er schon als Kind hatte. Und tatsächlich änderte die WWE ihre Attitude zu einem Programm, das Mick Foley zugute kam. Er war beileibe kein technischer Athlet, oder hatte jemals die Figur der meisten seiner Kollegen, aber er zeigte Leidenschaft und Herz für das Business wie kaum ein zweiter. Absolute Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheLoudMouthwrote on 17.02.2016:[10.0] "Wie es mein englischsprachiger Kollege unter mir schon beschrieben hat: "He is like a white Jackie Chan. He can do anything if he wants. Dance, comedy, love, horror, thriller, fight. Everything great about Mick Foley. " - Mehr Worte zu Foley benötigt es eigentlich auch gar nicht. In sämtlicher Hinsicht eine absolute Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Best Pro Wrestling Fan Everwrote on 08.02.2016:[10.0] "He is like a white Jackie Chan. He can do anything if he wants. Dance, comedy, love, horror, thriller, fight. Everything great about Mick Foley."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TrevPuroFanwrote on 17.01.2016:[10.0] "Mick Foley is amazing! He was fantastic and passionate on the microphone. He was fantastic in the ring, it didn't matter what type of match you threw him in, he always delivered. Plus he gave wrestlers like Shawn Michaels, Triple H, Randy Orton, Steve Austin, Edge & Vader some of their best matches ever. Amazing, amazing wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Squared Circlewrote on 19.11.2015:[10.0] "I lived in the same town as Mick and he is a fantastic human being.  He ran multiple gimmicks successfully.  Strong on the mic and had solid in ring skills.  Pushed the envelope to put on a great show.  He made his opponents better.  The multiple gimmicks add a point.  His fearless attitude get him another.  Making his opponents better adds a third."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: jacobphillipswrote on 13.09.2015:[10.0] "he put his life on the line in every match he competed in for our entertainment. that alone is enough to warrant a rating of 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: austin1987wrote on 12.02.2015:[10.0] "Ließ sich oft vermöbeln aber brachte somit auch Edge total over und auch damals Triple H. Denn nach dem Hell in a Cell Match zwischen Foley und HHH brauchte man nicht mehr zweifeln ob HHH etwas an der spitze verloren hat.  Hatte noch einige Klassiker mehr zu bieten. Zeigte im Ring wirklich alles, war zwar kein typischer Wrestler aber ich fand seinen Stil immer klasse. War am Mic auch sehr begabt und ist der einzige der 3 verschiedene Gimmicks zur selben Zeit perfekt spielen konnte (obwohl mir Dude Love nicht wirklich gefiel)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Garvinwrote on 21.12.2014:[10.0] "Ein Mann, der alles in diesem Business erlebt hat. Es war nie eine Augenweide ihn in einem Singles Match zu sehen - und gerade deswegen muss man es ihm hoch anrechnen, dass er sich alles Stück für Stück erarbeitet hat. Natürlich hat er auch Glück gehabt, dass er seine große Zeit gerade dann erleben durfte als sein Stil das Maß aller Dinge war und es dürfte zweifelhaft sein, ob sich ein 30-jähriger Mick Foley heute durchsetzen würde. Doch die Unterhaltung und Opfergabe über Jahre hinweg haben ihn einfach unsterblich gemacht. Seine Spots und viele seiner Matches sind für die Ewigkeit, obwohl man sicher über Sinn und Sinnlosigkeit mancher Attacken streiten kann. Am Mikrofon stets einer der Allerbesten. Egal welche Rolle verkörpert wurde, es passte zu 100 %. Auch nach seiner Karriere immer wieder gut geeignet gewissen Fehden / Matches die letzte Prise zu verleihen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HereComesThePainwrote on 20.12.2014:[10.0] "Ob "Bang Bang! ", "Have a nice Day" oder sonstwas: FOLEY IS GOD! Und mehr muss man da echt nicht sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Y2J316wrote on 28.11.2014:[10.0] "The Hardcore Legend. Mick Foley wird immer einer der Besten sein. Seine Matches und auch seine Promos fande ich immer gut. Zwar immer ein paar kilo zuviel aber was soll es. Keine auch niemanden der so viele verschiedene Gimmicks hatte. Rock n Sock Connection ist auch eins der besten aller Zeiten. Also mein fazit ist das mehr oder weniger alles was er machte zu Gold wurde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Phenomenal91wrote on 06.10.2014:[10.0] "This man should never have been a famous wrestler. But he was because he was unlike anyone who came before him. He blazed a trail that proved that, as long as you could engage the crowd and tell a story, you could be a star."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Bloodywrote on 24.09.2014:[10.0] "Als Kind dachte ich noch, wie krank ist dieser Cactus Jack. Über die Jahre hinweg ist er für mich zu eine der echtesten Personen geworden. Er überzeugte in all seinen Rollen und konnte seine geringen Fähigkeiten bestens verdecken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: 8BitLegendwrote on 14.09.2014:[6.0] "Ich kann Mick Foley leider nicht mehr als eine 6 geben. Ich mag ihn als Typ gerne, aber sein Wrestlingstil war masochistisch und grausam. Als Mankind hatte er einige gute Matches und interessante Momente, aber für den Top-Superstar als der er gehandelt wird, war mir das unterm Strich zu wenig gutes Wrestling und zu viel Risiko."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Titanwrote on 03.09.2014:[10.0] "Im Ring war er zwar nicht der Filigrantechniker, aber er hat die Attitude Era durch seine kranken Spots durchaus mitgeprägt. Dazu konnte er mit Charisma und Mic-Skills überzeugen. Hardcore-Legende trifft den Nagel auf den Kopf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sokar Drenwrote on 14.03.2014:[6.0] "Mankind in der AE gefiel mir, aber sonst finde ich dass Mick Foley etwas überbewertet wird. Aber seine Stunts und Hardcore Matches waren schon cool. 6 Punkte!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Foleysbabytoywrote on 01.03.2014:[10.0] "Einer der größten Talker aller Zeiten. Gerade in der ECW zeigte er unglaubliche Promos. Im Ring limitiert, präsentierte er einem trotzdem fast durchgehend gute Matches und einige echte Klassiker. Auch seine Fehden sind erwähnenswert. Was er mit Vader, dem Taker, Triple H und the Rock zeigte gehört mit zu dem besten was es in den 90ern zu sehen gab.  "Bang! Bang! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: azwepa62wrote on 18.02.2014:[10.0] "Mick Foley has been one of the most creative people in and out of the ring. His in-ring contributions have helped build not only his career, but the careers of so many around him. His outside achievements (writer-novelist, comedian) show what a truly creative man he is. But it's his philanthropic endeavours that prove what a giving person can do."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DudeLove177wrote on 05.02.2014:[10.0] "Bang Bang! Mehr brauch man nicht sagen! Einfach genial!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: RepoManwrote on 10.01.2014:[8.0] "Als Cactus war er mega, als Mankind auch noch stark aber als Dude Love hat er mir nicht gefallen, genauso wenig wie als Mick Foley. :-) Ergo in den Gimmicks top... real naja."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Goldberg82wrote on 26.11.2013:[9.0] "Die Hardcore-Wrestling-Legende schlechthin und sehr überzeugend als Mankind, Dude Love & Cacktus Jack. Unglaublich was der alles eingesteckt hat und noch genossen hat. Foley hatte legendäre Fehden mit The Rock, den Undertaker, HHH oder Vader. Insbesondere in Harcore-Matches extrem brauchbar und dazu einer der besten Entertainer im Ring aller Zeiten. Ich sage nur die Rock and Sock Connection. Daher eine verdiente 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Dreamforcewrote on 25.11.2013:[10.0] "Mick Foley die große Hardcore Legende ist einer der größten Wrestler der Geschichte und ein Mann der seines Gleichen sucht. Er hat wahrscheinlich einige der größten und besten Matches gehabt, die es in der WWF je gegeben hat und war auch extrem überzeugend und energiegeladen in seinen Promos (egal in welchem Gimmick) auch lange nach seiner aktiven Zeit in der WWE. In TNA fand ich Mick Foley irgendwie ein wenig falsch aufgehoben, was aber seinem Image in keinster Weise schadet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Undertalkerwrote on 19.11.2013:[8.0] "Mit ihm geht's mir im Grunde genau wie mit Steve Austin: Er war einer der interessantesten Charaktere des Pro Wrestlings. Egal ob als Cactus Jack, Mankind, Dude Love oder einfach Mic Foley, spielte er seine Rollen dermaßen gut, dass es einfach nur Spaß machte, ihm zuzuschauen. Im Geviert war Foley allerdings nicht mehr als Mittelmaß. Er glänzte eher durch seine Hardcorematches und durch seine "sick bumps", die in kommerzielleren Wrestlingligen nur sehr wenige auf sich nehmen. Das ist aber nunmal kein Punkt, mit dem man bei mir punkten kann, da ich kein Fan von Hardcore-Wrestling bin. Deswegen gibt's auch "nur" 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: koeddylaemmlewrote on 24.09.2013:[10.0] "Revolutionary superstar who brought hardcore to the mainstream and passion to promos. Mick Foley was able to take his own personal desire to make an everlasting mark on the industry still felt today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HighlightHEELwrote on 23.08.2013:[10.0] "Eine absolute Legende. Matches sind natürlich nicht technisch, sondern Hardcore ohne Ende. Für ihn genau der richtige Weg. Einige seiner Bumps (klar, welchen ich hauptsächlich meine, oder? ) werden für immer in Erinnerung bleiben. Noch dazu absolut wandelbar mit seinen drei verschiedenen Gimmicks, die er alle zur Perfektion ausgebaut hat. Am Mikro in der allerhöchsten Liga, auf einem Niveau mit Rock, und ja, Jericho ist für mich minimal besser. Auch heute noch unterhaltsam und immer für ein starkes Segment inklusive Promo mit jungem Worker gut. FOLEY IS GOD."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: UnforgivenSicknesswrote on 23.08.2013:[10.0] "Einer der charismatischsten Wrestler die es je gab und noch ein ECW Legend. Dann noch die drei anderen Gesichter von ihm. Einfach AWESOME!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Alex Maedawrote on 01.08.2013:[10.0] "Was ihn von vielen seiner Hardcore-Kollegen unterscheidet ist, dass er nicht nur unglaublich austeilen und wahnsinnig einstecken, sondern auch solide bis gute Singles Matches zeigen kann sowie ein genialer Schauspieler ist, der jedes seiner Gimmicks perfekt rüberbringt. Am Mikro für mich besser weil wandelbarer als The Rock und Stone Cold zusammen und auch sonst einer der charismatischten Leute, die ich je im Fernsehen gesehen habe. EDIT : Die einzige kleine Kritik, die ich habe, ist seine überflüssige Zeit bei TNA. Aber immerhin hat er den Zeitpunkt zum Rücktritt vom aktiven Wrestling nicht völlig verfehlt. Darf gerne noch mal an das Kommentatoren-Pult zurückkehren (egal wo), habe aber auch volles Verständnis dafür, wenn er sein Leben nun voll und ganz seiner Familie wendet. Nicht nur ein einzigartiger Wrestler, sondern mit ziemlich Sicherheit auch ein einzigartig symphatischer Mann, auch außerhalb des Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Boris The Menacewrote on 20.07.2013:[6.0] "I have a lot of respect for his love for wrestling, but in the end of the day he's a bit overrated."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Kenshin Uesugiwrote on 20.07.2013:[10.0] "War Foley ein guter Wrestler? Wenn mir erzählt wird das er es nicht war, muss ich mir doch an den Kopf greifen. Ja kein Techniker, ja kein Aussehen wie man das sich von einem spitzen Wrestler vorstellt. Aber das spielt keine Rolle. Er beherrschte seinen Stil und sein Können in Sachen In-Ring Action war dann einfach nur spitze, ein großartiger Geschichtenerzähler und Gimick-Darsteller. Was hat er nicht alles gemacht, wenn hat er nicht alles zu einem großen Star gemacht und den endgültigen Durchbruch verschafft? Die großen Matches sprechen für sich und da ist es mir ehrlich gesagt egal ob er nun ein Garbage/Hardcore Wrestler ist. Der wahre Star der Attitude Ära, Triple H, The Rock usw. sollten noch heute jedes Jahr ihn Blumen schicken; eine wahre Legende und größter WWE Übergangschampion aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Leonewrote on 15.07.2013:[10.0] "Mick Foley, to this day, is quite a unique former WWE Champion.  Unlike other champions, Foley is not known for being Gym Junkie, in fact he looks like he chooses a meal over the gym any day of the week.  He is also not known for being larger-than-life by being well over 400lbs and athletic at the same time.  Instead he was a 300lb man who moved like a 300lb man a lot of the time.  How Mick sold tickets was based on his powerful mic skills, fascinatingly colourful characters, legendary promos, relatable self-deprecating humour, charisma, strong in-ring storytelling, excellent brawling, and for being a guy who took incredible risks almost every time he stepped into the ring.  He has entertained us with falls, spots and sells that would hurt anybody very badly, and even kill them.  His Hell In A Cell match against The Undertaker is a testament to that.  The scars and injuries he received over the years are legendary, including hundreds of stitches, a torn abdominal muscle, four knocked out teeth to losing an ear.  He retired from wrestling full time in 2000 for good reason, as anymore on the WWE schedule would probably have put him in a wheelchair.  A fantastic hardcore wrestler who is remembered for his hard work, legendary matches and for being one of the easier-to-relate-to wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sir Vida Loca IIIwrote on 08.07.2013:[8.0] "Sicher ist Foley kein technisch besonder versierter Wrestler. Jedoch hatte er einige unvergessene Momente abgeliefert und sich dadurch unsterblich in diesem Sport gemacht. Desweiteren würde ich ihn zu den größten Hardcore Legenden zählen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Lecterwrote on 06.06.2013:[10.0] "Flawless storyteller and a very hard worker. Wish he had taken it a bit easier throughout his career so he'd still be able to live a comfortable life now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: believeintheshieldwrote on 02.05.2013:[10.0] "Ein Toller Wrestler, der seine Rollen als Cactus Jack, Dude Love und Mankind richtig gut gespielt hat. Die 10 Punkte hat er einerseits für seine guten In-Ring Fähigkeiten erhalten und dafür, dass er sich so viel hat gefallen lassen, beispielsweise beim Hell in the Cell Match gegen den Undertaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Kings Roadwrote on 26.04.2013:[8.0] "Mick Foley ist, alles in allem, sicherlich kein begnadeter Wrestler, gab dafür aber begnadet gute Interviews und stach durch persönlichen Einsatz hervor. Er hat mich sowohl als Cactus Jack als auch als Mankind immer gut bis sehr gut unterhalten. Ist sicherlich zurecht Teil der Hall of Fame, sollte es nun aber wirklich sein lassen und nicht mehr in den Ring steigen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sick Boywrote on 04.04.2013:[10.0] "Kein Techniker vor dem Herren, aber eine absolute Hardcore-Legende, die bereit war alles zu tun, um die Zuschauer mit heruntergeklappter Kinnlade zurücklassen zu können. Obendrein einer der sympathischsten Menschen in diesem Business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sentenzawrote on 01.04.2013:[10.0] "Eine Legende! Natürlich kein Wrestler wie Michaels oder Angle, aber seine Präsenz im Ring, die Art und Weise ein Match zu führen ist großartig. Legendäre Schlachten egal in welcher Liga und hatte extrem geniale Hardcore Matches. Dazu kommt das geniale Mankind Gimmick was mir böse noch besser gefällt als Publikumsliebling später. Er war bei so vielen großen Momenten dabei, die sich ins Hirn gebrannt haben ob Heel in a Cell gegen Hunter/ Taker, Street Fight gegen Hunter, das Hardcore Match gegen Edge, die Liste kann so weitergehen. Und auch neben dem Ring ein großartiger Mensch, setzt sich für die gute Sache ein und schreibt super Bücher. Mick Foley hat gezeigt, dass man nicht wie Superstar aussehen muss um ein ganz großer zu sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Diggertakerwrote on 13.02.2013:[10.0] "Pro wrestling needs more people like him. Risk taker. Spots performer. Hardcore to the extreme. And a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: CMPunkVotVwrote on 27.11.2012:[10.0] "Absolute Legende. Sowohl im Hardcore Bereich als auch im Mainstream - Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: WCWlerwrote on 23.11.2012:[0.0] "Foley ist für mich kein Wrestler. Er ist für mich jemand der zwar im Ring steht aber nur von seinen Stunts und sonstigen harten Aktionen lebt. Dazu ist er für mich einfach langweilig und nervend."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Pontiac is TESTwrote on 24.10.2012:[10.0] "Mick Foley is one of the best wrestlers and is my no. 1 in top 5. 1 time WWF smoking skull champion. 2 times WWF attitude era champion.  1 time TNA world heavyweight champion, and 1 time WCWA World Light Heavyweight champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Formless Onewrote on 16.07.2012:[10.0] "Es mag sicherlich Leute geben, die Foley kritisieren mögen, ob des angeblich verpassten Absprungs vom In-Ring-Geschehen, und auch ich kann jeden Negativanklang in die aufgesetzt wirkenden Sketch-Segmente der WWE komplett nachvollziehen, dennoch ändert es nichts an den Fähigkeiten des Michael Francis Foley. Seine Art des Micworks, seine Ideen um sinnvolle Umsetzungen, seine Aufopferungsgabe für das Business suchen ihresgleichen. Genau deshalb vergebe ich für einen der ganz Großen auch 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: blackjackwrote on 09.07.2012:[9.0] "Love his attitude. He will do anything in and out of the ring to get over. Interviews are priceless. Ringwork is okay for a brawler. Will go down as one of the best all around characters."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Giant2wrote on 20.04.2012:[6.0] "Tut mir Leid, aber diese absolute Vergötterung kann ich nicht nachvollziehen. Hardcore waren The Sheik und Abdullah schon lange vorher. Bumps nahm ein Terry Funk genauso vorher. Okay, seine Promos sind besser und er hatte ne Fehde mit dem Taker. Setzt ihn das so viel höher ? Ne schwache 3 ist drin, mehr nicht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: mintaquewrote on 09.04.2012:[10.0] "Bester Hardcore Brawler aller Zeiten. Außerhalb und innerhalb des Rings sehr sympatisch!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Marlowewrote on 19.02.2012:[10.0] "Eine Legende, ich denke es wurde alles gesagt, was es zu sagen gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Golgotawrote on 09.02.2012:[10.0] "Über Mick Foley muss man wohl kein Wort verlieren. Wrestler mit unglaublichem Einsatz, begnadetem Micwork und auch als Mensch einer der umgänglichsten und intelligentesten Leute, die man auf Langzeit im Wrestlingbusiness antreffen konnte. Alles unter der 10 ist Blasphemie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Raywrote on 16.11.2011:[9.0] "Ich habe Foley damals bewertet, als es nur in Zweierschritten möglich war, nun endlich wird es mir ermöglicht, ihm eine Bewertung zukommen zu lassen, die über 8 liegt, aber keine Höchstnote ist. Foley ist eine Legende, er wirkt sympathisch, er nimmt Risiken auf sich, man konnte sich mit ihm besser identifizieren als mit den meisten muskelbepackten, öligen Badehosenwrestlern. Er war kein grandioser Techniker und nicht jedes seiner Matches war ansehlich, aber er war immer mit Herz bei der Sache und wusste mich zu unterhalten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: IWLwrote on 16.11.2011:[9.0] "Ein charmanter und liebenswerter Kerl, der das Wrestling Geschäft verstanden hat. Sportlich leider nur Hardcore. Ich halte Hardcore für weniger beeindruckend als Standard Wrestling, weil es weniger athletisch ist, sondern eher was von einer Stunt- und Zirkusshow hat. Wrestling generell ist ja schon Zirkus, aber Hardcore geht mir zu sehr ins Lächerliche. Foleys Gimmicks zeugen von enormen Showtalent. Er gab dem Wrestling immer etwas Komisches, ja Selbstironie. Alleine schon sehr unterhaltsam, als Rock N Sock Connection Auftritte für die Ewigkeit."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Rated R Punkwrote on 06.09.2011:[8.0] "Die größte Hardcore Legende aller Zeiten. Er ist sich nie für einen Bump zu schade und macht viele gute Storylines. Seine Ring Skills waren nicht die besten sind aber auch nicht der Inbegriff von grottig, am Mic kann Foley stets überzeugen. Allerdings ist er abgesehen von Hardcore Matches irgendwie uninteressant... Das einzigst gute war dann doch eigentlich nur sein Run mit The Rock."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Rey2004wrote on 05.09.2011:[10.0] "Einmalige Hardcore-Legende! Wahnsinns Kämpfe, gute Gimmicks - bis auf Dude Love."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Kitanoyamawrote on 01.09.2011:[9.0] "Er wirkt wie ein eher unbeholfener und unfähiger "Klops" aber wenn er mal auspackt, sowohl verbal als auch ringtechnisch, wird man rundherum und auf das nachdrücklichste eines besseren belehrt. Er kann zwar mehr einstecken als er austeilen kann, was seine Ringarbeit angeht, aber es hat immer Spaß gemacht sowohl ihm zuzuhören als auch -zusehen. Der positiven Meinung über sein Micwork kann ich mich nur anschließen, unnötig da deswegen noch weitere Worte darüber zu verlieren. Was man aber auch bedenken muss ist, das er sich seit einigen Jahren nur noch auf der Stelle bewegt und deswegen nicht mehr soviel over bringen kann wie zu vergangenen Zeiten weswegen ich ihm keine volle Punktzahl geben kann. Liegt z. B. vielleicht auch an seinem Alter aber dennoch. 9 Punkte sind daher ausreichend und angemessen genug."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: WWE4evermaybewrote on 29.08.2011:[10.0] "Die Hardcore-Legende schlechthin. Seine Promos sind immer unterhaltsam. Wenn er in seinem Element ist, d. h. bei Extreme Rules Matches, dann ist er kaum zu bändigen. Dazu noch seine grandiosen Fehden gegen Rock, Triple H, Undertaker, Randy Orton oder auch Edge. Als Mensch und Wrestler ein symphatischer Kerl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Hu-Manwrote on 20.08.2011:[10.0] "Am Mic wohl der beste aller Zeiten. Im Ring immer gut bis sehr gut, selbst im höheren Alter immer noch für geiles Entertainment gut. Ich liebe Foley."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Play2Xwrote on 07.08.2011:[9.0] "Als Hardcore Wrestler einfach große klasse, dazu ein Gott am Mic, und sogar noch in einem "normalen" Match unterhaltsam, aber ist bei Mick Foley überhaupt irgendetwas "normal"? Trotzdem sind die normalen Matches halt nicht sooooo überragend wie bei den ganz großen Wrestlern, sodass ich nur 9 Punkte gebe! BANG BANG! FOLEY IS STILL GOD!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Fall Out Boywrote on 25.07.2011:[9.0] "Am Mic gibt es nur eine handvoll von Wrestlern die man auf die selbe Stufe wie Mick Foley stellen kann. Hardcore Legende, die das Wrestling geprägt hat. Den 1 Punkt Abzug gibt es für seine doch oftmals langweilig normalen, nicht Hardcore, Matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheRock 7 Champwrote on 11.07.2011:[10.0] "Ob in WWF/E, ECW, WCW, Japan oder in TNAW, er konnte mich immer überzeugen. Seine bahnbrechenden Promos und seine super In-Ring-Skills machen ihn zu einem sehr guten Worker. Doch was noch wichtiger ist sind die extremen Bumps die er hinnahm und dafür zolle ich ihm Respekt und gebe ihm die volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: NHJ2102wrote on 11.07.2011:[8.0] "Mankind aka Mick Foley ist einfach einer der großen, seine Matches gefielen immer gut"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: 7TheEwrote on 29.06.2011:[9.0] "Als großer Fan der ECW und auch des Hardcore Wrestlings muss man ihn einfach lieben und der Mann der vielen Gesichter."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: FuXwrote on 06.06.2011:[6.0] "Hatte für mich nie den Superstar-Status der ihm immer angedichtet wird. Foley kann reden und aus allen möglichen Höhen, Richtungen, Einrichtungen und überhaupt durch Tische, brennende Tische, Tische mit Reiszwecken oder auch Kommentatoren-Tische fallen. Das kann er, sogar gut. Er hat viele Leute Over gebracht, war sicherlich auch zurecht in der "Attitude"-Ära einer der großen, aber das ist nunmal auch schon wieder 12 Jahre her und er war, sicherlich auch aufgrund seiner oben bereits erwähnten Tisch-Manöver, damals schon "Alt" (im sinne von Verbraucht). Heutzutage sieht er einfach nur noch verwahrlost aus, gibt alle 10 Wochen mal ein Comeback und das wars. Foley ist nicht Gott, Foley ist scheiße."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: OdisVanNeusswrote on 26.05.2011:[9.0] "Mick Foley oder uach Mr. Tausen Gimmicks.  Ob Dude Love, Mankind, Cactus oder einfach Mick,  Der Mann ist sick in Person und weiß alles davon zu verkörpern.  Auch schön das er ein bisschen Deutsch Kann, der Wolfgang Petry der Wrestlingszene.  Top Man, Top Worker.  hätte damal Man of the Year verdiennt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Johnny-Tennerwrote on 16.05.2011:[9.0] "Charisma an der Spitze des Möglichen, Seine Gimmicks alle samt mega verrückt aber auch Mega Cool, Im Ring vielleicht neben den Hardcore Matches und krassen Bumbs vielleicht nicht der Beste aber das Macht er allein durch seine Einzigartigkeit wieder wet. Tragisch find ich ein bisschen das er die großen Matches alle samt verlieren musste, aber irgendwie macht das auch seinen Charakter aus. Egal was er einstecken muss er macht immer und immer weiter und deswegen lieben wir ihn. Jede gesendete Minute mit Mick Foley ist gold wert."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Wolfhartwrote on 11.05.2011:[7.0] "Mick Foley ist meiner Meinung nach kein Säulenheiliger, sondern eine Geschmacksfrage. Ja klar, natürlich sind seine Promos immer leidenschaftlich und kreativ(10P), aber die Frage ist, wie stark man das in die Gesamtnote einfließen läßt. Im Ring hat er etliche der krassesten Bumps genommen, die es je im Wrestling zu sehen gab, aber der Rest war dann wirklich nicht gut. Für seine Hardcore - Eskapaden bin ich sogar geneigt, Punkte abzuziehen. In-Ring-Leistung max. 5 Pkt. , wobei er sich fast alle alleine durch seine halsbrecherischen Stunts verdient hat."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Michael Shawn Hickenbottomwrote on 28.04.2011:[10.0] "Mick Foley ist einer DER Hardcore Götter , und ich finde ihn einfach super !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: exxterwrote on 17.04.2011:[10.0] "Auch wenn heute in TNA. Caktus Jack/Mick Foley/Dude Love/Mankind wie auch immer ist ein sehr genialer Hardcore Wrestler. Und dazu ein sehr charismatischer, super Mic Skills und Ring skills auch. Schade das er keine weiteren Matches macht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: VanderVaartwrote on 30.03.2011:[10.0] "Wo Mick Foley auftritt, ist der Entertainment-Faktor hoch. Egal welches von seinen mindestens 4 Gimmicks es nun ist. Wrestlerisch war er nur dann nicht so stark, wenn es keine Hardcore-Matches waren. Muss er aber auch nicht, wenn der Rest stimmt. Leider hat er die wichtigsten Fehden verloren, doch das soll seiner Popularität nicht schaden, denn er war sich für keinen Move zu schade. Nebenbei schreibt er lesenswerte Bücher, die sehr häufig verkauft wurden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: C0nspiracywrote on 29.03.2011:[6.0] "Foley is God , habe selten so gelacht beim Lesen. Der Mann hat wirklich eine ahnung von unglaublich vielen dingen. Wrestlerisch eine durchaus gute 6. Eine Hardcore Wrestling Ikone abzüge eben beim Wrestlerischen können , diese sind aber sehr schwerwiegend Foley ist eben kein Ric Flair aber in dem was er macht und man von ihm erwartet ist er Top. Btw seine Promos sind Weltklasse."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Matt4Wrestlingwrote on 27.02.2011:[9.0] "Er wirkte immer Glaubwürdig und Fan-Freundlich. Hat von sich selbst immer das Maximum abverlangt, obwohl er nie der größte Techniker im Ring war, wird er immer als Hardcore-Legende weiterleben!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Ullewuppwrote on 24.01.2011:[10.0] "Mir ist wohl bewusst, dass Foley nicht gerade über herausragende techische Fähigkeiten verfügt, jedoch gibt es meiner Meinung nach viele Möglichkeiten starke, spannende und ansehnliche Matches zu kreieren und das ist eine Fähigkeit, welche die Hardcore-Legende des Buissenes auf seine ganz eigene Art und Weiße hat. Die Menge an (Sick-)Bumps die er im Laufe seiner hat einsteckenen müssen (seht euch nur mal die Verletzungsliste an), um den Fans eine gute Show zu liefern, sucht meiner Meinung nach ihres gleichen (in diesem Bereich kann wohl nur der Funker mithalten). Desweiteren gibt es wohl keinen zweiten Wrestler, der es so einmalig wie Foley versteht die verschiedensten Gimmicks (Cactus Jack, Dude Love und Mankind) klar voneinander zu trennen und ihnen allen (hier vorallem Mankind) einen so starken und glaubwürdig vermittelten ganz eigenen Charakter zu verleihen (seine Promos in der Frühphase des Mankind erachte ich als die besten der Welt; wer das nicht glaubt sollte sich mal das Jim Ross Interview vom 02. 06. '97 oder den Buildup zu Mind Games mit Shawn Michaels anschauhen). Auch die Art wie er es verstand die 3 Charaktere miteinander zu verbinden und im Ring in seine Matchführung einzuarbeiten ist eine wahre Seltenheit. Etwas anderes als 10 Punkt kann für diese Legende, die das Wrestling liebt und über seine gesammte Karriere so bereichert hat also nicht gegeben werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: cagefighterwrote on 08.12.2010:[10.0] "Gefällt mir sehr gut. Gimmick, Mic und Kampfstil passen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Excellence of Executionwrote on 18.10.2010:[9.0] "Mit Sicherheit nicht der größte Wrestler. Dafür aber mit Sicherheit der größte Fan des Wrestling Business. Wenn sich einer nicht zu Schade war, jeden Preis zu zahlen, um es in diesem Geschäft zu etwas zu bringen, dann Foley (okay.... Funk war auch noch da)! Für mich ist der Mann einfach ein wahrer Wrestling Idealist (auf seine Weise) und zudem ein grundehrlicher Typ, dessen natürliche Sympathie nicht spurlos an mir vorbeigeht. Dass Foley so viele verschiedene Gimmicks hatte, sie alle glaubwürdig rüber brachte und auch als Kommentator gerne gehört war, belegt seine Fähigkeiten am Mic. EDIT: Auch ich muss eingestehen, dass Foley sich nach seinem "Karriereende" doch einige Cameo-Auftritte zu viel geleistet hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Babuswrote on 18.10.2010:[10.0] "Der beste Micworker aller Zeiten und sowohl im Ring als auch außerhalb - im TV wie auf Papier - ein unglaublich begnadeter Geschichtenerzähler. Foley war stets einer meiner absoluten Lieblingswrestler und scheint zudem ein grundsympatischer Typ zu sein. Dass der einstmals beste Brawler seiner Generation heute bei TNA nur noch ab und an gegen Sting, Angle oder Abyss vorzeigbare Matches abliefert, kann ich ihm angesichts seiner zahllosen Klassiker - sei es gegen The Rock, Triple H, Funk, Vader, Austin, Orton, Edge oder den Undertaker - problemlos verzeihen. Und wenn er heute ein Mic in die Hand nimmt, ist der alte Zauber, im Gegensatz etwa zu Ric Flair, am Ende doch jedes Mal wieder da."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Lions Denwrote on 07.10.2010:[9.0] "Mick Foley ist mittlerweile auf diesem Status angelangt, an dem fast nichts mehr seinen Ruf als Legende demontieren kann. Er hat das Wrestling in sovielen Bereichen geprägt und ausgezeichnet wie kaum ein Zweiter. Ob nun durch seine waghalsigen Manöver, seine selbstzerstörerische Art, sein mitreißendes Micwork oder hinter den Kulissen:Er hat eigentlich alles getan und erreicht, was in diesem Business möglich ist. Und das nicht nur in den Mainstream-Ligen, sondern auch im Independent-/Underground-Bereich. Die Frage bleibt, ob und wann er sich aus der Öffentlichkeit des Sports zurückzieht. Ich wünsche ihm einen ähnlich würdevollen Abschied wie Micheals und hoffe, dass er vom ewigen Dasein eines Ric Flair verschont bleibt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: nVVo-Fanwrote on 02.10.2010:[10.0] "Die Hardcore-Legende schlechthin! Volle Punktzahl für so viele klasse Matches"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Ramwrote on 11.09.2010:[10.0] ""The Hardcore Legend" ist einer meiner all Time Favorits. Er unterhalt auf viele Weisen. Er ist auf einer Seite Total Lustig hat auf der anderer seite aber auch eine Furchtbar Brutale und Irre Seite. Er hat keine Typische Athleten Statur aber etwas was genau der Defination eines Wrestlers entspricht. Wrestler sind meiner Meinung nach kein Sporter, man muss auch kein MMA Kämpfer sein um hier Erfolge zu feiern. Auch wenn die WWE mir im Moment vielleicht wiederspricht muss ein Wrestler auch kein Schauspieler sein. Er muss nur eins und das ist zu jedem verdammten Zeitpunkt unterhalten und das Tut Mick Foley und das macht ihm zu der Legende die er ist. Auch im Ring seh ich den dicken Mick lieber als irgend so ein lahmen Spot-Monkey."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: rockysadrianewrote on 10.09.2010:[9.0] "Das Wort "Legende" trifft auf ihn nicht ganz zu. Dennoch war Mick Foley über viele Jahre eine sehr unterhaltsame Erscheinung."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Jack Londonwrote on 21.08.2010:[10.0] "Mick Foley ist einer der größten Entertainer, die das Business je hatte, sein Mic-Work ist legendär, er hatte tolle Matches und Fehden, und auch seine Biografie ist recht nett"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Mountiewrote on 17.08.2010:[9.0] "Foley hat denkwürdige Matches geliefert und noch wichtiger: Sein Micwork und seine einzigartigen schauspielerischen Fähigkeiten ergeben für mich den stärksten Charakter, den ich je im Wrestling gesehen habe. Leider muss es für das Thema "Absprung verpasst" irgendwann auch nach viel Wohlwollen Abzug geben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Manu Adamswrote on 26.07.2010:[7.0] "Als Cactus Jack in der WCW ein ordentlicher Brawler, ebenso als Mankind. Sein ''Bump'' vom Hell in a Cell Dach wird mir wohl noch viele Jahre im Gedächtniss bleiben. Am Mikro war er gut und als Hardcore Wrestler konnte er enorm viel einstecken. Abzüge gibt es für das ewige Comeback/Ruhestand hin und her."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Hirnklopswrote on 17.07.2010:[6.0] "Ich kann mir das nicht mehr mit ansehen. Er war für mich einer der Größten, doch was sein letzter Run bei TNA mit diesem Status angerichtet hat... Nee. Ehrlich: Foley sollte aufhören. Sofort. Für immer. Er ist eine Karikatur von sich selbst geworden."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: WrestlingFanDuisburgwrote on 03.06.2010:[7.0] "Hardcore Legende und gut am Mic, solange er Mankind ist richtig gut. Im Ring finde ich ihn nicht ganz so toll."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Erasedwrote on 21.05.2010:[9.0] "Absolute Klasse. Der Kerl überzeugt einfach jedesmal. Seit Jahren bringt er gute Leistung und überzeugt dabei."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sandmannwrote on 04.05.2010:[8.0] "So langsam könnte der gute Foley sich mal entschließen aufzuhören. Im Ring sicherlich nur noch unterdurchschnittlich seit ein paar Jahren. Da merkt man dann so langsam halt doch den Verschleiß den sich diese Hardcore Ikone in langen, harten Jahre erarbeitet hat. Wenn man an seine Zeit in Japan und der ECW zurückdenkt. Oder seine großen Schlachten mit Vader in der WCW. Ja selbst in der WWE mit seinen 3 Perönlichkeiten. Mick sieh zu das du anständig in Rente kommst."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Cripplerwrote on 24.04.2010:[10.0] "Gut im Ring, der Beste was Entertainment angeht und auch noch sehr gutes Micwork.  Was will man mehr?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Fat Mikewrote on 07.04.2010:[9.0] "War im Ring zwar nie der Beste, aber doch meistens überzeugend und am Mikrofon einfach göttlich. Leider hat er sich durch seine vielen unnötigen Comebacks einiges von seiner Reputation selbst zerstört."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Eazyewrote on 20.03.2010:[9.0] "Er ist eine Legende. Sowohl in Japan, ECW und WCW als auch in der WWE/WWF. Er nahm hirnrissige Bumps auf sich wie kaum ein anderer. Hardcore Legende Sondergleichen. Seine Gimmicks spielte er auch alle super. Ein Punkt abzug gibt es wegen schlechtem Single Wrestling(Also ohne Hardcore Stripulation) und seinem bisher nicht so gelungenem TNA Run. Ansonsten eine absolute Hardcore Legende sondergleichen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Moyawrote on 15.03.2010:[10.0] "Hat sich für den Sport geopfert, und der WWE einige der denkwürdigsten Momente ihrer Geschichte beschehrt. Hat sich seinen Status definitiv verdient! Wer erinnert sich nicht gerne an das Hell in a Cell gegen den Undertaker oder den unschlagbaren Mr. Socko?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: RaTedR5starwrote on 13.03.2010:[10.0] "Ganz Klar - 10 Punkte. Dieser Mann ist sooft auf die fresse geflogen, aber er ist immer wieder aufgestanden. Ich hatte unvergessliche Momente mit ihm. Ich denke nicht, das sich jeder Wrestler dazu bereit erklärt hätte, die stunts eines Mick Foleys nachzumachen. Das HIAC - Match, nein, die Beiden HIAC - Matches waren der Hammer. Bei Beiden ist er durch den Käfig geflogen, und er hatte sich dazu bereit erklärt. Das verdient Respekt. Ehre wem Ehre gebürt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Eddiewrote on 27.02.2010:[8.0] "Einer derjenigen, die ganz klar zu spät aufhören, deshalb Abzüge. Manchmal sollte es sich einfach eingestehen, dass man nicht mehr wirklich unterhält, 6 Punkte. Er war auch nie so wirklich mein Fall gewesen in der WWF/WWE und auch in TNA nicht. Edit: Nachdem ich jetzt auch etwas "älteres" Material von ihm gesehen habe aus der WCW muss ich gestehen, er konnte es zumindest mal, deshalb wieder eine Aufwertung auf 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Neubauteneinsturzwrote on 23.02.2010:[10.0] "So sehr ich auch nachdenke, mir fällt kein Grund ein, warum Mick Foley NICHT die volle Punktzahl verdient hätte. Ganz klar eine der größten Personen in der Geschichte des Wrestling. Auch wenn er natürlich besser nicht immer wieder vom Rücktritt zurückgetreten wäre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheROCKwrote on 22.01.2010:[10.0] "Mal ehrlich. Das Mick Foley nun bei TNA seine Karriere zu Ende fährt, stört mich nicht im geringsten. Er ist und bleibt einfach UNSER Mick Foley. Konnte im Ring noch weniger als TheROCK, war aber dafür umso gesegneter mit Mic-Fähigkeiten. Hat mir als Wrestling-Fan viel gegeben! Hätte eine letzte Fehde gegen Sting zum Abschied verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ShakDragoonwrote on 19.01.2010:[10.0] "Neben Terry Funk wohl DIE Hardcore-Legend, die neben der ECW auch in der WWE immer überzeugen konnte. Am Mic ist er sowieso einer der Besten aller Zeiten! Kaum zu glauben, dass er bei TNAW noch einmal so auftrumpfen konnte. Besonders seine Mic-Skills durfte er eindrucksvoll zeigen. Bin gespannt, wie es mit ihm weiter geht... jetzt, wo Hogan in der Impact Zone regiert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: gunniwrote on 13.01.2010:[6.0] "Als Cactus Jack war er schon was besonderes........ Als Mankind auch noch aber alles was dann kam war gar nichts mehr..... ich erinnere mich an einen Royal-Rumble in dem er in 3 Verschiedenen Gimmicks aufgetreten ist...... einfach lächerlich. Und seine Abschieds- Comeback-Sache ist auch unglaubwürdig hoch 10."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: RatedRJuliwrote on 07.01.2010:[10.0] "HARDCORE LEGENDE die viele großartige Matches bestritten hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Denzwrote on 04.01.2010:[10.0] "Ich habe durch den Film "Beyond the mat" gesehen, dass er Privat, sowie im Ring ein großartiger Mensch ist. Obwohl er in den vielen Jahren im Wrestling sich unendlich viele Verletzungen zugezogen hat, kann er bei TNAW immer noch einen soliden Mick Foley zeigen - respekt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Telecinewrote on 26.12.2009:[5.0] "Ich verstehe nicht so ganz, warum man Mick Foley überhaupt jemals den WWE Titel gewinnen lassen hat. Selbst als er noch jünger war, hat er nie besonders gut wrestlen können. Er hat nur immer irgendwelche extremen Sachen gemacht. Nur meistens wurde er ja selbst Opfer dieser extremen Sachen (Hell in a Cell usw. ), so dass er also nur dadurch over kam, weil er selbst immer irgendwo runtergefallen ist. Das kann es doch aber irgendwie nicht sein. Allerdings konnte er schon immer recht gut sprechen und spielen, aber das kann bei mir dann doch nur für 5 Punkte reichen."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Kuschkowrote on 22.12.2009:[9.0] "Unglaublich was Mick immer wieder abliefert. einfach ehrlich, einfach gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Father Nelsonwrote on 20.12.2009:[4.0] "Mick, stop it! Please. You are destroying your own legacy."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: downtown2wrote on 18.11.2009:[9.0] "Mick Foley zu bewerten ist etwas difizil. Im Grunde hat er nicht eine Wrestling Aktion drauf, der Körper ist eines Athleten nicht würdig. Aber er schafft bei seinen Kämpfen eine unheimlich gute Chemie im Ring mit fast jedem Gegner, die Authentizität seiner Aktionen im Ring und besonders am Mikro machen ihn zu einer Ausnahmepersönlichkeit in diesem Geschäft. Er hat wohl jedem Spötter bewiesen, dass man es zu etwas bringen kann, wenn man nur bereit ist hart zu arbeiten, seinen Beruf zu leben und Opfer bringen zu können. Die Bereitschaft schwere Verfletzungen mit unabsehbaren Folgen in Kauf zunehmen, kann ich widerum nicht gutheißen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: asraelwrote on 15.11.2009:[10.0] "Mir fällt kein Wrestler ein, kein Wrestler in den großen Ligen, der seinem Körper so viel zugemutet hat, um den Fans eine super Show zu liefern. Foley ist wohl wirklich verrückt, verrück nach Wrestling. Besitzt keine Wrestler-Statur, aber das interessiert auch nicht wirklich, da er durch seine selbstzerstörerische Art das ganze mehr als wett macht. Am Mic mit dem Rock zusammen einfach nur zum Brüllen. Schade, dass die Zeit vergeht und ein aktiver Wrestler Foley nicht mehr gut rüber kommt, aber danken wir ihm für so viele unvergessen Matches u. a. gegen Vader, Undertaker, Rock, Tripple H. Die Hardcore-Legende schlechthin und zu dem auch einfach ein netter Mensch!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: CJodlerwrote on 07.11.2009:[10.0] "Durch und durch eine Legende, der immer alles für diesen Sport gab und gibt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: StArShiP PAiNwrote on 04.11.2009:[8.0] "Kann durch sein Hardcore Gimmnick wrestlerische Schwächen vertuschen. Über 300 Nahtstiche sprechen für sich."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Whopperlewrote on 01.11.2009:[10.0] "Ihm kann man den berühmten Spruch: "We put our lives on the line" wirklich abnehmen. Er ist einfach die Hardcore Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Saschwrote on 27.10.2009:[4.0] "Ich sah ihn das erste mal als Mankind in der WWF und dachte mir was ist das. Meiner Meinung nach ist er in Hardcore Matches gut aufgehoben, doch als Wrestler war er für mich nie überzeugend."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: teekay86wrote on 25.10.2009:[7.0] "Es wird langsam Zeit das er sich aus dem ME zurückzieht und seinen Platz an Leute wie Hernandez, Stiles oder von mir aus auch Morgan räumt. Aufgrund seiner Vergangenheit tue ich mich aber schwer ihn schlechter zu bewerten."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Kurt Winkelwrote on 20.10.2009:[10.0] "Die Leistungen, die Foley in Promos abliefert sind herausragend. Er gefällt mir auch bei TNA sehr gut und sorgt immer wieder für intensive oder witzige Momente. Wirklich gut in Form ist er auf der anderen Seite allerdings nicht mehr, wenn er das auch teilweise sehr amüsant überspielt, wie z. B. durch das Setzen an das Kommentatorenpult und Mitkommentieren während eines Multiwaymatches, an dem er beteiligt ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheBrainwrote on 04.10.2009:[10.0] "Ich kann Mick nur nach seinen WWE Leistungen bewerten und die sind so genial wie brutal. Die Fehden und Matches gegen den Taker und Rock waren Wahnsinn. Sowas würde heute nie gezeigt werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Turboladerwrote on 14.09.2009:[10.0] "Mick Foley weiß einfach, wie man die Menge zum kochen bringt, seine Hardcore Matches sind legendär. FOLEY FOLEY FOLEY!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Mick Funkwrote on 13.09.2009:[8.0] "Einzigartiger Charakter, sehr starker Micworker und in Hardcorematches legendär. Wenn er die Karriere endlich beendet gibts auch wieder 10 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DJ MaSchwrote on 12.09.2009:[10.0] "Für mich der beste Mic Worker aller Zeiten ausserdem mit unglaublichen schauspielerischen Fähigkeiten ausgestatten, die ihn IMO zum besten Wrestling Charakter aller Zeiten machten. Natürlich ist Foley im Ring nicht der beste der Welt, trotzdem zogen mich seine Matches, auf Grund seiner Intensität und seines Willens immer das beste rauszuholen, immer in den Bann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Gialikesashleyverymuchwrote on 10.09.2009:[10.0] "Hart, härter, Foley. Die Hardcore Legende überzeugt durch Charisma, geniale Gimmicks und solides Wrestling. Sich für nie was zu schade gewesen und eben ein Original."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: User191wrote on 07.09.2009:[10.0] "Großartiger Micworker, einer der besten Hardcore-Wrestler in der Wrestlinggeschichte. Zwar sind seine In-Ring-Leistungen in einfachen Singles Matches nur durchschnittlich, aber er hat - wie einige der Topstars aus der Attitude Era - eine gewisse Ausstrahlung, die dies überdecken kann. Foley hat zusätzlich in allen Rollen (Wrestler, Commissioner/Executive Shareholder und Kommentator) mehr als überzeugt. Nicht nur eine Hardcorelegende, sondern auch eine wahre Wrestlinglegende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Muthmasterwrote on 30.07.2009:[6.0] "Für mich gnadenlos overrated. Natürlich hat er einige wahre Schlachten im Ring geschlagen, dennoch in normalen Wrestlingmatches immer die pure langeweile. Gimmicks hatten mir auch nie gefallen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Vanniwrote on 11.07.2009:[7.0] "Ja, ich weiß, er ist eine Hardcore-Legende. Ja, er hat früher große Matches auf die Beine gestellt, harte Bumps genommen und kann auch heute noch große Promos halten. Trotzdem bekommt er von mir nur sieben Punkte, weil er sich in den letzten Jahren einfach ein wenig selbst ins Abseits gestellt hat. Er hätte die Schuhe schon lange an den Nagel hängen sollen und macht sich somit seine Karriere zum Ende hin ein wenig kaputt, da er heute einfach nicht mehr in der Lage ist, gute Matches auf die Beine zu stellen. Am Mic schön und gut, im Ring bitte aber nur noch ganz selten und zu besonderen Anlässen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TRBM1981wrote on 08.07.2009:[5.0] "Ein irrer Typ der allerdings weder durch überragende Technik noch über ein herrausragendes Talent am Mic überzeugen kann"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HBK RVD Y2Jwrote on 02.07.2009:[9.0] "Ein sehr guter Mic Worker und auch sein Charisma ist sehr gut. Seine Körperlischen Leistungen sind Legender und sein Wrestling allgemein ist auch okay. Deswegen gebe ich ihn 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: El-Chupakneebraywrote on 13.06.2009:[10.0] "Zwar kein guter Wrestler, aber bei TNA zeigt er gerade wie wertvoll er ist. Gibt derzeit wohl niemanden dessen Promos so gut sind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Blazewrote on 02.06.2009:[8.0] "Früherer World Champ, Ikone, Hardcore Legende. Starke Ringpsychologie, immense Hingabe, großer Redner. Dennoch langweilen mich seine Matches hin und wieder ziemlich. Lässt seine Gegner gut aussehen, vergisst aber manchmal, dass er auch mehr als gefühlte zwei Aktionen im Ring zeigen sollte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: wbw-wrestlingwrote on 31.05.2009:[4.0] "Also mir gefällt Mick Foley überhaupt nicht. Für mich ist er ein sehr schlechter Wrestler nur dafür das er so gut am Mic. gebe ich im 4 Punkte."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Afroman Undertaker 619wrote on 21.05.2009:[8.0] "Das beste Match war Mick Foley vs. Edge bei Wrestlemania 22. Er ist ein richtig guter Hardcore Wrestler. Er und sein Mr. Socko bringen erst richtig Stimmung in der WWE."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: NewGuywrote on 07.05.2009:[10.0] "Ich hab sogar sein Buch "Wie die Helden" schon gelesen... Hardcore Legende, King of the Death Match, einer der im Mainstream Bereich genausoviel gewonnen hat wie in den Insider Indy-Ligen (ich sag nur FMW)... Ich glaub keine Wertung wäre ihm gerecht ;-) wenns möglich wäre, würde ich ihm 20 Punkte geben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Weihnachtsmannwrote on 29.04.2009:[7.0] "Hardcore-Legende und ein exzellenter Kommentator. Hat sich den Legendenstatus redlich verdient."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Theron083wrote on 25.04.2009:[8.0] "Was für ein verrückter Kerl. Der muss wirklich nicht ganz richtig im Kopf sein. Sucht nach dem Kick und/oder dem Extremen oder sowas wohl. Ein absolutes Original, obwohl ich bei weitem nicht alles von ihm gesehen hab, sondern hauptsächlich einige Matches und Promos aus den späten 90ern und Anfang 2000 und einige Auftritte heute in TNA. Mehr als 8 gibts aber einfach nicht, da kann er noch so extreme Sachen machen. Gimmicks, Ideen und Mic Work sind auf jeden Fall einzigartig und obwohl er wie ein Waldschrat aussieht, hat er gerade dadurch ja ein gewisses Charisma. Ein verrückter Kerl..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: blbmimowrote on 24.04.2009:[10.0] "The King of Hardcore, The man who loves the pain. His promos are very fun and sometimes full of emotion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Brainbreakerwrote on 20.04.2009:[7.0] "Ich für meine Begriffe musste Foley immer zwiespältig betrachten. Sein Aufstieg bei WWE war sicherlich beispielhaft. Geschuldet war dies sicherlich nicht nur seinen Stuntshows (die ich ansich nicht wirklich sehenswert fand, aber anerkenne, dass sie für gute Quoten sorgten) geschuldet, sondern auch seinem Micwork und seinen tollen Gimmicks. Mit einem guten Gegner und (meistens) einem Gimmickmatch, gab es durchaus auch sehr sehenswerte Momente in der WWE-Geschichte. Andererseits hat er seinen Legendenstatus in meinen Augen demontiert. dank unzähliger Comebacks und immer unschöneren Leistungen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DirtSheetwrote on 13.04.2009:[9.0] "Mick Foley ist einer der größten Wrestler aller Zeiten! Technisch vielleicht nicht aber sein Mic-Work wie auch seine Hardcore Qualitäten sind hervorragend!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: gerybundy68wrote on 11.04.2009:[10.0] "Er war und ist DIE Hardcore Legende schlechthin. Mick hat wohl in jeder Liga in der er tätig war einen bleibenden Eindruck hinterlassen, und ist für mich auch heute noch immer ein Grund um den Fernseher eizuschalten. Viele denkwürdige Auftritte bleiben in Erinnerung - Hell in a Cell gegen den Undertaker 1998 nur als Beispiel. Hoffentlich hat er noch einige solch grandioser Matches in sich. Mick Foley - im - und es sei erwähnt, für mich , auch außerhalb des Ringes einer der Grössten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The-Game91wrote on 01.02.2009:[10.0] "Er ist die Hardcore Legende schlechthin und auch so ist er ein toller Mensch schade das die WWE ihn so vergrault hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Alorionwrote on 21.01.2009:[10.0] "Mick Foley muss mit dem Wort Hardcore in einem Atemzug genannt werden!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Amurebkuwrote on 01.01.2009:[8.0] "Eine Hardcorelegende. Und was für eine. Tolle Matches hat er gezeigt. Hat es echt drauf. Weiß zu unterhalten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Cloverwrote on 18.12.2008:[9.0] "Der sympatischste Wrestler, den ich "kenne" ... Schon zu frühen aktiven Zeiten eine Legende und ein Hardcore-Vorbild. Ich mag den Menschen Mick Foley sehr :-)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ScrWwe94wrote on 17.12.2008:[10.0] "Hat alles getan um die Leute zu unterhalten. Machte alles bei Hardcore Matches und hatte viele Verletzungen doch war immer aktiv."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Smi-48wrote on 08.12.2008:[10.0] "Unverwechselbare Ikone, nicht nur der Hardcore-Gangart, sondern besonders auch des MicSkills. War sowohl im Ring als auch auf der Matte immer in der Lage, ungeahnte und unerwartete Subtilität in seine Performances einfliessen zu lassen. In meinen Augen nicht der von Flair ausgerufene "überbewertete Stuntman", sondern vielmehr ein Hardcore-Charakter mit Intelligenz & Tiefgang. In dieser Form unerreicht ... !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MrWrestlingwrote on 26.11.2008:[10.0] "Einfach ein großartiger Wrestler. Im Ring und am Mic überzeugend. Er hat schon so viele Verletzungen erlitten und ist immer noch dabei. Foley ist ein Meilenstein des Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Animal360wrote on 26.10.2008:[8.0] "Mag ihn nicht sehr egal ob er Dude Love, Mankind, Kaktus Jack oder Foley auftrat als Kommentator fand ich ihn gut deswegen 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MarcTrixwrote on 11.10.2008:[6.0] "Alle seine Gimmicks sind Kult. Besonders als Mankind hat er mir Gefallen. Punktabzüge gibt es nur, weil er als Kommentator, einfach nur überflüssig wahr."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: StoneColdRevowrote on 08.10.2008:[10.0] "Mick Foley ist einer meiner Lieblingswrestler. Ich fand ihn immer schon glaubwürdig. Als Cactus Jack, Mankind , Dude Love und Mick Foley. Seine Gimmicks sind einfach Kult. Seine Promos gefallen mir sehr gut. InRing gut und hatte ziemlich tolle Matches. Mankind vs. The Rock, Mick Foley vs. Edge oder Cactus Jack vs. Terry Funk, um nur einige zunennen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: lp4everwrote on 18.09.2008:[10.0] "Als Wrestler genial, am Mic Genial, als Kommentator genial... 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Ric Flair88wrote on 18.09.2008:[8.0] "Mick Foley ist eine Legende im Bezug auf hardcorewrestling. Bei der WWF konnte er dreimal den WWF Title erringen allerdings nur für kurze Zeit. Kam mir zu dieser Zeit mehr als Übergangschampion vor. Allerdings war er sich nie zu schade sich für aufstrebende Stars (HHH, Randy Orton, Edge) hinzulegen. Man sollte zwar kein Technikfeuerwerk erwarten wenn Mick auf der card steht doch einen harten Brawl kann er performen wie kaum ein zweiter. Die Fehden gegen HHH, The Rock oder den Undertaker sind allesamt wichtige Kapitel in der WWE- Geschichte... ALlerdings war er nie über einen langen Zeitraum ernstzunehmender Main Eent Player weshalb ich nur 8 punkte rechtferigen kann"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: RIKYwrote on 17.09.2008:[10.0] "Hat mehrere geile Gimmicks, super Mic-Worker, opfert sich seit Jahren für das Wrestling. Zumindest dies sollte man neidlos anerkennen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Wise Warriorwrote on 15.09.2008:[8.0] "Etwas überbewertet - vor allem als Autor. Sonst aber ein guter Typ."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Green Arrow Banditwrote on 01.09.2008:[10.0] "Er hat legendäre Matches abgeliefert und immer wenn es keine Regeln gibt sieht man ein tolles Match von ihm. In sämtlichen Matches wo es keine DQ gab fand ich es immer schade das dass Match zuende ging denn ich fande die absolut geil."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Jaehnchenwrote on 28.08.2008:[8.0] "Mick Foley, schade ds er zu TNA geht aber trotzem 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: xXShawnMichaelsXxwrote on 13.08.2008:[9.0] "Es wäre sehr schade wenn er die WWE verlassen würde. Er macht einen sehr guten Job als Kommentator."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Jar Jar Binkswrote on 08.08.2008:[9.0] "Mick Foley die Hardcore Legend hat sich die 9 Punkte reglich verdient. Außerdem ist meiner Meinung nach der beste Color Kommentator der WWE und bildet mit J. R das beste Kommentatoren Team das es je gab."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: PetePetePetewrote on 04.08.2008:[10.0] "Die Persönlichkeit, die mich zuerst fürs Wrestling begeistert hat und nach langer Abstinenz auch wieder dazu bewegt hat. Egal ob als destruktiver Masochist oder als lustiger GM oder als unfassbar guter Color-Commentator, mich hat er nahezu immer überzeugt, unterhalten und begeistert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DevonMileswrote on 03.08.2008:[10.0] "Hardcore Legende, geniale Promos, super Matches. Hat seine Charaktere zum grössten Teil selbst entwickelt und schreibt ausserdem noch richtig gute Bücher. In seiner aktuellen Rolle als Kommentator überzeugt er auch, vor allem seit er JR an seiner Seite hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: WerderBremenwrote on 27.07.2008:[9.0] "Er gehört(e) wirklich zur Attitude-Ära wie kein Zweiter! Über seine Matchfähigekeiten lässt sich sicherlich streiten. Dennoch ein ganz Großer im Geschäft und das aus mehreren Gründen. Er ist mit Sicherheit unter den Top5 der MicWorker und hat immer was Besonderes beim "Erzählen". Außerdem hat er viele einzigartige Fehden gehabt, allein deshalb weil er einer der wenigen Wrestler (für manche vielleicht auch der Einzige) der sehr erfolgreich mehrere Gimmicks in der WWE durchsetzen konnte und unter allen zumindest auffiehl oder gefeiert wurde. Letztens möchte ich noch sagen, dass er in seiner ganzen Zeit als Profi immer so viel einstecken musste und damit immer auch andere Leute weiter hervorgehoben hat ist bemerkenswert. Wer würde denn gerne ein solches Hell in a cell Match gegen den Undertaker bestreiten und nicht lieber den Schwanz einkneifen? ! ich nicht! Und das war ja nicht das einzige Match, in dem er einstecken musste, so als ECW-Legend! Ein Top-Mann der WWE!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Alex1wrote on 24.07.2008:[9.0] "Mick Foley ist eine wahre Hardcore-Legende mit sehr gutem Mic-Work. Er ist zwar kein Kurt Angle, dafür aber ein ausgezeichneter Brawler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Elvis1977wrote on 22.07.2008:[10.0] "Eine wahre Legende des Wrestlings, ihn bewunder ich schon seit vielen Jahren und seine Aktionen waren bisher immer unvergessen wie z. B. sein Sturz vom Hell in A Cell Käfig 1998 im Match gegen den Undertaker. Das er auch ein guter Autor ist und in diesem Bereich erfolg feiern kann wundert mich nicht, denn er ist schlauer als manch anderer Superstar die die Wrestlingwelt zu bieten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Main Eventwrote on 20.07.2008:[8.0] "Klar, er ist eine Hardcore-Legend aber manche Sachen die er gemacht hat, hatten wirklich nichts mehr mit Wrestling zu tun. Als Mankind gefiel er mir am besten un deswegen verdiente 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Matt Mackswrote on 20.07.2008:[10.0] "Einer der besten Micworker in der Geschichte des Wrestlings und darüberhinaus ein selbstloser "Trooper", wenn es darum geht, andere Wrestler berühmt zu machen. Hatte viele denkwürdige Momente in seiner Karriere, die von seiner besten Zeit 1998-2000 gekrönt wurde. Belebte nach dem Rücktritt vom Rücktritt für kurze Zeit (2004) noch einmal die Liga neu und machte Randy Orton zum Star. Leider hat er danach nicht wieder loslassen können und folgende Auftritte verloren mehr und mehr an Bedeutung. Zum Glück für ihn und uns hat er im April 2008 eine neue Berufung als SmackDown! 's Color-Kommentator gefunden, eine Rolle, die er derzeit besser ausfüllt als jeder andere Color-Kommentator im Geschäft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: JerichoHolicwrote on 10.07.2008:[9.0] "Ein großartiger Entertainer, habe mich immer gefreut ihn im Ring zu sehen und er hat mich stets unterhalten!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Pulpulwrote on 23.06.2008:[9.0] "Cactus Jack, Mick Foley, Mankind - egal in welcher Rolle, immer überzeugend, immer mit vollem Einsatz dabei. Sicher wird Foley nie zu den begnadetsten Wrestlern aller Zeiten gehören, aber dennoch hat er seine Stärken, die man einfach nicht verkennen kann. Seine Hardcore Kämpfe sind legendär und selten hat er Rücksicht auf sich selbst oder seinen Gegner genommen. Dazu einfach eine Charismabombe, die egal wo er auftaucht, "explodiert" und so gut wie jeden mitreißen kann."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Steven McWheelerwrote on 18.06.2008:[10.0] "Eine Legende! Er brachte Hardcore in den Mainstreambereich, in meinen Augen! Auch wenn es mittlerweile maßlos übertrieben wird... Der Entertainer schlecht hin, mit einem Haufen cooler Gimmicks^^ Der Inbegriff der Gimmickschizophrenie"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Urzawrote on 12.06.2008:[10.0] "Ob jetzt als Stuntman oder Wrestler oder wie auch immer bezeichnet: das Zusehen und Zuhören war er immer wert! Egal in welcher Promotion, egal in welcher Fehde... daneben glänzt er immer durch sein Wissen und seine Intelligenz. Und selbst wenn er 397 retourkommt, macht mir das auch nichts. Freut mich, daß er jetzt als Kommentator tätig ist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Frutzwrote on 06.06.2008:[10.0] "Allein das Lesen von 'Wissenswertes' zeigt, wie stark dieser Mann diesem Buisness verfallen ist und das er alles gegeben hat, um die Zuschauer zu unterhalten. Seine Charaktervielfältigkeit vom bedrohlichen Mankind bis zum tanzenden Dude Love ist einzigartig, er hat wahrhaft denkwürdige Matches geliefert, man erinnere sich nur an seine Fehde mit dem Undertaker. Heute ist er ein sehr angenehmer Color Kommentator, der durch seine langjährige Erfahrung die Sendungen bereichert. Eine lebende Wrestling-Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DeadHeadwrote on 04.06.2008:[7.0] "Als Wrestler war er nicht mein Typ aber als Kommentator bei SmackDown ist er zweifellos wirklich gut."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: elroyguesswrote on 29.05.2008:[8.0] "Seine gelegentlichen Auftritte bei WWE Inc. in den letzten Jahren ziehen den Gesamteindruck leider etwas nach unten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sockewrote on 25.05.2008:[10.0] "Bissel heftig von den Verletzungen her, glaub der hatte mehr als die Klitschkos, Maske, Ottke & Schulz zusammen. HardecoreSocko is am Mic sehr gut, übernimmt er die SD KommentatorenRolle btw? In Ring auch klasse egal welcher Charakter, klare 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Brooklyn Brawlerwrote on 24.05.2008:[10.0] "5 Punkte fürs Mic Work & Gimmickverkörperung (besonders genial: Mankind) und Charisma, 5 für die In-Ring (Hardcore)Skills.... sonst noch was zu sagen? Achja: Er ist wohl irgendwo suizidgefährdet, aber immerhin scheint er seine aktive Zeit irgendwie lebend überstanden zu haben :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: nightfallwrote on 23.05.2008:[10.0] "Er hat so vieles für die Fans auf sich genommen, somit bleibt mir nichts anderes übrig als eine 10 zu geben. Als Heel überzeugt er mich allerdings gar nicht, da er mir einfach zu sympatisch ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Masadawrote on 16.05.2008:[10.0] "Gang großes Kino, allein wegen dem Mic Work wären 10 Punkte schon berechtigt. Dazu noch einer der besten Hardcore/Deathmatch Wrestler die man so findet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Dave Concordiowrote on 06.05.2008:[8.0] "Ich finde ihn am Mic jetzt nicht den Burner, aber ich ziehe meinen Hut vor dem was Mick Foley geleistet hat. Good Job Mickles!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Robert Taylorwrote on 29.04.2008:[10.0] "Einer meiner absoluten Faves of all time! Egal ob Cactus Jack, Mankind oder Dude Love, er war immer klasse! Einer der besten Worker am Mic die es je gab - vor allem die Promos in der ECW waren einfach unglaublich! Und er ist zu 100% eine Hardcore Legende, auch wenn er das Hardcore-Wrestling nicht erfunden hat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Darbenwrote on 21.04.2008:[9.0] "Hätte Mick Foley liebend gerne eine 10 gegeben. Aber leider hat er in meinen Augen den richtigen Zeitpunkt für sein Karriere ende nicht gefunde. In der ECW Zeit war er sehr gut. In der WWF ein absoluter Topstar. Heute gefällt er mir nicht mehr so. Absoluter Tiefpunkt war die Fehde gege Ric Flair. Hat aber in anderen unzähligen Matches seine Klasse gezeigt und seine Interviews sind echte Klassiker. Zum Schluss He`s hardcore bang bang"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: AnFuwrote on 12.04.2008:[8.0] "Die Hardcorelegende Mick Foley bekommt von mir gute 8 Punnte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Excellent of Executionwrote on 20.03.2008:[10.0] "Eine der größten Hardcore Legenden. Tolle Matches mit ihm."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sandman16wrote on 19.03.2008:[10.0] "Ganz klar eine Hardcore Legende, der für so einige legendäre Aktionen verantwortlich ist. Darüber hinaus hat er ein erstklassiges Micwork, was man zurecht mit zu den besten überhaupt zählen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Instant Classicwrote on 14.03.2008:[4.0] "Foley ist auch so einer, den ich einfach nicht mehr sehen will. Das einzig gute Gimmick, dass er verkörperte, war Mankind und deswegen gibts noch eine 4."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Rated R Champwrote on 05.03.2008:[10.0] "Angesichts seiner Leistungen kann ich hier nur die 10 geben, allerdings könnte er mit dem dauernden Ausverkauf endlich aufhören und zu Hause bleiben. Dennoch Foley is God."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: real americanwrote on 01.03.2008:[10.0] "Unglaublich intensiver Worker der die Massen elektriesiert hat und seine Matches waren Klasse egal ob als Hardcore Match oder nicht und die Bumps die er genommen hat ohne mit der Wimper zu zucken verdienen Anerkennung und höchsten Respekt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Doktorwrote on 11.02.2008:[10.0] "Als Figur/ Typ für mich ein ALL-TIME-GREATEST, in-ring auf jeden Fall durch sein Verständnis/ Gespür und seinem Sinn für Narration bemerkenswert (vor allem angesichts seiner, naja, ... sagen wir physischen Voraussetzungen). Hat allein im Ohrläppchen mehr Verständnis für's Business als ein HHH in seinem ganzen Kopf je haben wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Champwrote on 10.02.2008:[10.0] "Kranker Typ, aber einfach Genial. Einer der besten HArdcore-Wrestler aller Zeiten, sowie ein genialer Mic-Worker. Vermisse ihn schon sehr. Aber man merkt ihn sein Alter und sein Verschleiß langsam an. Trotzdem immer wieder unterhaltsam."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Hunter2007wrote on 07.02.2008:[10.0] "Ich erinnere mich zu gerne an die 90er, wenn ich bedenke was Foley alias Mankind dort alles im Hardcore-Bereich geliefert hat. Einfach grandios, dieser Typ! Zudem hat er es noch geschafft, mit all seinen Charakteren super anzukommen, Promos waren immer genial, zu schade das damit heute Schluss ist und es nur noch sporadische Auftritte gibt von ihm!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: jerseyhoolwrote on 03.02.2008:[8.0] "Toller Hardcore-Wrestler & lebende Legende - aber nur eine 2! Warum? 1. habe ich nach der Doku "Beyond the Mat" meine Meinung über ihn revidiert. Derartige Bumps vor den Augen seiner Familie einzustecken, ist nicht tragbar - Fake hin oder her! 2. Fehlt ihm offensichtlich der gewisse Biss, um wirklich über längere Zeit an der Spitze zu bleiben (offenbar ein Stuhlschlag zu viel! ). 3. Auch wenn ich das nicht gerne sage, aber er ist "nur" ein Brawler - ich sehe mir lieber schöne technische Matches an. Trotzdem Garant für legendäre Momente, als Beispiel "Hell in a Cell" gegen den Undertaker!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: jimpanse1980wrote on 23.01.2008:[10.0] "Geliebt für seine Matches, berühmt für seine Bumps, aber unvergesslich wird Foley durch seine Promos und die Fähigkeit fast 2 Jahrzehnte lang in jeder Liga in unterschiedlichsten Gimmicks eine derart hohe Messlatte an Micwork zu setzen und zu halten. Bei Foley ist es mir fast lieber ihn nur zu hören, da ich in vielen Situationen doch fast Angst um seine Gesundheit hatte. Zudem spiegelt sich in seinen Promos die vorhandene Intelligenz wieder, die viele seiner Kollegen leider nicht besitzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Meanbeastwrote on 20.01.2008:[10.0] "Einer meiner absoluten Lieblinge! Kenne kaum einen Wrestler, der so sehr mit Leib und Seele dem Wrestling zugewand ist wie er! Zwar in Kritik geraten in letzter Zeit, was meiner Meinung nach allerdings nicht dazu führen soll, ihm die glatte 1 zu verwehren! Er ist und bleibt Mick Foley, und Foley is God! ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Stone Cold Andywrote on 13.01.2008:[10.0] "Absolutes Phänomen der WWF/WWE. Es gibt keinen, der mehr einsteckte, keinen, der weiter ging und keinen, der so zu schocken vermochte. Eine Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Legionwrote on 06.01.2008:[8.0] "Eine Legende im Bereich Hardcore und in diesen Matches auch genial."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MA Excellentwrote on 29.12.2007:[8.0] "Die Flair/Foley Fehde um den "Glorified Stuntman" hat die Kontoverse um Foley schön auf den Punkt gebracht. Ist er wirklich Jemand, der sich durch extremes physisches Risiko seinen eigenen Mythos erschaffen hat? Ich denke ja! Genau das macht Foley faszinierend. Vom Jugendlichen, der bei Wrestlemania Jimmy Snuka gesehen hat, zum völlig unproportionierten und untypischen WWF-Champ, genial! Sein Mic-Work ist göttlich und seine Aufopferung unvergleichlich. Jedoch bleibt auch festzuhalten, dass er wirklich nicht der begnadetste Wrestler unter der Sonne ist, daher eine klare 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Wuschl 85wrote on 15.12.2007:[8.0] "Für mich eher ein Stuntman als Wrestler. Sehr unterhaltsam, dennoch nerven mich seine ständigen Rücktritte, da er immer wieder in den Ring steigt. Da stellt sich einem natürlich zwangsläufig die Frage ob dies aus reiner Geldgier oder aus Fanliebe bzw. aus Liebe zu diesem Sport passiert. Trotzdem einer der ganz Großen vor allem als Mankind hat er mir immer sehr gut gefallen. Und Mr. Socko ist für mich ohnehin Kult. Doch ich denke es ist nun wirklich an der Zeit Mr. Socko endgültig an den Nagel zu hängen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Unrated Superstarwrote on 21.11.2007:[10.0] "Einfach nur eine verrückte Sau - im positiven Sinne! Der wohl beste Hardcore-Wrestler Ever! Bei Aktion, wonach er noch aufsteht und weiter macht, würden andere schon nach dem Sani schreien! Dazu noch ein überaus sympatischer Mensch mit grandiosen Mic-Qualitäten. Absoluter Respekt für seine Leistungen von mir!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Alan Smitheewrote on 19.11.2007:[8.0] "Hat in meinen Augen, durch unzählige oftmals auch lustlose Comebacks, sehr viel von seiner Reputation eingebüßt. Nichts des so trotz ist und bleibt er aber eine Legende und das nicht nur wegen seiner unzähligen Hardcoreschlachten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheAdaawrote on 16.11.2007:[8.0] "Früher ein Gott am Mic, mit grandiosen und herausragenden Promos. Zudem hat er seinen Körper über die Jahre mit so ziemlich jedem Hardcore Gedöns kaputt gemacht das es zu tun gab. Foley hat dabei verschiedene Alter Egos aufgebaut, wobei Cactus Jack wohl das geilste und brutalste gewesen ist. Er ist ein Hardcore Wrestler durch und durch, normales Wrestling kann er nur begrenzt. Trotzdem eine Legende und bei der WWE total falsch aufgehoben, da diese mit Foley nichts mehr anfangen können. Schade."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Medeawrote on 10.11.2007:[0.0] "Mick Foley war vor 10 Jahren einmal ganz nett, zumindest als er ein Gimmick wie Mankind erfüllen konnte. Aber mittlerweile ist da nichts mehr übrig. Er wrestlet nicht einmal mehr durchschnittlich, Charisma kann man ihm auch nicht zuschreiben und rhetorisch ist er leider auch niemand, der eine Show füllen könnte. Ich finde nicht, dass etwas gefehlt hat, als es still um ihn wurde."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: snierwrote on 06.11.2007:[10.0] "Ein unglaublich positiv verrückter! Was der alles durchgemacht hat und dazu sein überragendes Mic-Work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Rated-R-Fanwrote on 29.10.2007:[8.0] "Er ist und bleibt eine Hardcorelegende. Aber die Technik lässt zu wünschen übrig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: antihiphop2002wrote on 29.10.2007:[6.0] "Im Ring ist er meiner Meinung nach total überbewertet. Ist mit dem richtigen Partner aber in der Lage immer noch ein gutes Match zu zeigen. Am MIC ist er unterhaltsam, aber Charisma hat er für mich keins."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Benny110106wrote on 28.10.2007:[6.0] "Hätte als Legende "sterben" können aber leidet nun an der Terry Funk Krankheit. Trat nach 2 starken Jahren ab aber kam zu oft wieder. Heute nur noch langweilig, daher nur eine 3."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Bullit69wrote on 24.10.2007:[8.0] "Mhhh... Hardcore-Legende, Mic-Work... is alles klar! Ich fand das Video geil mit dem er sich bei WWE (glaub ich) beworben hat! ;)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Blue Meaniewrote on 17.10.2007:[10.0] "Biggest Hardcore Legend ever! Allein seine Verletzungsliste ... awesome! Zudem ist er auch am Mic einer der Genialsten. Daher eine klare 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Peisistratoswrote on 04.10.2007:[10.0] "Was der schon alles aushalten musste ist unglaublich, alleine deshalb verdient er sich schon eine glatte Eins."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: dariawrote on 29.09.2007:[10.0] "kein überragender Wrestler, aber die Ikone des HC-Wrestling. Dazu extreem unterhaltsam und ein supernetter Typ"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Bhanduwrote on 28.09.2007:[10.0] "Fantastisch am Mic, hervorragender Brawler und ein unglaubliches Talent, die Crowd in seine Matches mit einzubinden. All dies macht einen hervorragenden Wrestler aus. Da stört es auch kein bißchen, daß er ein hundsmiserabler Techniker war. Lebende Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Nick Toxicwrote on 24.09.2007:[8.0] "Foley is der wahre King der Deathmatches, also geb ich einen Scheiß auf Supreme, Zandig, Mondo und wie sie alle heißen. Sein Mic-Work ist fantastisch, das einzige was nervt das er nur noch irgendwo auftaucht um seine Bücher zu promoten und darauf besteht bei WM aufzutauchen. Deswegen nur Acht Punkte..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: EG4Livewrote on 19.09.2007:[8.0] "Also, ich bekomme langsam das Gefühl, dass Foley seinen mittlerweile überdimensionierten Hintern nur noch in den Ring bewegt, wenn er irgendetwas verkaufen will! Sei es der x. Teil seiner Biografie oder sonst was! Trotzdem ist er einer ner bedeutendsten Männer im Wrestling und eine absolute Hardcorelegende! Note 2"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Baszdmegwrote on 19.08.2007:[10.0] "Eine Legende. Hat das Biz sowohl mit Matches als auch Promos geprägt (ECW Promos = priceless). Er ist seit Ewigkeiten im Business und mal von den "üblichen Verdächtigen" ;) abgesehen hat er mit wirklich niemanden ein Problem - RESPEKT! Ich bin nicht mal ein wirklicher Fan von ihm, aber wenn ich mir das alles so angucke finde ich selbst die Note 1 ist zu wenig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: shannonmoorewrote on 16.08.2007:[10.0] "Bin kein Hardcore Fan aber wer sich so viel antut für dieses Geschäft, wer solche geilen Promos liefert, wer Heel und Face gleich gut spielen kann und wer sehr gute Bücher schreibt der ist eine wahre Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DrBreswrote on 13.08.2007:[8.0] "Kenne niemanden, der trotz seines wrestlerisch eher mauen Talents so zu begeistern weiß... Hab ihn immer ganz gerne gesehen, bis zu seinem Wresltemania-Hardcore-Match gegen Edge... danach entsprachen die Auftritte nicht seinem Niveau."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ecw foreverwrote on 06.08.2007:[8.0] "Er war im Team mit Bob Orton sehr unterhaltsam und allgemein in der UWF. Und in der WWF natürlich auch. All seine Gimicks waren genial und sein Mic Wor ist bis heute unvergessen. Und natürlich Respeckt für all diese Verletzungen. Eine 10 kann ich aus Skill Gründen nicht geben, er war nunmal nicht gut im Ring ohne Waffen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Ericwrote on 24.07.2007:[8.0] "Ist ein super Wrestler der die Fans immer wieder mit seinen Matches begeistert hat! Bestes Match (von denen die ich gesehen habe) ist meiner Meinung nach das Hell in a Cell Match gegen Triple H!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Comptonwrote on 23.07.2007:[8.0] "Zweifelsohne eine Hardcore-Legende und am Mikrofon unschlagbar. Leider ist sein Image zur Zeit stark angeschlagen, ständig muss er Matches verlieren und geht somit als ernsthafte WWE-Legende nicht durch. Das ist er aber."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Blade Bourdeauxwrote on 14.07.2007:[8.0] "Wenn ich mir das Gesamtpacket Mick Foley angucke, also den Worker ebenso wie den Autor, dann komme zwar immer noch nicht an die ganz Großen des Business heran, aber über die, die besser als Durchschnitt sind allemale."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MGStylezwrote on 08.07.2007:[10.0] "Er ist lustig, brutal und es ist immerwieder schön ihn zu sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ShaneOwrote on 29.06.2007:[10.0] "Hardcore Legende! Am Mic Top, im Ring Top, Charisma Top - stahl eine Catchphrase von The Rock! :-) Nebenbei in einem der unterhaltsamsten Tag Teams alles Zeiten unterwegs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HHH-Stephwrote on 24.06.2007:[10.0] "Mick Foley is DIE Legende. Er war so ein hammer Wrestler. Stach natürlich in seinen Hardcore Matches hervor, konnte aber auch gute normale Matches bestreiten. Am Mic war er begabt wie kein zweiter und hatte ein riesen Charisma. Zurecht dreifacher WWE Champion! Hat mit seinen Aktionen die Gesundheit für die Fans aufs Spiel gesetzt. Thank You Mick!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Adrammelechwrote on 24.06.2007:[10.0] "Ich kenne keinen Wrestler der soviel Hardcoreelemnte über soviel Jahre ertragen hat. Wie macht dieser Kerl das nur? So brutale Machtes, trotz beeindruckender Intelligenz und Sympathie. Ich glaube das ist sein Humor, und die Kunst über sich selbst lachen zu können. Hut ab vor dem vielleicht beeindruckensten Entertainer den ich kenne."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Dieser Mann hat den Begriff Hardcore revolutioniert! Seine Matches sind an Härte, Brutalität und Schmerzen nicht mehr zu übertreffen! Die einzig wahre Hardcore Ikone ist und bleibt Foley!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Foerstawrote on 24.06.2007:[10.0] "Genial. Hat soviele Gimmicks überzeugend rübergebracht und man fühlte sich als Fan dadurch nichtmal verarscht, wie das bei sowas in der Regel ist. Absolut hart, wie lang eer sich reihenweise Verletzungen abholte und immer wieder Hardcore-Matches bestritt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Azraelwrote on 24.06.2007:[10.0] "Hat das Wrestling Entertainment über seine Gesundheit gestellt. Ob das Klug war, wage ich zu bezweifeln ist aber auf jeden Fall die Note 1 wert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Trevedaswrote on 24.06.2007:[10.0] "Was ihm an Technik fehlt macht er mit MicWork und Charisma wett. Was er an Matches abgeliefert hat ist wirklich Wahnsinn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Wichtgestaltwrote on 24.06.2007:[10.0] "Einfach nur vielen Dank für die vielen unvergesslichen "OH my GOD! "-Momente"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Necronwrote on 24.06.2007:[6.0] "Ein Phänomen in allem, was er tut. Allerdings irgendwie nicht ganz mein Fall. Kann nicht genau benennen, warum ich nie so begeistert von den "Many Faces of Foley" war... ist aber trotzdem so."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: mongowrote on 24.06.2007:[10.0] "Foley ist einfach unterhaltung pur, egal mit welchem gimmick, egal in welcher form..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: timbo7111wrote on 24.06.2007:[10.0] "Mr. 100%. Foley lebt für seinen Job und er liebt ihn auch. Absolut intensive Matches. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Geniales Mic-Work und die wohl denkwürdigsten Matches der WWE/F Geschichte. was will man mehr als Foley?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: bertiwrote on 24.06.2007:[8.0] "Ein glorifizierter Stuntman... Aber ein verdammt unterhaltsamer glorifizierter Stuntman mit beeindruckendem Micwork!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: jollietwrote on 24.06.2007:[10.0] "Habe ihn damals gesehen, kurz nachdem er sich in München das Ohr abgerissen hat (1993) - Foley hat trotzdem (oder gerade deswegen) 150 % gegeben. Beeindruckende Leistung!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Mediwrote on 24.06.2007:[10.0] "Was soll man denn anderes sagen, als dass dieser Mann eine waschechte Legende ist, der auch heute noch die Fans grandios unterhält? ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: King of Queenswrote on 24.06.2007:[10.0] "Egal ob als Mankind, Cactus Jack, Dude Love oder Mick Foley, er gibt immer 100% und ist sich für keinen irrsinnigen Bump zu schade. Unterhalten konnte er eh in jedem seiner Charakter, und überzeugen, sowieso. Und das leigt nicht nur an seinem genialen MicWork oder seinen kranken Charakterzügen. Er ist eine wahre Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ABoyenswrote on 24.06.2007:[8.0] "Mick Foley ist einzigartig. Kein mittelmäßiger Wrestler hat es so verstanden wie er, durch atemberaubende, manchmal sogar wahnsinnige Aktionen, das Publikum zu begeistern. Er ist zu recht die Legende, die er heute ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: suntan superstarwrote on 24.06.2007:[10.0] "Alle Menschen, die Wrestlingfans sind und ihn nicht zumindest seine hervorragende Leistungen anerkennen haben, a) ihn niemals eine Promo "cutten" gehört oder b) sind einfach ignorant. Zehn Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: mdbnasewrote on 24.06.2007:[10.0] "Die Hardcore-Legende, hart im Nehmen, schockierend-geniale Matches und immer für Überraschungen gut. Ausserhalb des Ringes einer der natürlichsten, ehrlichsten und sympathischsten Wrestler überhaupt. FOLEY rules!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Rob the bobwrote on 24.06.2007:[10.0] "Anfangs mochte ich ihn nicht weil ich, als er Mankind war, zu jung war um ihn zu verstehen. Aber nun denke ich das er einer der Leute ist der das Wrestling revolutioniert hat. Einsame Spitze"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: wrestlingswiftiewrote on 29.01.2025:[9.0] "Total package wrestler. The only issue is that his coke-filled promos could be a very repetitve often."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Skitzlee247wrote on 17.01.2025:[10.0] "Best of all time. His in ring story telling was unparalleled. He had everything, selling, promos, athleticism. RIP a legend of the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Its Clobbering Timewrote on 13.01.2025:[10.0] "Macho Man is one of the best ever. Randy Savage was great at everything. arguably the most charismatic wrestler ever, could put on phenomenal matches, cut great promos, was a loveable babyface and a despicable heel. Macho Man is also one of the most influential wrestlers of all time. He's also one of my personal favorite wrestlers ever. Oh Yeah"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: TripleCrownwrote on 30.12.2024:[10.0] "Randy Savage had it all. He was easy to love as a babyface and easy to hate as a heel. He was perfect on the mic, fantastic in-ring, had a great look, easily marketable, what else could you have possibly wanted in a main event talent? I will say, his commentary wasn't great, but it was 100% the Macho Man, so it's still fun to go back and listen to him ramble and get all excited about stuff. I do think he made the right move going to WCW back in the day as it was pretty clear Vince wasn't interested in him performing anymore. Despite how good he was, he did become slightly dated until he changed up his look. Still, the guy is a legend and if it wasn't for Hogan then Macho Man would've been the top guy in WWF in my opinion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: HHHT102wrote on 29.12.2024:[10.0] "One of the greatest of all times in this business great in ring skills great promos great character great charisma his apical no one looks like him if just he had a run in nwa ahh that will be soooo great"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: MatnificentMattwrote on 10.12.2024:[10.0] "Unbelievable charisma that is unmatched. Fantastic and unique look that can never be topped. His wrestling ability was great as was his character and psychology. Without a doubt, Randy Savage checked off all the boxes that make an amazing professional wrestler. One could argue no one could match his character or his charisma. Savage was always entertaining and he was so dedicated in every match and program he took part in. A true icon. OOOOOOOH YEAH"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Rainmakerwrestlinhfandwrote on 01.12.2024:[10.0] "One of the greatest of all time the best in his generation in WWE His matches with Ricky steamboat and ric flair was great"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ItsAllAWorkAnywaywrote on 15.11.2024:[10.0] "Macho Man was one of the Top 3 wrestlers of the 80s when it came to drawing power and image recognition (with the other two being Hogan and Flair.) Macho's intensity was through the roof, and he was pretty committed to protecting all facets of the business. Even after his passing, you can still find the image of Macho Man adorning Slim Jim's because his commercials became synonymous with the brand. He left behind a legacy that will continue to be admired by fans for generations."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Pigeon Scratchwrote on 09.10.2024:[10.0] "It still pains me that Macho Man was always seen as a number 2 to Hulk Hogan despite the heights he made in his career. Legitimately timeless, massive amounts of charisma and intensity that is still only rivaled by just a few since, and was one of the best workers during the golden age. I'm willing to make the argument that he is a more beloved figure of that era of professional wrestling than Hogan is these days, and has hit a bigger pulse into culture than Hulkamania has since it's peak. Debatable, I'm sure, but a hill I'm willing to die on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: jsbortswrote on 19.09.2024:[10.0] "Randy would have been good in any era, able to connect as a face and a heel and had an incredible longevity to his peak. Was a good worker, but a way better character than anything else. Weird promo, but in such a fantastic way that it absolutely worked. World Champion in WWF when it meant something important. No real weaknesses and tons of strengths."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Saladbagelwrote on 13.09.2024:[10.0] "Prime Macho Man can hang in any era, no questions about it. He was a good wrestler in an era not known for its workrate (at least in the US), and his promo game was nearly unmatched. There aren't many wrestlers I would easily see as being a complete package, but Randy Savage is one of them. If you haven't seen his work, then I advise you to check out his any of his promos, talk show appearances, or matches within his prime years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ismarizviwrote on 07.09.2024:[10.0] "Macho man Randy Savage is truly is one of the best all rounders of wrestler he can cut, he can go in the ring, he can show his intresting character.His legendary matches with ddp, warrior and even hulkster were roundly remembered"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Chosen Onewrote on 26.08.2024:[8.0] "Zweifelsohne eine Legende. Sein Charakter, Look und Promo-Stil haben mich aber nie so wirklich abgeholt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Zak22wrote on 09.08.2024:[8.0] "Overrated but still good. Savage was probably the best worker to be wwe champion in the Hogan era and he was a good mid-card champion. But my favourite Savage stuff is verses Diamond Dallas Page in WCW, which was incredible. Good talent, deserved better than being in Hogan's shadow."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: lgccswrote on 30.07.2024:[10.0] "Very disappointed in 80s crowds for preferring Hulk Hogan over Randy Savage to be honest. Savage was the complete package in an era where the wrestling took a back seat for pageantry and charisma. Savage had all three in spades. One of the few in the WWF main event scene at that time who could acclimate himself with modern fans with no real issue. His promos, entrance, gear, look, moveset all have withstood the test of time and he remains one of the WWF's all time greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: bigredtalk89wrote on 24.07.2024:[10.0] "He could cut a promo like you couldn't believe, he could work so well that he pulled off a classic with the Ultimate Warrior, he succeeded and became a household name DESPITE Hogan using politics to hold him back, Macho Man was truly one of the all time greats"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Rassle Fanwrote on 12.07.2024:[10.0] "Randy Savage could do it all! He had off the chart charisma and was an equally amazing athlete who had some of the most memorable and greatest matches ever. He was also a larger than life character who wasn't afraid to be funny and self deprecating."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Johanwrote on 30.06.2024:[10.0] "- The single greatest dramatic storyteller in wrestling history, even above Shawn Michaels and Ric Flair. - The most fun and intense moveset in 80s, just greatly engaging and entertaining to watch his offense. - The greatest seller in wrestling history - The greatest promo in the 80s after Rowdy Roddy Piper, mand maybe Ric Flair. - one of the greatest characters in wrestling history and he lived the character. Randy Savage is the definition of a 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Hippykillerzwrote on 13.06.2024:[10.0] "Without a doubt, one of the greatest and iconic wrestlers to ever live. Everything he did, in or out of the ring, had purpose and he felt like no one else in any roster he was in. He inspired some many wrestlers and one of the few stars to cross over into the main stream (look at Slim Jims and Spider-Man). His in-ring work was fantastic with Steamboat and Flair and his feuds with Roberts and Hogan are some of the best ever. There will never be another Macho Man and thank God we were alive to see him in our lifetime."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Aseelajwrote on 18.04.2024:[10.0] "One of the best wrestlers of all time fullpackge in ring skills promos character charisma had it all"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Dirty Diegowrote on 24.03.2024:[10.0] "My favourite wrestler in the wwf in the gimmick era, Did great work in Memphis before that and continued to be a top guy in wcw, macho man could do it all have classic wrestling matches had larger than life personna, probably the best character in the history of wrestling, he up their with the best of them when it comes to promos and the biggest brander ever with his epic slim Jim shit OOOOOUUUUU YEAH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: MattHallwrote on 23.03.2024:[10.0] "Macho Man is the total package of wrestling, he was great on promos, good at storytelling, great in the ring, great physique, good size, and a colorful attire. Truly one of the goats of the 80s and early 90s. I do believe that Savage is a much better worker than guys like Hogan & Warrior. Savage can put a good show, and can have a five-star match with anyone he wrestles. My favorite Job guy Jerry Allen who was billed as Jerry Oske in 1985, had an excellent CWA match with Randy Savage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: edgyfrwrote on 13.02.2024:[9.0] "Randy Savage was pure talent and one of the best representation of the wrestling from the golden era, with a very characteristic style, he could give an amazing match or tell an amazing story, he would elevate any event where he was in, absolutely wild performer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Scottielstamperwrote on 19.01.2024:"10 of My personal favorite athlete and entertainer. The Macho Man Randy Savage was one of the greatest wrestlers of all time. As a face I loved him as a heel I loved to hate him. Some of my favorite opponents of the Machoman include his run with Ricky Steamboat and Ric Flair. He gave great performances with Hogan the Warrior and DDP."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: laddermatchwrote on 06.01.2024:[10.0] "OOOOOOHHHH YEAHHHHHHHHH! What else can you say about the Macho Man other than he's the greatest total package in pro wrestling history. He was the jack of all trades and somehow the master of all of them too. His promos were absolutely legendary and his voice is the most iconic there has ever been in wrestling. His wrestling was also superb. His legendary matches with the likes of Ricky "The Dragon" Steamboat, Jake "The Snake" Roberts, Ultimate Warrior, Ric Flair, Diamond Dallas Page, Ted DiBiase and the Hulkster will always stand the test of time. He was the personification of pro wrestling in the 1980's. Him and Miss Elizabeth together was just absolutely magic and they remain the best couple in wrestling history. RIP Macho Man and RIP Elizabeth."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: danzitorockwrote on 04.12.2023:[9.0] "The Macho Man was a legendary wrestler and one of the most popular and captivating figures of the 80s and the 90s. He played second fiddle to Hulk Hogan, but managed to get over just like the Hulkster, due to his incredible charisma and personality. I think Randy Savage had some limitations in the ring but still had a good workrate and in his prime was a great all-around performer, very skilled, but unfortunately when he became really popular his abilities were already slowing down. He can definitely be listed as one of the best promo workers of all time, his mic skills were amazing."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: JediSaiyanMaster1203wrote on 20.11.2023:[10.0] ""Macho Man" Randy Savage is easily one of the all time greatest professional wrestlers and one of my favorites ever. Randy Savage, for me, was the total package as a performer. He is a great in ring wrestler, every move he did looked amazing, his elbow drop is still the best elbow drop in history (only rivaled by Kairi Sane's), the way he would do a flying axe handle looked like he was floating in mid air and controlling how he was flying like no other. Charisma? Might just be the most charismatic professional wrestler of all time, this dude did an iconic promo about cream crops. If any other wrestler did that promo, it would have flopped, but not when it's given to Randy Savage. On the mic? Easily a top 5 talker of all time, Macho Man's voice is beyond iconic and his catchphrases live on to this day that even none wrestling fans know them, thanks to his legendary Slim Jim commercials. Despite he was in the lineage of wrestlers who were loud shouting coke fueled talkers, he was quite eloquent when he spoke, and was able to be naturally funny and could literally use ordinary objects as metaphors and always works no matter what. Savage is the kind of guy who could read off a phone book and it would be an amazing promo, that's how good he is. His outfits were some of the best as well, always had amazing fashion sense and had nice color pallets to his outfits that are still iconic to this day, always came down to the ring and wrestled in style, always aesthetically pleasing to see. While many fans of today would argue that the 1980s WWF era has aged, among the exceptions, Randy will always be mentioned along with a few other exceptions. He's so good, he could have started in any era from the 1980s and would have still gotten over, he'd probably thrive nowadays in the ring because of how planned out matches are nowadays, and Randy was known to wanting his matches set out before it was time thanks to his OCD. He's had countless great matches and feuds with Ricky Steamboat, Ric Flair, The Ultimate Warrior, Hulk Hogan, etc. Also, he was in the 2002 Spider-Man film (great movie) as Bonesaw McGee, so that alone makes him even cooler. While his WCW and TNA runs weren't all that amazing, his WWF run will forever be printed on the brains of millions of fans and what most people think of. R.I.P. Randy Savage "OOOOOOH YEAH! ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: SavageTygerwrote on 13.10.2023:[10.0] "Macho Man is my favorite wrestler of all time. He had everything a wrestler should have, charisma, talent, larger-than-life personality he was just nonstop action from bell to bell. Savage had amazing psychology and he was just the perfect professional wrestler in my opinion. I even liked him during the Team Madness run, while nowhere near the performer he had been even in the mid-90s the unhinged, lunatic persona was something I got behind. Randy will forever be considered a top 10-15 all-time great and for me, he is above everyone outside of Shawn Michaels and Kurt Angle. Long live the Macho Man!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: DangoDaisukiwrote on 19.09.2023:[7.0] "Meine Bewertung passt sich der Matchqualität auch hier im Matchguide an, ja er war gut, aber so gut nun auch wieder nicht. Charisma und so weiter hat er definitiv, aber für mich ist die Qualität bzw die Unterhaltung in Matches am wichtigsten. Da war er eben nur ganz gut und nicht mehr."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: celticinvaderwrote on 08.08.2023:[9.0] "One of the all time greats for a reason. As iconic as Hogan, but more adaptable, and could cut a better promo for sure. He could talk for days, he could work, he's been involved in pretty much all of the best matches of the golden age, just an absolute legend."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ViolenceBretwrote on 07.08.2023:[10.0] "Let me tell you something, the Macho Man is the perfect professional wrestler. He embodies everything about this great sport, and even had mainstream cross-over fame via slim jim commercials and the Spider-Man movie. Moreover, his matches hold up amazingly well, as an athlete he was no joke, having a background playing for the Reds baseball team. True Savage had his demons in life, but ultimately he never was shy about hiding his issues on-screen. In other words, Savage was the real deal, for better or worse. He could be sympathetic one minute, and a complete monster the next. Simply put, Randy Savage was a complicated man. A modern day Ajax The Great from Ohio. Sure his later stuff with TNA was slightly bland, but he knew when to call it a day and retire peacefully. RIP The greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: crs285wrote on 19.06.2023:[8.0] "One of the greatest in ring wrestlers of his generation. Changed wrestling the way he put together matches. His mic skills and charisma were amazing. He was a good commentator, but heart was never in it. TNA run was a mistake."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: wingnutzredux75wrote on 17.06.2023:"pound for pound greatest wrestler of all time....was a true wrestling star who lived his gimmick...with all the success he earned throughout his storied career imo didnt get the true push he deserved in his prime."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: AyoWrasslinwrote on 21.04.2023:[10.0] "Macho Man was way ahead of his time. His gimmick could work in any era. He was one of the greatest talker and in ring workers of all time. R.I.P. Macho Man THE PERFECT WRESTLER / 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Cyclopz007wrote on 31.03.2023:[10.0] "The all time greatest in the ring and on the mic. Never has anyone been so captivating. Forever my favourite wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: greaterdalewrote on 03.03.2023:[10.0] "He's my favorite promo ever to be honest. Like he's just one of the best to ever cut a promo and then he could back it up in the ring once the bell rings. In a better world he would have been the top guy in the 80s instead Hogan. But at least he was still pushed hard. It's insane that Vince let Macho man slip out of his fingers during the early 90s because he wanted him to retire from in ring competition. He wasn't even that old? and when he left for WCW he took his Slim Jim sponsorship with him that cost the Fed a lot of money. Besides the whole letting a generational talent leave for no good reason. Luckily for him and his fans he still had a great run in WCW and likely would have continued to wrestle in the early 2000s if he hadn't gotten injured on the set of Spiderman. Overall he's just an absolute goat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: kewf1988wrote on 02.03.2023:[10.0] "Randy Savage was an extremely charismatic wrestler who was amazing on the mic and wore colorful outfits, but was also extremely good in the ring, as shown by his match with Steamboat and his Warrior matches. A complete package."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: nothingleftinsidewrote on 24.02.2023:[10.0] "When you picture a professional wrestler in your head, you see the Macho Man. From top to bottom, the guy was the quintessential pro wrestler of the 80s and 90s. Second only to hogan in draw and appeal, Randy wrestled on top (or near it) for about 15 years, with some time off here and there. His in-ring was among the best of his era; only Steamboat, Flair, and Bret can you really say were better. His style demands crowd interaction, something that's been seriusly lost in the recent years. So many signature spots and taunts... Savage is always playing to the very last row with the volume knob turned up so much it broke off. You can tell it's hm just by the way he moves. Plus, the entire business has shifted towards the way he worked, for better or worse. He kept himself relevant as long as he could, and knew it was over when it was over. Then there's his cultural impact. The Slim Jim deal got him on TV everywhere, and got him a job in WCW. Commercials he shot in the 90s still air on TV. He's so awesome in Spider-Man, and his few voice roles are all worth checking out. The voice... perhaps *the* central part of his gimmick. And he just talked like that! His promos are some of the best of all time, the guy was just so good at putting them together. Beautiful, profound stuff. Dude really lived the gimmick. He provided a great foil to Hogan, and is responsible for the majority of Hogan's best stuff. Hogan's heels were typically one dimensional, but Randy always made things interesting, either friend or foe. Speaking of which; he was great as babyface or heel, another hallmark of a true all time great. He even made a point to put younger guys over whenever he had the chance. An all-time, top 5, rushmore guy... the highest of tiers is where he belongs. Top marks across the board- A worker, A+ promo, A+ gimmick/look. Seriously, it doesn't get much better than Savage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: CMFunk007wrote on 21.01.2023:[10.0] "This man was a charismatic badass. The Macho Man was second only to Hogan in popularity thanks to foresight to pair him with Hogan for the Mega-Powers storyline. His love story with Miss Elizabeth was one of the most touching things ever to grace wrestling. HIs feud with Jake Roberts after getting bit by that snake was intense and he's the only man to ever get a great wrestling match out of the Ultimate Warrior. I even enjoyed his run with the nWo and Team Madness with Madusa, Molly Holly, and Gorgeous George. Savage was a once in a lifetime wrestler and the world lost a great performer the day he died."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Der Galische Kriegerwrote on 14.01.2023:[10.0] "Quite possibly the greatest wrestler of all time. The intensity, the insanity that he brought into his gimmick of Macho Man Randy Savage was untouchable. What were our parents thinking letting us watch him coked to his eyeballs spitting out the craziest promos of all time. Technically, psychologically he was a genius, adding his agility into the mix. He worked best as a heel as it suited his intensity and craziness, and he was willing to sell. I actually hated him as a child, everyone was either Hogan, Warrior or Savage, I wish now looking back that I had of picked Savage. I was delighted as a young nipper when Warrior beat him in the career ending match. He elevated Hogan in the late 80's so his Hulkamania could last another few years, he had probably the greatest Wrestlemania match against Ricky Steamboat, he took a snake bite from Jake Roberts' snake and he just had quality match after match, promo after promo and was red hot for years. Still finding some of his early matches which is a joy to behold. Charisma hot, Mic Skills hot, Gimmick hot, Longevity hot, Overness hot, Psychology hot, Workrate hot, Technical Ability hot. 10+*"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: benh2wrote on 11.01.2023:[9.0] "Randy Savage was the ultimate showman. A good but not great wrestler but the greatness all came from the bravado. From flashy gear to insanely captivating promos, you just couldn't help but be invested in anything he did. And when the story finally made it to the ring, he was more than adequate enough to back it up, which a lot of wrestlers of his ilk weren't able to do."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: MainEventMasterwrote on 02.12.2022:[7.0] "Savage was good, had great adaptability, but unfortunately was sucked up by the steroid craze, and that kind of hindered his ability."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: sbg2022wrote on 11.11.2022:[10.0] "Quite honestly, the best of the best in WWF and WCW. His feuds with guys like Ric Flair, Jerry Lawler, Hulk Hogan & Diamond Dallas Page are legendary. Colorful, charismatic and taken from us way too soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: CurlyHairMetalPunkwrote on 22.10.2022:[10.0] "Randy Savage was the absolute greatest professional wrestler from the Golden Era of the WWE. When the Macho Man came down to the ring for a match or backstage for an interview, a viewer never forgot it because he always wore some new and incredible crazy outfit that captivated the eyes of billions of people. When the Macho Man spoke no one ever forgot it because he captivated the ears of all who listened to him speak. And when the Macho Man wrestled in the ring, nobody ever forgot what they were seeing as Randy Savage was just leagues above just about every other professional wrestler in the ring from his time in the WWE. Before Shawn Michaels, the Macho Man was the original Mr. WrestleMania in that he left the WWE fans with career defining moments that made us feel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: RavenCrow75wrote on 06.10.2022:[7.0] "For the most part I will be basing my Wrestler ratings on five criteria four of which are based on in-ring ability and the last on charisma. I believe these five criteria are pro wrestling's version of Tommy Lasorda's criteria of "five points" in baseball. For pro wrestling those five criteria are power, speed, technical ability, hardcore & charisma. Randy Savage's scores: Power: 7 Speed: 7 Technical: 5 Hardcore: 9 Charisma: 9 for a total of 37 and an average of 7.4 rounded down to 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Giantfan1980wrote on 05.10.2022:[8.0] "Savage was right up there with Hitman, Perfect, and Michaels, but by 1993/94 he was losing some steam as years of injuries started slowing him down. He did have a resurgent feud with DDP in 97 but by early 98, his knees were shot and he just basically limped along putting in mediocre performances until taking time off. He came back for a few months in 99 but he was a shell of his former self. Still one of the best dressed and promo guys of his time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "While Hulk Hogan was the face of 80s wrestling in America, I think the Macho Man was better than anyone else from that era, and was also more charismatic than Hogan just by voice alone. A true icon of the business that will always be fondly remembered."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Conquistador37wrote on 06.05.2022:[10.0] "What more can you say about Randy Savage that hasn't already been added? If a few of these remarks have been uttered by others, I am both sorry for my redundancy, but not sorry because they SHOULD be noted: He took Ricky Steamboat from relative obscurity (in the eyes of the mainstream audience) and put him on the upper echelon of all time talent over night. Yes everyone knows the match is a classic, but the most important element is the positive impact it had on The Dragon's career. He dragged the absolute best (that anyone possibly could) out of Hulk Hogan in their "The Mega Powers Explode" Wrestlemania 5 match. One more time - the best match Terry Bollea ever had was 100% because of Randy Savage; and he was severely injured that night, even risking amputation of his arm! (! ) It was Randy Savage that made people hate Jake Roberts in the WWF, NO OTHER NAME can say the same. The fans wanted to adore Jake Roberts, up until he hurt Randy Savage! Taking a cobra bite like an absolute BOSS. He was the launching pad for Sherri Martel's career to truly take off, positively impacting the career trajectory of one Shawn Michaels some years later. So many from last century got their big rub from Randy! He came into WCW and was fairly well received - when goobers like Hogan were basically instantly ostracized by the die hard southern fans, do not sleep on this fact! The world LOVES/LOVED Randy Savage and for good reason, he was able to tap into the deepest parts of us all when we wouldn't/couldn't allow others all while making the sport/product much better. He also had a late career resurgence that catapulted Diamond Dallas Page into the stratosphere and opened eyes wide all over again. Remarkable longevity, even post mortem! Now an American institution/significant portion of pop culture. A solid two hundred and fifty with no hesitation, but eh - we can only go to 10 here. DIG IT!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Tomas Cunhawrote on 22.04.2022:[10.0] "This guy fucking rules. He is one of (if not the) more entertaining characters in the entire history of wrestling. There are so many memories of Randy Savage that come to mind within seconds. Plus, a spectacular wrestler who could have awesome matches against literally anyone. Terrific runs as IC and World Champion. He was the man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: MorbidAxiswrote on 07.04.2022:[7.0] "I was never a HUGE fan of Savage in the ring. His promos were always fire though, and I 1 billion percent liked him over the likes of Hogan."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Savage was one of the first wrestlers to be complete all around with mic skills, in-ring character work, technical prowess, and the versatility to portray both a fiery babyface and unstable tragic heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: rishabhwrote on 30.01.2022:[10.0] "Randy Savage might just be the most complete wrestler of all time. I seriously can't think of anything this guy lacked. He was an amazing wrestler who could carry anyone to a great match. He had an awesome look and oozed charisma. His mic work is untouchable and his voice can never be forgotten. Everything he did was GOLD. His finisher is just an elbow drop off the top rope but it's one of my favorite finishers of all time. There's no doubt what score Macho Man gets.. OH YEAHHHHHHHHH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: GriffinXwrote on 23.01.2022:[10.0] "Simply put one of the greatest to ever do. People that have never seen wrestling know who Randy Savage is. He brought the passion and intensity you want. So many classic matches and maybe the greatest ever"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: TigerDiverwrote on 05.01.2022:[10.0] "Without a shadow of a doubt, my all-time personal favorite, in not only wrestling, but perhaps in every form of entertainment. The more I watched him, the more I just appreciated him. He's such an enjoyable guy to watch both in and out of the ring, on commentary, wherever you name it. Tremendous intensity, explosive wrestling style, entertainingly over-the-top promo, sheer amount of charisma, legendary character, recognizable name in pop culture, man's probably got it all. It's even more heartwarming to know that he's an even better human-being on top of this. What a great, great guy. Gone way too soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: OnlyHalfTheEffinShowwrote on 04.11.2021:[10.0] "Macho Man was the ultimate utility top card guy. As in, there was virtually no role where he didn't feel out of place except perhaps in a dedicated tag division. Need a star to hold a midcard title to help it feel more important and to help build a division around it' Randy's your guy. Need a main-event caliber talent to hold the world title' Randy's your guy. Want a blood-feud away from the title as the two stars use their story-telling and charisma to get the storyline over' Randy's your guy. It's not an exaggeration to say there was nothing in wrestling he couldn't do at least moderately well. In ring he was spectacular, an amazing technical wrestler who, in-conjunction with his amazing story-telling in the ring, always stood to steal the show at any event no matter what position in the card he occupied. But where Randy perhaps shined most was his innate charisma. *No one* can do a promo like Randy Savage, his intensity is literally unmatched and you have to wonder if Randy was ever even hired at the promotions he worked, or if he just walked in and started to wrestle and cut promos. His "Cream of the Crop" promo in WWF is quite possibly the best and one of the most well-known wrestling promos of all time. Randy was a one in a million talent who could do it all, a true GOAT, who's career could've been unprecedented, if it weren't for Hogan constantly trying to keep Randy stuck in his shadow, Randy could've had an even more stellar career. SNAP INTO A SLIM JIM, OHHHH YEAH"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: YourKingMobwrote on 20.08.2021:[10.0] "My personal G. O. A. T. of US wrestling for the 80's era, more so than Hogan, Warrior and only barely edges out Steamboat from that era. The only reason Flair isn't higher because Flair was a bigger star half a decade behind him. Everything you put him in was great. Better as a heel, but a star as a face, had just the perfect edge of self-satire to his promos that helped cut through the pro-wrestling nature of them. A great look, aura, stellar in the ring, all around 10s except for his personal life."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Barbawrote on 31.07.2021:[10.0] "The best wrestler of his generation, without a shadow of a doubt. athletic, agile, fast, technical, and with a strong charisma almost comparable to that of Hulk Hogan. legendary his match at Wrestlemania 3 against Ricky Steamboat, against Hulk Hogan at Wrestlemania 5, and Ultimate Warrior at Wrestlemania 7. Great character and feud also in WCW with DDP, Kevin Nash, and the usual Hogan. LEGEND"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: BrayanLaPrewrote on 13.07.2021:[10.0] "One of the truly iconic characters in professional wrestling history, "Macho Man" Randy Savage transcended the industry. With legendary promos, phenomenal character work, classic matches, and iconic storylines, Savage had it all. His WrestleMania matches against Ricky Steamboat and The Ultimate Warrior were iconic, and his story with Miss Elizabeth ranks amongst the greatest of all-time. That pushes him from a 9 to an easy 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Daigotsuwrote on 19.06.2021:[10.0] "As great as Savage was, I think he was underappreciated. While he was overshadowed by Hogan, he was clearly the superior wrestler and talker. He was as much a total package as anybody I've ever seen. His promo style was truly one of a kind, and his work in the ring was phenomenal. The Macho Man is truly an all-time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Rodycaz IIwrote on 26.05.2021:[10.0] "Arguably the most complete performer in the history of the business. Charisma off the charts, amazing promo, great physique/look and a really good in-ring worker. Truly a one of a kind talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: medousewrote on 14.05.2021:[10.0] "There was never a guy more charismatic than Macho Man Randy Savage. He lived his crazy gimmick. He had great in-ring skills, could cut hell of a promo and worked perfect both as babyface and heel. His career is worth book or documentary, in fact there are plenty of these already. His relationship with Miss Elizabeth is one of the greatest love stories in showbusiness history. As much positive feelings I have about this guy I also feel sad. I feel sad, that he was both a crowd's beloved entertainer, but also a very tragical character - especially his personal life. Unsuccessful marriage with Miss Elizabeth and his tragic death was a truly miserable end for both of his life and career..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: BritishSteelwrote on 09.05.2021:[10.0] "Der Macho Man/ Macho King ist definitiv einer der absolut besten aller Zeiten! Bei ihm stimmt einfach alles: Sein Background, seine Leidenschaft fürs Wrestling, sein technisches Können, das er von der Pike auf gelernt hat, die Physis, seine Lust an jeden noch so irren Stunt, seine Einstellung, sein Larger-than-Life-Gimmick, dass er 24/7 lebte. Absolut niemand davor und danach konnte so überzeugend und mitreissend den wilden Mann machen wie er. Einer der ganz wenigen, die es fertiggebracht haben, als Face wie auch als Heel von den Fans geliebt zu werden. Und wie wir während seiner Langzeit-Fehden mit Hulk Hogan Miss Elisabeth geliebt und Sensational Sherri gehasst (naja, eigentlich auch geliebt) haben. Was für ein Vorbild für JEDEN Wrestler. Einer, der ganz gewaltig fehlt. Oooooh Yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: AnBwrote on 17.04.2021:[9.0] "Fantastic in the WWF, and not so bad the first couple of years in WCW. Not a lot of wrestlers that can so easily pull off face and heel, but Macho Man could. The whole "off his rockers" Randy Savage thing in WCW got to be a bit too much for me eventually, but god damn he did it well."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Brett1980wrote on 23.01.2021:[9.0] "One of the greatest to step foot in a WWF ring. Over the top insane promos a style that was rough around the edges. As a heel would be great at stalling. He was a good flyer in the sense he jumped of the top rope and it didn't look artistic or fancy but it looked like it was gonna hurt. WCW work was nowhere near the level of his earlier work."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: shittylittlerasslinwrote on 14.11.2020:[6.0] "Pretty basic inside the ring but a great character outside of it. His accomplishments speak for himself, as he turned out to be world champion in the two biggest sports-entertainment-esque promotions he was signed to."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: joshjackalwrote on 14.05.2020:[10.0] "The Macho Man is and probably always will be my favorite wrestler of all time. He was just the total package: great in the ring, great promos, massive charisma, could work as a heel or a babyface (though I always preferred him as a heel). Even after he was pretty much over the hill, he was still hugely entertaining, particularly in his legendary feud with Diamond Dallas Page in 1997. The word "legend" has been cheapened in wrestling these days, but Savage was a TRUE legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: qbortwrote on 01.05.2020:[10.0] "Art thou bored? Snap into a slim jim! Ooh yeah... Macho Man was cream of the wrestling crop, brother. Hulks runnin from Macho, so I've heard. Be a Man, Hogaan!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Der Macho Man Randy Savage war in Ring technisch zu seiner Zeit einer der besten und hat viele Klassiker geliefert wie z. B gegen Ric Flair, Hulk Hogan, Ultimate Warrior etc. , hatte mega gute Mic Skills mit einer sehr einzigartigen Stimme und war dazu sehr Charismatisch und brachte sein Gimmick perfekt rüber. Alles in allem eine absolute Legende und hat sich die 10 Punkte komplett verdient. Oh Yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: FrankSiverowrote on 02.02.2020:[10.0] "Der Macho Man ist einer meiner absoluten Lieblingswrestler. Er war technisch vorallem in den 80iger Jahren und Anfang der 90iger Jahren großartig. Lieferte zeitlose Klassiker gegen Ricky Steamboat, Ric Flair, Hulk Hogan, Ultimate Warrior etc. Eine Charisma Bombe mit einem einzigartigen Look, der aus der Menge stach wie kaum ein anderer. Besaß ein großartiges Mic Work, was ihn in den 90igern am Kommentatorenpult ebenfalls sehr unterhaltsam machte. Er wusste wie er die Zuschauer begeistern konnte. Zurecht eine Legende, die man nie vergessen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Excellence of Executionwrote on 04.11.2019:[9.0] "Der Paradiesvogel in den Main Events der späten Achtziger bis Mitte der Neunziger. Im Main Stream zu jener Zeit sicherlich einer der besten Worker, der mühelos als Heel oder Babyface agieren konnte, ohne sich groß verbiegen zu müssen. Für mich tatsächlich der möglicherweise beste Allrounder aller Zeiten, dem man auf seinem Zenit keine Schwächen nachsagen konnte. Sein überdrehter Charakter war nicht immer mein Bier, was aber wirklich das Einzige ist, das mich hier von der Höchstwertung abhält. Selbst Hogan konnte seine Karriere nur bedingt überschatten. Savage ist ein Kandidat, bei dem ich mir sicher bin, dass er Hogan dauerhaft als Babyface hätte ersetzen können, ohne dass dies kommerzielle Einbußen bedeutet hätte. Hogan wusste schon, warum er Savage so ein wenig sabotiert hat (und das hat er, das ist für mich überhaupt keine Frage)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: game18wrote on 30.10.2019:[7.0] "Being a newby wrestling fan I am not that particularly impressed with Randy Savage as a superstar. His matches though excellent for his era simply doesn't stack up to the great matches I've seen from modern day wrestles as well as a few past legends. His promo work is great but not all time great. So though I can appreciate the importance of Randy Savage as a Wrestler as well as legacy in wrestling, I cannot give a higher rating than a seven."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[10.0] "An incredible character that rivaled the likes of Hogan, but he also had the in ring skillset to be an amazing gem to watch. A voice & presence that will be forever remembered in the wrestling world & beyond."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: LandonRyanWyattwrote on 30.01.2019:[10.0] "A pioneer in the WWE, one of the greatest showmen ever... Unveliveable charisma, and undeniable heart, his matches with Steamboat, Warrior, Hogan and Flair are legendary. Very entertaining in every way."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: zephyrwrote on 08.01.2019:[9.0] "One of the few shining examples of great in-ring ability during an era dominated by all-American muscle heroes who sucked at wrestling. Tremendous talent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: JEK 1991wrote on 13.12.2018:[10.0] "One of my favorites of all time. Very athletic and entertaining! His promos were amazing. He is way better than Hulk Hogan. OH YEEEEAAAHHH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: RatingsMachinewrote on 01.11.2018:[9.0] "Randy Savage was one of wrestling's more colourful personalities. Even as late as 1997, he could still deliver his part of an excellent match."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Steamboat2511wrote on 01.10.2018:[9.0] "Randy Savage ist für mich eine wahre Wrestlinglegende. Im Ring sind mir zahlreiche starke Matches (z. B. gegen Steamboat) in Erinnerung. Eines der frühen Beispiele, für einen Worker der Technik und Persönlichkeit zusammenbringt. An Persönlichkeit stand er Hulk Hogan kaum etwas nach, war eine wirklich bemerkenswert populäre und extrovertierte Person. Am Mic durchaus gefällig, auch wenn mir da noch bessere einfallen. Auf jeden Fall eine ganz große Nummer der 80er und 90er und bleibende Legende."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Cameron621129wrote on 18.07.2018:[10.0] "One of the best wrestler in ring of his Era.  One of the best promos of his Era.  One of the most iconic wrestlers of all time. One of the most iconic voices of all time. Some of the best adverts of all time. A true superstar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Gauntlet84wrote on 14.04.2018:[10.0] "One of the greatest showmen of all time. Along with Hulk Hogan and the Ultimate Warrior, he was my favorite as a kid. Just a great entertainer and as charismatic as they come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Viper99wrote on 19.03.2018:[9.0] "Vom aussehen her vielleicht der Star der Golden Era, welcher am meisten heraus gestochen ist. Randy Savage war ein sehr guter In Ring Worker, Charismatisch und auf seine art ein sehr guter Micworker. Er verkörperte sein Gimmick perfekt. Er war das Gimmick. Er wurde nie der große Star, da er ein recht kleiner Mann in einer Era voller vollgepumpter Bodybuilder war. Hogan hat ihn klar überschattet was Overnesse anging und auch in Warrior investierte man wesentlich mehr als in Savage. Er wird aus diesen gründen auch oftmals bei den All Time Legends vergessen. Schade."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Wrestling Foreverwrote on 16.11.2017:[10.0] "Absolute Legende was war ich geschockt als ich erfuhr das er verstarb. Hatte ein großes Problem das viele seiner Kollegen bestätigten. Er war privat sehr freundlich aber furchtbar eifersüchtig wenn jemand seine damalige Frau Miss Elizabeth mehr als nur anzusprechen versuchte. Über die Trennung mit ihr ist er auch nie richtig hinweggekommen und als sie starb war er zusammengebrochen. Im Ring natürlich super, Top Outfits, die Promos mit seiner Stimme und die Ringqualität. Viele denke immer noch zwischen ihm und Hulk gab es als Randy noch lebte böses Blut aber die beiden haben sich wieder versöhnt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ianlapierrewrote on 04.11.2017:[10.0] "Savage is arguably the greatest all-around wrestling entertainer in history. Everything about him was iconic. He was always must-see-tv. He could wrestle 5 star matches. He could cut the best promos. He had the flashiest ring attire. He was one of the biggest draws of his day. He always stole the show and routinely outdid Hogan each Wrestlemania. In his prime, he was the company's biggest workhorse. And he wrestled 30 years! Just imagine if his career started in 1985 (rather than starting at 33 years old). He is still vastly underrated by a large number of fans who discount WCW. As well as others with short term memory who complain that he wasn't one of the best because he never returned to the company in the 2000s for spot appearances on a RAW, a Royal Rumble or at any Wrestlemania (like the rest of the top 10 or 11 ever: Hitman, Shawn, Taker, Austin, Rock, Flair, Hogan, Bruno, Sting)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Big Blue Machinewrote on 02.10.2017:[9.0] "Charismatic, controversial, outstanding in the ring, entartaining and funny at the mic. Randy Savage was ten years in the future in his time. If we have people like The Rock and CM Punk, we have to thank him and his incredible abilities."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: taabr2wrote on 12.09.2017:[10.0] "The second biggest star for the WWE in the 80s. And when first place is Hulk Hogan, second isn't bad. Randy Savage was just the full package. A charimatic character and a great worker too. In fact I would rate Savage as the best worker for WWE during the 80s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ErycK24wrote on 25.06.2017:[9.0] "Savage was very good in the ring and that will always be appreciated but Savage was larger than life. His incredibly intense promos and his flashy outfits and ring attire made the man an icon. Savage's wrestling style and moveset was ahead of his time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: flashbackwrote on 06.06.2017:[10.0] "Quite possibly the GOAT… this guy had it all, and by all accounts he was a good guy to boot. The charisma, the mic work, the ring work, those crazy outfits - just all around one of the most entertaining men to ever step into the ring. He was a one-man show, a spectacle to be had all on his own. Some of my earliest wrestling memories were of Macho Man turning on Hulk around Wrestlemania 4. I was devastated because I loved the Super Powers and couldn't handle Macho turning into a bad guy. Despite how sad I was, I still couldn't bring myself to hate him, he was just that amazing to watch, and SO believable. Now hearing Lanny talk about how he wanted to work an angle with HBK, which was sadly shot down by the office, you have to wonder what could have been. To me that sounds like it could have been one of the greatest programs in the history of the business. We'll never know. Still, nothing can taint macho's place in the industry. You cannot discount how big of a part Macho played in Hulk's WWF run in the 80's - without Randy, Hulkamania in the WWF would not have been as big as it was. Had he not existed during Hulk's time he would have been THE top guy, unquestionably. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: EricSammartinowrote on 18.05.2017:[9.0] "Regarding the disrespectful kid who gave the guy a 4, I suppose he needs to re-take his "Wrestling 101" lessons. Long live the bombastic Poffo, a great among greats."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: awsmpwniewrote on 11.05.2017:[10.0] "Kann garnicht anders als hier eine 10 zu geben. Er ist DER Lieblingswrestler aus meiner Kindheit.  Ich war damals einfach ein riesen Fan von ihm und werde es auch immer sein. Er ist einfach eine Legende. R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: LSEstrelawrote on 15.04.2017:[10.0] "A phenomenal athlete and a amazing talker. It would have been a way better choice to lead McMahon's revolution rather than Hogan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Blood Pumpwrote on 07.04.2017:[8.0] "A complete professional and a genius match choreographer. He set trends and gave us one of the true great characters of the 80s. He was the total package, but sadly was only ever put to the main event to make Hogan look good in the end, which is a damn shame because you could build the franchise around this man. Dig it!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Real Raterwrote on 02.02.2017:[9.0] "In-Ring Skills:Einer der besten Performer Ende der 80er und Anfang der 90er. 10/10 (50%)  Promos/Schauspieltalent:Hier nur ganz ok. 6/10 (25%)  Charisma/Erscheinung/Gimmick:Nicht so Charismatisch wie Warrior oder Hogan aber trotzdem immer vorne dabei. 9/10 (25%)  Sind dann insgesamt 8, 75 Punkte für Macho Man.   = 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Coltwrote on 15.01.2017:[10.0] "Sein Status als absolute Legende kommt nicht von ungefähr, also kann es gar keine andere Wertung als 10 Punkte geben. Der Macho Man war neben Hogan und dem Warrior der dritte große Star der Golden Age-Ära, verglichen mit den anderen beiden war er zwar kleiner und schmächtiger - dafür aber ein besserer Wrestler und auf der Matte wie in der Luft sehr überzeugend und technisch stark. Lange bevor Bret Hart und Shawn Michaels in der Single Division auf sich aufmerksam machten war der Macho Man der erste Star der seine Gegner mit spektakulären Attacken vom obersten Seil außerhalb des Rings überraschte. Ich muss zugeben, dass ich nie ein Fan von Savage war was daran lag, dass er u. a. mit meinen Lieblingen (Ultimate Warrior, Razor Ramon) fehdete. Trotzdem ist auch mir sein Charisma und sein schillernder Style sofort aufgefallen. Hätte er es in die Attitude-Ära geschafft wäre er auch dort eine große Nummer geblieben. Nicht ohne Grund einer der populärsten Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: rjsbx11wrote on 07.01.2017:[10.0] "The Rock to Hogan's "Austin", the CM Punk to Hogan's "John Cena". Savage was a hell of a worker in the ring, putting on some of the best matches and feuds in wrestling history, and he was an absolute beast on the microphone. He was wild, intense and full of personality and charisma. Savage was the original Mr. Wrestlemania, having some of the event's best matches. Despite having some infamous real life rivalries and rocky relationships with other figures in the business behind the scenes, Savage has always remained a beloved icon for fans of wrestling.  I think he was truly in a class of his own. I think he was one of the last great larger-than-life personalities to hit the business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Mizzle Assault Antwrote on 01.12.2016:[10.0] "Definitely one of the greatest of all time. Hugely charismatic, he also had a lot of ring ability in an era where a lot of top guys didn't. His huge personality and great matches speak for themselves, plus his promos are just damn fun to listen to."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: BigPoppaCage123wrote on 08.10.2016:[10.0] "OHHHHH YEAHHHH The Macho man was the Greatest of all time in my opinion. Excellent Ring Skills and a Wizard on the MIC, Savage is a legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: SlickDevilSWPwrote on 06.10.2016:[10.0] "My absolute favorite wrestler as a kid, over Hogan and Warrior, and now is all-time top five. He still had it deep into his WCW career. He was the original "Mr. WrestleMania" as his performances in the first 10 WMs, aside from his mixed tag team match at WM 6, really stand out. In 1995-97, he showed he still had it in WCW with a tremendous feud against Ric Flair and was instrumental in the fight against the New World Order. For me, his highlight will always be WrestleManias 3 and 4, and will always be remembered as an all-time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Squared Circlewrote on 27.09.2016:[9.0] "Just fantastic.  The complete package.  He only misses a perfect 10 because he really didn't have the necessary size to be a credible threat to Hogan, but he was strong enough not to be eclipsed by Hulkamania.  He managed to find his role in it and actually enhanced Hulkamania.  He thrived in Hulkamania as friend and foe.  A high flyer, who could mat wrestle and was fantastic on the mic, he was a pleasure to watch.  He lacks the signature wrestling moments that Hogan had, Reversing the Figure Four on Flair, Suplexing Boss Man off the top of the cage (OMG! ) and of course the Andre Slam.  His most memorable moment was the Mega Powers Handshake.  He also crossed over well to the WCW as an older wrestler.  Forgotten was his great rivalries with Tito Santana and the Honky Tonk Man, prior to his world championship run.  His body of work is just insane, but his prime time exposure was still under the Hogan umbrella which costs him the perfect 10.  RIP Macho, OHHHHHHHHHH YEAHHHHHHH!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Luv all wrestlingwrote on 15.09.2016:[10.0] "The Macho Man Randy Savage was the cream of the crop in every way possible. He had charisma, good heel and face work, a unique look, great matches and was involved in many amazing storylines."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Summerslam Fan 01wrote on 01.08.2016:[10.0] "Eine absolute Legende.  Damals zu seiner Zeit perfekt im Ring, am Mic einer der besten.  Sein Charisma war unglaublich stark.  Schade das er seine HOF Aufnahme nicht selber halten konnte.  RIP Macho Man"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Sick Lebowskiwrote on 28.05.2016:[10.0] "War früher zu meiner Anfangszeit einer meiner Lieblingswrestler, hauptsächlich wegen seiner bunten Outfits. Aber auch seine verdammt gute Art bei Interviews und seine Qualität im Ring ist mir damals schon aufgefallen. Wenn man so überlegt, ist er schon an sehr vielen Matches beteiligt, die durch seine Mithilfe zu den spannendsten Matches der WWF gehörten. Daumen weit nach oben für den Macho Man!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: blackmileswrote on 20.05.2016:[9.0] "Heute vor 5 Jahren ist eine absolute Legende verstorben. Er hate so viele großartige Momente, wie das Match mit Steamboat, das Team mit Hogan und und und. Er hatte seine WWF-Karriere vielleicht sich ein bisschen selbst verbockt, um noch höher in der "Legendenskala" angesiedelt zu werden, aber dieses Charisma, seine Micskills und auch seine In-Ring Leistungen haben ihm zum einer der besten Gesamtpakete seiner Zeit gemacht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: EGeraldhuebnerwrote on 26.04.2016:"Wie z. B. auch Hogan oder Flair ein "Zeiger" seiner wenigen Moves ... war im Unterschied zu diesen beiden anderen hier aber viel öfters in der Luft (High Risk - Manöver) zu finden gewesen ... sowie meißtens richtig gut unterhaltend (Schow - Effekte) ... tja, und für den "Rest" sorgte hier - natürlich - Miss Elizabeth ... die konnte zwar oftmals nur besorgt oder auch ängstlich - verschüchtert dreinschauend herumstehen, aber war immer sehr glaubhaft wie überzeugend dabei ... und etwas für das (vorwiegend männliche) Auge bzw. eine "echte" Diva war sie ja sowieso zu ihren Glanzzeiten, - mit durch sie wird er eines Tages bestimmt in die Geschichte eingehen (aber nur die beiden und vor allem als "Team" zusammen)."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Mean Smark Callouswrote on 16.04.2016:[9.0] "Savage's promos were always hilarious, and Jesus was he intense. also apparently color-blind judging from his outfit choices."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Cybermikewrote on 22.01.2016:[10.0] "Ich hab mich seit seinen TNA Auftritten nur noch wenig mit ihm befasst, jetzt habe ich wieder alte Sachen aufgefrischt und da kam mir einiges wieder in Erinnerung, gibt glaube ich wenige die das Komplettpaket so hatten wie er!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: DanielBryan1986wrote on 03.01.2016:[7.0] "Schaut man auf die Jahre in der WWF/E oder die Anfangszeit der WCW wäre Savage eine Klare 10 geworden. Dennoch wurde er danach verheizt. Für mich wäre er sicherlich der bessere Gegenpart zur NWO geworden neben Sting. (Er hätte die Rolle einnehmen sollen, die Luger dann hatte). Für mich Hammer Jahre in der WWF, der aber nie aus dem Schatten von Hogan kommen durfte. Gute Mic Skills, gutes Match Selling, aber dennoch zu Lebzeiten nicht erreicht was er erreichen konnte."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: roy-harperwrote on 12.11.2015:[9.0] "Der erste Wrestler, den ich gehasst habe und dann "geliebt" habe. Stand leider immer im Schatten eines Hulk Hogans. Seine Interviews unvergessen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Mandzukic9wrote on 14.09.2015:[8.0] "Mein absoluter Lieblingswrestler aus dieser Generation! War unglaublich unterhaltsam und im Ring mehr als solide. Schade, dass ich ihn nicht live erleben konnte. RIP, Randy !"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ShooterMcShootwrote on 10.08.2015:[10.0] "Colorful personality and exciting to watch in the ring. Slowed down a lot when he got older, but Savage was always one of my favorite performers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Kevin434wrote on 14.06.2015:[10.0] "UHH YEAH, mein Lieblingswrestler der 80-iger Jahre aus der WWE. ^^ Im Ring workte er immer gute Matches, seine Interviews sind legendär und charisma hatte er genügend, seine Backstage Arbeit war gut, er sagte es selber das es ihm egal war ob er gewinnt oer verliert, hauptsache er unterhält mit seinen Matches die Zuschauer, und das hat er auch gemacht. Das schätze ich an ihm, schade das er von uns gegangen ist. R. I. P. Macho Man, danke für alles!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: MachoManwrote on 03.06.2015:[10.0] "Macho Man is in my opinion the quintessential professional wrestler. He is a perfect 100% in every category that matters in sports entertainment. There will never be anyone like him. R. I. P. Randy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: DanTalksRasslinwrote on 26.04.2015:[10.0] "A ring general capable of having a good match with anyone, an iconic look, charisma for days.  One of the few wrestlers to cross over to being a recognizable part of mainstream popular culture.  Needless to say, he's one of the best ever.  Is there only one correct rating here?  OOOH YEAH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Wrestling Fan Man 90wrote on 01.03.2015:[9.0] "Ein fantaszischer Wrestler der Oberen riege, der nun entlich in die lang verdinte HOF aufgenommen wird! Für mich einer der 20 besten Wrestler aller zeiten der seiner Zeit voraus gewesen ist! Er schrappt nur knapp an der 10 Punkete Marke vorbei ist aber dennoch eine Absolute Nr 1. seiner Zeit, in der WWF in den 80ern für mich persönlich mit dem Worrior die Nr 1! Ohh Yea!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ROHfan99wrote on 06.12.2014:[10.0] "Ich hab schon vielen eine Wertung von 10 gegeben, aber dieser Mann, "Macho man" Randy Savage, verdient 100 Punkte! Randy savage ist für mich eigentlich der Perfekte Wrestler, und einer der besten die es im Wrestling je gab! Er war perfekt. Im Ring war er richtig gut, er hat viele gute Matches geworkt und war immer unterhaltsam, konnte seinen Gegner immer stark darstellen, und brachte seinen Charakter auch in den Matches immer gut rüber. Seine Promos und Interviews bleiben unvergessen, für mich sind das immernoch die besten Interviews aller zeiten, nie wird man sein "UH YEAH", und allgemein seine Sprechweise vergessen. Er war auch ein Mann, dem es IMMER, egal ob als Champion oder nicht, darum ging das er andere talentierte Wrestler pusht, und das seine Fehden immer unterhaltsam sind, unabhängig davon ob er gewinnt, oder nicht. Und davon können sich Viele Wrestler (hust... Cena... hust) eine Scheibe davon abschneiden. Als Kommentator hat man ihm auch sehr gerne zugehört. Auch als seine große Zeit bei der WWF vorbei war, machte er immer eine gute Figur, beim Autogramme geben oder Kinder besuchen und glücklich machen. Er war backstage laut seiner Familie und Freunden ein guter Mensch. Er war praktisch der "Perfekte" Wrestler. Es gibt absolut NICHTS an ihm auszusetzen. Und man kann nicht sagen das er ein schlechter wrestler war und das er nur ein paar Sprünge vom Seil gezeigt hat. Früher war es nunmal so das das Wrestling noch nicht mit highflying moves ausgeprägt war, und für die frühere Zeit war er ein SEHR guter Wrestler. R. I. P. Macho Man, wir werden dich nie vergessen. Macho Madness lives forever!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Y2J316wrote on 28.11.2014:[10.0] "Ooooh yeah im the macho man Randy Savage, dont make a big mistake get what the madness wants, thats what you wanna do oh yeaah. Super am mic und auch im ring ein Super Wrestler. Schade das er von uns gegangen ist, denn ich mochte ihn immer sehr. RIP Macho Man"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: MachoMark87wrote on 26.11.2014:[10.0] "Randy Savage was hands down one of the best overall packages the WWE has ever seen. It's a crime how it took them this long to start giving him his proper praise. He was one of the backbones of the company that still exists today and as a life-long fan of Mr. Poffo, he is finally getting his due and it's good to see. History Beckons the Macho Man!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: WrestleArtswrote on 24.10.2014:[10.0] "Dank seiner Ausstrahlung, seines Charismas und seines innovativen Micworks wurde der Macho Man einer der größten Stars der Neuzeit, der es über die Grenzen des Wrestlings hinaus nicht nur zu Berühmtheit, sondern zum Kultstatus schaffte. Und das trotz seiner für damalige Verhältnisse geringen Körpergröße/Statur. Zusätzlich wrestlerisch noch top, ein Total Package."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: zackwoowoowooryderwrote on 03.10.2014:[10.0] "Er war eine der größten und schillendersten Figuren, die je in der Wrestlingwelt unterwegs waren. er hat super Fehden mit auf die Beine gestellt, wie z. B. gegen Steamboat oder an der Seite von Hulkster gegen Andre The Giant. Am Mic wurde er von kaum einem in seiner Zeit übertroffen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: 8BitLegendwrote on 22.09.2014:[7.0] "Der Macho Man wäre mir besser in Erinnerung geblieben, hätte ich nur seine WWF Karriere verfolgt. Der WCW-Run war seltsam und seine privaten Aktivitäten noch mehr. In meiner Kindheit war er jedoch einer meiner Top 5 Wrestler, wenn nicht sogar Top 3."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ClassicWrestlingFanwrote on 20.05.2014:[10.0] "Eine der besten Wrestler aller Zeiten! Technisch hoch begabt und in seinen Matches hat bis in kleinste Detail immer alles gepasst. Seine Fehden mit Ultimate Warrior, Hollywood Hulk Hogan und Ric Flair sind legendär. Ein toller Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Macho Manwrote on 19.04.2014:[10.0] "Für mich der beste Wrestler aller Zeiten.  Seine Kämpfe sind legendär.  Er war für mich ein Vorbild, Held .  Er hätte es mehr als verdient öfter Champion zu sein.  Aber leider stand er immer im Schatten dieses Hogan.  Er wusste wie er die Massen begeistern konnte.  Schade das er so früh verstorben ist.   R. I. P. Randy"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Macho Madnesswrote on 28.03.2014:[9.0] "Unvergessen, seine Tête-à-têtes mit Mean Gene Okerlund. NO MORE QUESTIONS!   RIP Macho"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Undertalkerwrote on 27.03.2014:[8.0] "Er war eine der schillerndsten, charismatischsten Gestalten des Wrestlingbusiness. Der Macho Man besaß eine unheimliche Ausstrahlungskraft und daher waren seine WWE- sowie auch seine WCW-Heavyweight-Titel-Regentschaften völlig berechtigt. Ich persönlich finde ihn im Ring nicht so ansprechend, wie es die meisten tun. Seine Double-Axehandles und sein Elbow vom obersten Seil waren zwar immer schön anzuschauen, aber es war halt doch ständig das Gleiche, und ansonsten zeigte er eigentlich nicht so viel. Dieses Manko konnte er jedoch durch seine Verbissenheit und Intensität im Geviert etwas abschwächen. Kurz gesagt: Sein Charisma war atemberaubend und seine Wrestlingskills solides Mittelmaß."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Phenomenal91wrote on 26.02.2014:[10.0] "Forget Hogan! The greatest wrestler of the Golden Era is the Macho Man. Nobody could touch him when it came to look, talk, and, of course, wrestling. He was a legend, and a very important part of pro wrestling has gone with him. RIP Mach. Oooh yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Basket Casewrote on 30.01.2014:[10.0] ""Gotta have beef? Gotta have spice? Need a little excitement? Snap into a Slim Jim! " Starker Wrestler, tolls Charisma, der Macho Man war win ganz Großer des Business und ein sehr wichtiger Bestandteil des Wrestlings in den 80er und 90er Jahren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: CLPSKYLINERwrote on 16.12.2013:[8.0] "Gehört zu den größten Legenden im Wrestling! oooooh yeaaaah!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Shadywrote on 26.11.2013:[9.0] "Einer der größten aller Zeiten (im Wrestling), auch wenn er nie mein Lieblingswrestler war. "Rest in Peace"  *Ohhhhhhhhhhhhhhhhhhhhhhh YeaaaaaaaaaaaaaaaaaaaaaaaaaaaH*!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Goldberg82wrote on 14.11.2013:[7.0] "Der Macho Man war eine der schillernsten Persönlichkeiten im Wrestling in den 80ern und 90ern. Seine immer wieder neuen Outfits, sein kultiges Micwork und seine Ehefrau Elizabeth haben diese Zeit geprägt. Im Ring fand ich ihn eher uninteressant, da die einzigen Highlight die Actionen vom obersten Seil waren. Sonst hat der Macho Man nicht mehr gezeigt. Auch das Match gegen Ricky Steamboat, welches als eines der besten Wrestlemania-Matches gilt, konnte mich nicht so überzeugen. Im Jahr 1987 war das sicherlich ein Highlight, aber aus heutiger Sicht nichts besonderes. Aufgrund der Verdienste für das Wrestling gebe ich Randy Poffo gerne eine 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Daneraswrote on 03.11.2013:[8.0] "Wenn ich spontan sofort die Namen von ein paar Wrestler nennen soll, dann eben Randy Savage. Ich kann ihn einfach nicht vergessen. Er war so auffallend, und hatte viel Aktion gemacht. Viel Power, und viel Gas gegeben, doch nie ganz hoch oben an der Spitze geschafft, stets hinter Hulk Hogan. Ab und zu hat Warrior auch seine Shows erobert. Ich finde, Hulk Hogan, Ultimative Warrior und Macho Man sind gleich super! Ich denke, dank ihnen ist Wrestling so erfolgreich geworden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: test85wrote on 08.06.2013:[9.0] "Unvergesslich. Einer der Stützen der Wwe in den 80ern. Leider wie auch später in der WCW stand er im Schatten Hogans. Obwohl er die besseren Matches zeigte. Leider tragisch aus dem Leben gerissen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: pappahousewrote on 01.06.2013:[7.0] "Randy Savage war ein guter Mic-Worker. Sein flying Elbow war immer sehr schön getimt, allerdings hat er für mich immer viel zu viel einstecken müssen, so dass ich hier nicht mehr als 7 Punkte geben kann."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: HooliNerdwrote on 10.04.2013:[8.0] "Egal ob WCW oder WWF. Er machte in den 90ern Spaß und hat immer große Auftritte gehabt. Egal ob im Ring oder als Kommentator. Der Mann war Gold wert! R. I. P."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Yoyowrote on 07.10.2012:[10.0] "Not only one of the most colorful and charismatic wrestlers of all time, but a very talented in-ring performer as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Ringpfostenwrote on 08.09.2012:"Randy Savage. Ob als Macho Man, oder Macho King, durch sein schillerndes Auftreten wusste er immer zu begeistern. Seine bunten Outfits und seine markante Stimme täuschten nicht über seine In-Ring-Fähigkeiten hinweg. Im Gegenteil: Auch wenn man ihm nachsagt, in Matches nicht improvisieren zu können und sich strikt an das Script zu halten, so war Randy dennoch einer der besten Wrestler überhaupt. Schon zu Lebzeiten eine Legende, die leider viel zu früh von uns gegangen ist."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Kitanoyamawrote on 16.07.2012:[9.0] "Einer der markantesten und auffälligsten Worker in der Geschichte des Wrestling und das nicht nur wegen seiner Outfits und seiner rauchigen Stimme. Er gab zwar optisch nicht viel her, aber legte er erstmal los, zeigte er sehr oft, das er nicht von Pappe war. Man denke dabei nur an seinen Ellbow Drop. 10 Punkte gibt es aber dennoch nicht da er, trotz seiner herausragenden Karriere, für mich leider dennoch nie zu den Favoriten zählte. Sein Tod war für mich aber ebenso überraschend wie erschütternd. R. I. P Macho Man. OOOOOOooohhhh yeeeaaaahhh.... !"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Pinguwrote on 03.07.2012:[10.0] "R. I. P. Macho - unvergessen deine Matches! Oh yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: BigBob91311wrote on 13.04.2012:[10.0] "I'm surprised that Randy Savage is ranked as low as he is. Wrestlers like him, who are great workers who can carry just about anyone to an outstanding match, and being able to do great mic work is extremely rare. He is on my list of the 10 best I've ever seen, which are so close that it's like trying to find a needle in a haystack trying to differentiate between them. The other nine for the record are: Shawn Michaels, Ric Flair, Steve Austin, Owen Hart, Mad Dog Vachon, Chris Jericho, C. M. Punk, Jake Roberts, and Mick Foley."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: hogan knows bestwrote on 11.10.2011:[6.0] "Naja der Macho Man ging so, fand er hatte paar gute Matches. War auf jeden Fall zu Anfang seiner WCW Zeit ein Highlight."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: GTS Punkwrote on 18.08.2011:[10.0] "Der Mann mit dem Flying Elbow war unumstritten eine Legende. Er zeigte immer tolle Matches und war einer der schillernsten Stars in der WWE/WWF."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The lonesome death of Hattie Carrollwrote on 29.06.2011:[10.0] "Er war in den Neunzigern mein wrestlingtechnisches Nonplusultra. Als ich von seinem Tod hörte, war schon ein wenig Trauer über den Verlust für die Wrestlingwelt zu spüren.  Bestimmt war es nicht sein bestes Match, aber ich schaue mir den Kampf gegen den Warrior beim Summerslam 1992 mindestens dreimal im Jahr in voller Länge an. Oh Yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: kerschiwrote on 27.05.2011:[10.0] "Mein Lieblingswrestler zur Markzeit. Mochte ihn damals mehr als Hulk Hogan. Zudem hat er uns unzählige Klassiker beschert. Bspw wird mir immer sein Match und die dazugehörige Fehde mit Ric Flair 1992 einfallen. Leider konnte Vinnie Mac nicht sein Ego außen vor lassen und so blieb uns die Hall Of Fame Einführung verwehrt. Schade, schade ... denn für seine Taten im Wrestling hat er das allemals verdient. Ruhe in Frieden Macho Man! Uuuuuh yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Double Jwrote on 26.05.2011:[10.0] "Einer der ganz Großen. Ringtechnisch als auch charismatisch einzigartig!  Ruhe in Frieden Macho Man!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Golgotawrote on 24.05.2011:[9.0] "Einer meiner absoluten Lieblingsheels zu WCW-Zeiten. Habe sein Auftreten geliebt und sein Elbow-Drop war für mich (als Kind) einfach nur gigantisch. What' up, Mach? OOOOOOOH YEAAAAAAAH!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Brainbreakerwrote on 22.05.2011:[8.0] "Definitiv eine der Ikonen der Hogan-Ära, die es aber nie geschafft hat, trotz Mic-Fähigkeiten und unverwechselbaren Auftretens, eben aus diesem Schatten heraus treten zu können. Logischerweise folgte Savage auch seinem rot-gelben Nemesis von einer Liga in die andere, da er ohne ihn keinen echten Erfolg mehr einfahren konnte. Zu sehr überstrahlte die legendäre 80er Storyline alle anderen, vor allem wrestlingtechnischen Aspekte des Macho Man. Das ist schade, denn abseits von Hogan war er des Öfteren ein Garant für tolle Matches, zB mit Flair oder Steamboat. Insgesamt eine verdiente 8... oh yeah!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: HBK-Xwrote on 21.05.2011:[8.0] "Habe ihn sehr gern gesehn, seine Interviews waren schon gut! Super Entrance-Theme, geile Klamotten! Guter Wrestler! Sein Match gegen Ricky Steamboat bei WM III ist eins meiner Liebsten! Hat eine HoF-Aufnahme verdient! Oh Yeah! Edit: Ich bin richtig traurig der er tot ist.... Danke Macho Man, we will miss u! R. i. P. Ohhh yeahhhhh sounds from heaven! Dig it!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: LabronBenoitwrote on 20.05.2011:[10.0] "10 Punkte für einen meiner Lieblingswreslter aus der Kindheit. Danke für die Erinnerungen, RIP Macho Man!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: darkdoodwrote on 20.05.2011:[10.0] "Macho Man 4 Life!  Er war einer der besten Wrestler allerzeiten sowohl am Mic als auch im Ring.  Ein absolutes Ausnahmetalent und wohl eine der ganz großen Wrestling Ikonen auf diesem Planeten.  R. I. P. Randy OOOOOOOOHHHHHH YEEEEAAAHHH!  ....  DIG IT!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: chaoswrote on 20.05.2011:[10.0] "Einer besten Wrestler aller Zeiten! Wir werden ihn vermissen. R. I. P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: justusjonaswrote on 16.04.2011:[10.0] "Der Mann ist einfach eine Ikone. Hat mir immer Spaß und Freude bereitet ihn zu sehen. Frage mich wann er endlich in die Hall of Fame aufgenommen wird. Manch ein Vollpfosten darf sich Hall of Famer nennen, aber so ein Mann der soooo viel für das Buisness getan hat immer noch nicht. Das KANN nicht wahr sein!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Auditorewrote on 03.04.2011:[10.0] "Ich liebe diesen Wrestler weil er es immer geschafft hat und das nicht nur durch die tolle Optik mich prächtig zu unterhalten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: C0nspiracywrote on 27.03.2011:[8.0] "Schillerndster Wrestling Charakter aller zeiten. Im Ring Top am Mic geschmackssache. Mir gefällt er."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Rock n Roll Expresswrote on 01.03.2011:[10.0] "Meiner Meinung nach der beste Superstar der 80iger dicht gefolgt von Hulk Hogan und Ric Flair."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: alsb683wrote on 16.01.2011:[10.0] "Toller Wrestler, technisch sehr beschlagen, klasse Micwork und ein Einsatzwille, der seinesgleichen suchte. Völlig zu Unrecht ewig lang im Schatten von Hogan, dem Ultimate Warrior und anderen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Necronwrote on 03.12.2010:[8.0] "In meiner "Mark-Zeit" hat Savage mich irgendwie nie nachhaltig überzeugen können. Seit seinem WCW-Run habe ich ihn aber mehr und mehr ins Herz geschlossen, vor allem, da sein On-Air-Charakter und seine irren Promos mit dieser unsagbar coolen Stimme zu begeistern wissen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: rockysadrianewrote on 10.09.2010:[9.0] "War Teil des bis heute unerreicht besten Wrestlemania-Matches! Ooooh Yeahhhh!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: WrestlingFanDuisburgwrote on 18.08.2010:[9.0] "Am Mic genial im Ring gut und genügend Ausstrahlung. 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Manu Adamswrote on 08.06.2010:[10.0] "Wrestlerisch ganz klar einer der ganz großen, sein Mic Work ebenso. Hatte wie ich finde die beste Stimme, die ich von einem Wrestler gehört habe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Erasedwrote on 28.05.2010:[8.0] "Überdurchschnittlich gute In-Ring Fähigkeiten, unmengen Charisma und gutes Micwork."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The-Game91wrote on 26.05.2010:[10.0] "Macho Man ist einfach Kult, egal wie viel Mist er gebaut hat oder was für einen persönlichen Charakter er hat, Ich mag den Kerl einfach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Y2J Problemwrote on 13.05.2010:[9.0] "Exzellenter Wrestler und vor allem Entertainer, aber wieso hat er seinem Ruf nur so geschadet?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: subkulturwrote on 12.04.2010:[9.0] "Hatte neben der unbestreitbar vorhandenen Technik auch das nötige Charisma und die Fähigkeit, in einem Match eine Geschichte zu erzählen, so dass er auch nach Jahren für mich als Zuschauer noch interessant war. Gegen Ende seiner Karriere in der WCW ließ er etwas nach, davor war er jedoch weit über ein Jahrzehnt top. Da er zudem noch viele Kindheitserinnerungen bei mir weckt- 9 verdiente Punkte von mir für den Macho Man. Ohhhh yeah, dig it!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: KASHwrote on 04.04.2010:[10.0] "Der echte Star der 80er und frühen 90ern. Sehr Charismatischer Worker der sich von seinem ersten Wrestling Match vor großer Bühne wusste zu verkaufen. Seine Interviews sind legendär und einzigartig und im Ring war er zwar nicht der allerbeste, aber er war seiner Zeit nach auf einem guten Level. Es reicht auf jeden Fall für 10 Punkte. Man sieht Matches von ihm immer gerne wieder."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Standard78wrote on 03.04.2010:[10.0] "Als Macho Man oder MAcho King ein unglaublich guter Entertainer. Ob am Mikrofon oder im Ring war es immer ein Vergnügen. Durch seine unverwechselbare Präsenz im Ring, lieferte er einige der besten Matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: KevinMichaels79wrote on 14.03.2010:[9.0] "Savage war in den 80ern seiner Zeit weit voraus und lieferte wrestlerisch großartige Arbeit. Wäre sein Gimmick in den späten 80ern und den folgenden Jahren in der WWE bzw. WCW nicht so übertrieben (natürlich - es war auch unterhaltsam) gewesen, vielleicht wäre er dann ein noch größerer Star geworden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: NewGuywrote on 06.03.2010:[8.0] "Gefiel mir immer verdammt gut! Egal ob als Glitzer-Man in der WWF oder als einfach nur cooler Randy Savage in der WCW! Ich mochte ihn immer gerne! Abzüge wegen seines bis dato großen Abstiegs! Man mag jetzt wieder meckern, dass die Privatperson nicht bewertet werden soll, aber für eine 10 Punkte Wertung muss der Typ eben auch PERFEKT sein!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Fountain of Misinformationwrote on 04.02.2010:[8.0] ""Too hot to handle, too cold to hold! " Absolute Legende, der mir in den späten WCW-Jahren aber gar nicht mehr gefallen hat und als inzwischen relativ limitierter und körperlich kaputter fast 50-jähriger Wrestler, der stofft wie ein Weltmeister (hat damit quasi die "The Vince McMahon Roided Physique" vorweggenommen, im Alter einfach die Dosis erhöhen), seine große Karriere etwas schwach ausklingen ließ. Nicht jeder ist ein Hulk Hogan und gerade diese Gewissheit hat wohl über die Jahre an ihm genagt. Dennoch: I'm a Macho Maniac!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Cloverwrote on 22.12.2009:[8.0] "Gott, was hab ich den Mann vergöttert... doch ähnlich wie bei Hogan und Flair ist er wohl zu oft auf den Kopf gefallen - anders kann ich mir die letzten Auftritte jedenfalls nicht erklären. Dennoch war er mir immer viel lieber als ein Hulk Hogan! WHAT UP MUCH'? ! UUUUH YEEEAAAH - 8. 5 Punkte für ein tolle(s) Gimmick(s) und einen guten Wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Mick Funkwrote on 15.12.2009:[6.0] "Schon eine Legende, aber ich konnte mit ihm nie etwas anfangen. Hatte immer einen etwas lächerlichen Touch."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Eddiewrote on 06.12.2009:[8.0] "Der Macho Man ist einer der Helden meiner Kindertage gewesen. Hat es zwar auch etwas mit der Länge seine Karriere übertrieben, aber gut war er schon, 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: downtown2wrote on 03.12.2009:[9.0] "Beim Macho Man handelt es sich um einen besessenen Arbeiter und unglaublich talentierten Techniker. Seine Promos und seine Erscheinung waren einzigartig und etwas ganz besonderes. In den 80ern und frühen 90ern wrestlisch seiner Zeit weit voraus. Bedauerlicherweise ging er zur WCW, wo stellenweise viel von seinem frühren Gesammtpaket verblasste. Er bleibt aber in Ewigkeit eine unvergessene Ikone dieses Sports."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Smi-48wrote on 15.11.2009:[9.0] "Mittlerweile verschrobener Altstar mit dem latenten Hang zum selbstüberschätzenden Realitätsverlust. Gehen wir aber mal 10 oder noch besser 20 Jahre zurück, da hatte sein schillernden Stil massgeblichen Anteil an der Entwicklung des MainStreams. Er war in der WWF immer der talentierte Widerpart zu Hogan, nicht minder charismatisch oder divenhaft. Skriptete einen Großteil seiner Matches bis ins Detail und schaffte es somit die technisch anspruchsvolleren Fans jenseits des Hulkamaniahypes zu bedienen. Ein facettenreicher Charakter und an vielen anspruchsvollen Partien beteiligt - tat sich jedoch mit seiner Rolle im Haifischbecken WCW (in welchem er munter mitintrigierte), seinen seltsam anmutenden Aktivitäten ausserhalb des Ringes (Stichwort "Rap-CD") und schlussendlich mit seiner unrühmlich beendeten TNA-Rolle unnötige Imageschäden an."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Shikawrote on 05.11.2009:[10.0] "Sein Micwork und sein Auftreten war einfach unvergesslich. Sein Gimmick ist zudem wohl eins der grandiosesten der ganzen Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Scotty 2 Hottywrote on 14.10.2009:[10.0] "Unglaubliches Charisma und Mic Work und dazu im Ring ebenfalls sehr stark und sich für nichts zu schade. Ein tolles Gesamtpaket, welches eine Aufnahme in die WWE Hall of Fame mehr als verdient hätte. Einer meiner absoluten Lieblings-Superstars."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: finsterwegwrote on 04.10.2009:[10.0] "Einfach Verrückt und Macho Pur. Mein Lieblings Werstler aus den frühen Jahren da er eben anders wahr ;-). Super im Ring und am Mic zu der damaligen Zeit einfach Legendär. Was alles nach seiner WWE/WCW Zeit passiert ist TNA , Rap Cd usw. ist mir egal. Dieser Macho Man muss in die HoF PUNKT"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Wahniwrote on 02.10.2009:[10.0] "Randy ist mein #1 Fave! Sein Style gefiehl mir schon 88. 99 peppte er sich noch mal gigantisch auf, sogar die passende Freundin dazu! Im Ring lieferte er lange Zeit hervorragende Matches, alles sehr glaubhaft. Die Interviews waren fantastisch. Sein Charisma super. Er war der Anführer der WWE nach Hogans Weggang (laut div Aussagen) und kann das meiner Meinung nach auch. Seine Rap CD finde ich gut. Die ganzen Aufreger über seine TNA Zeit bzw "zu Kopf gestiegen" kann ich nicht nachvollziehen. Randy hat nach langen Pausen immer paar Matches Anlaufzeit gebraucht (siehe WCW). Außerdem wollte er seinen Fans trotz fortgeschrittenen Alters noch etwas bieten! Das sollte man mal respektieren! Das Randy das nicht (unbedingt) wegen Geld gemacht hat, dürfte bekannt sein! Macho Man Randy Savage - the King of Wrestling - Ooooh Yeah!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: gharwrote on 03.09.2009:[10.0] "Die Hall of Fame könnte sicher einiges an Macho Madness vertragen, vielleicht schon 2010."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Lions Denwrote on 18.08.2009:[8.0] "Absoluter Kinderheld, jedoch stark gesunkener Stern"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: 108 Sternewrote on 24.07.2009:[10.0] "Eine der ganz großen Legenden, ebenso gut im Ring wie am Mikrofon; mit einem Charisma, das in der heutigen Wrestlingwelt leider seinesgleichen sucht. Einer der besten aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: N3m35i54wrote on 15.06.2009:[10.0] "Savage hatte alles; Charisma / Mic Skills / sehr viel Talent im Ring, eine einzigartige Erscheinung, immer eine Attraktion. Ich kann allerdings seine späten WCW Tage bzw sein Abgang nicht bewerten, da ich die nicht gesehen hab. Dennoch, ein full package das bekommt was er verdient. 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: SuckerPunchwrote on 13.06.2009:[10.0] "Mein persönlicher All-Time Fave und Personal Hero #1. Völlig subjektive 10+++ Punkte von mir. Er hat mir einige der schönsten Wrestlingmomente überhaupt beschert und deswegen kann ich getrost die wenigen Negativpunkte, die man aufführen könnte, übersehen. Dass er kein Teil der Hall of Fame ist, ist für mich die größte Wrestling-Blasphemie aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Mountiewrote on 08.05.2009:[9.0] "Unvergessliche Erscheinung, einzigartiger Charakter, hochklassiger Wrestler. Auch nach überschrittenem Zenit in der WCW immer noch ziemlich stark, nur ganz am Schluss bei TNAW hat er stark an seinem Ruf gekratzt - wie auch mit seinen kirren Rapsongs und seinen Triple-H-ich-nehm-dir-deine-Frau-weg-Video. Savage hat das Wrestlinggeschäft leider in einem geistig bedenklichen Zustand verlassen, was aber nichts daran ändert, dass er eine seiner größten und sehenswertesten Attraktionen war. Von allen Leuten, von denen die Anti-Hogan-Fraktion sagt "Mit ihm oder ihm an der Spitze wäre es auch gegangen", der einzige, wo man wirklich auch von der Faktenlage her sagen kann: durchaus möglich."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: shoopdawoopwrote on 06.05.2009:[10.0] "Ein technisch hervorragender Wrestler der auch eher schlechte Kontrahenten grandios over bringen konnte (z. b. Warrior). OOOOOOH YEAAAAH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Brooklyn Brawler 1985wrote on 25.01.2009:[8.0] "War bei der WWF einfach genial, aber bei WCW und TNA schadete er sich und seinem Image dann leider..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Schandmaulwrote on 17.11.2008:[7.0] "Früher sehr gut, sowohl im Ring als auch am Mic. Aber seine Auftritte bei TNA waren einfach nur peinlich und über seine Rap-CD möcht ich eigentlich garnichts mehr sagen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: quwesiwrote on 04.10.2008:[2.0] "Hat mich nie angesprochen fand ihn sehr uninterresant"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Wise Warriorwrote on 11.09.2008:[10.0] "Der Macho King! Jede Bewegung saß: als Wrestler und Entertainer einer der Besten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Lokfanwrote on 02.08.2008:[2.0] "Hat mich nie wirklich überzeugt im Ring, fand seine Aktionen immer langweilig, seine NWO Zeit war noch die beste."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: LordTrailerwrote on 10.07.2008:[8.0] "Der Macho Man hat immer gut unterhalten. Legendär sein Match gegen Steamboat. Irgendwie habe ich ihm aber trotzdem nie den Status eines echten World Champs abgenommen, trotz des langen Runs bei der WWE. Ich weiß auch nicht wiso, aber daher ein gut."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ecw foreverwrote on 08.07.2008:[9.0] "Genialer Techniker und Mic Worker seiner Zeit. Vorallem am Mic war er doch ein eizngiartiger, keiner redete so wie er, seine Ring Skills waren aber auch immer auf selbem Tempo."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Know Nothingwrote on 13.06.2008:[10.0] "Jeder kennt ihn, jeder lieb ihn. Ich mochte seine Matches und ich liebte sein Mic Work. Nur jeder sollte mal aufhören, auch der Macho Man. Wenn er weitermacht, macht es alles nur schlimmer. Mit über 50 bringt man es in diesem Sport nicht mehr, bisher hats noch jeden erwischt auch den Macho Man. Alt werden ist nichts schlimmes, man muss nur einsehen das man irgendwann nicht mehr mit den neuen jungen mithalten kann. Man soll aufhören wenn es am schönsten ist, so das einen die Fans als Legende in Errinnerung behalten. Er bekommt 10 Punkte für seine WWF Zeit, 2 Punkte Abzug für die TNA Zeit und 2 Punkte dazu weil er eine Legende ist. Also 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Frutzwrote on 09.06.2008:[9.0] "Randy Poffo, der Macho Man, war damals einer meiner Lieblinge im alten WWF-Ring. Ich habe seine Promos zwar meist nicht verstanden, aber das hat eben einfach dazugehört. Ein guter Worker im Ring, der als Face, wie auch als Heel ordentlich Reaktion gezogen hat und in einigen erinnerungswürdigen Matches eine sehr gute Figur abgegeben hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Brooklyn Brawlerwrote on 15.05.2008:[8.0] "+Outfits, +Mic Work, +WWF Fehden, +Charisma.......... -Moves(trotz Highflying irgendwie... seltsam), -TNA Zeit... Gibt unterm Strich ne solide 2 :)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Ruppiwrote on 27.03.2008:[10.0] "War einfach toll. Hab ihn immer gerne gesehen. Und er hat auch immer wieder tolle Kämpfe abgeliefert. Seine Kämpfe waren zwar bis ins kleinste Detail geplant, aber das schmälert nicht seine Leistungen. Auch sonst hatte er alles: gutes Mic-Work, ein passendes Gimmick und Ausstrahlung. Note 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: stryker9wrote on 21.03.2008:[10.0] "ein wrestler mit sehr viel ausstrahlung. wußte als heel wie als face zu überzeugen. hat all seine world heavyweight title gegen flair und hogan verloren. ein kandidat für die hall of fame."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Instant Classicwrote on 21.03.2008:[10.0] "Genialer Wrestler und Showman. Sein letzter TNA Run war vollkommen unnötig und einfach nur dementsprechend schlecht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: lagunswrote on 13.03.2008:[10.0] "Am Mic einer der coolsten und im Ring einfach unglaublich. Hatte sowohl auf der Matte als auch in den Seilen alles drauf. Und stand dabei auch noch sicherer auf dem Top als manch einer, der sich als "Highflyer" bezeichnet. Konnte jeden Stil mitgehen und seine Gegner dabei oft noch übertreffen. Hab ihm jede Aktion wirklich abgekauft. Hat immer alles für das Match und seinen Gegner gegeben und war sich nie zu schade auch gegen Midcarder einzustecken. Geiles Gemick (was ist denn ein Macho Man? ) und die Heißesten Kostüme. Die ultimative Mischung aus Sport und Entertainment! OH YEAH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Staniwrote on 21.02.2008:[4.0] "Hatte in der WWF und in der WCW sehr gute Zeiten aber gegen Ende seiner WCW Zeit hat er im Ring schon kaum was geleistet und war nur noch als Mananger von Sid akzeptabel, der Hogan Diss war primitiv und sein Run bei TNA war unter aller Sau"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Fumaryuwrote on 07.02.2008:[8.0] "Der Macho Man hatte ein klasse Standing bei den Fans, war charismatisch und trug coole Outfits."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: TheMasterpiece87wrote on 03.02.2008:[8.0] "Einer der größen dieses Sports! Unglaubliches Charisma und zudem sehr gute, wrestlerische Qualitäten!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: devilsoldierwrote on 07.01.2008:[4.0] "Konnte ihm nie wirklich was abgewinnen, war eben da aber irgendwie merkwürdig. Und seine "High Flys" wirkten irgendwie nicht so spektakulär."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Brahma Bullwrote on 03.01.2008:[10.0] ""Oh Yeah! "Verdammt geiler Typ und Anfang der 90ger ein super Wrestler-hatte damals den WWF Titel verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Haukewrote on 25.11.2007:[10.0] "Einer meiner absoluten Favorites. Technisch stark. Und in der WWF Zeit ab 1991 das coolste Outfit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: TheAdaawrote on 16.11.2007:[6.0] "Der Macho Man hatte Charisma, Technik und gute Wrestlingskills. Er war seiner Zeit damals ein wenig vorraus und durfte trotzdem 1 Jahr Champion sein in der WWF, von Wrestlemania 4 bis 5. In der WCW spielte er nie eine wirklich bewegende Rolle und seine Auftritte bei TNA waren mehr peinlich als gut für seinen Ruf. Ich behalte wohl nur die WWF Zeit in Erinnerung: Oh yeah!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Solid Snakewrote on 29.10.2007:[10.0] "Einer der besten in den 90er Jahren. Seine Promos waren godlike. Damals absoluter Fan, sehe mir heute auch ab und zu noch seine Matches an. Er ist eine wahre Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Thunderlipswrote on 17.10.2007:[10.0] "Einer der besten der 80er und frühen 90er. Savage war im Main Event das technische Highlight und konnte selbst den Ultimate Warrior bei WrestleMania VII durch ein gutes Match ziehen. Legendär auch sein Duell mit Steamboat bei WM II. Auch in den späten 90ern war er noch für solide Matches gut. Seinen TNA-Auftritt hätte er sich aber ebenso klemmen können, wie sein Rap-Album. Trotzdem gibt es für den Macho Man die Bestnote! OOOOHHH YEEEEAAAH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: CM Dannywrote on 15.10.2007:[8.0] "In der kunterbunten Gimmick-Welt der WWF schaffte es Savage immer noch besonders hervorzutreten. Im Ring war er nicht gerade einer der Schlechten und bis heute habe ich nur wenige gesehen die so ruhig und gelassen in der Ecke auf dem obersten Seil stehen können."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Nick Toxicwrote on 28.09.2007:[6.0] "Gott sei Dank wrestlet er nicht mehr, seine letzten Auftritte fielen echt nur noch unter Peinlich! Ausserdem sieht er jetzt aus wie Räuber Hotzenplotz persönlich. Früher ein guter Mann, zerstörte jedoch alles durch Auftritte in jüngster Vergangenheit. Bitte nicht wiederkommen..."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: HHH-Stephwrote on 15.09.2007:[10.0] "Auf jeden Fall einer der großartigsten Wrestler, die es jemals gegeben hat. Bei ihm stimmte wirklich alles: Ausstrahlung, Micwork und wrestlerisches Können, dazu noch einen coolen Finisher."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Grubackwrote on 12.09.2007:[10.0] "Einer der grössten Superstars aller Zeiten . wrestlerisch , sowie vom Charisma her eine echte Supererscheinung , einer der wichtigsten Worker in der goldenen Ära des Wrestling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: etstoanawrote on 11.09.2007:[6.0] "Wrestlerisch klar der Beste der 3 grossen (mit Hogan und Warrior) Anfang 90er Ende (80er). Am Mic aber allein durch seine Stimme nicht zu ertragen. Und bei seinem Aussehen in neonfarbenen Fransenklamotten ist "MachoMan" sicher nicht der richtige Nick für ihn."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: jerseyhoolwrote on 28.08.2007:[10.0] "Einer meiner all-time-favourites! ein kompaktes paket aus charisma, technik & mic-work. seinen wahnsinnskampf bei WM VII gegen den warrior werde ich nie vergessen - 5 top rope elbows! Oh yeah! P. S. der top rope elbow ist einer der geilsten finishers aller zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Blade Bourdeauxwrote on 30.07.2007:[8.0] "Randy Savage als Gesamtpacket betrachtet, war er einer der zurecht an den Spitzen der Promotions stand. Sowohl im Ring als auch am Mic waren seine Leistungen immer überdurchschnittlich. Ohne einen Hulk Hogan ber ihm, wäre er vielleicht noch größer geworden als er es ohnehin schon ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: shannonmoorewrote on 28.07.2007:[10.0] "Einfach cool seine Interviews, Er hatte was ganz eigenes was sonst keiner hatte. Seine Fähigkeiten im Ring waren ne bestimmt Zeit ganz gut ja aber das hat mich bei ihm nicht intressiert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: DrBreswrote on 26.07.2007:[10.0] "Abgefahrener Kerl der Macho Man! Nicht nur dass nur durch sein absolut schillerndes Äußeres ein Blickfang war, seine Matches hatten richtig klasse. Wer einen Ultimate Warrior zu einem guten Match ziehen kann, muss was auf dem Kasten haben. Über seine Promos und Interviews müssen wir da schon gar nicht mehr reden... ganz großes Wrestling-Kino! Schade, dass er keine tragende Rolle (als Manager o. ä. ) in WWE mehr spielt..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Garvinwrote on 24.07.2007:[10.0] "Er war einfach einer der besten. Randy Savage führte jahrelang die WWE und zeigte sensationelle Matches gegen Flair, Warrior oder Steamboat. War damals mit das beste, was das Wrestling hervorgebracht hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Masterpiecewrote on 24.06.2007:[4.0] "Das einzigste was am Macho Man OK war, sein Outfit ... war noch nie so der Macho Man Fan!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: LexLuger4everwrote on 24.06.2007:[8.0] "Der Macho Man ist das typische Beispiel für 8 Punkte! Er war in allem, was er angepackt hat, unterhaltsam und gut- nicht mehr und nicht weniger! Oh, yeah!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Trevedaswrote on 24.06.2007:[6.0] "Hat Charisma und verfügt über ein gutes MicWork. Auch im Ring ist er gar nicht mal so schlecht. Allerdings konnte ich ihm noch nie viel abgewinnen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Hit Manwrote on 24.06.2007:[10.0] "Eine Legende. Ich finde er muss in die Hall of Fame."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: jupp365wrote on 24.06.2007:[10.0] "Einsame spitze der Typ. Top In-Ring-Performer, super Mic-Worker und überall überzeugend. Stand leider immer im Schatten des "Unsterblichen", deswegen wurde seine Karriere immer ausgebremst, sowohl in der WWF als auch in der WCW. Wirklich schade, dass es wohl immer Monopolisten geben wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: timbo7111wrote on 24.06.2007:[10.0] "Der Macho Man ist eine Wrestling-Legende und einer der charismatischsten Wrestler aller Zeiten. OH, YEAH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: BMwrote on 24.06.2007:[8.0] "Fand ihn in der WWF echt genial. Als dann aber die WCW Zeit kam, ging er mir nur noch auf die Nerven... Ansonsten sicherlich ein sehr guter Wrestler, der nur leider auch immer wieder mit Verletzungen zu kämpfen hatte. Mal schauen, ob er demnächst nicht doch noch irgendwo wieder zu sehen ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Sharkwrote on 24.06.2007:[4.0] "In der WCW mochte ich sein Gimmick nicht... wrestlerisch ist er auch nichts besonderes... im Indy Bereich hatte er aber ein paar gute Auftritte... wenn er zur TNA kommen würde wäre das sicherlich was gutes... aber gefallen tut er mir nicht"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Hypocrisywrote on 24.06.2007:[10.0] "Randy Savage hatte das Machismo, Mojo oder einfach gesagt das gewisse Etwas, um je nach Lust und Laune das Publikum auf seine Seite zu bringen oder eben gegen sich aufzubringen. Dieses Talent hatten und haben nur wenige. Randy Savage jedoch war der Erste. Er war zudem mit einer grandiosen Technik ausgestattet. Erwähnt sei auch, dass er einer der ersten (Heavyweight) Highflyer war. Macho Madness!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: punkgodwrote on 24.06.2007:[10.0] "Randy Savage ist mit Sicherheit einer der weltbessten Wrestler gewesen. Leider haben ihm schwere Verletzungen eingeholt und er konnte in Vergangenheit nur noch verhemmt auftreten. Randy Savage hat am laufenden Band hochcharätige Matches abgeliefert. Er hat selbst aus allen Wrestlern das Maximum rausgeholt. Beieindruckend auch seine Geschwindigkeit, Gewandtheit und Nehmerqualitäten im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: mdbnasewrote on 24.06.2007:[10.0] "Sehr amüsant am Mic und in Promos, musste immer lachen! ... UHHHH YEEAAAHH! Krasse Outfits, blitzschnell und technisch versiert! War der Könner bei den MegaPowers und gefiel mir als MachoKing und als gnadenloser Heel am besten! Poffo - 10 Points!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Sandman16wrote on 24.06.2007:[10.0] "Er hat alles gehabt was man braucht um ein Top-Wrestler zu sein. Angefangen beim Charisma, dann super am Mikrofon und natürlich ein sehr guter Wrestler. Kam damals aber nicht so wirklich an Hogan vorbei, sonst wäre vielleicht noch der ein oder andere Titel mehr drin gewesen. Aber auch so ein ganz Großer des Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Vimeswrote on 24.06.2007:[10.0] "Für die Zeit ein hervorragender Techniker, vor Bret Hart der einzige wirklich gute In-Ring-Performer, der es in der WWF zu was gebracht hat. Auch in der WCW sind die Flair-Savage-Matches denkwürdig. Von WM III braucht man gar nicht zu reden und die Promos waren(zumindest in der WWF) auch einsame Klasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Giant2wrote on 24.06.2007:[8.0] "Technisch top, mit Charisma und auch Micskills ausgestattet hätte er eigentlich fast noch weiter kommen müssen, als er es ohnehin schon ist. Dagegen stand nur der damalige Protagonist Hogan. Sein Match bei WM 3 war weltklasse und Savage ist zurecht eine absolute Legende des Wrestling."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Dntbamarkwrote on 11.06.2024:"Stu Hart's impact on professional wrestling is undeniable. His legacy is profound and multifaceted, encompassing his roles as a wrestler, promoter, trainer, and patriarch of one of wrestling's most influential families. His skill as a grappler and technical wrestler made him a formidable competitor and a respected figure in the wrestling community. Stampede Wrestling, founded by Stu, was a cornerstone of Canadian professional wrestling and served as a launching pad for many wrestlers who went on to achieve global fame. Stu Hart's influence is perhaps most evident in the impressive roster of wrestlers he trained. Besides his own children, his impact can be seen in wrestlers like Fritz Von Erich, Billy Graham, Roddy Piper, Abdullah the Butcher, Jake Roberts, Dynamite Kid, Bad News Allen, Brian Pillman, Chris Benoit, and Chris Jericho. Hart instilled a respect for the wrestling business along with integrity and a strict sense of discipline. However, while Stu Hart's contributions to professional wrestling are widely celebrated, his legacy is not without its criticisms and negative impacts. In recent years, he has garnered a reputation for being a sadistic figure in his training techniques, known to torture his pupils with legitimate submission wrestling holds until they broke. Buddy Rogers famously called the Dungeon a torture chamber, which explains why it is linked to so many of the tragedies that befell the professional wrestling business. The Dynamite Kid, known for his vicious behavior, was trained and broken in by Stu Hart, suggesting he learned such behavior from his mentor. Fritz Von Erich, who trained under Stu, tragically saw five of his six sons die prematurely, a stark example of the potential long-term effects of Hart's harsh training methods. Other trainees, like Owen Hart, Brian Pillman, Davey Boy Smith, and Chris Benoit, also met tragic ends, indicating a possible link between the brutality of Stu's methods and the numerous tragedies that befell those who trained there. Stu Hart's own family experienced numerous personal conflicts, including divorces and estrangements, highlighting the intense pressures they faced. While Stu Hart's legacy is largely positive and his contributions to professional wrestling are undeniable, it is important to acknowledge the brutality of his training. The intense training methods, the physical and emotional toll on trainees, family pressures, and the challenges faced by Stampede Wrestling all form part of a complex legacy."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Wrestling Foreverwrote on 21.06.2020:"Ja ich hab kein Match von ihm gesehen weiß aber durch die Dokus DVD von Bret wie stark der Mann selbst noch im hohen Alter war. Unzählige Wrestler hat er trainiert und viele haben sehr wohl den Durchbruch geschafft. Stu hat auch mal gegen einen Tiger und gegen einen Grizzlybären gewrestlet. Der Dungeon war für viele damals die Hölle den das Training war da unfassbar hart und Bret hat seinen Vater wegen Stus Haltegriffe beim Training gefürchtet. Für Bret und die Kinder die von Stu und Helen noch lebten es ist ja nicht nur Owen gestorben war der Verlust ihres Vaters nach dem Tod der Mutter der nächste große Verlust. Stu Hart ist zu Recht in die WWE Hall of Fame aufgenommen worden. Edit 21. 06. 2020 Ziehe die Bewertung zurück. Ihn nur durch das was man aus Interviews und Szenen aus den Dokus sah rechtfertig keine Bewertung."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Smi-48wrote on 18.06.2014:[9.0] "Die vielzitierte Masse an Big Names, welche durch seine harte Schule gegangen ist, wurde ja schon lang und breit diskutiert - der Mann hat Potentiale erkannt und Größen geformt, so wie es vielleicht nur einem Killer Kowalski in seiner Epoche vergönnt war. Darüber hinaus war er aber auch eine Lebensader für das Wrestling im nordwestlichen Teil des Nordamerikanischen Kontinents - seine Promotion brachte dort mit TV und Liebe zum Detail das Produkt nachhaltig auf die Landkarte. Zu seiner aktiven Zeit gibt es leider nur wenige Aufzeichnungen, aber was man man dann sehen kann, zeigt einen knallharten Mattenringer und einen Bär von Brawler. Man muss ihm aber auch auch trotz seines schwierigen Werdeganges eine gewisse Naivität im Umgang mit dem Geld und bei Nachfolgerfragen unterstellen - Bruce Hart als Hauptverantwortlicher der darbenden Stampede Promotion war eine ebenso diskussionswürdige Entscheidung, wie der Umgang mit dem eigenen Vermächtnis. Und eben jenes ist heute selbst im Mainstream noch überall spürbar."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Basket Casewrote on 28.01.2014:[10.0] "Allein durch die Anzahl an starken Wrestlern, die er trainiert hat, verdient er sich die volle Punktzahl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Daneraswrote on 03.11.2013:[9.0] "Ich habe seine Kämpfe noch nie gesehen, nur kurze Ausschnitte schon. Aber sie waren nicht interessant, da die Zeit von lange her ganz anders war. Das kann man nicht mit 1990 vergleichen. Er war eine grosse Persönlichkeit im Wrestling. Viele Wrestler haben von ihm viel gelernt. Stu hat viel beigebracht. Ja, sein privates Leben war anscheinend nicht gut, und er soll seine Kinder Bret und Owen damals häufig bedroht haben. Owen hatte ständig Angst vor ihm, so erfuhr ich die Biografie von Bret Hart. Das hat mich getroffen. So habe ich mir Stu vorher gar nicht vorgesellt. Hier habe ich 9 Punkte gegeben, weil es für mich hier nur um Wrestling geht, und nicht sein privates Leben. Wichtig trennen: Arbeit und privates Leben!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: jerseyhoolwrote on 18.01.2012:[10.0] "15 von 10 möglichen Punkten! Was soll ich dem Mann auch anderes geben? So ziemlich jeder seiner Schüler war ein guter bis toller Techniker & Wrestler (ok, Talent ist natürlich auch nötig, aber trotzdem! )! Als Promoter ebenso eine wichtige Figur in der nordamerikanischen Szene. Die einzigen Minus-Punkte könnte man geben, wenn man berücksichtigt, dass er ein ziemlicher familiärer Despot gewesen sein soll, aber das interessiert hier nicht. Eine Legende, die zu Recht in der HoF vertreten ist & uns Fans alleine mit seinen beiden bekanntesten Söhnen 2 Lichtgestalten der Wrestlingszene schenkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Excellence of Executionwrote on 15.10.2011:[9.0] "An meinen Vor-Vorredner (fühle dich angesprochen - von mir trotz deines der Realität entwurzelten Bret Hart Hasses geschätzter Mitmensch Hirnklops): Na ja, den "Output" an gelehrten Wrestlern nur auf Bret und Owen zu reduzieren, wenn ich dich da richtig verstehe, ist doch arg kurz gegriffen. Chris Benoit, Dynamite Kid, British Bulldog, Neidhart, Junkyard Dog, Billy Graham, Lance Storm, Greg the Hammer Valentine, Mongolian Stomper ..... sind das alles bedeutungslose Figuren? Ich meine ... wenn du jeden Ausbilder nur darauf reduzierst, wer alles von seinen Schützlingen zu 'ner Legende mit Mainstream Impact geworden ist, dann wirst du keinem ernsthaft mehr als 5 Punkte geben können, oder? Und als aktivste Leiste Kanadas hat Stu Hart sowieso 30 Punkte verdient! Im weltweiten Vergleich immerhin noch 18 .... nee 19 Punkte. Beweisführung abgeschlossen! Ich gebe ihm 9 Punkte und nicht 10, weil er leider auch Tom Magee ausgebildet hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: y94wrote on 01.06.2011:"An meinen Vorredner: Dein Nickname passt wie die Faust aufs Auge. Mehr habe ich dazu eigentlich nicht zu sagen."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Hirnklopswrote on 31.05.2011:[4.0] "Ich weiß nicht, was man hier bewerten kann oder soll. Erzählt mir alle ja nicht, das ihr mehr als drei oder vier Kämpfe von ihm gesehen habt, wenn überhaupt. Okay, er hat ein paar Leute trainiert, von denen im Grunde nur Zwei den wirklichen Durchbruch geschafft haben: Einer davon aber auch nie so wirklich, dann ging er drauf, der Andere schon so richtig, aber er ist ein Arschloch geworden. Was bewerten wir hier? Die aktivste Leiste Kanadas oder sowas? Wie viele Kinder hat der Kerl gehabt? Oh Mann..."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: LabronBenoitwrote on 15.07.2010:[10.0] "Der beste Trainer aller Zeiten. Man möge doch nur mal auf die Liste der Wrestler schauen, die er trainiert hat. Da kommt einem schon fast die Gänsehaut. Hatte ne Menge Ahnung vom Wrestling und auch sein Können im Ring war nicht ohne. Stu, du hast deine Sache gut gemacht, wir danken dir! R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: The-Game91wrote on 26.05.2010:[10.0] "Wenn dieser Mann nicht gewesen wäre dann wäre Wrestling halb so spannend wie heute. Es würde so viele Talente nicht geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Barettawrote on 04.01.2010:[10.0] "Im Ring habe ich ihn nie gesehen, aber als Trainer hat er echt was drauf (Ich habe mir gerade "Wrestling with Shadows" angesehen und bin ihm sehr dankbar, dass er Bret und Owen usw. zum Wrestling gebracht hat). Außerdem scheint er mir sehr sympatisch zu sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: affenmannwrote on 21.12.2009:[10.0] "Wohl neben Verne Gagne der beste Trainer aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Eddiewrote on 06.12.2009:[10.0] "Legendärer Trainer. Allein deshalb verdient er von mir die 10 Punkte. Bret und Owen hat er zu Mega Stars gemacht, um mal nur bei seinen Söhnen zu bleiben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: mugel 187wrote on 23.06.2009:[10.0] "10 Punkte, da er Stu Hart ist. Ich kann nur wenig zu seinen Matches sagen hab ein wenig Stampede sachen gesehen aber sein Stil gefiel mir nicht und trotzdem hat er 10 Punkte verdient, weil er einfach Stu Hart ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Father Nelsonwrote on 18.01.2009:[7.0] "There was too much no selling in his matches. But he did a great job training young boys."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: El Reywrote on 07.10.2008:[10.0] "The godfather of wrestling. Ohne ihn wären Leute wie seine Söhne aber auch Edge und Benoit nie zu solchen Leistungen im Ring im Stande gewesen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Hennewrote on 24.09.2008:[8.0] "Ich finds schwierig hier mehr als eine 2 zu geben, nur weil er all die starken Wrestler trainiert hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: LexLuger4everwrote on 20.03.2008:[10.0] "Wem man Stu Hart alles zu verdanken hatte! Überhaupt hat das Wrestling Business Stu Hart viel zu verdanken! Also ganz ganz klare 10 Punkte für den Patriarch der vielleicht legendärsten Familie, die der großartige Wrestling Sport jemals hervorgebracht hat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Heatwrote on 06.02.2008:[8.0] "Von ihm selbst habe ich nichts gesehen, doch welche Superstars aus seinem berühmten Dungeon hervorgingen, unglaublich."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Blade Bourdeauxwrote on 28.01.2008:[10.0] "Generationen von Wrestlern gingen durch den Dungeon und von ganz wenigen kann man sagen, dass sie das Handwerk nicht perfekt beherrschten. Alleine dafür gebührt ihm Anerkennung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Blue Meaniewrote on 23.10.2007:[10.0] "Einer der besten und legendärsten Trainer überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Trevedaswrote on 23.07.2007:[10.0] "Absolute Legende, die eine Legende nach der anderen aus dem Hut gezaubert hat. Ohne ihn, hätten wir viele geniale Worker nie zu Gesicht bekommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Masterpiece22wrote on 30.06.2007:[10.0] "Bester Trainer aller Zeiten! Hoffenlich tritt Bret in seine Fußstapfen und es kommen mehr Wrestler wie Benoit, Owen..... zum Vorschein. Wäre schade wenn er es nicht tut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: King of Queenswrote on 24.06.2007:[10.0] "Wenn man sieht, wen er alles trainierte und wem er half, groß rauszukommen, kann man nur 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Carlito Cenawrote on 24.06.2007:[8.0] "Wenn man sich anschaut, wer alles aus seinem Trainingslager hervorgekommen ist, sollte man meinen dass er der beste Wrestling-Trainer der Welt war."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Marktomlin91wrote on 27.11.2024:[10.0] "Great on the mic as well as in ring performer cut amazing promos gotta love the wars with his brother gone to soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: WWFanwrote on 06.11.2024:"A bunch of my friends went to the house show at Rosemont the day before he died and saw his final match. I miss him so much. He was so good and so funny. I think Owen had a bright future as a commentator. He was hilarious at King of the Ring 96."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Pigeon Scratchwrote on 09.10.2024:[10.0] "Career so painfully cut short, but even before hand was underutilized simply because he was deemed as too boring in comparison to the direction that professional wrestling was going at the time. One of the absolute best, some would debate even better than Bret, and genuinely deserved so much more. He will never be forgotten, however, both for the talent he had, and the character both in and outside the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: robsanderson3wrote on 08.10.2024:[10.0] "Nothing against the great Bret Hart, but Owen was the best of the (extended) family. Workrate, charisma, heel work, everything. Should have been a world champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: crs285wrote on 04.10.2024:[9.0] "Another great wrestler in the Hart family but unfortunately his career was cut short. He was more charismatic than Bret but weird booking decisions like joining the Nation of Domination hurt his career more. In the ring I still think Bret was a little more talented, but he still could have a great match with anyone. Had a little more controversy due to his breaking of Austin's neck and his manner of death."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Nolan Greenwrote on 01.10.2024:[10.0] "He may not be as good as Bret, but he is still a great wrestler. Another great wrestler that can carry anyone to a great match. His one advantage over Bret was he was better on the mic as he was able to play an obnoxious heel well. It's real sad he died right before all the great came in. Imagine all the classics he could have had with Kurt Angle and Chris Benoit. In many was, he truly was The King of Harts."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: dangfoolianwrote on 27.09.2024:[10.0] "A master in the ring. Owen, just like his more popular brother Bret, is an example of wasted potential through no fault of his own. I don't know why a guy with his in ring prowess, (and a better talker than Bret) never made it past mid card status. I'm sure it was some backstage politics BS after Montreal or something. I only wish that Owen had retired earlier than he had initially planned, or told WWF to kick rocks and head to Atlanta his brother. As a new resident to Kansas City, any time I drive past the former Kemper Arena, I always feel a twinge of sadness knowing what happened to an all time great, and one of my personal favorites. Rest in peace, Owen. You will not be forgotten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Chosen Onewrote on 26.08.2024:[7.0] "Tragisch, wie früh er von uns gehen musste. Seine Rivalität mit Bret war spitze und ich habe ihm da sogar zugejubelt. Gimmick- und Promotechnisch hat ihm aber leider für mich das gewisse Etwas gefehlt. Außerhalb der Brüder-Rivalität gab es keine Story um ihn, durch die man angespornt wurde, ihm ordentlich zuzujubeln und ihm die Daumen zu drücken."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Sal1314wrote on 05.08.2024:[10.0] "Owen Hart was ahead of his time; he could have been a bigger star in the modern era. The wrestling industry was then filled with egos and backstage politics, and some wrestlers at the top had to have a selfish mentality and take themselves a bit too seriously. Bret Hart and Shawn Michaels were perfect depictions of that mindset, which led to the infamous Montreal screw-job. Owen was a victim of poor booking and tough circumstances. He was an all-around wrestler high-flyer, technical, with a natural charisma and unique personality. "
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: KobashiChopMewrote on 03.08.2024:[10.0] "In my opinion, Owen was the better wrestler of him and Bret. I'm glad his name can be said in wrestling today without his widow losing her mind, because he deserves to be remembered for how good he was, and how much his style influenced others after him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Johanwrote on 04.07.2024:[10.0] "Owen Hart is absolutely one of the greatest workers ever, very fun character work, very versatile to the point he can technically wrestle Bret Hart and wrestle a Liger match with Jushin Thunder Liger, full of underrated classics, master of sub 7-8 minutes matches and so forth."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Ozzywrote on 04.06.2024:[8.0] "What happened no doubt shouldn't have happened, and that's all I'm gonna but one thing I'm gonna say about it, but that is the primary reason why he is rated so high on here. He was a good wrestler, I would argue 3rd or 4th best of the 2nd best royal family, but I can understand why people would argue 2nd, the problem was that this man apparently didn't even know how to do a Piledriver safely and shortened Austin's career by around a decade. The ton of praks he pulled backstage too makes him sound a little immature and unprofessional too, but I'm willing to look past all that after hearing the Harley Race cattle prod story, and pranks are the least of anyone's problems anyway. I cant understand why he is rated higher than Harley on this site at all, but I do understand his placement in the top 100 wrestlers."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Rassle Fanwrote on 23.05.2024:[10.0] "5/23/2024 is the 25th anniversary of Owen Hart's death. It's what prompted me to give a rating. He was truly one of the greatest wrestler ever! He could do it all, technical, high flying, and brawling. The mid-90's was the pinnacle of his career which featured his feud with Bret. He also had a great run as the Intercontinental champion in 1997. One of the greatest to never be a world champion. He is missed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: thetonyclaywrote on 11.05.2024:[8.0] "Feels improper for me to rate his career when it was cut short the way it was, but I truly believe that Owen could have been one of the best ever if he had made it to his prime / had been able to mix it up with some of the talent that began working with WWE in the early 00's. Imagine a Kurt Angle vs Owen Hart match! It's so tragic that negligence led to his death when it could have been avoided with the proper due diligence from WWE and those responsible for rigging his gear. I still feel awful for his family, especially his children who have grown up without their father. Watching the 'Reliving the War' series on the Wrestling Bios YouTube channel gave me the wonderful opportunity to be able to experience once again the fantastic short career he had. A workrate second to none and a genuinely good guy. In an alternate universe where Owen lives, he absolutely could have become a megastar and multi-time World Champ. RIP Owen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Jamesmac015wrote on 14.03.2024:[10.0] "After rewatching the WWF from 1993 on, I truly saw how awesome Owen was. Everything he did felt so innovative, and it was so great to see what he was going to do next."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: mxkamiwrote on 11.02.2024:[10.0] "My hottest wrestling take has always been that he's better than his brother, because Owen wasn't a charisma vacuum like Bret was (don't worry, I respect Bret's work). Bret was smooth. Owen had the "snap" to go along with his smoothness. That just always appealed to me as a kid. I get it when people bring up him breaking Austin's neck, but I can't take points from Owen, because it inadvertently created the hottest commodity during the hottest era of pro wrestling. For me, it always looked like Owen had a point to prove. That he wasn't to be overlooked in favor of Bret. I know that I never overlooked him, and wish more people hadn't, as well. I like to imagine the what-ifs of who he could have faced had the accident never happened. Imagine Owen leaving the Fed, and being on the Indies. Wrestling Danielson, McGuinness, Styles, Samoa Joe, or if he stayed in WWE/F and wrestled people like Angle, Jericho, Eddie Guerrero. And just imagine for a minute, a blood feud against HBK in defense of his brother post-Shawn's return/run of a lifetime. We missed out on so much more from this generational talent. Miss you, Owen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: cioranwrote on 31.01.2024:[9.0] "Generational talent, largely underappreciated both because of his early and tragic in-ring demise as a result of a failed ring entrance and the fact he was overshadowed by his brother Bret, who's the greatest professional wrestler that's ever lived. Bret was somewhat more reliable too. Owen was always good, but only great when he felt like it. Also hampered by some injuries, had a more high flying style prior to injuries, seen in his HIGH ENERGY run, which was great. During that, he innovated or popularized a number of moves in wide use now. Aside from the Bret matches, he was usually the reliably really good match buried somewhere in the mid-card. Versatile and excellent as both a face and a heel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Dntbamarkwrote on 08.01.2024:[10.0] "Incredible talent, again taken from us too soon. Whenever I think of Owen and what happened, it really makes me mad because this was a guy who was only 34 and had a wife and 2 small children and was killed through no fault of his own in a stupid stunt that he didn't want any part of. I continuously feel bad for his wife and 2 children, who've constantly been portrayed in a bad light by wrestling fans and by Owen's own carny family because she won't allow for him to be in the HOF and rightfully so. The whole situation sucks because Owen literally had his entire life ahead of him and all because of the actions of a few, he was killed and had his body mopped up out of the ring so that they can continue the show bEcAuSe We WeRe In ThE MiDdLe Of A rAtInGs WaR. RIP Owen, gone but never forgotten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: JediSaiyanMaster1203wrote on 18.11.2023:[10.0] "While I'm more of a Bret Hart guy, that doesn't mean that I don't like Owen, because I love Owen Hart and place him among my all time favorite wrestlers. Owen Hart was an incredible wrestler who had decent charisma and promo ability, but made up for it for how smooth his abilities were and how he made every move he did look effortless. His feud with Bret Hart is the only good sibling rivalry in WWE to this day, and nothing's came close. It's unfortunate that he botched the piledriver on Steve Austin and wasn't liked by Shawn Michaels, because there was a possible chance that he was WWF Champion bound after Bret Hart left WWF in 1997. Overall, Owen Hart was a great talent, always tried to mix it up in styles whenever he got in the ring, and could have been a big star if given the chance. R.I.P. Owen Hart"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Logewrote on 02.11.2023:[8.0] "Owen was a very talented wrestler who was taken away from us too soon. You all know that. I could talk about Vince being a moron and half blaming him on the thing but you've heard it a billion times so whats the point. I will say I think he might be a bit overrated on here because of his death, which I know is a hard pill to swallow, but he never really achieved true greatness outside of tag teams/stables. I do feel like he was possibly headed towards holding the WWF championship towards the end of his career when he had his DANGER gimmick, but then he turned into the blue blazer and I think we all know how that ended! He also injured Austin with a botched piledriver which broke his neck and honestly could've paralysed or killed the rattlesnake, which jesus christ what timeline would the WWF be in if that happened? God knows. It didn't kill him but it seriously shortened his career. But the way Austin covered for it was awesome and he played it up like a champ, especially since I know he's had some serious politics backstage, but Owen kept his job and got to perform the fucking awesome and genuinely badass OWEN 316 I JUST BROKE YOUR NECK promo with the shirt. Owen later recreated the botched piledriver as a work in a match against Dan Severn, where Dan pretended to have also gotten his neck broken by the move and they had to stretcher him out, which was also sick but the problem is that ironically enough, Owen almost also fucking killed Dan as well! I guess Owen was really going for the authenticity of the original botched piledriver that broke Austin's neck, and so he also dropped Dan directly on his head. Dan was way more lucky and didn't severely injure his neck, but he did discuss in an interview much later that it genuinely did hurt him and that years and years later Austin had called him about the match and was like Jesus Christ dude, he almost got both of us! I think my favorite Owen era was when he became the first white person invited to the cookout by joining the Nation of Domination and had the ENOUGH IS ENOUGH, AND ITS TIME FOR A CHANGE! Gimmick, especially when Jason Sensation, yes, Jason fucking Sensation had a little feud with Owen which was genuinely really funny imo. Jason would always mock Owen and it was perfect. Anyways yeah Owen was pretty cool RIP LEGEND."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Makai Clubwrote on 31.08.2023:[7.0] "A good wrestler but only really great when paired up against his brother who is one of the greatest of all time. People tend to put them on the same level which Owen was far off it. Where Owen does stand is a very good 3rd tier. A good athelete who did things that many didn't in the US/Canada, good techincally and a great character worker. Despite being slightly overrated as a worker, he's a well toured wrestler winning gold everywhere he went and has an enviable career."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: mpichwrote on 11.08.2023:[7.0] "Immer im Schatten seines Bruders, bis zuletzt wie "eine gehetzte Seele" bei seinen Auftritten, aber technisch gut und teils auch mit guten Storylines ("The King Of Harts"). Oftmals jedoch ein wenig mühsam anzusehen, da er m.E. wenig Charisma besaß und nie ganz dorthin gelangte, wo er sich wohl gerne gesehen hätte. RIP."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: MattHallwrote on 12.07.2023:[9.0] "I enjoyed his work as The Blue Blazer and he had some good matches with Triple H, The Undertaker, The Rock, His own brother Bret Hart, Shawn Michaels, and the list goes on and on. Sad that he died at a very young age. RIP Mr. OWEN HART"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Giantfan1980wrote on 09.04.2023:[8.0] "Just about as good as Bret Hart and he possessed the agility which he kinda lost after a knee injury in the late 80's (or early 90's) and the world was robbed of Owen getting a shot as a main eventer. One of those guys who was always just outside the main event title run and never got there because of his employers stupidity."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: AnthoTheKIDwrote on 29.01.2023:[10.0] "An absolute genius in the ring. Everything was very fluid, everything was on point. So sad that the wrestling world lost him so soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Abo96wrote on 21.01.2023:[10.0] "Unglaublich talentierter Entertainer mit großem Sinn für Details im Ring und auch außerhalb. Sehr smooth im Ring, gutes Selling, hervorragende Mimik. Insgesamt auch ein besserer Athlet als sein Bruder Bret. 1994 war sein bestes Jahr mit der großartigen Fehde der beiden Brüder. Schade, dass er danach wieder aus dem Main Event gerutscht ist und nie die Chance hatte, World Champion zu werden. Das Potenzial dazu hätte er absolut gehabt. Extrem tragisch natürlich sein sinnloser Unfalltod, der das Wrestling ein großes Talent und einen, nach allen Erzählungen, wundervollen Menschen gekostet hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: benh2wrote on 11.01.2023:[8.0] "Owen oozed natural talent. He just didn't really care and that's fine, not everyone can be committed 24/7. But when he wanted to go, he was one of the best."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: nothingleftinsidewrote on 14.11.2022:[8.0] "I'm tempted to call Owen a great "what if" but the guy was pretty lackadaisical about his career and advocating for himself, resulting in him constantly being buried in WWF booking. I feel like the "what if" would have been more of the same that we saw in 99 until his contract runs out and he goes back to Calgary to be a firefighter or teach the third grade or whatever the hell. He was a great worker, though less careful than his brother. You don't have to watch too many of his matches before you run into some sort of botch. He also took more risks than his brother, which explains some of it. Still, he was an exciting technical wrestler with a good sense of pacing, heat, etc. Pretty much all his matches are good. A classic whiny, chickenshit heel with effective promo work no matter what stupid situation the WWF pushed him into. It's bullshit that he died, but it did set a tone for the next 20 years about being a little more careful with this dangerous shit that technically isn't wrestling. Good on his wife for taking on the WWF the way she did, though it would be nice to see him in videos. A- worker, B+ promo, and a hard C for look. He was far from the greatest of all time, but still a great hand for any roster."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: sbg2022wrote on 29.08.2022:[10.0] "He was way too good for the fate that he suffered. A man who I believe even nowadays, would be head & shoulders above 99.9% of today's wrestlers, maybe except for like Bryan Danielson or Zack Sabre Jr."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Maxkappelnwrote on 17.04.2022:[10.0] "Eindeutig einer der Besten überhaupt, technisch brillant, schaffte es auch Geschichten im Ring/Match zu erzählen. Dazu am Mikrophon hervorragend. Da kann es nur 10 Punkte geben. Schade das sein unnötiger, früher Tod einen zukünftigen World Title Run verhinderte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: TigerDiverwrote on 03.02.2022:[10.0] "Owen Hart, I think, could make the case for the greatest wrestler to never win a World Championship in a major promotion. His work ethic was way too good for the time period he was in, to the point where there were only a few guys who can match up to him from bell to bell. His promo ability, character work, personality traits, and facials were pure gold. I honestly think if his potential is completely fulfilled, he might even have a good chance of ranking over his own brother, Bret."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: rishabhwrote on 02.02.2022:[10.0] "Owen Hart was a tremendous worker and like a lot of people here have said, that his work was ahead of it's time. I don't think he was better than Bret in the ring but as a character he was more enjoyable. His matches with Bret are some of my favorites and Owen is in my opinion the best wrestler who was in the WWE but never won the World Title. The only thing which could prevent me from giving him a full 10 is that we never saw his full career unfold but for whatever time he wrestled he created a great legacy and cemented his place as one of the greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: GriffinXwrote on 30.01.2022:[10.0] "Owen was so amazing. You go back and watch his early stuff you see how he was doing things back in the 80's and 90's that guys are doing now. Then to be able to move the WWF and play such a great heel against his brother"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: benny5bellyswrote on 30.11.2021:[8.0] "Owen was great, such a good wrestler and making sure he got the little things right. His feud with Bret will stand up to any feud in wrestling history. Some of his Stampede stuff is way ahead of its time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: HighFlyDeathcorewrote on 29.11.2021:[10.0] "The fucking goat. Owen hart never had any bad matches that i have ever seen. He cut amazing promos and he could play any gimmick. WWE should have gave him the world heavyweight title and made him a star. Truly a wrestler you could build a company around"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Conquistador37wrote on 13.10.2021:[10.0] "1 of my all time faves, maybe one of my top 3 or 4 tied for #1. I loved Owen, he was my #1 reason to watch WWF, his passing was the first major blow to my fandom, but as i grow older i learn to celebrate his life more so than mourn his passing. He truly was THE BEST THERE EVER WILL BE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Ma Stump Pullerwrote on 09.07.2021:[8.0] "In terms of wrestling ability, Owen was utterly fantastic: agile as anything, astonishingly technical when required, could pace himself with slower and more bulky guys all the way up to a furious workrate as seen in Japan respectfully, had great ring psychology and knew how to work effectively throughout a match as either a face or heel. Nothing really bad to be said there and I think he more than earns his rep as one of the greats. However, Owen suffers from a lot of stuff outside the ring: namely, his character work. Owen was never really much of a talker and I've honestly never seen a good Owen promo out of him. He's bland as anything as a face and can only really pull off the chicken-shit, entitled brat as The King of Harts was, but even that got old. While he can work a good heel in the ring, he's just not anything beyond it. The main issue I have is that Owen's motivation and that ring quality reduces a ton after Bret leaves: he just was never the same afterwards and seemed to be eying up retirement as he viewed wrestling as basically a job, not a passion, as he was fairly young and wanted to leave before injuries caught up to him. If he had been inspired by the likes of Angle and co joining and got back into the swing of things? Maybe we'd have a utterly fantastic career there. Unfortunately, that seems minuscule as a issue compared to what happened to him. A great talent greatly missed, but, frankly, I can't put him higher with what I've seen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: earlearlearlwrote on 06.07.2021:[9.0] "Everything I've seen from Owen is great. I do have to watch some more of Owen's promos to see if I want to raise him to a ten but he is brilliant."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Daigotsuwrote on 19.06.2021:[9.0] "Owen was a fantastic performer and a fantastic character in the ring. He never really got his due when he was alive; never quite got pushed to where he should have been, which is a credible main event talent. Maybe it would have happened before his untimely death, but it's a shame it never happened when he was alive."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: AnBwrote on 17.04.2021:[8.0] "Owen Hart was brilliant in the ring and it's tragic what happened to him. I thought he did fine as a face, but was wholly unbelievable as a heel. His energy when on the mic just felt completely fake, like Owen couldn't act like an angry or frustrated guy."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: KENTAfanwrote on 15.04.2021:[10.0] "When I think of the most underrated wrestlers of all time, I immediately think of Owen Hart. This guy was just such an amazing competitor. Had great in-ring talent and psychology, more charisma than his brother, and was amazing as a heel. I think he could've been equally as good as a face although he never really had the chance. Unfortunately, Vince had no faith in him and stuck him in stupid angles and ridiculous gimmicks, which ultimately is what got him killed. It's such a shame. He easily had what it took to be one of the greatest world champions of all time, and I feel the stupid Blue Blazer crap that eventually led to him falling to his death robbed us of not only many years of awesome matches he could've gone on to participate in, but also an amazing human being."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Brett1980wrote on 25.01.2021:[9.0] "One of the best junior heavyweights in NJPW in the mid 80s, really innovative. Blue Blazer was not pushed well but he could still have a decent sub 5 minute match. When he returned to the WWF in 1992 he was again underused until his feud with Bret that was tremendous. He was then just a tag team guy and was usually the guy someone beat on the way to becoming a main eventer. Which was a job he did well."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Dennisiztheman02wrote on 01.11.2020:[10.0] "Owen Hart is an amazing worker who I believe was UNDERRATED before his unfortunate demise. For those who think otherwise, watch Bret Hart vs Owen Hart at Summerslam 1994 and Jushin Thunder Liger vs Owen Hart. Owen is a talented wrestler with a lot of potential but didn't get that big main event push and ended up being stuck in the midcard. Had he been pushed, I think he would've been an amazing main eventer like his brother Bret."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: marexcelwrote on 27.07.2020:[10.0] "Ich kam zum Wrestling der WWF als Owen Hart bereits verstorben war und hatte von ihm wirklich kaum eine Vorstellung. Bis auf den Montreal-Screw Job und den späteren WWE-Run kannte ich auch von Bret Hart nur die eher schrägen späten 90er in der WCW. Der legendäre Ruf der Brüder war für mich schwer zu fassen. Mit der Aufarbeitung der Historie 1993 wurde mir aber schnell klar, was ich da bisher verpasst hatte. Owen Hart war ein Natural Wrestler. In Stories, die nah an der Realität waren, wie die Rivalität mit seinem Bruder, wirkte er einfach irre authentisch und überzeugend. Sicherlich nicht der beste Promo-Guy im Geschäft und oft sah man, dass es für ihn einfach nur Aufgabenerfüllung war, aber dennoch konnte er auch auf der Ebene überzeugen und gerade als King of Harts war er ein wirklich starkes Gesamtpaket. Rückblickend versuche ich noch zu ergründen, warum man ihn nie Richtung Main Event-Picture geschickt hat. Für mich brachte Owen Hart alles mit, was ich in den 90er in der WWF sehen wollte und so hätte ich gerne gesehen, was er in den frühen 2000ern leisten hätte können. Mit Jericho, den Hardys, Angle, Storm, Benoit, Guerrero, Benjamin & Haas, RVD, Mysterio, Lesnar oder auch Cena hätte es in der Phase viele starke Paarungen gegeben. Auch wenn mir noch ein paar WWF-Jahre fehlen, kann ich jetzt schon festhalten, dass Owen Hart damals für mich ein absoluter Fixpunkt war. Einer der weniger Worker, wo auch die unwichtigeren Matches meine 100%ige Aufmerksamkeit haben. Irre sympathisch und im Ring oft smooth AF. Er bracht im Ring so viel mit, was ich heute oft vermisse. Alles, was er im Ring anstellte, hatte eine Bedeutung und einen Zweck. Starker Wrestler, guter Typ. Ruhe in Frieden, Owen Hart."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Khalid Acewrote on 12.06.2020:[6.0] "I don't agree with some of the opinions that say he was a better worker than Bret but he was more charismatic. He was growing as a worker & in his character but I feel that Bret's leaving affected his position in the company. Sadly he didn't reach his prime yet."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: qbortwrote on 01.05.2020:[9.0] "Owen was more entertaining to watch than Bret. He was a good high flyer. Owen & Yoko were an underrated tag team."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: KyleEnjoysWrestlingwrote on 07.08.2019:[8.0] "Clearly overrated in some respect due to what happened. Owen was a good right hand man to Bret during the Hart Foundation days & was a well timed comedic presence & tag guy with Davey & Yoko. After the Screwjob, Owen was going nowhere fast & it felt like his glory days were behind him. The Blue Blazer gimmick was unnecessarily silly, but Owen as the Blackhart didn't really connect with audiences either."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Sick Lebowskiwrote on 09.05.2019:[10.0] "Großartiger Wrestler und, wenn man der allgemeinen Meinung seiner Kollegen und Bekannten Glauben schenken darf, einer der nettesten Menschen im Business. Im Ring für mich auf einer Stufe mit seinem Bruder Bret, technisch sogar etwas stärker als dieser. Viel zu früh und vor allem viel zu tragisch von uns gegangen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: zephyrwrote on 19.03.2019:[8.0] "It feels really bad to say this but I definitely feel like his fatal accident has led to Owen Hart becoming sort of an overrated icon. That's not to say he was bad; he was a great wrestler. Just not a 9. 3 average rating level great wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Steamboat2511wrote on 02.10.2018:[8.0] "Wie sein Bruder war Owen Hart einer der besten Techniker überhaupt. Er konnte immer ein mindestens ansehnliches Match auf die Beine stellen, mit jedem Gegner. Charisma fehlte leider ein wenig, so dass er auch immer ein bisschen im Schatten von Bret stand. Und leider verstarb er, bevor er in der WWE zu einem noch größerem Star hätte werden können und beispielsweise Heavyweight Champion wurde. Eine der großen Tragödien der Wrestlinggeschichte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: RatingsMachinewrote on 22.09.2018:[8.0] "Owen's untimely death has led to people severely overrating him. Owen could work a variety of styles, and he was very good at them all. But he wasn't one of the greats, and few people were saying he was until he died. At which point, he suddenly became one of the best who ever laced up a pair of boots."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: jcb9wrote on 17.05.2018:[10.0] "Maybe the greatest wrestler ever who never got to be World Champion. Owen Hart was a great worker and had a ton of charisma and mic skills ?  more than his brother Bret. Owen was a great obnoxious heel. Unfortunately he was consistently mishandled after he decided to stay with the WWF after Bret left, despite the very obvious opportunity Bret's departure provided for a main event push for Owen in the form of a feud with Shawn Michaels. What could've been..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: pappahousewrote on 22.03.2018:[9.0] "Sehr tragisch wie die wunderbare Karriere von Owen Hart zu Ende ging. Toller Typ, ich liebe ihn, großartiger Wrester, auch als verbitterter "Hart-Junior" überzeugend.  Der Enzuigiri der WWF, super Aktion.  Ein Punktabzug für die Zeit mit Yokozuna, dass passte für mich irgendwie nicht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: CHN325wrote on 03.02.2018:[8.0] "Unfortunate that he had to live in his brothers shadow and that he nearly paralyzed Steve Austin,  because Owen was one of the best pure wrestlers to ever strep foot in the ring. He could have been a top at the top of the decade. didn't quite have the charisma that Bret had."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: TheLoudMouthwrote on 08.01.2018:[9.0] "In meinen Augen deutlich besser als der Hitman, da man Owen Hart - im Gegensatz zu seinem Bruder - auch am Mic ernst nehmen konnte. Ein ganz, ganz tolles Komplettpaket, dass leider viel zu früh verstorben ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: ianlapierrewrote on 04.11.2017:[7.0] "Had Owen lived and wrestled another 10 years, who knows what could have been? He was fantastic in the ring like his brother and he had even more charisma. He wrestled 5 star matches and looked to be on his way to the main event level when he tragically fell to his death at the Kemper Arena."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: taabr2wrote on 11.09.2017:[9.0] "A brilliant in-ring worker, just everything Owen did in the ring looked effortless. In my opinion Owen Hart is a better worker than his big brother Bret. However it is the fact that Bret carried himself better that made him the more successful member of the family."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Squared Circlewrote on 04.08.2017:"I won't rate this as his career sadly ended far too early.  He was entertaining from the first time he set foot in a ring and appeared to be blossoming out of his brother's shadow.  Tragic.  RIP."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Blood Pumpwrote on 24.04.2017:[8.0] "Wasted potential, perhaps the biggest waste as a matter of fact and I think that's partially Kliqs fault as well as of course Russo's. Owen was an amazing worker who had more charisma then his brother Bret and could've potentially been better then him if given the opportunity. His WM match with Bret is one of my all time favorites. Along with Eddie hes one of the biggest tragedies in the history of WWE."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: TheWrestlingFanwrote on 01.03.2017:[10.0] "The GOAT of Hart Family. Incredible in the ring, on the mic, and has more believable character than Bret Hart. Had he still alive and wrestled, I think he could have been an awesome WWE Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Real Raterwrote on 30.01.2017:[7.0] "In-Ring Skills:Nicht so gut wie sein Bruder Bret aber er war einer der besten Wrestler der WWE in den 90er. 8/10 (50%) Promos/Schauspieltalent:Nur Durschnitt. 6/10 (25%) Charisma/Erscheinung/Gimmick:Auch hier leider nur Durschnitt. 6/10 (25%) Sind dann insgesamt 7 Punkte für The King Of Harts und RIP.  = 7 Punkte"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: JEK 1991wrote on 27.01.2017:[10.0] "One of the best wrestlers of all time. A lot like Bret. Exciting performer to watch. WWE please put Owen in the Hall of Fame and stop pretending that he did not exist. If Owen was still alive he would have been WWE Champion and had a bigger lengthy career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: rjsbx11wrote on 08.01.2017:[9.0] "One of the top 5 ever, in terms of sheer ability, ha combination of all of the technical skill, plus the high flying moves. Don't think he was a standout as far as psychology or storytelling though, which where Bret has him beat by a country mile. I don't think that his position in the company was due to just Vince's lack of belief in him, though that played a part. He wasn't assertive at all, and that hurt him. However, Owen was constantly a source of entertainment playing a great bitter/whiny heel, he was the top heel in 1994 and from there became nothing but consistent no matter the role. Died way too soon and unnecessarily, Owen Hart's legacy and ribs live on forever."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Wrestling Foreverwrote on 07.10.2016:[10.0] "Owen war ein riesen Spaßvogel und mit Davey Boy für seine Streiche bekannt auch war er ein super Ehemann und liebte seine Familie. Im Ring war er neben Bret der beste der Harts. Seine Fehde mit Bret sehe ich als einer der besten Bruder Fehden in der Wrestling Geschichte. Er war schon in Japan bei NJPW super und hatte auch bei der WWE zig fantastische Matches im Singles und Tag Team Bereich. Ein fantastischer Allrounder, Techniker der viel zu früh durch diesen sehr unglücklichen Unfall verstarb. Edit 08. 02. 2016: Gerade die Hart of Gold Doku von ihm auf DVD angeschaut. Da sieht und hört man auch sehr gut was er für ein Mensch im Ring und privat war. Die Geschichten die man da in den Owen Tales hört sind teilweise unfassbar lustig. Owen war auch ein Mann der perfekt seine Stimme verstellen konnte. Es ist auch sehr interessant das er einer der Gründ war warum Chris Jericho anfing zu wrestlen. Ich dachte bei Chris sind es eher Ricky Steamboat und Shawn Michaels gewesen. Auch extreme schade das es nie ein Match zwischen Owen und Chris gab. Edit: 07. 10. 2016 Hab auf der DVD The Life and Death of Owen Hart gesehen. Das er das Wrestling nie wirklich geliebt hat. Er wollte lieber Sportlehrer oder Feuerwehrmann werden aber er wurde nicht genommen so musste er weiter wrestlen um seine Familie ernähren. Owen war auch einer der vieles nicht in der WWF tun wollte das ihm die WWF befohlen hat so hasste er es auch als Blue Blazer aufzutreten. Er fand es auch als Strafe wieder 99 in dieses Kostüm gesteckt wurden, weil er nicht tun wollte was Vince von ihm verlangte. Diese Doku stammt von 1999 und ist von selben Regisseur wie bei Wrestling With Shawdows."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: SlickDevilSWPwrote on 19.09.2016:[10.0] "While Bret was the best overall performer (and my favorite), Owen was the best wrestler of the Hart family. His early matches in Stampede were eye-opening and his feud with Bret is my favorite of all time. I recently watched his match with Ultimo Dragon in 1992 that blew me away. I sense had he lived he would have become a WWE World Champion by 2001-02. RIP Owen. You were one of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: ApexOfEvolutionwrote on 06.09.2016:[10.0] "Für mich der bessere der beiden großen Harts. Als Mark gefiel er mir schon im Tag Team mit Koko B. Ware und in der Fehde mit seinem Bruder durfte er dann als Heel richtig groß rauskommen. Da er für die Rolle des Bösewichtes auserwählt worden war, hatte er natürlich auch mehr Ausstrahlung und Persönlichkeit als es die charakterlich flachen Faces der 90er haben durften. Owen fand als eifersüchtiger, kleiner Bruder einfach die Paraderolle. Leider auch ein Beispiel für die vielen Wrestler, die von der WWE verheizt worden sind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Coltwrote on 03.09.2016:[9.0] "Für mich nach Shawn Michaels sogar der beste Techniker der 90er! Beherrschte sowohl spektakuläre High Flying Moves als auch etwas härtere Manöver.  Unvergessen seine Matches gegen Bruder Bret bei WrestleMania und Summerslam, hier hat man gesehen wozu er fähig war wenn er einen starken Gegner im Rahmen einer guten Storyline bekam. In der Tag-Team Division war er mit 3 Titeln sogar erfolgreicher als sein Bruder! Dazu einer der besten Heels der New Generation Ära. Seine Darstellungen als arroganter Regelbrecher sind umso höher zu bewerten wenn man bedenkt, dass er privat ein sehr umgänglicher und sozialer Mensch war. Vor der Kamera schlüpfte er wirklich sehr überzeugend in seine Rolle. In der oberen Midcard hatte er nach seinem Heel-TurnŽ94 seinen Platz sicher, zum Main Eventer reichte es aufgrund sehr starker Konkurrenz dann doch nicht. Neben dem Hitman, Chris Jericho, Chris Benoit & Edge zähle ich Owen zu den 5 besten kanadischen Wrestlern aller Zeiten. Rest in Peace, Owen!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Chosen Onewrote on 11.06.2016:[9.0] "Owen Hart definitely deserves to be in the WWE Hall of Fame. He had a good move set, look, and had some pretty good charisma. He wasnt very good on the mic but that is easily outweighed by how good in the ring he was. It is a true shame he died and he was so young as well. But overall a great wrestler 9/10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Wrestlinglexikonwrote on 23.05.2016:[9.0] "Owen Hart war, ebenso wie sein Bruder, in der Lage aus jedem die beste Leistung heraus zu kitzeln. Wobei sie dabei nicht unterschiedlicher hätten sein können. Bret eher der methodisch arbeitende Stratege-Owen mit seine explosiveren Technikfeuerwerk, haben sich die beiden großartig ergänzt-vor allem gegeneinander. Aber auch wie Bret war sein "Makel" das micwork-Owen war da nur Durchschnitt. Im Ring dafür dann mit großartigem selling, toller Technik und vor allem der Fähigkeit seine Gegner gut aussehen zu lassen ein everytimer der auf jeder card ein Gewinn war. 9 Punkte-klare Sache hier. :) Und als kleiner Pluspunkt hat Owen den Sprung in die neuere Generation ende der 90er geschafft, bevor es dann bekanntermaßen tragisch endete..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "Owen was a great and legendary talent that was loved by pretty much anyone you might ask, and with good reason. A great guy behind the scenes by all accounts, he's also a great performer with a lot of charisma and ability to play up character angles, seen especially of course in 94 and 97 but really shown through the whole prime of his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: EGeraldhuebnerwrote on 04.05.2016:"Owen Hart, der kleine Bruder von Bret Hart ... betrachtet man die Umstände seine vorzeitigen Todes, kann man nur sagen, was die WWF da verursacht hat, ist absolut verwerflich. Gipfel der Geschmacklosigkeit war allerdings, selbst daraus noch Kapital ziehen zu wollen. Für solche Dinge (ebenso wie für viele andere, z. B. den Betrug von Montreal) könnte man Vince McMahon als Hauptverantwortlichen eigentlich nur tagelang auf's Maul hauen. Als Wrestler betrachtet, war Owen zwar technisch spitze, allerdings fehlte mir bei ihm irgendwie eine gewisse Ausstrahlung. Obwohl direkt blutsverwandt mit Bret Hart, sah ich in dem Fall seine beiden angeheirateten Schwager Davey Boy Smith (British Bulldog) und Jim "the Anvil" Neidhart immer viel lieber. Owen "the Rocket" Hart dagegen konnte mich weder als Face noch als Heel jemals so richtig überzeugen, trotz das er viel talentierter (als Jim Neidhart) war oder zumindest ebenso gut (wie Davey Boy Smith) gewesen ist. Kann natürlich auch mit seinem bescheuerten Debüt zusammen mit Koko B. Ware als High Energy zusammen hängen ? Hat im Unterschied zu Bret Hart auch einen Kollegen (Steve Austin) real verletzt, so das dieser seine Karriere vorzeitig beenden mußte. Allerdings vergessen manche hier ganz gerne mal, das es nicht nur an ihm allein gelegen haben muß. Auch der jeweilige Gegner sollte sich richtig auf geplante Aktionen einstellen können. Von daher, schade um beide, aber natürlich besonders um ihm. Denn leider wird man bei ihm nie sicher erfahren, was er vielleicht sonst noch alles hätte erreichen können ... R. I. P. Owen James Hart"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: WrestlingNerdwrote on 09.04.2016:[10.0] "Ganz klar 10 Punkte für Owen Hart. Es ist einfach krass, was er damals für Wrestling gezeigt hat, er war wirklich einer der besten. Schon fast innovativ. Er zeigte in den 90ern gefühlt schon das Wrestling welches man in den 2000ern als Standard angesehen hat. Zudem war die Fehde gegen Bret Hart, anno 94 auch eine der ersten die ich so als kleiner Junge mitbekommen habe. Hatte Charisma, Mic Work ging auch okay und wie gesagt, im Ring wirklich ein Gott.  Spielte auch die Rolle als meist eifersüchtiger Bruder immer hervorragend. Aber man sagt ja eh immer, die die im Backstagebereich die nettesten sind, geben die besten Heels ab. Leider viel zu früh verstorben.  Achja, und wenn man schaut, dass er z. B. auch der liebling von Kevin Owens ist, und dieser eines seiner Kinder nach ihm benannt hat und auch seinen namen wegen ihm gewählt hat. Sehr gut. und wie ich hier gelesen habe, Y2J zum Wrestling gebracht hat, einfach hervorragend.  Deswegen 10 Punkte für einen der besten Allrounder, R. I. P. Owen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Phenomenal91wrote on 11.02.2016:[10.0] "He didn't live long but he accomplished a lot, as did every member of the prestigious Hart family. A horrible way to go, but he's been given his proper respect for his work. We won't see another one like him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: BackLashwrote on 09.01.2016:[10.0] "The first wrestler since Hulk Hogan that I really loved. The youngest of Stu Hart's kids, he had a lot to live up to and boy did he. His athleticism was off the charts, his skills were vast, his charisma was obvious, his mic skills were energetic and on point. He was the total package and should have been WWF/WWE/World Champion at some point.   I took it real hard when he died, I didn't believe it at first. I won't blame WWE for it because it was an accident, but it didn't need to be. I still miss him to this day and think he would have been the family man he wanted to be by now. As it stands, the legacy he left in WWE, New Japan, Stampede and all over the world will never be forgotten.   God bless Owen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: DanielBryan1986wrote on 04.12.2015:[10.0] "Für mich gehört Owen zu einer Reihe von Wrestlern die es beherscht haben zu unterhalten aber nie den großen Titel hielten. Genauso wie Bulldog, Perfect, Ramon. Er gefiel mir sehr gegen Bret in der Bruderfehde und in Kämpfen gegen Austin oder Michaels. Tragischer Tod, der seine Karriere zu früh beendete."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: HeadCheesewrote on 03.08.2015:[10.0] "Owen Hart was awesome combineing high flying, technical wrestling, entertainment all together. I think he will go down as one Greatest Of All Time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Viper99wrote on 21.01.2015:[10.0] "Er wurde leider nie der ganz große.... Was er aber mit seinen Mic und In Ring Skills hätte werden können.... Selbiges gilt auch für seine "Kollegen" Brian Pillman und den British Bulldog.... Leider all diese 3 tragisch verstorben... Vielleicht war es bei Owen sogar schlimmsten...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Yoyowrote on 17.09.2014:[10.0] "A wonderful performer that combined high-flying game with technical skills and flawless executions, and a great guy on top of that. Sorely missed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Undertalkerwrote on 25.03.2014:[9.0] "Seine hervorragenden Wrestlingskills standen hinter denen seines Bruders nicht zurück. Bret besaß eine ausgeprägtere Ringpsychologie und war vielleicht etwas besser im Matwrestling, dafür war Owens Stil temporeicher und spektakulärer. Ausstrahlung hatte er reichlich und sein Micwork war ebenfalls stark. Das merkt man besonders, wenn man ihn mal als Kommentator gehört hat; da leistete er einen klasse Job! Obendrein war er auch noch ein sehr humorvoller Mensch, was ihn nur umso sympatischer macht. Ganz an Brets Charisma kam er meiner Meinung nach nicht ran. Ich glaube aber trotzdem, wenn sich dieser tragische Unfall nicht ereignet hätte, wäre er in der Card noch weiter aufgestiegen. Wer weiß, vielleicht hätte er sich sogar im Main-Event etablieren können?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Daneraswrote on 03.11.2013:[10.0] "Es ist sehr Schade, dass er einen tragischen Unfall hatte. Er war ein ausgezeichneter Wrestler. Ich habe ihn immer bewundert, auch als er mal böse war (Fall mit seinem Bruder Bret Hart). Die Unterhaltungen von ihm waren immer interessant. Er gehört zu meinem Lieblingswrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Alex Maedawrote on 15.08.2013:[10.0] "Das wahre Total Package, schon bevor sich Lex Luger so nannte. Ich halte ihn für charismatischer, technisch und vor allem rednerisch versierter als seinen Bruder. Und das um Längen. Ich bin mir sicher, dass er heute noch im Wrestling aktiv wäre, entweder als Aktiver oder als Trainer. Ich kann die Ausmaße seines Todes nicht einschätzen, da ich erst seit 2008 das Geschehen verfolge und frühestens 2005 durch Eddies Tod das erste Mal mit Wrestling in Kontakt gekommen bin. Nicht nur für die Wrestling-Welt muss sein Verlust schrecklich gewesen sein, vor allem Stu muss es das Herz gebrochen haben, seinen 50 Jahre jüngeren Sohn zu überleben. Das einzig Positive an seinem komplett verzichtbarem Stunt, der zum Unfalltod führte, ist die Tatsache, dass er dort gestorben ist, wo er fast sein ganzes Leben verbracht hat und Blut, Schweiß, Tränen und Leidenschaft hinterlassen wie wohl sonst nirgendwo : im Ring. Auch wenn ich noch nicht mal "Wrestling" aussprechen konnte, als er starb, bleibt mir die Luft im Halse stecken, wenn ich (Tribute-) Videos von und über ihn sehe. Einer der ganz Großen dieses Sports, der seine Höhepunkte wohl noch vor sich hatte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: edge4everwrote on 29.07.2013:[10.0] "Ich mag ihn mehr als Bret Hart leider durfte er nie einen World Title gewinnen R. I. P Owen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Boris The Menacewrote on 20.07.2013:[10.0] "Owen Hart in my opinion will always be the best wrestler to come out of the Hart family and that speaks volume about how great he was."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: test85wrote on 05.06.2013:[8.0] "War was man so hört ein sehr symphatischer Mensch. Im Ring einer der Besten seiner Zeit. Aber aus meiner Sicht kein World Champion. Aber das gewisse Etwas hat meiner Meinung nach gefehlt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Leonewrote on 09.04.2013:[10.0] "An absolutely brilliant wrestler whose career and life ended far, far too soon.  It is debatable as of today when it comes to asking who the best Hart brother was between Bret and Owen - A reality to it is that they're both as good as each other, but different.  In the ring, Owen was a perfect combination of different styles of wrestling, which included Submission wrestling, Amateur wrestling, lucha libre and strong style, and his wrestling experience extends to not just WWE, but New Japan Pro Wrestling, World Of Sport (UK), Mexico and Germany.  On top of this, he had good mic skills and charisma.  Some could argue that he would have been WWE champion at some point if he was still around, and while it might be true that he was in the company during an era were his choices were frowned upon business-wise (Not wanting to do adult storylines, because his kids would be watching, during a time when adult storylines were good for business), it can make us wonder what would have happened differently.  A great wrestler who is as greatly missed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Kaneanitewrote on 10.02.2013:[10.0] "Einer der größten, die es je gegeben hat. Owen Hart stand keineswegs im Schatten seines Bruders, er konnte technisch und auch von der Austrahlung her absolut mithalten. Im Ring hat er immer hervorragende Leistungen gezeigt und er galt ja auch backstage als einer der beliebtesten Wrestler zur damaligen Zeit. Leider konnte er in seiner Karriere nie den größten Titel erringern, was allerdings mit Sicherheit passiert wäre, wäre nicht dieser tragisches Unfall 1999 gewesen. In diesem Sinne: Ruhe in Frieden Owen, wir werden dich nie vergessen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Randy Owrote on 06.02.2013:[10.0] "Owen Hart war genau so Talentiert wie Bret. Seine Schauspielerischen Leistungen waren sogar noch besser. Im Ring konnte er auch mithalten. Es gibt viele so Gute Kämpfe von Owen. Er war leider zur falschen Zeit am falschen Ort. Wenn er 1999 den Stunt überlebt hätte, wäre auch kein WWE Champion mehr geworden. Dazu hat er gar nicht mehr in die damalige WWF rein gepasst. Schade eigentlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: LM Punkwrote on 30.08.2012:[8.0] "Er ist und bleibt der kleine Bruder von Bret. er hat es nie richtig in den Main-Event geschafft und grosse Titel gewonnen. So bleibt seine karriere unvollendet. Deshalb nur 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Titanwrote on 03.07.2012:[10.0] "Einer der begabtesten Entertainer, die die WWE wohl jemals in ihren Reihen hatte. Technisch gesehen immer einwandfrei, immer mit Herz und Seele dabei und auch was das Erzählen einer Geschichte angeht war Owen Hart immer einer der besten, egal ob es um das Geschehen im Ring geht oder um das verbale Duell. Ich erinner mich gerne an die Brüder-Fehde. Natürlich steht er im Schatten von Bruder Bret Hart, aber nichts destotrotz war Owen irgendwo immer der heimliche Hart-Liebling. Schade, dass er nie einen World Title in der WWF gewinnen konnte. Wenn er nicht so früh von uns gegangen wär, hätte er sicherlich einen prestigeträchtigeren Titel als den IC oder European Championship holen dürfen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: kekslpetewrote on 05.04.2012:[10.0] "Einer der besten Wrestler die es gab und geben wird. Im Ring wohl das nonplusultra und auch am Mic nahezu unschlagbar. Wäre wohl einer der größten Stars geworden... RiP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Woerpwrote on 08.03.2012:[10.0] "Einer der besten Wrestler der 90er Jahre. Einer meiner All Time Top 5. Als alle für Bret jubelten, habe ich Owen angefeuert. 1994, Owen und sein Bruder lieferten bei Wrestlemania X den besten Opener einer Mania. Als ich den SummerSlam 1994 zum ersten Mal sah und somit Augenzeuge des wahrscheinlich besten Steel Cage Matches aller Zeiten wurde, wollte ich persönlich mit in den Käfig um Bret mit einem Schuh zu verkloppen. Owen Hart ist der beste Wrestler, der nie eine World Title halten durfte; und leider einer der vielen Guten die zu früh gehen mussten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Rey2004wrote on 07.09.2011:[10.0] "RIP mein liebster Wrestler in diesem Business - Schade, dass du so jung sterben musstest - du warst auf dem Weg der Superstar schlechthin in der Federation zu werden, viele Titelsiege lagen noch vor dir - leider durftest du dies nicht mehr erleben. Man sagt ein Mensch stirbt erst dann, wenn sich keiner mehr an ihn erinnert - Owen du wirst niemals sterben, weil sich immer Leute sehr gerne an dich erinnern!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Er hatte mindestens genauso viel Talent wie sein Bruder! Schauspielerisch und von sachen wie Charisma und Mic Work her fande ich ihn ohne hin besser! Nur leider sahen wir viel zu wenig von ihn da er doch etwas im Schatten von Bret stand... Nach Mr. Perfect der nächste verdiente WWF Champion!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Michael Shawn Hickenbottomwrote on 29.07.2011:[10.0] "Zu ihm muss man nichts mehr sagen. Einfach eine klasse für sich selbst, der Bruder des Hitman. Rest in Peace Owen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Donald Duckwrote on 23.06.2011:[5.0] "Owen Hart war für mich nie ein großer Wrestler. Er war einfach grauenhaft am Mic, seine quietschende Stimme hat mich ebenfalls gernevt. Das einzige positive an ihm war, dass er gut im Ring war.. sonst echt gar nichts. Zum Ende war er auch mehr als lächerlich. Nichtmal die Fans hatten Respekt vor ihm und nannten ihn nur "Nugget"."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: FriarFergusonwrote on 28.04.2011:[10.0] "Völlig zu Unrecht immer im Schatten seines großen Bruders. Mein Gott was für ein Heel, ich muss heute noch über manche seiner Aktionen und Promos schmunzeln. Dazu noch mit starken Matches und guten Aktionen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: C0nspiracywrote on 27.03.2011:[7.0] "Ein grandioser Wrestler den ich für besser als Bret halte, leider hat er nicht das Charisma von seinen älteren Bruder. Seine beste Zeit hatte er als der eifersüchtige kleine bruder von Bret mit den Matches bei WM X & Summerslam 94. Ruhe in Frieden Owen du warst eine bereicherung für die Wrestling Welt die dich eigendlich nicht verdient hat."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: LabronBenoitwrote on 13.01.2011:[10.0] "Einer der Besten überhaupt. Hatte das Glück ihn 1998 noch live zu sehen. Leider viel zu früh von uns gegangen, aus ihm wäre mal ein ganz Großer geworden! Er hätte sicher noch ne Chance auf den World Title bekommen. R. I. P OWEN!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Necronwrote on 05.12.2010:[7.0] "Guter Techniker, keine Frage... ansonsten konnte Owen nie auch nur im Entferntesten an Bret heranreichen. Als Heel im Stile des "beleidigten kleinen Bruder" war Owen natürlich grandios, aber weit über die IC-Szene wäre er meiner Meinung nach nie gekommen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: lagunswrote on 27.11.2010:[9.0] "hat mir als Face im Team mit the Anvil und Koko Wrestlerisch sehr gut gefallen und ist als Heel sogar noch über sich hinaus gewachsen. Wurde zu einem der Interessantesten Heels der damaligen Zeit. Ob er nen Worldtitlerun hätte bekommen MÜSSEN weiss ich nicht, aber ich denke dafür war das Geschäft damals einfach noch nicht schnelllebig genug. Heute wäre er nach dem KotR Sieg sicher schnell nach oben geklettert. Vieleicht wollte man ihn auch nicht über seinen Bruder hieven... Auf jedenFall hat er für die jahre 94-97 Höchstwertungen verdient. Leider hat er ab 97 auch stark nach gelassen. Körperlich wirkte er einfach nicht mehr so fit. Er wirkte im Ring viel schwamiger als vorher und lange nicht mehr so agil. Leider wirkte sein Charakter zu der Zeit auch irgendwie Wischi-Waschi... So Halb Heel-Halb Face und sein Run in der Nation und die anschließende Fehde waren irgendwie so was von halbgar, das es wegen der insgesamt eher kurzen Zeit in der wirklich ALLES gestimmt hat Abzüge geben muss. Also "nur" ne Zwei++++++"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: reene82wrote on 27.08.2010:[5.0] "Das einzige was ich als postiv erachte war die Fehde gegen seinen Bruder. Sonst eigentlich nur langweilig. Konnte mich nie besonders überzeugen und schon gar nicht unterhalten."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: royalonewrote on 18.08.2010:[10.0] "fand ihn in seinem zweiten run in der wwe als "rocket" doch sehr lächerlich, was ja dann änderte als er der verbitterte, eifersüchtige bruder wurde. die wiedervereinigung dann mit bret gab ihm noch mehr glaubwürdigkeit. sein zu frühes ableben hat mich damls ziemlich mitgenommen. R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Ray Robsonwrote on 17.08.2010:[10.0] "Aus meiner Sicht mindestens eine Klasse über Bret. Zwei weitere Jahre und er wäre World Champion gewesen. Er hatte das Charisma, was seinem großen Bruder fehlte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Aesopwrote on 12.08.2010:[10.0] "Ich muss mich dem Hirnklops anschließen Owen war besser als Bret, im Ring war er unterhaltsamer da sein Stil um einiges dynamischer und interessanter als der von Bret war. Ich sehe seine Matches lieber als Brets."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: WrestlingFanDuisburgwrote on 16.07.2010:[10.0] "Owen Hart war ein technisch sehr guter Wrestler. Am Mic in seiner Heelrolle auch gut. Insgesamt schätze ich in von den Ringfähigkeiten ein Stück höher ein als Bret, da sein Moveset größer war. Leider ist Owen Hart viel zu früh verstorben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: morph80wrote on 30.05.2010:[9.0] "Aus ihm wäre wohl ein ganz Großer geworden, ich hätte seine Karriere gespannt verfolgt denn er hatte alles was man als Wrestler braucht ... RIP"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Hirnklopswrote on 24.05.2010:[9.0] "Owen war BESSER als Bret. Sicherlich hatte er nicht den Status seines legendären, wenn auch totlangweiligen Bruders, aber er hatte eine Ausstrahlung und ein Showtalent, welches Bret mindestens ebenbürtig war, und im Ring war er um Welten besser, weil kreativer, impulsiver und emotionaler. Ich werd's nie vergessen, wie er Yoko beim Tag - Title - Gewinn in die Arme sprang und sich wie ein Kind freute... Und das als Heel! Auf jeden Fall besser als Bret, und einer der besten Wrestler aller Zeiten, so viel steht fest."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Edge96wrote on 13.05.2010:[10.0] "Technisch gesehen war er genau so gut wie sein Bruder Bret. Sein Tod war natürlich eine riesen Tragödie. Hätte noch ein ganz großer aus ihm werden können. R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Y2J Problemwrote on 13.05.2010:[10.0] "Ich glaube nicht, das zu Owen Hart noch irgendwelche Worte verloren werden müssen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: RockerDropperwrote on 10.05.2010:[9.0] "Technisch toller Wrestler, der vom Ringen bis zum High-Flying alles beherrschte; sein Tod war tragisch, umso mehr da der gesamte Blue Blazer/von-der-Decke-abseilen-Kram schon lange keine Sensation mehr war. Zum World Champion wäre er aber nie geeignet gewesen; zu schwach seine Fähigkeiten am Mikro, zu blass als Persönlichkeit. Aber besser so rum als technisch schwach zu sein und am Mikro stark."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Eazyewrote on 25.04.2010:[10.0] "Ein leicht ovareteter Superstar was an seinem Tod liegt. War ein guter Techniker der sehr gute Matches auf die Beine stellen konnte. Am Mic auch gut und nebenbei sehr charismatisch. Das alles hätte ihm vielleicht 8-9 Punkte gegeben. Aber ich mochte den Kerl als Mark, egal ob er nun Face oder Heel war, der Kerl war bei mir so over und auch wenn er in der Midcard war war er mir einfach verdammt sympatisch. Deswegen gebe ich auch 10 Punkte. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: RickRollwrote on 16.04.2010:[10.0] "VIEL VIEL besser als Bret. Bret war im Ring einfach nur langweilig (Langweilig, ich sagte nicht schlecht). Owen dagegen war nie langweilig und konnte immer wieder überzeugen. Ob jetzt in Japan oder in den Staaten das ist egal; Owen war KLAR besser als Bret."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Zizouwrote on 30.03.2010:[10.0] "Großartiger Worker, der leider viel zu früh aus dem Leben schied."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: tibocowrote on 09.03.2010:[10.0] "Er war seit Survivor Series 92 im TagTeam High Energie, mein Liebling"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Manu Adamswrote on 16.02.2010:[10.0] "Owen war im Stande eigentlich mit jedem auch noch so schlechtem Wrestler ein ansehnliches Match abzuliefern und genau das ist es was nur eine handvoll können. Lieferte mit Bret Hart die wahrscheinlich beste Rivalität der WWF ab. Definitiv ein Mann, der es verdient gehabt hätte den World Titel zu erringen, schade dass ihm dies durch den tragischen Unfall nicht mehr gelingen konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Pizzafunghiwrote on 22.01.2010:[10.0] "Die matches gegen seinen Bruder, unvergessen. Sein Tod, eine wirkliche Tragödie. Es ist eine Schande, dass er nie den großen Titel halten durfte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: TheROCKwrote on 22.01.2010:[10.0] "Sollte selbst nur die hälfte von dem Stimmen wie Owen Hart angeblich war, so reicht dies um zu sagen, dass er eins der größten Vorbilder war, die dieses Business je hervorbrachten. Mit seinem Sieg über seinen Bruder bei WrestleMania 10 war er für mich wie ein World Champion. Leider sollte er diesen Titel nie wirklich gewinnen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: ShakDragoonwrote on 19.01.2010:[10.0] "Großartiger Wrestler, der leider viel zu früh sein Leben lassen musst. R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Mizisawesomewrote on 14.01.2010:[10.0] "Owen Hart war und ist einer meiner Lieblingswrestler. Er war technisch absolut herrausragend, hatte einen extrem unterhaltsamen Stil und im Mic-Work war er auch klasse. Wieder eines meiner Vorbilder"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Brooklyn Brawler 1985wrote on 20.12.2009:[10.0] "Obwohl er nie den World Title holte und lange im Schatten seines Bruders stand, seh ich ihn doch auf einer Stufe mit dem Hitman: technisch waren sie auf einem Niveau, und am Mic war Owen definitiv der Bessere!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: downtown2wrote on 15.12.2009:[8.0] "Owen Hart werde ich nicht aufgrund seines tragischen Todessturzes 10 Punkte geben, dass wäre eine Beleidigung. Owen war ein aufregender High Flyer, gerade für seine Zeit und hatte in seiner Karriere tolle Fehden. Er hatte eine sehr positive Ausstrahlung, funktionierte als Heel genauso gut, wie als Face. Aber er war auch deutlich schlechter im Gesamten als sein Bruder Bret, dem Vergleich muss er sich stellen. Er war kein Main Event Mann und wäre es vermutlich nie geworden, schon allein, weil er über die Jahre körperlich stark abbaute. Er wirkte zuletzt sehr schwerfällig im Ring und sein Stern schien mit dem Verschwinden seines Bruders langsam zu sinken. Man kann ihm aber nicht vorwerfen, nicht alles rausgeholt zu haben und sets alles gegeben zu haben. Eine gute Bewertung für einen wirklich Guten seiner Zunft."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Burzi1wrote on 21.10.2009:[8.0] "Er war ein klasse Wrestler und auch am Mic nicht gerade schlecht. Für mich war er äußerst sympathisch."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Hit Manwrote on 21.10.2009:[8.0] "Leider aufgrund eines völlig unnötigen Unglücks zu früh verstorben. Hätte noch viel erreichen können, super Techniker."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Matt Mackswrote on 23.09.2009:[9.0] "Owen war in der Tat der erste Wrestler, den ich gesehen habe, damals 1993 bei einer WWF Challenge Sendung gegen irgendeinen Jobber. Ein guter Techniker und eine charismatische Persönlichkeit, der es leider nie ganz aus dem Schatten seines Bruders Bret geschafft hat... und dem in einem der tragischsten Momente des Wrestlings die Chance dazu genommen wurde."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: SweetMetalMusicwrote on 26.07.2009:[10.0] "Ein super Wrestler. Konnte so gut wie alles. War auch ein Top Heel. Leider viel zu früh und absolut unnötig verstorben. R. i. P. Owen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: 108 Sternewrote on 24.07.2009:[9.0] "Fantastischer Wrestler, jedoch nicht besonders charismatisch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: gerybundy68wrote on 22.07.2009:[6.0] "Ohne Zweifelm, ein sehr guter Wrestler, um den auf Grund seines zu frühen Todes und den Namen Hart aber eine Art Mythos entsteht , den ich für übertrieben halte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Butzelchenwrote on 18.06.2009:[9.0] "Als Fiesling und "B"-Hart (hinter Bret) absolut hervorragend!  Extra Lob: er verließ in der schwierigen WWF/WWE Phase nicht die Liga in Richtung WCW (im Vergleich zu ettlichen anderen). Nur die Besten sterben jung! RIP!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Eddiewrote on 03.06.2009:[8.0] "Einer derjenigen, die noch gut 10-15 Jahre länger hätten im Ring stehen können, ohne diese Tragödie, nichts desto trotz ein sehr genialer Wrestler, doch schon noch klar hinter seinem Bruder anzusiedeln, 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The-Game91wrote on 06.05.2009:[9.0] "Er war mit Talent geprägt schade das er schon so früh von uns gegangen ist"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: manager1977wrote on 07.04.2009:[9.0] "Als Tag Team-Wrestler am Anfang seiner WWF-Zeit verheizt, durfte er als Single-Wrestler zeigen was er drauf hatte. Leider viel zu früh verstorben. RIP Owen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: BaptisteZorGwrote on 29.01.2009:[8.0] "Von manchen durch den tragischen tod sicher etwas overrated, von anderen aufgrund dessen underrated.. Ich denke ne 8 wird Ihm gerecht, da er ein solider wrestler war. Im Ring sah er richtig gut aus, am Mic offenbarte er einige schwächen und das Charisma von Bret hatte er auch nicht ganz."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Blazewrote on 05.01.2009:[8.0] "War zwar in seiner Karriere nie der World Champ und Main Eventer, aber das wäre sicherlich noch gekommen. Im Ring gefiel er mir durch seinen schnellen Stil noch um einiges besser als Bret und das ganze WWF Roster, mit Ausnahme von Shawn Michaels. Genial wie er gewrestlet hat, wobei man wieder die Einflüsse von Dynamite Kid merkte. Die Fehde der beiden Brüder gegeneinander wird wohl auch unvergessen bleiben. Laut Chris Jericho wollte er ja nur noch ein paar Jahre im Buiz bleiben, aber ich bin sicher, dass der King of Harts ein ganz großer geworden wäre. Kommt zwar vom Mic Work nicht an seinen Bruder ran, hat dennoch einen großen Teil für's Wrestling in den Staaten getan."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: TRIPLEH2008wrote on 25.11.2008:[10.0] "War ein technisch guter und sympatischer Wrestler, leider viel zu früh von uns gegangen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: El Reywrote on 07.10.2008:[10.0] "Der mit Abstand talentierteste Worker den die WWE jemals hatte. Technisch wohl der beste... noch einen Tick besser als Mr. Perfect oder Bret Hart. Leider viel zu früh verstorben. Hall of Fame kommt sicher bald... muss kommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Theron083wrote on 21.09.2008:[9.0] "Oh man, was hätte für ein Top-Heel und überhaupt was für eine Legende aus ihm werden können. Ich wette er wäre heute ein Urgestein wie ein Shawn Michaels wenn er noch leben würde."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Wise Warriorwrote on 16.09.2008:[7.0] "Guter Storyteller im Ring. Zum Solo Main-Eventer fehlte ihm aber etwas der rechte Biss und die Promo-Fähigkeiten."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Baszdmegwrote on 05.09.2008:[10.0] "In Brets Schatten, auch wenn ich Owen in fast sämtlichen Kategorien bevorzuge. Klasse Wrestler mit einem unfassbar tragischen Ende... wer weiß, wo er heute wäre?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: King of Queenswrote on 31.07.2008:[9.0] "Einfach nur ein genialer Wrestler mit großartigen Klassikern. Zwar war er vom Gimmick her seinem Bruder Bret unterlegen, doch sind sie bei der Arbeit im Ring fast gleich auf."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Mathias Rekaschwrote on 31.07.2008:[10.0] "Leider viel zu früh verstorben. In meinen Augen der bessere der Hart Brüder, die bei WWE aktiv waren. Owen hatte neben seinen tollen In-Ring Fähigkeiten, die ihm zum Teil familiär schon in die Wiege gelegt und zum anderen Teil durch seine Brüder und seinen Vater noch antrainiert wurden, einfach eine grandiose Ausstrahlung. Vor allem die Rolle des neidischen Bruders hat er perfekt gespielt, aber auch seine späteren Heelrollen waren einfach toll. Hätte er länger leben dürfen, wären ihm sicher noch einige Heavyweight Title bei WWE quasi "zugeflogen". Ehre wem Ehre gebührt. R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Lokfanwrote on 29.07.2008:[10.0] "Sehr guter Wrestler den ich immer gerne gesehen habe und es mich freute wenn er Bret eins auswischen konnte, only the good die young!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Exist 2 Inspirewrote on 27.07.2008:[10.0] "Toller Wrestler mit viel Ausstrahlung und toll im Ring, viel zu früh verstorben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Jeff Hardy Fanwrote on 26.07.2008:[9.0] "Einfach klasse wrestler der hats auch mal verdient in ein SvR game als legende mit zu machen ^^"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: finsterwegwrote on 18.07.2008:[6.0] "Ich weiß nicht warum alle sagen Gott war er Gut, klar ein perfekter Werstler aber ich glaube bei vielen spielt der mythos um ihn eine Rolle, ihm fehlte etwas was mich persönlich überzeugt hätte, ich sah in ihm ewig der versuch ein2ter Bret zu sein und das hatte er einfach nicht drauf.. meine Meinung.."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Frutzwrote on 06.06.2008:[9.0] "Ich habe ihn das erste Mal im Team mit Jim Neidhart und kurz danach zusammen mit Koko B. Ware gesehen. Technisch gehörte er zum Besten was die WWF zu bieten hatte, aber íhm selbst konnte ich wenig abgewinnen. Dies änderte sich erst, als der Neid auf seinen Bruder immer weiter zunahm und sich daraus eine wunderbar, emotionale Fehde entwickelte, in deren Schatten Owen einen gewaltigen Sprung nach vorn machte. Danach war er aus den oberen Bereichen der Midcard nicht mehr wegzudenken und es wäre sicher nur eine Frage der Zeit gewesen, bis er es nach ganz oben geschafft hätte. Leider hat sein tragisches Ende ihn viel zu früh aus dem Leben gerissen. RIP"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Mediwrote on 28.05.2008:[6.0] "Habe niemals ganz verstanden warum so viele Leute ihn für so gut hielten. Also versteht mich jetzt bitte nicht falsch, denn Technik hatte und und sein Move-Arsenal konnte sich auch sehen lassen, aber am Charisma hat es in meinen Augen deutlich gefehlt. Ich werde wohl nie den Hype um ihn verstehen, auch wenn mir sein Tod natürlich sehr leid tut, doch das macht ihn für mich nicht besser."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Champwrote on 17.05.2008:[10.0] "Er ist viel zu früh von uns gegangen. RIP Owen. Schade, das er nie World Champ werden durfte. Hätte es noch dazu bringen können, das Zeug dazu hatte er."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Mountiewrote on 15.05.2008:[9.0] "Ich habe selten jemanden gesehen, der sich charisma- und micworktechnisch so rasend entwickelt hat wie Owen 1994. Der Mann war einfach eine Offenbarung in seiner Rolle als verbitterter Giftzwerg. Schade, dass er nie die Chance bekommen hat, mal das große Gold zu tragen, ehe es mit ihm so ein tragisches Ende nahm."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Know Nothingwrote on 23.04.2008:[10.0] "Für mich ein genialer Techniker. Teilweise sogar besser als sein Bruder. Schade das er immer im Schatten des grossen Bruders gestanden hat. Als Bösewicht war er einfach genial!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Pulpulwrote on 07.04.2008:[8.0] "Unglaublich tragische Geschichte, die sich um Owen Hart abgespielt hat. Er war wahnsinnig talentiert, hatte die nötige Portion Charisma um es in der WWF ganz an die Spitze zu schaffen. Als seine Zeit jedoch hätte anbrechen können, passierte das, was ich zu einem der tragischsten Momente im Wrestling zählen würde. Unfassbar Schade, unfassbar traurig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: TobyHahnwrote on 20.03.2008:[10.0] "Owen Hart, Wrestler von 1. Klasse. Ich hätte ihn gerne mal gegen Eddie Guerrero oder Rey Mysterio im Ring gesehen, schade mit 34 viel viel zu Früh von der Wrestling Bühne gegangen, aber sein Tot ist schon Besonders, ein Mann der von Geburt an mit Wrestling Tief verbunden ist stirbt Ausgerechnet im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: DonTwrote on 17.03.2008:[10.0] "RIP! Ein großer Verlust - sowohl als Mensch als auch als Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Instant Classicwrote on 14.03.2008:[10.0] "Der bessere der beiden Hart Brüder. War ein fantastischer Wrestler mit viel Charisma. Schade, dass er es nie zum WWE Champ gebracht hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: DrBreswrote on 12.03.2008:[10.0] "Die Fehde zwischen ihm und seinen Bruder Bret war für mich als Mark so ziemlich die Packenste, die die WWF damals zu bieten hatte. Extrem charismatisch, noch charismatischer als sein Bruder, die Technik hat er mit in die Wiege gelegt bekommen. Der man hätte uns noch so einige Zeit extremst bereichern können."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: DirtiestPlayerwrote on 03.03.2008:[10.0] "Spitzen-Techniker. Super vor allem die Fehde mit seinem Bruder Bret. Gefiel mir vor allem als Heel sehr gut. Wäre heute sicherlich ein besserer Heel-Champ als z. B. ein Randy Orton."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: jimpanse1980wrote on 24.01.2008:[8.0] "Es ist leider sehr spekulativ herauszufinden, was Owen noch erreicht hätte, wenn es diesen tragischen Unfall nicht gegeben hätte. Sicher stand er im Schatten von Bret und war daher immer nur die Nr. 2. In der sog. Bruderfehde hat er sich zu einem Top-Heel entwickelt. Zu den athletischen Fähigkeiten brauche ich ja nichts zu sagen. Aber ohne diese Fehde resp. nach dem Weggang von Bret hat stagnierten doch seine Leistungen, wenn auch auf sehr hohem Niveau."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Showstopperwrote on 16.01.2008:[10.0] "Hat zwei der wichtigsten und besten Matches 1994 bestritten und wurde dadurch von einem unbedeutenden Midcarder zu einem der Topheels der Liga. Auch danach fast immer in mehr oder weniger bedeutenden Rollen unterwegs, aber zum großen Titelpush hat es leider nie gereicht. Trotzdem ein Star der 90er, der viel zu früh von uns gegangen ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: mdbnasewrote on 13.01.2008:[10.0] "Mochte ihn als Typ zwar nicht so richtig, aber was er im Ring gezeigt hat war phänomenal. Die Fehde gegen Bret war fast die Beste die es in der WWF/E je gab. Perfekter Techniker und im Ring unglaublich überzeugend. Tragisches Ende, das er nicht verdient hat, ihn jedoch "unsterblich" macht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Brahma Bullwrote on 04.01.2008:[10.0] "The King of Harts-naja, nicht ganz, Bret war einen Tick besser als Owen. Owen war aber einer der besten Techniker aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: MA Excellentwrote on 29.12.2007:[8.0] "Owen Hart ist der erste Todesfall eines Wrestlers, den ich bewusst mitbekommen habe. Mir tat es damals (und eigentlich auch noch heute) sehr leid für die Familie, da gerade die Familienwerte bei den Harts immer sehr heraus stachen. Im Ring reichte er m. M. n. nicht ganz an Bret heran, was aber trotzdem bedeutet, dass er ein Top-Wrestler war. Auch fallen mir nicht viele Storylines an, die mit Bret blieb wirklich in Erinnerung. Für seinen Wagemut, seine Professionalität und Loyalität eine klare 2."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Wuschl 85wrote on 24.12.2007:[8.0] "Musste leider viel zu früh gehen. Hätte mit Sicherheit noch Großes erreicht. Einer der besten Techniker und Micworker. Verkörperte vor allem seine Rolle als Heel nahezu perfekt. Ein sehr großer Verlust für die Wrestlingwelt aber auch für die Mitmenschen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Pinguwrote on 06.11.2007:[4.0] "Ich konnte ihn als Giftzwerg nie sonderlich leiden. War aber damals auch erst 10 Jahre alt, also von da her hat das sicher damit zu tun - muss mir mal die alten Videos ansehen und Erinnerungen auffrischen!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: CM Dannywrote on 01.11.2007:[10.0] "Zuerst sah ich ihn als Teil von "High Energy" mit Koko B. Ware. Dann war er "The Rocket". Bei der Survivor Series 1993 dann seine Sternstunde. Die Fehde mit Bret begann und endlich konnte er zeigen was er drauf hat. Schnell war er mit Bret auf Augenhöhe. So beliebt Bret war, so unbeliebt war der "King of Harts". Zuletzt wirkte er in der WWF jedoch etwas verloren. Schade dass er so früh von uns ging. Er bleibt unvergessen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: antihiphop2002wrote on 29.10.2007:[8.0] "Sicherlich genial im Ring und sein micwork war auch ganz passabel. Hatte aber soweit ich mich erinnern kann nur einen Gesichtsausdruck und nur wenig Charisma."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Excellence of Executionwrote on 29.10.2007:[10.0] "Ein ganz klarer Kandidat für die eins! Technisch war er unglaublich versiert und zu dem in der Lage, gutes High Flying/Luchador-Wrestling sowie überzeugendes Mat Wrestling zu liefern. Seine Matches in Japan gegen Jushin Lyger sind absolout sehenswert! Ein Jammer, dass er so sterben musste...... R. I. P. Owen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: FLICFLACFOREVERwrote on 26.10.2007:[10.0] "Einer meiner absoluten Lieblingswresteler in den 90ziger. Hätte wenn er nicht gestorben wäre seinen großen Bruder in den Schatten stellen können. wäre heute in ganz großer, davon bin ich überzeugt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: jayem187wrote on 26.10.2007:[10.0] "Der kleine Bruder der nie besser sein durfte als sein grosser Bruder "Bret Hart". Absoluter Top-Techniker der auch am Mic zu begeistern wusste. Leider sind mit ihm auch einige Innovationen "dahin". Er hätte dem Wrestling garantiert noch die eine oder andere "Krone" aufgesetzt.  I miss you Owen! R. I. P"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: ghostwrote on 25.10.2007:[10.0] "Wäre sicher einer der wichtigsten Wrestler zur Zeit - Grosser Respekt für seine Leistungen. Hatte auch schon als Blue Blazer für einen Impact gesorgt. Klasse Heel, noch etwas mehr Schauspieltalent als sein Bruder Bret würde ich sagen. Eine Wrestling-Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: HHH-Stephwrote on 12.10.2007:[10.0] "Er war auf jeden Fall einer der Besten. Als Heel 94/95 und auch 97 in der Hart foundation sehr unterhaltsam. Er war mit genauso viel Talent gesegnet wie sein Bruder."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Peisistratoswrote on 04.10.2007:[10.0] "Er scheint mir nicht nur ein Wrestler mit herausragenden technischen Fähigkeiten gewesen zu sein, sondern auch ein sehr sympathischer Zeitgenosse, zumidest wenn man all den Berichten trauen kann. Sein Tod war wohl nicht nur für mich ein Schock. Eins mit Sternchen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Manuelwrote on 28.09.2007:[10.0] "Er hatte nie eine richtige Chance um den WWF Titel. Einer der Weltbesten Techniker. R. I. P Owen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Mick Funkwrote on 10.09.2007:[10.0] "Sehr guter Wrestler. Hat mich auch immer besser unterhalten als der Bruder."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: sebigentnerwrote on 02.09.2007:[6.0] "guter Wrestler, mochte ihn aber sonst nix wirklich"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: jerseyhoolwrote on 24.08.2007:[10.0] "phänomenaler techniker, der beste main-event-heel aller zeiten, 2 phantastische matches in kurzer zeit (WM X, summerslam '94) - der mann war eine wucht! dass er dem sport so früh genommen wurde, ist mit chris benoit der schmerzlichste verlust aller zeiten! R. I. P. !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: D3adm4nwrote on 06.08.2007:[10.0] "Er hatte das Zeug, ein ganz Großer zu werden, eigentlich war er es schon, seit der berühmten Brüder Fehde mit Bret. Ist leider nicht so recht aus dessen Schatten gekommen. Viel zu früh von uns gegangen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Trevedaswrote on 23.07.2007:[10.0] "Ein weiterer klasse Worker, der viel zu früh verstorben ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: real americanwrote on 12.07.2007:[10.0] "Toller Wrestler und Entertainer der leider imeer die zweite Geige hinter Bret spielen musste. Er hätte es verdient gehabt einen Run als Worldchampion zu bekommen aber leider wurde ihm die Chance dazu wegen dem schrecklichen Unfall genommen. R. I. P. Owen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Sandman16wrote on 07.07.2007:[10.0] "Owen war ein exzellenter Techniker, der damals schon Aktionen gezeigt hat, die man ganz selten gesehen hat. Auch am Mikrofon war er richtig stark. Dazu verfügte er noch über Charisma, was ihn so zu einen guten Gesamtpaket gemacht hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: ShaneOwrote on 29.06.2007:[8.0] "King of Hearts - nicht wirklich. Aber er was ein sehr, sehr starker Worker. Hätte es sicherlich zum World Champ geschafft."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Adrammelechwrote on 24.06.2007:[6.0] "Diese Beurteilung gebe ich ab ohne mich davon beeinflussen zu lassen das Owen Hart bei einem Unfall ums Leben kam. Für mich war er nicht schlecht aber auch nich sympatisch und überzeugend. Ausser Frage, sein früher tragischer Tod ist eine Tragödie für den Profisport!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Der Wrestler des Jahres 1994 neben seinem Bruder! Ansonsten einer der unterbewertetsten Wrestler, die es je gab. Im Ring immer sehr ansehnlich und überhaupt ein super sympathischer Typ! RIP Owen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Mr Lovewrote on 24.06.2007:[8.0] "Er war sicher nie so gut wie sein Bruder Bret Hart, war aber trotzdem ein guter Wrestler mit sehr viel Charisma und guten Ringskills, der seine Matches auch immer gut verkaufte. Owen Hart ist leider viel zu früh gestorben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Einer der ganz Großen ... der von uns gegangen ist ... Schade ... R. I. P!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: wrestler of the worldwrote on 24.06.2007:[10.0] "Er war ein sehr guter Wrestler, ist leider zu früh von uns gegangen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: WCWlerwrote on 24.06.2007:[10.0] "Sehr guter Wrestler der durch einen unsinnigen Stunt den Tod fand. Hätte sicher noch viel erreicht...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Smi-48wrote on 24.06.2007:[10.0] "Besser als 'The Mountie' kann ich es hier nicht formulieren. Dieser Mann fehlt dem Business an allen Ecken und Enden !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: jupp365wrote on 24.06.2007:[10.0] "Owen war der agilere Hart. Vielleicht war er auch der bessere Entertainer. Leider kann man das nicht so ganz beurteilen, weil er zu früh aus dem Leben gerissen wurde. Er hätte Brets Rekorde schlagen können. Leider ist es nicht dazu gekommen. Jedenfalls war Owen ein ganz großer. Ruhe in Frieden Owen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: timbo7111wrote on 24.06.2007:[10.0] "Als Face konturlosig und langweilig, als Heel jedoch mehr als genial. Unvergessen sein Sieg gegen Bret bei WM X. Technisch sowieso unantastbar. Owen standen noch alle Türen offen, er wäre einer der Topstars geworden und hätte auch den Championtitel getragen. R. I. P. , Owen. We'll miss you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: BMwrote on 24.06.2007:[10.0] "Owen war einfach genial. Ich fand seine Moves im Ring auch besser, als die von Bret z. B. Leider wurde er aber immer von seinem Bruder überschattet. Owen habe ich immer gerne gesehen... R. I. P."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Garvinwrote on 24.06.2007:[10.0] "Er gefiel mir sogar immer besser als sein Bruder Bret. Als Heel kam er weltklasse rüber, seine Wrestling-Skills muss ich wohl nicht erwähnen. Leider kam er nie über den Schatten von Bret Hart hinaus, obwohl er es sich verdient gehabt hätte. Er wäre wohl zur lebenden Legende aufgestiegen, wenn er nicht diesen tragischen Unfall gehabt hätte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: DrPymwrote on 24.06.2007:[10.0] "Meine Damen und Herren, verneigen wir uns zu einer stillen Gedenkminute an das wohl beste Highflying/Techniker/Entertainer-Genie des letzten Jahrzehnts. Es tut mir nach wie vor weh, Videos mit ihm zu sehen, da ich ein großer Fan von ihm bin und ich es immer noch schade finde, dass er nicht mehr da ist... Du magst gestorben sein, doch in unseren gedanken bist Du für immer... R. I. P. Owen Hart!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Carsteinwrote on 24.06.2007:[10.0] "Heavyweight Champion Material... Total Package und der beste der Harts... leider underrated und zu früh verstorben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Hypocrisywrote on 24.06.2007:[8.0] "Wahrscheinlich war es halt doch sein Bruder Bret, der alleine durch seine Präsenz einen stärkeren Push Owens verhindert hat. Die Fehde der beiden gegeneinander war sensationell; erst der wochenlange Aufbau, erste Streitereien, die Versöhnung und schließlich der große Knall. Perfekt. Warum ist so etwas heute nicht mehr möglich?"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: ABoyenswrote on 24.06.2007:[8.0] "Wenn man sich heute alte Videos der WWF ansieht und dann die aktuellen Tapes wird einem erst richtig bewusst wie sehr Owen fehlt. Er war einer der technisch besten Wrestler seiner Zeit und ein Entertainment-Talent großer Klasse - und er bleibt immer der "King of H(e)arts"!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Dave525wrote on 24.06.2007:[10.0] "Für mich ist er sicherlich einer der besten Wrestler, die ich je in meinem Leben gesehen habe. Er steht sowohl vom Wrestlerischen als auch vom Entertainment-Faktor noch ein bisschen über seinen schon genialen Bruder Bret."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: asdwrote on 24.06.2007:[10.0] "Großartiger Wrestler, leider zu früh gestorben. Man kann aber noch hinzufügen, dass er auch in der WCW war, wenn auch nur kurz."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: wesstott1987wrote on 30.01.2025:"Kevin is a treasure in ring and on the mic. the fact he hasn't held a singles championship in so long is a travesty. Truly hope that changes soon!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: bigredtalk89wrote on 27.01.2025:[7.0] "KO is hard to dislike, but is missing that extra something to make him truly feel like a top star. A solid hand that can be slid into the main event at anytime, but often gets lost in the shuffle. Promo skills are above average, and I love his matches, but he will never have the look of a top star"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JoshiSupremacywrote on 20.01.2025:[10.0] "Best talker in the company; fantastic in the ring, can work with anyone and be in any position in the card"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MEDaminewrote on 05.01.2025:[10.0] "One of the best Wrestler in WWE, and also in the world, I don't think there is anyone in WWE who can do what KO does, even if you put KO against a trashcan, he will carry it to a good feud and matches, because of how he gives all his power in his programs, he's my pick to dethrone Cody."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Jonwresrling8wrote on 20.12.2024:"(10) one of the most consistent wrestles of all time in my opionuon. This guy is great in ring, great on the mic. He's doing some of the best work of his career right now"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Fuzzywobbleswrote on 03.12.2024:"[6.0] I like to rate wrestlers on three criteria. Wrestling ability, promo skills, look/charisma. I rate him an eight on wrestling ability, as he can have a good match with just about anyone. I also rate his promo skills at an eight since he can cut great promos when needed. However, I have to grade him a one in the third category as he looks like a regular guy walking down the street and doesn't look like a real threat compared to the rest of the roster. After averaging the numbers and rounding them up, it comes to a rating of six. I don't see this number improving anytime soon with this career slowing down, but I hope he proves me wrong."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: AceHagannwrote on 26.11.2024:[9.0] "Witty promos, heartfelt speeches, big matches, memorable moments. Owens has all of them. A brilliant worker that stands out even amidst groups of talented people. You can always count on Kevin Owens giving a good match."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Khalid Acewrote on 14.11.2024:[6.0] "Kevin Owens is actually one of the most entertaining wrestlers this company ever had to offer. He's great on the mic and solid in the ring but lately he wasn't putting up those performances he used to have that's why I am lowering his rating but he's great."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Fejerskovwrote on 08.11.2024:[10.0] "He is one of my absolute favourite wrestler, a hard worker and I love his whole meta persona watching the show, and he is just a genius in- and outside the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: CatboyMathuswrote on 27.10.2024:[10.0] "He's one of the greatest of all times. There's no way you'd seriously rate this guy less than an 8. This dude has classics since idk maybe 2006 ? This is insane. He did so much, his feud against Sami Zayn might be the best "best friends/enemies" feud of all times, his run in PWG was exceptionnal, his ROH classic catalog is exceptionnal, his NXT run was good (maybe the worst part of his carreer) but helped him getting the best main roster callup of all times. He had multiple great title reigns, a feud with Styles that I love, the Jericho feud too, his world title reign was cool (until the end), all the way to his WRESTLEMANIA MAIN EVENTS 2 YEARS IN A ROW ? A match against Stone Cold Steve Austin ? And he still goes today with the most creative heel turn I've ever seen against Cody Rhodes. This is tremendous stuff, you could watch one of his incredible match a day EASILY for a year, he is extraordinary. Love you Kevin"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JackBurtonsTruckwrote on 23.10.2024:[8.0] "Likable and solid on the mic. Great in ring abilities. He isnt a draw for me, but I cant knock his talent."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Willie 19200wrote on 21.10.2024:[10.0] "KO is a guy who every company should strive to have signed and wrestlers should aspire to be. Kevin has an amazing in-ring style and very passionate and honest promos. Him as a face is awesome and amazing work, but his heel work should be studied. From Kevin Steen to his long rivalry with Sami Zayn. Overall amazing wrestler who deserves only positive reactions."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TripleCrownwrote on 07.10.2024:[8.0] "Was a fan of him ever since he was Kevin Steen in ROH. Even back then, you just knew this guy was special. Around that time, I never would have believed you if you said he'd be in WWE someday, let alone a world champion there. But here we are, as Kevin Owens, he has just excelled in the promotion and really taken his career to heights a lot of people could never have imagined. He's a very good promo, very good in-ring, his actual apperance is... eh, he's unique in that respect so you can't exactly hold his attire and such against him. The only negative against him, is that he can never be 100% babyface. He is just one of those guys who is a natural at being a heel. Putting him with Sami Zayn is one way of making him a babyface, I suppose. But that usually ends with Owens turning on Zayn, so a lot of people have that in the back of their mind whenever they're together. Had a great run in ROH, great run in WWE, feel like he's reached the point where there's nothing else really he can accomplish there. Had a very good match against Austin at WrestleMania, so in my opinion he has peaked as a performer in WWE. Can't really rate him other than a strong 8 because he's not the best wrestler of his generation, but he's a very good one and will be talked about for years to come."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Galmondiwrote on 22.09.2024:[9.0] "Maybe the smarted wrestler on the planet lol? In the sense that his character is very logical and smart. Wrestling can be simple sometimes, you just have to watch the show, and his character actually watch the show contrary to everyone else lol. He's also an incredible worker. I don't know what he's better at : In ring or on the mic? That should tell you everything."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: sKiaWeVwrote on 17.09.2024:[9.0] "Kevin Owens is much like Sami Zayn in more ways than the obvious. No matter what, I always underrate them but as soon as they are given the slightest moment to shine, they steal the show. For Kevin Owens, this is best done when he leans towards being a heel. He can still play a great babyface I just don't really like his stunner. A joy to watch in the ring and I thoroughly love hearing them talk whether it be in a match or on the mic."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: jsbortswrote on 08.09.2024:[9.0] "KO is incredible on the mic, a genuinely good worker, has a great mind for putting matches together, and has put on some all time greats particularly in ROH. Wish he had the chance to put on some better matches with some great workers over his WWE tenure, but he's been able to produce really good TV, memorable feuds, and some fantastic matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Enchantiumwrote on 30.08.2024:[8.0] "Kevin Owens is a very smart wrestler; he wrestles with intent and works well with every single style imaginable. He has been quite underutilised over the recent years, but the fans have never once not enjoyed anything he has partake in. A perfect candidate for a crowd worker. His promos are very good and always have those snarky digs that tend to go viral. He is preferably a better heel than face, in my opinion. Enjoyable to watch."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Joe907wrote on 25.08.2024:[10.0] "One of the best wreslters for his size. KO is very entertaining. On the indies or any WWE show, Kevin will give it his all in the ring. He can work babyface or heel and does great in either role. His promos are great too. Total package"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Odinohkawrote on 18.08.2024:[8.0] "Kevin Owen is one of those rare people who can make any storyline believable and interesting, even the strangest, blandest or silliest. He knows exactly how to interact with the audience and has the gift of making crowds react, whether he's face or heel. His promos are always controlled and accurate. His in-ring is diversified, he knows how to take risks in the moments that deserve it and gives of himself. Despite some incredible matches and moments, his movepool and match writing are often limited, despite some compelling stories. Kevin has earned his successes and would surely deserve more, given his solid construction despite his long absence from the title scene. He's always entertaining, both outside and inside the ring, and that's an important element for the company. I'm sorry, though, that he's so grumpy and grouchy, especially in his non-kayfabe interviews."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Chosen Onewrote on 02.08.2024:"Ich mag ihn als Face tatsächlich mehr als als Heel. Er ist eine Art Everyman, aber trotzdem auch ein Badass. Der Stunner als Finisher gefällt mir auch besser als die Pop-Up Powerbomb. Aber ein Stone Cold Steve Austin ist er dann doch nicht."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: HBK16wrote on 01.08.2024:[6.0] "He's ok. Liked him as a heel a lot more. Boring face, hated his temper tantrum character a few years ago cringe asf. Good wrestler, dont like the stunner added to his arsenal. Mic skills good. Not very many iconic moments or 5 star matches that jump at you."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: namisuzwrote on 30.07.2024:[9.0] "Kevin Owens is a remarkable performer with a unique blend of charisma, in-ring skill, and versatility. His ability to deliver compelling promos and create engaging storylines sets him apart. Owens matches are often characterized by their hard-hitting style and emotional intensity, reflecting his deep understanding of wrestling psychology. However, his tendency to occasionally rely on the same spots or sequences can make some of his matches feel predictable. While his promos are usually strong, there are moments when his character development could benefit from more nuance or variety. Overall, Owens remains an exceptional talent, and his contributions to wrestling are substantial. With a few adjustments, he could elevate his already impressive career to even greater heights."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: XNoWayKemoSabeXwrote on 24.07.2024:[9.0] "I've only recently got back into wrestling so I missed a lot of KO's stuff, but from what I have seen currently and from various clips KO is going down as one of the greats. Great in-ring work, and great mic work just a great dude in general. I've only seen his face run, but from clips of his heel run dude is amazing."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JediSaiyanMaster1203wrote on 13.07.2024:[9.0] "Here we have a guy who was told he was "never gonna make it to the big leagues" for his size and now look at him, those people are eating their words. This man went from competing in front of 200+ in Ring of Honor, to main eventing WrestleMania in a tag team match for crying out loud in 2023 in front of 67, 000+ screaming fans cheering him and Sami Zayn on. Kevin Owens is a great worker (so good that Hulk Hogan likes him and has made up the lie that he was "the first to see Kevin's potential" LOL! ), he has everything from in ring ability, storytelling, playing the role of a heel and babyface, promo ability, can do great in tag teams, singles, what more can you ask?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MarkMcMarkington2wrote on 02.05.2024:[9.0] "Great in the ring, very good on the mic, and is deceptively athletic for his size. I was shocked when I saw him wrestle for the first time. I think he deserves another world title run. His stuff with Jericho was great."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Aliquickkwrote on 14.04.2024:[10.0] "One of the best wrestlers I've ever seen. An athletic freak for his size and ability, a dream move set that's creative, a style that is adaptive in any type of match, and entertaining in every way. Kevin Owens or (Steen) is probably a top 10 in-ring talent of all-time when you factor in the aforementioned groupings, and how he helped revive WWE in this new boom era. His WM39 match with Sami Zayn is a top 10 WM match of all-time and one of those rare matches and memories that bring the kid out in you and make you emotional. Can't say good enough things, but I'll end it with this: he's such a great wrestler that Stone Cold came out of retirement for one more match and gifted him the Stunner."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BMWrestling17wrote on 07.04.2024:[9.0] "Unlike his best friend, Sami Zayn, Kevin Steen "Owens" is a fantastic wrestler capable of pulling great matches and also has great charisma."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Neon Aussiewrote on 07.03.2024:[6.0] "Solid in-ring performer. As Kevin Steen he was pretty awesome. Personally I never liked his ring attire and look, but his in-ring performances were great back at that time. Then he got to WWE and seemingly became a neutered, pale shell of his former self. He got more famous, but his ability largely suffered. He did entertaining work with Jericho in WWE and has had some moments, but has largely floundered. He came in with Sammy Zane who was oft viewed as his sidekick, but who has started to overshadow KO in recent years. I see him now as kind of a mid-card guy"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mister Cute Facewrote on 05.03.2024:[9.0] "I love KO. I'll never understand how he isn't the biggest heel in the company. His character in WWE has become neutered and watered down. I know not everyone can be the champ, but KO feels so rudderless right now. Owens used to be all about the title and the money. It's not personal. Now he's just flat and it's entirely due to booking. Bring back the prize fighter!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wrasslinfan619wrote on 21.02.2024:[10.0] "I gave him A 10 A few months ago, but I think its time I add A comment to this to really explain how much I love Kevin Owens. Kevin is an amazing all-around performer, he's amazing as A face and A heel and this and last year he main evented wrestlemania for good reason because he god damn deserves it. Whether its his amazing time as Steen in ROH or his nearly as amazing time as Kevin Owens in WWE, or his time in PWG or really anywhere he always puts on A hell of A show and A lot of times match of the night. His wars and amazing tag matches with Sami Zayn are also incredible, they have so much chemistry after being best friends for 21 years out of kayfabe, in kayfabe the relationship they have has been on and off for the past 14 years. I don't know if anyone could've imagined Kevin Steen mr. wrestling himself being this successful in the WWE but here we are, one of the best of this generation and I'll even say ever, fight Owens fight.. kill Steen kill."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Cleanerwrote on 16.02.2024:[6.0] "Ich war um 2016 rum, als er im Main Roster debütiert ist, großer Kevin Owens Fan. Allerdings fühlt er sich auch 8 Jahre später nicht nach "Star" an. Er hat sich auch kaum verändert. Er sieht gleich aus, zeigt die gleichen Moves, hält die gleichen Promos. Das ist zwar alles nicht schlecht, aber auch in keinem Belang herausragend. Seine Matches sind schablonenhaft, was mich aber vor allem stört ist eine gewisse Albernheit, die er nie ablegen kann."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Captain Memowrote on 05.02.2024:[10.0] "Jack of all trades and also a master of all of them I'd say. He can do any role in any spot on the card. Sometimes that makes him feel wasted, other times he main events WrestleMania against Stone Cold Steve Austin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MichaelB137182wrote on 20.01.2024:[10.0] "Great, amazing, terrific. The prize fighter KO is easily one of the best wrestlers in the world currently and has been for a long time. One of the very very few that survived the NXT to main roster transition. Cant really think of a weak point from being trusted with Stone Colds return to being the hottest tag team with Sami Zayn after an insanely good build this man is awesome! Long live KO."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: SoaKaswrote on 17.01.2024:[9.0] "One of the best of our generation: great babyface, MUCH better heel but always a great wrestler and 10/10 mic-worker. He is one of those guys that always have a crowd connection and he barely ever feels directionless. I will never forget the moment he first appeared on RAW and confronted Cena, it's basically one of my favourite wrestling moments of all time. From Kevin Steen to Kevin Owens, his career will always be remembered."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MaximilianBernerwrote on 02.01.2024:[3.0] "Das Internet liebt Kevin Owens, wohlmöglich weil sich viele mit ihm identifizieren können, ein Stück weit wirkt er wie die Illusion jeder könne es in diesem Geschäft zu etwas bringen ohne die nötige Disziplin und das richtige körperliche Erscheinungsbild mitzubringen. Ich persönlich kann ihm nichts abgewinnen, in meinen Augen ist er keiner der professionelle Athleten die mich für das Wrestlingbusiness begeistern. Eher eines der Kinder die im Freibad ihre Shirts anliessen."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Logewrote on 11.12.2023:[9.0] "We love Kevin Owens. Just like WE LOVE BOBBY! We love Bobby, don't we? Well I love Kevin. Him and Sami made me actually care about NXT for the first time and really helped legitimize the brand imo, and I was super excited for Kevin to come to the main roster. My favorite work he's done was the friendship and feud with Chris Jericho around 2016-17, as well as his initial feud with John Cena. I also think he's one of the best people to be injected into the big Bloodline storyline, especially since he once was Universal Champion. The OG Tribal Chief"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Dntbamarkwrote on 01.12.2023:[5.0] "Solid promo and who can bump for people and be inserted in a storyline if you need someone. Otherwise, I've never been a fan of Steen/Owens. He was great with Jericho but Jericho was fool-proof at that point and could get a broom stick over if he had the intention of doing so. Kevin Owens looks like a fan who won a contest or one of those backyard indy workers you see wrestling in a barn for a handshake and a hotdog. He has talent with some charisma and works best as a heel moreso than a babyface but he's not the star that internet nerds try to make him out to be. Zayn is the more talented of the two by far"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: skillgullwrote on 24.11.2023:[10.0] "Kevin Owens is great. Even though I don't watch WWE anymore he is still one of my favourites. In ROH he was a killer, in WWE, while having stop start booking, is continually able to put on great matches. He is the reason I watch wrestling, he go me into wrestling and even though I don't watch WWE anymore, he is still great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: mooerwrote on 03.11.2023:[10.0] "I think Kevin Owens is one of the major success stories of 'independent-style' wrestler in the WWE, right up there with Daniel Bryan and CM Punk. His independent run itself was distinctive; his legacy in ROH, PWG has its own niche in the history of indie wrestling, where his in-ring work was excellent but in some sense secondary to his character/promo work. In NXT, his run was brief but exciting during the great upswing of NXT as an in-ring product. In the 8+ years now on the main roster, he has been the ultimate utility player, in some sense not unlike The Miz/Dolph Ziggler, if much more watchable. I would have preferred him to have at least one other run as top champion, but he has consistenly improved every storyline he has been a part of, and the two Wrestlemania main events he has been given are testament to how he is valued. Might he be having better matches had he gone to AEW eighteen months ago? Probably. I'm sure he'd love to have 25+ minute matches and blade when the occasion called for it. However, he continues to prove himself valuable, a perennial main eventer. As far as I can tell, also, a really decent guy who's top priority has always been his family."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: juiceisloosewrote on 22.10.2023:[9.0] "What can I say about Owens that has not been said? Considering his physique, he is the epitome of "do not judge a book by it's cover." Can work both technical and does some of the most athletic high flying stuff I've seen for someone of his size. Can play both the heel and the face, however I much prefer him as a heel. He really mastered the shit talk and since that's one of the significant aspect of his character, I really don't think he should ever work as a face. Although I think that over the last years he hasn't been his best self and WWE watered him down quite a bit, he still manages to be entertaining and is very charismatic. Just love KO."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TheEnigmatic1wrote on 05.09.2023:[9.0] "Kevin Owens is one of the more consistent wrestlers in WWE, always put's on a good segment and is so good with his range of emotion and creativity on the mic, His rivalry with Sami Zayn will go down as one of the best rivalries in the past 20 years And will always be remembered as one of the better Universal Champions and has proven size doesn't matter as he will kick ass and take names."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: celticinvaderwrote on 06.08.2023:[8.0] "Just all around fun to watch, and insanely likeable. Incredibly charismatic on the mic with some of the best promos WWE has seen recently, and he's been a major player in some great storylines. His in ring work is great too, with some really solid matches."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Loghan Morescowrote on 18.07.2023:[10.0] "Kevin Owens or Kevin steen call him whatever you wanna call him, he is perfect one of the best to ever step foot inside a ring, before wwe he was perfect working over the indys after he came to the WWE he developed even more and got sharp as a knife inside the ring in his nxt days he was smooth and today he feels like the modern version of stone cold steve austin, you cant not love the guy cut perfects promo is great inside the ring and has an amazing character, is a perfect villain and a perfect babyface overral the perfect superstar simple as that just perfect one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Corporate Kanewrote on 04.07.2023:[10.0] "My absolute favorite. As a kid, my favorite was Mick Foley. Seeing a guy with a similarly atypical look succeed as much as Foley did but without the crippling injuries will always be over with me. He doesn't have the freakish upper body strength of Mick, but instead he has a deep playbook of wrestling moves. He understands character work and selling better than most people which is quirky considering that he is also the type of character to play around with the fourth wall. Always entertaining, always hilarious, and despite not looking like a muscle guy he still looks like somebody that could fuck you up in a bar fight. He overdid the tattoo sleeve, I will say that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: crs285wrote on 23.06.2023:[8.0] "Steen/Owens has a great ability in the ring and the mic. He can constantly change things up to keep it interesting. Is best, when working, either teaming or feuding, with Sami Zayn but can put on a good match with anyone."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: danzitorockwrote on 20.06.2023:[10.0] "Kevin is simply amazing... excellent both as a face and especially as a heel, he perfectly puts his emotions into the character, he's amazing in the ring, he has an amazing mic skill and move set, a real near perfect and complete package."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Giantfan1980wrote on 07.06.2023:[6.0] "I like him fine, but he isn't high on my list of "having the overall package" of what I would consider a top pro wrestler to be."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: jamzell00wrote on 07.06.2023:[10.0] "A professional wrestler in every sense of the word. Busted his ass being one of the most popular acts on the indies we've ever seen and miraculously stayed the same over guy once getting to the wwe. There's nothing I can actually say about his run before the wwe other than he ruled and fuck Cornette forever. The only thing that has ever hindered him in the fed was iffy booking that he still found a way to overcome because you simply cannot keep a talent like him down. Just an absolute workhorse of a wrestler along with Zayn and is one of the most valuable parts of the wwe in the last 10 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: thirteenhxcwrote on 29.05.2023:[10.0] "He can work face, he can work heel, he can work tweener. He can work just about any style you ask of him. He's sneakily incredibly athletic, moves well in the ring. Dude can talk about as well as anyone too. He really does it all, the only knock you can give Owens is that he doesn't have a traditionally great look but i'd argue his look works for him rather than against him. The thing I think he does best is his use of body language, he really kind of physically acts his characters out in a way a lot of wrestlers don't or can't. He's just a guy with zero cons for me, and i can't say that about many wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Frank Shooterwrote on 26.05.2023:[10.0] "He can talk, he has the charisma, the gimmick, the wrestling ability. A total package and a damn good one. He should've been a multi-time World Champion and Main Eventer, but his WWE run hasn't been bad at all. Debuted as a beast in NXT, beat Cena CLEAN in his first Main Roster match, is a Grand Slam Champion. And all that without mentioning his iconic ROH and PWG run. Hell, the guy sold almost by himself a WrestleMania main event against f'n Stone Cold."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Dancerwrote on 24.05.2023:[9.0] "He is so good at his job. Takes whatever WWE gives him and makes it work nine out of ten times. His look is really unique and plays into his character well. While the stunner is a bad finish for him and it feels like they just want to use it for a cheap pop, his moveset is one of the best in the promotion. He's positioned at the top of the card for a reason, he backs it up with his promos and matches. Had real good feuds with John Cena, Chris Jericho, Shane McMahon, and the Bloodline. The best NXT call up by leaps and bounds."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: CoachWwrote on 17.05.2023:[10.0] "As is the case with many guys from NXT Black and Gold, I was not aware of his work prior to joining WWE. He's made me a fan from the first time I saw him in NXT and while I have often had issues with his booking, he's one of the best talents in the company and I'm glad to see him at the top of the card. Arguably the best promo guy WWE has, and I'm a big fan of his in-ring style."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wllfriedzahawrote on 19.04.2023:[7.0] "Never been the biggest fan. He does a job capable of good stories and matches but wouldnt consider him a great"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: kewf1988wrote on 11.04.2023:[10.0] "Kevin Owens is a complete package, and his look really isn't as bad as people say, as it makes him stand out. Great in the ring and on the mic, with a ton of charisma as well. For a bigger guy he moves VERY well in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KKeanelwrote on 02.04.2023:[10.0] "PWG legend, ROH legend, NXT legend, Wrestlemania main eventer - incredibly charimatic guy with passion to proffesional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: benh2wrote on 21.03.2023:[7.0] "There's no doubting his longevity over the years but to me his style still quite "indie" and that puts a ceiling on his potential. Similarly, he's not got the greatest look and is an average promo but he's done well to have a very successful career despite the limitations."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: greaterdalewrote on 02.03.2023:[10.0] "Another one of my all time favorites Kevin Owens is just so good at getting heel heet, and his matches are just so much fun to watch. his short run in NXT was what really made me a fan of him. His debut of turning on Sami Zayn after Sami won the NXT championship really set up a monster run. My favorite move of his is the popup powerbomb, and from what I've seen of it his package piledriver he used to use as Kevin Steen was awesome too. I wish WWE would let him use it but I guess you can't have everything. I agree he's a better heel, but his recent babyface run has been quite compelling too! I would love to see him win a world championship again as he could very well carry the company on his back if they wanted him to."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: John Brandowrote on 19.02.2023:[9.0] "Kevin Owens ist einer der besten Wrestler auf dieser Welt und verfügt über hervorragende Mic-Fähigkeiten. Trotz seiner wuchtigen Statur ist er im Ring technisch weltklasse und zeigt Aktionen, die man ihm so nicht zutrauen würde (Moonsault). Er ist ein absolut cooler Typ und trotz kanadischem Background sehr bewandert in der englischen Sprache. Er schafft es eigentlich immer innovativ und unterhaltsam zu sein, egal gegen wen er antritt oder welche Storyline er bestreitet. Da viele ihn in den Indys sehen wollen, sage ich: Kevin, bleib uns noch ein bisschen in der WWE erhalten und gewinne dort weitere Titel!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: eltetechoriwrote on 12.11.2022:[10.0] "The good (or bad) KO is undoubtedly one of the best of his generation, he always caught my attention since I saw him and in WWE even if he doesn't have many headline hits, he is undoubtedly a great roster wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BigVanWalterwrote on 27.10.2022:[10.0] "One of my favorite wrestlers of all time and probably the best thing on raw (or at least he was before he mysteriously disappeared). He's an amazing promo and a great worker, he can do comedy well and serious stuff well, he can play face or heel well. Whatever you need KO to do, he excels. He also main evented wrestlemania against Stone Cold which I always just forget happened this year"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Makoto92wrote on 15.10.2022:[4.0] "I don't know why Triple H came back "The Prizefighter" gimmick to Kevin Owens, who works in entertaining feuds at first half of 2022 perfectly. I think, it's a one or two steps below for Kevin, because Prizefighter is not entertaining. Wrestling for wrestling in WWE doesn't work, no matter who controls the booking: smarks' favorite J.P. Levesque or very skilled promoter Vince McMahon."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: AlDente01wrote on 18.09.2022:[10.0] ""The Prizefighter" - Kevin Owens is the perfect wrestler. Although not always perfectly used. Talented in the ring, brilliant behind the microphone, awarded. The man who destroyed John Cena on his way to the main roster. He beat people like Seth Rollins, Braun Strowman, Chris Jericho. His rivalry with Sami Zayn is downright iconic. Some people accuse him of appearance flaws - but this is exactly how he should look, his appearance perfectly matches his character. It's a shame he only made his way to the top once, I can't wait to see him become WWE Champion or Universal Champion again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Flame233wrote on 13.09.2022:[10.0] "Kevin Owens is amazing. He is the textbook definition of "NXT 1.0". Great fighter, great talker, hard worker, absolute champion material. He started very strong in the main WWE roster, beating John Cena, JOHN CENA! He proves to be a great heel. Fans love him, arenas explode every time his banger of a theme plays. The only thing really wrong with him is his booking, where he can be fighting with Stone Cold Steve Austin on WM and the next day he is in a comedy feud with Ezekiel. Luckily as of Vince retireing, HHH is bringing "the Prizefighter" to the actual fights, feuds, and promos. High hopes for this guy, and simply I don't get why anyone would give him a score lower than 8."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Adaptinhowrote on 17.08.2022:[10.0] "Vince has been making a clown out of this amazing wrestler for the last few years. Finally, Kevin got his old gimmick back and we'll see the real Kevin and not that clown."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Bartho28wrote on 27.07.2022:"One of the best talkers in the world and a great wrestler. KO has shown time and time again he belongs at the top of the mountain with the best of them."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: UltraNano54wrote on 17.06.2022:[5.0] "His is too fat and his general style is overly smarky for my tastes. He really fits the indies better than he does WWE. His famous feuds like those with El Generico and Sami Zayn just did nothing for me personally."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: OnlyHalfTheEffinShowwrote on 06.06.2022:[9.0] "Give KO shit and he will turn it into gold. Pretty much every time. Easily one of my favorite guys in the current WWE roster, KO is everything you? d want in a pro wrestler. An amazing promo, innate charisma and connection with the audience, and a spectacular wrestler who can work pretty much any style. Give this man another run with the world title already!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: CMX-7wrote on 17.05.2022:[10.0] "Kevin Owens - An all-round wrestler who can pull off any match out of nothing, can pull off a chic segment that can outshine an entire show, his charisma is unique! He absolutely deserved to match up with Steve Austin in Wrestlemania 38 Main Event! I hope he becomes WWE Champion"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: NiceRaterwrote on 12.04.2022:[9.0] "One of the best wrestlers in the game for years. He's been able to smash every single character he's been given out of the park. Prior to his WWE run, he was able to be that badass, Austin-like character that the whole show revolved around. In WWE, he's convincing as a tough guy fighter. He's convincing as a cowardly heel. He's convincing as a parody joke character. He's convincing as a team team specialist. With outstanding ring skills, almost unmatched mic skills in the current day and the ability to make connections to the wrestlers around him, Owens is one of the best in the world in the modern generation."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MorbidAxiswrote on 06.04.2022:[7.0] "Kevin Owens is a fantastic talent, that at times, has been left to waste away in the WWE. I'm a firm believer that any quality wrestler that wishes to remain a main eventer, should stay as far away from the company as they physically can, or else they run the risk of being left behind by the likes of Roman Reigns and Brock Lesnar. I know my rating is lower than most, but that's hardly to say I don't appreciate the work KO has done."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: WrestlingFan892wrote on 03.04.2022:[9.0] "Born to be a Heel, for his weight he does incredible things, he is not a wrestler who stands out for his physique but he has always had a very Ruthless style of wrestling and that is something that he has offered new in WWE. Mic-Skills, Charisma and Strength, that's the description of him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: NeoSwas36wrote on 23.03.2022:"KO is a great wrestler, but the highlight for me is his promo ability. I love going back and watching his work as Kevin Steen, truly good stuff. He's done well in WWE too. The best Universal Champion, and IMO, the only good one."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: zacharymahabirwrote on 07.03.2022:[10.0] "One of the greatest of the modern era. He does everything so well, killer as a face or a heel, it is unbelievable how good KO/Kevin Steen is at his best"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: rishabhwrote on 09.02.2022:[10.0] "I truly believe he is one of the best wrestlers of his generation. In-ring ability, charisma, promo skills you name it and Kevin Owens has it. He can be both a great heel and a great babyface. He can really do anything and be entertaining. There was rarely a time where you could say KO was stale and not entertaining. Even if you haven't seen his indie run, his WWE run is great too and enough to prove his greatness."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: GriffinXwrote on 26.01.2022:[8.0] "KO has managed to turn chicken shit into chicken salad so many times it's become a double edged sword. You often get the feeling "creative" thinks they can just toss anything out since he can get it over."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Minorsmile09wrote on 20.01.2022:[10.0] "Easily, EASILY the best NXT callup WWE has done. KO can talk his ass off, and put on wonderful matches. Plus he's actually been pushed in WWE, so I don't just have to base my rating off his indie runs. Very unique in physique, movement, and character. My only negative is, the stunner sucks as a finish for him. It's just anticlimactic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Roodolphwrote on 16.01.2022:[10.0] "I love Kevin Steen/Owens. he is awesome at everything he does and is one of the best in wwe. I hope he has great satisfaction after the renewal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Phenomenal Nightmarewrote on 15.01.2022:[10.0] "Kevin owens, a great wrestler, is agile despite being fat and has good movements in the ring I hope he flies to be world champion in WWE"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Gaspardwrote on 04.01.2022:[6.0] "im not a fan, his whole character is boring to me, and i dont really like his voice in promos, specially when he's shouting. his wrestling skills are ok but still nothing special"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wrestleflowrote on 02.01.2022:[10.0] "Fantastic wrestler, and all around lovely bloke. Hard hitting but athletic as well, and he brings a lot of charisma to the table as well. You always wanna root for him, but he can play a really effective bad guy as well, and he's really great at feeding off the energy of a crowd. One of the best in WWE, and I hope that he will soon be used to his full potential."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: CaptainCharisma1997wrote on 19.12.2021:[8.0] "I like Steen/Owens a lot and have really enjoyed his feud with Generico/Zayn over the years. I've just always thought he was merely very good where Zayn was the exceptional one. He's a very good wrestler and a very good talker; nothing about him has ever struck me as excellent though."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: LivingLegendwrote on 16.12.2021:[10.0] "Kevin Owens is awesome. He's one of the best promos in the current landscape of wrestling, and he's fantastic in the ring as well. Incredibly athletic and agile for his size, and his willingness to take so many horrid looking bumps is commendable. Shame he hasn't been world champion in almost 5 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: kfztkfzt2021wrote on 14.10.2021:[9.0] "Kevin Owens is one of the best of all time.He's super talented in the ring, very athletic for his size, great technical skills, great powerhouse moves, impressive highflying skills, great striking, one of the most charismatic wrestlers ever, UNTOUCHABLE on the mic... AMAZING.I wish wwe gave him a second chance with a world title, he can elevate it SO much, i miss seing him on the top of his game.Also, let's not forget how ENTRETAINING this guy is."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mauwrote on 29.07.2021:[10.0] "His rivalry with Shane McMahon, Seth Rollins and Roman Reigns revived my real appreciation for him. Since 2015, I have often wondered: If Kevin Owens is a face one day, will it be better than his job as Heel? With the aforementioned rivalries, he answered my question in the best possible way. He's one of the best at making promos, and he really knows how to deal with a situation. He risk dangerous and amazing maneuvers. Since his return in 2019, his physique, strength and motivation increased compared to 2018. I just hope that one day he will get the gold in his hands again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BK7Neunzigwrote on 27.07.2021:[10.0] "Ich würde niemals behaupten, dass KO ein vollständiger Wrestler ist. Sein Look lässt nicht auf einen Main Eventer schließen und dennoch schafft es dieser Mann, auch im trübseligen WWE-Alltag, in jeder noch so belanglosen Fehde, etwas besonderes auszustrahlen. Es gibt für mich nur wenige Aktive, die einen ansatzweise vergleichbaren Unterhaltungswert aufweisen. Dazu ist er immer für einen Moment im Ring gut, der die ganze Halle aus den Sitzschalen holt. Für jedes Stipulation-Match braucht es einen Bump vom Meister selbst. Hinzu kommt noch ein unerschöpfliches Moveset mit einer Mischung aus Aktionen, die vor Brutalität und Gefahr strotzen und Flying-Moves, die man ihm ob seiner Statur nicht zutraut. Für mich gehört der Mann in die Top 5 einer jeder Promotion auf der ganzen Welt. Als Heel ist er einer der besten. Aber als Face mit A...... ch-Charakter wahrscheinlich am besten. Leider passt die WWE von den Top-Ligen am wenigsten zu ihm, da er sein Gimmick, trotz Promo-Freifahrtschein, nicht richtig zur Geltung kommt, sein Moveset stark rasiert wird und er mit seinem Look hier leider als letztes dauerhaft ganz oben eingesetzt wird. Dass er sich trotzdem regelmäßig in der letzten halben Stunde der Shows wieder findet, zeigt einfach nur, wie gut der Mann ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: zags7000wrote on 21.06.2021:[10.0] "His run to start his WWE career might be one of my favorite runs in wrestling. His series of matches with John Cena were amazing and his series with Sami Zayn in and out of WWE are equal if not better. Really good and consistent in the ring and one of the best mic workers of this generation. He's good as a babyface, one of the few who can work well in that role. But as a heel he's truly special. Both as a legitimate fearsome superstar and even in comedic heel fashion like his tag team with Chris Jericho. Some of the most memorable moments have been by him. Unfortunately, there have been fewer of them lately but that doesn't take away one of the more memorable wrestlers of his time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: mjs2212wrote on 22.05.2021:[10.0] "Quite simply, Kevin Owens is my personal favorite wrestler currently. I absolutely adore him as a worker and as a person. He does a great job in any role, can put on a fantastic match with just about anyone, and the passion that he has for wrestling really shows. He's inspired by the likes of Shawn Michaels, Steve Austin, and Steve Corino, and it really shows. He has a bit of all of them meshed into his repertoire plus more to make him stand out. I really enjoyed watching him when he was with Jericho and when he won the Universal Title, I jumped up in excitement. I still believe that he is the best Universal Champion there is, considering his work with Y2J and also because the title felt relevant when he had it. And of course, his chemistry with Sami Zayn / El Generico is simply phenomenal. The two have put on classic matches, some of which I go back to still. Whether the two are best friends or bitter rivals on screen, they always bring something to the table. Overall, in my opinion, KO is one of the best of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The A-Listerwrote on 08.05.2021:[9.0] "He's a great wrestler that can do great job as a face and as a heel. Hopefully he gets another world title reign."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Okaro143wrote on 04.05.2021:[9.0] "A great wrestler. Great in ring work and an even better mic skill. Although he has never been underutilized, he has also never been used to his full potential. I know he could be a megastar if given the chance. Even when he had the Universal Champion, he always played second fiddle to Roman Reigns and Seth Rollins before being ultimately burried by Goldberg. He has always been presented as a main event level talent but has never truly been the top wrestler in the company. Could be one of the all time Greats if utilised better."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: HighFlyDeathcorewrote on 03.02.2021:[9.0] "Kevin has been great since his ROH days. his matches have been great everywhere he goes. I'd make a 10 if he was actually booked correctly. his feud with roman has been great, I liked his feud with Steve Corino was great too. Plus he named his son after my personal pick for the GOAT, Owen Hart"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: pierreMinnewrote on 14.12.2020:[7.0] "Kevin Owens is one of the most overrated WWE wrestlers today in my opinion. That guy is a good in ring performer, he can delivers great promos, he is a good babyface but nothing incredible. I don't dislike him, but he is way overrated to me. His only indy match I found incredible was against Shinsuke Nakamura in ROH."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: killowenskillwrote on 18.11.2020:[4.0] "Well, it's time to do it. During the period 2013-2017, Kevin Owens was my favorite wrestler and I sincerely believed that this is an absolutely unique performer who is destined to change the industry. In my opinion, he had everything: he was lively enough to attract interest, his matches were interesting to watch and he exuded a natural charisma. When that glorious fight against Sami Zayn on Battleground took place, I seemed to be sure that this guy has no equal. But since then, he has not shown matches of this level. Since then, it has not shown stories of this level. He changed his gimmicks from time to time, but even with all this variety, he could not be interesting. He could not stand even a couple of weeks, when, it would seem, attention should be focused on him automatically. It didn't happen. Owens changed, but nobody cares about Owens. Owens doesn't care about Owens. He doesn't tell stories, he shows a backyard with an unchanging pattern, with stupid spots and random moves, in his matches there is never a psychology and a desire to empathize with either him or the opponent. I can't get into Kevin because he doesn't have a character. And working with other talented wrestlers, he acts as a kind of vacuum that absorbs all the best from them. That's why the matches with Styles were mediocre. That's why none of the fights against Chris Jericho had the desired effect, despite the seemingly stunning storyline that many dubbed the drama of the decade. The confrontation with Shane was a piece of shit that didn't get him anywhere. I haven't been watching WWE regularly for the last two years, but when I come across a TV show or PPV again, I see it still hanging around, trying to get a hold of something and crashing. He had a chance to take advantage of fate and change after the match with the Fiend, but he again dropped it, becoming the ONLY wrestler who did not get anything out of this loss. Even Sami Zayn, having endured all the troubles that could only fall on his head, was able to find the role that suits him, and is one of the most interesting characters here and now. And Kevin is a dude from indy who is used to the comfortable role of Lesnar-the-Troll, and who is pathologically unable to get used to something else when he is directly told that he is not a machine for WWE and that no one will position him in this way. He was my favorite wrestler once, but it's hard not to change your mind when you've been disappointed for more than four fucking years. This time has been wasted and it's still not over. I hope Steen takes it upon himself to do something. No matter what anyone says, what's happening to him is only Kevin's fault. Highly paid jobber."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Ma Stump Pullerwrote on 15.11.2020:[7.0] "Eh, I don't really see the hype in Owens. The guy's got good mic skills and certainly can wrestle, but he just.... doesn't have much else to give. He's not a very good seller and he's bad at getting people over in his matches: even AJ Styles can't get a amazing match out of him, and his great storyline with Chris Jericho ended with a dud of a Wrestlemania payoff which benefited neither man. The best matches I've seen out of him were with Cena (which makes sense, considering Cena's great at getting his opponents over as legit threats) and some of the matches he had with Sami (not all of them, but Final Battle and some of the WWE stints were quite fun) but overall, most of his matches are either way too indie and spot festy, or just aren't that exciting. Maybe it's because Owens doesn't really try to innovate anything and has the same moveset for any match, regardless of the context or if he's a face or a heel, or maybe he plays too much to the smarky crowd: either way, it's not very entertaining, and I don't think Owens has made a good translation into the WWE style of wrestling in terms of the wrestling side: his lack of real storytelling beyond doing big moves on big moves is quite jarring."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: texasyoshwrote on 17.09.2020:[9.0] "One of WWE's most consistently reliable workers on the mic and in the ring. Super impressive to see a guy of his size do the moves that he does. I will always wish he was allowed to do the package piledriver... :("
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Yumichi95wrote on 31.07.2020:[10.0] "On l adore qui ne peut pas l adorer ce mec est amoureux du catch et il est plein d imagination. Et plus il vieillit plus je lui trouve un charisme hors normes bravo Kev!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wrestlefan20wrote on 12.05.2020:[9.0] "A great wrestler, who's also good on the mic. Can play a heel excellently. Is above average as a face. Has a lot of charisma and can make you interested in him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: rschmandt22wrote on 01.04.2020:[10.0] "Kevin Owens has been wrestling almost 20 years. He's one of the best who worked his butt off to get to WWE. Amazing heel, great face, he definitely deserves all the success he gets in and out of the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Echohead1999wrote on 04.11.2019:[8.0] "Modern era WWE answer to Mick Foley. Willing to take the most crazy bumps no matter how horrific they are. Great in-ring worker and on the mic. It's amazing how agile he can be considering his size. Will go down as one of WWE's best tweeners of all time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: CostelloFalcowrote on 14.10.2019:[8.0] "Kevin Owens is on my top 5 of all time. Very strong worker but doesn't fit well on WWE's Main Roster. It always seemed like he was more positively perceived on NXT."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: blackx18wrote on 29.08.2019:[8.0] "Kevin Owens hat viel Potential ein guter Wrestler in der WWE zu werden, auch wenn ich nicht finde das er einer der Besten der Welt ist. Einfach aufgrund der Tatsache das er in der WWE noch nicht eine große Anzahl von Weltklasse Matches hatte, Außerdem ist er ein Wrestler der nicht aus weniger guten Western gute Matches rausholen kann, wie zbs ein AJ styles oder Daniel Bryan. Außerdem ist er im Ring auch unbeweglicher geworden und die Schnelligkeit hat auch ein wenig nachgelassen. Aus diesen Gründen würde ich ihn nicht gerne als Top Guy der Company haben, da es auch schwer abkaufbar ist wenn er dick ist, und es ihm anscheinend zu peinlich ist sein Shirt auszuziehen. Abr ansonsten ist sein Charisma nicht besonders gut, aber auch nicht besonders schlecht und am Mic ist klar das er einer der Besten der Welt ist. Vor allem als Face gefällt er mir sehr gut auch wenn er als Heel besser ist. Außerdem finde ich die Pop Up Powerbomb als Finisher besser als den Stunner. Und finde es dumm das er jetzt nur den Sturer hat weil er ein wenig die Rolle von Austin einnimmt. In-Ring : 8/10 Micwork : 9/10 Charisma : 6/10 Gimmick : 8/10 (Face Gimmick) Meinung : 7/10 = 38 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KyleEnjoysWrestlingwrote on 01.08.2019:[9.0] "I think Owens has great potential, but I would not look at him as one of the best in the world. He was exceptionally great in NXT & when he first came to the main roster, but whether it be his fault or the fault of WWE creative, it's easy to see how his stock has dropped over the past few years. I know there's a lot of debate on his gear & presentation, but I have a hard time buying him as the top guy when he looks like a fat kid who's going swimming & too embarrassed to take his shirt off. On the mic, it's clear he's quick witted & one of the best. I'm not a fan of him using the stunner now & don't think he hits it well. I thought the popup powerbomb suited him much better."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: LeafKingwrote on 17.07.2019:[5.0] "Highly overrated. Love him as a tag team specialist, but as a singles guy he's a total flop IMO. Capable of having decent matches if he's in there with a brilliant opponent, but that's about all I can say good about his in-ring work. He can have decent promos too though I guess, but they're repetitive and nothing that would ever put butts in the seats. There's nothing about him as a singles competitor that stands out as great."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TechnicalWrasslinwrote on 02.07.2019:[10.0] "Package Piledriver one of my favourite finishes and the pop up powerbomb Him and Sami Zayn(Generico) Are amazing in-ring Kevin Owens can cut badass promos powerful strikes Great Throws Sharpshooters and Moonsault"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: SrHunterwrote on 26.05.2019:[9.0] "Owens is a really good worker, great in ring and always has been one of the best talkers in the company, but sadly they booked him like shit in the last years, not giving any justice to his talent, but is WWE they do this all the time. Overall he is complete in every department and you can trust him to cut a good promo or do a good match, with the correct booking of course."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: PuroresuLoverwrote on 19.05.2019:[8.0] "My problem with Kevin Owens is: HIS BOOKING! Seriously, this guy is very good in the ring, got a very good look, can cut some great promos and can make some very good matches, too. I don't know why the WWE bookers started to treat him like an coward heel, 'cause that's not what he is! Kevin Owens is a Prize Fighter, he doesn't fear anyone, in fact, he would kick the ass of his own family just to achieve his objectives. I hope that WWE stop to treat him like a bitch."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ErycK24wrote on 08.04.2019:[9.0] "Owens' Mic and In Ring skills cement him as a top 2 heal in the company. If pushed correctly, Owens could be the best heal champ in years. Edit: Owens before his injury was mishandled."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kevin41182wrote on 19.03.2019:[9.0] "Owens is the perfect heel. He will go down as one of the best of all time when it comes to his heel work. That's not to say he cannot work as a face though. So far his current face run on Smackdown has been pretty good. His in-ring work is also spectacular. His storytelling is extremely well done and he is also very athletic for his size. Overall Owens is one of the best today in the industry."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: zephyrwrote on 08.01.2019:[7.0] "I never really got the appeal of Owens/Steen. At first his mid-match trashtalking was refreshing and entertaining to me but these days everyone is doing it and Owens has little to set himself apart from everyone else, leaving him as just another good worker in a sea of talent."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Steamboat2511wrote on 05.12.2018:[8.0] "Kevin Owens gehört zu den sehr guten Workern der WWE. Er wirkt in seinem Tun äußerst natürlich und ist für seine Größe äußerst beweglich. Mit der hervorragenden Paarung von Technik und Impact kommt bei ihm eigentlich immer mindestens ein solides Match heraus. Technisch schwächere Gegner wie John Cena kann er zu herausragenden Matches führen. Insgesamt fehlt mir nur ein wenig das Besondere in der Personality und am Mic, so wie eine größere Anzahl an wirklich guten Matches in der WWE."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TylerWhitewrote on 13.11.2018:[9.0] "Einfach ein grandioser Wrestler und mein derzeitziger Lieblingswrestler.  Am Mic ist er grandios und mit der beste in der WWE. Außerdem ist er auch extrem charismatisch und dadurch, dass er prinzipiell ein Powerhouse ist, er aber technisch so hervorragend ist und Aktionen macht, die ich von einem Wrestler in seiner Gewichtsklasse noch nie gesehen habe, zeichnet er sich absolut aus. Seine Rivalität gegen El Generico/Sami Zayn ist eine der größten der modernen Wrestlinggeschichte und sollte in der WWE auch konsequent weitergeführt werden, denn beide sind für mich zukünftige Main Eventer (Eigentlich sollten sie es beide längst schon sein). Vielleicht bekommen wir ja in zukunft wirklich einmal das Dreammatch Zayn vs Owens im Wrestlemania Main Event, man darf ja noch träumen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KINGwrote on 09.11.2018:[9.0] "Amazing heel, phenomenal wrestler, the most complete performer of his generation, his ROH stint was amazing especially when involved with his partner and then rival El Generico, their feud is maybe my favorite ROH feud. In WWE he did great as well even if maybe they booked him too much as a coward after his feud with John Cena, but his 2018 booking saw him getting pinned every goddamn time lol. In spite of that, Steen/Owens always made/bakes the best with what was/is given to him and tried to make it work, his look tho is not the one Vince relies on when he thinks about his champion, so he's fantastic but I dunno if they're gonna use him as a main eventer in the future."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: RatingsMachinewrote on 25.10.2018:[8.0] "Kevin Steen is overall a very good worker, and he can be a great talker at times. But he's missing that something that would make him great, and his look does him no favours at all."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Oliver95xwrote on 28.09.2018:[10.0] "Einer der besten Wrestler der Welt. Ich finde die letzen Monate hat er ein bisschen nachgelassen. Hoffe er fängt sich wieder und zeigt 100 %. Er hat mich auf jeden Fall maßlos beeindruckt vom ersten Match an was ich von ihm gesehen habe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: taabr2wrote on 12.09.2018:[9.0] "One of the best talkers in wrestling and a pretty good wrestler in the ring, Owens is one of WWE's top all round talents. WWE booking Owens as a chickenshit heel instead of the psychopath he was in ROH annoys some fans but I think Owens does a great job either way."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kuzma334wrote on 09.09.2018:[9.0] "Most interesting male wrestler on Monday Night Raw. Perfect In-Ring Skills, Mic Skills and pretty Charismatic. His promos always great, when KO's had an opportunity to make a good match - Owens make's it. Had a amazing feuds with Sami Zayn, Shane McMahon, John Cena and many more.  Best male heel in WWE, great entertainer and a perfect wrestler"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Doshin92wrote on 09.06.2018:[9.0] "Kevin Owens überzeugt mit seinen InRing Fähigkeiten, Mic Skills und Charisma auf voller Linie. Dieser Mann hat alles was es braucht um ein erfolgreicher Wrestler zu werden. Das einzige Argument warum er noch kein WWE Main Eventer ist, liegt an seinem nicht typischen WWE Look. Kevin Owens wird es schwer haben die Bodybuilder verliebten WWE Offizielen zu überzeugen, aber mit seinen Fähigkeiten wird dies früher oder später der Fall sein müssen. Seine Fehde mit Sami Zayn die sich schon von den Indys bis zu Nxt und Raw zieht ist bereits jetzt überragend und ein Must See der letzten Jahre. Er ist bereits jetzt einer der Gründe noch Raw zu gucken für mich."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: test85wrote on 16.04.2018:[8.0] "Auch Owens gehört für mich zu den besten im aktuellen WWE Roster. Trotz seiner Masse ist er, ähnlich wie Bam Bam, im Ring wie ein Blitz. Besitzt mit der Pop Up Powerbomb einen Finisher der auch aus dem Nichts kommen kann und deshalb gefährlich ist. Wie Kurt Angle schaden ihm die Comedy haltigen Segmente (siehe Essensschlacht) überhaupt nicht. Leider hat er doch in letzter Zeit ein wenig enttäuscht. Seine Fehde mit Jericho war eines der Highlights 2017, nur waren die Matches nicht gerade Klassiker. Auch die Matches mit Styles enttäuschten. Trotzdem durfte er eine der Main Stories bei SD führen. Aktuell für mich 7-8 Pkt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: andrewmossighiwrote on 22.03.2018:[9.0] "I did not know who Kevin Owens was until he beat John Cena in his first match in WWE, which was what made me curious about his work on the indies and other promotions. When I saw his matches in Ring of Honor and Pro Wrestling Guerrilla against some wrestlers like El Generico, Davey Richards, and Adam Cole, I fell in love with him as both a heel and face because of everything he could do inside and outside the ring. He is an excellent technician, can brawl, and can do athletic, high flying moves like a cruiserweight (reminds me of Vader). And then, I saw his promo in Ring of Honor with Jim Cornette when he was trying to become reinstated, and I loved him even more because his promo and trash talking ability was straight from the hip and believable to the point where I started to hate Cornette myself. The only reason why I am giving him a 9 right now is because he became a victim of WWE booking with that miserable gimmick of being The Face of America, then he and Sami Zayn have been stuck in a rivalry with Shane McMahon for way too long at this point. Otherwise, Kevin Owens should be considered one of the best wrestlers in the world today, if not then in the top five."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Makai Clubwrote on 09.03.2018:[8.0] "Man, only two years previous KO was my favorite wrestler in the world but a lot has changed. His quality in his promos, storylines and matches have dramatically decreased. 2017 was not a good year for Mr Wrestling. Average matches with AJ Styles, underwhelming WM match, Face of America (ughh) and worst of all his never ending Shane storyline. A year to forget for KO. But the rest of his years have been good. He had WWE's MOTY with Sami Zayn, along with many great matches and stole the show at WM, alongside becoming Universal Champion. He had John Cena's best set of matches of his career and had an incredible feud with Finn Balor in NXT. If I had to judge KO's WWE run, it would be a 7. BUT........... Kevin Steen was absolutely phenomenal. His promos, face or heel, were always excellent. His matches had a certain enjoyment to them even if he and the opponents never really clicked. Kevin Steen before WWE is a 9. So overall he is an 8. Hope you get back on track Mr Wrestling."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Sebastian Vwrote on 01.02.2018:[9.0] "Kevin Owens ist in meinen Augen in den letzten Jahren einer der besten Allrounder der WWE. Was Charisma und Micwork angeht meiner Ansicht nach in beidem eine 10. Er hält tolle Promos und ist eigentlich immer unterhaltsam ob mit Jericho, mit Zayn, als Face of America, als Workhorse (Fight Owens Fight), als verbitterter Heel, als Comedy Heel oder sogar als Gastkommentator. Im Ring finde ich ihn auch wirklich gut, aber würde ihm da "nur" 8 Punkte geben. Er kann wirklich tolle Matches worken (siehe die mit Sami Zayn) aber mit manchen will es nicht so wirklich klicken (siehe AJ Styles). Aber er ist im Ring absolut gut, hat Psychologie, ist beweglich, hat ein gutes Moveset und kann gut, wenn auch nicht überragend sellen. Botches sind eher selten bei ihm ( auch wenn die wenigen teilweise den Matchausgang veränderten womit man wieder bei Styles wäre). Insgesamt würde ich sagen gute 9/10. Ein wirklich tolles Gesamtpaket."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: CHN325wrote on 31.01.2018:[8.0] "Great in the ring, great on the mic. One of the best performers in the WWE. Can put on a great match with almost anyone and tells great stories."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Dragon Fighterwrote on 18.11.2017:[9.0] "One of the best wrestlers in wwe for sure. He is very entertaining on mic, can connect greatly with the audience. In ring work : very good to great of course although his matches can be spotfest at times. Only be on main roster for short time, but he already achieved many things. And his rivalry with sami zayn from indies days to wwe is absolutely gold."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "Entertaining as fuck and capable of perform virtually every wrestling move ever created, despite his size. Kevin Owens is one of the most talented and versatile pro-wrestlers in the world, and seeing him compete against people like Sami Zayn, Seth Rollins and Chris Jericho is always amazing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BigMikewrote on 19.09.2017:[9.0] "Kevin Owens/Steen is a beast with great matches with Sami Zayn/John Cena and. He is great on the mic and his work on Talking Smack is great. The thing that stops me from giving him 10 points is that he's been a little underwhelming since Wrestlemania 33."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Adaskerrwrote on 07.09.2017:[9.0] "Great wrestler, simply. Was great in ROH, now is great in WWE. Very good at talking, very good in the ring, the only problem is his booking since he won the Universal Title, his run was a joke, not defending the belt clean even once. His feud with Styles left me disappointed. When they use him well, he is a top talent though."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Chosen Onewrote on 24.07.2017:[4.0] "Something has happened to Kevin Owens. He used to be the greatest wrestler on the WWE roster. His NXT run was one of the best NXT runs ever. His feud with Cena was great and so was his IC title run and Sami Zayn feud. Once the draft happened he had been an up and down for almost a year. On Raw he did some good things but his Reigns and Goldberg feud was beyond boring and on SmackDown his US title run has been a flop. Yes, he is a good wrestler and can have good matches but right now he isn't having them. Really disappointing currently."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TooSweetPhilwrote on 24.06.2017:[8.0] "Es ist für mich schwer Owens zu bewerten. Einerseits muss man zugeben, dass er ein unglaubliches Gesamt-Pakt ist, was in quasi jedem Bereich unglaublich Punkten kann, andererseits ist er mir mit dem face of America Gimmick sehr langweilig. Im Ring sehr gut, am Mikrofon sehr genial und auch sonst top ausgebildet. Super Fehden mit Zayn, Super Dragon, Cole etc. Wegen seinem aktuellen WWE Run runde ich ab."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: awsmpwniewrote on 24.04.2017:[9.0] "Kevin Owens ist ein Heel der Extraklasse. Mal dominant und rücksichtslos. Mal feige und hinterhältig. Er kann alles. Im Ring ist er einfach eine Klasse für sich. Trotz seine körpermasse ist er schnell, athletisch und ausdauernd. Weit mehr als Samoa Joe, den alle wegen dieser Kombination so hypen. Technisch sehr stark und unglaublich glaubwürdig. Sein Micwork geht nicht besser. Er packt mich jedes mal und kommt auch beim WWE Universum mit gewünschtem Resultat an."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Blood Pumpwrote on 18.04.2017:[8.0] "Owens has always impressed me more then Zayn. His psychology is lacking and his look is unfitting of a prize fighter but the dude has a pretty crazy work rate and he tends to be more consistently great then his friend. He was an okay first reign as Universal Champ (I know Finn won it first but come on), though he could have been booked better and the way he lost it was unfortunate. His ROH title reign was excellent and I'd say stands as one of the top five or six reigns in that companies history."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: WrestleArtswrote on 06.03.2017:[8.0] "Unterhaltsamer Micworker, guter Wrestler und ziemlich beweglich für seine Statur. Großes Manko natürlich der Backyard-Wrestler Look und die Ausstrahlung, selbst als ernstzunehmender Heel kommt er meist eher wie Eric Cartman, als wie ein Prize Fighter rüber."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Owenwrote on 06.03.2017:[9.0] "I like Kevin Owens. But given how he was squashed by Goldberg, WWE obviously doesn't share my opinion."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TheWrestlingFanwrote on 24.02.2017:[10.0] "Steen can be the best heel in modern times if he booked properly, like his ROH run or his NXT run where he wrecked a havoc there as the top heel, but he can also do some jokes if needed, too. Overall his in ring abilities is one of the very best these days, especially in American wrestling scene. He is also blessed with the ability to cut promos. He is simply a gem in wrestling world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Rllywrote on 10.02.2017:[10.0] "Mic: Verdammt gut und besser geht es eigentlich auch nicht mehr 10/10 (25%) Promos: Ja, sowohl innerhalb als auch außerhalb der WWE macht er nur gute Promos 10/10 (10%) Ring: Bei der WWE ist es schade, dass er so eingeschränkt ist. Jeder der ihn außerhalb auch verfolgt hat weiß, dass er die volle Punktzahl verdient hat 10/10 (50%) Gimmick: Sein Gimmick ist richtig gut, mich stört nur, dass er als so schwach dargestellt wird. 9/10 (15%)   =10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: coolserazwrote on 08.02.2017:[9.0] "He is excellent. He can talk, he has a diverse move set, he is very agile for his size. Unfortunately, he has been booked very poorly as a Universal Champion incapable of winning a match on his own. WWE is prone to booking heels as cowards and both Rollins and Owens suffered.  The one point against him is he tends to be go too far with the humor and so gets babyface pops despite being a heel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kazu Shizowrote on 01.02.2017:[8.0] "Also ich muss sagen er macht sich recht gut in der WWE, seine Promos, insebsondere mit Jericho an der Seite sind echt unterhaltsam. Das gefällt mir schon sehr gut. Auch im Ring macht er eine guten Eindruck. Insgesamt sind aber mehr als 8 Punkte nicht drin. Mir fehlt dann doch ein größeres Skillset, ein klareres Gimmick und vielleicht auch mal ein Faceturn damit er auch mal clean gewinnen darf."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Real Raterwrote on 21.01.2017:[8.0] "Ring: Er ist gut, aber so gut wie, er gemacht wird auch nicht. 8/10 (50%).   Promos/Schauspieltalent:Auch hier nur gut. 8/10 (25%)  Charisma/Statur/Gimmick:Leider geht ihm etwas Charisma ab. 6/10 (25%)  Sind dann insgesamt 7, 5 Punkte für Mr. Wrestling.   = 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Gravelordwrote on 08.01.2017:[8.0] "Kevin Owens is a very good performer who certainly understands how to promote himself. However, there are a couple of noticeable problems with his work. Firstly, his work on top as heel which is his primary alignment, especially in the WWE, is rather dull. Owens proclaims himself the "Headlock Master" and likes to hold his opponents in an extended headlock sequence while either talking trash to them or the audience. You see, in theory this is good character work, but it only works for smaller venues as unless you are sitting close to the front of a large arena, you'll never be able to hear what Kev is saying. Similarly, audiences at home are likely just left bored by Owens' extended rest-hold which 9 times out of 10 completely cripples match excitement. Secondly, Owens, for some reason unclear to me, likes to pander to the crowd as a heel. This would be cool as a babyface, which Owens does play well, but falls flat as a heel as it takes audience love away from the babyface and instead generates it for Owens, the heel. Lastly, I find many of Owens' matches as of late to be very formulaic and lacking in anything memorable, which any world champion in the largest wrestling promotion should strive to have in order to retain fans. Still, Owens is a great character and has shown he can work great matches, especially thanks to his incredible heel run in RoH and multi-year, multi-promotion spanning feud with El Generico/Sami Zayn."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mantafahrerwrote on 01.01.2017:[10.0] "Ist ja echt eine Unverschämtheit, jemandem aus Lust und Laune null Punkte zu geben, nur weil sein Booking und seine Darstellung unterirdisch sind. Sorry, aber bitte erklärt mir mal, wie er mit dem grottenschlechten Material, das er derzeit vorgesetzt bekommt, was Spektakuläres auf die Beine bringen soll. Aber das ist ja keine Überraschung mehr - zumindest bei Raw sind die Verantwortlichen völlig unfähig, sowas wie einen überzeugenden Main-Event-Heel zu booken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: LSEstrelawrote on 01.01.2017:[10.0] "He is the best wrestler on the planet today. Hands down, one of the all time greats, Kevin F'N Owens!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TheRainmaker28wrote on 31.12.2016:[6.0] "Man, Owens has been so disappointing. His heel work is bad, his in-ring work has been bad and his reign as Universal Champion has been fucking horrible. I will go down his rating from 9/10 to 6/10."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ILoveProWrestling01wrote on 20.12.2016:[10.0] "One of my Favorite wrestlers. Has Charisma and is very good at Mic. Has had amazing matches with Sami Zayn, Seth Rollins and Cena. He has been 2x Intercontinental Champion and currently Universal champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TrevPuroFanwrote on 10.12.2016:[6.0] "Kevin Steen/Owens is a very hit and miss performer for me. Sometimes when he gives it is all, he can be outstanding (ex. vs. Generico, vs. J. Briscoe, Super Dragon etc. ), but there also times when he can be a very bad/spotty performer (vs. Cena II, vs. Elgin etc. ). Overall I'd say Owens is a good wrestler, but nothing spectacular."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Squared Circlewrote on 07.11.2016:[5.0] "I like the guy.  He works hard in the ring.  Decent on the mic.  Old school power house wrestler, reminds me of the Anvil.  Over pushed as a singles champion however.  He'd be great on a tag team with a speed/technique based partner.  But, like so many others today, he's in the wrong spot to go down as memorable and like spot wrestling itself, will go down as insignificant."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: WrestlingFan1112wrote on 23.10.2016:[10.0] "Der Junge hat es einfach nur drauf! Er ist wahrscheinlich einer der besten Heels, den die WWE jemals hatte. KO ist der perfekte Allrounder! Was kann er nicht? Technik ist trotz seines Körperbaus überragend! Am Mic ist er einfach nur super! Ausstrahlung besitzt er auch, wie kaum ein Anderer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "Man muss KO einfach lieben. Ein Mann seiner Statur mit einem derart breit gefächertem Arsenal an Moves, das ist wahnsinn. Auch wenn er in der WWE leider nicht alles zeigen darf, was er zu bieten hat, aber dennoch immer eine Freude ihm im Ring zuzusehen. Die Segmente mit Y2J und ihm sind immer unterhaltsam. Und er ist ja auch noch recht jung. Ich hoffe wir werden die nächsten Jahre noch sehr viel von KO erwarten dürfen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: akm0wrote on 18.10.2016:[8.0] "Kevin Owens is just a star. He's a natural on the mic, he's a natural in the ring and he's surprisingly agile for his size, being capable of doing things like a standing sommersault legdrop or a 450° splash like it's nothing. As for his matches, he doesn't always deliver, mainly because he's an heel and he likes not to show off while being one, since he want to generate true heat. He's already a world champion and can only go up from there. His feud with Zayn will be remembered as one of the coolest thing in his career."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: shosa94wrote on 11.10.2016:[10.0] "Has already established himself as a legend.  From PWG to ROH to NXT to WWE, all-time great rivalries with Super Dragon and El Generico/Sami Zayn, runs as a babyface, monster heel, shit heel, a leagues deep movepool, brilliant mic work, and a unique look, Kevin Steen/Owens would be WON Hall of Famer if he retired tomorrow.  Now the second ever WWE Universal Champion and the first to have a real reign, with Sami Zayn, Seth Rollins, and Chris Jericho to feud with, and at only 32 years old, the sky's the limit as long as he stay healthy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Phenomenal 1551wrote on 06.10.2016:[9.0] "Kevin Owens/Steen, trotz seiner "unscheinbaren" Figur einer der besten Worker im Ring. Vor allem was er zu Indy-Zeiten an grandiosen Aktionen und Matches gezeigt hat, aber auch bei der WWE ganz vorne mit dabei und zu Recht Universal Champion. Gibt der Zeit kaum einen authentischeren Heel als ihn und seine Promos unterhalten eigentlich immer. #"The Kevin Owens Show""
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JordanACEwrote on 01.10.2016:[9.0] "THIS IS THE KEVIN OWENS SHOW! Kevin is just the best. No one can touch him. I don't think I have anything bad to say about KO..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TwistOfFatewrote on 06.09.2016:[10.0] "Nun ist der Champion von RAW. Kam nun etwas überraschend aber ich freue mich trotzdem für ihn. Verdient hat er es allemal. Bin gespannt wie lang er den Titel nun halten darf. Sein Gimmick verkörpert er gut und im Ring zeigt er auch immer eine recht gute Leistung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ApexOfEvolutionwrote on 06.09.2016:[10.0] "Ob Highflyer, Techniker oder Brawler. Der Typ ist immer weltklasse. Besonders die Fehde mit El Generico gehörte zum Besten, was das Wrestling in den letzten Jahren zu bieten hatte. Freue micht echt ihn bald bei NXT zu sehen. Hoffentlich setzt die WWE ihn auch richtig ein. UPDATE: Bisher hat die WWE einige Fehler mit ihm gemacht, aber nun traut man ihm wohl endlich den großen Title-Run zu. Meiner Meinung nach ein würdiger Titelträger und ich freue mich schon auf die Fehde mit Rollins."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KASHwrote on 01.09.2016:[10.0] "Ich muss gestehen, dass ich mich zu ROH Zeiten auch lange von seinem äußeren habe täuschen lassen und ich ihn für schlecht und überbewertet gehalten habe. Das änderte sich irgendwann, weil er technisch einfach 1A sauber arbeitet und man ihm dahingehend absolut nichts vorwerfen kann. Man erwartet einfach nicht, dass jemand der ohne Bodybuilderlook wrestled die Power und Sicherheit haben kann, so gut mit anderen Heavyweights wrestlen zu können, es täuscht und überrascht. Sein Movepool ist unheimlich groß und innovativ und das teilweise sogar mit Unterschieden von Match zu Match.  Er hat ein natürliches Charisma, als geborener Heel und ist sehr authentisch und real wirkend am Mic. Ich kann die Leute, die sagen er habe keinen Championslook einfach nicht verstehen. Man muss sich bei KO für neues öffnen. Das Wrestling hat sich verändert, es ist wird kayfabe und Realität häufig untrennbar vermischt und so passt ein Owens dort perfekt als Champion hinein. Er sieht aus wie ein Jedermann und sollte doch eigentlich genau den Geschmack der Masse treffen. Für mich ist er definitiv World Champion Material und so scheinen das Triple H und Co. auch zu sehen. Er drawt und das zurecht... Seine Zukunft bei WWE sieht sehr, sehr gut aus. Eine unabsprechbare 10, für einen Wrestler der in allen Kategorien perfekt liefert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KobashiKentawrote on 31.08.2016:[10.0] "Tut mir leid, aber wer einem Wrestler eine 1 oder 0 Punkte Wertung mit der Begründung gibt, dass man "kein großer Fan vom Indy Stil" ist oder ähnliches hat meiner Meinung nach den Sinn einer objektiven (! ) Bewertung absolut missverstanden.  Habe sowieso das Gefühl, dass viele viele der hier abgegebenen Wertungen einzig und allein dazu da sind, die Gesamtwertungen + Rangliste der "besten" Wrestler hier auf Cagematch nach dem eigenen Gusto abzuändern.  Owens war in seiner Indy-Zeit (vor allem ROH und PWG) mein absoluter Favorit und er repräsentiert auch heute in der WWE für mich das einzig echte "Total Package" (mind. gut im Ring, guter Stickman, Ausstrahlung/Charisma). Mit einer endgültigen (objektiven! ) Bewertung des Wrestlers Kevin Owens werde ich allerdings noch warten, bis er sich wirklich im Mainroster etabliert hat (... oder eben nicht).  EDIT: Boing!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Hypocrisywrote on 26.08.2016:[9.0] "Kevin Owens entspricht rein äußerlich definitiv nicht dem Anforderungsprofil für einen Top-Superstar in der WWE. Nach dem beeindruckenden Start bei WWE mit dem Sieg über John Cena konnte er den Sprung an die Spitze zwar noch nicht schaffen, jedoch ist dies m. E. nur eine Frage der Zeit. Beeindruckend auch, wie er und Sami Zayn die Fehde aus den Indies ins Universum übertragen konnten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KO Maniacwrote on 23.08.2016:[10.0] "Wie man an meinem Namen sehen kann bin ich ein GROßER KO Fan. Einer der Unterbwertesten zur zeit. Er hat einfach alles, was ein Wrestler Braucht. 10 Punkte von mir."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: croatiantwat1950wrote on 22.08.2016:[10.0] "By far the best heel in the WWE(although is pretty over, but hey, gimmick-wise). Excellent wrestling and promo skills, has the best gimmick and executes it with pure beauty. I hope he never ends feuding with Sami as long as either of them is still active."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: SJBarneswrote on 30.07.2016:[9.0] "I only give him a 9 as occasionally I feel he does have some baby face tendencies when he is meant to be a heel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wrestling Foreverwrote on 21.07.2016:[10.0] "Die Bewertung bleibt den er ist auch nun bei WWE NXT genial. Alter Text: Mr Wrestling oder Wrestling's Worst Nightmare ist ein absoluter Allrounder. Der Kanadier kann einfach alles auch trotz seiner Masse High Flying Moves die andere Big Mens nie geschafft haben. Steen hat unfassbar viel Charisma, überzeugt in den Promos absolut, ist sowohl als Face als auch Heel großartig, beherrscht auch Comedy Elemente. Kann auch super brawlen kurzum der Mann beherrscht wirklich alles was man im Wrestling an Stilen beherrschen kann.  Neu hinzugefügt: Nachdem Steen in den Indys alles erreicht hat, überall auf der Welt wrestlet ist er nun bei WWE NXT und macht mit dem dort weiter was er schon in den Indys gemacht hat Wrestler zerstören und Titel gewinnen. Edit 21. 07. 2016 Mittlerweile schon länger im Hauptroster und nun bei RAW. Er macht einfach da weiter wo er bei NXT aufgehört hat und überall ist die Kevin Owens Show."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: so291wrote on 21.07.2016:[10.0] "Mein Lieblingswrestler in der WWE. Am Mic der beste zur Zeit, im Ring einer der Besten und sein Charisma der Hammer. Der beste Trashtalker in der WWE (sogar vor Jericho). Hoffentlich sieht auch Vince sein Potenzial und vergeudet sein Talent nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KevinZaynwrote on 23.06.2016:[10.0] "Kevin Owens ist das beste Gesamtpaket der WWE. Er ist im Ring Weltklasse 9, 5/10 , am Mic ist er ebenfalls grandios 10/10 , Charisma und Ausstrahlung sind ebenfalls Main Event Material. 9/10 jeweils"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: AMHTPwrote on 20.06.2016:[10.0] "Kevin Owens is one of the best wrestlers in the world, and has been long before he was on WWE's radar.  He has enormous diversity of character, playing heel or babyface extremely well, though I think his greatest talents lie in the former role.  He's incredible in the ring, moving uncannily well despite his size, and his moveset is fantastic.  Obviously, he's one of the best talkers in the WWE today -- perhaps the best, although Bray Wyatt gives him a run for his money.  But the best thing about Owens is his focus on the little things.  He pays attention to psychology, references past matches and promos both on the mic and in the ring, he adds little elements to his performance to suck every possible bit of hate out of the audience... he's a genius, honestly.  I can hardly think of anything he can't do.  Hardcore stuff?  Sure.  Flying?  He can do it.  Portraying a coward?  Absolutely.  Portraying a monster?  Easily.  This is the kind of guy who can work any gimmick, in any style, at any time.  I'm giving him a 10/10, and he's one of only a couple wrestlers in the world who I would ever rate so highly."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: sXe27wrote on 20.06.2016:[10.0] "Alles an Kevin Owens ist besonders. Für seine Status ist er extrem agil und kann sowohl den Brawler, Powerhouse oder den Techniker mit High Flying Moves glaubwürdig darstellen. Apropos Statur, die ist auch besonders - sieht nicht aus wie der typische WWE Wrestler, sieht nicht einmal aus wie der typische Independent Wrestler, sondern eher wie ein Amateur-Backyard-Wrestler. Aber das gehört einfach zu ihm dazu, denn wen interessiert es, ob er einen durchmodelierten Körper hat, wenn er im Ring eine Topleistung nach der anderen zeigt, aus jeder Pore seines Körpers das Charisma tropft und er vor allem am Mikrofon an Leute wie Chris Jericho oder CM Punk erinnert. Was er am Mikrofon im Stande ist zu leisten, da können sich andere talentierte WWE Redner immer noch ein Stückchen abschneiden. Sahnepromos als Lernmaterial wie man Promos mit dem perfekten Timing und pointiert rüberbringt. Und wenn man alleine seinen untypischen Körperbau als einzigen Grund aufführen könnte (ich selbst tue es nicht), weshalb er kein Main Event Player und zukünftiger World Champion sein kann, sagt das schon vieles aus, wie talentiert er eigentlich ist, wenn man schon nach solchen Oberflächlichkeiten graben muss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Jobbswrote on 17.06.2016:[9.0] "This guy is just so much fun to watch honestly in the ring and out of the ring. I give him all the praise he deserves as he's going to be one of the greatest to come. Owens/Steen has just been phenomenal and his feud with Zayn/Generico is legendary and has span over numerous promotions. I'd give him a full 10 but there has been times where his matches didn't cut it for me."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Franjisewrote on 13.06.2016:[10.0] "Muss ich diese 10 Punkte wirklich erklären? Nun, eigentlich ja nicht, ich mach es aber trotzdem. Kevin Owens hat wie kaum ein zweiter Wrestler die Fähigkeit, mit der Crowd zu spielen und zu interagieren. Er achtet einfach unfassbar auf Details und macht sogar aus langweiligen Rest Hold-Sequenzen etwas unterhaltsames ("Headlock City, Baby"). Darüber hinaus ist er am Mikrofon einfach überragend - ich habe von ihm während seiner ganzen Karriere noch nicht eine schlechte Promo gehört. Im Ring ist er ebenso stark, und das nicht nur "für einen Mann seiner Statur". WWE scheint auch erkannt zu haben, dass Kevin Owens Gold wert ist. Kann man nur hoffen, dass Vince McMahon tatsächlich einmal den entscheidenden Schritt wagt und ihn zum World Champion macht - die notwendigen Anlagen dazu hat er allemal!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: SE Finestwrote on 09.06.2016:[10.0] "When a heel that's a even a heel on twitter (he's really2 mean on twitter if you never see his tweets) , but still receive one of the loudest pop in almost every town he goes just show you how good he is. In-ring ability that can only be match by really few in WWE, a really good mic skills(especially during backstage interviews), can even be funny in the ring without the need to be like Santino Marella, this guy is for sure your future WWE World Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Alex Maedawrote on 02.06.2016:[10.0] "Einer meiner absoluten Lieblinge. Am Mikro sehr gewandt, kann lustig-albern bis verbissen-böse verkörpern, ist dabei immer mit voller Leidenschaft dabei und liefert regelmäßig starke In Ring-Leistungen ab. Klar vermisse ich auch wie so einige den Package Piledriver, den Steenalizer und andere Moves, die er zu Indy-Zeiten noch regelmäßig auspacken durfte, jedoch ist auch die "abgespeckte" WWE-Version von ihm immer noch ein Glücksfall."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Klabauterwrote on 30.05.2016:[10.0] "Er ist Mr. Wrestling, damit ist eigtl. alles gesagt, was es zu sagen gibt. Zwei Punkte muss ich dennoch abziehen, da er aktuell nicht gebookt wird, wie ein Mr. Wrestling. Allerdings wird er seinen Weg bei WWE gehen. UPDATE (30. 05. 2016): Mittlerweile wird er endlich richtig gebookt! Kevin Owens steht eine gute Zukunft bevor und über kurz oder lang, wird Kevin Owens mit dem WWE World Heavyweight Championship in die Halle kommen und immer noch grandios abliefern. Der Mann ist schlicht und ergreifend perfekt am Mikrofon, im Ring und bringt eine natürliche Ausstrahlung mit. Ihm nimmt man sein Gimmick komplett ab! Auch sehr positiv anzumerken ist seine Aktivität auf Twitter. Er zieht auch dort sein Gimmick durch. Er verdient die Höchstwertung. ZEHN!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: finest0000wrote on 28.05.2016:[9.0] "Über Kevin Owens kann man sagen was man will, aber er ist im Ring für seine Masse einfach klasse. Ich hoffe er kommt noch so richtig in die Topregionen der WWE, denn er hat eine Menge Potential."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: prowrestlingisrealwrote on 26.05.2016:[10.0] "Great with a mic in his hands, good in the ring, very agile and have an awesome moveset, he's not a spot guy like some fellas are saying in the comments, he can produce good matches against anyone, KO is the best thing in that company right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Superfluous Jwrote on 25.05.2016:[9.0] "I'm starting to understand from just being on here for a short time how absurd and ridiculous many wrestling fans are. Most notably the internet trolls who think they can run WWE from their parents basement. I find it baffling people can rate Kevin Owens anything lower than a 5. People on here actually think he is a horrible talker? ! And a "spot" wrestler? ! I don't get it. There's just too many smart marks and picky over analytic people for me sometimes.   He gets an 8 from me. I subtract 1 point for his lazy ring attire. People commenting on his physique are clueless too. These are probably the same people who are CM punk and Nakamura fans (both of whom have everyday guy type physiques). I've seen plenty of jacked, athletically gifted guys who aren't 1/100 of the wrestler and personality Owens is."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Movadowrote on 25.05.2016:[9.0] "One of the best. Der Typ ist so unglaublich. Top In Ring Skills, Top Mic Skills, Interaktion mit dem Publikum wie kaum andere, für die Statur zu unglaublichen Sachen fähig (Flip Legdrop) und egal ob als Face oder Heel einfach nur Over. // Update 25. 05. 2016: An den Punkten kann und will ich nichts ändern. Ich hatte schon zu seinen ROH Zeiten eine sehr hohe Meinung zu ihm. Ich bin nur einfach mittlerweile sprachlos wie er es geschafft hat in der WWE so schnell, so weit voran zu kommen. Der miese, kleine, kanadische Pitbull mit hohem technischen Können und einer Klappe irgendwo zwischen CM Punk, Chris Jericho und Rick Rude und selbst das Mainstream Publikum frisst ihm aus der Hand. Einfach unfassbar."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Y2J316wrote on 08.05.2016:[7.0] "Bewerte hier mal nur sein WWE Run, denn ich kannte ihn Vorher so gut wie garnicht. Ist jedoch ein Super Allrounder der alles drauf hat. Gutes Mic-Work und auch im Ring ist er ne Wucht. mal sehen wo es für ihn in den nächsten Jahren so hingeht. Hat auf jeden fall das Zeug eine Legende zu werden."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mettstetter619wrote on 07.05.2016:[10.0] "10, 0. Bester Heel zurzeit in der WWE. Kann im Ring auch trotz seinem Gewichtes nahezu alles. King am Mic. Hat unglaublich viel Charisma. Ich hoffe, dass er eine lange Fehde mit Zayn führt, da man die Matches von den beiden sich täglich geben kann. Kevin Owens ist auch einer meiner Favourites. Ich hoffe er bleibt lange Heel, da er so großartig als Heel ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: UChucky46wrote on 02.05.2016:[2.0] "A souped up backyarder with day one of wrestling school heel tricks (chin locks don't get heat). Owens' only real skill is that he knows a lot of moves, well I know a lot of words but that doesn't make me a poet. The WWE performance center were at least kind enough to teach him the basic tenets of selling."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Nigglesojanicwrote on 28.04.2016:[9.0] "Macht als Heel unglaublich Spaß im zuzusehen, tolles Mic-Work, toll im Ring. Hat gegen John Cena gezeigt, dass er auch schwächere Gegner zu starken Matches ziehen kann. Mal sehen, was so noch mit ihm passiert."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mandzukic9wrote on 24.04.2016:[10.0] "Kann man solch Bewertungen nicht ausschließen?  Der Typ gibt Owens, Aries, dem Undertaker, Balor, Adam Cole, The Rock, Shawn Michaels, Ambrose, Cesaro, Tanahashi, Jericho und Okada zusammen drei Punkte. Das hat doch nichts mehr mit objektiven Bewertungen zutun...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: WrestlingNerdwrote on 10.04.2016:[10.0] "Dieser Typ ist einfach Gold wert. Er ist einer der wenigen Lichtblicke die die WWE zur Zeit hat. Natürlich gibt es da noch viele andere talentierte Worker, jedoch zeigt Kevin Owens zur Zeit das beste Gesamtpacket. Wenn man eben nur das Können, Charisma und MicWork heranzieht, denn vom Look her, entspricht er sicherlich nicht dem idealbild eines Wrestlers. Aber er versteht es einfach sich so darzustellen, dass es eben genau passt. Er spielt super in den Matches mit den Gegnern und wie er oft auch das Publikum mit einbezieht herrlich. Manchmal muss man auch einfach schmunzeln, wenn er ein Interview gibt oder eine Promo hält, weil er halt auch versteht etwas Humor mit einzubauen. Vom können im Ring muss man ja auch nicht reden, da ist er trotz seiner eher untypischen Statur wohl wirklich einer der Top 10, wenn nicht Top 5 der aktuellen Leute.  Ich sehe ihn früher oder später auch als einen World Champion, da er einfach nahezu alles mit bringt, nur eben nicht den Look den ein VKM jr. bevorzugt, aber unter HHH könnte ich es mir dann doch schon vorstellen. 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: blackmileswrote on 28.03.2016:[10.0] "Als ich Kevin Owens bei Smackdown auf Pro7 Maxx gesehen habe im vergangenen Sommer und noch nicht auf so Seiten wie Cagematch unterwegs war habe ich mich mich gefragt ob ich der einzige bin der Owens so feiert. Wie es sich herrausstellte hatte Vince nur wieder auf den BUU Knopf gedrückt. Sein In-Ring können finde ich jetzt nichtmal sooooooo gut wie es alle reden. Ich finde es solide. (8/10) Aber am Mic ist er eine 1000000000000/10. Dieser Typ gehört in den Main-Event gepusht.   Believe That"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: jac0bmillerwrote on 27.03.2016:[10.0] "Kevin Owens/Steen has been one of the very best in the ring for a very long time but he may be a bit spotty at times. Kevin Owens has a great connection with the crowd. He makes every rivalry he is in, a must see rivalry, and is one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: oscargeorge1wrote on 23.03.2016:[9.0] "The only true genuine heel that WWE currently have (i'm not counting the joke that is the League of Mid-Carders). Wrestling ability, promos he has got the lot, he needs to be at the top of the tree. There are currently few wrestlers in WWE that can wrestle in a main event of a show, Owens is one of them."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: siddyboywrote on 22.03.2016:[10.0] "The guy can wrestle, fight, speak, trash talk. He has all good qualities of a heel and Im just waiting for him to be in the main event picture. WWE really need guys like him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Psychospherewrote on 09.03.2016:[10.0] "Kevin F'N Steen is the most evil motherfucker in wrestling and is having the career of his life in WWE. Apart of one of my favorite feuds with El Generico."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Longa-46wrote on 27.02.2016:[10.0] "In der Indy Szene einer der besten. In der WWE momentan für mich ebenfalls. Für seine Statur sehr beweglich und ohnehin im Ring sehr gut. Was er für Moves drauf hat ist Weltklasse. Am Mic ebenfalls klasse und es macht Spaß sich seine Promos und auch Interviews mit anzuhören. Klasse Ausstrahlung und für mich momentan einer der besten in der WWE. Ich hoffe dass er eine gute Zukunft in der WWE hat, seine Main Event Chancen bekommt und eine Chance auf den WWE World Heavyweigth Title bekommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: tumult mattwrote on 26.02.2016:[10.0] "Best heel currently in the game and one of the best heels ever with as much as he still has to prove as a main eventer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Chyonofujiwrote on 20.02.2016:[10.0] "In ROH war er sicher weit interessanter. Da ich die WWE aber nur nebenbei verfolge, wenn ich gerade mal Zeit und Lust habe, bleiben mir die Matches aus den Indy-Zeiten gut in Erinnerung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TheLoudMouthwrote on 18.02.2016:[10.0] "Der wohl unkonventionellste Worker der WWE derzeit. Einen Körper, der dem Mainstream nur so trotzt, und dennoch unfassbar starke Skills machen Steen/Owens aus. Top im Ring, top am Mic, tolle Ausstrahlung. Er kann und wird es in diesem Business noch weit bringen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: maskanilwrote on 11.02.2016:[9.0] "He probably the best heel since CM Punk. What he does in the ring is always amaze me and he truly a masterpiece in microphone. I'm sure that in 2 years he'll be the WWE Champ and succesfully will be the heel face of the company."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JulDBreakdownwrote on 04.02.2016:[10.0] "The Best There Is, the Best There Was, the Best There Ever Will Be and the truly best in this fn world #bestintheFNworld he is the man!  keiner vesteht so viel vom wretling heutzutage wie er go and watch some stuff from the "goldenages" and you know what i mean #pushhimtotheskies"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Dagmerwrote on 01.02.2016:[7.0] "Starker Typ. Beweglich, kräftig und charismatisch. Hat wiederholt gezeigt, das er im Stande ist gute Matches abzuliefern. Gehört aktuell zu den besten Wrestlern der WWE. Unentbehrlicher Bestandteil der heutigen Midcard, zum Main Eventer reicht es aber noch nicht."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JPowerswrote on 31.01.2016:[10.0] "He’s amazingly agile for a big man, as demonstrated by the speed and beauty of his moonsaults. He’s also a sound technician in the ring, strong and fast in his action. He throws a suplex just as mean as Brock Lesnar does. But he’s also so over because of his fantastic mic work. His mannerisms and character work are sublime, constantly selling intensity and feeling. With strong selling merchandise and loud crowd reactions, he’s got a very bright future, and is already the second biggest heel in the entire company."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Naruedyohwrote on 26.01.2016:[10.0] "This is a great wrestler. Knows how to fight, can make great matches if let to have them, the gimmick is exceptionally well made and very realistic, we all can see us in Kevin Owens"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Doctoriusefulwrote on 26.01.2016:[8.0] "Seine Zeit in den Indies kann ich nicht beurteilen. Was ich bis jetzt von ihm in der WWE gesehen habe hat mich allerdings schon jetzt zu verdienten 8 Punkten überzeugt. Und da man ihm so schnell den IC-Titel gegeben hat, wird sich die WWE wohl viel von ihm versprechen. Jedoch ist er rein von der Statur her, mit seinen 1, 78m und recht pummeligen 119 kg, wohl nicht der Typ den Vince als WHC sehen will. Ich bin gespannt. :)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Dilbertwrote on 20.01.2016:[8.0] "Ich mag seinen Charakter nicht besonders (was zeigt, dass er funktioniert, er ist mir nur etwas zu eintönig). Für seine Statur (quadratisch, praktisch gut) ist er erstaunlich schnell und beweglich, Kraft hat er ja eh, und was er in und um den Ring zeigt ist voll überzeugend. Diese doofen Aktionen des "aus dem Ring verpieseln wenn es Kloppe gibt" finde ich etwas zu berechenbar, die bräuchte er nicht um seiner Rolle als fieser Prügelwürfel gerecht zu werden. Zudem geht damit oft viel von der Matchathmosphäre verloren, wobei natürlich klar ist dass die Jungs bei dem was sie da treiben zwischendurch auch mal durchatmen müssen (jeder "normale" Mensch würde sein Dasein nach nichtmal 1/4 der Aktionen entweder wochenlang in der Reha oder auf alle Ewigkeiten im Sarg verbringen). Sehr gute Brawler, technisch dafür sehr beschlagen und ein prima Heel, doch der letzte Kick fehlt noch."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Reezerwrote on 17.01.2016:[10.0] "Owens gehört für mich zu den Top 3 des Rosters und hat alles was einen guten Heel ausmacht. Super Moveset (besonders für seine Statur), ein guter Trashtalker, eine recht eigenwillige Optik und immerwieder gute Interaktionen mit dem Publikum.  Ich könnte Ihn mir auch gut als Monster vorstellen, aber da geht ihm evtl. noch die Präsens gegenüber Jemandem wie Lesnar ab, nichtsdestotrotz Jemand der (in Hinblick auf die aktuelle Verletzungsmisere) definitiv weiter gepusht werden sollte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: SteveTheBeastwrote on 12.01.2016:[10.0] "Einer meiner absoluten Lieblingswrestler. Er ist ein sehr guter Wrestler, der trotz seines Gewichts und seiner Statur anspruchsvolle Moves machen kann. Sein Micwork ist auch absolute Spitze. Er ist einer der besten Trashtalker die es gibt. Würde ihm die WWE ein bisschen mehr Freiraum gewähren, dann würden wir wahrscheinlich Zeugen, von absolut göttlichen Promos werden. Nur leider wird er wahrscheinlich nie etwas großes, weil Vince ja eher die großen, muskolösen und starken Typen will. Naja schade, aber wir werden ja sehen, wie sich das entwickelt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kevin Owensteenwrote on 12.01.2016:[10.0] "Kevin Owens ist so ziemlich perfekt in absolut allem was er macht. Er ist fantastisch im Ring, unglaublich unterhaltsam am Mikrofon(oder wann auch immer er irgendetwas sagt)und kapiert vor allem die kleinen Dinge so gut. Er beleidigt das Publikum während seiner Matches, gibt immer irgendwelche Kommentare ab die jemanden zum Lachen bringen und ist der einzige Heel in Eeeeeeeeeewigkeiten der eigentlich mit dem Publikum während seines Einzugs interaktiert. Vielleicht erniedrigt er jemanden oder starrt einem Cenakind kalt an. Was auch immer der Kerl ist fantastisch und ich hoffe die WWE macht ihn irgendwann zum Main-Eventer. Ich find es aber blöd, dass Leute sich über sein Gewicht beschweren und etwas abnehmen sollte, aber das ist ja das besondere an ihn:Der Kerl sieht nicht mal annähernd aus wie ein Athlet kann aber trotzdem Dinge wie Moonsaults und Senton Bombs makellos hinkriegen und ist generell für seine Größe unglaublich beweglich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JeMewrote on 11.01.2016:[9.0] "Ein großartiger Pro-Wrestler. Am Mic immer wieder eine Klasse für sich, im Ring sehr variablen und mit guter Workrate. Sicher nicht der beste Wrestler aller Zeiten, aber vom Paket her, einer der besten aktuellen Worker bei WWE. Sein Look sollte nichts zur Sache tun, insebsondere Heels sollten "hässlich" sein. Wrestler wie Mick Foley haben gezeigt, dass Look bei WWE oft genug überschätzt wird. Leider Gottes wird er bei WWE niemals die Chance bekommen sein ganzes Können ausspielen und in Main Event zu headlinen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: J0KERwrote on 06.01.2016:[10.0] "Am Mic einer der besten Trash Talker! Im Ring hat er nahezu jedes Stil drauf zeigt High Flying Aktionen bisschen Technick und Powerhouse Moves. Hat mit Cena richtig gute Matches gezaubert wie kaum ein anderer. Charisma hat er auch auch wenn es paar nicht zugeben.   Eine Bewertung unter 5 zu geben ist eine Frechheit gegenüber diesen großartigen Mann der noch großartige Matches bestreiten wird.  Tja paar haben wohl Probleme bzw. denken das "fette" Leute nichts in der WWE zu suchen haben.  Foley, Bam Bam Bigelow und viele andere Legenden würden euch gerne in euer Gesicht spucken ;)  Schämt euch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: awesomepunkwrote on 09.12.2015:[9.0] "Top Wrestler. Charismatisch, sehr gut im Ring mit vielen Moves. Starke Promos. Hat das Potential zum Maineventer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Blackout501wrote on 03.12.2015:[10.0] "Kevin Owens is without a doubt one of the best wrestlers on the face of the earth. He has a unique look, he's incredible in the ring and he is untouchable on the mic. But the best thing about Kevin Owens is all the little things he does in the ring to antagonize the crowds that really set him apart from any other heel currently working."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Giant2wrote on 21.11.2015:[8.0] "Leute, was redet ihr für einen Unsinn? Es ist Wrestling ! Scheißegal wie der Typ aussieht. In den Neunzigern liefen die Wrestler in Clowns-Kostümen, als Klempner, Cowboys oder sonstwas rum und keinen hat es gejuckt. Kevin macht momentan einen guten Job als Kampfsau, die gehasst wird und das ist Sinn der Sache. Und Athletik, also bitte... Schon mal Dick Murdoch gesehen oder Terry Gordy ?"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Penkerwrote on 20.11.2015:[2.0] "Ich PERSÖNLICH finde ihn mehr als overrated. Hat für MICH weder den Look, noch das Charisma noch sonst was, um wirklich mal in die Main Event Riege aufzusteigen. Das wird sich wohl bei Zeiten auch nicht ändern. Da sollen sie mal lieber andere Talente statt Kevin Steen pushen. Bin mal gespannt, wielange die WWE an ihm festhält.   @Mandzukic9: Oh man. Immer diese Leute die meinen, dass man sich ein anderes Hobby suchen soll, nur weil man Person X nicht mag. Ich persönlich habe nicht nur ein paar Jahre WWE geguckt (verfolge es seit 1999 regelmäßig) sondern u. a. auch WCW, ECW, TNA, RoH, CZW, JCW, Lucha Underground, AAA, CMLL, NJPW, DDT und sogar Wrestling Society X. Ja, ich habe Kevin Steen auch schon zu seiner RoH-Zeit verfolgt. Aber ich PERSÖNLICH fande ihn da auch schon sehr overrated. Außerdem habe ich eine SUBJEKTIVE und keine objektive Meinung abgegeben, also bleib mal ganz entspannt ;)"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: RainmakerF7wrote on 11.11.2015:[10.0] "As Kevin Steen, he spent soo much time in the indys. He started there 15 years ago, and when he left ROH last year, people described him as a MR. Wrestling. He 's not been in WWE even a full year and he's already won NXT title, then beat JOHN FUCKING CENA CLEANLY and then won IC title. Now, there is a big chance we'll see Owens win a WWE WHC title at SS. Who knows? Owens is a tremendous brawler, but can also pull moves like Moonsault or 450 Splash. He can tell a great story in the ring, his facial expressions are awesome, he oozes charisma, he is a great heel, he is awesome on the mic. That is what you call total package. He is not as muscular as Cena or not as big as Super Roman, but I don't give a fuck. He is one of the best wrestlers in the world now. 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: DanielBryan1986wrote on 07.11.2015:[8.0] "Vorab einige Kritiken kann ich nicht verstehen. Ich bin seid 1994 Fan, habe Wrestler kommen und gehen sehen. Vor ca. 5Jahren hieß es noch es kommt nichts neues in den Main Event. Nun sind wir 2015 und dieses Problem ist angegriffen worden. Es wurde durch NXT viel gutes raus gebracht doch die WWE schafft es nicht richtig gute auch mal gescheit einzusetzen. Anders bei Kevin Owens, er ist Powerhouse und hat wesentlich mehr Charisma wie Batista(nach seinem Comeback), Big Show und Rusev zusammen. In seinem ersten Klassiker gegen Cena hat er sich super verkauft. Selbst gegen Ambrose kann er überzeugen. Für mich noch kein Main Event Material aber das muss er in seinem ersten Main Roster Jahr auch nicht sein."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: wordflyerwrote on 30.10.2015:[10.0] "Seriously one of the best in the business in terms of character work and in-ring ability. He might be as buff as Vince McMahon normally like them, but he's overcome that to still be a top heel in the top company. He's got a massive move-set, but knows how to use it correctly to build tension. Also sells very well. His program with Cena in 2015 was truly special, with the PPV matches being true match of the year candidates."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Undertaker-Showwrote on 19.10.2015:[5.0] "Ich muss Sascha Legendkiller zustimmen. Kevin Owens ist für mich ein Mittelmäßiger wrestler, aber auf keinen Fall ein Main Eventer. Er hat für seine Statur ein paar gute Moves drauf. Aber das war es dann auch schon. Ihm fehlt es an Charisma. Er ist total überbewertet und wird viel zu viel gepusht finde ich. Ich meine es wirkt einfach nur unrealistisch das er John Cena gleich am Anfang besiegt, einen deutlich stärkeren Ryback usw. Das kauft man einfach nicht ab finde ich. Denn er ist sehr klein für sein Gewicht. Die 5 Punkte sind für seine beweglichen Moves."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Sascha Legendkillerwrote on 16.10.2015:[4.0] "Rooney DX dein Ernst? So jemand wie Kevin Owens ist kein Wrestlemania und/oder Mainevent Material. Das ist einer der Gründe warum die WWE immer weiter abstürzt, weil sie die falschen Wrestler pushen die nie groß rauskommen werden z. b. Rusev, Kevin Owens, Ryback,  the Wyatt Family...."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: RooneyDXwrote on 26.09.2015:[10.0] "Kevin Owens beweist jede Woche dass er in den Main Event gehört. Man braucht keinen Brock Lesnar um die massen anzuziehen, Owens gegen Cesaro oder Rollins, Reigns, Ambrose. So viele Klasse Typen die WM Main Eventen könnten. Fight Owens Fight!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Koernelwrote on 23.09.2015:[10.0] "Ich muss zugeben, ich kannte ihn bei ROH nicht weil ichs nie schaute (gilt auch für Bryan und Cesaro jetzt), doch das hole ich wie bei den beiden anderen sicher nach. Er ist ein erstklassiger Heel der seinen Ar***loch-Charakter so perfekt spielt, dass ich ihm den als einzigen sogar ab und an abkaufe. Micwork ist einzigartig, hat man so lange nichtmehr gesehen, und im Ring zeigt er enorm attraktive Matches. Zudem muss man ihm zugute halten, wie beweglich er für seine Figur ist. Dass er den IC Titel gewinnen durfte, war genau der richtige Kompromiss zwischen Push und fallen lassen. Den Typen seh ich eines Tages an der Spitze - zuvor aber bitte Cesaro!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: WWEReignsRuleswrote on 21.09.2015:[8.0] "Ich muss zugeben ich war Anfangs kein Fan von ihm aber seit der Fehde mit Cena, gefällt er mir immer besser. Die Matches sind einfach der Hammer tolle Moves ich hoffe es kommen noch Matches gegen Seth Rollins. Traummatch!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Legendkiller96wrote on 20.09.2015:[10.0] "Kevin Steen ist Awesome, zu dem Kommentar da unten kann ich nur den Kopf schütteln, ja er ist nicht austrainiert aber er ist ein absolutes Biest und hat wohl das größte Charisma von allen, vorallem als Heel ist er begnadet. Und ja dann solltest du dir RoH angucken @DerDennis. In Ring Fähigkeiten sind sehr stark und ja manche können auch kein Purzelbaum, und es ist so umfassend, das darf natürlich nur beschränkt in der WWE zeigen. Steen muss ein World CHampion werden, wird er aber momentan nicht wegen Dunn. Schade aber wahr trotzdem 10 Punkte für einen der besten Wrestler der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: DerDenniswrote on 20.09.2015:[4.0] "Ich kann mit KO nichts, aber wirklich gar nichts anfangen. Er hatte eine solide Fehde mit Cena gehabt, danach fand ich ihn sehr langweilig und ziemlich nervig... Ich bin froh, dass er nicht weitergepushed wurde und ich hoffe das bleibt auch weiterhin so. Klar, man kann gute Wrestler nicht an seinem Aussehen ausmachen, aber er hat keine Ausstrahlung und sieht einfach aus wie ein dicker Hamster, der jeden Abend mit seinen Trucker-Kollegen in einem Diner einkehrt. Ich kenne ihn nicht aus seiner Vorzeit oder aus NXT, aber ich schätze mal, mit Charisma war er auch damals schon nicht so gesegnet...  Abschließende Worte: Der Cannonball ist auch nur ein Purzelbaum... so viel zu seinem krassen Moves..."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Jushin Thunder Leonwrote on 31.08.2015:[9.0] "Einer der besten des gesmaten WWE Rosters momentan. Was KO an Moves raushaut ist absolut wahnsinn, am Mic absolut lässig und Badass, und aufgrund seiner Statur zuemlich einzigartig. Seine aktuelle Darstellung geht mir jedoch ziemlich auf den Geist (wenn die Fans schon Walk Owens Walk chanten, sagt dass dich schon alles) aber da kann er ja nichts für."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mizzle Assault Antwrote on 29.08.2015:[10.0] "Long been a fan of Steen, and his ability to rocket up the ranks in WWE is just more proof. The man is a natural and cares deeply about what he does, to the point where his unconventional build not only fails to hinder him but actually makes him stand out even more. Hopefully WWE keeps his momentum strong."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wrestlingyoucefwrote on 26.08.2015:[10.0] "Kevin Steen/Owens is an unbelievable talent, he's an all time great in my opinion, amazing mic skills, phenomenal in-ring work, he's very charismatic, and he's one of the best heels you'll ever see."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KimboSlicewrote on 11.08.2015:[10.0] "Was soll man zu KO noch großartig sagen? Ein kompletter und einzigartiger Wrestler. Einzigartig in dem Sinne, dass er Moves (sauber! ) ausführt welche man ihm mit seiner Statur gar nicht zutraut. An Charisma mangelt es Owens überhaupt nicht und am Mikrofon ist er verdammt souverän. Im Ring eine gute Mischung aus Powerhouse, Highflyer und Techniker. Der Push von Owens scheint zwar derzeit auf Eis gelegt worden zu sein aber ich bin mir sicher dass das nicht dauerhaft ist. Dafür ist er einfach viel zu gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Josh76wrote on 10.08.2015:[10.0] "Pulls off the most insane moves for a man of his size, Fight Owens Fight, is someone I always look forward to seeing on the WWE roster."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Strikerwrote on 06.08.2015:[10.0] "Technisch gibt's überhaupt nicht zu meckern. Er beherscht zahlreiche Moves ausnahmslos perfekt und seine Matches sind immer wieder ein vergnügen anzusehen. Ich finde aber er ist wirkt ziemlich unsympatisch, was mich nicht stört weil ich meistens das blabla bei der WWE sowieso überfliege und mir nur die Matches ansehe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BadHawk26wrote on 24.07.2015:[8.0] "Absolutes mega talent schade das der hype vorbei ist er ist trotz seines bauches sehr beweglich ich finde ihn sollte pushen anstatt wieder die alten wwe leute zurück zu holen"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: FriarFergusonwrote on 21.07.2015:[9.0] "Ein Mann mit natürlicher Coolness, einer der wenigen, die es schaffen, authentisch ans Mic zu gehen. Bei ihm muss ich, anders als bei so vielen, nicht meine Phantasie bemühen, ihm das Gesagte abzukaufen. Im Ring gefallen mir besser als das große Moveset all diese kleinen Details, für die man genau hinsehen muss und die ihn als fiesen Bully im Ring verkaufen. Glaubwürdig trotz Wampe aufgrund der toll verkauften Barschlägermentalität aufgebessert durch coole Aktionen und High Spots. Hab Spaß an dem Jungen!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MastiWWEwrote on 06.07.2015:[10.0] "Kevin Owens hat hier klar 10 Punkte von mir bekommen weil Er hat sehr gute Micwork skills Er hat mal eine Fehde zwichen Hideo Itami gehabt und hat sich versprochen und sagte Meinte Mein Englisch ist so schlecht wie das von Hiedeo Itami Anstonsten noch ein richter guter Wrestler er schafts sogar ein Moonsoult mit seinem Gewicht respekt! und ein gutes Gimmick hat er auch noch!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Jack Slaterwrote on 05.07.2015:[10.0] "Wenn ich die totale Freiheit hätte einem Wrestler ein Moveset zu basteln (bei einem Videospiel z. B. ) so würde es fast genau so aussehen, wie das von Mr. Wrestling! Der Steenalizer oder der Package Piledriver stechen da natürlich besonders hervor und sehen einfach mal so böse aus. Dazu kommt sein unendliches Charisma und sein sehr starkes Micwork. Seine Fehde mit El wird wohl jedem Wrestlingfan lange in Erinnerung bleiben. Ganz ganz großer Wrestler. Leider komme ich nicht dazu sein Werk aktiv zu verfolgen und weiß nur selten was der grade so macht aber von dem was ich weiß bin ich restlos begeistert. Würde Ihn gern auf der großen Bühne sehen, egal was die hardliner unter den Fans denken mögen.  Edit: Er ist nun seit ner Weile in der WWE und tja. Ist das beste was die WWE zu bieten hat. Da kommt noch ein Punkt dazu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: sign squadwrote on 25.06.2015:[7.0] "DER T-Shirt Wrestler vor dem Herren. Fand ich ihn von 2004 bis 2010 wirklich klasse und unterhaltsam hat sich seit dem nichts positives in seiner In-Ring Ability getan. Stattdesssen hat er inzwischen das Gimmick eines Loose Cannon, welches in keinster Weise etwas positives bei mir auslöst. Es ist mehr die berühmte Go-Away Heat. Ich hab seit Monaten keinen Bock, mir seine Matches anzusehen. Neben der großen Schnauze die er ja ganz gut hat und die einen kichern lässt, ist er mir im Ring viel zu unbeweglich. Mag sein, dass die 20 Kilo mehr ihm in Sachen Bumps helfen, nicht so viel Schaden anzurichten, doch gefallen kann es mir absolut nicht. Mit diesem Look und diesem Standard den er sich erarbeitet hat, wird er nie über ROH und die Indies herauskommen. >>> Tja, nu isser in der WWE und den aktuellen Job macht er mehr als nur sehr gut. Hätte ich nie mit gerechnet, doch die zwei Matches mit Cena, die Präsenz die er bei den RAW Shows hat ist alles so viel besser als ich es je gedacht hätte. Ein bischen WWE Justierung hat seinem Gimmick sehr gut getan."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: FateBreaker46wrote on 16.06.2015:[10.0] "Best heel in wrestling today. Outstanding promo work, mind blowing athleticism and wrestling ability. Kevin Steen was quite a pick up by WWE, even I didn't think that he would achieve this much success in the WWE in such a short time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MrDXW1213wrote on 13.06.2015:[9.0] "Kevin Steen, also known as Kevin Owens, is one of those guys that has it all. He's a great brawler, who has won the Bruiser Brody Award three times in a row. He can do moves that crusierweights and Jr. Heavyweights can do. And he has a variety of moves in his arsenal. He can talk very well on the mic, as evident by his last run in ROH and his stuff with John Cena. His matches in PWG, His fued with Generico and S. C. U. M. , and his latest fueds with Zayn, Joe, and Cena, shows he can really work a story. He has a meanstreak that is very believable and that's why I believe that he can be WWE Top Heel for years to come."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: 8BitLegendwrote on 12.06.2015:[6.0] "Fällt für mich in die Kategorie "Jogginghosen-Wrestler". Quasi ein Tommy Dreamer 2. 0, nur ein wenig smarter und technisch versierter. Ich sehe natürlich was man an ihm finden kann und verstehe auch, dass er in den Zeitgeist passt. Dennoch repräsentiert er nicht das klassische Bild eines Wrestlers und legt mir zu viel Understatement in die Waagschale. Zudem ist er immens überpusht. Der NXT-Titel hätte erst mal gereicht, da muss man nicht auch noch direkt den größten Star an ihn verfüttern."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Blade Bourdeauxwrote on 09.06.2015:[8.0] "Mit seinen Impacts bei NXT und auch im Main Roster hat er alle Vorgänger mal locker getoppt. Der Sieg gegen Cena nach Cover zeigt wie viel die WWE in ihm sieht. Was er im Ring zeigt ist brutal gut und er erinnert mich ganz stark an Mick Foley vom Typ her. (Jetzt weniger auf sein Moveset bezogen) 8 Punkte für den Anfang wobei es vermutlich aber nicht bleiben wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: badboy88wrote on 08.06.2015:[10.0] "zuerst mal zu dem Kommentar, von diesem Hanswurst der kein Plan vom Wrestling hat. Owens kann alles im Ring jeden Stil mitgehen, Zerstörerausstrahlung und geiles Micwork und kein typischen WWE Look, was ich auch gut finde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: NaGoyah09wrote on 30.05.2015:[10.0] "Hoffe er kann meine erwartungen erfüllen wenn er jetzt im Main Roster komplett antritt, ihm fehlt eigentlich nichts mal sehen was die WWE aus ihn macht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: downtown2wrote on 25.05.2015:[9.0] "Steen/Owens weiss schon seit Jahren zu überzeugen und zwar in allen relevanten Belangen. Seine Arbeit im Ring hat immer den Look eines "Big Fights", also genau so, wie man als Pro-Wrestler im 21. Jahrhundert neben der UFC noch nach einem echten Kämpfer aussehen kann. Noch beeindruckender sind allerdings seine Aura und seine Arbeit mit dem Publikum, sowie am Mikro. Die Chemie die er scheinbar mühelos, ja fast schon beiläufig, entstehen lässt, ist nichts geringeres, als der oft beschriebene "It-Factor", den ein Mega-Star braucht, um eben dieser zu sein. Einzig allein seine komische Plauze stört doch gewaltig, unverständlich warum er sie nicht mal abarbeitet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: DieOffenbarungwrote on 25.05.2015:[10.0] "Fight Owens Fights. :D Den Namen hätte man jetzt nicht unbedingt ändern müssen, aber die Zukunft dieses Herren sollte echt enorm groß sein. Für diese Zukunft 10 Punkte. :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Ray Robsonwrote on 21.05.2015:[5.0] "Kann bestimmt alle Moves. Aber die sinnvoll aneinander zu reihen ist nicht so sein Ding. Mangel in Punkto Matchaufbau, auch wenn es sich über die Jahre leicht verbessert hat. Dafür stark im Crowd Working. Sorry, aber ich werde wohl nie ein Fan von ihm. In meinen Augen extrem überbewertet."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: yanuswrote on 26.04.2015:[8.0] "Very charismatic wrestler and surprisingly nimble in the ring. For a "powerhouse" he really lacks height (which will be a problem on the main roster)."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: DanTalksRasslinwrote on 26.04.2015:[10.0] "Not only a fantastic brawler but also possesses a keen understanding of the psychology of wrestling and is capable of combining elements of technical wrestling and even a bit of speed/high-flying-based offense for a unique and adaptable style.  Always a great promo as well, with that sort of nonchalant attitude working as either a face or a heel (summed up perfectly in his ROH theme song: "it's nothing personal - I just don't care").  It was a bit surprising that WWE picked him up in the first place as his look doesn't fit the stereotypical "WWE type, " but his talent is undeniable."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MusSanwrote on 25.04.2015:[10.0] "Kevin Steen, der beste Brawler der Welt. Seine Fehde damals gegen El Generico(Samy Zayn) war legendawer. Jetzt fehdet er als Kevin Owens wieder gegen Samy Zayn. Hoffentlich feheden sie irgendwann mal im Main Roster gegen einnander."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Swenson 238wrote on 12.04.2015:[10.0] "KILL STEEN KILL! Seine Zeit bei ROH war die beste seiner Karriere und der Typ ist einfach der geborene Heel. Für seine Statur ist er schon fast ein kleiner Highflyer und sein Indie-Moveset war mehr als sehenswert. Ich hoffe die WWE behält ihren jetzigen Kurs bei und kann Kevin Owens mit diesem Hintergrund irgendwann in die Main Shows schicken, wo er sicherlich schnell Fuß fassen wird. Ich gönne es ihm in jedem Fall!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Phenomenal91wrote on 21.03.2015:[10.0] "Of all the guys to ever come out of Ring of Honor, he seemed the LEAST likely to succeed in the world of sports entertainment. But ever since he came to WWE, guys like Stone Cold and The Rock have been putting him over as the Next Big Thing. As well they should, because Kevin is one of the best brawlers in the world today. He was great in ROH, and ROH is definitely missing him. Only time will tell if Kevin will follow in the footsteps of CM Punk and Daniel Bryan and achieve success on his own terms in the largest wrestling company in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BMwrote on 25.02.2015:[10.0] "Seit ich ihn 2006 zum ersten Mal live gesehen habe, hat er mich absolut überzeugt. Damals schon in so jungen Jahren so verdammt gut. Heute bei NXT definitv ein Grund einzuschalten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wrestlingfan96wrote on 20.02.2015:[10.0] "Mag ich Kevin Steen? NATÜRLICH MAG ICH KEVIN STEEN. Er kann verdammt gut wrestlen, ist witzig, ist gut am Mic und spielt seine Rollen super- gerade wenn er Heel is. Freue mich schon auf seine Matches mit Sami"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: GoToSleepwrote on 05.02.2015:[10.0] "DER beste Indy Wrestler der letzten 5 Jahre. Wenn man einem nicht Wrestling Fan ein Bild von Kevin Steen zeigst, er wird nie darauf kommen das Steen eine Indy Legende ist. Aber genau deshalb ist er so besonders. Trotz dem Bauch ist er im Ring sehr beweglich und er kann einen guten Highflyer mit Powermoves abgeben, oder halt den Zerstörer, dem alles scheissegal ist und der jeden glaubhaft kaputt machen kann. Auch am Mic ist er überragend und er ist eigentlich immer unterhaltend also bitte WWE versaut es nicht, ihr habt da ein Ausnahmetalent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: RavenEffectwrote on 27.12.2014:[9.0] "YES. I've been really looking forward to rate Kevin Steen/Owens. I've been huge fan of his work ever since he became big name in indies like ROH or PWG, where his series of matches with El Generico himself were quite a memorable. And more memorable was the impact he made when debuted at NXT Revolution by powerbombing Sami Zayn/El Generico. He will be great addition to NXT roster, and even better in couple of years, when he gets called up to main roster, as his potential is off the charts."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: zackwoowoowooryderwrote on 14.12.2014:[10.0] "Einfach super der Typ richtig stark im Ring, ich muss gestehen ich habe noch nie einen seiner Statur so durch den Ring fliegen sehen. Ausstrahlung hat er auch jede Menge und Mic-Fähigkeiten liegen auch weit, weit über dem Durchschnitt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Viper99wrote on 14.12.2014:[10.0] "Der Kerl kann trotz seiner Statur alles! Er kann High Flying spots zeigen, er kann Brawlen oder auch ein sehr sehr Technisch hochwertiges Match zeigen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: eldenaaaaawrote on 01.09.2014:[10.0] "When Steve Austin endorses a guy, you should pay attention. I first saw Kevin Steen wrestle for Jersey All-Pro back in 2004 and I was impressed. Fast forward nine years and “Mr. Wrestling” has evolved into the total package. While he might not fit the typical physical specifications for a wrestling…who the hell cares. Steen has a great, high-impact style that brings me back to the days of ECW when Joey Style would scream “OH MY GOD” after a big move. Steen probably has at least 15 OMG moves in his arsenal. His personality in the ring as a smart-mouthed, brutal son of a bitch is such a breathe of fresh air in today’s scene as so many guys seem like faceless high spot machines. On the mic and out of the ring, Steen has this charming, funny and enthralling personality. If you’ve never watched his “Weekend Escapades” on YouTube, check it out and you’ll see exactly what I mean. Mark my words if the WWE is smart and signs this guy, he’ll be printing money for them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: HottRoddTXwrote on 20.07.2014:[10.0] "Extremely agile for his size. Hope WWE uses Steen properly, but what am I'm saying? Of course WWE is gonna have him be used poorly. Hope not."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Nino96wrote on 21.06.2014:[10.0] "Kevin Steen! Meiner Meinung nach aktuell einer der Besten der Welt! Seine In-Ring Fähigkeiten sind unfassbar gut. Wenn jemand seiner Statur die Ringecke aufsucht um einen 450Splash zu performen, dann bekommt man nicht nur Gänsehaut, sondern auch einen einmaligen Gesichtsausdruck. Mic-Skills und Selling sind auch klare 9-10 Punkte! Nun wagt er sich den riskanten Schritt der WWE beizutreten. Aber im Gesamtpaket sind es mehr als 10 Punkte! KILL STEEN KILL!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MrJamesssswrote on 05.06.2014:[9.0] "Brutal and charismatic, he's definitively my favorite wrestler in US indies. Sure he's fat, but his monstrous attitude makes him entertaining. His "love and hate" relationship with El Generico brought very good moments in the business."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: rockcitizenwrote on 05.06.2014:[10.0] "Genialer Wrestler. Obwohl man es ihm athletisch vielleicht auf den ersten Blick nicht zutraut, ist er für mich ein Genie im Ring. Dazu seine tollen Entertainment-Skills; was will man mehr?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Moose Nuggetwrote on 15.05.2014:[10.0] "There's a reason that Steen currently is one of the highest paid indy workers right now. He's very entertaining inside and outside the ring. He's one of the best brawlers there are today. And he flys very well for a guy his size."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kevin Steenwrote on 06.05.2014:[10.0] "Ringfähigkeiten sind klare 10Punkte. Es ist Wahnsinn, was Kevin Steen alles drauf hat im Ring. Die Matches mit El Generico muss man gesehen haben. Aber allgemein immer gute Matches in ROH und sowieso PWG. Micfähigkeiten und Charisma sind aber mindestens genauso gut. Also es ist fast egal was er macht oder was er sagt; es ist immer unterhaltsam und gut. Man merkt das aber auch in den Matches wie er auf die Fans eingeht und eigentlich immer den richtigen Spruch oder Aktion auf Lager hat. "The best damn thing in Pro Wrestling Today""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Chris1201wrote on 27.04.2014:[10.0] "Einer der besten Wrestler der Welt! Das Aushängeschild von Ring of Honor!  Super In Ring Fähigkeiten, extrem viel Charisma und gute Mic Fähigkeiten! Schade, dass er bei vielen Ligen "nur" noch in der Upper Midcard eingesetzt wird, aber auch da ist er immer in den Showstealing-Matches vertreten. Finde seine Weekend Escapades auf YouTube auch sehr interessant, denn da bekommt man nicht nur einen Einblick auf das Indy Wrestling in den USA sondern auch auf Kevin Steen privat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: sopmacwrote on 16.03.2014:[10.0] "He's arguably the best in the business right now. No one has has versatility other than maybe CM Punk and Daniel Bryan. He can wrestle a technical wizard hold for hold, just as easy as bleed like Mick Foley and put someone through a table. Steen can talk like Raven and Punk, and also be just as stiff as Benoit and Regal. He is simply put, in my eyes, the best in the business right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: EvilPriestwrote on 10.03.2014:[10.0] "What can I say ? Steen is violent, technical and intense. He can fly sometimes and he's a hardcore match beast. And he often makes me laugh in PWG.  Perfect"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kiki EGwrote on 02.03.2014:[10.0] "Starker Allrounder kann im Ring immer wieder überraschen, sei es in seinen Hardcore-Matches wo er immer mal wieder so einiges raushaut oder auch seine Beweglichkeit im Ring. Am Mic sowieso überragend, ein gutes Komplettpaket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The8someCwrote on 29.01.2014:[9.0] "Sehr nahe an der perfektion, aber ihm fehlt die erfahrung bei einer der beiden großen Ligen wünsche wirklich ihn mal bei TNA oder WWE zu sehen dann aber im Main Event."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ShawnDravenwrote on 09.01.2014:[10.0] "The absolute best in the indies today. It will truly be a shame if his "look" keeps him out of the WWE, because that's really the only thing that could stand in his way of getting him there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ADoublewrote on 29.11.2013:[10.0] "One of the absolute best on the indy scene today. Steen is an extremely versatile and talented individual, he can cut amazing promos, he can do great comedy, and he's very agile for a man of his size. One of the only negatives against Steen is his shape, and as it does not seem to hinder his in-ring performance, I don't hold that against him very strongly."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ProRedstonewrote on 02.11.2013:[10.0] "Einer der besten wenn nicht der beste Wrestler der Welt. Er ist einfach Steen ..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BlueDiamondwrote on 23.10.2013:[10.0] "Für seine körperlichen Attribute ist er ein Ausnahmewrestler. Er kann eine Menge im Ring, hat Charisma und überzeugte in der Generico-Fehde und in seiner SCUM Zeit vollkommen. Bei der wXw habe ich ihn auch als Mensch zu schätzen gelernt, netter Kerl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TheMemoryMakerwrote on 11.10.2013:[10.0] "What can you say about Kevin Steen but wow? Over the past half-decade, he's gone from one of the best tag team wrestlers in the world to one of the best all-around performers you'll ever see. His weight will likely hold him back from reaching a bigger promotion, but when it comes down to it, you can count on one hand the amount of wrestlers who have the skill set he possesses."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ImACMPunkGuywrote on 28.08.2013:[9.0] "Der Junge hat echt was auf dem Kasten und ist für seine Gewichtsklasse der beste Techniker. Nicht einmal ein Bam Bam oder Vader können mit ihm in Sachen Technik das Wasser reichen. Mal schauen was aus ihm in den nächsten Jahren wird."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Weskerwrote on 30.04.2013:[10.0] "Wahnsinnige Moves. Tolles Charisma. Ausstrahlung. Schöne Interaktionen mit dem Publikum. Allrounder. Ich bin einfach begeistert von dem Typen. Mehr kann ich dazu nicht sagen. Muss man in Aktion gesehen haben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JuliTheCage87wrote on 12.03.2013:[10.0] "Ein wahres Multitalent! Techniker, HighFlyer, Powerhouse, hier werden die unterschiedlichsten Wrestlingstile in einem Mann gebündelt. Im Ring einfach unschlagbar, für mich gibt's keinen besseren!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: That 70s Blokewrote on 26.02.2013:[10.0] "This fat-ass might be one of the most talented wrestlers today!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: AirStarwrote on 28.01.2013:[10.0] "Für mich nicht nur einer der top ten Wrestler im Moment auf der Welt sondern auch am Mic eine Klasse für sich. Er geht in seiner Rolle voll und ganz auf und spielt diese so grossartig wie schon lange niemand mehr. Es ist einfach fast immer alles Perfekt. Die Mimik, die Gestik, das ganze Erscheinungsbild passt einfach sehr gut zusammen und stärk seinen Kompletten Charakter. Für mich ist er zudem einer der besten Heels Momentan im Buisness."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Final Countdownwrote on 17.12.2012:[10.0] "He may not have the "look" that WWE is looking for, but I don't think there is a more complete wrestler in the world today than Kevin Steen.  His rivalry with El Generico is legendary, and he has been the biggest thing on the indies for a year or more."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TAWPTierJustinwrote on 16.12.2012:[10.0] "Not only is Kevin Steen a tremendous talent in the ring, but he's tremendously gifted on the mic and as a wrestling character as well! It's a no-brainer and there's no question why he's been ROH world champion for a long period of time! Because not only can he without a doubt get it done in the ring, but as a character, what makes you take so much notice of him is the fact that he can greatly pull off a wide variety of emotions within him! He can be humorous, he can get under your skin by saying disgusting comments, he can release so many emotions when cutting a worked shoot promo like no other, and hell he can be a complete psychopath as well and that combined with his amazing mic work, it obviously clicks and that creates in his case, a perfect bad guy on TV! Kevin Steen rules!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Cobrawrote on 15.12.2012:"It's incredible just how much Kevin looks just like my younger brother Kevin. It's scary."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Steenericowrote on 15.11.2012:[10.0] "Was gibt es hier noch groß zu sagen? Für mich ist Steen aktuell das beste, was das Wrestling zu bieten hat. Es mag zwar im Ring talentiertere geben, aber vom Gesamtpaket kann Steen keiner übertrumpfen. Im Ring trotz seiner Statur toll, seine Interaktion mit den Fans großartig und seine Promos jedesmal aufs neue hervorragend. Das können nicht viele Wrestler von sich behaupten. Er ist völlig zurecht aktuell ROH World Champion und PWG World Champion und ich hoffe, dass er beide Titel noch einige Zeit halten wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wolkywrote on 20.09.2012:[9.0] "Steen kann für einen Mann seiner Physik echt viel im Ring und in Sachen Charisma ist er auch Spitze. Storylinemässig einer der mit Abstand besten in den USA im Moment aber leider bauen seine Matches immer mehr ab. Vor 3, 4 Jahren hat man da noch viel mehr geboten bekommen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Martyrswrote on 17.09.2012:[10.0] "Für mich derzeit der interessanteste Mann im Indy-Zirkus. Intensiv im Ring sowohl als Brawler als auch als Techniker und gute Mic-Skills. Da kann ich nur hoffen, dass er ROH noch lange erhalten bleibt und nicht doch nach Stamford geht (wobei er Vince sowieso zu "fett" sein dürfte)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Leonewrote on 27.08.2012:[10.0] "Man, this guy has come a long way from the first time I saw him in CZW back in 2004 in a 4 way dance that included El Generico.  While I saw the match as an opportunity to see a Tournament of Death stand-out called Sexxxy Eddy, Steen really stood out in the match, performing incredibly agile moves along with powerful suplexes and devastating 'drivers, and yet he looked more like an overweight fan than a wrestler (By McMahon's standards).  Along with being a hard-hitting and dynamic wrestler, he has demonstrated excellent mic skills along with a great, but also incredibly twisted sense of humour, good enough to grab the attention of The Rock on twitter.  He has become one of the best, if not, the best tweener to come out in years, and he has a presence to him that any main event scene needs right now.  A complete wrestling package that no promo photo could demonstrate."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Fabi89wrote on 30.05.2012:[10.0] "Steen ist für mich aktuell eines der interessantesten Gesamtpakete im Wrestling-Geschäft. Sehr ansehnlich im Ring, überragend am Mic, stark in der Charakterdarstellung, hervorragend im Gespür für die Arbeit mit den Fans und grandios in Sachen Improvisation. Kurzum, der Mann ist Gold wert und aktuell das verdiente Aushängeschild von ROH."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Damon Strikerwrote on 28.05.2012:[10.0] "Im Ring wie am Mikro eine Wucht! Er strahlt eine unglaubliche Intensität und ist glaubwürdig, wie sonst nur wenige. Gehört mit zum Besten, was momentan die Ringe dieser Welt unsicher macht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: jchiofalwrote on 22.05.2012:[10.0] "Kevin Steen is at the top of his game and the peak of his career. He is an excellent wrestler, with such power and agility. His promos are some of the best today. All together he is a fantastic competitor."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: tnachrissukowrote on 21.05.2012:[9.0] "Seine Promo`s sind gerade auf ein niveau das ist echt klasse. Als (kann man das sagen) "Bigman" kann er Moves das kam man nicht glaube Kevin Steen das beste gerade was Roh hat. Er ist scheisse gut wenn er Heel ist aber auch wenn er Face ist einfach Klasse der Man."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Awesome Arieswrote on 20.05.2012:[10.0] "Für mich zweifelsfrei DER beste Worker/Entertainer bei ROH. Sein Micwork ist fantastisch, mich fasziniert immer wieder seine Interaktion mit der Crowd. Im Ring ist er nicht der Beste, jedoch macht er das durch sein unglaublich breit gefächertes sowie abwechslungsreiches Moveset wieder wett. Ich hoffe wirklich, dass Steen's verdiente Regentschaft als ROH World Champion sehr lange geht, weil ich ihm es einfach gönne. Alles in allem ein fantastischer Worker, der von mir an dieser Stelle die Höchstpunktzahl von 10 Punkten bekommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mizisawesomewrote on 19.05.2012:[5.0] "Ich bin einfach kein Fan von ihm. Ich möchte ihm nicht vorwerfen ein schlechter Wrestler zu sein. Jedoch fällt es mir oft schwer zu wissen, ob er heel oder face ist. Und genau da liegt das Problem. Sowas ist essenziell."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Rated R Champwrote on 19.05.2012:[10.0] "Kevin Steen ist in meinen Augen das absolut Beste was man im Wrestling findet. Er mag nicht grade die Statur eines Athleten haben und im Ring gibt es sicher Bessere. ABER, zu einen ist Steen auch im Ring wirklich gut und darüber hinaus ist einfach alles was dieser Mann macht so verdammt großartig. Es gibt aktuell keinen interessanteren Charakter als Steen und wenn er zum Ring kommt weiß man einfach, dass man hervorragend unterhalten wird, was dazu führt, dass sich bei mir wenn ich sein Theme höre einfach kindliche Freude breit macht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: thereisonlyonewrote on 18.05.2012:[10.0] "Der Junge war mir von Anfang an sympatisch. Dazu hat er Skills im Ring, wie einer von seinem Kaliber normalerweise nicht hat. Verdienter Champion!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Franchise Playerwrote on 07.05.2012:[10.0] "Ich packe ja höchst selten den 10er aus (bei Wrestlern wird dies nun das 3. Mal) aber Kevin Steen rockt einfach nur. Seine Leistungen im Ring sind hundert mal besser als das was man sich von einem Worker seiner Statur erwarten würde. Charisma und Mikrophon Fähigkeiten ebenfalls sehr fortgeschritten. Zudem versteht er es einfach verdammt gut mit dem Publikum zu interagieren. Kill Steen Kill!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: bentexwrote on 22.04.2012:[10.0] "Unglaublich starke Promoskills! Er ist am Micro absolut auf einem Level mit CM Punk und Chris Jericho. Im Ring ist er trotz seines Körpergewichtes sehr Agil unterwegs und zeigt auch das er da viel drauf hat. Star von ROH!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Vanniwrote on 08.03.2012:[9.0] "Verdammt starker Worker. Vielleicht nicht unbedingt der technische Wrestler vor dem Herrn, aber das muss er auch gar nicht sein. Er hat so eine große Ausstrahlung, ein starkes Micwork und eine tolle Interaktion mit den Fans. Macht sich bei ROH in seiner Rolle als Einzelkämpfer und Störenfried gegen alles absolut großartig und ist auch jemand, den ich mir sehr sehr gut im Mainstream-Wrestling vorstellen könnte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: 7TheEwrote on 07.03.2012:[10.0] "Seit 2009 der Beste Heel im Mainstream Buisness, er ist Clever, er ist gut am Mike und er ist verdammt gut im Ring.  Viele trauen im auf den ersten Blick nichts zu, aber wer ihn einmal in Aktion gesehen hat denket komplett anders und er kann verdammt gut emotionen ziehen.  Keiner ist so gut als Heel wie er, verdammt nochmal er verdient die 10 Punkte vollkommen, nächster RoH World Champ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: cookie monsterwrote on 24.12.2011:[10.0] "Nach den Final Battle, total fucking awesome! Vorallem "thank you ROH" gott nochmal ein Ende vom FB was krass war^^ Und die Promos sind göttlich, das Match war göttlich und ich freue mich das er zurück ist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Nguyen2103wrote on 17.12.2011:[8.0] "8 Punkte für Ihn. Klasse Technick und kann auch Brawlen wie ein Verrückter, das einzige was mich stört ist sein Bauch ! Irgendwie bläht sich sein Bauch, Jahr für Jahr und sieht einfach nicht gut aus bei Steen. Der Junge sollte mal abnehmen"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MotorCitywrote on 05.08.2011:[10.0] "Kevin Steen ist atemberaubend! Bei Pro Wrestling Guerrilla sehe ich ihn immernoch am liebsten! Steen kann der lustige aber auch der ernste sein! Super Gesamtpaket..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: smokiewrote on 19.12.2010:[9.0] "Ich verfolge Indy Wrestling nicht so wirklich aktiv aber Kevin Steen hat mich wirklich beeindruck was ich so von ihm gesehen habe. Er ist ein genialer Heel der aber doch irgendwie sympatisch rüberkommt. Er hat Charisma, ist in einem der besten Tage Teams today, überzeugt aber auch im Singles Bereich. Außerdem ist er noch sehr jung da kommt bestimmt noch viel. Ich würd ihm ja eine 1 geben aber da ich wie gesagt noch nich ganz so viel von ihm gesehen hab ist es erstmal eine 2 das kann sich aber noch ändern"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Homicide187wrote on 28.10.2010:[9.0] "Ich sehe Steen immer gerne. Dabei ist es egal in welcher Liga und eigentlich auch mit welchem Gegner. Der man ist sowas von geil am Mikro, ich könnte mich fast immer weghauen. Auf der anderen Seite kann er aber auch tot ernste Reden halten wo einem die Spucke wegbleibt. Und im Ring ist er auch großartig, vor allem da er ja doch einen "kleinen" Bauch hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Crown Jewelwrote on 13.08.2010:[9.0] "Hat ein ungliaubliches Charisma und ist am Mic imo das stärkste, was aktuell im Indyzirkus zu finden ist. Im Ring gefällt er mir auch, besonders an ihm ist wohl, dass er Dinge tut, welche man ihm bei seiner Statur garnicht zu traut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: jjchiofalowrote on 30.07.2010:[10.0] "Steen is one of the best wrestlers today. A man with his size and strength moves so amazingly well. He has the agility of a cruiserweight with the power and size of a heavyweight. Steen is honestly the best american-born wrestler of the new generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Sandmannwrote on 04.05.2010:[9.0] "Kevin Steen trifft genau meinen Geschmack als Wrestler. Ein bulliger Typ aber mit guten technischen Vorraussetzungen. Dazu im Team mit El Generico einfach Gold wert. Bin schon sehr gespannt wie seine Fehde mit Generico jetzt weitergeht und was er und Corino so reißen werden. Als Einzelwrestler auch Gold wert mit bisher wirklich guten Matches. Freue mich sehr auf eine Zukunft"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ZuluBunsenwrote on 04.05.2010:[10.0] "Der Kerl ist echt unglaublich. Ein Powerhouse und trotzdem auch in der Luft spektakulär. Ein absoluter Allrounder und hoffentlich noch zu Grossem bestimmt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: kingbogwrote on 27.02.2010:[10.0] "Wirklich sehr beeindruckender Wrestler. Alleine richtig gut. Zusammen mit El Generico noch besser. Nicht umsonst "Mr. Wrestling"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: RoHSupporterwrote on 24.01.2010:[10.0] "Mein absoluter Fav. bei RoH. Er hat einfach alles was es braucht mal ein ganz großer zu werden. Sein Heel-Turn war jetzt wichtig das er sich jetzt endlich von El Generico trennt und jetzt vielleicht mal einen Title-Shot zu bekommen, fakt ist das er einer der besten ist und deshalb eine 10 von mir bekommt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ShakDragoonwrote on 19.01.2010:[8.0] "Guter Wrestler und an der Seite El Genericos einfach unschlagbar! Bin sehr gespannt, wie es nach seinem neuerlichen Heelturn mit ihm weiter geht. Fest steht: Ich werde Steenerico vermissen!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: DJ MaSchwrote on 26.11.2009:[9.0] "Steen ist in Sachen Charisma und Mic-Work schon zur Indy Elite zu zählen und auch im Ring ist er für seine Statur ein Ausnahmekönner. Der Mann hat definitiv eine große Zukunft vor sich!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Eddiewrote on 08.06.2009:[9.0] "Der bessere des Steenerico Gespanns, insgesamt sehr gut im Ring, mir gefällt er, 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mick Funkwrote on 12.05.2009:[8.0] "Im fehlt absolut der Look für eine große Karriere, trotzdem einer meiner absoluten Lieblinge im Indy Bereich."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mediwrote on 23.04.2009:[9.0] "Kevin Steen hat für mich eine der besten Entwicklungen im Laufe seiner ROH-Karriere durchgemacht und viel zu seinen (zu Haufe vorhandenen) Moves und Skills noch dazugelent. Im Tag-Team mit El Generico passte er wie die Faust auf's Auge und es würde mich nicht wundern, sollte er eines Tages das ganz große Gold bei ROH halten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ARIZAwrote on 11.04.2009:[8.0] "Guter und unterhaltsamer Wrestler der trotz seiner Statur einige Moves zeigt, die man nicht von im erwartet."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: 150pwrote on 14.12.2008:[9.0] "Wird immer besser, am Mic enorm stark, großartiges Charisma und auch im Ring äußerst vielseitig. Fast die Höchswertung."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TG Styleswrote on 01.10.2008:[10.0] "Ein großartiger Wrestler, der jeden Stil mitgehen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Rob the bobwrote on 26.07.2008:[9.0] "Steen is einfach ne Maschiene. Er ist zu fett.. na und... der Mann hats einfach Drauf. Da macht die Wampe auch nix. Göttliche Mic und inring Skills. Macht mir spaß ihm Zuzusehen. Das erste mal vs Super Dragon richtig aufgefallen und da war er Genial. Im TT mit Generico im moment Aufstrebend und Hoffentlich bald bei ROH auch im singles Rennen mit dabei."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Eaterwrote on 15.06.2008:[8.0] "Hoffnungsvolles junges Talent, das genügend Potential mitbringt, um noch einiges zu erreichen. Stellt einen überzeugenden Bully dar und hebt sich auf eine Weise, die ich nicht wirklich erklären kann, von der breiten Masse ab."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Rob Van Duesenschrauberwrote on 15.05.2008:[8.0] "So verdammt unterhaltsam, Steen gehört zu meinen absoluten Favoriten im US-Indy Bereich."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Baron-Bwrote on 15.05.2008:[9.0] "Wenn ich Kevin Steen sehe, denke ich immer an eine typisch amerikanische Schule, in der ein typisch amerikanischer Schul-Kleiderschrank typisch amerikanische Mitschüler-Gesichter den ganzen Tag über in irgendwelchen Kloschüsseln versenkt. Er spielt seine Rolle als leicht dicklicher Rotzlöffel derart fies perfekt, dass man fast darüber nachdenkt, ihm böse zu sein. Darüber hinaus ist er im Ring richtig gut. Zusammen mit seinem hyperaktiven Aushilfs-Mexikaner bildet er eines der besten Tag Teams weltweit und auch als Einzelwrestler weiss er durchaus zu überzeugen. Zudem ist er trotz seiner Masse extrem beweglich und schreckt auch vor dem einen oder anderen recht heftigen Bump nicht zurück. Auch für ihn gilt. Bitte noch viel mehr und bleib nach Möglichkeit gesund ..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Brooklyn Brawlerwrote on 15.05.2008:[10.0] "Im Ring ein absoluter Könner und gerade wegen seines Körperbaus merkt man es erst recht, am Mic ein Hammer und sowohl as Heel als auch als Tweener-Face einfach genial :) Und auch wenn er noch potential hat, er kriegt schon vorab die 1 ;) Achja und die Entrance Musik (und ich meine damit Tear Away^^) ist super gewählt :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Matt Hardywrote on 09.05.2008:[10.0] "Absolutes Total Package. Beherrscht nahezu jeden Stil, ist unglaublich charismatisch und überzeugt auch am Mic. Kevin Steen rockt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: wXw Fanwrote on 07.05.2008:[10.0] "Gottjunge, Charisma top, im Ring top, am Mic top. Der Junge rockt einfach."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Cactus Jackwrote on 04.05.2008:[9.0] "Viel Charisma, sehr gutes MicWork und Top In Ring Skills. Er hat eigentlich alles was ein perfekter Wrestler braucht, nur der Körper spielt da nicht ganz mit:D. Aber schaden tut es seinem Können nicht und daher sind 9 Punkte sicher angebracht. Zur 10 reicht es noch nicht ganz, aber er ist ja noch sehr jung"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kaffoe 666wrote on 24.03.2008:[8.0] "Einach Gold der Junge, egal ob am Mic oder im Ring. Mit Steen kann man nichts verkehrt machen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Instant Classicwrote on 13.03.2008:[6.0] "Scheint durchaus talentiert zu sein, aber überzeugt mich nicht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Aaronwrote on 12.03.2008:[8.0] "Ein jetzt schon sehr guter Worker mit viel viel Potenzial nach oben! Kann in zwei Jahren der wichtigste Indy Wrestler überhaupt sein, wenn er so weitermacht wie bisher! Zudem noch sehr sehr jung!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Joeevil123wrote on 19.02.2008:[8.0] "Sehr gut im Ring , gutes Micwork aber auch noch ausbaufähig. Deshalb gibts ne 2 , ist aber sicherlich einer der kommenden Stars von RoH."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: AnFuwrote on 26.01.2008:[6.0] "Ein wirklich guter Heel, sollte er mich irgendwann richtig überzeugen, gibts eine Aufwertung!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: GothicBearwrote on 17.01.2008:[10.0] "War mir früher sehr unsympathisch, hat sich allerdings 2007 durch tolle Leistungen bei ROH und sein göttliches Heel-Charisma zu einem meiner absoluten Faves entwickelt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: D-Stylewrote on 17.01.2008:[8.0] "Steen im Ring ist sehr gut; er bietet Charisma, Innovation und vor allem sehr "echtes" Wrestling. Ich sehe ihn gerne, vor allem weil er auch mal Humor zeigt ;) Die 2"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Showstopperwrote on 12.01.2008:[8.0] "Es gibt nur einen Grund, warum ich Steen keine Eins gebe: ich denke, dass er sich immer noch steigern kann. Von den Skills her klasse, charismatisch ohne Ende und sowohl als Heel als auch als Face sehr unterhaltsam. Wenn er von Verletzungen verschont bleibt und sich weiterentwickeln kann, dann dürfte er zu einem grossen Namen im Business werden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Doerbenwrote on 05.01.2008:[8.0] "Herausragender Wrestler. Zusammen mit Generico einfach nur göttlich, alleine auch sehr stark. Kann mich eigentlich immer überzeugen. Hat sich sehr gut entwickelt und ist gerade als Heel mage stark. Ein kommender RoH Main Eventer - 8 Punkte nur deshalb, weil ich denke das er NOCH mehr aus sich rausholen kann und wohl auch wird=)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Hunter2007wrote on 31.12.2007:[8.0] "Hat eine interessante Art sich selbst zu pushen. Aber trotz seiner Fähigkeiten reicht es nicht für eine 1 aus1."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Rancorwrote on 17.12.2007:[8.0] "Hat mir bei den ROH PPVs bisher wirklich gut gefallen. Hat sich in den letzten Jahren stark entwickelt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: donnerwrote on 21.11.2007:[10.0] "Am Mic und im Ring sehr überzeugend. Wenn man mal seine Masse und sein Move Potenzial mit anderen Wrestlern vergleicht, kann man kaum etwas anderes als eine 10 geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: aulitwrote on 08.11.2007:[10.0] "Ist er schon der beste Heel im Indybereich oder wird er es erst gerade? Keine Frage, Kevin Steen hat alles, was es zu einem Topheel irgendwo auf dieser Welt braucht. Vorallem beherrscht er die Heel-Basics inzwischen so gut, dass er sich auf kleine aber feine Details konzentrieren kann. Einfach Top, der Mann!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Carlito Cenawrote on 16.10.2007:[8.0] "Der Mann macht derzeit ein erstaunliche Entwicklung durch, wird immer besser. Witzig ist nur, dass er bei RoH immer wie ein Riese rüberkommt, dabei schafft er nicht einmal die 1, 80 m."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Sabu316wrote on 09.10.2007:[8.0] "Live ist er göttlich (da er einfach genial mit den Fans spielt) aund mittlerweile kann er auch auf DVD überzeugen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Baszdmegwrote on 27.09.2007:[10.0] "Allroundpaket - kann alles außer... nein, er kann alles. ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: nacho83wrote on 07.08.2007:[10.0] "Ein richtiges Komplettpaket: Kann auf dem Boden begeistern und für seine Gewichtsklasse beeindruckende Aktionen vom Seil zeigen. Dazu auch noch sehr gute Mic-Skills. Grossartig!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Parvexwrote on 23.07.2007:[8.0] "Für mich lange Zeit "Overrated", aber er hat es geschafft mich von seinen Fähigkeiten zu überzeugen. Ein kleines Bisschen fehlt aber noch zur 1, aber er hat die Zeit, um dorthin zu kommen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Moonbloodwrote on 02.07.2007:[8.0] "Steen ist einfach verdammt großartig und steht nun endlich auch kurz vor dem verdienten Durchbruch bei Ring Of Honor. Auch wenn er nicht immer so aussieht: Wenn man ihn einfach machen läßt, können nur gute Sachen 'bei rauskommen. Mit dem Humor und seiner gesamten Art kann genauso wenig schiefgehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Ähnlich wie Danielson hat Charisma, Mic Work & Ring Skills. Im Thema Charisma & Mic Work steht er dem American Dragon in Nichts nach, nur im Ring kommt er nicht an Danielson ran, aber wer schafft das schon ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Hirnklopswrote on 24.06.2007:[8.0] ""One, Two, Test, Test, Test, Dick, Piss, Shit, Ass, Pussy. " Kevin Steen, ick liebe dir und deine manchmal drollig doofe Art im Ring :)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ValiumSickwrote on 24.06.2007:[10.0] "Kevin Steen ist Gott. Sehr gute Tech-Skills, charismatisch und hat göttliches Mic Work!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Nolan Greenwrote on 07.02.2025:[10.0] "He may not be as good as Bryan Danielson, but he's still a perfect wrestler. Great technical wrestler, good punches, hell of a lariat, and could take some disgusting bumps. He's also the best commentator on AEW as his hate for Danielson is perfect. Even if he's stuck on Collision with Useless Schiovani, he makes the show easier to listen to. Even after retiring for 13 years and coming back, the few matches he's had so far are decent and he looks better than someone like Okada. One of the best British wrestlers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: JediSaiyanMaster1203wrote on 21.09.2024:[10.0] "Whether as a wrestler or commentator, Nigel McGuinness is a bonified 10 for me. As a wrestler? He's an amazing wrestler who has taken part in some of the most iconic and greatest matches to ever have been recorded in pro wrestling, not just in ROH or even TNA, and was a great champion when given the belt (world title or not). His bouts with Danielson are obviously great, but people often forget he's had other solid bouts with guys like Austin Aries, Samoa Joe, Kevin Steen, Tyler Black, etc. He has a ton of solid moves, his most famous being his version of the "rebound clothesline", one of the best lariats of all time and does it so well. Very hard hitting style and shows he can take a ton abuse like back-to-back headbutts with wrestlers and even ringposts (Idk if that suicide dive to Nigel from Aries to the guard rail would count as a headbutt), doing it for the love of the sport LOL! As a commentator, he's one of the RARE few modern heel commentators who's very entertaining, coming up with witty remarks and finding hilarious ways to talk shit about the babyfaces while not burying them. Finding some kind of middle ground of being a total "hater" while putting over whoever he trashes. Overall, Nigel is a great worker in the business who deserved so much more than he got, hope AEW gives him a renaissance run that he deserves, he's been out for too long and has shown that he's still got it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: genericusernamewrote on 21.09.2024:[10.0] "Always been a fantastic color commentator but I'm glad he's finally getting his flowers on a bigger stage as a professional wrestler. Nigel has accomplished so much in his career as a commentator and a wrestler, and has such a good backlog of matches (even with a 13 year break) that anything he does in this return to the ring is just the icing on top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: OctagonEnjoyerwrote on 29.08.2024:[8.0] "For every amazing wrestler, there's always someone attached to their careers who never got the same amount of accolades as them. While Hogan is not amazing by a fucking landslide, Macho Man never got the same amount as Hogan. Kawada never got the same amount as Misawa, only in the 2000s when almost the entire roster left for NOAH. Despite starting up at the same time and both working IWA-MS, Chris Hero never got the same amount of success CM Punk did in both WWE & ROH. And Nigel McGuinness never got the same amount of success Bryan Danielson had. This is sad, because Nigel was right behind Bryan as being one of the best wrestlers in the indies, in ROH, in the 2000s, and of all time. And I'm not even talking about just the Danielson matches. The legendary 2007 one with Austin Aries, the Tyler Black match that started his Black's rise, the Jimmy Rave stuff, and even the Morishima and Joe matches that don't get enough attention. While Bryan sacrificed his body and got a WM Main Event and world championships, Nigel did it and got treated like shit in TNA as a result of you know who joining the company, and hepatitis. He was a great wrestler with some of the nastiest lariat ever and a top 10 cutter in the Tower of London. And he deserves his flowers. Also not half bad of a commentator too."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Blakeiokwrote on 26.08.2024:[10.0] "Once you wrestle, you never lose it. Nigel proved that he can still wrestle at All In and performed better than everyone expected, a 48 year old moving like he's still in his prime is insane, this man is incredibly talented. I have also seen his early career and it was brilliant. His commentary is entertaining, Nigel has it all."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Willie 19200wrote on 10.08.2024:[10.0] "Terrific wrestler and probably my favorite commentator of all time. His ROH Pure title reign is an awesome reign with some great matches not to mention his crazy mic skills, oozing charisma, and his real funny commentating one liners. I really enjoyed his feud with Danielson and he always seems to be one of my favorite character in wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Loki Hipster Godwrote on 24.07.2024:[10.0] "10/10 as a wrestler and 10/10 as a commentator. As a wrestler, he was the biggest 'what if? ' in the modern era, a guy who could have been, and SHOULD have been, a top star in any major wrestling company. Not only did he regularly put on classic matches, but he also had charisma, a unique look, size, and mic skills that many on the indies lacked at that time. As a commentator, he's currently my favorite to listen to. He provides valuable insight, while also bringing levity and entertainment to the proceedings. His current heel commentary schtick reminds me so much of guys like Jesse Ventura and Bobby Heenan, and it's a style of commentary that has been sorely missed over the years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ImWrestlingAndSoCanUwrote on 16.06.2024:"Not dropping a rating as I haven't seen his matches; but as a commentator, 95% of his AEW heel commentary is the most inane contrarian WWE heel commentary that's ever been at AEW and it extremely distracts and detracts from the quality of every match in which he calls and has staked his personal claim. When only Tony Schiavone is there to deal with him it is a nightmare desk rotation because Tony has no control whatsoever. Someone needs to figure out who to pair him with that will actually cool him off properly or just take him off the desk wholesale."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Jaedynr5wrote on 12.03.2024:[10.0] "one of the greatest wrestlers in the 2000s who transitioned into one of the best commentators of the 2010s and 2020s, most of his matches were at least good to great, watch his feuds with danielson and angle specifically, along with the matches with kenta, tyler black, aries and the like, and on the commentator end, he's the best variation on the "heel commentator" since the king in my opinion, he never fails to be hilarious, analytical with his years of knowledge in the ring itself, and most of all, great at getting a heel in ring over, from christian cage and the patriarchy to timeless toni storm, he was also a great authority figure in like 2016 ring of honor"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Neon Aussiewrote on 07.03.2024:[7.0] "Solid in ring performer with a number of memorable matches who's career was tragically cut short by unfortunate circumstances. I thought there was a cure now, so Ive wondered why he hasnt come back. Regardless he's made an incredible transition into the role of commentator, and has become one of the best in the business. One of those who potential was cut short by fate and never got to live up to his destiny."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: PunkPariahwrote on 29.01.2024:[10.0] "Dude every time I watch Nigel work Im blown away. And every time he creeps his way up my all time list. Half his moves had the crowd cheering before he even hit it. He was over as fuck everywhere and could work anyone and get a good match. His matches of course with Bryan are stuff of legend and it's a real shame his career ended when it did because the mark he could've left on the world had the chance to be even more legendary. But a lot of people overlook his stuff with Jimmy Rave, Marufuji, and Angle. All of whom he had absolute bangers with. Truly an all time talent"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: AnthoTheKIDwrote on 15.10.2023:[10.0] "As a wrestler, Nigel McGuinness was one of the greats. His legacy in the ring is undeniable. As a commentator, he's one of the very best actually, dropping names, giving insight and all, that is pleasant to hear Nigel talk about the past, the present and the future of the wrestling industry."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: TheOneAndOnlyCactuswrote on 19.08.2023:[9.0] "Nigel McGuinness is one of those names that people think could have done a lot better in wrestling. And considering what he already did in ROH, that says a lot about his talent. One of the most supremely gifted technical wrestlers of his era, he was always a joy to see perform between those ropes, and he was a man who could go for a long, long time without feeling tiring to see. He was also pretty solid on the mic too, although I think his best work in this department came after he became a color commentator. Regardless, truly one of the greats from Great Britain."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: benh2wrote on 11.01.2023:[8.0] "Nigel was a brilliant wrestler. So technically accomplished and so smooth. I wasn't a fan of the 00's mindset of having long epic matches just for the sake of having long epic matches but Nigel was one of the very few guys that took it in his stride and made them captivating. His work with Danielson was some of the very best ever of that particular style."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Okaro143wrote on 08.05.2022:[10.0] "One of the most unfortunate and underated wrestler of all time. His 500+ reign as ROH World Champion was one of the best in ROH History and his feud with Daniel Bryan was legendary. He had a tryout with WWE and because he told the truth about his injuries, he didn't get signed. He went to TNA, had a great debut and a very short but good run. Unfortunately, his run was cut short when he was diagnosed with Hepatitis B. His career ended prematurely. I would have loved to see him in WWE as a Wrestler. Also, he is my favourite color commentator of all time. Mauro is my favourite play by play commentator; Mauro, Nigel and Beth had the best chemistry and were easily the best commentary team calling the spots at the height of NXT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: GriffinXwrote on 06.02.2022:[9.0] "Sadly life isn't fair. Because in fair world Nigel goes to WWE makes a bunch of money as a top main level guy ala Danielson, At the very least he's the guy that stands out as one of the best part of TNA/Impact maybe or gets some big chances in Japan. Maybe even now would be getting pushed in AEW. But his injures and other medical issues stopped that. Nigel was just so good in the ring he should of been a bigger deal but again life isn't fair."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: shinsaikyou enjoyerwrote on 16.09.2021:"Nigel McGuinness is, and always will be, the perfect wrestler. As far as a pure "inspiration to viewer" ratio, he has to be number one. Although his work has gone unsung for the vast majority of his career. Any wrestler who cares about their craft will have seen him, and will have learnt from him. He mastered the concept of a limited moveset, basically having a chop, a headbutt, and ninety lariat variations, and somehow never seeming repetitive. To call him a pioneer is basically arbitrary. He was one of the first huge European names on the US independent scene along with Claudio Castagnoli, and helped craft the technical style that literal hundreds of wrestlers today will utilize and unknowingly copy from Nigel himself. In a week when I can rate things, he's getting a 10. And he'll stay a 10 until this account is wiped off the face of the Earth."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Kungwrote on 25.07.2021:[9.0] "It is truly devastating that because his career was cut short right in his prime, Nigel McGuinness has been somewhat forgotten by all but only those who were lucky enough to see him during the 2000s. His matches against the likes of Austin Aries, Takeshi Morishima, Tyler Black, KENTA, Kevin Steen, and of course, Bryan Danielson helped to make Ring of Honor the bastion of brilliant wrestling in America at the time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Ma Stump Pullerwrote on 24.04.2021:[9.0] "I'm convinced Nigel was one of the best in the world in the 2000's. Extremely technical in his approach but was more than capable of mixing things up with brutal blows and some of the best lariats you'd ever see out of him, as well as having a actual personality and being amazing on the mic, being able to go from crowd-popping face to a full bastard of a heel, being able to work different aspects of his gimmick (his cheap trick days as ROH Pure Champion, willing to sink to any level to win his matches). He's a guy whom you could throw with anyone on the roster and get a good to fantastic match because he sold hard for them and didn't have a ego, always making sure to make his opponents look good. The only problem he really had was that he went arguably too hard in his matches, which ruined his body to the point where he was in pieces by his early 30's. It's also unknown if he would have been successful in the PG lights of WWE or if he'd be stuck on the lower card like Bryan but regardless, he was a sensational talent that could go with anyone regardless of style. Many have tried to take his hard-hitting style for themselves but none really ever got me invested like McGuinness. Probably one of the greatest UK wrestlers of all time and a serious contender for one of the best, period."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: mamboKENTAwrote on 23.02.2021:[9.0] "Charismatic, hard hitting British wrestler. Like KENTA and Marufuji, also from his generation, plenty of wrestlers have copied Nigel McGuinness. Excellent feud with Danielson, perhaps Danielson's greatest opponent. He ended Morishima's reign of terror (in a kayfabe manner) over the ROH roster. He was so well rounded as a wrestler, and he would have made an excellent addition to WWE's roster. Injuries caught up with him in the end. He's working as a commentator and is damn good at it, but I absolutely miss seeing him wrestle."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Mizzle Assault Antwrote on 04.11.2020:[2.0] "This guy hardly has any hyped matches that aren't with Danielson, which is like duh of course you had good matches with the best wrestler in the world, he does weird bad looking stuff like the headstand in the corner and the always awful rebound lariat, and he injured himself into early retirement and probably gave Danielson a brain lesion or two with his insistence to always include skull rattling headbutts in their matches even after Benoit's autopsy showed how it turns your brain to old cheese. I just don't get much out of Nigel."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: NastyYaffawrote on 03.06.2020:[10.0] "If I had to name my favorite wrestlers off the top of my head, Nigel would be way up there. Extremely charismatic & such a fantastic wrestler in his prime. When it comes to the all-time great, or my personal favorite I should say, title reigns in the business, his run w/ that ROH World Championship is one of the absolute top ones for me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: KyleEnjoysWrestlingwrote on 07.08.2019:[8.0] "One of the leaders of the ROH boom period. Nigel was a huge reason why ROH ever made a mark to begin with. He's an inspiration to so many of the young talent who are working today. A shame he never made it to WWE in the capacity that he was hoping for."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: RatingsMachinewrote on 19.10.2018:[8.0] "Nigel was a really good technical wrestler, but some of his stuff, like the rebound lariat, looked so damned hokey."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Wrestling Foreverwrote on 13.07.2017:[10.0] "Nigel war in seiner aktiven Zeit als Wrestler ein großartiger Techniker. Bei ROH so genial und seine Regentschaft als ROH World Champion die auch die zweilängste in der ROH Geschichte ist war genial. Dieses Bügeleisen das er damals immer dabei hatte war echt eine sehr gefährliche Waffe. Zu seiner Rivalität mit Bryan Danielson muss man nichts mehr sagen. Die Matches zählen zu dem besten was es im Wrestling gibt. Auch sonst hatte er bei ROH viele starke Fehden und Rivalitäten. Bei TNA fand ich nur seine Fehde gegen Kurt Angle richtig stark. Er hatte auch das Problem das er da immer wieder verletzt war. Seit seiner Rückkehr zu ROH ein starker Color-Kommentator dem ich gerne zu höre auch sonst ist er auch als Nicht mehr Aktiver super. Vielleicht steigt wieder für ein One Night Only Match in den Ring. Edit: 13. 07. 2017 Inzwischen schon länger bei NXT gelandet und macht da als Kommentator einen klasse Job genau wie ROH weiterhin ein starker Kommentator."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: theodelight89wrote on 20.02.2017:[10.0] "My all-time favorite ROH wrestler. Could work any number of styles proficiently, and gave his everything every time he entered the squared circle. Not only one of the finest wrestlers to come from England; plain and simple one of the best wrestlers of the 21st century so far."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: The Real Raterwrote on 25.01.2017:[8.0] "In-Ring Skills: Verdammt stark, dem aber ein bisschen was zur 10 fehlt. 9/10 (50%)  Promos/Schauspieltalent:Hier war er immer ganz gut. 8/10 (25%)  Charisma/Erscheinung/Gimmick:Ehrlich gesagt nichts besonderes. 5/10 (25%)  Sind dann insgesamt 7, 75 Punkte für Desmond Wolfe.   = 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Jobbswrote on 24.04.2016:[10.0] "In my view one of the best wrestlers ever! He was able to wrestle a good to great match with literately anyone. His ROH World Title reign from 2007-2009 was one of the best ever and he's definitely one of the best in ring technicians as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: TrevPuroFanwrote on 24.07.2015:[10.0] "Man I could go on and on about what Nigel has done for ROH, and for me as a wrestling fan personally. He was flawless in the ring, amazing promo work, amazing heel. Had an amazing 545 days run as ROH World Champion. Had some of the best matches ever against Austin Aries, KENTA, Tyler Black and than you have my favorite wrestling fued of all time with Bryan Danielson, these guys had 3 five star matches against eachother, truly amazing stuff. Nigel has truly earned his place in my top 10 wrestlers of all time. Love you and miss seeing you perform Nigel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Viper99wrote on 22.07.2015:[10.0] "Nigel McGuniess ist für mich einer der besten Techniker und besten Wrestler aller zeiten! Leider Leider hat er es nie zur WWE Geschafft. Dafür aber einer DER Leute der ROH Geschichte! Allein schon seine Schlachten gegen Danielson bleiben unvergessen. In TNA war er leider nie mehr wie Midcard. Seine Matches gegen Angle habe ich trotzdem sehr genossen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: eldenaaaaawrote on 04.03.2015:[10.0] "In his prime, he was the total package in wrestling. Brutal strikes combined with a technial prowess, and charisma for days. Foremer ROH World Champion and ROH Pure Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Claudio Herowrote on 12.11.2014:[10.0] "Einer der Besten ROH Wrestler aller Zeiten. Seine Fehde gegen Bryan Danielson ist legendär. Er konnte den perfekten Heel spielen. Schade das ihm bei TNA keine größere Rolle zugedacht wurde. Für mich einer der besten Indy Wrestler die es jemals gab"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Phenomenal91wrote on 15.09.2014:[8.0] "His time in the national spotlight was brief (aside from an excellent feud with Kurt Angle in TNA, he didn't accomplish anything else there or in WWE. ) But, in Ring of Honor, this man is a legend. Not only a highly decorated competitor, but also the best representation of British wrestling in the United States since Lord Steven Regal. His career was tragically cut short due to hepatitis, but he's proven to be extremely effective in the role of color commentator (he has great chemistry with Kevin Kelly) and now on air official. (You can genuinely respect his authority and the way he lays down the law. ) He's the ideal replacement for Jim Cornette in that role, and perhaps even better, since he understood Ring of Honor better than Jim. It's always a pleasure to hear him on commentary, and he has a great Ring of Honor legacy to look back on. All in all, a great career."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: MrJamesssswrote on 05.06.2014:[9.0] "I'ts a shame he was forced to retire, but I enjoyed his work in the US indies. I never cared about his usage of Lariats, to be honest.... His rivalry with Danielson is in the same level as other classic rivalries like Misawa vs Kawada."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Capuwrote on 18.05.2014:[10.0] "My favourite wrestler. Is sad to think that his career ended when he was about to reach the top. Hope to see him in a ring one last time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Ultraviolent Lariatwrote on 26.03.2014:[10.0] "The Johnny Saint of modern Era. Amazing, awesome, perfect, and all adjectives that can give for him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ShawnDravenwrote on 09.01.2014:[9.0] "It's a shame his in-ring career was cut short, because if he was able to go, we would no doubt be seeing Nigel vs. Bryan Danielson on the big stage."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: HammertonWaywrote on 22.12.2013:[9.0] "When he moved to TNA, I was really hoping to see this man succeed in that company after hearing so much about him. While he was the fantastic wrestler I was told about, I wish he was pushed more. His teaming with Magnus had a lot of potential, but no one could've predicted what happened to him. While I wish I could've seen more of him, it was right for him to of retired."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: tgwrote on 02.12.2013:[10.0] "Ich bewerte ihn hier als den Wrestler, der er 2005 bis zu seinem Rücktritt in den US-Independents war, und nicht als die On-Air-Persönlichkeit, die er gerade bei Ring of Honor verkörpert. Überragend! Man denke hier nur an die vielen unglaublichen Matches mit Danielson. Dieser Mann hätte größtes Potenzial gehabt, es auch bei einer Company wie der WWE bis an die Spitze zu schaffen. Wirklich traurige Geschichte..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Paul Allainwrote on 07.07.2013:[10.0] "Nigel McGuinness can be considered the best in many respect : A great technical wrestler, maybe one of the best. A noble ambassador of UK wrestling in the US, maybe the best. A formidable opponent to Bryan Danielson, maybe his greatest rival. A great pure wrestler from this generation, maybe the best. A great world champion for ROH, maybe their best. A great legacy on the independent circuit, maybe the best.   What is clear is that is career as an in-ring competitor is over, before he could be crowned as a world champion in WWe or TNA and immortalised. That is not maybe tragic, it definitively is, because Nigel has been one of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Lecterwrote on 05.06.2013:[9.0] "Nigel achieved greatness. No doubt about it. 'Tis a tough pill to swallow that he wasn't properly rewarded for it."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ilovewrestlingwrote on 12.05.2013:[10.0] "Einer der besten Wrestler, die je in einem Ring of Honor Ring standen. Er ist ein technisch begabter Wrestler, der jeden Stil mitgehen kann. Seine lange Titelregentschaft hat er sich verdient. Er hat richtig viel Charisma und sehr gutes Mic Work. Schade, dass er so früh zurücktreten musste und ich hoffe, dass er irgendwann wieder in den Ring steigen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Leonewrote on 06.05.2013:[10.0] "One of the best British wrestlers to work in the United States over the last 10 years.  He's the second longest reigning Ring Of Honor champion, tied with Bryan Danielson in having the most amount of title defences of that belt, and he was a fantastic in-ring technician.  To go along with his in-ring skill, his character evolved a bit as well, originally portraying himself as being more like an english punk, and then becoming more like a Jason Statham-type of character when he went to TNA.  If it wasn't for his illness, which led to an abrupt retirement, he would still be wrestling and have quite a few years left in him.  An unfortunate end to a potentially even more successful career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: dudemanbearpigwrote on 11.03.2013:[9.0] "An extremely talented wrestler. It's a shame he never made it to WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Wolkywrote on 20.09.2012:[9.0] "Immer einer der Besten im Ring gewesen. Hatte da wirklich sehr viel drauf, konnte vor allem fast jedes Tempo gehen und hat sich eigentlich konstant weiter entwickelt. Sehr schade, dass er seine Karriere beenden musste."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ARIZAwrote on 15.06.2012:[9.0] "Sehr guter Wrestler, der bei ROH großartig war. Sehr schade, dass er nach gutem Anfang bei TNA es nicht geschafft hat sich dort komplett durchzusetzen und dann nach langer Pause seine Karriere beenden musste."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: VanderVaartwrote on 06.06.2012:[9.0] "Scheint ziemlich patriotisch zu denken. Moves nach seinem Heimatort benannt und er läuft mit britischen Knee-Pads durch die Gegend. Die Frisur vor den sehr kurzen Haaren war sehr innovativ und stand ihm sehr gut.  Die Matches waren teils sick, aber im positiven Sinne. Die Signature Moves zwar nicht sonderlich inoovativ, aber da steck ordentlich Pfeffer dahinter. Die lange Titelregentschaft des ROH-Titles ist verdient. Schade, dass er seine Karriere schon so früh beenden musste. Trotzdem machte er danach noch eine Abschiedstour, was eigentlich zu gefährlich war, aber das muss er selber wissen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: WrestlePandawrote on 16.02.2012:[10.0] "Nigel McGuinness is the one and only reason I began watching TNA's Impact Wrestling on a weekly basis a few years ago. He had two fantastic matches with Kurt Angle, and then the new regime of Hulk Hogan and Eric Bischoff came in, effectively ending Nigel's push. I still have yet to watch even 1% of Nigel's matches, but in every single one he gave 120%. Unfortunately, that 120% drastically shortened his career. Hopefully someday there will be an anthology of his storied wrestling career on DVD. Thank you for your 12 amazing years contributed to the business, Nigel. I'm sorry things didn't work out the way they should've."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: cookie monsterwrote on 20.10.2011:[9.0] "Richtig klasse Typ. Als Wolfe nicht ganz so gut eingeset. In ROH seh ich ihn lieber. Und bin froh das er wieder in ROH ist. Schade das er jetzt nicht mehr die "Stachel Haare" hat^^ Aber naja trotzdem genial."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Rated R Punkwrote on 06.09.2011:[8.0] "Kenne ihn nur von TNA her aber ich muss, sagen verdammt Talentiert! Seine Fehde gegen Kurt Angle war Wrestlerisch ein Blickfang!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: devilsoldierwrote on 30.07.2011:"Da hat die WWE wohl alles richtig gemacht ihn nicht einzustellen nach dem Medizin Check. Schade das wieder eine Karriere kaputt ist. Hatte viel drauf."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Hu-Manwrote on 17.07.2011:[10.0] "Ein unglaublich talentierter Worker, der leider schon lange nicht mehr zu sehen war. Hoffe, dass er es noch einmal zurück schafft und an seine früheren Leistungen anknüpfen kann. Ich weiß nicht was ihm fehlt und wünsche ihm daher primär gute Genesung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Donald Duckwrote on 23.06.2011:[10.0] "Absolut großartiger Wrestler. sowohl in ROH als auch in TNA. Am Mic ist er schon sehr gut, im Ring aber noch zehn mal besser. Desmond Wolfe hat alles was ein Star braucht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: FriarFergusonwrote on 04.04.2011:[9.0] "Ich kenne ihn nur von TNA und dort hat er mich sehr überzeugt und begeistert, sowohl in seiner Fehde gegen Angle, als auch als Teil von London Brawling. Authentisch am Mic, gute Ausstrahlung, sauber und talentiert im Ring. Hat die Chance, qualitativ der nächste Chris Jericho zu werden, wenngleich beide Stile schlecht zu vergleichen sind."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Elvis6wrote on 29.03.2011:[6.0] "Sehr stark angefangen u immer mehr nachgelassen. So könnte man wohl die letzten 2 Jahre von Wolfe beschreiben. Hat mir, als Nigel McGuiness super gefallen. Aber seit er bei Tna ist muß wohl einiges schief gelaufen sein. Fiel mir nur bei den Matches mit Kurt Angle auf. Und nun? Eine mysteriöse Erkrankung. Schätze mal das er auch bei der WWE deswegen nicht ankam. Wegen dieser u dem Grund das er jetzt schon lange fehlt nur eine 6"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Matt4Wrestlingwrote on 20.02.2011:[10.0] "Ich kann nicht nachvollziehen warum TNA McGuinness (Wolfe) so zurückhält! Er bringt alles erforderliche mit, so kann er sich einfach nicht entfalten! Er hat in der Vergangenheit, wie jetzt auch in seinen letzten Auftritten, hoffentlich kommt er bald wieder, bewiesen, was technisch und charismatisch in ihm ist! Wie gesagt, diese bremsung seitens TNA kann ich nicht nachvollziehen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: dnstoniewrote on 24.10.2010:[9.0] "Desmond Wolfe hat wirklich alles drauf. Ein echt komplettes Paket. Jedoch wird er bisher bei TNA doch sehr klein gehalten. Ich hoffe das es mit Verletzungen zu tun hatte, das er immer nur so mikrige In-Ring Einsätze bekam. Der Mann kann soviel mehr... bin mal gespannt wie es weitergeht wenn er zurückkommt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: TAWPTierJustinwrote on 09.10.2010:[10.0] "When I got back into watching TNA last year, I didn't really start to get back into it until Desmond Wolfe joined the company and when I saw him make an impact instantly going into the feud he had with Kurt Angle, I was so impressed with this guy and I was so impressed with his wrestling ability and was so impressed by his promos and his entrance music which is awesome by the way. And I really believed that because he was on a huge role in TNA that he was gonna become TNA world heavyweight champion sooner than later and I still believe he has what it takes to be world champion in TNA even though they haven't been using that well lately as far as pushing him to main event status is concerned. I mean he was in a good tag team with Magnus recently and I couldn't wait for their match with The Motor City Machine Guns at No Surrender cause I thought they were gonna have a good match but they ended up being replaced by Generation Me which also that led to a great heel turn for Gen Me so I'm not too pissed about it. But ever since then, i really don't know what happened to the team of Desmond Wolfe & Magnus. All I saw recently was Desmond Wolfe having a singles match with Stevie Richards on Xplosion last week which led to Desmond defeating Stevie. But anyway I still believe Desmond Wolfe will be TNA world heavyweight champion someday! Mark my words!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Rated R Champwrote on 24.09.2010:[10.0] "Nigel McGuinness ist meiner Meinung nach einer der coolsten Hunde im heutigen Wrestling überhaupt. Er hat bei ROH schlichtweg fantastisches abgeliefert, seien es seine legendären Schlachten gegen Bryan Danielson oder seine 18 monatige Regentschaft als ROH World Champion. Am Mic sowie im Ring ist er einfach nur erstklassig. Deshalb ist es umso trauriger zu sehen, wie er zur Zeit bei TNA verheizt wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Typhixwrote on 20.08.2010:[9.0] "Ich muss gestehen, dass Wolfe mir bei Ring of Honor deutlich besser gefiel. Momentan spielt er bei TNA nach seinem gigantischen Einstand 2009 nur noch die zweite Geige - wenn überhaupt. Seine Matches sind oft kurz, unbedeutend und auch nur noch mittelmäßig spannend. Wolfe kann deutlich mehr und deutlich besser, aber derzeit zeigt er es leider nicht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Whole FN Showwrote on 18.08.2010:[10.0] "Das beste was das Indy Wrestling in den letzten Jahren heraus gebracht hat. Nigel mit seinen Britischen Stil einfach klasse und seine Lariats sind Goldwert! Für TNAs Booking ziehe ich ihm keine Punkte ab!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Jack Londonwrote on 18.08.2010:[9.0] "Bei Ring Of Honor legendär, bei TNA unter Wert verkauft. Trotzdem ein toller Wrestler"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: The Mountiewrote on 18.08.2010:[9.0] "Großartiges Indy-Komplettpaket, das ich bei ROH durchgehend geliebt habe. Bei TNA verfliegt leider nach gutem Start der Zauber. Schade."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Invaderwrote on 30.07.2010:[6.0] "Became extremely skinny since he's working for TNA and I do think that he would do better in ROH.  Look at his win/loss-record... what else do I have to say?"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: MattBornewrote on 05.07.2010:[9.0] "Da stimmt einfach alles, dazu noch im besten Alter und den Sprung zu Tna geschafft. Die Matches mit Angle waren krass und haben mich ziemlich gut unterhalten. Mag seinen Stil, hat sicher noch einen goldenen Weg vor sich."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Switchbladewrote on 22.06.2010:[10.0] "Als Face ok, als Heel absolut genial. Im Ring sehr stark, hat meiner Meinung nach aktuell die besten Lariats im Business. Und sonst auch der technische britische Stil von ihm gefällt mir. Geht finde ich kein Weg an der Bestnote vorbei."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Sandmannwrote on 04.05.2010:[8.0] "Fand McGuinness zu Beginn seiner ROH Karriere wirklich nicht gut und total langweilig. Aber spätestens seit seinem Pure Titel Gewinn wurde er immer besser. Auch der Gewinn des World Title war logisch und hat doch einige mehr als gute Matches hervorgebracht. Die Kritik an seinem Stil fand ich teilweise zwar berechtigt aber trotzdem konnte Nigel eigentlich mit jedem ein gutes Match zeigen. Hoffe man sieht ihn noch ab und zu im Indyzirkus."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Whopperlewrote on 18.04.2010:[10.0] "Einer der besten Worker die TNA momentan hat. Klasse Wrestler und toll am Mike."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Jar Jar Binkswrote on 07.04.2010:[9.0] "Bei ROH: Absolut genialer Mann. Starke In-Ring Performance, tolle Matches, riesen Charisma und wahnsinns Mic-Work. Bei TNA leider nicht mehr so präsent. Ich hoffe er wird in den Main Event gespusht ansonsten, kann er hier leider nicht so überzeugen..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: TheLoudMouthwrote on 06.04.2010:[10.0] "Einzigartiges Komplettpaket. Seine Skills im Ring, als auch die am Mic, sind richtig stark, Charisma ist en masse vorhanden, Gimmick stimmt. Außerdem rulen seine Lariats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Wizz21wrote on 15.03.2010:[9.0] "Zu seinen ROH - Zeiten gabs von mir "nur" 8 Punkte, bei TNA mit dem Desmond Wolfe Gimmick die coolste Sau im Roster , daher die Aufwertung auf 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: The Crown Jewelwrote on 15.03.2010:[8.0] "Gefiehl mir vor seinem titlerun bei ROH deutlich besser als von diesemZeitpunkt an."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Fat Mikewrote on 13.03.2010:[10.0] "Gefällt mir bei TNA bisher zwar nicht ganz so gut wie im Indy-Bereich, das ändert aber nichts daran das er einer der besten der Welt ist. Ausstrahlung und Mic-Skills sind auf absolutem Top-Niveau und in Punkto In Ring-Skills macht ihm sowieso niemand was vor."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: rv27wrote on 10.03.2010:[9.0] "Grundsolider Wrestler auch wenn mir bei ihm immer wieder die WTF Moments fehlen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: MJ Goldbergwrote on 09.03.2010:[10.0] "Meiner Meinung nach zu underrated bei TNA, der Mann ist pures Gold als Heel, gibt Ihm den Heavyweight Title plus Fehden gegen Angle/Hardy/RVD. Top-Wrestler und stark am Mic!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: The Rated R Superstar EDGEwrote on 01.03.2010:[10.0] "Seine Indy Zeit habe ich nicht weiter vervolgt aber bei TNAW gefällt er mir im Moment doch sehr gut. Ich hoffe das man es schafft ihn in 2010 im Mainevent von TNAW fest zu etablieren. Wow ich sehe gerade das er schon 34 ist. Hätte meiner Meinung nach schon vor 2-3 Jahren den Schritt zu TNA oder der WWE wagen sollen. Zusammen mit AJ Styles und Kurt Angle der beste Worker bei TNA derzeit. Ich würde es gut finden wenn man ihn bei TNA noch in 2010 zum World Champion machen würde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Y2Mikewrote on 28.02.2010:[9.0] "Absolut tolles Gesamtpaket. Im Ring und am Mic stark, noch dazu sehr charismatisch. Hätte Nigel gerne bei der WWE gesehen, doch ich glaube, er ist im Augenblick bei TNA besser aufgehoben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: jimpanse1980wrote on 15.02.2010:[10.0] "Hat in den letzten 2 Jahren das Image des modernen Superstars evolutioniert. Er hat die Aura, er hat den Look und die Technik ein Business anzuführen. Spätestens bei TNA hat er auch im Mainstream überzeugt und seine ausufernden Lariat-Orgien eingestellt und sich einen fast einzigartigen Stil angeeignet. Old-School-European-Wrestling gepaart mit nordamerikanimeschem Unterhaltungswert. Dazu passendes gutes bis sehr gutes Micwork. Fertig ist einer der Zeit besten Wrestler im Business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Mukahidowrote on 30.01.2010:[10.0] "Die Fans drücken es sehr passend aus wenn er im Ring ist:"This is Wrestling. "Nigel/Desmond verkörpert für mich ein technischen Wrestler der Neuzeit, starke englisch geprägte In-Ring Skills gutes schauspielerisches Talent und ein unverwechselbares Micwork"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: DJ MaSchwrote on 29.01.2010:[10.0] "Allein seine Einstiegsfehde bei TNA gegen Kurt Angle sollte jedem gezeigt haben, was dieser Mann leisten kann. Die Zeit an der Spitze von ROH hat ihm gut getan, da er dabei deutlich an Profil gewonnen hat und sich somit für ein Engagemet im Mainstream Bereich beworben hat. Das er jetzt bei TNA und nicht bei der WWE untergekommen ist stört mich überhaupt nicht - im Gegenteil er durfte gleich im Co-Mainevent von PPVs 20 Minuten Matches gegen das Aushängeschild der Liga bestreiten, in welchen er beweisen konnte, dass er auch wrestlerisch ohne hin top ist. BTW. ist er auch noch einer meiner persönlichen Favoriten - und das schon seit seinen Euro Tagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ShakDragoonwrote on 19.01.2010:[10.0] "Einer der besten European-Style-Wrestlers und mehr als verdient Langzeit-ROH-Champion. Ich freue mich sehr, dass er es als Desmond Wolfe zu TNAW geschafft hat und hoffe, dass er nach der sehr guten Fehde gegen Angle nun auch weiterhin vernünftig eingesetzt wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: mugel 187wrote on 18.01.2010:[10.0] "Meiner Meinung nach der zweit beste Heel (nach Edge) zurzeit im Business. Niemand hat einen so ansprechenden Wrestling Stil wie Desond Wolfe/Nigel McGuinnes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Maxskywrote on 07.01.2010:[10.0] "einfach nur genial... ich verstehe immer noch nicht warum WWE hin nicht genommen hat... nunja das haben sie davon ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Baldrickwrote on 06.01.2010:[9.0] "Mir persönlich zeigt er (bei TNA) ausser den gelegentlich eingestreuten, durchaus schön anzusehehnden Lariats zu wenig Strike-Moves. Dass er einer der besten Submission-Wrestler der Gegenwart ist, steht ausser Zweifel. Wolfe hat einen einzigartigen Stil, der von den Fans ersatzlos akzeptiert wird, ein Mic-Work, dass hervorragend zu diesem Stil passt und eine absolute Superstar-Aura, wie sie IMO heute sein sollte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Denzwrote on 04.01.2010:[10.0] "Seine Moves liefert er immer Sauber ab. Seine Clothelines sind momentan einer der Besten. Am Mic müsste er noch etwas arbeiten. In ihn sehe ich die Zukunft von TNA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Super Dragonwrote on 25.12.2009:[9.0] "Nigel ist einer der besten Indy Wrestler momentan, er hatt schonn zu ROH zeiten bewiesen das er was drauf hatt und wird es auch in TNA noch beweisen, für mich ist er ganz klar die zukunft von TNA."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: downtown2wrote on 22.12.2009:[9.0] "TNA macht ja derzeit nicht viel richtig, aber einen Mann wie Nigel so perfekt in einem Roster zu etablieren muss lobend erwähnt werden. Tatsächlich könnte er ein größerer Gewinn für die Organisation werden als alle Hogans, Bischoffs und Lashleys zusammen. Seine Interviews sind so gut und glaubwürdig wie sein Wrestlingstil. Viel Psychologie, Show und Intensität. Absolute Erscheinung, ihm könnte eine grandiose Zukunft bevorstehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: XtremeEnigmawrote on 13.12.2009:[10.0] "Desmond Wolfe konnte sich in den letzten Wochen wirklich bemerkenswert bei TNA etablieren. Ich persönlich sehe ihm äußerst gerne im Ring zu, vor allem deswegen, da mir sein Stil sehr gefällt. Außerdem sind seine Mic-Skills bereits jetzt auf sehr hohem Niveau und sein Charakter wirkt frisch und interessant im Mainstream. Ein verdienter Push derzeit in meinen Augen, auf den sich in Zukunft noch aufbauen lässt, wodurch Wolfe vielleicht noch zum Main-Event Player wird, was er ja auch bei RoH war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: MrSmackdownwrote on 22.11.2009:[7.0] "Nigel Nigel Nigel..... Für mich immernoch, overrated!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Cheffewrote on 19.11.2009:[9.0] "Ich finde es gut das Desmond Wolfe zu TNA anstatt zur WWE gegangen ist. Hatt direkt mal beim ersten PPV ein Top Match gegen Kurt Angle gehabt. Er wird TNA definitv weiter helfen können. Sein englischer Aktzent stört mich aber etwas ;)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Matt Mackswrote on 17.11.2009:[10.0] "Das Jahr an der Spitze von Ring Of Honor hat Nigel -- Verzeihung: Desmond Wolfe -- gut getan, denn bereits kurz nach seinem Einstand bei TNAW geht von ihm die Aura eines Stars aus. Es hilft natürlich auch, wenn die erste Fehde gleich gegen den Superstar der Liga, Kurt Angle, geht, doch Wolfe hat diese Chance genutzt, um mit all seiner Erfahrung als Führungsfigur einer Liga sich selbst durch diese Fehde dem Publikum als Instant Star zu verkaufen. Nach all seinen fantastischen Schlachten mit Bryan Danielson oder Austin Aries hat er es sich verdient, auf nationaler Bühne erfolgreich zu sein und hoffentlich gutes Geld zu verdienen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Aquifelwrote on 16.11.2009:[10.0] "In den Indies hat Nigel bewiesen, wie gut er ist. Er hat Charisma, kann reden und erstklassig wrestlen. Seine bisherigen Auftritte bei TNA zeigen, dass er nicht nur bei ROH z. B. richtig rüberkommt, sondern auch in einer Mainstream Promotion. Und gerade, da er sich auch stilistisch nicht gebeugt zu haben scheint, gibt es auch immer noch die 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Big Bad Booty Babywrote on 25.10.2009:[9.0] "Ich glaube keiner verfehlt so knapp die zehn Punkte wie Nigel. Für die Indys ist er einfach perfekt, mit seinem einzigartigen, Lariat-basierten Kampfstil und zudem massig Charisma und sehr gutem Mic-Work. Er ist zwar nicht sonderlich spektakulär, aber technisch einwandfrei. Für seine Zeit in der WWE befürchte ich jedoch schlimmes, da man ihm höchstwahrscheinlich seine Lariats nehmen wird und er im Ring dann außer Technik nicht viel zu bieten hat, womit er jedoch in der WWE keinen Blumentopf gewinnen kann. EDIT: Muss er auch gar nicht, denn er hat bei TNA unterschreiben, worüber ich eigentlich ganz froh bin, da er hier seine Einzigartigkeit behalten und zudem direkt mit Kurt Angle fehden darf. Das riecht nach tollen Matches!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Aesopwrote on 14.08.2009:[10.0] "Nigel McGuinness hat sich zu einem meiner Lieblinsgrestler entwickelt, de Heelturn im Jahre 2006 hat ihm mehr Charisma verliehen und im Ring ist er echt gut. Das er den Titel so lange gehalten hat finde ich gut, da er es sich verdient hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Eddiewrote on 03.06.2009:[10.0] "Wenn man mittlerweile von ROH spricht, fällt der Name McGuinness ganz bestimmt. Einfach ein cooler Typ mit sehr sehr vielen coolen Matches, der ebenso wie Danielson ein Match zu etwas besonderem machen kann, 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Mick Funkwrote on 30.04.2009:[9.0] "Großartiger Techniker, dem es, im Gegensatz zu vielen anderen Indyworkern, auch nicht an Ausstrahlung fehlt. Freue mich immer wenn ich ein Match von ihm zu sehen kriege."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Manolowrote on 02.01.2009:"Wrestlerisch nicht besser als noch vor 2 Jahren, und trotzdem hat er sich enorm weiterentwickelt. Anfangs wirkte sein Title-Run auf Grund von einigen Verletzungen und des daraus resultierenden schwacken Bookings (bspw. seine weinerliche Rede bei Final Battle(? ) 07 ein wenig verkorkst, aber seit dem Turn versteht Nigel es absolut, mich zu begeistern. Er hat im letzten jahr IMO deutlich an Charisma gewonnen. Desweiteren hat wohl niemand bei RoH (evewntuell noch der Dragon)im jahr 2008 derart viele MOTYC abgeliefert wie er. Klare 10 Punkte."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: 150pwrote on 14.12.2008:[10.0] "Zur Zeit einer der besten Wrestler der Welt. Hat ein unglaublich starkes Jahr hinter sich, wurde anfangs noch als 'unglücklicher Champion' belächelt, spielte dann aber seine ganze Klasse mit dem Heelturn voll aus und ist seitdem einer der besten Heels im Business. Klare Höchswertung!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Blazewrote on 06.12.2008:[8.0] "Hat sich bei ROH richtig gut etablieren können und ist verdient ROH World Champion. Trotz des eher kleineren Movearsenals ist er im Stande richtig gute Matchse zu zeigen. Mit allen Gegnern, die er als Champ hatte, kam fast immer ein gutes bis sehr gutes Match heraus. Nur mit der Zeit wird es langsam langweilig nur fünf, sechs verschiedene Moves im Match zu sehen. Weniger ist zwar manchmal auch mehr, dafür wirkt es manchmal zu eintönig. Seine große Intensität kann ich ihm nicht absprechen, denn die ist es auch, die Matches noch besser macht. Wird in Zukunft auch immer einer der Stars bei ROH sein und sicher irgendwann zum Main Stream übergehen. Denn im Vergleich zu anderen Workern von ROH ist er recht groß und hat dazu noch einen richtig guten Körperbau. Ich hoffe nur, dass er bald seinen Titel verliert, denn langsam wird es Zeit."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: The Instant Classicwrote on 28.11.2008:[9.0] "Starker Wrestler mit gutem Micwork, der im Ring allerdings dazu tendiert, immer wieder dasselbe zu zeigen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: homicidal cena michaelswrote on 26.10.2008:[9.0] "Er hat zwar nicht so viele Moves aber er weiß immer was er tut. Ich habe noch kein schlechtes Match von ihm gesehen. Er hat den Titel verdient aber er sollte ihn bald verlieren."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Tomkowrote on 18.10.2008:[10.0] "Ist für mich auf der gleichen Stufe, wie Danielson, was er stets mit seinen harten britischen Stil beweisst. Seine Lariats in allen möglichen Variationen sind wirklich einmalig und machen seine Matches immer wieder sehenswert ! Ich hoffe, dass er Joe`s Titelregentschaftszeit toppen kann, da er derzeit der Einzige ist, dem ich es wirklich gönne!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Ebessan Jackwrote on 16.10.2008:[10.0] "Einfach Göttlich~! Damit ist alles zu diesem Kerl gesagt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: MrWrestlingwrote on 01.10.2008:[8.0] "Kein schlechter Wrestler, bringt jedoch auch keine überragende Leistung"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: DayJay2kwrote on 08.08.2008:[7.0] "Puh Nigel MCGuinnes... Ihn zu bewerten ist schon so eine Sache. Er weiss was er kann und nutzt dies aus. Die Sachen die er zeigt kann er. Aber wo ist die Weiterentwicklung? Er reisst micht nicht mehr so vom Hocker wie er es noch vor Monaten getan hat. Einem Wrestler der stagniert gehört eigentlich eine 3, da er aber noch Potenziel hat sich zu einem absoluten TopDraw bei ROH zu entwickeln noch ne 2, 5!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: e-trom995wrote on 22.06.2008:[4.0] "Kann mich DawgPound85 nur anschließen... find ihn auch nicht so berauschend. Auch glaube ich , dass viele hier gute Noten geben die den Wrestler gar nicht kennen und noch nie gesehen habe!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: DawgPound85wrote on 04.06.2008:[4.0] "Leider kann ich die allgemeine Meinung zu Nigel nicht teilen. Klar sind seine Lariats der Wahnsinn und er versteht sich aufs Pure-Wrestling, dennoch wirken seine Matches aber wirklich austauschbar und für mich ist sein auftreten in den RoH Shows meistens mit "Abarbeiten" verbunden.. Habe ihn allerdings noch nicht als Champion gesehen (man hängt ja doch hinterher durch die Masse der Shows), vielleicht kann er mich ja als solcher überzeugen. Vorerst werde ich weiterhin genervt stöhnen, wenn sein Theme erklingt.."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Muffiwrote on 03.06.2008:[9.0] "Ich mag seine Lariats eigentlich. Ist halt seine stärkste Waffe und die tut er häufig einsetzen. Dazu noch klasse am Mic und ein wunderbarer Heel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Typicalwrote on 21.05.2008:[9.0] "Lariat, Lariat, Tower of London, das war einmal, er hat einen Submission Move gelernt *geschockt*. Mittlerweile als Heel genial und nicht mehr so langweilig wie früher."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Dave Concordiowrote on 06.05.2008:[6.0] "Guter Wrestler, der IMO am Mic nichts draufhat. Sein Run ist ein perfektes Beispiel dafür, wie schlecht es um RoH am Draw Sektor steht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[9.0] "Er hat sich den Status, den er gerade inne hält, völlig verdient."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: AnFuwrote on 12.04.2008:[9.0] "Nigel ist ein weltklasse Wrestler! Aber auch bei hm fehlt mir das gewisse etwas, ich hab ja nicht mal was gegen seine Lariats, aber die Bestnote kann ich nicht vergeben, 2+!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Rancorwrote on 25.03.2008:[6.0] "Nach dem was ich bisher so von ihm gesehen habe, ist er mit einem entsprechend sehr guten Gegner zu sehr guten Matches fähig. Abzüge bekommt er nicht, weil ich seine Frisur absolut dämlich finde, sondern weil ich einige seiner Standard Spots wirklich nicht ausstehen kann. Wenn da Aktionen aus unlogischen Positionen heraus kommen, mag das für manch einen zwar innovativ und cool sein, ich finde das äußerst störend. Ordentlicher Worker, in meinen Augen bisher aber auch nicht mehr."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Joeevil123wrote on 19.02.2008:[8.0] "Zur vollen Punktzahl fehlt noch das gewisse etwas. Zeigt mir Imo zuviel immer das selbe , kann aber defenitiv mehr. Er muß es nur abrufen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Parcewrote on 11.02.2008:[10.0] "Alles andere als 10 geht nicht! Hat alles, was man braucht. Ausstrahlung, die Größe, die InRing Skills und sgar Micwork ist in Ordnung. Wird noch weiter von sich hören machen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: GothicBearwrote on 17.01.2008:[8.0] "Ich würde Nigel wirklich zu gern die 1 geben, und ich freu mich auch riesig über seinen Titelgewinn 2007. Aber leider hat er sich im letzten Jahr zuviel auf seine (zugegebenermaßen guten) Lariats und zuwenig auf seine (sehr viel brilliantere) Technik verlassen. Dabei hat er doch grad bei Driven wieder gezeigt, was für grandiose Matches er bestreiten kann. Ich hoffe, 2008 kehrt er ein bißchen mehr zur Technik zurück, dann geb ich auch gern die 1."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Rashomonwrote on 16.01.2008:[8.0] "Sehr guter Wrestler, dessen Stil im letzten Jahr durch die Reduzierung seines Movesets auf Lariats ziemlich gelitten hat. Allerdings wieder auf dem aufsteigenden Ast, auch wenn er als Champion mit Verletzungen und Fanreaktionen zu kämpfen hat. Nimmt teilweise bescheuerte Bumps gegen den Schädel..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: shannonmoorewrote on 05.01.2008:[8.0] "Großartiger Wrestler für denn der Gewiinn des ROH Titels aber zu früh kam wie ich fand."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Remootwrote on 05.01.2008:[2.0] "Wieder ein Typisches beispiel für einen völlig überschätzten mann. Der Mann wird niemals ein Superstar werden... und da für mich auch Entertainment zum Wrestling gehört , und Nigel ungefähr für mich so Charismatisch is wie n sack reis. Ich ausserdem nix tolles finden kann seinem Wrestlingstil.. kann ich leider nur eine 5 geben"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: mr sledgehammerwrote on 04.01.2008:[8.0] "Der hat noch genügend ungenütztes Potenzial. Gefällt mir aber trotzdem sehr gut. Mein Lieblingswrestler von Ring of Honor."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: -GMG-wrote on 02.01.2008:[10.0] "Was ich bis jetzt in den 6 Monaten die ich ROH regelmäßig gesehen habe von ihm gesehen habe beeindruckt mich wirklich. Sein Move Set ist sehr an den Europäischen Stil angepasst und sein Mat Wrestling sowie seien krachenden Lariats sind eine Klasse für sich. Das Match gegen Danielson bei Driven hat mich dann schließlich vollkommen überzeugt. Momentan für mich mit Hero udn Danielson der beste Independent Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Texas Tornardowrote on 28.12.2007:[10.0] "Die Matches die ich von ihm gesehen hab waren alle gut-sehr gut! Bringt super Moves!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Aaronwrote on 07.12.2007:[10.0] "Nigel hat Charisma wie Sand am Meer und er hat sich durch die einjährige Regentschaft als Pure Champion in den Main Event von Ring Of Honor befördert! Seine Fehde mit Danielson war einmalig und sein World Title Gewinn setzt nun dem Ganzen die Krone auf! Im Ring macht ihm höchstens Danielson noch etwas vor, aber Nigel ist und bleibt mein Liebling!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Pulpulwrote on 29.11.2007:[10.0] "Nigel gehört mittlerweile zu den Besten der Welt, also wird die Benotung um eine Note angehoben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Anti-Championwrote on 22.11.2007:[10.0] "Nigel ist zurecht World Champion, Charismatisch und stark im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: LexLuger4everwrote on 21.11.2007:[10.0] "Hat einen riesigen Sprung gemacht! Gefällt mir wrestlerisch ganz ausgezeichnet und hat auch das nötige Charisma! Verdienter Ring of Honor Champion!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: The Showstopperwrote on 14.10.2007:[10.0] "Einer der besten Wrestler im Ring. Technisch makellos, dazu ne klasse Ausstrahlung. Der Push an die Spitze von ROH ist mehr als verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Sabu316wrote on 13.10.2007:[10.0] "Hat sich in den letzten Jahren unglaublich gut entwickelt. Am Anfang fand ich seine Matches noch ziemlich fad, mittlerweile bin ich froh wenn sein Name auf einer Card steht. Sein ROH Titelgewinn ist absolut verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ValiumSickwrote on 08.10.2007:[10.0] "Exzellenter Wrestler, In-Ring sehr gut, Charisma hat er sowas von, Mic-Work ist auch klasse, hat tolle Haare - würdiger ROH Champion! Sehr gut!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: CaptainCarnagewrote on 27.09.2007:[10.0] "Nigel McGuiness hat alles was man braucht um ein absoluter Topstar im Wrestlingbuisness zu sein. Er hat einen einzigartigen Look, eine gute Ausstrahlung und gutes Micwork. Hinzukommt, dass er im Ring einfach wahnsinnig gut ist und IMO noch besser werden kann. Ganz klar, 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Baszdmegwrote on 06.08.2007:[10.0] "Promos - spitze. Wrestling - spitze. Der Mann ist für die Indies geschaffen. Bald wird er auch, völlig verdient, ROH anführen. Nigel McGuinness ist die Zukunft dieses Sports!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Moonbloodwrote on 29.06.2007:[10.0] "Hat der Mann eine Präsenz, das geht ja gar nicht... - Ich bin wirklich kein Fan seines Stils, aber wer ihn so dominant und überzeugend wrestlen kann, der hat kein Problem damit, mich voll und ganz zu begeistern. Auch live war es immer ein Erlebnis, ihn sehen zu dürfen. Großartiger Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ShaneOwrote on 29.06.2007:[8.0] "Top Worker. Sicherlich einer der Besten in der Indy Szene. Ruft aber glaub ich nicht sein ganzes Potential ab. Dennoch - gut."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Garvinwrote on 24.06.2007:[10.0] "Gehört meines Erachtens zur Elite der Indy-Szene. Auch wenn er auf jeden Fall noch nicht sein komplettes Potential abruft, hat er dennoch viele grandiose Matches geliefert, insbesondere im vergangenen letzem Jahr."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Super Charisma, Im Ring auch sehr unterhaltsam und eine klasse Frisur :D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: aulitwrote on 24.06.2007:[8.0] "Zuerst gefiel er mir gar nicht. Das hat sich im Laufe des letzten Jahres geändert. Klasse Wrestler mit einem unterhaltsamen Stil. Klasse auch seine Einzugsmusik. Es reicht (noch) nicht zur 1, aber wenn er so weiter macht hat er die spätestens Ende Jahr verdient."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: troyotawrote on 15.10.2024:[10.0] "My favorite wrestler of all time. She was so talented, and it's such a shame that injury took her career away from us. Not only is it sad for the fans, but especially for her since she had so much joy in wrestling. If she was still around and injuries didn't taint her so much, she would fully be considered one of the best women in the world, because even despite her 2nd run being short, people already consider her one of the best of all time in Stardom. She was obviously a bit stiff when she returned but she quickly developed into one of the best and most fun wrestlers to watch in the company. Rarely does anyone leave as big of an impact in such a short time as Arisa did. I hope she's doing well and she'll always have at least one fan in me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: MVCfanwrote on 09.01.2024:[5.0] "Honestly, as much as I liked Arisa he does not have the output is something she does not have. and nope, she doesn't like she has ike some who worked for promotion like rings who had mostly world-class level output. Most of my points come form the fact she was on the best strikers in wrestling in the modern era but this does not make her an all time level worker IMO. That fact he went away for six years the only had around two years run after she came back and stardom card structuring style hurts her match output highly. around very maximum mid-5s maybe if was low 6 it would be OK. but nothing higher"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Kamilahclanwrote on 22.04.2023:[6.0] "A good wrestler with a very good career considering how short the lifespan of modern joshi is. I'll remember the tam nakano match."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Pertinaxwrote on 27.10.2022:[10.0] "I didn't get to watch Arisa when she was active, but I am loving going back and watching all of her classic matches. She performs her strikes unlike most I've seen in wrestling and they look absolutely lethal. Quickly became one of my favorite Joshi."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: abid03wrote on 19.06.2022:"During the time she was active, she was one of the very best talents in the world Making her return in late 2018, and having a dominating 2019 run as the Wonder of Stardom Champion. Unfortunately she was forced to retire in May of 2020 due to her injury. She did make a temporary return to the ring in 2021, was wonderful to see her back. Wherever she is, I hope that she's doing well."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: velwrote on 23.04.2022:[9.0] "Arisa is perfect babyface for Stardom who ticks all the boxes. She is tall and charismatic, she knows how to interact with the audience in an interesting way and she is one of the best kicker in buisness. In fact, I have never seen better leg work in joshi wrestling. The only problem is that she did not have enough time to reveal her full potential. Throughout her journey, she was very successful, she let the opponents show their best, and then, when the match became tense enough, she executed them with her kicks. It is a pity that we did not see her in any other role."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Suzukigunwrote on 27.01.2022:[9.0] "I will always miss Arisa. She was so gifted in the ring, a true natural, with fantastic kicks that made her must see. She also had really good speed and was a machine during her second run. Her retirement still makes me sad, and the fact that she can't even do work in AWG due to her health is downright depressing. Hopefully she finds peace in retirement, or is somehow able to get healthy enough to at least do AWG again."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: NoSellwrote on 09.12.2021:[10.0] "One of the saddest retirements. She had been doing ring acting at ARG this past year and a half and she even recently retired from that due to head and neck problems. At this point I just wish she gets well and is able to live a quality life. She was amazing, her white belt run is banger after banger. I don't think anyone will forget her, Shining Star forever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: sami07wrote on 26.09.2021:[10.0] "She is so incredible, everything she does is perfect in my opinion. I love all of her moves, her personality she is so special and unique. She is something that can't be imitated. Her way of telling story, her facial expressions, her moves, her kicks, her happiness... Arisa has been my favorite Stardom wrestler once I started to watch in May 2019 and she also is my favorite wrestler of all time"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Shadow Explosionwrote on 26.01.2021:[10.0] "One of the best Joshi Wrestlers of All Time. Not only was Arisa memorable with her matches against Tam, Kyona, & Hazuki; but she was also memorable with her promos calling Momo's kicks "Fake" and saying that she was going to thank Hazuki with her kicks. She was willing to do what it took to have a great match and sadly her greatness only lasted around 7 months, however I don't think the duration of how long she was in the ring should be a factor, what she did in there was amazing and I wish her the best success with her band Unlimited Dream Navigator (also her theme song "Shining Star" is awesome. )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: ProWrestlingGuy316wrote on 09.01.2021:[9.0] "Musste leider viel zu früh ihre Karriere beenden. Für die sehr kurze Zeit, die Arisa im Ring stand, war sie absolut hervorragend und wäre unter normalen Umständen einer der Top Stars von Stardom. Ihre Regentschaft als Wonder Of Stardom Champion knüpfte nahtlos an die von Rekordregentschaft von Momo Watanabe an und sie war speziell 2019 herausragend. Ich vermisse sie sehr. Und außerdem hat sie ein gutes Match aus Bea Priestley rausgeholt, was in meinen Augen immer erwähnenswert ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: ElPolloLocowrote on 14.11.2020:[5.0] "Good and funny at promos, but if you took away her kicks there wasn't a whole lot left in the ring. Not bad because she was funny and deserves respect for putting her body on the line but hardly memorable."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: arrancarwrote on 20.05.2020:[9.0] "Well, damn. Arisa is retiring. What a massive blow to Stardom and Joshi in general. Arisa was easily the best women's wrestler in the world in 2019, and also one of the best champions in all of Japan. She was an absolute all-rounder with an incredible offence. Many other joshi stars wrestle styles that, while very good, are occasionally too sloppy or weak-looking, but Arisa genuinely had one of the most crisp offences I've ever seen. Her beautiful variety of kicks and knees were of course her speciality, and not only did she clearly have a legit striking background, given her perfect technique, but she always got fantastic impact on every single strike. I knew she was using thigh-slap sound effects on the majority of these attacks, but she did so while very cleverly masking them by drawing attention to her other movements at the same time, making her attacks come across as completely convincing. If we don't want to focus on Arisa's offence, then let's focus on her selling, because she was also fantastic there. It's always difficult to pin down exactly why we connect with certain wrestlers and feel sympathy towards them when they sell, but for whatever reason I just found it ridiculously easy to believe that Arisa was truly in immense pain or totally exhausted whenever she seold the effects of her opponents' attacks. She had the perfect facial expressions to communicate those ideas, so it was super easy to get invested in her struggle and they get hyped for her vicious comebacks. Having had a truly great 2019 only to retire half-way through 2020, Arisa will easily go down as one of the most disappointing early retirements in wrestling history. I had hoped to see her eventually become the undisputed face of Stardom, and I don't doubt that she could have achieved that if these awful injuries didn't get in her way. Her return to wrestling may have only lasted a year, but it was a damn great year."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Riggswrote on 24.02.2020:[7.0] "She has a good look and is decent in the ring. Not too sloppy. Fairly good at bumping and selling. She has a great smile and is more expressive than most. However, she feels like many other upper mid-card Joshi. I enjoy her matches, but her level of quality is about the same as many other. The one exception is her feud with Tam Nakano. Her white belt match with Tam was one of the best of the year in 2019. If she can find the ability to put on matches with everyone like she did Tam, she will be outstanding."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: 20SaiDa19wrote on 02.11.2019:[9.0] "Arisa has all the potential to be one of Stardom's biggest stars going forward. Despite a rough start after her return last year, Arisa improved greatly throughout the spring and by the summer was putting on some of the best women's matches of the year. Her feud with Tam Nakano is also one of my personal favourites this year as it showed her range as a performer, with her being able to play either a serious or a goofy character very well."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: NEVERoverweightChampionwrote on 02.08.2019:[8.0] "When she came back she was very rusty but she improved a lot since then and became a reliable talent and does a great job in every big match so far. She is a great athlete, her strikes look good, her selling (especially selling of the strikes) is very good and she can pull out some unique moves but above all she can put a lot of intensity and emotion in her matches. She makes a great champion and like almost every Stardom wrestlers she is still very young, so she has room to improve."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[9.0] "Male or female, Arisa is one of the best kicker in the game today. I like Dakota Kai, but she has nothing on Arisa. Since she returned she has really stepped up all around in the ring & I think she can grow to be a leader in Stardom for years to come. As a pretty new fan to Stardom, her matches are always a highlight to see."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: BadAssTranslateTradingwrote on 21.06.2019:[9.0] "The queen is back babeyyyyyyy! Retired way way to early and finally returnedto Stardom last year , shes been on a tear since and her match with Konami from the Cinderella final is amazing. The future looks bright for her at only 23."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: AlexLikesJoshiwrote on 20.06.2019:[10.0] "Hoshiki has delivered big time in every big match so far.  Her strikes are some of the cleanest in all of joshi and her kicks look awesome.  She makes every match feel like a war and has not rested on her laurels.  She could have easily been great with just her kicks but since her comeback she's added a sick running knee to her arsenal as well as a few other signature moves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Aurtletheturtlewrote on 07.02.2019:[9.0] "Arisa is super awesome. Finally back from a ridiculously early retirement, Hoshiki has everything needed to become the next big STARDOM main eventer, incredibly unique offense, good personality and able to get everything she does over. You might best know her from those gifs on twitter of poor innocent Joshi's getting their skulls caved in by Arisa's brazilian kicks. Hoshiki is so cool."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Nikkideamus Osyrenwrote on 24.10.2014:[9.0] "I have no idea why she hasn't blown up yet.  She's got a huge moveset, and is very athletic.  She has a very fun attitude, and a great style, that isn't the norm for Japanese women.  She's pretty unpredictable in the ring, and is a lot of fun to watch.  I think her matches always have a great chemistry; you know she's a good storyteller when I feel her emotions even though I can't speak her language.  If you want a nice introduction into the Joshi world, I'd start by watching her."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: lostinjapannyoutubewrote on 04.01.2025:[9.0] "The Ace of the promotion and a near perfect build for THE joshi wrestler of my dreams. The next two or three years we will be treated to her prime talent arc."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Rivermanwrote on 01.09.2024:[7.0] "Have to agree with some of the more mixed comments on Miyu. She has her moments and at her best, she can have truly great matches with some wicked strikes and physicality. However, I can't quite call her elite because of a lack of consistency and ocassionally underwhelming performances in my opinion."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Machinedwrote on 05.01.2024:[8.0] "This is a weird one to review because even though I think she's a good wrestler, she stayed in the same company for over 10 years now and the lack of versatility in her opponents is not great. However, whenever she faces one of the pillars or someone like Miu, it's really good. Sadly when I see her wrestle in the US she kinds of disappoints me, for example against Rosa or Athena they are not bad matches but I feel like she doesn't really live up to the hype I'm expecting from her. Good striking abilities (they are better kickers out there), awesome Skull Kick though and her death stare looks like she'll kill you in an instant."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: skillgullwrote on 11.12.2023:[10.0] "Probably the coolest Joshi and definitely one of the coolest in the world. Able to have stunning matches with anyone, I always tend to enjoy her matches as she dominates her opponents. Awesome and the epitome of badassery, the ace of TJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: chibimattywrote on 02.08.2023:"Left-field comment, but I wouldn't mind seeing Miyu in the House of Black. The dark gear, the deadly eyes peeking out over a mask, the stereo spinkicks with Malakai Black, I think Miyu could play a really dark heartless character, kicking heads off all and sundry in the women's division"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: theshelfableswrote on 17.07.2023:[6.0] "TJPW's ace has a great moveset. An arsenal of kicks that all look great, some great running offense (I love Crash Rabbit Heat and that jumping lariat she does) and even a pretty sweet release German suplex. She's strong and makes for a pretty formidable final boss and a good representative for TJPW abroad. She can also be a bit of a lovable goofball and pretty funny when the situation calls for it, which in her home promotion, it can quite often. I like Miyu and she honestly seems like a real sweetheart outside the ring. She does unfortunately have one critical flaw that keeps her lower than she should be for me. Her selling is very inconsistent. Especially so for limb work which is super odd given how diverse her moveset is. She doesn't need her kicks to win so its very strange when an opponent goes in on her legs and she just ignores them and leads with kicks anyway. It's even worse if god forbid a rookie has their debut match against her. I don't think she buries anyone on purpose or anything but I do think she has a lot of work to do when it comes to making her opponent look good. I know Miyu cares very much for TJPW and I really want to see her get to that point where she can elevate the talent she works with alongside herself."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Bullshark1wrote on 12.01.2023:[8.0] "Miyu Yamashita is so talented, but sometimes doesn't live up to the hype. I've seen her in joshi leagues like TJPW to American indies promotions like DPW to massive companies like AEW, and it's all the same. She's a great striker, but her move-set isn't limited to just that. She's got limited charisma, and her character is good but not great. She's fine where she's at, though, with a big fanbase of people who adore her."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: suff3rwrote on 12.10.2022:[10.0] "Just about everything you could want in an ace. Her sense of measure and pacing are unparalleled in the wrestling world. Everybody talks about the kicks and yes, of course her kicks are perfect, but the truly great thing about Miyu Yamshita is her ability to tell a story with her body, the way she moves in the ring--especially against one of her juniors--tells you everything you need to know even if you don't speak a lick of Japanese. Only a few wrestling matches have ever made me cry, and Miyu Yamashita is in most of them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Caaswrote on 14.08.2022:[4.0] "I don't get the praise here. Every month or so, I hear about this must-see MOTYC featuring Yamashita, and upon watching it I just end up completely perplexed. Sure, her offense looks pretty good and crisp, but she does not sell anything. She bumps like a trainee, with arms stretched out and making zero effort to legitimize impact, as if bumping in professional wrestling is just an obligatory task between performing more of your own spots. Her matches, even in loss, seem way more focused on herself than it ever is to working to elevate an opponent, in a very Shane Douglas-esque way. But her kicks are nice and she does a great bridge, so just like Logan Paul at SummerSlam 2022 impressing the world with a simple top-rope splash, I must be wrong and she's actually brilliant."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Wrestling Foreverwrote on 04.08.2022:[9.0] "Wahnsinns Joshi und was für harte Kicks sie drauf hat da ist der Sportliche Hintergrund Karate absolut klar."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: CrionJBwrote on 25.07.2022:[10.0] "If your belief is that anyone can get a striker gimmick over and all she does is kick people and go home, well, I guess you don't watch the worker or the promotions. There's a reason high-level workers like Yamashita get over the way they do with regional crowds like DEADLOCK Pro Wrestling and Garden State Pro Wrestling, and why she's the ace of her home promotion TJPW in Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Penguinowrote on 24.07.2022:"While good, vastly overrated. She is not only nowhere near the best in the world, she isn't even near the best in her own promotion."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: nWo-Joshi-Guywrote on 21.07.2022:[9.0] "Amazing wrestler but not perfect in my opinion. Brilliant kicks. Some of her big matches leave me a bit disappointed sometimes; although they are still very good of course. Out of her and Stardom's Syuri (top billed mostly serious Joshi striker types yet sometimes wacky) I prefer Yamashita; and yet she is far from one of my favourites in TJPW (really shows how awesome the roster is)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Ma Stump Pullerwrote on 14.06.2022:[7.0] "While functionally solid within the environment of TJPW, Yamashita's lack of range beyond "hits hard" is something of a issue that many don't really tend to acknowledge. It's fine within the vacuum of TJPW as she's one of the few acts there that feels and acts like a big deal, but it's definitely something of a problem as those types of gimmicks tend to get stale if the person doing them doesn't drastically change how they wrestle. Both Kenoh and Nakajima have had to drastically adjust their character and gimmicks around in those same cases: the issue is that Yamashita's range is nowhere near those two and I honestly can't see her playing any other character than the exact same one she's been doing for essentially the entirety of her career. Her charisma is certainly there and she's fairly solid at carrying far less capable talent to her level, but as a whole package, there's definitely some issues in terms of originality. Her tag work is VERY hit and miss but that's usually because of the quality of opponents she typically has to share the ring with. Her kicks mostly look good (especially in a isolated GIF environment as people tend to see them as) but in matches they can look a bit dodgy at points and she wiffs a surprising amount at times. Her selling is also something that tends to be very varied, at times feeling like she just easily shrugs off offence and sustained limb work to get her own shit in, which is a annoying habit that irks real bad, especially in big match formats. She's still a very solid wrestler as a whole, but there's obvious issues that I think restrict match quality a lot of the time."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: GriffinXwrote on 06.05.2022:[10.0] "Its easy to see why she is TJPW's ace. In a company that doe a lot of comedy she brings that level of seriousness need to draw fans in and keep them hooked."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Mizzle Assault Antwrote on 21.01.2022:[10.0] "Absolutely awesome wrestler. A tiny murderer of the highest order, with the dead serious face to match and kicks that will actually kill you."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Moderaswrote on 17.01.2022:[10.0] "My favorite female wrestler and an amazing wrestler no matter the category. Carries herself like she knows she is a big deal, and always delivers at match time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: k97wrote on 31.12.2021:[10.0] "Very smooth in the ring. I don't mean this as a slight to either person, but watching her makes me think of a smoother shinsuke nakamura. Whereas nakamura is incredibly jerky and violent, Miyu always looks very fluid and graceful moving around the ring while having her own great signature kicks. Has a really cool look and presence as the champion and ace of TJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: NoSellwrote on 25.11.2021:[10.0] "She's far and away the best performer in TJPW and one of the best current female workers in the whole world, probably top 5, if not that, definitely top 10. The Skull Kick is an insane move and it looks better every time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Navidwrote on 11.09.2021:[7.0] "I like her moveset and she has decent match building skills, wrestling wise she is one of the best, but that's not what it's all about. Every time I see her I think she looks like a superstar, she has this look when you see her for the first time. But after a few minutes you realize that she has no facial expressions and actually only a very limited charisma. Her matches therefore only work if her opponent pulls her along with her charisma, which is why it would be better if she would work Heel, which she actually doesn't do. It would be interesting to work with her on this problem, but no one seems to be doing that."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Lalo Camposwrote on 02.09.2021:[10.0] "One of the best Joshi wrestlers that I have ever seen in my entire life, the truly Ace of TJPW and a future legend of Puroresu"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Zaubernmannwrote on 02.07.2021:[6.0] "Zu schwer, um ein Darsteller zu sein, den ich gerne auf einer Karte sehen würde, weil Sie bereits wissen, was Sie bekommen werden. Vielleicht wird sie sich entwickeln."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: MikKeyEdwrote on 16.05.2021:[10.0] "For a little more than half a year, I have been a big fan of Miyu and during all this time I was not dissatisfied with any of her matches. Best girl and joshi in this world!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: metagodzillawrote on 07.05.2021:[7.0] "Solid work but the striking gimmick is a dime a dozen in not just joshi but wrestling in general. She might evolve her style over time."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Traum Einhornwrote on 30.04.2021:[7.0] "Ich liebe die Kampfkünste, die sie einsetzt, auch wenn ihre Form manchmal nicht stimmt. Keine große Spielerei, aber sie kann rechtzeitig etwas finden."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Grissomwrote on 20.04.2021:[10.0] "Miyu Yamashita ist das Ace von TJPW und wohl die beste Joshi Wrestlerin im Roster. Ein komplettes Allround Paket wenn man so will. Dazu sehr charismatisch und mit einer sehr coolen Ausstrahlung ausgestattet. Ihre großen Singles Matches enttäuschen so gut wie nie."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: yzarcniogmiwrote on 19.04.2021:[7.0] "Good striking stuff of course but a bit repetitive and the same type of character of any joshi striker."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: AmarantCoralwrote on 17.04.2021:[10.0] "Phenomenal athlete, possibly the greatest female wrestler in the world today and a strong contender for the title regardless of gender. Unmatched striking ability and ridiculously clean technical form, very Danielson-esque while upholding the puro style."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Kungwrote on 14.04.2021:[9.0] "While there are many wrestlers in TJPW who entertain me, there is no one else in the promotion who I enjoy watching work between the ropes than their ace, Miyu Yamashita. She's a special talent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: pierreMinnewrote on 27.03.2021:[10.0] "Miyu Yamashita is one of the very bests female wrestler in the world. She has all, her in ring is awesome, she is very charismatic and got some of the bests kicks of the joshi. She is one of the first I really loved in TJPW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: THATSGOTTABEKANEwrote on 18.02.2021:[10.0] "The Ace of Tokyo Joshi Pro Wrestling. So good and very lethal with her legs that it's basically a lethal weapon at this point. I don't remember when it took place but I saw a clip of her doing a very mean spinning back kick to Mirai Maiumi and it had looked and sounded like she took her head off (absolutely brutal). Everything she does in the ring is great and just looks good this why she is undisputedly the ace of TJPW, my favorite Joshi wrestler right now, and an absolute badass in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Hawksrule996wrote on 28.01.2021:[10.0] "One of the best wrestlers in the world with so much intensity her kicks are some of the best and her selling is top level she is equally good against men and women truly a special talent"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Chekerwrote on 30.12.2019:[8.0] "Yamashita to me feels like the best wrestler in Tokyo Joshi by a comfortable margin. I think the only other woman there you can compare her to is Nakajima Shoko, but she loses because she does comedy sometimes. The way she moves, the way she puts on moves, the way she sells, she's just on a league of her own, and it shows."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: ooomegooowrote on 08.11.2019:[8.0] "This girl is good. No, she just one of the best strykers in the world. It would be interesting, to look her to face for Konami from Stardom, or Arisa Hoshiki. But last time, I see her in the DDT, versus Kenny and Riho, and that was great. She must go to bigger promotion, she overgrown TJPW as same a Sakazaki. Or maybe TJPW must grow up? I don't know, but for this moment, Yamashita-san earns 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: cuervonegro83wrote on 27.08.2019:[9.0] "When I saw Miyu for the first time I feeled she was a champion. When she enters the ring you can feel that thing some wrestlers have. Then when the match starts, when can see she is a striker but also a great technician, I always like wrestlers that use kicks and Miyu is a good one doing that, she also uses punches, knees and some moves to put some variety in her matches, so Miyu's matches are always a good choice to see good wrestling matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: cmchampwrote on 05.05.2019:[9.0] "Her rating is soooooo ungenerous! This girl is amazing, she can bring a good match out of anybody and has the charisma of a leader. She has a bright future ahead."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Yapperman3wrote on 06.09.2018:[8.0] "the kind of wrestler you can put as the face of your company. very solid in the ring and also kind of a lovable dork in real life"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: gerrystumbaughwrote on 10.05.2018:[8.0] "Really just keeps getting better. Miyu is basically the only reason I follow TJPW but her main event singles matches are well worth seeking out."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: samotwrote on 22.01.2025:[7.0] "He's a good worker all around and the Crow character was awesome but as someone who was born in the middle of the Monday night wars and therefore wasn't familiar with Sting until maybe 2013, I never had that connection one makes with the top guys of their youth with him as I was already "smarkified" by then."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Big R3d Mach1n3wrote on 19.01.2025:[10.0] "Whether if you want to address him by anyone of his nicknames "The Stinger" "The Vigilante" or "The Icon", Sting was my absolute favorite wrestler in WCW. I've always hated the fact of the wasted potential WWE did once they finally got Sting."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Impact 33wrote on 14.01.2025:"One of greatest wrestlers of all time. He was WCW franchise wrestler. My favorite sting is the crow sting because that what I grew watching him wearing the black and white facepaint."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: AntiCMwrote on 28.12.2024:[10.0] "Sting... How can we talk about him, he is one of the few people in the history of wrestling who has remained successful throughout his career, I loved this whole industry with him and I am grateful to him. Regardless of his age, he was at a certain standard in the ring and his promos were always valuable. He adapted to every role he acting in the best way. If someone asks who the icon of wrestling is, it must definitely be Sting."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Unrightwrote on 26.12.2024:[7.0] "Sting had presence. Sting had charisma. But Sting is not a legendary wrestler. He had his basic move sets and spots. But he never really pushed himself or tried to elevate anything. I never really got the sense that wrestling was an artform or that he particularly enjoyed it. He's fine. Like I said, his charisma makes him above average. But he wasn't legendary."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: JuanLocowrote on 22.12.2024:[10.0] "Surfer Sting, The Crow Sting, Wolfpack Sting, The Icon Sting, Old School Sting, TNA Sting, The Main Event Mafia sting, Joker Sting, WWE Sting, AEW Sting as a mentor... The ability to reinvent himself over and over again and be successful in each one is something that only Sting knew how to do throughout his career, incredible psychology and skill and a legendary finisher."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ItsAllAWorkAnywaywrote on 04.12.2024:[9.0] "Sting was the ultimate "9.5" wrestler in that he should be in rarified air because of his visibility, but his runs all too often found themselves overshadowed by other wrestlers. "Surfer" Sting of the early-90s was a main eventer either because of luck (he beat Flair with a roll-up when he won the NWA World Championship) or because they needed to move the belt from Luger to Vader. In the latter 90's, Crow Sting came and captivated audiences... until a convoluted finish at Starrcade 1997 set the stage for WWE to mount a comeback in the "Monday Night Wars." Many clamored for a Sting-Undertaker feud, but Sting would instead go to TNA and would have his only "WrestleMania moment" being that where DX vanquished nWo for good... and roughly 20 years after the feud was relevant. Retiring as AEW World Tag champion in the latter stage of his career, Sting can at the very least claim to have titular accomplishments in WCW, TNA, and AEW."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Zak22wrote on 20.11.2024:[8.0] "A deserved legend, Sting had a long and very successful career. My personal favourite of Sting's runs is his original NWA/WCW blonde surfer Sting run, he was so good at being that traditional, exciting and energetic babyface and he had some pretty good matches against the likes of Vader in that era and for me he was the best babyface definitely in North America and maybe the world at the time. The Crow Sting character and storyline was fantastic but the matches weren't great until mid-1998 and then Sting's quality became better and more consistent, especially those matches against DDP on Nitro. TNA Sting was inconsistent due simply to age but not bad by any means. Didn't watch his WWE or AEW runs. So yeah, deserved legend, not the most consistent over the course of his career but a lot of highlights and good periods."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Green Deliwrote on 04.11.2024:[10.0] "When I started watching wrestling in the summer of 2018, Sting was considered retired, and I had no real way of experiencing what made him one of the all-timers. That is until he came to AEW, and proceeded to have the best run in AEW history. Even though he was protected in tag matches, he still put on barnburners at 63 years old with bumps through tables, dives off stages, and playing the hits like the 6 years he spent in retirement didnt even happen. And that doesnt even scratch the surface of what hes done; hes had all-time great feuds with Ric Flair and Vader, set the standard for retirement matches that John Cena and Hiroshi Tanahashi should be working their asses off to top within the next year, and was always over with the fans. Even though showtime is over for Steve Borden, hes finally able to look back and smile, because he may have had the greatest career a pro wrestler has ever had."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Brando Calrissianwrote on 01.11.2024:[10.0] "Sting is a legend who wrestled in 5 different decades, reinventing himself and the industry whenever he needed to. Sting was a legend in WCW and TNA, mishandled in WWE which wasn't his fault, then ended his incredible career with the run of a life time in AEW. Sting has been the clean cut babyface star, dark anti-hero, crazy villain, stoic father figure, and really any role that you could think of. Sting deserves everything, and has earned his perfect retirement match and time to rest."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: lukasmgcwrote on 19.10.2024:[8.0] "Don't get me wrong, he's an icon. But he never had that "wow" singles match for me. Something that solitifed him as one of the best in ring workers. He never had that. Yes he was really good in terms of character but he never had that greatest match of all time. His run in WCW is legendary though especially during its peak."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: maven loverwrote on 14.10.2024:[10.0] "Definitely one of the best wrestlers to ever do it. He has aura & promo skills for days, & his work in prime-era TNA was especially unforgettable & so physically dynamic. His longevity game was among the best in the industry, & the way he was moving around & bumping through his AEW days seems to indicate that he could have probably gone longer, if he so wished to. The industry seems like a hole was truly left there without his presence, & it's a shame that a simple google search does nothing to indicate what Steven Borden may be up to backstage these days, if anything. I look forward to what Sting's son, Steven Borden Jr., will be able to bring to the table once his training has been deemed adequate."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: sKiaWeVwrote on 14.09.2024:[8.0] "Sting is part of a category of wrestlers who can't wrestle to the current standard but more than make up for that with their character and aura. Sting is for a lot of people the most iconic character in wrestling and although I didn't watch WCW when I was growing up, I find it hard to argue that he doesn't have a legendary aura (even in his older age)."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: SavageTygerwrote on 13.09.2024:[9.0] "Sting is 3rd favorite wrestler ever, so I am not unbiased. His career spanned 40 years which is insane. At the same time, I regret every second of his WWE run (outside of having him in the games) and loathe his AEW run probably even more since he was stuck with Darby Stuntman, and Sting in the NWA, WCW. TNA was among the most energetic and charismatic wrestlers in the world. Sting managed to recreate himself multiple times and even tried ill-fated heel turns later in his career...nobody was going to boo Sting."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: jsbortswrote on 08.09.2024:[8.0] "Sting is 99% Aura and 1% working ability. He cuts one hell of a promo, but man oh man there's so many weak spots in this guy's in ring career, and a lot of it to no fault of his. Sting's aura and charisma has always outshone his in-ring ability, but he's undeniably one of the most important people to North American wrestling television."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: OneSuddenBOOMwrote on 04.09.2024:[10.0] "This guy had, has and will forever have aura. The longevity of Sting is insane and he's absolutely smashed it wherever he's been in his long, illustrious career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: wrestlingswiftiewrote on 26.08.2024:[10.0] "I strongly prefer him over the Undertaker, any day. This guy had the presence, star power, and "aura, " as the kids would say. He could talk with believable promos that showed his charisma too. Also, his ring work is vastly underrated by modern fans. He didn't feel slow and sloppy like Taker, but he also didn't overuse the big moves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: namisuzwrote on 22.08.2024:[10.0] "One of the greatest of all time, being popular and a legend like this outside of WWE, He is just incredible and I like him more than others."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BizarroMaskwrote on 02.08.2024:[7.0] "He is not the biggest in ring performer, he was great guy ; was able to put the Light on several wrestling company and we can thank him for that. He single handely carry WCW throught all the 90's , had great matchs in TNA , and a short but entertaining run at WWE. A man with a complete wrestler , just not my kind."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Willie 19200wrote on 28.07.2024:[10.0] "Easily one of the most influential and talented wrestler anyone would want on their roster. Sting is a guy, who even with his older age, continued to put on great matches. His matches with Ric Flair in WCW, to taking over TNA. I will say his WWE career was not stellar but that's not his fault. But his AEW stuff felt special because although he was undefeated, he still put people over along with one of favorites Darby Allin. He is easily one of the greatest to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: tyotewrote on 19.06.2024:[10.0] "Simply one of the greatest of all time. From his days as the energetic, neon-clad babyface taking on Flair and the Horsemen and ushering in a new era for NWA/WCW, to his dramatic character shift as "Crow" Sting, to his twilight years working as the grizzled veteran against many of the top stars of the last 15 years, there will never quite be another wrestler like Sting."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Rassle Fanwrote on 29.05.2024:[10.0] "One of the greatest superstars in the history of wrestling. He went from an explosive, high flying, ultra babyface to a brooding, menacing, force of nature. There's nothing he couldn't do. Maybe his promos were a little weak but the Joker Sting version provided some of his best ever. Very late in his career in AEW he actually had some natural, relaxed, thought out promos. He took great care of himself and until further notice has the greatest final run of any of his peers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Red Mage Riotwrote on 02.05.2024:[10.0] "Ignore his WWE run, it's a blip, but other than that, one of the greatest of all time. Look, charisma, talent, he was a complete package that you want out of a pro wrestler, and was able to adapt to the times as well."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Teebawrote on 04.04.2024:[9.0] "Not much to say about Sting that hasn't been said, his legacy speaks for itself. Me personally, I fully respect everything he's accomplished but wasn't a big fan of his in-ring work in the 2nd half of his career, I know that wasn't entirely his fault in the later years of WCW but in TNA he was already past him prime and couldn't go as well. Props to AEW for giving him a heroic final run and letting him go out in style. We salute you Sting."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MoAli1wrote on 14.03.2024:[10.0] "Forever the GOAT - [ ] Sting is 11-0 against Hulk Hogan. Including 5 PPVs - [ ] Only man to hold the NWA, TNA and WCW title. - [ ] Only man to hold the WCW, TNA and AEW tag titles in a career. - [ ] Sting wrestled in the main event of WCW highest grossing PPV ever - [ ] Only man to main event PPV of NWA, WCW, TNA, WWE and AEW in a career. In addition, Pro Wrestling Noah and WWC -[ ] Only man to be involved in WCW, TNA, WWE and AEW video game - [ ] He was a key figure to to make WWE the second best promotion for a while. - [ ] He wrestled generations of wrestler from Abdullah the Butcher, Harley Race, Iron Sheik, Hulk Hogan, Randy Savage, Stone Cold, Kurt Angle, John Cena, AJ styles , to MJF in a career - [ ] He beat 17 former WWE champions in single matches even though he only had 4 matches in WWE. - [ ] First man to main event PPVs in the 1980s, 90s, 2000, 2010s and 2020s - [ ] Second man to be an active WWE hall of fame member after Flair. - [ ] He put Cactus Jack, Goldberg, Samoa Joe, AJ styles, Magnus, Darby Allen and many more over in his career. - [ ] Received two 5 star matches in a career, and rated number 1 wrestler in the world in 1992 in Wrestling Observer. - [ ] 1990 he won wrestler of the year - WO - [ ] Oldest TNA world champion - [ ] Oldest AEW tag team champion - [ ] Most WCW PPV wins with 55, next wrestler being 35 - [ ] involved in 6 of the 10 most main event TNA PPV buys -[ ] He was the longest wrestler to recapture the NWA world title from 1990 then won it again in 2006. (16 years) -[ ] Involved with many great tag teams and stables from Road Warriors , Steiner Brothers, Harlem Heat, Four Horseman, DX, NWO, Bullet Club, Main Event Mafia, Dudly Boyz, Hardy Boyz and Edge and Christian, Rock and Roll Express, Midnight Express and Young Bucks -[ ] involved with wrestling Japanese greats from Antonio Inoki, The Great Muta, Tatsumi Fujinami and Jushin Thunder Liger -[ ] First man to be inducted to TNA hall of fame. Then the first man to be inducted to both TNA and WWE hall of fame Ladies and Gents, we say goodbye to the GOAT ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: AmirTheEnforcerwrote on 12.03.2024:[10.0] "What can be said about this living legend? ! You name it and he's been there and done that. I believe there is not a single area where he falls short because he's always delivered and delivered with finesse, not only that but this gentleman has also aged like fine wine and never gone stale. Sting is the epitome of pro-wrestling and should be studied by fans and people in this industry."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CDProsProwrote on 08.03.2024:[10.0] "Trained by Red Bastien initially supposed to be a tag team player with the ultimate warrior but would be known as the icon. He is the man called Sting. And 2146 matches later would retire on a very powerful note, almost forced retirement fighting for the WWE world championship to retiring on his own terms as world tag team champion with a perfect record of 28-0 in All Elite Wrestling. Thank You Sting, Wooooooo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: SchenzenJohnwrote on 06.03.2024:[6.0] "Aus verschiedenen Jahrzehnten hatte ich mir nochmals anlässlich seines Abschieds aus dem Ring einige seiner wichtigsten Matches angeschaut. Er fällt meiner Meinung nach eher in die Kategorie Entertainment statt Wrestling. Nicht falsch verstehen vor allem Ende der 80er/Anfang der 90er hatte sein Moveset Dynamik und Power und konnte somit etwas davon ablenken , dass dieses aus vielleicht 5 Moves bestand. Schaut man sich zwei Matches hintereinander an kommt deshalb schon etwas Monotonie auf. Ich mag den Stinger , gerade als Kind bei der TNA mochte ich ihn sehr. Genau dass ist nämlich das , , Ding" als Kind sieht man das mystische und coole als Erwachsener dann eher den Skill der hier wie erwähnt recht limitiert ist. Man kann sich gerne von Nostalgie leiten lassen aber für mich gehört da mehr zu. Zum Schluss muss ich sagen ( dies würde die Wertung deutlich runterziehen , deshalb nicht inkludiert) waren die letzten 10 Jahre ein Graus, viel zu lange hat der Mann noch im Ring gestanden."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: tlaustinwrote on 06.03.2024:[10.0] "Someday I'll edit this with a heartfelt ramble. But you already know it's Sting. (Sorry, it's SSTTTINNNGGG) So there's not many people wandering this site that need to be convinced of how great this man is, both as a figure and as a wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Dirty Diegowrote on 05.03.2024:[9.0] "One of the greatest stars outside of the big machine wwf/wwe in the 90, s , apart from NWO , Sting was the guy had some great matches in the early 90, s and had a massive transformation when the nwo took over wcw , reminded me of Bruce lee son movie the crow it was a great character that had a lot of mysticisms to it, he got placed as the top guy to take down hogan over a years build for him to beat hogan only for it to get messed up when the ultimate pay off of the storyline happened at starcade 1999 , sting also has had a great success of long gevity in his legendary career his run in tna was good and his Aew run for someone that age jumping of balconys and shit amazes me, about to have his last macth what an icon"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Rocky7wrote on 02.03.2024:[10.0] "I first heard of Sting not on TV, but in the school playground in the mid 1990s when another boy brought in WCW The Main Event on the Game Boy. I had only known the WWF and World of Sport by then, and was interested in there being other American wrestling. They told me WCW was real. Of course it wasn't, but when I started watching, the connection this tanned dude with face paint and a blonde crew cut had with the fans was incredible, and the battles he had with the likes of Vader, Rick Rude, Cactus Jack and Ric Flair. Then the Surfer morphed into The Crow to battle the evil New World Order led by Hollywood Hogan (we won't speak of the match, or then him joining the nWo, albeit the babyface version the Wolfpac). After the end of WCW, Sting eventually joined TNA, and was the bridge from one era to the next. Things weren't perfect there, but his run in the Main Event Mafia and then as "Joker Sting" were memorable. It was cool then to see him against younger guys like AJ Styles and Samoa Joe. The much hyped WWE run didn't go well with a badly booked match against Triple H, and the match with Seth Rollins where we thought his career was over. But then came the AEW run that gave Sting the respect he truly deserved, where he exclusively teamed with Darby Allin, and was awesome every time. Seeing him in New York City where he reunited with The Great Muta, and at Wembley Stadium in front of the largest crowd he ever wrestled in front of were great all time live memories for me personally. Sting has been a constant for the majority of my time as a wrestling fan, and I will be very sad to see him go, but at the same time, very happy it's on his own terms and as a celebration of his lengthy, glorious career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BallOfYharnamwrote on 09.02.2024:"Out of all of the big names in western wrestling throughout the 80s and 90s, Sting is easily my favourite. The fact that he is still going strong and doing crazy spots in AEW is a testament to his genuine love for professional wrestling. He is retiring in less than a month as I write this, but what a career it has been for Stinger. (10/10)"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: mothmanwrote on 08.02.2024:[10.0] "One of the most iconic wrestlers in every single promotion he's worked in. I can't imagine any better person to have on a roster, no matter what role he's filling. From his glory days in WCW, to his usually-fun TNA run, to the phenomenal last few years in AEW, Sting has proven time and time again, decade after decade, how incredible he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: macadon1987wrote on 08.02.2024:[10.0] "Sting was the banner of WCW amidst the defection of Luger, Flair and the Steiners in 1992. Sting almost single-handedly kept the company afloat with memorable feuds against Vader, Steve Austin and Mick Foley. The second half of the 90s were a difficult time, with bad writing and backstage politics leading to the infamous botch of Starrcade 97, but the fans still loved the man in spite of it. As an in-ring performer he was an 8, about 6 on a promo and 10 on a look. Sting is an example of a very good, but not great worker, yet his charisma more than makes up for that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: kcharles520wrote on 30.01.2024:[6.0] "Sting hasn't really been good since the mid-90s and while his late 90's gimmick in WCW was pretty cool, he couldn't deliver in the ring on the same level. He's stayed way too long in the business and has become nothing more than a "nostalgia act" reminding people when wrestling was really popular and cool. Overall one of the more overrated "legends" who peaked in the late 80's, early 90's and has been riding that wave way longer than he should have. Sting has been too reliant on coasting on people's nostalgia for him the 2nd half of his career simply to cash more checks. Solid during his peak, but wildly overrated in the grand scheme of things."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MoodyLizwrote on 13.01.2024:[10.0] "Sting is an absolute legend on par with the best of all time. Better, even. From his early days as the surfer-inspired hero to his later enigmatic persona, he displayed remarkable versatility. Sting's commitment to storytelling in the ring, combined with his unparalleled charisma, has solidified his status as one of the all-time greats. Never had to turn heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: glisteningmelonwrote on 20.11.2023:[10.0] "Hes the greatest of all time, sue me. No other wrestler has undergone as many character changes and remained one of the hottest acts in wrestling. Literally wherever the dude goes hes instantly over, apart from that one time he went to WWE and they buried him live on Wrestlemania but as we are steadily approaching the last dance with Sting and looking back I have to say hes the greatest of all time. Even now in AEW he is on the run of a lifetime, his teaming with Darby just works so well, and most if not all of the matches theyve put on together have been nothing short of exhilarating. Even at one TNAs weird periods he was undoubtedly the fans favourite, his Joker gimmick was just stellar and he acted the shit out of it and gave us an absolute psychopath to cheer for. I think when all is said and done in years to come Sting should be considered the greatest wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: JediSaiyanMaster1203wrote on 18.11.2023:[10.0] "From humble beginnings in The Blade Runners tag team where he was, along with his partner, a godawful performer in the ring, then goes on to become a legend in the business. Unlike Warrior, Sting went on to improve massively as a wrestler and had longevity on his side. Sting truly began in WCW in the late 1980s/mid 1990s as the surfer Sting where he had bright neon colors and bleach blond hair, where he was a white hot babyface and played it to perfection. Most notable feuds during this time where with Ric Flair and Vader, which you could make the case that it's the best David vs Goliath feud of all time. Then the late 1990s came around, the culture as a whole changed and so did Sting, where we got the gimmick he's been riding with since then, The Crow inspired gimmick. While Sting's surfer gimmick gave us his best match, Sting's crow gimmick was where the charisma was being showcased, always captivating despite never saying a word (ignore the bad bookings during that time). Sting's run in TNA was also great, his WWE run wasn't and his current stint in AEW is great, the prime example of how to book an established legend. Overall, Sting is one of the all time greats to ever do it, he was the total package if you ask me, he deserves every ounce of praise he gets from the fans and his peers."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: InsertFunnyNameHerewrote on 27.09.2023:[10.0] "When a man's heart is full of deceit, it burns up, dies, and a dark shadow falls over his soul. From the ashes of a once great man has risen a curse, a wrong that must be righted. We look to the skies for a vindicator, someone to strike fear into the black hearts of the same men who created him. The battle between good and evil has begun. Against an army of shadows comes a dark warrior. The purveyor of good, with a voice of silence and a mission of justice. THIS. IS. STING. To put it likely, Sting is probably the biggest star in the history of wrestling to never have a very long WWE run. He was the face of WCW at their peak, and for that matter, most of their existence, a proven draw and had legendary rivalries with the likes of Ric Flair, Big Van Vader, Lex Luger, and of course the NWO. The Stingers influence on wrestling is hard to measure, he has almost and Undertaker level of mystique and aura behind him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Emanuel606goatFwrote on 19.08.2023:[10.0] "One of the GOAT'S, one of the best in history, the icon, marked a generation and continues to mark today. Sting is simply THE man! one of my all time favorites.... Carried Impact/TNA when things were pretty lackluster over there, and now does a great job in AEW too! of course.... there was his time in WWE, which in my opinion was pretty cool, apart from Wrestlemania.... that wasn't supposed to be that way, they turned Sting into a WCW guy, which was the biggest fear of it happening if he went to WWE... and well, it happened. but anyway, this guy is one of the few that deserves 10. Love u Sting!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: crs285wrote on 03.07.2023:[9.0] "Sting is a timeless veteran. Has had great runs in multiple companies basically everywhere he went outside of WWE. Sting has a great character who can cut a great promo and go in the ring. The fact that he can still wrestle at a high level at his age is amazing."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Ferenikwrote on 22.06.2023:"Absolute Legend, Understands his place as a Legend and enhances the talent he works with. The Character is well protected and still has just enough of the mystical flare that keeps it fun."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: danzitorockwrote on 20.06.2023:[10.0] "Sting is truly a wrestling icon... his gimmick is legendary, unique and fantastic, and it has worked everywhere he has ever stepped foot, be it WCW, TNA, WWE or AEW. Of all the legends that TNA brought in at one time, Sting was the only one that fully functioned and brought benefits to the booking and the company, acting productively and doing a lot of good. He produced legendary moments despite not having the best booking for most of his career and being in difficult situations. His desire to contribute positively to wrestling is inspiring and amazing to see."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: mizzyshawrote on 14.06.2023:[10.0] "Not only one of the best wrestlers to ever exist, but essentially the only wrestler to keep wrestling after age 60 and not totally embarrass himself. Politics of the business that have held Sting back aside, the man is perfect at just about everything he does. Nothing but great gimmicks, great promos and great wrestling. As an Attitude Era guy, I was always maliciously envious of WCW for having the best character in their repertoire."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Giantfan1980wrote on 07.06.2023:[7.0] "Sting was the icon of WCW up until Hogan came to town and he quickly got shuffled down the card and would hang out in the US title and tag division until Hogan went Hollywood and then they brought him up to be the guy to take the belt away from Hogan. Sting really fell off in 1997 after hanging out in the rafters for a year and his ring work is rather lethargic when compared to his late 80's early 90's WCW tenure. Another guy who stuck around too long."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: bexhloopwrote on 18.05.2023:"Sting is the only 10/10 wrestler in my eyes. Has stood the test of time and has never had a dull moment. His gimmick will never get old to me and I can see him doing this for just a tad bit longer but I hope he takes care of himself and retires soon."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Wizz21wrote on 30.04.2023:[10.0] "Absolute Legende - keine Frage. Wenn er eines Tages zurückgetreten sein sollte , bekommt er von mir auch die vollen 10 Punkte. In der jetzigen Form als TNA Mainevent Opa allerdings eher nervig. So langsam könnte er mit dem Wrestling auch ruhig mal aufhören Edit: seitdem er das Joker Gimmick benutzt gefällt er mir wieder deutlich besser, daher ein Punkt rauf! Edit: Ab seinem AEW Run eine glatte 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Sick Lebowskiwrote on 12.04.2023:[9.0] "Für mich das absolute Aushängeschild von WCW. Sein Crow-Gimmick als Heilsbringer gegen die nWo war seinerzeit natürlich genial. Allerdings muss ich sagen, dass mir der bunte Surfer-Sting alles in allem besser gefallen hat. Wird auch heutzutage noch spärlich und damit genau richtig von AEW eingesetzt. Einer der ganz, ganz großen Namen der vor allem 90er Jahre."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Conquistador37wrote on 22.02.2023:[10.0] "To me Sting only exists to a certain point; after he became "The Crow", he was no longer my Sting". My Sting rose from being a very clumsy and overly excited rookie to a somewhat clumsy hero for the underdogs. My Sting is neon clad, blonde haired and howls with fury. His matches against Vader will go down as THE David and Goliath classics and he had excellent chemistry with Ric Flair, Rick Rude, Cactus Jack and The Great Muta, along side many others. My Sting made me care and cheer my lil Stinger guts out. After the nWo ruined everything (including Sting) I stopped caring, his post "surfer" run to me has nothing I want. If I did I whole career perspective: I would begin deducting points and doing naught but lamenting the loss of my hero, but we won't torture ourselves. My Sting (88-94ish) is a solid 10. (ps: still absolutely LOVE his theme songs: "Rattlesnake Whip" & "Turbo Charged" ! )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Leth99wrote on 10.02.2023:[10.0] "He had everything and won everything in his life and is one of the GOATs, yet he got so much shit throwned at him. His first "main star" run in 1990 was made bad by the Black Scorpion stuff, he got kinda lost in the shuffle in the mid '90s despite being super over, the nWo angle was destroyed by Hogan in '97, his performance in the late '90s got worse and worse, his first TNA run wasn't all that much, his '06-'07 run was stupid with the Abyss stuff, his main event mafia run was amazing but it ended so poorly, his '11 comeback was destroyed by Jeff Hardy, his joker phase was overshadowed by the stupid Aces and Eights fiasco, his WWE run was tragic and now in AEW he's finally the legend he needed to be. His evolution during the years is amazing and he got SO MANY amazing matches and promos during the years that the good overshadows the bad that was given to him. The Icon Sting."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: homunculuswrote on 13.01.2023:[10.0] "Sting oozes charisma and oozes a special presence when he enters the ring. On top of this, he is great in the ring. Overall, Sting is a legend of the business and a lot of your favorites wouldn't exist without him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: benh2wrote on 12.01.2023:[8.0] "I'll be honest, I've never been a huge fan of Sting but I won't deny his contribution and importance to wrestling history. He was absolutely honking in the ring when he first came in to UWF, but unlike his partner Warrior he learned very quickly and the 88-92 period was easily his best output of his career. Never a great promo although he hit gold with the Crow gimmick; all the stars aligned with that one in terms of him needing a reinvention of his character plus the nWo being red hot to face off against. However, it was always a let down when he got in the ring. He's was a good attraction for TNA and now AEW but I've not personally cared for him in either."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Enriquepollazzowrote on 25.11.2022:[7.0] "Always has been good since I saw him wrestle Flair many times in the early 90's. He was at his absolute peak going into Starrcade 97 with the Crow gimmick and was as hot as anyone in the business and WCW was getting good rating featuring him at the end of every nitro in a mysterious way, but I guess the story goes that because he didn't wrestle anymore to save him during this crow gimmick, and he was wearing the trechcoat so nooone saw his body - Bischoff says he arrived to starrcade untanned and out of shape. I don't get how that's bad enough to kind of destroy the company by screw jobbing the end, but they did it. If they did that perfect and Sting learned how to cut compelling promos? Maybe the Rock WOULD be teaming with Darby Allen right now."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: M3n747wrote on 20.11.2022:[10.0] "What can I say, he was one of my absolute favourites when I was a kid and he still is today. Great gimmick, top-notch in-ring performance (even if a little toned down these days) and for a guy apparently this serious, he is capable of some low-key seemingly-unintentional comedy, which is always appreciated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Ameridragonwrote on 15.11.2022:[10.0] "An absolute legend, overflowing with so much charisma and presence that he didn't even need to talk to make the crowd go wild. In the ring he was incredibly athletic and fast in his younger Surfer Sting years, and then once he became Crow Sting he used match psychology and deliberately paced and placed moves to make excellent matches. One of my all time favorites."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: RavenCrow75wrote on 05.10.2022:[8.0] "Surfer Sting was the one I grew up on and what I can tell you is this: Anybody with any sense could tell this man was special. In my opinion Sting is wrestling's version of what Tommy Lasorda called a five-tool athlete. As an in-ring performer he could wrestle you or fight you, take it to the ground or to the air, beat you in the ring or fight you outside of it and he had the personality and charisma to boot. A legend of his time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "Unpopular opinion but, I really prefer Surfer Sting to Crow Sting. That natural babyface aura he possessed as Surfer Sting was amazing. But anyway, as a whole, Sting is a bonafide legend of the business that is still going on today, though I wish he would retire already, for his own sake."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DammitChristwrote on 12.09.2022:[10.0] "Sting is a freaking awesome overall talent, and he's an iconic legend for sure. He's insanely charismatic. He's a pretty good wrestler, and the fact that he can STILL go in the ring while being in his 60s is just amazing. Sting is also really underrated on the mic. I think the guy is an incredible promo worker. His cool distinctive, powerful voice is PERFECT for cutting promos. He just oozes passion in his delivery. It's hard to believe that this man once went a year (at least) being a silent character at one point a few decades ago."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: GwenCube64wrote on 05.09.2022:[10.0] "A recent interest in Sting has made me fall in love with him. Original crow Sting is an all time character in wrestling history, along with Joker Sting (not kidding). His modern run is a ton of fun and is an irreplaceable talent in history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: nothingleftinsidewrote on 30.07.2022:[9.0] "I would give a 10, but there is one large negative he's got- he has to be paired with a good opponent or else his match will be subpar. I feel to be a true 10/10 you gotta make everyone you wrestle better, and Sting is a guy who has to be carried. That said, he's an easy carry, and he excels everywhere else you need to be an all time great, so he's a 9. He's the icon, the franchise of multiple organizations. He was super super popular for a long time, but mostly in the south. Like I said, not the greatest in the ring, but he had a striking connection with fans both in the ring and also on promos which come to think of it he wasn't the greatest at either. When you've got that kind of babyface charisma it really doesn't matter what you say. He remade himself a few times over which is essential for an enduring gimmick. How he was used in 97 was genius and groundbreaking for wrestling, and he didn't have to wrestle *or* talk to do it. Just the threat of him being there was the draw. In 98 he was the most over babfyace in the biggest stable of all time over babyfaces, the red nwo. His work in TNA is solid; most of it isn't the greatest but the majority of it holds up, even if some of it was unmemorable. You could usually count on him to have a solid segment/match on what was an often disappointing TNA. That goes for late era WCW too I guess. And just when you thought he was done, he came back! And was done. And then came back! Seriously, this guy debuted a year before I was born and most recently wrestled a month ago. I consider him Flair's greatest all-time rival, and the standard bearer for WCW. He had all the intangibles, the stuff between the moves, the way to carry himself, babyface fire. And he's still wrestling! And his work looks good. I know I've harped on it but his stuff did look pretty good and he was a good seller. Truly good babyfaces are hard to find, especially ones with any longevity. As long as you had him with a good hand (unless they're Bret Hart), Sting always produced."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: KSupreme3wrote on 19.07.2022:"Sting is an absolute wrestling legend. During his first run in the white & black facepaint, he made you feel cool just watching him. You just knew you were watching history being made. Throughout his entire career, Sting understood how important it is to pay attention to the small details, such as his ring attire and facepaint, which translated wonderfully on things like action figures and posters. All in all, a wrestling god that should be respected and honored for his contributions to the business."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: benny5bellyswrote on 18.07.2022:[10.0] "If you know someone who doesn? t love Sting, delete their number and get them out of your life. I need one last surfer Sting run to complete my life"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hennewrote on 07.03.2022:[10.0] ""NWA/WCW Legende und auch jetzt bei TNA noch passabel." Update 2022: Lol über meinen Kommentar aus 2007... Der Mann findet mit 62 gerade den New Jack in sich. Unglaublich krass, wie gut er immer noch ist und wie klug er auch bei AEW eingesetzt wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: wewantpunkwrote on 23.02.2022:[10.0] "Wenn man von den Großen redet, dann muss man Sting erwähnen. Sein Gimmick und seine Ausstrahlung sprechen für sich. Er hat mir eigentlich immer gefallen und er tut es heute noch. Darby Allin profitiert enorm von ihm und er wird mit seinen 62 Jahren auch exzellent eingesetzt. Er hat in meinen Augen alles erreicht, auch wenn das Undertaker vs. Sting Match in ihrer Hochphase ein absoluter Traum gewesen wäre. Für Sting springt nur die Höchstwertung raus."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Sting is a god of professional wrestling. He was an amazing tag wrestler with Luger back in the day, amazing babyface singles star, and now AEW's own murder grandpa with his protégé Darby."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: GriffinXwrote on 20.01.2022:[10.0] "The guy that made me a fan. I was little Stinger as a kid. Love his work in TNA and now enjoying this new life he is having in AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CMX-7wrote on 27.11.2021:[10.0] "Icon of Wrestling) Sting is an excellent wrestler with excellent authoritative charisma! His WWE run is probably the saddest part of his career as well as his match (the Jeff Hardy incident) at TNA (( I love his career in WCW, he shone there 100%, and his match at the Final Nitro is very heartwarming! I also want to note that I never found the House Show tape from WCW 1990 where he wrestled with the Undertaker. P.S. In AEW, I really like his duet with Darby Allin and sometimes it's nice to see Icon in the ring and in matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Pandevmoniumwrote on 09.11.2021:[3.0] "He should have retired a loooong ago. His two finishers are ugly and his no-sell gimmick was out-of-date in TNA already. WCW handled his character in a spectacular way and he was still on top of his game by that time though. I loved his rise against NWO, but after WCW folded he just kept living onto those memories and I couldn't really stand him."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Rollforinsightwrote on 06.09.2021:[10.0] "Sting played a huge part in defining the format of wrestling shows. On the list of most iconic, most charismatic, best gimmicks best promos. He has always been a more than solid in ring worker too, for nearly 4 decades! One of the GOAT"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: vaventwrote on 23.08.2021:[9.0] "He has been a constant force in wresting since the late 80's, innovating his gimmick many times along the way. Maybe not the flashiest wrestler in the ring, but he gets the job done, and his extremely solid fundamentals have allowed him to remain a good worker even into old age. I love what he's been doing in AEW, mentoring a young talent while still getting some spotlight in his twilight years. It's a much better ending than getting seriously injured in a match against Seth Rollins."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Zaubernmannwrote on 16.08.2021:[6.0] "Generisch nach der Gesichtsbemalung, aber in Momenten immer noch ziemlich lustig. Meiner Meinung nach nie wirklich sein volles Potenzial erkannt."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: eltetechoriwrote on 14.08.2021:[10.0] "He is the icon of pro-wrestling, he should have had a better ending because today he is the shadow of Darby Allin, however, he will always be remembered as the scorpion that has given us so much joy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Lorenzo Ritaccowrote on 11.08.2021:[10.0] "The blonde, face-painted Sting was already one of the top guys in WCW. Adopting The Crow's persona elevated him into a true icon of professional wrestling. Once upon a time he was the face of TNA, where he also fused his character with The Joker's mannerism and psychology. When AEW announced Winter Is Coming he showed up, almost transcending into the Night King himself. The crow, the snow, everything surrounding his aura: Sting came back to TNT after 19 years. He stood up in front of his future protege like a monolith, a statue, an icon to be remembered."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Z001Awrote on 17.07.2021:[10.0] "Sein Lauf in AEW hat viel Spaß gemacht, auch wenn es nur zwei Matches waren, von denen eines ein filmisches Match war. Aber genau das passiert jetzt. Sein WCW-Lauf und sogar seine Arbeit bei TNA machen ihn zu einer Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hillwrote on 14.07.2021:[10.0] "How could Sting not be in the conversation for GOAT? Even though he wasn't world champion in WCW for as long as he should have been think of how many angles he's been apart of form his rivalry with Rich Flair to his long term feud with the nWo. Even when WCW went under he put many eyes on TNA and helped that company get its start, helping and putting over a lot of young talent. Maybe it helps that he knows to reinvent himself. From the beach blonde brightly colored face paint, to his Crow persona, to Joker Sting. He always freshens up his act and stays relevant. His current partnership with Darby Allin shows that he still has a lot left to offer and will be a major asset as a backstage coach to the younger talent in AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: hirsty97wrote on 20.06.2021:[10.0] "Sting carved a legacy that spanned four decades, continued putting on serviceable matches into his 50s, much better than Flair and Undertaker could. He's still turning heads in AEW in his 60s! He may not be the GOAT but Sting should be in everyone's top 10 for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Kungwrote on 31.05.2021:[10.0] "Just as his nickname says, Sting is a true ICON of the highest caliber. He's got the look. He's got the legendary matches and moments. He's one of the greatest pure babyfaces of his generation. And he's respected around the world as a genuine legend of the game."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Daigotsuwrote on 21.05.2021:[10.0] "What is there to say about Sting that hasn't already been said? An absolute legend. One of the most charismatic people to ever grace the business of professional wrestling-- not many people have the sheer *presence* of sting. He's been a part of the fabric of american professional wrestling for decades and the business is better for having him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BlakeFR37wrote on 08.05.2021:[10.0] "He's the Icon. A true legend which deserves his rating. An amazing career, and a lot of accomplishments all along this years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: AnBwrote on 27.04.2021:[9.0] "What is there really to be said? The first time I watched wrestling was on a VHS tape that came with a Sting action figure, and I was completely into it. It would take over a decade before I started watching some of the old WCW matches, and I was still absolutely in love with the guy. Watching his later years in the WCW however, is not as much fun. He rarely had a proper match and when he did he didn't look all that impressive, though I guess you can argue that he was always a classic in-ring wrestler which isn't always the most exciting stuff to watch. He still got massive pops out of the audience and still looked menacing as hell, whether he came from the rafters or down the ramp. Haven't really seen any of his work in TNA, so can't judge him based on that."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "Look, he's had just as impressive run as guys like Flair or Misawa, hes a fantastic babyface or heel, has one of the most memorable and beloved gimmicks ever, did that Sprite commerical where he squashed a small child, did the Joker thing before it was too stale, and is still going strong as of this writing. Sting is one of the best ever in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Wrestling Foreverwrote on 12.03.2021:[10.0] "Wenn er aktuell bei AEW auftaucht dann it's Snowtime. Nie gedacht das er echt nach seiner schweren Verletzung in den Ring zurückkehrt. Er ist fit wie zu seinen besten Zeiten. Er ist eine Legende einer der nie bei der nWo von Hogan war. Er war beim Wolfpac. Egal wo Sting auftaucht er kommt an. Bei TNA hatte er seinen zweiten Frühling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Uweuwesenwrote on 26.01.2021:[10.0] "Sting ist der MVP der WCW, so wie ich sie kenne Bzw kannte. Er war immer da, hat immer Leistung gebracht. Er ist wirklich ein guter Wrestler und einfach die Ikone!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Ma Stump Pullerwrote on 14.01.2021:[8.0] "Sting definitely had a lot of positives: great look, could cut a good promo, was pretty reliable in the ring, etc, but he was almost always a carry job by someone else: not knocking his skills, but the guy really wasn't that impressive skill wise and his style was always quite basic, and his ring ability was pretty limited beyond his own few spots, and if you wanted a great match, not a good one, Sting needed to be guided carefully to it with someone whom could be trusted to successfully pull off such a thing, like a Flair or a Foley. That being said, his late 90's character as Crow Sting was amazing and a genuine product of the wrestling zeitgeist, being a great opposite to the loud and bombastic nWo. Despite his wrestling being even weaker than before, he managed to engage the audience like few have after the fact. Ofc after that you've got his weird Mask/Crow hybrid in the last years of WCW, and his TNA days where he was still over and was actually pretty good for his age with some solid matches with guys like Samoa Joe or Kurt Angle. I wouldn't say Sting was a GOAT or anything like that, but I'd definitely say he was a consistent wrestler for his level of skill and knew what worked and what didn't: you wouldn't see him do any crazy botches. Very popular but quality wise, you aren't gonna find a lot that's actually above average."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: rainmakerpunkwrote on 10.12.2020:[10.0] "When he was in his surfer gimmick he was an incredible in-ring performer, when he was the crow he was the best character in the world, he's able to cut great promos or captivate crowds by saying nothing and just standing there being awesome, he's the icon"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Killerk7wrote on 07.12.2020:[8.0] "AEW picking oldfarts that should be retired. Anyway when he was in WCW he was an okay wrestler nothing special."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Nerfair1wrote on 05.12.2020:[10.0] "One of the greatest of all times, he's just awesome. I was so happy I almost cried when he did his return on AEW"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: 1911owlwrote on 02.12.2020:[10.0] "The Icon! Sting will always be one of the most underrated performers in wrestling history, as the two main narrators of our time (WWE and Meltzer) both never gave him the credit he deserved. Sting always had the audience in the palm of his hand, and his matches were exciting even if they weren't highly technical. Moreover, he was the franchise of WCW and the man who put TNA on the map (it was after Sting's arrival that PWI finally took the world title in TNA seriously, for example). His memorable feuds with Flair, Rude, Vader, Cactus Jack, the nWo, and more are some of my favorite memories in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Donniewrote on 04.08.2020:"STUNG DID LINES AND LINES OF COCAINE AND WENT FROM A GUY I HATED, TO A MAN THAT I COULDN'T HELP BUT LOVE. One time he cut a promo about buying a portable TV so he could go to the gym and workout and watch GAB on PPV. It wasn't until JR informed him he was actually wrestling, did Stinger decide to forgo the gym and go and do as he was asked. God Bless this man"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Disputinwrote on 27.04.2020:[10.0] "Grew up with his matches. Love WCW back in the days and this man was the reason. He had a great career. Thank you Sting!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Sting ist wohl das Aushängeschild der WCW gewesen und auch einer der besten Wrestler aller Zeiten. Im Ring ist er ein sehr starker Wrestler, am Mic auch sehr gut und Charisma ist eindeutig vorhanden. Sein Surfergimmick war ganz gut und dieses brachte er auch gut rüber aber nochmal deutlich besser war sein Crow Gimmick welches absolut genial war. Alles in allem hat Sting sich die vollen 10 Punkte verdient! It's SHOWTIME, folks!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TNBG2381wrote on 22.04.2020:[8.0] "Sting is a icon. His popularity is legendary and he had some good matches. The reason he doesn? t get a perfect score is because his lack of in-ring ability. He always had to be carried by someone better than him whether it was Ric Flair, Vader, Foley, etc... But he was very over and he reinvented himself into the crow Sting so he? s very innovative. His lack of great matches keeps him from being in the elite company of wrestling."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Eggi1304wrote on 11.04.2020:[10.0] "Mit ihm bin ich groß geworden und er hat mich dazu gebracht, Wrestling zu schauen. Mein all time favourite. Bei ihm wurde ich immer wieder zum Mark. Mehr muss ich dazu nicht sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TheGorgis309wrote on 14.09.2019:[6.0] "Sting never really did it for me. His old school style of wrestling never really clicked with me, and I always found him pretty average on the mic as well. He does get extra points for the countless innovations he did to his gimmick to remain relevant (Joker Sting aside) and for his accomplishments in WCW and TNA, but his WWE run really ended his career on a sour note. Shame, if his character was more appealing to me and if he had a better run in Titan Towers, I would have definitely bumped up his score. A hall of fame wrestler for sure based on his accolades alone, but never really one of the GOATS in my opinion."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: KyleEnjoysWrestlingwrote on 13.08.2019:[10.0] "I was never the biggest Sting fan, but his accomplishments are incredible. Had amazing matches with the likes of Vader, Flair, & Mick. Had an amazing character as the Crow, working as the opposition to the NWO. Helped keep TNA afloat for longer than it should have. It's unfortunate that we never saw him in WWE in his prime, but he was a constant gem elsewhere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: zephyrwrote on 19.03.2019:[8.0] "Sting was good at wrestling, amazing at talking and got over pretty consistently. I've never been too fond of the Crow gimmick myself but that seems to be a minority opinion."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: JEK 1991wrote on 13.12.2018:[10.0] "The face of WCW. He is a legend and I always liked him as a kid. His gimmicks were great and inspiring. He did not go into the WWE unitl he was in his 50's His Scorpion lock was a excellent move."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Makai Clubwrote on 01.12.2018:[6.0] "I''m not a Sting fan. He isn't terrible by any means and I totally see the appeal and why people like the guy but I get nver been into his matches. They just aren't compelling to me except for a few moments in the match. He has his matches of course and his 97 character but Sting just isn't for me."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TANK 81wrote on 01.12.2018:[10.0] "Sting is like alpha and omega in wrestling. This man had everything. Look , skills , charisma , respect , entrance , ect. Can't really imagine, there is anything that he could do better in his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: chanmeatwrote on 09.11.2018:[10.0] "The Icon!  To me, Sting was the greatest babyface in the history of wrestling. Especially if you drop all the post Austin anti-heros. And he essentially achieved this with two different gimmicks. Two gimmicks that were completely opposite - Surfer Sting and Crow Sting. If you were watching in the early 90s against Flair or again in the mid/late 90s when he was battling the nWo, then you already know that he was over gravity.  He was getting the loudest pops ever (even when he joined the wolfpac - the pop was huuuuuge). He was the perfect personification of the Cornette babyface - A beacon of light the vanquishes the dark. No anti-hero. Just hero.  As far as a worker, he wasn't too shabby either. Not many people could slam The Giant and also leap off the top rope.  He wasn't a great promo, but he made up for it with his look/charisma. He was just the man you rooted for. One of the all time greats. PS: For those of you that say he didn't draw. You are totally wrong. Please, go back and listen to the pops he was getting. Look at all the sting masks in the crowd. The people who perpetuate that myth could not have actually ever watched WCW in the 90s."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Steamboat2511wrote on 02.10.2018:[8.0] "Sting ist wohl, neben Goldberg und Flair, die WCW-Legende schlechthin. Technisch ansprechend und auf einem sehr ordentlichen Grundniveau, ohne zu den besten zu gehören. Persönlichkeit ist ja durchaus vorhanden, auch wenn ich mir manchmal mehr Impact gewünscht hätte. Am Mic kann er durchaus ein hohes Niveau aufweisen, welches jedoch mit der Zeit (Ende der WCW) etwas nachgelassen hat. Erwähnenswert ist auch, dass er die WCW-Legende ist, die sich der WWE am längsten verschlossen hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Cameron621129wrote on 30.09.2018:[10.0] "Sting is the face of non-WWE wrestling. He was extremely charasmatic, could carry anyone in ring (even if their heavily on drugs). Sting was the franchise of WCW and face of TNA... shame Triple H had to beat him in his WWE debut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: RatingsMachinewrote on 22.09.2018:[8.0] "Sting was a good worker, but he needed to have his hand held in order to have a great match, and his overall ability and impact tends to get overrated."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: autopsy12wrote on 01.09.2018:[10.0] "One of the greatest of all time, obviously. Sure his promos are a little over the top but that's the era he came from. I still preferred those over boring overly scripted promos of the WWE.  So many classic matches and moments under his belt and his crow gimmick in its initial run is still one of the coolest characters in all of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Fblaggyxwrote on 08.07.2018:[4.0] "Sting is too overrated, only thing that you can like about him is the feel of nostalgia but that is all. His wrestling skill was never good and his promos will not save that. In WCW he hold several titles, but except he vs Hogan, they are all forgetable."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DaWizWithADwrote on 07.07.2018:[9.0] "I think when it comes to character work and charisma, the Stinger is one of the all-time greatest. Surfer Sting, Crow Sting, even Joker Sting, he made it all work. He had a great look to bring it all together and was an above average wrestler who always brought it when it counted."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CHN325wrote on 01.02.2018:[9.0] "A legend of both WCW and TNA and one of the first guys you think of when you think of anti-WWE guys. Larger than life persona with tons of charisma who reinvented himself with the times, even if his gimmicks tended to be heavily inspired by pop culture."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ianlapierrewrote on 04.11.2017:[7.0] "Sting was at an all time best when he was hiding in the rafters and never saying a word. When he was booked like the Undertaker, he was perhaps one of the most 'over' wrestlers of all time. His feud with Hogan and the NWO will always be one of the most memorable in wrestling history. He had longevity, charisma and great matches. Still, I feel like his overall standing suffers because he never got to compete with some of the all time greats in the WWE."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: taabr2wrote on 11.09.2017:[9.0] "Sting may have been the guy who defined WCW but he was never really the big star they needed to do battle with the WWF. I think it says a lot that the period where Sting was at his most popular was when he was staying away from the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Viper99wrote on 18.06.2017:[9.0] "Sting gehört einfach vom Standing her genau zur WWE. Wesshalb es klar war das er früher oder später dort hingehen wird. Es ist eine gute Entscheidung gewesen. Sting ist ansich einer der jedem Wrrstling Fan etwas sagen sollte. Er ist die WCW legende schlechthin. Im Ring finde ich ihn ganz gut und am Mic ist er auch gut. Das einzige was mich an seinen momentanen WWE auftritten stört ist der Entrance Theme! Das alte Crowe Theme ist doch wesentlich geiler als das was er jetzt hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ChessHeartDTRwrote on 28.02.2017:[10.0] "A massive reason why I first got interested in the world of Pro Wrestling. A timeless character who captivated me so much as a young lad and is still one of my all time favourites to this very day. It's a shame we'll probably never get to see the Icon and The Undertaker go one on one in WWE, but I can't take anything away from the amazing career this man had. Legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: JxhDelwrote on 13.02.2017:[7.0] "My idol in infancy years, his "Crow"-esque inspired persona and energic presence were a big part of what brought me into pro wrestling twenty years ago. At this age and time, he was not the best talent for sure, and has really gone over his prime for too long, but for a big man starting late, he sure was impressive and drew a lot, always being a professional and a class act. Thank you, Steve."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: richwp01wrote on 04.02.2017:[10.0] "Sting is one of the all-time greats.  He was always there for WCW from beginning to end.  He was never dull.  From great matches with Ric Flair, Vader, Cactus Jack, Great Muta, The Steiners, DDP, and in WarGames.  He even was carried to good matches with Samoa Joe, Kurt Angle, and AJ Styles in TNA.    Sting could not carry a promotion based on some bad booking decisions.  But he was always working hard and always seen as a Main Eventer.  He could be in a tag team with Lex Luger and going for the World Tag Team Championship.  Or He could be a singles wrestler fighting for a World, US, or even TV Title.  He was not the best worker, but he could put on a decent to good match.  He would have classics with some of the best (Flair, Vader).  He could get people emotionally invested (Losing US Title to Rick Rude after Luger bashed his knee).  With the proper booking, and proper opponents, Sting was a money maker.  Had WCW been better at booking, marketing, and managed, he would be even more well regarded."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Real Raterwrote on 21.01.2017:[7.0] "Ring: Klar ist er eine Legende, aber im Ring die meiste Zeit seiner Laufbahn auch nur Durschhnitt. 6/10 (50%) Promos/Schauspieltalent:Auch hier nur besserer Durschhnitt. 7/10 (25%) Charisma/Statur/Gimmick:Klare 10, wusste immer in seinen Rollen zu überzeugen. 10/10 (25%) Sind dann insgesamt 7, 25 Punkte für The Icon wie geschrieben, wegen seiner In-Ring Skills kann man ihn meiner Meinung nicht mehr geben, wie auch Devildammit14 richtig feststellte.  = 7 Punkte"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: JonColwellwrote on 08.01.2017:[10.0] "If it wasn't for this man right here, I would not be a wrestling fan. Sting will forever be my favorite wrestler, and will forever be the best!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Aceonwrote on 07.01.2017:[10.0] "Ich komm nicht drum herum ihm eine 10 zu geben. Zu WCW-Zeiten war er mein absoluter Fave und das lässt sich bis heute nicht so recht vergesse. Natürlich gibt es einige, die klar besser im Ring sind und waren, jedoch ist das Gesamtpaket das, was ihn letztendlich zur Ikone macht. Schade, dass WWE ihm keinen rühmlicheren Abgang verschafft hat.   Darüber hinaus ist es einfach nur traurig, dass Hogan ihm offenbar bei Starcade durch sein unfassbares Ego DEN wohl bedeutendsten Moment seiner Karriere ruiniert hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Luv all wrestlingwrote on 27.11.2016:[10.0] "The icon Sting has pulled off characters of various personality, while always keeping his trademark charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Squared Circlewrote on 31.10.2016:[9.0] "Excellent worker with multiple gimmicks.  Really knew how to work the crowd.  Exciting move set for a big guy.  Couldn't be the main guy effectively, but was a great constant attack dog on Flair.  Can't give him a 10 because he was given multiple chances to drive a company and just couldn't do it."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Y2J316wrote on 16.08.2016:[10.0] "Der Stinger. Kenne eigentlich nur den WCW sting (crow). Fande ihn als Joker Sting göttlich. Seine in Ring skills und mic skills waren und sind sehr gut also alles in allem einer der Besten aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: nimowrote on 12.08.2016:[9.0] "Er ist gut! Er hat immer gute leistungen gezeigt . Sein Gimmick find(fande)ich immer gut ! Am mic ist er auch gut"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Chosen Onewrote on 07.06.2016:[9.0] "Sting is very good in the ring, on the mic, and has a whole lot of charisma. He played his character very well. He has had some very good matches with the likes of Ric Flair, Bret Hart, Bam Bam Bigelow, and more recently Seth Rollins. His TNA career was probably the lowest point of his career. Sucks he had to retire."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: HowUDoingwrote on 03.06.2016:[10.0] "Ein Weltklasse Superstar ! Er weiß, wie man überzeugt, ob als Face oder als Heel.  In der WCW waren seine Matches LEGENDÄR ! Die TNA-Zeit war auch sehr gut. Vor allem die Matches gegen Kurt Angle. Als er sich dann doch dazu beschloss zur WWE zu gehen und für Vince zu arbeiten hat er zwar seine 2 großen Matches verloren, aber das schadet ihm nicht, finde ich. Ich hätte ihm einen WWE World Heavyweight Championship-Run gegönnt, dies blieb leider wegen seiner Verletzung aus. Ziemlich Schade :(. Trotz allem ist er verdient 2facher Hall of Famer. 10 Punkte für den Stinger !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Klabauterwrote on 30.05.2016:[9.0] "Eine Legende. Eigtl braucht's gar nicht mehr Worte. Etwas schade ist es, was man in der WWE aus Sting macht, da er da teilweise etwas schlecht gebookt wurde. (Auftakt-Niederlage, Fehde vs. Authority, die kurz darauf egalisiert wurde).  Dennoch 9 Punkte für das Gesamtpaket. Für die WCW Legende, für den TNA Hall of Famer, für den WWE Hall of Famer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Mizzle Assault Antwrote on 05.05.2016:[6.0] "I really feel Sting gets a lot more credit than he deserves. He did very poorly as champion every time in WCW, partly due to booking but partly because he never seemed capable of filling the role. His promos are hit or miss at best, and he has only a few notable matches and many bad ones that seem to get overlooked. His most famous angle, the Crow storyline, quickly fell apart as soon as Sting started actually wrestling, again in part to booking but in part because Sting allowed himself to get out of shape and rusty. His TNA career is also a mixed bag, and his WWE career is a complete joke. Sting has enough good stuff for a 6, but over a 9 is just ridiculous in my opinion."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Mean Smark Callouswrote on 13.04.2016:[10.0] "If they made a Mount Rushmore for wrestling, his face would (or should) be there along with Hogan, Flair, Warrior, Cena.  Became an incredibly huge superstar for over 20 years without having to step foot in a WWE ring. Refused to sing with WWE for years for fear of being buried, then finally signs a deal, only to get buried by Triple H at WrestleMania 31, and Seth Rollins at Night of Champions, for a whopping total of 2 matches in the promotion, both losses. Fans were excited that he finally signed, then disappointed by how he was booked. Reinvented himself at the right time in his iconic Crow gimmick and became Over forever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: James Dean Wrestlingwrote on 09.03.2016:[8.0] "One of my personal favs. Grown to love him more over the years. And he has done so much for this business. I liked his ring work. He was solid. And his mic work was hit and miss, but tolerable imo. Recognizable figure and name is a plus as well. SHowing his longevity and appeal. Much respect to the Stinger!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BadAssChonowrote on 30.01.2016:[10.0] "Sting ist einfach der Hammer. Technisch einer der besten die es gibt und einer von ganz wenigen die mit über 50 noch glaubwürdige Matches abliefern. Egal ob als Surferboy oder in seinem Crow-Gimmick, er ist einfach immer stark gewesen. Nur die TNA-Zeit als er so eine Art Joker-Kopie war mochte ich nicht so aber er bookt sich ja nicht selber. Ich würde mich freuen wenn er bei WWE noch öfter zum Einsatz kommt und gönne ihm auch nochmal einen kurzen World Title Run bevor er in Ruhestand geht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Desaster1978wrote on 13.12.2015:[10.0] "DIE WCW-Ikone neben Ric Flair. Hoffe das er noch ein Match in der WWE bekommt, welches er dann auch gewinnen darf um dann seine Karriere zu beenden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Auch wenn ich Sting nicht solange verfolge, ist er meinen Augen verdienter Weise eine Legende. Er ist für mich wie ein 2. Undertaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Cojotewrote on 13.10.2015:[10.0] "One of the best wrestlers of his generation. His gimmick is one of the best i ever see. His crow gimmick is a moment that ever remembered, with his down to the roofs that was amazing. One of the best wrestlers in TNA history. One of my five favorite wrestlers ever with Bret Hart, Eddie Guerrero, CM Punk and Bryan Danielson: a dream team, that never will happen, to Survivor Series or better a WrestleWar of 5 men team. His matches versus DDP, Kurt Angle or Ric Flair will ever be remembered. Thanks for all this years and for your extraordinary career, Sting."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Sundownerwrote on 22.09.2015:[6.0] "Sting was always overrated as a wrestler. He was my first favorite pro-wrestler in my life growing up in the 90s. His explosive athletic ability is what makes/made him great in the ring."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Eric Dravenwrote on 18.09.2015:[10.0] "Sting kann man mit einem Wort zusammenfassen: LEGENDE Bereits in seiner "bunten Zeit" war er immer schon einer meiner Favoriten, aber als er dann mit dem Crow-Gimmick zurück kam, mit das Beste was die WCW je gemacht hat.  Ein spitzenmäßiger Micworker, im Ring einfach Klasse, einziges Problem ist, wie die WWE ihn grade bookt, denn das entspricht absolut nicht seinem Status.  Definitiv HoF-Anwärter. STING IS DA MAN"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: FloWrwrote on 16.09.2015:[10.0] "Der Held meiner Kindheit und bis heute mein Alltime Fav. Typischer Allrounder im Stil der 80/90er, gutes bis sehr gutes Micworking. Sehr charismatisch, gerade die Crowzeit überstrahlte nahezu alles und machte seine passive Anteilnahme für 1 1/2 Jahre völlig bedeutungslos. Trotz katastrophaler Lage der WCW ab dem Jahr 2000 war er ihr stets treu und verließ das sinkende Schiff erst mit ihr zusammen. Zwar konnte er nach seiner langen Verletzungspause (96/97) nie wieder an seine alten Leistungen und Fitness anknüpfen, hat aber immer wieder bewiesen, dass er viele leistungsschwächere Kollegen zu einer akzeptablen Leistung ziehen konnte. Und dass er trotz seines Ranges und Erfolges nicht zu denen gehörte, die ihr Ego zum eigenen Vorteil nutzten, spricht ebenso für sich. Daher gibts für Gimmick und Person an sich, die volle 10. Für Technik und Micwork eine 8. Wegen Sympatiebonus einen Punkt drauf und daher für mich die vollen 10 Punkte.  Er sollte nur langsam an ein Karriereende denken, bevor der Glanz seiner Vergangenheit ins Lächerliche gleitet. Deshalb würd ich mir noch 2 bis 3 Matches mit Gegnern wünschen, die ihn nochmal richtig mitziehen können und dann ab in die wohlverdiente HoF."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Nigglesojanicwrote on 25.08.2015:[10.0] "Ich muss gestehen, dass ich ihn eigentlich nur aus seiner WWE-Zeit und aus diversen Berichten hier kenne. Allerdings gefällt Sting mir so schon extrem gut. Auch stark wie gut ihn das WWE-Universe nach so einer langen Zeit (nach der WCW) aufgenommen hat, erntet starke Pops, aber das hat er sich über die Jahre auch vollkommen verdient. Er ist für mich so etwas wie der "Undertaker" der WCW, ohne seine eigenen Mythos jetzt herunterspielen zu wollen. Ach was wäre das, wenn man diese 2 überlebensgroßen, dunklen Charaktere vor ein paar Jahren mal als Tag-Team gesehen hätte... wäre wohl das heftigste Team aller Zeiten geworden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Incartawrote on 21.08.2015:[7.0] "He's not what he was but hey, he's still good for his age. He'd struggle in the ring against today's young fast wrestlers"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BadHawk26wrote on 15.07.2015:[10.0] "Sting ist der Wrestler den die WWE braucht er bringt eine neue Luft in das Roster ich persönlich würde mich sehr freuen Ihn öfter in den Raw&Smackdown shows zu sehen.  Er ist eine absolute Legende   Einen Kampf gegen den undertakter würde ich absolut nicht begrüßen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Triple Hwrote on 19.03.2015:[9.0] "Sting ist, war und wird eine Wrestling Legende bleiben. Auch wenn er erst seit kurzem in der WWE ist, sollte er in die Hall of Fame aufgenommen werden. Dieser Mann stand immer im Schatten von Hogan, Flair und anderen Wrestlern, die auch nur Durchschnitt sind oder waren. Es ist ihm mit zu verdanken, das Wrestling in Amerika einen so hohen Stellenwert hat. Sein abgekupfertes "Die Krähe" Gimmik fand ich zwar irgendwie albern, aber es passte in die damalige Zeit der Hollywood Movies und eben auch Sports Show Entertainment. Am Mic find ich Sting klasse, gerade zu seinen TNA Zeiten. Leider neigt sich seine Karriere im Wrestling dem Ende entgegen und er wird wohl nicht mehr viele Matches in der WWE ablegen. Denke, das eventuell sein Match mit Triple H zu Wrestlemania 31 sein letztes werden könnte. Ich hoffe das er einen Sieg über den Assassin einfährt und danach einfach als Face in der WWE erhalten bleibt. Klasse Wrestler, wenn auch nicht mein Favorite."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: austin1987wrote on 12.02.2015:[7.0] "Für mich war er immer das Aushängeschild der WCW. Schade, dass man ihn wegen Hogan in die Midcard steckte, das Versteh ich bis heute nicht. Denn er war Tausendmal besser als Hogan und was die WCW zu der Zeit Produzierte war sowieso Grenzwertig (Hogan vs. Giant bei einem Monstertruckmatch). Wurde aber danach sehr gut eingesetzt bei der nWo-Fehde als stummer Beobachter (im The Crow Outfit),  der immer dann kam als man es am wenigsten vermutete -einfach Geil. Fand es dann wieder Schade, dass man ihn bei Starrcade nicht clean gegen Hogan gewinnen ließ, dass schmälerte die Fehde ganz erheblich für mich. Fand es auch schade, dass man ihn nicht noch bedrohlicher für die nWo aufbaute und ihn zur Nr. 1. in der WCW machte. Damit hätte man sich einen Goldberg ersparen können. Muss aber 3 Punkte abziehen, denn als Heel bei der WCW konnte er mich überhaupt nicht überzeugen ich fands eher peinlich."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: WrestleArtswrote on 24.10.2014:[9.0] "Wrestlerisch immer nur ok, als Surfer konnte Sting noch viel mit seiner Athletik kaschieren, später dann nicht mehr. Am Mic immer gut, gerade zu TNA Zeiten oft sogar sehr gut. Look (mal vom T-Shirt Sting abgesehen) und Charisma top, genau wie seine Neuerfindung vom klassischen Babyface zum Dark Warrior."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Man of Steelwrote on 13.09.2014:[8.0] "Sting war vor seinem Crow Gimmick einer der vielen Gesichtsbemalungsakrobaten und Stach nur heraus durch seine Dauerrivalität mit Flair, im Ring eigentlich ein guter kam jedoch nie an die Klassen von Flair, Guerrero, Benoit, Michaels, Hart etc heran, musste er auch nicht denn dank dem Crow Gimmick dessen Aura ALLES überstrahlte und nur vom Hoganschen Ego ausgebremst wurde, war er ein komplettpaket das begeisterte. Wie so oft einer der Superstars die trotz Hogan den durchbruch schafften, JA trotz denn geholfen hat er ihm kaum.  Btw: Was man für einen Käse liest.. War bis 2014 der einzige Superstar der noch nie für WWE angetreten ist... Ist er auch bis heute nicht oder hat ihn schon jemand im Ring gesehen? Hoffentlich kehrt er zurück.. Wohin? Er war vorher noch nie bei Vince... Und selbige geben kommentare ab die vor Fachsimpeleien nur so sprühen obwohl von der Materie an sich keine Ahnung vorherrscht.. na Prima."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: zackwoowoowooryderwrote on 12.07.2014:[10.0] "Zum "Stinger", "The Icon" braucht mal glaub ich nicht viele Worte sagen, dass macht er schon selbst und er lässt seine Taten für ihn sprechen. Einfach eine Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: wwefan98wrote on 11.05.2014:[9.0] "Sting ist cool und troz seines hohen alters immer noch gut. Ich hoffe das er bald man ein Match für die WWE bestreitet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Jared Craverwrote on 05.05.2014:[10.0] "A true legend if there ever was one. Without a doubt the greatest wrestler never to compete for wwf/e. Sting has held numerous world titles in NWA, WCW, and TNA. He has a ton of charisma and has some remarkable matches under his belt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CrIppIL3RTIRiXwrote on 17.04.2014:[6.0] "Es gibt nur 6 Punkte von mir, weil Sting schon 20 Jahre drüber ist und nur Einheitsbrei serviert.  Mic Work ist durschnitt, aber auch nicht wirklich gut.  Abschließend, Sting ist für mich der John Cena der 80/90"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: alcoholicmetalmayhemwrote on 14.04.2014:[7.0] "Wrestlingtechnisch doch etwas überschätzt. Definitiv nicht in eienr Liga mit Leuten wie Bret Hart, Michaels oder Eddie Guerrero. Zu NWA und WcW Zeiten ein ansehlicher wrestler mit einigen "Ok" Matches."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: grosandrwrote on 12.04.2014:[9.0] "Die eine Legende geht, die nächste kommt. STING IN DER WWE... Bei TNA hat er mir immer gut gefallen. Er ist ja nicht mehr der Jüngste und trotzdem legt er immer tolle Matches hin. Bin ja mal gespannt welche Rolle bzw. welche Matches er in der WWE bestreiten wird. Ich hoffe ja echt dass er dann irgendwann wieder mit Baseballschläger usw zum Ring geht :) Habe echt schon lange gehofft, dass die WWE ihn endlich verpflichtet. Und jetzt ist es soweit."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Brainbreakerwrote on 31.03.2014:[8.0] "Ich wage einfach mal zu behaupten, dass wenn Sting nicht das überaus erfolgreiche Crow-Gimmick adaptiert hätte, er in der Hochphase eine geringfügigere Rolle gespielt hätte. Was die Jahre zuvor anbelangt: Klar war er ein guter Techniker, aber vermochte er selten Leute zu richtig guten Matches zu ziehen, wie etwa Michaels oder Hart dazu im Stande waren. Insgesamt ein solides gut für den Stinger, da ich seine Gimmick und charismatisches Auftreten durchaus schätzte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: AriesMarkwrote on 16.02.2014:[6.0] "Sting was one of my favorite wrestlers of all time... 15 YEARS AGO. A mere shadow of what he once was. Needs to just retire, or just have the dream match vs. Taker and then call it quits"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: todd1928wrote on 26.12.2013:[10.0] "One of the all time greats, from the golden boy of WCW to the crow to the icon Sting has always been a favorite of mine and even though his body is slowing and he is getting worse in the ring he still brings some magic to TNA every time he walks through the ropes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: RepoManwrote on 19.12.2013:[8.0] "Der Mann hat alles was ein guter Main Eventer braucht. Beeindruckend ist ähnlich wie beim Taker die Langlebigkeit seines Charakters und die sehr gute Resonanz vom Publikum. Leider gefiel er mir in seiner Anfangszeit weniger, erst als er "düsterer" wurde konnte ich mich für ihn begeistern. Was auch zu bemerken ist, ist seine Eingangsmusiken waren schon immer erstklassig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CLPSKYLINERwrote on 14.12.2013:[7.0] "Strahlt sehr viel Charisma aus und ist gut am Mic. Nur im Ring geht es logischerweise auch bergab, wegen seines Alters."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Daneraswrote on 04.11.2013:[8.0] "Ich kann mich an ihn von früher recht kaum erinnern, bis er sein Gesicht ganz rot bemalt hatte, und auch mit dem Baseball schläger gekommen. Er sah richig zum fürchten aus, und ich fand ihn auch richtig gefährlich. Er hatte so viele Feinde, viele Fehden, und kam auch ab und zu von der Decke runter zum Ring. Er kann gut Mic machen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Gazzawrote on 21.10.2013:[8.0] "Ja, ja der gute alte Stinger. Mit dem Crow Gimmick hat mich damals zum Wrestling gebracht, weil mich das mysteriöse um den Sting ziemlich fasziniert hat. Konnte im Ring mit einem guten Gegner immer ein gutes Match rausholen und war auch sehr charismatisch. Leider hat er jedoch, in meinen Augen, den Absprung verpasst. Deshalb gibt von mir nur 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ImACMPunkGuywrote on 28.08.2013:[9.0] "The Icon, der Beiname, den sich dieser Mann verdient hat. Im Ring mit seinem Alter immer noch gut. Am Mic große Klasse hoffe er wird noch von WWE unter Vertrag genommen, um ein Match mit dem Taker zu worken."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[8.0] "Legendär, Sting verkörpert(e) die WCW, mit Baseballschläger abgeseilt von der Decke... Nur leider wusste er nicht, wann es Zeit ist, zu gehen, hätte er sich (und uns) nur TNA erspart!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: pentiwrote on 22.08.2013:[10.0] "Der Inbegriff des WCW-Wrestlers. Ich glaube jeden der an WCW denkt fällt als erstes Sting ein. Der Typ hats im Ring (immer noch) voll drauf und an seiner Ausstrahlung hat er natürlich auch nichts verloren. Und auch heute in der TNA gehört er noch zu den Besten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Valancewrote on 02.08.2013:[10.0] "The real legend, the real icon! Amazing wrestler even at 50+ years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Lecterwrote on 06.06.2013:[8.0] "Sting was my first favourite wrestler based on the fact that he looked cool. And he did. Now he wrestles with a t-shirt on. For shame, Stinger. But yeah, Sting had a lot of good matches and the occasional cool backstage moment. He was just the victim of some terrible booking."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: anglejoewrote on 15.04.2013:[10.0] "Wrestling-Legende, jemand der das Publikum jederzeit fesselt. Sicherlich einer der wichtigsten Wrestler der WCW und TNA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Gredzillawrote on 12.04.2013:[10.0] "Sting ist so ein Phänomen, den kann man nicht mögen. Also ich nicht. Ich weiß es nicht ist es sein Style mit dem Mantel und der Schminke die mich immer an den Typen aus dem Film The Crow denken lässt, oder sind es seine Wrestlerischen Fähigkeiten oder das Micwork. Wenn ich an TNA denke ist der Typ sofort auf dem Schirm. Mittlerweile über 50 aber ich kann mir TNA ohne ihn nicht vorstellen. Because he's the fucking Icon!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Bowlenwrote on 16.03.2013:[8.0] "Trägt den Beinamen "The Icon" wahrlich nicht zu unrecht. Natürlich war er früher in der WCW um Längen besser, aber für einen über 50-Jährigen liefert er noch respektable Leistungen ab, mit dem richtigen Gegner kann da sogar noch ein richtig gutes Match zustandekommen. Am Mikrophon gibt es zudem noch immer wenige, die dort an ihn rankommen. Zudem schätze ich seine Loyalität zu TNA sehr. Eine gute Wahl für den ersten Hall of Famer der Liga."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: 8BitLegendwrote on 11.03.2013:[8.0] "Die größte Legende, die nie bei WWE unter Vertrag stand. Hatte viele gute Gimmicks, zahlreiche große Storylines, doch irgendwas fehlt mir persönlich für eine ganz hohe Wertung. Vielleicht nur die große McMahon Bühne, vielleicht irgendwas anderes - ich weiß es nicht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: krausi001wrote on 30.12.2012:[10.0] "The Icon Sting. Damals wie heute versteht er es die Wrestlingwelt zu unterhalten. Nicht nur durch sein Auftreten im Ring. Vor allem seine Promos sind genial. Er war und ist DAS Face von WCW und TNA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CMCultOfPersonality91wrote on 30.12.2012:[10.0] "Ich hab leider nicht so viel von ihm gesehen. Nur 1, 2, Matches bei TNA und mehrere auf den WWE Dvds. Allerdings genug, um einen Eindruck von ihm zu bekommen. Und Ich muss sagen, dass mich nur eine handvoll Wrestler auf eine Art und Weise fasziniert haben, wie Sting. Vor allem in der schwarz/weiß WCW Version absolut genial! Und was für eine Ringpräsenz. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Cobrawrote on 14.12.2012:[10.0] "The man has given so much of his life to wrestling and really is an icon. Aways entertaining and great to wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Wolkywrote on 20.09.2012:[10.0] "Eine Legende, ohne Frage, trotz seines sehr fortgeschrittenen Alters schlägt er sich im Ring seit Jahren wirklich noch immer aktzeptabel, am Mic, Schauspiel etc. ist er so gut wies nur geht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Kitanoyamawrote on 15.09.2012:[9.0] "Ohne Zweifel eine Legende der NWA bzw. späteren WCW. Er war wrestlerisch kein Überflieger, auch wenn er ein paar gute Tricks und Techniken drauf hatte, aber das glich er sonst vorallem mit Überzeugungskraft aus. Schade das er nicht auch noch bei der WWE mal auftrat, aber das hat/hatte er auch eigentlich garnicht nötig. Er kann so oder so mit Fug und Recht zu besten eines Fachs zählen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: VanderVaartwrote on 12.09.2012:[8.0] "Das Gimmick war das coolste in den 90er Jahren der WCW . Finisher und Signature Moves passen. Von der Hallendecke zu kommen, ist zwar riskant, aber spektakulär. Dann ging die Post ab und kein Heel war vor ihm sicher. Ist aber völlig übertrieben, wenn er gleich fünf Leute, mit einem Baseballschläger, vermöbelt. Er ist wohl der einzige Top-Wrestler, der nie unter WWE-Vertrag stand. Stattdessen ging er in hohem Alter noch zur TNA. Hier erlebt er seinen 2. Frühling."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DaNiwrote on 29.07.2012:[10.0] "Auch wenn ich nicht der größte TNA-Fan bin, so sehe ich doch gerne zu, wie sich Sting noch den ein oder anderen Kampf gibt.  Ich hoffe er schafft den Absprung. Der Kerl ist älter als der Undertaker und natürlich merkt man das auch im Ring.  Jedoch ist alleine Stings Vergangenheit die 10 Punkte wert. Schon als kleines Kind beim zappen blieb ich wegen Sting bei der WCW hängen. Damals war das Crow Image brandneu, was mir sehr anzog. Sting hat damit mein Interesse zum Wrestling geweckt. Danke"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Monday Night Wars85wrote on 23.06.2012:[10.0] "Für mich unangefochten die Wrestlinglegende. Super Gimmick, ein absolutes Original. Dass seine Leistungen im Ring nicht mehr spektakulär erscheinen hängt glaub ich nicht mit seinem Alter zusammen, sondern eher damit wie Tna ihn einsetzt und bezahlt. Wenn man ganz ehrlich ist hat jemand in der Tna ein vergleichbares Match zu Wrestlemania Matches des Undertakers gesehen? Ich finde mit dem was man bewertet sollte man Stings ganzheitliche Karriere bewerten. Und ich finde da ist er ein großes Vorbild für alle jungen Wrestler. Er bleibt einer Liga treu und wrestlet nicht nur dann wenn die Liga läuft. Einer mit seiner Größe hätte schon längst der Tna den Rücken kehren können.  Sting brauchte nie eine WWE um die Legende zu verkörpern, die er letzten Endes ist und bitte bleib uns noch ein paar Jährchen erhalten. Woooooohhh!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Sascha311wrote on 15.06.2012:[2.0] "Mir geht Sting eigentlich nur noch auf die Nerven der Typ ist viel zu Alt und das sieht man an seinen Matches so jemanden kann man doch net in den MainEvent stellen! Er ist eigentlich nur noch ein Schatten von dem was er mal war, und ich hoffe das er bald ma verschwindet bevor er noch im Ring an einem Herzinfakt stirbt!"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Turkish-Wrestling-Godwrote on 12.05.2012:[10.0] "Man möge mich hier verurteilen, weil ich vielleicht nicht zu hundert Prozent Konstruktiv und fair bewerte, aber es geht hier um STING! Er ist für mich wirklich eine der größten Legenden des Wrestling. Ja, ich muss zugeben, er ist nicht gerade einer der besten Wrestler auf diesem Planeten, aber darüber sehe ich in seinem Fall hinweg. Ich würde mir für ihn einfach nur wünschen, dass er nicht mehr allzu lang im Ring umher springt, ich möchte nicht, dass er irgendwann nur noch ein Wrack ist, so wie es bei vielen anderen vor ihm der Fall war..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Kenshin Uesugiwrote on 17.03.2012:[7.0] ""Bei Sting muss man nur die Matches gegen Flair, Vader und Great Muta ansehen, zu größeren Singles Matches- Leistungen war er nicht fähig und auch nur dank der drei Herren! " Das ist natürlich eine knallharte Aussage die sehr überspitz ist, aber dennoch viel Wahrheit beinhaltet. Steve Borden hat von seine Ausstrahlung und Staraura sowie sein zum Teil sehr guten Umsetzung seines Gimicks gelebt. Das ist weiß Gott nicht Schlimmes aber im Nachhinein wird ihm gerade von deutschen Fans mehr Können und Klasse angedichtet als er je hatte. Das Wort überbewertet will ich hier nicht in den Mund nehmen weil es einen so dauerhaft erfolgreichen Mann, der sich stets und ständig um seine Heimat WCW bemüht hat, nicht verdient. Aber Steve Borden war auch lange in seinen selbst auferlegten Stigmata gefangen und brach zu selten mit seinen Crow-Gimick heraus. Das seine Gimick Adaptionen von Film-Charakteren sind, ist weder schlimm noch verwerflich, da es ja nicht um Kopien handelt. Mittlerweile ist der Mann aber so was von unterdurchschnittlich was seine Arbeit angeht (den Scorpion Lock hatte er ja schon in der Vergangenheit lauwarm ausgeführt) das ein dauerhaftes festklammern in den Main Event Region und dir gefühlten zehn Titelregentschaften bei TNA niemals rechtfertigen. Da muss auch so fair sein und sagen das er da niemand mehr over bringt sondern im Weg steht."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Saschwrote on 12.03.2012:[10.0] "You still got it! Schade dass er nie zur WWE kam, denn er wär der beste Rivale bzw. Tag Partner des Undertaker. Aber wahrscheinlich für ihn so besser, da die WWE vieleicht versucht hätte seinen Kultstatus zu senken siehe Page, Stasiak usw. Das Crow Gimmnick war seine Vollendung finde ich und ich könnte mir auch niemand anderen in dieser Rolle vorstellen! Seine Highlights von symphatischen sunnyboy bis zum Rächer war ein Leckerbissen ohne dass er nur ein einziges Match bestreiten musste und sozusagen haben damals vor allem Sting und Hulk Hogan die WWE besiegt bei den monday night wars. Dafür ist und bleibt er für mich eine Ikone"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: nohmetalheadwrote on 29.01.2012:[10.0] "Einfach einer der größten. Lebende Legende! Und vor allem die Tatsache, dass er nie bei Vince unter Vertrag stand macht ihn noch größer ;-) ..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Schlagschawrote on 31.10.2011:"Möchte keine eigene Wertung abgeben, aber in den neunzigern war er eigentlich das gegenstück zum Bret Hart der WWF."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: C van Damwrote on 31.10.2011:[10.0] "Unglaublicher Wrestler, der es auch heute noch schafft mich zu überzeugen. Im Ring nicht mehr die Granate, aber am Mic stark und auch das Auftreten. Glatte 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: devilsoldierwrote on 28.09.2011:[9.0] "Legende! Ohne Zweifel und immer wieder gut für geile Gimmicks. Sogar das Jokergimmick find ich klasse. ABER! Ich hoffe er macht nicht den selben Fehler wie Ric Flair und kann sich nicht vom Ring trennen. Noch ist es super was er im Ring bringt und der Körperbau in seinem Alter. Aber muss er wirklich noch Champion sein? Man siehe Shawn in den letzten Jahren, keine großen Titel aber Matches zum Finger lecken und viele Leute nach oben gebracht. Das sollte der Stinger auch tun für die Bobby Roodes, Styles, AndersonŽs oder Eric Youngs aber BITTE keine Champruns oder Matches gegen Hogan oder Flair."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Sting ist wirklich eine WCW Ilkone, er konnte in allen Bereichen überzeugen, und hatte immer Super Storys, allerdings fande ich das er in TNA fehl am Platz war, außerdem sollte er trotz allem mal langsam daran denken in den Ruhestand zu gehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Fall Out Boywrote on 27.08.2011:[10.0] "Absolute Ikone, absoluter Win fürs Wrestling Business. Wo er war, war er eine der schillerndsten Figuren. Arenen füll(t)en sich wegen ihm. Im Ring richtig gut und sein Gimmick war wohl eines der besten aller Zeiten. Konnte in all seinen Rollen überzeugen und am Mic war er stark. Mir fällt nicht viel schlechtes zu dem Mann ein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hu-Manwrote on 20.08.2011:[8.0] "Kenne seine früheren Taten nicht und kann nur bewerten, was ich heute sehe: einen alten Mann, der an seinem Spotlight festhält und immer wieder beteuert, es nicht zu tun. Der Mann bringt dem Wrestling nun wirklich nichts mehr ein. +++ Edit: Für sein aktuelles Joker-Gimmick muss ich meine Bewertung ordentlich korrigieren, weil er mittlerweile unterhaltsamer ist als Anderson. Sting im Spätherbst seiner Karriere rockt zur Zeit wirklich. Eventuell sollte er sein Momentum aber lieber dazu nutzen, junge Talente over zu bringen, statt alle zwei Wochen Champ zu werden. +++"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Auditorewrote on 12.08.2011:[9.0] "Mittlerweile, was bei dem Alter nicht verwunderlich ist, Eindeutig nicht mehr so gut wie früher. Aber was nunmal früher war, war spitze und auch am Mic kann er überzeugen. Sollte nun allerdings aufhören weil er sich sonst nur ins lächerliche zieht. Aber sollte trotzdem ein wenig den Hulk Hogan mimen und zum Beispiel als Manager arbeiten. 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Alan Smitheewrote on 05.08.2011:[8.0] "Es wird nicht besser, nein wirklich nicht. Aufgrund der Ruhmreichen Vergangenheit in der er mir außerordentlich gut gefallen hat gibt es erstmal nur die Abwertung von 10 auf 8 Punkte aber wenn er nicht bald (sprich noch dieses Jahr) die Wrestlingstiefel an den Nagel hängt und den Raum in dem sich dieser Nagel befindet in die Luft jagt wird meine Bewertung noch schneller sinken als DiCaprio in Titanic."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Michael Shawn Hickenbottomwrote on 29.07.2011:[10.0] "Gefällt mir trotz seines Alters immernoch sehr gut! Früher beweglicher, aber er hat fast nichts eingebüßt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: FNShowwrote on 13.07.2011:[7.0] "Auch wenn ich Sting nie möchte und er nicht mein Liebling wird finde ich, dass Sting nicht älter sondern besser wird. Das Joker-Gimmick ist genial (auch wenn es geklaut sein sollte). Sicherlich ist er Ring nicht mehr so gut wie vor 20 Jahren aber Sting 3. 0 nach Sting (Crow) und Sting (Rainbow-Warrior) ist Evolution. RIP Heath"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Boggenauerwrote on 10.07.2011:[10.0] "Ich finde Sting einfach nur grandios, seine Promos sind einfach der Hammer ich finde der kleine Gimmickwechsel im Moment hat ihm sogar sehr gut getan so als verrückter Stinger. Sting kann mich zurzeit wirklich gut unterhalten seine In-Ring skills sind zwar etwas geschrumpft im vergleich zu damals aber der Mann ist einfach Kult. Promomäßig und am Mic ist er einfach Klasse und im Ring auf jeden Fall kein schlechter von mir 10 Punkte für den Stinger."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: El-Chupakneebraywrote on 10.07.2011:[9.0] "Ich hätte ja nicht gedacht, dass ich Auftritte von Sting im Jahre 2011 zu den absoluten Highlights einer Show zählen würde. So ist es aber seit ich wieder angefangen habe IMPACT zu verfolgen. Wer ist eigentlich dieser Heath Ledger?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: stinger89wrote on 03.07.2011:[10.0] "Habe angefangen Wrestling in der damaligen WCW zu schauen. Da hat mich Sting immer am meisten fasziniert. Nach dem Gimmickwechsel von Surfer zu Crow wurde er dann noch interessanter. Im Ring sowie am Mic ist er meiner Meinung nach auch ziemlich gut, von daher 10 von 10 für mein Idol. "It's Showtime Folks! " Update: Liefert mittlerweile NUR NOCH GEILE Promos ab... Mit 52 Jahren nochmal ein gimmickwechsel, das hat schon was. Auch im Ring ist er wieder agiler und besser als noch letztes Jahr. Weiter Soooooooooo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Donald Duckwrote on 23.06.2011:[10.0] "Er war für mich immer der Undertaker der WCW. Eine der größten Legenden aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Franchise Playerwrote on 14.06.2011:[9.0] "Obwohl ich kein großer Sting Fan bin, muss ich dem Typen viel zu gestehen wie u. a. ein hervorragendes Gimmick, MicWork, In-Ring Leistungen, Charisma. Zudem war nie in meiner "Lieblingsliga", was auch noch positiv anzukreiden ist. Nur soll er bitte endlich dieses Hick-Hack mit nem neuem Vertrag lassen"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: wweangiwrote on 12.06.2011:[10.0] "Der Undertaker von TNA! Sting ist egal ob als face oder heel einfach spitze, tolle Promos und immernoch professionel! Er kann es noch mit den jungen spritzigen aufnehemn und bringt zugleich noch die Ringinteligenz eines erfahrenen Superstars mit! Für mich ganz klare 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: OdisVanNeusswrote on 24.05.2011:[9.0] "Sting hat einfach alles,  alles was den Jungs von Heute fehlt..  Gimick, Charisma Gute Micarbeit und dazu kann er einen Matchaufbau strukturieren und durchführen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: C0nspiracywrote on 27.03.2011:[7.0] "Seine WCW & TNA Zeit zusammen auf eine Wertung ergebeben bei mir immer wieder 7. Zu WCW zeiten eine 9 , seine TNA Zeit bewerte ich mit einer 5 minus. Sting ist sicherlich bis jetzt ( stand März 2011) ein opfer schlechten bookings, da dies aber auf beinahe alle TNA Wrestler zutrifft ist dies keine Rechtfertigung. Seine WCW matches waren wirklich sehr gut bis zu seinen Crow Gimmick. Beinahe alles danach war wirklich nur durchschnitt. Und bei TNA wrestled er noch bescheidener trotz oft guter Gegner , (Angle ect. )."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: thereisonlyonewrote on 10.03.2011:[10.0] "Wirklich eine Wrestling-"Ikone" und für sein Alter noch Top in Form Thumbs up!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: exxterwrote on 01.03.2011:[10.0] "Für mich das Phänomen der WCW. Und noch heute seh ich ihn sehr sehr gern auch wenn "nur" in TNA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Takerwrote on 27.02.2011:[9.0] "Auch eines der tollsten Gimmicks welches die Top Zeit in der WCW mitmachte 1997 - 1998... einfach Klasse der Mann... aber bei der WWE wird man ihn bestimmt niemals sehen..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TNAwrote on 04.02.2011:[10.0] "Guter Wrestler, damals in der WCW und auch in den letzten Jahren bei TNA, guter Allrounder der eigentlich alle Wrestlingstile beherrscht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ClaudeSpeedwrote on 31.01.2011:[10.0] "Er hat den Namen Icon einfach verdient. Tolle Matches und schön anzuhören -und -sehende Promos. Er hat es immer noch Drauf. Ohne weitere Worte 10 Punkte. Update: ist jetzt zwar ziemlich kürzer getreten aber nie passten vier Wörter zu ihm mehr als "You still got it" und das trotz seiner 51 (fast 52) Jahre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: rayraywrote on 30.01.2011:[10.0] "Für mich einer der ganz Größen. Super Ausstrahlung, noch besser dann mit dem "The Crow" Gimmick. Top Mic-Work. Und er ist sich treu geblieben, damit das er nie bei der WWE unter Vertrag war. Ist eine Legende und gehört in die Hall of Fame."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: LabronBenoitwrote on 05.12.2010:[10.0] "Sting ist genial, damals Anfang- bis Mitte der 90er schon ein riesen Wrestler gewesen, heutzutage sieht man natürlich nicht mehr so viel von ihm (auch Sting wird alt), aber das Gimmick ist nach wie vor Klasse. Und das der Herr Sting es nicht in die WWF geschafft hat, so wie mein Vorredner das hier andeutet, liegt eben daran, dass er niemals dorthin wollte. Ausserdem wäre Sting der letzte gewesen, der an dem Untergang der WCW Schuld getragen hätte. Er hat das letzte Nitro zu etwas Besonderem gemacht und auch zur History der TNA hat er jede Menge beigetragen. Für mich ein Mann, ohne dem WCW und TNA nie so weit gekommen wären!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Tarawrote on 12.11.2010:[10.0] "Für mich einer der besten Wrestler der 80 und 90 Jahre. Er war der Grund warum ich erst überhaupt Wrestling angesehen habe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MajinSitwrote on 27.10.2010:[10.0] "Ein Mann den man nur als Legende bezeichnen darf, alles andere würde Sting nicht gerecht. Er war/ist einer der ganz großen, keine Frage. Ein überzeugendes Gimmick, viel Charisma, und auch gute InRing-Fähigkeiten. Dass er nie in der WWF/E war, bringt ihm nur noch zusätzliche Sympathiepunkte. Würde ich nur seine Zeit in der WCW bewerten, hätte er mindestens 13 Punkte von mir gekriegt, aber man merkt ihm so langsam an, dass er auch nicht jünger wird. Das allerdings ist ein Makel, der nicht wirklich ausschlaggebend ist, denn auch wenn er im Ring nachgelassen hat, ist er immer noch ein großartiger Unterhalter. Volle Punktzahl, für einen der charismatischsten Gestalten mit einem der besten Gimmicks aller Zeiten der Wrestlingszene."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Fountain of Misinformationwrote on 25.10.2010:[6.0] "Sehr beschränkter Wrestler mit absolut überschaubaren Talent im Ring, der stets nur so gut war wie seine (guten) Gegner, selbst in den späten Achtzigern und bis Mitte der Neunziger war das im Ring nicht viel. Aber eben sehr charismatisch und mit mehr als nur dem "gewissen Etwas" ausgestattet, wovon er dann viele Jahre (mit noch schlechteren Matches als vorher) zehren konnte. Hätte sich alles nach 2000 aber getrost schenken können und hat unlängst d. h. bereits vor Jahren seinen Zenit überschritten."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Jar Jar Binkswrote on 21.10.2010:[6.0] "Hat mich irgendwie nie so richtig überzeugen können. Früher in der WCW, da war er großartig. Zumindest das was ich von ihm gesehen habe. Aber heute ist er das nicht mehr. Für mich eine Legende mit starker Vergangenheit, der dennoch langsam seine Karriere beenden sollte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Aesopwrote on 19.10.2010:[9.0] "Sting hat enorm viel Charisma, ein gutes Gimmick und früher war er auch im Ring zu gebrauchen, in den letzten Jahren ist er das aber nicht mehr, er ist schon lange über seinem Zenit, er sollte langsam mal aufhören."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Damon Strikerwrote on 17.10.2010:[7.0] "Ich habe Sting Anfang/Mitte der 90er Jahre sehr gemocht. Sein anschließender Gimmick-Wechsel war erfolgreich und wird von nahe zu jedem gefeiert. Nicht aber von mir. Das er damit verbunden eine ganze Weile auch noch nicht in den Ring stieg, tat sein übriges. Sein TNA-Engagement kann ich nur bedingt gutheißen, da er kaum junge Worker over brachte und es ihm Ring auch nicht mehr passte. Bleibt eine durchwachsene Bilanz."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Blade Bourdeauxwrote on 10.10.2010:[7.0] "Das Sinnbild der WCW, zusammen mit Ric Flair, und ein ganz Großer des Wrestlings. Mit der Ankunft des Hulkster musste er etwas zurück stecken kam aber dann mit neuem Gimmik erfolgreich zurück. Heute nicht mehr der selbe, aber immer noch besser als viele andere. + Wie viele scheint er nicht in der Lage zu sein zu erkennen wann man besser die Stiefel an den Nagel hängt daher eine Abwertung."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Homicide187wrote on 09.10.2010:[10.0] "Sting ist großartig. Das was er alles in der WCW gezeigt hat und was er für die WCW getan hat ist unglaublich. Den bunten Sting fand ich immer etwas komisch (sah ich aber auch erst als es den schwarzen schon gab), aber schwarz und rot war und ist er super. Für TNA ist er sicherlich auch sehr wichtig und ich bin gespannt was er da noch zeigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Ramwrote on 26.09.2010:[6.0] "Ich kenne ihn leider nicht aus seinen besten Zeiten nur so wie ich ihm in TNA erlebe, erlebe ich auch alle anderen Alten Leute in der TNA. Sie ruhen sich auf ihren Status aus den sie mal hatten. Heut zu tage Žkann ich wenig oder gar nichts mit dem Herrn Anfangen. Im Ring mittelmässig am Mic total lahm und die austrahlung die er früher hatte ist auch nicht mehr so da. Die TNA übertreibt es total mit ihm und hypt ihn als sei er der beste der Welt.  Nur wegen seinen guten Namen aus WCW Zeiten geb ich ihm 6 Punkte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Pyromaticwrote on 20.09.2010:[9.0] "Bestes Gimmick ever, aber es ist schade das er nie einen WWE Auftritt hatte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Tirlt a Whirlwrote on 06.09.2010:"Da ich nicht viele Matches von früher gesehen habe kann ich ihn nicht berwerten.  dazu muss man auch die storys miterlebt haben usw...  Ich kann nur sagen das mich niemand mehr langweilt als Sting.  Für mich hat er 0 Charisma und im Ring so lala.  Niemand im Wrestling interessiert mich weniger als Sting."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Double Jwrote on 28.08.2010:[10.0] "Sting ist super im ring, sogar heute noch und sehr charismatisch. Außerdem reißt er sich immer den arsch auf, hilft Rookies backstage und laut Eric Bischoffs autobiographie war sein Gehalt nicht annähernd so hoch wie das von anderen stars, obwohl er den selben stats hat und er soll sich nie beschwert haben.  Den Mann muss man einfach respektieren, wer Sting nicht respektiert, der respektiert das bussines nicht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: LionheartXwrote on 03.08.2010:[10.0] "Sting ist seitdem HBK im Jahre 2006 mehr und mehr zu einer Komedy Person mutiert ist, mein Lieblingswrestler. Sein äußerliches erscheinungsbild macht ihn interessant, seine Entrance Lied ist einfach Hammer. Wrestlerrisch überzeugt er mich fast immer, obwohl er schon paar jährchen alt ist. Er hat Charisma und wie! Ich glaube er zählt zu den größten Legenden. Ich hoffe mal, dass wenn er aufhört, vielleicht eine hohe Position in TNA bekommt und die Show Kreativ beeinflussen kann oder darf. Das wäre eigentlich wirklich Klug, denn er ist schon lange dort dabei und kennt die Worker sehr gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: WrestlingFanDuisburgwrote on 03.08.2010:[9.0] "Egal ob als farbenfroher Sting oder mit Crow Gimmick, er hat es einfach drauf. Seine Matches, waren immer Spitze. Leider hat ihm Hogan mit der Creative Control Klausel bei Starrcade 97 die Karriere versaut, denn er hat verhindert, dass die WCW Legende der nWo eine klare Niederlage beibringt. Mikrofontechnisch ist Sting auch nicht der schlechteste."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hirnklopswrote on 13.06.2010:[4.0] "Lieber Steve... TU ENDLICH FETTICH MACHEN! Das kann sich ja bald keiner mehr angucken..."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Shikawrote on 30.05.2010:[6.0] "Ist mittlerweile längst nicht mehr der der er früher war. Dafür das er schon 50 ist kann er zwar noch einiges aber für mehr als 6 Punkte reicht es trotzdem nicht. Bei TNA für mich immer ein Grund umzuschalten."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Erasedwrote on 22.05.2010:[8.0] "Stand vor vielen Jahren verdient im Main Event. Inzwischen hat er seinen Platz dort aber nichtmehr verdient. Sein Können ist nun schon stark durch sein Alter beschränkt, somit hällt er bessere, die eine gute Aussicht auf eine Zukunft haben unten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: RockerDropperwrote on 25.04.2010:[9.0] "Sting ist ein Phänomen; Seit 25 Jahren im Geschäft und 20 davon ein Main Evente ohne häufige Gimmickwechsel und Turns. Er ist eine Konstante im schnellebigen Geschäft, und wo selbst Stars wie Bret Hart, The Rock oder Steve Austin in seiner Zeit ganz nach oben stiegen aber schon lange nur noch blasse Erinnerungen sind steht er noch immer im Main Event; das ist ganz erstaunlich.  Selbstverständlich kann seine Leistung nicht mehr so überzeugen wie mit 35; aber sie ist auch nicht schlecht. Nach wie vor liefert er solide Matches und zeigt sich in einer guten körperlichen Verfassung.  Wirklich ein Wrestler, der es damals wie heute verdient hat, im Rampenlicht zu stehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Brooklyn Brawler 1985wrote on 22.04.2010:[10.0] "Wer sich so lange an der Spitze einer Liga hält und zudem keine merklichen Schwächen offenbart, der hat sich die volle Punktzahl definitiv verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: cypherwrote on 06.04.2010:[10.0] "The Icon;) mehr muss man wohl nicht sagen. Zum einen find ich sehr gut das er nie bei der WWE war, zum anderen find ich seine jedes Jahr aufs neue Vertragsdebatte richtig kacke. Aber ok;) jeder Mensch hat Fehler:) mfg Cypher"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Danicheckwrote on 04.04.2010:[10.0] "Er war einer der Gründe, warum ich angefangen habe, Wrestling anzugucken. Dazu finde ich ihn ziemlich cool, hat ein einzigartiges Gimmick, was mich dazu bewegt 10 Punkte zu geben"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Moyawrote on 15.03.2010:[10.0] "War für mich immer einer der Hauptgründe, WCW einzuschalten. Machte mit seinem schwarz/weiß Outfit eine gute und interessante Charakterentwicklung durch. Insgesamt einfach ein starker Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Kane15wrote on 09.03.2010:[9.0] "Damals in der WCW großartig... inzwischen ziemlich schwach eingesetzt :("
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TheROCKwrote on 24.02.2010:[10.0] "Der beste, der nie in der WWE war. Sagt wohl schon alles. Ein Mann mit Überzeugung. A True Icon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: chryzzwrote on 18.02.2010:[10.0] "ER hatte das Beste Gimmik was jemals geschaffen wurde und brachte dieses auch noch perfekt rüber. Im Ring Grossartig am Mic ebenfalls."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CatsCrashwrote on 17.02.2010:[10.0] "Auch wenn Sting mittlerweile zum alten Eisen gehört, ist und bleibt er wohl einer der größten Wrestler aller Zeiten. Er sollte wirklich noch eine kurze Fehde evt. gegen den Hulkster machen und dann nur noch ab und an erscheinen. Wenn er sich komplett zurück zieht wäre es ein großer Verlust für die Wrestlingwelt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Manu Adamswrote on 16.02.2010:[10.0] "Es mag sein, dass Sting definitiv seinen Zenit weit übersprungen hat, doch auch wie ich finde ist er jetzt ebenfalls noch in der Lage Top Matches abzuliefern, wenn man ihm einen richtigen Gegner wie Kurt Angle oder AJ Styles hinstellt. In den 80igern als ich noch Mark war, war Sting mein absoluter Lieblingswrestler. Ich weiß noch wie ich Woche für Woche vor dem Fernseher saß und mitfieberte. Auf jeden Fall ein großer Techniker der mit unzähligen Klassikern für Aufsehen sorgte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Ellmowrote on 19.01.2010:[10.0] "Der beste Wrestler in der WCW. Ist seit meiner Anfangszeit als Wrestlingfan bis zum heutigen Tage einer meiner Liebslingswrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ShakDragoonwrote on 19.01.2010:[9.0] "Eine absolute Legende in der NWA und WCW... hab' mich sehr über seinen Championship-Runs bei TNA gefreut und seh' ihn immernoch gerne! Als Anführer der Main Event Mafia war er perfekt eingesetzt. Bin gespannt, wie es nun unter Hulk Hogan mit ihm weiter geht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Mick Funkwrote on 18.01.2010:[4.0] "Zenit ist lange Zeit überschritten. Nach dem Karriereende folgt eine Aufwertung."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: nwowrote on 15.01.2010:[2.0] "Ich mochte ihn nie. Weder als Babyface-Sting, noch als Crow-Sting. Und jetzt ist er auch noch zu alt."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DJ MaSchwrote on 19.12.2009:[8.0] "Einer der ganz großen. Legendäre Matches, vorallem Ende der 80er bis Mitte der 90er wrestlerisch wirklich hervorragend. Zudem Kkasse am Mic und die wohl beste Gimmick Weiterentwicklung aller Zeiten. Alles in allem müssten das klare 10 Punkte sein, aber er hätte seine Karriere eben schon vor gut 10 Jahren beenden sollen. Jetzt mit über 50 ist er nicht einmal mehr ein anehmbarer Wrestler und kratzt ganz schon an seinem eigenen Denkmal. Schade."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: stallownagewrote on 04.12.2009:[10.0] "Sting ist definitiv einer der Kandidaten, deren Gimmick keinerlei Weiterentwicklung mehr benötigt. Als Aushängeschild der WCW hat er etliche Titel gesammelt und an den wichtigsten Fehden teilgenommen, wenn nicht sogar in deren Mittelpunkt gestanden. Durch den Wandel zu einem äußerlich an "The Crow" angelehnten Rächer in 1996 ist er endgültig zum absoluten Superstar aufgestiegen. Dass er sich diesen Status nicht durch einen eventuellen WWE-Run zunichte hat machen lassen, spricht daher nur noch mehr für ihn. Obwohl die Geschichten, die um ihn bisher in TNA gestrickt worden sind, zum Großteil nicht gerade das Gelbe vom Ei waren, hat er diese doch immer wieder mit seiner Präsenz und vor allem seiner Arbeit am Mikrofon deutlich aufgewertet. Das letzte Top-Match (gegen Kurt Angle) liegt zwar nun auch schon zwei Jahre zurück, im Vergleich zu den restlichen Altstars in TNA, kann sich seine Arbeit zwischen den Seilen allerdings noch am ehesten sehen lassen. Die "You still got it"-Rufe der Fans zeigen außerdem welchen Respekt er auch heute noch genießt. Und das neben Männern wie Kevin Nash, Mick Foley, Kurt Angle und bald auch Hulk Hogan. Weniger als die 10 darf hier einfach nicht stehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: downtown2wrote on 03.12.2009:[8.0] "Sting hatte durchaus gute Phasen in seiner Laufbahn, in denen er ein würdiger Superstar war. Ein Aushängeschild der WCW sowieso. Man kann ihm aber dennoch keine Bestnoten verpassen, da er sich in den großen Ligen dieser Welt nie dem Wettbewerb aussetzte und seine, damals sicherlich revolutionäre, Crow-Sting Figur nie mehr weiterentwickelte. Für all die Jahre der schillerden Unterhaltung wird man ihn aber gut in Erinnerung behalten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Telecinewrote on 01.12.2009:[8.0] "Auch Sting ist ein Kandidat, der sich nicht dazu durchringen kann, Schluss zu machen. Und auch ich als Wrestling-Fan kann mich zurzeit nicht entscheiden, ob ich für oder gegen einen Rücktritt sein soll. Grundsätzlich sollte jedoch für alle Wrestler gelten: Sie sollte gehen, solange sie noch einen würdevollen Abschied in Form eines guten Matches haben können. Das kann Sting zurzeit noch. Aber natürlich ist es somit immer ein bisschen Poker, wie lange man weitermacht und dann wirklich noch in der Lage ist, ein gutes Abschiedsmatch zu machen. Bei Ric Flair beispielsweise war dieser Punkt eig schon überschritten und er hat es mit HBK dennoch geschafft. Sting kann ruhig noch ein paar Jahre weiter machen, aber seine Leistungen sollten doch so bleiben, wie sie jezt sind, denn wenn er stark nachlässt, dann wird er sich selbst damit keinen Gefallen mehr tun."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TheLoudMouthwrote on 16.11.2009:[10.0] "Absolute Legende. Sehr hoher Bekanntheitsgrad, obwohl er nie in einem WWE-Ring stand. Im Ring ganz passabel, am Mic eher schwach, aber an Charisma kaum zu überbieten in der TNA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: GibDirDreggischwrote on 13.11.2009:[10.0] "10 Punkte für eine Legende, der trotz fortgeschrittenen Alters im Vergleich zu vielen anderen Alt-Stars auch heute noch durch gute Leistungen seinen Platz im TNA Main-Event rechtfertigt und es vor allem versteht dem Publikum das Entertainment zu liefern, für das wir doch alle diesen Sport lieben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Ultrakaoswrote on 06.11.2009:[10.0] "Einer meiner favoriten. Zwar ins Alter gekommen aber immernoch gut. Das einzige was fehlte war mal ein Vertrag bei der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: New Evolution90wrote on 22.10.2009:[10.0] "Eine Legende wie Sting lebt nur einmal. Hätte ihn gerne in der WWE gegen Rey oder dem Undertaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Kurt Winkelwrote on 20.10.2009:[10.0] "Wenn Sting im Ring auch langsam abbauen mag: Er ist eine Legende und weiterhin einer der charismatischsten Micworker überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BoeserLobowrote on 05.10.2009:[10.0] "Noch immer eine der absoluten Ikonen des Wrestlings. Besonders erwähnenswert, dass er sich (bisher) noch nicht an die WWE verkauft hat. Hat in seiner Karriere einen Extremwandel im Gimmick vollzogen und diesen absolut überzeugend verkauft. Sehr guter Mic-Worker. Als Heel nicht von den Fans akzeptiert und deshalb immer wieder nach kurzer Zeit zum Face zurückgewechselt (teilweise sogar gegen Storyline). Einziges Manko: hätte wesentlich mehr Titelkämpfe erhalten müssen auf Grund seiner Fähigkeiten und der Popularität."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: finsterwegwrote on 24.09.2009:[10.0] "Gut habe lange keine Matches von ihm gesehen , kenne Sting nur aus der WCW zeit. Damals war er die Kult Figur deshalb 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Wichtgestaltwrote on 21.09.2009:[10.0] "Ok, Bewertung zurück auf 0 Punkte. CHECK!  WCW-Zeit 10. 0 Punkte. TNA-Zeit ... Naja, zwischendurch habe ich dem Stinger nur 8 Punkte gegeben, weil er teilwiese junge Leute zu wenig "over" brachte. Mittlerweile sehe ich aber, das er die Fackel weiter reicht. Willkommen im Olymp, Sting"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: NewGuywrote on 12.09.2009:[10.0] "DER Beweis, dass man nicht umbedingt immer in der WWE sein muss um zu einer absoluten Ikone dieses Sports zu werden! Sting liebt das Business, nicht das Geld, sondern einfach nur das Business! Super Mic Worker, super techniker, super legende geht einfach nicht anders als fette 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: billygunnwrote on 02.09.2009:[10.0] "Eine Legende? Eine Ikone! - Der Stinger Super Finisher, gut überdachtes Auftreten und seine beliebtheit machen ihn perfekt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: teekay86wrote on 25.08.2009:[10.0] "Unterhält mich schon seit ich mic für Wrestling interessiere. Er blieb sich immer treu indem er nie ins Lager der WWE wechselte, er hat ein Gimmick mit dem sich über die Jahre einige Interessante Storylines schreiben ließen und er schafft es auch heute noch Matches auf die Beine zu stellen die mich interessieren. Allerdings hoffe ich auch das er seine aktive Chariere bald an den Nagel hängt, damit er seinen Status als Icon nicht durch sein zu langes festhalten am Business beschädigt. Allerdings hoffe ich auch, das er evtl. noch als Mentor in Erscheinung tritt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Woerpwrote on 23.08.2009:[6.0] "Sting konnte mich noch nie wirklich begeistern, nicht im Ring, nicht am Mikro. Für mich ist er kein Main Eventer. Aber sein Vermächtnis, eine lange Karriere, halte ich ihm zu Gute."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Amurebkuwrote on 13.08.2009:[8.0] "Eine Legende, ohne Frage. Das Crow-Gimmick fand ich persönlich bei ihm am besten. Die volle Punktzahl hätte er von mir bekommen wenn er sich auch mal in der WWE bewiesen hätte (in der er ja nie war). Er war/ist in allen Ligen in den er angetreten ist top, doch dieser Punkt stört mich ein wenig. Das wäre halt eine fette Referenz. Hätte ihn gerne mal gegen The Rock, Shawn Michaels, Undertaker oder Triple H gesehen. Naja, trotz allem ein toller Wrestler und charismatisch dazu."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The-Game91wrote on 10.08.2009:[10.0] "Zu WCW Zeiten hat er mir am besten gefallen. Bei TNA auch noch gut. In kurzen Worten Sting ist eine Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: 108 Sternewrote on 24.07.2009:[8.0] "Hat zusammen mit dem Ultimate Warrior angefangen, doch im Gegensatz zu diesem von da an konstant im Ring gestanden und sich zu einem wirklich guten Wrestler gemausert. Neben Ric Flair DIE Symbolfigur für die WCW!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Aquifelwrote on 03.06.2009:[8.0] "An sich hätte Sting 10 Punkte verdient, da er einer der ganz Großen im business ist und sowohl in den 80ern, als auch den 90ern so einige legendäre Matches und Momente hatte und überdies auch ein sehr guter Worker war. Allerdings hat er in letzter Zeit, auch aufgrund des Alters, abgebaut. Ich persönlich sehe ihn immer noch gerne und kann nicht behaupten, dass seine TNA Matches oft eher schlecht als recht waren (allerdings auch nicht überragend). Dennoch, dass Sting heutzutage nicht mehr so gut ist wie zu Zeiten der Matches gegen Flair oder Vader, dürfte den meisten klar sein. Wird Zeit, dass er in Rente geht (was er ja nun anscheinend auch vor hat)."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Excellence of Executionwrote on 25.05.2009:[8.0] "Sting ist einfach ein absolout kultiger und legendärer Wrestler. Dass er diesen Status erreicht hat, ohne dass er je beim Platzhirsch WWE angetreten ist, ringt zumindest mir noch mehr Anerkennung für den Stinger ab. Seine Gimmicks kamen immer glaubwürdig rüber und im Ring war Sting durchaus ein solider Worker, der das eine oder andere sehr gute Match aus dem Hut ziehen konnte. Allerdings hat man solches seit seinem Eintritt bei TNA (oder zumindest seitdem ich TNA verfolge - seit Mitte 2008) nicht mehr von ihm gesehen. Oftmals war das Gesehene sogar eher schlecht als recht und sein Scorpion Deathlook treibt mir, als Anhänger des Sharpshooters, die Schamesröte ins Gesicht. Da wirkt Däumchendrehen schmerzvoller! Eingedenk seiner massiv stagnierenden in-Ring Leistungen muss ich ihn einfach abwerten, da dies den Gesamteindruck doch spürbar runterzieht. Im Moment lebt er wirklich ausschließlich von alter Glorie und von seinem Gimmick."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Mountiewrote on 21.04.2009:[5.0] "Vielleicht bin ich grad in zu großer Anti-Sting-Stimmung, aber aktuell können mich nicht mal die vergangenen Verdienste von einer kräftigen Abwertung abhalten. Ich kenn alle Vorzüge von Sting: Er ist außerordentlich sicher am Mikro, war bis Mitte der Neunziger wrestlerisch für seine Statur überragend und hat dann den wohl besten Gimmick-Weiterdreh der Wrestlinggeschichte vollzogen. Ich find trotzdem verblüffend wie kritiklos ihn das Gros der Fans von den vergangenen Zeiten zehren lassen, obwohl er seit langer Zeit viel mehr Schein als Sein ist. Wrestlerisch war Sting schon zu Crow-Zeiten nicht mehr das, was er mal war. Dass er es mit 50 jetzt noch weniger ist - geschenkt. Dass er aber mit seinen abgebauten Fähigkeiten seit Jahren den Main Event der Liga vereinnahmt und ich immer noch keine Anstalten bei ihm erkenne, dass er seinen Status für die neue Generation in die Wagschale wirft statt für alte Kampfgefährten wie Jarrett und Foley, ärgert mich zunehmend. Und dass er die Liga mit seiner schwachsinnigen Weigerung den vollen Heel zu spielen, zu schmerzend unlogischem Booking zwingt, frustriert fast noch mehr. Sorry, aber: You don't got it anymore, Sting."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: justusjonaswrote on 17.04.2009:[10.0] "Die Matches die er abgeliefert hat z. B gegen Vader und Flair sind einfach legendär. Er ist eine Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ScrWwe94wrote on 13.04.2009:[10.0] "Einfach bekannt, auch wenn man nicht TNA schaut, was ich seit geraumer Zeit aber nicht mehr mache."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: vida-locawrote on 25.01.2009:[7.0] "War früher um klassen besser! Overated! hätte er 2006 kein Comeback bei TNA gegeben hätte er 10 pointŽs bekommen, den er ist/war der einzige Wrestling-star den die wwe selbst erschaaffen hat ( zum größten teil )"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Green Arrow Banditwrote on 10.01.2009:[10.0] "Tja dazu kann ich nicht viel sagen außer er ist wirklich eine Legende. Und dies hat er nicht TNA zu verdanken"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Flame286wrote on 09.12.2008:[7.0] "Nicht mehr der alte. Und bei der MEM geht er einfach nur unter..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: gunniwrote on 06.12.2008:[9.0] "Wohl die WCW-Größe schlechthin. Legendäre Matches gegen Ric Flair, Hulk Hogen, Sid und so vielen anderen! Wrestlerisch einmalig! Als Gimmick gefiel mir die Zeit um 1993/94 am besten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Typhixwrote on 26.11.2008:[9.0] "Nüchtern betrachtet im Ring nicht mehr der agilste und athletischste. Sting lebt von seiner immensen Erfahrung und schafft es so, auch heute noch Matches spannend zu gestalten. Sein Charisma und seine Qualitäten am Mikrophon sind ihm dabei eine große Unterstützung. Auch wenn der Stern langsam sinken mag: Sting ist eine wahre Ikone."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Baldrickwrote on 15.11.2008:[10.0] "Ich habe den Original-Sting sowie die ganze WCW eigentlich nie gemocht - Bis dann der nwo-Angle und das damit verbundene Crow-Gimmick kam. Man fieberte jeder Show entgegen und weil sich hier eine der besten Storylines und wahrscheinlich DAS beste Gimmick aller Zeiten trafen, gibts die volle Punktzahl ! Dazu der unglaubliche Wille, eine absolut vorbildliche Arbeitseinstellung und die Fähigkeit, auf seine alten Tage nochmal Movesettechnisch nachzulegen und wirklich ALLES aus sich rauszuholen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: stingersplashwrote on 10.11.2008:[10.0] "Sting war der grund warum ich überhaupt anfang der 90er angefangen hab wrestling regelmäßig anzuschauen und vorallem, warum ich bis ins jahr 2000 die wcw der wwf vorgezogen hab!  Er ist einer der helden meiner kindheit und mein absoluter lieblingswrestler of all time!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DirtiestPlayerwrote on 17.10.2008:[10.0] "Für mich die größte noch aktive Legende im Wrestling. Die guten alten WCW-Tage sind zwar vorbei aber hoffentlich bleibt er uns noch einige Zeit erhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: El Reywrote on 07.10.2008:[10.0] "Er ist die Wrestling-Ikone schlechthin. Allein sein Auftreten ist den Eintritt wert. Schaue mir ihn immer wieder gerne an."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MrWrestlingwrote on 04.10.2008:[10.0] "Für mich gehört er zu den ganz großen Legenden. Er hat mir allerdings in der WCW besser gefallen als jetzt bei TNA"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: caterwrote on 01.10.2008:[5.0] "Vielleicht liegt es daran, dass ich kein WCW-Fan war aber Sting hat bei mir einfach keinen Legendenstatus. Ich sehe ihn als normalen durchschnittlichen Wrestler an, der zwar ein gutes Gimmick hat, aber im Ring doch etwas limitiert ist. Er ist keinesfalls schlecht aber eben auch nicht die absolute Oberlegende. Außerdem noch ein kleine Abstufung, da ich mittlerweile einige Promos von Sting gesehen habe, die zu seinen besseren gehören sollten, mich allerdings absolut nicht überzeugen konnten"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: davidbeatsgoliathwrote on 20.09.2008:[8.0] "der Typ hat ne gute Ausstrahlung und gutes Mic work. als crow hat er mir am besten gefallen, nur schade um das etwas fade match gegen Hogan SC 97. sein schwarzer Baseballschläger war auch genial, daher insgesammt 8 Pkt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MINOtauruswrote on 17.09.2008:[10.0] "Für mich die größte lebende Legende im Wrestling! Seit seinem ersten World Title Gewinn gegen Flair hab ich ihn immer wieder gern gesehen. Und ich hoffe ich werde ihn noch eine Weile (bei TNA) sehen dürfen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Wise Warriorwrote on 16.09.2008:[10.0] "Legende! Hat mir schon als "bunter" Sting gefallen. Super Matches gegen Vader, Muta, Cactus Jack... Auch sein derzeitiges Comeback finde ich beeindruckend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: jimpanse1980wrote on 24.08.2008:[10.0] "WCW-Legende mit tollen Matches und später einem neuen Gimmick, das so gut ankam und langanhaltend ist wie das des Undertakers. Respekt auch dafür, dass er mal nein zur WWE gesagt hat. Für sein Alter bei TNA immer noch gut, auch wenn er letztendlich größtenteils vom früheren Glanz lebt. Für mich immer noch unverständlich warum er Zeit seiner Karriere nie die Nr. 1 einer Promotion war und die wichtigsten Matches meist verlor bzw. Titel nie lange halten durfte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: gerybundy68wrote on 21.08.2008:[9.0] "Bin zwar kein großer Sting - Fan, er war aber ohne Zweifel DAS Aushängeschild der WCW. Rechne es ihm hoch an, nie der Verlockung des Geldes der WWE erlegen zu sein. Hat wohl eines der besten Gimmicks die es je gab."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: xXShawnMichaelsXxwrote on 13.08.2008:[10.0] "Auch wenn für mich "The Icon" noch Shawn Michaels ist. Ist Sting ein ganz Großer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: homer3112wrote on 06.08.2008:[10.0] "Eine absolute WCW-Ikone. Ich finde er ist einer der allerbesten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CenaSuckswrote on 29.07.2008:[3.0] "Ich konnte mich noch nie mit Sting anfreunden, finde ihn einfach langweilig. Just my mean thoughts!"
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Sting93wrote on 22.07.2008:[10.0] "Sting ist einfach eine Legende im Wrestling und einer der größten Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: LordTrailerwrote on 03.07.2008:[8.0] "Eine WCW Legende und es nötigt mir Respekt ab, dass er die WWE noch nichtmal ausgetestet hat, was ich allerdings gerne sehen würde. Was er bei TNA anstellt, ist dagegegn seiner nicht würdig. Promos stimmen zwar, aber wrestlerisch demontiert er sich selber. Bisher hat er jungen Wrestlern auch wenig geholfen und damit meine ich noch gar nicht mal durch Niederlagen. Damit muß ich eine eigentliche sichere 10 abstufen auf 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: real americanwrote on 02.07.2008:[9.0] "NWA und WCW Legende, konnte auch in Ring und am Mic eigentlich immer überzeugen, seine Wandlung zum Dark Warrior war großartig allerdings scheiterte die Fehde leider an Hogans Ego. Heute immer noch solide aber nicht mehr so atemberaubend wie früher."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Phenomenwrote on 10.06.2008:[6.0] "Grenzenlos überbewertet hatte seine besten Ring zeiten von 1988-1993 danach war er im Ring nur noch überbewertet ist am Mic oke hat ein gutes gimick und er sollte dieses Jahr bei Bound for Glory aufhören jedenfalls eine 3 Hat er auf jedenfall noch verdient"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DeadHeadwrote on 05.06.2008:[10.0] "Da ner nie zu der WWE gagangen ist hat er nicht den leichten Weg genommen wie so mancher WCW Wrestler sondern er hat den Schritt zu TNA gewagt und ist dort auch immer noch ein Publikumsliebling. Auch mein Respekt vor seinen Leistungen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Die Gurkewrote on 21.04.2008:[10.0] "Sting ist einfach eine Legende. Er ist mit seinem Alter natürlich nicht der größte Techniker vor dem Herrn, aber außer Ricky Steamboat wüsste ich auch niemanden aus seiner Generation auf den das zutreffen würde. Sting hat imo auch heute noch etwas was vielen jungen Talenten fehlt:"Charisma". Genau wie Hogan lebt sting von der Gänsehaut Atmosphäre seiner Anwesenheit, nicht von seiner unglaublich großen Move-Palette."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Alpheronwrote on 17.04.2008:[10.0] "Sting ist war und wird immer der bester wrstler sein, Mystisch, technisch, und konditionsmäßig ein hammer"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: redmoskauwrote on 14.04.2008:[10.0] "hat sich über die Jahre einen Status aufgebaut der mit dem des Undertakers vergleichbar ist und das ohne jemals in der WWF gewesen zu sein. Ich hoffe er hängt noch ein paar Jahre dran."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Felice-del-mondowrote on 13.04.2008:[10.0] "Wenn man es als Worker schafft trotz 18 monatiger Ring Absenz zum populärsten Wrestler seiner Zeit zu werden dann hat man nichts anderes als 10 Punkte verdient. Dass der Wechsel zu WWF nie zustande kam war wohl im Nachhinein die richtige Entscheidung da es seiner Legende keinen Abbruch tat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: WCWlerwrote on 07.04.2008:[10.0] "Eine Legende. Der einzige große (Alt-)star der nie in der WWE war. Auch wenn es doch schade ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Desperadowrote on 07.04.2008:[10.0] "Am Mic überzeugend, im Ring Old School und einfach genial. Kann trotz seines Alters immer noch überragende Matches zeigen. Wer diesem Mann weniger, als 8 Punkte gibt hat einfach keine Ahnung vom Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ultimate-warrior-xwrote on 29.03.2008:[10.0] "Wer ohne die WWE den Status eines Stings erreicht hat es wirklich verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Akkuswrote on 26.03.2008:[10.0] "Sting ist eine Legende, er war nie im Titan Land bei Vince, was ihn noch sympatischer macht, außerdem ist es schön dass er auch ab und zu bei TNA zu sehen ist. Ist zwar nichtmehr der WCW Sting, aber hauptsache er ist nicht bei WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ZuluBunsenwrote on 21.03.2008:[8.0] "Unterdessen bei TNA eher meh, damals in der WCW aber einfach nur genial und eines der wichtigsten Standbeine der Promotion."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: felixwrote on 13.03.2008:[10.0] "Er ist bedeutender als so ziemlich jeder Wrestler der letzten fünf Jahre. Sting ist seit über 15 Jahren an der Spitze und das zu Recht. Er besitzt den gleichen Status wie Flair, Race, Undertaker und all die anderen Legenden. Er hätte es, obwohl er nie in der WWE war, verdient in die Hall Of Fame aufgenommen zu werden, da er ein fundamentaler Bestandteil der Monday Night Wars war und damit zu den wahnsinnigen Einschaltquoten beigetragen hat von denen die WWE noch heute zehrt. Er ist wirklich "The Icon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Instant Classicwrote on 13.03.2008:[8.0] "Einfach eine der absoluten Legenden. Überzeugt heute leider nicht mehr so wie noch zu wCw Zeiten, aber noch immer sehr unterhaltsam."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hijo Rudiciowrote on 23.02.2008:[10.0] "Die Ikone. Für eine echte WCW-Invasion in die WWE hätte er alleine gelangt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Staniwrote on 21.02.2008:[10.0] "Der Mann zusammen mit Flair der WCW. Legendär seine Matchserien genau gegen diesen, gegen Vader oder die nWo. Schaffte es sogar, dass Sid wie ein Könner gegen ihn ausah. Auch seine Fehde gegen die Horseman konnte sehr gut gefallen. Schaffte auch gut den Gimmickwechsel vom 80er/90er Standardbabyface mit Facepaint und Gruselfrisur zum vielschichtigen Dark Warrior Gimmick, welches er bis heute immer weiterentwickelt. Kann nach anfänglichen Startschwierigkeiten in seinem Alter auch noch Topleistungen bei TNA vorweisen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Rated R Champwrote on 11.02.2008:[10.0] "Einfach eine Legende, und auch im jetzigen Alter noch gut, Respekt. Bin froh, dass er TNAW noch ein Jahr erhalten bleibt. Hätte auch einen richtigen Run als TNA World Champ verdient, aber daran glaub ich irgendwie nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: mr sledgehammerwrote on 14.01.2008:[6.0] "Im Ring ziemlich langweilig, und nach so langer Zeit ähnlich wie der Deadman einfach ausgelutscht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: AnFuwrote on 05.01.2008:[6.0] "Ich mag ihn einfach nicht! In der WCW auch sicher eine Legende, aber bei TNA sagt er mir auch nicht mehr zu. Aber trotzdem noch die 3 von mir!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Champwrote on 03.01.2008:[10.0] "Der beste WCW-Wrestler der nie für die WWE angetreten ist! Das Crow-Gimmick ist bzw. war genial. Sehe ihn immer noch gerne. TNA sollte ihn wieder etwas mysthischer auftreten lassen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Brahma Bullwrote on 03.01.2008:[8.0] "Eine Wrestling Legende, auch wenn er nie für die größte Liga angetreten ist! Fand ihn vor dem "Crow" Gimmick besser!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MA Excellentwrote on 29.12.2007:[8.0] "Sting ist schwierig zu erklären. Er ist sicherlich ein Mythos aufgrund der vielen Jahre in der WCW, in denen er die Company getragen hat. Er hatte immer ein herausragendes Auftreten, sei es mit dem Crow Gimmick oder mit dem "alten" Stinger. Bezüglich der Qualitäten im Ring kann ich mich noch an sehr gute Matches aus den 90ern erinnern, z. B. gegen Flair oder Vader. Allerdings halte ich seine Fähigkeiten allgemein für limitiert, neben seinen 3 Signature Moves ist da eigentlich nicht viel. Seine Fehden waren eigentlich fast schon immer nahe am Trash. Ich führe das darauf zurück, dass seine charismatischen Fäigkeiten nicht die Besten sind. Da musste man immer recht tief in die Kiste greifen. Nicht umsonst basiert sein erfolgreichstes Gimmick darauf, dass er eige"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Der dunkle Lordwrote on 28.12.2007:[8.0] "cooles gimmick, klasse wrestler!  rundum "gut", leider nicht in der wwe, sodass ich nur alte matches von ihm gucken kann :'-("
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Voodoo666wrote on 27.12.2007:[10.0] "ich schließe mich den leuten an einer der besten wrestler wenn nicht sogar der beste. am meisten hat er mir in der wcw gefallen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: steven619wrote on 27.12.2007:[10.0] "Sting ist einer der Besten Wrestler der Welt. Er ist sich immer treu gewesen. Ich würde ihn gerne nochmal in der WWE sehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Comptonwrote on 27.12.2007:[8.0] "Der größte US-Wrestler aller Zeiten, der noch nie bei der WWE unter Vertrag stand. Auch das Crow-Gimmick gehörte anno 1997 mit zu den besten aller Zeiten. Zur heutigen Zeit kann man auf den Stinger, und man kann es leider nicht anders formulieren, getrost verzichten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: jerseyhoolwrote on 02.12.2007:[10.0] "Volle Punktzahl! Warum? Nun, zwar mag der Stinger nicht mehr der jüngste sein, zu begeistern versteht er jedoch noch immer. Ausserdem ist er für sein Alter immer noch sehr gut in Schuss, vergleichbar mit dem Undertaker! Ok, 5* Matches sind nicht mehr seine Stärke, aber wer einmal seine Schlachten gegen Ric Flair gesehen hat, weiss, was dieser Mann im Stande ist zu leisten! Ein ganz Grosser, den ich mir noch lange zu sehen wünsche."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Cloverwrote on 25.11.2007:[6.0] "Ich liebte sein Gimmick.. inzwischen ist er mir aber zu alt und technisch war er eh nie der Größte - muss WOODSTOCK da also voll und ganz zustimmen! 7 Punkte.."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: aulitwrote on 25.11.2007:[4.0] "Ich gebe es zu, ich mochte Sting noch nie. Nur sein Crow-Gimmick konnte mich eine Zeit lang fesseln. Da hätte man aber auch jeden x-beliebigen mit einer Maske hinstellen können. Sobald Sting wieder Interviews gab, verlor ich auch das restliche Interesse."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Blue Meaniewrote on 16.11.2007:[6.0] "Hat seinen Zenit IMO so langsam überschritten. Sollte bald mal aufhören mit dem Wrestling."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: antihiphop2002wrote on 11.11.2007:[8.0] "Auch wenn er schon ein relativ alter Sack ist, ist er im Ring immer noch besser als manch anderer. Das Crow Gimmik ist natürlich extrem geil und verleiht im eine ganz besondere Ausstrahlung. Für die lächerlichen Gesichtsbemahlungen und das dämliche Geglotze vor dem Crow Gimmik gibts aber nur ne zwei von mir, den das hat mich extrem genervt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TheAdaawrote on 05.11.2007:[8.0] "Sting ist sicherlich einer der Wrestler die man kennen sollte. Zwar nagt auch bei ihm mittlerweile der Zahn der Zeit, aber seine Glanzzeit in der WCW war genial. Bei TNA hat er einige schöne Matches gehabt, aber ihm den Titelrun zu vermasseln indem man Angel wieder aufbaut war ein großer Fehler. Sting ist eine Legende, alleine weil er nie für Vince und die WWE antrat und trotzdem einer der großen geworden ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Benny110106wrote on 28.10.2007:[8.0] "Was Leute wie der Taker, HBK und Bret Hart für WWE sind ist er für die WCW und zwar ein Aushängeschild ! Sting mag nicht der Übertechniker wie Hart gewesen sein aber er hatte wie diese anderen auch eine Erscheinung im Ring, die ihres gleichen sucht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Winnie The Poohwrote on 24.10.2007:[10.0] "Mit Sicherheit der beste Wrestler aus der WCW. Zudem hat sein Gimmick das gewisse Etwas, dass nur sehr sehr wenige Gimmicks haben (ähnlich wie beim Undertaker)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: mdbnasewrote on 18.10.2007:[6.0] "Konnte nie wirklich viel mit ihm anfangen, aber ein solider Worker mit guten In-Ring- & Mic-Skills! Aber wie gesagt, interssiert mich nicht wirklich!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: HBK-Xwrote on 16.10.2007:[8.0] "Finde ihn auch super. Klasse Gimmick! Hätte sich trotzdem mal bei Vinnie Mac in der WWE beweisen sollen!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Jericho Onewrote on 04.10.2007:[10.0] "Sting ist für mich wirklich eine Icone des Wrestlings! Seid Jahren ist der Mann Kult und hat auch bei TNA nichts davon eingbußt. Zeigt immernoch einige krasse Aktionen für sein Alter und kann mit schwächere Wrestler trotzdem gute Matches hinlegen. Ist sich auch nicht zu schade sich für jüngere Wrestler "hinzulegen" um sie over zu bringen! Respekt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: kungfuschnitzelwrote on 17.09.2007:[8.0] "Die Note setzt sich zusammen aus den Jahren vor TNA und während TNA. In den WCW-Zeiten war Sting einfach DER Leitwolf der Promotion und so ziemlich das unterhaltsamste, was man dort sehen konnte (nach der kleinlichen Meinung des Kommentar-Autors). Die letzten Jahre bei TNA haben Sting wohl kaum geschadet, aber eben auch gezeigt, dass selbst ein "Icon" in die Jahre kommt. Es macht immernoch Spaß Sting zu erleben, aber ringtechnisch hat er (altersbedingt) leider nachgelassen. Alles in allem eine 2- - also aufgerundet eine 2 :)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DannyGeigwrote on 06.09.2007:[10.0] "Genialer Typ mit einem der besten Gimmicks überhaupt, seine WCW Zeiten sprechen für ihn."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Steven McWheelerwrote on 30.08.2007:[10.0] "Reißt die Fans immer mit, klasse Wrestler, obwohl er am Stil nix besonderes erkennen lässt(... ), hat jedoch ein Problem mit dem älter werden irgendwie, doch die 10 fällt trotzdem für das Gesamtkunstwerk Sting"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Bullit69wrote on 23.08.2007:[10.0] "Eine WCW-Legende! Verdient schon großen Respekt dafür, dass er nich mit dem Fluss schwamm und zur WWE ging! Das Crow-Gimmick gefällt mir sehr!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Pinguwrote on 22.08.2007:[8.0] "Einfach Legende, nur schade, dass er nie in der größten aller Ligen aufgetreten ist. Denn damit wäre er einer der unsterblichen geworden..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: shannonmoorewrote on 14.08.2007:[8.0] "Ich muss zugeben ich hatte mich in ihm geirrt. Ich hielt ihn lange Zeit für einen Technik Gott so wie zb. Benoit oder Angle. Dass hier in seinem Profil Allrounder statt Techniker steht bestätigt meinen Verdacht. Trotzdem ein großartiger Mann unvergessen seine WCW Zeit aber bei TNA ist er nach meiner Meinung auf lange Sicht nur ein Hinderniss."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Deadly Passionwrote on 06.08.2007:[10.0] "Sting gehört einfach zu meinen Favoriten. Schönes Gimmick und sehr schöne Techniken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: SirFlubbi42wrote on 27.07.2007:[10.0] "Ich weiß nicht wie man das beschreiben soll was Sting vielen Menschen gegeben hat. Aber das Gimmick, die Fähigkeiten (in und außerhalb des Rings), das Charisma und einfach alles andere machen ihn für mich zum besten wo jemals gegeben^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: H-Scorpiowrote on 20.07.2007:[8.0] "Mir gefiel das Crow-Gimmick auch besser, obwohl ich finde, dass es eigentlich nicht so gut zu ihm passt, aber solange man ihn möglichst wenig reden lässt geht das. Auf jeden Fall war er einer, der ähnlich wie Goldberg oder der Ultimate Warrior ohne viele worte die Leute begeisternŽund in seinen Bann ziehen konnte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Kid Rockwrote on 18.07.2007:[8.0] "Sting ist eine der größten Legenden aller Zeiten und schon immer einer meiner Lieblinge. Seine beste Zeit hatte er in der WCW ab 1996. Sein Charakter war schon immer faszinierend, seine Ausstrahlung extrem cool und er war auch ein guter Wrestler. Nur aktuell gefällt er mir bei TNA nicht da er wie so viele andere ex-wwe oder wcwler richtige TNA Urgesteine wie Joe oder Abyss das Spotlight wegnimmt und schwache Leistungen im Ring zeigt. Aber er kann großartige Promos abgeben. Sein Micwork war schon immer klasse."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Shawn Michaelswrote on 14.07.2007:[10.0] "Hi, ich bin ein absoluter Sting Fan! der ist einfach wirklich ein super wrestler und ich finde die bemalung von dem total cool. der mann hat rückrand und stil! Kann mir jemand vielleicht bitte sagen, wie der Entrance Song vom Sting heißt? Wäre echt nett..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MGStylezwrote on 08.07.2007:[10.0] "Er war das absolute Idol meiner Kindheit, ihn habe ich wahrhaftig geliebt. Im RIng schwächelt er ein wenig, doch ist er niocht schlecht und am Mic ist er auch gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Foerstawrote on 01.07.2007:[10.0] "WCW-Legende! Ich finde es sehr schade, dass man dies in TNA überhaupt nicht "merkt". Vielleicht liegt es an seinem Alter, aber wenn ich mir dann seine Matches aus der WCW anschaue, bin ich begeistert! 10 volle Punkte, zu recht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ShaneOwrote on 29.06.2007:[8.0] "In der WCW war er Top. Jetzt bei TNA find ich ihn nur noch langweilig, aussderdem fängt man an ihm sein Alter anzumerken. Für die 10 reichts nicht, da ihm meiner Meinung nach gerade im Ring dazu was fehlt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Neben Ric Flair die ultimative WCW Legende! Außerdem die 5. meisten World Titles gewonnen, seit über 20 Jahren dabei und kein Ende in Sicht! Ein Titlerun bei WWE zum Karriereende hin wäre die Krönung! It`s showtime, folks!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Mr Lovewrote on 24.06.2007:[8.0] "Mochte ihn Anfangs nicht, aber in der WcW Zeit war er einfach einer der besten Wrestlern in den 90ern, vor allem die Fehde gegen die NWO, da sah er richtig gut aus. Jetzt in der TNA kommt er zwar an seine Leistungen in den 90ern nicht mehr ran, hat aber alles was ein Wrestler braucht, aber er wird wohl demnächst seine Karriere beenden. Wenn er es nicht tut könnte er sich seinen Ruhm kaputt machen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Trevedaswrote on 24.06.2007:[8.0] "Tolles Gimmick, toller Worker. Leider werden wir ihn nie in einer Fehde mit dem Undertaker sehen, was ich persönlich sehr schade finde."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Aaronwrote on 24.06.2007:[10.0] "Einfach überwältigend! Super damals wie heute! Leidglich die Qualität der Matches sinkt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Ohne Zweifel ... die WCW Legende nach Ric Flair & Hollywood Hogan!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hunter2007wrote on 24.06.2007:[10.0] "Er ist inzwischen auch eine lebende Legende. Am besten fand ich den Klassiker Hogan vs. Sting"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hit Manwrote on 24.06.2007:[6.0] "War einer der besten in der WCW. Allerdings hat er nur dort und nicht in einer anderen großen Promotion Erfolg gehabt. Für eine höhere Bewertung hätte er es auch in der WWE versuchen müssen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: jupp365wrote on 24.06.2007:[10.0] "fand ich schon immer klasse, aber nach seiner Verwandlung zum Dark Warrior wirklich unübertroffen. Ein Top-Wrestler, der es versteht das Publikum zu unterhalten. Was soll man ihm anderes geben als die Bestnote?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: timbo7111wrote on 24.06.2007:[8.0] "Mit seinem Crow-Gimmick fand ich ihn besser als zuvor. Im Ring war er auch gut und einer der Alltime-Topstars der WCW. "
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Asgaroth 336699wrote on 24.06.2007:[10.0] "Neben Ric Flair Jahre lang das Aushängeschild der WCW und der unbestrittene Liebling der Massen. Ohne Sting wäre die WCW (bevor die Überflutung der WWF mit Hogan & Co kam) nicht die WCW gewesen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Mediwrote on 24.06.2007:[10.0] "Mein Lieblingswrestler zu Zeiten der WCW und auch heute noch unter meinen Top 10 zu finden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Alex Shelleywrote on 24.06.2007:[8.0] "Einer der besten Wrestler in den späten 80ern und frühen 90ern aber heute... "Naja" umschreibt es noch ganz nett. Ich gebe ihm aber die 2, weil man seine damaligen Leistungen honorieren muss. Er war neben Ric Flair lange Zeit das Aushängeschild der WCW und mit einem Gimmikwechsel in der Umbauphase der Promotion wurde er es erneut (neben Hogan). Heute bei TNA ist er nur noch als Draw, weniger für die Qualität!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Sandman16wrote on 24.06.2007:[10.0] "Eine beeindruckende Karriere die Sting bis jetzt hinter sich hat. War über viele Jahre neben Flair das Aushängeschild der WCW. Wrestlerisch jetzt nicht mehr so stark, aber von der Austrahlung her immer noch Top. Hat auch kein Problem sich für jüngere hinzulegen, was ja nicht viele Alt-Stars so sehen. Das Crow - Gimmick zählt für mich mir zu den besten überhaupt. Sting = Wrestling-Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Babuswrote on 24.06.2007:[10.0] "Einer der wenigen Wrestler, die ich schon zu Beginn meiner Zeit als Wrestlingfan geliebt hab, und die mich heute immernoch vor den Fernseher fesseln können. Stings Entwicklung zum Crow Gimmick inkl. des "Kalten Kriegs" gegen die nWo war genial und auch sonst hat er am Mic und im Ring nie enttäuscht. - Vielleicht heute wrestlerisch nicht mehr ganz so frisch wie früher, aber es ist der Unterhaltungsfaktor, der zählt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Heatwrote on 24.06.2007:[10.0] "Einer meiner All Time Greats, egal wie und wo, ich habe beziehungsweise sehe ihn immer gerne. Einfach der für mich charismatischste Wrestler den es gibt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Sabu316wrote on 24.06.2007:[8.0] "Ohne die TNA Auftritte wären es 10 Punkte geworden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: DangoDaisukiwrote on 30.11.2024:[7.0] "Ohne Frage eine Legende und hat das Wrestling geprägt, gleichzeitig hat er aber auch einige schlechte Entscheidungen getroffen und als Wrestler gab es selbst zu seiner Zeit bessere. Deshalb werde ich meine Bewertung etwas tiefer abgeben als die meisten hier."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Zak22wrote on 06.11.2024:[8.0] "One of the two demi-gods of Japanese wrestling (alongside Baba), Inoki is a huge, huge legend of the game as an in-ring wrestler and as a promoter. However, I'm more ambivalent towards Inoki than many others. In the ring, Inoki was clearly incredibly talented and I've enjoyed a fair few of his matches but never as much as others seem to. And his booking leaves me feeling conflicted, on the one hand Inoki's allowing and pushing of the junior heavyweight style is basically the start of modern pro wrestling and it delivered us Jushin Liger and the Super J Cup, Inoki deserves credit for that. But his main event and tag scene really leaves me feeling cold and simply cannot compete to the achievements as a booker of his old rival Baba. And his obsession with MMA led to some very poor decisions. A legend but not one who I really love."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: WrestlingStuffwrote on 12.07.2024:[10.0] "A visionary and a credit to the entire sport. I firstly want to point the very fit physique he maintained for eras and how much bumps he took, the hard training he had and the losses he was willing to have to make wrestlers like Vader, Hogan, Roland Bock, Tiger Jeet Singh, Shota Chochishvilli and his own students Fujinami and Choshu rise and bring light to the company. A kid's hero, Inoki motivated everyone to find their inner fires to success, and also showed us how he could put up great matches inside big cards in big arenas. Sadly, his only issue, which in my opinion makes Baba better than him, was that he tried to mix everything that was brand new inside wrestling (rising amateur wrestlers, judokas, karaticas, jiu-jitsu fighters and YES, also MMA fighters), which hurt the company and its wrestlers integrity for a period. But I'm not here to bash this sir, but praise and thank him for giving us one of the best wrestling companies and the best wrestlers in the history of our sport. May the flame of the fighter burn on forever! BOM-BA-YE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Taper1994wrote on 01.06.2024:[10.0] "The founder of NJPW. For that alone he would get a 10 from me but Antonio Inoki was also a pretty damn great professional wrestler as well. His stuff was from before any era I am familiar with but the stuff I have gone back and watched is pretty darn great. A skilled technicial on the mat, a fantastic storyteller in the ring who is able to make each move he does count and contribute to the story being told in the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: TripleCrownwrote on 17.03.2024:[10.0] "I must admit, his stuff isn't that great to go back and watch. But Inoki is a product of his time and did something not many people could do, especially Japanese wrestlers, create another promotion and actually succeed the one they had left. Did a lot of good for professional wrestling, I do think his view on what wrestling should be wasn't quite right, as you can't portray a "legitimate mma contest" in the world of pro-wrestling, it just doesn't work and to be frank, it's not very fun to watch. I must absolutely give a big piece of criticism here, he almost ruined NJPW and the careers of wrestlers there. His idea of wrestling/mma was incredibly stupid and ruined Yuji Nagata and Shinya Hashimoto. Two guys who were 100% going to be major players for the promotion in the 2000s but were basically forced out (Hashimoto) or just weren't able to get past that MMA defeat (Nagata.) If his idea of mma/wrestling was any good, then IGF would've took off and become widely successful. Gotta say though, although his ambition to do something more than pro-wrestling wasn't good for wrestling itself, you can't hold it against him (mostly because NJPW managed to recover.) I think if NJPW had died because of his idea, then he would be looked at in a very, very different light. One of the most important people in wrestling history, both in-ring and outside of the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: thewrestlinguywrote on 13.12.2023:"[6.4] He was the founder on NJPW and a Japanese's icon and had great charisma but thats really it he almost killed NJPW in the early 2000s and his in ring work was not really that good although he did manly wrestle in the 70's and 80's he importsnt in wrestling but nothing to write home about rip tho"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "Antonio Inoki is a true legend in, not only puroresu, professional wrestling history, his legacy and influence is unmeasurable. Here you have a man who's innovated moves like the Enzuigiri, also was apart of the very first MMA fight with Muhammad Ali and also was the founder of one of the greatest professional wrestling promotions of all time, New Japan Pro Wrestling. Yes, I get his flaws from being selfish to the infamous "Inokisms, " but his legacy is too grand to overlook because of those flaws, not to mention he's trained tons of legends in the business like the first Tiger Mask, Keiji Muto/The Great Muta, Masahiro Chono, Riki Choshu, Shinsuke Nakamura, Tatsumi Fujinama and more to name, he was a good booker back in the day before he got carried away with his love for MMA as well, he's done more good than bad. One of the most iconic performers who's important in and out of professional wrestling, without him, we might not have ever gotten UFC. R.I.P. Antonio Inoki"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Strong Zero Machinewrote on 17.02.2023:[10.0] "Antonio Inoki is one of, the 3 most important guys in the history of puroresu with his trainer and the god himself Rikidozan and his long time friend and rival Baba. Inoki is back in the end of the 60s and for the next 2 decade the ace of puroresu and his own promotion NJPW. The first mma fighter with the king Ali with this Inoki vs Ali in 76.As a wrestler he's a 10 yes he's selfish but so talented. As a booker sometimes really good sometimes it's bad for ex NJPW early 90s his booking and the booking of Choshu was great but his late 90s early 00s stuff as a booker (the Inokism era) was pretty bad. He's also one of the best trainer Fujinami, Fujiwara, Choshu, Tiger Mask, Bad News Allen, Maeda, Takeda, Chono, Hashimoto, Muto, Hase etc impressive. He's also in the foundation of mma with his match vs Ali, is dedication to put martial arts in pro wrestling and cause he trained guys like Tiger mask (who found Shooto) Fujiwara, Maeda, Takeda (who found UWF) and trained guys like Suzuki, Funaki etc (who found Pancrase the first ever mma promotion). Antonio Inoki is and for long time one of the most well known pro wrestler in japan (wrestler, promoter, booker, trainer, politician etc)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: benh2wrote on 14.01.2023:[9.0] "One of the most iconic and influential wrestlers there ever was. Arguably a big inspiration for modern MMA. A great look and tons of charisma got him over with the entire nation of Japan and oversaw the hottest period of wrestling the country has seen. In his later days though, he did a good job of trying to undo all that success by attempting to make NJPW into legit MMA and had all his stars get murdered by proper fighters."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: MainEventMasterwrote on 09.12.2022:[10.0] "The most influential pro wrestler ever, founded New Japan Pro-Wrestling, carved modern MMA, and he was damn great wrestler too. May he rest in piece."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: GriffithWhitewrote on 15.10.2022:[8.0] "He wasn't the best booker but an immensely great wrestler. Antonio Inoki was a bit too egoistical & that caused some problems once he couldn't wrestle anymore. NJPW had no other stars but he himself was a top 2 draw in wrestling ever and that says something about him as wrestler. He was truly are marvel to look at in the ring & felt special whenever he pulled a big move. He deserved the spot he gave himself."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: ThisIsChesterwrote on 10.10.2022:[9.0] "Inoki is an insanely talented and masterful wrestler. Of all the matches from the 70s I watch back his are the ones that jump out to me most still. Top tier babyface charisma and great skill in making his matches feel real and passionate and violent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: TheOneAndOnlyCactuswrote on 04.10.2022:[10.0] "Inoki was one of the pillars for what pro wrestling in Japan. On top of being at the origin of its biggest promotion, he was always the main figure in the early development of Strong Style. Inoki wasn't just passionate about wrestling, he was also passionate about martial arts, and he wanted to include that in the style of his company. In addition to mixing the wrestling he learned under Rikidozan and Karl Gotch's style which contains British influences with hard submission and Indian influences with different athletic elements, which, amongst other things, gave birth to the bridging variations of moves. Throw in there martial arts, as Inoki also added elements of "shoot", real fights. The strikes are therefore harder and add to the realistic aspect of the Strong Style. If the strikes are harder, it's rarely with fists though. This style prefers chops, lariats and, of course, forearm shots. With the help of many other wrestlers who brought their experience in different styles of martial arts including Karate, Judo and Muay Thai, the Strong Style became a versatile discipline of which Inoki was the master and which is still today at the base of the success of the promotion, as well as its different glorious periods, notably the mid and late 90s. Today, Strong Style is one of the most recognized wrestling styles in the world and it is a style that continues to evolve, and that, much like how Ark style took cues from NJPW, Strong Style today took some from King's Road, and how it expesses its storytelling. It is difficult to put into words just how popular Antonio Inoki was, and not just in Japan. Think about it, when picking a wrestler to fight Muhammad Ali, he was considered the best pick for a fight that some refer today as the first ever MMA contest. As well as being a very talented wrestler, pioneer of his own style, Inoki also trained some future legends of the business. The Three Musketeers Mutoh, Chono and Hashimoto, Tiger Mask I, Choshu, Hase, Maeda, Takada, Fujinami, Fujiwara just to name some. Each of them would then build on the foundation set by Inoki to set up the wrestling we have today. As well as being a wrestling icon, he was also a politician, two time named as a Member of the House of Councillors. As a politician, he notably helped in the release of 41 hostages in Iraq with the help of a wrestling show he organised in Bagdad. He also was quite infamous for his attempts to bring peace with North Korea, notably with his Collision in Korea show in 1995 that saw the largest crowd in wrestling history attend the two-night event, in which he was the only one to pretty much get a very loud reaction from the bewildered crowd, thanks to his link to Korean-born Rikidozan. Not everything about Inoki was perfect mind you. Inokism did almost kill New Japan Pro Wrestling by shoving MMA into it and by putting wrestlers into real MMA fights, and his Inoki Genome Federation was a failure, but all of that doesn't negate what he has done."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: texasyoshwrote on 02.10.2022:[10.0] "Inoki is one of the biggest draws in Japanese pro-wrestling history, probably slotting himself right in front of Baba I reckon. Pretty revolutionary with his work with Muhammad Ali, and also being well regarded in the US as well. Inoki's martial arts background helped NJPW differentiate from the more western-inspired AJPW, which he became best known for. Inoki had great programs with the likes of Vader, Robinson, Fujinami, etc. He trained and inspired so much within professional wrestling and mixed martial arts, being the conduit for organizations like the UWF, which eventually led to organizations like PRIDE. He shaped pro wrestling in his vision, and his vision helped train some of the greatest wrestlers of all time. Pro wrestling is strong. Inoki's life isn't without controversy, which goes all the way back to an attempt to take over Rikidozan's Japanese Pro Wrestling Alliance. Perhaps he was disgruntled because of Baba being treated as the true protege of Rikidozan. There's so much to say about the life of Inoki."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: No Onewrote on 02.10.2022:[10.0] "One of the most influential figures of all time in both Pro Wrestling and in Mixed Martial Arts. He was a Mainstream Household Megastar across Japan. He had many famous & straight up classic matches in Singles & Tag Team wrestling against the likes of Billy Robinson, Karl Gotch, Lou Thesz, Dory Funk Jr, Bob Backlund, Jack Brisco, Riki Choshu, Tatsumi Fujinami, Akira Maeda, Nobuhiko Takada, Yoshiaki Fujiwara, Genichiro Tenryu, Hulk Hogan, Big Van Vader, Muhammad Ali (can you believe that? ), and other famous real life boxers, kickboxers, & judokas. He was 1/2 of one of the most dominant tag teams of the late 1960's & early 1970's as "B-I Cannon" alongside fellow legend, Giant Baba. He and Baba would leave the JWA, which was founded by their deceased mentor, the legendary Rikidozan, and would become the founders of NJPW (Inoki) & AJPW (Baba). These 2 world famous promotions still exist today and is also a major part of their respective legacies. He also created the "Enzuigiri" Jumping Kick to the back of an opponent's head that may be best remembered for being used by Owen Hart. He was the 1st ever IWGP Heavyweight Champion. He was also synonymous with the NWF Heavyweight Title and made it a highly respected championship title for the 1970's & 1980's. He made Hulk Hogan & Big Van Vader into overnight megastars in Japan for how he personally put them over. As a booker, he gave Tatsumi Fujinami, "Tiger Mask" Satoru Sayama, & Dynamite Kid monster pushes that made them into Puroresu Legends. He also trained MANY wrestlers who also became Legends. He was the final living link to Rikidozan's legacy. He was also a well known politician which took his international influence to another level. RIP to a True Legend, Icon, & a GIANT to not only the Professional wrestling & MMA world, but to the entire world in general."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Makai Clubwrote on 01.10.2022:[10.0] "A historic career. An historic human being. From day one, he seemed to have a mindset to set out on his own, trying to take over JPW, forming Tokyo Pro Wrestling and then New Japan. Travelling the world wrestling world like its the 1910s wrestling champions from Pakistan, the Republic of Korea, Germany, even fighting legendary figures such as Muhammad Ali, of all people. Inoki is a legendary wrestler as well as a promotor. And while I would dock him marks as a promoter for tripping over his own feet with the biotech scandals that truly hurt the promotion for a while, his long term success turning a break-away promotion built on his and his pals backs into a massive promotion, #1 in Japan for years and even #1 in the world for a brief while, can never be disputed or discounted. Inoki as a wrestler was a phenomenon unlike any other. Classic matches up-to his 40s where he was stricken with diabeties, classic feuds with too many opponents to list. His imprint is still felt on wrestling long after his regular involvement simmered. His imprint extents outside of wrestling also. He was a strong political figure with his public relations with North Korea, Iraq and certainly more countries that have been unreported. Let us not forget his contributions to early form of what we call MMA now. Inoki is a man with as much contributions to the world as any in wrestling. His presence and legendary status was always earned. Inoki was a charismatic figure and the literal definition of icon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Collywobbleswrote on 01.10.2022:[10.0] "What a life. The man was a driving force in some of the most important and outrageous moments in wrestling history. Beat to his own drum and gave the world a million and one reasons to love or hate him. A wrestler who was truly larger than life. RIP"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Wrestling Foreverwrote on 01.10.2022:[9.0] "Ein weiterer trauriger Tag für das Wrestling mit Inoki stirbt nicht nur der Gründer einer der besten Ligen der Welt auch eine absolute Legende."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: MarcusFazewrote on 01.10.2022:[9.0] "A pioneer of Japanese wrestling and a essentially a Hollywood star of wrestling, he founded one of the most well known wrestling companies worldwide and the number one company in Japan, he crossed sports to face Muhammad Ali. Inoki was a great in ring wrestler, a charisma fueled fan favorite with the look of a star, he was everything a promoter would want wether its as a top home field guy in Japan or a foreign babyface draw in other countries. I hope Inokis at peace now and is reunited with the likes of RikiDozan, Giant Baba, Shingo Hashimoto, Strong Kobayashi, Muhammad Ali, and everyone else who was apart of his story."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: WU20wrote on 09.07.2022:[10.0] "Consider as the greatest wrestling promoter of all time. He is the prime and ultomate one of New Japan. In his time, a true wrestling star and a true wrestling booker. Always shpuld jave been on top 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: GriffinXwrote on 07.02.2022:[10.0] "It would real easy to write off Inoki as a guy who started his own company and booked himself as the top guy. But unless the guy putting himself on top is really good there is no way NJPW lasts as long as it has. In ring Inoki was very good as a trainer most of the early NJPW legends learned from him. Yes he went to far with his love of real fights but you have to look over the whole run of the company."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: KonamiSuissewrote on 28.01.2022:[9.0] "Inoki is an absolute legend, probably the most influential wrestler in puroresu history, and overall a legend everywhere else as well. With a very recognizable look, incredible technical prowess (was trained by Karl Gotch and Rikidozan, duh) and an unlimited amount of charisma, he basically invented the concept of 'toukon' or 'fighting spirit', a very essential component of japanese wrestling storytelling. Inoki was obsessed with legitimizing pro wrestling as 'the best martial art' and is also famous for his numerous shoots and worked shoots against several other athletes from different combat sports (most famously his controversial bout with Muhammad Ali). He was also the founder of NJPW, arguably the most important and successful promotion in Japan ever. His booking is heavily influenced by what's stated above about pro wrestling being viewed as more of a martial art than a spectacle or storytelling device; Inoki deliberately chose to blur the lines between MMA and pro-wrestling, sending out some of his workers to do shoot fights and bringing shootfighters into wrestling. Results of that way of booking have caused an extended period of low ratings for NJPW in the 2000s. Because of this one flaw during his illustrious and longevous career in the sport, my rating is one point short of perfection. Still, Antonio Inoki truly belongs in the Olympus of pro-wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Muggowrote on 24.10.2021:"He created NJPW and created strong style, Became one of the most well known people in japan, which led him to 2 stints in Japans House of Councillors, Was one of the reasons that MMA has become as big as it is today. But he almost killed NJPW with Inokism, with making inexperienced MMA guys World Champ, and making the top guys in New Japan do MMA bouts (with very little having experience of it). However, that doesn't tarnish his legacy too much."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: AlexLennonPWwrote on 14.01.2021:[9.0] "He created NJPW, which he should forever be immortalised for. Being said, he was a reet cunt on his day. Shooting for no reason, derailing promising wrestling careers because he suddenly had a hard on for MMA. Confusing the lineage of the IWGP Heavyweight title. But when all is said and done, he essentially created strong style, which is where the wrestlers decide to make the audience think they're actually hitting each other by actually hitting each other."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Jetlagwrote on 27.08.2020:[9.0] "In gewisser Hinsicht ein Pro Wrestling-Genie, in anderer Hinsicht ein Verrückter. Zu seiner Zeit natürlich ein exzellenter Wrestler, der den Fans Glauben machen konnte, er wäre wirklich der beste Kampfkünstler auf Erden. Allein, dass er möglicherweise jederzeit einen Gegner ausknocken oder seinen Arm brechen konnte verlieh seinen Matches eine unvergleichliche Spannung. Dazu kommen etliche waschechte Klassiker von 1969 bis 1996. Da kann man auch manche eigensinnige Entscheidung verzeihen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Ma Stump Pullerwrote on 18.08.2020:[9.0] "Inoki is rightfully considered one of the most iconic Japanese wrestlers of all time due to his innovations in Strong Style, a focus on more striking-based wrestling compared to AJPW's focus on high flying and technical expertise, as well as sensational storytelling and being incredibly charismatic inside and outside of the ring. In terms of being a draw, Inoki was easily one of the best around, and his match quality (even in his older years) was consistently solid, even when fighting guys who weren't really wrestlers. What holds back Inoki from the top is a few things: namely, his selling wasn't always on point. Sometimes he'd just shake off long efforts to work on his arm or leg within a minute or so and fight like nothing happened. When trying to sell these fights as legit, that can really take you out of the atmosphere of the match. Inoki also had a rather infamous tendency to keep putting himself on the top billing, even if there were people who were arguably more over than him at the time. This is understandable in his early years considering he WAS amazing in the ring and could draw like crazy, but his later years still had him at the same spot. Compare him to Giant Baba, who at the same time as this was moving himself into the lower card tag matches, and you notice the problem. Inoki's booking also nearly completely killed NJPW when he tried to mix it with MMA and combat sports due to a lifelong obsession with it himself, which is something that puts a big damper on his last years as the majority owner and had some of the worst belt holders in the entire company's history. All in all, Inoki is undoubtedly a legend of the ring, but he's not GOAT material, at least for myself."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: ElPolloLocowrote on 29.12.2019:[10.0] "Many of his classic matches have aged surprisingly well, always the sign of an amazing in-ring talent. Great draw and great promoter but his booking alternated between brilliant and clinically insane. Gave us Tiger Mask and Keiji Muto but also a whole bunch of poorly trained and unmotivated MMA guys with no business being in pro-wrestling. A legend for sure, but mercifully he turned to politics before he could do any more damage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: JEK 1991wrote on 19.12.2018:[10.0] "Best Japanese wrestler ever. He was skilled at everything He was exciting to watch. he helped create an excellent promotion NJPW which I am a big fan of."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: RatingsMachinewrote on 04.11.2018:[9.0] "Antonio Inoki is a legend and was something of a cultural icon. But I can't give him a 10 because he very nearly put New Japan out of business."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Zeocrymerwrote on 28.08.2018:[10.0] "As a wrestler: An incredibly skilled and hard hitting striker, physically charismatic and absolutely larger than life. A true icon of the business and a legend. As a booker: pants on head crazy. I appreciate that level of crazy. The world needs another Antonio Inoki."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: The Sick Lebowskiwrote on 28.05.2016:[7.0] "Wrestlerisch recht gut, hat auch als Promoter sehr viel erreicht. Mal abgesehen davon, dass er vieles nur gemacht hat, um politisch voranzukommen, bin ich mit ihm nie so ganz warm geworden."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Kenshin Uesugiwrote on 20.09.2015:[9.0] "Auch wenn er in den letzten Jahren den meisten Puro-Fans mehr Kopfschmerzen als Freude bereitet hat, so ist das im Grunde fast gar nichts im Vergleich zu seinem Lebenswerk. Die grandiosen Fähigkeiten und die Aura eines Helden, wenn Inoki zu seinen aktiven Zeiten irgendwo antrat dann brannte sprichwörtlich die Bude und noch in fünfzig Jahren wird man über den Gründer von NJPW reden. Da verzeihe ich es ihn fast das er mit seinem Schwiegersohn mit dafür verantwortlich ist das Keiji Muto und Shinya Hashimoto ihre Heimatliga verließen. Man kann der Legende Inoki schlecht böse sein, auch ist als Person und Politiker viel zu komplex. 1, 2, 3 DAAA!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Matzinhowrote on 01.10.2014:[8.0] "Was das Aussehen betrifft so ein bisschen der japanische The Rock. Was ich von ihm in seiner körperlichen Hochphase und zum Teil auch seinen 40ern und 50ern im Ring gesehen habe, gefällt mir. Ich finde, er ist ein guter Wrestler gewesen, womöglich einer der Besten seiner Generation, aber meiner Meinung nach kein Revolutionär. Inoki zeichnet sich für mich eher durch seine damals sehr moderne, für Japaner (sogar noch heute) ungewöhnliche, geschickte Selbstdarstellung, sein enormes Charisma und seine Superstar-Aura aus. Abseits dessen ist Inoki offenbar ein schwieriger Typ hinter den Kulissen. Jüngeres Beispiel die All Together-Show der drei großen japanischen Ligen, bei der das Eintrittsgeld an Flutopfer gespendet werden sollte. Inoki hat bei einer Show seiner Liga einen Typen als lebendes All Together-Showplakat verkleidet in den Ring kommen lassen, ihn beleidigt, zusammengeschlagen und dann angekündigt, dass er eine Show veranstaltet, die am selben Tag wie All Together stattfindet und dass alle Zuschauer zu ihm, statt zu der anderen Show kommen sollen. Man darf hier ja keine Beleidigungen schreiben - es gibt noch mehr solcher Geschichten. Aber als Mensch bewerte ich ihn nicht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: yanuswrote on 15.12.2013:[9.0] "Has a reputation as the japanese Hogan/HHH - someone holding down fresh and young talent, but I will try to judge him just as a wrestler. He was a proven draw and had a great look, his main weakness was probably his in-ring work. In that regard he was actually very good (much better than Hogan), but not great (although I have to admit, that I'm judging him mainly on his 80's work). Therefore he gets from me "only" a 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Hirnklopswrote on 04.02.2011:[7.0] "Das markanteste Kinn des professionellen Wrestlings. Da ich keine Ahnung von japanischem Booking habe und es eh nicht verstehe, kann ich ihn für sein Booking nicht abwerten."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Denzwrote on 09.03.2010:[10.0] "Ihm wurde der WWF-Titel nie anerkannt, was meiner Meinung nach nicht gerecht ist. Für viele Menschen (besonders Japaner) ist er ein großartiger Held. An 2 legendäre Matches erinnern sich viele gerne: 1. gegen Muhammad Ali im ersten MMA Kampf und 2. gegen den Nature Boy Ric Flair in Nordkorea bei einem Publikum von 190. 000 (! ) Menschen. Grund genug ihn 2010 in die WWE Hall of Fame einzuweihen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Rey2004wrote on 24.08.2008:[8.0] "Neben Tatsumi Fujinami einer der größten japanischen Superstars."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Brahma Bullwrote on 04.05.2008:[9.0] "Der WWF Champ, der den Titel nicht anerkannt bakam! Er hat viel für das Wrestling getan und war sehr beliebt!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: LexLuger4everwrote on 25.03.2008:[10.0] "Eine Legende im Wrestling Business und eine der absolut größten Persönlichkeiten im japanischen Wrestling - das kann nur die 10 Punkte geben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Sabu316wrote on 24.06.2007:[6.0] "Eine Wrestlinglegende und durch den Kampf gegen Ali ist er auch in der restlichen Welt ziemlich bekannt (auch bei Leuten die sonst kein Wrestling sehen). Legendär im negativen Sinn ist auch sein Einfluss auf das New Japan Booking. Desweiteren kommen von ihm immer wieder seltsame Geschichten um im Gespräch zu bleiben. Diese negative Punkte schwächen die Wertung ab."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: Blue Justicewrote on 05.03.2024:[10.0] "HARASHIMA is the goat. His smile oozes charisma and can put out great matches against any lower, mid card wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: alongaffairwrote on 27.11.2023:[10.0] "The second best Ace of the 2010s, behind only Tanahashi (and it's arguable (a difficult argument, but still arguable) that Tanahashi simply had better playmates). DDT would be nowhere near where it is without him. Even at 49, he's still one of the company's best and definitely their most reliable wrestler, on account of his wrestling intelligence. He always knows exactly what he needs to do in a match to serve the story, whether it's putting over a new monster (Yuki Iino), helping a fiery up-and-comer (Keigo Nakamura), or just messing around in Street or Beer Garden wrestling, and he still has enough physical tools to execute."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: GoldLigerwrote on 11.09.2022:[10.0] "You don't have DDT as it is without HARASHIMA. This guy has been a cornerstone of DDT for longer than pretty much any other "ace" of any other company has been. This dude IS the ace and even with the era of Takeshita starting he hasn't slowed down or deviated. There's a reason this is pretty much the only guy Tanahashi has worked heel against in the past decade, he's the only ace that beats out Tana's sheer loyalty and consistency. If he gets his time to shine on a larger stage, it will be as DDT does the same. If not, everybody who has ever followed DDT in any era will know his name. A true HERO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: GriffinXwrote on 07.02.2022:[9.0] "Part of what makes DDT appealing is even with all the comedy they still have a number of guys who are just great wrestlers. So many times it falls on HARASHIMA to be the guy giving you that good wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: Wuzong Shenwrote on 13.11.2021:[10.0] "A real ACE and a true master of pro wrestling. You can say he is the Hiroshi Tanahashi of DDT(actually he is even elder than Tanahashi). Even in the age of 47 he is still one of the best wrestler in DDT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: Ma Stump Pullerwrote on 25.07.2021:[9.0] "If Go Shiozaki is the spirit of NOAH and Tanahashi is NJPW, then HARASHIMA is the embodiment of DDT. He's been a loyalist to the company since the early days and has always stayed by their side through thick and thin, regardless of how he was directed, or wherever he was placed on the card. This commitment: regardless of the fact that his talent could've gotten him easily far in the top promotions, let alone DDT: has allowed him to be the top ace of the company for a VERY long time. This isn't without its faults as he's not always been on form, but when HARASHIMA is on, he's a amazing and extremely solid worker who can go on the mat for one minute, throw hard hitting strikes the next, and go into explosive sequences seamlessly. He's not only super versatile in that regard, but he's great at playing both a underdog and a ace respectfully, never making it seem like he's dominating with no effort or too weak at the other side of the spectrum. Guy can sell like death and has made some relatively meh challengers seem like dangerous competitors who could bring him down believably. Even when nearly 50 years old he's still having solid bouts in tags and can really pull out the workrate on longer bouts. Indefinitely underrated, he's a super solid talent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: Makai Clubwrote on 07.04.2019:[10.0] "Easilly one of the most underrated wrestlers ever. Very charismatic with a smile that you can't ignore. Excellent wrestler who can do many different styles but technical wrestling is where he bread and butter lies. Some of the great matches has had with the likes Hikaru Sato, Soma Takao and Antonio Honda prove that. Everything you would want in a wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: HeadCheesewrote on 21.03.2017:[9.0] "HARASHIMA is really good wrestler that is very good in big time matches and is fun to watch in general."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: UChucky46wrote on 02.05.2016:[10.0] "The quintessential "ace", HARASHIMA is as versatile as it comes, big-time title matches, comedy, gimmick matches, shoot style, tags, sprints, epics, you name it he can do it and do it well I might add. HARASHIMA is almost incapable of having a bad match, no matter the opponent he can bring them up to his level, he is also a next level seller with amazing facials and the ability to make matches seem more important than they really are. To me HARASHIMA represents everything a great professional wrestler should be and should be considered an all time great, any promotion would be lucky to have him as their top guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: RickRollwrote on 21.03.2010:[8.0] "Neben Ibushi der beste bei DDT zurzeit. Kann von High Flying bis zu Hard Hitting (Ich liebe seine (Springboard) Double Knee's) alles zeigen und gefällt mir außerordentlich gut."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: Kaffoe 666wrote on 24.03.2008:[8.0] "Top Mann bei DDT. Leider sehr unbekannt außerhalb des Puro-Universums."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: Rob Van Duesenschrauberwrote on 08.03.2008:[8.0] "Es macht sehr viel Spaß ihm zuzusehen und wie die anderen DDT-Top Draws ist er einfach knüppelhart."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: packtsardines06wrote on 11.02.2025:[8.0] "yes the rock is a legend i am far from denying that. he should be on the wrestling mount rushmore, his retirement match should main event wrestlemania (whenever that happens), etc. if we are talking about peak rock, from 1997-2004, its an easy 10. unfortunately, i also have to take into account the 2010s and onwards, which is a mixed bag and sometimes overshadows the important contributions he made to pro wrestling. obviously you have highlights like the feud with cena and his recent tenure in the bloodline, but the rock is bound to a hollywood to the point where he almost becomes a parody of himself. this isnt to say he's not allowed to go into hollywood, but lets compare and contrast with john cena, who was also pulled into hollywood. while cena was away for some time, he was returning at least once a year, usually wrestling in a match. he wasn't afraid to make fun of himself as well as put people over, to the point where he hasn't won a singles match since 2018. when he couldn't act due to strikes in hollywood, he returned to the wwe for a brief run until he was called back when the strikes ended. the rock is the inverse of all of this. he has wrestled a total of 6 matches since 2004, which would be fine if not for the fact that his very presence has derailed storylines and matches, usually for his benefit. if you werent john cena, you better hope that you don't get sweeped into the rock's vortex. despite that he was portrayed as a babyface, despite storylines involving him making his opponents more likeable than him. the current decade has fared much better for him, thanks to a heel turn as a response to fan outcry when it seemed as if the rock had shoved cody rhodes out of his much anticipated rematch against roman reigns, igniting the modern day equivalent to the yes movement. his heel turn produced some of the best television wwe has produced in decades, culminating in cody rhodes winning the championship which less than a year later is already a classic wrestlemania moment. since then has been a mixed bag, but so little has happened that it is way too early to judge, and i do think his career will end on a high note. case in point, 1997-2004 rock is goated, 2010s rock has highlights but has far too many lows, 2020s rock good (he is forgiven for the cody situation if he doesn't pull shit like that again)."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BEER CATwrote on 10.02.2025:[7.0] "Beyond charismatic, probably a Top 5 English speaking mic guy, a hige draw, an icon. A somewhat limited worker with a weaker in-ring resume than most would expect, greatly benefiting from working with superior in-ring talents like Steve Austin, Mick Foley and Kurt Angle. Possessed a dreadful, nasty habit of burying other wrestlers in promos to negative effect."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: docphantomswrote on 29.01.2025:[7.0] "The Rock is legendary for a reason and to deny that is to be in denial. That said, his gimmick is stale and only has lasting power because the modern product is so defanged and people love their nostalgia. Down to the core, he is in the business of getting himself over and complains like a baby with a full diaper whenever something does not go his way. "Shut your mouth, know your role" and "enjoy the ride" only works when it doesn't sound like a desperate middle-aged man getting something other than universal acclaim. Not everything he touches is gold and that fact just makes his over-compensation worse. His in-ring work was never the best, but he has the charisma to overcome and exceed that. In his time he was legendary, but these days he feels like an echo from a time that people think of more fondly than deserved."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 77mega6wrote on 19.01.2025:[10.0] "Dwayne "The Rock" Johnson is not just a wrestler; he's a whole mood. The charisma, the catchphrases, the pure energy he brings--it's no wonder he became a Hollywood superstar! He's got that perfect mix of humor and intensity that keeps you glued to the screen. Just imagine him flipping pancakes while dropping epic one-liners; that's peak content! Forever a legend, and honestly, can we get some more memes featuring him?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Abductor2k25wrote on 11.01.2025:[9.0] "He's my favorite wrestler, I give him 9 because I hate his trash talk, I love his wrestling style, it's unique, I love that type of wrestlers"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Elikowrote on 07.01.2025:"The Rock is no longer a "Pro Wrestler". He is Dwayne Johnson. On Raw's 1st Episode on Netflix he finished 2 storylines for no reason at all. No Rock vs. Cody. No Rock vs. Roman. I can't believe it. All this "Final Boss" hype was for a Tag match at WM40? Waste,"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Its Clobbering Timewrote on 15.12.2024:[10.0] "The Most Charismatic and Best Mic Worker of All Time. The Rock has it all, can put on great matches, has all time promos and can play a great face and heel. He has one of the best theme songs of all time. The Great One is a Megastar and has many iconic moments in Professional Wrestling History. He's the most electrifying man in sports entertainment for a reason. Thank you Final Boss"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AceHagannwrote on 26.11.2024:[7.0] "Rock's greatness during the attitude era is undeniable. Unmatched off-the-ring performance and very solid in the ring, only needing a bit more in the finisher department. As years passed, however, his appearances were more and more unwelcome. With his personality showing through his supposed character. Always wanting to be on top, with no room for anyone on his level."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: XNoWayKemoSabeXwrote on 25.11.2024:[7.0] "Great mic work, from vocal inflections to witty nicknames and innuendos, The Rock is almost unmatched when cutting a promo. The in-ring work is serviceable; in my opinion, it's nothing to write home about, but it's not awful. With a little more focus on the wrestling business and less on the movie business, Rock could have lived up to the moniker "The Great One.""
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Pmurt2024wrote on 14.11.2024:"The Rocks last match was electrifying, showcasing his charisma and intensity. Though brief, he delivered iconic moves and reminded fans why hes a legend. Pure crowd-pleasing energy!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ItsAllAWorkAnywaywrote on 13.11.2024:[10.0] "Simply stated - The goal of wrestling is to get over. The Rock got so over that he essentially became an icon on his own accord. And yet, absolutely none of that ever happens if he hadn't found success in the WWE to begin with. As legendary as Hogan and Austin were, The Rock might be the most famous wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Bilal213wrote on 21.10.2024:[6.0] "Undoubtedly one of the most charismatic superstars in WWE history, but his legacy often feels inflated. While his mic skills and charisma are undeniable, his in-ring skill set was always limited. Over the years, hes hijacked major events, taking main event spots from deserving talents guys like CM Punk, Drew McIntyre, and Seth Rollins, stars who couldve drawn just as much, if not more, with the right booking. Despite his star power, The Rock rarely elevated anyone but himself, unlike Triple H, Mick Foley, HBK etc., who consistently helped build the next generation. While a great entertainer, he was never the company guy who had a genuine love for the business - his love was for the spotlight and his own status."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JackBurtonsTruckwrote on 14.10.2024:[9.0] "A great example of the man being so over that his in ring abilities dont matter. Yes, the rock can wrestle but I dont think theres any doubt that his charisma outweighs his wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fabibiwrote on 01.09.2024:[7.0] "The Rock is one of the most charismatic wrestlers ever, he is also incredible on the mic. He is however pretty limited in the ring and even sloppy at times. The Rock always brings energy and excitement to the table. He has a legendary career with very memorable feuds."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Johanwrote on 30.08.2024:[10.0] "The Rock is a WRESTLER, he owns the crowd, the crowd cares about him, the crowd wants to see him win everything he is a part of and so forth, He is not a master technician but yet the crowd liked and remembered his matches much more than the master technicians like Fit Finlay or William Regal, he is a guy who has always given his 100% percent and has a great library of matches, but what makes him special is that the Rock is, by far, the single most charismatic person to ever step foot in the squared circle and that's why he is a 10. The GOAT on the Mic, The GOAT in charisma, great enough in the ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: wrestlingswiftiewrote on 26.08.2024:[4.0] "While he is a successful Hollywood actor, his wrestling career has been defined by a lightning-in-the-bottle peak run. Rocky Maivia sucked. Hollywood Rock is overrated. This Final Boss iteration is okay, and don't even get me started on the watered-down modern Dwayne from the Cena feud to the Cody Crybaby backlash... Really awful stuff. The true highlight of his career was during 1999-2002. Here, especially during the first half of that run, he was truly electrifying! (No pun intended.) Although, his promos have always been overrated. Sure, he could deliver a hilariously brutal promo, but in the process, he inspired an entire generation of wrestlers to start burying their opponents on the microphone. (Which, by the way, JOHN CENA... is not what you're supposed to do.) His over-reliance on catchphrases made his promos feel super rehearsed and phony. Yes, having catchphrases is fine, but only if you naturally work it into your monologues and don't have an insane length of them. Another issue I have with his promos is his tendency to try and get the most outrageously stupid things over. For example... "cookie puss! ? " Yes, you heard that. There was a time in Dwayne's later career, with all of the experience under his belt, he thought "cookie puss" would be this massive hit with fans. And this is just ONE example. However, most fans long for the Attitude Era (despite it being a bad product), so naturally, the popular opinion of Dwayne being this master on the mic will persuade fans of a new generation."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: cal9099wrote on 15.08.2024:[10.0] "While I can't stand Dwayne Johnson I can't deny the Rock was an absolute phenom and simply one of the biggest icons of the 90s and 00s. I've not been a huge fan of his recent bloodline stuff but his attitude era work with the likes of HHH, Angle, Stone Cold etc. was simply that big a deal I can't deny him a 10. Arguably the best on the mic of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HBK16wrote on 01.08.2024:[6.0] "While the Rock was a very important persona in the attitude era, his character never really appealed to me. Although, I agree, one of the best mic workers of all time and his crowd control is amazing, he was always average in the ring. The Rocks prime years of the late 90s- early 2000s were good but that is all i would describe it as. Yes he had an iconic feud with Steve Austin, but his moveset was very lackluster and I found his character repetitive and boring after a while. While this version of the Rock I liked, his returns for me put a stain on his character and reputation. His return in early 2010s was infuriating as he would beat CM Punk and defeat his historic title reign for what reason? Rock also had a mid feud with John Cena with two meh matches that headlined wrestlemania. The Rock would continue nearly a decade later again using his ego and name to push other superstars aside for the spotlight. Almost taking Cody's main event spot at mania all because he was the "bigger draw" was laughable. His ego really ruined his character for me these past few years and although i did somewhat like the final boss persona, it was still very over the top and only happened because the people hated the idea of him main eventing over Cody and taking his spot. For me, The Rock just never appealed to me due to his massive ego and over the top personality."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: darkflame4527wrote on 30.07.2024:[10.0] "From his first years (prime) to the cringe-worthy cookie-cutter face years to his (arguably) most incredible run/gimmick of all time, the Rock has exceeded all the highs possible in wrestling. He helped make wrestling cool TWICE. His international stardom helped make WMXL possibly the greatest WM, along with WM17, the WM that he helped make legendary. The Rock is almost unbeatable on the mic, able to control the crowd effortlessly, with in-ring and out-of-ring psychology always being on point. His in-ring work has noticeably declined as he has gotten older, starting from "Twice in a Lifetime". However, this can't kill any points off of this rating. The Rock is electrifying."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Toon Emperorwrote on 01.07.2024:[8.0] "One of the most charismatic and lifted mic workers ever, but his in ring work has always left something to be desired. He's good when he has the right opponent and can smoke and mirrors his way through thr natch with ref bumps and table spots, but for a normal match it's a little boring, but even that doesn't stop his charisma carrying him to a high rating"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Sick Lebowskiwrote on 18.06.2024:[10.0] "Charisma-technisch natürlich ohne Frage eine absolute Granate. Im Ring dazu auch sehr stark, auch wenn er hier nicht unbedingt zu meinen Lieblingswrestlern gehört. Dass er nach vielen Jahren Hollywood-Abwesenheit wieder kurz zurückkommt und dann gleich wieder so extrem stark im Rampenlicht steht, stört mich zwar ein klein wenig, aber darüber kann ich gerade noch so hinwegsehen. Er geht nicht zu Unrecht als einer der größten Stars dieses Sports."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Big R3d Mach1n3wrote on 17.06.2024:[10.0] "He was the people's champion for a reason. One of the best talkers and best workers in the sport of Professional Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ProfessorFinesserwrote on 15.06.2024:[10.0] "[The rock is one of the greatest professional wrestlers of all time. Anything less than a 10 would be absolute blasphemy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: RealGrapsThomsenwrote on 26.05.2024:[10.0] "The Rock is my personal favorite all time wrestler. Quite simply, without him, wrestling isnt what it is today. His promo skills are amazing and some of his catchphrases are known outside of the realm of pro wrestling. His in ring ability can range from putting on a wrestling clinic to simply brawling. He has some of the greatest fueds and matches in all of pro wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DangoDaisukiwrote on 13.05.2024:[6.0] "The Rock ist eben der John Cena von früher, mit dem Unterschied, dass er schon mehr Charisma hat und besser im Ring ist. Aber so gut ist er eben eigentlich auch nicht, wenn man mal ganz die Nostalgie etc ausblendet. Er ist der Wrestler der für mich am meisten den Massenmarkt anspricht, aber ich habe nach langen Überlegungen mir gedacht, eigentlich finde ich ihn gar nicht so gut."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: StardomIconwrote on 12.05.2024:[8.0] "One of the most successful faces and heels of all time, the story of pro wrestling can't be told without The Rock. I'll be using Bret Hart's system of ranking a wrestler by their promo ability, look, and in-ring ability to rate The People's Champion. Starting with promo ability, The Rock is objectively electric on the microphone. Unlike a lot of modern pro wrestlers, The Rock knows how to work and engage a live audience. His catch phrases are still widely known today, as he had the ability to make even non-wrestling fans listen to what he had to say back in the Attitude Era. However, I believe The Rock became far too predictable and even a bit annoying on the mic in the early 2000s. Every promo felt like he was simply bridging from catch phrase to catch phrase, while his opponents often looked completely idiotic when opposing him on the mic as they had to play into his humiliation games. Moving on to looks, he truly exceled here. He had the height and size of a main eventer but didn't look like a muscle head in his prime. He was one the first wrestlers to truly look cool and appealing on a mainstream, non-wrestling level. The People's Eyebrow is an iconic pose that transcends the world of wrestling. Finally, his in-ring ability was electrifying as well. Of course, he wasn't the greatest technical wrestler and ultimately, his matches became predictable. However, there is no questioning his ability to engage an audience with his signature moves like the People's Elbow and the Rock Bottom. Moreover, he was fast and athletic compared to many WWF main eventers prior to the turn of the century. Say what you want about The Rock's matches, his matches against Mick Foley and Steve Austin were far more exciting than any main event match WCW was putting on during the late 90s. Whatever your opinion of The Rock's look, promo, and in-ring ability is, you most definitely have an opinion of him - and isn't that the biggest barometer of success in pro wrestling?"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: leonconnelly652wrote on 10.05.2024:[10.0] "What can you say really, greatest talker in the history of wrestling, just so many memorable amazing promos and lines that you'll always remember. He just has that type of charisma that makes people tune in every week just to see what hes up to.Very underrated as a wrestler too has some banger matches under his belt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rassle Fanwrote on 06.05.2024:[10.0] "The Rock is arguably the greatest star in the history of the business. There's nothing he can't do. He may not be the greatest technical wrestler ever but he's great at the most important aspect of being a wrestler, making people care about what you're doing. Even if he couldn't work at all he'd still be the greatest ever for his unmatched charisma. He did use a lot of catchphrases but that isn't always the case. Fans hang on every word he's saying too. His most recent heel run showed he can adapt when needed and wasn't comfortable relying on the old hat. In wrestling he's the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MarkMcMarkington2wrote on 02.05.2024:[10.0] "1999-2000 Rock is the coolest wrestler ever. No debate. The look, the promos, he oozed charisma. He had a very short run in WWE but made such a large impact. One of the GOATs for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: crs285wrote on 21.04.2024:[9.0] "Truly one of the most electrifying men in entertainment. On the mic and charisma, he is one of the GOATs. In the ring he was very good in his prime and still has been decent when he returned after his Hollywood career took off. Truly a man who has went above and beyond pro wrestling to become one of the biggest stars of today period."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Okaro143wrote on 10.04.2024:[9.0] "One of the biggest Superstars in WWE History. His first stint with the company and his work with Steve Austin brought WWE to heights never dreamed before in professional wrestling. Was incredibly charismatic, had superb mic skills and imo is easily one of the biggest star that ever existed in professional wrestling ( PARTLY DUE TO HIS HUGE SUPERSTAR STATUS AT HOLLYWOOD). His in ring work was very good though his contemporaries such as Austin, Jericho, HHH, Kurt Angle, Brock Lesnar, etc. were noticeably better than him, in particular, Jericho and Angle. Even when he wasn't in the World Title feuds, he was always a highlight especially during his RockNSock Connection run. Unfortunately, his return in 2010 wasn't something I was fond of, If it was a one off, it would have been fine but he was put in the main event WrestleMania feuds thrice in a row and it kind of felt like he took the thunder of upcoming main eventers like Punk, Sheamus, Bryan, etc. That being said, he remains one of the most beloved superstars of all time. Even as an actor, Dwayne has found incredible success. Probably the biggest draw in both pro wrestling and Cinema. His talent and huge presence can be felt anywhere in any media."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: GoldLigerwrote on 07.04.2024:[8.0] "Disregarding what could be said about Dwayne Johnson as an actor or businessman (and that could be a lot, much of it not great) I think it should be said that The Rock is probably the wrestler who affected the business the most in the shortest amount of time. His full-time era in WWF/E barely lasted 5 years, and he's worked 15 matches since losing the title to Lesnar in 2002. Rock still somehow managed to be one of the most iconic and well-known pro wrestlers on a global scale just by tapping into a natural charisma that just can't be replicated, no matter how much WWE wanted to find someone who could when he was away. Is he a great worker? Honestly, not particularly. His work from Rocky Maivia into his early Nation Rock days is mediocre, his 2010s matches & 2024 match were carried heavily by his aura and his opponents, and in his hottest era his best matches are almost all plunder brawls or character-driven story matches, but that was the style of that era and so he thrived. There's a reason his catchphrases are numerous and quoted decades later, there's a reason every time his music hits the crowd explodes, there's a reason he's managed to have 3 of his 15 matches since going part time be Mania main events, and that's because he just demands attention. The modern Bloodline Rock is channeling his memorable Hollywood Rock era, an era that lasted all of three months at the tail end of his original run when he already had a toe dipped in Hollywood and yet generated like 30% of his best moments. After all this time, especially with the Twice In A Lifetime run being so middle of the road, it's nice to see that Dwayne still has The Rock in him like that, even if it took a Black Adam flop-induced midlife crisis. This 8 is because I don't know if he could've thrived how he did in any other company in any other era, but having a right-place right-time lightning in a bottle kind of fit like he was for WWF is worth something."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TripleCrownwrote on 07.04.2024:[10.0] "On this site, a 10 for me means they're one of the best wrestlers to ever exist, period. However, with Rock... I have to rate him differently and break my own little rule for raitings on this site. He isn't the best wrestler ever, far from it actually. But what he does in every single other aspect is just amazing. He is an absolute star and is capable of having very good matches, despite not being so gifted in-ring. He just has the aura that very, very few wrestlers have. His mic work is second to none, as an overall character and "superstar" he's 100% worthy of a 10 and that's how I'll rate him. I feel like it was just based on his wrestling ability he'd probably be a 5 or 6, but I have to take into account the fact he's The Rock. Perfect wrestler in regards to WWE superstar standards."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MasteroftheMatchGuide99wrote on 23.03.2024:[6.0] "As much as I like his wrestling, the Rock has too much exposure and keeps way too much time to say 1 sentence. Over time, the Rock went from appearing sporadically to just showing up when WWE wants him to despite him supposedly being too busy in Hollywood for anything else, which makes each return less exciting, and his promos take 3 times as long as they need to because he constantly pauses for no reason. Now, he forced himself into Wrestlemania XL and made WWE change the main-event 4 times in a span of 2 weeks. The Rock is a celebrity and legend, that is true, but now he's doing what lots of other legends do, which is politicking to get another paycheck."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CarMenWinSteadwrote on 09.03.2024:"Rock's pretty based. I like Rocky. I be chanting "Rocky! Rocky! Rocky! " like crazy back when I was a shitty little kid back in 1997."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Neon Aussiewrote on 07.03.2024:[7.0] "He made a major impact by being one of the big players in the "Attitude Era". Many consider him to be one of, if not the best on the mic. His wrestling career was rather short-lived, though he has come back a couple times now, we shall have to tally up how much wrestling he did post-2003 when he reaches old age. His move 'the peoples elbow' was a disgrace to wrestling and probably helped change it for the worse. His style was 98% "entertainment" and 2% 'wrestling'."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 2pt0EcoBoostFusionwrote on 03.03.2024:[10.0] "Arguably one of the greatest sports entertainers of our generation, there will never be another Dwayne "The Rock" Johnson. A success in just about everything, The Rock has done it all, holding championships, main-eventing shows, having fire-spitting promos that are must-see TV, I can go on and on about how The Rock has set a precedent in Professional Wrestling and how influential and important he is to the business. He was a really good wrestler too, I mean look how many people he has inspired to be a Pro Wrestler and how many often model their gimmicks and characters after him, truly an icon. He has also become a very successful Hollywood actor and co-owns the American-Football league the UFL (formerly one part of the XFL he bought in 2021). Definitely a future WWE Hall of Famer and when he goes into the HOF, he will easily be a top ten Hall Of Famer of every class that has existed and will exist in the future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mrwfxtremewrote on 03.03.2024:"The Rock is the best example of the big fight feel rock vs hogan. rock vs Austin 3 times. rock vs cena twice six of the biggest matches in mania history"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: benny5bellyswrote on 01.03.2024:[7.0] "Teenage me loved the Rock like almost everyone else did, he obviously had unbelievable charisma. I am not sure his work has held up that well, his promos are incredibly cringe inducing and basically just low hanging fruit insults. He got eaten alive and spat out by John Cena on the mic during his first come back to boot. His in ring work was perfectly fine for the era and style of matches he needed to have."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: jasonkl24wrote on 20.02.2024:"the rock is also an obvious 10. anyone who thinks otherwise is not an actual wrestling fan and doesn't understand the industry. he is arguably the most over wrestler ever who has gotten unbelievable pops for years.the best promos ever, and he could work with anyone. nobody comes close to his charisma, and of course he was so good that he went on to become the biggest movie star in the world for years. it drives me nuts how stupid some of the supposed "smart" fans are. wrestling really also has to be looked at as pre 1985 and post 1985. its not fair to compare legends like Bruno, Thesz, Rogers, etc...with modern times post Wrestlemania. Hogan, Flair, Austin, and the Rock are the clear most important wrestlers in modern times. I would put guys like Undertaker, Hart, Michaels, HHH, Sting, Cena and Reigns at the next level."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mxkamiwrote on 11.02.2024:[7.0] "At the time of this review, I am 35 years old. My first wrestling memory, is seeing Scott Hall's "You know who I am..." promo on WCW Monday Night Nitro. So I have seen A LOT of wrestling, for a LONG time. Japan, indies/super-indies, deathmatch, intergender, BritWres, King's Road (my personal favorite after deep diving into more and more history over the past year), basically everything under the sun, I've seen. I have issues with The Rock... "He's the GOAT promo! " He hurls pretty amateur, low-hanging insults at people for the nostalgia pop, and even as a kid, I thought his promos were pretty mid. Rock would grab a mic, then the formula of catchphrase-insult-location pop-catchphrase-bury his opponent-catchphrase was the M.O., and still is to this day, frankly. Hollywood Rock is my favorite version of him, but I can't deal with it for overly long periods of time; see, the formula mentioned earlier. I know it's an unpopular opinion, but I also think he's a pretty mid worker. His style of his punches and kicks looking like my legs when my Restless Leg Syndrome kicks up, is not the height of pro wrestling offense, and the People's Elbow has never popped me (minus the slide in dress shoes to Bulldog). That said, dude is GREAT at selling and his facials are aces. I also will not deny his star power, and his contribution to moments over his 20 years in the business. But, again, for me, just mid; although I do acknowledge his importance. 5 + 2 for the legacy."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HammertonWaywrote on 04.02.2024:[4.0] "While no one can take away the impact that Dwayne "The Rock" Johnson made in the late 90's of WWF wrestling due to his electric promo's and matches, he has come back in the absolute worst time imaginable. Every single fans wants Cody Rhodes to finish his story by beating Reigns for the WWE world title, the title his father never could reach. But now Rocky Maivia comes along with his newfound power over the company to "save" Wrestlemania by booking himself in the main event instead. The Rock has done this in the worst possible time for WWE, in a time where the company needs as hero for the crowd to get behind after the recent Vince McMahon scandal that has made them out to have a toxic culture. No matter what you may have done for the business in the past, todays fans will only see you for your recent actions, and that is ruining two years of story for a sad, exhausting, boring 20 minute snore fest in which he will likely injure his muscles & tendons... again."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mooerwrote on 25.01.2024:[7.0] "I appreciate that The Rock was a major, prodigiously talented wrestler for his full-time run. However, in my period as an active fan, none of the selflessness for which he was lauded as a regular talent has been evident. Although it's obviously largely been promo segments, I find his style now tiresome and retrograde. The only person he's meaningfully put over in the last 20 years in John Cena and the prospect of adding Roman Reigns to that list in a so-so match int the main event of Wrestlemania fills me with dread for what should be an exciting season for a wrestling fan."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BruceMarcos524wrote on 18.01.2024:[8.0] "In my opinion, the greatest trash talker in wrestling history. The Rock is one of the few guys that every word and every move, the fans went out on excitement. There is no denying the charisma and the energy that he brings in the industry. One of most well-received superstars in WWE. Most of his promos are well-remembered and he has the best insult that no other guy could deliver. The man that has the most catchphrases to remember, e.g. "Finally, The Rock has come back to <venue location>! ", "Know your role and shut your mouth! ", "If you smell what The Rock is cooking! ". He is so famous some of his famous catchphrases turned into a merchandise. But one of the biggest contributions of The Rock is "Layeth the Smackdown Hotel! ", as this line created WWE's second show, Smackdown, and became the second longest running WWE show in history. An amazing showman and an amazing hype guy. One of his cons of his career is his in-ring skill, as he is not as technical as Bret Hart or athletic as Shawn Michaels, but surely has more talent than Hulk Hogan. His move set are simply basic and fundamental. But the beautiful thing about him is he would turn the basic move into somewhat entertaining and impactful as his unique aura and charisma would manage to pull it. In terms of draw, he is the second biggest drawing power of all wrestling, just next to Austin. Now he is a Hollywood movie star, The Rock has become the most famous and the most successful wrestler in history. Although The Rock retire very early as a full-time wrestler, there is no denying the impact that he brings to the wrestling world at that short span of time. And all of his greatest moments and achievements were done before he turned 30. Only if he has the in-ring skill, he could be one of the best all-around performers in history."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: RaySivanuiwrote on 15.01.2024:"The Rock has always been top 3 for me. I felt no one could match him in the mic. Very charismatic, funny, wasnt known for being the best in the ring but he gets the crowd involved and invested"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dirty Diegowrote on 12.01.2024:"Close number 2 after Austin Best in the microphone Biggest name in mainstream society (that does nothing for me to) Just star quality written all over him and he was the smartest wrestler ever he got in this Buisness at a time where about 95% of the wrestlers never made it out alive, or strung out on drugs with no money He got in to get out to become one of the biggest movie stars in the world"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dntbamarkwrote on 28.12.2023:[10.0] "When reflecting on the late '90s and early 2000s wrestling scene, few names shine as brightly as Dwayne "The Rock" Johnson. The Rock possessed not only fantastic size and in-ring ability but also charisma that reached unprecedented heights. When discussing The Rock, it's essential to appreciate his versatility and generosity as a performer. He had the unique talent of seamlessly engaging in storylines with a wide range of opponents, demonstrating a willingness to work with anyone, regardless of their status on the card. Unlike some performers who get consumed by their 'Top Guy' status, The Rock remained grounded and accessible. It's crucial to recognize The Rock's abilities as a heel, often overshadowed by his more celebrated persona as a white-meat babyface during the majority of his WWF/E tenure. The Rock's skill in portraying a compelling villain is a testament to his range as a performer. Beyond the squared circle, The Rock's impact transcended the wrestling business, solidifying himself as a once-in-a-lifetime talent. His involvement in numerous memorable feuds and moments has left an indelible mark on pro wrestling history. Moreover, he successfully transitioned into Hollywood, becoming a box office sensation for an extended period. The Rock's journey from the ring to the big screen is a testament to his star power and the enduring legacy he carved out for himself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: xitachiwrote on 28.12.2023:"The rock was good back during his prime days. Decent in-ring wrestler with a great amount of charisma which was the reason why he was so popular and still is to this day. Maybe I wouldve liked him more hadnt he retired from pro wrestling so early in his career."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Mengwrote on 26.12.2023:[4.0] "Very overestimated wrestler. Huge charisma and character but his career lasted only few years and he preferred Hollywood money to wrestling. He did some great matches during the peak of his popularity in WWE, but the further sporadic appearances that he did after his career was over, weren't so special and stole time to more deserving wrestler. I admit that his impact to the business in this short period of time was great, despite not having any particular wrestling skill in the mat, but he used and reused the same catchphrases and character that made him boring to my eyes. At the same time he has always given the impression that for him movies mattered more than the ring and that didn't bring a good image to the wrestling business,"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Gr8 1wrote on 26.12.2023:[10.0] "The man who made me become a wrestling fan not only because of his legendary mic work but because of how much charisma he had and how he used it to connect with the crowd puts him on the top of the list of the best to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "The greatest talker of all time, with no doubt in my mind, hands down! The Rock may have not been around as long as he could have, but he's accomplished so much in that short time at the top in WWF. Having humble beginnings as Rocky Maivia, who was hated by the fans (so hated, they chanted "Die Rocky Die"). Eventually, WWF pushed back by turning Rocky Maivia into a heel and changing his name into The Rock, once he started talking in third person and insulted the people and his opponents, that's when magic was being made. Then he becomes a total god in professional wrestling, being one of the most charismatic men in professional wrestling, cutting legendary promos every week and owning everyone in his path by verbally running them down and finding ways to destroy them. What made The Rock so good on the microphone was his ability to make childish and cringeworthy insults and turn them into comedic gold thanks to his charisma, delivery and conviction, a truly difficult talent to achieve. The Rock wasn't the best wrestler in the ring, but he was at least a great seller, storyteller and worker, always had the crowd in the palm of his hands no matter what. I mean, how many wrestlers can you name can get "poontang pie" over? His feud with "Stone Cold" Steve Austin is easily among the all time best rivalries of all time, a rivalry that has left a huge impact and influence on so many rivalries and wrestlers, there's never gonna be another feud of that magnitude. By far, my favorite gimmick of The Rock's would be his "Hollywood" heel gimmick in 2003, while it was short lived, he was so entertaining during this time, hilarious segments left and right, and his feud with Hurricane is one of my personal favorites. His comeback run in the 2010s was hit or miss for me, I did like his feud with CM Punk and the John Cena feuds, but there were times I felt like he was watered down that his material ended up falling flat due to restrictions, and the second Cena match was terrible. Overall, one of the all time greats, he's popular in and out of wrestling for a reason. If Ya Smeeeeeeeeeell... What The Rock... Is... Cooking?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: andytuga86wrote on 14.11.2023:[7.0] "Arguably one of the greatest talkers in the history of this business, a trully showman, full of energy and charisma. Nevertheless always found him over-hyped for some reason. Also the moveset was kinda limited and his finisher was just ridiculous ! Sorry Dwane/Rock fans."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: skyesversionwrote on 06.11.2023:[3.0] "I never got the hype surrounding The Rock. He has a good amount of charisma, which is where his talent ends. He was never good in the ring, his mic work is super overrated, and he's never had much of a character, at least in my opinion. I honestly hope that he stays in Hollywood and never returns to WWE again. He's simply not needed. He's probably gonna return at some point to face Roman Reigns which I'm not looking forward to at all. Two overrated wrestlers going at it? Yeah no thanks. I would rather watch a current-day Chris Jericho match. And that's saying something. The Rock, Dwayne Johnson, whatever you wanna call him, is way better at acting in Hollywood than in WWE, and that's where he should stay until "retirement." Call me a hater I don't care."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Giantfan1980wrote on 15.10.2023:[8.0] "The Rock really only had 4 years of full time before going Hollywood full time, but he was the complete package and brought the main events to a new level. The most successful wrestler outside the business and the only guy who successfully made the jump into movies."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hatefwrote on 13.10.2023:[8.0] "The Rock was good! but I don't see him as a 10, because his ring performance, and promos were so repetitive. of course, he created some of the most historic moments in the WWE history, in only a short amount of time compared to the other wrestlers, and his promos were amazing, but he used to do it always the same way. his sells were more like a Hollywood scene, rather than Pro wrestling, and this is another negative point.. but totally, he made a great legacy in the company, and we cannot deny that."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: bigredtalk89wrote on 27.09.2023:[8.0] "I actually dislike The Rock, so I wanted to rate him lower, but I would be dishonest, and I may be dishonest by only giving him an 8, but I believe his promo skills have gotten worse and more cliché over time. He was solid in the ring, but some of his moves just look bad or awkward. I also despise the way he buries younger talent on the mic, rarely putting anyone over, and if he has(with the exception of Brock) he usually gets his first. If he gave back to the industry more I would bump him up a point."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ECWCWWEAEWwrote on 22.09.2023:[7.0] "So... this is gonna be really silly but The Rock is one of the very few wrestlers who's body of work - matches and promos - have aged badly. Most wrestlers careers are just about looked back by newer generations and fans as almost about the same as they were perceived for the time. But for me personally, The Rocks promos are kind of obnoxious and a lot of his matches aside from Austin and HHH are pretty damn boring. Even now in Hollywood his acting career is starting to get retroactively trashed even when at one point his name brand recognition was the absolute highest billing of any actor. The guy just doesnt seem built to last in quality and always burns out after a while, kind of sad, but people in WWE will always eat up a return for him and I guess that's all that is needed for him at this point too."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Teebawrote on 15.09.2023:[9.0] "It's crazy how much Dwayne accomplished in such a short amount of time but them 7 years cemented him as an all-time great. One of if not THE greatest of all time on the mic, his charisma is unmatched. His 2002 stint when he was invincible got a bit cringe (the "strudle" days) but he recovered beautifully in 2003 as Hollywood Rock. His return in 2011 was epic but then as more Dwayne came out of him the more lame it got, I called him Bouncy Hand Rock as his promos started to feel more like lectures with the odd schoolyard joke thrown in. He doesn't get a 10 for them reasons and also because he was good but not great in the ring, super athletic but didn't have the psychology part down, he could brawl pretty good but couldn't have a technical masterpiece."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Foxmagic37wrote on 26.08.2023:[9.0] "I'll give him a 9 just because his prime and the best part of his career lasted so short. But in that time he proved that he can be the biggest name in Wrestling at the time. I think he's incredibly underrated in the ring, but I also think his finishers were kind of 'meh'. Highly athletic in the ring, unmatched charisma and electricity in his matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MattHallwrote on 20.08.2023:[10.0] "One of the best if not the best promo guy ever in the business. Also one of the few wrestlers that turned wrestlers turned into Hollywood famous. He was also fun to watch in the ring. Had the size and a good look. It's too bad we probably won't see him wrestle again."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: John Brandowrote on 17.07.2023:[10.0] "Es tut mir fast leid, aber The Rock verdient als Most Electrifying Man in Sports Entertainment die volle Punktzahl! Als Gesamtpaket einmalig. Wohlverdiente 10 Punkte für The Brahma Bull!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Undertaker4everwrote on 15.07.2023:[10.0] "Einer der besten die es gibt und je gegeben hat! Zusammen mit Stone Cold Steve Austin eine Ära geprägt! Am Mikrofon sowieso ein Gott und ebenfalls einer meiner Lieblingsschauspieler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DhruvChouhanwrote on 10.07.2023:[6.0] "I am going to focus only on positives: Probably the most charismatic wrestler of all time, really good at promos and had amazing intensity."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: devourblastwrote on 06.07.2023:[10.0] "It feels redundant calling The Rock arguably the greatest mic worker of all time but sometimes the obvious choice is obvious for a reason. The fact that he had crowds in the palm of his hand as face or heel makes the claim even more legitimate. Good in ring work as well coupled with mic work and just being a master of selling and body language makes the Rock a true icon of wrestling (except for his Sharpshooter, please don't let him do the Sharpshooter)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dancerwrote on 25.05.2023:[10.0] "Best promo ever. Words and phrases that he popularized have become mainstays in the vocabulary of English speakers. Backed it up with solid in-ring for the era he was in. Legit one of the biggest celebrities ever. Wish he stayed in the WWE for longer but when you are as talented of a speaker as he is, he was bound for greener pastures."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: tmxiconwrote on 24.05.2023:[6.0] "The guy is a legend and utilized his 7-8 year wrestling career to propel himself into legitimate box office superstardom. I want to make sure I acknowledge such an impressive feat. With all that said... he's a 6/10 wrestler. That's my usual ceiling for guys who spend their entire careers within the WWE system; it's not my style."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Shan16wrote on 03.05.2023:"Only one word for him GOAT, he is one of the best talker, super charismatic, and if you see his match with Triple H in Iron man or Ladder match in Summerslam 98, you can see how much his ring work is good"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheCoolGuywrote on 02.05.2023:[10.0] "10/10 and you shouldnt give him anything else. Great in the ring, great on the mic and became an all time great. The only thing I can say I do t like about him is that he left to soon. I wish he couldve gotten more of The Rock."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: danzitorockwrote on 08.04.2023:[9.0] "Rock was awesome as a heel back in the 90s, every heel should study The Rock during that period, he was perfect. I think he has one of the best mic skills of all time, and iconic sellings and reactions. It's a shame that after Hollywood he appeared very few times on TV, and seems to not care much about wrestling currently, but he is an absolute legend of the sport."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: greaterdalewrote on 03.03.2023:[10.0] "I mean I gotta give the freaking Rock a 10/10. He's one of the most popular wrestlers in a boom period for wrestling and can destroy anyone on the mic. Honestly his ring work was good too though it is his worst aspect but he still had plenty of classic matches in his short time at the top. The only reason he didn't wrestle longer is because he became a mainstream movie star and became the most successful wrestler to actor in the history of wrestlers becoming actors. it would be cool to see him have on more run in WWE but even if we never get that Roman Reigns vs The Rock match he's cemented himself as one of the most legendary wrestlers in history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KKeanelwrote on 26.02.2023:[9.0] "Undoubtebly legend and icon with tons of charisma and excellent work on mic, but he's not in "all-time best" pantheon in my book, mainly because of mid in-ring work and quiting wrestling industry too soon."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: kewf1988wrote on 26.02.2023:[10.0] "The Rock was a complete package and probably the most charismatic superstar in WWE history. While he was known for his amazing mic skills, he was also very good in the ring, and combining that with his charisma and mic skills, he got the fans to care about everything he did, and got insane pops just for raising his eyebrow. No wonder Hollywood came calling in 2001."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BradJohnson34wrote on 18.02.2023:[7.0] "An all-time great promo (as either a baby or a heel). Fairly limited in the ring but capable and consistent. Gone from the industry too soon."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: eBentowrote on 09.02.2023:[8.0] ""The Great One" is one of the most important wrestlers in history and played a key role in establishing WWF as an edgy, lively and modern form of pro wrestling in the late 1990's and of course he had some of the greatest matches of all time against Austin, Hogan and Triple H. I think that his in ring ability in terms of moveset is overblown by a lot of people but he does the "big star guy" role so well that it's hard to be really harsh on him at all."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: benh2wrote on 13.01.2023:[10.0] "It's almost absurd to give the full score to someone who spent barely three years on top as a full-time performer but The Rock was one of the industry's game changers. He completely elevated wrestling and revolutionised promo and character work. In the ring he wasn't the greatest but still knew how to pace a match and was flashy enough to keep you invested. He looked like a star and had charisma in spades, everyone was eating out of his hand."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CMX-7wrote on 02.01.2023:[10.0] "The biggest star and one of the biggest legends in the sports entertainment industry and wrestling in general) From failure in the image of Rocky Maivia to the most popular Hollywood star! His legendary matches with Hulk Hogan, Steve Austin, Mick Foley, Undertaker, Kurt Angle and Triple H became classics) His Charisma is incredible! Its a promo bomb!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: face painted legendwrote on 21.12.2022:[10.0] "The biggest overall star in the history of professional wrestling. Comes from one of the most respected and talented bloodlines ( all pun intended) in wrestling history. 3rd generation superstar. One of the most gifted entertainers ever in wrestling. Had a performance/ delivery with his promos that changed the game. As charismatic of a superstar as you'll ever find, arguably THE MOST charismatic depending on who you ask. Could take the silliest of stuff whether it was an eyebrow, an elbow, or a bunch of off the wall catchphrases, and get it over to the moon, and to the point that people are doing them themselves and singing along with them. One of the more underrated things about him and I guess this is why he's where he's at now, and doing what he's doing now is his ability to take whatever's given to him and make it better. He was always able to turn any segment that would be an 8 and make it a 10, same with a match (as i've read comments where he wasn't the best in ring performer). Just one of the all time greats or in his words.. The Great One."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KSupreme3wrote on 16.12.2022:[10.0] "the Rock is one of the greatest sports entertainers to ever have graced a wrestling ring. It wasn? t just the catchphrases and mottos; his style, the swagger, the extreme confidence and the ability to captivate the crowd made it clear that he was truly someone very special. I mean come on, he is now not only one of the most famous wrestlers to ever live, but he is also one of the most successful wrestler to crossover. He is a bonafide movie star and cultural icon. He wasn? t a technical master in the ring, but he knew how to perform and give the crowd some very exciting and memorable moments. His feud with Stone Cold is one of the greatest feuds in wrestling history. A true generational talent which left some really big shoes to fill, and we all see Dwaynes DNA in many of these new era wrestlers. We can? t deny his contributions to both wrestling and pop culture. Wrestling God. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: khalekwrote on 07.12.2022:[7.0] "He has definitely charisma and ring skills, but his ring skills I can rate (6/10). But this is my opinion."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "Not only was he one of the greatest promos ever, but he was a pretty damn great wrestler too. His aura can only be replicated by Austin."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Pinecone706wrote on 23.11.2022:"This guy is one of, if not then the most charismatic wrestler to ever step foot in a professional wrestling ring. The gradual change from being the blue chipper Rocky Maivia to the most electrifying man in all of entertainment is incredible and I suggest many to watch his rise in the 1997 and 1998 as I feel The Rocks run in the nation is slightly underrated. It is insane that a man that was once booed out of buildings has become quite possibly one of the most famous and inspiring people in the world."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: YourKingMobwrote on 05.11.2022:[9.0] "One of the most dramatic sudden rises in wrestling. Went from an low-mid carder with all around tepid work, promos and character to suddenly turning the corner in less than 3 months and on his way to being a superstar. He really should be rated lower, since his actual wrestling still remained tepid, with goofy signature moves and finishers, but his superstar power, promos and look can't be discounted."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BAILE3wrote on 04.10.2022:[10.0] "One of the best wrestlers of all time. One of the most charismatic wrestlers of all time. Probably the most iconic wrestler of all time. The list goes on."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheOneAndOnlyCactuswrote on 29.09.2022:[9.0] "I know some give him some flack for not being the best in-ring worker in the world, and sure he wasn't the best, but he was no slouch either, he could have very entertaining matches with a variety of opponents and he had some good-looking moves (his Sharpshooter is still shit though). But most importantly, he is an extremely charismatic and captivating performer. Not just with a mic in his hands, but when he wrestles, he has the crowd in the palm of his hand. Wrestling isn't just about workrate lads. Remember that."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Conquistador37wrote on 20.09.2022:[6.0] "Unfortunately for The Rock; there were only 3 moments I was ever emotionally invested in, even when rewatching. Before I delve into the negatives; I did enjoy his ascension from The Nation of Domination, his victory at Royal Rumble 2000 (one of my favorite Royal Rumble's) and most of all: The Rock makes the WCW Championship actually mean something, all while The Rock helps elevate new talent like The Hurricane when other guys did NOT do the same (*cough* Fkn Undertaker! *cough*) . With that being said: Most of his career was spent outside of the ring and I'm not really into that style - or for that matter the WWF/E main event style as a whole. Once in the ring he was alright at times, cringe worthy at others (his Belly to Belly Suplex and Grapevine Boston Crab looked TERRIBLE) but in general: passable. We can't pretend like he is anything less than probably the most entertaining, charismatic and genuinely "electrifying" man to ever be a part of the business; with his promo game being triple platinum at the very least. HOWEVER. So many times his mic work was less about building his opponent or the feud - but more so to get cheap laughs from the live crowds. That's not what promo time is actually for. I want to like The Rock, but there is an abundance of time fast forwarding to get the the in ring stuff - then its almost always gaga city with an extra helping of convoluted over booking. The man behind the character is easy to like though, always has been and probably always will be. 6.25 rounded down."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: GwenCube64wrote on 06.09.2022:[8.0] "one of the best promos of all time (when not saying something problematic), the definition of charisma, and a fashion icon of wrestling history. has had legendary rivalries and matches, but was a much stronger gimmick than anything else. in the ring he was definitely above average, but never hit the goat status for me"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: nothingleftinsidewrote on 08.08.2022:[9.0] "Potentially the best all time wrestler on the mic. Who's even comparable? Flair, maybe Dusty... Sloppy worker, prone to overselling, but his matches are fun and exciting and when you're a big enough star people don't care that your sharpshooter looks like shit or you did backward fish flop to sell a stone cold stunner. Blood simple gimmick- The Rock is just a guy that likes to talk shit and kick people's candy ass. More catchphrases than you could shake a stick at. I've witnessed entire promos of his where the audience finished every last sentence for him. You know you're over when you've got the people who paid to be there doing your promos for you. Adaptable to heel or babyface more easily than perhaps any gimmick before or since. Without a doubt the most successful wrestler who ever lived, and the only one who achieved mainstream success. People know that Hulk Hogan is a wrestler, but many do not consider that Dwayne Johnson once was. A+ look, A+ talker, C- wrestler. As big or bigger star than Austin. Like Austin, his career was just short enough to not have many low points in it. He should be in the conversation for greatest all time on his mic skills alone, but his just barely acceptable ring work diminishes him in the eyes of the type of wrestling fan likely to read this review."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CommisarRobewrote on 04.08.2022:[9.0] "A top heel a top face and one of the best talkers in the WWE, his feud with Austin is legendary for a reason. I nearly always enjoy matches that involve The Rock due to the high energy nature of his performance. Hopefully we may see him again, ."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ofirwrote on 01.07.2022:[7.0] "a fantastic character and amazing talker, just never been that much of a fan of his in ring work. not really my style of wrestling"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: venixilinewrote on 22.05.2022:"If I had to pick a perfect wrestler, someone I could trust to carry a company on the mic, in the ring, and out of it, I see no other choice but The Rock. While he alone isn't going to randomly end up having a 5* match with the whole roster like Okada, he creates memorable moments that no one else can compare to while still being no slouch. He's always been said to have little ego despite his spot and just knowing what would be best for the business."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: NiceRaterwrote on 12.04.2022:[10.0] "He coined a word that couldn't have been more perfect; electricity. Every move The Rock performed elicited a pop from the fans. He build a moveset designed for excitement. From every hot tag or every DDT out of nowhere, The Rock was an entertainment machine. Insanely quick witted on the mic, he created more memorable funny moments than anyone in the industry ever, and all in a fairly short space of time. You never had a second that you didn't enjoy watching The Rock, and that's what this sport is all about. He may have been the catchphrase machine, both verbally and with his moves, that inspired the likes of John Cena down the line, he also had another element to him which made him feel unique and offer something new and original every time. One of the greatest to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: rishabhwrote on 30.01.2022:[10.0] "Definitely one of the greatest professional wrestlers of all time. The guy is untouchable on the microphone and can really take any topic and make it funny. The fact that he wrestled for such a short time yet created a legacy that people regard him as one of the GOATs says everything about him. Along with Austin, he was the biggest star of the Attitude Era and their rivalry is one of the most iconic rivalries in history. Once in a generation talent, How I wish he would have wrestled for more time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Viktor Vaughnwrote on 26.01.2022:[6.0] "Guter Entertainer, im Ring allerdings nur Durchschnitt. Find ihn auch am Micro überbewertet, er bringt zwar seine Promos meist gut rüber und hat auch durchaus ab und zu mal ein paar gute Sprüche dabei, aber inhaltlich läuft es meist nur auf seine Catch Phrases raus und wird so schnell eintönig und vorhersehbar."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: eltetechoriwrote on 10.01.2022:[10.0] "It is impossible to talk about The Rock without getting emotional, it is what an era of wrestling did with its charisma and microphone. Undoubtedly one of the best of his time and that has transcended after the years to the top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CaptainCharisma1997wrote on 19.12.2021:[10.0] "One of the GOATs and perhaps the biggest natural/prodigy ever. His run in 2011-13 was absolutely terrible but I won't hold it against him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: King of Strong Stylewrote on 10.12.2021:[10.0] "The Most Electrifying Man In Sports Entertainment, dieser Spitzname sagt eigentlich schon alles über diesen Mann aus, er hat Tonnenweise Charisma (locker Top 5 of all Time) und am Mic ist er auch genial (locker Top 5 of all Time) , im Ring war er sehr gut und absolut verdient eine Legende und bekommt von mir für eines der besten Gesamtpakete natürlich die vollen 10 Punkte. If you smell what The Rock is cooking!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: IBladeDailywrote on 21.10.2021:[8.0] "The Rock was great and very entertaining. One of the most popular wrestlers ever. He had some killer feuds and killer matches. I also feel he became pretty formulaic in his promos and matches. I loved when he was pushed by a great worker like Jericho or Benoit, he could definitely rise to the occasion. But when comparing him to Stone Cold or any other main event wrestler of his era, his career was very short (he would have been an IDIOT to stay in WWE instead of Hollywood) and his promos were largely similar. His feud with Austin is one of the greatest ever."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: FACEElmo295wrote on 15.10.2021:[9.0] "Dwayne Johnson had a interesting journey in wrestling, after the failure of his Rocky Maivia character he turned heel, joined The Nation of Domination, started calling himself The Rock and the rest was history. The Rock from 1998 to 2003 was pure perfection, whether it be as the Corporate Champion to carrying the WWF in 2000 as it's number one babyface to his Hollywood Rock phase in 2003. In my opinion he is the greatest sports entertainer in the history of wrestling due to his look, charisma and entertaining move set. While his returns sometimes have a bit of staleness, he's still one of the best sports entertainers in the industry."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: SrHunterwrote on 09.10.2021:[10.0] "Possibly the greatest talker in history, the definition of entertainiment, really good on the ring a charisma that few have, and many many classic matches. One of the greatest of all time for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: jltwrote on 26.09.2021:[6.0] "I have to give him props where it's due as he was a massive part of the Attitude Era and he's an absolute legend in the business but his ring skills are very generic and not very interesting. To be fair, he backed himself up on the mic and his overselling definitely helped him at most points. Without his charisma, he'd be a jobber (maybe midcarder) his entire career."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Upgrayeddwrote on 05.09.2021:[8.0] "Look, don't get me wrong, the Rock's a legend. His mic skills deserve to be put on a pedestal, his charisma was electrifying and he could work an amazing match. Is he an all time great? Absolutely. Is he a legend? No doubt in my mind. However, I never thought him to be the most technically gifted wrestler out there. His moveset was extremely limited, and his finishers weren't what I'd call special. He's mediocre at best in terms of maneuvers, but he's an overall extraordinary talent."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Suzukigunwrote on 25.08.2021:[10.0] "LMAO at the people giving low ratings. The Rock is an all-time legendary talker with really good wrestling skills. He is an actual megastar for a reason. Very few were as electrifying as him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: juiceisloosewrote on 23.07.2021:[3.0] "Rock is one of the most overrated wrestlers in the history of wrestling. To be honest he wouldn't have been over if it wasn't for his mic skills and he was ok in the mic; i always liked Jericho and Flair better. The only time i have ever liked him was when he was with the Nation, he was a great heel. However he wasn't anything special in the ring and his 'finisher' was one of the worst i've ever seen. I've never find anything he did exciting, also his angles got more stupid as the time went on and made me feel like only 12 year olds would laugh at his stuff."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: faithOfWrestlingwrote on 11.07.2021:[3.0] "The Rock is insanely charismatic and oozes coolness I will give him that, but other than that I find his mic skills to be overrated and he was not very good in the ring. Everything The Rock did in the ring looked sloppy and lose even though he could have some decent matches it was not good enough to overlook how bad he was. I mean his sharpshooter for example always looked terribly executed, the peoples elbow was a dumb move no different in my opinion than Hulk Hogans leg drop, just generally everything he did in the ring looked bad. The Rock over did it too much performing in the ring that every move he did suffered, the only thing I did appreciate The Rock being over the top with at times was his selling which could be up there with the best of sellers ever."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ALFwrote on 09.07.2021:[8.0] "Vom Charisma und Micwork überragend, In-Ring-Skills nur gehobenes Mittelmaß. Um ihn wurde aber auch der entsprechende Kosmos aufgebaut, um in der Attitude-Ära wirken zu können - ähnlich wie zuvor der Hulkster ("The Great Muscle Head Migration", ca. 1985 -1990 mit Bodybuildertypen wie Hulk Hogan, Big John Studd, Tony Atlas) oder der Blütezeit des Ultimate Warriors (Comicbuchszenerie, ca. 1990 bis 1992; WO ES NOCH VIELE BUNTE UND FARBENFROHE GIMMICKS GAB wie Undertaker, Natural Disasters, Papa Shango, Skinner, Damien Demento oder Max Moon) oder wie bei ihm Attitude Ära mit Austin zusammen. Hätten beide so cool gewirkt ohne Vince McMahon als böser Boss? Glaube ich nicht ...."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Often imitated, never duplicated. The greatest entertainer in the history of the business. He wasn't the greatest technical wrestler, but he was an excellent storyteller in the ring and few people could build up to a great moment like the Rock could. His promo work speaks for itself, and his charisma and ability to connect with a crowd was legendary."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rodycaz IIwrote on 18.05.2021:[10.0] "Greatest entertainer in the history of pro wrestling. Truly the most electrifying man the business has ever seen. Went on to become the biggest star in Hollywood. Wouldn't be surprised if he ends up as President of the USA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: hatmatic96wrote on 06.05.2021:[1.0] "The rock is wayyyyyy over rated. people go nuts over the peoples elbow when it is nothing special. He is a good entertainer with his words but besides that his wrestling is pretty trash. Now he is a great actor and very funny also huge but besides that he does not have too much going for him. I would like to see him try somewhere besides WWE, such as new Japan. That way I could give him a more unbiased rating."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: StrongStyle2020wrote on 23.04.2021:[10.0] "Arguably the most charismatic wrestler of all time. All time great promo, and larger than life presence and personality. Indisputably great as both a face and heel. Solid in ring, but it was his character, mic work, fire, presence, and charisma that made him one of the all time greats. He will go down as one of the biggest stars the wrestling industry will ever see."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Razzydawrote on 20.04.2021:[8.0] "I appreciate Dwayne reinvented himself with heel Rock , after Rocky Maivia heat that comes from fans , He is one of the greatest mic talkers of all time, with many good promos. Instead his in-ring abilities weren't so great, but he did it anyway."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AnBwrote on 16.04.2021:[10.0] "I'm not sure I'll ever understand anyone who legitimately hates on Dwayne Johnson. He's one of if not the most charismatic wrestler ever, he was fantastic in the ring, was part of some of the best storylines ever in the WWE, and has gone on to an extremely successful career post-wrestling, while always managing to seem relatively down to earth and like a good guy. When I was a kid and got my hands on some VHS tapes of WWF, he wasn't exactly my favorite, but going back and watching his rise now it's really incredible to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MrJabroniCamelClutchwrote on 09.04.2021:[10.0] "The most charismatic wrestler in history , simply had the best gift of a gab , magic on the microphone , very good in the ring , had classic feuds with Stone Cold , HHH , Mick Foley and more , no one comes close to his charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Bushidospirit22wrote on 16.03.2021:[10.0] "The most charismatic wrestler in the history of the business. I don't think I've ever seen a wrestler do less to have the entire audience eating out the palm of his hand than The Rock, his eyebrow is more over than most wrestlers. His in-ring work was alright, and probably was limited by the style of the Attitude Era, but in terms of being the total package, The Rock is certainly in discussion for the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KyleEnjoysWrestlingwrote on 10.03.2021:[10.0] "Rock was never "my guy" during the Attitude Era, but I can still see his greatness. For as athletic a guy as he is, he will never be regarded as one of the best in ring workers & he mostly relied on punches & charisma to carry him through a match. But what he did right, he did so right that anything he did wrong was quickly overlooked."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Takerfan99wrote on 03.03.2021:[9.0] "One of if not the best talker in the business. Decent in the ring, but his charisma and gimmick are what make him great"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Burninghammercriticwrote on 20.02.2021:[7.0] "Rock has a big fight feel every time he enters a ring. He is a great promo and has a great look. So what? s the issue? His matches are at times repetitive and his move set is limited. He isn? t someone who would shine in companies where wrestling quality was key like in NJPW before his success. The Rock is mostly image and presentation but his matches have little substance. He has earns everything he has achieved and is an idol of many. I am not disagreeing with any of that, the man is a real work horse. But as a professional wrestler he is not complete."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: RickyHendowrote on 11.02.2021:[9.0] "By far the most charismatic man to ever wrestle (or live). His heel turn changed wrestling forever and he cemented himself as a top 3 biggest name in wrestling ever"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Uweuwesenwrote on 25.01.2021:[10.0] "Ein wirklich guter Wrestler und eine absolute Legende am Micro! Der definitiv Beste Mic Worker, den das Wrestling jemals gesehen hat! Period"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Chiqui Leccawrote on 16.01.2021:[7.0] "He is an entertaining wrestler, with great promos and great moves, but sometimes he bored me, is so repetitive"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Abo96wrote on 19.12.2020:[10.0] "Guter Worker, der vor allem in Big Matches glänzte. Außerdem einer der allerbesten Micworker. Obwohl seine Promos zum Großteil aus Catchphrases bestand war er doch unglaublich überzeugend, intensiv, schlagfertig und wie kein anderer fähig zu improvisieren. Seine Mimik und die Art und Weise, wie er seine Worte betonte sorgten dafür, dass er einfach alles over bringen konnte. Als Heel und als Face gleichermaßen begnadet. Einfach der Most Electrifying Man in Sports Entertainment und nicht umsonst auch einer der bekanntesten und größten Schauspieler der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Residentwrote on 10.11.2020:[6.0] "He is a great talker. One of the best of all time. But I never thought he was a great wrestler. He oversells moves, it looks bad, and he also does the worst Sharpshooter I've ever seen. His People's Elbow looks embarassing. While he has the charisma, he's never had skill in the ring. He can be funny, sure, but he is not a good wrestler."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TWICEmomowrote on 06.11.2020:[9.0] "The Legend when it comes to some performing items such like cutting promos, mic skills, and self-charisma, and Dwayne himself indeed delivered lots of entertaining matches in his career. Overall, not a technical wrestler, but a legend in Sports Entertainment"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: eleddie2914wrote on 29.10.2020:[10.0] "The rock is a damn legend he has accomplished so much in his brief run with the wwe. Rock was and is one of the greatest wwe superstars of all time. He and Steve Austin made the attitude era popular."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheV2wrote on 26.10.2020:[6.0] "He was perfect for his time. However in every other era (especially now) he probably would've failed. Rocky is all about comedy and charisma. In both aspects he's probably the best of all time. One could consider him the Ali of pro wrestling. He had the It-factor. His in-ring work could be goofy and exaggerating, yet nobody cared. Nonetheless, beyond his talk he just wasn't a good wrestler - I don't even blame him, the fans gave him that freedom. At least he was actually charismatic and not just a one-dimensional cliche hero, brother."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: SSEighty7wrote on 25.09.2020:[10.0] "Outstanding in every way possible. You can dock him for in-ring skill, but being a great wrestler isn't always about how many moves you can do, it's about engaging a crowd and telling a story, and Rock was elite in both. Some of the best crowds in history were because of The Rock. Nobody held crowds in the palm of his hand like him. He was a transcending wrestler. Multiple video games and the Smackdown brand itself were named after HIM. Who else can say that? Legendary feuds, legendary promos that are still referenced today. There's very few people in the history of wrestling that have struck a chord like him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Nerfair1wrote on 24.09.2020:[10.0] "Probably THE most charismatic wrestler of all times, at least from his era. Even if in-ring he wasn't the best, he was still great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: martizzletaewrote on 12.08.2020:[10.0] "if you were watching wrestling, and didn't want to be The Rock then you're not me! The looks abd the charisma he carried were second to none, he could stand there abd raise an eyebrow and we'd all go insane! The man was insane and his matches werent anything to scoff at either - Rocky could work too!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ma Stump Pullerwrote on 13.07.2020:[9.0] "Rock's likely one of the biggest international draws of all time if considering popularity and overall success. When it comes to promos, very few come close to the kind of connection he had with the crowd, how he could easily get him on his side or make himself a major heel magnet. His promos were some of the funnest around, but he could do intense, serious promos as well: another thing is that, unlike some wrestlers, he didn't bury the other guy he was wrestling usually, always complimenting their own skills and achievements but making sure to boast his above them. His matches with Steve Austin are masterful both in ring psychology, but also the chemistry they both had with each other was something else completely. Yeah, his ring work is a bit lackluster, and he can't fly off the top rope or hit a dozen variations of a suplex, but his simple moveset still got him massively over with the crowd, who never seemed to tire of it. Granted, if you based him off only his return match quality then yeah, I'd agree he's pretty sloppy in the ring. Prime Rock through was smooth and could work just fine with guys far more impressive (Angle, Brock, etc) and make them look like a million bucks. Rock definitely has to be considered as one of the biggest hits WWE ever had, and it's unlikely they will have such a total package again. The fact that his charisma has successfully bounced to Hollywood is a pretty big tell that he was the real deal."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Khalid Acewrote on 15.06.2020:[6.0] "Where do I start here, first of all: I think the rock is one of the most overrated wrestlers ever. He was above average in the ring & I find most of his promos childish & don't get me started on his people's elbow finisher."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Wrestlefan20wrote on 11.05.2020:[9.0] "Amazing on the mic. Can play both a heel and a face really well. Great selling. Has a lot of natural charisma. Really enjoyable to watch. His in-ring skills were also great, but stopping to wrestle full-time while still being very young prevents him from being considered among the all-time greats in that regard."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: hirsty97wrote on 29.04.2020:[10.0] "The Rock arguably the most charismatic wrestler all time. Because of his in-ring charisma he could never have a bland match and coupled with the right opponent he could have excellent matches apropos for WM main events."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AndoCommandowrote on 30.03.2020:[9.0] "A talent perfectly suited to WWE's design. Legendary talker, great look and charismatic as hell, always drawing in the live crowd with whatever he had to get over. Excellent seller as well; not everything has to be "realistic" in the ring when you're telling a story. Never the best in-ring worker, but it doesn't matter when you're the most electrifying man in all of entertainment."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Conorwrote on 27.03.2020:[10.0] "An iconic figure, and one of the best in the business. One of the best at playing the babyface or heel role. Simply elite on the microphone and phenomenal at working a crowd. Definitely in my top 5 of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AAA3000wrote on 07.03.2020:[10.0] "Neben Stone Cold war auch er es der die WWE von unten ganz nach oben gezogen hat. Schauspielerisch sowieso einer der Besten gewesen, aber auch im Ring hatte er's einfach drauf!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: FrankSiverowrote on 09.02.2020:[10.0] "''The Most Electrifying Man In Sports Entertainment" und das nicht zu unrecht und kann dem nur voll und ganz zustimmen. Sein Micwork zählt mit zu den besten aller Zeiten und sein Charisma ist auch einmalig. Ein Top-Draw der die Massen in die Hallen locken konnte. Im Ring vielleicht nich ganz so gut aber lieferte legendäre Schlachten gegen Namen wie Steve Austin, Triple H oder Mankind. Definitiv einer der größten Stars der Attitude Era, der es auch schaffte in Hollywood Fuß zu fassen und auch dort zu den Größten aller Zeiten gehört."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Maihei1411wrote on 17.10.2019:"Finde ihn langweilig und uninteressant sowohl im Ring als auch am Mic. Hoffe nicht das er nochmal einen Run bei der WWE macht es ist für mich einfach nur anstrengend ihm zu zusehen. Habe zwar seine Prime in der AE nicht mitbekommen aber sein Standardrating hier ist viel zu hoch."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ElPolloLocowrote on 14.03.2019:[9.0] "For me it's very hard to rate The Rock. One one side he had an amazing look (I don't like him with a shaven head), is still an incredible natural athlete, he has a great mind for all kinds of entertainment and has a weird type of charisma about him. It was not a Hogan (read: comic book superhero) type charisma, more like wanting to see what he would come up with and do next. An absolutely amazing entertainer whatever he chose to do.  On the other side many of his "classic" promos were cringeworthy back in 1999-2000 and are really bad these days, he has always been merely adequate in the ring and his regular returns have gone from bad to worse over the years, albeit not always through faults of his own.  He's not the kind of wrestler I prefer, but his ability at entertaining is absolutely amazing and deserves an adequately exalted rating."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JEK 1991wrote on 12.12.2018:[10.0] "Great wrestler and very exciting to watch. A jack of all trades form promos and mic skills to moves ans to babyface and heel roles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Steamboat2511wrote on 05.12.2018:[10.0] "Wieder gilt es ein Gesamtpaket als Wrestler zu bewerten und somit ist The Rock für mich eine der größten Legenden überhaupt. Er war nicht der technisch beste Wrestler seiner Zeit, aber andererseits sollte man seine In-Ring-Fähigkeiten auch wieder nicht unterschätzen, denn so limitiert war er auch wieder nicht. Zahlreiche legendäre Matches und Promos (vor allem mit seinem kongeniaen Attitude-Era-Gegenüber Stone Cold) bleiben dem Wrestlingfan für immer präsent. Seine Persönlichkeit stellt fast alles in den Schatten, was sich sonst im Ring bewegt. Und seine Mic-Skills sind vielleicht sogar unübertroffen. Einen solchen Entertainer gab es nicht nochmal und im Gesamtpaket gehört er fest in mein Top 5."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TANK 81wrote on 30.11.2018:[5.0] "THE WORLD MOST OVERRATED WRESTLER IN HISTORY.  Just average gimmick back to his run before Hulk Hogan made him a famous ""superstar".  His humoristic mic skills is absolute total garbage.  His promos are like a primary school kids mental level. "Candy Ass" The one of the worst finishers ever performed in modern wrestling .  For me just a clown with an Barbie doll smile. However he became decent actor with a couple decent films now . And much , much beter physique since he get ''push'' with Hollywood Hogan's help."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Stott Onewrote on 27.11.2018:[10.0] "I feel like my name gives it away, but one of my all-time favorites. Even when he leaves me to make shitty children's movies, I still go crazy when he shows up and beats up some random tag team on RAW. After reminding them that it doesn't matter what their names are, of course. He really is ? I guess was... the most electrifying man in sports entertainment. I can't blame him for making the easier and faster money in Hollywood, but damn do I wish he'd come back. A feud with Rollins or Styles or Bryan would make my whole century. Oh well. I'm not taking off a single point. And yes, I know that makes me a hypocrite because I'm heading to another wrestler next..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: zephyrwrote on 09.11.2018:[7.0] "I find The Rock incredibly difficult to rate. On one hand you've got an incredibly charismatic and very talented talker, on the other hand you've got a really boring wrestling style that never did anything for me."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: RatingsMachinewrote on 15.10.2018:[9.0] "The Rock was one of the three biggest stars of modern wrestling. That's not up for debate. His charisma is also off-the-charts. His in-ring was never great, but Rock was good enough to keep up with far better workers. The only negative about Rock is that his interviews were almost all cornball comedy, and while they got over live and made people laugh, it meant they never hit you in the gut, they never made you feel anything but momentary amusement."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: pappahousewrote on 02.09.2018:[10.0] "Mein absoluter Favorit, mega Charisma, mega Intensität im Ring, bestes Mic-Work aller Zeiten. Ich war damals sogar ziemlich traurig, als er meinte Schauspieler zu werden und immer weniger wrestlete."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: jamzell00wrote on 07.08.2018:[8.0] "Legendary on the mic, charismatic as hell and a decent hand in the ring. The perfect wwe wrestler and a guy this company will never see again"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AJStylopzwrote on 13.05.2018:[6.0] "I'm a huge fan of The Rock, a fitness icon, an hollywood star, a really inspiring person with a really inspiring story but, I'm rating The Rock as a wrestler, and I think he was ok in the ring but sometimes his selling was weirdly awkward never got me very impressed and his moveset was very limited, he didn't much stuff wrong, but he was never impressive to my eyes in the ring, even though I liked some of his matches with Benoit, Jericho, Angle and Austin. His mic skills were really good though."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: aydings05wrote on 05.05.2018:[5.0] "The Rock gehört für mich mit zu den überbewertetsten aller Zeiten . Fande ihn schon fast immer ziemlich nervig auch wenn er der Star der AE gewesen ist. Konnte mit seinen Matches nie wirklich was anfangen außer ein paar ausnahmen .. Charisma und micwork kann ich ihm logischer weise aber nicht abstreiten hat mich dennoch nie wirklich interessiert wie so manch anderen"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Alex Maedawrote on 19.04.2018:[6.0] "Schön und gut, er war ein großer Star der Attitude Era, die einer der erfolgreichsten Zeiten der WWE war und für den Sieg in den Monday Night Wars gesorgt hat. Aber im Gegensatz zu Hogan oder Cena hat Rocky die Company nie alleine getragen. Austin war mindestens genauso groß wie er - auch der Undertaker, Mick Foley, Shawn Michaels, Triple H und natürlich Vincent Kennedy McMahon sowie sein Sohn und auch der umstrittene Vince Russo hatten einen erheblichen Teil zum Erfolg beizutragen - und hat ihn mehrfach deutlich besiegt, was eigentlich zeigen dürfte, dass Austin in der Hierachie über ihm stand und auch heute noch stehen würde. Aber Austin wusste im Gegensatz zu Rock, wann Schluss ist. Gastauftritte mit Promos und Stunner ja, Rückkehr als Aktiver nein. Dwayne Johnson war noch nie ein guter Wrestler, mit zwei zugedrückten Augen vielleicht noch solide, aber heute kann er gar nichts mehr und sobald ich ihn in der WWE sehe, spule ich vor und schalte weg. Genauso so unerträglich lange, nichtssagende Promos wie vor 15 Jahren und im Ring will ich ihn nie wieder sehen. Kann mittlerweile in etwa so viele Moves wie der Great Khali und hat keine Kondition mehr. Leute wie er sind der Grund, warum ich mich manchmal als Wrestling- bzw. WWE-Fan rechtfertigen muss. Aktuell 2 Punkte, seine Glanzzeiten bringen ihn auf durchschnittlich. (2013) UPDATE: Gut, ich bin kein Fan von The Rock, daran hat sich nichts geändert. Aber seinen Impact, sein Charisma und seinen Draht zu den WWE-Fans kann ich ihm nicht aberkennen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dragon Fighterwrote on 26.02.2018:[9.0] "One of the greatest wwe superstars for sure. Extremely charismatic and golden on microphone. Him playing the crowd is spectacular and magnificent - The ability that very rare wrestler can do. I do love his insults towards his opponents- very very entertaining. His rivalry with steve Austin was legendary without a doubt. I don't give him full 10 because he wasn't that great in the ring. Sure he has many memorable bouts but I feel that he wasn't as good as foley or Austin for me to give 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CHN325wrote on 31.01.2018:[9.0] "The greatest of all time when it comes to mic work, no one could ad lib or work the crowd better. Amazing charisma, unmatched. He was never the greatest in the ring, but he was as good has he had to be."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: coolserazwrote on 31.12.2017:[10.0] "An absolute star. He could work, talk and say the silliest lines with amazing charisma. His feud with Austin is the greatest of the modern era and resulted in WWE becoming a superpower in pro wrestling. Is now a mega movie star due to the same charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: test85wrote on 18.11.2017:[8.0] "Vom blöd grinsenden Babyface zu einem der sympatischsten Männer aller Zeiten. Am Mic konnte ihn kaum einer was vor machen. War sich im Gegensatz zu einigen seiner Kollegen auch nicht zu schade andere over zu bringen. (z. B. Lesnar & Jericho). Seine letzten Auftritte im Ring waren aber nicht mehr so gut. Okay er früher auch nicht der beste In-Ring Performer, aber sein 2013 Comeback ging gar nicht. Trotzdem kommt er noch immer gewaltig bei der Crowd an."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ianlapierrewrote on 04.11.2017:[6.0] "The Rock was probably the GOAT on the mic. He and Austin revolutionized wrestling in the late 1990s. He was on his way to being one of the greatest of all time. But he didn't stick around very long. I don't believe somebody with less than 10 full years in the business can be rated as one of the all time best. Potential is one thing. But I place way more value on longevity. Although one of the most entertaining ever, The Rock really was by no means any better than an average 'wrestler'."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Big Blue Machinewrote on 17.10.2017:[9.0] "The Rock has never been the most gifted, techincal, agile or powerful wrestler in the world, not even when he was at his peak. But he was charisma incarnated, and still today people can feel the electricity in the air when he talks at the mic in the middle of the ring. And despite the lack of good in-ring abilities, he has had many incredible matches over years. The Rock is, without a doubt, one of the most important wrestlers in history."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: taabr2wrote on 11.09.2017:[10.0] "Simply put the best talker in the history of professional wrestling. But what I think is the best thing that The Rock brought to the table was his weird schizophrenic relationship with the fans that allowed him to play whatever role that the situation called for."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Doctoriusefulwrote on 10.08.2017:[9.0] "Nicht der beste Wrestler aller Zeiten, jedoch der beste ENTERTAINER im und außerhalb des Rings aller Zeiten. Im Ring solide bis gute Leistungen, am Mikrofon ein absoluter Gott. Ich habe zur Attitude-Zeit, als WCW-Fanboy, nur wegen ihm angefangen RAW zu schauen, wegen seinen Promos, seinem Charisma, seiner Comedy. Alleine am Mic ein abolutes Genie, wenn er dann noch einen Gegenspieler am Mic hatte, der wenisgstens gut am Mic war, sind die besten Promos alle Zeiten dabei heraus gekommen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fruchttigerwrote on 25.07.2017:[3.0] "Das was ich von ihm in der Anfangszeit und auch noch das ein oder andere aus der Attitute Zeit gesehen hab fand ich gar nicht so schlecht, aber als der Hype um ihn so groß würde hab ich bis heute nicht verstanden warum. Unterhaltung ist ja schon und gut aber das was für mich wirklich ein Wrestler ausmacht hat er für mich nicht. Die ganze Figur wirkt auf mich völlig überspitzt ohne Ecken und Kanten. Im Ring vielleicht Maximal Durschnitt mit einem Absolut lächerlichen Moveset Peoples Punsh, Elbow. Klar ist Wrestling Show und Moves dienen zur Unterhaltung aber solche Aktionen haben null Impact und wirken selbst im Wrestling billig. Was mich aber am Meisten stört sind seine nicht Zielgerichteten Promos, Phrasengeträsche etc. wirkt trotz Körperbau einfach nicht als wenn er in diesen Sport gehört. Untern strich langweilen mich seine Promos & seine Matches. Zu seiner Comebackzeit gegen Cena hab ich echt überlegt das Produkt zu boykottieren, bei einen anderen Gegner hat ich das wahrscheinlich auch getan. Wenn ich the Rock heute nochmal auf der WWE Fernsehlandschaft sehe schalte ich aus. Dann will ich kein Wrestling mehr sehen. 3 Punkte weil ich ihm das Talent nicht absprechen möchte und der Wrestler nicht dafür kann das man ihn so in den Mittelpunkt rückt, aus Promoter Sicht sogar völlig richtig. Für einen kompletten Wrestler fehlt mir bei ihm aber einfach so ziemlich alles. Trifft einfach nicht meinen Geschmack."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Viper99wrote on 18.06.2017:[10.0] "Den Attitude/Golden/Ruthless Agression Era Rock find ich erstklassig! Am Mic wohl einer der besten aller zeiten und im Ring auch gut! Allerdings bin ich ein absoluter feind vom PG Rock der zurück kam 2 Schlechte Matches gegen Cena zeigt... und 2 Pasable Matches gegen Punk zeigt... Und auch noch den F'N Title Gewinnt.... Ich habe absolut nix gegen den momentanen Lesnar run denn der dient ja nur dazu ein Neuen Jung star over zu bringen... (Reigns, Cesaro, Rollins.... ) während der Rock Titelgewinn nur dazu gedient hat Cena over zu bringen? ! ? ! ? ! ? Er gibt null sinn.  Allein schon Twice in a Lifetime war total banane.... Once in a Lifetime fand ich super vom Aufbau her mit Größte Match aller zeiten und den guten Promos.... Das Match ansich war nicht sehr toll.... Aber Twice in a Lifetime hat mich 0, 0 umgehauen.... lag warscheinlich auch am Punk Titelverlust der richtig Mies war.... aber ich bin abgeschweift.... Rock vor den 2013er Jahren = 10 Punkte!  Rock nach den 13er 14er Jahren = 5 Punkte.  EDIT: Damals im Rage über Rocks bescheidenen Titlerun nur die 8 punkte gegeben, aber natürlich ist Rock einer der besten Ever weshalb man klar die 10 geben muss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BobbyDigitalRZAwrote on 19.05.2017:[10.0] "Definitiv auf dem Mount Rushmore der Wrestling Industrie. Riesen Draw, super ''übermenschliches'' Charisma, grandioser Athlet mit seinen Kip-Ups, Schlägen und Tritten. Hat am Mic mit unterhaltsamen Promos immer überzeugen können und dazu eine absolute unverwechselbare Persöhnlichkeit an sich. War einer derjenigen, die die heutige Generation dazu gebracht haben ins Geschäft einzusteigen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Blood Pumpwrote on 07.04.2017:[8.0] "The co-ace of the Attitude era along with Steve Austin, and the company man. The Rock and Austin are pretty much equals on the mic (I'd say Rock is just a pinch better) and in the realms of charisma, but in the way of wrestling Austin has Rocky trumped. The Rock may have had a better look to even it out, but I'd still say I prefer Austin. That being said Rock deserves a lot of credit for helping propel WWE out of its niche status, to the point where it arguably superseded the old Hulkamania 80s era. I was tempted to bump The Rock down to a 7 but after rewatching many of his promos I simply couldn't. The man was pure gold on that mic, he controlled it and the audience perfectly."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: SuTonwrote on 18.03.2017:[7.0] "While The Rock can be said to be the most electrifying man in sports entertainment, he was never more than an above average man in the ring. He was in some great matches, though, (great chemistry with Steve Austin) and his charisma could help carry matches, but his run was short and wouldn't make anyone one of the absolute top greatest."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hitman84wrote on 20.02.2017:[9.0] "Für mich am Mikro der beste aller Zeiten. Im Ring gab es bessere aber er konnte Main events bestreiten und zwar gut bis sehr gut( z. B. Wrestlemania X-7 gegen Austin)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JxhDelwrote on 13.02.2017:[7.0] "A natural talent of this discipline, with a sincere passion for what he does. However, having turned to a carreer in movies after just a few years, has prevented him to become a truly great performer; also, his promo and persona were damn exciting for sure but sometimes they fell flat, repetitive or out of place. However, i damn love his "Hollywood" persona."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rllywrote on 10.02.2017:[7.0] "Mic: Muss man nicht viel sagen, er ist halt echt unterhaltsam 10/10 (25%) Promos: Die sind richtig gut und dagegen kann auch nichts sagen 10/10 (10%) Ring: Hier ist es echt schade um die Bewertung. Er ist schnell aber besonders gut war er noch nie im Ring. 4/10 (50%) Gimmick: Sein Gimmick natürlich durch seine Mic Skills perfekt, sowohl als Heel, als auch als Face. 10/10 (15%)   =7 Punkte"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KalleKwrote on 09.02.2017:[10.0] "Ein wirklich mitreißender Wrestler, wenn es um seine Skills am Mic geht. Zähle ihn, mit Steve Austin und den Undertaker zu den größten Stars der Attitude Ära. Seine In-Ring Skills waren mit Sicherheit nicht schlecht, aber es gibt Wrestler deren Fähigkeiten deutlich besser sind. Jedoch hat er es immer wieder geschafft, tolle Matches zu worken. Gerade die Fehden mit Triple H und Mankind finde Legendär."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Real Raterwrote on 28.01.2017:[9.0] "Ring: Fand ihm im Ring wirklich gut, konnte ein Match gut dem Big Time Feeling Stempel aufdrücken. 8/10 (50%).  Promos/Schauspieltalent:Kurz gesagt der beste in dieser Kategorie. 10/10 (25%) Charisma/Statur/Gimmick:Charisma hatte er aufjedenfall aber etwas fehlt mir einfach zur 10. 9/10 (25%) Sind dann insgesamt 8, 75 Punkte für The Great One.  = 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ApexOfEvolutionwrote on 08.01.2017:[8.0] "The Rock lebt in erster Linie von seinem grandiosen Mic-Work (10 Punkte) und dass er durch seine Hollywood-Filme über das Wrestling hinaus bekannt geworden ist. Er ist auch durchaus charismatisch aber da gibt es viele Wrestler, die ihn um Längen schlagen (8 Punkte). Zu guter letzt muss man natürlich auch seine InRing-Skills bewerten und die sind leider "nur" okay (6 Punkte). Das sind zusammengerechnet 24/3=8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: rjsbx11wrote on 06.01.2017:[10.0] "Dwayne Johnson comes off like the type of person who would be successful at anything he pursued, and truly he has. Why is that? The Rock's exemplary work effort is matched with uber charisma and likability. Quite simply, the Dwayne "the Rock" Johnson has "it. " After not being accepted as the white meat babyface Rocky Maivia, he transitioned the fan backlash into the wise-cracking, egotistical, third person referring asshole and it struck a chord with audiences. From his plentiful catchphrases, to his ability to change from funny to serious in a heartbeat, viewers were invested in the Rock. The best version of Rock being Hollywood Rock where he wasn't as formulaic and unleashed legendary promo after promo. In the ring, Rock was crisp while still being simplistic. He made a theatrical leg drop a championship winning move and while rudimentary nowadays, it speaks to his star quality. While he's been bland in his returns, he was (and still is) a major draw, and was untouchable in his prime. The Rock is truly one of the icons of professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ErycK24wrote on 03.01.2017:[10.0] "The Rock carries a larger than life presence, he is without a doubt the most charasmatic wrestler in history. Austin at a close #2. The Rock helped define the golden era of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: NastyYaffawrote on 01.01.2017:[8.0] "Not exactly an elite in ring performer (he's had some really great matches though), but he's such a natural entertainer, that I can't give him anything less than 8. A candidate for the best promo ever & perhaps the most charismatic wrestler ever. Love me some Rocky."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Coltwrote on 22.11.2016:[10.0] "Es ist eigentlich überflüssig viel über The Rock zu schreiben, er war nach Stone Cold der größte Star der Attitude-Zeit und bestritt etliche denkwürdige Matches. Am Mic für mich sogar der BESTE aller Zeiten, also auch besser als Austin und Michaels. Fand ihn als Einzelgänger ohne Stable (egal ob NOD oder Team Corporate) am überzeugendsten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DieOffenbarungwrote on 18.11.2016:[6.0] "Lebte hauptsächlich von seiner Fähigkeit am Mikrofon, wobei mir sein teilweise überdrehter Stil nie gefallen hat. Trotzdem zählt er zu einer der größten Mic-Talker seiner Zeit. Im Ring war er allerdings nie wirklich gut, hatte dennoch einige gute Matches, was aber nicht nur an ihm lag. Würde ihm auch gerne mehr als 6 Punkte geben, aber seine Rückkehr hat einiges kaputt gemacht. Zudem ist es mehr als fraglich warum man jemand den größten Titel der Liga gibt der dem Wrestling den Rücken zugekehrt hatte, nach eine Promo er würde das Wrestling niemals verlassen. Once in a lifetime war dann auch noch die größte Verarsche. Kann verstehen wenn man ihn feiert, aber mehr als 6 Punkte kann ich ihm nicht geben. 7 im Ring, 9 am Mic. Wären 8 im Schnitt, ziehe aber wegen seiner schrecklichen Rückkehr und den ganzen kontroversen zwei Punkte ab."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: James Dean Wrestlingwrote on 09.11.2016:[10.0] "Stop Saying Rock comes back and buries talent. You need to LEARN the meaning of the word. Rock is Unfairly judged these days due to his lackluster part time run, but from an overall standpoint one of the all time greats. Not the best in the ring but good enough to have made an impact ala John Cena. lol at people saying Rock didnt have any ring skills or wasnt a good wrestler. He was a Great worker. Who put on great matches when it counts.  Good mind for the business and the ring. Could instantly change his alignment and work in the ring depending on the crowd. He played his character and time in the WWE perfectly. Even for those who says he's all jokes and catchphrases. I say you haven't seen his whole catalog. Rock has had plenty of promos off his usual schtick. That was serious and to the point. Or meaningful to build a feud. But his whole game was to be the goofy, jock.  So thats what makes him.  Anyway, 10 points for one of the best to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Snedgewrote on 15.10.2016:[8.0] "Was haben wir ihn in 2000 gefeiert! Jeder wollte so sein wie The Rock: gut aussehend, witzig, charismatisch, und jeder trug seine Adidas-Knopfhosen! Der Niedergang kam dann nach Wrestlemania 17: Hollywood ... The Rock war immer mal wieder weg und kehrte ohne Gimmick zurück. Er schien immer mehr zu einem normalen langweiligen Typen wie du und ich zu werden. Anfang 2003 gab es nochmal mit seinem Hollywood-Heel-Gimmick eine interessante Wende aber nur für 2-3 Monate. Tja und wenn man ihn heute reden sieht, und sich danach ein altes Video von vor 16 Jahren anschaut, glaubt man kaum, dass es derselbe Mensch ist ... auch wenn hier und da nochmal kurz die Augenbraue klimpert oder in der 3. Person gesprochen wird. Im Ring war er nie der Großartigste: keine Top-Rope-Moves, nichts Spektakuläres oder Athletisches, aber lange intensive Matches konnte er schon. Viel mehr von der Wrestling-Welt als Vinnies warmes Stübchen hat er auch nie erlebt. Ohne ihn bzw. Russos Booking wäre aber auch nie so weit nach oben gekommen. Und Respekt, dass er sich für Goldberg hingelegt hat. Andere wie Austin hätten sich da wieder geweigert ..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JimSRwrote on 02.10.2016:[7.0] "He was one of the best talkers in history. His in ring skills were overrated but he offered a lot on the company. He saved WWF with Stone Cold, HHH, Taker, HBK, Angle and Mick Foley in the Attitude Era and he was the most charismatic wrestler in the history of WWE! The Rock deserves a 7."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: croatiantwat1950wrote on 30.08.2016:[8.0] "In my opinion, the most charismatic wrestler ever. He is kinda overrated in-ring and his part-time career is horrendous(especially back when he took the belt off of Punk) and i don't like that he buries younger talents both on promo and in-ring every time he comes back without any pardon, but back in the Attitude era he built his larger-than-life persona and it is still iconic to this day. And he even put great matches of course with the likes of HHH, Stone Cold and Y2J. Dwayne just can't get 5 or lower, come on now."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Wrestling Foreverwrote on 05.08.2016:[10.0] "Rock ist wieder ein Mann der zwei Träume hatte er wollte schon immer Wrestler und Schauspieler werden und beides hat erreicht. Als er damals zur WWF kam war er ein kleiner Diamant dem noch der Feinschliff fehlte. Als Rocky Maivia klappte das nicht er wurde gnadenlos ausgebuht und als man dann entschied ihm zum Heel zu turnen war er so dankbar und The Rock einer der charismatischsten Wrestler überhaupt in der WWF/WWE war geboren. Gibt man ihm ein Mikro kann er einen Stunden unterhalten es ist Entertainment Pur. Privat ist Dwayne ein sehr netter und sympathischer Mensch eins seiner Hobbys ist Angeln. Seine Hochphase sehe ich so 1998-2001 wo er seine besten Fehden hatte. Vor allem die gegen Steve Austin, Triple H, Chris Jericho und Kurt Angle sind Legendär. Auch seine Comebacks fand/finde ich klasse. Er hinterlässt einfach eine Lücke die nicht geschlossen werden kann. Ist immer wieder schön wenn er wieder auftaucht. Meiner Meinung nach sollte er 2015 in die WWE Hall of Fame aufgenommen werden. Edit 05. 08. 2016 Ok das er 2015 nicht in WWE Hall of Fame kam ist nicht schlimm er ist aber auf jeden Fall drin. Mir ist auch egal was die anderen hier über ihn schreiben muss ich mal posten sein Weg in die Wrestling Welt war steinig bloß weil er Wrestler dritte Generation ist heißt das nicht das er alles sofort in der Wrestling Karriere hat bekommen. Er musste sich alles erarbeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Summerslam Fan 01wrote on 31.07.2016:[7.0] "Bei The Rock habe ich immer zwei Meinungen.  Die erste natürlich ist er grandioser Entertainer und am Mic einer der besten.  Trotzdem finde ich ihn manchmal etwas overrated, im Ring nicht mehr als Solide.  Und seit seinem Comeback 2011 nervt er mich eigentlich nur wenn er kommt, seine Matches waren nicht wirklich gut, und seine auftritte bei Mania hauen mich auch nicht mehr vom Hocker.  Aber sein Charisma ist schon stark.  7 Punkte"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Marco2911wrote on 03.07.2016:[9.0] "Am Mic definitiv eine glatte 10. Ausstrahlung sowie Charisma ist definitiv ebenfalls eine volle 10, in ring ist Rock jedoch nicht der größte. 7/10 Insgesamt komme ich auf 9 Punkte für einen großartigen Entertainer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KevinZaynwrote on 24.06.2016:[7.0] "Ich mag Rocky nicht so gerne. Vorallem seid seinem Comeback. Am Mic Grandios 10/10 , Charisma auch Super 9/10, Ausstrahlung ebenfalls gut 8/10, InRing finde ich ihn aber echt krass overrated 5/10"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AMHTPwrote on 22.06.2016:[8.0] "The Rock is a charismatic, fast-talking, universally-beloved Attitude Era icon.  Was he always a tad overrated in the ring?  Yeah, sure, and to be honest I'm not in love with his aggressively-juvenile humor.  But the fans have always gone wild for the man, and he's got a level of personal magnetism from which you can't look away.  He makes intensely compelling television every time he's on screen, and that definitely counts for something.  There's a reason he's become a movie star in addition to a legendary wrestler.  I can't place him in my own top tier; his in-ring abilities never quite merited that.  But it's impossible to take too much away from the Brahma Bull."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JordanACEwrote on 18.06.2016:[10.0] "The Great One, The Brahma Bull, The People's Champion, The Most Electrifying Man in all of Entertainment!  The rock had it all and then some!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hardcorewrote on 14.06.2016:[7.0] "By all means charismatic and a great entertainer, The Rock is one of the most recognizable faces of pro wrestling. Rock is very charismatic and one of the greatest on the mic. Rock is decent in the ring but kind of a overseller. His look and theme are cool but his finisher is horrendous. My biggest problem with the rock is that he has never seemed like wrestling is his passion he has always come out as a guy who does it for the money. But at the end of the day he is one of biggest superstars ever i just think hes a tad bit overrated"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: finest0000wrote on 29.05.2016:[8.0] "Etwas über the Rock zu sagen ist immer schwer, er war schon eine Legende. Am Mic wohl der beste, im Ring doch eher Limit aber trotzdem hatte er was. Auch härtere Matches bekam man mal zu sehen. Mich hat er immer super unterhalten und trotzdem wurde er mir zu sehr gelobt weil im Ring war er doch net so stark trotzdem gibt es hier eine 8/10 weil er am Mic einfach so geil war."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mdkarlwrote on 29.05.2016:[10.0] "shows up once or twice a year and sells thousands and thousands of tickets... collects a big fat paycheck because hes worth every penny.   sadly he cant wrestle anymore because of the movie career but when he does wrestle he still is peak phyisical condition... and being third generation he respects the business.   if it meant more money for the ptomotion for him to job... he would job... but if you want to sell an extra 15000 tickets at wrestlemania or spike a raw audience with a quarter million eyeballs then you dont job the the rock out.   people grading him less than an 8 should be humiliated by their complete lack of understanding what wrestling is and how it works"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Mean Smark Callouswrote on 19.04.2016:[9.0] "One of the hugest stars in Wrestling history, right up there with Hogan, Warrior, Cena, Flair, and Austin. IMO the best mic skills ever next to Austin. Whether he was face or heel Rock was always hilarious. Only the Rock could talk shit about your favorite wrestler and make you love it. Permanently over forever. Also one of the few wrestlers that can actually act. Creator of more catchphrases than anyone else in wrestling history."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Jrod3160wrote on 17.04.2016:[7.0] "A bit overrated here hes fantastic on the mic yes good seller kind of over sells a bit and is sub par in ring hes a great entertainer decent wrestler sure hes had classics but still overrated but remember overrated doesn't always mean bad"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TylerWhitewrote on 10.04.2016:[6.0] "Einer der legendärstes Wrestler aller Zeiten und vorallem als Micworker ist er einer der besten überhaupt. In der Attitude Era einer der größten Wrestler, allerdings steht er für mich immer schon klar hinter Austin, was seinen Legendenstatus angeht. Warum dann aber nur 6 Punkte? Ganz einfach, weil er mich seit seiner Part-Time Return nur noch aufregt. Er ist seitdem mit die größte Talentbremse, zieht übermäßig Cheap Pops und ist auch im Ring nicht mehr zu gebrauchen. Gerade, dass er regelmäßig Talente buried regt mich auch und Cena hat er ja auch nicht over gebracht. Gerade das Wrestlemania 32 Segment, von dem wirklich keiner profitiert hat, hat ihn bei mir auch nicht gerade beliebter gemacht. Ohne diese Phase seiner Karriere würde er von mir 9-10 Punkte bekommen, aber was man die letzten Jahre gemacht hat, regt mich einfach nur noch auf."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: hazBROwrote on 04.04.2016:[5.0] "Als ich mich hier Angemeldet habe trug ich meine Rosa Rote The Rock Brille und gab ihm ohne zu zögern 10 Punkte. Aber wieso 10 Punkte? Wofür? Für das was er mal geleistet hat für WWE? Das er der größte in meiner Kindheit war? Ja! Aber der heutige The Rock hat nichts mehr mit dem von damals zutun. Wenn ich ihn heute sehe hab ich dieses gewisse Fremdschämen. Der Höhepunkt seit Cena/Rock part 2 war dann gestern Abend. Ich fand alles was er gesagt hat so unglaubwürdig bis hin zum Flammenwerfer wo er ein Schild mit seinem Namen entzündete. Wow. Und dann erzählt er wie toll doch Bray Wyatt ist nur um ihn dann mit Cena endgültig zu begraben. Ich habe mich schon lange nicht mehr so über einen Wrestler aufgeregt wie über The Rock. Vielleicht feiern es viele was er heute so in der WWE treibt, feiert ihn jeder hat seine eigene Sicht. In Erinnerung behalte ich ihn mir wie er war. The Great One, The Brahma Bull, The most electrifying man in Sports Entertainment aber nicht das was er heute ist."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Psychospherewrote on 29.03.2016:[10.0] "One of the greatest of all time. Great in the ring, on the mic, can entertain no matter if he is a heel or a face. He's basically just The Fucking Rock, the full package. What else is there to say?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 123 kidwrote on 20.03.2016:[10.0] "The Rock ist einer der charismatischsten Wrestler aller Zeiten und dazu im Ring mehr als solide. Zudem versprühen seine Matches eine unglaubliche Intensität. Dies und wenn man in betracht zieht, dass das E bei WWE für Entertainment steht sind es für mich glatte 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MAGICIANwrote on 17.03.2016:[10.0] "The Rock ist wohl einer der größten Entertainer dieses Sports. In der WWE hat man mit seinem damaligen Heel Turn eine wahre Legende erschaffen und jemanden, der die WWE in der Attitude Era zu dem gemacht hat, was sie heute ist. Eine große Legende. Am Mic gehört er neben CM Punk zu dem besten, den die WWE je hatte. Im Ring war er gut und mehr Charisma und eine größere Ausstrahlung als "The Most Electrifying Man in Sports Entertainment" ist nicht möglich. Man kann diesen Kerl nicht unter 10 Punkten bewerten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JuliTheCage87wrote on 15.03.2016:[9.0] "Mit seinem (hoffentlich) "finalen" Run hat er es sich bei vielen Fans verscherzt, was durchaus verständlich ist. Keine Größe im Ring, Einleiter der sogenannten "Part-Timer-Era" und Zerstörer des großen Punk-Hypes. Ich vertrete durchaus auch diese Meinung, vergesse aber nicht, dass er in der AE großartige Arbeit geleistet hat und der WWE wohl viele Zuschauer gebracht hat und auch jetzt noch bringt. Eine Goldgrube, die vollkommen ausgeschöpft wurde, bei der manchmal sogar zu viel gebuddelt wurde und mehr und mehr Steine hinzukamen. UPDATE: 7 Punkte sind dann doch zwei zu wenig. Nachdem Punk aus eigener Kraft gegangen ist, ist der Impact des verfehlten Rocky-Runs 2011/12/13 zum Nachteil der Talente ála Punk verflogen. Allerdings bleiben dies trotzdem schwarze Tage in der WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Chosen Onewrote on 28.02.2016:[7.0] "The Rock or Dwayne Johnson as some call him, was one of the best if not the best talker on the mic. A true legend and HoFer. I never really believed in his peoples elbow as that was pretty stupid. Most of his storylines I wasnt a big fan of either. He is a good actor though, he can really play his role good in wrestling or in movies. He is a little above average in the ring."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Phenomenal91wrote on 21.02.2016:[10.0] "Anything less than a 10 is a disservice. Some are tempted to knock points off due to his part timer status now, but he was untouchable in his prime. Next to Stone Cold, he was the #1 guy in the WWE. Unlike Stone Cold, not everybody liked the Rock. They said he was overrated and undertalented and shoved down the throats of a wrestling public that didn't want him. But he PROVED to be a great heel, a top face, and above all, a solid competitor no matter what role he was in. He was great, is great, and always will be great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheLoudMouthwrote on 17.02.2016:[8.0] "Der wohl beste Entertainer aller Zeiten. Überragendes Micwork, drölf Eimer voll Charisma und eine wahnsinnige Präsenz. Leider im Ring etwas limitiert gewesen, weshalb es auch "nur" für acht Punkte reicht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Mandzukic9wrote on 04.01.2016:[6.0] "Ich habe nichts gegen Rocky als Wrestler auszusetzen. Er war im Ring immer grundsolide und ganz nebenbei natürlich ein wahnsinnig guter Entertainer mit einer phänomenalen Promo-Stärke.  An sich wären das gute neun Punkte.  Allerdings verschuldet er sich meiner Meinung nach dem Business gegenüber.  Ohne WWE wäre er heute garnichts. Und anstatt es der Promotion vernünftig zu danken, gibt er jedem blöden Projekt den Vorzug. Wenn WWE ihn mal zu nem kleinen Auftritt überredet, nimmt er dafür einen Betrag, von dem die meisten NXT-Talente selbst als Jahresgehalt nichtmal träumen dürften.  Was mich noch an ihm stört, ist, dass er seinen (unverständlicherweise) sehr großen Einfluss auf Vinnie und die Führungsetage benutzt, um jedem x-beliebigen Menschen aus seinem Verwandtenkreis einen Job bei WWE zu verschaffen. Und komischerweise bekommen diese Leute auch immer den Push, selbst wenn die konkurrierenden Anwärter die vermeintlich talentierteren Leute sind.  Ich habe wirklich nichts gegen ihn und kann nichtmal abstreiten, dass ich ihn gerne mag.  Aber sein Verhalten gegenüber der WWE und Wrestling im Allgemeinen kann ich wirklich nicht gutheißen und rechne dies auch entsprechend in meine Wertung mit ein."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Patlaborwrote on 30.12.2015:[8.0] "I always thought he lacked the genius of a CM Punk or a Jake 'The Snake' Roberts on the mic. But it never hindered his ability to get over. His greatest strength along with his larger than life personality was that he could turn absolute tosh into something entertaining. If you gave the same material to any other wrestler, it would fall flat, and he/she would get booed out of the building. That's what The Rock's presence/charisma does for you. He's lost a step or two these days and is now simply Dwayne Johnson to me, but his feuds with the likes of Stone Cold will forever be etched into my memory."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Josh76wrote on 14.11.2015:[9.0] "One of the faces of WWF during the Attitude Era and probable one of the best wrestlers ever! He would get a 10 if he had a longer full time career. But what he did do was awesome!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Finaly! The Great One macht seinem Namen alle Ehre. Er ist eine der größten Legenden. Ich fand die Promo vor dem Hell in a Cell Match gegen Stone Cold gegen Undertaker gegen Tripple H gegen Rikishi gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Koernelwrote on 24.09.2015:[10.0] "Das Over-Selling im Ring und die Siege gegen Punk sind zu kritisieren. Aber sonst? Sports-Entertainment auf allerhöchstem Niveau. Es gibt immer was mitzuchanten oder was zu lachen, und die Matches haben einen eigenen coolen Charakter durch das Overselling und den eigentlich lächerlichen Elbow. THE PEOPLES CHAMP!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: FloWrwrote on 16.09.2015:[10.0] "Für mich der charismatischste Wrestler aller Zeiten. Sein Auftreten von '99 bis '03 ist und bleibt einmalig.  Seine Micwork Mischung aus Komik, Provokation und Aggression sind bis heute einmalig und unvergesslich. Seine Ringleistung kann zwar nicht ganz an den Rest anknüpfen und nicht mit bspw einem Bret Hart mithalten, trotzdem hatte auch er die Gabe, in seinen Matches Geschichten zu erzählen. Egal ob als Face oder auch Heel, sein Feuer schien ewig zu brennen.  Allerdings hat seine Rückkehr vor ein paar Jahren gezeigt, dass auch er sich geändert hat und kein Vergleich mehr zu früher möglich war. Und dennoch war er für mich zu seinen Glanzzeiten ein so geniales Gesamtpaket, sodass dieses Makel nicht ausreicht, um ihm auch nur einen einzigen Punkt abzuziehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: WWEfan802wrote on 14.09.2015:[10.0] "Wrestling Scholar 98 should change his name because giving The Rock 1 is just wrong. Just because you think that he is overrated does not mean he should get a 1. Maybe he does not deserve a 10 like I gave him but there is no 9. 5 so I had no choice to give him a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: RooneyDXwrote on 11.07.2015:[10.0] "Finally... Bewerte ich den Rock. Er ist unglaublich am Mic und im Ring find ich ihn auch gut, er sollte mal wieder zurückkommen to kick somebody`s ass."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ivolutionaerwrote on 07.05.2015:[10.0] "the great one! the brahma bull! nicht immer der beste im ring gewesen aber mit abstand der am besten unterhaltendste. legendäre promos! you are not sports entertained? eben dies beherrscht er bravös. if ya smeeeeeeeeeeeeeeeellll... ! ?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Wazzerwrote on 06.05.2015:[10.0] "He's the god damn Rock. Come on. Where would the business be without the most captivating superstar ever?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ggultra2764wrote on 14.04.2015:[8.0] "Find Rocky to be a little on the overrated side, though I do admit the guy oozes with plenty of charisma that can draw in fans whether he is a face or heel. He is well-rounded in in-ring abilities where he could carry his part rather well and got in a number of memorable feuds with stars like Triple H, Steve Austin and John Cena. While the guy has excellent promo delivery, said promos often get on the repetitive side as they're mostly used to get over The Rock's catch phrases and have him mock whomever he is in a rivalry with."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Wrestlingfan96wrote on 08.04.2015:[10.0] "The Rock... Grandioser Wrestler. Er liebt es, im Ring zu sein und es macht mir immer Spaß, ihm dabei zuzusehen. Diese Liebe vergisst er trotz seiner guten Schauspielkarriere nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Shentenzawrote on 06.04.2015:[7.0] "Ja The Rock ist gerade am Micro ein wahnsinnig guter Worker, er ist athletisch, kann mit dem Publikum umgehen und hat Charisma. Er ist der Entertainment-Star schlechthin und das ist nicht negativ gemeint, aber insgesamt reicht es bei mir nur für eine 7 von 10."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: austin1987wrote on 03.02.2015:[10.0] "Ein Top Wrestler. Lieferte legendäre Matches und Fehden unter anderem mit Triple H und Steve Austin. Ist wirklich einer der Besten am Mic und hat ne spitzen Ausstrahlung. Einfach ein geniales Gesamtpaket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Matzinhowrote on 23.01.2015:[9.0] "Von 1999 bis 2002 in meinen Augen der charismatischte Mensch der Welt, zumal einer, der an guten Tagen überdurchschnittlich gut im Ring war, der vor allem aber am Mikro Promos abgeliefert hat, die so kreativ und witzig waren, dass sie einige der besten Wrestling-Matches, die ich kenne, überstrahlt haben. Alles davor war nur die Aufbauphase für das The Rock-Gimmick - alles danach die Demontage desselben und der Übergang zum langweiligen Dwayne Johnson. Schon 2003 und 2004 war er irgendwie nicht mehr "The Rock", weil Johnson einen realistischeren, seinem Naturell eher entsprechenden Zugang zu dem Gimmick gesucht und seine Außendarstellung parallel auf seine Film-Karriere gepolt hat. Das fand ich stinklangweilig. Gerade wegen der skurril anmutenden Überzeichnung der The Rock-Persona konnte Rocky zu einem Charisma-Übermenschen werden. Dieser Zwischenweg zwischen alten Catchphrases 'raushauen, aber gleichzeitig behäbiger Gelassenheit und "Normalität" hat auf mich nicht gewirkt und mich einfach nur enttäuscht. Insgesamt kriegt er trotzdem noch neun Punkte, weil er über drei gute Jahre hinweg einfach der Hammer war."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: bigdaddy1wrote on 20.01.2015:[9.0] "This system need half points - 9. 5.  The only thing keep the Rock from being a 10 was the length of his career.  He made Rudipoo and Jabroni household words.  Super charismatic, super athletic, and a 10 on the mic."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: FCOANwrote on 25.12.2014:[10.0] "Best ever on the microphone, most charismatic of all time and a very talented athlete who can wrestle well. Also the biggest crossover star in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ROHfan99wrote on 30.11.2014:[7.0] "The Rock: ok, im Ring durchaus nicht schlecht, nicht super gut aber er kann doch gute Matches worken, am mic sowieso HERVORAGEND, einer der besten mic worker aller zeiten. Seine Austin Fehde und seine Matches in der Attitude Era bleiben unvergessen. Er ist wirklich eine Legende. Man muss ihn einfach mögen... BIS SEIN COMEBACK IM JAHR 2012 KAM... was ab da passierte, war schreckich? Seine Matches waren alle mist, er hat punk den Titel abgenommen, nachdem Punk das gesamte Match dominiert hat, und rock EINEN (! ) verfluchten Rock Bottom zeigte, und gewann. Das war bullshit. Die Cena matches haben gelangweilt, bis auf das ende des ersten Matches, aber twice in a lifetime war so UNNÖTIG, und naja was soll ich sagen. Er kommt raus und klaut vielen das Spotlight, siehe Rusev. Der soll seine Filme machen! Das einzig geile war sein Auftritt bei Wrestlemania 30. Aber das wars auch. Bis Attitude Era war er mega Cool. Ab 2012 einfach SCHEISSE!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Y2J316wrote on 28.11.2014:[9.0] "Einer der besten aller zeiten. Mic work göttlich, in ring ok. Zur zeit der Attitude Era war er einer der tragenden Pfeiler um die WCW zu besiegen. Eigentlich hätte ich 10 punkte gegeben, aber seine Comeback war abgesehen von ein paar netten segmenten, vorsichtig ausgedrückt bescheiden. Hollywood Rock war allerdings Promo technisch das non plus Ultra und zeigt das WWE bei Cena endlich mal mut zeigen sollte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Arrow-Squadwrote on 03.11.2014:[6.0] "War nie ein großer Fan von The Rock. Als Schauspieler ist er mir lieber. Er wirkte mir einfach zu überdreht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Gernot Stwrote on 19.10.2014:[10.0] "Einer der besten Wrestler aller Zeiten. Er ist gut am Mic und gut im Ring. Er hat fast immer gute Matches gelifert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: superpuroresuwrote on 02.07.2014:[10.0] "The most charismatic worker in the history of Pro Wrestling .... his good looks , charisma , and capable in ring ability is every promoters wet dream , IF YOU SSSSMMMEEELLLLLLLL ! ... what the Rock ...... is cooking /B)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: wwefan98wrote on 11.05.2014:[8.0] "Ich bin zwar kein Rock Fan aber im Ring und am Mic einfachn nur genial. Wenn nicht sogar einer der besten Micworker der Welt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Majkelwrote on 10.05.2014:[7.0] "I don't think that he is great. Good, but not great. The truth is he great speaker, but in ring he's worse."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: sign squadwrote on 27.04.2014:[10.0] "Kein anderer WWE Wrestler hatte je eine solche Präsenz im Ring oder in der echten Welt. Das Charisma, seine freundliche Art bei TV Auftritten machen ihn für mich extrem sympatisch. Es ist einfach sehr schade, dass vor allem von jungen Menschen nicht anerkannt werden kann, dass Menschen für ihren Unterhalt arbeiten um Geld zu verdienen. Wenn man so ein Talent hat, warum sollte man nicht das beste daraus machen? Ich glaube Rock wenn er sagt, dass er Wrestling liebt. Seine unregelmäßigen Auftritte erzeugen immer so eine interessante Reaktion, über die man sich eigentlich nur lustig machen kann. Als Wrestler hat er recht lange gebraucht, doch hatte dann einige Jahre im absolut verdienten Rampenlicht, denn der gesamte "Act", den Rock darstellte sowie seine absolut hervoragendes Wrestlingverständnis waren absolut fantastisch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Chris1201wrote on 27.04.2014:[2.0] "War in der Attitude Era ganz okay, ist aber heutzutage einfach nur noch ein geldgeiler, unsymphatischer Vollidiot, auch wenn er eine Legende ist und von so vielen Leuten geliebt wird. Ihn braucht man wirklich in der WWE nicht mehr, da soll man lieber jungen Talente eine Chance auf einen PPV Main Event Spot geben."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Edge and Christianwrote on 20.04.2014:[10.0] "Eine Legende ganz einfach!  Sein Micwork ist das Beste was ich kenne!  Er unterhält einfach ungemein.  Seine Fähigkeiten im Ring waren sehr gut, auch wenn er manchmal an Cena oder Hogan erinnerte...  Er ist ein sehr guter Schauspieler, der viele starke Filme gedreht hat - entertaimen kann er somit!  Vince soll ja Jahre bei ihm angefragt haben... das soll schon was heißen.  Schön dass er sein Comeback gegeben hat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: alcoholicmetalmayhemwrote on 14.04.2014:[7.0] "War nie ein großer Fan von ihm. Mic-work hin oder her im Ring gehört er nie zu den besten. Schauspierlisch allerdings wirklich Top. Habe mittlerweile zahlreiche gute, sogar richtige gute filme gesehen mit ihm in der Hauptrolle."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Edgecution99wrote on 05.03.2014:[10.0] "Mein absoluter Lieblingswrestler, unglaubliches Charisma, der hammer am Mikro, im Ring viel mehr als nur solide eigentlich ziemlich stark, reißt mich immer mit, egal bei welchem Match. Hat aber in den letzten paar Jahren an Leistung abgenommen. Jedoch möchte ich ihn noch einmal im Ring sehen. (WM 31)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Giant2wrote on 01.03.2014:[8.0] "Johnson hat ohne Zweifel Charisma ohne Ende und schaupielerisches Talent. Als Wrestler ist er grundsolide und hat die nötige Ringpsychologie drauf. Allerdings hat er in den letzten Jahren ein wenig nachgelassen und lebt nur noch von seinem Image."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Foleysbabytoywrote on 28.02.2014:[10.0] "Liebt er diesen Sport so sehr, wie er es sagt? Ich weiß es nicht. Aber er ist unbestritten einer der größten, die jemals eine Promo gehalten haben. Darüber hinaus konnte er sich auch im Ring sehen lassen. Es müssen 10 Punkte sein. The Rock konnte seit Ž98 im Wrestling immer überzeugen. Nur im Kino nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: zackwoowoowooryderwrote on 20.02.2014:[10.0] "Einer der besten die die Wrestlingwelt je gesehen hat. Sehr unterhaltsam, gut am Mic und seine wrestlerischen Qualitäten sind sehr sehr stark. Kurz gesagt einfach ein Legende in der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sokar Drenwrote on 11.02.2014:[10.0] "Der größte entertainer im Ring und am Mic. Seine beste Zeit war von 1997-2003. Und dafür bekommt er von mir 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HereComesThePainwrote on 04.02.2014:[10.0] "Wie kann ich meinem Vorbild und Lieblings-Sports-Entertainer weniger als 10 Punkte geben?  Legendäre Mic-Works, legendäre WM-Mainevents mit Steve Austin, einfach unterhaltsam. Von den Filmen sollte man hier nicht reden. Das einzige, was ich ihm nie verzeihe, ist, dass er schon zum zweiten mal abhaute vom Wrestling, nachdem er vorher groß sagte "Ich werde euch Fans nie mehr verlassen"..... aber Rocky ist und bleibt ein Entertainer, ein Herzensmensch und hat auch mit der Cena-Fehde super unterhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: LowJomoKiwrote on 01.02.2014:[9.0] "Super Wrestler der im Ring ganz okay (ein Technikgott ist er definitiv nicht) aber am Mic wohl mit der Beste der jemals da war. Von daher denke ich sind 9 Punkte mehr als angebracht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: davidrh115wrote on 02.01.2014:[8.0] "Er war einer meiner großen Favoriten in der Attitude Ära. Leider zu viele Filmpausen gemacht daher nur noch sehr wenig Wrestling. Trotzdem ein sehr guter Mic-Worker und Wrestler.  Aus meiner Sicht ein Wrestling Star auf absteigendem Ast, Leider!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: yanuswrote on 24.12.2013:[9.0] "Great charisma and mic-skills, but had a way too short career for a 10 rating (beside that he was pretty average in the ring)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: FollowTheBuzzardwrote on 24.12.2013:[10.0] "DER MICWORKER, DER bekannteste WRESTLER DER WELT! Seine MIc-Skills suchen echt seines gleichen und seine In-Ring Moves sind auch sehr gut ausgeführt. Im letzten Anlauf sehr klever als Teilzeitwrestler eingesetzt, so das dieser WOW-Effekt nicht verloren geht. DANKE WWE, DANKE ROCKY. !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: apc24wrote on 17.12.2013:[9.0] "GREAT entertainer and can even be good at wrestling. He's good on the mic and has all the charisma in the world. His matches though tend to sometimes have flash finishes."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: LordOfLimitwrote on 11.12.2013:[9.0] "The Peoples Champ The Rock ist IMO am Mic ein Gott im Ring aber immer nur mittlerer durchschnitt was seine Mic Skills aber wieder weg machen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CLPSKYLINERwrote on 30.11.2013:[9.0] "Legendär am Mic.. Power im Ring.. Ich mag ihn sehr gerne.."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dreamforcewrote on 25.11.2013:[10.0] "Ich war Zeit meines Lebens ein riesiger Fan von The Rock, da er ein Allround-Talent ist: Gut in Promos, gut und voller Energie im Ring und eine unglaubliche Verbindung zu den Fans. Sein Comeback in die WWE habe ich sehr gefeiert und sein erstes großes Match gegen John Cena war extrem gut. Dennoch muss ich zugeben, dass ich die ganzen alten Catchphrases, die er noch immer pausenlos runterrattert, langsam langweilig und nervig finde. Deshalb bin ich ganz froh, dass er nicht Vollzeit zurück ist, sodass man seine seltenen Auftritte noch sehr genießen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: SoRoNwrote on 14.11.2013:[10.0] "für mich einfach einer der besten ever! er war zwar nicht der beste wrestler auf diesem planeten, konnte jedoch immer wieder sehr gute matches bestreiten! was er aber hatte wie kaum ein zweiter war charisma und ausstrahlung! seine micskills sind für mich unübertroffen bis heute - da kann ihm keiner das wasser reichen - egal ob als peoples champ oder corporate champ/hollywood rocky - ob face oder heel er konnte beides - wurde gefeiert wie gehasst wie kaum ein zweiter in diesem business! für mich einfach eine lebende legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Daneraswrote on 03.11.2013:[9.0] "Seine typische Mimik ist eine Augenbraue hochzuziehen. Er macht sehr gut Mic, und ist impulsiv. Er kann gut und hart Brawlen, und kann super Spinebuster (knallt richtig zum Boden). Richtig Wucht! Wenn ich seine Kämpfe sehe, spüre ich in mir manchmal viel Adrenalin."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: svenulreich1893wrote on 28.10.2013:[9.0] "Ja, The Rock. Eine lebende Legende. Wäre er für mich, wenn er nicht SO zurück gekommen wäre. Wenn er schon zurück ist, dann wenigstens öfters. Und jüngeren den Titel wegnehmen ist auch nicht okay.  Aber trotzdem, 9 Punkte für früher. Geile Promos, gut im Ring, hat auch alles gut verkauft. Und was mir bei den Bewertungen wichtig ist: Wie kommt der Wrestler bei den Fans an, was für Reaktionen bekommt er? Und da ist Dwayne ganz weit oben. 9 POINTS."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: WCW Foreverwrote on 19.10.2013:[10.0] "Hat ein bisschen an seinem Denkmal gekratzt aber er ist einfach ein klasse Entertainer und bekommt dafür immer noch 10 Punkte von mir."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: koeddylaemmlewrote on 29.09.2013:[10.0] "Entertainer to the highest degree. The Rock may not have had a long career but he sure as hell had a memorable one. The Rock was apart of so many classic moments. Although just a notch below Steve Austin & Hulk Hogan as the greatest of the modern imo."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Antimasterwrote on 28.08.2013:[8.0] "Früher mit das beste am mic, sowie im Ring zumindest solide. Heute besteht sein Micwork aus kindischen Beleidigungen und Catchphrases, im Ring mittlerweile auch eher bescheiden, deswegen 6 Punkte. Edit: Jetzt, wo er endgültig aufgehört hat, Aufwertung auf 8, da ich jetzt die ganze Karriere bewerte, und 2011-13 nur ein kleiner Teil davon ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ImACMPunkGuywrote on 28.08.2013:[5.0] "The Rock war früher richtig klasse am Mic war er Top im Ring war er gut. Seit seiner Rückkehr ist er in beidem ein Flop."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: voicelesswrote on 24.08.2013:[7.0] "Im Ring finde ich ihn limitiert - seine Ringpsychologie finde ich trotzdem sehr gut. Am Mic finde ich ihn jetzt nicht so toll, weil ich einfach kein Fan von Catchphrases bin. Seine Promos mögen ganz cool sein, haben aber null Hirn. Er ist ein toller Entertainer und kann mit dem Publikum toll umgehen. Ich persönlich finde ihn schon lange nicht mehr zeitgemäß."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HighlightHEELwrote on 24.08.2013:[10.0] "Was Rocky angeht, lasse ich die heutige Zeit einfach mal dreist aus der Bewertung heraus. Er kam für ein paar Matches zurück und konnte mich nur bei WM28 ein wenig überzeugen, dass er es im Ring nicht verlernt hat. Er mag zwar nie der beste Wrestler gewesen sein, aber die Fans haben seine Matches trotzdem gerne gesehen. Am Mikrofon einer der besten aller Zeiten, was er teilweise im wöchentlichen und täglichen Rhythmus ablieferte, war zwar auch stark auf seine Catchphrases getrimmt, aber deshalb nicht weniger schlecht als eine Promo von Austin (eigentlich dasselbe) oder sogar Jericho. Einer der wenigen Worker, der sowohl als Heel als auch als Face auf absolutem Top-Niveau war, was auch daran lag, wie er mit dem Publikum spielen konnte. Entweder er war geliebt oder verhasst. Wahnsinn. Außerdem eine DER Figuren, die die Attitude-Ära geprägt haben, auch wenn er im Prinzip nur Austins Kronprinz war. Und als dieser dann ging, war auch Rocky schon auf dem Sprung. Wegen all dem, was er in der Vergangenheit geleistet hat, muss ich ihm zehn Punkte geben, auch wenn er nach 7 Jahren Hollywood nicht mehr das ist, was er mal war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: UnforgivenSicknesswrote on 23.08.2013:[2.0] "Er ist ja ein guter Schausspieler aber das wrestlen hat er einfach nicht mehr drauf. Der erste John Cena in der WWF und das er WWE Champion geworden ist war einer der größten Fehler die es je gab da er nie in Raw aufgetaucht ist und Kämpfe gemacht hat."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BenutzernamenBraucheIchNichtwrote on 17.08.2013:[8.0] "Bis 2004 war noch alles gut, was danach kam, fand ich eher Grütze, hätte einfach beim Film bleiben sollen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DaNiwrote on 29.07.2013:[10.0] "Der am meisten elektrifizierenste Mann im Sports Entertaiment hat eine legendäre Zeit hinter sich, er wurde für mich zum Grund Wrestling anzusehen. Auch jetzt hat er bei der letzten Wrestlemania bewiesen, dass er immernoch für gute Matches zu haben ist. Ich hoffe, man sieht ihn noch das ein oder andere mal aktiv in der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: babakondawrote on 21.07.2013:[8.0] "OK he is a legend and a very good talker. But his two finishers are very very weak. The Rock Bottom is just the start of CM PunkŽs Anaconda Vice and the Peoples Elbow? Dolph Ziggler hits 10 Elbow Drops in a combo but still doesnŽt get the win!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AdRwrote on 05.07.2013:[5.0] "Ich kann die ganzen 10 Punkte Bewertungen hier nicht wirklich verstehen. Er hat zwar viel Charisma und unglaubliche gute Mic-Skills, aber im Ring ist er nicht besonders. eher schlechter als der Durchschnitt. Außerdem fällt es mir schwer einen Mann ernst zu nehmen, der von sich immer nur in der 3. Person spricht und bei dessen Hypeviedeo am Ende eine Kuh muht. Ins gesamt eher mittelmäßig."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Lecterwrote on 06.06.2013:[10.0] "Okay in the ring, but that's almost completely irrelevant because of his transcendal charisma and mic skills. The Rock was an unbelivable character, so big that expanded beyond the realm of pro wrestling. One of a kind."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: christianpecevskiwrote on 22.05.2013:[10.0] "Ein super Wrestler. Hoffentlich hört er nicht auf. Er ist ein Top Entertainer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Unrated Superstarwrote on 02.05.2013:[10.0] "Einer der Gründe Wrestling in der Sports Entertainment-Form zu lieben - wenn nicht sogar DER Grund. Darum ist es auch kaum verwunderlich, weshalb die WWE es z. Z. so schwer hat wieder echte Stars zu erschaffen, da die Messlatte einfach enorm hoch ist. Mit Abstand der wohl beste Wrestler der letzten zehn Jahre was Promos und Charisma angeht. Sogar noch besser als Bret Hart, Steve Austin, HBK und Triple H! Schwimmt auf der gleichen Welle wie der Undertaker mit! Jedoch hätte er es bei dem einen WM28-Match gegen Cena belassen sollen. Als WWE-Champion 2013 hat er doch etwas an seinem Legenden-Status gekratzt. Jedoch noch lange nicht so gravierend wie es Leute wie Hulk Hogan und Ric Flair getan haben. Sollte aufgrund seiner Gesundheit und Hollywood-Karriere die Wrestling-Stiefel eh endgültig an den Nagel hängen. Sehe ihn inzwischen ohnehin lieber in Action-Filmen als im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HooliNerdwrote on 10.04.2013:[9.0] "Vom Wrestler zum Hollywood-Star. Charisma stimmt und seine Promos sind die Besten, die es jemals im Sport-Entertainment gegeben hat. Er bekommt von mir nur keine 10, weil es andere besser drauf haben im Ring. Ansonsten stimmt alles bei ihm."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: UndertakerChriswrote on 25.03.2013:[3.0] "Die früheren Erfolge und den genialen Wrestling Charakter von Rocky kann man ja nicht abstreiten, doch was ich seit Anfang 2011 ertragen musste, raubte mir einfach jegliche Illusion des "people's champion". Klar, diverse Auftritte sorgen für massig Raitingschübe und es ist jaauch schön ihn hin und wieder zu sehen, aber alles andere liegen zu lassen, damit er im Rampenlicht steht, dabei noch grauenhafte Promos schmeißt und im Ring vielleicht dem Great Khali Konkurrenz macht, ist einfach arm. Mitlerweile genieße ich keine einzige Rock Minute mehr. Sowas von durchschaubare Storylines, die er nicht schreibt, ich weiß, aber er hat Einfluss und es geht nunmal dabei nur um ihn. Aus aktuellem Anlass kann ich also beim besten Willen nicht mehr Punkte geben. Schade."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: NightShadowWarriorwrote on 16.03.2013:[4.0] "Er WAR einer der besten wenn nicht der beste der Attitute Era aber er kommt nur zurück um seine Filme zu vermarkten. So jemanden den Titel zu geben zeigt wie sich die WWE immer weiter verschlechtert."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: dudemanbearpigwrote on 10.03.2013:[9.0] "An excellent mic and in-ring worker, but loses a point for being a part-time champion."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Leonewrote on 08.03.2013:[10.0] "The Rock's full time wrestling career was as short as 6 years.  But those 6 years were absolute DYNAMITE!  I would describe him as being like the Muhammad Ali of the WWE.  Fantastic charisma, very funny and sharp, on the microphone, only an elite few can match him, and on top of that, he backed it up in the ring.  His selling was excellent, his in-ring storytelling is still up there, to go along with being 6'4 and 260lbs, he's very strong and fast for his size.  Sure, the People's Elbow might be gimmicky, but it's both memorable and a reminder.  He might not have been a wrestler travelling all over the world to hone his craft, but as a sports entertainer, he is 1 of the best.  I know he's getting a lot of stick for his 2013 title reign, but his legacy is very much intact."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Titansrevengerwrote on 06.03.2013:[8.0] "The Rock is a truly great WWE champion, he exudes charisma and confidance. However, I view the Rock as a prima donna of sorts, having left the WWE earlier for the bright lights of Hollywood he comes back and demands the spotlight. I also never understood how he was ever a peoples champion the guy is totaly narcetistic. His greatest fan should probably be his mirrored reflection. So despite these inharent flaws in his character the Rock is truly a bonified superstar. My favorite Wrestlemania match has to him against Steve Austin in the main event at WM 17."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Jack Slaterwrote on 02.03.2013:[9.0] "Niemand ist besser am Mic. (bzw. war) Niemand! Die Promos mit Jericho sind bis heute unerreicht, seine Fehden mit Austin ebenfalls.   Im Ring hat er ebenfalls was drauf aber da überzeugt er nun mal nicht auf ganzer Linie."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Aquifelwrote on 28.02.2013:[7.0] "Tja, zu Attitude Zeiten einer DER Wrestler überhaupt. Klar, der Drive von damals, das Booking und einfach die Präsenz, die er und so manche seiner Gegner an den Tag gelegt haben, haben viel dazu beigetragen, dass alles funktioniert hat, denn Rock war nie der beste Wrestler (nett ausgedrückt). Die Abwertung erfolgt allerdings aufgrund der jüngsten Geschehnisse. Bei WM 28 war Rock noch top in Form, doch momentan fehlt es The Rock an Kondition und Agilität, was ihn weiter limitiert und ihn mit seinem "Attitude"-Stil wie ein Relikt wirken lässt. Gleiches gilt für seine Promos. Er redet so klasse wie eh und je, aber den Promos fehlt die Substanz. In der Attitude Era kein Ding, heutzutage, gerade wenn er es mit Punk und Cena zu tun hat, fällt das aber doch ganz schön auf. Aber schon lustig, dass gerade The Rock momentan beweist, dass, so grossartig die Attitude Era war, sie retrospektive auch nicht nur aus Gold bestand und sie, ähnlich wie er, ein Relikt vergangener Tage ist. Daher nur noch 7 Punkte momentan."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AwesomeMizwrote on 23.02.2013:[7.0] "Geht ja garnicht! Er ist WWE Champion und käpft nur bei Pay-Per-Viehs auf-. -!  Ich finde wenn er schon bei RAW und Smackdown ist , sollte er wänigstens "normale" Matches bestreiten! Trotzdem bekommt er 7 Punkte wegen seiner Leistung im Ring und was er am Mic drauf hat müsste eigentlich jeder wissen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DARK-THREATwrote on 19.02.2013:[2.0] "Es wird jemand Champion, der 10 Jahre nicht gut geworked hat und eine im Vertrag festgeschriebene Anzahl an Auftritte pro Jahr hat. Dazu tritt er in keiner Houseshow auf? Wie würde es The Rock sagen? No no no no no. What this is, tonight, is about something special. Nur habe ich von ihm seit seiner Rückkehr und Titelregentschaft nicht Gutes und Spezielles gesehen. Das ist aktuell nicht nur Mainstream für kleine Kinder, das hat David Arquett Niveau, was die WWE hier vabriziert. Der Titel verliert durch ihn sehr viel an Wert für die, die sich jeden Tag in den Hallen die Allerwertesten aufreißen... Ich habe großen Respekt vor seiner Karriere von damals, aber ich möchte den The Rock JETZT bewerten, und da kommt nicht mehr als 2/10 herraus."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The lonesome death of Hattie Carrollwrote on 18.02.2013:[4.0] "Ich finde es erstaunlich, wie ein so begabter Schauspieler (und dafür wird Dwayne Johnson ja gehalten) derzeit im Ring solch ein Kokolores fabriziert. Er sellte in beiden Matches genauso miserabel, wie man es von John Cena in seinen dunkleren Matches gewohnt war. So sehr er der WWE mächtig viele Moneten einbringt, so steht sein derzeitiges Engangement unter einem fragwürdigen Stern. Er besiegt den Besten der Welt zweimal in recht schwacher Ringkonditionierung, um sich dann bei WM XXIX wieder aus dem Staub zu machen?   Er erhielte von mir ob seiner einstigen Arbeit mindestens 8 Punkte, doch die Demontage seiner selbst erlaubt mir, nicht mehr als 4 Punkte zu vergeben.   PS: Ich werde mir seinen Beitrag bei G. I. Joe 2 anschauen; dort ist er sehenswert und bedeutend besser aufgehoben."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Diggertakerwrote on 14.02.2013:[8.0] "The most electrifying man in sports entertainment. Great gimmick and great mic skill, but being a overseller not match his stature and he could have better moves... it would be better if The People's Elbow was not his finisher."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheUndertaker45wrote on 12.02.2013:[10.0] "Einer der Besten aller Zeiten. Am Mic einfach göttlich und unglaubliches Schauspieltalent. Ich habe bisher kein Match von ihm verpasst. Do you smell what the rock is cooking? -Yes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Wohl der wichtigste Mann neben Stone Cold in der Attitude-Ära. The Rock hat ein Charisma und eine Ausstrahlung wie kaum ein anderer und weiß, wie man das Publilkum mobilisiert. Das spiegelte sich durch unzählige göttliche Promos wieder, die einen oftmals keine Luft zum Atmen lassen, da man bei ihm wirklich sehr oft lachen muss/musste. Im Ring war er auch immer sehr ansehlich und er zeigte stets konstante Leistungen. Auch heute weiß er nach wie vor zu unterhalten und kann selbst nach jahrelanger Ring-Abstinenz gute Leistungen im Ring zeigen. Hut ab vor diesem ohne Zweifel großartigen Entertainer. Ich freue mich auf die RtWM mit ihm an der Spitze. Geniesen wir es noch, solange es möglich ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Klabauterwrote on 02.02.2013:[5.0] "The Rock ist also wieder WWE Champion....   Warum er das verdient hat ? Ich werde es wohl nie verstehen.  Die Titelregentschaft von CM Punk hätte sich so gut geeignet damit einen Neuen zu pushen oder aber eine große Story um Punk und den Undertaker aufzuziehen. Aber nein, The Rock musste es sein.   The Rock ein Superstar, ein Teilzeitwrestler, einer der den Titel nicht braucht und m. M. n auch nicht verdient hat.   Nun gut sein Match gegen Punk war ansehnlich, seine Promos durchschnittlich und er war früher ein Topstar der WWE, deshalb kann ich ihm gerade so noch 5 Punkte geben, mehr sind aber bei ihm auf keinen Fall drin."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Gomphwrote on 30.01.2013:[7.0] "Hätte ich ihn vor 10 Jahren bewertet hätte ich ihm am liebsten 11 von 10 Punkten gegeben. Aber nur Nostalgie machts im Moment einfach meiner Meinung nach nicht. Auch wenn der Mann verdammt fit aussieht, hat man beim Match gegen Punk doch gesehen das ihm einfach die gewisse Routine fehlt, da reichen nunmal 3, 4 Matches im Jahr nicht um mit dem aktuell bestem Wrestler der WWE mitzuhalten. Aber er kann sich ja steigern, bin mal gespannt was er dieses Jahr bei WM abliefert, deswegen noch Luft nach oben was die Punkte angeht. Soviel zu seinen Fähigkeiten im Ring.   Aber auch sein Mic-Work find ich nicht mehr ganz so überzeugend. Klar, er ist noch einer der besten wird er auch immer bleiben. Letztes Jahr in de Fehde mit Cena fand ichs auch noch ganz gut. Aber seitdem er gegen Punk fehdet wirken die Promos langweiliger, es wiederholt sich zu viel. Es wirkt als hätte er zu wenig Zeit aber wird trotzdem gezwungen jeden einzelnen Catch-Phrase und ein paar Beleidigungen einzuwerfen. Da wirkt er gegen Punk einfach nur blass."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: greatone087wrote on 27.01.2013:[10.0] "Wohl der meist elektrisierenste Mann im gesamten Entertainment. Er weiss die Fans zu hypen, sie in seinem Bann zu ziehen. Sein Mic-Work hat zwar im Gegensatz zu damals etwas nachgelassen, aber nach wie vor versteht er es mit dem Mic umzugehen. Im Ring ist er meiner Meinung nach ein guter Athlet, auch wenn er ebenfalls zu der damaligen (aktiveren) Zeit etwas mehr konnte. Letztlich gibt es aber schlechtere. Wenn man noch dazu bedenkt, das er nicht Vollzeit im Ring steht, kann man dies auch so hin nehmen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 8BitLegendwrote on 22.01.2013:[9.0] "Eigentlich einer der wenigen 10er Kandidaten, aber sein aktueller Run versaut den Schnitt dann doch noch etwas. Ich kann einfach nicht ignorieren, dass er ernsthafter, aufgesetzter, weniger spontan, nervöser, eingefahrener und verbissener geworden ist. Das sieht mir etwas nach Midlife Crisis aus. Nicht, dass man mich falsch versteht - auch heute überstrahlt er noch die meisten anderen Pappnasen im Lockerroom, er ist nur nicht mehr ganz so gut und locker wie früher."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CrIppIL3RTIRiXwrote on 17.01.2013:[1.0] "Er hat kein Punkt oder höher Punkte verdient, deshalb weil er nichts im Ring kann außer Basics nichts.  Mic work kann der Mann aber das muss man sagen und deshalb 1 Punkt. Ich kann auch nicht verstehen warum dieser man mehr punkte als Benoit Japaner Flair und tausend andere Männer hat, obwohl sie viel besser im Ring sind als er."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Johnny-Tennerwrote on 15.01.2013:[1.0] "Der Gesamte Charakter wirkt für mich fürchtbar aufgesetzt. Kann man langfristig jemanden ernst nehmen der von sich nur in der 3ten Person spricht? Also ich nicht. Die Person hinter dem Hype ist meiner Meinung nach nicht ansatzweise so Talentiert und Charismatisch wie sein Ruf. Im Ring spielt er den typischen "WWE Entertainer". Matches von ihm sind nicht sonderlich ansprechend, eher langweilig. Seine so gelobten Micwork Skills beschränken sich nur auf völlig banalen Trash und seine Chatchphrase's of Doom. Nostalgie Effect oder wie auch immer man das nennen möchte, mir gefällt das ganze nicht und nervt mich schon beim 2ten Mal hören. Für mich ein Grund das Main Stream Wrestling zu beukotieren "Wrestler" wie er haben meiner Meinung nach nicht's in einem Main Event zu suchen. Ich freu mich schon heute auf den nächsten Wrestlemania ohne The Rock."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: dumbadswrote on 07.01.2013:[7.0] "Zur Attitude Ära und zu der Zeit an dem ich began Wrestling zu schauen war für mich The Rock der beste. Super Skills, tolle Fehden und auch immer super überraschende Wendungen und nen tolles Mic Work mit super Charisma.  Diese zeit ist für mich lange vorbei und The Rock steht nun auch nicht mehr ganz oben auf meiner Liste. Die zeit mit The Rock war für mich einfach nur toll aber mittlerweile freue ich mich mehr, wenn ich sehe das ein neuer Film von Dwayne Johnson zu sehen ist. The Rock ist für mich mit dem Ende der Attitude Ära gestorben. Danach war das nix mehr, vlt bin ich auch einfach nur zu sentimental dafür.. Aber für die MEGA ERRINERUNGEN gebe ich The Rock 7 Punkte. Und hoffentlich wird die WWE mal wieder so, wie sie für mich mal war mit Typen und guten Gimmnicks."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: GTS Punkwrote on 03.01.2013:[10.0] "The Rock ist durch seine genialen Mic-Skills und sein Charisma zur Legende geworden, auch wenn er vergleichsweise kurz bei der WWE war. Wer hätte schon vor 3 Jahren gedacht, dass er wieder zurückkommt und sogar noch ein paar Matches bestreitet, mich freut es jedenfalls. 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CMPunkVotVwrote on 27.11.2012:[6.0] "Mag ihn seit seiner Rückkehr überhaupt nicht mehr. Für das was er in der Attitude Era geleistet hat bekommt er von mir aber trotzdem 6 Punkte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: rey mysterio 104wrote on 04.09.2012:[10.0] "Seine alten Auftritt einfach nur perfekt. Passt perfekt ins "Sports Entertainment". Auch wenn die Auftritt seit seinem Comeback teilweise etwas holperig wirkten, muss es hier, aus meiner Sicht, die Höchstnote geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: LM Punkwrote on 30.08.2012:[9.0] "Charisma hat the Rock ja ohne Zweifel, und er hat die Leute ja wirklich elektrisiert mit seinen Promos, aber im Ring war er doch nicht ganz so gut wie ein HBK, Y2J oder Bret Hart."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Nouriwrote on 28.07.2012:[10.0] "The Great One, The People's Champion, The most electrifying man in all of entertainment oder einfach nur: The Rock! Im Ring sicherlich kein Kurt Angle oder Shawn Michaels, aber trotzdem überdurchschnittlich gut und vor allen Dingen der vielleicht beste Entertainer, den dieses Business je gesehen hat. Unzählige Catchphrasen, von denen jede einzelne stets von der gesamten Zuschauerriege mitgegröhlt wird, jederzeit unterhaltsame Promos, diverse Klassiker gegen Stone Cold Steve Austin, Hulk Hogan, Triple H oder Mankind/Mick Foley bedeuten, dass The Rock zu den größten Superstars allen Zeiten zählt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Chris Silverwrote on 25.07.2012:[10.0] "Damals wie heute meiner Meinung nach einer der besten im Wrestling. Er überzeugt im Ring und am Mic. Er passt einfach perfekt in das Geschäft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Prodirwrote on 25.04.2012:[9.0] "Rocky hin, People's Champ her, Brahma Bull da, Great One dort. Um es kurz zu halten, er ist sau gut, keine Frage. Er kann wrestlen und schlechte Promos mit dem Grenzwert null. Dummerweise ist die Hollywood-Masche für michd er ausschlaggebende Grund, warum ich ihn als Worker nicht so zu schätzen weiß, wie andere es tun. Ein Worker ist für mich nur dann interessant, wenn er des Öfteren Nadelstiche setzt. Was macht Rock? Er tut es permanent, da flacht das Interesse schon einmal ab, aber nichtsdestotrotz ein Fachmann auf seinem Gebiet."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Tabowrote on 05.04.2012:[10.0] "Schon damals gehörte er zu meinen Favoriten. Für mich am Mic der Beste und auch wrestlerisch einzigartig. Mir fällt einfach kein Grund ein warum ich "The Rock" nicht die volle Punktzahl geben sollte :D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ChrJahnwrote on 04.04.2012:[10.0] "Der wohl als Gesamtpaket perfekteste Wrestler aller Zeiten. Und der mir Abstand beste Entertainer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Randy Owrote on 02.04.2012:[10.0] "Fastination The Rock. Promo = Gott. Charisma = Gott. Aura, Felling, Mimik = TOP. Wrestling = Top. Klar technisch nicht der beste, aber das interessiert hier gar keine. Gehört zu den Top 5 der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 7TheEwrote on 22.03.2012:[3.0] "In den 90gern ein guter Entertainer und noch nie ein guter im Ring, einer der vielen Hulk Hogan nachfolger vor allem Movetechnisch.  Sicher immer gut am Mike aber heute brauch den Kerl keiner mehr.  Ist warscheinlich der größte Verräter den das Buisness gesehen hat und der erste Third Generation Superstar dazu, der aus einer Traditions Familie stammt.  Heutzutage macht er sein Geld durch schlechte Filme, was irgendwie passt zum Hulk Hogan Gimmick.  Hatte glück zu richtigen Zeit dazu sein heute würde den keiner mehr brauchen!  Zeigt bei Raw zur Zeit das er zum alten Eisen gehört, was bei ihm sich nicht wirklich positiv auswirkt."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Marlowewrote on 19.02.2012:[10.0] "So wie bei manch anderen das sehr gute Wrestling das etwas schlechtere Mic-Work wett macht, ist es bei The Rock umgekehrt. Nicht der allerbeste Wrestler, doch wohl der beste am Mic aller Zeiten. LEGENDE!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fighter Daronwrote on 02.02.2012:[8.0] "Another overrated great worker, but he is disgusting to me."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Manolowrote on 28.01.2012:[8.0] "Im Ring ist The Rock nicht mehr als Mittelmaß, allerdings verstand er es zu seiner aktiven Zeit wie kaum ein anderer, mit Charisma und am Micro die Massen zu begeistern. Ein best-off seiner Matches bräuchte ich nicht, seine Promos höre ich aber nach wie vor gerne."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ganymedwrote on 17.01.2012:[10.0] "Etwas anderes als die Bestnote ist hier nicht möglich: The Rock war einfach elektrisierend. Im Ring hatte er vlt. kein allzu unfangreiches Move-Arsenal vorzuweisen, aber er hat immer eine unglaubliche Dynamik, die einen mitgerissen hat. Zudem kenn ich sonst niemanden, der in Promos so unterhaltsam war und diese so gut rüberbringen konnte wie The Rock. Dabei war es egal, ob er Heel oder Face war. Mein Favorit ist Rocky's Part in der "Tiny Ding-A-Ling"-Promo."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Clubbiwrote on 04.12.2011:[4.0] "The Rock, nachdem ich John Cena nur 5 Punkte gegeben habe kann ich The Rock nur 4 geben er hat vill ein bisschen mehr Charisma im Ring als John Cena sonst ist aber mit John Cena zu vergleichen. Sein Comeback war einfach nur unnötig und zeigt das der Mann noch schlechter wurde als er vor ein paar Jahren schonmal war. Daher kriegt der "gute" Dwanye Johnson nur 4Punkte."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JornLandewrote on 21.11.2011:[1.0] "Mehr als nur überbewertet wie man bei der Series wieder gesehen hat. Immer die selben Attacken die selben Catchphrases wäre der Crowd nicht hinter ihm gewesen hätte er keinen einzigen Matchklassiker gehabt."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: IWLwrote on 16.11.2011:[9.0] "Einer der besten Sprecher am Mikrofon aller Zeiten. Wer es schafft markige Sprüche zu beginnen, die vom Publikum beendet werden "And if The Rock says ever... " (Rock) "... he means ever" (Publikum), hat das Showgeschäft einfach verstanden. Auch die Fähigkeit in einer (1) Rede, wie bei RAW am 14. 11. , einen Film zu promoten (GI Joe 2), für ein Restaurant in Bosten zu werben und sich selbst nach langer Auszeit ins Rampenlicht zu stellen, ist aus Marketing Sicht genial.  Was mich an The Rock begeistert und unglaublich charmant macht, ist sein breites Grinsen während seiner Reden im Ring. Ich hab das Gefühl, er kann seine Reden in der dritten Person nicht mehr/immer ernst nehmen und wenn ein Künstler über sich selbst lachen kann, zeugt das von Größe.  Sportlich gut bis sehr gut, und mit der Rock N Sock Connection eines der besten Tag Teams aller Zeiten. "If you smell, for what... " (Rock) "... the SOCK is cooking" (Mankind). Beste Unterhaltung."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hu-Manwrote on 08.11.2011:[4.0] "Bitte nicht anschreien! Bin erst kurz nach Rocky's Blütezeit zum echten Wrestling-Fan geworden und kann daher nur benoten, was ich von ihm kenne und das ist nichts gutes. Mich nervt er einfach nur mit seinen dämlichen Videobotschaften, lahmen Promos und leeren Versprechungen. Kann absolut nicht verstehen, warum ihn die meisten immer noch begeistert feiern und Cena im Gegenzug verschmähen. Mit 26 sollte ich wohl zu den "Männern" gehören, aber scheinbar bin ich noch immer Kind und daher Cena-Fan! ;)"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Franchise Playerwrote on 07.11.2011:[5.0] "Von vorne weg: Ich kann Rocky nicht leiden, ja. Ich mag seinen Stil nicht und seine Catchphrases nerven mich gewaltig und auch generell kann er mich nicht begeistern (auch nicht als Schauspieler). Ist das allerdings ein Grund unter 5 Punkte zu geben? Nein. Für mich ist Dwayne ein ähnlicher Kandidat wie John Cena, der genauso die 5 Punkte bekommt von mir, als ein Worker der zwar bescheidene Skills In-Ring hatte, aber dennoch immer mal wieder was ansehnliches auf die Matte bringen... kann."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Undertaker555wrote on 04.11.2011:[6.0] "Ich kann den ganzen Hype um ihn nur zum Teil verstehen! Seine Matches waren nicht unbedingt der Schocker und es war meist immer das gleich Programm. Die 6 Punkte bekommt er nur noch für sein Mic-Work war unerreichbar bleiben wird!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: stallownagewrote on 29.10.2011:[9.0] "Absolute 90er-Legende und Kindheitshero meinerseits. Wurde allerdings im Frühjahr verbal von John Cena an die Wand gedrängt und bot bei Wrestlemania nicht die "Electricity", die man erwartet hatte. Da war ich etwas enttäuscht, von daher "nur" 9 Punkte für den Great One."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Teekaywrote on 27.10.2011:[8.0] "The Rock sehe ich immer gerne. Er hat eine Präsenz wie kaum ein zweiter. Mir fällt überhaupt nur Shawn zu seinen besten Zeiten ein, der da mit halten kann. Allerdings kann ich langsam die immer gleichen Phrasen nicht mehr hören."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: what89wrote on 13.10.2011:[10.0] "Finally...  Für mich DER Entertainer schlechthin. Die unterhaltsamen Momente, die er mir als Wrestlingfan beschert hat verdient höchsten Respekt.  Im Ring fand ich ihn überzeugend, auch wenn es zugegeben bessere gab.  Schade, dass es ihn nach Hollywood gezogen hat (mit bemerkenswert guten Filmen im Gegenzug zu anderen.. ) Freue mich auf die kommenden Shows mit ihm."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sirius Van Grathwrote on 02.10.2011:[6.0] "Am Mic gut, aber oft nervt er mich dort auch. Und dazu bin ich absoluter Pro-Wrestling-Fan und das konnte man bei The Rock in seiner Main Event Zeit kaum sehen. Deswegen bekommt der Hollywood-Star von mir nur 6 Punkte!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: michiswrote on 01.10.2011:[8.0] "Ohne Zweifel einer der Besten (Mic)-Worker aller Zeiten. Er hatte und hat einfach dieses Superstargen, dieses gewisse Etwas dass es braucht um ganz nach oben zu kommen. Seine Matches sind ansehnlich und mit dem richtigen Gegner kann er auch Top Matches en masse rausholen. Allerdings ist der nicht der begnadeste Ringtechniker und deshalb sehe ich hier davon ab, ihm die volle Punktzahl zu geben. 8 Punkte für den Great One sind aber sicher angemessen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rated R Punkwrote on 06.09.2011:[8.0] "The Rock ist ein Promogott! Er liefert echt mit jeder Trüben Tasse eine wahnsinns Promo hat (und ironischerweise müssen seine Mitsprecher meistens nur rumstammeln :D) The Rock ist der perfekte Entertainer, hatte Charisma wie kein zweiter und war durch seine art wirklich was besonderes. Das Problem sind nur seine Wrestling Skills, wie viele war er im Ring eigentlich auch sehr beschränkt... Außerdem fande ich wurde vieles überbewertet und nicht alles was mit The Rock zu tun hatte verwandelte sich in Gold (auch wenns viele nicht wahr haben wollen)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Golgotawrote on 28.08.2011:[10.0] "The most electrifying man in all of Entertainment! 1999-2002 die Inkarnation des Wrestling-Faces. Danach der turn zu Hollywood-Rock, welches mMn eines der besten Heel-Gimmicks aller Zeiten war. The Rock ist das Maß aller Dinge in Sachen Micwork, war agil im Ring und bei all seinen Matches äußerst präsent. Seine Karriere war kurz, but this man has done it all. Und er verdient die glatte 10 für die beste Zeit, die der Wrestling-Industrie vergönnt war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fall Out Boywrote on 15.08.2011:[6.0] "Gutes Micwork das ist bekannt. Trotzdem habe ich mich auch an seinen Promos mittlerweile satt gesehen. Lässt mittlerweile jegliche Glaubwürdigkeit vermissen (i will never leave again) und ansonsten fallen mir wenig Gründe ein warum Rocky 10 Punkte verdient hat? Im Ring hat er mir noch nie wirklich gut gefallen. Hier im besten Fall solide. Soll ich ihn jetzt höher bewerten weil eine Legende ist und der vielleicht berühmteste Wrestler aller Zeiten? Nein, ich denke nicht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Bananaramawrote on 14.08.2011:[9.0] "Er gehört zu den größten des Business, er hat eine Ära geprägt, unzählige sehenswerte Matches bestritten. Dennoch ist er für mich keine 10 Punkte wert. Er mag zwar massig Charisma besitzen und er ist auch wirklich unterhaltsam, aber woran es ihm mangelt, ist an In-Ring Skills. Das ist jetzt nicht so negativ gemeint wie es klingt, aber für mich ist jemand der 10 Punkte verdient, der wirklich alles auf höchstem Niveau beherrscht und dazu gehört ein Rock nicht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: StoneColdStunnerwrote on 04.08.2011:[10.0] "Unglaublich gutes Micwork und auch im Ring nicht schlecht, schade nur, dass er wohl nie wieder richtig aktiv sein wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Marth99wrote on 04.08.2011:[10.0] "Der beste Mic Worker aller Zeiten. Der auch im Ring gute Matches geliefert hat. Leider hat er seine Karriere wegen des Filmsgeschäfts beendet. Zum Glück sieht man ihn in seinem warscheinlich letzten Match bei Wrestlemania 28 nochmal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The last Outlawwrote on 02.08.2011:[6.0] "Also, zu the Rock muss ich sagen, ist einer der besten und vorallem bekanntesten Wrestler aller Zeiten, sein Talent am Micro ist spitze, und ich habe auch gerne seine Matches angesehen, nur was mich damals gestört hat, war das er viel zu oft den Helden gespielt hat, ähnlich wie bei Austin, dennoch freue ich mich das er gegen John Cena nochmal in den Ring steigt"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Alan Smitheewrote on 28.07.2011:[10.0] "Toller Wrestler, weltklasse Promos und er hatte nie ein Problem damit sich klar besiegen zulassen. Schön ist es auch das er jetzt damit angefangen hat dem Wrestling etwas zurückzugeben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Heavy Bwrote on 25.07.2011:[10.0] "Ein verdammt guter Wrestler im Ring, der es draufhatte mit dem Publikum zu spielen. Und was das micwork angeht gab es einfach keinen besseren, auch wenn es leute gibt die seine Fähigkeiten am Mic nur als eine ansammlung von catchphrases halten, muss man, wenn man selbst dazu gehört, doch selbst ehrlich mit sich sein, denn wem ist allein bei seiner Rückkehr nicht ein schauer über den Rücken gelaufen, als das erste "finally..... " nach Jahren kam!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Johnny Divinewrote on 23.07.2011:"Als The Rock in der ersten Raw-Episode nach Wrestlemania sagte "I will never leave you again", hätte man ihm unter Umständen sagen müssen, dass Raw jede Woche stattfindet. Rocky ist mittelmäßig im Ring, dafür fliegt einem bei seinen Promos einfach der Fernseher um die Ohren. Ich teile aber die Meinung vieler User hier, dass Johnson sich einfach zum Entertainment-Maskottchen für Justin-Bieber-Fans gemacht hat. Der heute Rock mag zwar als immer noch "Attitude" wirken, allerdings hat er mit diesem nicht mehr wirklich viel gemeinsam. Mittlerweile ist Rocky für mich kein Wrestler mehr; er nutzt lediglich den Wrestling-Ring und seinen Namen um innerhalb der WWE irgendwelche neuen Filme, Spiele, Merchandise oder meinetwegen Haferflocken zu verkaufen - und das enttäuscht mich"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Tamamwrote on 13.07.2011:[10.0] "DAS totale Paket ! Aufjedenfall. Grandiose Promos, großartige Matches und legendäre Fehden. Zusammen mit Stone Cold der beste der je da war. Ihm und Austin gebührt dank das es die WWE noch gibt und wir so fantastische Erinnerungen haben ! DANKE !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: NHJ2102wrote on 11.07.2011:[10.0] "Der beste Micworker aller Zeiten! Mir gefielen teilweise seine segments besser als die matches.. wodurch seine ringfähigkeit nicht schlecht gemacht werden soll... auch im ring hat er viele gute matches gezeigt.. Neben austin und hunter der Worker der späten 90er Jahre... für mich eine Ikone"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: theiconwrote on 27.06.2011:"@Prince of darkness The Rock hat viele leute over gebracht bspw. Mick Foley oder Bill Goldberg also von dem her stimmt deine aussage überhaupt nicht."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Donald Duckwrote on 23.06.2011:[10.0] "Meiner Meinung nach der beste Wrestler aller Zeiten. The Rock hatte echt alles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Vanniwrote on 15.06.2011:[10.0] "Alles andere als eine 10 wäre unverdient. Der Mann ist immer noch groß und war es früher erst recht. Im Ring zwar sicherlich kein Bryan Danielson, sondern doch sehr limitiert, aber er hat es geschafft, das durch sein unglaubliches Charisma sehr gut zu kaschieren. Und auch wenn er häufig nur Catchphrase an Catchphrase reiht, The Rock elektrisiert einfach und zieht die Leute in seinen Bann. Und das ist in meinen Augen genug, um die volle Punktzahl zu bekommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: FriarFergusonwrote on 16.05.2011:"Will ihn nicht recht bewerten, denn er war einst eine Riesennummer doch hat sich heute zu einem Sinnbild von "WWE inc. " verwandelt. Ein ewig labernder B-prominenter Entertainer, der all den kleinen Justin Bieber Fans da draußen zeigen soll wie cool und Massentauglich Wrestling geworden ist."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: EFGwrote on 15.05.2011:[9.0] "Er ist ein guter Kämpfer und er ist sehr gut mit dem Mikrofon"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sloverwrote on 16.04.2011:[10.0] ""If you smell what the Rock is cooking". Man riecht es nicht nur, man sieht es auch. Rocky hält klasse Promos und hat viele tolle Matches gezeigt. Der Jubel von den Fans, wenn er in die Halle kommt, einfach unglaublich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CM Edgewrote on 10.04.2011:[1.0] "Mein Vorposter hats eigentlich perfekt ausgedrückt. Der Kerl ist kein Wrestler! Er ist nur in die WWE gekommen, weil er sich einen namen machen wollte um im Filmgeschäft erfolgreicher zu sein. Tut mir leid ich kann den nicht mehr sehen."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HesBackwrote on 29.03.2011:[10.0] "Er und Austin sind der Grund wieso ich immernoch Wrestling Fan bin. Mit ihnen hab ich damals angefangen und wenn Rocky wieder geht werd ich damit auch aufhören.  Ich hab es die ganzen Jahre versucht aber ein Cena, Miz, Orton oder CM Punk bringens einfach nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: C0nspiracywrote on 27.03.2011:[8.0] "The Rock ist einer der besten unterhalter im Wrestling. Seine Promos gehören zm besten was es gibt. Rocky brauchte nicht zu Wrestlen um die leute zu unterhalten. Seine Promos bei Smackdown gehörten zum lustigsten was ich in der WWE bisher gesehen habe. Abzüge gibts beim Wrestling, ich bescheinige ihm zwar gute Brawler Qualitäten aber in puncto Ringpsychologie und ist er allenfalls befriedigend. Deshalb "nur" eine 8 für den "Great One""
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Opalawrote on 14.03.2011:[10.0] "The Rock, was soll man blos sagen außer das er einer der charismatischsten Wrestler aller Zeiten ist. 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Raven Ravnoswrote on 05.03.2011:[10.0] "Einfach eine Granate. War im Ring zwar nicht der Überflieger, aber wußte immer zu unterhalten. Göttlich am Mic und wer konnte schon so mit dem Publikum spielen? Braucht auch heute nur eine einzige Promo um Jungs wie Cena alt aussehen zu lassen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AirRiedlewrote on 03.03.2011:[10.0] "Immer noch electrifying, wie eh und je!  Ich war ja anfangs skeptisch, aber was waren das bitte für 2 saustarke Promos, die mal eben fast alles aus den letzten paar Jahren in den Schatten stellen. In-Ring lässt sich nur die Vergangenheit bewerten, die ist zwar nie überragend gewesen, aber wird durch das Charisma mehr als wett gemacht!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Lakaseywrote on 26.02.2011:[10.0] "Weniger als 10 Punkte werden diesem Mann nicht gerecht. Er hat vor Jahren eine Stufe erreicht, auf der sich maximal der Undertaker, Austin und Hogan befinden. Keiner kommt an sein Mic-Work ran und im Ring beweist er gutes Selling. Vom puren Wrestling her natürlich nix außergewöhnliches, aber dieser Mann schafft es einfach wie kein Anderer, die Massen für sich zu begeistern. Und daran können auch keine "Dont-Belive-The-Hype"-Menschen etwas dran ändern. Rocky hat die 10 Punkte verdient, für den besten Entertainer, den das Bussiness je gesehen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MultiXerowrote on 20.02.2011:[8.0] "Sein Comeback war wirklich großartig.  Aber ihn deswegen gleich zehn Punkte zu geben finde ich doch ein wenig übertrieben.  Er ist ein grandios Entertainer, aber im Ring ist er bestenfalls nur Durchschnitt.  Acht punkte halte ich daher für gerechtfertigt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rated R Champwrote on 20.02.2011:[10.0] "The Rock war einfach ein Phänomen für sich, in seiner verhältnismäßig kurzen Karriere hat er alles erreicht, was es als Pro Wrestler in den Staaten zu erreichen gibt und obwohl er nie mehr als Durchschnitt im Ring war, ist er neben Austin wohl der größte Star der Neuzeit, den das Wrestling hervorgebracht hat. Zu seinem Charisma und Micwork muss man wohl nichts mehr sagen, da spielte er immer in seiner eigenen Liga."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Jack Londonwrote on 19.02.2011:[10.0] "Man, man, man ist dieser Typ gut, das hat er bei seiner Rückkehr zu RAW wieder einmal eindrucksvoll bewiesen. Charismatechnisch kommt niemand, wirklich niemand an ihn ran, meiner Meinung nach steckt er auch Hulk Hogan und Steve Austin in die Tasche, niemand hat das Sports Entertainment so gelebt und so geprägt wie Rocky. Ich sehe zwar auch gerne gutes Wrestling, aber ich bin im Herzen eigentlich Sports Entertainment-Fan und Rock ist einfach das personifizierte Entertainment, was auch der Grund für seinen vergleichsweise erfolgreiche Filmkarriere ist. Er ist natürlich nicht der beste Wrestler, bei weitem nicht so gut wie Danielson, Styles oder die Hart-Brüder, aber er ist einfach der größte Superstar aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KazhiusKlaywrote on 17.02.2011:[10.0] "Hoffentlich lässt Vince nun dieses verdammte PG-TV sein !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Mizisawesomewrote on 17.02.2011:[9.0] "Ich würde The Rock auch in 10000 Jahren, genauso wie John Cena, nie in einer Wrestling-Database eine 10 geben. Promotechnisch, charisma-technisch war und ist er meiner Meinung nach DER GRÖSSTE. Aber im Ring ist er längst nicht so gut, dass er eine 10 verdient hätte. Aber als der beste Entertainer des Buisseness hat er sich unsterblich gemacht, das kann man ihm nicht absprechen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: wolverinewrote on 15.02.2011:[10.0] "Ich sage es kurz und knapp ... er ist der größte Entertainer den ich bei der WWE je gesehen habe - und daher trägt er seinen Namen als "most electrifying man in all of entertainment" voll und ganz zurecht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ywainwrote on 15.02.2011:[10.0] "Hat nichts von seiner Strahlkraft eingebüßt. Schön, dass er wieder da ist und nichts verlernt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Splitherwrote on 03.02.2011:[10.0] "Im Ring sicherlich kein Riesentalent, jedoch wusste er immer zu entertainen, die Menge mit zu reißen.  So einer fehlt heutzutage definitiv!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Suppiwrote on 01.02.2011:[10.0] "Einfach einer der Besten! Schade, dass es wahrscheinlich nie mehr ein Match von ihm geben wird. Wenigstens kann ich seine Filme und alte Matches anschauen und die Hoffnung stirbt zuletzt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kitanoyamawrote on 30.01.2011:[10.0] "Relativ kurze Karriere, aber dafür umso mehr Erfolg. Er konnte viel und sein Erfolg spiegelte sich da passend wieder. Ich würde ihn gerne wieder bei einer großen Promotion kämpfen sehen, aber leider hat er sich als Schauspieler schon zu sehr etabliert. Trotzdem volle Punktzahl für all das was er kann und geleistet hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: NaGoyahwrote on 23.01.2011:[10.0] "Einfach einer der besten den es je gab, als Wrestler und als Micworker sowieso, egal ob als Heel oder Face."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Lampard4000wrote on 12.01.2011:[10.0] "Er hat die Fans bewegt wie kein anderer. Leider war seine Karriere schon zu Ende, als ich begann, mich für Wrestling zu interessieren. Aber das waren die guten alten Zeiten. Mit Austin, Rock usw. Nicht wie heute mit Leuten wie Santino Marella oder Zack Ryder (Aber das ist Geschmacksache). Ich habe auf einer berühmten Videoplattform folgenden Spruch gelesen, der es ganz gut trifft: "The Rock's eyebrow have more charisma than John Cena's career""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Necronwrote on 03.12.2010:[10.0] "Ich hatte bisher nur 8 Punkte für Rocky vergeben. Aber nachdem ich mir zuletzt einige PPVs aus seiner starken Zeit angesehen habe... mit diesen phänomenalen Promos und den tollen Mainevents... da muste ich auf volle 10 Points aufwerten. Auch wenn er technisch nicht der beste Wrestler der Welt gewesen sein mag - seine Ringpsychologie ist unerreicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheRock 7 Champwrote on 28.11.2010:[10.0] "Kein Wrestler kann mit ihm mithalten. Der Brahams Bull ist, für mich, der beste Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DanielBryan1986wrote on 21.11.2010:[8.0] "Rocky Maivia war eher als Start sehr schwach. The Rock mit seinen Kämpfen gegen Hogan, Austin, Triple H und ja auch das auf der DVD zu sehende Match gegen Eddie Guerrero waren im Ring sehr Sehenswert. Gegen Mankind 1999 beim Rumble ging der Spaß zwar etwas verloren aber kurz danach den Face Turn gegen Ministry Coperation wieder lustig. The Rock hätte ich zwar tatsächlich Heute auch mal gesehen gegen Orton, Cena und sogar gegen Sheamus aber dazu kommt es leider nicht. Kurze Karriere aber es reicht zumindest für eine 8."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Cheffewrote on 01.11.2010:[10.0] "Er ist neben Hulk Hogan, der Mann, der mich zu diesem Sport gebracht hatt. Was für ein Charisma... UNGLAUBLICH! So einen wie Rocky wirds nie wieder geben,"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Nerowrote on 30.10.2010:"Showstopper45 schrieb am 16. 03. 2010: [1. 0] "Im Ring mehr als nur überbewertet am Mic muss ich wohl oder übel zugeben sehr gut. Jedoch hat er dem Wrestling den Rücken zugedreht obwohl die ihm zu dem machten was er jetzt ist. Deshalb verdient er nicht meinen Respekt das tut mir Leid. sonst würde er locker 7 Punkte einheimsen. " Aus meinem Sichtwinkel Schwachsinn, nur weil jemand durchs Wreslteln berühmt geworden ist und dann etwas neues ausprobiert, womit man durchaus populärer wird, verdient dieser jemand doch trotzdem Respekt."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Blade Bourdeauxwrote on 10.10.2010:[10.0] "Der Typ ist ein komödiantisches Naturtalent hoch 10. Eine vergleichbare Aura im Ring erzeugen, wenn es hoch kommt, nur eine Handvoll Wrestler. Und das, was er am Mic und durch seine Mimik zu leisten vermag bringt ihn letztlich nach ganz, ganz oben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Felice-del-mondowrote on 23.09.2010:[10.0] "The Rock ist für mich der größte Star den die WWE jemals hervorgebracht hat. Seine Fehden mit Austin, die legendären Promos und sein Match gegen Hogan gehören für mich zur Grundlektüre eines Wrestling Fans !  Wie der die Hallen zum Beben brachte bleibt wohl immer unerreicht ! I still smell what The Rock is cooking !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Ramwrote on 11.09.2010:[5.0] "Ich wär nie einer der vom Rocky Virus angesteckt würde, ich kann nicht verstehen wie so er so beliebt ist. In Ring Fähigkeiten sind mehr als Bescheiden. Seine Mic. fähigkeiten sind meiner Meinung nach überbewertet, manchmal könnt ich über seine Sprüche lachen manchmal jedoch haben mich seine immer gleichen/ähnlichen Spruche einfach nur genervt. Also ich bin eigentlich schon froh darüber das der Herr Dwain Johnson sich dafür endschieden hat lieber Schlechte Filme zu drehen als der Wrestlingindustrie zur Last zu fallen. Von Daher Gott segne dich Dwain Johnson."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: rockysadrianewrote on 10.09.2010:[10.0] "Es gibt wohl niemanden den ich so schmerzlich in einem Wrestlingring vermisse wie ihn! Danke für alles, Rocky!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rock93wrote on 04.09.2010:[10.0] "Am Mic DER BESTE wo gibt, charismatisch, immer extrem unterhaltsam und unglaublich kurzweilig. Es ist echt schade, dass dieser Mann solche Filme dreht, anstatt weiter zu unterhalten. An ihm müssen sich alle messen, die glauben, charismatisch oder "awesome" zu sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: indestructablewrote on 29.08.2010:[10.0] "Der Mann, an denen sich zukünftige Generationen von Wrestlern messen müssen wenn es um Micwork, Ausstrahlung und Charisma geht. Der perfekte Entertainer, hat mich als Face und Heel gleichermaßen überzeugt und war immer ein Grund zum Einschalten. Ihm eine schlechtere Note zu geben weil er nicht mehr ab und an bei der WWE auftrittist das Gleiche als würde man von jemanden verlangen regelmässig in der Grundschule vorbeizuschauen weil man den Hauptschulabschluss geschafft hat.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BenZenwrote on 21.08.2010:[8.0] "Klasse Entertainer mit grandioser Mimik und herausragendem Crowdwork. In Sachen Ausstrahlung war The Rock einfach das Maß aller Dinge. Im Ring mit durchaus erinnerungswürdigen Schlachten und ein Eckpfeiler der Attitude-Ära. Leider blieb es bei einer verhältnismäßig kurzen Karriere und somit auch nur ein paar Jahren im Main Event und dazu noch der Mangel an technischen Finessen verhindern mir die Bestnote."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: umaga the samoan bulldozerwrote on 21.08.2010:[10.0] "Das beste Micwork aller Wrestler, im Ring stark... 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ray Robsonwrote on 17.08.2010:[9.0] "Er ist halt The Rock. Da kommt man an einer Top-Bewertung einfach nicht vorbei."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Rated R Superstar EDGEwrote on 07.08.2010:[10.0] "Im Ring war er jezt nicht so gut wie etwar ein Chris Benoit oder Shawn Michaels. An Triple H kam er auch nicht so richtig ran aber er hat mit Steve Austin, Chris Jericho, Kurt Angle und dem Undertaker einige Klassiker gezeigt und war auch insgesamtan vielen guten Matches beteiligt. Auch sonst hat er eigendlich immer durchschnittliche bis solide Matches gezeigt. Am Mic bleibt er unereicht. Keiner kann so gute Commedy Promos wie The Rock halten wobei er es aber verstand nie die Grenze zur Lächerlichkeit zu überschreiten. Auch was ernste Promos angeht konte er mit Leuten wie Chris Jericho, Steve Austin oder Mick Foley mithalten. Meiner Meinung nach der beste Mic-Worker den es bis jetzt gab! Er hat seinen Superstar Status auch immer dazu verwendet um andere over zu bringen. Bestes Beispiel Chris Jericho oder Brock Lesnar. Alles in allem klare 10 Punkte für The Great One."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheRock902102wrote on 04.08.2010:[10.0] "Man kann einfach nichts anderes sagen, als das The Rock einer der größten Wrestler aller Zeiten ist und war.  Alleine sein Micwork ist bis heute einzigartig und nicht zu übertreffen. Dem gegenüber waren seine Matches auch immer eine extraklasse, dafür musste er nichtmal eine grandiose Technik besitzen, seine Matches waren auch so sehenswert.  Und seine Promos waren auch immer die unterhaltsamsten, noch zu erwähnen ist das es bis heute keinen lustigeren und charsimatischeren Wrestler gab, ganz klar er verdient die 10 Punkte wie kaum ein anderer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Anti-Championwrote on 11.07.2010:[5.0] "Ziemlich überbewertet, würde er wie Triple H heute noch wrestlen, die meisten würden ihn nicht mehr sehen wollen, sein Glanz hat nur wegen seiner kurzen Karriere bestand. Er ist und war nie ein Grund für mich die WWE zu gucken."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Zack Ryderwrote on 21.06.2010:[10.0] "Am Mikrofon unübertroffen bis heute , dass ist aber nicht seine einzigste Fähigkeit denn sowohl in „richtigen“ Matches als auch in Hardcore-Extreme Rules-No DQ-No Holds Barred-Schlachten bietete er Wrestling vom feinsten. Dwayne Johnson ist unumstritten in den Top 5 der besten Entertainer aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: SES-Memberwrote on 15.06.2010:[10.0] "THE ROCK ist und war einfach klasse. Seine Promos zählen auch Heute noch zu den besten und selbst wenn Er nicht der der größte Techniker war wurde es nie langweillig Ihm im Ring zuzuschauen. Er bestritt klasse Fehden und ist nicht zu Unrecht auch Heute noch ein Idol vieler Menschen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: morph80wrote on 31.05.2010:[10.0] "Egal was er gemacht hat, die Leute schauten gespannt zu und amüsierten sich. Matches, Promos, Backstage Segmente, Interviews, keiner konnte das Publikum so fesseln und unterhalten wie er. Wirklich schade dass er sich nur auf die Schauspielerei konzentriert, hoffentlich lässt er sich mal wieder bei der WWE blicken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Chakuzawrote on 25.05.2010:[10.0] "Für mich ist er neben Bret Hart der Beste der jemals im Ring stand."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Erasedwrote on 22.05.2010:[9.0] "Wirklich erstklassig, was für eine Show der Mann jedesmal geboten hat! Sein Charisma kann man ihm garnicht abstreiten! Da können nur wenige mithalten, eben ein wahrer Entertainer. Überdurchschnittlich seine In-Ring Skills, aber keinesfalls tadellos."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Edge96wrote on 13.05.2010:[10.0] "Im Ring zwar gut aber sicher nicht der beste. Dafür ein Haufen Charisma und einer der allerbesten am Mic. Seine Promos waren einfach nur genial. Hoffe sehr (auch wenn es nicht sehr realistisch ist), dass er noch einmal in den Ring zurückkehrt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: RickRollwrote on 12.05.2010:[4.0] "Im Micro, ziemlich gut, desöfteren auch sehr stark, jedoch ist sind für mich die In-Ring-Skills am wichtigsten und Rocky ist im Ring durchschnittlich, und desöfteren auch unterdurchschnitt, deshalb gebe ich ihm nur 4 punkte"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Claw666wrote on 07.05.2010:[10.0] "The most electrifying man in Sports Entertainment!  Nuff said!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sandmannwrote on 04.05.2010:[8.0] "Als Wrestler sicherlich nicht besser als der gut Durchschnitt aber dafür mit einem natürlichen Charisma gesegnet was ihn schließlich sogar bis Hollywood brachte. Ich war eigentlich immer ein Fan des Heel Rocks. Da war er noch ein bißchen genialer als als Face. The Rock ist wirklich einer der wenigen den man 2 Stunden in den Ring stellen könnte und er nur erzählen bräuchte. Hoffentlich sehen wir ihn noch mal als Wrestler gegen einen Heel John Cena.. das wäre absolut göttlich"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Eazyewrote on 15.04.2010:[10.0] "Der Inbegriff für "Sportentertaiment". Ich liebte den Kerl, er "elektrisierte" mich immer, bei jedem Auftritt. Er hat 100/100 % Charisma, 100/ 100% gutem Micwork und etwa 70/100 % Technischem Können. Wahrscheinlich war ich im Wrestlerischen etwas grosszügig, aber ich liebte jedes Match das er zeigte, es war selten langsam, die Brawls mit Austin sind schon fast legendär... ICh glaube 10 Punkte sind da wirklich nicht vergebens."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Y2J Problemwrote on 03.04.2010:[10.0] ""The most electricfying man in sports entertainment" Dieser Name trifft ziemlich genau was The Rock bzw. war. Leider "verschwendet" er sein Talent, indem er Filme dreht. Schade"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Exist 2 Inspirewrote on 03.04.2010:[10.0] "Simply electrifying! Wohl einer der größten und besten Mic Worker aller Zeiten. Im Ring konnte man ihn sich immer gut ansehen, hat auch den einen oder anderen Klassiker hingelegt ( gegen Steve Austin, Chris Jericho, Mankind, .... ). War sich nie zu schade seine Kollegen over zu bringen. Schade für das Business das er relativ früh (mit gerade mal 31 Jahren) seine Wrestling Karriere beendet hat. Auf ein Comeback werden aber viele weiterhin hoffen und spätestens seit Bret Hart ist ja nichts mehr unmöglich. Von mir bekommt Rocky verdiente 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Viperwrote on 30.03.2010:[10.0] "Zusammen mit Stone Cold wohl der beste Entertainer zu seiner Zeit. Schade allerdings, dass er sich gegen das Wrestling entschieden hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KingSvenwrote on 27.03.2010:[9.0] "Hier gilt für mich eigentlich das gleiche wie bei Steve Austin. Ein genialer Mic-Worker, wenn nicht der beste überhaupt, mit wahnsinnigen Charisma. Er begründete in teilen für mich die Attitude Ära mit, zwar nicht ganz so stark wie Steve Austin, aber eine der Tragsäulen der WWE/F. Allerdings war er auch wenn er eine Legende ist für mich nicht stark genug im Ring um hier die 10 Punkte zu geben"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Showstopper45wrote on 16.03.2010:[1.0] "Im Ring mehr als nur überbewertet am Mic muss ich wohl oder übel zugeben sehr gut. Jedoch hat er dem Wrestling den Rücken zugedreht obwohl die ihm zu dem machten was er jetzt ist. Deshalb verdient er nicht meinen Respekt das tut mir Leid. sonst würde er locker 7 Punkte einheimsen."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Moyawrote on 16.03.2010:[10.0] "The Most Electryfying Man in Sportsentertainment fasst eigentlich schon alles gut zusammen. Einfach ein unglaublich guter Unterhalter, der nebenbei auch noch gute Matches liefern konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dankowrote on 12.03.2010:[10.0] "Überall wo die Begriffe Entertainment, Entertainer u. ä. vorkommen gehört sein Name geschrieben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: rv27wrote on 10.03.2010:[10.0] "Wenn man ihn nur einmal gesehen hat, und erlich ist, dann kann man ihm nur 10 Punkte geben. Weniger wäre einfach nicht genug. Er ist er beste der besten am Mic und Wrestlerisch einfach absolute Spitze es gibt kein mal als ich the Rock gesehen haben als er mich echt entäuscht hätte. Er ist einfach das beste vom besten. Und ich denke das wird er auch immer bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: oschihubertwrote on 08.03.2010:[10.0] "Einer der BESTEN Micworker die es gab. Sowas fehlt aktuell in der WWE, niemand (ausgenommen Y2J) der aktuell für die WWE arbeitet kommt auch nur ansatzweise an seine Mic-Skills heran. Wrestlerisch gibt sicherlich bessere, aber darauf kam es bei ihm nicht an. Speerspitze der Attidue-Ära. Und da kam es halt auf ENTERTAINMENT an. Und das konnte er immer und wird es sicherlich auch auf ewig weiter können: UNTERHALTEN!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fat Mikewrote on 05.03.2010:[10.0] "Nennt mich "Mark", aber ich kann nicht anders als Rocky die volle Punktzahl zu geben. Sein unglaubliches Charisma und seine großartigen Promos sind scheinbar unerreichbar und seine Klasse zeichnet sich schon allein dadurch ab, dass er einer der wenigen Wrestler war, die es schafften auch als Tweener richtig gut zu funktionieren. Im Ring war er sicher nicht der begnadetste Worker, er wusste aber auch im Seilgeviert immer zu unterhalten und war fähig mit den richtigen Gegnern starke Matches zu liefern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Cripplerwrote on 23.02.2010:[10.0] "Einer der besten Wrestler die es je gab, mehr gibt es dazu nicht zu sagen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Manu Adamswrote on 16.02.2010:[10.0] "Nachdem ich letzte Woche mit seiner DVD ''The most electifying Superstar in History'' (oder so ähnlich) fertig geworden bin, wurde ich ein großer Fan von ihm noch größer als ich es vorher bereits war. Dwayne gehört zu einigen wenigen die man als Total Package bezeichnen kann. Er hat Charisma ist unterhaltend am Mikro und fantastisch im Ring. Obwohl er gerade einmal knappe 10 Jahre aktiv war gehört er schon jetzt zu den Legenden dieses Sports und dadurch verdient er sich meinen Respekt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: WrestlingFanDuisburgwrote on 14.02.2010:[8.0] "Unglaublich charismatisch. Wahnsinniges Micwork, dafür im Ring nicht so hochklassig aber immernoch besser als einige andere. Mit dieser kurzen Karriere die er hatte, hat er das geschafft was manche andere Legenden in 30 Jahren nicht geschafft haben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: tobiasthegreatone1wrote on 28.01.2010:[10.0] "Im Ring war er jezt nicht so gut wie etwar ein Chris Benoit oder Shawn Michaels. An Triple H kam er auch nicht so richtig ran aber er hat mit Steve Austin, Chris Jericho, Kurt Angle und dem Undertaker einige Klassiker gezeigt und war auch insgesamt vielen guten Matches beteiligt. Auch sonst hat er eigendlich immer durchschnittliche bis solide Matches gezeigt. Am Mic bleibt er unereicht. Er ist einfach the Peoples champion das wird er immer sein es wird nie jemand so geile Promos cutten können. Wie er 10 Punkte sind gerechtfertigt"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheROCKwrote on 22.01.2010:[10.0] "The Rock. Neben Hulk Hogan und Ric Flair der größte Entertainer des Wrestling-Business aller Zeiten. Machte durch seine Mimik und Mic-Promos defizite im Ring nebensächlich. Allein seine Catchphrases ließ die Zuschauer schon aufschreien. Der einzige Wrestler, der seine Karriere zum besten Zeitpunkt und auf dem Höhepunkt beendete. Mit seinem Sieg über Stone Cold bei WM19 hatte er alles erreicht und war auf dem Zenit angekommen. Das einzige was er nicht hatte und wir Fans der Attitude Ära auch nicht, war ein Big-Time Match gegen Shawn Michaels."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Quackeltikkiwrote on 18.01.2010:[10.0] "Wahrscheinlich der Beste Entertainer den die WWE jemals hatte. Allein die "rock concerts" sind schon legendär."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KASHwrote on 14.01.2010:[8.0] "The Rock lebte eigentlich nur von seinem Charisma und seiner Schauspielkunst.. Im Ring lediglich durschschnitt. Die meisten seiner Moves waren doch nur interessant, weil sich The Rock wusste interessant zu verkaufen. Irgendwann lebte er ja wirklich nur noch von seinen Catchphrases und davon das die Fans auf seine Sätze so abgingen. Die "normalen" Ring In Promos waren nichts besonderes. Inhaltlich hatte er irgendwie nur selten was relevantes zu bieten. Meistens füllten auch da die belebten Catchphrases und Gags die Zeit. Für mich ist nur interessant an The Rock wie er mit Charisma soviel aus sich machen konnte. Unerreicht, aber ich gebe dennoch nur 8 Punkte, weil es ja fast nur Punkte für Charisma sind und wie er damit seine Karierre bauen konnte. Wrestlerisch hat er mich nie so überzeugt und das er kaum bzw. keine 100%ig ernsten Promos hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Zonenbewohnerwrote on 14.01.2010:[10.0] "Entgegen der Meinung von eternalphenom muss ich hier mal 10 Punkte verteilen. Eigentlich ist es doch egal, ob sich seine Moves und das was er am Mic von sich gab immer das Gleiche war. Einzig zählt, dass er die Massen mitreißen konnte. Man muss nur sein Bild auf der Leinwand in der Halle sehen und das Dach bebt vor Jubelstürmen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: PrideFCwrote on 13.01.2010:[10.0] "Einer der besten Micworker, der es mit seinen Charisma und seiner Athletik meistens schaffte seine In-Ring Schwächen zu kaschieren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: element-41wrote on 12.01.2010:[10.0] "Der beliebteste Wrestler überhaupt. Ich habe bis jetzt noch keinen Wrestler gesehen, der so stark am Mic ist wie er. Zusätzlich dazu war er auch noch gut im Ring. Er war sowas wie der perfekte Entertainer. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DJ MaSchwrote on 07.01.2010:[10.0] "Rein Wrestlerisch gibt es sicher bessere, trotzdem hat The Rock im Ring viele Klassiker abgeliefert. Am Mic war er sensationell, er hatte einen genialen Charakter und war eine absoloute Charismakanone. In Sachen Ausstrahlung gab es in der Geschichte des Wrestlings wohl niemanden der ihm das Wasser reichen konnte. Zudem war er sich nicht zu schade für junge, aufstrebende Stars mal den Job zu machen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Charismatic Enigmawrote on 07.01.2010:[10.0] "Eines DER Gesichter der Attitude-Ära. Wenn er die Halle betrat, wusste man einfach, dass man blendend unterhalten werden wird. Im Ring und am Mic war er eine konstante Größe. Für das Business ists schade, dass er so früh zum Vollzeit Hollywoodstar wurde."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: downtown2wrote on 30.11.2009:[10.0] "Die besten Promos und das stärkste Charisma das es jemals gegeben hat, dass muss man mal ganz klar sagen. So wie sich Johnson präsentieren konnte, wird sich niemand jemals mehr präsentieren. Ein einmaliger Glücksfall, der diesen komentenhaften Aufstieg überhaupt möglich machte. Seine Kämpfe waren nicht von schlechten Eltern, aber wurden durch den Rest seiner Person bei weitem überstrahlt. Eine absolute Ausnahmeerscheinung, die ihres Gleichen sucht und suchen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MrSmackdownwrote on 27.11.2009:[10.0] "Es ist The Rock! Einzigartig! Kein Vergleich zu allen anderen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: chaoswrote on 23.11.2009:[10.0] "Was kann ich über the Rock sagen was nicht eh schon jeder weiß? Er war halt DER perfekte Wrestler, ob am Mic oder im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Papa Popanzwrote on 23.11.2009:[10.0] "Just bring it Einfach Hammer der Typ, egal was er macht:)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Prince of darknesswrote on 22.11.2009:[1.0] "Er war im Ring so talentiert wie ein Weißbrot er hatte zwar gute Sprüche hat aber außerdem nie einen jüngeren Superstar over gebracht. Mit ganz viel Glück bekommt er von mir 1 Punkt."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: LebendeLeichewrote on 21.11.2009:[5.0] "Das stimmt er ist ein überbewerteter Wrestler aber guter Schauspieler. Er hatte auch irgendwie manschmal etwas langweilige Kämpfe (auch wenns ausnahmen gab. jeder mag da seine eigene Sicht darauf haben)."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: asraelwrote on 19.11.2009:[4.0] "Für mich auch einfach nur ein überbewerteter Wrestler der nur von seinem Charisma und durch seine Catchphrases lebte. Er ist genauso überbewertet wie Hogan meiner Meinung nach ist. Technik und IN Ring können hat der Mann kaum besitzt. Als Schauspieler gefällt er mir schon viel, viel besser. Ich sag nicht das the Rock scheiße war, aber so gut wie in jeder macht war er sicher nicht."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sockewrote on 15.11.2009:[10.0] "! The People's Champ !  Der wohl beste Mic-Worker aller Zeiten, leider viel zu früh aufgehört."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Salidwrote on 13.11.2009:[10.0] "Einer von zwei Wrestlern, die meiner Meinung nach bis heute nicht zu ersetzen waren. Mit Stone Cold zusammen gerade zu der damaligen Zeit das absolute Non Plus Ultra! Ich wär gern dabei gewesen! Würden aber wahrscheinlich in der heutigen Zeit aufgrund der momentanen Firmenpolitik der WWE nicht mehr so gut funktionieren. Deshalb vielleicht sogar gut, daß ihre Zeit vorbei ist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Undertaker 4 everwrote on 11.11.2009:[10.0] "Der charesmatischste Wrestler der Geschichte. Aus meiner Sicht eine zu kurze Karriere, aber sicher mit vielen Höhepunkten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BrahmaBullwrote on 05.11.2009:[10.0] "Am Mic ein Ass, im Ring auch Spitze!  Kenne keinen (bis auf Chris Jericho) der mich so stark Unterhalten konnte/kann wie The Rock!  Für diese ganzen Aspekte gehören dem "Peoples Champ" einfach 10 Punkte! ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: StArShiP PAiNwrote on 03.11.2009:[10.0] "Was anderes als eine 10 kommt bei ihm nicht in Frage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: peiler316wrote on 02.11.2009:[10.0] "Er hat alles was ein Wrestler haben muss... einfach nur THE ROCK - die coolste Sau der WWE Geschichte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 1234wrote on 25.10.2009:[3.0] "Sehr stark überbewertet. Im Ring allenfalls durchschnittlich. Er ist zwar charismatisch, aber sein Stil am Mikrofon sagt auch nicht jedem zu. Nur dank seiner Erfolge kommt er um die Fünf herum."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Paulinawrote on 16.10.2009:[10.0] "The Rock war früher zusammen mit Stone Cold das Gesicht der WWF! Er hat nicht umsonst in einer so kurzen Karriere so oft den Titel gewinnen können, er hat das wohl genialste Mic Work was es bis jetzt gab (und es je geben wird bin ich der Meinung) Ring In war er nie besonders aber ein paar Moves hatte er schon drauf. Schade das er sich so früh vom Wrestling verabschiedet hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Franjisewrote on 15.10.2009:[10.0] "The most electrifying Man in Sports Entertainment History!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fatewrote on 11.10.2009:[10.0] "Wrestlerisch wäre er sicher keine 10, aber sein Entertainmentpotential macht ihn einfach zu einem der größten Superstars den das Wrestling je gesehen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ryklon Stephenswrote on 10.10.2009:[10.0] "The Great One has done it all. Wie er sich in der Attitude Ära vom Nobody zum Peoples Champ gewandelt hat ist sagenhaft. Im Ring immer in der Lage mit jedem Gegner starke Matches zu zeigen. Am Mic kann er sowohl ernsthafte als auch die legendären Comedypromos liefern. Einfach unglaublich charismatisch. Er ist der Barack Obama der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Cool Papa Bellwrote on 05.10.2009:[10.0] "The most electrifying man in sports entertainment; selten hat ein Spitzname so gut gepasst. The Rock war am Mic der Beste, stand für eine Ära, wenn er nicht die Curt-Henning-Perfect 10 bekommt, wer sonst? !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: reene82wrote on 01.10.2009:[10.0] "Freunde von mir, die sich nicht die Bohne für Wrestling interessieren, haben wegen ihm jede Woche mit mir RAW geschaut - das sagt eigentlich schon alles. Wenn nicht er, wer sonst hätte hier die volle Bewertung verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheBrainwrote on 30.09.2009:[10.0] "Ich bekomme heute noch jedes mal die Gänsehaut wenn ich mir "The Rock - Just bring it" oder "The Rock - The most electrifying Man in Sports Entertainment" ansehe. Diese Entrance, diese Redegewandtheit, der Umgang mit den Fans, sowas wird leider heute bei weitem nicht mehr erreicht, in keiner Liga und von keinem Wrestler. DO YOU SMELL IT?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Big Bad Booty Babywrote on 28.09.2009:[10.0] "The Rock ist für mich nach wie vor der beste Mic-Worker aller Zeiten, auch wenn er mittlerweile starke Konkurrenz von Jericho und Edge bekommt. Zusammen mit seinem Charisma, hat ihn das zu einem der einzigartigsten Performer gemacht. Seine Catchphrases, sein Einzug, aber auch sein Stil im Ring sind einfach Kult und machen ihn trotz seiner kurzen Karriere zu seiner großartigen Legende. Technisch war er gar nicht mal so gut, aber seine Showeinlagen und seine Mimik machen das locker wett und seine Matches waren meistens mehr als sehenswert. Sowohl als Face als auch als Heel genial."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 108 Sternewrote on 25.09.2009:[7.0] "Sicher kein schlechter; hätte aber nie gedacht das er es zu was bringt. Gerade am Anfang seiner WWF-Karriere als Face kam er nicht an und wurde sogar gnadenlos ausgebuht. Erst im Zuge des Attitude-Gehabes konnte er richtig durchstarten."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Orton7wrote on 16.09.2009:[10.0] "Also wenn man ihm nicht die volle Punktzahl gibt, wem dann? Rocky ist DER Star der Attitude-Ära (noch vor Austin)... Allein sein Micwork wird mir ewig in Erinnerung bleiben... Er hat ein unglaubliches Charisma und bei seinem Entrance bekam ich immer eine Gänsehaut.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Basket Casewrote on 15.09.2009:[10.0] "Mein absoluter Lieblingswrestler und ohne ihn wäre das Business nicht das gleiche. Er hat das personifiziert was sich Vince unter einem WWE Superstar vorstellt. Er hat Charisma ohne Ende, so einen wird es wohl nicht mehr geben. Sein Mic-Work das beste ever. Im Ring war er natürlich nie einer der besten, aber immer grundsolide und was man ihm auch immer gut heißen sollte, ist, dass er sich oft genug für andere hingelegt hat, was ein Steve Austin z. B. nicht gemacht hat. Denkt man da an eben jenen Austin zurück, an Foley, an Triple H, später dann noch Lesnar und Goldberg. Das rechne ich ihm sehr groß an."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: schneiderwrote on 09.09.2009:[10.0] "Seine derzeitige Einstellung zum Wrestling macht mich einfach stinksauer! Und das auch nur, weil er so verdammt gut war!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: psycho jokerwrote on 07.09.2009:[10.0] "Mr. Charisma schlecht hin. Super am Mic und absolut top im Ring. Es gab kein match das mich enttäuscht hat. Empfehlenswert ist auch seine DVD."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kankurowrote on 30.08.2009:[10.0] "Es gab und gibt wohl keinen mit so großem Unterhaltungswert, wie The Rock ihn hatte. Zu Schade, dass er bereits so früh mit dem Wrestling abgeschlossen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Azarothwrote on 27.08.2009:[10.0] "Man hätte The Rock in Lederhosen und mit Kanada-Flagge das "America the Beautiful" vor Wrestlemania interrupten lassen können, nach zwei Minuten hätte er es spätestens geschafft dass die Crowd wieder voll hinter ihm steht. Was dieser Mann an Promos abgeliefert hat, ist in Worte nicht zu fassen. Der Mann hat in den neun Jahren seiner Wrestlingkarriere soviel erreicht wie sonst nur die Besten der Besten in ihrem Leben schaffen. Dass Dwayne Johnson im Ring dafür öfters nur Standardkost zeigte und technisch nie auch nur ansatzweise an einen Benoit oder Bret Hart heranreichte, stört dabei überhaupt nicht, denn dieser Mann war so vollgepumpt mit Charisma, dass er nur mit seiner Augenbraue ganze Hallen zum Ausrasten bringen konnte. Zusammengefasst ist Rocky wohl das perfekte Sportsentertainment-Paket aller Zeiten, woran sich in absehbarer Zeit auch nichts ändern wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Turboladerwrote on 26.08.2009:[10.0] "Obwohl er kein Wrestler mehr ist, ist er dennoch noch auf Platz 2. Ich denke das muss was heißen. Sein MicWork und seine Promos waren einfach klasse und wrestlerisch hatte er auch einiges drauf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Undertaker94wrote on 22.08.2009:[10.0] "Einer der besten Wrestler die es je gab. Es fängt schon mit seinen göttlichen Promos an und hört mit seinen super Matches auf. Schade das er nur sehr kurz im Wrestlinggeschäft war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: wweinspectorwrote on 22.08.2009:[10.0] "The Rock IST DER BESTE aller Zeiten. Geniale Promos, geniale Matches usw. Da kommt kein Flair, kein Austin, Kein Triple H, kein Undertaker, kein Edge, kein Jericho dran. The Rock is the best!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Woerpwrote on 12.08.2009:[10.0] "Für mich einer der Grössten aller Zeiten. Seine Promos sind wie gute Lieder; man kann sie sich immer wieder anhören. Seine legendären Attitude-Era-Schlachten mit Mankind, Triple H, Stone Cold und Kurt Angle sind Must-see-Classics."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The-Great-Pinowrote on 08.08.2009:[10.0] "If ya smell what he is cookin.... Mehr muss man nicht sagen. Eine Ikone, und einer der ganz Großen im und außerhalb des Rings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Smi-48wrote on 26.07.2009:[10.0] "Kaum jemand hat es geschafft, das Business in so kurzer Zeit dermassen stark zu beeinflussen - mit Rock fand McMahon in meinen Augen das einzige mal die absolut perfekte Verkörperung, was Wrestling Entertainment und somit seine eigene Idee darstellen soll. Charismatisch und unterhaltsam, niemals langweilig und immer emotional. Und wenn sich hier Leute über die Matchqualitäten beschweren - was Rocky brachte hatte immer Hand und Fuss, lebte nicht von technischer Klasse sondern immer von psychologischer Heat, gut erzählten (manchmal overbookten) Ringgeschichten, welche auf seinem Zenit immer perfekt die Spannung transferieren und mit allen Beteiligten interagieren konnten (inkl. des Publikums). Da war die 20. Auseinandersetzung mit Austin oder Foley um Lichtjahre besser als die 10. zwischen Orton und Triple H oder der 50. Beatdown der Legacy. Da war mehr Ausstrahlung im kleinen Zeigefinger als in 80% des kompletten heutigen WWE-Rosters."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: kimigoeswmwrote on 16.07.2009:[7.0] "Konnte mich nicht überzeugen, obwohl er natürlich ein guter Micworker ist. Allerdings sagt mir sein Stil nicht wirklich zu und im Ring war er auch nicht gerade der Top-Mann. Verstehe nicht warum ihn viele für den Übermenschen am Mic halten, ein Chris Jericho ist da imo um Längen besser."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Mick Funkwrote on 15.07.2009:[9.0] "Ein übertrieben starker Entertainer mit unfaßbarem Mic Work. Trotzdem nur 9 Punkte weil er im Ring einfach weit davon entfernt war ein starker Worker zu sein."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Brainbreakerwrote on 10.07.2009:[10.0] "Die 10pkt gehen nicht auf seine wrestlerischen Leistungen. Rocky war immer oberer Durchschnitt, aber nie herausragend. Doch seine Interaktion mit dem Publikum, seine enorme Wandlungsfähigkeit, sein Charme, seine große Klappe, alles das hat ihn populär gemacht. Ein unglaublicher Entertainer, der allein schon die Crowd anheizt, wenn er nur auf dem Titantron erscheint wie etwa kurz vor WM23. Das erzeugt bei mir noch immer Gänsehaut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hunter2007wrote on 07.07.2009:[10.0] "Ein unglaublich riesiges Talent, sowohl im Mic-Work als auch im Ring. Jeder einzelne Moment in dem er auftrat, war ein Geschenk an das WWE-Universum, er konnte einfach immer unterhalten, ob als Heel oder als Face. Für mich gilt The Rock als einer der besten Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BaptisteZorGwrote on 03.07.2009:[7.0] "Im Ring solide, am Mic grandios... Die 7punkte gibts weil es vom Gesamtbild her bessere gab und gibt und zum anderen weil er nicht wirklich lang im Business war."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: homicidal cena michaelswrote on 29.06.2009:[6.0] "Er ist am Mic sehr gut aber wrestlerisch nur befriedigend. Er ist zu overrated und zeigte oft nur das Gleiche."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: pildaYwrote on 24.06.2009:[7.0] "Am Mic göttlich, im Ring nur etwas mehr als durchschnittlich ..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Draytonwrote on 16.06.2009:[10.0] "The Rock ist Entertainment! Wohl der unterhaltsamste Wrestler, der jemals ein Mic in die Hand genommen hat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Juvicidewrote on 09.06.2009:[9.0] "9 Punkte aufgrund des Entertainment-Faktors. Einen Punkt Abzug gibt es, weil er nie der super Wrestler war, bei weitem aber natürlich auch kein schlechter."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Eddiewrote on 02.06.2009:[10.0] "Dass ist wohl ein Fall für die 10 Punkte, es gibt kaum ein Match, in dem er nicht überzeugt hatte, einfach der People's Champ eben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kid Rockwrote on 31.05.2009:[10.0] "Eine Legende! Kann man nicht anders sagen. Rocky ist nicht nur eine der besten Mic-Worker aller Zeiten, der schon so manch extrem kultiges Segment von der Stange gelassen hat, sondern insgesamt auch ein Megastar mit gutem Ring-Skills, gewaltiges Charisma und unbegrenztem Unterhaltunspotenzial. Dazu noch ein sympathischer Typ und überzeugender Schauspieler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Afroman Undertaker 619wrote on 21.05.2009:[10.0] "Eines meiner Lieblingswrestler ist The Rock, weil er der beste Wrestler der früheren Zeit war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Blazewrote on 14.05.2009:[6.0] "Am Mic ist er ohne Zweifel verdammt gut, er bringt das Aussehen und den Körperbau eines Topstars mit, aber in Sachen Wrestling nie richtig gut gewesen. In all den Matches, die ich bis jetzt von ihm gesehen habe, konnte er mich nicht zufrieden stellen, nur der Durchschnitt."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Theron083wrote on 16.04.2009:[9.0] "+ Unglaubliches Charisma + super Mic Work + ordentliche Skills - die aber auch nicht überragend sind - zu kurze Gesamtkarriere, da fehlt der Legendenstatus etwas Deswegen "nur" 9 Punkte für Rocky! :)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Masterpiece15wrote on 03.02.2009:[8.0] "Zwar wohl der beste am Mic überhaupt, aber im Ring schon recht eingeschränkt"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The-Game91wrote on 02.02.2009:[10.0] "Einer der größten aller Zeiten ich kenne kein Segment oder Match in dem er mir nicht gefallen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: nightfallwrote on 31.01.2009:[10.0] "Meiner Meinung nach der charismatischte Wrestler, der je einen Ring betreten hat. Zudem ist sein Micwork grandios. Keiner konnte, kann und wird jemals das Publikum in seiner Hand haben wie er. (OK, ich lehn mich jetzt zwar stark aus dem Fenster, aber naja. )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Miteamexicowrote on 25.01.2009:[8.0] "Zu seiner Zeit sicher einer der Besten und am Mic selber der Beste überhaupt, nur im Ring selber war er nun wirklich nicht der aller Beste Wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Matt Mackswrote on 24.01.2009:[10.0] "The Rock war zu aktiven Zeiten in jeder Hinsicht ein Superstar. Ich wage auch zu behaupten, dass es die WWE ohne The Rock in der heutigen Form nicht geben würde. The Rock bildete nicht nur den Gegenpart zu Steve Austin über mehrere Jahre, sondern füllte (fast schon "überfüllte") die Lücke, die bei Austins Abwesenheit im WWF-Main Event aufbrach. In punkto Charisma, Micwork, purem Entertainment und Superstar-Ausstrahlung gab es meiner Meinung nach in der Geschichte des Wrestlings keinen, der The Rock übertrumpfen konnte. Sein Schatten wird noch viele, viele Jahre dafür sorgen, dass es aktuelle Stars wie beispielsweise John Cena schwer haben, sich wirklich bei allen Fans zu etablieren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CM Dannywrote on 10.01.2009:[10.0] "Obwohl er schon so lange aus dem Wrestling-Business raus ist, hat es noch keiner geschafft an seinen Status zu gelangen und das wird wohl auch so schnell nicht geschehen. Er wäre ein großer Gewinn für jede Liga die ihn verpflichten kann. Niemand hat so schnell Karriere gemacht, so eine Verbindung zum Publikum gehabt und es so gut verstanden, daraus Kapital zu schlagen. Wer hätte das beim Debüt eines breit grinsenden Rocky Maivia bei der Survivor Series 1996 schon gedacht?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Tomkowrote on 05.01.2009:[8.0] "Persönlich mein Lieblingsentertainer. Er bewegte die Zuschauer als Heel oder auch als Babyface. Perfekte Promos. Alles was man braucht um ein ganz großer über Jahre zu sein. Aber dennoch ist The Rock nur ein genialer Entertainer und ein höchstens mittelmäßiger Wrestler, desegen nur ein "GUT"."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 41944194Andiwrote on 04.01.2009:[10.0] "Ich find ihn einfach in allen bereichen super! mehr baruchts halt ned =)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MarcB126wrote on 26.12.2008:[10.0] "Der beste Wrestler den es je gab und je geben wird. Der Mann sprüht vor soviel Charisma, das ist der Hammer. Einen Elbeow so zu verkaufen gehört soviel dazu, das kannn niemand überbieten. Wrestlemania The Rock vs Austin war der Hammer, aber selbst Stone Cold wird von The Rock`s Charisma erdrückt, he is the people`s champ. Wenn er zurück kommen sollte wäre es eine Gabe fürs Wrestling Publikum, denn ihn liebt einfach jeder wrestling fans oder nicht fans, denn er ist der hammer. Das beste ist er spielt kein Gimmick er ist einfach der people`s champ. Was er in der kurzen Zeit erreicht hat wird wohl niemand mehr erreichen, dies hat nichts mit der attitude ära zutun, sondern mit dieser unglaublichen Ausstrahlung von The Rock. Er ist der Größte der ist, der jemals war und der jemals sein wird. Auch wenn einige sagen er hat das wrestling verraten, man kann trotzdem sagen er hat es geliebt und wird es immer lieben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: stingersplashwrote on 24.12.2008:[10.0] "Von mir ganz klar 10 Punkte, weil er für mich der größte Entertainer ist, den dieses Buisness je hervorgebracht hat. Außerdem war sich The Rock (im Gegensatz zu manch anderem Superstar) nie zu schade sich für einen Gegner "hinzulegen". Nicht umsonst holten sich Foley, Angle, Jericho und Lesnar ihren ersten WWF/E Heavyweight-Title gegen The Rock. Man kann sagen was man will, über die Tatsache, dass er der WWE (für immer? ) den Rücken gekehrt hat, aber während seiner aktiven Zeit war er jemand, der alles für die Company gegeben hat und sich für nichts zu schade war, obwohl garade er wegen seines Statuses bei den Fans dazu das Recht gehabt hätte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Jar Jar Binkswrote on 18.12.2008:[10.0] "Unglaubliches Charisma, allein die Augenbraue. Ich wage zu behaupten, dass dieser Mann, das beste Mic-Work hatte was es je gab und im Ring auch große Klasse. Dieser Mann ist einfach göttlich. Wird für immer mein absoluter Lieblingsrestler bleiben. If ya smell what the Rock is cooking!  Eindeutig 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Cloverwrote on 18.12.2008:[10.0] "Als ich mir vor einer Weile die alten Mic-Works von ihm aus 98 und 99 angesehen habe muss ich sagen: Keine Ahung, was ich damals an ihm so toll fand.. das klang alles sehr abgelesen und lahm.. dennoch war er schon da als Heel absolut over bei den Fans und somit war die Stimmung ein Misch Masch - was eine unglaubliche Akustik in der Arena auslöste wenn The Rock auftauchte. Aber inzwischen ist er sicherlich unerreichbar am Mic :) Nur Mr. Kennedy gefällt mir da fast noch gleich gut.. Gott sei Dank hat The Rock Jim Ross mal erzählt, er würde die WWE noch gelegentlich verfolgen (wenn er Zeit hat) und seine Ringzeit durchaus vermissen.. also abwarten und hoffen auf ein paar Intermezzos alá Stone Cold.. Still the Peoples Champ ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ScrWwe94wrote on 17.12.2008:[10.0] "Tolle Mic Skills und ein Mann der die Leute perfekt unterhielt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TRIPLEH2008wrote on 25.11.2008:[2.0] "Als aktiver hervorragend jedoch entäuschend das er nicht einmal einen Gastauftritt machen kann wie gesagt eine grosse entäuschung für mich den er hat vergessen wo er herkommt!"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Charismatic Enigma4000wrote on 15.11.2008:[10.0] "Die Diskussionen um Rocky sind blöd und die dreiste Unterstellung von vielen Leuten, er habe das Wrestling verraten und so weiter, sind noch bescheuerter. The Rock war sehr wichtig für das Wrestling, aber er ist darüber hinausgewachsen. So ist es halt. Ich würde auch nach Hollywood gehen, wenn ich die Möglichkeit und das Talent dafür hätte. Die WWE ist halt mehr eine Soap Opera. Wenn ich dann diese HHH`s und Ric Flairs höre, die im Wrestling natürlich große Nummern sind, aber nur mit Neid auf Rockys anderweitigen Erfolg reagieren( Beispiel HHH: Bei der Hall of Fame Einführung von The Rocks Vater und Grossvater, sprach HHH Rocky mit The Rock an, nur um sich sofort zu verbessern. Entschuldigung ich muss ja jetzt Dwayne Johnson sagen. )Für mich ist The Rock einer der grössten und besten Entertainer, die das Business je hatte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: PKOwrote on 13.11.2008:[8.0] "Mic-Work hatte er wirklich einiges. Er konnte darin sehr gut überzeugen auch wenn es im Enddeffekt fast immer das selbe war. Im Ring aber hatte er seine Aktionen die er immer wieder abspulte und ohne das sehr gute Mic-Work währe er wohl nicht dass was er heute ist. Aber dass er anscheinend nichts mehr vom Wrestling wissen will ist wirklich das letzte. Immerhin ist es dass was ihn zum star machte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Smoothwrote on 12.11.2008:[10.0] "The Rock..... oh man, für mich der BESTE Entertainer im Wrestlingbuisness!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: squadra3wrote on 06.11.2008:[8.0] "In seiner Dekade einer der größten, aber um die 10 zu bekommen gehört auch dazu das man nicht vergisst wem oder was (dem Wrestling) man seinen Promistatus zu verdanken hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Animal360wrote on 22.10.2008:[10.0] "Trotz seiner nur 7 Jahren im Wrestling hat er jede Menge Erfolge gefeiert und sein Charisma ist quasi einzigartig deswegen erhält der People's Champ eine klare 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kreuflexwrote on 10.10.2008:[10.0] "Man kann The Rock wohl vor allem mit einem Wort beschrieben: "Entertainer". Es mag sein, dass er wrestlerisch zwar zweifelsohne obere Spitzenklasse ist, aber es sind vor allem seine Fähigkeiten zu unterhalten, die ihn besonders machen. Ich denke er war in der WWE genau zur richtigen Zeit am richtigen Ort. Ein paar Jahre vorher wäre er meiner Meinung nach nicht so erfolgreich gewesen und auch in einer eher auf Wrestling fokussierte Promotion wäre er wohl nicht ganz nach oben gekommen. Wrestlerisch gäbe es von mir 8 Punkte aber da er der beste Entertainer ist und nun mal in der WWE (mit Betonung auf dem E) war gibt es 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kaepplewrote on 05.10.2008:[10.0] "Kein Wrestler hat mich je besser unterhalten - volle Punktzahl, keine Frage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: SirFlubbi42wrote on 29.09.2008:[10.0] "Eigentlich muss man zu ihm ja gar nichts mehr sagen, aber wenn man dann eineige Comments liest, dann muss es einfach raus. Er ist der Beste der je im Ring stand. Sein Talent zum Schauspielern und seine Fähigkeiten einen wirklich glauben zu lassen das es jemanden wie The Rock gibt, mehr noch, das ER The Rock ist, sind phänomenal. Als mein Bruder und ich klein waren und wir uns im Garten verhauen haben, weil wir Wrestling gespielt haben war der einzige Finisher der ein Match beenden durfte der Ellenbogen. Und heute im gehobenen Alter verehre ich ihn nur umso mehr, da man jetzt auch versteht was er gesagt hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: splashwrote on 25.09.2008:[10.0] "Unglaubliches Charisma, das beste Micwork aller Zeiten, klasse Wrestler... Was bleibt mir da noch zu sagen? Das selbst so viele Jahre nach seinem Karriereende immer noch ein Comeback gefordert wird spricht Bände. Er ist und bleibt der einzig wahre "People's Champ" - 10 Punkte. Nur schade das es wohl nie eine Rückkehr in den Ring geben wird..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: E-T-Wrestlerwrote on 11.09.2008:[10.0] "The Rock ist ein sehr guter Allrounder, wie ich finde. Er hatt im Ring von allem etwas.... z. B. seine Righthands sehen manchmal aus, wie von einem Powerhouse. Außerdem, ist er laut meiner Meinung der beste Komiker im Wrestling-Buisness"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sternauwrote on 07.09.2008:[10.0] "Steht ganz oben an der Spitze! Erst Rocky ... dann kommt lange nix und dann erst Leute wie Hogan oder Austin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: snupywrote on 05.09.2008:[10.0] "für mich nicht einer der besten sonder der beste ........."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The System Failedwrote on 01.09.2008:[10.0] "Er kam zwar vor meiner Zeit als Wrestlingfan, aber ich hab mir sehr viel (sowohl Matches als auch Promos) von ihm angesehen, um zu sagen, dass er meiner Meinung nach einer der besten Worker war, den die WWE seit langem hatte! Er hat es wirklich geschafft, die Leute zu entertainen: seine Sprüche sind einfach nur geil und seine Matches durchweg solide bis sehr gut! Bei Hall of Fame 2008 hat er seine Stärke am Mic nochmal eindrucksvoll bewiesen! Ich glaube jeder würd sich über ein Comeback freuen, und sei es nur für ein Match bei Wrestlemania 25 gegen Stone Cold (Ankündigung als Nostalgie-Match, mit ein paar typischen Promos und dann hat man die höchsten Zuschauerzahlen bei Raw und die höchste Buy-Rate von Wrestlemania)... aber ich denke soweit wirds nicht kommen... !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Capitanowrote on 31.08.2008:[10.0] "Leider Leider nach seinem Höhepunkt (2000) nicht mehr Vollzeit Wrestler... Noch ein sehr gutes Match mit einzigartigem Build Up gegen Austin bei wrestlemania17 und einige gute auftritte bei der invasion.... aber eben nicht mehr so gut wie zu der Zeit als er noch VollBlut wrestler war.. Aber trotzdem 10 Punkte für den Peoples Champion!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The-Phenomwrote on 29.08.2008:[8.0] "Ein Lustiger Wresteler der das Wort Entertainment im Blut hatte und auch verstand damit umgehen zu können. Schade, dass er nicht zurückkehrt ... er könnte ja wenigstensmal nen Überraschungsbesuch machen"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MICHAELAundMARKUS4EVERwrote on 26.08.2008:[10.0] "Immer wieder ein Highlight! Toll am Mic und im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Tunisian Warriorwrote on 25.08.2008:[10.0] "Hat sich in absoluter Rekordzeit zur Legende gemacht. Meines Erachtens der beste Entertainer den es jemals im Wrestling gab!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MarkyMarkwrote on 24.08.2008:[7.0] "Sicher ein guter Worker, perfektes Mic-Work, aber meines Erachtens überbewertet."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rated-RKOwrote on 11.08.2008:[9.0] "Großer Entertainer und Wrestler, auch am Mic sehr überzeugend, aber es gibt bessere Männer im Ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: colonia18wrote on 07.08.2008:[10.0] "Der mit Abstand beste Entertainer den das Wrestling jemals gesehen hat, dazu noch unglaubliches Charisma, natürlich sensationelles Micwork und auch mit perfekten In-Ring-Skills!  Außerdem machte er das Wrestling zur Attitude-Ära wieder interessant und brachte es gemeinsam mit einem Austin, Triple H, Mick Foley, Kane und dem Taker auf eine neue Ebene!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: homer3112wrote on 06.08.2008:[10.0] "Mein absoluter Lieblingswrestler. Die Nr. 1 am Mic (da gab und gibt es keinen besseren) und im Ring. What do you think? - IT DOESNŽT MATTER, WHAT YOU THINK!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Lethal Combinationwrote on 05.08.2008:[10.0] "Warum 10 Punkte? Die besten Promos der Geschichte in der WWF/E dazu noch ein sagenhaftes Charisma und sehr gute In Ring Skills."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Lokfanwrote on 29.07.2008:[4.0] "Für mich selber war er nie interessant, mich hat auch das Trara damals um ihn genervt obwohl er gute Aktonen im Ring drauf hatte. Finde ihn in Walking Tall – Auf eigene Faust sehr viel besser."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Neubauteneinsturzwrote on 29.07.2008:[10.0] "Ohne Zweifel der beste Sports Entertainer aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: stinger89wrote on 25.07.2008:[10.0] "Der wohl größte Entertainer der je in einem Wrestling Ring stand!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: wXw Fanwrote on 25.07.2008:[5.0] "War nie großer Rocky Fan, Promos und Charisma zwar top, dafür im Ring sehr langweilig und eintönig."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Weihnachtsmannwrote on 23.07.2008:[8.0] "Ein absoluter Gott am Mic, Charismatisch ohne Ende, lediglich bei seinen Matches fehlte mir immer das gewisse Etwas."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MVPKennedywrote on 21.07.2008:[10.0] "Ich finde es sehr lustig, wenn hier Leute schreiben, dass sie ihn nicht mögen, weil "er seine Augenbraue immer so arrogant hochzieht". Paul Bearer ist übrigens immer noch einbetoniert .... Ganz klar 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: StoneColdRevowrote on 18.07.2008:[10.0] "War der erster Wrestler mit dem ich auf der PS2 gezockt hatte (War so ne Promo CD, wegen dem Spiel bin ich erstmal auf Wrestling so gekommen). Find es nur schade des es dann zur Schauspielkarriere kam. Bei der WWE würde er mir besser gefallen ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: oppentwrote on 17.07.2008:[10.0] "Was soll man zu diesem einzigartigen Wrestler noch sagen!  HeŽs a LEGEND!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: WerderBremenwrote on 15.07.2008:[10.0] "Einer der größten Wrestler unserer Zeit; fast klar bei solch einem Familienumfeld. Er hat die Leute echt unterhalten und ich kenne keinen, der The Rock nicht mag. Das er den WWE Ring gegen Hollywood getauscht hat muss man respektieren und zwar umso mehr, wenn man weiß wie gut er auch schauspielern kann. Trotzdem finde ich es schade, dass er nicht mehr wrestelt, denn er brachte die WWE bei jedem seiner Auftritte in Punkto Entertainement und Großartigkeit auf ein höheres Level... ! Ehrlich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kevichenkowrote on 03.07.2008:[10.0] "Mein absoluter Favorit. Sau geiles Mic-Work , sau geiles Wrestling. Er hatte alles was ein Pro-Wrestler braucht. Er war als Heel und Face hervorragend. The Rock hat mich immer gut bis sehr gut unterhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheGamewrote on 27.06.2008:[10.0] "oh der war am mic genial!  Als Wrestler war er auch ganz gut"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ecw foreverwrote on 22.06.2008:[9.0] "Bester Mic Worker mit HHH, Eddie und Hogan. Okay im Ring nicht der beste aber gut war er. Er hatte diese gewisse Power, die ihn ausmachte, die Fans trugen ihn, hätte er schlechtere Reaktionen bekommen, wäre er keinen deut dies was er heute ist. Keine Legende, aber dennoch ein starker Mic Worker, mit extrem viel Charisma."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: LordTrailerwrote on 16.06.2008:[10.0] "Einen wie Rock gibt es wahrscheinlich nur alle 100 Jahre. Niemand konnte so mit dem Publikum spielen. Seine Promos bleiben unvergessen. Im Ring war er zwar nicht die Offenbarung, hatte aber genug drauf um mit ihm mitzufiebern und eine Story voranzubringen. Wenn man bedenkt, dass er so kurz aktiv war und trotzdem so vergöttert wird, kann man schon erkennen, dass er ein ganz Großer ist. Schade, dass wir jetzt wieder 100 Jahre warten müssen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Eaterwrote on 15.06.2008:[10.0] "Einfach ein absolutes Gesamtpaket. Gott im Ring und am Mic, überwältigend charismatisch, überzeugendes Auftreten, perfekter Entertainer und war zudem in der Lage, jeden Style mitzugehen. Hat in seiner vergleichsweise relativ kurzen Karriere nahezu alles erreicht, was es in diesem Business zu erreichen gibt und nahm mit Hollywood den nächsten sinnvollen Schritt. Sein Abgang konnte bis heute nicht ausgeglichen werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Know Nothingwrote on 13.06.2008:[8.0] "EIn extrem eingebildeter Mensch... Er war allerdings ein sehr guter Wrestler und ein guter Entertainer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The-Real-Diablowrote on 13.06.2008:[10.0] "Für mich persönlich die größte Legende und der absolut genialste Entertainer aller Zeiten. Er wird vielen von uns für immer im Gedächtnis bleiben. Jede Szene an der The Rock beteiligt war, erzeugt noch heute Gänsehaut. Der Mann ist genial und sollte er irgendwann einmal zurückkehren, wovon ich nicht ausgehe, werde ich mir sein Comeback live in den USA angucken. The Rock: Vielen Dank!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: andrekoenigwrote on 08.06.2008:[10.0] "The Rock ist ohne Zweifel der elektrisierendste Wrestler im Sports Entertainment. Jedesmal wenn ich ihn gesehen habe, oder wenn ich mir heute Videos von ihm angucke, bin ich absolut elektrisiert und fiebere bei allem mit was er macht. Der Brahma Bull ist nicht nur der charismatischte und einer der beliebtesten Wrestler aller Zeiten, sondern er ist auch noch einer der Lustigsten aller Zeiten. Wenn ich mir seine Statements angucke muss ich immer wieder lachen. The Great One ist für mich der unterhaltsamsten Wrestler überhaupt. Und ich werde für immer einer der Millions and Millions of The Rock Fans bleiben, ob er nun wieder kommt oder nicht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DeadHeadwrote on 04.06.2008:[10.0] "He is the Most electrifieng man in Sports Entertainment. Sagt doch schon alles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Excellence of Executionwrote on 25.05.2008:[10.0] "So, hab mir lange Zeit damit gelassen, den Great One zu bewerten. Dabei war eigentlich von Anfang an klar, dass dies nur 10 Punkte geben kann. So komplett wie ein Mr. Perfect, ein Bret Hart oder ein Shawn Michaels im Ring waren bzw. sind, so komplett ist der Rock am Mic gewesen. Wer seinen immensen Erfolg bloß auf Catchphrases reduziert, der muss sich die Frage gefallen lassen, warum das bei anderen Wrestlern dann nicht auch so ohne weiteres funktionieren würde. Die Tatsache, dass der Rock nun ein erfolgreicher Schauspieler ist, sollte in diesem Zusammenhang doch zu denken geben. Der Rock hatte einfach das natürliche Charisma und die schauspielerische Klasse, um sich selbst am Mic so perfekt verkörpern zu können und ganze Hallen in seinen Bann zu ziehen. Zudem war er im Ring durchaus anständig und - wie hier auch an anderer Stelle schon gesagt wurde - stets dazu bereit auch andere auf Kosten von Niederlagen over zu bringen. Bow down to the Great One!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Frutzwrote on 15.05.2008:[10.0] "Der Entertainer des letzten Jahrtausends. Durfte ihn in Oberhausen erleben (beileibe noch nicht das, was aus ihm wurde) und war begeistert, habe als Halb-Mark vor dem Bildschirm gesessen und mitgeschrien, wenn er gekocht hat, habe seine Matches geliebt, ihn als Champion verehrt. Für mich war er sicher das, was Hulk Hogan in den 80igern fuer viele junge Wresting-Fans war. Mit einem gewaltigen Unterschied: Er war kein unbesiegbarer Comic-Abklatsch. 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: THEROCK316wrote on 11.05.2008:[10.0] "ER hatte die besten Matches, die besten Promos, die besten Fehden ER war ein Traum im Ring ER war der beste am Mic Er hatte das beste Gimmick ER hatte mit RockŽnŽSock connection das beste Tag Team"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ZuluBunsenwrote on 11.05.2008:[10.0] "Was will man über ihn sagen, was noch nicht gesagt wurde. Ein Meister der Promos, im Ring zwar kein Wunderkind, aber fähig das Publikum mitzureissen und schliesslich der rechtzeitige Absprung ins Filmgeschäft bevor er wie viele andere den Tribut an die Zeit im Ring so richtig zahlen musste. Johnson hat so ziemlich alles richtig gemacht und hinterlässt eine kurze, aber extrem effektive Karriere und gilt zu recht als einer der Besten seines Faches. 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hirnklopswrote on 30.04.2008:[6.0] "Überbewertet. Zu seinen Glanzzeiten DIE große Nummer, später dann verbraucht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fran7iCwrote on 26.04.2008:[6.0] "Filmemachen kann er besser Im Ring mochte ich ihn nicht so sehr"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: X-Raywrote on 19.04.2008:[10.0] "In so kurzer Ringkarriere hatte bislang kein Wrestler solch einen Erfolg wie The Rock. Zudem neben Hulk Hogan einer der bekanntesten Wrestler aller Zeiten. Das spricht für seine ganze Klasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rocky Maiviawrote on 17.04.2008:[10.0] "Ich finde es falsch The Rock wegen seiner heutigen Stellung zum Wrestling abzuwerten. Er war unglaublich charismatischund im Ring immer(! ) unterhaltsam. Am Mic ist er meiner Meinung nach das Maß aller Dinge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: contemptwrote on 16.04.2008:[7.0] "Mit Sicherheit eines der Top-Wrestler. Allerdings waren mir seine Gestik und Selbstdarstellung oft zu übertrieben. Und jede Phrase, wie cool sie auch sein mag, ist irgendwann ausgelutscht."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dynamite4wrote on 12.04.2008:[10.0] "Unglaublicher Wrestler. Hat mir immer gut gefallen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Pulpulwrote on 10.04.2008:[9.0] "Einer der wohl charismatischsten Wrestler, die es im Sports Entertaiment je gegeben hat. Seine Fähigkeiten im Ring waren jedoch eher begrenzt bzw. musste er nicht wirklich mehr zeigen, da The Rock einfach von seiner Ausstrahlung lebte. Für die Zeit in der er aktiv war, stark."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mrkennedy1990wrote on 03.04.2008:"War mal einer meiner Lieblingswrestler, aber das hat sich geändert: Nachdem er seine Karriere beendet hat, hat er NICHTS mehr fürs Wrestling getan. Andere schaffen das auch, siehe Steve Austin. Es ist einfach traurig, was ein Mann mit dem macht, was ihn zum Star gemacht hat. Und richtig wütend werde ich, wie er immer wieder erzählt, wie sehr er das Wrestling doch liebt. Nach Deutschland fliegen, um seinen Film zu promoten kann er, aber für 5 Minuten bei WWE auftauchen ist wegen Filmarbeiten unmöglich? Sorry, aber das geht gar nicht. keine Wertung"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheBloodMachinewrote on 03.04.2008:[10.0] "Ich vermisse ihn auf jeden Fall. Der beste am mic, was hab ich Spaß gehabt. Der Auftritt bei der Hall of Fame Show war auch wiedemal Hammer. Auch im Ring sehr unterhaltsam, wer erinnert sich nicht an die Fehden mit Stone Cold? Hoffe das er irgendwann nochmal in den ring steigt. Rocky, Rocky, Rocky"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DirtiestPlayerwrote on 02.04.2008:[6.0] "Meiner Meinung nach viel zu hochgepusht. Konnte nie etwas mit ihm anfangen. Ähnlich wie heute John Cena. Zum Superhelden gepusht um dann dem Wrestling den Rücken zu kehren."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ultimate-warrior-xwrote on 25.03.2008:[10.0] "Ein Wrestling-Gott! Genial am Mic und mit seinem unverwechselbaren Stil im Ring auch ganz grosse Klasse, da können nur wenige mithalten. Zu kurze Karriere im Wrestling. We want to smell what the Rock is cooking! Come back!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: PeoplesChampwrote on 25.03.2008:[10.0] "Für mich der beste Mic-Worker aller Zeiten. Über die Promos braucht man nicht groß was zu sagen. Als Wrestler auch Weltklasse, hatte seinen eigenen Stil, der ihn so ausgezeichnet hat. Konnte Tausende Fans an der Leine halten, ob als Face oder als Heel. Und warum er jetzt als Schauspieler erfolgreich ist hat er ja in unzähligenden legendären Promos bewiesen. Ganz Klare 1!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Perry Coxwrote on 23.03.2008:[10.0] "Er ist "The Great One" War zwar nicht lange aktiv, aber einiger der wenigen, der erfolgreich ins Filmgeschäft gegangen ist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Psycho-Jokerwrote on 19.03.2008:[10.0] "The Rock steht für wrestling. man wird einfach von seiner ausstrahlung mitgerissen umd fiebert mit. er ist und bleibt the people's champ"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DonTwrote on 17.03.2008:[10.0] "Über ihn gibts nicht viel zu sagen, außer dass er der Inbegriff modernen Sports Entertainments ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Amurebkuwrote on 17.03.2008:[10.0] "Einer der größten Entertainer den die Wrestlingwelt je gesehen hat. Wenn nicht sogar der größte. :-) Im Ring hat er auch immer solide bis gute Leistungen abgerufen. Ein ganz klarer Topstar. Ich hoffe, dass er demnächst wieder zurückkehren wird in die WWE. Auch wenn die Zeichen dafür eher schlecht stehen. Einen The Rock kann die McMahon-Company immer gebrauchen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Instant Classicwrote on 14.03.2008:[6.0] "Konnte mich nie so recht überzeugen während der Attitude Ära. War in seinem Heel Run 2002(? ) jedoch genial. Charisma und Micwork kann man ihm wohl nicht absprechen, hat mir aber abgesehen von dieser Zeit nicht zugesagt."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fabbowrote on 09.03.2008:[10.0] "The Most Electrifying Man in Sports Entertainment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: lagunswrote on 07.03.2008:[8.0] "Am Mic. absolut perfekt! Selbst ohne übersetzung macht das zuhören spaß. Scheint leider mit dem Sprung zum Superstar viele seiner Moves eigebüßt zu haben. (wie andere auch: HHH, Austin) Leider scheinen Dropkicks oder Locks nur was für Rocky Maivia zu sein, aber für the Rock zu uncool. schade! Aber hat dem Wrestling immerhin coolnes und Mainstream gegeben. also 2-"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: felixwrote on 04.03.2008:[10.0] "Ich kann Matt Macks nur zustimmen. Er hat nichts anderes verdient als die Note 1. Er isr einer größten WWE-Stars aller Zeiten, trotz seiner kurzen Karriere. Keiner konnte solche Fanreaktionen ziehen wie er. Er ist der Promogott und zudem ein hervorragender Wrestler, mit sehr gut technischen Fähigkeiten. Er war, was viele andere nicht waren, in der Lage selbst die schlechesten Wrestler zu sehenswerten Matches zu ziehen. Ich hoffe, wie warscheinlich viele Fans, dass er nochmal zurückkommt für mehr als nur ein paar Matches. Zudem ist er ein guter Schauspieler, der es auch in diesem Gewerbe sehr weit bringen kann. Er ist einfach The Great One."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ibanezwrote on 28.02.2008:[10.0] "Finally, The Rock has to come to get 10 Points.... ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Cybermikewrote on 27.02.2008:[10.0] "Einer der besten Wrestler der Neuzeit sowohl im Ring als auch am Mic Genial!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Schockwrote on 25.02.2008:[10.0] "... gar keine Diskussion. The best entertainer the business ever saw."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Riley Mathewswrote on 25.02.2008:[10.0] "Zum totlachen und er hatte auch eine gute Technik. Super in den Filmen Welcome to the Jungle und Walking Tall . Schade das er bei RAW`s 15. Geburtstag nicht dabei war. In die HoF wird er wahrscheinlich nie kommen war nicht sehr lange in diesem Business. Aber einer der talentiertesdten Superstars am Mikro."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Darbenwrote on 20.02.2008:[10.0] "ES kann nur einen geben. Er ist der great one. Keiner in diesem Geschäft verstand das E in WWE mehr als the Rock. Nur schon seine Tritte sind was ganz spezielles. Zudem hat er eine unglaubliche Austrahlung und weiss was es für ein Topmatch braucht. Seine kurze Ringzeit stört mich nicht. Sondern schaue mir liebend gerne seine Klassiker mehrmals an."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: GSA98wrote on 10.02.2008:[8.0] "der elektrisierenste Typ der WWF, kommt aber nicht an den wahren "Peoples Champion" ran. DDP!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: beck21wrote on 06.02.2008:[10.0] "The Rock war ein klasse Mic-Worker womit er sich over brachte. Im Ring war er nicht annähernd so gut wie am Mic was ich auf seine vergleichsweise kurze In-Ring Karriere(7 Jahre) zurückführe. Das so um The Rock nach getrauert wird, hängt einzig und alleine damit zusammen, dass die WWE keinen Ersatz für ihn gefunden hat. Aber da bei der WWE es vor allem um Kommerz geht bekommt THe Rock von mir 10 Punkte weil nach ca. 5 Jahren der Messias für alle WWE Fans ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: GR81wrote on 25.01.2008:[10.0] "Vom Charisma und den Mic-Skills das Beste, was die WWE jemals gesehen hat! Da wird es wohl so schnell keinen geben, der da rankommen könnte, wenn es überhaupt jemand mal jemals schaffen sollte, diesen Promogott zu übertrumpfen! Gerade als Heel fand ich ihn am genialsten. Keiner konnte so gut mit dem Publikum spielen wie The Great One! In einem Moment jubelt man ihm zu und die Halle ist kurz vor dem Explodieren und nur ein paar Wörter später, wird er von der kompletten Halle wieder ausgebuht (siehe z. B. "A song about Sacramento")! Sowas kann nur der People's Champ! Nach dem Weggang von The Rock und Stone Cold ist die WWE gestorben! Rest in peace WWF! 10 Punkte sind hier noch viel zu wenig! Entertainment pur!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DarkWarrior86wrote on 24.01.2008:[10.0] "1+++++++ ganz klar! Weltklasse Promos, stark im Ring absolut elektrisierendes Charisma. Hat alles was ein Entertainer baucht! Mehr brauch man zu diesem Mann wohl nicht sagen!  Einzigst negativ fand ich seine Rolle las Heel, seine Art zu dieser Zeit wiedersprach einfach allem was er in den letzten Jahren sich als Face aufgebaut hat, daher zu arg aufgesetzt interpretiert meiner Meinung, zieht aber nur ein + in meiner Bewertung ab ;-) Er fehlt meiner Meinung nach ziemlich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Y2J Michaelswrote on 19.01.2008:[8.0] "Super MicWork auch sehr gut im Ring, ich finde nur schade das er sich so vom Wrestling absetzt. Er darf nicht vergessen woher er kommt. Deswegen nur eine 2"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: jimpanse1980wrote on 13.01.2008:[10.0] "Der Idealtyp von Wrestler: Einzigartige Promo/Mic-Fähigkeiten. Konnte selbst ohne Worte die (Millions and Millions of) Fans elektrisieren. Dazu tolle InRing-Skills und ein bescheidenes Ego. Hat nie für sich, sondern für die Fans und das Business gekämpft. Das macht ihn für mich zur absoluten Nr. 1 in der WWE, auch wenn seine Karriere im Verhältnis zu anderen Größen doch relativ kurz war."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Guteminewrote on 06.01.2008:[10.0] "Fast noch mehr als seine grandiosen Wrestling- und Mic-Leistungen, bewundere ich seine Intelligenz, rechtzeitig aufgehört zu haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AnFuwrote on 05.01.2008:[10.0] "The PEOPLEŽS CHAMP! Zu Beginn noch verachtet und ausgepfiffen und dann zum besten Mic-Worker und Entertainer entwickelt, den das Wrestling bisher gesehen hat! Unglaubliche Reaktionen auch als Heel, er hat einfach alles! Klasse Matches, legendär seine Matches gegen Steve Austin, volle Punktzahl!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Remootwrote on 05.01.2008:[10.0] "Einer der grossen 6 die die halle bisher zum EXPLODIEREN bringen konnte neben Micheals Hogan SCSA und Triple H und Jericho. Micwork absolut unerreicht... von absolut niemanden auf dieser erde. In Ring ebenfalls sehr gut"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mr sledgehammerwrote on 04.01.2008:[10.0] "Der woh beste Mic-Worker aller Zeiten. Seine Matches sind legendär und Rocky wird auch noch in hundert Jahren der PeopleŽs Champ sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Stone Cold Andywrote on 04.01.2008:[10.0] "Mein All Time Favorite. Es gab kaum jemanden, der mehr Charisma hatte und unterhaltsamere Matches zeigte. Für mich neben Austin DER Superstar des Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "The Peoples Champ ist ein super Entertainer, ein tallentierter Schauspieler und war ebenfalls ein ansprechender Wrestler. The Rock ist mein absoluter Fav-Brahma Bull! Leider hoffen wir vergeblich auf ein Comeback-das wirds wohl nie geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Haukewrote on 31.12.2007:[10.0] "Ikone der Attitude Era. Wahrscheinlich der beste Micworker aller Zeiten. Erstaunlich ist, dass er aufgrund der häufigen Titelwechsel in der Atitude Era zwar Rekordchampion ist, aber den Titel nie sehr lange halten konnte. Nur Platz 12 in der Gesamtliste aller Champs (combined length)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MA Excellentwrote on 29.12.2007:[10.0] "The Rock! Der Name passt wirklich wie die Faust auf`s berühmte Auge. Man muss schon stark überlegen, warum man ihm keine 1 geben sollte. Mir fällt da nicht viel ein. Sein Mic-Work ist aus meiner Sicht (finally... ) das Beste ever. Charisma ohne Ende und auch eine wahnsinnige Crowd-Reaction. Aber auch im Ring ein hervorragender Mann. Daran kann man höchstens bemängeln, dass Moves wie der Peoples-Elbow schon sehr übertrieben waren. Jedoch stimmte die Intensität im Ring zu 100 %. Also man muss eine 1 geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: wrestler of the worldwrote on 27.12.2007:[10.0] "If ya smeeeeeellll, what The Rock is cooking?  Trotz kurzer Wrestling Karriere hat er das erreicht, was man überhaupt erreichen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Wuschl 85wrote on 15.12.2007:[8.0] "7-maliger Champ das sagt eigentlich schon alles. Tolle Inring-Skills und einfach der Beste am Mic - ein echter Entertainer. Fast so populär wie einst Hulk Hogan nur 10mal besser. Fast schon ein perfektes Paket aber ich nehme ihm immer noch übel, dass er so früh aufgehört hat um ins Filmbuisness zu gehen und nun überhaupt keine Auftritte mehr hat bzw. keine mehr will."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Solid Snakewrote on 30.11.2007:[10.0] "The Rock ist wohl der, mit Abstand, beste am Mic. Er hatte mehr Charisma im kleinen Finger, als heute jeder neue Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Foerstawrote on 29.11.2007:[10.0] "The Rock ist trotz seienr mir und vielen andren Fans zu kurzen In-Ring-Zeit zu einer Legende gewachsen, ich hätte ihn gern zurück und ichnicht auf der Leinwand! IF YA SMEEEEELL WHAT THE ROCK .... IS COOKIN'!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: dariawrote on 16.11.2007:[8.0] "Spitzenentertainer und guter Wrestler, aber hier fehlt die wirkliche Hingabe an den Sport"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Champwrote on 16.11.2007:[10.0] "Nicht umsonst: 'The Great ONE' . In meinen augen der beste Micworker ever. Er konnte einen bei seinen Promos sowie im Ring einfach elektrisieren. Das kann bzw. konnte nie wieder jemand so gut wie Dwayne 'The Rock' Johnson. Schade, das er nicht mehr ab und an auftritt. Würde der WWE gut tun."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BoB Mohrwrote on 12.11.2007:[10.0] "Der beste Wrestler aller Zeiten! Im Ring so gut wie am Mic. Kenne keinen der das Micwork besser beherscht(e) als er es tat. Der Mann hat einfach alles was man zum Superstar braucht. Schade das er nicht mal ab und an bei der WWE vorbeischaut! So einen wie Ihn fehlt der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Pinguwrote on 27.10.2007:[4.0] "Ich konnte ihn nie wirklich leiden. Da waren andere Wrestler zu der Zeit für mich wichtiger und die ich lieber gesehen habe. Dennoch muss man seinen Erfolgen Respekt zollen, daher ausreichend!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Burzi1wrote on 26.10.2007:[8.0] "Natürlich hat er gute Matches hingelegt, aber so super toll fand ich ihn nie. Für viele mag er eine Art "Hero" sein, aber für mich nicht wirklich. Trotzdem 8. 0 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: real americanwrote on 26.10.2007:[10.0] "Er ist einfach einer der Größten die das Business je gesehen hat. The Great One war ein Gott am Mic und auch wrestlerisch hat er sehr viel drauf allerdings ist es schade das er dem Business so schnell den Rücken gekehrt hat um in Hollywood Karriere zu machen und das er wohl erstmal nicht in den Ring zurückkommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rated-R-Fanwrote on 21.10.2007:[6.0] "Gut, na klar! Aber seine Karriere ist leider beendet."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Frommeltwrote on 17.10.2007:[10.0] "Klasse Entertainement. Macht jetzt noch spass seine Promos zu schauen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Jericho Onewrote on 04.10.2007:[10.0] "Es ist schade The Rock nicht mehr im Ring zu sehen, denke auch nicht, dass er nochmal zurückkommt! In der , im Vergleich zu anderen Wrestlern, sehr kurzen Zeit in der man ihn sehen konnte, hat er in- und außerhalb des Rings absolut begeistert! Sein Micwork ist unübertroffen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Brahma Bullwrote on 04.10.2007:[10.0] "Ich finde Dwayne "THE ROCK" Johnson war eine echte Bereicherung für die WWF/WWE! Für mich ist er eine lebende Legende! Er war im Ring sowie am Mic, einer der besten den die WWE je hatte! 10***"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Peisistratoswrote on 04.10.2007:[10.0] "Eine der Legenden schlechthin. Ich muss wohl nicht näher erläutern, wieso ich eine Eins vergebe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: yogywrote on 02.10.2007:[10.0] "In meinen Augen der Beste Entertainer welcher je in der WWE seine Auftritte hatte. Technisch gab es bestimmt bessere, z. B. :Bret Hart. Dennoch eine klare 1 für diesen Mann. if You Smell.... !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Oli10wrote on 01.10.2007:[6.0] "Ich war nie ein großer fan von ihm! Für mich macht er zu viel Show im Ring!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: King of Queenswrote on 28.09.2007:[10.0] "Eine unglaublich charakterstarke Persönlichkeit im Wrestling. Im Ring auf gehobenem Niveau, am Mic dermaßen unterhaltsam und geil, dass es scho fast beängstigend ist. Egal was er macht, man fühlt sich unterhalten, und sobald er etwas sagt, ist der Tag gerettet. Das wohl stärkste Micwork eines Wrestlers, das es je gegeben hat. Einfach super!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: caterwrote on 25.09.2007:[8.0] "Im Ring ehr eine Gurke, aber am Mic natürlich sehr gut."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Lord Loviswrote on 08.09.2007:[10.0] "The Rock hat meiner Meinung nach den Titel des besten Sports Entertainer allerzeigten locker verdient. Seine Promos waren einmalig und über seine Genialität am Mic muss man wohl gar nicht reden. Die Fans hatte er so im Griff, dass das Zucken einer Augenbraue reichte, um die Halle zum Kochen zu bringen. Seine Matches waren immer superspannend und bei jedem, das ich erleben durfte muss ich immer wieder nachdenken, warum so ein Mann diesen Sport verlassen musste. Und das mit 32 Jahren! Jetzt ist er 35 und damit weit jünger als der Undertaker, Batista oder andere Größen der heutigen Zeit. Vielleicht besteht ja noch die Chance auf eine Rückkehr wenn er mit 42 Jährchen oder so genug vom Filmgeschäft hat...... hoffen kann man ja immer. ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Trevedaswrote on 02.09.2007:[8.0] "Im Ring nicht mehr als Durchschnitt. Was das MicWork angeht, kann er auch nicht viel mehr, als seine auswendig gelernten Catchphrases runter zurattern. Wo bleibt die Kreativität? Was ist an seinem MivWork innovativ? Genau, gar nichts! Ist zwar kein schlechter, aber bei weitem kein Wrestling Gott und schon gar nicht der beste MicWorker, den es je gab."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Bullit69wrote on 21.08.2007:[10.0] "Er is ja jedermanns Champ, is nur schade, dass er der Meinung is Filme zu drehen... naja vielleicht merkt er ja, dass er da nix zu suchen hat und kehrt in den Ring zurück! ;) IF YA SMELLLLLLLL, ... ihr kennt den Rest!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Bret Hartwrote on 15.08.2007:[10.0] "Der Mann der mich nach dem Weggang von Bret Hart wieder zur WWF brachte. Geniale Promos, es gibt kaum einen Wresteler der es so verstand die Massen in seinen Bann zu ziehen. Schade dass man ihn wohl nie mehr dort sehen wird wo dieser Mann einfach hingehört: im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: novacanewrote on 15.08.2007:[10.0] "Nicht der Über - Wrestler, aber ein Gott am Mic und mit einem unübertroffenen Entertainment Faktor. If you smell ...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ninielwrote on 14.08.2007:[10.0] "Loved too much he's style... Past now.... So sad... :("
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DrBreswrote on 13.08.2007:[8.0] "Grandioser Typ am Mic, im Ring auch ganz ordentlich... aber weniger die Legende, als die er dargestellt wird. Klar, ein Kerl wie The Rock wäre eine Bereicherung für die WWE, aber im großen und ganzen doch austauschbar. Es gibt genug gute Leute am Mic, nur sind die teilweise derzeit alle verletzt...."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Obermackerwrote on 09.08.2007:[10.0] "Gutaussehender Worker mit starkem Body, unglaublichen Micskills, einem vielseitigen Wrestlingstil, Mördershowtalent, der nochdazu das Charisma mit dem Löffel gefressen hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: shannonmoorewrote on 29.07.2007:[10.0] "Nie im Ring sehr gut aber wenn intressiert das schon. Bomben Charisma und vor allem Humor, solche witzigen Promos vermisse ich heute in der WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HHH-Stephwrote on 10.07.2007:[10.0] "Sehr guter Entertainer sowie Wrestler... schade , dass er ins Filmgeschäft umgestiegen ist... er war ein besserer Wrestler als Schauspieler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: scotty619wrote on 10.07.2007:[10.0] "The Rock ist ein tolle Wrestler und ein toller sprecher . seine Sprüche sind klasse If you smelllllllll. What the Rock is cookink"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: jerseyhoolwrote on 10.07.2007:[10.0] "Kult! nur wenige werden je an die leistungen von the rock am mic heran reichen. sehr schade jedoch, dass er dem wrestling sehr frueh den ruecken gekehrt hat - haette ihn gerne noch einige jahre zwischen den seilen gesehen. do you smell, what the rock is cookin'?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MGStylezwrote on 09.07.2007:[10.0] "ROck is GOd! Kein toller Wrestler, aber der Charimatischste und Micworkmäßg beste Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Mountiewrote on 05.07.2007:[10.0] "Es gibt wohl keinen Wrestler, der aus einer so kurzen Karriere so unglaublich viel herausgeholt hat. Wasich an ihm aber am sympathischsten fand: Keine Spur vom hoganschen oder austinschen Primadonnen-Verhalten, er half stets dabei, seine potenziellen Nachfolger mit Niederlagen over zu bringen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ShaneOwrote on 28.06.2007:[8.0] "Am Micro der Beste das es je gab und (wahrscheinlich) geben wird. Im Ring war er leider größtenteils, ich sag mal, langweilig."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Neben Hogan und vielleicht Stone Cold der beliebteste Superstar aller Zeiten! Keiner hatte die Fans mehr in der Hand als er! Charismatischer als Rocky geht es nicht mehr! You will go one on one with the great one... and there are two things you can do about it: nothing and like it"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Azraelwrote on 24.06.2007:[10.0] "Guter Wrestler mit phänomenalen, nie auch nur annähernd erreichtem Micwork. The Great One, the Peoples Champ. Der beste Wrestling-Entertainer aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Edgecution1991wrote on 24.06.2007:[10.0] "Wahrscheinlich der beste Mic-Worker, den ich je gesehen habe. Die Moves bringt er auf eine sehr gute Art rüber. The Rock ist einer der besten Wrestler, die es je gab."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Showstopperwrote on 24.06.2007:[10.0] "Im Ring zwar nicht der beste, aber grundsolide, dafür in Sachen Mic-Work, Auftreten und Charisma einfach ein Gott. Wohl der einzige, der es jemals schaffen wird, mit einem Hochziehen der Augenbraue tausende Fans zum Durchdrehen zu bringen ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: anny-bwrote on 24.06.2007:[10.0] "sowohl als wrestler auch als schauspieler, ganz groß!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Duke Skywalkerwrote on 24.06.2007:[10.0] "The Great One! Am Mic ein Gott, im Ring absolut ordentlich und mit der Fähigkeit gesegnet das Publikum mit kleinen oder großen Gesten zum Kochen zu bringen und so auch schwächere Paarungen zu einem Vergnügen zu machen. Zudem der beste Heel der jüngeren WWE Geschichte. Lang lebe "Hollywood" Rock!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ShakDragoonwrote on 24.06.2007:[10.0] "Wie beschreibt man "The Rock" am Besten... einfach ne coole Sau! Einfach genial, eine Charismabombe, der man stundenlang am Mic zuhören könnte und auch im Ring war er gut. Mein Alltime-Favorite!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Da führt kein Weg an der eins vorbei. Rocky ist einfach ein Rundumsorglospacket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Basti1989wrote on 24.06.2007:[10.0] "Vor allem als Schauspieler gefällt er mir sehr gut. Von seinen Fähigkeiten als Wrestler ganz zu schweigen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Mediwrote on 24.06.2007:[10.0] "Einfach nur geil am Mikro und im Ring. Ein wahrer Champion, um den es wirklich schade ist, dass er nicht mehr im Ring steht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kruemelwrote on 24.06.2007:[6.0] "war nie der größte Rock Fan. Promos sind klasse, im Ring reichen 2 Matches um zu wissen, was als nächstes kommt."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rob Van Duesenschrauberwrote on 24.06.2007:[8.0] "Er war und ist ein Gott am Mic. Aber im Ring war er doch nur Mittelmaß. Deshalb nur ein "Gut" von mir."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Cpt Dave Charismawrote on 24.06.2007:[10.0] "göttlich, göttlicher, am göttlichsten... und die Steigerung des Superlativs? THE ROCK... Austin, Johnson, Foley, begrenzt Dreifach H.... this was Wrestletainment....."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hardcoremaniacwrote on 24.06.2007:[10.0] "Der beste Sports-Entertainer aller Zeiten. Da muss auch HBK hinten anstehen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mdbnasewrote on 24.06.2007:[10.0] "Charismatisch, gut gebaut und einfach überzeugend. Sowohl gute Micskills also auch gute technische Fähigkeiten. Großer Verlust fürs Wrestling, Gewinn für die Filmindustrie!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Steven McWheelerwrote on 24.06.2007:[10.0] "Das beste Micwork aller Zeiten und ich bezweifel, dass es jemals jemand toppen kann und als Wrestler konnte er alles, was man auf dem Niveau halt können muss, kein Deut zu wenig und keines zu viel ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Vimeswrote on 24.06.2007:[10.0] "In meinen Augen im Ring besser als viele andere Superstars(Austin, Bret, Foley, Taker, Booker T um nur ein paar zu nennen). Über das Mic-Work brauchen wir wohl nicht zu reden..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Blue Meaniewrote on 24.06.2007:[10.0] "Der Beste Mic Worker aller Zeiten, da all seine Promos unterhalten haben! Seine In-Ring Skills sind OK, wobei diese unwichtig sind, da er duch sein Charisma in seinen Matches so wie der Taker so oder so immer überzeugte! Schade, dass er jetzt lieber in unerfolgreichen B-Movies in Hollywood mitspielen muss, hoffentlich sehen wir ihn dennoch irgendwann nochmal im Wrestling Ring!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Jeddixwrote on 24.06.2007:[10.0] "Definitiv einer der besten Wrestler/Entertainer aller Zeiten. Am Mic ist er einfach ein Gott und auch im Ring war er immer wieder für gute Matches gut. Hat aber leider viel zu früh seine Karriere beendet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: metaltyrantwrote on 24.06.2007:[10.0] "Mikrofongott und ganz pasabler Wrestler. Was bleibt, sind Promos für die Ewigkeit. Ich vermisse ihn. But it doesn't matter what I'm thinking!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Captain Hookwrote on 24.06.2007:[10.0] "Es gibt wohl keinen Wrestler, der so unglaublich mit den Fans spielen konnte wie The Rock. Zu seiner Hochzeit 99/00 war er vielleicht sogar der beste Publikumsliebling den WWE jemals hatte. Die Tatsache, dass er als Heel jedoch noch besser agierte, zeigt seine wahre Klasse. Seine großen Erfolge als Schauspieler sind daher nur wenig verwunderlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sabu316wrote on 24.06.2007:[10.0] "Hatte am Anfang schwer mit seinem Gimmick zu kämpfen aber danach wuchs er über sich hinaus. Unvergessen sein Micwork!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Carlito Cenawrote on 24.06.2007:[10.0] "Ein Gott am Mikro, neben dem Wrestlerischen auch ungeheueres Schaupieltalent. Dies kommt ihm nach seiner -für mich- zu kurzen Wrestlingkarriere nun zu Gute. Nicht nur die Action, auch Comedy liegt ihm - for Details watch The Rundown/Welcome to the jungle. ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Undertalkerwrote on 07.02.2025:[8.0] "Er verleiht dem ohnehin schon brillanten Bloodline-Stable die gewisse Würze. Wie er mit seiner naiven, gutgläubigen Art mit den anderen Mitgliedern dieses Stables interagiert, ist einfach ausgesprochen unterhaltsam sowie interessant. Im Ring ist Sami Zayn ebenfalls klasse und somit immer für starke Matches zu haben. Mit seiner Rolle bei der Bloodline scheint er im richtigen Fahrwasser für seine WWE-Karriere zu sein. Jetzt erkennt so gut wie jeder, was für ein Potenzial in ihm steckt! Ich hoffe, dass er jetzt auch einen konsequenten Push erhält und sich fest im Mainevent etablieren kann. Edit 02/2025: Zu Bloodline-Zeiten sprangen die Fans unheimlich auf ihn an - mich eingeschlossen! Nachdem seine Zeit dort vorbei war, fielen die Reaktionen nach und nach gedämpfter aus. Er ist immer noch beliebt, aber man merkt einfach, dass das Interesse an ihm schon seit längerem nachgelassen hat. Ich bin der Meinung, dass es dann doch seine Interaktion mit der Bloodline war, die ihn so overgebracht hatte; daran erkennt man, wie stark und effektiv dieses Stable, und auch sein Anführer Roman Reigns, eigentlich ist. Sami ist auch ohne dieses unterhaltsam sowie charismatisch, keine Frage, aber so fehlt ihm doch noch etwas, womit er die Fans entschieden von sich überzeugt. Er ist ein wichtiger Bestandteil von WWE und ich hab auch weiter eine positive Meinung über ihn, aber um einen Punkt gehe ich runter."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rassle Fanwrote on 06.02.2025:[7.0] "He's very good. A lot of charisma, great babyface, very athletic. In WWE, however, all of his matches feel identical. There's zero suspense for the blue thunder bomb. He's never won with it and it usually comes at the same point in every match, which is about half to two thirds of the way through. His promos have gotten better through the years but the WWE style is cut and paste."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ShooterMcShootwrote on 04.02.2025:[9.0] "An exceptionally talented performer who has done great work as both a face and a heel. To me, a bit reminiscent of Mick Foley. Not in his work or anything like that, but just his position on the card and his personality."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: xoxobelarywrote on 31.01.2025:[5.0] "I have the same opinion as Bayley about Sami, he's not good as a Babyface nor as a heel, I really don't like his personality as a Babyface, it's very cliché, like the fairy tale movies in the 2000s ''the hero who saves everyone from the villain and has a happy ending'', VERY CLICHÉ, and i don't like it so much for WWE, I think he should have a year off to improvise his characters, but don't get me wrong, he's a very nice person outside of WWE, If I stop and think about it, I can't answer if someone asks me if I prefer Sami Zayn as a babyface or heel, because he is mediocre in both roles."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: wrestlingswiftiewrote on 29.01.2025:[9.0] "As a babyface, he's great, but he needs to be carried by a good storyline. (Take the Bloodline stuff or his long-running, never-ending rivalry with Kevin for example). But as a heel? He can turn shit into gold. And I don't need to talk about his actual wrestling ability, because you already know how good he is... Right?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: docphantomswrote on 29.01.2025:[7.0] "I used to rate Sami higher but he peaked with his match vs Roman at the Elimination Chamber. He should have won that and then Roman should have taken it back, to show the cracks starting to form in the champ's abilities. Instead we were given an insufferably long, boring, nothing-happening reign that was bouyed by cookie cutter matches. But Sami elevated the Bloodline and made them work. his in-ring is always solid and he is a natural babyface. Ultimately, though, he kind of suffers from not really doing more than being a general babyface in WWE. He is the constant "underdog" yet he has won against a lot of impressive foes and done well as tagteam champ and for some reason was the one to dethrone Gunther. I am happy for the guy, but I just wish I cared more for him these days."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: AceHagannwrote on 15.01.2025:[8.0] "The ultimate underdog. Sami's history is full of great matches with great opponents, making great stories in between. To me, he is undeniably great. My only issue with Sami Zayn is that in his best stories, he tends to appear as an afterthought. Which makes sense given his aforementioned underdog status, but it'd be great if he was the star in a feud more often."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Lukeathonwrote on 13.01.2025:[10.0] "I cant go any less, Sami Zayn is one of the greatest underdog's there ever will be in wrestling. Not to mention his predecessor El Generico who was a stand up gent and endorsed Sami on his way out of the business! All jokes aside, Just look at Sami Zayn vs Neville & Sami Zayn vs Shinsuke Nakamura at NXT Takeover Revolution & Dallas respectively, they are genuine masterpieces. Sami Zayn is one hell of a wrestler, although I will say I liked him better when he wasn't politicing his way into Chad Gable's wrestlemania spot."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MEDaminewrote on 09.01.2025:[9.0] "One of the best wrestlers, really amazing in the ring, great in the mic, great character worker, as he can be both an underdog babyface and a dirty heel, has many memorable moments in his career, and he's also a nice guy, it's impossible to hate Sami Zayn"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: FutureWrestlerCelebwrote on 31.12.2024:[1.0] "Sami Zayn, during his career, has suffered losses to wrestlers who are often seen as enhancement talent, or "jobbers, " to help elevate others. One notable instance was when he lost to Baron Corbin on multiple occasions, despite his skill and experience. Zayn has also been on the losing end in matches against wrestlers like Riddick Moss, who were used to build stories or showcase their own strengths. His rivalry with Jinder Mahal included losses that painted Sami as the ultimate underdog, struggling against competitors who were often seen as stepping stones. These losses, while frustrating for fans, have helped set the stage for Sami's eventual rise to prominence in WWE, adding depth to his character. Sami Zayn has also taken losses to lesser-known competitors like Apollo Crews, who, at times, was positioned as an underutilized talent on the roster. He lost to the likes of Mike Kanellis, whose time in WWE was largely spent in low-card storylines. Another setback came when Sami lost to the powerhouse Braun Strowman, showcasing his vulnerability against much larger opponents. Even in his rivalry with Kevin Owens, Sami took multiple defeats that emphasized his struggles and underdog status. These moments of defeat, though frustrating for fans, played a key role in shaping Sami Zayn's narrative as a resilient, never-give-up character."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: neuuwavewrote on 22.12.2024:[6.0] "I don't see what everyone else sees in Sami. There are moments in the ring where i do actually really like watching him but those moments don't happen often. I find his promo work very boring and even though I'm sure its intentional it's incredibly corny and physically hurts to watch. Just not an interesting character either but constantly gets thrown into some of the best story-lines and feuds. Also fucked over Gable but I'm not gonna take points off for that but it definitely doesn't help."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Anas Kingwrote on 12.12.2024:[4.0] "He's an ok wrestler at best. Not good at selling. Bland babyface. Bland Character work. Corny Promos. Backstage politician and took Chad's spot at mania. He's not a good person, and he's not an interesting character, and he's not a great wrestler. The quality of his matches has been dwindled. Same old boring moveset and boring Goku, Gingka, or Superman like dull promos. Oh I can't loose because of my friends. I can't loose because my family is in the attendance watching their hero. There's a reason why he has never won a world title in wwe."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: JuanLocowrote on 08.12.2024:[10.0] "Can he be a good underdog? Yeah. Can he be a cheating heel? Yeah. Few superstars have the ability to connect with the public like Sami Zayn. His energy, expressiveness and authenticity make him stand out. Whether as a babyface fighting against adversity or as a charismatic and cunning heel, he always manages to attract the audience's attention. If Sami does not become world champion e. WWE would be one of the biggest mistakes."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: XNoWayKemoSabeXwrote on 25.11.2024:[8.0] "Sami is a character. He can make you laugh with his immaculate humor or hype you up to make you want to run through a wall. The passion he displays is top-tier. We need a world title run for him soon."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ezramitchwrote on 14.11.2024:[10.0] "Sami Zayn is my favorite currently active male wrestler. He is outstanding on the mic and makes me believe every word he says. His in-ring work is consistently impressive. His finisher looks extremely believable. Throw him into any storyline and he will find a way to thrive. And from everything I can garner, he seems like a genuinely great guy outside of kayfabe. Definitely a future HOFer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Wrestlingfan0808wrote on 05.11.2024:[10.0] "One of the more under appreciated wrestlers and a true one of a kind. No matter what role he is playing, whether it was being a cowardly heel, or being one of the top babyfaces ever, Sami always knocks it out of the park whatever hes being tasked with. He can do it all, and is one of the main reasons why the bloodline story managed to reach the heights it did during its peak of the storyline. Unsung hero. And to top it off, hes also one of the best wrestlers ever. His booking has finally started to reflect that after his run as ic champ. Future world heavyweight champion. Great wrestler, even greater person"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: scenicryanwrote on 23.10.2024:[9.0] "Admittedly it is generally hard for male wrestlers to pique my interest but Sami Zayn is someone who you can tell puts his everything into his all around performance. His promos are amazing and he knows how to stir up the audiences emotions so well. Hes also such a firecracker in the ring and so much fun to watch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Dntbamarkwrote on 02.10.2024:[8.0] "Initially I wasn't a fan of his, i thought he was a goofy indy guy with 0 charisma. His work with the Bloodline definitely changed my opinion on him and subsequent character changes have definitely changed my viewpoint on him and made me realize how wrong I was. I think Sami is fantastic, he works as a sly heel or an underdog babyface and work with just about anyone on the card."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rosyawrote on 29.09.2024:[9.0] "Unique superstar who doesn't matter whether he should play a good underdog or a coward man who has something wrong with his head. Very believable character whatever he does. That's what I call a talent"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: OneSuddenBOOMwrote on 28.09.2024:[8.0] "A great worker, who excels as being a comedic heel, which we saw with his work in the bloodline. He'll go down as a great mid-card act and a reliable wrestler who can work a good match. I never rated him as a face, the underdog story gets old and boring quick and Zayn's promos over the past several months have been stale in my opinion. Another heel sami run would be amazing, but with how over he is right now, it may be a while until we see that. I enjoyed his feud with Bron Breakker surprisingly, it was a nice passing of the torch moment from one amazing worker to a future world beater. As long as Sami can still cook in the ring, I see nothing but great matches for us to watch from him, even if his promos need a little work."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: RaysBruwrote on 25.09.2024:[9.0] "Sami's an incredible wrestler and a very likeable person. Great moveset, attire and he's a great promo."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: sKiaWeVwrote on 17.09.2024:[10.0] "I find it crazy how often I find myself underrating Sami Zayn. I will admit I am always proven wrong. Whenever he has the chance to do something interesting he makes it truly special. Great in-ring skills combined with being the most naturally believable babyface in wrestling puts him as one of the best to enter the ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ItsLugerwrote on 12.09.2024:[10.0] "One of the most natural babyfaces in history of wrestling. Phenomenal in the ring, fantastic on the mic, and a great person with a big heart. Disliking Sami is a red flag, he is a perfect example of the greatness of professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: sbprodwrote on 28.08.2024:[10.0] "Maybe my favorite today, he is an incredible wrestler, an incredible promo with his great display of charisma and emotion. He can play any role well. If he wants to be a comedic heel, he can do that. If he wants to be a loved face he can also do that. Sami is also an incredible human being which makes me like him even more."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Joe907wrote on 25.08.2024:[10.0] "Sami Zayn/El generico is one of favorite wrestlers ever. Very entertaining and he does awesome work in the ring. He has technical ability and can high fly too. His character work has been amazing over the years. Ultimate underdog and good on the mic. One of the all time greats"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: SephyAtticuswrote on 18.08.2024:[10.0] "Rarely will a wrestler catch my eye like Sami Zayn did. After taking a multi year hiatus from wrestling, I would begin to watch in 2022. The notable storyline here would be The Bloodline story. Now I can talk about all the good that it is, but the highlight was always Sami Zayn. His work on the mic is tremendous, being able to play that annoying, manipulating heel, or the biggest babyface you will ever see, to the comedy that we saw in the Bloodline. Overall Sami's work in the last two years has been great, having some of the best matches such as his last two Mania bouts, as well as Elimination Chamber 2023. Personally, I do not see a world where this man doesn't become a world champion eventually, and he'll deserve every bit of the reign that follows."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Enchantiumwrote on 08.08.2024:[3.0] "This might be my harshest review to date, but personally, I have never been a fan of Sami Zayn. At first, his run in NXT was good, and it was nice to see him, but since then, he has sort of been forced down people's throats at times. He continues to do that overused underdog gimmick, which becomes one of the most predictable things in the world because it has been done that many times. The Bloodline work was good for a bit as well, then they dived directly back into being the underdog, and that is such a boring gimmick that reaches the same old, same old. Great wrestler, though. I cannot fault him on that, but he really needs to find something new and give that underdog gimmick to somebody realistic in NXT, maybe like Je'Von Evans. His recent run with the intercontinental title was so useless. He had a few good matches, but it was just rubbish overall. Why did he win it? You literally had two perfectly capable workhorses, Chad Gable and Sheamus. But I suppose the meme Sami Hogan means something."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: RealGrapsThomsenwrote on 08.08.2024:[10.0] "If Sami retired today, hed be an all time great in my opinion. A brilliant underdog who can tell a really compelling story and has a very diverse moveset. His character work is amazing, whether hes an underdog babyface or the cowardly conspiracy theorist heel, he excels."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mke1996wrote on 06.08.2024:"Unfortunately he is unwashed and not worthy of a title. It's a good thing bron took it off of him. There are some things russo is right about after all"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: KobashiChopMewrote on 04.08.2024:[10.0] "Sami Zayn is one of the best pure babyfaces that the industry has ever seen. Everything he does inside the ring is phenomenal, from his execution of moves to the way that he sells for everybody, and makes them look like a star. I hope that he gets his run with a world title before he hangs them up, as that is the one thing he has missed out on in his career in the WWE so far and he has put in the effort and the work to be at that level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TrueJugoBetrugoNo1wrote on 04.08.2024:[8.0] "Sami Zayn ist ein Thema für sich. Ich persönlich mag Sami. Er kann sowohl im Ring als auch am Mic überzeugen und verkörpert einen wundervollen Heel, als auch einen guten Publikumshelden. Sein Höhepunkt war wohl der Royal Rumble 2023 sowie sein Match gegen Roman bei der folgenden Elimination Chamber. Ein Klassiker, keine Frage, ein Moment und ein Match definieren jedoch keine komplette Karriere, sonst wäre es sicherlich eine volle Punktzahl. Zugegebenermaßen kenne ich seine Zeit in den Indies und "El Generico" nur von Berichten, deshalb fällt diese aus der Bewertung heraus. Insgesamt also ein fähiger und verlässlicher Worker. Er connectet gut mit dem Publikum und kann sich im Ring beweisen. Mir persönlich fehlt jedoch noch das gewisse Etwas, um Ihn höher zu bewerten. Vielleicht kann mich ja nochmal ein potenzieller zukünftiger World-Title Run überzeugen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: HBK16wrote on 04.08.2024:[5.0] "Hate him. Never physically cringed at a wrestler so many times. How many times can you really play the same underdog character like ffs give it a rest. Boring overused character. Very cringe on the mic. Good wrestler tbf but his character is so so so awful. Although I wasnt the biggest fan of conspiracy theory Sami, at least he changed his character, now were back again to underdog Sami. You cant still be underrated after nearly 10 years on the main roster after main eventing wrestlemania, being a multi time tag and intercontinetal champion while also stopping the longest IC title reign ever which was possibly one of the worst WWE decisions ever. Overused and repetitive cringe character"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: BizarroMaskwrote on 02.08.2024:[6.0] "i prefer him wenn he was in a more comic role , he was really Good at it. I am very happy for him and all the importance he get , but it's not what i would have decide for him . He should have loss the intercontinental title to Chad Gable and maybe return in feud against Jey uso."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Chosen Onewrote on 02.08.2024:[4.0] "Sorry, aber ich hab den Hype nie verstanden. Er ist kein Hingucker, sieht nicht stark aus, ist mittelmäßig bis gut am Mic und zwar gut im Ring, aber das gewisse Etwas fehlt einfach. Von einem Triple H zum Beispiel kann ich mir ein x-beliebiges Match ohne Story, Vorkenntnisse oder sonstwas gut ansehen, weil ich sein Moveset sehr gut finde und er je nach Situation seinen Gegner entweder fertig macht oder gut dastehen lässt, aber Sami, so technisch begabt er ist, hat einfach keinen Reiz für mich. Der einzige interessante Teil seiner Karriere war als Honorary Uce, weil er da gleichzeitig als liebenswürdiger Außenseiter und Anhänger eines Heel Stables brillieren konnte. Diese Rolle hätte so kein anderer spielen können, das muss ich ihm lassen. Aber nach der Bloodline wurde er wieder uninteressant."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Willie 19200wrote on 26.07.2024:[10.0] "Sami Zayn is the guy you show people who want to see good wrestling and great characters. The dude is so entertaining whether he's the "Ultimate Underdog" or "The Great Liberator, " he is one of the greatest characters and storytellers in wrestling history. His stuff in NXT was amazing plus his main roster debut against John Cena was awesome. Iv'e enjoyed his Intercontinental and tag team title reigns he's had and not to mention he's part of one of the greatest rivalries I've ever seen known as Sami Zayn and his best friend/enemy Kevin Owens. Overall one of the greatest pro wrestler and storytellers in pro wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: igskillfartwrote on 25.07.2024:[0.0] "I just dont get this guy like AT ALL, I have seen his NXT work and his old persona El Generico and i love that run, but as Sami Zayn, the intercontenetintal Champion.. Hes just trash to me, its always that story where he is always the underdog in EVERY SINGLE MATCH, which makes it even more boring to watch him, his promos are TRASHH, he always talks about him being "The Underdog". why does he even have this title anyways, he presents it so poorly and it just isnt fun to watch him, he is just not good as he used to be anymore which is so sad, considering he was one of the best in NXT around the golden era, now he is just treated poor, do i hate Sami now? Yes.. do i hate Sami in General.. No. its just that he is being treated garbage over there and he needs to find a better place. its the truth"
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Crofallwrote on 23.07.2024:[10.0] "Sami Zayn is my favourite wrestler. He cuts great promos within great storylines. Often he'll just go out and cut the best promo of the night with basically nothing to work with ("I am rebellion" promo). He regularly has match of the night contenders. I cannot wait for the world title rematch against Gunther (which he should probably lose)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Quack7183wrote on 09.07.2024:[0.0] "Jesus Christ this man won't shut his mouth. "I'm not an underdog, I'm a champion! " "I put on the best matches in this ring! " Stop lying to yourself Sami. You've put on the worst match of the night each night. You've put on the worst promos every RAW too. You are absolutely horrible, Sami. There is no atom in your body that makes you a likeable wrestler. You're a fake champion who doesn't know how to put on good matches. This man does not know what he's talking about at all. You know you're bad if you're devaluing a championship that had so much prestige from the previous champion. Just go back to the indies, because no one wants to see you wrestle each and every week. Maybe he was good in the indies, but i honestly don't care, because from what I've seen from him, he's boring. He might've been good in NXT, but I didn't watch NXT in 2014. He might've been good during the Bloodline storyline, and I actually sympathized for him when he hit Roman with the chair, but now he's just his same old self. I just wish he would lose that Intercontinental title, because it's making me tired of seeing it each and every week. Moral of the story, this man is straight up boring. Horrible mic skills, mid in-ring skills, and overall a really unlikeable dude. 0/10"
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ZerKOwrote on 08.07.2024:[9.0] "Sami really brings the intensity and passion about pro wrestling to the table. A master when it comes to storytelling, Sami is truly one of a kind. Being a believable underdog, a smart technician and a hard-working professional is the perfect mix for a lovable babyface that connects with the audience."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Saltanwrote on 21.06.2024:[10.0] "One of the best pure babyfaces of all time and also one of the best snarly heels just shows how special he is"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Khalid Acewrote on 21.06.2024:[6.0] "I guess I am on my own here but I still don't see it. At one point I had him a 10 not gonna lie but because he was very consistent in the ring but he was never a good speaker and I don't see those improvements everyone speaking about. I don't find him funny neither"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TheOneKnowsNoOnewrote on 11.06.2024:[10.0] "Greatest underdog of decade. He is great in ring & awesome with mic. He is a complete wrestling package . Everything he was involved with since the bloodline storyline turned to viral. Hope to see him as a world champion!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Okaro143wrote on 06.06.2024:[10.0] "One of NXT's best alumni and one of the best performers in WWE History. Sami Zayn is the total package capable of cutting amazing promos and giving the WWE Universe amazing matches but he has been severely underutilized in the WWE. He reminds me so much of Bryan because his character work is so good. He can pull off any character whether it is a heel or face. But personally I think that WWE needs an underdog hero that the fans can believe in and I believe Sami could be that guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Pigeon Scratchwrote on 29.04.2024:[10.0] "Such an underrated performer when it comes to mainstream wrestling, being such a standout and one of a kind from the Indies. An all time babyface, and genuinely such an amazing person outside of the ring. Genuinely I think the only complaint I have about him is how he has been booked in WWE for the longest time, outside of his work in NXT. He just never fit in the roles that he was given, up until The Bloodline storyline and pretty much everything since then, because now he's being used fucking excellently. He's charismatic, funny as hell, but also can be very serious if needed. He's genuinely one of my favorite sellers, and he's damn solid in the ring too. Also, he's such a positive influence both in the business and out of it. His work in Syria alone is a prime example of that."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CatboyMathuswrote on 26.04.2024:[10.0] "The perfect performer. There only are a few better wrestler than this guy and there probably is even less people that are as versatile as he is, he can do the comedy bits with perfection (his match vs Knoxville at Wrestlemania is the best comedy match EVER) and he can be the guy on which you put a championship because yeah, he deserves it. He puts so much effort in his work, he does so many good spots by matches and he steals the show virtually EVERY time he is in a show. This dude is litterally one of the 10 best wrestler of the millenium and you can't change my mind"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TurdFergusonThe2nd1wrote on 25.04.2024:[5.0] "Sami Zayn is one of the most overpushed acts in wrestling history. His characters are this: generic luchador, underdog that takes 55 finishers and keeps going, and obnoxious cowardly heel. The last one was his most suitable role and the Johnny Knoxville feud is where the bulk of my positive approval for this guy comes from. Also the fact that he hasn't been a main roster world champion because he belongs in the midcard. Should he be ending the longest Tag Team & Intercontinental Title runs in history? Not in my world, but it's not my call. Him standing up immediately after taking the 3D at WM39 angered me because his physique is just as average and grotesque looking as my own, should I be dethroning Austrian cyborgs & Samoan street twins? I shouldn't be because who am I? Zayn has been overhyped since debuting in NXT and is significantly lesser than Kevin Owens, who is really just Tommy Dreamer with a flashier moveset. One of the main driving factors of me not watching the show weekly anymore is because of people like Sami Zayn and I can't rate him lower because of administrative policies and my passion for this being diminished. Do not silence me or it's a conspiracy (Get it? That's a character he had)."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: arisenbywrote on 21.04.2024:[9.0] "[9.1] An all-time underdog babyface even if you were just to look at his ROH run. Sells like his life depends on it, was the best part of the incredibly overlong bloodline story, great moveset, and can always be trusted to have a good match with just about anyone."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Catgirlrobinwrote on 17.04.2024:"One of the most over guys in WWE of the last 10 years from NXT to the Main Roster and arguably the best work of his career has been his Bloodline - Present as of writing run"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: JediSaiyanMaster1203wrote on 16.04.2024:[10.0] "I've been contemplating this for a long time whether I wanted to go as far as categorizing Sami Zayn as an all time favorite (aka "10") or not. But the more I think about it, I can't give you a reason he isn't. Sami Zayn might be the ultimate underdog and white meat babyface in history, up there with guys like Daniel Bryan, Jeff Hardy, Ricky Steamboat, Sting, etc. He was entertaining and amazing as El Generico in Ring Of Honor, having great matches with/against Kevin Steen, doing crazy spots and always playing the babyface role to perfection. Goes to WWE, starts out in NXT, and becomes the face of NXT during his tenure. Having great matches and feuds with the likes of Cesaro, Neville, Shinsuke Nakamura, Samoa Joe, etc. Then he gets called up to the main roster, and has a fairly good run with a few flaws here and there. But the positives outweigh the bad if you ask me, those being his feud with Kevin Owens, his conspiracy theorist gimmick, the Honorary Uce gimmick, teaming with Kevin Owens, chasing after the Intercontinental Championship. Overall, Sami Zayn is gonna go down in history as a legend when his career is set and done, one of the ultimate good guys in wrestling with a big catalogue of great matches, promos, feuds, etc. An incredible babyface, underrated promo, great wrestler, even better storyteller, just as good as a seller, he has it all!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: xTheRevoltingBlobxwrote on 15.04.2024:[7.0] "Sami Zayn isnt Mick Foley, yet that is who probably who he most closely resembles when discussing why he is over and why his rating is so high. Like Mick they both wore a mask before before ditching it to be just a bearded dumpy guy with mousy hair that people love to root for. Both Sami and Mick are known for their mic skills, character development, and storyline emphasis in their performances. Indeed, Sami is above average on the mic and is completely at home telling a story with this art form. However, while Mick Foley's introspective searches for deeper meaning behind his wanton violence as both the Cactus Jack and Mankind characters was pioneering, it comes off as bloated and overindulgent with Sami. What is arguably considered his best work during the Bloodline story arch was simply a heavy handed re-hashing of Mick's role as spoiler to the Rock's cool persona in their "Rock and Sock Connection" pairing. For the length of the story arch the formula was the same; the bloodline attempted to project theire power as a stable through their somber backstage tribal coucils or in-ring promos and Sami would inevtiably undercut Reigns leadership with mocking loyalty. Later, Sami would implore the viewer to take it seriously when he had his big close up, when it was time to reveal the true meaning behind his goofy interjection into their family; he was helping them out of an abusive relationship. Its great writing if you like the more serious side of Adam Sandler's filmography, the sad clown. He's not a bad worker by any means and deserves a higher rating than most on his work rate alone, but, his skill lies more in his ability to take moves than it is to give them. Like Foley he sells very well, absorbs most of the bumps in a match and is incredible at putting over his opponent in that way. However, at his best offensively he's a PWG showcase guy; all homage and high spots. Put him in a match with Owens, Adam Cole, or anyone else of that style and he's probably going to give you a good show if you'd like to see someone kick out of 4 consectutive Canadian Destroyers. Ultimately, Sami has a lot like Mick but doesnt touch the heights of Mick. There is no Hell in the Cell equivalent for Sami, there is no infamy of a Kawasaki Deathmatch for Sami, and certainly not a World Championship like Mick."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TripleCrownwrote on 08.04.2024:[9.0] "El Generico, Sami Zayn, whatever you want to call him, has been one of the best wrestlers in the world for the past decade. The man can do it all, from a comedy standpoint he's very good, but he can also be a fantastic babyface that the fans can get behind. Has shown time and time again that he's on the same level as the top guys within WWE, not sure if they'll ever give him a run as WWE Champion or WHC but time will tell. Fantastic asset to have, so smart in-ring and so good in-ring, you couldn't ask for anything more."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: cal9099wrote on 07.04.2024:[7.0] "I never saw his early indies or ROH work but for years I've seen him in WWE be nothing more than a solid midcarder. His feuds with Owens have been really good, but outside of that he's struggled mightily to stand out. Good comedic work with the bloodline, but very little in terms of serious feuds or memorable promo work."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: BMWrestling17wrote on 07.04.2024:[2.0] "Sami Zayn is one of the most overrated wrestlers of all time. This guy isn't funny, he tries to be likeable but fails misserably. He's a cringelord at best. Regardless of his skills in the ring which he has, he's nothing but a low-mid card AT BEST. He should stick at the indies."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: WhatSayYouwrote on 27.03.2024:[9.0] "A generational talent, well respected by independant fans, well respected by mainstream fans. His run with Kevin Owens in ROH is some of the best work I've seen, then of course his work with the Bloodline in WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ismarizviwrote on 23.03.2024:[10.0] "One of the best face wrestler in the world.Sami Zayn prove that why he is to belong that high levl.His involvement in Bloodline make that story a total cinema .His run in nxt is slso very memorable.His main roster debut against john cena is also one of best matches for us title.His love and hate with kevin is also very entertaining.Overall a perfect 10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Hazelyzewrote on 15.03.2024:[10.0] "Possibly a top 5 wrestler/character for me outright. He has this ability to make me believe when he's in there, that he's got a chance, even when he loses. His selling is immaculate, his character as a face AND a heel is wonderful. 10/10 wrestler. Helps that he's an amazing human too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: jjcharg77wrote on 12.03.2024:[10.0] "a true work horse and all around amazing human being/wrestler. I know people think of him as great but I feel like that is even underrating him. hes essentially the bar for any great wrestler and someone that up and coming wrestlers should take note of. he carries himself well and always delivers in his matches/promos. hes truly one of the greats of this era"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: gabsdaverowrote on 10.03.2024:[10.0] "All round, the best wrestler of all time. This dude is a ten out of ten in absolutely everything, can be the best heel or babyface in any company, any era of pro wrestling. People do not look at him that way bc of his looks."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Odinohkawrote on 10.03.2024:[8.0] "Sami is entertaining, balanced, constant, funny, kind and has both a very pleasant personality and at the same time a developed acting allowing him to embody each iteration of his character. His in-ring always hits the mark, his connection with the audience is incredible, whether you're a fan or not, it's inevitable to support him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: mxkamiwrote on 11.02.2024:[10.0] "Woo, boy... Hot take time? Hot take time. This man, be it as Sami Zayn in the largest wrestling company in the world, or where he truly shines... As El Generico on *pick literally any indie he's ever done*... This is the best white-meat babyface of all time. And it's not close. He's so lanky that his sells and oversells look FANTASTIC on power moves. He doesn't speak other than "OLE! " as Generico, so his use of his arms and the rest of his body to convey emotion is TOP NOTCH (see also Abyss in TNA, especially his match with AJ at Lockdown '05). As Sami Zayn, he became the hottest babyface not named Cody Rhodes in WWE, and made the Bloodline storyline so fantastic. The turn on Roman at Rumble, into his big babyface return in Canada, to the match at Chamber, to Mania where he won the tag titles with his shoot best friend. Just, peak babyface. In ring, great at selling, great at reacting to the crowd and giving what is needed, great facials and little things that really give his matches and moments just that much more shine. If you're a Generico/Zayn hater... Find his two TNA tryout matches. Where he did the f***ing Orange Crush to Amazing Red IN HIS FIRST TRYOUT MATCH, and his second match, where no one really knew who he was but he absolutely got the heat up on TJP, got the crowd behind him, and hit TJP with one of the cleanest Brainbustaaahhhhh! finishes I've seen from him into a diving pin where the crowd for a dark match is hot like a main event. Magic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Danylopez016wrote on 11.02.2024:[10.0] "Incredible wrestler and doesn't seem to be slowing down. He's been on the run of his life these last 2 years and I would love to see him world heavyweight champ this year. He deserves it. Sami Zayn is just the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MaximilianBernerwrote on 27.01.2024:[4.0] "Ich kann den Hype um seine Person und den Beliebtheitsgrad beim besten Willen nicht verstehen, für mich vorallem optisch nicht das was ich mir unter einem Professional Wrestler oder Athleten vorstelle. Ich kann mich keineswegs mit ihm oder seiner Arbeit identifizieren und es fehlt ihm meiner Ansicht nach einfach an Ausstrahlung. Im allerbesten Fall ein schlechter Robin mit Cheerleaderqualitäten und einem großen Defizit an Kredibilität. Auch wenn das Internet ihn liebt möchte ich gerade vor den Augen der Main Stream Pop Culture nicht von ihm repräsentiert werden."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Quick Manwrote on 13.01.2024:[9.0] "The ultimate underdog of WWE, a beloved fan favourite and the perfect foil for the Bloodline saga. You just can't help but love Sami Zayn."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: thedman0310wrote on 12.01.2024:[10.0] "The best white meat babyface of the 21st Century. Sami has a natural likeability to him, and that combines perfectly with his top-tier selling to make an audience sympathetic towards him. He can also wrestle like a motherfucker. Some of the moves he does are stuff straight out of Fire Pro's Move Creator. I don't know why this page says he was El Generico, Sami was one of the orphans at Generico's orphanage."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Seth Pilgrimwrote on 12.12.2023:[10.0] "This guy has everything to me: charisma, humor, selling, in-ring skills. He can work with anyone and make both of them look good during the match. I also like that he's not the typical McMahon's guy, like all muscle and tan. What's confusing me though is that CageMatch states he's El Generico when we all know he's not"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: djones06wrote on 20.10.2023:[7.0] "Meticulous in ring g worker, has a great ability to be empathetic and to enhance a story. Best when across from Owens either In a tag team or as adversaries to provide contrast. Similar to other upper card players who are very good all around hands but not the top guy of the company."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: felixshanewesternwrote on 04.10.2023:[10.0] "My favourite wrestler of all time. Sami is an absolutely incredible worker, and has had countless classic matches. Not only this but he is a great promo and character. People probably underrate him because the WWE didn't use him very well for most of his career. He also runs a charity, and seems like a really nice guy. Without Sami I don't know if I would like wrestling as much as I do."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CCSMIT22wrote on 04.09.2023:[7.0] "Is he bad? No. But I just don't get the hype that some people have for him. I don't see him as a singles star at all. All of his great moments have come from tagging with or wrestling Kevin Steen. He's the definition of a fine hand, just a decent wrestler who isnt' good enough to get to the top."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: celticinvaderwrote on 06.08.2023:[9.0] "Perhaps the most naturally charismatic and likeable dude on the current WWE roster. Been involved in so many excellent storylines, and is currently the reason Bloodline has been as good as it has been. Also a fantastic wrestler to boot, with great in ring performances and such wonderful selling ability."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Gold Fistswrote on 24.07.2023:[9.0] "An extremely talented performer. He is absolutely incredible on the mic and has one of the best movesets in the ring. As of late, he has been more generally praised for his character work, which is another way of saying... he can perfect any role he plays. Honorary Uce was amazing, El Generico was good, Zayn can really do it all. He's very close to a perfect 10 (as in 9.75), but I'll still have to round him down in this case because a 10 is a 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TheEnigmatic1wrote on 23.07.2023:[10.0] "Sami Zayn Is One of the most complete professional wrestlers of the modern era, From El Generico, To NXT, TO the main roster Sami has had some of the most memorable matches and segments, He had a time from 2018-2019 where He was in one of the worst sport with his feud with Lashley and such, But from 2021 to 2023 He has had some of the most high profile matches and feuds Like his IC title storyline, His feud with Knoxville, and of course the bloodline this man has been golden, And of course you cannot mention Sami without Kevin and by god the greatest wrestling rivalry of the last 20 years without a doubt, Banger after Banger, This man deserves a spot in the hall of fame with in like 20 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Loghan Morescowrote on 18.07.2023:[10.0] "One of the best superstars in wwe history, a sensational and likeable wrestler a perfect babyface and a interesting as a heel, works perfect in every role they ever gave him and amazing inside the ring, he is smooth and agile and can connect with the crowd."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Wrasslinfan619wrote on 07.07.2023:[10.0] "I added A comment to my KO rating and I'll add one here. This past year everyone has jumped on the Sami Zayn train, and for good reason. Because Sami Zayn is one of the best all around talents much like Kevin Owens of this generation and people just realizing with him breaking the bloodline and then eventually quite literally breaking them apart that he should be A main event guy is weird, about time he's A main event guy also. He is so deserving of the wrestlemania main event he got, but enough about this past year lets talk about El Generico. El Generico was one of the most beloved indie wrestlers for good reason, considering this site has them as 1 person I will pretend they are the same. El Generico and as mentioned in KO's review, and his team with Kevin Steen was awesome. They had some classics with the briscoes and age of the fall among others, others including the young bucks as well. Really I don't have much else to say except this man was also brilliant as the heart and the soul of NXT before Johnny Gargano could claim that nickname, ole ole ole all hail the uciest underdog from the underground."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: crs285wrote on 23.06.2023:[8.0] "Sami Zayn/ El Generico has a great mind for the business. He is hilarious and great on the mic and very good in the ring. He has amazing charisma and fits in well with the crowd. In WWE's main roster he is finally finding his footing after some bad booking and gimmicks."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: danzitorockwrote on 19.06.2023:[10.0] "Sami Zayn is one of my favorite wrestlers of all time. His charisma is incredible, and it took WWE a long time to realize that and give him the platform he deserves. In the ring he's great, and he has a unique connection with the crowd, in line with the underdog persona that he works really well. He was amazing in ROH, NXT, and finally now he is in WWE. Gigantic talent!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Giantfan1980wrote on 07.06.2023:[6.0] "Solid enough in the ring, but I am kinda meh on him as far as when we are talking big time main eventer. Good for the upper mid card and chasing the IC/US title guys."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CoachWwrote on 17.05.2023:[10.0] "I wasn't hip to the artist formerly known as El Generico until he made his arrival as Sami Zayn in NXT. Sad to say I was late to the party. This guy is great in the ring and it's been a joy to watch his character continue to grow. Seeing him finally elevated to the main event over this past year has been a joy, and I hope he remains toward the top of the card moving forward."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mutant Ninja Taneliwrote on 05.04.2023:"What a performer! He was my favorite in the indies and he is my fav in WWE! Wrestlemania tag this year was MOTY."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: KKeanelwrote on 02.04.2023:[9.0] "Perfect underdog and legitimate fighter with soul and passion. Maybe he never was a material to be wrestling all-time best, but in every kind of work where he was putted - he did brilliantly. Incredible stories in PWG, ROH and know big moment on Mania makes this guy a big deal for fans."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: kewf1988wrote on 05.03.2023:[9.0] "Sami Zayn may not have the "look", but he has everything else in that he is an extremely good wrestler with really good mic skills and he's very charismatic. Not many people can go from jobbing to Johnny Knoxville to bring a major player in the main storyline in less than a year."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ChrisPrattAsMariowrote on 04.03.2023:[9.0] "One of the two best current day babyfaces in wrestling. An underdog on the level of Daniel Bryan during the Yes movement. On the indies and in NXT, he was a great character and a better worker. His heel run in WWE was sadly not as great as it could have been until he got with the bloodline and was comedy gold while being able to tell a masterclass story. Only time will tell with what WWE will do with him now but he'll forever be over from the looks of things. My favorite match of his is him and Steen vs the Briscoes from ROH Man Up."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: greaterdalewrote on 03.03.2023:[10.0] "This man is an absolute legend and the only person who doesn't know this is Vince Mcmahon. Triple H seems to hold him in a higher regard clearly, but not putting the title on him at Elimination Chamber 2023 was an absolute blunder. Like who cares about how many decades Roman Reigns holds the title for the man has had them long enough and I'm not even a Roman Reigns hater. Regardless he's over as damn hell, and has had countless classic matches in NXT, the indies, and even on the main roster of WWE where for years he was booked by someone who just didn't get him. This was written before Wrestlemania 39 so hopefully they reward this man for carrying WWE on his back for the last many months in either some sort of major title or at least a fat wrestlemania check. He's an easy perfect 10 and could carry any promotion ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mcbolskywrote on 26.02.2023:[10.0] "He's in the middle of wrapping up the greatest WWE story of all time. He's an amazing face and the reaction he got at Elimination Chamber was absolutely insane. The moment that he and KO stand tall with the tag belts at Wrestlemania will be one of the greatest moments in wrestling history"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: lukk4zwrote on 20.02.2023:"one of the most technical wrestlers, his moveset is amazing, he does good promos, and his heel turn in 2020 just made him more good. 10/10"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Ttcafewrote on 31.01.2023:[10.0] "One of the Best Promo i've never see with the Bloodline and Kevin Owens. he act so perfectly he deserve an oscar everytime he is in the ring. ABSOLUTLY STUNNING! 10 and he deserve it!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rignowrote on 26.01.2023:[8.0] "I don't know why this has Sami Zayn and El Generico together since they're completely different people, but this is a review of Sami. His Honorary Uce gimmick may be the first time some people heard of him but I first saw him when he was on NXT facing Cesaro in a 2 out of 3 falls match. No matter where or when you saw him you know the amount of talent this man has. In my humble opinion he should win the wwe championship by 2024."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Brainbreakerwrote on 21.01.2023:[10.0] "Großartiger Seller, mal sehen was noch aus ihm wird... EDIT (09/2013 - five years in the making): Immer noch ein großartiger Seller und überhaupt ein total verrückter Performer, wie man ihn selten sieht. Kommt auch ohne Maske gut an; NXT crowd geht immer nutz! Allerdings habe ich ihn noch zu wenig am Mic gehört. Wie es ihm bei Raw oder SD ergehen wird, ist außerdem unklar. Aber ausstehend auf der großen Bühne muss er sich beweisen! EDIT (04/2016): Zayn traue ich zu, die Lücke zu füllen, die Danielson in der WWE hinterlassen hat: seine Körpersprache wird immer perfekt von der Kamera eingefangen, sodass er jedem Match allein dadurch eine gewisse Bedeutung verleihen kann, selbst wenn es gar keinen Aufbau dazu gab (wie zuletzt gegen Nakamura oder Styles). Er wirkt extrem selbstsicher am Mic, ohne ein Rock zu sein, was auch gar nicht nötig ist. Denn die Leidenschaft, die er an seine Fans vermittelt, fügt sich im Gesamtpaket einfach zusammen wie Legosteine. Look passt auch, wrestlerisch brauch ich hier wohl nichts hinzufügen. EDIT (01/2021): Nach einigen Jahren in der Midcard hat Zayn nun auch vor dem Mainstreampublikum den Character gefunden, der wie die Faust aufs Auge passt und mit dem sich die Fans identifizieren können - nämlich Reigns Lakai, der dem Bloodline-Leader die Show stiehlt. Dabei ist er ganz anders als damals bei NXT, aber trotzdem so effektiv als Schauspieler. Wahnsinn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: benh2wrote on 12.01.2023:[8.0] "Sami Zayn has a lot of strings to his bow. His initial career as El Generico was decent enough on its own and then he just continues to reinvent himself in WWE. The NXT run really showcased what a great in-ring wrestler he is and then he hit the ground running on the main roster. He did have a bit of a lull but that was down to the booking and now he's tearing it up in the Bloodline, again showing another of his qualities, his promo work. Unfortunately a combination of his size, good promo ability and comedy role means he's pegged a bit as a jobber to the stars and will probably never win the big one."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Bullshark1wrote on 11.01.2023:[9.0] "Sami Zayn is everything you'd want in a comedy wrestler. He's talented in the ring, and his match at NXT Takeover: R Evolution against PAC is proof of that. His promos are absolutely beautiful, and extremely memorable. He's also hilarious, and can put over faces like a champ. His prime was definitely either his run in NXT or his run in the Bloodline, because of how he impacted both brands (yes, I know the Bloodline is a stable, but you know what I mean). Sami will definitely be a Hall of Famer in WWE, even if he doesn't win another title."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: WhatIsLooveeewrote on 06.01.2023:[10.0] "Sami Zayn was the best thing to happen to WWE in 2022. Zayn's talent was visible even before 2014, when he was active in the independent scene and especially when he confronted his eternal friend-enemy Kevin Steen, but he really showed up in WWE. He went from the heart and soul of the NXT, which everyone wanted to root for, to an honorary member of the Roman Reigns's "tribe", in which he periodically overshadowed even the leader. Sami is a genius, he's an amazing in-ring performer and also a very charismatic speaker, segments with which are marked "must see" and a person who can tell a good story in a match. He was good as a babyface and at the same time he opened up just as well as a heel, which is a unique phenomenon. 10 points."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: eltetechoriwrote on 14.11.2022:[10.0] "I love Sami and his way of acting, also in the ring and in promos without a doubt he is great. A jewel that WWE has without a doubt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: boraselvi7wrote on 10.11.2022:[7.0] "I don't care. I don't care. I don't care. I don't care. I don't care. I don't care. I don't care. I don't care. I don't care. I don't care."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ViserysToddwrote on 04.11.2022:"Sami Zayn is one of the best entertainers in the business today. His character work is second to none."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MichaelB137182wrote on 02.11.2022:[10.0] "This man is good no scratch that this man is great. Keep an eye on him cause best believe 10 years from now, he gonna be in the same conversations with the likes of Bryan Danielson, the Kenny Omegas, Shawn Michaels the ELITE of Wrestling watch this space watch this space."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Wrestling Foreverwrote on 22.10.2022:[10.0] "Schon als El Generico war Rami der Wahnsinn. Seine Fehde mit Steen zählt sicher zu den besten und brutalsten Fehden der ROH und Wrestling Geschichte. Er macht immer Stimmung die Ole Ole Chants sind auch bei NXT absolut angekommen. Trotz seiner Größer ist er ein super Techniker und High Flyer dazu ist er sehr charismatisch. Was für einen harten Super Brainbuster into Turnbuckle (seinen Brainbustaah! ) er immer früher gezeigt hat unglaublich. Es wird bald Zeit das er in den Main Kader kommt. Edit: 7. 08. 2017 Schade wie er aktuell bei der WWE behandelt wird aber er ist schon etwas Multi Kulti. Als El Generico verkörperte er einen einen Mexikaner mit schlechten Spanischen Akzent und nun halt einen Kanadier mit syrischen Wurzeln. Französisch kann er auch. Edit 25. 04. 2020 Wird er nun endlich auch im Main Roster so richtig stark gepusht. Wenigstes hat er endlich mal den WWE Interc. Titel. Edit 21.11.2021 ich bin ja gespannt wie lang noch sein WWE Vertrag läuft. Er hat immer noch nicht verlängert. Edit 22.10.2022 ist als Teil der Bloodline so unterhaltsam. Wie der Crowd auch Sami inzwischen hasst."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: BESTBOUTBOYwrote on 18.10.2022:[10.0] "zayn is one of the best wrestlers on the planet to day. probably the closest thing we have to a modern day eddie guerrero mixing heelish tactics with a genuine babyface spirit and unique innovative moveset. his run as generico showed his physical comedy and dynamic in ring style. his NXT run showed a more serious babyface side adapting his style to the fed. the great liberator adapted his el generico comedy chops to a heel persona. now he is combining his comedy heel persona and courageous babyface persona together as the honorary use spicing up the feds top act. slowly folding his fantastic indy/NXT moveset in to the more strip backed character focused performer that the pandemic era ushered in. zayn has had an array of great matches in many styles across a Highley prolific career and yet watching his work in the last few months one cant help but think his best is yet to come."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: xnviuswrote on 13.10.2022:[10.0] "an absolute gem. he's amazing at everything he does. El Generico. his ROH & NXT run. his feud with KO. he's a comedic genius. he's the most over guy in the WWE. he's about to have the babyface run of his career. how can you not love this guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: AlDente01wrote on 07.10.2022:[9.0] "I associate Sami mainly with his time at NXT. But that Sami is no more. Will Old Sami ever come back? Maybe. But New Sami is the highlight of the blue show. Jey-Sami's coverage is one of the best reasons to watch SmackDown regularly. I'll risk saying that Zayn is at the peak of his career right now. The downside is that this has not always been the case, Zayn has had a clear relegation in his career - for example the team with Cesaro and Nakamura. Despite his great skill and charisma for the old WWE management, Zayn was, at best, a supporting figure. It will turn out as it will be now."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Makai Clubwrote on 02.10.2022:[8.0] "Without a doubt one of the best wrestlers of the 2010's. Very ingenuitive and has a great mind for business. He has shown his versatile both in the ring and in character work. He was able to turn a Masked Luchador who was a mute into a beloved character, full of emotion. He is able to turn from the the best babyface to a great heel. Having the ability to be likable and funny to smarmy and arrogant at a drop of the hat. He is an amazing wrestler who almost always has amazing performances. Countless great matches with KO, Nevile, Braun Strownman, Nakamura, Chrispthor Daniels, Chris Hero and others. For some reason he has his haters and isn't seen as a main eventer despite having all the tool that you should need but to me, he is a worldclass talent."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Flame233wrote on 20.09.2022:[9.0] "I love El Generico, In WWE he's a real workhorse, and went through a lot in this company. No matter the gimmick, no matter the time, no matter the role, you can see, he is always giving his best, and I always find myself rooting for him. He has uniqe fighting style, and a fine mic work. I consider him a midcarder, but I would be more than happy to see him in the bigger picture, and see what he can provide us with, and I can guarantee you, it'd be entertaining."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Irishwrestling2000wrote on 31.08.2022:"Loving Sami Zayn can't wait to see what the HHH lead WWE has in store for Sami fantastic mic work and character always been a really good worker."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Shadow Explosionwrote on 10.06.2022:[10.0] "If you had to ask me who is one of the best wrestlers of this Generation, Sami Zayn would absolutely cross my mind. His ability to draw sympathy as a never say die babyface is only matched by Tsuyoshi Kikuchi, His in-ring style is not just lucha libre based but also has some puro elements thrown in. His storytelling and psychology is beautiful to watch and makes a match feel so real. He's also really charismatic as shown by his weird as fuck heel run he's been on lately, which has shown his promo ability. And to conclude you can tell he's a real nice and stand up guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: zags7000wrote on 05.05.2022:[9.0] "He was great in ROH and NXT and I think he's had some solid moments in WWE but clearly they haven't utilized him to his full potential. He's great as a babyface and one of the ultimate underdogs that has a great connection with the crowd. I think his heel run has been impressive as well though and the current conspiracy version of him is great. He's great in the ring as well and makes a lot of guys look good. Edit: His current heel run has been even more impressive and his comedy work shouldn't go unnoticed. He could be used better but he has provided many moments that many will remember for a long time. His match with Johnny Knoxville comes to mind as a very entertaining match that had no business being as entertaining as it was and that's a testament to Zayn and his talent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MorbidAxiswrote on 06.04.2022:[6.0] "I know I'm in the vast minority here, but I've never really been a fan of Sami's work, even pre-WWE. It's not to say he's bad, by any means, I just never gravitate to the screen when he's on like I do for so many other wrestlers."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CaptainCharisma1997wrote on 18.12.2021:[10.0] "One of the best performers in the world. Incredible babyface, possibly the greatest I've ever seen, excellent in ring psychology, great on the mic. Grossly underutilized and wasted for the past five years, and likely for the rest of his career if the news of him re signing with WWE is true."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Dy1789wrote on 24.10.2021:[9.0] "Sami had such a great NXT run I thought he would be the next great underdog babyface. He was on that path until his injury his first night on Raw. Turns out he makes a very effective heel. He's wonderful at this paranoid conspiracy theorist character. He's a great talker and great in the ring. He's not a main eventer but can have a main event program with the right face. I really enjoy Sami Zayn."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mutant34wrote on 16.10.2021:[10.0] "any treatment given to Sami by the WWE should be considered criminal. I consider him much better than Kevin Owens and I think he could deliver as much or even more than his friend. If this guy would rather stay out of WWE I believe he could become a successful junior heavyweight on NJPW and would have prominent positions in every promotion in the world. Leaving WWE is the best thing for him now, let's face it, if Cardona got a push, so can he."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: kfztkfzt2021wrote on 14.10.2021:[10.0] "I have a lot of respect for sami, both in and outside of the ring, a kind soul and A GIFTED wrestler, one of the most talented right now, impressive in each and every wrestling area, technical, striking, highflying, selling and let's not forget his Amazing mic skills.The charisma this man has in nearly untouchable, he knows how to deliver fantastic matches and how to make the crowd love or hate him, cheer or boo him, he is a STAR, genius wrestler.I hope wwe treats him better, all of his title victories and championships run were underwhelming, he deserves way more than what wwe gives to him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TommyEndMalakaiFanwrote on 04.08.2021:[6.0] "I like his in-ring work and his conspiracy theorist gimmick but really can't get behind him with how garbage booking is with him. He has won 2 belts since being in NXT and they were both short reigns."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Forerunnerwrote on 01.08.2021:[9.0] "I really miss babyface Sami. So few can be a pure babyface like he can, but still, he's proven he can play heel as well. That's no surprise given he's such a good performer, but he might be one of the rare wrestlers that is much better as a babyface."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: robrob77wrote on 30.07.2021:[8.0] "Sami is a fantastic performer and an excellent talker. His character work is always superlative. However, WWE Booking is the bitter rival of Sami"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Kungwrote on 21.06.2021:[9.0] "One of my favorite all-time babyfaces both in ROH and WWE. His run in NXT ranks among my favorites, and although he's been the recipient of some sour booking on the main roster, his talent as a pro wrestler has shown through more often than not."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: mjs2212wrote on 23.05.2021:[9.0] "Sami Zayn is a great wrestler! I've always believed him to be the true heart and soul of NXT because he is a natural babyface. The crowd was (is) always so into everything that he does and it's a treat to watch him perform. He's got a great moveset, he's good on the mic, and his matches (especially with Owens) are always fun to watch. As strong of a babyface as he is, I'm not the biggest fan of his heel character. He makes it work because he is a true professional, but it feels wrong to boo Sami for whatever reason. His moveset is also more limited as a heel, which effects his matches nowadays. But aside from that, he is a great worker and a true workhorse."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The A-Listerwrote on 08.05.2021:[8.0] "He's a great wrestler but WWE did horrible job with him. He delivers his gimmicks but the problem is his gimmicks are awful and don't let him progress."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: mjp28wrote on 28.04.2021:[1.0] "To me, this guy epitomises the exact type of pro wrestler thats driven away the mainstream/casual fan in their droves, and will likely bring the demise of pro wrestling as we know it. He has the look of someone who has never set foot in a gym, move set of a someone who can't lift their own bodyweight, and persona of a super-privileged 12 year old girl. Whether he is playing this super-privileged 12 year old girl, or just being himself, he really just tries way too hard and bitches and moans far too much. It would be great if he'd just chill and wake up to the fact that the world doesn't revolve around himself, because wow does he make you want to punch him in the face. Some might say that's just some great heel work right there. Except its not if it makes you change the channel and---worse---join the mainstream/casual fan exodus from pro wrestling."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Divus Rolexuswrote on 25.04.2021:[10.0] "I want to see El Generico back because he was so damn cool in ROH. He has been well used in NXT but for 3 years in the Main Roster, they never did something great of him, but his heel turn refreshed his character and his alliance with Nakamura and Cesaro is great. WWE shouldn't have stripped him of the Intercontinental Championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: michmoose21wrote on 26.11.2020:[10.0] "Sami Zayn is one of my all-time favorite babyfaces. His heel work isn't totally for me, but I wouldn't call it bad. I wasn't watching during his El Generico days, so this rating is based on Sami Zayn. His NXT run as the lovable underdog babyface was AMAZING. He was so over with the crowd, and wrestled his ass off. I wish he could've been as successful on RAW and SmackDown as he was NXT, but injuries happen. I love this dude."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Dennisiztheman02wrote on 01.11.2020:[10.0] "Sami Zayn is one of my all time favorites as he is great in the ring and incredible on the microphone. His run as El Generico was also fun to watch and I'm glad WWE is actually pushing him after years of mistreatment. Sami makes the best out of bad segments and feuds with his microphone skills. Plus, he can fit in the role of the babyface underdog and chicken shit heel pretty good. On top of that, the guy is helping people that are affected by the Syrian Civil War and his humanitarian efforts are amazing. Sami Zayn is an amazing guy and I'm glad WWE is finally giving him a push."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: BlakeFR37wrote on 26.09.2020:[10.0] "El Generico was one of the best wrestlers in this industry. I like Sami Zayn when he was in NXT, but I think the MR destroy him. But he's still a 10 as my pov."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: znezaaljwrote on 17.08.2020:[10.0] "This rating is as El Generico. He had some of the most brutal matches I have seen in PWG and ROH and his friendship and rivalry with Steen were legendary and: what a surprise, WWE tried to replicate it. As Sami Zayn probably a 6 and because of his NXT run."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: mjboyerwrote on 15.06.2020:[9.0] "I could never get behind the El Generico character, but I love Sami Zayn. The WWE has done him well."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: shittylittlerasslinwrote on 02.06.2020:[8.0] "If only he was the great, great wrestler (he's good to my eyes) as he achieves greatness with the microphone (who would guess it after witnessing the rise and fall of El Generico? ) and with his humanitarian values. Essentially, a superb human being, an awesome entertainer and a good wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Caaswrote on 05.03.2020:[10.0] "Pretty good wrestler, all-round. I was a big fan of Sami Zayn's mentor El Generico, and Zayn does well to emulate that long lost legend of the indy world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Iceqwrote on 09.10.2019:[9.0] "Zum Wohl seiner eigenen Karriere sollte er die WWE verlassen. Natürlich wird er das nicht machen und das auch vollkommen verständlich, denn er verdient so viel Geld ohne sich groß anzustrengen. Nur würde ich einfach gerne den Zayn aus NXT oder eben den Generico aus den Indys wieder sehen, der mit jedem ein klasse Match auf die Beine gestellt hat. Vielleicht geht er ja auch nach NXT wie Balor zurück und kann seiner Karriere so wieder einen Aufschwung verschaffen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TheV2wrote on 30.09.2019:[9.0] "From El Generico's indie days I didn't experience much more than his feud with Steen, but it already gave me the hype before his NXT debut. Sami Zayn's NXT run was probably one of the best. Amazing title victory followed up with the resumption of his rivalry with Owens and his match against Nakamura was an instant classic. Since the call-up it still went fine for him. He gets his moments to shine and he turns shit into gold. His missing title gold didn't stop him. He doesn't really suffer more from the uninspired long-term booking than other wrestlers. His heel turn was one of the best in the WWE history and unfortunately the WWE wants the antagonists to be weak, just to eliminate the last resort of challenge for their babyfaces. It's the usual upsets. However the biggest disappointment so far is the over-booking of Owens vs Sami without any development of their rivalry. However it doesn't change that Sami uses his opportunities and he manages to get something out of everything."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: KyleEnjoysWrestlingwrote on 09.08.2019:[9.0] "Pretty great in most every area that you can ask for, but he's not a Vince guy, so he's pretty much reached his ceiling on the main roster. He was one of the first real stars to get NXT to the next level. I was never the biggest El Generico fan from the indie days, but I appreciate how he connected with the fans & built his legendary feud with Steen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TechnicalWrasslinwrote on 26.07.2019:[10.0] "Man is all rounded performer with all different moves like half and half suplex blue thunder bomb Michinoku Driver 450 and Koji Clutch people say keith lees limitless look sami and kevin And Amazing tag team both all rounded and who does not like a package piledriver and brainbusta"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: PuroresuLoverwrote on 12.05.2019:[5.0] "Mediocre wrestler with no charisma at all. I really don't get why people like Sami Zayn so much, but don't get me wrong, there's some few matches that I enjoy, like the one against Shinsuke Nakamura. But still, he's nothing but a 5. 5/10."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: blackx18wrote on 02.05.2019:[9.0] "Micwork : (9/10) In-Ring : (9/10) Gimmick : (Heel-Gimmick) (8/10) Charisma : (8/10) (34/40) = 8, 5. Finde ihn immer noch konstant sehr gut, liefert schon seit Jahren bei der WWE sehr gute Leistungen ab, als Babyface sowie als Heel. leider sieht es gerade so aus als ob die WWE gerade nicht mit ihm vorhat, da er nur unbedeutende Promos hält obwohl er auch da abliefert."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ZestyZuluWarriorwrote on 10.04.2019:[10.0] "Sami Zayn tells a story unlike no other when he steps into the ring. He can play babyface or heel to perfection. He can be the ultimate underdog or ultimate chicken shit heel. When it comes to the mic he's solid and funny as well. Incredibly charismatic in every aspect and if it wasn't for his size I'm sure he would've been a world champ in WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ErycK24wrote on 08.04.2019:[9.0] "Sami Zayn gives his all every time he steps in the ring. That heart combined with his great in ring ability puts him in the same class as the great Daniel Bryan. Edit: Sami has been completely Misused on the WWE main roster and is treated as a joke."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: zephyrwrote on 28.03.2019:[7.0] "Very talented in-ring wrestler who can have tremendous charisma (as evidenced by being one of the most expressive masked wrestlers) but for some reason his hipster persona in WWE just doesn't let him show any of that."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Steamboat2511wrote on 05.12.2018:[9.0] "Sami Zayn aka El Generico ist ein echter Indy-Star gewesen. Diesen Status konnte er in der WWE so bisher nicht ganz halten. Technisch ist er natürlich herausragend, garniert mit exzellenten Highflying. Eine so innovative Moveset sieht man nicht alle Tage. Im Ring gibt es wenige, die ihm etwas vormachen können. Am Mic ist er durchaus stark und hat sogar noch Luft nach oben. Nun fehlt noch der ganz große Run und der Beweis, auch als Personality an der Spitze der WWE stehen zu können."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: KINGwrote on 09.11.2018:[9.0] "He's just amazing, a fantastic in ring performer, underrated talker and he surprised me with his heel work, it was actually very entertaining despite him being jobbed out, sad that he couldn't reach his NXT level, had high hopes for his SmackDown stint but he was back on Raw, in the end the WWE is just the wrong federation for a guy like him, I'll be happy if he wins an IC or a US Title, but even a Tag Title with KO."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TylerWhitewrote on 03.11.2018:[9.0] "Einer der besten Wrestler überhaupt aktuell. So unglaublich stark im Ring, aber auch was seine schauspielerischen Fähigkeiten, seine Mic-Skills etc. angeht ist er einer der besten überhaupt. Er kann sowohl Heel als auch Face perfekt verkörpern, wie es kaum ein anderer kann. Ich hoffe so sehr, dass er auch in der WWE seinen großen Push bekommt und wir irgendwann Owens vs Zayn im WM Main Event sehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: RatingsMachinewrote on 01.11.2018:[8.0] "Like a lot of wrestlers who did great in NXT, Sami hasn't come close to that level of success on the main roster, and like most of those wrestlers, it's for reasons having little if anything to do with his talent and ability."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MrFridayNightwrote on 20.10.2018:[7.0] "He's a fun character but I can't really see the appeal that everyone else gets out of him. Probably the most generic of the "indie" talents that the WWE has brought in, but still not horrible by any means."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Summerslam Fan 01wrote on 30.09.2018:[9.0] "Sami Zayn ist ein Top Gesamtpaket.  Im Ring sehr gut ich muss da immer an das Nxt Match von 2013 oder 14 gegen Cesaro denken das Weltklasse. Hat zwar Ausstrahlung aber nicht wirklich die eines Heels. Mit Kevin Owens im Team und als Gegner auch beeindruckend. Am Mic seit Cm Punk vlt sogar der beste Wrestler (Paul Heyman ausgeschlossen) , in jeder Promo überzeugt der Typ mich. Ich hoffe das jetzige Verletzung nicht das Ende von seinem Push ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: taabr2wrote on 14.09.2018:[10.0] "While WWE could only get him to work as a heel on the main roster, thankfully we all have his independent run and his NXT run to know that Sami Zayn is one of the best in-ring babyfaces in the world today. Solid on the mic and amazing in the ring Zayn is still a full 10/10 for me, easily the most underutilized guy in WWE right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Cal Vamwrote on 16.08.2018:[10.0] "Without a doubt the best babyface in WWE's modern era - aside from Bryan, who is also able to be a great heel and Gargano, who might end up replacing Sami in that spot, if he stays heel.  Also, his in-ring work is always very entertaining to watch and when put into a good story, he ALWAYS delivers great matches (Cesaro, Owens, Nakamura, etc.. ). A shame his heel turn didn't really work out. He's a natural babyface, but I'm sure he would do a good heel if there was better booking."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: jamzell00wrote on 16.04.2018:[8.0] "The wwe has tried their damn best to make Zayn an unlikable loser but he just won't let it happen. He is one of the best wrestlers in the world and a legitimately likable guy but the wwe won't let him do anything aside from him being a loser, not an underdog, and wanting to kill KO. I doubt it'll happen but hopefully by next year he is doing SOME THING"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Oliver95xwrote on 23.03.2018:[9.0] "Einer der besten im Ring mit einem sehr Interessanten Moveset. Er hat wirklich mehr und größere Chancen in der WWE verdient."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: fablexwrote on 21.03.2018:[10.0] "From an in-ring point of view, Zayn is a god. Capable of making 5 star matches with different superstars (Neville, Nakamura, Rollins, Owens... ) The fact that he didn't win a single title in the main roster in almost 3 years is an insult to pro wrestling, this guy deserves A LOT more. If we want to make a comparison, his path is similar to Daniel Bryan. And please WWE, stop making him be around Kevin Owens all the freaking time, it has become annoying."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: StonedCold420wrote on 14.02.2018:[8.0] "Definitely one of the most skilled workers in WWE at the moment along with AJ Styles, Seth Rollins, and Finn Balor. He still needs to add a bit of charisma to his promos for me to bump up his rating."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Klabauterwrote on 12.02.2018:[8.0] "Sami Zayn ist ein sehr, sehr guter Wrestler, der nun zeigt, warum sein Wechsel zu WWE derart gehypt wurde. Rückblickend muss man nun auch sagen, dass es eine sehr, sehr gute Entscheidung war ihm die Maske zu nehmen. Der Mann bringt eine Ausstrahlung mit, die ihn zu einem absoluten Topstar macht. //Update: 25. 04. 2017// Leider durch die Darstellung bei RAW etwas verbrannt, weswegen ich zwei Punkte abziehen, mal sehen, ob Sami Zayn bei SmackDown sein Potenzial wieder voll abrufen kann. //Update: +1 Punkt für die Darstellung an der Seite von Kevin Owens gegen die SmackDown-Authority."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CHN325wrote on 01.02.2018:[7.0] "Zayn is a really good wrestler and performer who is easy to like. He seemed to lose his footing on the WWE main roster for awhile but has since found it again with his buddy Kevin Owens."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Dragon Fighterwrote on 09.12.2017:[9.0] "Sami is a really great wrestler. Great in ring work, very underrated on mic. He has charisma, too. Awesome theme song that fits with his character. He is more natural as a face and has potential to be a big star. Sadly, vince doesn't see anything special in zayn. He involves in some of the best wwe matches in last few years, which proves how awesome he is."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TooSweetPhilwrote on 24.06.2017:[9.0] "Sami Zayn ist der unterbewertetste Wrestler der WWE zurzeit. Er ist der perfekte Underdog Babyface, kann dies durch quasi alles beweisen. Geniale InRing Skills, wunderbare Mimik und vor allem sein bravouröses Selling. Zudem immer wissend, wie man einem Match Struktur verleiht. Leider sieht die WWE anscheinend nicht das, was ich sehe."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: NikoWrestling7wrote on 04.06.2017:[10.0] "Arguably the best worker in WWE right now... He's a hell of a talent... He can work with anyone... his ring skills are great and his match with Nakamura is arguably the greatest WWE match in history... He's quite underrated on the microphone... His facial expressions are spot on.. This guy is more talented than those who are getting pushed (For Example Seth, Corbin and Braun).. He has a lot of charisma and he's got the crowd behind him... My only problem with Sami is his finisher... Helluva kick is good... But he should bring back the Super Brainbustah..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Blood Pumpwrote on 18.04.2017:[6.0] "The little guy who could can't seem to get into the good graces of the writing team in WWE. Maybe that'll change now that hes on Smackdown but first you've gotta let him have more of a personality beyond 'I hate Kevin Owens' or 'I'm an Underdog watch me yelp'. He was never a standout even in the Indy scene unless he was feuding or tagging with Owens. He was a damn good choice for a first match against a debuting Nakamura a year ago, and really his work in NXT in general was solid but hes just not that special."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: SeanDonwrote on 12.04.2017:[10.0] "One of my favorite wrestlers today, he already was amazing as El Generico in the indy circuit, but he got even better as Sami Zayn. I hope his career goes somewhere and who knows, maybe a world championship in the future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: warmongerswrote on 11.04.2017:[8.0] "Pretty hard not to say anything but nice things about Sami Zayn. His matches in NXT with Neville, Joe and Kevin Owens were awesome and he's probably one of the most likable Babyfaces on the current WWE roster.   His high flying does have the potential to go wrong, but much more often than not he's exciting, with some of the best fire ups going.   I dont especially like the Helluva Kick as a finisher, but it fits him well and he can hit it on anyone.   I hope his best moments are still ahead of him."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Yabbawrote on 10.04.2017:[8.0] "So far he's been poorly booked, almost like a jobber, and it's a real shame, from what i've seen, this guy puts on great matches, one of my favourites was battleground vs Owens. Hoping he gets to shine more in the near future."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Chekerwrote on 22.02.2017:[9.0] "An excellent babyface, wrestler and high flier. Again, another guy you could make a valid case for being the best in the world... but then WWE happened."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: umarthegreat15wrote on 22.02.2017:[10.0] "One of the best in the world today. He has it all. Charisma. Wrestling skills. Mic skills. I love watching him wrestle. One of the best parts of RAW, of which there are not quite a lot. Sami Zayn is one of my favorites."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Lardo Parcelwrote on 09.02.2017:[10.0] "SAMI FUCKING ZAYN. He's an incredible wrestler with great sense of psychology. His abilities in-ring are nothing short of incredible. His selling is almost as good as Shawn Michaels, maybe even better. Also, for a wrestler who, for the longest time in his career, wore a mask and pretended to be a Mexican luchador, he's already one of WWE's better talkers. 2016 was his year in the WWE, as he was involved in most of WWE's best matches that year. Now, hopefully WWE gives Zayn a legitimate push, at least in the midcard level because this dude is TALENT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Real Raterwrote on 06.02.2017:[7.0] "In-Ring Skills:Aktuell der beste Wrestler der WWE. 10/10 (50%) Promos/Schauspieltalent:Leider nicht mehr als Solide. 4/10 (25%) Charisma/Erscheinung/Gimmick:Seine extreme Schwäche aber + Punkt als EL Generico. 3/10 (25%) Sind dann insgesamt 6, 75 Punkte für The Underdog From The Underground. Er rettet sich durch seine starken In-Ring Skills zu einer Bewertung, im grünen Bereich.  = 7 Punkte"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TrevPuroFanwrote on 07.01.2017:[10.0] "Sami Zayn is my favorite wrestler in the WWE. He plays the underdog role fantastically well, and is one hell of a storyteller in the ring. He is fantastic"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: hrikygwrote on 23.12.2016:[9.0] "Sami is a good wrestler... he not only is the future champ of wwe but also a former indie darling. Though i gave him a 9 due to his lack of exposure in 2016. I hope that he is gonna be great again in 2017."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Titansrevengerwrote on 13.12.2016:[6.0] "Zayne makes for a good under dog for fans to get behind but comes off as very generic. He hits all the right notes and excels in the ring but lacks that it factor. I also feel that at this point he needs to stay away from his bitter rival Kevin Owens. At this point the two are polar opposites in terms of success. Zayne can only rebound from defeat by his arch rival for so long before it becomes to contrived."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: arrancarwrote on 06.12.2016:[7.0] "Pretty entertaining wrestler. His high-flying is pretty good, even very good at times, but somehow his style just looks very unflattering at the same time. He really just doesn't have the look of a wrestler. This may sound superficial, but it can be very hard to take Zayn seriously when he looks so odd. His general acting is mostly fine, but when trying to be inspirational or passionate Zayn will often come across as melodramatic and cringeworthy. This is mostly on mic however, as in the ring I feel the acting communicated through his wrestling moves is actually rather good. Apart from Zayn's high flying he also impresses with his power moves and even some of his striking. He's an all rounder to the point that I definitely consider him a good wrestler and one of the more exciting people in WWE currently. Zayn does a very good job playing the underdog, and with his impressive move set he has definitely won me over from someone that used to despise his squeaky clean babyface persona."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: SomeDudeOnTheInternetwrote on 16.11.2016:[10.0] "Sehr schnelle Moves, gutes selling, saubere Technik, gute Konter.. definitiv einer der besten im Ring (10/10). Leider kein besonderer Micworker wie CJ oder KO aber dafür ganz solide. Promos und auch sein "der nette Kanadier von nebenan"-Gimmick bei der WWE (Obwohl er auch anders kann olé olé olé olé) sind sehr Standard (7/10). Dafür umso mehr Charisma (10/10). Meine persönliche Meinung (10/10)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: tobiwwewrote on 11.11.2016:[7.0] "Ich finde Sami Zayn gut, seine in ring skills sind fast perfekt. Er hat nur das problem das ihm finde ich das gewisse etwas fehlt, etwas für das nur er steht, etwas was die massen begeistert neben seinen in ring skills."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: tatewrote on 30.10.2016:[6.0] "Ich finde ihn hier schon wirklich überbewertet.  Klar er ist immer für ein gutes Match gut und gegen seine In Ring Leistung kann man wirklich nicht viel sagen. Allerdings finde ich ihn ansonsten ein wenig Nichtssagend für einen wirklichen Superstar gehört schon ein wenig mehr für mich."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Squared Circlewrote on 24.10.2016:[4.0] "Not much to see here.  Great ring entrance, (although you can say it's getting stale), has some nice high speed moves.  Can put together a good match, but will need a better personality to get anyone interested.  Matches are entertaining but not memorable, as is the entire sport today.  OK interview and Ok physical presence.  Nothing special"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: akm0wrote on 18.10.2016:[10.0] "The true underdog. Sami Zayn has something few have, which his the ability to make the crowd go nuts for him. He reminds me of the late Danielson, in some ways, which had the same supernatural power. He's god-tier in the ring, he's versatile, has a great in-ring psychology, can be both serious or comedy, he's great single or tag team and his storytelling is just unparalleled. This guy it's just what every face would want to be. You just can't hate him, which is why is such a good face. Taking off the mask was the best decision he ever made in his career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: shosa94wrote on 11.10.2016:[9.0] "Possibly the best American in-ring storyteller in the business today.  Absolute genius at structuring a match and that alone makes him one of the best.  El Generico was a fun character, but Sami will likely play second fiddle to Kevin for most of his career because, though certainly likable, he's not a truly magnetic personality.  Still, his rivalry with Steen/Owens, along with excellent matches with PAC/Neville, Bryan Danielson, and Shinsuke Nakamura, and his excellent tag work with Paul London will ensure him a spot in history."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: JordanACEwrote on 01.10.2016:[9.0] "Ole, ole ole ole... What is there to not like about Sami? He's just an amazing wrestler. A well rounded guy who can work many different styles. Hope he'll get a championship soon in the WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TwistOfFatewrote on 06.09.2016:[10.0] "Schaue seine Matches immer sehr gern und er riskiert sehr viel immer für seine Fans.  Am Mic ist er auch gut anzuhören. Mal schauen wo es noch hinführt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rasslin Ruleswrote on 31.08.2016:[10.0] "Als El Generico zur Independent Legende, als Sami Zayn zur NXT Legende. Jetzt liegt es an Vince ihn zu pushen. Denn im Ring ist er genial, dazu kann er im Ring eine Story besser erzählen als jeder andere in der WWE. Over ist er bei den Fans ja schon seit seinem Main Roster Debut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: croatiantwat1950wrote on 22.08.2016:[10.0] "Brutally underrated. Had 3 MOTY contenders already and neither the creative or IWC give him that much credit. Excellent both in-ring and on the mic and deserves a singles title by the end of 2016."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: KevinZaynwrote on 23.07.2016:[10.0] "Er einer der besten Wrestler ever! Unglaublich gut im Ring 10/10 Charisma 10/10 hat auch eine exzellente Ausstrahlung 9/10 und kann Auch wirklich göttliche Promos halten 9, 5/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: AmbroseAsylum12wrote on 05.07.2016:[9.0] "Great wrestler with very good promo skills. Unfortunately, he didn't show much of his character on the main roster, even though down in NXT it was really great. I think that it is booking's fault and that he will show his great pure babyface character when/if WWE pushes him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Zedwrote on 27.06.2016:[7.0] "Sehr guter Ringworker, wenig Charisma. Er grinst ja nur fröhlich. Würde ihn gerne mal in einer ernsthafteren Rolle sehen. Dazu noch zu klein und schmächtig, um im Mainstream was zu reißen. Top Typ für die indies, aber in der WWE wird er immer unter Wert bleiben."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: AMHTPwrote on 21.06.2016:[8.0] "Sami is a fantastic wrestler and one of the rare pure babyfaces of the modern era.  He could sometimes stand to work a little slower and with a little better psychology -- and I say that as a fan of indy wrestling, by whos standards he is incredible -- but almost every one of his matches leaves you wanting more.  Sami has a high ceiling, especially now that he's finally found his footing when it comes to promos.  He's a magnet for fan support, and honestly, who wouldn't love the guy?  I look forward to seeing where he goes from here, and his athleticism and heart are both tremendous additions to the WWE roster."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: sXe27wrote on 20.06.2016:[9.0] "Großartiger Wrestler, der uns hoffentlich noch viel Spaß bescheren wird. Unglaublich, dass er mir als Sami Zayn sogar noch einen Tick besser gefällt als zu seiner Indy-Zeit. Im Ring hoch talentiert und auch ohne Maske mit viel Charisma ausgestattet. Atmet wie kaum ein zweiter den Geist Daniel Bryans als "Independent-Legende goes WWE-Underdog-Favourite" ein und könnte der legitime Nachfolger des American Dragon werden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mantafahrerwrote on 14.06.2016:[10.0] "In der heutigen Zeit gibt es niemanden, den ich für den Spot als #1-Babyface der Wrestlingwelt besser finden würde. Top Micwork, Top In-Ring-Work, charismatisch ohne Ende, intensiv, leidenschaftlich... es wird einem einfach nicht langweilig, wenn man ihm zusieht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Penkerwrote on 14.06.2016:[7.0] "Als El Generico fand ich ihn recht unterhaltsam. Er wirkt sympathisch und auch im Ring kann er einiges. Was mich halt stört ist zum einen sein Finisher (er und Del Rio sind zurzeit irgendwie die beiden, die keinen richtigen Finisher haben), der mMn nicht so recht zu ihm passt. Eine Suplex-Variante oder was vom dritten Seil fände ich besser. Zum anderen ist sein Match Ablauf (zumindest in der WWE) oft viel zu ersichtlich."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Alex Maedawrote on 06.06.2016:[10.0] "Starker Wrestler mit unfassbarer Leidenschaft und einer erfrischend natürlichen Ausstrahlung. Hat das Zeug zu einem der Top-Faces weltweit. Spätestens durch das Match gegen Nakamura ist Sami Zayn zu einem meiner absoluten Favoriten geworden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Luv all wrestlingwrote on 05.06.2016:[10.0] "He is the first wrestler i connected with, I gave him a 5 star match - vs pac in pwg, gave me my most emotional respone in wrestling when he faced cena and above all else has made me want to be a pro wrestler"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Sick Lebowskiwrote on 23.05.2016:[10.0] "Ich habe ihn als El Generico geliebt und ihn sowohl vor dem Bildschirm als auch live beim Carat oftmals abgefeiert. Als Sami Zayn gefällt er mir nicht ganz so gut wie in seinem Maskengimmick, aber seine In Ring-Fähigkeiten sind ja noch die gleichen und seine Rolle als oftmaliger Underdog gefällt mir auch sehr gut, weswegen ich ihn auch da im ganz oberen Bereich sehe und somit insgesamt nur die Höchstnote ziehen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: DB992wrote on 17.05.2016:[8.0] "A really solid and good "organic babyface" (as he's recently been called), Generico is a really good all-rounder as well. Reminds me a lot of Ricky Steamboat, character-wise: he doesn't excel at the microphone, but he can get basically most people behind with great non-verbal/ in-ring skills."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: prowrestlingisrealwrote on 15.05.2016:[10.0] "Sami Zayn is a guy that proved that dedication, hard work and passion to the wrestling business will pay off, he is now without a doubt one of the best there is, and in the future he will be one of the best there was, Olé!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Veyron22wrote on 12.05.2016:[6.0] "Ich muss leider sagen, dass ich absolut kein Fan von ihm bin. Im Ring relativ gut aber nicht wirklich grandios (7/10). Am Mikrofon ziemlich gut, aber wirkt monoton. Wenn er die Monotonie los wird bewerte ich seine Mikrofonkünste besser (5/10). Charisma ist durchaus vorhanden aber wirklich viel sehe ich in seinem Charakter leider nicht. (6/10)"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Longa-46wrote on 11.05.2016:[10.0] "Sami Zayn - das Gesicht von NXT. Seine NXT Zeit war schon echt der Hammer. Aber auch in der Indy Szene sehr überzeugend. Den Sprung ins Main Roster hat er sich verdient und man sollte ihn auch richtig einsetzen. Früher oder später sollte man ihn auch einen Titel geben. Im Ring sehr gut, am Mic ebenfalls, er besitzt viel Ausstrahlung, sowie auch sehr viel Charisma. Er hat sich 10 Punkte völlig verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mettstetter619wrote on 07.05.2016:[10.0] "Perfekter Wrestler, kann alles im Ring. Hat unglaublich viel Charisma, deshalb macht es auch nichts aus, dass er am Mic nicht auf 10 Punkte kommt. Ich würde mich freuen, wenn er auch im ein oder anderen Mania Mainevent wäre. Er ist einer meiner Favourites. Schon als El Generico war er klasse."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: killowenskillwrote on 19.04.2016:[10.0] "The phenomenal wrestler, whose face for a long time kept in awkward mask. One of those people who are obliged to win the main title of the largest federations in the world. In Sami have all the makings for it. Good luck."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: NastyYaffawrote on 06.04.2016:[10.0] "Quite possibly the best wrestler in the world, and one of the greatest wrestlers of all-time. El Generico was such an awesome gimmick in the indies, and he played it to perfection, and put on some great matches while doing that. Then he came to the big E and he has been killing it as Sami Zayn ever since. He's such a natural babyface, totally up there w/ Steamboat, Kobashi, Bryan & others when it comes to that. Zayn rules."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: SteveTheBeastwrote on 06.04.2016:[10.0] "Früher als El Generico meiner Meinung nach einen Ticken unterhaltsamer, aber auch jetzt als Sami Zayn ein erstklassiger Wrestler und einer der besten, den die WWE zur Zeit zu bieten hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Corwowrote on 04.04.2016:[10.0] "Sami Zayn is one of the most well-rounded individuals on the current WWE roster. His selling is tremendous, he's a phenomenal wrestler, and he can cut one heck of a promo."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Psychospherewrote on 02.04.2016:[10.0] "Phenomenal wrestler, in the indies and WWE. If you aren't impressed with his work in WWE, go watch the matches he had with Steen in the indies, especially the match between the two at Final Battle 2010. Can't wait to see this guy on the main roster, he had the perfect send off with his showdown against Nakamura."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mizzle Assault Antwrote on 19.03.2016:[10.0] "Even if you just look at his WWE run he's been a great talent, world class matches with high quality talents like Cesaro, Owens, and Neville but also getting great stuff out of non-indy darlings like Bo Dallas, Tyler Breeze, and Jack Swagger. But truly there is no question if you are at all familiar with his utterly fantastic indy resume, as El Generico he frequently ranked among the best wrestlers in the whole world. I hope nothing but good things for this guy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: FightSashaFightwrote on 11.03.2016:[10.0] "Sami Zayn ist die Definition von Perfektion. Das was er im Ring abliefert ist unglaublich !  Bei Ihm stimmt einfach alles!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CorvinLEwrote on 08.03.2016:[9.0] "Sami ist ein Hammer Wrestler, seine Matches sind sehr schön anzuschauen und sehr unterhaltsam, mein absulutes favorite Matches waren die gegen (Adrian) Neville. Seine Moves sind schnell und teilweise sehr extrem anzuschauen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Delirious434wrote on 05.03.2016:[10.0] "One of the best Wrestlers in the World today, he has the Talent, the Mic Skills, and the Charisma, 3 of the most important things that any Wrestler should have, especially a WWE Superstar, hope he get a great career and become the top guy in WWE, him and Owens have everything to be the top babyface and Heel of the company"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TheLoudMouthwrote on 18.02.2016:[10.0] "Ein absolutes Total Package und neben Seth Rollins das aktuell wohl beste Komplettpaket, dass es bei WWE aktuell zu bestaunen gibt. Überragend im Ring - gehört meiner Meinung nach zu den Top 5 der gesamten Wrestlingwelt - und überragend am Mic. Wird seinen Weg ohne Zweifel noch gehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: blackmileswrote on 07.01.2016:[10.0] "Dieser Typ ist einfach so Gut in allem. Da musst man garnicht mehr viel hinzufügen, aber wartets ab. Beim Rumble kommt er und dann verkackst di wwe komplett"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Kevin434wrote on 03.01.2016:[10.0] "Mein absoluter Lieblingswrestler! Aktuell der viertbeste Wrestler der Welt (nach AJ, Tanahashi und Nakamura). Dieser Mann besitzt das total package. Sein Mic Work ist gut und er kann super dramatische Promos halten. Er ist so verdammt charismatisch (das sieht man vor allem in seinem Match gegen Kevin Owens bei TakeOver Rival, wo er das beatng von Owens SUPER verkauft). Kommen wir zum wichtigsten: Das In-Ring work. Er beherrscht sowohl Technik, High-Flying als auch Brawling. Er ist in der Lage mit jedem ein gutes Match auf die Beine zu stellen. Besonders gut ist er darin den Gegner stark darzustellen. Das beherrscht kein anderer so gut wie Sami. Zudem ist er natürlich ein grandioser seller und jede Aktion von ihm hat meistens einen Sinn. Unterm Strich ein Grandioser Wrestler, der die 10 mehr als Verdient hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: HouseWhiteWillRisewrote on 02.01.2016:[10.0] "Zayne might be the best wrestler in the world today he has everything you want and he has shown he can deliver a promo and that is all he needed to show because he has charisma now he has some above average mic skills and he is fantastic in ring when he recovers fully from the injury and gets going he will be along side the likes of Cesaro Ziggler Owens Rollins and Ambrose as one of the top in ring workers the reason i gave him a ten is because he has everything and it would be crazy to rate him less because he is the full package"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: LSEstrelawrote on 24.11.2015:[9.0] "El Generico is the true definition of "underdog". After years of battles with is real life best friend Kevin Owens, he finnaly reached the pinnacle of his profession. There is no doubt that the future is bright for Sami Zayn!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: roy-harperwrote on 12.11.2015:[10.0] "Gehört zu den Top 10 vielleicht Top 5 Worker der Welt. Wenn man es richtig anstellt, ist er das neue Babyface der Liga. Das auch "Ernst" genommen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mandzukic9wrote on 13.09.2015:[9.0] "Rami ist auf jeden Fall einer der besten In-Ring-Worker der Welt. Es gibt fast nich, das dieser Mann nicht kann.  Er kann fast jeden Mann sauber durch das Match bringen und es ansehnlich aussehen lassen. Im Ring gehts eigentlich nicht besser. Zumindest könnte ich jetzt nichts sagen, das er verbessern sollte.  Er kratzt an der 10. Wenn er sich auch in den Main Shows behaupten kann, werde ich um diese kaum herum kommen. Doch zunächst wünsche ich ihm ernstmal eine schnelle und unkomplizierte Genesung."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: HeadCheesewrote on 02.09.2015:[10.0] "Sami Zayn and El Generico are two of the best sellers, high flying, and explosive wrestlers of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: WWEfan802wrote on 25.07.2015:[10.0] "I don't Know about his ROH days but based of his time in NXT I can definitely say this guy is the future of WWE, Great ring personality and just exciting to watch, he preforms his moves with perfection. I can't wait until he gets his chance to be on the main raw roster fulltime, him and Owens together are going to be the next big thing that WWE needs"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: UnstableBlazewrote on 15.07.2015:[10.0] "Ich weiß nicht was ich zu Sami Zayn noch sagen muss...  Im Ring einfach Weltklasse, sein Mic Work ist absolut in Ordnung...  Auch schon als EL Generico einfach Grandios  Ist einer meiner All-Time Favorites!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MusSanwrote on 26.04.2015:[10.0] "Als El Generico einfach spitze. Als man ihm seine Maske abnahm, dachte ich, das wars fuer ihn. Aber ich habe mich geirrt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: SapolBlackwrote on 27.03.2015:[8.0] "Als El Generico war er mein Liebling, Samy ist auch noch gut. Aber mir fällt einfach seine Maske.  Die hat ihn einfach nur Ausgemacht. Auch wenn er nicht zu Stark limitiert wurde bei der WWE (NXT). Hoffe ich das er nicht noch stärker limitiert wird, wenn er sein Debüt im Hauptroster feiert. Ansonnsten weiß man durch seine Indy Zeit , das er einfach nur gigantische Schlachten abliefern kann. Bestes beispiel ist die Fehde gegen Kevin Steen ( Kevin Owens )."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Gad Chablewrote on 20.02.2015:[9.0] "Sami Zayn ist begnadet im Ring, hat eine gute Ausstrahlung, ist unfassbar charismatisch und außerdem stark am Mic. Seit er ohne Maske kämpft, hat er wirklich nochmal einen riesigen Sprung nach vorne gemacht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: RawIsJerichowrote on 20.02.2015:[10.0] "The single best performer in the WWE right now, maybe even the best period. He tells excellent stories in the ring, and has one of the most exciting movesets anywhere. His personality and charisma are off the charts. He will become a fan favorite on the main roster, if they tell the same story that they have in NXT, it will be huge."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Millewrote on 10.02.2015:[10.0] "Extrem unterhaltsamer Worker. Von der Theme, über das Charisma bis zu seinen überragenden In Ring Fähigkeiten, einfach absolute Weltklasse. Er kann wie kaum ein anderer bei der WWE in jedem Match eine unglaubliche Intensität rüber bringen. Und das mit einem für einen WWE Wrestler sehr untypischen Look."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Arrow-Squadwrote on 22.12.2014:[10.0] "Gefällt mir als Sami Zayn sogar noch einen Tick besser als El Generico. Bei ihm ist einfach alles vorhanden. Er kann mich persönlich in ein Match mit einbeziehen wie kein Anderer. Ole Ole Ole!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Nino96wrote on 21.12.2014:[10.0] "Sami Zayn ist definitiv einer für die Zukunft. Man hat ja schon seit langer Zeit das Problem, dass die meisten Faces sehr schlecht bei den Fans ankommen. Sami Zayn jedoch kommt bei allen Fans super an, egal ob jung oder alt, Attitude-Era oder PG-Era. Seine Ausstrahlung, sein Move-Set und neuerlich auch die Mic-Skills werden ihn in ein paar Jahren an die Spitze des WWE-Eisbergs bringen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Triple Hwrote on 19.12.2014:[10.0] "Zayn ist und wird wenn er sich bei einem seiner waghalsigen Manöver nicht mal ernsthaft verletzt der Superstar des Wrestlings der kommenden Jahre. Ein unglaublich talentierter Athlet und zur Zeit der beste High Flyer in der WWE. Seine Matches sind eine Augenweide. Mich hat es gewundert, das bei den Slammy Awards dieses Jahr nicht sein Match gegen Antonio Cesaro als Match of the Year nominiert wurde.  Er holt alles aus seinen Gegnern heraus, selbst aus den weniger talentierten. NXT ist eh meine absolute Lieblingsshow. Das beste was die WWE zu bieten hat. Hier werden die Superstars von morgen geboren. Er gehört dazu."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: RooneyDXwrote on 17.12.2014:[10.0] "Dieser man sollte in raw und smackdown auftreten dann hätten raw und smackdown jede woche eine 8-10 bewertung. ich weiß ehrlich gesagt nicht was er nicht kann. NXT stellt raw und smackdown seit ner weile in den Schatten wegen .... und diesem Kerl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Heel MaSchwrote on 16.12.2014:[10.0] "Unglaublich was für ein guter Wrestler Zayn geworden ist. Momentan ist Sami für mich sogar der beste der Welt. Er kann wie kein Zweiter eine Geschichte während eines Matches erzählen und dies seit er die Maske abgelegt hat auch noch durch seine tolle Mimik und sein gutes Mic-Work untermauern. Des weiteren kann ich mich eigentlich an kein schlechtes Zayn/Generico Match in den letzten Jahren erinnern."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ROHfan99wrote on 16.12.2014:[10.0] "Dieser Mann, ist einer der Besten Wrestler der Welt! Im Ring macht es jedesmal so viel Spaß ihm zuzusehen, er haut Krasse Sachen raus ohne ende und kann richtig gute Matches Worken. Bei NXT ist er in meinen Augen auch der beste Schauspieler und (neben Sasha Banks und Enzo Amore) der beste Mic Worker. sein Gimmick bringt er immer super im Match rüber. Und auch sonst ist er einfach ein klasse Wrestler. Ein Gesamtpaket, das es einfach drauf hat, ich hoffe das er in seiner Karriere noch viele Erfolge feiern darf, die er auf jeden Fall verdient! Er ist einer meiner Lieblingswrestler, und hatte mir den geilsten Moment aller Zeiten geliefert als er NXT Champion wurde, dieser Mann ist der beste Wrestler der Welt, (natürlich einer von vielen), viel mehr gibt es nicht mehr zu sagen, Zayn is Awesome!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Dallichenkowrote on 15.12.2014:[10.0] "Meine Wertung bezieht sich auf El Generico aus den Indies da ich die WWE nur noch schriftlich verfolge.  Generico konnte mich einfach immer in seinen Bann ziehen wenn er im Ring stand. Ich halte es für eine Gabe,  meiner Meinung nach kann man so etwas nicht erlernen. Er verkörpert diesen 'against all odds' Charakter um Welten besser als ein John Cena was natürlich auch an seiner 'drahtigen' Figur liegt. Im Ring kann er auch alles und stellt mit jemanden Wrestler ein tolles Match auf die Beine.  Ich wünsche ihm natürlich alles erdenklich gute in der WWE. OLEEEEE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Wrestlingfan96wrote on 15.12.2014:[10.0] "Ja man! Endlich ist er Champion, was er sich auch verdient hat! Für mich der beste Wrestler in NXT, der einfach auch mal überall gute Stimmung verbreitet, sodass man ihn nicht nicht mögen kann. Beispiel bei Takeover, da gabs nur jubel für ihn- kein einziger hat gebuht. Im Ring ist er natürlich wie schon erwähnt klasse, am Mic auch, sehr charismatisch- Was will man mehr?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Viper99wrote on 31.10.2014:[10.0] "Fand ohn vor seiner WWE zeit schon großartig als EL Generico und dachte eigentlich das er als Sami Zayn ohne Maske floppt! Aber die WWE hat mich zum glück eines besseren belehrt! Er hat bisher einige echt gute Matches gehabt ua. Die Matchserie Gegen Cesaro! Ich hoffe er gewinnt bald auch den NXT Title! Ich denke für die Main Show ist es noch ein bisshen früh. Er soll erstmal den Titel holen und denn dann ein paar Monate halten bevor er in die Main Show komnt! Habe keine lust das er dort wie zb.. Big E versaut wird!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: GlobalSportsGamerwrote on 20.10.2014:[10.0] "This guy oozes charisma. Everyone loves him and he's a great wrestler. The definition of a great talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: eldenaaaaawrote on 02.09.2014:[10.0] "The Canadian grappler has competed for Pro Wrestling Guerrilla, Chikara, Ring of Honor and Dragon Gate, and he is a former ROH World Tag Team and ROH World Television Champion. A great wrestler who deserves to be on the main shows"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: 8BitLegendwrote on 30.08.2014:[7.0] "Technisch der beste Wrestler in der WWE. Vor allem der kreativste. Gerade im Verbund mit Cesaro Weltklasse. Finde ihn als Typ jedoch viel zu ironisch um seinen Matches die Story dahinter abzunehmen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: stytcheswrote on 14.08.2014:[10.0] "Seit Jahren einer meiner Lieblingswrestler. Stimmungskanone mit einem vielfältigen Repertoire, super Techniker, der Mann kann alles und mit jedem."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: PWFwrote on 11.08.2014:[10.0] "I have never met El Generico but I have met Sami Zayn ever since his debut in NXT. I have heard people talking about his fantastic in-ring skills and they weren't wrong, he is awesome. I find him surprisingly good in the mic. I believe he could have some small improvements on his gimmick but nevertheless he's one of the most complete wrestlers in the entire WWE roster. He has quickly become the undisputed face of NXT and I believe that he could become the face of WWE in the future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Blade Bourdeauxwrote on 08.08.2014:[7.0] "Ich mache mir doch ernsthaft Gedanken, ob er es in der WWE packt. Das Handwerk wird nie sein Problem sein, jedoch sehe ich aktuell Null IT Faktor und das ist ein Problem. Er ist ein schmächtigerer Cesaro, und ein nüchternerer Bryan. Hoffentlich findet sich eine Nische."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Matzinhowrote on 07.08.2014:[5.0] "Ich fand ihn als El Generico passabel und jetzt ohne das Gimmick einfach nur farblos und unbrauchbar. Als Generico hatte er wenigstens den Brainbuster, funktionierte also in zwei oder drei Kämpfen als debil grinsender Comedywrestler. Ohne Maske ist er ein kümmerlicher, dünner Typ mit bleicher Haut der mich im Ring nicht überzeugen kann und dem ich den Wrestler auch nicht abkaufe. Passt angesichts seiner Statur auch nicht in die WWE, aber mal sehen was die aus ihm machen. Bei einer Sache bin ich mir absolut sicher: der wiegt NIEMALS 90 Kilo!"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: zackwoowoowooryderwrote on 02.08.2014:[9.0] "Ein sehr guter Athlet, der bestimmt eine große Zukunft vor sich hat, aber nur unter Bedingung, dass ihn die WWE nicht fallen lässt, wie sie es schon mit dem ein oder anderen vielversprechenden Talent gemacht haben. Im MainRoster konnte ich ihn mir erstmal gut in einem Team Adrien Neville vorstellen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: wwetnafangirlwrote on 03.06.2014:[10.0] "Einer der besten Wrestler und er hat eine tolle Zukunft vor sich im Main Roster. Hoffe das die WWE ihn pusht und nicht fallen lässt. Live konnte er auch vollkommen überzeugen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Titanwrote on 31.05.2014:[9.0] "Ich kenn ihn nur als Sami Zayn da ich kein Indy gucke, aber ich weiß, was für einen Ruf er in den Indies genießt. Bei NXT ist er bei weitem der beste, der da rumläuft. In Sachen Selling und Ringpsychologie macht Zayn keiner so schnell was vor. Von seinen Promos bin ich nicht wirklich überzeugt, dafür lässt Zayn mehr Taten als Worte sprechen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: New Strategywrote on 10.03.2014:[9.0] "Ein großartiger Techniker und High-Flyer. Ähnlich wie Adrian Neville, konnte er bereits in seiner Independent -Zeit für Aufsehen sorgen. Dort trat er als Wrestler namens "El Generico" auf.  Mittlerweile ist er ein fester Bestandteil von WWE-NXT, der dort im letzten Jahr ein FOTY-Match gegen Cesaro bestritt. Wenn die WWE es richtig anstellt, könnte ich mir hier einen ähnlichen Charakter wie den von Daniel Bryan vorstellen. Dann könnte es auch auf der großen Bühne klappen. Ich bin Fan von Zayn und hoffe, dass wir noch viele großartige Matches von ihm sehen werden."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: JeffHardy3107wrote on 05.03.2014:[8.0] "Als El Generico top! Als Sami Zayn top! Klasse Typ im Ring. Guckt euch das Match gegen Cesaro an, Zucker! 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: AriesMarkwrote on 05.03.2014:[9.0] "Been a huge fan of the man formerly known as El Generico for years now (even before he was in ROH) He was one of the actual good things that come out of the IWS promotion in Quebec (along with Steen). The only thing that keeps me from giving him 10 points is the fact that his promos are kind of blah and generic. Great seller overall. Although I highly doubt WWE would ever let him use the brainbuster (at least not the turnbuckle version)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: yanuswrote on 31.01.2014:[9.0] "Brilliant in the ring (phenomenal seller), but I'm somewhat worried about his lack of mic-skills and size. Seems rather bland outside the ropes."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: apc24wrote on 23.01.2014:[10.0] "As El Generico, he was arguably the best wrestler in the indy scene. Now as Sami Zayn, he has perfected his abilites as a complete wrestler and now has a bright future in the WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: LS Incwrote on 19.01.2014:[10.0] "A fantastic performer. I had a lot of doubts when he signed with WWE but at NXT he has immediately become a fan favourite and he's done great things.."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CmPunk2803wrote on 15.01.2014:[10.0] "Einfach ein mega Wrestler. Die matches die ich von ihm gesehen habe sind richtig gut. Am mic habe ich noch nicht viel von ihm gehört aber da denke ich das er da auch mindestens solide ist. Bitte schnell in die Hauptshows mit ihm !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ShawnDravenwrote on 04.01.2014:[9.0] "Sami is one of the few guys that probably could have gone straight to the main roster from the indies."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: HammertonWaywrote on 25.12.2013:[9.0] "Coming into the WWE, I heard great things about El Generico. I can say now that as Sami Zayn, he has not disappointed. We can only wait to see how far he can go."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: salvatore9787wrote on 29.11.2013:[10.0] "This is the best high-flyer I ever seen in my life in the history of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ProRedstonewrote on 02.11.2013:[9.0] "Ein solider Worker .... ich find ihn genial, damals als Generico aber noch besser ...."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Kitanoyamawrote on 02.11.2013:[10.0] "Einer der besten Indy-Wrestler überhaupt. Er ist schnell, agil und technisch sehr fähig. Für die WWE ist er definitiv ein Gewinn wenn er auch entsprechend eingesetzt wird. Ein World Champion wird er wahrscheinlich zwar nicht, aber ich sehe ihn durchaus als Material für die Upper Midcard an. Die WWE muss ihn nur entsprechend einsetzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Leonewrote on 08.09.2013:[10.0] "Sami Zayn was excellent in Ring Of Honor and on the indies as El Generico.  I still remember seeing him wrestle in CZW back in 2004 (in a match that also introduced me to Kevin Steen) and hoped he would get somewhere.  Thankfully, he appears to be on that route.  While he might not be the ginger french canadian of arab descent playing a mexican luchador anymore (or at least not at the moment), his work in NXT, the booking that has gone into it, as well as the crowd reaction, indicates that he does have a real star quality that cannot be forced.  Like Daniel Bryan, it appears that 10 years of travelling the world has been of great benefit to his talent and reputation.  His matches against Kevin Steen in ROH were brilliant, and deserve to be seen by any wrestling fan, and his matches against Antonio Cesaro and Jack Swagger in NXT, have shown that he has "it".  I feel he'll be reaching his prime soon - lets hope WWE doesn't mess it up."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TAWPTierJustinwrote on 05.09.2013:[10.0] "I've always loved watching Sami Zayn's in-ring work in ROH when he was El Generico. Even though I was never a fan per se of the El Generico character, I'll give credit where credit is due because he got that character over with the people so much that when it was announced that he signed with the WWE, people were chanting, "Ole" in the WWE arenas and even now in NXT obviously! Now that he's in NXT, I've become a hell of a lot more impressed with Sami than ever before in his career and that says a hell of a lot! He showed me that he can be himself and still be awesome as a character and with his incredible in-ring skills, he's been putting on really great matches lately in NXT with Antonio Cesaro and even with Jack Swagger this week! He is completely blowing me away and he is getting super over with the NXT crowd as well as his matches are! Plus no one in WWE developmental has had a debut like Sami Zayn had 3 months ago where he defeated 2 WWE superstars in one night! I would not be surprised if Sami Zayn gets called up to WWE's main roster sooner rather than later and if he does, it's truly well deserved!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Navidwrote on 30.08.2013:[8.0] "Riesiges Potenzial zeigte er als Generico nur im Ring, doch was er nun als Zayn leistet lässt das völlig vergessen. Natürlich hat er seinen Stil deutlich umgestellt, doch das was er nun zeigt lässt für mich keine Schranken mehr erkennen. Ich kann mir in 2 Jahren sogar einen Mainevent mit WWE Titelgewinn vorstellen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Lions Denwrote on 30.08.2013:[9.0] "Als El Generico natürlich schon super, aber mit der Ergänzung seiner Mikro-Persönlichkeit bei NXT absolutes Top-Material!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CanadianDestroyerwrote on 01.08.2013:[10.0] "Würde man mir eine Waffe an den Kopf halten mit der Aufforderung, ein schlechtes Match dieses Mannes in den letzen acht Jahren zu nennen... man müsste mich erschießen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Paul Allainwrote on 06.07.2013:[10.0] "Simply put, the Greatest Wrestler I have ever seen is El Generico. Athleticism, Emotion, Humor, Charisma, he mix it all to create a mythic character that is the quintessence of likeability, and we should hope to enjoy is performance for many years into the future."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: mintaquewrote on 29.06.2013:[10.0] "Er ist einfach ein genialer Wrestler, er ist sich für nichts zu Schade und kann einfach alles"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rene21racerwrote on 10.05.2013:"Ich mach mir schon ein bisschen Sorgen um ihn dass er bei der WWE richtig eingesetzt wird. Aufgrund seiner Statur befürchte ich fast dass er größtenteils als Jobber herhalten muss. Ich hoffe die WWE erkennt relativ schnell dass in ihm einiges mehr steckt als das. Es gab und gibts in der WWE genug Beispiele wo es nicht gut ausging für die jeweiligen Worker. Wäre schade um jemanden wie ihn. Wünsche ihm viel Erfolg und dass man ihn bald in den Mainshow sieht!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Babuswrote on 20.11.2012:[6.0] "Toller Athlet und in jedweder Kombination mit Steen wirklich gern gesehen. Nichtsdestotrotz weiß der Indy-Main Event Status, den Generico seit einiger Zeit genießt, mir viel zu oft seine Auftritte zu trüben. Es ist wahrlich nicht so, dass ich ein Verfechter der McMahonschen Bodybuilder-Ideale wäre, aber bei Generico geben der magere Körperbau, das noch immer Comedy-lastige Gimmick und sein Auftreter in ihrer Kombination für mich wirklich kein glaubwürdiges Zugpferd einer ernstzunehmenden Liga mit. Insofern wundert es mich auch, dass diejenigen, die Jay Lethals oder Rey Mysterios Abstecher in den Main Event stets mit empörtem Aufschrei begleiten, überhaupt gar kein Problem damit zu haben scheinen, dass jemand Generico nun quasi die letzte Hoffnung ROHs gegen den dominanten World Champ Kevin Steen sein soll. Denn wo diese zwei auf ihre geringe Größe wenigstens eine durchaus bemerkenswerte Statur bringen, scheinen Generico die zusätzlichen Zentimeter Höhe eher noch schlacksiger wirken zu lassen. Mal im Ernst, der Kerl sieht aus, als hätte man Peter Fox 'ne Maske aufgesetzt."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: alewrote on 03.11.2012:[10.0] "BRAINBUSTAAAAAAAH! Dafür eigentlich schon 10:D Ach ja El Generico noch so eine Indy Legende , Comedy Gold in jeglichen Promos im Ring der Hammer, spricht also alles für die Höchstnote!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: acidwrote on 24.09.2012:[10.0] "Fantastic wrestler! He's travel all around the world. His style is outstanding. I will give him 10 of 10!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CHris FN ANDREWSwrote on 31.08.2012:"hab erst 2 Matches von ihm live gesehn aber er ist einfach der hammer OLE :)"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Damon Strikerwrote on 28.05.2012:[10.0] "Toller "Luchador", dem man, wenn man ihn das erste mal sieht, kaum zutrauen würde, dass er ein so hochkarätiger Performer ist! Liefert erstklassige Matches und weiss immer, wie er das Publikum mitreißen kann!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rated R Champwrote on 24.05.2012:[10.0] "El Generico wirkt auf den ersten Blick seht unscheinbar, steht allerdings weit über den vielen technisch guten aber farblosen Indy Talenten. Das er im Ring was kann steht wohl ausser Frage und auch wenn er, allein schon des Gimmicks wegen, keine großen Promos hält, so hat er im Lauf der Zeit doch eine sehr spezielle Ausstrahlung entwickelt. Weltweit gibt es derzeit kaum Bessere als den Generic Luchador."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Sascha311wrote on 24.05.2012:[4.0] "Für mich total überschätzt und er wird seinem großen Namen meiner Meinung überhaupt nicht gerecht auch bei Carat 2012 hat er mich nicht besonders gut Unterhalten ich fand sogar das er einer der schlechtesten der Carat- Show war und auch falsch ihn gewinnen zu lassen!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ARIZAwrote on 23.05.2012:[10.0] "Der beste Mann in den Indys momentan. Hat mit jedem einfach nur großartige Matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: 7TheEwrote on 05.04.2012:[9.0] "Klasse mann von dem ich leider viel zu wenig sehen kann und konnte, aber das was ich gesehen hab war Atemberaubend, er ist definitiv einer der besten Wrestler auf der Welt und wird trotzdem nie das allergrößte Gold halten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: azirufwrote on 07.03.2012:[8.0] "Gute Ausstrahlung und klasse im Ring, aber einige kleine Makel wie zum Beispiel die gimmickbedingte Einschränkung beim Sprechen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: sign squadwrote on 05.03.2012:[10.0] "Punk, Danielson, so sieht der Best in the World aktuell aus. Mit JEDEM ein gutes Match haben können ist nett, es aber mit wirklich JEDEM zu haben, ist das, was zählt. Bester Pro-Wrestler weil glaubwürdig, sauber, präzise und verdammt noch mal verlässlich."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Aesopwrote on 05.03.2012:[10.0] "Nachdem ich ihn beim Carat gesehen habe muss ich ihm die 10 Punkte einfach geben, er hat gute Matches abgeliefert und hat für eine fantastische Stimmung gesorgt. Auch vorher war ich Fan, doch seit dem Carat weiß ich wie gut er wirklich ist. Außerdem noch ein richtig sympatischer Kerl."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: shoopdawoopwrote on 30.10.2011:[9.0] "El Generico ist ein wunderbarer Typ, guter Wrestler, überdurchschnittlich am Mic und mit einem völlig einzigartigen Gimmick :) Hoffe ihn bald mal in einer der großen Ligen zu sehen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ShakDragoonwrote on 04.10.2011:[9.0] "El Generico ist Kult. Gemeinsam mit Kevin Steen rockte er einfach derbe, aber auch jetzt, wo er solo unterwegs ist, weiß er zu überzeugen. Egal ob bei ROH oder sonst wo! Ich hoffe, dass er es sein wird, der Kevin Steen in einer finalen Schlacht den PWG Gürtel abnehmen darf."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Obermackerwrote on 08.09.2011:[7.0] "Mal ne kleine Aufwertung: nachdem ich persönlich mit ihm gearbeitet habe, muß ich sagen, er ist sehr unterhaltsam & schafft es toll, das Publikum hinter sich zu bringen. Sicher einer der besseren Indy-Worker da draussen, obwohl er auschaut wie ein Permanent-Bluspender!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MotorCitywrote on 05.08.2011:[10.0] "Der Kerl brachte schon so manche Mark-Out Momente! Generico ist ein Klasse Wrestler, mit einem sehr lustigem großartigem Gimmick."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: SoulTouchaZwrote on 28.05.2011:[10.0] "Er ist einfach genial! Einer der unterhaltsamsten Wrestler der Indy-Szene. ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Double Jwrote on 21.05.2011:[10.0] "Einer meiner absoluten Lieblinge: Toll im Ring, unglaublich charismatisch für einen (zugegebenermaßen kanadischen^^) Maskenträger und auch sehr fasnfreundlich! Eine 9 hat sich der Mann echt verdient! Edit: Tut mir Leid, ich weiß ne 10 ist nicht ganz objektiv, aber ich liebe Generico einfach, der Mann ist riesig im Ring und weiß seine minimalen Schwächen perfekt zu verstecken^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Sandmannwrote on 23.03.2011:[10.0] "9 Punkte für den Generic Luchador. Generico braucht nicht mal zu reden um mich zu überzeugen. Sehr guter, technisch versierter Wrestler, der auch gerne mal einen High Risk Move dazupackt. Dazu einfach ein total positiver Typ der eigentlich immer over ist beim Publikum. Dazu in einem der besten Tag Team der letzten Jahre gewesen mit Steen. Bei ihm braucht man aber auch nicht vor seiner nur anstehenden Singleskarriere Angst haben, er wird immer oben mitmischen. BRAINBUSTAAAAA Edit: Ich gehe jetzt auf die volle Punktzahl denn Generico konnte in der Fehde gegen Steen und seit dem das Team gesplittet nahezu in jedem Singles Match, egal gegen wen, egal in welcher Liga wirklich überzeugen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: downtown2wrote on 23.03.2011:[5.0] "El Generico ist ein technisch ansprechender Wrestler, der es manchmal sogar schafft, verblüffend neue Move-Variationen aus dem schieren Nichts zu bringen. Er hat es außerdem geschafft seiner Figur trotz Maske eine Persönlichkeit zu geben, davon können sich einige Luchadors eine Scheibe abschneiden. Und obwohl er zudem ein durchaus physisch betont kämpfender Wrestler ist, kann man ihn oft nicht richtig ernst nehmen. Der knöcherne Körperbau, die oft unpassend eingestreuten Comedy-Einlagen, die mäßige Darbietung am Mic und einige Details mehr. All das sind Faktoren, die mir eine überschwängliche Beurteilung unmöglich machen und mich zudem ernsthaft daran zweifeln lassen, ob er es je in höhere Gefilde schaffen wird."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TheRock 7 Champwrote on 15.03.2011:[10.0] "Ich bin ein richtiger Fan von El Generico. Im Ring ist er technisch brillant. Er hat zwar keine bewegenden Promos, dafür aber eine unglaubliche Ausstrahlung. El Generico numre uno!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Quackeltikkiwrote on 15.03.2011:[10.0] "Hab ihm beim 16 Karat dieses Jahr gesehen und war begeistert, klasse Wrestler der trotz Maske sehr charismatisch wirkt. "You want to buy a mask amigo? ""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Matt4Wrestlingwrote on 29.12.2010:[9.0] "Ein sehr technischer Wrestler, der allerdings sich nicht vor der Härte drückt! Die einzige Schwäche die ich bei ihn sehe, ist das er zu sehr immer einen auf Clown macht mitten im Kampf. Er würde weiterhin auch ein super Face sein, wenn er ein wenig ernster zur Sache käme. Ansonsten Top!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Excellence of Executionwrote on 14.11.2010:[10.0] "Grundsätzlich ist es mit Maskenmännern oft so, dass sie gut wresteln können aber mimisch und dadurch charismatisch stark eingeschränkt sind (was ja nicht in jedem Fall ein Nachteil sein muss^^). Aber gerade hier fasziniert mich El Generico. Denn er schafft es wirklich sehr gut, Emotionen durch Körpersprache und seinen Ausdruck zu transportieren und das Publikum so auf seine Seite zu ziehen. Und auch was seine Intensität im Ring anbelangt, kriegt man von El Generico weit mehr als sein vergleichsweise schmächtig wirkender Körper verheißt. Der Mann gibt einfach alles und das finde ich großartig! Profitiert im Moment natürlich auch von der bärenstarken Fehde mit Steen. Ändert aber nichts an ..... 10 Punkten! Ich bin ein Generico Mark!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: umaga the samoan bulldozerwrote on 21.08.2010:[10.0] "Kenne ihn nicht so gut, weil ich nicht weiß, wo man ROH schauen kann, aber wenn man sich Videos ansieht erkennt man sein Talent..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Crown Jewelwrote on 13.08.2010:[9.0] "Kann mich sowohl in Tag Team als auch in Singlesmatches voll überzeugen, da er technisch wirklich sehr stark ist. Obwohl er auf den ersten Blick eher unscheinbar aussieht und eher selten zum Mic greift, hat er eine gewisse Ausstrahlung. Nicht umsonst ist er bisher eigentlich immer und überall over gewesen, wenn ich ihn gesehen habe. Seine Aktuelle Fehde mit Stenn ist für mich die beste bei ROH seit langem."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: catchfanwrote on 14.04.2010:[7.0] "Schaut nach nix aus, kann aber die Fans voll begeistern. Irgendwie ganz witzig."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Aquifelwrote on 14.04.2010:[10.0] "Egal ob zusammen mit Steen oder auch alleine, El Generico enttäuscht eigentlich nie und hat eigentlich immer gute Matches, oft sogar sehr gute oder erstklassige. Verdient er 10 Punkte? Vielleicht nicht, aber ich habe einfach immer gute Laune wenn ich ihn sehe, werde immer unterhalten und er gehört zu den Workern, die mich bisher nie enttäuschten und beständig ordentliche Matches abliefern. Daher 10 Punkte, gerade weil sein Gimmick darüberhinaus dermaßen deppert ist, dass man es einfach nur als Kult bezeichnen kann. So läuft Comedy mit ordentlichem Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: homicidal cena michaelswrote on 03.02.2010:[8.0] "Zeigt durchweg gute Matches und macht nicht zu viele Spots."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Hypocrisywrote on 24.01.2010:[7.0] "Hm... Liebe auf den ersten Blick war es nicht. Ich habe eine ganze Menge an Matches gebraucht, um festzustellen, wie gut der Kerl eigentlich ist. Ich bin mal gespannt, was er nach der Trennung von Kevin Steen jetzt auf die Reihe bringt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MrSmackdownwrote on 30.11.2009:[9.0] "Ole! Großartig! Ich seh ich so gerne Live, einfach nur gut!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: DJ MaSchwrote on 26.11.2009:[8.0] "Einer der besten Spotaffen der Welt im Ring wirklich gut und weiss auch sein Gimmick ein und umzusetzten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: kingbogwrote on 24.11.2009:[9.0] "sehr unterhaltsamer wrestler, der trotz seiner so oft bemängelten statur unglaublich schöne matches abliefert. auch das gimmick ist totaler kult. alleine schon seine promo bei pwg threemendous II ist gold wert."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Ryklon Stephenswrote on 07.09.2009:[7.0] "Er zeigt ständig gute bis sehr gute Leistungen und weiß es sein Gimmick ans Crowd weiterzugeben. Allerdings sehe ich in ihm keinen 10 Punkte Kandidat. Noch nicht. Wer weiß was die Zeit mit sich bringt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Psycho Shooterwrote on 04.07.2009:[9.0] "Fantastischer Wrestler, egal ob im Tag Team mit Kevin Steen oder als Singles Wrestler. Einer der wenigen Independent Wrestler die mich im Ring IMMER unterhalten bei jedem seiner Matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Eddiewrote on 03.06.2009:[8.0] "Der "Mexicaner" macht mir unglaublich spaß und ist total genial im Team mit Steen. Alleine doch noch etwas schlechter als im Team, 8 Punkte, da er live übelst genial anzusehen ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: STRIGGAwrote on 23.12.2008:[8.0] "Was ich von Generico gesehen habe, war ausnahmslos gut und verdammt unterhaltsam."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Blazewrote on 18.12.2008:[8.0] "Hat sich trotz seiner Statur richtig gut gemacht. Ob er es irgednwann im Main Stream auch schaffen kann, ist eine andere Frage, aber bei PWG und ROH ist er gut dabei und durfte ja auch schon das ein oder andere Mal im World Title Match stehen. Im Tag Team mit Steen gefällt er mir gut, obwohl ich ihn als klar besseren sehe. Technik + Beweglichkeit sind noch ein weiterer wichtiger Punkt. Im Tag Team Bereich wird er sicher über die nächsten Jahre ober nmitspielen und vielleicht als Single Wrestler mal für Furore sorgen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Instant Classicwrote on 28.11.2008:[8.0] "Guter Wrestler mit hohem Unterhaltungs-Faktor, den sein Körperbau von mehr abhält."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Robert Taylorwrote on 12.11.2008:[8.0] "Hat schon im Alter von 24 Jahren im Indy-Bereich ein Kult Gimmick in meinen Augen! Er ist ein klasse Wrestler, der sehr konstante und gute Leistungen liefert und zudem auch sein Gimmick super rüberbringt. Noch ist ein wenig Luft nach oben, daher noch 8 Punkte aber mit steigender Tendenz."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mick Funkwrote on 25.09.2008:[8.0] "Klasse Wrestler, den ich immer wieder sehr unterhaltsam finde. Nimmt auch immer wieder krasse Bumps. Wird wohl leider nicht den ganz großen Durchbruch schaffen, da man von seinem Körperbau im Mainstream wahrscheinlich wenig begeistert sein wird. Bei RoH trotzdem super."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TNA Dan Timewrote on 23.09.2008:[10.0] "Göttlich El Generico. Finde er ist im Moment einer der besten Wrestler der Welt~!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: El Rapidezwrote on 14.08.2008:"Ich bin einfach ein riesen Fan von ihm, seine Matches, Technik, Moves, sein Gimmick / seine Art, begeistern mich einfach immer wieder aufs Neue. Mein absoluter Lieblingswrestler. So einen kann jede Promotion gebrauchen!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Moonbloodwrote on 03.08.2008:[9.0] "Es ist schon fast gruselig, wie gut und unterhaltsam der Kerl ist. Mit Generico kann wirklich keine Promotion etwas falsch machen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Matt Hardywrote on 20.07.2008:[10.0] "Genialer Wrestler. Das Gimmick ist cool, und garantiert immer hervorragende Stimmung. Genauso ist Generico ein Garant für unterhaltsame Matches. Sein einziges Manko ist anfangs vllt der etwas unscheinbare Körperbau, was aber auf der anderen Seite dazu beiträgt, dass er in großartiger Underdog ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rob the bobwrote on 11.07.2008:[9.0] "Ich liebe diesen Mann. Endgeiles Gimmick und so ne art Bump-Maschiene. Was der Mann schon eingesteckt hat traut man ihm gar net so zu. Stiff und einfach ein sehr guter worker. Im TT mit Steen bei Roh auch sehr gut aufgehoben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rob Van Duesenschrauberwrote on 10.06.2008:[9.0] "Generico macht einfach Spaß. Sowohl live, als auch auf Tape."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Baron-Bwrote on 14.05.2008:[9.0] "Oh, was hat es mich zu Beginn gekräuselt, als ich das Streichholz mit der lustigen Maske die ersten Male im Ring sah. Es war auch mit Sicherheit keine Liebe auf den zweiten bis fünften Blick, doch irgendwann wollte ich dann doch noch einmal einen Blick auf Kevin Steen werfen und so war ich eben gezwungen, den lustigen Hampelmann ebenfalls zu betrachten. Und was soll ich sagen ... ? Es machte "Klick" und ich begann zu begreifen, was der Gute da so im Ring treibt und es begann mir zu gefallen. Dann kam die unendlich geile Fehde gegen die betenden Südstaatler-Twins und irgendwann kam zu deim einen "Klick" ein zweiter und gar ein dritter hinzu. Mittlerweile mag ich sein Gimmik sehr und auch die Leistungen im Ring sind schlicht vom Allerfeinsten. Ja El, es hat gedauert, aber was lange währt, wird dann doch unendlich gut ... !"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: jimpanse1980wrote on 10.04.2008:[8.0] "Hat sich in letzter Zeit vom reinen comedy-Wrestler zum ernsthaften Gegner entwickelt. Nur sein Overacting mag ich teils immer noch nicht, es sein denn im Spiel mit den Fans. Technisch gibts rein gar nichts zu meckern. Ich bin gespannt wohin sein Weg, insbesondere bei ROH, noch führen wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: LexLuger4everwrote on 26.03.2008:[8.0] "Beim diesjährigen 16 Carat Gold Tournament hat Generico u. a. mal wieder bewiesen, dass er im Ring einfach zur Creme de la Creme gehört... brainbustaaaaa!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Kaffoe 666wrote on 24.03.2008:[10.0] "Geniale Offensive, noch geilers Selling inklusive passendem Kill-me-Gimmick. Kann mit größeren, kleineren, schwereren etc. Gegnern, egal ob Single oder Multiman Matches. Rockt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ZuluBunsenwrote on 21.03.2008:[8.0] "Sehr guter Wrestler und in Zukunft zu wohl noch höherem bestimmt. Auf jeden Fall sehr unterhaltsam im TagTeam mit Steen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Baszdmegwrote on 12.03.2008:[10.0] "Genialer Highflyer, guter Techniker und einer der wahrscheinlich unterbewertetsten Hard Hitter aller Zeiten. Er bringt eine ganz eigene Dynamik ins Match und weiß seine vielen Fähigkeiten perfekt zu verknüpfen; leider ist sein totales Over-Selling manchmal ein richtiger Stimmungsdämpfer. Ansonsten aber top!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Aaronwrote on 12.03.2008:[8.0] "Ein toller Worker mit innovativem In Ring Style! Konnte mich bisher immer überzeugen! Einziger Kritik sind seine zu gimmicklastigen Bumps! Deshalb nur die 2 aber mit einem dicken Plus! Ist zusätzlich noch sehr jung und kann es weit bringen!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Joeevil123wrote on 19.02.2008:[10.0] "Ole Ole Ole!  Super im Ring und ein klasse Party Flair. Für mich der überflieger der letzten Jahre."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Blue Meaniewrote on 30.01.2008:[10.0] "Einer der besten Highflyer der Independent Szene derzeit!  Olé! ~"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: AnFuwrote on 26.01.2008:[6.0] "Ja, was soll ich zu ihm sagen... Im Ring stark, aber auch oft glanzlos. Seine Statur wird ihn zudem nie über einen Midcarder hinausbringen."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: GothicBearwrote on 17.01.2008:[10.0] "Starker Wrestler, starkes Charisma, kann von Comedy-Matches bis zu stiffen Sachen alles mitgehen. Leider ein wenig ZU schmal, und manchmal kommt er mir einfach ein wenig zu überdreht rüber. Das ist aber für mich kein Grund abzuwerten. Deshalb klar die 1!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: D-Stylewrote on 17.01.2008:[8.0] "Brainbustaaah! Aber darauf reduzier ich ihn nicht; Generico kann für seine Statur mega einstecken und austeilen. Sehr guter Mann, der es mit dem Gimmick zwar nie on top schaffen wird, dennoch kann ich nur die 2 geben, da er mich bestens unterhält"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Showstopperwrote on 12.01.2008:[8.0] "Reichts, wenn ich iOlé! schreibe? Sein Selling ist genial, und er versteht es, auch ohne Mic-Work allein mit seiner Gestik zu unterhalten. Mit dem Gimmick gehört er natürlich zu den Exoten der Szene, nichtsdestotrotz ist Generico inzwischen fast überall ein gern gesehener und etablierter Charakter."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: shannonmoorewrote on 25.12.2007:[6.0] "Cooler Wrestler der aber nie über Midcard hinaus kommen wird."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: aulitwrote on 08.11.2007:[8.0] "Ein Kanadier der einen durchschnittlichen mexikanischen Luchador in Amerika spielt. Schon alleine die Konstellation ist ein Grund zum Schmunzeln. Ansonsten ein Top-Athlet der sowohl im Team mit Kevin Steen als auch Solo überzeugt. Olé!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: caterwrote on 08.09.2007:[8.0] "Olé. Bietet gute Unterhaltung inner- und außerhalb des Rings. Kann man nicht meckern."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Sabu316wrote on 24.06.2007:[8.0] "Hat sich immer mehr gesteigert und bietet mittlerweile wirklich immer wieder unterhaltsame Matches und der Entrance ist natürlich eine Klasse für sich."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Nolan Greenwrote on 07.02.2025:[10.0] "The man that put ROH on the map. His massive size and submission holds made him a must see everywhere we went. Even if WWE failed him, he still was a force to be reckoned with in AEW. Glad he's back and I want to see him back in the main event scene once the Christian feud is over."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: wrestlingswiftiewrote on 30.01.2025:[9.0] "Samoa Joe has a believable aura about him that just screams 'legit tough guy.' He's also a savage on the mic, and has a wrestling style that can mesh with anyone's."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TripleCrownwrote on 24.12.2024:[9.0] "Without a doubt the second best wrestler of that indie generation (Danielson being the first.) Samoa Joe is just a star. Doesn't matter if it's in ROH, TNA, WWE or AEW, he's a star. I didn't watch too much of his ROH run, but I first really began to notice him during TNA. He was just an absolute badass, with fitting entrance music to along with it. His TNA run was going really well, until Kurt Angle came in. I think they saw him as the shiny new toy, and an incredible wrestler who had just been a top star in WWE, so they decided to put Joe away and play with Angle instead. After that, I don't think he really recovered. Whilst he was still a star and had fantastic matches, I don't think he was ever positioned as the absolute top guy ever again, which is a damn shame. Was really happy to see him go to WWE, but I feel like that entire run was just a huge waste of Samoa Joe and his talents. Obviously his NXT run was pretty good, but NXT back then was just indie wrestling under the WWE umbrella so it would take a monumental amount of effort to ruin his run there during that time. Really anticipated his main event roster run, but it just didn't really play out like I had imagined it would. He did do some memorable stuff, but Vince & co. just didn't really know how to bring the absolute best out of him. It's insane to me that he never won a world title there, he was just a star waiting to be given a world title run that never materialized. He had everything it takes to be a huge player in WWE, the only thing I felt that held him back was his age. But even then, he wasn't even remotely considered an old wrestler by any means. Especially when you had the likes of Goldberg getting world title runs there. Haven't kept up too much with his AEW stuff, but from what I've seen it's basically just Samoa Joe. Which is fantastic. I couldn't rate him as a 10 simply because I leave that for the absolute best of the best to ever do it. But for me, Samoa Joe is as close as you can possibly be to a 10. I'd rate him a 9.9 if I could. Sidenote: loved his matches against Kobashi & Misawa in NOAH. He complemented that style really well and I wish we had seen more of him over there during that time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ItsAllAWorkAnywaywrote on 11.12.2024:[9.0] "The hype around Samoa Joe was real when he was first starting out - With wrestling journalists fawning over this size and athleticism (even if he had a little baby-fat at the time because he was a young guy lol.) Yet on a long enough timeline, he found himself as a solidified and proven national league main eventer (and major league midcard champion.) It would've been nice to see him main event in WWE (or even New Japan), but if AEW can regain some of its former momentum, it would ultimately bode well for Joe's legacy, too."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: AceHagannwrote on 26.11.2024:[8.0] "Joe's presence is something else. He always looks like he's about to off his opponent. And he sure wrestles like it. While his work in WWE's main roster was disappointing, TNA, NXT, and to some extent AEW and even ROH, is where he looked his best. Proving that was more of an exception to a rule of how great his skills are. His moveset is brutal and effective, fitting like a glove to his persona."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: XNoWayKemoSabeXwrote on 25.11.2024:[8.0] ""Joe's gonna kill you! " Watching this dude's TNA run was something magical. His feud with Kurt Angle was immaculate, and his mic work is absolute savagery."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TreyHalowrote on 17.10.2024:[10.0] "One of the coolest professional wrestlers of all time man and he has the match catalog, the accolades, and the acclaim to back it up, one of the best ever and if someone told me Joe was their GOAT, I wouldn't bat an eye, that's how great the guy is..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: NoaHS106wrote on 16.10.2024:[9.0] "Großartiger Look wie ich finde, er wirkt wie ein richtiger Zerstörer. Auch im Ring kann er für seine Statur doch sehr viel. Am Mikrofon weiß er auch zu überzeugen. Jedoch sehe ich ihn nicht als den World Champion."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TallNick2wrote on 21.09.2024:[10.0] "He's just incredible, having good matches with a variety of people from cruiserweights to heavyweights. While not in his 2000s prime anymore he's still able to go in the ring and on the mic. A true all rounder and a good heel"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: jsbortswrote on 19.09.2024:[10.0] "Has some of my favorite matches of all time, some all time classics in several different companies, some all time promos, and is just generally one of those guys who has an incredibly high floor in terms of what he can do. But boy can this guy GO in the ring, and he has been able to for 20+ years. There's really no weakness in this dudes entire presentation. I love Samoa Joe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: CrayJeVwrote on 08.09.2024:[9.0] "All round an incredible wrestler. Does everything to a high level and their isn't really anything he cannot do. A great promo, absolutely outstanding in-ring, hard to find any true criticisms of him. He has had some of the greatest matches in TNA history as well as some incredible matches in both WWE and now AEW. Always an incredible heel, however maybe could be a better face but if you're a booker you are never going to having Samoa Joe as a white hot baby face. He is a destroyer and is one of the best destroyers in recent wrestling history."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: maven loverwrote on 07.09.2024:[10.0] "Probably one of the best wrestlers in contemporary culture, ever. Carries himself with swiftness that defies logic for a man his size, a diverse moveset, treacherous on mic, great theme music, & the general sense that when Joe arrives, whomever has the misfortune of being in his crosshairs is probably going to get fucked up. His "Nope! " walking out of the way move is a fantastic use of comedy that doesn't make him look ridiculous at all, his finishers always look crisp and devastating, & I can't really remember an even "relatively good" Samoa Joe match; they are all excellent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: BULLETCLUB4EVERwrote on 28.08.2024:[10.0] "The King of Television is one of the best wrestlers of the twentieth century. A true pillar of wrestling, legendary in TNA, but also won in ROH, NXT and AEW where he was world champion. He's a tough ass kicker, his rivalry with CM Punk is legendary and his rivalry with AJ Styles is very good. Good skills on the microphone and in the ring he is a pleasure to watch. The match with Kenta Kobashi is perfection and the one against Daniels and Styles is sublime. It often doesn't get the credit it deserves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: OctagonEnjoyerwrote on 19.08.2024:[10.0] "One of my GOATs. Samoa Joe is important in the modern wrestling landscape for the same reasons Danielson, Styles, and Punk are. He helped showcase indie wrestling and changed how mainstream wrestling companies perceive it. But also he helped bring 90s Japanese-influenced wrestling over the states and popularized it in ROH. You can see it in his moves like the island driver, kicks, Tenryu-like jabs, and powerbomb, with hints of Kawada. Even his ROH champion run showcased a little bit, as while yes there were long world title reigns before, after, and during Joe's, his title reign was more kin to that of AJPW and NOAH runs where we see the power/status of the different variety of styles and challengers build up over time, and saving big moves to win the bigger matches, making the opponent and belt seem more important while also building Joe's legacy more. This is in comparison to say 80s/NWA title reigns where they fight the same opponents over and over again across territories with similar finishes and sometimes just lie about the belt status (dropping it to the local hero and then winning it back the next day, still being counted as 1 full reign). Also unlike modern wrestlers now who take from Kings Road/"Strong Style" (they just no sell and call it fighting spirit or copy from dudes like Misawa or Kobashi), JOE IS JOE, he takes influence, but he still does his shit his way as well as some original stuff. But other than ROH or his AEW run since 2023, no company has used Joe right. His TNA run did have some good things in it like the obvious Styles/Daniels X-Division stuff and he DID at least become a world champion there. Still, Joe was never the main character he shouldve been in the company, always having to play second and forced on the level of guys like Nash, Sting, or Golden Goose Kurt Angle. Also they never even gave him a sniff at the world title again, despite being one of the best wrestlers in company history and having the potential of dominance like Brock Lesnar or Goldberg shouldve probably been given. Then his WWE run started alright with his NXT stuff but then became shit because of WWEs bullshit injury system that has been called out by guys like Punk and Bryan allowing Joe to get the dumb injury-prone label slapped on him, and him being in 2017-2019 WWE where ONLY ROMAN REIGNS CAN BE WORLD CHAMPION, YOU GOT THAT? -Vince McMahon probably. But then 2022-2024 AEW happened and it reminded me and everyone that Samoa Joe if used right is awesome, mind you its not been perfect, but Tony Khan should get at least a silver medal for being smart enough to think of putting a world title on this guy after years. Joes run was a breath of fresh air after the MJF debacle run and gave us a great match in HOOK. Overall, Samoa Joe is one of the top 10 GOATs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Willie 19200wrote on 24.07.2024:[10.0] "Joe is a guy that proved you didn't have to be a ripped bodybuilder to be an amazing superstar and athlete. Joe is so awesome in the ring and an awesome entertainment. His ROH and TNA run was some of my favorite wrestling to re-watch. His NXT and WWE stuff was good as well, but they never did put the world championship on it. His AEW career has been great, his world title reign is criminally underrated. Overall deserves to be recognized as one of the greatest of his generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: woolyshamblerwrote on 21.07.2024:[10.0] "HOW is this king not in the top fifty? joe's consistency and longevity are unbelievable, and he manages to excel even when his booking is against him (late in his TNA run). he's been a boon to every card he's been on for the past 20+ years"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Zak22wrote on 11.06.2024:[8.0] "Whilst as Joe has gotten older he has dropped off, from about 2003-2008, Joe was one of the best wrestlers going. Joe could strike, he could grapple and he could fly. Great talent in his prime."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Rassle Fanwrote on 09.05.2024:[10.0] "From Ring of Honor to AEW he's consistently been one of the best wrestlers and promos. It's hard to believe it's been almost 25 years since he got started but he's still as great as he was in 2005."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MarkMcMarkington2wrote on 02.05.2024:[10.0] "Joe has been poorly booked for the majority of his career, but it doesnt affect how amazing this guy is. Great in the ring and on the mic. Him and Styles should have been the faces of TNA, but Hogan and Bischoff didnt allow that unfortunately."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: sobawrote on 30.04.2024:[10.0] "You could watch a match of Joe's from 2004, 2008, 2015, or 2023 and you can see why he's one of the best ever. From his historic ROH run, his great work in TNA, his great menacing run in NXT, his underrated time on the main roster of WWE, and once again being the best wrestler on tv in AEW. While it may sound ridiculous knowing how loved and respected he is, I do believe he still is somehow underrated. One of the best in this sport of pro wrestling. (also he should've beaten Brock in 2017)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Cosmowrote on 23.04.2024:[10.0] "One of the greatest to ever do it greatest ever ROH champion no dispute Joe is a monster like Brock Lesnar but better cause Joe is brown and isnt an alleged sex offender"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: AmirTheEnforcerwrote on 16.04.2024:[10.0] "Behold the beast that is Samoa Joe, you name it he's been there and done that. I think he's not had a bad run in any promotion that he has been to so far (except maybe for his main roster run) and in his mid 40s he's still burning the candle at both ends and giving us bangers from left to right."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Bloodshot03wrote on 31.01.2024:[10.0] "This guy is one of the all time greats! Samoa Joe first caught my attention in TNA wrestling around 2007. His rivalry with Kurt Angle was legendary, and I really loved the Main Event Mafia angle with Joe as well. For his WWE career I enjoyed his NXT work more than anything, but one particular main roster match I love is the GBOF match vs Brock Lesnar. He should have won the WWE title in my opinion. Recently he has held the ROH TV title and AEW championship. I cant wait to see how he does with the AEW championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MaximilianBernerwrote on 27.01.2024:[6.0] "Einer der absoluten Lieblinge der Indie Szene mit einer Vielzahl an absoluten Klassikern in seiner Vita, ich persönlich kann mich allerdings nur wenig für ihn begeistern oder mich mit ihm identifizieren, er stellt für mich vorallem optisch nicht den Profiathleten dar den ich mir als Fan wünsche, aber frei nach einem berühmten Zitat: "Was soll der Bruder machen, er ist nunmal Samoaner"."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: No Onewrote on 21.01.2024:[10.0] "One of the best in-ring performers in the world between 2002-2008. One of the main guys that built Independent Wrestling into a cult phenomenon. Rivalries with CM Punk, AJ Styles, & Christopher Daniels are legendary. Put on matches that will forever withstand the "Test of Time" against the likes of Kenta Kobashi, CM Punk, Bryan Danielson, AJ Styles, Christopher Daniels, Low-Ki, Necro Butcher, & Jay Briscoe. Had a memorable feud with Kurt Angle. One of the greatest ROH World Champions of all time. One of the first wrestlers to ever be called a "ROH Legend". First ever 3x NXT World Champion. Is an outstanding promo artist. Years of Injuries & bad booking in TNA greatly derailed his momentum. Never reached his full potential on WWE's Main Roster. Is not the level of in-ring performer that he was from 2002-2008. Coasting off of the aura of intimidation that he never lost to compensate for the battered shape that his body is in from all the years of injuries, which is why his quality of matches are not what they used to be. UPDATED: He has been looking good so far in AEW. I am liking what I am seeing. I hope that he can stay healthy and continue to deliver quality. UPDATED x2: Samoa Joe has become to AEW what he was supposed to be to both TNA & WWE. He has become the Final Boss of AEW and looks very close to his 2002-2008 form. As an OG fan of his, I am very happy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Chris777wrote on 09.01.2024:[10.0] "The true common denominator in every promotion he goes, you look at the legendary run in ROH-TNA, NXT, Smackdown and now in AEW, the historic feuds he had with CM Punk, Kurt Angle, and AJ Styles, infamous promos such as the AA meeting or scaffolds and wires, the all-timer matches he had with Kobashi and Necro Butcher, compelling and charismatic, technical and brutal, this is the man"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TheGreatMOKOLovewrote on 05.01.2024:"Not many other wrestlers have managed to maintain the sense of danger & charm Samoa Joe has. First ballot Observer Hall of Famer for sure."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: hamstermatchwrote on 03.01.2024:[6.0] "Doesnt really know how to talk or bring a compelling story to the ring, at least not in the current year which Im basing my rating on. The last few months when he started dealing with MJF have been a slight improvement on what he did before though so I dont hate him. Curious to see where he will take his character now with the belt but I hope its a short transitional reign."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: thedman0310wrote on 31.12.2023:[10.0] "One of the best to ever do it. His run of matches in 2005 is some of the best work in the history of the business. From Strong Style wars with Kenta Kobashi to X-Division spotfests with AJ Styles and even to brutal brawls with Necro Butcher, Joe can do it all. He's still going strong at the age of 44, and I predict him to continue kicking ass for a long time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: LGL19wrote on 27.12.2023:[10.0] "Let's put it this way Joe is one of the greatest wrestlers I've ever fucking seen and I wish he was used better in WWE & TNA cause he is world championship material for whatever company he works for he is a draw heel or face."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: danzitorockwrote on 18.12.2023:[10.0] "Joe is a legend, amazing in every company he worked for, he's one of a kind. The guy is truly a rare specimen in US wrestling, really big and strong, with powerful and hard-hitting moves, but also extremely technical and incredibly athletic for his size too. His mere presence is intimidating and scary, he was born to be dominant, and does the job in a fantastic way. One of the best primes in wrestling history and an outstanding career."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Wrestling Foreverwrote on 17.12.2023:[10.0] "Bei ROH war Joe absolut Top und einer der Besten. Man denke nur an seine Matches gegen CM Punk. Homicide oder Jay Lethal um nur die zu nennen. Bei TNA dann auch viele Jahre stark tolle Fehden gegen AJ, Christopher Daniels und Kurt Angle um auch nur die zu nennen. Wurde später leider Opfer von vielen TNA Bullshit Booking und ist auch nicht mehr so schnell wie früher. Stark ist er immer noch und vielleicht bekommt er nun endlich wieder bessere Fehden. Edit 21. 08. 2016 Auch bei Joe hat sich viel geändert nun ist er wieder bei der WWE wo er schon zu WWF Zeiten ein Try-Out hatte und aktuell ist er bei NXT wo er auch überzeugt. Edit 20. 12. 2019 Vielleicht fragt man sich warum Joe aktuell nur Play-by-Play-Kommentator ist. Er hat einen gebrochenen Daumen der inzwischen verheilt sein müsste und man ist mit ihm als Kommentator sehr zufrieden. Edit: 15. 04. 2021 Joe Entlassung ist für mich ein Schock. Weil er ja bei WM noch als Kommentator dabei war. Das ist von allen aktuellen Entlassungen für mich der heftigste Schlag. Edit 17.01.2022 auch wenn Joe wieder zurückkam ist seine zweite Entlassung der nächste Schocker da auch William Regal entlassen wurde, wird Joe sicher nicht ein drittes Mal zurückkommen. Edit 17.12.2023, 2023 stellte Joe einen neuen ROH Rekord auf er brach Jay Lethal ROH World TV Championship Regentschaft und ist neuer Rekordhalter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] "Back in the years of 2004/2005, Samoa Joe was the main subject of discussion in professional wrestling, and there's a very good reason. Samoa Joe is easily one of the best talents in general in the 21st century, a man with amazing in ring skills, psychology and charisma. He mostly thrived in ROH and TNA during it's prime years, having amazing matches and feuds with the likes of CM Punk, AJ Styles, Christopher Daniels, Kurt Angle, Kenta Kobashi, etc., feuds and matches still talked about to this very day. His run in NXT was also great, having a great run as NXT Champion, being booked dominantly and always having stellar matches. His main roster run had it's moments, but mostly booked poorly. Currently, his AEW run has been fairly good with some highlights here and there, it's nice to see Samoa Joe is still able to go after all these years. Overall, Samoa Joe is a total badass, has an aura to him that you can believe can mess anyone up when put in the ring with, this man had the whole wrestling world in his hands at one point for a reason."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: skillgullwrote on 17.11.2023:[10.0] "Samoa Joe's a guy who when you walk down the street and you see him, anyone and their grandmother would thing "damn, he's cool". Even though I only started seeing him well after his top run in TNA, ROH and NXT, I still think he's great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: coppercowrieswrote on 22.10.2023:[10.0] "Every time this man touches a microphone the calm cadence and intelligence with which he talks he sounds like the hardest, baddest man alive. Like he could smoke an opponent just as easily as he smokes a cigar. He might not be as versatile in the ring anymore as he ages, and that's perfectly normal, but he can still turn in great matches and really get the crowd on board."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: SoaKaswrote on 14.09.2023:[9.0] "See, I loved Joe back when he was still capable of delivering those high quality matches. He is still great on the mic, has charisma written all over him but he is not that 10/10 performer that he once was. When his career is over, he will for sure be a 9 or 10 out of 10 but in his current state, I can't rate him more than that even if he still has everything that made him a top tier performer. Time just catches up with every performer sadly but he'll go down as a legend. EDIT: I like what he is doing with the ROH TV title and all of the stuff with MJF. Well deserved bump in his rating."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: devourblastwrote on 08.09.2023:[10.0] "The only man intelligent enough to walk out of the way of an incoming aerial maneuver. In all seriousness this man is a monster. He's had an incredible work rate for decades, a ruthless and believably painful moveset, and an unmistakable aura that demands attention. Whenever the crowd cheers "Joe is gonna kill you", you believe it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Ricky Steambrowrote on 03.09.2023:[10.0] "this dude is the fucking goat. a true student of the game. his ability to work against any opponent and somehow have good chemistry with all of them is nearly unmatched. Joe's run in the 2000s is insanely great, and his work since then has still been brilliant because he has always had fantastic psychology."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: benny5bellyswrote on 29.08.2023:[10.0] "Samoa Joe has carried an aura nearing on 20 years now and although he can't go like he used to, you know you are still going to get a hell of a match when he is asked to deliver. Some of his best work was in TNA back in the day and is always worth going back to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: s0mbr1tvwrote on 18.07.2023:"Joe is a beast, he shows that he is a power bastard wherever he is, and with whomever they put him in front of"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: eltetechoriwrote on 12.07.2023:[10.0] "Samoa Joe is a great wrestler with a great career in this business. Undoubtedly, he must have a great valuation because he deserves it for all his journey in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: KTG1515wrote on 03.07.2023:[7.0] "Didn't grow up watching Joe in TNA or ROH, and my first exposure was his debut in NXT. He hasn't been interesting since his main roster debut, and his return to ROH and work in AEW have been sub-par."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: crs285wrote on 18.06.2023:[9.0] "Joe was a beast in TNA. His promos were great, and he might have been right there with AJ as the best wrestler in the company. The crowd loved Joe and he could do anything management needed to do. WWE was not his best stop but proved he could do commentary well and had several good matches in that time. AEW has been a nice place for him although age and injuries have slowed him down quite a bit"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Giantfan1980wrote on 31.05.2023:[7.0] "Internet darling of the early 2000's. When TNA first kicked off, this was probably the top guy everybody lauded. Well, him and AJ Styles anyway. Their matches were the toast of the internet town in the early 2000's. Just a shame he took so long getting to the WWE. When he finally got there, they misused him like a dozen other guys who made it big elsewhere then were made into jokes."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Leth99wrote on 17.05.2023:[7.0] "I don't really remember a good promo by him. In the ring he was great on a good day. His WWE run was cursed beyond comprehention. His AEW run is not that good, but he can still go"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: benh2wrote on 28.04.2023:[8.0] "Joe just keeps going. Even his ROH run alone was tremendous then he went to NXT and hit it out of the park there as well. He was a bit hit and miss on the main roster but he's now doing some good heel work in AEW. A brilliant worker who looks believable in everything he does while still adhering to the fundamentals of wrestling."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: mintaquewrote on 22.04.2023:[10.0] "Samoa Joe hat mit zunehmenden Alter leider etwas abgebaut, sicherlich auch auf Grund einer Vielzahl von Verletzungen. Früher gehörte er zur absoluten Weltklassen. Die absoluten Spitzenmatches wird man von ihm nicht mehr bekommen, aber er hat immer noch eine enorme Ausstrahlung und ist ein absolut stabiler Wrestler mit Ausreißern nach oben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: KKeanelwrote on 26.02.2023:[9.0] "Few years back I wasn't a fan of him, but after analyzing highlights of his career (classic match with Kobashi, solid ROH and TNA run, NXT's one of the most influential guy), I admire his work."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: kewf1988wrote on 26.02.2023:[9.0] "Samoa Joe is an amazing powerhouse wrestler, despite not having "the look". In his TNA run, he felt like TNA's Vader, only with mic skills, and the same with his NXT run. Very rarely do you have power wrestlers able to carry feuds, and Joe was one of them, and his style was convincing enough to where his look did not matter, similar to Vader and Umaga."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Thomerikwrote on 03.02.2023:"He can Wrestle with powerhouse style, he can fly, this guy have one of the best capacity to made great matches, and great rivaliries with anyone, one of the greatest of ALL time in ROH, NXT, and top 3 TNA wrestlers easily, If not the GOAT of promotion."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Kyle135wrote on 01.02.2023:[10.0] "Bona fide stud and one of the realest feeling acts in all of wrestling. Still going strong after over 20 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Daigotsuwrote on 15.01.2023:[9.0] "Joe was an absolute stud as a worker and a bona fide monster during his prime. His work in TNA stands against almost anybody's work in any other promotion. His intensity and stiffness in the ring made his matches a must-see during his prime. In AEW, he's been a little more uneven, but sometimes you see glimpses of the old Joe and it's great."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: nothingleftinsidewrote on 05.01.2023:[9.0] "Probably the greatest of the indie era; which is to say any league besides WWE from 2001-2019. His record holding ROH title run pretty much cements this, as it was the definitning run for the company. A believable, exceedingly dominant performer. Perhaps the key in-ring performer for bringing MMA style work into American pro wrestling, something that needed to be done, for better or worse. Still one of the best practitioners of this style. Great feuds and matches with other serious fan favorites such as CM Punk, Jay Lethal, Kurt Angle, Bryan Danielson, and AJ Styles just to name a few. He elevates his opponents, and rarely has a bad match. Plus he's great on the mic. You never expect him to be as good as he is. He's like the quiet kid in class who's finally had enough and is gonna tell you how he really feels. The only negatives I can come up with are that he became injury prone in his later years and never had success on the grandest stage that is WWE. But that kinda makes sense, since Joe is the quintessential American indie wrestler- he's the standard you compare them all to. A worker, B- look, B+ talker."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TheNomadMagicianwrote on 01.12.2022:[9.0] "Kraft, Schnelligkeit, großes Moveset, Ausstrahlung und gute Promofähigkeiten. Ein ziemlich gutes Gesamtpaket!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Sick Lebowskiwrote on 02.11.2022:[10.0] "Ist, wie einer seiner Spitznamen schon sagt, eine richtige Maschine. Knallharte Powermoves, knallharte Submissions und eine Intensität, wie sie sonst nur der Lord Voldemort des Wrestlings Chris Benoit hatte. das Seine Three Ways gegen AJ Styles und Christopher Daniels sind Kämpfe, die man Leuten zeigen sollte, um sie für das Wrestling zu interessieren. Zählt zur Gruppe meiner Alltime-Faves. Zwei dicke Daumen nach oben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TeamCanadaTwoPointOhwrote on 15.10.2022:[6.0] "I get that it's blasphemy to slag Joe, and I really don't even feel like I'm slagging him, but I think WWE had the right idea. He seems a lot slower in the ring and better as an announcer or character at this point. Still, he's one of wrestling's better actors and I love him, he's just not the 10/10 he once was."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: KELLANwrote on 05.08.2022:[10.0] "Unfassbar starker Worker, der trotz seiner gewaltigen Masse sehr athletisch im Ring sein kann. AEW hat mit diesem Mann einen glaubwürdigen Main-Eventer, der sowohl als Face als auch als Heel funktioniert. Aufjedenfall jemand, den ich beim World Title sehen möchte. Potenzial: 2 - 3x AEW World Champion - 500 Days insgesamt. - Main Event"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Benwerderwrote on 01.08.2022:[9.0] "Joe ist einfach klasse! Einer der immer weiß wie man ein instensives Match macht und so gut wie nie enttäuscht. Vielleicht nicht mehr so wie früher aber immer noch sehr gut. Am Mic kann er als Heel, sowie als Face seine Rolle sehr gut verkörpern."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: BradJohnson34wrote on 26.07.2022:[5.0] "A lot of people tout Joe's combination of size and agility but I don't actually see the agility come into play all that much in his matches. He doesn't leave his feet often. The size is definitely there but not always accompanied by commensurate strength. Muscle-buster is a cool finisher but not a fan of the rest of his move-set and his character is often one-note."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: KuczyPLwrote on 07.07.2022:[10.0] "One of the absolute GOATs and my favourite wrestler ever. Joe has the unique combination of size, speed and agility - not only that, he's got the aura of a guy you just don't want to provoke. He's been booked like a legitimitate threat over many years and hell, he even got to choke out Brock Lesnar. Unfortunately, the injuries kept him from holding major titles in WWE, but despite that, his feuds with the likes of AJ and Brock were special. And this is only stuff he did in the past couple of years - trilogy with CM Punk, rivalries with Styles and Daniels... Joe can just do anything. Also, how can I forget about his mic skills? This man once got one minute during a segment on SmackDown in 2019 (that was a build up to Elimination Chamber) and - with that little time - he roasted EVERYONE: Orton, Hardy, Ali, Bryan and AJ. Joe will always be my favourite guy in wrestling history and there is nothing that can change my opinion.Wishing him good and - most importantly - healthy run in AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: PhenomenalGunwrote on 13.06.2022:[8.0] "He's wayyy past his prime but can still go in the ring to the point a company like AEW wants to push him front and center. Honestly I can see some dream matches with him and some of the bigger guys in AEW like Hager, Archer, Cage, Hobbs, etc. and on the other side others like Matthews, Omega, Jericho, Angelico, and Allin, among others, who would put on a great match with him out of a clashing of styles. I guess that's all Joe's there for now, which isn't necessarily a bad thing, if they can still get great matches out of him I'm not complaining, he doesn't need to be world champion or anything, an uppercard gatekeeper role might suit him. Now, if he regains that killer instinct character with the awesome mic work he had on the main roster he'd definitely be a main eventer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: mjp28wrote on 06.06.2022:[7.0] "Samoa Joe is good (great move set, and makes things look real), but could have been so much better had he have gotten on top of his weight and thus health. Its obvious that his weight and thus health really held him back. Firstly, it made him a poor fit in an industry that (rightfully so) prioritises those with an athletic look (low and behold real world-class fighters in the real work don't carry that kind of weight), and secondly the unnecessary extra weight on his frame made him incredibly injury prone. This had massive implications for his marketability, longevity, and ultimately his push. It's a shame because in an alternative universe there is a Joe that took responsibility for his weight, dropped 60-odd pounds of fat, and became a multiple world title holder in WWE, AEW, and heck maybe even NJPW."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: texasyoshwrote on 30.05.2022:[9.0] "Samoa Joe is a legend of American professional wrestling, especially in regards to his early work in ROH and TNA. However, he might've also been the biggest wasted opportunity in TNA and eventually WWE. The total package, who had great work with the likes of Punk, Angle, Kobashi, Danielson, Daniels, AJ Styles, etc, etc etc."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: zags7000wrote on 19.05.2022:[10.0] "A complete star. In the ring he's taken part of some of the best matches of the last 25 years and of all time. On the mic, he's pretty good and can cut an epic promo. Charismatic and uses his size well. He moves pretty quick for someone his size while keeping a powerhouse role and that create a great dynamic no matter who his opponent is. He can make his opponent look good and can sell a program very well. Not many weak spots if he has any. Just all around a great and complete star. The only downside is injuries in his WWE run hurt some of his time there, but he had great moments in a limited run while building legendary runs in Impact and ROH."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Okaro143wrote on 12.04.2022:[9.0] "Joe is one of the best wrestlers in the world. His matches are really good. And for a big man, he can really move. He is also a great striker and very technically sound. His work in ROH was his best: He had one of the greatest Championship reigns in professional wrestling history as the ROH World Championship and at one time was voted the most outstanding wrestler. His run in TNA was pretty good in the early years where he was build like a monster being undefeated the first 18 months of his time at TNA before ultimately being cast aside alongside other TNA originals when Bischoff and Hogan took over; If Joe had been pushed like he should have been, maybe TNA wouldn't have needed all the restructuring. By the time he came to NXT and RAW, although he still had a very impressive gimmick and promo ability, his in ring ability had gone a bit down since his ROH days. His match with KENTA KOBASHI, CM PUNK 2 and the Triple Threat match at UNBREAKABLE 2005 is a must watch for any professional wrestling fan."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: GriffinXwrote on 08.02.2022:[10.0] "Joe set the bar for what an ROH champion should be. He also was a big part of some of TNA's best years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Roodolphwrote on 15.01.2022:[10.0] "Joe is a complete wrestler. He can do everything well, and in the ring he is an animal. I love him and hope he comes back to wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: mjs2212wrote on 28.12.2021:[9.0] "Samoa Joe is a KILLER. Such an intimidating character and a legitimate striker all throughout his career. Almost always has great chemistry with anyone who he's in the ring with. His move set is great and I adore his muscle buster. His promos feel real and intimidating, sometimes coming off as grave and intense depending on the vibe he is trying to give off. His rivalries with Brock Lesnar and AJ Styles are some of my favorites, and speaking of AJ, who could forget the legendary triple threat at Unbreakable w/ Joe, AJ, and Daniels...So amazing! I wish I took a larger appreciation for Joe when I was younger because he really is a monster (in a positive way) in the ring. It's too bad he is prone to injuries a lot more nowadays, but he has historically been a valuable player in TNA and anywhere he goes. Blessed be the Power Game!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ProWrestlingGuy316wrote on 01.12.2021:[10.0] "Ein Wrestler, der die längste Zeit bei TNA komplett verschwendet wurde. Joe war nur einmal World Champion, danach ging es steil bergab. Man hätte ihn 2010 entlassen können und es hätte keinen Unterschied gemacht. Es ist fast absurd, wie man so einen Wrestler derart verschwenden kann. Bei ROH war er ein absoluter Killer und perfekt eingesetzt. In der WWE ist er leider ziemlich verletzungsanfällig, weshalb ich es durchaus verstehen kann, dass man nicht zu sehr auf ihn setzt. Mit besserem Booking wäre er mindestens einer, wenn nicht der größte TNA- Wrestler überhaupt gewesen. Aber durch pure Inkompetenz ist er nicht das geworden, was Joe hätte werden müssen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Luchagang13wrote on 09.11.2021:[9.0] "One of the greats. One of the original Indy darlings. His TNA and ROH run was golden. WWE has done a great job of wasting a great talent and a monster heel. I hope one day he becomes a world champion in WWE but i doubt it. Great look, great in ring work. Very fast for his size. MMA style striker and submission specialist. Him and AJ used to put on straight bangers in TNA"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: kfztkfzt2021wrote on 14.10.2021:[9.0] "Samoa joe is extremely talented, one of the best on the mic, impressive powerhouse and technical skills, perfect combination between wrestling styles, very vicious in the ring, he truly looks like a treath to most male wrestlers.His matches, mainly the big ones are usually great, of course he was way better before, and the only complaining i have about him is the poor care of his health, which lead to his damaged physic and match qualities today.Still amazing, i hope he takes better care of himself."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: medousewrote on 25.08.2021:[6.0] "For me, he is extremely overrated wrestler. Terrible physique and a very simple and boring attire. Looks more like a security or a mid-card jobber. He sure can talk, take big bumps and had some awesome matches in the past, especially in ROH."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: BrayanLaPrewrote on 19.08.2021:[10.0] "One of the greatest wrestlers in the history of professional wrestling. One of the most important wrestlers in the history of professional wrestling. Samoa Joe was the face of Ring of Honor, and in turn, independent wrestling as it shaped the way that American companies styled their cards and in-ring performers honed their craft. Joe was also the epitome of what made the X-Division so special as it did exactly the same with more mainstream exposure. In the ring, the absolute complete package as a striker, submission artist, and aerial assailant while moving in ways that his build suggests he shouldn't be able to. On the mic, one of the most exhilarating characters in the industry. Hand him a microphone and magic will transpire. Countless classic matches with a wide variety of opponents. Even more incredible memories and moments. A five-star wrestler, 10 out of 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Suzukigunwrote on 23.06.2021:[10.0] "I rarely give out 10s, but I have to give one to Joe. He was a legend in ROH, where his epic title reign really put ROH on the map and turned the title into a true world title. He had some of the best matches in ROH history, including an all-time classic with Kobashi that many believe is the best match in ROH history. Then he went to TNA and became a legend there, with tons of great matches, including another all-time classic, this time against AJ Styles and Christopher Daniels, which is viewed as the best in that promotion's history. His NXT title run didn't have epic matches, but it was still quite memorable and he was a great presence there. His main roster run wasn't epic, but he did have some great promos, feuds and matches there too, including the unforgettable fatal fourway for the Universal Title at Summerslam a few years back. He's had a long list of great matches, great promos, has a great presence, great charisma, everything. He was the complete package and continued to be one even when he was past his prime. He's the consummate pro wrestler who deserves his props."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: AndoCommandowrote on 22.04.2021:"Would be an all-time great if it weren't for him slowing down significantly since late 2007. Still has plenty of great matches on his resume and deserves more eyes on his past work. EDIT: Had a fun style distinct from many of his peers given his influence from 90's UWFi and NJPW heavyweights. He's actually a great example of someone not trying to emulate King's Road or old school NWA like a certain "jobber" would have you believe."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: joshjackalwrote on 15.04.2021:[10.0] "At his peak, Joe was one of the best workers you will ever see in any era of wrestling. His feuds with CM Punk, AJ Styles, Christopher Daniels, and Kurt Angle are legendary. He was used poorly in his later TNA run and then in WWE, but that speaks poorly of TNA and WWE, not Joe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Shadow Explosionwrote on 26.01.2021:[10.0] "From 03-06 Samoa Joe was one of the best workers on the planet, and then he declined a bit when TNA didn't push him that much and waited till 2008 to give him the world title which at that point he slowed down a bit. And then his run in WWE has been.. just sad. He's not the same guy he used to be but he still carries that swagger, that's the one thing Joe still has in spades."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: plaguespreaderwrote on 29.11.2020:[9.0] "Can't believe I lived to see this dude demolish Brock Lesnar, even if their match was just decent. Good technician, better promo, incredible striker with a fluid moveset of submissions, power maneuvers, and strikes. Happy to see him in WWE even if he is past his prime. Minus one point because of that weird stair dropkick spot from TNA that shattered his future career ceiling. Was Unbreakable 2005 his peak? Possibly. Maybe his fight vs Necro Butcher. But it is a testament to his abilities that he continued to produce quality work to this day. Really sucks he's injury prone now."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Ma Stump Pullerwrote on 15.03.2020:[8.0] "If purely based off of his ROH work, he'd be much higher. However, Joe suffered a lot after his ROH run ended, while TNA did respect his work and placed him in the main event during his early years there, over the years he was given bad gimmick after bad gimmick, and became a mid carder to ex WWE talent. His fall was quick afterwards as he gained a good amount of weight and his moveset massively reduced. By the time he got to WWE he was a lot slower but could still go pretty well for a guy his size, but by then he was far past his prime. At this point, he's just another low mid card act and can't be relied on for main event matches or titles due to being massively injury prone. That being said, his promos are solid and he's knows how to work well, so he's still pretty good, but nowhere near his young years, which I would say at the time he was one of the best wrestlers, period. However his later years drag that legacy down, sadly"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: taabr2wrote on 31.08.2019:[10.0] "During his peak Samoa Joe was a specimen, a big guy who could wrestler the technical style and throw in some high flying moves with everything he did look as punishing as his stiff strikes. His in-ring peak was definitely the start of his career where he was a book as an unstoppable force of nature in ROH and TNA which worked amazingly well considering how he could wrestle so much styles. Nowadays he has clearly slowed down and although he still exudes the same intensity, he doesn't do as much. He was definitely someone WWE missed the ball on as they signed him after his peak. However before that he was definitely one of the top guys outside WWE in the 2000s"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: KyleEnjoysWrestlingwrote on 09.08.2019:[9.0] "Was one of the best in the world during his early TNA days. An amazing talent in pretty much every area of focus. He felt fresh & had super buzz about him due to his matches from ROH; specifically against Punk. TNA has made many bad business decisions during their time, but one of the worst has to be booking Joe to lose to Angle & to rush through that program the way they did. That was really the start of the TNA decline. Joe did have that terrible angle in TNA when he was running around with a machete. Since coming to WWE, he's gained a lot of weight and even though he still moves well & is still a killer on the mic, he's just not as badass as he was back in the early & mid 2000s."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Taker bestwrote on 07.07.2019:[10.0] "One of the best wrestlers. His work at ROH and TNA is incredible. By far great work at NXT, best on mic and best in wrestling! I love him very much"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TylerWhitewrote on 02.06.2019:[10.0] "Für mich eines der besten Gesamtpakete der gesamten Wrestlinggeschichte und das wohl beste Powerhouse aller Zeiten und auch einer meiner absoluten Lieblingswrestler überhaupt. Ich glaube es gibt keinen Wrestler mit seiner Masse, der so viele unglaublich gute Matches hervorgebracht hat und jahrelang ein Meisterwerk nach dem anderen kreiiert hat. Mitte der 2000er war er einer der Topguys sowohl bei ROH als auch bei TNA und hat mit den besten Athleten überhaupt wie Danielson, Styles, Punk, Daniels, Low Ki, Kenta, Kobashi etc. gewrestlet und konnte mit jedem mithalten, egal wie spektakulär und schnell sein Style auch war. Was ihn so besonders gemacht hat war, dass er in jedem Match einfach Big Time Feeling aufkommen lassen konnte und das alleine schon durch seine Ausstrahlung. Joe muss nur im Ring stehen und es sagt schon so viel aus und du bist schon gefesselt. Ich kenne kaum einen Wrestler, der so viel Charisma hat und so viel Coolness ausstrahlt. Es gibt glaube ich auch keinen Wrestler, der mehr badass rüberkommt. Noch dazu ist er genial am Mic und kann hervorragende Promos halten. Noch dazu, woran dann viele scheitern, kann er seine Rolle perfekt rüberbringen und allein mit kleinen Gesten so viel erzählen. Auch gibt es kaum jemanden der eine so konstante Karriere hatte wie er. Bei ROH konnte er sich sehr früh als einer der Topguys etablieren und hielt den Titel in Rekordlänge, wo er unter anderem auch seine geniale Trilogie gegen Punk hatte. Mitte der 2000er setzte er sich auch bei TNA durch und war bei beiden Promotions einer der MVPs. Seine späte Phase bei TNA war zugegeben dann nicht mehr die stärkste, doch bei NXT konnte er dann wieder einen starken Run hinleden, der klar nicht mehr so gut war wie bei ROH, aber dennoch beachtlich ist. Im Main Roster bleibt der große Push leider bisher aus, weil Vince wohl auch wiedermal nicht sieht welches Talent er mit Joe hat, nämlich einen der besten Wrestler überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: JustAWrestlingFanwrote on 24.04.2019:[10.0] "By far one of my all time favorites. One of the best on the mic in the entirety of wrestling history. Loved the stuff he did back in ROH and TNA and despite not beign booked as strong in the WWE as i have been hoping for he has been given plenty of time to shine on the mic and has been part of many memorable moments. Also one of the more agile big men."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Matt Mackswrote on 21.04.2019:[10.0] "The body of work that Samoa Joe has accumulated over the past twenty years includes a ton of impressive stuff: really awesome and memorable matches against Kobashi, Punk, Styles, Daniels, Angle, Danielson, and more. He has the ability to somehow stay fresh despite ridiculous mismanagement of his push in TNA and periods of creative-has-nothing-for-you in WWE. He is a believable bad ass character and after having seen and experienced so much in his career, he has a swagger and directness on the microphone that has become really entertaining and lacks the dreaded sense of being scripted like many of today's WWE promos. His ROH World title reign made that championship in the early 2000s and started a half-decade run of awesomeness for the promotion. Today Joe is one of the few WWE wrestlers I thoroughly enjoy watching in the ring, because his wrestling style is unique, tough and believable. I hope WWE will reward him with a stint at the very top for at least a few months to give him another career highlight and the distinction of being the only (? ) wrestler who has held the top titles for WWE, TNA and ROH -- at least for a time these three promotions were the undisputed top 3 in North America."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: AJStylopzwrote on 18.04.2019:[10.0] "I can't give anything less than a 10 to this man. This guy really is Pro Wrestling. Joe has had some of the most outstanding matches of ROH era and the best TNA matches for FUCKING sure! He is so great at everything, from facial expressions, to his insane agility for his size, his MMA-ish and jiujitsu ability, probably the best and most underrated promo guy in Pro Wrestling at the moment, he says everything with such fucking passion and agression and he makes you believe he is really gonna do it which is what Pro Wrestling should be all about. Also held one of the greatest title reigns in ROH and very underutilized in the E."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: SED12345wrote on 15.04.2019:[9.0] "God bless Samoa Joe. One of the greatest promo guys in wrestling history, one of the great submission specialists in wrestling history, and one of the greats period. His match with Bryan Danielson in 2004 is absolutely stunning. His best opponents in my eyes include AJ Styles, Brock Lesnar, Necro Butcher, and as mentioned before, Bryan Danielson. God bless Samoa Joe. Night night."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: zephyrwrote on 28.03.2019:[7.0] "Samoa Joe has put on many great matches but for the majority of his work I just feel like I'm missing something that makes people love him so much. I mean, he's a very good wrestler and shockingly agile for someone his size but I really can't see him being a 9 or 10."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Cibswrote on 29.01.2019:[10.0] "One of my favorites. I prefer to see Samoa Joe more like heel than babyface but in general he is great, I love his intensity in the ring and the agility he has for his weight; he's also a good talker and knows perfectly how to adapt to different types of opponents. It's a shame that he wasted so many years in TNA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: KINGwrote on 09.11.2018:[8.0] "He's just amazing, fantastic to watch in the ring and fantastic to hear on the microphone, the only thing he lacked in his career was booking but that's not to blame on him, but I can understand the fact that towards the end of his TNA stint he was demotivated, I would be the same if I was put in a program with Crimson, his ROH and early TNA work deserves a 10 tho, he was the best monster in these years. In WWE they will never make him win the big one but he already had some great matches, he gave Reigns his best match (at least IMO) and he was simply terrifying during his feud with AJ Styles, a real badass."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: RatingsMachinewrote on 22.09.2018:[9.0] "Samoa Joe has the look, the aura, he can talk, and he can still be a great worker. If TNA had kept with the booker who knew what he was doing when Joe was there, Joe could have been a major star long before he arrived in WWE."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: HereIsMigwrote on 05.08.2018:[7.0] "There is not too much to say about Joe that fans do not know. I just want to point out that Joe is, in the personal trait, a really cold person. I had the luck to interview him, and he was really mean towards me - us all. Is not the first time that happened, according to several people working in the business of information. You can not expect to be the face of a company if you do not treat media and fans properly."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Alex Maedawrote on 21.07.2018:[10.0] "Weltklasse-Performer, sehr starker Redner, noch besser im Ring. Jede Promotion, die Samoa Joe jemals unter Vertrag hatte, sollte wissen, was für ein Glücksgriff dieser Mann ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Doshin92wrote on 09.06.2018:[9.0] "Samoa Joe ist ein Wrestler der im Ring und am Mic immer Glaubhaft ist. Von seiner Zeit bei ROH über TNA und jetzt bei NXT war er immer sehr beeindruckend und überzeugend. Ein Big Man der jederzeit in der Lage ist ein Klasse Match abzuliefern. Hoffe die WWE wird auch im Main Roster seine Leistungen würdigen und dementsprechend einsetzen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: lew kazamawrote on 02.05.2018:[10.0] "Samoa Joe is one of the most genuinely terrifying heels in world wrestling, and by far the most intense and threatening promos in the WWE. His matches are often melting pots of strong style, submission battles and beat downs by the Samoan destroyer. If anybody could easily carry the weight of the Universal Title convincingly it is Samoa Joe. A truly consistent and unique talent that has earned his spot at the top the Smackdown card in 2018."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: LrockBesnarwrote on 18.04.2018:[10.0] "I don't know exactly what to write about Joe. He is a true legend i think. He's a guy who wrestled with great legends like Misawa, Kobashi, Liger. Especially the match that he did with Kobashi was very epic. He is a very careful and realistic wrestler in the ring both emotionally and technically. a perfect speaker. His sentences always logical and on some real points. I watch his promos with excitement. So realistic. He's a very successful man of course but his rating is very low on this site."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Dragon Fighterwrote on 27.11.2017:[10.0] "The samoan submission machine SAMOA Fucking JOE. From 2004-2006 he was easily in top 5 best wrestlers in the world. Specially in 2005, he was the second best just after kobashi. His in work was so great. He was so smooth at his size. Good psychology for sure. Had a bunch of great matches. His mic work was quite underrated. Since 2010s, he has slowed down a lot. He is now pretty slow and sloppy, but he still manages to have good matches all the time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TooSweetPhilwrote on 30.06.2017:[8.0] "Joe ist einer der Wrestler, die man zukünftig, als auch jetzt als das monströse Konstrukt des Flaggschiffs aufbauen könnte. Im Ring hat er im Vergleich zu seiner Prime etwas nachgelassen, ist nicht mehr so schnell und athletisch, doch hat trotzdem seinen eigenen Style zwischen Härte und Submissions gefunden. Ansonsten hat er wie gesagt eine monströse Ausstrahlung, basierend auf guter Mimik, tollen Mic-Skills und Charisma. Gerade so auf eine gute 8 abgerundet."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: LSEstrelawrote on 07.05.2017:[8.0] "Samoa Joe is that one guy every promoter should want to have in his company. A very solid all-rounder, Joe has proven time and time again that he is one of the best heels in the bussiness today, while also playing a serviceable babyface."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: awsmpwniewrote on 24.04.2017:[7.0] "Für mich overrated. Ich finde ihn zwar nicht schlecht, aber der Fakt das ein massiger Kerl ab und zu mal ein paar schnelle athletische Moves auspackt, macht ihn noch lange nicht zu dem was viele in ihm sehen. Er ist sicher gut für den einen oder anderen Midcard title run, aber ansonstem ist er gut als Aufräumer für die HHH und Stephanie aufgehoben.  Mal sehen vielleicht überzeugt er mich ja noch"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Blood Pumpwrote on 07.04.2017:[8.0] "Joe can hang with the best of 'em. He hits hard, moves fast and has a ton of endurance. Hes had classics with a large number of people and continues to have great matches after moving to the big leagues. He makes a great heel, and while his feud with Nakamura has been a little disappointing match-wise the story behind it has been quite intriguing."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TheWrestlingFanwrote on 05.03.2017:[9.0] "Amazing in ring performance, strong personality (especially as a heel), and outstanding promo skills. Joe has it all to be a main eventer."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Mouthwrote on 10.02.2017:"Tyson Kidd hat er beinahe ins Grab gebracht. Seth Rollins hat jetzt erst mal Pause wegen ihm. WhoŽs next?"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Pellipariuswrote on 07.02.2017:[9.0] "Joe ist eine echte Kategorie für sich ... Sein Körper ist nicht besonders gut definiert, weshalb man ihn erstmal für behäbig und langsam hält ... Wenn er dann aber Moves wie den Jumping Enzugiri oder den Suicide Dive bringt, wundert man sich oft, woher ein Kerl mit diesem Körperbau solche Aktionen nimmt ... Natürlich hat er die üblichen Big Man Moves wie die Running Senton, den Powerslam, die Powerbomb oder seinen Finisher den Musle Buster genauso drauf und richtet damit entsprechenden Schaden an ... Und zuletzt natürlich seine Submission Holds wie der Crossface, STF und natürlich der Kokina Clutch ...   Sein Entrance Theme zusammen mit seinem Heel Gimmick machen echt was her und sind in sich stimmig. Ich glaube, als Face wird man ihn nie erfolgreich einsetzen können :-)   Ich bin gespannt, wie er sich jetzt seinen Platz im RAW Kader erarbeiten wird ... vielleicht sehen wir ihn ja bald bei einem Main Event ... Er ist n guter Worker und kann solche Matches bestreiten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring: War in den Jahren 2004 und 05 einer der besten der Welt, wenn nicht sogar der beste Wrestler der Welt, aber er hat auch einfach dannach abgebaut deshalb -1. 9/10 (50%)  Promos/Schauspieltalent:Sicherlich auch ganz oke bis gut. 8/10 (25%)  Charisma/Statur/Gimmick:Überzeugender Big Man, besonders zu seiner TNA Anfangszeit. 8/10 (25%)  Sind dann insgesamt 8, 5 Punkte für The Samoan Submission Machine.   = 9 Punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: rjsbx11wrote on 07.01.2017:[10.0] "Joe in the mid 2000's was a strong contender for baddest motherfucker in wrestling history. He was s stud in TNA, and survived horrible booking that could've derailed his career until he found his way into NXT. In my opinion, one of the best all-round wrestlers in WWE: very unique look, great promo, ring work is obviously exceptional and he is very versatile in terms of character. He could be either an incredible heel or an ass-kicking babyface on the main roster, and every day he's in NXT, whilst he's great there, he continues to reverse the misconception originally placed upon him by the WWE brass."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: PrincessTeemowrote on 28.11.2016:[7.0] "Total overhyped.  Ihm fehlt es viel zu viel an Charakter und deshalb wird er sich auch nicht durchsetzen in den Main Shows. Er ist der klassische Typ für indies und NXT. Ein gut technischer Big man, den aber das gewissen Etwas fehlt.  Er wird so enden, wie KO am Anfang seiner WWE Karriere als er Kanonenfutter für Cena wurde.  Erst als KO zeigte, dass er n Superentertainer war, wurde er zum Main Eventer. Diese Seite kann Joe nicht zeigen, weil er sie nicht besitzt und deshalb wird aus ihn nur n Big man, der vll mal kurz den WWE titel halten darf, aber er wird keine langfristig große Nummer in der WWE sein."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "Egal ob in der Independent Szene oder bei WWE. Joe ist und bleibt einer der Besten. Im Ring ein absolutes Biest und am Mic der Hammer. Joe als Heel ist ein absoluter Show Stealer und seine Fehde mit Nakamura zeigt, dass Kayfabe noch nicht gestorben ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: DevilsSkywrote on 13.10.2016:[10.0] "Holy moly this guy has everything. Promo skills for a monster heel, technical prowess, agility even despite his larger size. A theme which says "you've done screwed up now pal", and a career to be very proud of. NXT's treating him well, and I hope he gets an even greater level of fame on the main roster."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Luv all wrestlingwrote on 08.10.2016:[10.0] "Samoa Joe bust's muscles with his muscle buster. He is a badass wrestler, simple as that, always having a good aura of seriousness about him, Joe is a beast who can excell in any wrestling promotion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: JordanACEwrote on 01.10.2016:[9.0] "A legit ass kicker. Joe is the prefect combination of brawling while having a technical side to him.  Watching hm is just fun. The guy is a beast, had one of my all-time favorite matches ever with Punk (Joe vs Punk II)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Rattlesnake3-16wrote on 01.09.2016:[10.0] "Great performer and technical athlete. He deserves more than the NXT title and I think he will have a good run on raw or SmackDown. It would be fantastic if he had matches against aj in the main roster and I think it will arrives."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: croatiantwat1950wrote on 22.08.2016:[10.0] "In his prime, he was the guy. Along with Punk, made ROH a better known promotion. He never cuts below-average promos, he always works his ass off in the ring and is very agile for his size. If he doesn't win a World/Universal title on the main roster, the creative should really electrocute themselves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Strezemannwrote on 10.08.2016:[9.0] "Joe's career looked to be on the downslope for a while there, going from one of the best in the business to someone who'd clearly lost their way. Ever since coming to NXT, however, he's seemed invigorated, turning in consistently good in-ring performances and really delivering the goods in promos. In general, at least on the indies and in NXT (I don't remember him turning in anything stellar in TNA), Joe's been a fairly underrated mic worker, I feel. He can deliver almost Arn Anderson-esque low-key promos that are straight to the point and believable, but he does 'seething with rage' very well, too. Somewhere around '03-'05, Joe was consistently one of the best heavyweight wrestlers on the planet, and his ROH title run alone has secured his legacy as a great performer. Add to that his successes in TNA and the new leash on life he's gotten in NXT, and you have a guy who really has nothing left to prove. One of the best big men ever, whose best matches (vs. Punk, vs. Daniels and Styles, vs. Kobashi) are among the premier outings of the new Millennium."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Legendkiller96wrote on 02.08.2016:[9.0] "Einer der stärksten Big Men der heutigen Zeit, für mich ist nur Cage im Ring noch davor. Als Heel ist er der perfekte Mann, mit seiner düsteren Ausstrahlung, der einzige Grund warum er keine 10 Punkte von mir bekommt ist, dass er für mich als Face eigentlich nicht funktioniert. Man ist beeindruckt wenn er gewinnt, aber richtig Jubeln tut man nicht. Trotzdem ein sehr starker Wrestler"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: killowenskillwrote on 25.06.2016:[10.0] "When people ask me why I love Joe, I have always the same answer: "Versatility". No matter good or bad, he always wins back his role at the highest level. He can make you laugh (which is only a segment with a coffin in the TNA), it may be feared, it can not be allocated, if it does not it needs, it simply can do everything. He is not a god of the microphone, but good enough. We can always understand his attitude, learn from the very first words of what he wants, but it can be unpredictable. Calling it a better speaker? No. To ascribe to the best? Definitely. And his manner of conducting divine battle. He fights mostly at a slow pace. But due to his charisma, it is rather a plus than a minus. Because in this case, it can show a match with any wrestler, with fast, nimble, even with the bag as Baron Corbin he gave a good fight, considering all the mediocrity of the Wolf. And all the matches that were rated 5 stars - not too different speeds. Samoa Joe - a vivid example of the fact that even at a slow pace, you can make a masterpiece. A conditional Kalisto shows a high rate, but watch his matches simply not interested. Failing that, I mean, Joe - a living legend. Legend, which can delight us for at least another 10 years. I hope that in his new home in the WWE, he will find himself and become a star of the top-level. He certainly deserves it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: AMHTPwrote on 22.06.2016:[9.0] "Samoa Joe is an utterly unique version of the monster brawler, blending his strength and ferocity with one of the best technical wrestling repertoires in the world.  He's equally fantastic in three-minute squash matches and hour-long iron man contests, which very few wrestlers can say.  For years, he's been one of the best-regarded wrestlers outside of the WWE, and his matches with Kenta Kobashi, CM Punk and Kurt Angle should be required viewing.  TNA earned the only legitimacy it ever had on Samoa Joe's back, and he was a highlight of both that company and Ring of Honor during his time there.  Now, Joe's made his way to NXT at long last, and he's still putting on excellent matches even if he's a little slower and less fit than he used to be.  Even so, a slightly-weathered Joe puts on better matches than most WWE stars in their prime.  Here's hoping he gets a good main roster run sometime soon, even if he doesn't plan on sticking around too long."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: prowrestlingisrealwrote on 21.06.2016:[10.0] "Samoa Joe is one of the G. O. A. T, since his early years in the business he showed his talent, and his incredible ring ability + he had memorable matches against the likes of Kobashi, Punk, Aries, Danielson, Angle ... and now he is the best champ. Vince's company have right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Cleanerwrote on 13.06.2016:[10.0] "Samoa Joe hat sich über Jahre als Wrestler bewiesen - ich sage nur 2 5-Sterne-Matches. Er ist definitiv ein sehr sehr gutes Gesamtpaket und kommt hoffentlich auch bei der WWE noch groß raus, man kann ihn im Zuge des Rostersplits äußerst gut als Top-Heel eines Brands etablieren"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ErycK24wrote on 05.06.2016:[9.0] "Joe is one of the best brawlers in Wrestling today. His excellent mobility combined with his intensity puts him in a brawler class with Lesnar."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: JoshuaWrestling63wrote on 28.05.2016:[9.0] "Samoa Joe ist ein Super wrestler Aubwohl er etwas breiter ist hat er viel drauf Im Ring 9/10 Mic 9/10 Und Charisma hat er auch 9/10 Mal Gucken was die wwe noch mit dem macht"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ApexOfEvolutionwrote on 02.05.2016:[8.0] "Ein toller Wrestler, der trotz seiner Masse unglaublich agil und beweglich ist. Seine Zeit bei ROH kann ich nur in der Retrospektive bewerten, aber die Matches, die ich gesehen habe, waren allesamt gut. Es spricht natürlich auch für ihn, dass er immer noch der Titelträger mit der längsten Regentschaft als ROH World Champion ist.  Bei tna wurde er dann gut aufgebaut, aber im Laufe der folgenden Jahre immer falsch eingesetzt, so dass man immer mehr das Intersse an ihm verlor. Die beste Zeit hatte er dann bei seinem World Title Run, in der er sehr stark dargestellt wurde und selbst Legenden wie Booker T auseinandernehmen durfte. Bei NXT gefällt er mir ebenfalls gut, aber es ist die Frage, wie sehr er dazu geeignet ist, junge Talente stark darstellen. Samoa Joe liefert seine besten Matches immer nur gegen Gegenr, die ebenfalls verdammt stark sind. Aber wenn er seinen Titel jetzt nur gegen Leute wie Eric Young, Austin Aries verteidigen kann, erfüllt es nicht den Sinn von einem Nachwuchstitel und bekommt einen Beigeschmack von tna 2. 0, wo NXT ja nun mit Sicherheit nicht hin will. Bin gespannt wie es weitergeht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: NastyYaffawrote on 15.04.2016:[9.0] "Samoa Joe is the man. From 2004 to 2007 the man was without a doubt one of the best pro wrestlers on the planet. His ROH World Title reign is legendary; and for a good reason. Some of his title defenses were just SO good. And he has been a part of some of the best matches in TNA history, too. Since arriving in WWE, he has been totally killing it, too. Brought out the best in Finn Bálor. Samoa Joe rules."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: WrestlingNerdwrote on 07.04.2016:[9.0] "Ich bewerte nun nur das was ich von TNA und WWE kenne. Seine ROH Zeit kenn ich leider nicht.  Er ist ein super Wrestler, der trotz eines fast schon ziemlich untypischen Wrestlingkörpers wirklich extrem viel drauf hat. Er ist einfach Agil. Überrascht immer wieder mit Moves und hat es einfach drauf. Er muss auch nicht viel sagen, er glänzt auch schon so, mit einer extremen intensität. Und btw. die Musik bei NXT von ihm, einfach herrlich."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: JuliTheCage87wrote on 02.04.2016:[10.0] "Ehemalig einer der besten Wrestler der Welt mit einer phänomenalen Agilität und perfekten, schmerzhaften Power- und Technik-Moves, zudem ein wahnsinnig guter Submission-Wrestler. Auf der Matte nahezu unschlagbar. Einen Punkt Abzug jedoch für seine nach und nach schwindende Kondition, hat am Ende langer Matches definitiv immer nachgelassen und wirkte nicht gesund. UPDATE: Zwei Punkte Abzug. Seine Ausdauer macht ihm schwer zu schaffen, er wird mit jedem Match langsamer und "normaler". Den alten Joe wird er wohl aufgrund seines körperlichen Zustandes nie mehr erreichen. Schade eigentlich. UPDATE #2: Und bei NXT wieder genau da, wo er hingehört. Der böse, zerstörerische Heel, der, anders als bei TNA, auch mal über 5 Minuten gehen darf. So will ich ihn sehen! Wirkt wieder viel ambitionierter und fitter."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ShooterMcShootwrote on 25.12.2015:[10.0] "Why Samoa Joe isn't on the main roster being pushed as the world champion is a mystery to me. Well, not really a mystery. But McMahon's logic is ridiculous nonetheless."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TrevPuroFanwrote on 21.12.2015:[10.0] "Samoa Joe is one of the best fat guy wrestlers ever and my personal favorite samoan wrestler of all time. This guy had so many classics vs the likes of AJ Styles, Kurt Angle, Kenta Kobashi, CM Punk, Bryan Danielson etc. And he has basically won every World Title in the main companies he has been. Lets hope he wins the WWE strap soon. Joe is amazing. 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MoonsaultsEdgecutionwrote on 28.11.2015:[7.0] "Das mag vielleicht hart klingen, aber für mich ist Joe längst über seinen Zenith hinaus und 2015 gibt es etliche andere, denen ich eher das Spotlight geben würde. ;-)"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Dowkesywrote on 09.10.2015:[10.0] "How can I give this man any less. So many brilliant matches, 3 classics with CM Punk, vs. Kenta Kobashi and not to mentioned the dozens of great matches between him and the likes of AJ Styles, Low Ki, Christopher Daniels, Bryan Danielson and Kurt Angle as well as more throughout his career. A great talent. 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Matzinhowrote on 27.07.2015:[10.0] "Als World Champion bei RoH zeitweise der vielleicht beste Wrestler der Welt. Über die Jahre hat er mich aber in zu vielen Matches enttäuscht oder ist einfach meinen Erwartungen nicht gerecht geworden. So zum Beispiel gegen Angle, Kobashi und Misawa. Vom Booking will ich gar nicht anfangen - TNA hat ihn in meinen Augen kaputtgemacht. Am Ende des Tages gebe ich ihm 9 Punkte, weil er immer noch ein überdurchschnittlich guter Wrestler ist, trotz aller Widrigkeiten. Sein Potenzial hat er aber nie abgerufen. UPDATE: Revitalisiert sich gerade völlig bei NXT und ist so heiß, wie seit Jahren nicht mehr!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ShawnDravenwrote on 10.06.2015:[9.0] "Probably every bit as important to the history of TNA as AJ Styles is. I don't see him hanging around NXT for long before he gets called up to the main roster."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Unstable8383wrote on 25.05.2015:[8.0] "Ja er ist gut..... Promos sind auch nicht die schlechtesten!   Aber: Mit 36 Lenzen jetzt noch über NXT in die WWE? Ich weiß nicht ob das für ihn wirklich sinn macht... klar wird er sicherlich ne menge geld machen, aber ich denke er hätte im Indy-Bereich bleiben sollen! N langer Run wird es für ihn sicherlich nicht geben..  Hoffe er wird richtig eingesetzt!  Ansonsten ist er natürlich jetzt schon eine Legende, wie man bei TakeOver Unstoppable gesehen hat, welche Pops er bekommen hat!  Wünsche ihm das beste in der großen Liga und hoffe das er ein zwei Titelregentschaften bekommt! Verdient hat er es schon... Freue mich auf Matches gegen Ziggler, Bryan oder auch Rollins..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MusSanwrote on 24.05.2015:[8.0] "Ich finde Samoa Joe einfach fantastisch. Hat viel Charisma und im Ring ist er gut. Jetzt ist er bei der WWE.  Einfach zuruecklehnen und seine Fehde gegen Kevin Owens geniessen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: downtown2wrote on 22.05.2015:[9.0] "Nachdem die gefühlt letzten fünf Jahre reine Stagnation waren, bekommt Joe immer mehr Feeling zurück für seine Rolle. Der Weg weg von TNA war bitter nötig, weder er noch die Liga selbst wussten so recht, wohin man mit ihm noch gehen sollte. Fairerweise muss man Joe zugestehen, dass die vielen Booking-Fehlgriffe seine Karriere auch fast ruiniert haben, da wäre wohl niemand noch sonderlich motiviert. Aber der alte Samoa Joe, den man heute wieder bewundern kann, hat alle Tools um im Spätsommer seiner Karriere nochmal richtig durchzustarten. Top im Ring und am Mic, sensationelle Ausstrahlung - alles vorhanden. Nur weiss die WWE hoffentlich, dass man ihm nicht nochmal ein paar Jahre klauen sollte, sonst ist er einfach zu alt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Maryanwrote on 04.03.2015:[8.0] "Joe's one hell of a talent. Too bad TNA hasn't used him right in the past few years but now he is back in ROH. And if the WWE rumors turn out to be legit, then I wish the Samoan Submission Machine all the best!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Le Wrestling Fanwrote on 26.02.2015:[10.0] "You don't see big man and awesome in one sentence very often. Samoa Joe is an awesome big man. He has be great throughout his career and he can easily be called the best Samoan wrestler in history, hands down."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: eldenaaaaawrote on 23.02.2015:[10.0] "A dominant force in pro wrestling over the last 15 years. The longest reign with the ROH World Championship in their history. Held every belt in TNA, some on multiple occasions. His track record speaks for itself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Triple Hwrote on 17.12.2014:[8.0] "Klar hat Joe nicht mehr die Stärken, die in bei ROH noch prägten, aber man wird halt nicht jünger und die lange Zeit, die er schon im Buisness tätig ist, hinterlassen ihre Spuren. Dennoch gehört er für mich zu einem der besten im Kader, die TNA noch präsentiert. Für Mitte 30 immer noch sehr agil und beweglich wenn man seine knapp 130 Kg Körpergewicht berücksichtigt. Seine Submission Moves bleiben sein Markenzeichen und er trägt zurecht den Spitznamen "Samoan Submission Maschine "Seine Matches können mich immer noch gut unterhalten auch nach über 10 Jahren, die ich ihn schon kenne."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Viper99wrote on 25.11.2014:[10.0] "Kriegt trotzdem noch 10 Punkte obwohl er schlechter als Von vor 2Jahren ist.... aber er wird halt auch nicht jûnger. Trotzdem ist er ein Super Agiler und Technich versierter , , Big Men" der five star Matches gegen ua. Punk oder Daniels gezeigt hat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: yanuswrote on 09.10.2014:[8.0] "Great worker, but is now well past his prime and really isn't able to portray a "wrestling" character other than tough, silent dude."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Baldrickwrote on 10.08.2014:[9.0] "Seine Athletik lässt immer mehr nach, sein Selling ist nicht mehr zeitgemäß. Aber Joe zeigt zu ausgewählten Anlässen immer wieder bockstarke Matches und hat ein unfassbares Gespür für Wrestling. Diese Ringinteligenz, gepaart mit dem rein subjektiven Bonus von Ausnahmeleistungen independent und bei TNA in den letzten 8 Jahren, lassen aber nach wie vor eine sehr gute Bewertung zu."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Kings Roadwrote on 02.07.2014:[8.0] "Im Indybereich und bei ROH gehörte Samoa Joe ganz klar in die 10 Punkte-Kategorie. Bei TNAW hatte er zunächst einen starken Run und fiel dann unter die Bullshit Booking-Räder. Schade. Aktuell finde ich seine Rolle annehmbar und mit Mitte 30 hat Joe ja sicher noch einige Jahre, in denen er hervorragen kann."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Hirnklopswrote on 12.05.2014:[7.0] "Es schmerzt mich, Joe abzuwerten, immerhin würde ich heute kein Wrestling mehr schauen, hätte es damals nicht diesen bösen Typen gegeben, der einfach Alles und Jeden einplaniert hat, aber ich habe mich an Joe satt gesehen. Klar, was TNA mit ihm gemacht hat, spielt da sicherlich eine große Rolle, aber Joe funktioniert für mich einfach nicht mehr. Er ist lange nicht mehr die Planierraupe, die er mal war, er ist behäbig geworden und langweilig, ein Schema-F-Abspuler wie es irgendwann auch Bret Hart war, und dafür kann und will ich keine Höchstwertung geben. Es ist immer noch cool, Joe ab und an mal zu sehen, aber als Dauerbespaßung kann ich mir das nicht mehr geben."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: LowJomoKiwrote on 20.04.2014:[7.0] "Eigentlich ein technisch richtig guter Big Man, der bei RoH mich stets überzeugt hat und mehrfach richtig starke Matches zeigte... auch bei TNA war er lange Zeit eine Bereicherung für deren Roster, aber mittlerweile geht er leider etwas unter trotzdem kann er auf eine starke Wertung zählen, denn er kann es ja schliesslich... auch wenn er es momentan nicht zeigen kann oder darf..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TheLoudMouthwrote on 19.04.2014:[9.0] "Sehr, sehr starker Big-Men mit außerordentlich guten Mic-Skills und einem guten Maße an Charisma. Alles in Allem ein Wrestler auf absolutem Top-Niveau."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Undertalkerwrote on 30.03.2014:[8.0] "Was Joe kann, das kann er gut: Vom Wrestlingstil her, stellt er eine optimale Mischung aus Stiffness, Powermoves, Technik und Submission-Wrestling dar. Zudem wirkt er extrem aggressiv, was seinen Wrestlingstil aufs Beste unterstreicht. An seinem Micwork gibts meinerseits auch nichts auszusetzen. Er hat sich charakterlich jedoch nie weiterentwickelt, und ihm fehlt es hier einfach an der nötigen Tiefe. Er müsste mehr von sich zeigen, als nur die aggressive Samoan Submission Machine. Ich weiß es nicht, aber anscheinend kann er nur diese Rolle richtig verkörpern; was mir etwas zu wenig ist. Daher denke ich, sind 8 Punkte angemessen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: HongKongPhooeywrote on 22.02.2014:[9.0] "The true pearl of the TNA roster. Ever since his stand out run in Ring of Honor, Samoa Joe has been an incredible competitor inside the ring. Joe's in ring skills can stand toe to toe with anyone in the world wrestling today and is someone who should be considered one of best of this era."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TAWPTierJustinwrote on 02.01.2014:[10.0] "Samoa Joe has always been one of my most favorite wrestlers on the TNA roster! What can I say that hasn't been said already about this guy? I really love watching Joe wrestle! For a guy his size he can do things in the ring that a lot of other guys his size can't do and of course he's always had the ability to put on amazing matches with other awesome workers as well! I've always loved Joe's character on TV too. He has such an intimidating presence every time he shows up on TNA television and he can cut a serious, believable promo with the best of them and can add some humor to his mic work too if necessary. Joe has always been one of the top TNA guys you think of who everyone wants to see in WWE someday and you always wonder whether or not he'll go to WWE eventually. I would love to see him in WWE just like everybody else would, but at the same time, at this point for me, I'm perfectly happy that he's still with TNA cause at least he's still on global television wrestling the kind of matches he loves to wrestle in. However considering how much of a world champion caliber talent Joe really is, how he hasn't received multiple title world title reigns in TNA is just mind-boggling to me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: FollowTheBuzzardwrote on 22.12.2013:[10.0] "ich vergebe ja ganz oft 10. 0 an Wrestler die es verdient haben, aber hier wären wohl 11 Punkte etwas angebrachter. Dieser Mann ist der Allrounder schlecht hin. Kaum einer verbindet Schnelligkeit, Stärke, Technik so wie Samoa Joe. Das war ja noch nicht alles. Rekordhalter des ROH-Championbelts und immer für ein 5-Sterne Match verfügbar siehe die Schlachten gegen CM Punk damals bei ROH, oder diesen sagenhaften Tree-Way Dance mit AJ Styles und dem "fallen Angel" Christopher Daniels. Mic-Work ist noch ausbaufähig, aber muss er das ? NEIN ! Dieses leichte geheimnisvolle verleiht seinem Gimmick den letzten Schliff."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: CLPSKYLINERwrote on 14.12.2013:[7.0] "Von seiner Statur her, wirklich hervorragende Technik."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: HammertonWaywrote on 23.08.2013:[10.0] "It's the Samoan Submission Machine, of course he's going to be a 10! Samoa Joe is one of TNA's greatest wrestlers. He can play any role to its best and then some. Though I'd like to see him as the world champ again, it's always a treat to watch him in action."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: todd1928wrote on 13.08.2013:[10.0] "Samoa Joe used to be the most dangerous man in pro wrestling, while those days have passed he is still better than 95% of the guys in the back of any company. His strikes are the best in the business and his submissions skills are still rock solid, while he doesn't fly well anymore he is still very quick on his feet for a guy his size and is still only 34."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Valancewrote on 02.08.2013:[6.0] "In the days of ROH Samoa Joe was a real Samoan Submission Machine. And now it has become very tired and lazy."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: dudemanbearpigwrote on 05.07.2013:[9.0] "This guy is just amazing. Quite agile for his size, and a heck of an in-ring worker. It's too bad TNA dropped the ball on him numerous times."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ThatGuywrote on 27.06.2013:[6.0] "Was ist nur aus Samoa Joe geworden, der einstige König der Indy-Szene, das absolute Talent, ein ungeschliffener Diamand und nun ? Ein übergewichtiger Midcard Wrestler der mehrfach die Chance nicht genutzt hat zur WWE zu wechseln.   In TNA ist er verheizt worden, seine matches mit Kurt Angle waren exzellent, das will und kann ich auch gar nicht abstreiten aber seine performance hat doch stark nachgelassen. Nach seiner Fehde mit Angle kam nicht mehr viel, er hatte ein Tattoo im Gesicht, war in der Main Event Mafia, wurde entführt (Und von den Entführern anscheinend sehr gut gefüttert) und er schwebte generell in einem luftleeren raum von einer bedeutungslosen Fehde zur nächsten.   Und als man ihn endlich mal wieder vernünftig eingesetzt und mit Magnus in ein Team gesteckt und dieses zunächst gebooked hat wurde er wieder als Solo-Talent ins Nirvana gebooked  Er ist ein guter wrestler aber er hat sich wie bereits angesprochen doch sehr gehen lassen, er hat über die Jahre zugenommen und ist am Mikrofon sogar noch schlechter geworden als vorher."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Davros77wrote on 25.04.2013:[8.0] "Immer noch ein äußerst fähiger In-Ring-Performer. Sein letzter echter Klassiker liegt allerdings schon ein paar Jahre zurück und er dümpelt momentan bei TNA etwas ziellos umher. Ein Tapetenwechsel könnte ihm gut tun..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Leonewrote on 22.03.2013:[10.0] "In TNA, he's great, particularly with his matches against the likes of Kurt Angle, AJ Styles and Chris Daniels.  In ROH, he's a legend.  The longest reigning ROH world heavyweight champion in history, and one of the best strong style wrestlers in North America.  While looks can be deceiving, Joe has a combination of strength and agility that not only is surprising from a 280lb wrestler, but also plays a big role to his hard-hitting style.  His matches against CM Punk are amazing.  His match against Kenta Kobashi was not only 1 of the best matches ever, but it had 1 of the best crowds as well.  On top of this, Joe has a natural charisma and good mic skills that you don't always see, and he knows a lot more wrestling styles than many wrestlers of similar builds.  One of the greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Bowlenwrote on 16.03.2013:[8.0] "Toller Wrestler, gerade wenn man seine Maße berücksichtigt. Leider wird Joe seit 2009 bei TNA völlig verbookt. Da er noch viele gute Jahre vor sich hat, hoffe ich mal, dass sie ihn bald wieder mehr zu schätzen wissen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: NightShadowWarriorwrote on 16.03.2013:[8.0] "Einer der All Time Greats von TNA  In Ring und Mic Skils sind super"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Woerpwrote on 23.11.2012:[8.0] ""Mit Joe kann ich gar nichts anfangen. Der ist farblos und formlos (4 Punkte). " So hab ich ihn vor ein paar Jahren bewertet. Das kann ich nicht mehr so stehen lassen. Joe ist cool, grandios im Ring, nur seine Promos hauen mich immer noch nicht vom Hocker."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Steenericowrote on 15.11.2012:[10.0] "Samoa Joe ist ein klasse Wrestler mit einem richtig tollen Gesamtpaket. Über seine In Ring Skills braucht man gar nicht erst zu diskutieren, diese sind herausragend. Er hat nicht umsonst drei Matches mit *****. Er gehört definitiv zum Besten, was TNA zu bieten hat, und kann aus fast jedem Gegner ein tolles Match rausholen. Schade, dass er bei TNA in den letzten Jahren nicht seinen Fähigkeiten entsprechend eingesetzt wurde, aber ich hoffe immer noch, dass sich das noch ändern wird und wir ihn irgendwann mal wieder im Main Event sehen werden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Wolkywrote on 20.09.2012:[10.0] "Überrangender Wrestler, hat sehr viel drauf und nen ganz eigenen Stil. Im Ring sicherlich einer der besten dies gibt. Kann aber auch am Mic was und ist in Sachen Schauspiel und Charisma kein Schlechter. Sollte aber ein deutlich höheres Standing bei TNA haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Fahqallwrote on 30.08.2012:[10.0] "Der Mann für den die 10 Punkte geschaffen wurden.  Perfekter In-Ring-Performer, der technisch mit allem gesegnet ist. Zudem starker Brawler. Die Intensität, die er an den Tag legt, sucht (für mich), gerade bei Impact, seines Gleichen.  Auch sein Mic-Work ist für mich genial."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Awesome Arieswrote on 10.06.2012:[10.0] "Einer der wenigen Wrestler, auf die der Ausdruck "Total Package" zutrifft. Joe ist im Ring super und weiß auch am Mic zu unterhalten. Ich sehe ihn einfach sehr gerne, weshalb Samoa Joe die Höchstpunktzahl von mir bekommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: jjchiofalowrote on 15.12.2011:[10.0] "Oh how the mighty have fallen. Samoa Joe was once TNA's biggest and baddest wrestler. He is strong. He is agile. He has misc skills. He is intense. He is a complete damn bad ass. Joe's career had a promising start with the x Division in the palm of his hand. He then began to move upwards until he reached the very top. Then his career fell."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Undertaker555wrote on 11.12.2011:[7.0] "Ich finde es immer wieder toll seine Matches zu sehen(auch wenn es in letzter Zeit weniger werden). Wenn ich mir so seinen Körperbau anschaue und wie er das Umsetzt das ist unglaublich gut. 7 Punkte für den Samoa Joe"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Rated R Punkwrote on 06.09.2011:[8.0] "Ich hoffe für ihn echt das die WWE ihn bald aus seinen "leiden" bei TNA erlöst, früher zu seinen Anfangszeiten in TNA war er echt gut gebraucht und ging voll auf! Mittlerweile wird er echt unter Wert verkauft und lächerlich gemacht! Dabei ist Samoa Joe für seine Statur sein sehr guter Wrestler vielleicht nicht am Mic so begabt oder viel Charisma aber trotzdem ein guter Worker!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: HHH Pedigreewrote on 18.08.2011:[9.0] "I am a fan of the samonan submission machine. He is like Benoit, he has no micro charisma, his shows his charisma in the ring. He is an unstoppable wrestling machine, fat, but strong. Also, his moveset is amazing, pele kicks, musce buster... he can do a great match with RVD."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Marco2911wrote on 01.08.2011:[1.0] "Kann mich im Ring und am Mic nur wenig überzeugen.  Außerdem fehlendes Charisma. Macht 1 Punkt."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: treeofworldswrote on 01.08.2011:[8.0] "JOE! OH JOE! Was ist bloß passiert. In den Jahren 2004-2006 hätte ich vermutlich die Administratoren angeschrieben warum ich Joe nicht doch ausnahmsweise 11 Punkte geben kann. Nun ich verfolge TNA zwar nicht hunderprozentig regelmäßig aber es wurde schon auffällig, wie das Feuer in ihm in letzter Zeit schwächer wurde. Meiner Meinung nach sollte Joe TNA verlassen, weil sie ihm ja doch nur die Karriere versauen. Hoffentlich bekommt er dort genug Kohle, dass sich das für ihn rentiert. Für mich als Fan Schade wie sein unglaubliches Talent verschwendet wird."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Benji1706wrote on 28.07.2011:[9.0] "Joe ist eigentlich ein guter Main-Eventer, der in jeder Liga dieser Welt zu den besten gehört. Leider sieht man das in Florida nicht so und lässt ihn in der Mid- oder sogar Undercard versauern.  Joe würde eine Luftveränderung sehr gut tun... und bei WWE. inc sucht man doch nach neuen Hauptkämpfern. Dort hätte er auch viele neue und frische Möglichkeiten gegen Leute wie Cena und Orton oder gar Revivals mit Bryan und CM Punk.  Mit Sicherheit würde ihm auch ein bisschen weniger Gewicht gut tun, aber hey... das ist gar nicht so einfach ;)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Play2Xwrote on 15.06.2011:[9.0] "Zur Zeit etwas unmotiviert... aber trotzdem einer der ganz großen In-Ring Worker! Hoffe, dass er bald wieder inŽs main Event kommt"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: SoulTouchaZwrote on 28.05.2011:[10.0] "Warum wird dieser Kerl nur sporadisch eingesetzt? Er gehört in die selben Regionen wie ein Sting oder ein Anderson!  TNA sollte mal auf ihre Fans hören! ... Joe ist ein einzigartiger, talentierter Wrestler! Mic-Skills (Erinnere mich an die eine Promo mit Shoot gg. Scott Hall), In-Ring Skills ('nuff said) ... Joe reißt sich den Arsch auf & der dank dafür? Midcard-Region!  Main-Event, meine Lieben, da gehört er hin!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Excellence of Executionwrote on 01.03.2011:[8.0] "Ist zwar schon einen Moment her, dass ich TNA verfolgt habe, aber ich muss dem Mountie mit seiner Einschätzung Recht geben. In meinen Augen wäre Samoa Joe dann am besten dran, wenn man ihn zu einem ernst zu nehmenden Heel turnt und ihm einen guten Manager an die Seite stellt - dann könnte ich mir durchaus vorstellen, dass da noch was geht. Was ich zuletzt von ihm sah, stand alles auf verlorenem Posten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Matt4Wrestlingwrote on 27.02.2011:[9.0] "Er verschwindet leider mehr und mehr in der Bedeutungslosigkeit. Er sollte sich in der Independent-Szene wieder seinen Wurzeln erinnern und dann ein Comeback starten, dass könnte seiner Karriere gut tun. Ansonsten Top!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Big Jackwrote on 25.02.2011:[10.0] "Samoa Joe ist technisch erste Sahne. Und das obwohl er nicht körperlich nicht gerade ein CM Punk oder ein Shawn Michaels ist. Zwar ist er wegen seiner Schwächen am Mic nicht in der Lage das Gesicht einer Mainstream Company zu werden, jedoch schafft er es stehts die Leute zu unterhalten. Ich finde es eine Verschwendung, wie man mit ihm im Moment bei TNA umgeht. Diese Schweine Story zwischen iihm und Dinero, dafür ist Joe wirklich zu schade."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Hu-Manwrote on 22.02.2011:[8.0] "Unglaubliches Talent, dass bei TNA leider nicht mehr zum Zuge kommt. Wirklich traurig zu sehen, dass ein Matt Morgan auf Teufel komm raus gepusht wird und ein 5-Star Wrestler abgeschoben wird. Joe könnte einer der dominantesten Heels überhaupt sein, stattdessen verkommt er in der Lower-Midcard. Toller Wrestler, toll am Mic, nettes Gimmick, keine Einsätze. Zur Zeit leider nur 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Mountiewrote on 07.02.2011:[8.0] "Joe funktioniert auf seine authentische Art als schlecht gelaunte, bös guckende und fast unbesiegbare Dampfwalze, aber er kann auch eben nur das - und die Tour nutzt sich halt irgendwann ab. Es geht dabei nicht darum, dass ich von Joe verlangen würde, sich zu einer Entertainment-Bombe zu entwickeln, es krankt für mich schon an einem grundsätzlicheren Problem. Joe ist für mich mit seiner daueraggressiven Art unfähig, Sympathie zu erzeugen, alles läuft nur über die Schiene ab, dass man sehen will, wie er seine Gegner zusammenprügelt. Das ist die Eindimensionalität, die mich an Joe stört und wegen der er für mich eine Stufe unter den wirklichen, auch rein wrestlerischen Komplettpaketen steht. Nach einem halben Jahrzehnt im Mainstream-Wrestling ist aber auch festzuhalten, dass Joe hunderte von Meilen weit davon entfernt ist davon, der Star zu sein, den die Hardcore-Fans gerne in ihm sehen würden. Und das liegt auch viel weniger am TNA-Booking als die meisten glauben. Es ist mit Joe tatsächlich einfach so gekommen, wie es die WWE-Verantwortlichen vor einigen Jahren vorausgesehen haben: Dass es laufen wird wie mit Taz: Ein Indy-Phänomen, das im Mainstream eine Fußnote bleibt. Und ja, auch mit einem World-Title-Run bei TNAW ist Joe nach den Maßstäben, die der Marktführer vorgibt, eine Fußnote. Ein Daniel Bryan ist nach einem Jahr WWE schon ein viel größerer Star als Joe - nicht zu reden von einem Punk, der ihn in der Hinsicht mit seiner WWE-Karriere exponentiell überrundet hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Rated R Champwrote on 01.01.2011:[6.0] "Dem Ring of Honor Joe, wie er 2005 zu TNA kam, hätte ich sofort die 10 gegeben. Sehr intensiver, technisch versierter und für seine Statur unglaublich beweglicher Wrestler. Die letzten Jahre über hat Joe aber einfach an Feuer verloren. Das kann an ihm liegen, ist aber sicher auch dem Booking um ihn zuzuschreiben. Hinzu kommt, dass er im letzten Jahr kaum ein Match über 5 Minuten bestreiten durfte."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Necronwrote on 08.12.2010:[7.0] "Beeindruckend authentischer Stil - aber Joe hat es nie verstanden, sich selbst ins beste Licht zu rücken. Dazu fehlt ihm einfach der letzte, entscheidende Teil Charisma."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: P92wrote on 07.12.2010:[8.0] "Ein gute Wrestler, der nicht nur gute Promos hält, sondern auch im Ring zeigt, was er kann. TNA kann sich froh schätzen, einen Wrestler wir Samoa Joe zu haben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Aesopwrote on 19.10.2010:[9.0] "Joe ist ein starker Wrestler, doch in letzter Zeit hat er sich verschlechtert. Ich wieß nicht woran es liegt, aber er sagt mir nicht mehr so zu wie früher. Wenn ich die Matches von Joe heute mit denen von Joe 2005 vergleiche muss ich schon feststellen das er nicht mehr so gut ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Damon Strikerwrote on 17.10.2010:[8.0] "Als Joe zu TNA kam, sah es so aus, als ob er seine Mission, vom Indy zum Mainstream-Star aufzusteigen, ohne Probleme erfüllen würde. Einige Zeit und einige schlimme Booking-Entscheidungen später, muss man leider festhalten, dass es nicht so einfach ist. Doch langsam aber sicher scheint sich der Charakter Samoa Joe wieder zu erholen und vielleicht gelingt es ihm im zweiten Anlauf, sich dauerhaft im Main Event zu etablieren. Er bringt eigentlich alles mit, was es braucht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Homicide187wrote on 10.10.2010:[8.0] "Joe ist ein toller Wrestler, der unheimlch gute Matches zeigen kann und er hätte zu RoH Zeiten sicherlich eine 10 vedient, aber das was man momentan von ihm bei TNA sieht, reicht einfach nicht. Man sollte ihn wirklich wieder besser einsetzten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Pyromaticwrote on 18.09.2010:[4.0] "Schon wieder jemand der etwas Overrated ist. Wird mich nie überzeugen können."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Sephirodwrote on 15.08.2010:[9.0] "Alleine wenn man sich Joe ansieht, sieht man die Zukunft des Pro Wreslting. Ein Mann der in vielen Indy Promotions überzeugen konnte und bei RoH zu einer unvergesslichen Legende des Indy Wrestlings wurde. Legendäre Matches, doch irgendwann war die Zeit gekommen das man so einen Athleten der breiteren Masse präsentieren musste und dann war sein Weg zur TNA geebnet. Statt in kleinen Hallen sah man ihn nun Bundesweit im TV. Starke Titelregentschaften als X-Division Champ mit noch besseren Matches als der starken Regentschaft, alleine der 3 Way gegen Christopher Daniels und AJ Styles gehören wohl zu einem der besten Matches die es jemals bei TNA gab. Nach der X-Division kam wohl imo eine kleine Flaute wo man ihn nicht einzusetzen wusste, aber er war auf dem Weg nach oben den er dann zum Glück wieder eingeschlagen hat und es dann endlich schaffte ohne Titel einer der wichtigsten Wrestler der TNA zu werden. Seine starken Matches gegen Kurt Angle gehören auch dazu, dass er nun endgültig so over wurde und die Fans ihn einfach lieben musste. Bei Lockdown holte er sich dann endlich den Titel von seinem "Erzfeind" Kurt Angle. Dazu wurde er noch der erste Champion der das King of the Mountain Match als Champion betrat und als Champion wieder verlassen, hat was kein anderer Wrestler gechafft hat bis auf Samoe Joe eben. Mit Kevin Nash wurde ihm ein charismatischer Wrestler an die Seite gestellt der den übermütigen Joe bremsen sollte und wie er dann Joe bremste weiß man durch die jüngsten E"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Finlay Thornwrote on 10.08.2010:[10.0] "Als ich TNA-Fan geworden bin, war Samoa Joe einer von denen, auf die ich am meisten gespannt war, da ich so viel Lob über ihn gehört habe und ich muss sagen, das Lob kam zurecht. Seine Intensität und Beweglichkeit hat mich gleich begeistert und so habe ich mir seitdem viele Matches von ihm aus der Vergangenheit angeschaut, vor allem gegen AJ Styles und Daniels. Einfach genial! Auch frühere Promos habe ich mir angesehen und fand ihn sehr gut am Mic. Umso schlimmer ist es, dass Joe seit diesem seltsamen Entführungs-Angle kein einziges Wort mehr bei TNA sagen durfte. Pure Verschwendung!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: umaga the samoan bulldozerwrote on 20.07.2010:[10.0] "Wrestlerisch stark, Mic-Work auch, zieht Heat, leider nur Midcard bei TNA.. Er hat viel mehr Potenzial, auch für das Main Event"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: homicidal cena michaelswrote on 10.07.2010:[8.0] "Samoa Joe ist ein wirklich guter Wrestler aber er zeigt oft die gleichen Matches, sogar früher bei ROH. Er ist nicht der einfallsreichste Wrestler und manchmal wirken seine Matches zu Standardmäßig. Aber insgesamt zeigt er gute Matches und ist agil für sein Gewicht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Robert Taylorwrote on 04.07.2010:[10.0] "Was derzeit bei TNA mit Samoa Joe geschieht ist eine absolute Frechheit. Joe hat für mich alles was ein Wrestler braucht: Er ist sehr gut im Ring, er besitzt Mic-Skills, sein Auftreten und das Drumherum passt ebenfalls. Joe hat nicht umsonst sowohl bei TNA als auch bei ROH jeweils das erste ***** Match hingezaubert. Es wird höchste Zeit, dass man ihn wieder in die Main Event Region pusht. Da gehört er hin, Joe kann Top-Matches in Serie zeigen und ist zudem auch Rekordhalter des ROH Titles. Das ist ebenfalls ein Zeugnis seiner Klasse, auch wenn ROH damals noch weniger Events als heute veranstaltete. Dennoch gehört Joe neben Kurt Angle, Desmond Wolfe und AJ Styles zu den besten Wrestlern, die in TNA rumlaufen. Zu Mounties vorwürfen kann ich sagen, dass du in dem Punkt Recht hast, dass er mittlerweile fast immer nur ein böses Gesicht mit aggressiven Verhalten an den Tag legt, allerdings bin ich der Meinung, dass Joe auch anders kann, wenn man ihn denn anders booked. Aber TNA und gutes Booking sind eh 2 Dinge, die nur bedingt zueinander passen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The-Game91wrote on 26.05.2010:[7.0] "Ein weiterer der wenigen Stars die TNA selbst erschaffen hat. Ich schaue ihm gerne zu und es ist auch beeindruckend wie viel dieser Mann kann."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Big Bad Booty Babywrote on 13.05.2010:[9.0] ""Joe what are you doing with that Cheeseburger in your hand? ", das (oder so ähnlich) sagte einst Monty Brown und dieser Spruch ist mir irgendwie in Erinnerung geblieben. Der Zusammenhang leider nicht. Auf jeden Fall symbolisiert dieser imaginäre Cheeseburger sehr gut das Booking um Joe bei TNA. Schnell, intensiv, lieblos hingeschmiert und nicht lange vorhaltend. Was hat trägt der gute Samoaner nicht alles an angefangenen, unvollendeten und misslungenen Booking-Fetzen mit sich herum. Das ganze ließe sich durch qualitative, zeitintensive Storys beseitigen und das könnte Joe wirklich wertvoll für TNA machen. Wie groß dafür die Chancen sind? Richtig. Joe sollte wahrscheinlich zurück zu ROH gehen, denn dort konnte man sehen, dass er die 9 Punkte redlich verdient hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: El-Chupakneebraywrote on 12.05.2010:[10.0] "Beim Rauskramen einiger Special DVDs von TNA ("Unstoppable: The Best of Samoa Joe" und "Kurt Angle Champion") ist mir wieder aufgefallen zu was Joe in der Lage ist. Der Mann strahlt genau die Intensität aus, die viele andere Big Men im Business einfach vermissen lassen und ist darüberhinaus auch noch technisch stark. Seine Promos sind solide und einzig sein doch recht limitiertes Gimmick ist kritisierenswert. Doch mir macht das irgendwie nicht viel aus. Joe tut Leuten weh und zu sehen wie er das tut bereitet mir eigentlich immer Freude. Wenn Joe keine 10 Punkte bekommt, wer dann?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Danicheckwrote on 05.05.2010:[10.0] "Joe ist für sein Gewicht ein sehr guter Wrestler. Dazu sehe ich immer gerne seine Matches, vor allem gegen Daniels und Styles. Da er für mich einer der besten in TNA ist= 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Sandmannwrote on 04.05.2010:[8.0] "Mr. ROH aber nie so ganz mein Fall. Wrestlerisch über jeden Zweifel erhaben aber mich persönlich spricht er nicht so ganz wirklich an. Ich kann nicht mal so wirklich erklären woran es liegt aber ich finde ihn irgendwie unsympatisch. Bei TNA wars am Anfang noch ok aber mittlerweile hängt er dort auch nur noch rum und hat kaum noch große Fehden. Vielleicht wird 2010 ja wieder besser für ihn"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: element-41wrote on 18.03.2010:[10.0] "Er ist trotz seines Gewichts so beweglich, dass es unwirklich wirkt (Im positiven Sinne). Er kombiniert direkt mehrere Wrestlingstile. Er ist einer der ganz großen bei TNA und außerdem Rekordhalter des ROH World Titles, was eigentlich schon alles sagt. Dieser Mann hat es einfach drauf! 10 Punkte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Grandmaster Sexaywrote on 07.03.2010:[9.0] "Joe ist einer derjenigen, die ich immer wieder gerne im TNA-Ring sehe!  Allein schon die Tatsache mit 127 kg ein (erfolgreicher) Wrestler der X-Division zu sein, spricht schon Bände! Allein sein Micwork könnte Joe noch verbessern um bei mir áuf die 10 Punte zu kommen. Ansonsten TOP!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Fat Mikewrote on 24.02.2010:[8.0] "Joe ist ein sehr guter und intensiver Wrestler der, egal ob als Heel, Face oder Tweener, zu überzeugen weiß und auf dessen Matches ich mich eigentlich immer freue. Das TNA-Booking hat aber leider einiges von seiner Glaubwürdigkeit zerstört und sein Mic-Work ist zwar solide aber bei Weitem nicht so gut wie es von einigen gerne gemacht wird. Nichtsdestotrotz zusammen mit AJ mein Fave bei TNA."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: coldbeer316wrote on 18.02.2010:[10.0] "Joe war mir schon ein Begriff bevor ich TNA geschaut habe - als ursprünglicher WWE - Fan;-)! Die Geschwindigkeit die er plötzlich aus dem Nichts entwickelt beeindruckt mich immer wieder. Das Micwork überzeugt mich auch es paßt zu seinem jeweiligen Gimmick, ob es jetzt Joe das Babyface , Heel oder als Teil der Nation of Violence. Schade das diese Storyline Aufgrund der Rückkehr Hogans und dem Split der Mafia nicht fortgeführt wurde. Hoffe das er unter den mehr oder weniger neuen Kreativen auch dementsprechend gebookt wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Manu Adamswrote on 16.02.2010:[6.0] "Ich habe keine Ahnung, aber ich werde mit Samoa Joe einfach nicht warm. Mag natürlich für sein Gewicht ein klasse Wrestler sein und seine Aktionen wirken auch realistisch, aber ich kann mich nicht für ihn begseistern, tut mir Leid."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: tnawrestlingfanwrote on 09.02.2010:[7.0] "Ich muss zugeben, dass ich kein Fan von ihm bin! (ehrlich nicht! ) aber ihn stehtig gleich unterhaltsam fand/finde und das er tolle Matches abliefert. (z. B. Styles vs. Daniels vs. Joe usw. )"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Telecinewrote on 31.01.2010:[8.0] "Jetzt als Heel gefällt er mir wieder etwas besser. In seinen TNA Face Zeiten hat er mich ziemlich gelangweilt und das obwohl er ein sehr guter In Ring Worker ist. Sein Gimmick und sein ganzes Auftreten sind einfach perfekt für eine Heel Rolle ausgelegt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Denzwrote on 26.01.2010:[10.0] "Dank ihm bin ich auf TNAW gekommen. Ein klasse Wrestler, der echt gute Moves zeigen kann. Ich habe ihn gerne als TNA World Heavyweight Champion gesehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: nwowrote on 25.01.2010:[10.0] "Gott sei Dank hat man diese bescheuerte "Nation of Violence" beerdigt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ShakDragoonwrote on 19.01.2010:[10.0] "Einfach nur genial! Schade dass er nicht mehr bei ROH zu sehen ist, aber auch bei TNAW gefiel er mir zeitweise sehr gut! Hoffentlich wissen Hogan und Bischoff ihn richtig einzusetzen. Ich zweifle ja noch daran."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Rated R Superstar EDGEwrote on 09.01.2010:[9.0] "Joe hat sehr gute Iin Ring Fähigkeiten und auch ein ansprechendes Micwork. Trotzdem hat er in den Letzten Monaten abgebaut. Aber mehr als ein CM Punk im Moment für die WWE ist solte für Joe bei TNAW nicht drin sein. Ich meine wenn er sich halt noch drei mal oder so den X-Devision und den Global Titel holt und noch mal eine Regentschaft als World Champion hat ist das ja auch nicht so schlecht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Mizisawesomewrote on 09.01.2010:[8.0] "Ich sah ihn einmal live und war echt baff (bin ich auch ständig bei seinen TV-Auftritten). Er ist verdammt agil, ein guter Techniker und verdammt stiff (und ich gebe zu meiner Schande zu, dass ich stiffe Wrestler sehr cool finde). Gefällt mir als Heel richtig gut, als face kann ich mit ihm nicht viel anfangen. Ich erwarte auf jeden Fall noch viel von ihm. Das Ende der Fahnenstange hat dieses Talent noch lange nicht erreicht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: BaptisteZorGwrote on 08.01.2010:[9.0] "Sein momentanes Gimmick ist nicht das beste - schon klar.. Aber wie man Ihm hier teilweise Talent abredet oder Ihn gar als unwürdigen Gegner sog. "Bigman" betiteln kann ist mir wirklich ein Rätsel. Der Kerl wiegt so am Rande knapp 130kg... Joe ist ein Phänomen und einer der agilsten schwereren Wrestler der letzten Jahrzehnte. Sein InRingStyle ist absolut überzeugend und nur ein bisschen davon würde auch dem zeitweiligen Kinderprogramm der WWE gut stehen. Er gehört wrestlerisch und charismatisch ganz sicher zum besten was TNA zu bieten hat und ich hoffe das er bald wieder mitkämpfen darf um den "World Title" - denn genau da ist sein Platz. Und das Gimmick wird, so glaube ich, auch bald wieder bisschen umgekrempelt...... 9punkte"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Aquifelwrote on 06.01.2010:[10.0] "Sicherlich fehlt Joe im Mainstream Bereich momentan noch das gewisse "Etwas", damit er wirklich ganz oben mitspielen kann. Führ ihn hat man halt noch nicht das gefunden, was man bei einem Angle, einem Styles oder einem Desmond Wolfe schon hat: Etwas Herausstechendes, ein dauerhaft "Superstar"-taugliches Gimmick. Dennoch braucht man sich nichts vor zu machen: Joe ist ein herausragender Big Man, der über Technik, Stiffness, Storytelling und all das verfügt, was für großartige Matches benötigt wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Mukahidowrote on 06.01.2010:[8.0] "Joe ist meiner Meinung nach von Charisma, Ringskills und Micwork sehr gut nur leider fehlt ihn das gewisse etwas noch das ihn ganz nach oben katapultieren würde. Vllt wäre ein neues Gimmik bei ihm angebracht."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Mick Funkwrote on 06.01.2010:[9.0] "Großartiger In-Ring Performer, aber ohne die ganz großen Starqualitäten. Für den Main Stream Bereich kein Komplettpaket."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Scotty 2 Hottywrote on 03.01.2010:[6.0] "Kann mich ehrlich gesagt nicht wirklich für Samoa Joe begeistern. Im Ring für seine Statur sicherlich richtig gut, aber gefallen tut er mir persönlich nicht."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Killerswitchwrote on 22.11.2009:[10.0] "Joe stellt immer gute matches auf die Beine. Sah man ja auch bei turning Point"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: mongowrote on 17.11.2009:[10.0] "Joe verbindet Technik und Power auf perfekte Weise miteinander. Ich freue mich jedesmal auf Joe im Ring"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: teekay86wrote on 25.10.2009:[8.0] "Einer jener Worker auf die TNA unbedings bauen sollte. Anstatt Steiner, Foley, Booker T und Kevin Nash die alle ihre besten Jahre hinter sich haben sollten Samoa Joe, AJ Styles, Hernandez und Matt Morgan im Fokus der Shows stehen. Joe hat Charisma, ist klasse im Ring und unheimlich over. Zudem hat er schon bewiesen, das er im ME gut aufgehoben ist. Von daher ist es ihm zu gönnen möglichst bald erneut den World Titel zu tragen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Kurt Winkelwrote on 20.10.2009:[10.0] "Joe ist einer der am realsten wirkenden Wrestler überhaupt. Ob am Mic oder im Ring, ich glaubs ihm und er schlägt in beiden Disziplinen die meisten anderen Worker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: BoeserLobowrote on 05.10.2009:[10.0] "Für seinen Körperbau unheimlich beweglicher Wrestler. Absolute Ikone von TNA. Liefert immer wieder spannende Matches ab. Hat auch immer wieder sehr gute Storylines."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TheBastion90wrote on 29.09.2009:[5.0] "Ich finde ihn überbewertet. Hat in der World Title Region absolut nichts verloren, vor allem bedingt durch das fehlende Charisma, dass versucht wird durch einen schäbigen brutalen Heel Charakter over gebracht zu werden. Ansonsten passabler Wrestler, wenn auch hier nicht überragend. Kein Glaubhafter Gegner irgendwelcher Big Men."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: batze22wrote on 23.09.2009:[7.0] "Hat sich leider in den letzten paar monaten verschlechtert. Hoffentlich sehen wir in naher zukunft den alten Samoa Joe wieder."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Knurkselwrote on 23.09.2009:[8.0] "Hat deutlich an Gewicht zu- und an Leistung abgenommen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: DJ MaSchwrote on 12.09.2009:[9.0] "Super In-Ring Worker. Mit einer unglaublichen Intensität ausgestattet, bringt er dazu noch das nötige Charisma mit. Seine Promos erfüllen auch ihren Zweck. Leider muss ich einen Punkt abziehen, da es TNA nicht geschafft hat ihn nach dem World Title Run nachhaltig interesant zu halten. Das neue Gimmick ist bissher auch nicht wirklich das Gelbe vom Ei."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Desperadowrote on 18.07.2009:[8.0] "Toller Wrestler, der klasse Matches zustande bringen kann. Auch sein Mic-Work ist gut. Schauspielerisch ist Joe in meinen Augen allerdings weniger begabt und oft haben seine Matches wegen zu großer Dominanz auch einen gewissen Boring-Faktor. Seinen Heel Turn sehe ich zunächst mal positiv, denn das macht ihn wieder interessanter. Ich hoffe mal er darf auch ein paar Heel Promos halten und wird nicht nur als Kurts Aufräumer eingesetzt. Eine längere World Title Fehde gegen AJ würde sich demnächst anbieten, hoffe mal die TNA Booker sehen das ähnlich."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Christino Hardcorewrote on 07.07.2009:[10.0] "Meiner Meinung nach, ener der besten Wrestler Weltweit. Ich hoffe er darf sich auch einmal den WWE-Titel umschnallen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Ryklon Stephenswrote on 05.07.2009:[7.0] "Mein einstiger Lieblingswrestler ist nicht mehr viel mehr als eine Randerscheinung. Ich finde es traurig zu sehen das aus dem so mit Vorschuss-Lohrbeeren getadelte Wrestler zu einem von vielen geworden ist."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: JohnnyCashwrote on 05.07.2009:[10.0] "Ich denke, wenn es bei jemand im aktuellen Amerikanischen Wrestling-Markt verdient hat 10 Punkte zu bekommen, dann ist es Joe. Er ist einfach ein komplettes Paket."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Tomkowrote on 02.07.2009:[8.0] "Ich mochte Joe immer sehr gerne als RoH Champion oder in seinen anderen Rollen im Indy Bereich, aber seit den letzen Jahren im Mainstreambereich ist mir sein Stil zu eintönig geworden. Sicherlich ändert sich ein Wrestler, wenn er vom Indy in den Mainbereich geht, aber trotzdem gefällt mir Joe gar nicht mehr."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Blade Bourdeauxwrote on 24.06.2009:[7.0] "Update: Mit seiner neuen Ausrichtung kann ich nicht viel anfangen. Man muss einfach mal sehen, dass TNA jetzt Stars braucht die man sehen, oder besser für die man Geld ausgeben möchte. Das sehe ich derzeit nicht und daher ist er in meinen Augen einen Schritt zurück gegangen in seiner Entwicklung. Klar, im Ring ist das immer noch gutes Handwerk aber das zieht keinen mehr groß vom Hocker."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: mugel 187wrote on 22.06.2009:[10.0] "Was soll man sagen, was nicht schon längst gesagt wurde Joe ist Pro Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Big Daddy Swrote on 01.06.2009:[9.0] "An und für sich ein guter Wrestler, dem man das "Nation of Violence" Gimmick komplett abnimmt. ich hoffe nur TNA hat sich das gut überlegt, ein Stable voller ausgediehter ehemaliger Hardcore Champions zu schaffen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Jar Jar Binkswrote on 10.05.2009:[9.0] "Muss ihm für das aktuelle Nation of Violence Gimmick, einen Punkt abziehen... Nichtsdestotrotz ein geniales Powerhouse der sich unglaublich schnell bewegen kann für seine Masse und die tollsten Matches zeigt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Die Gurkewrote on 08.05.2009:[9.0] "Samoa Joe ist auf jeden Fall eine Präsenz im Ring, wie kaum jemand sonst. Ich hoffe nur das tatsächlich Tazz als sein Mentor auf der Bildfläche erscheint, ansonsten wird sein jetziges Gimick auf jeden Fall ein ganz schlechtes Kapitel seiner Karriere."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Weihnachtsmannwrote on 04.05.2009:[4.0] "Was soll das? Verhält sich wie ein Heel soll aber Face sein? Dazu noch die alberne Bemalung und das ebenso alberne Getue mit dem Messer. Eigentlich schade, denn da ist Potenzial für mehr."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Royal Rambowrote on 20.04.2009:[8.0] "Normalerweise würde ich ihm glatt die volle Punktzahl, aber momentan ist es einfach nicht das wahre. Scheiss Gimmick, dicke Wampe. Russo, gib Joe sein altes Gimmick wieder und dann passt es."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: gerybundy68wrote on 11.04.2009:[9.0] "Dachte als ich ihn zum ersten mal sah - der ist doch wohl ein Witz. Tja, so kann der erste Eindruck täuschen. Kräftig, erstaunlich beweglich, technisch absolut Top und ein klasse Finisher der absolut glaubwürdig wirkt. Einziges Manko , sein Mic- Work. Dafür ein Punkt Abzug."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: DerSchengstwrote on 28.01.2009:[8.0] "Genial zu ROH zeiten, auch bei TNA noch sehenswert"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Father Nelsonwrote on 18.01.2009:[10.0] "he looks so untrained. And thats the amazing thing!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Atze20wrote on 02.01.2009:[8.0] "Ganz am Anfang, als ich anfing TNA zu schauen, hat er mir sehr gut gefallen. Im RIng wirklich genial und das bei seiner Masse. Am Mic ordentlich und auch recht charismatisch. Aber mit der Zeit wurde er einfach langweilig. Sein langer Titelrun, war dermaßen schwach, dass ich für TNA nur noch bei den PPVs vorbeigeschaut habe. Ein richtigig, grosser Topstar wird Joe wohl nie sein. Dennoch ein toller Athlet"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ScrWwe94wrote on 22.12.2008:[9.0] "Macht akribische Moves und das mit seinem Gewicht, ist das ein Wahnsinn."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Flame286wrote on 09.12.2008:[6.0] "Ich mag seinen Stil nicht besonderst. Gute Ausstrahlung aber es fehlt das gewisse etwas."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: King of Queenswrote on 03.12.2008:[9.0] "Für mich der glaubwürdigste Wrestler der Welt. Mehr sage ich dazu nicht. Dem kaufe ich wirklich alles ab."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Rattlesnakewrote on 30.11.2008:"Woran liegt es nur, dass ich kaum ein Match von ihm kenne, welches mich begeistern kann? Aufgrund der etwas merkwürdigen Ausstrahlungspolitik im deutschen Fernsehen verfolge ich Wrestling seit Jahren nicht mehr so intensiv; wenn man sich an Sendeplätze gewöhnt, kann man bald feststellen, dass sich diese nach hinten verschieben etc. Nun ja, egal ... die Matches, die ich bei youtube von ihm gesehen habe, bestehen aus wenigen guten Aktionen und sonst nur sehr stiffen Tritten und Schlägen. Ich verstehe den Hype um ihn nicht - in Matches gegen Styles oder Daniels wissen eher die beiden Letztgenannten zu überzeugen. Lass mich gern vom Gegenteil überzeugen, aber ausser Chops und Kicks habe ich noch nicht viel von ihm gesehen. Seine Figur im Übrigen würde ihm bei mir keinen Punktabzug bringen; ich kann eher die Steroid-Monster nicht mehr sehen."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Eddiewrote on 28.11.2008:[10.0] "Joe ist einfach ein Ausnahmetalent. Seine Zeit bei ROH ist einfach unglaublich genial, und seine TNA Zeit mindestens genauso gut. Nur sein Run als Champ war nicht das gelbe vom Ei, aber dafür kann ja er nichts. Technik, Submission, Brawling, Stiffness, High Impact, er kann einfach alles mitgehen, und wenn ein so schwerer Mann mit einem so geilen Tope Con Hilo angeflogen kommt, verdient das einfach volle Punktzahl, 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Perry Coxwrote on 27.10.2008:[10.0] "Erstaunliche flexibilität im Ring, trotz seiner Masse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Blazewrote on 25.10.2008:[8.0] "Samoe Joe gehörte bei ROH zu den ganz großen genauso wie auch bei TNA. Wrestlerische Fähigkeiten besitzt er allemal und das er mit diesem Körperbau und Gewicht zu solchen Aktionen wie einem Corkscrew Plancha in der Lage ist, sprechen nur noch mehr für sein Können. Zu seinen Leistungen am Mikro kann ich sagen zufriedenstellend, letztendlich überwiegt hier eh das wrestlerische. Einen augefallenen Look bringt er auch noch mit, also was soll da noch schief gehen. TNA hätte ihm nur früher die World Championship geben sollen. Nach all diesen Positiven Dingen muss ich sagen, dass der Funke bei mir aber noch nicht ganz übergsprungen ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: DirtiestPlayerwrote on 17.10.2008:[7.0] "Wrestlerisch sicher einer der besten bei TNA. Aber Mic-Work und Auftreten sind meiner Meinung nach verbesserungswürdig. Ohne ihn beleidigen zu wollen, aber für mich sieht er optisch eher aus wie der Dicke aus "Eis am Stiel" als wie ein World Champion. Vielleicht sollte er mal was an seiner Kleidung ändern."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: caterwrote on 10.10.2008:[10.0] "Hat in der jeweiligen Promotion einige bahnbrechende Mateches auf die Beine gestellt. Dass er auch lange Distanzen gehen kann, hat er bei Joe vs Punk gezeigt, aber seine Stärke sind ehr kürzere, dafür aber extrem intensive Matches, die in der Regel immer schön anzusehen sind. Mit solchen In-Ring-Skills und so einer Erscheinung wie Joe sie hat, könnte er auch stumm sein und würde trotzdem überzeugend rüberkommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MrWrestlingwrote on 02.10.2008:[9.0] "Ich finde ihn super, aber vor seinem Titelrun hat er mir irgendwie besser gefallen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Mathias Rekaschwrote on 24.09.2008:[8.0] "Joe ist wirklich ein beeindruckender Superstar. Ist man zunächst von seinem Äußeren etwas skeptisch, so zeigt er im Ring, doch sehr schnell sein Können. Er ist durchaus schnell und beweglich und wrestlet einen sehr stiffen Style, der im Mainstream noch etwas neu ist, mir persönlich aber sehr gut gefällt. Als Champion gefällt er mir im Moment allerdings nicht so richtig, was jedoch nicht an ihm, sondern eher an der Tatsache liegt, wie man ihn zur Zeit einsetzt. Man sollte sich wieder zu dem Charakter zu seinen Zeiten als X-Division zurück erinnern. Dann wird er auch wieder mehr glänzen können. Auf jeden Fall ein Star der Zukunft."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Fanthaizawrote on 21.09.2008:[8.0] "Einer der besten bei TNA. Im Ring ist er überragend, und am Mic solide teilweise etwas zu "intensiv". Leider ist irgendwie die Luft raus seit er dem Title hat, hat ein wenig was an Unterhaltungswert verloren aber trotzdem noch einer die TNA nach vorne bringen!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Akkuswrote on 16.09.2008:[7.0] "Fand ihm an Anfang sehr gut, doch durch seinen Titel Run hat er einiges verloren und unterhält mich nicht mehr so, trotzdem einer der besten aus TNA."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Clevermindwrote on 07.09.2008:[8.0] "Zur Zeit einer meiner klaren Favoriten bei TNA. Kommt durch seine Masse durchaus glaubhaft als ME durch, und strahlt auf eine ganz eigene Weise enorm Charisma und Sympathie aus. Im Ring erstaunlich gut für einen Mann seines Kalibers. Aber als er noch mehr im "Submission Machine" Stil kämpfte, hat er mir besser gefallen. Trotzdem endlich ein Champion und Headliner, der nicht aus dem Baujahr "WWE" stammt. "Are you mad? Go ahead, fire me, I don't care". Einfach cool. Jetzt mal 8 Punkte, aber da is noch reichlich Luft nach oben da"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Typicalwrote on 06.09.2008:[9.0] "Heutzutage der beste Somoaner im Wrestling-Biz. Die Leute, die meinen, ihm schlecht zu bewerten nur weil er etwas mehr Masse hat, sollten mal offener für die Welt werden. Dikriminierung oder Neid ist kein Grund von einer neutralen Bewertung abzuweichen. Der Grund warum er sich als Champ nicht weiterentwickelt liegt an TNA, es ging bei ROH, also warum nicht bei TNA? TNA konzentriert sich zu sehr auf die EX-WWE'ler und die Midcard. Im Ring ne Glatte 10. Einen Punkt abstrich wegen dem Teils schlechten Mic Work."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Babuswrote on 05.09.2008:[8.0] "Natürlich mit seinen beeindruckenden wrestlerischen Fähigkeiten, seiner Stiffness und seiner Overness die Zukunft von TNA. Aber auch wenn ich es liebe seine Matches zu sehen, finde ich Joe abseits des Ringes ziemlich langweilig. Seine Promos magen für den ein oder anderen zwar "real" und "glaubwürdig" sein, für mich ist das aber eher eine schwache Ausrede dafür, dass er rhetorisch maximal Durchschnitt ist."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: GeneralUwewrote on 27.08.2008:[6.0] "Im Ring natürlich sehr, sehr stark. Aber es gibt doch gravierende Schwächen am Mic-und die lassen sich nicht wegdiskutieren. Zudem wird er bei seiner Masse nicht lange sein hohes In-Ring-Niveau halten können. Die Zeit wird zeigen, was aus ihm wird."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Wise Warriorwrote on 22.08.2008:[6.0] "Wrestlerisch definitiv gut, aber er bietet einfach nicht das komplette Paket. Er ist einfach wenig unterhaltsam: ein fetter Kerl mit anhaltend schlechter Laune. Zudem stagniert er in der TNA und entwickelt sich in keiner Richtung weiter."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: mdbnasewrote on 13.08.2008:[10.0] "Da gibt's nicht viel zu sagen, einfach Top in allen Belangen. Ich seh ihn immer gerne und er zeigt absolut überzeugende Matches! Für mich der einer der besten Indie-Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MVPKennedywrote on 11.07.2008:[6.0] "Da muss ich Dave Concordio zu 100% zustimmen. Mir gefällt sein Stil nicht und Charisma sehe ich auch fast keines. Natürlich ein guter Wrestler, aber nicht mein Fall."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ecw foreverwrote on 08.07.2008:[10.0] "Einer der wenigen Wrestler den ich 10 gebe. Mic Work ist gut und seine Ring Skills genial. Es ist einfach so wenn ich Samoa Joe sehe, bin ich gebannt, da bin ich total fokussiert. Würde ohne Frage sagen einer meiner Faves."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Joeevil123wrote on 27.05.2008:[10.0] "Für mich mit Bryan Danielson der beste Wrestler der Welt!  Er hat von A - Z alles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Neuhofwrote on 07.05.2008:[10.0] "Einer der besten der Welt und der zurzeit wohl beste Wrestler bei TNA. Das Total Package."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Dave Concordiowrote on 06.05.2008:[6.0] "Fett, overrated, Samoa Joe. Ich halte es für einen fatalen Fehler von TNA ihn als Zugpferd für den Mainstream zu benutzen. Joe hat kein unterhaltsames Gimmick und ist schwach am Mic. Er ist def. sympatisch, aber auch völlig overrated."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: LexLuger4everwrote on 28.04.2008:[10.0] "Ist im Ring zu ganz erstaunlichen Aktionen im Stande, die er insbesondere in den X-DivisionTitle Matches ein ums andere Mal gezeigt hat! Mir gefällt auch, dass Joe ein Wrestler ist, der im Gegensatz zu anderen Leuten noch "menschlich" ist und auch mal verlieren kann, was ihm aber dennoch nicht schadet. Da er sich am Mic zuletzt auch stark verbessert hat, muss ich die Note nun auf 10 aufwerten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Amurebkuwrote on 18.04.2008:[10.0] "Ein toller Wrestler. Zielstrebig und Kompromisslos. Endlich ist er Heavyweight-Champion. Das hat er lange verdient. Ich kann mir nicht helfen, aber TNAW ist einfach zu dumm aus ihren tollen jungen Talenten etwas zu machen. Alles dreht sich nur um Kurt Angle und Co. Ein großer fehler. Joe hat eine Menge drauf und beweist das immer wieder."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[9.0] "JoeMoe MoJoe ist einer der besten Big Men auf dem Planeten. Da gibt es kein "Der ist nicht durchtrainiert! " Wrestlerisch ist er einfach ne Wucht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Dave525wrote on 17.04.2008:[10.0] "Für mich hat er einfach alles das, was Pro-Wrestling ausmacht. Absolute wrestlerische Klasse, Charisma und er wirkt extrem glaubwürdig. Außerdem kann er fast jedes Tempo mit seiner Statur mitgehen. Was mich bei ihm aber am meisten beeindruckt ist seine Intensität. Ich kenne wirklich keinen anderen Wrestler, der seine Moves, aber auch Interviews mit soviel Intensität durchzieht wie Joe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: real americanwrote on 14.04.2008:[10.0] "Der beste den TNA im Moment hat, super im Ring da können auf der Welt nur wenige mithalten, am Ring besticht er immer mal wieder mit feinen sehr intensiven Promos, die wachrütteln, Charisma hat er auch und seine unvorteilhaften genetischen Vorraussetzungen kann man ihm nicht ankreiden. Endlich und vollkommen verdient zum ersten Mal TNA World Heavyweight Champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Instant Classicwrote on 13.03.2008:[6.0] "Gut im Ring, Gut am Mikrofon, ragt allerdings nirgends besonders heraus."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Meanbeastwrote on 04.03.2008:[10.0] "Aus meiner Sicht gesehen der vollkommenste Wrestler! Beherrscht fast alle Stilrichtungen, ist trotz seiner Statur unglaublich schnell und beweglich und besitzt ein Move-Repertoire, ein welches auch mir im Training zum Vorbild geworden ist! Ich finde ihm einfach nur klasse!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Manuelwrote on 30.01.2008:[10.0] "Einer der besten Wrestler der TNA neben Daniels und Styles."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: jimpanse1980wrote on 27.01.2008:[10.0] "Zusammen mit CM Punk und B. Danielson die Zukunft des Wrestlings. Er kann sowol Mat-Wrestling als auch Highflying-Action und ist wenigstens kein Steroid-ausgebauter-Luger-lookalike. Was er kann wenn man ihn lässt zeigen die Matches mit AJ Styles und/oder Christopher Daniels. TNA sollte mal endlich den Mut aufbringen ihn ganz nach oben zu pushen. Heutzutage sind authentische Wrestler gefragt, keine Freaks. Und wenn Joe nicht authentisch ist, wer dann?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Joe710wrote on 27.01.2008:[10.0] "Ein Wrestler der neuen Generation. Und würde man ihn richtig aufbauen könnte mit solchen Leuten eine neue Ära starten. Wer will den schon noch aufgepumpte Drogenmonster wie Chris Masters sehen. Ich habe solche Leute jedenfalls langsam satt. Noch dazu ist Joe meines Erachtens einer der besten Wrestler der Welt und mit seinem durchaus harten Stil hat er mich schon längst in seinen Bann gezogen. "Wrestling is ja nur Fake". Ein Satz den jeder Wrestlingfan schon zu oft gehört hat. Würde solche Leute wie Joe an der Spitze stehen, würden einige Kritiker schnell verstummen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ghostwrote on 07.01.2008:[8.0] "Top-TNA-Star welcher nicht auf eine WWE Karriere zurückblickt - also definitiv ein Mann der Zukunft. Definiert vor allem durch seine "Realness" und direkter, ehrlicher und aggressiver Art - ist da etwa ein gewisser Stone Cold das Vorbild.. ? Fehlt aber vielleicht noch etwas der "Feinschliff" und noch eine eindeutigere Persönlichkeit."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: AnFuwrote on 05.01.2008:[10.0] "Joe ist einer der coolsten und besten Wrestler! Ein super Techniker, ein symphatischer Kerl (außerhalb des Rings^^) , bei ROH klasse, bei TNA wird er aber nicht ordentlich weitergepusht und stagniert daher ein bisschen. Seine Matches sind aber fast immer ****+ und daher ist die Note klar!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MA Excellentwrote on 29.12.2007:[8.0] "Samoa Joe gehört zu den besten Wrestlern der Gegenwart und braucht Vergleiche mit Umaga, Rikishi und anderen Samoanern mit Sicherheit nicht zu scheuen. Seine Matches sind interessant, immer stiff und auf hohem Tempo. Auch seine Promos sind sehr intensiv und autentisch. Was mir noch zu einer 1 fehlt, ist der große Durchbruch. Da nutzt das Gimmick der Submission Machine wenig, wenn die Machine immer nur den X-Division Belt gewinnt. Daher könnte ein längerer Run als TNA Wold Champion der Durchbruch sein, jedoch führt der Weg zum absoluten Top-Status wohl über die WWE, auch was die Geltung innerhalb von TNA anbetrifft."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: D-Stylewrote on 07.12.2007:[10.0] "Ein Mann der das Business liebt; er kämpft mit viel Einsatz, versteht was von Stiffness und lieferte etliche geniale Matches. Joe gehört an die Spitze. Note 1"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Steven McWheelerwrote on 07.12.2007:[10.0] "Echt klasse Wrestler, aber ich finde er ist zu stiff, hat mittlerweile mehr als passables MicWork und nicht mehr so wenig Charisma, finde ich! Er sollte vll. mal ein paar Kilo am Bauch abspecken, dann würde er meiner Meinung nach noch besser over kommen, das wäre aber auch schon das einzige! Seine Promo gegen Hall und Konsorten hat mich so begeistert, dass er ab sofort die Note 10 sein eigen nennen darf^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: shannonmoorewrote on 02.12.2007:[10.0] "Irgendwie habe ich das Gefühl das man ihn nicht pushen will dabei ist er die Zukunft von TNA hat alles, kann alles und wird es hoffentlich noch gepushed. LexLuger4ever es nervt mich richtig dass du bei jedem Wrestler noch dazuschreibst das du Cena nicht leiden kannst. Wir haben es jetzt verstanden, ich glaube der Mann hat in den letzten Monaten genug bewiesen dass er es kann das solltest du mal einsehen. Im Gegensatz zu Lex Luger hat er das können und die Mic Stärke um ein richtiger Maineventer zu sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Lorendorwrote on 27.11.2007:[10.0] "Samoa Joe zieht einfach jeden noch so schlechten Wrestler mit. Anfangs dachte ich er wär wieder einer der Wrestler die ihre Masse ungekonnt einsetzen um alles zu squashen was groß und fett Jobber auf der Stirn stehen hat. (kannte ihn vor TNA nicht) Aber das war zum glück ein Trugschluss. Joe is TNA"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Baszdmegwrote on 15.11.2007:[10.0] "Großartiger, sehr vielschichtiger Wrestler. Micskills reichlich überbewertet, passen aber. Geht bei TNA kaputt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Benny110106wrote on 28.10.2007:[8.0] "Wohl einer der härtesten Wrestler im Ring. Ein kommender World Champ. In 10 Jahren bestimmt eine Legende dieses Sportes"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Jigsawwrote on 13.10.2007:[10.0] "Hatte eine unglaubliche Zeit bei RoH mit dem bis dato besten Title Run. Wird hoffentlich irgendwann zurückkehren."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Jericho Onewrote on 04.10.2007:[10.0] "Joe ist eindeutig der Top-Mann der Zukunft. Er hat Charisma und ein unglaubliches Movearsenal für sein samoanischen Körper! Außerdem kann er durch sein super Micskill überzeugen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Nick Toxicwrote on 23.09.2007:[10.0] "JoeŽs Gonna Kill You! Der Mann hat alles was ein guter Wrestler braucht: Können, gutes Mic-Work und Charisma. Einfach nur top, nur hat er in der WWE nix verloren ( weil der da wohl nix mehr zeigen darf, was ihn ausmacht^^ )"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Bullit69wrote on 16.09.2007:[6.0] "Mag ja wirklich klasse sein... aber hat es sich ziemlich einfach gemacht fast 130 Kg zu wiegen!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Templeton Peckwrote on 06.07.2007:[8.0] "Ich kann Joe zwar absolut nichts abgewinne, aber der Mann ist zweifellos eine ganz grosse Nummer im Ring und deshalb unmöglich schlechter als mit einer Zwei zu bewerten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ShaneOwrote on 28.06.2007:[8.0] "Stiffer, guter Worker. Bei richtigem Einsatz die Zukunft von TNA."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MGStylezwrote on 24.06.2007:[10.0] "EIn Gott im Ring, ein Halbgott am Mic! Noch ein bis zwei Jährchen und er ist die absolute Nummer!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Trevedaswrote on 24.06.2007:[8.0] "Im Ring Klasse, allerdings mangelt es ihm an MicWork. Charisma hat er in meinen Augen auch nicht so viel und ehrlich gesagt wirkt er auf mich eher wie ein Riesenbaby als wie ein Wrestler, weswegen ich seine Matches bzw. seine moves nicht gerade Ästhetisch finde. Aber für das wirklich sensationelle InRing Können gibt es noch eine 8"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Masterpiecewrote on 24.06.2007:[6.0] "Die Ringleistungen sind gut ... aber mehr hat Samoa Joe auch nicht zu bieten!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: STK1983wrote on 24.06.2007:[10.0] "Auf Knie vor den besten Indy Worker der USA. Bei Something Prove der IWA-MS war er einfach nur Hammer. Stiff Stiff Stiff"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Aaronwrote on 24.06.2007:[10.0] "Bei ROH besser als bei TNA! Trotzdem super In Ring Skills für sein Gewicht! Joe's gonna kill you!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Sebastian Bogowrote on 24.06.2007:[10.0] "An alle die hier Joe wegen seiner eher fülligen Figur schlecht bewerten: Ich finde das macht diesen Ausnahme Wrestler sympathisch und eben auch menschlich. 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Undertaker13wrote on 24.06.2007:[4.0] "Hat keinerlei Charisma und auch keine gute Figur. Wegen seines guten Wrestlings im Ring bekommt er noch eine 4."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Hunter2007wrote on 24.06.2007:[10.0] "Samoa Joe kann die stärksten Tricks und zeigt in keinen seiner Aktionen Schwäche. Er ist die Zukunft des Wrestlings!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Hit Manwrote on 24.06.2007:[4.0] "Ist für mich überbewertet. Außerdem ist er einfach nicht durchtrainiert. Erinnert mich an die meisten Wrestler der 80Žer oder der heutigen "Kirmeswrestler"."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Für Indy Wrestling reichts für Pro Wrestling nicht... Jemand der so eine unqualifizierte Aussage tätigt hat in seinem ganzen Leben wohl noch nie eine Independent Show gesehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Anti-Championwrote on 24.06.2007:[10.0] "Auch wen er mir irgendwie nicht gefällt kriegt er eine 1. Seine Matches und sein Micwork sind Top."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: metaltyrantwrote on 24.06.2007:[10.0] "Bester Mainstream-Wrestler der Gegenwart, braucht ähnlich wie Benoit kein überragenes Mic-Work."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: therockingkingwrote on 24.06.2007:[10.0] "Samoa Joe ist der perfekte Worker einer neuen Wrestling-Generation. Sein Stil trifft genau die Zeit. Er hat brutal wirkende, populäre MMA-Einflüsse (seine Choks, seine Knieschläge, seine Kicks) und zeigt darüber hinaus spektakuläre High-Risk-Manöver (seine Dives übers Top-Rope lassen mir immer wieder den Atem stocken). Dazu hat er ein gutes Mic-Work und strahlt eine Atmosphäre der Ernsthaftigkeit und Realität aus, er wirkt wie ein "richtiger Fighter". Das ist eine sehr gut tuende Alternative zum"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: Wrestling Foreverwrote on 22.11.2024:[9.0] "Seit Jahren eine Top Joshi mit unfassbarer Kraft und dann auch noch ordentlicher Beweglichkeit. Dazu bildet mit der sympathische Yuu das erfolgreiche Tag Team, Team 200kg."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: rgpickwrote on 22.09.2024:[10.0] "Easily one of my favorite wrestlers since I first saw her a few years ago. If you were putting together a wrestler in a lab you'd be hard pressed to make someone better than Hashimoto. Awesome power, scary acceleration, and surprising agility in one package. The closest person I can compare her to would be Jeff Cobb but Hashimoto is her own person. Her matches are just a joy to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: Zak22wrote on 16.06.2024:[8.0] "Strong, hard-hitting, excellent wrestler. She maybe doesn't have the showmanship but her in-ring work is excellent. Suplex city comes to Joshi wrestling."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: Mugendaiwrote on 20.07.2023:[9.0] "Absolutely spectacular, perhaps the best suplexer in joshi ever. You can't go wrong with a Chihiro Hashimoto match."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: ShineyxDiverwrote on 15.07.2022:[9.0] "I love Chihiro Hashimoto. Absolutely adore this woman, and is unequivocally one of the best wrestlers out there. Even from her first match you could tell in her battles with Aja Kong and Meiko Satomura that she was gonna be incredible."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: Golden Loverwrote on 14.07.2021:[9.0] "She's absolutely brilliant, such great, simple, powerful offence that always looks good and then there's her German suplex which is genuinely a thing of beauty. I thought I didn't have time to add anymore wrestling to my already enormous "to watch list" but she has grabbed my attention over the last month with some excellent matches and a Great feud with Momono."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: teenagehonvedfanwrote on 24.06.2021:[9.0] "Gets ignored due to her looks (she's not an idol) and iirc she had a drug arrest years back which is basically the worst crime a wrestler in Japan can commit. Pretty much why she's done little outside Sendai Girls where Meiko has pretty much booked it into the abyss in terms of exposure. A fantastic powerhouse, capable of pretty much doing anything. Hopefully GAEAISM will give her a little more exposure with non-Japanese watchers so she can get bookings elsewhere."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: Kungwrote on 09.05.2021:[8.0] "Chihiro Hashimoto was the reason I decided to watch Sendai Girls, and I have to say that I'm impressed. Expect her rating to go up over time!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: ElPolloLocowrote on 18.08.2020:[8.0] "Four years in the business? She's ridiculously good, sometimes even mind-boggingly so. The only thing she needs is more exposure both in other promotions and around the world, not so much because she needs the experience but because more people need to see how truly good she is."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: TylerWhitewrote on 24.07.2020:[9.0] "Chihiro Hashimoto gehört für mich zu den derzeit absolut besten und herausragendsten Joshi-Wrestlerinnen und ist auch zurecht das Face von Sendai Girls. Sie ist sozusagen das weibliche Pendant zu Tomohiro Ishii und dass, obwohl man es sich schwer vorstellen kann, im allerbesten Sinne, denn sie hat den Körper und die in-Ring Härte eines Ishii, sieht dabei aber immer noch super aus. Wie Ishii ist sie mit diesem Stil fast schon ein Garant für gute Matches, im Gegensatz zu ihm bekommt sie aber auch den Push, den sie verdient hat und hält seit Jahren jetzt schon, mit mehreren kurzen Unterbrechungen, den Sendai Titel. Dabei hat sie natürlich die besten Herausfordererinnen und jede Titelverteidigung bei den Big Shows ist eigentlich sehenswert. Sie passt mit ihrem Stil einfach perfekt zur sehr sportlichen Ausrichtung von Sendai Girls und gehlört, nicht nur dort, zu meinen absoluten Lieblingswrestlern."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: NEVERoverweightChampionwrote on 11.07.2019:[8.0] "Hashimoto is one of my favorite joshi wrestlers. Despite doing this for only 3 years she already wrestles like she has done this for way longer than that. All of her offense look great, the strikes are impactful, her grappling is obviously on point thanks to her background in (legit) wrestling, and she has awesome suplexes. She doesn't have any major flaws or anything, she just needs to keep going, gain more experience and continue to be consistent to cement herself as one of the best in the history of joshi pro wrestling."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: Makai Clubwrote on 16.02.2019:[9.0] "One of my favourite wrestlers today. Easily one of the best and more consistent champions when it comes to having a great match. With only being in wrestling for 3 years, it's amazing how she went from the best rookie to best champion with seamless transition which most don't. So unique offensively too which makes her even better. Love her."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: HeadCheesewrote on 07.12.2016:[8.0] "Chihiro Hashimoto is very good and shows a lot of potential for being a rookie. I am excited to see her grow as her experience grows. Her two title matches she has had have been very good."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: LooseExplosionwrote on 21.11.2016:[9.0] "As far as rookies go, I can't remember someone with a hotter start and faster rise than Hashimoto (well, besides Matt Riddle lol). Hashimoto has great strength, speed, and technical abilities. Under the leadership of Satomura, Hashimoto could become one of the greatest joshi of all time. Top, top talent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: ChocoboSagewrote on 04.01.2025:[9.0] "Shoko has evolved in the past couple of years, going from her Big Kaiju persona focusing on lucha style. To being a versatile player in TJPW. Having really fun and comedic matches with everyone. Her series of matches with Hyper Misao is an annual staple of TJPW now, and she makes everything work. She may not be a main eventer anymore, but she's an absolute key part of the promotions continued success. Her recent match as Shoko Nakajama, after drinking snake poison was amazing and shows her range as a performer. She can work any match anywhere on the card and that's something people just don't appreciate."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: A Lexwrote on 30.09.2024:[10.0] "Shoko always puts on a fun match and has had some of the best matches in TJPW. She has a great gimmick too! What's not to love about the Big Kaiju?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Aspionwrote on 22.07.2024:[9.0] "(Sorry english is not my firtst language) This is one of persons for who im watching TJPW, Im just cant wait for her fights she is unexpectly good and dynamic in ring.. Also its still funny for me that her gimmick is kaiju when she looks that good i mean its kinda hillarious"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: UBVenuswrote on 28.06.2024:[10.0] "Shoko is so damn good she is a jack of all trades. She can put on amazing emotional stories for the big events, she can present herself as a strong to champ whenever the opportunity arises and she can play the comedy goofball character perfectly. Not to mention her abilities as a professional wrestler are amazing. Her moveset has so much depth, and in combination with her size, speed and athleticism, The Big Kaiju can put on some of the best matches in all of TJPW. Out of the four pillars, Shoko probably ranks 2nd right behind Yamashita for me. Also her charisma is off the charts considering she's in a company that is full of wacky hilarious characters. Such a fun watch every time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: somerandommarkwrote on 23.06.2024:[10.0] "The Big Kaiju is so smooth, her moves are so clean, and full of personality and happy energy! Every time I watch a match from her, my day gets better. She can do big-time, tense main event matches just as well as she can do light-hearted comedy matches, she's truly versatile in a way others struggle to be. Even when she's just outside the ring for a tag match, she's so 100% commited to the character she plays, she can truly steal the show with just her expressive and fun mannerisms! Also, the little "Eeya" noise she makes on her dives and 619s gives me so much life. She is one of the best wrestlers in the world!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: edgyfrwrote on 01.04.2024:[10.0] "I have never seen Shoko Nakajima miss a move, she always pulls the most clean wrestling in any joshi. Her moveset is insane, she has a lot of personality, she trully is the best joshi of this generation"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Machinedwrote on 22.03.2024:[9.0] "Most might highlight how fast she is which is very, but I also want to point out of crazy good her mat/chain wrestling skills are even though she doesn't look like she is the type to pull that off : she does that in a pretty effortless way. Obviously her move set is awesome and cool to watch, ranging from Northern Lights suplexes to suicide dives."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Neon Aussiewrote on 07.03.2024:[7.0] "Fun move set, interesting gimmick. I think Shoko Nakajima is good but I feel like these ratings are exaggerating how good she really is. She brings the best out of everyone, she's able to pull off a nice wide range of moves. Solid all around performer"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: MegaSPSwrote on 24.01.2024:[10.0] "shoko is probably my favorite high speed-type wrestler. shes very high energy and fun to watch no matter what role shes in. she could be having a very intense technical match with rika tatsumi or she could be causing the most absurd chaos ever with hyper misao and thrives at both. shes been on top in tjpw and has more than proven that she deserves the position on top. shoko is definitely one to seek out if you havent yet."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Wrestling Foreverwrote on 14.01.2024:[9.0] "Shoko Gear könnte auch aus einen Ghibli Film sein wie Princess Mononoke. Auf ihrem Insta Account habe ich gesehen das sie großer Godzilla Fan ist. Eine Top Joshi bei TJPW."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: teenagehonvedfanwrote on 24.12.2023:[6.0] "She's fine. By far the weakest of TJPW's pillars but if given the right opponent she can still put on a good match. When not, she's annoyingly inconsistent. There's very little to truly nipick her one, but she just isn't a good as Yuka, Miyu or Mizuki. Hell, Itoh, Miu and several others are more consistent than she is."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: ThreedomLegacywrote on 11.11.2023:[5.0] "While she's able to have good matches from time to time with some of the best in TJPW, more often than not Shoko Nakajima is inconsistent on most days. Her last Princess of Princess Championship reign was mostly a miss outside of the pillar matches, showcasing in many ways that she is the worst of the four. She's a fine wrestler but is on a level that isn't of the best ever -- as her overall rating would illustrate."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Animagowrote on 01.09.2023:[10.0] "Shoko Nakajima is just one of the best and most important wrestler TJPW ever had the fortune to have in their roster. She was there from the beginng, contributing to the development of the company with growing as a wrestler. Her in-ring work is simply excellent, top mat-wrestling skills, and great athleticism that mesh so well her lucha inspired wrestling elements and more traditional japanese style wrestling. She is such a likeable underdog that can put the fight to anyone in spite of her small size. She is also very giving to rookiees, always willing to bump and sell for them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: theshelfableswrote on 02.05.2023:[10.0] "As a fellow fan of Tokusatsu, Shoko was an early favorite for me getting into TJPW. I couldn't not love someone calling themselves the Big Kaiju and landing Rider Kicks off the top rope and her gear and entrance music are fantastic. As I've gotten more familiar with the promotion and grown to appreciate everyone there in one way or another, Shoko is still right there at the top for me. She does it all. Her character work is top notch. She embodies her kaiju character at all times. Whether its with her animalistic in ring movement and growls or how she reacts to comedy spots and promos. She's even entertaining just cheering her tag partners on from the apron. Her speedy lucha style is so fun to watch and I love how she leverages her low center of gravity and muscular physique to power out of holds and bring her opponent to the mat. Everything she does looks so believable and smooth and it really feels like only the 1.47m Big Kaiju could do the things she does. Shoko is also an excellent in ring storyteller. She sells so well that despite being one of the best pure wrestlers in TJPW and a legitimate threat to anyone on that roster, you can't help but root for her after she's taken some damage and it starts showing. No matter where she is on the card or who her opponent is, you're getting a good match out of Shoko Nakajima. I recommend checking out the Summer Sun Princess 2022 main event vs Rika Tatsumi, her 2022 Princess Cup match vs Miu Watanbe and any of her yearly 1.4 matches vs Hyper Misao to get a feel for her work. Can't say enough good things about The Big Kaiju. Shoko rules."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Enriquepollazzowrote on 19.01.2023:[9.0] "I really like Nakajima. One of the strongest in-ring competitors at Tjpw. Tons of fire. Lives her gimmick. By that I mean is a thousand feet tall and weighs many mega tons."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Bullshark1wrote on 12.01.2023:[8.0] "Shoko is everything you'd want in a joshi. She's talented in the ring, has a fun character, and the right amount of charisma. TJPW has been good to her, and her match with Miyu Yamashita was extremely fun to watch."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Penguinowrote on 24.07.2022:"Far and away the best wrestler in TJPW. She does everything flawlessly and effortlessly. She brings the best out of everyone and everyone on the roster has their best matches vs her."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: tresgrumpywrote on 19.06.2022:[7.0] "I really liked Nakajima in tag matches, but I feel like her title matches this time have been really inconsistent. What I like in a champion is someone who gives everyone their best match, which I don't think Nakajima does. It's weird, when she's a tag wrestler she uses more moves that make sense for her, she does way more technical wrestling, and finishes with her spectacular northern lights suplex. As the champion she finishes her matches with.... a top rope senton? She's such a good wrestler but the end of every match feels confusing. I loved her singles match with Mei Suruga in ChocoPro though, I thought that was spectacular, and really showed what Nakajima is great at."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: GriffinXwrote on 06.05.2022:[10.0] "Shoko is fantastic to watch. She's able off a nice wide range of moves. Her selling is really good and she has that it factor that allows you to care about her match even if some super goofy show down with Misao or a big title match"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: TheMrPollardwrote on 25.04.2022:[9.0] "one of my fave TJPW wrestlers, I could watch her matches all day, some of the most fun and entertaining ones around at the moment"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: killowenskillwrote on 25.04.2022:[6.0] "I watched quite a lot of her matches, but couldn't give any rating. Now I'm starting to watch TJPW on a regular basis, and it seems to me that I don't understand it at all. I don't understand how she behaves in matches, I don't understand what kind of storytelling she adheres to, and why she is one of the top faces of this company, a two-time main champion. At first glance, Shoko is difficult to distinguish from the conditional Neko, Misao and Harajuku, she looks like a secondary character entertaining in her category, and only then you encounter reality, where she competes on equal terms with Yamashita and Sakazaki, is positioned higher than Mizuki and Maki Ito, and all you feel is misunderstanding. I thought that I would have to unravel her phenomenon, but so far I am infinitely far from it. Nakajima is certainly a good wrestler who especially entertains in some tag team matches, and now she is clearly better than in 2019, when she won the championship for the first time and looked clumsy. But I still can't perceive it the way the status requires. Not because she hasn't won any awards and nominations, as the commentator stated below, but because I don't see her having such an aura, and many matches just pass me by. Nevertheless, I hope that this will change someday, and I will consider Shoko's candidacy a good choice."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: NoSellwrote on 04.01.2022:[9.0] "I love the Big Kaiju. My favorite TJPW wrestler apart from Miyu. She's funny, great in the ring and always shows great fire in all her matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: 10speedwrote on 16.08.2021:[10.0] "Shoko Nakajima should be in more conversations for best joshi going today. She's scary good and can have a great match with anyone. With TJPW's popularity seeing an upswing, I think more people will see her as a standout."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Kishikaisei37xwrote on 28.07.2021:[10.0] "Shoko is really really good and has been one of the best in Tokyo Joshi for years. Very underrated by fans outside the promotion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: AmarantCoralwrote on 29.05.2021:[9.0] "The Big Kaiju is seriously underrated in the conversation for the best female wrestler in the world. She's not, of course, but she is certainly in the top 10 for me. I love her speed, her workrate is impressive and I've yet to see her put on a bad match."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Grissomwrote on 08.05.2021:[9.0] "Shoko ist eine der schnellsten Joshis im TJPW Roster und auch eine der besten. Vielleicht sogar etwas unterschätzt, aber Big Kaiju ist wirklich großartig und ihr 8-Bit Theme Song ist mega."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: automaticawrote on 06.05.2021:[10.0] "She's super underrated and one of the most consistent wrestlers going for my money. Hopefully she gets more of a push at some point."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Kungwrote on 29.04.2021:[8.0] "Shoko is one of the strongest in-ring competitors at Tokyo Joshi and has what is perhaps my favorite gimmick in the entire promotion!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Makoto92wrote on 26.02.2021:[10.0] "Shoko has one of the most unforgettable appearance in all of prosfessional wrestling. Her gimmick is the funniest thing I've ever seen in ToJo (except for Misao, maybe), which is perfectly suits her really small size. And her ring work is perfect every time, of course."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: nWo-Joshi-Guywrote on 19.01.2021:[10.0] "She may be my favourite TJPW wrestler. She is a very good wrestler and her gimmick is awesome. Shoko Nakajima is ridiculously fast in the ring which really fits her style and ironic 'Big Kaiju' (monster) gimmick extremely well. She really gets all in to her gimmick as well which I really like. She has a great move-set, is very athletic and is really fun to watch. She is also surprisingly muscular and her costume is amazing. She is pretty funny and really cute; I love everything about her to be honest. Her current Shin Ultra Shoko gimmick is also pretty entertaining."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: cuervonegro83wrote on 02.01.2021:[8.0] "My favorite wrestler in TJPW, her gimnick "147cm Big Kaiju" is so funny, I love her attire and her suicide dive is one of the best, she really can fly. She has a good moveset, but maybe the finisher (Northern Light Suplex) is not so good as a finisher and I like the move and the way she does it and even she used a double version to beat Miyu Yamashita for the Princess of Princess Championship, but for her size maybe is not the best move. I feel a bit sad with her match in AEW, cause it really looks like they put her and Riho as the weakest in the match just because they were smaller, and didn't let them show how hard they can hit. Anyway Shoko is fun to watch and I really enjoy every time I have the opportunity to watch a match of the "Big Kaiju"."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: dontkilldylwrote on 07.04.2019:[9.0] "Shoko Nakajima currently finds herself in the grizzled vet role, working the undercards against a seemingly endless supply of TJPW's rookies, and it makes sense that she does that, because I truly think shes incapable of having a bad match. She's smooth on the mat, shes lightning quick on her feet and always manages to get the best out of her opponents, oh and she has the best entrance music, without equal."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Zak22wrote on 11.06.2024:[8.0] "I find Kenoh a bit dull tbh but he is technically a brilliant wrestler and his matches with Nakajima really show off how good Kenoh can be. Good all-rounder with strikers and power moves."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: tlaustinwrote on 16.04.2024:[8.0] "My introduction to this man was through his match with Wagner, and then his immediate stinker with Ryohei, and I was left with a very negative opinion of him. Especially in the Ryohei match, where everything that went wrong was demonstrably his fault. Since then, I've really started to come around on him. I don't think I like his wrestling style, but his mic skills and charisma are borderline transcendent. The obsessed counterpoint to Kaito character he's currently running, combined with this "dangerous maniac goof" vibe he gives allows him to mold himself into virtually any wrestling situation (see: being the only maskless man in the dragon Bane/alpha Wolf/Marufuji sunny voyage match) in a way that stays true to his character and works well with others. I find him captivating in ways that have little to do with his in ring work, that's pretty remarkable in a promotion that bills itself as work rate first. I think he will probably convert me to being a total fan in the long run at this rate, whether I want him to or not."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: CDProsProwrote on 27.03.2024:[10.0] "Kenoh is the master of mosh! Humble and very traditional in heart while dark in theory. His battles with Go which steals the show, Manabu far as pride, El Hijo de Dr Wagner Jr in defeat & most people talk about Kaito Kiyamura new year shows back to back for the GHC national & heavyweight championships respectively. Overwhelming wins in key battles earlier on in his time in M-PRO and yes his entrance music is the most iconic 2000s theme tune in the ongoing wrestling career span. KONGO was the stuff of legend, Asura left an impact while highlighting rival Fujita Jr Hayato, I reckon he can keep going making Pro Wrestling NOAH as chivalrous than it was in the 2000s. Very angry with flames kindred to his melanochaita entrance lion robe, Kenoh can hit P.F.S knees or stomps on any heavyweight or interchangeable cruiserweight on the green mat"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: ImperialUnowrote on 24.01.2024:[10.0] "Kenoh is an amazing and complete pro wrestler, he has a compelling character, is an amazing striker and has some of the best kicks the business has to offer but he's also a great technician and can do some flashy stuff well. My favorite thing about Kenoh is his character work, his grumpy persona is great and a lot of fun especially when he calls people "assholes" and he can even do some comedy stuff from time to time and he does it so well. He's also great at selling and tells stories extremely well, he has a great sense of details which makes his matches even more enjoyable, he can do it all and is one of the best wrestling in the world without the shadow of a doubt, he's also a great entertainer. One of my favorites for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: GoldenHomieswrote on 02.01.2024:[6.0] "He is an effective striker but the shouty angry man personality doesn't do much for me. I'd be more invested in him if he were to have some depth and complexity as a character instead of doing the same yelling thing he continues to do. Not a fan of his gear or haircut either, find them so ugly."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Khalid Acewrote on 07.07.2023:[7.0] "I enjoy Kenoh being one of the top guys in NOAH right now because it's well deserved however I think 7 is a fair rating for him"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: DangoDaisukiwrote on 30.06.2023:[7.0] "Hmm, ich würde ihn gerne sehr viel lieber mögen, aber leider gibt er mir nicht viel. Im Matchguide sieht man eigentlich dass er nicht wirklich viele sehr gute Matches abgeliefert hat und seine drei besten Matches sind gegen Nakajima, was ich aber finde liegt aber mehr an ihm und nicht Kenoh selbst."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: MooGatiwrote on 03.06.2023:[10.0] "NOAH's not-so-secret weapon. He is in prominent feuds in all of the major Japanese wrestling promotions and is in-demand everywhere because he has maybe the most clear character in all of wrestling: Kenoh is pissed off, and that's all you need to know. He's even taken to opening shows with a promo calling all the fans bastards. I really think putting the title on Kenoh is the right move right now; he's much hotter than last year when he lost the title to Kaito."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Vivalajadywrote on 22.05.2023:[10.0] "Kenoh is a very angry kicky boy who is an amazing wrestler one of the main reasons i watch NOAH. Fingers crossed he gets another singles title run."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: TheOneAndOnlyCactuswrote on 12.04.2023:[10.0] "What is there that this man can't do, and can't do it well? Kenoh is a jack of all trades, and arguably master of all of them. Hardcore, comedy, tag, mid-card, main event, technical, striking, high-flying, selling, dominating, changing of pace, portraying emotions. He is so damn complete in the ring, and he is so captivating on the mic. I fucking love Kenoh."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: TerwilligerTheLuchawrote on 18.01.2023:[10.0] "My favorite wrestler in Japan. An elite wrestler who is able to work long, grueling, Noah style matches and make himself and everyone involved look good in the process. And let's not forget, pound for pound the angriest wrestler in the world. One of the best promos in the game, his antics are comedic gold under the right foil and absolutely menacing in the right circumstances. Would love to see him once again hold the red belt, as I strongly believe his run was cut way too short (although Kaito was the right guy to win it)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: heartbreakmoshwrote on 30.08.2022:[10.0] "Kenoh is an undeniable talent. He understands wrestling at a base level and always wants to push himself to new heights with every match. He is a true martial artist from every sense of the term, always wanting to expand his understanding of martial arts and apply that through wrestling. His sense of self is second to none, and you can see that in every single match. His psychology is simple but always effective, and always tells an easy story for the viewer to bite into. Amazing reflexes and ring-awareness as well, with one of the highest fight IQs I've ever seen. His love of wrestling and fighting really does bleed through in everything he does, and he always believes in himself all the while. Plus his kicks are always so sharp and impressive, and his character is never not entertaining. Dedicated Youtuber and fantastic on variety shows as well, with humor that bridges his serious in-ring persona with the more comical side of his personality. Really just an incredible wrestler. Easily my favorite."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Christopher Endwrote on 25.07.2022:[10.0] "Not only is he good in the Pro Wrestling NOAH style but he also showed that he can do hardcore type matches in Cyberfight 2022. He has surpassed Okada as the best wrestler in Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Ma Stump Pullerwrote on 18.05.2022:[9.0] "While many gush about Go or Nakajima, I believe that Kenoh is the ultimate utility talent. You want him to get over guys in tags? He can do that. You want him to do goofball comedy with a 50+ Kendo Kashin and make it work? Yeah, it's not hard. He can do stiff battles, longform bouts, hard-hitting affairs, heel cut-offs, building underdog talent up for big comebacks, you name it. Hardcore bollocks with Great Muta? He'll knock it out of the park WHILE not making himself look bad when ultimately losing. You want him cutting angry pissy promos that get yourself noticed out of everyone else during inter-promotional bouts, he's perfected that as well. He's literally fantastic in any field, and it's a bit of a shame that he hasn't had a proper main event run yet. That's half because of the above: Kenoh can literally pull any role off either at the bottom or top of the card, having fantastic matches with a sensational range of workers. You can look at his workrate stuff on one side, his stiff shit in the middle, and everything else on the other. His range dominates everyone else on the roster by a good mile and while his "angry kid throwing kicks" shtick can be grating at times and his technical work is lacking (something they addressed with the Funaki squash as something he thinks he's better than what he actually is, leading to that in question) but as a whole package, he's easily one of the modern pillars of NOAH, but the least appreciated by far. Could have easily a extra 10 years behind his belt if he plays his cards right: here's hoping his loyalty gets him a proper run with the big belt sooner than later."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: jamzell00wrote on 17.05.2022:[10.0] "Just the angriest dude in the world. You can feel every strike and move in all his matches and his intensity always matches it. His rise in NOAH as a top guy and now a consistently great member of the roster has been fun to witness. Love him and I dont think he gets enough praise despite the high rating. That's how good he is"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: plaguespreaderwrote on 11.02.2022:[9.0] "Really angry striker is a time-honored archetype and KENOH pulls it off to a tee. Delivers great matches consistently. Best striker in the world currently."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: GriffinXwrote on 20.01.2022:[10.0] "An ultra talented wrestler who plays the pissed off bad ass very well. Able to land great kicks. His work with the GHC National Title made it a title worth watching"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: dinosaurjrwrote on 14.09.2021:[10.0] "Kenou is hands down the most compelling professional wrestler in NOAH and imo the second most in japan only beaten by hiroshi tanahashi. The amount of passion in (most) of his matches and the way he bumps is literally a thing of beauty and I just wish they'd give him a good run the top belt (but everyone is enamored with shiozaki right now) However make no mistake Kenou is the best to do it in NOAH and has been for while if I'd give him a comparison I'd be Hashimoto. UPDATE: It makes me sick to admit this but NOSAWA has booked Kenou like a god amongst men (aside from the typical Muta loss) feeding him the stars of yesteryears japanese mma world with the exception of Fujita who is still one to overcome, It actually draws yet another comparison to Hashimoto mirroring his first two IWGP Heavyweight Title runs feeding him the stars of 80's japan it gives him an aura of authenticity and credibility that makes it damn near impossible to beat the man 1-2-3 in the middle of the ring and with his deviating blows most of which being feasible ko's it makes seem that the only way to beat him at times is to shoot him he's the best striker in japan right now... 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: mamboKENTAwrote on 03.03.2021:[8.0] "Kenoh is really starting to come into his own. He's a fan favorite with a unique look, and his bombastic promos keeps the crowd engaged all of the time. He's got plenty of charisma but I think he's missing one more layer of that, which would easily put him in the same class as Tanahashi, Okada, Miyahara, or Naito in terms of charisma. Otherwise, he's a really good wrestler. Brutal striker, you always hear his kicks, and he's won a couple of matches via knockout by just palm striking his opponent to death. Konogh is a good faction to put behind him to solidify him more, until the inevitable moment that Nakajima usurps him and the two feud. Kenoh deserves another run at the GHC Heavyweight, and will get one when the company is a bit larger. Kaito Kiyomiya is his finest rival, and it's always special when they are in the ring together. I love Kenoh."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: pierreMinnewrote on 27.01.2021:[9.0] "This man is absolutely awesome in the ring. His kicks are incredible, he is a great storyteller and a great leader for Kongo. I don't give him a 10 because he is really not charismatic but I love him !"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Makoto92wrote on 23.01.2021:[10.0] "Damn, Kenoh is one of the most realistic badasses in pro wrestling history and one of the workhorses of NOAH. I think, it's impossible to not admire his skills not only as a wrestler, but as an entertainer too."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: PuroresuLoverwrote on 10.11.2019:[8.0] "Kenoh is an awesome wrestler with an amazing look and a great arsenal of moves. The only thing in him that bothers me is his gut, despite that, he has a very amazing character and is a great wrestler."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: trinidadchainzwrote on 20.11.2018:[10.0] "Kenoh has The Look, The ability in the ring, a resume of fantastic Matches in 2017, one of the breakout stars in Japan with all the momentum in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: PlanetMan21wrote on 02.05.2015:[7.0] "I enjoy his work for NOAH. Certainly better than his tag partner Ohara. Would like to see how he'd do more as a face of the Jr. Division. I think he could get over as a face personally."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Matzinhowrote on 06.09.2014:[7.0] "Kenou ist agil, kämpft realistisch, hat einen guten look und in meinen Augen nur kleinere Defizite im Bereich des Sellings. Er ist vergleichsweise noch nicht so lange im Geschäft, hat sich dafür aber bereits zu einem guten Wrestler in seiner Gewichtsklasse entwickelt. Seine besten Jahre dürften jetzt unmittelbar bevorstehen und ich bin gespannt, wie es für ihn weitergeht. Wenn er Nakajima im Ring gegenübersteht finde ich ihn besonders stark - hoffentlich kommen noch ein paar mehr Singles Matches zwischen den beiden."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: STRIGGAwrote on 15.06.2011:[6.0] "Macht auf mein keinen so schlechten Eindruck. Erst seit 3 Jahren akitv, aber seine Ringpräsenz spricht bereits eine andere Sprache."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: docphantomswrote on 29.01.2025:[10.0] "my favorite wrestler and i am hoping his latest run, in 2025 wwe, gets him the accolades that he deserves. Very happy for him and looking forward to his work"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Wrestling Foreverwrote on 24.01.2025:[10.0] "Ich finde ihn noch besser als Fenix. Ikaro kann ich nicht bewerten da er bei Ligen antritt die ich nicht verfolge. Wäre auch schön wenn er auch in besseren Ligen wie LU wrestlen würde. Ein Triple Threat Match zwischen den Brüder würde ich sehr gerne mal sehen. Akutell ist für mich Pentagon Jr. einer der besten Heel Wrestler der Welt. Edit 10. 04. 2018 Auch bei Penta bleibt die Bewertung gleich. Einfach nur genial der Mann, privat auch sehr nett sieht man in vielen Videos. Edit 24.01.2025 Cero Miedo er ist endlich in der WWE da wollte er auch schon lange hin. Penta zeigte jetzt schon seine Klasse in der WWE. Er wird hier noch für viel Freude sogar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: crs285wrote on 21.01.2025:[8.0] "Penta has a great in ring ability and charisma. In the ring he has a good mix of submission wrestling and exciting high flying moves. His charisma attaches to any audience despite not speaking English. Lucha Underground took him to the next level."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: 77mega6wrote on 19.01.2025:[7.0] "Ok ok first off I didn't even realize how old Penta is, and honestly, it's wild because the dude still moves like he's in his prime. His in-ring skills, intensity, and charisma are on another level. Whether he's flying around the ring or delivering those devastating moves, Penta is a legend in the making, and he's showing no signs of slowing down. Straight up, I thought he was younger just based on how he performs. Mad respect for this guy he's a gem in the business! We need more"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: darkflame4527wrote on 14.01.2025:[10.0] "Been following him since around late 2023 and gone back to watch his best matches. His selling is unbelievably convincing. His in-ring work is obviously spectacular and is honestly my favorite luchador of all time. His matches with the Elite and Young Bucks in AEW with his brothers were simply captivating. His intergender stuff in Lucha Underground was also awesome to watch with him wrestling great matches against Chelsea Green and pulling a TRIPLE duty on a show wrestling Kairi Sane, IYO SKY, and MAYU IWATANI? His stamina is excellent. His WWE debut against Chad Gable was awesome to watch and to see that WWE really hasn't nerfed him that much as he's still pulling out Canadian Destroyers and Drivers. His promo work gets the crowd unbelievably hot and his English skills have considerably improved from years past."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: CDProsProwrote on 14.01.2025:[10.0] "30 titles, 20 years experience, 15 as a tag team, The Crash Cruiserweight Champion which is the lightest champ in that titles limit, 10 years of major exposure leading to a transformation to stardom in Lucha Underground as Dark, Impact Wrestling as Jr, Warrior Wrestling as 0 miedo & All Elite Wrestling as El 0 Miedo! 5 years of tag team excellence in bring the AAA tag team gold to the mainstream in combate de escalera de la muerte to reach for the sky in tribute to another great tag team, The Briscoes. 2 years as Oscuro while being back as Jr faced Psycho Clown in the most bloody main event in Triplemania history to travel to the winning team in Wembley Stadium ALL IN 2023 that year & this year, one year of a lifetime ready to take WWE ie those Americans down, maybe break some arms and grab the trophy by the handles, bassinet to his fingers as he say proudly, porque él es Pentagon Jr., ¡Cerooooo miedo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: MasteroftheMatchGuide99wrote on 01.01.2025:[10.0] "AAA, AEW, and LU knew what they had when he was there. He also made huge noise in TNA with his real-life brother Rey Fenix. Already a bonafide legend in Mexico and the U.S. and still having years left in the tank makes Penta a surefire WON hall of Famer at some point. He has held almost as many titles as Adam Copeland and more than who many people consider to be the best. As a long-time fan, I've enjoyed seeing him be as evil as possible like when he kayfabe broke the arm of his opponents in Lucha Underground and even lured Vampiro out of retirement for 1 last brutal and bloody match. Now, he'll be in WWE. I really hope WWE use him properly. Sin Cara, Alberto el Patron, and Hunico just couldn't match the charisma of their luchador legend Rey Mysterio. Now, we can find out if Penta will be WWE's Penta Dark or Penta Job"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: gxldenjaywrote on 28.12.2024:[9.0] "Penta El Zero Miedo is one of my absolute favorite wrestlers of all time. I've been watching his matches since when he was on Lucha Underground, He really stood out to me and his whole gimmick was amazing. Also his matches are really good, Him and his brother Rey Fenix are absolute beasts in the ring. They wrestled in TNA, AEW LUCHA UNDERGROUND TRIPLE A and now in the WWE, hopefully they present Penta as a dominant force heel or as a face, but where ever he goes i will still watch his matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Its Clobbering Timewrote on 17.12.2024:[9.0] "Penta is One of my favorite Wrestlers in the World. Penta is amazing he's a great singles star and tag team wrestler with his brother Rey Fenix as the Lucha Bros. Penta is super cool and has so much swagger to him and his look is great its very unique and sick and he's also Super charismatic. I Love Penta so much and will always be one of my favorites."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: ItsAllAWorkAnywaywrote on 14.11.2024:[8.0] "Pentagon Jr. is a fantastic wrestler who doesn't embarrass himself as either a singles wrestler or tag wrestler. He'll always be compared to his brother Rey Fenix, but both of them are exciting to watch. He might not have Rey's high-end athleticism, but he's got charisma for days and can really pull a viewer into a match with his psychology. He's also not afraid of the rough stuff either and helped put Lucha Underground on the map because of it."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Brando Calrissianwrote on 02.11.2024:[7.0] "Penta is one of my favorite wrestlers to watch and has been since his Lucha Underground days. He has an amazing look, great character work, and an amazing moveset. HAVING SAID THAT I feel like a lot of his most recent work has been more one note and repetitive. I'm not even solely talking about the constant Cero Miedo stuff with the taunting and posing being a bit too much for me, but it feels like his last few matches in AEW just blended together and were him hitting the same moves and spots in the same order. That's the only reason I have ranked him a bit lower than I would have, as personally I love his career but wish he would evolve or change. Hopefully when he finally arrives in WWE, he'll be able to do that."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Wh4tUpwrote on 01.11.2024:[10.0] "Just the total package. Great look, charisma, in ring ability, and intense on the mic. Total star in not only tag team but also in singles matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: kingofaurawrote on 16.10.2024:[9.0] "Penta has always been one of my favorites. I watched a match of his in Lucha Underground vs Vampiro and I was hooked ever since. He is a proven commodity and I cant wait to see him in WWE. He should be able to get 8-10 rated matches even without the violence he usually presents in his AEW and AAA matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Semicorrectwrote on 05.08.2024:"Pentagon Jr (or Dark, or 0M, or whatever you want to call him) has been one of my favorites, although he's been in very different roles over the years. In my view he was best in Lucha Underground, where he got to be as violent as he could reasonably be and his armbreaker was put over as more dangerous than it was anywhere else, but no matter where he's been he is a reliable utility guy. He leans a bit heavy on schtick, and he's not as athletic as his brother, but he's a consistent performer. He'll never be the top guy, but he's great in the midcard."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Willie 19200wrote on 28.07.2024:[8.0] "Penta is crazy cool in the ring and I really enjoy watching his matches, however, he can't get booked to win a big match to save his life. I love watching his matches and he delivers almost every time, but when it comes to big matches, he loses and gets put right back to the lower-mid card. I personally think he should be in a mid-card title division where he can continue to win and be on my TV screen. Overall great wrestler but needs to be booked better."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: woolyshamblerwrote on 21.07.2024:[6.0] "penta has been been slumming it for many years at this point but he has enough goodwill with the fans that it's not too noticable. still don't really want to see him in singles matches. he was absolutely class in lucha underground with his arm taking gimmick"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Erncredible824wrote on 20.07.2024:"He is an awesome luchador. Excellent in ladder and no dq matches. The destroyer he does is awesome. Definitely needs to be in wwe"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Chris777wrote on 14.06.2024:[10.0] "Used to be my favorite wrestler as Pentagon Dark, he is the embodiment of a rare instance of phenomenal character work from a luchador. With one of the best moveset ever, it hides everything away from his standard wrestling ability and really captured me at his peak. Such intense and unspoken charisma, seeing lost in times now that he is a midcard act and a tag team partner of what he admits himself to be a much more talented brother. Personally, he could of been so much more, a main event, the best rudo of this era, but it is what it is. still likes him, even if now i understand how formulaic his matches are."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: migrationswrote on 10.06.2024:[8.0] "I say 8 but only because Fenix is the 9. I wish I could comment a bunch on his Mexican history but I can't. The first I remember him was from Lucha Underground and from there he was all over the American scene. I remember how excited I was for his match at All In with Omega but I thought it fell short. AEW has made this man an entirely new creature though. With Fenix he has become one of my favorite tag teams and he's put on great matches back and forth. His cagematch with the Young Bucks is one of the best matches in AEW history. First of all Penta has the look and the charisma. He legitimately looks scary - like if you were a kid he would intimidate the hell out of you. All his mannerisms and movement are awesome. He used to spam his taunt non stop but he has gotten much better when it comes to TV time. He has still a good future to come."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: KesagakeOKwrote on 13.05.2024:[9.0] "Capable of great technical work, impressive high flying work, and well-rounded psychological work, Penta is the platonic ideal of a modern luvhador, even though his booking may not always reflect that."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Cleanerwrote on 04.04.2024:[6.0] "Der Mann hatte 2015-18 eine heiße Phase und war da unterhaltsam, keine Diskussion. Vor allem bei Lucha Underground war er ein Assett. Dass er sich aber nie weiterentwickelt hat und im Ring stets die gleichen Overkill-Moves aneinanderreiht, hat ihn über die Jahre uninteressant werden lassen. Bei AEW ist er mit seinem Bruder oder bei Death Triangle nur noch ein Spotmonkey."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: mxkamiwrote on 11.02.2024:[9.0] "My first time seeing Penta was in a GIF on wrestling Twitter, where he absolutely killed another worker with a Package Piledriver on the apron on the indies in 2017. Then, I found Lucha Underground, and he was my guy for a while shortly after. His deathmatch with Vampiro genuinely is one of my hidden gem matches that I feel like not a lot of people talk about, considering that Vampiro was already so limited back then. Penta is all about mystique, and barring his overuse of taunt spamming over the past couple of years in AEW (look even those of us who love him, can't and shouldn't deny it), he puts on absolute bangers when given time. Great brawling Lucha, great tag worker with his brother, and I've always been a big fan of his look."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Captain Memowrote on 05.02.2024:[10.0] "One of the most effortlessly cool wrestlers today. I think a lot of people first saw him on Lucha Underground, which I think as far as American exposure goes was his best work. Him and his brother haven't really been used as well as I'd like them to be in AEW but they still get to show how unique they are anytime they're on TV."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[9.0] "Very good wrestler, great character, knows how to work the crowd, insanely over, Lucha Bros is a great tag team, was awesome in Lucha Underground, very charismatic, I like the guy, he's aight."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TheSuperstarwrote on 17.11.2023:[7.0] "Based more of his aew work hes good, knows how to work the crowd, and is charismatic as hell. My major gripes are too many poses during the match and how he goes from selling to no-selling moves of opponents. I can deal with the poses but when theres an opponent working over a body part and he doesnt react thats pretty bad."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: djones06wrote on 20.10.2023:[7.0] "Great charisma, excellent fan interaction and immersion, a character that has to say very little but still remain over with any audience through animal like magnetism. Lucha underground produced some wildly entertaining matches, aew work has been steadily reliable to sometimes excellent."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: HenrideSadewrote on 02.09.2023:[9.0] "I don't think there are many guys as versatile at such a high level has him. Yes, he can end up in spot heavy wrestle crap in some matches. But if you want a guy who can bring the goods in tag, trios, hardcore, lucha, brawling, technical or anything else, then Penta can do it. His work in Lucha Underground was just phenomenal and I actually think breaking up the Lucha Bros would help better showcase them (as much as I love them). Great look, crazy charisma even behind a mask and with little English. Also delivers the best sling blades in the world from any man not called Finn Balor."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: 2bitterforyouwrote on 05.05.2023:[7.0] "I think Penta is a great wrestler, but solely based on his work in AEW, his matches rely too much on poses, fan reactions, and the Cero Miedo thing, much more than in his amazing ability."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: benh2wrote on 24.04.2023:[6.0] "Did some outstanding work in the past as the dark, brooding character incorporating a lot of brawling and ground work into his style. In recent years (ie. AEW) he's descended into co-operative sequential wrestling mode and that's just not for me. He's much better when he attempts to tell a story."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: gargoylesmainwrote on 14.03.2023:[7.0] "Top notch character work. Gets over with the crowd through a combo of charisma, natural brutality and athleticism, and exceptional chemistry when paired with a similar style opponent or adaptable opponent like Omega."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: benny5bellyswrote on 06.03.2023:[6.0] "A brilliant look and gimmick but I can't pretend I ever actually want to see him in a single match which generally speaking are painfully mediocre outside of the heavily edited world of Lucha Underground"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Okaro143wrote on 22.01.2023:[9.0] "One half of the Lucha Brothers, he is both a brilliant singles wrestler as well as tag team wrestler. Not quite as athletic or spectacular as his little brother but more charismatic and a better storyteller."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Daigotsuwrote on 15.01.2023:[9.0] "Penta is absolutely top notch. His work in AEW has been otherworldly good at times. He clearly demonstrates that you can be charismatic as fuck without being able to cut a promo. Most of all, he's just cool. The only complaint I have is that he hasn't been given enough of an opportunity in the main event scene as a singles guy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: WhatIsLooveeewrote on 12.01.2023:[9.0] "Penta El Zero Miedo was initially not the most remarkable luchador, who performed mainly in AAA and did not flash in the first roles. In this status, he moved to the Lucha Underground, and the transformation of the old Penta into the Pentagon Dark may have been the best work on the character in the company. Now he is not progressing much as a character and all he does is show high-fly moves, mainly participating in 2-on-2 and 3-on-3 tag team matches, and makes his "Zero Miedo" taunt. He is a good wrestler from the point of view of in-ring performance, in addition, he is especially good at helping veterans in the ring, which proved his participation in the Ruleta de la Muerte tournament, in which his every match against the stars of the past came out at least good. Now Pentagon and his brother are considered one of the best tag teams on the American stage, and although he impresses mainly with doing amazing moves, I still consider him a very gifted performer, not least because of his tremendous success in the temple of Dario Cueto."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Enriquepollazzowrote on 12.12.2022:[10.0] "Extremely exciting wrestler to see whether its the first time or the 100th. He has no fear if you didn't know that. I bet you did though. Can wrestle in all styles and is very spooky when he wants to be, Wish I could give him a 9.5."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TheNomadMagicianwrote on 27.10.2022:[8.0] "Penta El Zero Miedo ist ein guter Luchador-Wrestler mit einem ordentlichen Set an Moves die er regelmäßig zeigt. Was man anmerken sollte ist dass sich Penta Singles-Matches jedoch nach einer Zeit recht ähnlich anfühlen da seltener ein neuer Move gezeigt wird, den man vielleicht noch nicht kennt. Was mir aber besonders gefällt ist seine Art, wie er sich bewegt und generell das Gimmick plus die richtig coolen Outfits die er trägt. Auf jeden Fall ein Topstar."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Leonewrote on 22.10.2022:[10.0] "While his brother Rey Fenix is a more exciting and innovative luchador - Penta is 1 of the best Jack-Of-All-Trades wrestlers to come out of Mexico. He can more or less work and adapt to any wrestling style. He can fly, he can do submissions, he's very powerful for 200lbs, he can hit hard with his strikes, he's technical, he can do death matches, he can trash-talk like a Mexican Stone Cold...and more importantly for him, he can sell merchandise like hot cakes due to a good look, fun character and memorable catchphrase that can be utilised in the real world and even inspire children."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TheCoolGuywrote on 28.09.2022:[7.0] "Seems to be the one doing the least in all of his tag matches that Ive seen and I cant recall any promo hes ever cut. Hes a good wrestler but hes definitely overhyped."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: nWo-Joshi-Guywrote on 27.09.2022:[10.0] "Maybe my favourite male wrestler today. Incredible look and charisma. Part of the best tag team in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: GwenCube64wrote on 05.09.2022:[8.0] "Incredibly solid talent but I struggle to find myself excited to watch him unless with Fenix on his side."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: JaybirdJaredwrote on 08.08.2022:[10.0] "Great look, awesome move set, incredibly charismatic and able to get the fans involved. He has done some brutal gimmick matches, and he thrives solo or in a tag team. World traveler. Hard worker. One could maybe dock him for spamming his taunts too much or not being consistent with selling, but I do not see anyone more complete today. His promo ability is good too, but I think he is limited in AEW with its booking. He could be a world champion. I would dig it if he did promos in Spanish without a translator like Asuka sometimes does in Japanese."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: KingsCrossingwrote on 05.07.2022:[6.0] "I honestly have no clue why Pentagon is so highly regarded. He has a fantastic look, but consistently manages to underwhelm me in the ring. I really liked him in Lucha Underground but have not been very impressed with any of his work since then. His matches feel very disjointed to me, and he relies a lot on doing big crowd popping spots without much to really connect it all together. Some of his offense really looks quite poor, such as his fake looking superkicks or his sloppy Canadian Destroyer. His overuse of the Ciero Miedo taunt is also highly annoying. He has charisma and his mask looks great, but there isn't a lot of substance beneath that."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Wright15wrote on 28.06.2022:[9.0] "Pentagon is one of those guys who has been consistently great in both tag team and singles action for many years, but he has never been quite at the level to give a main event singles push in a big company. Even so, the tag team of him and his brother Fenix is one of the three best of the last several years, and their clashes with the Young Bucks are legendary."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: GM56 Championwrote on 02.06.2022:[10.0] "His run from Lucha Underground was tremendous and made me a fan of him. Wish AEW would book him like that, but he's still very good performer to watch and follow."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: jamzell00wrote on 21.05.2022:[7.0] "I'm all for guys knowing theyre over and doing the same shit to pop a crowd but man. You can tell when youre getting a real performance from him. The Omega all in match? Bland as hell. His series with Sami Callihan of all fucking people? Always exciting and full of hate. He's such a captivating performer especially in person but also extremely frustrating with his on and off switch. I want to like him so much more than I do lol"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: texasyoshwrote on 09.05.2022:[8.0] "Penta is a very impressive in-ring worker who has gotten himself over with the American audience in AEW. The Lucha Bros are a great unit but I feel Penta is the better of the two strictly in singles competition. Great natural charisma."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: UWF Rules Enthusiastwrote on 06.05.2022:[8.0] "He is a very good luchador. He has cool moves, he's quick and he's able to react promptly. His best matches always seem to be happening when he's teaming with Fenix though."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: NiceRaterwrote on 12.04.2022:[7.0] "When I first saw Pentagon Jr in Lucha Underground, he was something different. He felt legitimate, terrifying and original. But it's been so long since then that the act has just gotten a little bit stale. While he'll change gear or name, he is ultimately still rooted in the exact same character and it's just not hitting like it used to. He's now regressed to be much better in a tag team and I think it's now the right place for him. He can focus on his high impact sports and fantastic wrestling skills without needing to do too much fresh or original character work."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: LoloFareswrote on 07.04.2022:[6.0] "I've never been a fan of Penta and I see that what he does other than his work at the Lucha Brothers was not for me, even when it comes to the Lucha Brothers he is much less than Rey Fenix and he was the weak point of all the matches that this team offers, another thing which is the strange gimmicks And the ridiculousness that he presents that I can never take seriously and frankly I am so amazed at how much people love it, and finally the thing I hate the most about him is that he was a part - or actually the most part - of the intergender segments in Lucha Underground which is the most thing that make me not a fan of him."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: GriffinXwrote on 24.01.2022:[9.0] "A great talent that shows Lucha is more than dives and flips. A nice mix of power and brawling. Showed in LU and Impact he can be a great singles wrestler. Also a hell of a tag team worker"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: PhenomenalGunwrote on 14.01.2022:[9.0] "Sick look, fun quips and segments during matches, and an amazing wrestler to boot, Penta really broke out of the Lucha Libre scene to become an undisputed international star. He's both amazing as a singles and a tag team wrestler, and all you have to do is watch his work in the ring to understand how damn good he is. Zero Miedo is a great lifestyle to live and Penta's shtick is not a shtick since it comes across as genuine if you see what he and his brother do in no rule matches! ZERO MIEDO!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Pentadustwrote on 16.11.2021:[9.0] "pentagon jr/penta el zero m was an amazing wrestler in both the singles and tag team divisions. he had great title reigns, for example the lucha underground title. he had a great feud with sami callihan. and an amazing tag team with fenix as the lucha bros. whats left to say other than he is a great wrestler everywhere he goes"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Uweuwesenwrote on 15.10.2021:[10.0] "Pentagon ist einfach sehr speziell. Er workt ziemlich spektakulär aber nie zu viel. Seine Matches wirken immer sehr hart ohne übertrieben zu sein. Über Mic Skills kann ich nicht sagen. Er braucht diese aber auch nicht, denn, wie bei seinem Bruder, sind es die Taten die zählen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Luchagang13wrote on 26.09.2021:"I had not followed wrestling for around 12 years after being a huge fan as a kid not only of WWE, WCW, TNA etc but also indies. I heard about the network and subscribed to WWE out of curiosity which sparked more curiosity and I searched matches on YouTube and came across Penta and he is the reason that after all these years I am a fan again and he reminded me how much I loved wrestling. He is the most charismatic guy around. He doesn't need to do anything to get over whatsoever. Good presence, nice mix of lucha an indy style. Just as good at brawling and hardcore matches. His 0 Miedo taunt is just hilarious when he takes of his glove. Deadly moveset. Coolest look in the business. Only issue is he knows little english but like I said he doesn't even need to talk to get over"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: AmericanNumberswrote on 19.09.2021:[10.0] "If I could give one guy the ability to speak english? It would be Penta Zero Miedo. The man is a charisma machine and can cut a killer promo in spanish. He lives in a cross section of old school southern wrestling violence and lucha and he's a joy to watch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Josh50wrote on 09.09.2021:[10.0] "Penta has been a tremendous luchador since 2018 and has shown it to this day, together with his brother they have dominated the tag team scene"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Kungwrote on 06.09.2021:[10.0] "Pentagon Jr. has been my favorite luchador in the business ever since he started breaking arms over at Lucha Underground. He's got a supremely cool look. His move set is memorable and interesting. And while he has a limited grasp on the English language, at least from a promo perspective, he's still able to get the message across that he's a badass. Oh and not to mention, he's in my favorite tag team in all of wrestling right now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Kinsanewrote on 02.09.2021:[10.0] "In one word : Charisma. Fenix is the spark, Penta is the fuel. He is fun to watch and I love every match of him. I'm not gonna lie, I kinda miss his trash talking. He and his brother need gold, and I hope All Out 2021 is the place."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Jorhorgewrote on 02.09.2021:[9.0] "He is one of the most extreme nowadays, it is impossible to get bored watching his match either in team alone, he is a beast with a lot of potential."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Kaswrote on 16.08.2021:[7.0] "On his day Pentagon is as good as anyone, but after a certain point in time, he really started to phone in his work and only occasionally gives us glimpses of how good he can be."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: allurvibewrote on 16.08.2021:[10.0] "Penta has the coolest attire in wrestling today and he has the personality and moves to back it up. He's such a standout presence that he really should be given a bigger spotlight."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: blastostgwrote on 28.07.2021:[10.0] "It is a travesty he is not a main event player in AEW. He oozes charisma and can connect with any audience regardless of his lack ability to speak English. When it comes to big time matches, he delivers in spades."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Z001Awrote on 17.07.2021:[10.0] "Er strahlt Charisma aus und obwohl er nicht so auffällig ist wie sein Bruder, strahlt er immer noch genauso hell. Und wie sein Bruder verdient er mehr, als er in AEW bekommt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: BrayanLaPrewrote on 09.07.2021:[8.0] "At the end of the day, the name of the game is telling stories that connect with the audience. Penta El Zero Miedo does that quite well. Between the Cero Miedo taunt that gets the entire audience engaged and his unique combination of power and athleticism between the ropes, Penta gets you hooked. He also has one of the best looks in the business. I truly believe he could be one of the biggest stars in the world within the next few years."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Matt Mackswrote on 15.06.2021:[8.0] "Penta can seemingly do it all in the ring, but for some reason in 80% of his matches I feel he is holding back a little bit too much on the believable excitement, preferring gimmicky stuff instead. I have not seen his Lucha Underground work (shame on me), maybe my rating would be higher if that were the case. I believe given time, motivation and maybe a real high level feud, even the AEW version of Penta has potential for the top rating. Too much postering and grandstanding and not enough believable intensity for my personal liking."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: JTIwrote on 30.04.2021:[7.0] "In terms of actual wrestling skill, Penta's really quite mediocre, with nothing really that sets him apart from any other luchador you could pull out of a hat, especially when you put him next to his brother, who is legit one of the best wrestlers in the world. But what sets him apart is two simple things: his look, and his intensity. Really that's it. He's one of the coolest-looking wrestlers ever, which really goes a long way, and his presence both in and out of the ring makes for a great atmosphere. Aside from that you've got the hokey catchphrase/hand signal combination that feels like it was ripped straight out of 2002, a good workrate, and a rather generic moveset including the obligatory superkick with obnoxiously obvious thigh slap. I think the fact that he broke out in America on the ground floor of one of the most beloved wrestling shows ever, and as easily one of its most well-booked and well-written members of the roster, has given him an insanely high amount of goodwill among wrestling fans that's persisted over the last seven years. I dunno, he never really puts on bad performances, but I've just never been like, "Wow that match was particularly good *because* of Pentagon". The overwhelming majority of his most highly rated matches on this site are multi-man and/or gimmick matches, and I don't think that's a coincidence."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Android17wrote on 17.04.2021:[10.0] "On his own he's incredible, in his team with his brother he's incredible. One of the best going today top to bottom."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: marexcelwrote on 21.03.2021:[8.0] "Die AEW-Darstellung des ersten Jahres hat hier wirklich einen Punkt gekostet. Dieses Gimmick mit den Handschuhen und das Spamen der Catchphrase war eigentlich nur noch nervig. Im Ring war es dann offensiv gut, aber dennoch ließ er viel zu Oft die Seriosität im Ring vergessen. Kein angemessenes Selling etc. Er hat für mich definitiv das gewisse Etwas, aber an seiner Darstellung muss dann doch wieder etwas geschraubt werden, wenn ich es ins oberste Regal stellen soll."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: GulakBusickwrote on 14.03.2021:[10.0] "Great worker with bags of charisma, a box office look and genuine presence. Something many wrestlers are still sorely lacking these days."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: plaguespreaderwrote on 10.03.2021:[9.0] "Only thing holding me back from a 10 is that he has not shined as a main eventer yet, but maybe he doesn't need to main event to be considered one of the topmost wrestlers as a whole package. He looks incredible, he has a strong Samoa Joe-like penchant for violence that not many so-called brawlers possess, and has tons of physical charisma that makes people interested in him. I have been sort of disappointed with how AEW has been booking him as a tag team star but we'll see how that goes. His lucha underground run is legendary full stop."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TENzuwrote on 22.02.2021:[9.0] "His Lucha Underground run was incredible, and from there he rocketed off into superstardom. He has perhaps the best look in wrestling today but even without that he'd still have tons of charisma. Both as a singles and team with his brother, he's must-see."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Matidut09wrote on 12.02.2021:[10.0] "Pentagon Jr. he is the best fighter in lucha and all promotions, his fighting style is simply amazing. Piledrivers and Pentagon Drivers are amazing. He is also supposedly very nice. Cero Miedo, brother. Pentágono Jr. él es el mejor luchador en lucha y todas las promociones, su estilo de lucha es simplemente asombroso. Piledrivers y Pentagon Drivers son increíbles. También supuestamente es muy agradable. Cero Miedo, hermano. Pentagon Jr. Er ist der beste Kämpfer in Lucha und bei allen Beförderungen. Sein Kampfstil ist einfach unglaublich. Piledrivers und Pentagon Drivers sind unglaublich. Er ist angeblich auch sehr nett. Cero Miedo, Bruder."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Brett1980wrote on 15.01.2021:[9.0] "Was the best wrestler in Lucha Underground. His look is incredible. I do feel him and Fenix are a bit underused in AEW."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Legend003wrote on 03.12.2020:[9.0] "Einer der besten Wrestler aus Mexico meiner Meinung. Unglaubliche Charisma, solide am Mic und kann 5 Star Matche abliefern."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: ethwrote on 27.11.2020:[4.0] "I don't quite understand why this man is so loved. What makes him so special? His mask and costume? His charisma? Anyone who has watched wrestling for a long time and knows a little about it, can know that he is not an overly skilled wrestler. His exciting moves include almost exclusively chops and leg kicks. He's a tough guy, but that won't be enough for his career. He is not a very satisfying wrestler to be honest. For him, i have to say that it would be perfect if Super Dragon and him have a match."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: SSEighty7wrote on 21.09.2020:[9.0] "Fantastic wrestler. One of the smoothest I've ever seen in the ring despite a very high risk style. Great standout look, and very charismatic despite rarely ever even speaking."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Shutupwillwrote on 27.07.2020:[10.0] "Pentagon Jr is everything you could want in modern day professional wrestling. The guy has such an amazing look and appears to be hugely popular wherever he goes be Mexico or the U. K. or the United States. Not to mention Pentagon is an amazing wrestler and has had many classics, he can work a normal singles match as well as a brutal Death match or a tag team war. He never feels out of place. Pentagon is perhaps inferior to his brother when it comes to in ring ability but his look and stature and over ? Cero Miedo? taunt easily makes him over with the crowd. I love this guy"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: NastyYaffawrote on 03.06.2020:[6.0] "Immediately stood out in Lucha Underground with his badass presentation & charisma, and while that same thing translated well into his first stints in PWG & other companies, nowadays he doesn't do much for me. He's DEFINITELY a more-than-solid wrestler though, but his matches generally are very hit-or-miss for myself these days. Rarely when I see a match of his getting recommended or something I go "oh shit, I really need to watch that Pentagon match everybody is talking bout! " -- you kinda know what to expect when he steps into the ring, and sometimes it works, sometimes it doesn't click for me."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: jchiofalwrote on 27.05.2020:[6.0] "This isn't to say I dislike Pentagon, nor am I trying to be a contrarian. He's talented, athletic, and agile. Even will "okay"conditioning, he moves quickly and suddenly, and as a striker looks like he's hurting his opponents. He's intense and a badass. That being said, when it comes to the nitty gritty, I can't get into his matches because he doesn't sell moves. Sure, he bumps like death, and makes his opponents look tougher because of how well he bumps, but he's wrestled matches where someone works on his leg all match before popping up like it never happened. It's one of those things that completely takes me out of the match. He isn't the athlete, or storyteller that his brother is in the ring, but he's the charisma of the LB. Again, a good wrestler, and entertaining, but he doesn't tell great stories for my taste."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Ein absolut genialer Luchador! Im Ring ein sehr guter Wrestler mit einem harten Style, am Mic stark und Charisma ist auch vorhanden und sein Gimmick ist absolut genial noch dazu ist er ein sehr netter und sympathischer Typ. Alles in allem die vollen 10 Punkte völlig verdient. Cero Miedo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: PathosLogosEthoswrote on 23.01.2020:[9.0] "Not to be a sheep, but yeah, he's fantastic. Just, truly a joy to watch. Incredible technique, striking, and character. He's very adaptable, and flat out a fantastic asset to every company he's in. The reason I knock off a point is that his selling is less than ideal. He could use some help in that department, especially in American style matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TylerWhitewrote on 02.12.2019:[9.0] "Einer der größten Luchadores dieser Generation, selten habe ich einen maskierten Wrestler mit so unglaublich viel Charisma gesehen. Er war sicherlich auch zur richtigen Zeit am richtigen Ort und wurde besonders bei Lucha Underground sehr populär und erreichte einen hohen Bekanntheitsgrad auch außerhalb von Mexiko. Dort war er einer der absoluten Stars, vielleicht der konstanteste Wrestler der Liga, der nie irrelevant war und immer interessante Stories hatte. Sein Gimmick haben sie dort perfekt umgesetzt und somit wurde er zum mit Abstand oversten Wrestler bei LU, ja sogar zu einem der oversten Wrestler die ich in den letzten Jahren bei irgendeiner Liga gesehen habe. In der vierten Season als Topface bekommt er absolut overpowertes Showing, wo sich jeder bei anderen Wrestlern aufgeregt hätte, doch die Crowd chantet Cero Miedo und liebt Pentagon einfach. So etwas habe ich selten gesehen, bei solch einem Booking. Auch in anderen Promotions wie Impact, MLW und PWG konnte er sich einen Namen machen und war sogar kurzzeitig Impact World Champion. Nun bei AEW hat er mit am meisten Talent und ich hoffe, dass er nach dem bisher starken Tag Team Run auch als singles Wrestler gut gepusht wird. Im Ring ist Fenix sicherlich der spektakulärere Wrestler doch Pentagon ist dennoch ein absolutes Gesamtpaket, der Spotfeste, Hardcore-Matches, Brawls, einfach alles worken kann. Was mir einzig bei seinem Stil missfällt ist, dass er es teilweise etwas übertreibt mit der Crowd Interaction und seinem Cero Miedo, aber dennoch bringt ihn das auch absolut over. Insgesamt ist er einer meiner aboluten Lieblingswrestler derzeit und trotz dieser spektakulären Karriere hoffe ich, dass er auch im Mainstream bei AEW ein großer Star wird."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Helor146wrote on 10.10.2019:[10.0] "Just the total package. Great look, charisma, in ring ability, and intense on the mic. Total star in not only tag team but also in singles matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: VikingWarriorwrote on 27.07.2019:[8.0] "Deutlich schwächer als Fenix Mmn. Passte auch in LU besser rein als in alle anderen Ligen. Wrestling (8, 5/10); Charisma (9, 5/10); Ausstrahlung (7/10) und Gesamteindruck (8/10). Insgesamt 8, 25/10 ? 8 Punkten."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[9.0] "The top star to be born from Lucha Underground. He is one of my favorite characters currently. His stuff with Fenix is solid, although he shines a bit brighter as a singles. Ready to see what he can do in AEW going forward."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Fab96wrote on 11.05.2019:[10.0] "An absolute KILLER, and one of the best in the world right now. This is what happens if you mix violence and skills, you get Pentagon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Garrettwrote on 09.05.2019:[10.0] "Do I need a reason? Ok I'll give you some. Penta is the baddest mother fucker in all of wrestling, Look no further than his time in Lucha Underground where he was Pentagon Dark and destroyed everyone in his path. How about him tag teaming with his brother Rey Fenix as part as the phenomenal Lucha Bros. His style is so hard hitting and brutal that you can feel the hits yourself. He even gives off this aura where you can feel intimidated by him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: zephyrwrote on 22.03.2019:[8.0] "His look, character, and wrestling style are all absolutely fantastic. He's very charismatic and just has that special aura that makes wrestlers feel important. I find his in-ring work a little too weak though; it's not that he's sloppy or bad, there's just not quite enough impact to most of his moves"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Mahanxwrote on 07.01.2019:[10.0] "brilliant brilliant brilliant (as Mel B said :D - AGT Judge) Oh my god ! this guy Pentagon jr. , Penta El Zero , Pentagon Dark , in any name he is full full full package. im his BIG FAN. He is one of afew CHARISMATIC wrestlers at this Era in the world. He is Great in every thing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Cibswrote on 02.01.2019:[9.0] "Probably the best mexican wrestler/luchador right now. His style is a very peculiar combination of everything and that allows him to adapt against any rival in practically any company. Also, his character is simply AMAZING."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Redywrote on 13.11.2018:[8.0] "The real CERO MIEDO. He is an awesome wrestler, i love his strong style and brawler. It's fantastic when he make an extreme match. It's a complete wrestler with a lot of charisma."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Klabauterwrote on 11.11.2018:[8.0] "Acht Punkte bekommt Pentagon Dark von mir. Er ist überzeugend bei seinen Promos und man merkt die Intensität. Allerdings baut prinzipiell jede Promo auf zwei Worte auf "Cero Miedo". Ich mag es wenn Wrestler ihr klares Mantra haben, aber bei ihm ist es ein wenig drüber.  Ansonsten ist bei ihm aber auch das Problem, dass seine Moves zwar bei Lucha Underground mit entsprechender Produktion Value und seiner Zerstörer-Mentalität cool wirken, weil sie einfach übertrieben krass dargestellt werden und auch sehr gut gesellt wird. In weniger gut produzierten Produkten wirken seine High Impact Moves nicht mehr so gut und das ständige Armbrechen bei den Gegnern ist auch etwas ausgelutscht mit der Zeit. Alles in Allem natürlich dennoch einer der herausragenden Wrestler unserer Zeit."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: MogGuywrote on 06.11.2018:[8.0] "One of the best luchadors to come out of Mexico in a long time. I'm talking in terms of also being a major name in the U. S. also."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: RatingsMachinewrote on 25.10.2018:[8.0] "Penta El Zero M is a top talent, versatile enough to be able to have great matches in a variety of styles."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: JEK 1991wrote on 25.10.2018:[9.0] "He is excellent at his character good or evil.  Great at his wrestling style and how he performs. He deliberately injuries wrestlers with his arm breaker."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Oliver95xwrote on 04.10.2018:[9.0] "Penta sticht ganz klar aus der Menge. Keiner hat ein auftreten und Charisma wie er wenn es zu Lachadors kommt. Sein Moveset ist gut und abwechslungsreich mit vielen harten Moves."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TheYetiwrote on 26.03.2018:[10.0] "Wrestle Circus does not disappoint and take great pride in setting and keeping a very very high bar.  Each and every time we get the opportunity to witness these talents we are the lucky ones.  Last night was not different.  Delivered on EVERY LEVEL!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: KamiyaKojimawrote on 22.02.2018:[5.0] "Ich habe sehr viele Matches von ihm gesehen und bei mir hat es leider immer noch nicht Klick gemacht wie bei seinem Bruder Fenix oder auch bei anderen Luchadores. Seine Moves sind ziemlich super, jedoch reiht er sie mehr aneinander an, als dass diese schön flüssig ineinander übergehen, sein Gimmicks waren alle vom Ansatz gut, jedoch fand ich, von ihm schlecht umgesetzt. Noch dazu hab ich des Öfteren das Gefühl, dass er keine Lust hat und dann nicht einmal ansatzweise zeigt was er kann."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Dragon Fighterwrote on 23.11.2017:[9.0] "Very charismatic, very good on mic, spectacular in the ring. He is really total package for me. His tag team work with fenix is freaking awesome, outstanding. I don't give him 10 because I want to see an outstanding single match from him. Other than that, he is a joy to watch."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: My Bloody Doobwrote on 20.09.2017:[9.0] "Awesome look, great wrestler, unique charisma, and can cut a compelling promo. I prefer his matches in PWG, but he has had a few good to great ones in LU as well. I'd love to see him go to Japan and mix it up with some guys over there because he has unlimited potential to be legendary. Can't give him a 10 yet because I am still waiting for him to have that one perfect singles match that makes me think he's a GOAT."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: JuliTheCage87wrote on 14.08.2017:[0.0] "Anfangs war ich noch sehr überzeugt von seiner Persona. "Cero miedo" wurde zur Religion um ihn und seinen Meister Vampiro bei Lucha, aber schnell kam die Ernüchterung, denn er hat ein großes Manko: Er funktioniert nicht im amerikanischen Mainstream. Weder bei PWG, noch bei AAW waren seine Performances nicht mal in der Nähe von "gut". Weiterhin ist sein Moveset ein Overkill aus brutalen Moves, die alle Finisher sind bzw sein könnten. Wo ist da der Build-up? Mir fehlt da die Logik gänzlich. Abgesehen davon ist er ein passabler Wrestler, obwohl das wenig mit Wrestling zu tun hat; die Mic Skills lassen wir mal außen vor. UPDATE: Und der nächste De-Rank. Er kann austeilen, aber absolut nicht einstecken. Das schlechteste Selling (short-time, bumping und long-time) in der Geschichte des mir bekannten Wrestlings, und er lässt seine Gegner jedes Mal mickrig aussehen. Ich verabscheue diesen Charakter einfach."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TooSweetPhilwrote on 10.06.2017:[9.0] "Pentagon mag vielleicht nicht der Beste Wrestler der Welt sein, noch der Beste in LU doch er weis was er mit seinem Charakter machen muss und er weiß, wie er alles perfekt verkaufen soll um dadurch nicht nur Heat sondern auch Publikumsreaktionen zu ziehen. "Cero Miedo" ist schon fast zum geflügelten Sprichwort geworden. Im Ring hat er brutal aussehende Offensive und kann immer mal nette Matches worken. Wie bei seinem Bruder gebe ich 9."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Hypocrisywrote on 26.05.2017:[7.0] "Kenne ihn nur von Lucha Underground und gerade mal bis Ausgabe 2. 10. Mir gefällt sein Auftreten und insbesondere gefällt mir seine Zusammenarbeit mit Vampiro. Mal schauen, was da noch kommt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Matt4Wrestlingwrote on 15.05.2017:[10.0] "Mehr als ausgeprägtes Charisma und ein Könner im Ring! Er kann es noch sehr weit bringen, vor allem da er weiss, wie er das Publikum gut gebrauchen kann. TOP!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Changeling45wrote on 21.02.2017:[8.0] "One of the top tier guys in Lucha Underground.  Thankfully LU has allowed him to not only develop a good character, but allow him to evolve over time and change.  He's a vicious heel and also somehow a loveable face.  He's a blistering promo when given the opportunity, even though I can't understand what he's saying."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: LSEstrelawrote on 01.01.2017:[8.0] "Arguably the most entertaining wrestler (or should i say LUCHADORE) in Lucha Underground. Stellar character work and above-solid ring work."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Headlockwrote on 26.07.2016:[8.0] "Hat durch Lucha Underground viele Fans gewonnen. Er ist zwar nicht der beste Wrestler, aber er verkauft sich und seinen Charakter mit einer Mystik und presens, welche ihres gleichen sucht. Verdienter Lucha Underground Champion. Und das er Prince Puma aus Lucha Underground verbannt hat ist auch cool. Jetzt kann Ricochet ja wieder nach DG."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Viper99wrote on 10.07.2016:[9.0] "Er ist bei Lucha underground einfach großartig! Er ist auch warscheinlich der beliebteste Kerl bei LU. Er bringt einen speziellen Stil zu Lucha Underground und bringt eine schöne Abwechslung in die ganzen Spottigen Matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Penkerwrote on 10.06.2016:[10.0] "Ich freu mich immer, wenn Pentagon Jr. im Ring steht. Ob nun bei Lucha Underground oder bei AAA. Auch seine Promos schau ich mir jedesmal gerne an. CERO MIEDO"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: The Sick Lebowskiwrote on 14.05.2016:[9.0] "Sein Gimmick und seine Story bei Lucha Underground mit Vampiro sind grandios. Wrestlerisch gefällt er mir auch sehr gut, allerdings wird er da von diversen seiner LU-Kollegen wie seinem Bruder Fenix oder Prince Puma überschattet, da deren Aktionen oftmals viel spektakulärer sind. Daher reicht es nicht ganz für die Höchstnote, aber ich sehe ihn definitiv sehr gerne."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: The Chosen Onewrote on 27.02.2016:[10.0] "In my opinion Pentagon JR is the best Luchador in Lucha Underground. His matches with Prince Puma, Fenix, and Vampiro are amazing. He has a great look, a great move-set, amazing selling abilities, and can tell a great story in the ring. Every time I watch his matches I get hooked every single time. Cero Miedo 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Mizzle Assault Antwrote on 14.09.2015:[10.0] "My favorite guy to get exposure in Lucha Underground and one of my favorite guys working right now. Fantastically good presentation, great in the ring working multiple styles, just all around awesome performer."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Marcywrote on 07.08.2015:[9.0] "Ich kenne ihn zwar nur durch Lucha Underground und habe ihn auch nur dort gesehen, aber der Mann hat mich sofort in seinen Bann gezogen. Ich hätte nicht gedacht, dass ein Wrestler mit Maske so stark polarisieren kann. El Generico mal ausgenommen. Pentagon Jr. gefällt mir als Heel außer ordentlich gut und strahlt auch durch seinen kampfsportlastigen Stil eine gewaltige Intesität aus. Sauber im Ring ist er außerdem und kann offenbar auch die (sehr) brutale Gangart mitgehen. Für mich ein absolutes Highlight bei LU und ein allgemeiner Favorite. Cero Miedo!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Codebreakerwrote on 06.08.2015:[10.0] "Noch so ein großartiges Talent was dank Lucha Underground auch außerhalb von Mexico bekannt werden dürfte. Pentagon Jr. ist zur Zeit einer der besten Heels überhaupt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: DanTalksRasslinwrote on 26.07.2015:[8.0] "Pentagon Jr. sets himself apart from other luchadors with a convincing vicious streak augmenting a style filled not only with high-flying maneuvers, but also hard-hitting offense and submissions.  A mainstay with AAA who has now been getting his shot north of the border with Lucha Underground, and has quickly become one of that company's most interesting heels."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: ApexOfEvolutionwrote on 22.04.2015:[9.0] "Meiner Meinung nach der Beste der drei Brüder (Fenix, Nino de Fuego). Schafft es trotz der Maske eine gewisse Ausstrahlung mitzubringen. Durch die Kombination von Lucha libre mit ostasiatischen Kampfkünsten hat er einen sehr interessanten Kampfstil.  Besonders seine Rolle bei Lucha Underground gefällt mir sehr gut. Es ist schon seltsam zu sehen, wenn die Crowd einen Heel-Wrestler anfeuert und auch noch jubelt, wenn er seinen Gegnern den Arm bricht. Cero Miedo!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: robrosellwrote on 04.04.2015:[10.0] "A very oung and talented wrestler, one of the best new faces of AAA along with Phoenix, a shame that can't shine with his last character, Dark Dragon but now, is one of the best rudos and his moment is now, good moves, quality on the ring, strong moves, wow, what a wrestler, i bet that in few years he will be one of the best wrestlers ever in AAA."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: NewBreedwrote on 29.01.2015:[8.0] "Ihm stiehlt seinem Maske ein wenig die Show. Er verliert dadurch an Charisma, das er vielleicht besitzt. Technisch gibt es kaum etwas auszusetzen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: zackwoowoowooryderwrote on 27.01.2015:[7.0] "Ich finde ihn bei Lucha Underground sehr überzeugend in dem was er macht. Seine Highflyer-Künste sind unumstreitbar, doch leider magelt es ihm ein wenig an Charisma."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: thebosspaulwrote on 18.12.2014:[9.0] "Starker man kenn ihn schon ein bisschen jetzt und muss sagen verschlechtert sich nich! Grandiose Matches gegen Fenix. Alles in allem super guter heel Lucha"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Matzinhowrote on 14.08.2014:[7.0] "Als Dark Dragon hatte er eine gute Phase. Inzwischen hat er das Pentagon-Gimmick übernommen und sich damit zum Uppercarder bei AAA emanzipiert. Ich hätte den Gimmickwechsel nicht gebraucht, immerhin hat sich das Repertoire von ihm dadurch kein Stück verändert, aber er ist jetzt over und wird bestimmt in der nahen Zukunft einen Einzeltitel gewinnen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Christian Classic Cagewrote on 22.09.2011:[9.0] "Für mich derzeit einer DER innovativsten Midcarder, den AAA zu bieten hatt. Konstant gute Ringleistungen und Atemberaubende Moves zeichnen ihn aus. Ich kann mir Dark Dragon in ein paar Jahren durchaus als AAA Main Eventer vorstellen, soltle CMLL ihn nicht an Bord holen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: wrestlingswiftiewrote on 29.01.2025:[10.0] "The greatest luchador to ever do technical wrestling. If you haven't seen his stuff, I automatically recommend his bouts with Zack Sabre Jr (another great technician) or the TV match with Bryan Danielson (the best wrestler alive)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: jsbortswrote on 13.01.2025:[9.0] "Probably my favorite guy from CMLL, just think he's so good that even his "mediocre" matches are so fun to watch. He really embodies charisma and pulls off a character that should kinda stink. He has terrific creative offense, and he's a bright spot on any card he's featured on. Really really good speaker too, and he's had good matches all over the world."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: LJAwesome 03wrote on 06.01.2025:[8.0] "I hadn't see such a unique style of holds & agility til I seen Hechicero in action! He truly lives up to the of The Mad Scientist making any match a great one you don't wanna miss that instantly made me a fan!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: Luv all wrestlingwrote on 23.12.2024:[10.0] "Hechicero is a very unique power based luchador who excells at everything. His ROH debut would be a great way to get exposure, a joy to watch on the mexican indie scene and in cmll. EDIT: Eight years later and the world finally knows"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: JuanLocowrote on 08.12.2024:[9.0] "After so many years watching all types of wrestling I thought that all the moves were already created and this guy appears and suddenly he uses 10 totally new ones, this guy is great, a spectacular technician and has an interesting gimmick, if you know Spanish you will see what he has a great charisma but in the United States he will not be able to demonstrate it due to the language barrier, I hope AEW calls him more times."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: Brando Calrissianwrote on 11.11.2024:[9.0] "Hechicero is one of the best and most exciting technical wrestlers in the entire world. He is able to so fluidly and expertly fuse two styles that always seem to be opposites and contradictive into something so unique and so exciting to watch. His match with Bryan Danielson was one of the most exiciting and best AEW television matches I think ever, and he is somebody I really want to see more of in the bigger promotions to show off his skills. For now, I only ever see in CMLL shows or co-branded shows, and I would love for him to have a long run in somewhere like a New Japan against the likes of DOUKI and Desperado and other Jr. Heavyweights. Or heck have him go up against the larger guys and go on a great run in the Never Open picture. Would be very exciting."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: BrettThousandwrote on 10.11.2024:[10.0] "One of the best in-ring workers in the world today, he'd surely be in my top 5 minimum there. Every time I see him wrestle live I'm seeing something new or exciting. Seemingly can have a great match with just about anyone and anchored the 91 Anniversario mask match which is one of the best bouts of 2024."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: EddyZwrote on 23.09.2024:[10.0] "Amazing, Emotional. Beautiful. Watch this. Words cannot describe it, and Clips would not do it justice."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: juanwrote on 22.09.2024:[9.0] "He is the perfect example that you can carry the old and new style of Lucha Libre, a spectacular technical wrestler with good aerial movements and has a few "own" techniques that make him stand out, due to his weight he is very agile, charismatic and He has that aura of a masked wrestler that no one knows but you want to see fight, I don't know his level of English in order to be more mainstream with the more casual audience but it is still interesting."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: JoseNEOwrote on 15.09.2024:[10.0] "Quite possibly the second greatest wrestler to ever come out of Nuevo Leon, and the only reason he is not the first is that the man above him is one of the most legendary men in the entire history of this sport. A certain wrestler likes to say he went from undesirable to undeniable, but Hechicero should be the real owner of that quote as this year he has gone from being taken for granted in CMLL to being given some of the biggest chances any wrestler can get including an Aniversario Apuestas match. Whenever Hechicero has a match, you know he will put his most into it and do his best to get a good match out of whoever he is wrestling. He is simply one of the best ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: Luna100wrote on 24.01.2023:[9.0] "He has an amazing look and charisma, he is such a talented rudo, and his presence really adds to a match he is in, the best of the Los Infernales team. He has provided a lot of the best matches in CMLL of 2022, I did not know he was before then, but now I know who he is, he is one of the most enjoyable acts in all of CMLL."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: MatZeClownwrote on 05.07.2022:[7.0] "A great luchador, though it appears that CMLL begrudgingly gave him the World Heavyweight title in 2021. He's capable of some truly cool technical wrestling, but you wouldn't know it given how he has been booked in 2022 so far. Hardly any title defenses, at times, he's not even booked with his fellow Infernales stable members, or on fridays at all for that matter. It's bizarre."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: ElPolloLocowrote on 03.03.2020:[8.0] "In my opinion Hechicero's greatest asset is not so much his in-ring skill, as great as it is, but how amazingly varied his arsenal his. Besides being extremely adept at improvisation, he seems to have an almost encyclopedic knowledge of holds: I've seen him do stuff only very original workers like Super Muñeco have done before. It's almost scary how he can pull moves out of a hat to vary his moveset from one match to the next: it's a good thing CMLL picked him up but he really needs more international exposure, especially in singles matches."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: Graveyardwrote on 23.01.2020:[10.0] "I think Hechicero is the most undervalued, underrated, and less known talent in the business. Check out his match vs Zack Sabre Jr, or really any match that he's in. Very solid in-ring work!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: tobimexicanwrote on 04.12.2014:[9.0] "Rey Hechiceo ist der Meister der Submission Holds, ein Brawler aber auch ein Techniker vor dem Herrn. Ein Perfekter Gegner für Highflyer jemand der es auch versteht Moves einzustecken und sie Glaubwürdig zu machen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: Mike09wrote on 20.07.2014:[10.0] "Great Monterrey luchadore who has gained a spot in CMLL due his top level matches. He deserves a great place in CMLL top cards and is the next bigger Monterrey star in last times after Hector Garza (†)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: perconflncnswrote on 20.12.2024:[10.0] "Akira taue is easily the weakest link in the four pillars, but i saw someone say something about barry windham that i think applies to taue as well which was windham is the least of the four horseman but thats like being shorter than andre the giant. The biggest thing misawa, kobashi and kawada have on taue are the legendary singles careers of all of them, although taue does have a lot of really solid singles matches, it just doesnt even hold a candle to what the other three did. But it'd be wrong to not point out how talented taue still is, easily one of the greatest tag team wrestlers of all time and one of the most important wrestlers to all japan"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Zak22wrote on 07.08.2024:[8.0] "This unlucky bastard. Taue is a pretty good wrestler in an era of exceptional wrestlers (Misawa, Akiyama, Kawada, Kobashi), and because of that he often seems below the level, despite being great in his own right. I've not seen Taue's NOAH work but based of his AJPW (that I've seen), Taue was a talented big man who was unlucky in certain facts, which were that his peers where freaks of nature. But still a great wrestler, top 50 wrestler of all-time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: danzitorockwrote on 26.07.2024:[9.0] "Akira Taue is the least famous, or the least noticeable wrestler of the Four Pillars of Heaven, but still a Pillar, and by no means can be disrespected or considered less because of that, I like to say that he is the Ringo Starr of All Japan, he's freaking awesome, just couldn't match the revolutionist and popularity impact that his fellow co-workers had. Taue is the tallest of the Pillars, and I love his imposing posture, he was the physical successor of Giant Baba, and also had shades of Jumbo Tsuruta in him, that's why he turned heel and joined Tsuruta-gun at some point, he was the perfect wingman and the perfect man for the job. This natural old-school vibe that he had is what set him apart of the others, he wasn't focusing on flashy moves and innovative exhibitions, just destroying the opponents and telling stories trough matches, and that's why his value is inestimable. His pairing with Toshiaki Kawada is the most legendary of all time, and despite not getting so much solo recognition because of the brilliant competition around, Taue is the example of a perfect tag team wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Taper1994wrote on 01.06.2024:[10.0] "Although the weakest of the four pillars, Taue is still one hell of a professional wrestler. Spectacular in both singles and tag matches, the man was the ultimate liuetenent whether for Jumbo in Tsuruta-gun or Kawada in the Holy Demon Army."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: InsertFunnyNameHerewrote on 19.06.2023:[8.0] "When the other 3 are each among the 10 greatest wrestlers of all time. It makes me realize Taue was really just alright, by no means a top tier singles guy, but a world class tag wrestler, those kind of wrestlers usually get a 7 in my book due to their lack of versatility."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: TheOneAndOnlyCactuswrote on 06.04.2023:[9.0] "Akira Taue is one of the four Pillars of Heaven of AJPW, along with Kenta Kobashi, Mitsuharu Misawa and Toshiaki Kawada. Thing is, Taue being in the same group as them is a blessing and a curse for his legacy. Because while he wasn't as good as them, being the worst in a group of some of the absolute best the industry had/has to offer is nothing to be ashamed of. Taue didn't have Kobashi's babyface fire, Misawa's stoic badassary or Kawada's fierce and ruthless offense. Taue was the Big Man, but not just any Big Man. He was arguably the best Big Man of all-time. With his freakish agility, speed and strength, he was able to do moves that no one at his size should have been able to in the 90s. Add in his great ring psychology, and you have a top class worker. Not the most charismatic wrestler, it took time for him to get over, and was best served as a heel, but once he found his role, he played it perfectly. He was amazing as this big bully, and while his work as a singles wrestler was great and underrated, its obvious that he was at his best in tag action with Toshiaki Kawada, with whom he made probably the best team of all-time: The Holy Demon Army. Taue is a name you can't pass in the history of japanese wrestling."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Strong Zero Machinewrote on 18.02.2023:[10.0] "Taue started his career in pro sports as a rikishi (sumo wrestler) from 80 to 87 in 86 he was promoted to the rank of juryo (the 2nd highest rank in sumo wrestling) he was given the shikona of Tamakirin Yasumasa. Shortly after Taue meet Baba and started to practice pro wrestling under Baba instruction. For the next years Taue teamed with guys and formed a band with Misawa, Kobashi and Kawada (Super Generation Army) and they start a feud with Tsuruta Gun. However, he became better known for his tag team especially with Kawada (The Holy Demon Army). During his tenure with AJPW Taue won a Carnival and the Triple Crown once, 1 All Asia Tag Team, 7 World Tag Team and 2 Tag League. In August 2000 Taue left AJPW for Mitsuharu Misawa's new promotion the Pro Wrestling Noah and continued wrestling mostly as a tag team wrestler and eventually won the GHC title once before his retirement in 2013. After his retirement Taue served as the Noah president until 2017 (also own a steakhouse ahah). Yes Taue is not the best of the four pillars Misawa, Kobashi and Kawada was far better than him but he's a big part of ajpw golden era, He's like a modern version of Baba and he's like Baba outside the ring a really good guy who respect the workers and a good trainer Akiyama, Sugiura and Morishima. He's probably not a 10 for a lot but for me he's. Respect and love mr Taue."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: GeneBlastKyodaiwrote on 31.01.2023:[7.0] "Im gonna get crucified for this, but I never really got Taue. I think he was good in the ring when it counts, but hes one of the four pillars and I do love me some all Japan, so I cant rate him lower than a 7"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: No Onewrote on 15.07.2022:[10.0] "He was the most limited athlete out of the legendary "Four Pillars of Heaven" for sure, but in the case of Akira Taue, he found another way to fit in with that group. If you have a good eye for presentation & psychology, you should be able to see it with Akira Taue. His entire psychology was based on what it is to be a True Boss. He literally & figuratively put his foot down and established his authority in every match. He did so in a way that always commanded attention & respect. If you watch his mentor, Jumbo Tsuruta, in the early 1990's as the Final Boss Heel, and then compare that character to Akira Taue, you will see that it is nearly one in the same thing. That is what made Akira Taue special. Along with his legendary tag team partnership with Toshiaki Kawada, their famous rivalry against Mitsuharu Misawa & Kenta Kobashi, his innovation of several different types of Chokeslams, him being the greatest master of Chokeslams ever, etc. It is his mastery of psychology as a "Big Bad Boss"."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: munrapido3wrote on 02.05.2022:[8.0] "Akira Taue was an above average wrestler, having remarkable tag team matches but for a godly trio like Misawa, Kobashi, and Kawada, Taue is unquestionably the black sheep of the group. He wasn't on the level of the trio i mentioned earlier, but people calling him the 'weakest pillar' or the 'worst of the four pillars' is such an understatement."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: arrancarwrote on 27.02.2022:[8.0] "There's been a lot of historical revisionism regarding Taue in the last 10 years, the entirety of which stems from his attachment to the Four Pillars, since people assume simply because he was part of those famous Four Pillars matches that that must mean he was on equal or near enough level to those other 3. That really, really isn't the case. Now, Taue was of course a great wrestler, fantastic at playing the big bruiser bully heel who could grind an opponent down and smash them with his long and powerful limbs. He was a very welcome addition to 90s AJPW after fellow stiff giant Jumbo departed, though Taue's style (as well as his look) more so mimicked Giant Baba, given their similarly lanky builds and jumbled movements. Despite being great, Taue definitely wasn't on the level of Kobashi, Misawa, or Kawada, since he wasn't as athletic, explosive, or emotive as any of them, and he was definitely the one of the four with the most 'awkward' offence, since a few of his signature moves would often have rather messy technique or underwhelming impact as a result of his lankly build. He could still crush opponents when he wanted to, but it's not like his strikes nor his power moves were outright destructive compared to actual all-time greats. If you want to say that Taue is one of the best "tag wrestlers" ever then I would totally get that, but to consider him one of the best all-around wrestlers ever seems ill-fitting."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: dantethescrubwrote on 10.02.2022:[9.0] "Dynamic T. It's a mystery why people do not value Taue in the same vein as the other 3 of the Pillars or even Akiyama. Is it the body ? Is it his movements ? I never understood how of the greatest Pro Wrestlers is easily dismissed. He was neck and neck with the best was the greatest steady tag hand in Japan. Has had credible years of superiority--what more do you want from Dynamic T ?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: GriffinXwrote on 22.01.2022:[10.0] "I've seen him called "The worst of the pillars" except that means he's 4 on a list of 4 of the best to ever do it. Guy was still pretty damn good. Excellent tag wrestler as well as able to go in singles matches."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "One of the greatest heels of all time and the greatest powerhouse wrestler of all time, he had most of the greatest tag team bouts of all time, he is a legend"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Kungwrote on 02.09.2021:[10.0] "If you ask me, Taue might be the most underrated Japanese wrestler of all time. Maybe he wasn't as flashy or as monumentally talented as the other three pillars or Jumbo or Jun, but Taue is a legendary competitor from the most beloved era in pro wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Shadow Explosionwrote on 17.08.2021:[10.0] "Akira Taue was a mix of Giant Baba's presence, Masanobu Fuchi's devilish heel tactics, and his own awesome style of chokeslamming you 40 different ways to Sunday, Incorporating his Sumo background into alot of his moves. He also like the other pillars was a great seller and whilst he didn't create the craziest moves, The Ore Ga Taue and Chichibu Cement are still sick moves. I think getting the rep of the "4th Best Pillar" whilst true, doesn't mean he wasn't as good as the rest of All Japan's roster during the 90s. Jun Akiyama might've been better than him but that would have to have started in 1998. Not to mention his work in one of the greatest tag teams of all time with Toshiaki Kawada: The Holy Demon Army, they just gelled so well as two ass kickers who acted so evil, and not like goofy over over top stuff you see today, I'm talking about stone cold killers who do what it takes to win."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: BH62wrote on 27.07.2021:[10.0] "Taue is always pointed as the weakest of the Four Pillars, maybe he was but he's compared to demi-gods. Dynamic T was a unique wrestler. He was Baba's protege and learn the craft of wrestling during his early years. Taue may be underated, people underestimate his heel performance. He was always that bastard who destroyed every fan favorite. I loved the way he was stiff and dangerous in the ring. In my opinion, he was way more better in tag team matches, his matches with Kawada are the very best I've seen. His solo run in underestimated, 1995's Carnival Final against Misawa is a masterpiece of Taue being booed as fuck by the crowd. Maybe one step behind the three others but they would be not same with Taue. He was a workhorse as well, he wanted to be like his pairs. 1995's Taue was wild, he was unstoppable. Taue's work will always be overshadowed and that's sad, the man was an excellent wrestler surrounded by gods. Real men know how Taue is a top-class and great worker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: BEER CATwrote on 25.06.2021:[10.0] "Taue's style was so perfectly out-of-step with the other three Corners, half Giant Baba Jr. , half Southern territory technical roughneck. One of the most gifted psychological tag wrestlers ever - has anybody ever heeled it up on the outside of the ring better? I love Taue's rope-based offense, I love how he worked the apron, I love how he got real heat as a native main-eventer, I love his cutoff spots. I just love his GRIT. Maybe I'm a man of strange taste but give me 1995 Akira Taue over any Kenta Kobashi, any day."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: axebombertsurutawrote on 16.04.2021:[9.0] "Taue, Taue, Taue. Always one step behind the other four Kings of Heaven and often considered to be the weak link, Taue does not get enough credit for his fantastic heel performances or for being great at getting beaten on and showing his fighting spirit. He's still a top wrestler but had the bad luck to be around at the same time as the other Kings; and payed the price in booking. However, you can't discount his amazing run with Kawada as Holy Demon Army."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Ma Stump Pullerwrote on 01.12.2020:[9.0] "Not hard to see how Taue was so low, to be honest. He was always the odd one out of the Four Pillars and the least successful by far in terms of accolades outside of his tag work. Taue also never got to work with Jumbo Tsuruta in any real capacity beyond some tag runs, which might explain why he's not really regarded as the rest in terms of singles work as well. First off, the downsides: Taue was the least dynamic of the four and compared to Kobashi's legendary babyface fire, Misawa's stoic nature, or Kawada's fiery offence, he really had nothing to stand out beyond his height. Taue wasn't exactly bursting with charisma as well and struggled to get over initially, hence why he was a clear cut heel for most of his starting ring work. However, as a big man, he undoubtedly revolutionised the role with the crazy amount of agility he had on top of his naturally occurring strength, making him capable of moving in ways that guys his size just shouldn't do. It should be mentioned as well that Taue DID have really good singles matches throughout the years, and even if he was a bit awkward at times his ring psychology and surprisingly quick counters were always a great quality of them. Ofc his tag material is by far his best quality, with dozens of four star+ matches, namely because Taue knew the role he played (the big bully) and operated it to perfection alongside Kawada. His later years were a lot more inconsistent, and despite his experience and skill the guy just couldn't work the level of quality needed for the main event: he WAS over, but he was by far the worst in terms of post AJPW work. That being said, Taue in his best years was a world class performer who really took the "big man that can move" gimmick and took it arguably the best possible way (probably only surpassed by Jumbo himself)"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: znezaaljwrote on 29.08.2020:[10.0] "Akira Taue is probably the most underrated performer of all time. Most of the time he is compared to the other three pillars calling him the worst of them four. But being worse than three of best the 5 wrestlers of all time it? s not something you should be ashamed of. He revolutionized the role of the giant wrestling and make people see that there could be talented big guys. Definitely a legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: zephyrwrote on 25.03.2020:[9.0] "Definitely the weakest of the Four Pillars but still a tremendous world class performer who was consistently great."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: JEK 1991wrote on 21.10.2019:[9.0] "One of the greatest wrestlers to use take downs. Reminds me a bit of Giant Baba. Very skilled in the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: PuroresuLoverwrote on 13.05.2019:[9.0] "Akira Taue is the less-great of the Four Pillars, but please, oh please, don't get me wrong. I like Taue a lot, but he was like an 9 in the middle of three 10s, he was The Ugly Duckling of the four of them. But still, he was a good Tag Team Worker, and I rather to see his Tag Team Matches than his Single ones."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: RatingsMachinewrote on 01.11.2018:[7.0] "Taue had the misfortune of ascending to the top of All Japan at the same time as three of the best who ever stepped foot inside a ring. As such, he was compared to them, and because he wasn't as good as they were, Taue was unfairly maligned as a poor worker. He wasn't; Taue, at his peak, could be very good. But very good looks poor in comparison to greatness."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Makai Clubwrote on 05.09.2018:[10.0] "Is Akira Taue tall enough to be considered the best big man in wrestling ever? If so, he absolutely is that. Not just big man but in general. For someone of his size, he is surprisingly spry. Agile in good ways where he can use it to create more excitement for his matches, makes his move seem more impactful. Great chemistry with the likes of Hanen, Akiyama, Ogawa, Kawada and Misawa. Has an almighty presence to him but also a gentle look as well which makes him very likable. The most underappriacted of the Four Pillars but just as awesome as all of them."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: InactiveGuruwrote on 11.05.2018:[8.0] "I have only seen Taue's later work but even then you can clearly see this is a man who knows what he's doing in that ring. The only problem I have with Taue is he just wrestles, he doesn't offer you a character you can immerse yourself in. But it does suit the style he wrestles and the promotions I have seen him in."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Blood Pumpwrote on 08.04.2017:[8.0] "Towered over most of his peers, Taue was a pretty awkward guy, especially early on in his career. He was often able to work excellent matches because of the fantastic talent around him. Not a wrestler I'd ever call bad but hes certainly not in the same class as a lot of the others. That being said he was the perfect partner for Kawada and did get a lot better by the mid 90s."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Chekerwrote on 22.02.2017:[9.0] "I like Akira Taue. He was very good for a man his size, but to me he was still the obvious weak link of the four pillars. I'd go as far as saying Jun Akiyama is/was better than him, but then again, there's really no shame in that."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: RonAyyyyyyyywrote on 25.11.2016:[10.0] "Arguably the most solid of AJPW's big 5 other than Misawa. 2nd greatest workhorse of all time, in the top 10 technical wrestlers of all time, formed one of the greatest tag teams of all time with Toshiaki Kawada. But like Kawada, he has an embarrassingly low amount of titles and accolades for someone of his talent, which comes from being in the same company as Misawa and Kobashi. Taue is a true legend and very underrated in my opinion. Not to mention he is the mentor of Takashi Suigura and Takeshi Morishima"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: PistolPeteMattywrote on 04.09.2016:[10.0] "One of the four pillars of heaven, and easily one of the greatest minds in professional wrestling history. He might be considered the weakest of the pillars, but being the weakest of the greatest wrestlers of all time still puts him ahead of 95% of people in the industry."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: TrevPuroFanwrote on 07.04.2016:[9.0] "Very underrated performer in my opinion. Taue has always been considered the weakest of the 4 pillars, but to me he was always amazing in his role. He proved that he can work great singles matches vs. the likes of Misawa, Nagata, Kobashi etc. His work as a tag team was phenomenal. I guess people don't appreciate him so much because he didn't have any strikes in his moveset where as Kobashi had chops, Misawa had elbows, and Kawada had kicks. Great wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: DerHitmanwrote on 02.12.2014:[10.0] "Früher natürlich eine 10, doch seine Leistung im Ring hat doch sehr nachgelassen. Sollte er seine Karriere irgendwann beenden bekommt er eine 10 von mir."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: joshimaniawrote on 23.06.2013:[10.0] "One of the best wrestlers of all time great psychology and selling and a lot of charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Leonewrote on 14.03.2013:[10.0] "At first glance, Taue is 1 of the most unlikely looking men to have worked in some of the best wrestling matches ever.  At 6'4 and 265lbs, he is the largest member of the All-Japan Famous Five in the 1990s (Along with Misawa, Kawada, Kobashi & Akiyama), and some could argue that he was perhaps the weakest member, but in reality, I think he was there for a good reason.  For one thing, he was full of surprises, pulling out dropkicks, suicide dives and even hurricanranas at times.  A big guy, who didn't look like an athlete, he kept up with his peers with excellent timing and selling.  He is also a creative wrestler, who took the chokeslam and innovated several variations of it.  In matches were he had the powerhouse role, he made an art form of it, using more creative reversals than what would be expected.  His world title wins were usually very impressive, but those title reigns were often short, his best work was as a tag team wrestler.  To this day, Taue and Kawada remain 1 of the best tag teams in wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Kenshin Uesugiwrote on 23.12.2011:[10.0] "Die bis heute anhaltende These, Taue sei das schwächste Mitglied der „ Vier Säulen des Himmels “ von AJPW, ist für mich großer Blödsinn. Diese coole, kauzige und speziale Aura und Art die er hat, unterscheidet ihn deutlich von Misawa, Kobashi und Kawada. Im Ring stand er ihnen aber in nichts nach, konnte jeden Stil mitgehen und jede Rolle einnehmen oder wer konnte gleichzeitig so leicht wechseln zwischen einer bösartigen Sau wie Kawada, der technischen Klasse eines Misawas und dem kämpferischen Willen eines Kobashi ? War mit Kawada wohl ein Teil des besten Tag Team das es auf der Welt gab und brachte auch als Einzel-Wrestler die Welt zu staunen. Selbst im hohem (Wrestling-)Alter und trotz dünner Arme, zog er immer noch wenn er gebraucht wurde alle Register und es brannte jedes mal die gesamte Hütte. Sieht zwar heute wahrlich wie Giant Baba Version 2 aus, aber immer noch mit einen Coolness Faktor ausgestattet und Comedy beherrscht er schon seitdem er im Midcard so manches Tag Team Match bereicherte. Und ganz nebenbei ist er der beste Sänger im NOAH-Roster, ganz knapp vor Morishima. ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Berlin Dragonwrote on 18.09.2010:[9.0] "Zurecht eine der 4 Himmelssäulen ! Einer der best Tag-Team Wrestler of all time !"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: hatebreederwrote on 05.10.2009:[10.0] "Ich weiß nicht warum, aber ich finde nicht wirklich, dass Taue wrestlerisch sehr arg abgebaut hat. Ich mag diesen Mann irgendwie einfach. Allein schon der Fakt dass er seine Gegner reihenweise chokeslammt (Nodowa Otoshi) trotz seinen schmächtigen Armen ^^ Akira Taue ist einfach Kult und verdienterweise eine japanische Wrestlinglegende, immerhin stand er nicht umsonst in vielen 5-Sterne Matches. Taaauue!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Fountain of Misinformationwrote on 26.09.2009:[8.0] "Wie kann man diesen seltsamen Kauz nicht mögen? Zu Hochzeiten ganz ohne Zweifel ein großartiger Wrestler, auch wenn er nie wie ein solcher ausgeschaut und gewirkt hat, und er hat auch im Alter noch absolut seine Daseinsberechtigung im Ring. Taue!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Aquifelwrote on 30.06.2009:[8.0] "Sicherlich nicht ganz so top wie Kawada, Misawa, Kobashi oder auch Akiyama (den ich hier einfahc auch mal einwerfe), dennoch eine Institution im japanischen Wrestling. Ist heutzutage auch nicht mehr das, was er einmal war, aber das, was er geleistet hat, verbietet einfach, selbst heute, weniger als 8 Punkte zu geben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: LexLuger4everwrote on 27.04.2008:[9.0] "In den 90ern Spitze, in den letzten Jahren hat er aber merklich nachgelassen. Befindet sich ähnlich wie Misawa und Co. schon seit einigen Jahren im Spätherbst seiner Karriere und sollte langsam einsehen, dass seine beste Zeit vorbei ist. 9 Punkte aber in jedem Falle deshalb, da seine Matches Mitte der 90er mit Kobashi, Misawa, Kawada und Co. einfach zeitlos gut sind!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Kaffoe 666wrote on 24.03.2008:[10.0] "Eine Legende und suuuuuuuper cool! Wegen der Vergangeheit und dem Coolness-Faktor gebe ich hier noch die 10. 0, weil es keine 9. 00 gibt ;)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: D-Stylewrote on 07.12.2007:[6.0] "Big Man von NOAH, auch in die Jahre gekommen, seine Matches kann man aber gut anschauen. Note 3"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Carlito ICWwrote on 18.09.2007:[6.0] "Sehr guter Wrestler, der allerdings in die Jahre gekommen ist. Allerdings umgibt ihn immer noch so etwas wie eine besondere Aura."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MichaelCataldi2001wrote on 09.02.2025:[10.0] "In my opinion Ric Flair is THE GOAT of professional wresting, has had countless classics with Windham, Steamboat, Sting Garvin and countless many more"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: jesuissashawrote on 21.01.2025:[10.0] "He is GOAT. I just can't imagine who would give grades below a 10. They probably only saw Ric in the 00s. The man's charisma, the man's skill, the man gives 100% in the ring. The greatest."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: neuuwavewrote on 22.12.2024:[7.0] "Definitely an icon of the industry and was a star of his time. But i do think he's a tad bit overrated for his early works (was still an amazing wrestler don't get me wrong). Also not a big fan of his work past '04/05. For me the age started to show around that time and while i still enjoyed his character his in-ring stuff got very boring to me. An icon of the industry and a legend of now & then but just didn't know when it was truly time to hang it up IMO."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: perconflncnswrote on 21.12.2024:[10.0] "There probably isnt a better heel in the history of pro wrestling than ric flair, the influence flair had on heel wrestlers after him cant be overstated. Little things like the way he over exaggerated his opponents moves and would flee to the outside constantly and act cowardly, these are all common tropes for heels in modern wrestling and flair was one of the first to do it. One of the greatest promos of any wrestler ever, high technical in ring ability, one of the most iconic looks ever, ric flair is the blueprint for what a great wrestler is and should be"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: AceHagannwrote on 26.11.2024:[8.0] "A star of his time. While now one can think he always was just an old man barely getting by in the ring, he once was an amazing performer. He knew his strengths in the ring and played to them greatly, while also delivering amazing promos in a consistent basis."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: WWFanwrote on 17.11.2024:[8.0] "One of the greatest ever but at the same time one of the most overrated ever as well. He was never on the level of Shawn Michaels or Bret Hart or a dozen other guys off the top of my head in that ring."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ItsAllAWorkAnywaywrote on 15.11.2024:[10.0] "Ric Flair is a legend. Through the '80s and early '90s, he was the great heel champion that everyone wanted to see get his comeuppance. Even as his days in the main event became numbered, he could still entertain the audiences with his outlandish promo style. When even non-wrestling fans can identify the "Woo! " with Ric Flair, then you know he transcends wrestling as a pop culture icon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Its Clobbering Timewrote on 18.10.2024:[10.0] "Wooooo! The Nature boy Ric Flair has hit all. The look, fashion, promos, in ring, charisma, he is gifted at everything that makes a professional wrestler great. He is one of the best athletes in any sport of all time. He Wrestled for 36 years full with a full time schedule, his love for the business is undeniable. His Charisma and promo ability is up there with the best. He's tied for the most World Championships of all time with John Cena at 16x. He is the most influential wrestler of all time and has changed the business how as we know today. From his time in NWA, to WCW and finally the WWE he has cemented himself as a legend and one of the best to ever do it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: face painted legendwrote on 09.10.2024:[10.0] "Built different. That is the best way to describe Ric. I don't think there has ever been another athlete alive, let alone professional wrestler alive who had the god given genetics that Ric had. To work for as many years as he did, 36 total I believe full time (1972-2008), to do all of the world wide traveling he did (especially when he was the world heavyweight champion), take all of the punishment that his body took, being in the ring all of the hours literally that he was in the ring for, and to still be able to walk around as a fully functional human being is unreal. It is almost super human. Couple that with the fact that if you make a list of everything that it takes to be a great pro wrestler -- looks, fashion sense, promos, in ring performance, charisma, character work, etc. , he is one of the guys who was not just gifted with every single thing that would be on the list, but was able to have it or do it at a very high level. You could argue he's at the top of the list in a lot of those categories. Also, without question, my favorite world champion of all time. There will never be another like him, ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Wrestling Foreverwrote on 04.10.2024:[9.0] "Genaue Infos ob es stimmt ist jetzt nicht klar aber sein bürgerlicher Name soll Phillips sein. Seine Adoptiveltern sind schon Jahre verstorben. Angeblich starb 2000 sein Adoptivvater und 2003 seine Adoptivmutter. Das findet man im Internet. Ich weiß das es viele Skandale hatte aber im Ring war er lange in seiner Prime echt einer der besten Wrestler der Welt und auch in seiner WWF und dann WWE Zeit war er super. Die WCW Zeit hatte wie in anderen Ligen auch Hoch und Tief."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: dangfoolianwrote on 27.09.2024:[10.0] "An all time great, despite the plane ride from hell, the alcoholism and public drunkenness, the debt problems, the endless shilling for "Woooooo! " branded products, allegedly yelling in a blind woman's face... wait why am i giving this guy a perfect 10? Oh yeah, his program with Steamboat. The fantastic rivalries with Savage. Being the standard bearer for non-northern style wrestling for so long. Nature Boy's great, just uhhhhhhhh ignore the recent stuff."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: jsbortswrote on 19.09.2024:[10.0] "Not going to grade on a curve because he's a truly bad person; however, he is undeniably one of the most well rounded wrestlers of all time and was great through several different eras in several different companies. Hard to tell the story of wrestling in America without Ric Flair, and he has the catalogue of matches to go with it."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: OneSuddenBOOMwrote on 04.09.2024:[9.0] "One of, if not the greatest heel of all time, when you think of the NWA, you think of Ric Flair, the big gold, Ric Flair. His bumps were iconic and he always managed to make opponents look credible. A massive draw, and an even bigger name. A main eventer wherever he went and someone who will always be mentioned when it comes to the wrestling mount Rushmore conversation. It is a shame however that he continued to wrestle into his elderly years, where you could clearly see he was not fit for it anymore, I just hope that he doesn't further attempt to tarnish such a great legacy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: nothingleftinsidewrote on 02.09.2024:[10.0] "Potentially the greatest ever, which is a hard thing to say, but if you're going to have to pick just one wrestler who is the greatest ever, you'd probably pick Ric. Likely the most influential wrestler of all time as well, plenty of the greats who came after him cite hin as an influence, e.g. Shawn Michaels, Steve Austin. Best promo of all time? Certainly in the top 3, but not a bad choice for #1. Best in the ring? I don't think so, but he was solid for a very very long time, even though later in his career he essentially had just one match that he did. The number of long matches he had in the 70s and 80s is certainly worth noting. Best gimmick of all time? Certainly one of the most enduring, lots of catchphrases, the strut, the clothes, the rolexes. Definitely lived his gimmick harder than anyone else out there. He also had an extremely long career, in which he was effective for most of it, and on top for a lot of it. Might be an A across the board- on the mic, in the ring, and for gimmick."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: wrestlingswiftiewrote on 20.08.2024:[10.0] "An example of a perfect wrestler. He could talk you into any building, make his opponents look like a million bucks, and he could sell like no other. The only legitimate criticism you can have for Flair is that he rambled a lot in his promos, which is a trait that you learn to love when you look past it! And of course, there's the heat he has outside of the ring. You can't change that. But allegations aside, he was the exact definition of "living the gimmick." -- for better, or for worse. He is someone you must know as a wrestler, and must watch as a fan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rassle Fanwrote on 15.08.2024:[7.0] "He's worked very hard to damage his legacy and it's working. In his day he was a great bumper and seller and made every opponent look like a credible threat and better than they actually were in some cases. He's also arguably the greatest promo of all time. He kept working 20 years past his prime and it looked sad. He also didn't have a choice because he continues to be deep in debt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Trombek Kushinikawrote on 11.08.2024:[10.0] "The GOAT? I used to think so but I've soured on him a little recently. I don't think Ive ever seen him had a bad match and his work has certainly stood the test of time. Classics with Sting, Steamboat Funk etc helped shape the industry. Solid at both heel and babyface - although most prefer him as heel. Him being a bit of an idiot of side of the ring and his refusal to hang up the boots for a good 20+ years after his prime are what would prevent him being classed as the greatest in my eyes. Still a 10 though."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Zak22wrote on 29.07.2024:[10.0] "Flair is a tricky one to rate. He was at times a formulaic, 5 spots of doom merchant....but when you're traveling to a new audience every week...it isn't as big an issue. At his best flair had some of the greatest matches ever, he was fast and athletic, he portrayed aggression and desperation brilliantly and he was the best wrestler around. His matches with Steamboat, Vader, Funk and so on, all rightfully have a place in history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CMFunk007wrote on 28.07.2024:[10.0] "Holy shit, this guy is the greatest of all-time. His promos were intense and sometimes hilarious. His in-ring work was great. MY favorite recurring bit was him shoving the referee and the referee shoving him to the ground. Bret Hart and Cactus Jack have been critical of Flair over the years, but I don't agree with their criticisms. Flair started in the '70s, but I didn't know him until 1985 when he formed the Four Horsemen with Arn Anderson, Ole Anderson, J.J. Dillon, and Tully Blanchard. Once the original Horsemen run was done, including stints by Lex Luger and Barry Windham, Flair got into a feud with Ricky Steamboat that produced some of the greatest matches of all-time. Then, the feud with Terry Funk was my all-time favorite feud, bringing in Sting as his ally and Great Muta as his rival. When Flair kicked Sting out of the Horsemen with Ole and Arn, I felt the devastation thanks to Flair's mafia-like promo. Then, he went to the WWF, adopted Mr. Perfect as his advisor, and began a feud with Roddy Piper and Hulk Hogan. Flair and Undertaker attacking Hogan on the Funeral Parlor was one of my favorite childhood memories. He also had a great feud with Randy Savage and won one of the best Royal Rumbles in history to win the belt by eliminating Sid Vicious. Mr. Perfect beat Flair to send him back home to WCW and he reformed the Horsemen with The Anderson and...Paul Roma? Geez. He then returned at the end of the year to beat Vader in a great match and the his feud with Hogan in WCW made him lose a retirement match in 1994, only to return in 1995. But, during the Monday Night Wars, I feel like Flair was at his best in leading WCW against the New World Order and later his bitter, personal feud with Eric Bischoff. Towards the end of WCW, he wasn't given the greatest material, but ultimately returned to the WWF and beat the owner, Vince McMahon, to take control of the company. He eventually joined Evolution with Triple H, Randy Orton, and Batista before being retired again by Shawn Michaels at Wrestlemania. He made appearances in TNA to feud with Hogan again. IMO< he's had the greatest career in the history of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: A 64wrote on 24.07.2024:[10.0] "The GOAT of wrestling, the most accomplished man of wrestling, the most complete career of wrestling, the most complete wrestler of wrestling. Simply the perfect wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Willie 19200wrote on 24.07.2024:[8.0] "He is easily considered one of the greatest pro wrestlers of all time, but he doesn't know when to put the boots up. He wrestled 17 matched after his original retirement match. Not to mention he already wants to wrestle again. He needs to accept that he's in his 70's and needs to stop. But his career before that was amazing, he was once known as the greatest wrestlers in North America. not to mention he's a 16 time world champion. overall good wrestler but needs to call it quits."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kai Kantewrote on 07.07.2024:[7.0] "Für sein Charisma und die starken Fähigkeiten sich selbst zu verkaufen, hat er es folgerichtig zu Ruhm und Ehre gebracht. Wrestlerisch ging bei ihm eher wenig. Ein paar eingesprungen Knie, reichlich Chops und ein gewisses Sets an Submissions. Doch der Spruch: "Ric Flair hat tausend Mal das gleiche Match gekämpft", kommt nicht von ungefähr."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Ddamnpeggywrote on 01.06.2024:[10.0] "What is there to say about the man that hasn't already been said? Maybe the greatest to ever step in the ring. May not fly as high, or lift as much as some others, but in terms of psychology in the ring, and playing a character, I don't see many better wrestlers in this category. Able to turn a great bout, win or lose, with anyone, in any promo. Long career, all the awards imaginable, memorable reigns, and such an iconic character."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: OnlyHalfTheEffinShowwrote on 11.05.2024:[10.0] "While he may have overstayed his welcome in recent years, Flair is a once in a blue moon kind of talent, there will never be another Flair. While Hogan mightve drawn more tickets in the 80s, Flair will always be the wrestlers wrestler. His undeniable charisma, his in ring body of work which speaks for itself, even his longevity in the business for better and worse. Few can say theyve come as close as Flair n any business, let alone that of professional wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: KingKrush29wrote on 24.03.2024:[10.0] "Ric Flair is the greatest of all time. If Ric Flair isn't at the very least on your top 10 greatest professional wrestlers of all time, you are not a professional wrestling fan. He wrestled on the highest level you can reach in professional wrestling from the late 70s to the early to mid 90s. Countless classics and some of the greatest wrestling matches of all time against Barry Windham, Ricky Steamboat, Vader, Sting, and Terry Funk just to name a few. His promos were also the pinnacle of that field during this time period, his battles on the microphone with Dusty Rhodes being especially memorable. He maintained his legend into the mid to late 90s and continued to push forward in the 2000s. He kept himself relevant as part of Evolution in particular and excelled in that role. At Wrestlemania 24 he was able to work with Shawn Michaels to create one of the most beautiful wrestling matches ever. Keep in mind he was 59 years of age when that match took place. His TNA run is best left described with two words: mediocre and sad. His lifestyle on the road for all those years and lack of responsibility relating to his finances caught up to him and he made the decision to bypass his retirement. However, his post - Wrestlemania 24 wrestling career does not negate his previous successes, as their magnitude laps his later short-comings. Ric Flair is the G.O.A.T, and I doubt anyone will dethrone him of that status anytime soon."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TripleCrownwrote on 03.03.2024:[10.0] "The greatest American professional wrestler of ALL TIME. What is there to say about Ric Flair that hasn't been said thousands of times already? The man is just IT when it comes to what a professional wrestler should be. Obviously he didn't have the physique like a John Cena, but he really didn't need it. His character overshadows his ability in-ring, but that's to be expected when you're the Nature Boy. Wrestled a lot longer than he needed to, those matches can kind of put a downer on his career but you have to look past that considering how old he was and the state of his back following that plane crash. There will never, ever be another Ric Flair."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Green Deliwrote on 25.02.2024:[10.0] "The greatest wrestler that has ever lived. From my point of view, there is not one man alive or dead who better combines in-ring prowess, promo ability, and pure star power all at once. There are better workers (Shawn, Kurt, Danielson), there are better talkers (Punk, Rock, Heenan), and there are bigger stars (Hogan, Austin, Cena), but none are greater at all three than the Nature Boy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: PapaTangowrote on 23.02.2024:[10.0] "He gets a 10 rating for his work in 1989 alone. The argument of who is placed on wrestlings Mount Rushmore is endless. But Flair is an absolute icon of the sport. Promo work was always on-point. And his in-ring work was almost peerless."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: murielalvarezwrote on 15.02.2024:[10.0] "If WCW challenged the standard in mid 90's it's mainly because of Ric Flair existing in JCP. He was huge and without a doubt was the biggest star of his era next to Hogan. So charismatic and an amazing worker in the ring. He was psychological, one of the best sellers thoughout the match and I consider him as the greatest heel in ring worker like majority of the community does. Unbreakable record with most world championships in the history of this century long business is an achievement that you cannot unsee even though you hate him. There is so much to say about him but I'll finish with my opinion in criticisms about him coming out of retirement. This man is a showman and an on-camera guy and probably best about this. He lives to be in wrestling and that wrestling ring and that seems to be the only reason he wrestled until his 70's. The love he has to this business! I almost don't have anything bad to say about his career and he will be on top of my list until the end of my time. We were so lucky that we have him on our lives via the thing we love the most. Ric Flair is the embodied version of Pro Wrestling and some unrespectful jerks can't take him away from this just by criticising without knowing anything about the history of this business."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ISimon1912wrote on 11.02.2024:[10.0] "Ric Flair is the GOAT of the American pro wrestling scene, during his prime in the 80s he managed to be a great performer, talker and draw. The man exudes charisma and the vibe of a champion, the true definition of a world champion. My only downside is the fact that he doesn't know when to hang up his boots, it's a shame he decided to have more matches after that perfect retirement in 2008"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Taper1994wrote on 03.02.2024:[10.0] "The top guy for the NWA during the time which the organisation made the most money wise and responsible for some of the largest gates and crowds in America prior to Hulkamania. Flair's over the top presensation constated his classical wrestling style, well except for his over the top selling. Flair was part of such legendary feuds with guys like Dusty Rhodes and had some of the greatest matches of all time against opponents like Ricky Steamboat. Once the JCP, the main member of the NWA was sold to Ted Turner who created WCW tho, things changed for Flair, althought the first full year in WCW in 1989 produced the greatest year of Ric Flair's career in-ring, for the most part the non-wreslters who now run WCW blamed Flair for WCW not being as large as the WWF. The result was Flair even leaving WCW for a year to go to WWF, producing funny enough probably the best year of Flair's career post 80s in 1992. However Flair returned to WCW where he had to play backseat to Hogan and WCW becoming a lite version of WWF. However with WWF wrestlers like HHH and Austin being more fans of Flair's style of wrestling growing up, we saw a change in style in the WWF that more resembled Flair's wrestling than Hogan's. Hogan might have drawn the most money but Flair I beleive ended up being the longer influence."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: BruceMarcos524wrote on 01.02.2024:[9.0] "Arguably, the greatest North American wrestler of all-time. As I disagree with this, Ric Flair surely is one of the best performers in wrestling history. An all-around great performer that can wrestle, cut promos, dress in style, attain charisma, etc. A lot of people revered Flair such as Shawn Michaels, Triple H, Jay Lethal and even her daughter Charlotte Flair. One of the best talkers on his time, had amazing matches with Ricky Steamboat and the Flair Flop is one of the most comedic but iconic wrestling sell of all time. His catchphrase, "WOO" is maybe the most used catchphrase of all time. Every time a wrestler does a Knife Edge Chop or a Figure 4 Leglock, the fans are paying homage to Flair by chanting "WOO" on it. Although that plane crash changed his style from being the brawler to more technical, still he changed his style for the better. Sadly, his slew of retirements tarnished his legacy completely due to his bad life habits as he needed money to recover from his spending issues. What's worse is when Flair had one of the greatest retirement matches in 2008, he'd still manage to continue wrestling until 2022. Despite the negative, still I appreciate him for his contributions in the wrestling business. He and Hogan are one of the reasons of the renaissance of pro-wrestling in the 80's. Unfortunately, he is not a telegenic guy nowadays as watching him on TV today is very sad to look at. Overall, a wrestling legend to remember for generations."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Dirty Diegowrote on 12.01.2024:"3rd on my list , could do it all and has done it all, he had the best matches the best feuds been involved in storylines that had realness to them his presence , gimmick, selling and personality and had the best in ring psychologist by far ever WOOOO!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: greaterdalewrote on 10.12.2023:[10.0] "What Ric Flair did in wrestling history cannot be ignored, being one of the most popular wrestlers of his era and wrestling for decades, it must be noted that Ric Flair abused women, and though for historical value, wrestling ability, and promo skills he's a 10/10. As a human being though he's a 0/10. I previously had rated him down for that, and my no means am I defending his horrendous actions towards femmes but at the end of the day he is one of the goats, so even though it makes me feel a tad guilty I'm going to rate him based on his career not as a human being in the same way I think someone's who's an horrible person but has incredible starts should be in a shoot sports hall of fame. Man should not be employed by any company though, If I worked in AEW I would feel extremely uncomfortable with him in the locker room. He's a liability for a company and anyone who is a women or cares about women should feel unsafe with him around."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "For me, the greatest professional wrestler of all time and my personal favorite. He is the undisputed GOAT in my eyes, a throne that will never be dethroned no matter who comes along. No matter how good you may be, you'll never be Ric Flair level in my eyes. Here you have a man who was the perfect wrestler and checked every box. In the ring? Ric Flair was so ahead of his time, that his style is considered "basic" by today's standards. But don't let that fool you, he was an incredible storyteller, a master of having long winded matches in his prime, always wanting to go 60 minutes every week. He's a master of selling and working, the man could do it all in the ring, he could even make his inferior opponents look good. Having iconic and legendary matches with Dusty Rhodes, Harley Race, Ricky Steamboat, Randy Savage, Bret Hart, Terry Funk, Sting, Shawn Michaels, Hulk Hogan, Triple H, Barry Windham, Jumbo Tsuruta, Kerry Von Erich, Ricky Morton, and countless others I could name, he has fought, just about, everyone you could name during his prime. On the microphone? The amount of iconic catchphrases he's created that are still being used by millions of wrestling fans, even used by wrestlers. Hell, other athletes and rappers use them, this man's legacy is far beyond professional wrestling, one of the biggest names of all time just for his promos alone. This man took bragging to a whole new level, so much that you love to hate him despite he was rubbing it in that he's rich and that he can get any girl he wanted, and he could outwrestle anyone you put him in the ring with. He is the ideal cocky heel that has inspired generations upon generations and still has his influence all over today's wrestling. Character work? He is the prototype of what a wealthy heel should be, dressing nice, bragging about his wealth, and oozing confidence, how many heels are like this that you can count? Exactly. Flair was a master at "The Nature Boy" gimmick, despite he got it from Buddy Rogers, but he perfected it and made it his own that people associate the nickname with him more, from historians to modern fans, people think of Ric Flair when they hear "The Nature Boy." Don't even get me started on charisma, this guy is one of those wrestlers that could read a phone book and would make it entertaining, he was very funny and full of great insults and one liners, people still use the "Woo" catchphrase to this day, in and out of professional wrestling. And how can I not mention The Four Horsemen? A faction so legendary, many have tried to capture the magic of this group and still come up short, a faction that showed how a heel faction should be, featuring talented men who all did their roles perfectly and knew how to generate heel heat. While I could go on and on about Ric Flair, I'll stop here and conclude with this. Overall, Ric Flair is the prototypical professional wrestler in my eyes, the man did everything in his career from longevity, being a great world champion, having legendary matches that still hold up 30-40 years later, promos that are still remembered to this day, there's too many reasons to consider Ric Flair the goat in my eyes that I feel he warrants a 10, anything lower is a travesty despite he might not appeal to some fans these days for his antics outside the ring or for overstaying his welcome or not appreciating the older style of wrestling. WOOOOOOOOOOOOO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: crs285wrote on 21.11.2023:[8.0] "A controversial figure in pro wrestling. Nobody was more charismatic in the ring then Flair. He had amazing mic skills. In the ring the plane crash he was in should have ruined his career, but he made his style unique. His controversies are well known but he is beloved by most of his peers. His career also went too long as he should not have wrestled 2022."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: beastmxmwrote on 21.11.2023:[10.0] "He's the greatest to ever do it. Enough said. I would give him a 12 if I could, that's just how good he is. As good as anyone in-ring during his prime, as or more influential than any other pro wrestler in history, no one else is on his level. Not Hogan, not Austin, not Rock, not Cena. There is one true GOAT of wrestling, and that is Ric Flair, undisputed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DangoDaisukiwrote on 12.09.2023:[2.0] "Ich habe sehr viele Matches von Ric Flair gesehen, seine besten Matches, zu seiner WWE Zeit, in Japan und auch Impact Wrestling. Alles was später in seiner Karriere war, wäre für mich sogar eine 0. Er hat mich immer zum abschalten gebracht, da ich ihn als Wrestler sehr langweilig finde, als Heel eher nervig und keinen guten Heel, auch nicht wirklich sympathisch finde ich ihn. Ich gebr fairerweise für die Zeit wo er noch jünger war aber jetzt 2 Punkte, da ich ihn damals zumindest einigermaßen okay finde besonders bei WCW und in Japan ist er für mich einigermaßen in Ordnung, aber immer noch bei weitem nicht gut. Ich finde Flair sehr überbewertet, selbst seine besten Matches finde ich ziemlich langweilig und es gibt nicht ein einziges Match was mich wirklich überzeugt hat."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: flipflopdoritoswrote on 25.07.2023:[10.0] "someone else said it, but you're insane if you don't give ric flair a 10. a shining star in a sky of many back in 80s and early 90s Jim Crockett and WCW, he truly was a force anywhere he went. one of the best on the mic ever, one of the best in-ring ever, and one of the best storytellers ever. simply a talent unmatched by all but one other, the one other being the late, great mitsuharu misawa."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: InsertFunnyNameHerewrote on 05.07.2023:[10.0] "Giving Ric Flair anything less than a 10 would be insulting, he was the complete package, the face of pro wrestling in the 1980s and for my money, the best to ever lace up a pair of boots or speak into a microphone, Flair at his peak was untouchable, the only thing that ever held back The Nature Boy was Ric Flair himself."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: mizzyshawrote on 25.06.2023:[10.0] "Definitely the greatest wrestler of all time. Fuck, I just can never get enough of this guy. Always loved how expressive he was even in the middle of his matches. If he would have decisively retired after Michaels kicked his ass at Wrestlemania I'd have no complaints whatsoever about his career. Dude just doesn't know when to hang it up. Oh well, at least we got some great promos from his post-09 stuff (thanks Jay Lethal)."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: KKeanelwrote on 20.05.2023:[10.0] "It's sad how much he did in last 15 years to underestimate his legacy, but I don't care about that. Watching his promos from NWA and WCW days, it's difficult to understand how this kind of pretty basic character can be so charismatic and credible. It's getting me chills. Absolute GOAT of making title reigns interesting - of course he never was outstanding in-ring worker, but I really appreciate his longetivity. Catchphrases, small gestures style, amazing look - that and many other things made Nature Boy so iconic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CurlyHairMetalPunkwrote on 22.04.2023:[10.0] "Between 1984-1989 Ric Flair was arguably the greatest professional wrestler in the world. The Nature Boy had a great look going on with all the beautiful robes and custom made suits. On the microphone Naitch could talk so wonderfully that he could have sold ice to an eskimo. When it comes to the number of incredible wrestling matches Ric Flair has too many to count. Wrestling peaked with the trilogy of matches that Ric Flair had with his best dance partner in Ricky Steamboat over the NWA World Heavyweight Championship."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: AyoWrasslinwrote on 13.04.2023:[9.0] "I just did the math and found out Flair is actually a 22 time world champ. So yeah he is very good and was great in his prime. one of the greatest talkers in history Also very good back in his day so 9/10 / Recommendations: vs HBK [Mania 24], vs Steamboat [Trilogy], vs STing [Clash of Champions]"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Giantfan1980wrote on 09.04.2023:[8.0] "One of the best obviously from the late 70's up until the late 90's. Last great match IMHO was against Bret Hart at Souled Out 98 and from then on it was a steady decline as he didn't have the cardio anymore. Decent matches with McMahon and Taker in 02 and then a lot of bad stuff up until his retirement match with Michaels. I would go a perfect 10, but Flair hanging around 20 years past his prime for rent money tarnishes his career. That being said, not many could carry a match as well as he did. Being able to call stuff on the fly to help out his opponents made many matches better than they should have been. Except his matches against El Gigante, Flair was great, but he wasn't a miracle worker."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: cal9099wrote on 16.03.2023:[7.0] "Another madly overrated wrestler to me. Obviously mic skills and promos were off the charts but his look and in ring were so bland to me that he just never drew me in. Admittedly I didn't watch him during his prime but what I have seen, like the 'classics' vs Steamboat were just good to me, not all timers. Also another wrestler who overstayed his welcome to the highest degree like Undertaker which tarnished his reputation for me."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: WhatIsLooveeewrote on 04.03.2023:[10.0] "Ric Flair is one of the most popular and significant wrestlers of his time, whose career lasted quite a long time. Despite the fact that he mostly copied his gimmick from another wrestler, he really brought him fame. Rick is very charismatic, he is an outstanding speaker who is one of the best villains in the history of the industry, as well as a man who knew how to make a star out of his opponent, even if he lost to him. He was also quite good in non-wrestling roles. He managed to become the first two-time member of the WWE Hall Of Fame and won many championships, still being the most titled world champion in WWE. A unique person who gave his life to favorite deal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Leth99wrote on 14.02.2023:[5.0] "He cut the same promo for 30 years and wrestled the same match for 20 and he wasn't even using an original gimmick and he wasn't even the best using it. But hey, it worked, because he is a 22 time world champion"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: damiendemento1wrote on 02.02.2023:"When you see him climb the top rope. You knew he was gonna miss. Never seen him hit a move from top rope. But great charisma way better then Hogan."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: benh2wrote on 11.01.2023:[9.0] "As always, I just rate the wrestling personality and not the person. It's undeniable he was a fantastic worker, especially in the early to mid 80's. Outside of the Steamboat matches, I never really got invested in the Flair match routine but I still appreciate his contribution to the business. His promo style wasn't for me either but I accept I'm in the minority here."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Conquistador37wrote on 02.01.2023:[10.0] "This is something very special to me, cagematch doesn't have enough space or room for me to truly express all that I feel. I understand those younger than I will surely view him with different eyes - but for me, this single entity did more to elevate the sport/business/industry than any other. The importance Ric Flair had on the territory system and professional wrestling as a whole in the 80's can not be understated. Yes there is some truly disastrous stuff peppering his career post '89 but even things at their most treacherous could not erase the over abundance of positives. Outside of the squared circle: no thanks, but there have been much worse. Reign Forever The Real World's Heavyweight Wrestling Champion: Ric Flair."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Enriquepollazzowrote on 27.12.2022:[10.0] "Greatest wrestler of all time. At his peak he was a great worker and worked every night when he was nwa champ, great promos, character, living his character. He was the man. I wish he would have been able to retire and fade away but its not fair to hate him for being still alive like a lot of people do."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "Outside of the ring, he may be an irredeemable piece of shit, but goddamn was he special inside the ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: felixshanewesternwrote on 19.11.2022:"One of the best to ever lace up a pair, simple as. Probably should have retired about 20 years ago, but one of the greatest of the 80s and early 90s. For a period, nobody was a bigger draw or better performer than Ric."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: YourKingMobwrote on 05.11.2022:[10.0] "His every promo: What if your youth pastor went away to Ibiza and came back three years later as a fuckboi to talk mad shit at you with his every breath. While he is a product of his era and his in ring work may not stand up to the modern age, Ric IS WESTERN PRO WRESTLING more than anyone before or anyone after. While not as flexible or adaptable as other, more modern wrestlers, Ric is king carnie back when wrestling was a carnival side show still and could cut a promo that could peel the paint off your car at a moment's notice. While not the greatest wrestler from the United States, when it comes to being a carnie fuck, working the marks and riling up a crowd by being a swaggering, bigger than life figure - there will never be anyone better. Should lose a point for being a sex pest at best, a sexual predator at worst."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Steve in MDwrote on 03.11.2022:"All things considered, Ric Flair is probably one of the 2 or 3 best professional wrestlers of all time. With the possible exception of Terry Funk, nobody else has delivered such excellence for such a long time in every aspect of pro wrestling."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "Say what you will about him as a person, I'm not gonna argue with you, but judging him strictly as a wrestler, there is no denying his greatness. Technically sound between the ropes, knowing every trick in the book to be a perfect cowardly heel, while also being an insanely charismatic presence on and off the ring, especially with a mic. Flair is simply one of the greatest."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: UltraNano54wrote on 04.09.2022:[2.0] "Pretty boring wrestler who's most intense battles came from non-televised fights with female flight attendants. It's hard to tell if he is supposed to be a comedy wrestler or not but I would rather just watch Santino Marella if I was looking for a good laugh. Very outdated style and from an in-ring perspective, the average NXT wrestler could easily out wrestle Flair. His promo style was boring too. His average promo was just Step 1: Do Cocaine. Step 2: Do literally nothing else"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: conker8wrote on 01.09.2022:[10.0] "9.5 Great wrestler in his prime, a bit repetitive in his last days. Tremendous promo and character. Have classics with Steamboat, Piper, Savage, Funk, Dusty, Windham, Garvin, Wahoo etc."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Benwerderwrote on 01.08.2022:[7.0] "Er hat leider das Karriereende völlig verpasst. Man hätte ihm sicher 10 Punkte geben können, mindestens 9 da er einer der ersten Wrestling Größen war. Aber leider konnte er nicht aufhören und hat seine Legacy beschädigt. Trotzdem ein toller Wrestler bis Anfang 50 und einer der besten in seiner Prime"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: morenightwrote on 01.08.2022:"Great wrestler, though a but repetitive. No doubt inspired many of the greats after him. Well rounded in the ring. His early matches in his prime are classic!"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: zachattack2023wrote on 26.07.2022:[10.0] "The reason for why I give flair a 10 is because of the matches I have seen he has some instant classic he is on of the best talker of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Ozzywrote on 08.07.2022:[10.0] "Ric Flar was a champion almost everywhere he went and became a 16-22 time world champ depending on whos speaking, Flair wrestled for almost 40 years excluding his upcoming 2022 match, Flair is deserving of a 10 in my eyes and all of his world title wins for his nding in ring abilities with 11 five star matches under his belts including the first 6 star against Ricky Steamboat in 79, Slick Ric might have some controversy around him but that kind of stuff cant take away from the outstanding carer of the dirstiest player in the game WOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Madmanfunaki14wrote on 23.06.2022:[5.0] "Always been a hit or miss with me. Some opponents he worked alright with some he worked terribly with. I don't have enough knowledge of him in the 70's to be completely fair but personally I have never got behind him."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: texasyoshwrote on 19.06.2022:[10.0] "Flair is a great wrestler in every aspect of it. The Flair formula worked fantastic. He was so devoted to the essence OF the business, OF the characters. Now, it seems like he's paying the price. Ric Flair leaves behind a pretty troubled legacy, and it'll be interesting to see what history regards him as more and more comes to light about him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: LaothFriuswrote on 26.05.2022:[10.0] "The complete package all-rounder wreslter, a cardio beast, one of the best heels of his generation and one of the reason wrestling is as popular as it is now."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: UWF Rules Enthusiastwrote on 21.04.2022:[6.0] "Ric Flair is one of the most overrated pro wrestlers ever. He was a very repetitive wrestler, which means that if you saw one Flair match, you basically saw them all. To his credit, he had tremendous stamina when he was in his prime, which made him a pretty good candidate for the NWA World Heavyweight Championship, since at the time, it was expected that the World Champion would wrestle long matches on a regular basis. He was an entertaining heel, and he was very popular among smart marks back in the day, but his matches haven't aged well because of his outdated move set. It is also a shame that he kept wrestling way past his prime, which meant that he basically tarnished his own status. Overall, he was a decent wrestler, and he was good at carrying weak opponents to entertaining Flair-style matches. However, he should not be considered one of the all-time greats, because there have simply been dozens of wrestlers who are better than Flair ever was."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: hirsty97wrote on 01.04.2022:[10.0] "If I was only allowed to give one 10 on this site it would go to Ric Flair, because he was the consummate wrestler, he was everything a wrestler is supposed to be, he could wrestle 60 minute classics with the best of them sometimes in following weeks, he is the most entertaining speaker and promo guy of all time, he is still a pop culture icon thanks to him being an influence on rappers today. He had a marketable look, from the suits, rolexes, bleached hair and robes, his only fault is that he lived the gimmick which has resulted in controversies and personal problems with alcohol and finances. Still the man is a 20+ time world champion, main evented the first 8 Starrcades, had legendary matches with Steamboat, Harley Race, Funk, Sting, Dusty Rhodes, Windham, Vader etc. Was still entertaining in his final WWF run in his 50s putting on perhaps the greatest retirement matches ever against Shawn Michaels. He's iconic in everything he did from his mannerisms, his chop, the flair flop and his blade jobs."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ThatsJustElDandywrote on 30.03.2022:[10.0] "Gun to my head, Ric Flair is the greatest of all-time. I think a common criticism is that Flair would often work the same match but people need to remember that Flair would often do that style of match to give the greatest shine possible to the top babyface in the territory. Remember too that Flair was often working this match with guys like Lex Luger, Sting, Nikita Koloff, Road Warrior Hawk, etc. guys that weren't exactly Jack Briscoe. Ric Flair got 30+ minutes out of Lex Luger and Sting in 1988! TV and streaming wasn't as ubiquitous either. That defense of Flair aside, when you combine all the ingredients of a great world champion you wind up with Ric Flair. The working ability, the drawing ability, the talking ability, the look and presence of a world champion. I understand that younger fans may look at Flair through a modern lens and wonder what the big deal is, but remember that many of your favorites and your favorites favorites follow the blueprint that Ric Flair created."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: rishabhwrote on 31.01.2022:[10.0] "Ric Flair was a complete package and had everything you want from a wrestler. He could make anyone look good and have great matches with everyone. He did blade too often but that wasn't the only reason his matches were great. And to people who say he wrestled the same match all the time, well if someone wrestled the same match every time yet people paid to see it, you decide if it's stupidity or just a genuine art that not many wrestlers can say they excelled at. He did wrestle past his prime and was involved in controversies and all but I don't think it really tarnishes his legacy and he will still go down as one of the Greats. WOOOOOOOOOOOOO"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CaptainCharisma1997wrote on 19.12.2021:[9.0] "Obviously one of the all time greats and a stellar wrestler and promo. A 9 rather than a 10 simply because he liked to have the same match and cut the same promo a bit too often for my liking."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: benny5bellyswrote on 24.11.2021:[10.0] "Ric Flair had some of my favourite American matches of all times and in his prime you were not going to get anything less then very good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Uweuwesenwrote on 14.11.2021:[9.0] "Ric Flair hat einen unglaublichen Stellenwert für das Wrestling im allgemeinen! Ein klasse Wrestler und ein toller Mic Worker, jedoch gefällt mir sein genereller Stil nicht und für mein Empfinden ist er einfach zu eindimensional."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: IBladeDailywrote on 23.10.2021:[10.0] "Ric Flair carried the entire non-WWF American wrestling scene in the 1980's. He drew huge money, had excellent matches with new opponents night after night, and might be the greatest heavyweight champion I've ever seen. His ability to project intensity and emotion in equal measure is extremely rare. When I was a kid just discovering pro wrestling, I didn't care for Hulk Hogan, though I loved WWF. Flair was everything Hogan wasn't. Athletic, vulnerable, arrogant, and unapologetic. He was a douche bag but he was honest. The Four Horseman defined modern wrestling factions and Flair was always the centerpiece."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Pete Gallowswrote on 02.10.2021:"OK, I have been watching wrestling since 1992, I have not seen as much of his 70s and 80s stuff (nor the 60s, 50s and 40s - just kidding, kinda). Seriously, when I was a kid in the early 90s, I was sure he must be in his mid 60s, he just somehow looked older than my grandfather. He is considered one of the very best, again, I never quite saw what others have seen in Ric. There was something very interesting about him, not denying that, he lived that gimmick, but I always found him quite annoying- and I do not mean the heel way, I mean the repetitive, boring way. Same promo, same match. The faceplant bump is ridiculous, as is being thrown off the top turnbuckle by absolutely everyone, in every match - and how about the flair turnbuckle flip, when he flips over the turnbuckle, tries to run along the ropes on the ring apron to the other turnbuckle and get up and jump? He gets clotheslined every time. I can honestly, off top of my head only remember one instance, where he actually succeeded- against ddp, in 1999, I think. Yes, wrestlers always use their most known moves, Bret will have his Russian legsweep sequence in every match etc, but at least it s his move - it s what he s doing to somebody else, it s not what others do to him in every match. Like part of Flair s every match is getting his ass kicked in the same way, that is his moveset. I find it weird and phoney = totally fake looking, totally what wrestling should not be. Along with not selling moves by the likes of Hogan, or Hawk (rip). It just does not look like a real competition and it is like when you are watching a movie and film crew members appear in the shot - they are not supposed to be there, they ruin the whole experience, the suspense of disbelief. You know it is just a movie, but you do not need them to interrupt you and tell you - hey btw, this is just a movie, so do not get invested in this. So Flair is yet another legend, along with Dusty, that I just do not see what others see, because I cannot buy into what they re trying to do. Just like looking back at Hogan s face pulling and gesticulating- but with him, I must say I have been captivated as a little kid. Flair to me was just an old man yelling something into the mic and getting back body dropped, thrown off a turnbuckle, faceplanting himself, then somehow, someway winning. It s an art form, I guess, but going through the same old motions was never appealing to me, never looked real and I want it to look like an actual competition. He can obviously go, his fellow wrestlers admire him, just not my cup of tea."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: No Onewrote on 04.09.2021:[10.0] "May be the #1 greatest professional wrestler of all time (in contention with Lou Thesz). One of the greatest in-ring performers of all time. Possibly the best Ring General in pro wrestling history. The saying "He could wrestle a broomstick", was used to describe how great of a ring general he really was. Took over Buddy Rogers' "Nature Boy" gimmick and elevated it to new heights. The 1980's Wrestler of the Decade without question. One of the most charismatic wrestlers ever. One of the greatest promo artists in pro wrestling history. One of the greatest World Heavyweight Champions of all time. May be the greatest NWA World Heavyweight Champion of all time (in contention with Lou Thesz). One of the greatest workhorses that pro wrestling will ever know. Was an endurance machine who earned the right to call himself the "60 Minute Man". Founding member of the legendary Four Horsemen. Was super popular as a Heel, which was near unheard of in the era that he came up in. One of the main people who helped make you have fun as a wrestling fan. Feuds with Dusty Rhodes, Ricky Steamboat, Harley Race, Barry Windham, Terry Funk, Kerry Von Erich, & Sting are legendary. Achieved career longevity in spades. His 1992 Royal Rumble victory is legendary. Put on way too many re-watch worthy instant classic matches against a VARIETY of opponents that will forever withstand the "Test of Time". Cut way too many awesome re-watch worthy promos. Almost all of his championship wins meant something, and it took many years for him to achieve his famous 16 World Championship victories. Will always be a SERIOUS measuring stick for all pro wrestlers when it comes to true greatness. Rating him below a "10" is disrespectful to his legacy, even if he may have overstayed his welcome at times, regardless. WOOOOOOOO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TigerDiverwrote on 26.08.2021:[10.0] "The best to ever do it for sure. Just a perfect wrestler in every sense of the words. Had numerous classic matches, promos, angles and more spanning over four different decades, if not more. Not my favorite but it's impossible to deny him as an all-time great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Punkman21wrote on 23.08.2021:[10.0] "THE definition of a World Champion. The look, the charisma, the ability to look great in defeat and make another wrestler's career in one promo or one match, the GOAT. Plain and simple."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: greatmonkeywrote on 08.07.2021:[10.0] "The greatest wrestling star/champion/wrestler/talker/personality of all of the western world. Some would say the entire world, Japan be damned. 10 is not enough. Has there ever been a more spectacular world champion performer. Has anymore made more stars by just being with them in the ring. We see him now old and sagging, but only after he is gone and we go back and look at the tapes will we realize what we lost. THEE GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: BrayanLaPrewrote on 06.07.2021:[10.0] "If you're asking who the GOAT is, the conversation isn't complete until Ric Flair is at least acknowledged as a candidate. One of the best and most captivating characters to ever do it, while also being a legitimately elite wrestler who influenced generations to come. Ridiculous longevity that includes some of the greatest wrestling matches, moments, promos, and storylines ever. The Ricky Steamboat trilogy may be the best trilogy of matches ever. Regardless of where you rank Flair all-time, there's no denying that he deserves mention in any GOAT discussion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Might be my pick for the greatest of all time. I think more than anybody else, Ric Flair embodied wrestling. Nobody cut a promo like flair. In his prime, he was a phenomenal wrestler. Likely the best heel in the history of the sport. No matter how many accolades he gets, he might still be underappreciated."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Tomas Cunhawrote on 02.06.2021:[10.0] "Simply a complete package. Flair had the unique ability to make anyone look 500 times better than they were, and the fact that he is still a relevant name in pop culture to THIS VERY DAY ('Ric Flair Drip', appearance on Kevin Hart's 'Cold as Balls' program, etc) should tell you something. His promos were spectacular and would grab your attention just like that, his matches were amazing and, to Flair's credit, he was willing to bump around and sell for anyone and make them look like a star, like Sting or Lex Luger, etc. Not only did he have great performing ability, he had great style and looked very professional every time he was the World Champion, doing the title and the role justice like very few. For all the things I've mentioned as well as his legacy and the influence he's had, Flair can't be anything other than a 10/10. Awesome awesome talent!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rodycaz IIwrote on 29.05.2021:[10.0] "Arguably the greatest heel in wrestling history. Great both in the ring and on the mic. Truly a larger-than-life character."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: AnBwrote on 20.04.2021:[10.0] "Absolute legend. Not much more that can be said about him. Might argue that he stuck around for too long, and I remember being legitimately worried watching his later WWE matches. Possibly one of the most charismatic wrestlers of all time, and brilliant in the ring, though I understand why his style isn't for everyone. The perfect heel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "Dick Slender himself, the Nature Boy. Again, I dont need to tell you what he's done for the business. He's Ric fucking Flair. The legend. Nuff said. the people who gave him zeroes are probably all Shane Douglas."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: BEER CATwrote on 31.03.2021:[10.0] "It. The Pinnacle. The point where all lines converge. A master in every aspect of the artform. Longevity, audience, kayfabe importance, actual importance, workrate, mic work, character, everything times a thousand. More great wrestlers have had their best ever match against Ric Flair than anyone - Race, Dusty, Steamboat, Funk, at least two von Erichs, Luger, Windham, Sting, and with arguments to be made for Tsuruta, Savage, Michaels, and the 29 other guys in the '92 Rumble. Let's tack Vader's best North American match on there as well. That alone is enough to warrant a GOAT argument, but he did all of that while cutting some of the greatest promos of all time, week after week, in front of the baby blue JCP studio sets. He led the greatest faction ever in the Four Horsemen and I struggle to think of a challenger to that throne. He toured his championship act around the globe for decades while doing so in a way that respected the babyfaces he beat and the territories he drew record crowds for. The main argument against Flair is one of a situational (and understandably common) ignorance. Flair's career nadir, both in regards to his workrate and the booking around him, happened around 1997-2002. That dip in quality coincided with wrestling's peak viewership and cultural relevance. If you base your fandom on being an Attitude Era kid, you saw Flair's worst work. But I think his best matches from the formation of Evolution up until his WWE retirement match are very significant and substantially underrated. His tag reign with Batista had a wonderful dynamic, and his feuds with Orton, HHH, Foley and Edge produced great matches as well as great story-driven television. Ric Flair's the best to ever do this thing. We're lucky to have a GOAT this obvious."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: SUGAMOwrote on 15.03.2021:[7.0] "The epitome of hard to rate since most of his stuff between the early '80s and mid-1990s was good, though sometimes relied on bing to trope driven. example there is a lot DQs and Count-out in his chart. The other side of that is the fact when he was good he was the best in us in his ring in that era. Then there is the other end of run that incudle how he was booked in the NWO era of WCW his lacklustre 2nd WWE run than his TNA run less said about that the better."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Zaidwrote on 15.03.2021:[10.0] "One of the best talkers in the business, oozes charisma like no other, a fantastic wrestler, and a proven draw. Definitely in the GOAT conversation, simply phenomenal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Icon is the bestwrote on 09.01.2021:[10.0] "Ric Flair is one of the best wrestlers ever, but the most influential, just watch what this man did for freestyle wrestling in the 1980s, he always had excellent matches against Harley race and Dusty Rhodes and Sting, even in his last days he made a match of the best in history against Shawn Michaels Real, one of the most unrequited wrestlers among the new generation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Old ride long linewrote on 15.12.2020:[10.0] "You can? t hold this alligator down! One of maybe 5 guys that can lay claim to being called the goat! We are truly lucky to still have wrestling? s babe Ruth alive and well today. The nature boy is the greatest heel ever bar none. His promos and matches are legendary. If you like long drawn out technical matches go back and watch his work with dusty, Harley race, steamboat, sting, macho man, hulk hogan, Bret hart and bob backlund in the 80? s and early 90? s. If you like brawling, watch his second wwe run in the early and mid 2000? s with undertaker, hhh, hbk, and orton. Don? t listen to all the boners out there that want to tell you that there were better ? technical wrestlers? out there - wrestling is fake and ric flair made you forget about that. He literally main evented for 35-40 years that shit doesn? t happen by accident. Wether you like him or not If ric flair isn? t a 10 based on career accomplishments alone I legit don? t take anything you say seriously, and your only doing a disservice to new wrestling fans. Oldest ride Longest line! Woooooooooooooooooo"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: medousewrote on 29.10.2020:[10.0] "The greatest wrestler to ever grace God's green Earth. Nobody did better promos, nobody had better entrances, nobody was as charismatic and only a few could physically match this guy. The absolute legend. He IS professional wrestling. Wooooo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: RandySavagePowerwrote on 03.10.2020:[8.0] "Ric Flair ist einer von denen die sich durch zu spätes aufhören die Karriere runtergezogen. Allgemein fande ich ihn immer etwas overradet, im Ring sicherlich gut aber im vergleich zu einem Ricky Steamboat, Randy Savage, Shawn Micheals oder Bret Hart nicht auf einem Level vom In Ring-Work her. Am Mic ist er einer der besten ohne zweifel, die Promo mit Mick Foley bei TNA war mega aber übertrieben gemacht. Insgesamt ist Ric Flair eine 8/10"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Ma Stump Pullerwrote on 18.09.2020:[10.0] "Flair's excellence can be really measured by the amount of guys who have attempted to replicate his character and failed to even get close to it: when it comes to his promo and outside ring talent, it's almost immeasurable. Flair has a charisma and talent on the mic that will likely never be matched, being able to play both the detestable ego driven heel for one moment and then be the cowardly outmatched cheater for the next. For the most part, Flair's heel work elevated anyone he faced to superstardom status merely through his status: anyone he fought, the crowd would cheer unconditionally to see him get trashed by them, and when he cheated to win or used his usual cheap tactics, it didn't really stop their momentum, if anything it'd would only double from his antics. Many careers were set with working with him, as unlike many guys in the business then and even today, Flair would actually get over his opponent both in the ring and out, selling like mad even if the guy he was working with wasn't that good. A lot of people state that Flair's ring work was bad, or very mediocre: that might have been true for his later years when he was significantly more limited (and in the case of his last 10ish years of wrestling bar his retirement match, shouldn't have been wrestling at all) but Flair in his prime and even beyond that to the 1990's was golden, with a moveset that (shockingly) actually made sense, combined with spots that always got a pop from the crowd, great ring chemistry with nearly any wrestler he faced, and solid technical wrestling to boot. His peak days had him wrestle more five star matches than perhaps anyone else at the time while also travelling around the world and defending or gaining championships. I think Flair is one of the very few who could be regarded as perhaps the GOAT of wrestling, even if I disagree with the concept."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: taabr2wrote on 05.09.2020:[10.0] "The last major "travelling" NWA world champion before the territory system was done away with. Ric Flair was one of the few pro wrestlers who was a star all over the country before pro wrestling went national in America. Flair has had some of the most legendary feuds against the likes of Sting and Dusty Rhodes, he has had some of the most legendary matches against the likes of Ricky Steamboat and Barry Windham, leader of one of the greatest stables of all time, the Four Horsemen. Hell even WWE recognizes Flair as an all time great despite Flair mostly wrestling for the competitor. His character and wrestling style inspired a whole generation. Arguably the GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: THATSGOTTABEKANEwrote on 26.06.2020:[10.0] "Legend. An absolute pure legend among legends. They say you gotta beat the man in order to be the man. The stylin', profilin', limousine riding, jet flying, kiss-stealing, wheelin' n' dealin' son of a gun. The dirtiest player in the game. Woooooo! . The nature boy Ric Flair."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: AndoCommandowrote on 17.06.2020:[10.0] "Is Ric Flair the greatest professional wrestler of all time? Maybe. Don't quote me on it, but maybe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Einer der absolut besten Wrestler aller Zeiten und schafft es locker in die Top 10 der Besten aller Zeiten. Im Ring zu seiner Zeit einer der besten oder der Beste sogar, am Mic absolut genial und auch Charisma in übermenge. Immer wenn man Ric Flair gesehen hat wusste man das man gut unterhalten wird, einziger Manko ist das er nach seinem großem Retirement nochmal in den Ring gestiegen ist aber dennoch völlig verdient die vollen 10 Punkte! Wooooo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Keksteurwrote on 11.04.2020:[10.0] "The absolute GOAT of wrestling, he nailed everything that makes a great wrestler and a great world champion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: James Rowwrote on 06.04.2020:"I get that my opinion is completely opposite to almost every fan but I will never understand Ric Flair's popularity. Just listening to him talk made me want to change the channel. I've just never seen the appeal. I go back and listen to old promos and watch old matches, but I just don't see anything there. He seems really good at bleeding though (those faces can be terrifying)."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Caaswrote on 25.03.2020:[10.0] "Ric Flair's overall rating being barely above 9 is an absolute travesty. With the exception of Frank Gotch, Ric Flair is the greatest professional wrestler of all time. There were bigger draws and better workers, but nobody has since or likely ever will reach the strength of Flair's median."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: AAA3000wrote on 07.03.2020:[4.0] "Ich schließe mich der Offenbarung an. Ric hat nicht gewusst wann seine Zeit abgelaufen war und damit seine Karriere unnötigerweise ruiniert. Alles was davor war wurde somit heruntergezogen was sich in meiner Bewertung widerspiegelt."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Liam Willowswrote on 17.11.2019:[7.0] "I love Ric Flair on the mic , and he's a good wrestler. The only thing is that alot of his matches focus on his opponent being on the ground and him targetting the legs , having the match go slowly. However , this does add to the realism."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Excellence of Executionwrote on 04.11.2019:[7.0] "Ric Flair war ein klasse Entertainer und eine echte Rampensau, auch wenn mich seine Promos nur bedingt angesprochen haben - aber das ist in dem Fall wirklich Geschmackssache. An sich auch kein schlechter Heel Worker. Allerdings spulte er gut und gerne die letzten zwei bis drei Jahrzehnte seiner Karriere nur noch sein Standardprogramm runter, sodass ich ihn im Ring nur wohl dosiert noch unterhaltsam fand. Vor allem weil Flair dadurch jemand war, dessen Match-Qualität extrem vom Gegner abhing. Denn meist hing es an eben jenem, mehr aus Flair rauszuholen. Wozu Flair durchaus fähig aber von alleine viel zu selten willens war. Insofern kann ich auch den fast schon unumstrittenen Hype um ihn nicht wirklich nachvollziehen. Denn sind wir mal ehrlich: Die meisten von uns kennen ihn nur als den durchgeknallten Elder Statesmen des Wrestlings, dessen beste Tage ALLERspätestens seit Beginn der 90er hinter ihm lagen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheV2wrote on 30.09.2019:[9.0] "It's tough to rate Ric Flair. He was revolutionary in his time. In his time. Fighter from heart. He could be everything the business needed him to be. At a certain point he was sticking to the top due to the stardom he already had. Unlike other similar cases, he could back it up with amazing storytelling and except for few cases he didn't steal the show of others. His presence alone was surely so much momentum for many legends and veterans of today. Truly you can't imagine some wrestlers' career without him. One other similar man was rather taking others' moments away, while Ric gave them life."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Zo-Zuwrote on 09.09.2019:[8.0] "Formulaic, but I guess since the formula is so good it balances out. As long as you're running through the same spots, better make sure they're excellent, entertaining spots. He skyrockets into 'legend' territory on the back of his innate charisma more than anything else."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: KyleEnjoysWrestlingwrote on 08.08.2019:[9.0] "I get the appeal of Flair concerning his drawing power & his character work, but I've never been of the mind that he's the great in ring worker that people paint him as. That said, I know he's one of the best & most honored to ever do it. But I personally have never been much of a Flair guy."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: LeafKingwrote on 17.07.2019:[10.0] "I think in the ring that Ric Flair is one of the most overrated wrestlers of all time. The way he's praised as the "greatest" to ever do it is complete nonsense. Too much of his stuff revolved around clown crap and ridiculous selling. Not a fan of that. However, he's still gets a 10 from me. Why? Promos and character. Just freakin' excellent and transcended the business with his appeal as 'The Nature Boy' Ric Flair. And while I know I just dumped on his in-ring work, he still did have many classic matches throughout his historic career despite my criticisms, and I highly respected his ability to go an hour any night multiple nights a week, sometimes dozens straight. He was a one of a kind machine... just an incredible once in a lifetime talent."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Grekkowrote on 03.07.2019:[10.0] "The very fact that all promoters chose him as the world champion on so many different occasions should be reason enough, however if you insist... He also inspired Triple H and helped launch the careers of Sting, Randy Orton, Batista, Barry Windham and many others. He created the best female wrestler of the decade, Charlotte. His trilogy of matches with Ricky Steamboat is considered by many the greatest of all time. His "Retirement" match with Shawn Michaels was perfect from a psychology standpoint. He was the most humble top star ever, as he jobbed for the NWO constantly. And no matter what the idiots that can't spell below me (Devitchiu & LordGabriel said) his promos are untouchable, top 5 of alltime easily."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Aurtletheturtlewrote on 04.06.2019:[10.0] "Quite possibly the most charismatic wrestler to ever live. Ric Flair was the king of style and substance, from his promos to in-ring work, he bled buckets of both charisma and blood. A lot of people want to write him off for his later years but shoddy TNA booking aside, Flair could still somehow go better than most in his 60s and for a long period of time during the 80s and 90s, Flair was the best North America had to offer. For being such a substantial force for multiple decades make Flair automatically in contention for Greatest of all-time and personally? I hold him just above Misawa, Kobashi and Hansen as the overall GOAT."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Sick Lebowskiwrote on 13.05.2019:[10.0] "Letzter großer Fackelträger des territorialen Wrestlings und neben Sting das Aushängeschild der WCW. Am Mikro einer der Besten überhaupt und auch im Ring ein Großer, auch wenn er mit der Zeit teilweise einen ziemlichen Routineablauf in seinen Matches hatte. Sein größtes Manko ist, dass er nicht aufhören konnte und selbst nach seinem eigentlichen groß gefeierten Retirement noch in den Ring steigen musste. Aber nichts desto trotz ist der Nature Boy einer der ganz großen Legenden dieses Geschäfts."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Steamboat2511wrote on 05.12.2018:[8.0] "Ric Flair ist eine große Legende und eine der Persönlichkeiten des Wrestlings schlechthin. Einen Ausdruck hat dies u. a. in den ungewöhnlich zahlreich gewonnenen Titeln gefunden. Im Ring gehörte er weder zu den besten, noch zu den schlechtesten. In Vor-WCW-Zeiten, WCW-Zeiten und auch noch frühen WWE-Zeiten sind durchaus sehr ansehnliche Matches dabei. Am Ende ist Flair für mich leider zum klassischen Beispiel des zu späten (bzw. nie stattfindenden) Karriereendes geworden. Die größte Moveset hat er nie gehabt, am Ende wars dann deutlich zu wenig (Figure-4-Legn und Chops). Seine Person ist hingegen purer Kult und er konnte mehrfach (Horsemen, Nature Boy, Evolution) in seiner Karriere mit Gimmicks richtig überzeugen. Am Mic war Flair einer der besseren, auch wenn mich sein beständiges Nuscheln manchmal nervt. Doppelter Hall of Famer."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: RatingsMachinewrote on 15.10.2018:[10.0] "Ric Flair wasn't the greatest at every aspect of wrestling, but he was so good at the things that he wasn't the best at that he was still the best American-style wrestler of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: JEK 1991wrote on 01.10.2018:[10.0] "Excellent wrestler and was great at everything. Very technical which made him become successful in his career.  I loved his colorful coats he had. WOO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Oliver95xwrote on 27.09.2018:[8.0] "Er hat Charisma und einige gute Matches in seiner Karriere gehabt. Er hat mich oft Unterhalten auch wenn ich ihn nie als die Elite gesehen habe."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DaWizWithADwrote on 07.07.2018:[10.0] "He's the GOAT of American wrestling, and whether you like it, or you hate it, learn to love it. Great promo always and yeah, he stayed around too long but honestly it was only his TNA matches where I actively wished he'd never wrestle again. Over 20 years of sustained excellence."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: thehitman613wrote on 27.05.2018:[6.0] "Ric Flair was great on the mic and had amazing feuds over the years but on the squared circle he wasn't more than satisfactory. Growing up, I only had access to the WWF programming and all I could see from him in there wasn't that great. He was outstanded by Bret Hart or even Mr. Perfect, and didn't had any memorable matches because of his floppy work. In the past years I've been watching a lot of WCW programming on the WWE Network and it's just more of the same. There are a lot of examples where you can see his opponents carrying him through the match. He misses spots, overdo his reactions, he's simply floppy. I respect Flair but when it comes to the wrestling itself, he wasn't that good."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sebastian Vwrote on 14.04.2018:[10.0] "Er ist in meinen Augen einer der besten aller Zeiten. Im Ring war er in vielen Belangen in seiner Hochzeit der damaligen Zeit voraus. Er zeigte Selling von einem anderen Stern, hat Psychologie wie kaum ein Anderer und war ein begnadeter Techniker, der auch in dem Bereich mit Moves wie dem Figure Four Generationen prägte. Das tolle an ihm war immer, dass er nicht nur Weltklassematches auf großen Bühnen gegen große Gegner a la Steamboat zeigte, sondern aus jedem Gegner überall ein gutes Match rausholte und wenn es nur ein 6 Minutenmatch bei Nitro war. Selbst im hohen Alter wie bei seinem WWE Abschied gegen Shawn Michaels war er noch zu tollen Matches im Stande, wenn auch mit anderen Mitteln als in den 1980ern. Im Ring daher klare 10 Punkte. Gleiches gilt für das Charisma. Er ist eine Jahrhundertpersönlichkeit, der hassenswert und liebenswert sein konnte und der das Motiv des Gauners, den die Leute trotzdem mochten ( wie später Eddie Guerrero), prägte. Am Mic würde ich ihm 9 Punkte geben. War immer perfekt in seinem Charakter und 100 prozentig authentisch. Sind für mich knapp keine 10 Punkte weil mir dafür ein stückweit etwas innovatives gefehlt hat und dennoch: Ein begnadeter Redner. Alles in Allem 10 Punkte für einen der besten Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: pappahousewrote on 22.03.2018:[7.0] "Was soll man großartig zu Ric Flair sagen, mega Promos, mega Mic-Work, für mich allerdings auch sehr eingeschränkte Wrestling-Skills. In den 2000ern kaum Weiterentwicklung immer wieder mit dem Salto über die Ringecke, immer wieder der Slam wenn er aufs Turnbuckle geht. Das Charisma war und ist aber immer weltklasse."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: A-Doublewrote on 05.02.2018:[9.0] "Einer der erfolgreichsten Wrestler aller Zeiten. In Sachen Bedeutung hat er sicher ne 10 verdient. Er war over wie nur irgendwas, und hat über einen längeren Zeitraum als jeder andere an der Spitze gestanden. In den 80ern war er DER World Champion. Jedes Mal, wenn der Titel woanders war fühlte sich das nur wie ein Zwischenspiel an. Als Heel besser als in der Face Rolle.  Allerdings muß ich ganz persönlich zumindest einen Punkt abziehen. Flairs Zeit waren die 80er, und schon in den 90ern wirkte er alt. Bei jedem Chop wabbelte da die Brust. Da hätte er aufhören sollen, statt noch weit in die 2000er weiter in den Ring zu steigen. Es wirkte einfach nicht mehr glaubwürdig. Wäre er bloß, nachdem er endlich gegen Hogan angetreten war zurückgetreten und Manager geworden.  Außerdem: Obwohl Ric wohl mit die beste Kondition der Wrestling Geschichte hatte und 60-Minuten-Matches wie kein anderer überstanden hat, hatte er imo technisch nicht annähernd drauf, was ihm nachgesagt wird. Den Fans war es meist egal, aber einige Promoter und Booker wie zB Ole Anderson sahen es auch so: Flair hat in den allermeisten Matches das gleiche gemacht. Es gab die typischen Flair-Spots, die immer dabei und nicht glaubwürdig waren. Der Flip über den Turnbuckle, dann ein paar Schritte laufen und umkippen. Aufs oberste Seil klettern, und von dort in die Mitte des Rings geworfen werden. Der umgedrehte Figure-4-Leglock. Natürlich hat er extrem viel gewrestlet, und es gibt auch sehr guten Matches. Aber zu oft spulte er seine Formel ab.  Ändert alles nichts daran, wie over er war. Aber eben für mich ein Punkt Abzug."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CHN325wrote on 01.02.2018:[9.0] "Simply the man. All the star power of Hulk Hogan with 10x the skill in the ring. Great at selling, great at telling stories, one of the best on the mic. Held on a little too long when he should of walked away after his Mania match with Shawn. At least he won the KFC Colonel Rumble to cap off his career. WOOOO!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TylerWhitewrote on 29.01.2018:[9.0] "Definitiv eine der Legenden der Wrestlinggeschichte. Er hatte eines der besten und ikonischsten Gimmicks seinerzeit und war technisch weit seiner Zeit voraus. Vor allem ist er unglaublich charismatisch und sein ganzes Auftreten ist so besonders und so legendär. einer der besten Wrestler aller Zeiten. 9/10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Big Blue Machinewrote on 22.01.2018:[10.0] "If not the best, one of the greatest of all time without a doubt. Ric Flair has done incredible things over the years, not only his incredible trilogy with Steamboat or the Wrestlemania classic with Randy Savage. Even at an advanced age, Flair has had excellent matches with Triple H, Edge and Shawn Michaels. Technically gifted, a natural-born storyteller and an expert in-ring psychologist, if you want to know something more of the american wrestling history, you can't take Flair out."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: kldub4lifewrote on 19.01.2018:[10.0] "Wow, so much has been said!  It's funny to me that even with the idiots rating Ric Flair as a 2 or a 4 the average is still a 9 lol.  The are numerous reasons I rank him a 10 but I'm only going to mention1 here.  Flair simply made anyone who entered the ring with him look good.  This is the biggest reason the NWA kept the belt on him for the better part of a decade.  He could travel from territory to territory and no matter the quality of that region's top guy Flair would put on a match leaving the local favorite looking better even though they very rarely took home prize."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Devitciiuwrote on 07.01.2018:[2.0] "I don't get Ric flair. Maybe it's because I didn't seem him until 1999, but I just don't see what's to like. His in ring work isn't great. There's no real athleticism or strength, just old holds and dirty moves. I've heard the story he tells in the ring is incredible, but watching Steamboat VS Flair I still don't see it. His promos are annoying and epitomise every negative thing about professional wrestling: incoherence, loud and angry poorly delivered lines, repetition, out of date references. He's the king of repetition. I don't want to see him get beaten in the ring; I don't want to see him at all. Flair is one of those wrestlers who makes me change the channel."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Dragon Fighterwrote on 16.11.2017:[10.0] "The natural boy Ric Flair, WOOO. A true icon, legend of this business. Great charisma, excellent talker, excellent in ring worker for sure. Also a proven draw. He can sell his ass off, make his opponents look like million bucks, put on a good match with various guys with various levels. He also put over his opponents crazily on microphone as well. Even in his 50s, he still bumped, sold like a badass motherfucker. Sure, his personal life is not very well-received. Even you can call him bad boy or something else, but you can't deny his contribution to the industry. That's enough for me. A well-deserved 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheRainmaker28wrote on 09.11.2017:[10.0] "My favorite american wrestler of all-time. A master in structuring matches, amazing selling, psychology, character work and a ring general. Extraordinary talker, charisma and a proved draw. Fantastic always will describe Ric Flair for me."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: BigMikewrote on 18.09.2017:[10.0] "You talk about 1980-1990 you talk about Ric Flair. He had everything: Charisma, Mic work and he could wrestle 60 minute matches with ease. He had many classic matches with Steamboat, Funk and Sting.  Even after 2000 he still managed to put on classic matches"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: coolserazwrote on 31.08.2017:[10.0] "Nature Boy Ric Flair is the greatest overall wrestler of all time. Promo, work rate, drawing power. Flair is glorious in all of them. He carried on a bit too late in his career but his legacy is so strong that it cannot be ruined. He is also responsible for giving us Charlotte who is more than carving her own legacy as a great wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kenshin Uesugiwrote on 20.08.2017:[7.0] "Bei Wrestlemania 24 ging zweifelsohne ein der größten Wrestler der Welt aus dem Ring, es wurde geweint, es wurde getrauert und man ehrte diesen einmaligen Wrestler und seine Karriere. Das Denkmal des Ric Flair strahlte so hell und jeder erinnerte sich an die tolle Zeit. Jetzt nach etlichen Verfehlungen, merkwürdigen und schlichtweg unverschämten Handlung, hat das Denkmal überall Risse bekommen. Ich hoffe das es dabei bleibt und der Name Ric Flair nicht nur mit negativen Meldungen und Ereignissen in Erinnerung bleibt, da das Psoitive immer noch überwiegt und das Lebenswerk so groß ist. Aber sehr oft kommt es mir so vor das Flair selbst mit einen Vorschlaghammer sein Denkmal beschädigt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Serspidermonkeywrote on 20.08.2017:"the Sept 1st 1992 title change was NOT an episode of Superstars, but rather an episode of WWF Prime Time."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: acutelockwrote on 24.04.2017:[10.0] "What is there to even say....... I'm not one to crap on people's opinions and one of my favorite aspects of pro wrestling is its subjectivity. That said, Ric Flair is one of a few guys ever where I just think it's fundamentally impossible for someone to like pro wrestling as an art form and dislike Ric Flair as a performer. He just truly embodies so many of the things that make it great."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: LSEstrelawrote on 15.04.2017:[10.0] "The one. The only. The Nature Boy Ric Flair.  The best talker of all time. An all round 10/10.  Best matches: VS Steamboat, Chi-Town Rumble; VS Michaels, WM 23; VS Steamboat, Clash of Champions VI."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Blood Pumpwrote on 30.03.2017:[10.0] "Ive seen some consider him as a routine man or boring. Hell Bret Hart wasn't a fan of his in ring work but man if you can get past the pacing and the 'routine man' slander hes one of the best. He played the narcissistic heel to a T because that's what he was; a narcissistic money driven maniac who went insane for the women and could last longer then you in a match or in bed. Thing is he could back up his ego stroking. That being said he was a man of the 70s and 80s so he wrestled a much different pace then some would have preferred. He was fast for the early 80s, but by the time the 90s rolled on the pace of an average wrestling match had shifted. This makes the lack of appreciation understandable. Unfortunate, but understandable. Not everyone can chill for an hour and appreciate a long style story telling from one of the best in ring story tellers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: WrestleArtswrote on 28.03.2017:[10.0] "Bester Heel, bester Micworker, bester Wrestler und größter World Champion aller Zeiten. Entwickelte einen Wrestlingstyle, dem es ihm ermöglichte jeden noch so untalentierten Jobber in jedem Territory dieser Welt wie einen Star aussehen zu lassen und durch ein 60-Minuten Draw zu ziehen, bei dem sein Selling alleine die Massen in die Hallen zog, sobald er für die nächste NWA Titelverteidigung wieder in der Region war. Niemand war besser darin den Fans zu geben was sie wollen; Prügel zu kassieren, wie der größte Lappen und die größte Pussy auszusehen, nur um am Ende noch irgendwie die Kurve zu kriegen, den Titel zu behalten und die Halle mit noch mehr Heat zu verlassen. Seine Promos als Anführer der Hourseman warscheinlich die unterhaltsamsten aller Zeiten, kreierte geniale Catchphrases und Punchlines am laufenden Band, hatte eine Ausstrahlung wie kein anderer, volle 10 Punkte, ohne Zweifel."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: LordGabrielwrote on 24.02.2017:[4.0] "Boring wrestler... boring gimmick i don't what some people see at this guy... it was the same thing for a lot of years , ok he was a god tehnician but that's all , he was bad at mic , and overrated , John Cena's 16 times championship is clearly better than Ric Flair's reignins all over the places... really? WCW? NWA? 16 championship in 2 different companies"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Titansrevengerwrote on 04.02.2017:[7.0] "The Nature Boy is an overrated prima donna. His matches were contrived and basic. Sure he had a great character and loads of charisma but his in ring work was unremarkable. To me Ric Flair could hype his matches and trash his opponents but he never truly delivered in the end. Everything was pomp and circumstance which is half the battle but from bell to bell he never fully delivered. Then he eventually became a one trick pony and overstayed his welcome."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Real Raterwrote on 21.01.2017:[8.0] "Ring: Klar ist er wahrscheinlich der beste US Wrestler der 80er aber er hätte auch einfach Mitte der 90er aufhören sollen, deshlab nur 8 P. . 8/10 (50%)  Promos/Schauspieltalent:Auch hier sehr stark. 9/10 (25%)  Charisma/Statur/Gimmick:Früher mit viel Charisma ausgestattet, aber als alter Mann nur noch langweilig. 6/10 (25%)  Sind dann insgesamt 7, 75 Punkte für The The Nature Boy.   = 8 Punkte"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: SrHunterwrote on 20.12.2016:[10.0] "Just one of the best american wrestlers in history, Flair is legendary, the guy breathe charisma and is a beast on the microphone, his feud with Steamboat is legendary, and was given 4 FIVE STARS, the guy don't have his reputation for less, and his post prime work in 2002-2008 was pretty decent too. Anyway one of the best of all-time for sure."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Coltwrote on 08.12.2016:[10.0] "Zweifellos einer der ganz großen im Business und für mich auch immer noch - neben Triple H - der beste Heel-Champion den die WWE je hatte. Großartig am Mic, unvergessen seine Fehde mit dem Macho Man, dazu im Ring ein sehr versierter Techniker und Stratege der selbst gegen schwache Gegner noch gute Matches abliefern konnte. Besondere Aufmerksamkeit verdient die Tatsache, dass er zu Beginn seiner WWE-Karriere bereits über 40 war und trotzdem spritziger wirkte als so mancher Jüngling. Es hat generell eine gewisse Komik wenn sich ein Wrestler "Real World Champion" nennt, doch bei Flair wirkte es überhaupt nicht lächerlich. Er hatte einfach diese Ausstrahlung von Coolness und Überlegenheit, mit der er selbst als Neuling wie eine ernst zunehmende Gefahr wirkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: SPKMwrote on 06.11.2016:[10.0] "As far as I'm concerned Flair is the best wrestler who has ever lived. He's the total package, fantastic on the mic, great wrestling, amazing brawling, extremely over with any crowd he's in front of. He's just the best, the best storyteller in wrestling ever AND he's got the best most iconic mannerisms ever (WOOO, elbow dropping the jacket, strutting) he's just the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MAGICIANwrote on 13.10.2016:[10.0] "Ric Flair gehört zu den besten, den allerbesten aller Zeiten. Einer der einflussreichsten Wrestler aller Zeiten, der wohl Platz in jeder Top20 finden wird. Im Ring eine Ikone, seine Einflüsse sieht man heutzutage sehr, ganz besonders bei jedem einzelnen Chop. Einer der besten Worker aller Zeiten, der beste Worker der 80er im Ring (10/10). Am Mikrofon ist es ebenfalls die volle Punktzahl (10/10), Charisma hat Flair wie kein zweiter (10/10) und auch über seine Ausstrahlung muss man nicht diskutieren (10/10). Ric Flair ist eines der besten Gesamtpakete aller Zeiten und völlig zurecht 20x World Champion gewesen. Insgesamt sind das dann 10. 00 von 10 Punkten - 'göttlich'."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: NastyYaffawrote on 10.10.2016:[10.0] "Ric Flair is without a doubt one of the greatest to ever lace up a pair of rasslin' boots. Incredible as the champ, elevating everyone he faced, a great babyface wrestler (vs. Vader, Starrcade '93), a great heel wrestler (vs. Ricky Morton, Great American Bash '86), charismatic, one of the best talkers in wrestling, brilliant when working on top, brilliant when it comes to selling & still kicked ass from 2002 to 2008 in his last WWE run having quality matches against the likes of Triple H, Edge & Shawn Michaels. Ric Flair is the man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mantafahrerwrote on 17.09.2016:[10.0] "Der einzige Grund, warum Flair hier bei Cagematch nicht der Spitzenreiter der Wresterbewertungen ist, ist weil viele ihn auf seinen eher unschönen zweiten Run bei der WWE reduzieren. Hätte er in den Mittneunzigern aufgehört, würden für ihn nur Komplimente fließen, er war in seiner Prime eines der größten Gesamtpakete der Geschichte mit unglaublichem Charisma und der Fähigkeit, Klassiker mit den richtigen Leuten (siehe Steamboat) zu worken."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CrushBanoncawrote on 05.09.2016:[10.0] "Despite my dislike for Flair nowadays, there's no denying that he is, without a shadow of a doubt, the greatest American wrestler of all time. His work in the ring, on the microphone and in almost every aspect of wrestling in the NWA, WCW and Japan between 1978-1990 is unmatched. In his prime, he could have a great match with a broom, as Dave Meltzer once famously said. He never played politics and worked hard to put everyone over, most importantly Sting and Lex Luger, and in the case of good old Stinger, he made Sting into a star and the face of WCW. His programs and matches with guys like Ricky Steamboat, Terry Funk and Dusty Rhodes are legendary. His run in the WWF had its moments too, with a great program and match with Randy Savage. Nowadays, and really for a quite a long bloody time, ever since 1993 in fact, he's just been an embarrassing shambles of his former self. There's still been some highlights, such as his renewed feuds with Savage and Sting in WCW, his match with Bret Hart in January 1998 and his emotional "retirement" (in quotations because he selfishly broke that after how much WWE gave him a great send off) match Vs HBK at Wrestlemania 24, but in both his personal life and on screen, he's just been an embarrassing old man who just won't go away. His TNA run from 2010-12 was particularly bad. So congratulations on tarnishing your legacy, Ric, but nevertheless he is still one of the all time greats."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Marcoboowrote on 02.09.2016:[2.0] "I just can rate his in Ring working since 2003 and never liked him. This Old school style in his last years – even in time of Evolution was the worst that I have ever seen. A slap here, a whoo there and one FFL in each match. Wow but no thanks. As a manager instead his performance was good - every time. But here I am just rating his in ring skills."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Lutzwrote on 25.08.2016:[10.0] "Ohne Zweifel eine Legende und besten aller Zeiten. Hat leider den richtigen Zeitpunkt zum In-Ring Karriereende verpasst. Für mich klare 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: tobiwwewrote on 13.07.2016:[10.0] "Ich bewerte Ric Flair mit 10 , weil er die Legende ist. Ein Mann der alles mit gemacht hat, er wurde Gehypte, er hat sich hingelegt für Neue Kräfte. Er wahr im Ring sehr gut, sein Charisma ist einzigartig, seine Mic Skills unbezahlbar. Immer gab es Reaktionen auf ihn von den Fans. Whooooooo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: YetiFaunwrote on 29.06.2016:[7.0] "Ric der Nature-Boy... einer mit dem meisten Charisma of all Time... the dirtiest Player of the World.. aber trotzdem kann ich ihm nur 7 Punkte geben... warum? Ich wiß nicht seine Promos waren nie mein Ding, wrestlerisch sicherlich besser als 7 P. aber trotzdem gibt es für mich weltweit viel mehr Leute die eine höhere Bewertung verdient haben.. aktuell als Manager seiner unfassbar nervigen Tochter sehr unnötig, was meine Bewertung sicherlich nochmal etwas herunterzieht."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: mdkarlwrote on 13.06.2016:[10.0] "an argument can be made hes the best ever... people make a fool of themselves with some of these rankings.  even if you personally dont like flairs gimmick when hes 55 years old dont embarrass yourself ranking him if you are completely clueless about flairs career and wrestling history"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Chosen Onewrote on 09.06.2016:[10.0] "WOOOOOOOO! Ric Flair is a true legend and pioneer to the wrestling business. He has captured title and championships such as the WWE and WCW World Heavyweight Championship and is the only two time WWE Hall of Famer among other accomplishments. He has had great feuds, rivalries, promos, and matches in both WWE and WCW. Overall 10/10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ErycK24wrote on 07.06.2016:[9.0] "Back in the 70s, 80s and early 90s he was great. But due to the extra unnecessary 10 years that he wrestled as an old man, Flair buried talent and didn't help bolster some talent. The fact that he could even wrestle in his 60s is remarkable but he shouldn't have wrestled in his 60s."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Randomuser12345wrote on 01.06.2016:[10.0] "It's Ric Flair people. He looked like a million bucks and he made his opponents look the same. The man oozed greatness, and has every right to be considered one of the greatest to ever lace up a pair of boots."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rastarazor1970wrote on 13.05.2016:[9.0] "My idea & opinion of a particular wrestler. Good guy or bad guy got to have some swagger, look good body and outfit. Know how to talk smack or shut it down, and of course have some skills, moves and ability.  Outfit: 9 Body build: 7 Swagger: 10 Smack Talker: 10 Ability: 9 Moves: 9 Single: 9 Tag Team: 8 Longevity: 10 *Comment: "The Nature Boy" Ric Flair is the best of all time. He is the reason for the continuation into the ECW, WWF and TNT. The NWA was the best. No other wrestling character had or has ever had what Flair brought (Period).  Overall Rating: 9. 0"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: JordanACEwrote on 11.05.2016:[10.0] "Probably the greatest of all time.  Flair had it all. The look, the skills, the charisma. Basically, the total package!  He had so many classics, the guy is just iconic. Oh, yeah... WOOOOOOOOOO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mizzle Assault Antwrote on 05.05.2016:[10.0] "Perhaps the best of all time, classic matches in no less than 4 decades and an iconic character to boot. Amazing promos, amazing charisma, anybody who doesn't see Flair as an all time great is crazy in my book. He can't be judged on his very, very late career, because that's only the tiniest tail end of the incredible complete package that was Flair."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: EGeraldhuebnerwrote on 28.04.2016:"(wie z. B. auch Hogan) "Meister" seiner berühmten Aktionen (im Unterschied zu diesem nur dermaßen gut, witzig unterhaltend bzw. talentiert) ... 1. laufen, stolzieren (auch der beste Gegner sieht dabei lächerlich aus), - sobald er getroffen wird, taumeln, umfallen (auch der schlechteste Gegner sieht dabei gut aus), 2. üble, aber immer wieder herrlich gerissene, verschlagene, listige Aktionen ("the dirtiest Player in the Game"), genau so muß ein "perfekter" Heel einfach nur sein, 3. Chops (Schläge gegen den Hals, die Brust ... wird als Referenz von anderen imitiert) 4. der Figer for Leg Lock (zwar unspektakulär, aber grandios ... gerade durch seine geniale Schow dabei) , 5. sein ganzes abfeiern hinterher oder auch mal zwischendurch ... inklusive dem berühmten "Wooooooo". Ric ist der größte Entertainer von allen in diesem Geschäft. Wie oft hat er eigentlich schon aufgehört und kurz darauf erneut ein Comeback gemacht ? ^^ Mr. Flair wird eines Tages vor laufender Kamera im Ring sterben (wie Terry Funk oder Mick Foley) und ich glaube inzwischen, das würde allen von ihnen sogar sehr gefallen."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: killowenskillwrote on 27.04.2016:[10.0] "The best wrestler of his era and the owner of the nine honored the highest ratings. Especially, of course, remember the matches with Steamboat, which have become a real breakthrough in its time. As Flair terrific speaker and winner of extraordinary gimmick, played with enthusiasm. The greatest man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mean Smark Callouswrote on 13.04.2016:[7.0] "Way overrated. Sure he was awesome back in the 70-s to early 90's but he continued WELL past his prime. Notorious for holding other wrestlers back while he continued to hoard the main event spot despite clearly being too old to be believable in a fight. incredibly lazy conditioning, flabbiest crappiest body I've ever seen on a World Champion. Sure he had Mic skills but the man constantly oversold everything, and again, put on a shirt bro. Bonus points for his penchant for blading though. Also, Scott Steiner made him cry. Seriously, just ask him and Shane Douglas about "Dick Flair"."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Doctoriusefulwrote on 05.04.2016:[10.0] "Hat mehrere Jahrzehnte technisch im Ring und am Mic auf Weltklasselevel geworked. Hat das wohl einflussreichste stable mitbegründet. Hatte auch Talent zum Humor. Niemand anderes konnte so lange so überzeugen. Zu Recht Rekordchampion und der GOTT des Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: BadAssChonowrote on 12.03.2016:[8.0] "Ich verstehe diesen Hype um Flair gar nicht. Ich fand seine Ring Performance nie so toll und sein Moveset ist sehr begrenzt. Die starke Ringpsychologie von ihm kann da auch nicht alles ausbügeln. Sein komplettes Micwork ist einfach nur schlecht. Man kann ihn dadurch in keinster Weise ernst nehmen. Er lispelt und spricht so als hätte er vor jedem Auftritt 10 Bier konsumiert. Und auch diese ganzen "Woooooo" Chants verhelfen ihm nicht zur Glaubwürdigkeit. Vll war er in den 80zigern ja Weltklasse aber ich kennen ihn erst seit Anfang der 90er und war nie von ihm begeistert.  EDIT: Früher wesentlich besser als in seiner WWE Zeit -> korrigiere meine Wertung um 2 nach oben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: inZideoutwrote on 27.02.2016:[9.0] "One of wrestling's greatest heels had legendary rivalries with the likes of sting and Hulk Hogan a true legend"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MrPogowrote on 19.02.2016:[5.0] "Ric Flair ist nicht leicht zu bewerten; auch zu seinen besten Zeiten technisch an der ein oder anderen Stelle oftmals unsauber gewesen und hat im Prinzip seine gesamte Karriere über ein und das gleiche Match nach dem gleichen Schema und mit dem gleichen begrenzten moveset gewrestled. Andererseits sehr charistmatisch, war jederzeit in der Lage die crowd mitzureißen und sehr gutes Selling. Ist unterm Strich jedoch meilenweit davon entfernt (einer) der beste(n) Wrestler aller Zeitet zu sein; diese (Fehl-)Einschätzung ist wohl vor allem dem hypen Dave Meltzers geschuldet."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheLoudMouthwrote on 17.02.2016:[7.0] "Toller Wrestler, toller Micworker, haufenweise Charisma - in den 80ern und 90ern hätte er wohl die volle Punktzahl bekommen. Für das Trauerspiel in den letzten Jahren muss ich aber ein paar Punkte abziehen, da er dort sein Lebenswerk schon arg eingerissen hat. Zudem als Manager seiner Tochter etwas penetrant und in meinen Augen nicht sonderlich förderlich."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DanTalksRasslinwrote on 25.01.2016:[10.0] "There isn't much to say about Ric Flair that hasn't already been said thousands of times before.  Perpetually in the conversation of "greatest of all time, " Flair essentially innovated the concept of the "cool heel" and, with the Four Horsemen, the concept of an elite heel stable.  One of the most charismatic promo men wrestling has ever seen, he knew exactly how to push the crowd's buttons to draw maximum heat, and had the technical prowess in the ring to back up his words and dirty tactics.  Possibly the top-drawing heel of all time.  Part of innumerable mat classics over the course of a near-four-decade in-ring career (including one of my personal favorite match series, a trilogy against Ricky Steamboat in 1989 NWA; the finale of which at Music City Showdown is one of my top five matches).  Even after his in-ring career started down he continued finding ways to contribute as an ambassador, on-air official and in somewhat underrated managerial roles, including as a manager/semi-active wrestler with Evolution, for AJ Styles, Fo(u)rtune and Gunner in TNA, and currently for his daughter Charlotte in WWE.  There will truly only ever be one Nature Boy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: HeinrichC75wrote on 20.01.2016:[4.0] "Hab nie den Hype um ihn verstanden. Hat mir als aktiver Wrestler nie gefallen, andere waren da einfach um längen besser. Warum 16 mal den Titel? Und an der Seite seiner Tochter nervt er nur noch. Zudem verstehe ich ihn nur sehr schlecht, da er sich anhört, als wäre er dauerbesoffen."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Oddark123wrote on 08.01.2016:[9.0] "Ric Flair is a legend to the business. He has done a lot and even if his ring work in his older age deteriorated his presence and mic work has not. Ric Flair's name will always be mentioned in wrestling circles because in some respects when he said he was the best he went out of his way to prove it. I give him a high score and will wooo proudly to back it up."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Squared Circlewrote on 09.11.2015:[10.0] "He belongs with Hogan, Bruno and Andre on the Mount Rushmore of Wrestling.  Fantastic on the mic and mat.  Along with the Roadwarriors, kept the NWA afloat and relevant while Hulkamania was running wild.  He could tag with anybody and feud with anybody.  His longevity was incredible.  The consumate wrestling professional, with a gimmick all his own."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Titanwrote on 28.10.2015:[10.0] "Flair hätte seine Karriere vllt. 2-3 Jahre früher beenden sollen und uns das Elend ersparen sollen. Nichtsdestotrotz muss man ihn für seine illustre Karriere, seine Mic-Skills und sein Engament, Gegner und Fehden over zu bringen, loben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sascha Legendkillerwrote on 16.10.2015:[8.0] "WOOO! The dirtiest player in the game war immer schon ein guter Wrestler, der fast allen unfairen Tricks kannte. Ric Flair war auch als Face nicht schlecht. The Nature Boy war ein sehr guter Wrestler, aber nicht Weltklasse."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ggultra2764wrote on 08.10.2015:[9.0] "Easily among the all-time pro wrestling greats. Ric's gimmick as a high-class and flamboyant playboy gave him plenty to show off his excellent promo delivery and charisma that allowed him to get over with fans as both a heel and face, especially during his times with the different formations with the Four Horsemen. While his moveset was somewhat limited due to injuries he sustained during a 1970s plane crash, he made up for this with great in-ring psychology as he knew when to deliver moves and resort to rule-breaking gimmicks to get his act over and make his foes look good in the ring, having memorable rivalries with the likes of Ricky Steamboat, Sting and Vader. His more reserved pro wrestling style was serviceable as such where he wrestled well into his 50s and could still carry his end of a match during his 2000s run in the WWE. His legacy is somewhat tarnished in that he still doesn't know when to let go of being in the ring as he still wrestled during his TNA run in spite of having a rather memorable sendoff in 2008 from WWE following his Wrestlemania loss to Shawn Michaels. Still, there's no denying that the Nature Boy is easily among one of pro wrestling's most memorable characters."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DanielBryan1986wrote on 24.09.2015:[6.0] "In der WCW manches Mal fehl platziert. Gegen Macho Man aber gerne gesehen. Ich sah ihn gerne in der WWE gegen Undertaker, Vince McMahon, Triple H und natürlich zuletzt gegen Shawn Michaels. Würde voller Abgang, hätte aber wie HBK dann auch wirklich aus dem Ring bleiben."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Vertebreakerwrote on 10.09.2015:[10.0] "The fact that Flair doesn't have at least a 9. 00 overall rating is a joke, he is easily one of the ten greatest wrestlers ever, any time period, any nation."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: New Strategywrote on 24.08.2015:[10.0] "Ich muss gestehen, dass ich lange Zeit kein Freund von Ric Flair war. Für mich galt die Regel, kennst du ein Match mit ihm, kennst du alle. Außer Chops kann der nichts. Das muss ich mittlerweile revidieren.  Klar gab bzw. gibt es Wrestler, die ein größeres Repertoire an Moves auf dem Kasten haben. Ebenfalls gab/gibt es größere Highflyer und Muskelprotze im Wrestling-Business.  Aber es gibt so gut wie kaum einen, der nur halb so gut wie er, die Wirkung von Schlägen, Tritten und Moves verkaufen konnte. Dazu hatte er eine Ausstrahlung und Fähigkeit am Mikrophone, wie sie kaum ein anderer hat/hatte.  Gerade seine Fehde gegen „Ricky Steamboat“ und „Kerry von Erich“ hat mich eines besseren belehrt und mich tatsächlich zu einem Fan des „Nature Boys“ gemacht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kevin434wrote on 23.08.2015:[10.0] "Was anderes als eine 10 kann man nicht geben, richtig gut im Ring, dazu mic work und natürlich das charisma, er ist eine wahrhafte Legende und alles andere als eine 10 ist auch hier undenkbar."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Gorillapresswrote on 08.08.2015:[10.0] "Ich weiß nicht warum, aber ich habe ihn immer gerne gesehen! Auch wenn er bei vielen verhasst war. Allein seine Showeinlagen Whhoouu ;) waren sein Geld wert! Gehört ganz klar zu denn besten überhaupt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Viper99wrote on 15.07.2015:[10.0] "Der mann war UNANTASTBAR! Er war einer der besten im Ring und am Mic! Er ist vor Charisma fast explodiert! Aber die betonung liegt auf War! Denn wenn heute mal der Nature Boy am Mic ist ist er meistens betrunken und lallt vor sich hin. Trotz seines alters hatte er aber noch solide Matches gegen ua. Mr Kennedy, MVP und Shawn michaels gezeigt! Am Mic war er vor einen paar jahren auch noch der hammer gerade in TNA mit seinen unglaublichen duellen gegen Jay Lethal! Trotzdem allem Noch und ich hoffe das bleibt erstmal so der Rekord World Champion und einer der besten aller zeiten! 1 Punkt abzug für teils peinlich betrunke auftritte und für sein , , Karriereende" was nach 2 Wochen bei TNA vorbei war"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: PWCwrote on 24.06.2015:[8.0] "Ric Flair was a trendsetter for the WWE since the company's heydays in the 1980's. Ric Flair left such an impact to the company, that fans STILL often chant "WOOOO! " before the show goes live. A lot people in 2015 STILL regard the legacy Ric Flair left behind and not that many people (of his age) can do that. I thought about giving him a 9 or even a 10, but I obliged given his time in TNA (2010-2013) was nothing but a complete waste of time."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Movadowrote on 29.05.2015:[9.0] "Hätte er es bei dem Karriereende 2008 belassen, dann wäre es noch eine 10. Ohne wenn und aber. Da er jedoch seit dieser Zeit sein eigenes Vermächtnis mit den Auftritten bei TNA (die Australien Tour lasse ich außen vor, war auch Schrott aber verzeihbar) definitiv beschmutzt hat und seine Art Promos zu halten mir heuer bei einem alten Mann wie ihm sehr unpassend vorkommt, ist es nichts mehr mit der 10. Sorry Ric, aber du hättest es sein lassen sollen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Zedwrote on 20.05.2015:[10.0] "Wieso sich alle wegen seinem nicht-Karriere Ende aufregen verstand ich noch nie. Er war nicht der erste der das so gemacht hat, und wird auch nicht der letzte sein. Nun ja, wie auch immer. Ric hat die 80er geprägt, zumindest für NWA und Jim Crockett. als er denn in der WWF auftauchte war es so als sei der Feind gerade einmarschiert. Später in der WCW in fast jedem wichtigen Angle involviert gewesen, aber niemals in der nWo. Und dann wäre da natürlich noch das beste und prägenste Stable aller Zeiten, die Four Horsemen, auf deren Legacy auch später die Evolution entstand, ebenfalls mit Flair.  Promos hielt er immer sehr gute, siehe seine letzte WCW Promo, welche nur so vor Wahrheiten strotzt. Und außerdem ebnete er den Weg für viele Heels damit, dass Ric Flair immer schon "the dirtiest player in the game" war. Alles andere als ein 10 ist lächerlich. Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CAIIIAwrote on 20.04.2015:[4.0] "Konnte ehrlich gesagt nie was mit seinem Gimmick und seinem Auftreten im und außerhalb des Rings anfangen. Technisch seh ich ihn auch nicht überragend. Dazu das verpasste Momentum bezüglich Karriereende, stattdessen noch mit über 60 in Ring gestiegen... etwas peinlich sogar leider... durfte vieles gewinnen aber nun ja... insgesamt für mich weit weniger "wichtig" für das Business gewesen als ein Hogan."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Damsparkywrote on 07.04.2015:[10.0] "The Nature Boy... the undisputed best mouth in wrestling. Flair had it all and could use it. Very athletic, a great brawler, and a mean mouth with attitude. One of the best."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Valiuswrote on 25.02.2015:[7.0] "Hätte er nach dem Match gegen Shawn Michaels wirklich seine Karrier beendet gäbgs hier die 10. Aber 3 pkt Abzug für die Peinlichkeiten bei TNA..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Hob-Deeewrote on 29.01.2015:[10.0] "Einfach einer der besten, in der WCW war er genial und seine Evolution Zeit war der Hammer, seine Promo 2003 bei Raw kurz bevor Bad blood gegen HBK einfach zu cool.... WOOOOOOOOO.... Eine wahre Legende, the real World Champion!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: dan7joneswrote on 29.01.2015:[10.0] "Just trace his history and see how this man is on of the foundations of the business, every wrestler has their fans and critic's but this man is one of the greatest of all time, in that ring, on the mic and in front of any crowd."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: hosswrote on 26.01.2015:[10.0] "Der größte den es je im Wrestling gegeben hat. Nicht umsonst hat er so viele WHC-titel bekommen. Er hat technisch einwandfreie Leistung gebracht und war auch nie um eine etwas unsauberere Art verlegen. Aber so muß das ja auch. Unvergessen auch sein Wirken mit den 4 Horseman, allesn voran zusammen mit The Enforcer AA Arn Anderson. Meiner Meinung nach ist Flair Mr. Wrestling, nicht dieser Hogan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Palace of Wisdomwrote on 24.01.2015:[10.0] "Mein absoluter Favorit und Held aus der Kindheit. Wenn einer den Titel Legende verdient hat, dann er."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: bigdaddy1wrote on 20.01.2015:[10.0] "The greatest of my lifetime.  He could do it all - great promos on the mic; 60 minute matches (often carrying his opponents), charisma; and way overlooked athleticism.   Everyone one either wanted to be Ric Flair or hated him. He is the prototype that all other wrestlers tried to emulate."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: llboxingwrote on 14.01.2015:[6.0] "Had a great gimmick of the high living playboy.  Excellent on the mike.  Great charisma and personality.  In the ring, he was great at selling and had great cardio. Made his opponents look like a million bucks. Always told a good story.  The downside? Lacked an impactful and diverse offence.  Relied on the same 4 or 5 comedy spots in every match.  Lacked chemistry with certain opponents.  Wrestled years past his prime, tarnishing his legacy.  Recent appearances on WWE television are awful."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The5thHorsemanwrote on 07.01.2015:[10.0] "Simply one of the best.  Wrestled at an extremely high level for decades and contributed some of the best promos and matches in wrestling history."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Matzinhowrote on 03.01.2015:[9.0] "In den 70ern war Flair eine Weile auf der Suche nach dem richtigen Gimmick, hat sich Elemente von den richtigen Leuten abgeschaut und sein Move-Arsenal entwickelt. Ende der 70er hat Flair zunehmend seine Selling-Fähigkeiten verfeinert, Gimmick und Kampfstil gefunden und sein Potenzial bestätigt. In den 80ern kam dann die Hochphase mit den Four Horsemen, Perfektion und Revolution am Mikro, Match-Klassikern und World Heavyweight Title-Gewinnen - kurzum die totale Dominanz der NWA und die Entwicklung zum Zugpferd und Kassenschlager. Alles was von Flair danach kam, ist meines Erachtens beinahe nicht der Rede wert. In der WCW hatte Flair Anfang der 90er nochmal eine gute Phase mit weiteren World Title-Gewinnen und einigen finalen Match-Klassikern. Es wäre DER Zeitpunkt gewesen, um im Alter von etwas über 40 Jahren fünfe gerade sein zu lassen und aufzuhören. Stattdessen hat sich Flair in viel schlechtes WCW-booking einspannen lassen, das ihn und die Horsemen demontiert und zerstört hat. Letzte kleine Glanzlichter von Flair waren danach Auftritte bei der WWE als Nicht-Aktiver und die Mitgliedschaft bei Evolution. Hätte er es wenigstens dann nach dem letzten großen Match gegen Michaels sein lassen ... aber nein, dann der Rücktritt vom Rücktritt, Auftritte bei der Hulkamania-Tour und TNA des Geldes wegen. Er hätte eine überlebensgroße Legende sein können, ist für mich aber nur noch ein armer alter Mann, der den Ausstieg verpasst hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: zackwoowoowooryderwrote on 28.12.2014:[9.0] "Einer der besten Männer die es je im Wrestlinggeschäft gab, er ist einfach eine Legende, aber dennoch finde ich ihn nicht so stark wie andere seines Kalibers, z. B. Michaels oder auch Mr. Perferct."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Y2J316wrote on 28.11.2014:[7.0] "Warum eigentlich Nature Boy? Woooooo. Kenne nur wenig von ihm als Wrestler. Mehr als Manager von HHH und als mitglied von Evolution. Da war er top und es war immer wieder lustig ihn zu sehen. Er hat halt selber schuld das er heute noch wrestlen muss, wenn er seine Kohle auf den Kopf haut."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: 8BitLegendwrote on 21.09.2014:[9.0] "Irgendwie ist er eine tragisch-komische Figur und verkörpert somit die verschiedenen Facetten des Wrestlings wie kein Zweiter. Ich liebe seine überdrehten Promos. Die wurden im Alter sogar noch besser. Wrestlerisch halte ich ihn - wir viele seiner Generation - für limitiert, dennoch gab es zahlreiche großartige Matches mit seiner Beteiligung. Unterm Strich eines der Gesochter des Sports. Ein echtes Original."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: GabrielMasterwrote on 07.07.2014:[10.0] "Ric Flair this guy yes I can say is one of the wrestlers that marked me in all my years of wrestling, in addition to having an incredible charisma, is one of the best heel's in my opinion, I can easily say that he is the greatest of all time has always been a big star in wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Hirnklopswrote on 12.05.2014:[9.0] "Ric Flair... 10 Punkte? Nein. Hatte ich ihm mal gegeben... Warum? Weil er einfach eine der coolsten Schlangen ist / war, die jemals in einem Ring gestanden haben, ein "Complete Package", die einfach jede Disziplin beherrscht haben: Reden, wrestlen, cool sein, sich selbst cool inszenieren, mit der Menge spielen, legendär sein. Von daher Alles richtig gemacht. Wer aber das vielleicht emotionalste Retirement nimmt und darauf uriniert, indem er einfach so wieder in den Ring zurückkehrt, der... Der kann einfach keine 10 Punkte bekommen. Geht nicht. Ehrlich nicht. Ich liebe Flair, aber... Nein."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: alcoholicmetalmayhemwrote on 22.04.2014:[10.0] "The Man the Myth the Legend! Stylin and Profilin! Slick Ric. The greatest wrestler in all professional sports. Ric Flair war so gut, weil er sich und dem Business immer treu geblieben ist. Er war es, der seine Gegner nicht nur gut aussehen lies, sondern nachhaltig auch besser machte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Macho Manwrote on 19.04.2014:[5.0] "Guter Wrestler er hatte ein großes Arsenal an guten Techniken.  Er hätte viel früher aufhören müssen."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DieOffenbarungwrote on 03.04.2014:[4.0] "Ein wirklich großer am Mic und im Ring stets unterhaltsam und auch alles andere als untalentiert. Jetzt kann man sich fragen, warum denn eigentlich nur 4 Punkte! ? Das kommt leider daher, das Flair sein eigenes Lebenswerk ruiniert hat. Er hatte mit seinem damaligen Abschied von der WWE eine Legende geschaffen. Stark und emotional das Match und das Ende von Ric gegen Michaels. Hätte er damit aufgehört, wär es wirklich die perfekte  Karriere gewesen. Stattdessen entwürdigte er diesen Moment und seine eigene Karriere, weil er offenbar nicht akzeptieren wollte das seine Zeit nun abgelaufen war. Dies führt leider zu einer unterdurchschnittlichen  Bewertung. Tut mir leid, Flair."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Foleysbabytoywrote on 26.02.2014:[10.0] "Eine einzigartige Karriere mit einzigartigen Fehden und einem einzigartigen Stable. Die Momente, die uns Richard Fliehr hinterließ scheinen unbezahlbar. Ob es seine Fehden gegen Steamboat, Rhodes oder Harley Race sind. Seine Promo gegen Bishoff, der Royal Rumble 92 oder seine Zeit bei der Evolution. Flair war immer Gold wert. Ein sehr guter Wrestler. Eine überragende Erscheinung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Phenomenal91wrote on 26.02.2014:[10.0] "The greatest wrestler who ever lived. When I think of wrestling, I think of this man. A living legend, whose work will never be topped or equaled."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MEGAMONKEYwrote on 29.01.2014:[10.0] "Whoooooooooooo! Legende. Ich kann mich an kein Match erinnern in dem er nicht unterhaltsam war, selbst zu seiner gruseligen TNA Zeit."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: yanuswrote on 15.12.2013:[10.0] "Incredible in-ring skills, great on the mic, charismatic and a draw - Flair had it all. Wrestled most matches very similarly - but they were till 1990 always highly entertaining. In regards to stamina maybe the best wrestler ever. His only little weakness was probably his average physique."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: donkitrk99wrote on 27.11.2013:[10.0] ""Its a shame there is no rating system that encompasses someone's career.  I suggest that for wrestlers past a certain age, or no. of years wrestling, or no. of years since they have been fully active, or maybe when they are eligible for WON HOF they have three different rating scores: The score they have gathered all along can be closed, and finalized. A score representing their prime (which voters could vote on henceforth). And a score representing the voters' opinion of their career as a whole (to be voted on henceforth).   Flair, if he isn't the very best, its got to be a tie. I've given a perfect rating to 11 matches in my lifetime, and 3 of them are Flair's series of matches in '89 with Steamboat. Stories of his cardio and resiliency are legendary - like Terry Taylor (on WWE's Legends of Mid South DVD) talking about how drunk and disheveled Flair still was when he showed up for Taylor's NWA title shot and how livid he was. Going beyond kayfabe, Taylor actually had to ask Flair to go to the finish in this match about 45ish minutes in because he could no longer keep up with the impossibly fit champion. WWF history is missing a few things, but one of the biggest is WM VIII not being main evented by Hogan and Flair with a proper build."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: daniel cassidywrote on 18.11.2013:[10.0] "Simply the greatest wrestler of all time. There will never be another pro-wrestler of Ric Flair's level."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Martyrswrote on 03.11.2013:[10.0] "Ric Flair ist in meinen Augen der beste Wrestler aller Zeiten. Nicht nur seine großartigen Promos und seine technischen Fähigkeiten im Ring sprechen für sich, sondern vor allem die Tatsache, dass er jeden, JEDEN seiner Kontrahenten gut aussehen lassen konnte, machen ihn zu einem der ganz Großen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Daneraswrote on 03.11.2013:[7.0] "Er war und ist am Mic fast immer unterhaltend. Seine Kämpfe sahen für mich meist zu theatralisch aus. Er bettelte sogar fast alle Matches, und nach den Schläge ins Gesicht stolperte er oft zu extrem gestürzt. Kein Witz, ich habe ihn ewig alt empfunden, und staunte richtig, dass er doch so lange Wrestling gemacht hat. Er sah für mich wirklich nicht jung aus, sondern alt. Deswegen war das ganze Bild an ihm für mich etwas komisch gewesen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Giftzwergwrote on 13.09.2013:[9.0] "Was soll man da noch sagen. Habe ihn insbesondere als Heel sehr gerne gesehen. Guter Techniker, wenn auch nicht der Beste. Am Mic und in Promos spitzenmäßig, und er ließ dadurch einen Hulk Hogan Anfang der 90er in der WWF ganz alt aussehen. Seine "Kopf über Faller" waren einfach legendär. Den Besten davon zeigte er im Royal Rumble 1992, nachdem er diverse Schläge vom Texas Tornado eingesteckt hatte. Er ist eine Legende und hat diesen Sport wie fast kein Zweiter geprägt. Den einen Punkt Abzug gibt es dafür, daß er den Absprung aus dem aktiven Geschäft einfach zu spät vollzogen hat. Mit über 60 Jahren noch gegen 30 - 40 Jahre Jüngere anzutreten war einfach unclever, da es in diesen Matches aufgrund des Altersunterschieds einfach an Glaubwürdigkeit gefehlt hat. Hätte um das Jahr 2000 herum seine Karriere beenden sollen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Alex Maedawrote on 08.09.2013:[8.0] "Zwei Punkte Abzug für (fast) alles, was nach dem Retire Match gegen Michaels kam. Bei TNA hat er als Manager von AJ Styles gut funktioniert und ihm ein wenig Glanz übertragen, sonst war sein letzter Run wirklich überflüssig, vor allem die Schmach, dass er noch mal in den Ring gestiegen ist und teilweise sogar deutlich jüngere und fittere Leute gedepusht hat. Sonst ein ausgezeichneter Performer, der selbst in seinen letzten WWE-Jahren ab und zu noch ansehnliche, spannende Matches auf die Beine stellen konnte. Meine Antiphatie gegen ihn hin oder her."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CrIppIL3RTIRiXwrote on 17.07.2013:[7.0] ""Der Alte" Flair. Er war schon seit dem Anfang der 90er ein alter Mann. Seine beste Zeit hatte er in den 80er gegen Funk, Steambot, Sting und den Von Erichs. Er wurde auch zu Recht "Der Ring General" genannt.  Flair war/ist auch ein Mann der sich einfach am Mic hoch reden konnte.  Er war der Mann der die Fans mit seinen Promos unterhalten hat, in den 90er war ein durchschnittliches Jahrzehnt, aber auch mit Schattenseiten wie der Horseman reunion. In der WWE/F Zeit war das beste natürlich die Evolution Zeit und wo er die Jungstars nochmal versucht hat Over zu bringen.  Das beste Match seiner Karriere war für mich auch sein letztes, gegen Shawn Michaels  SORRY RIC, I LOVE YOU"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: test85wrote on 25.06.2013:[6.0] "Komplett überbewertet. Hat den richtigen Zeitpunkt(1998-99) verpasst um seine Karriere zu beenden. Sicherlich am Mic toll, aber wrestlerisch fand ich ihn nicht so gut. Da sind und waren HBK, Y2J oder auch Mr. Perfect besser."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: HooliNerdwrote on 10.04.2013:[9.0] "In der Wrestlingwelt zuhause. Es gibt wohl nichts, was der Nature Boy bisher nicht vollbracht hat. Ich hoffe bloß, dass er mittlerweile eingesehen hat, dass er zu alt für den Ring geworden ist."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: KASHwrote on 30.03.2013:[10.0] "So, ich musste mal meinen Schwachsinns-Kommentar von vor 3 Jahren revidieren. Damit gehts auch von 7 Punkten rauf auf die Vollpunktzahl. Ric Flairs erster WWE Run gehört heute zu meinen liebsten Phasen im Wrestling. Die Promos, der Glanz und der Charakter den dieser Kerl verkauft hat sind unbeschreiblich. Dagegen wirkte Hulk Hogan direkt wie der Clown der er war. Kann mir vorstellen, dass Flairs Glämmer ein Grund war wieso Vince 2 Jahre danach die Schnauze voll von Hogan hatte.  Ansonsten verdient sein Lebenswerk nur 10 Sterne."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Play2Xwrote on 11.03.2013:[9.0] "Hätte er nach seinem Match gegen Michaels aufgehört, wäre es wohl eine ewige 10 geworden.  Aber mit jedem Jahr, welches verstreicht, wird es schlimmer.  Immerhin scheint er sich jetzt endgültig zurückzuziehen, daher immernoch 9 Punkte.  Die Wertung an sich sollte logisch sein. Große Gestalt im Wrestling, mit atemberaubenden Matches, bis ins hohe Alter. Außerdem blutet wohl niemand so schön wie er..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Yoyowrote on 21.10.2012:[10.0] "Ric is the greatest and there's no way around it. For all he's done for wrestling over the course of his career he really is the Man. Woooooo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Nachtfalterwrote on 22.09.2012:[10.0] "Als Person in so ziemlich jeder Hinsicht verabscheuungswürdig, aber das bewerten wir hier ja nicht. Im Ring und am Mikrofon natürlich völlig fraglos einer der Besten aller Zeiten, der zu seinen besten Zeiten selbst mäßig begabte Leute zu herausragenden Matches ziehen konnte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: LM Punkwrote on 30.08.2012:[8.0] "Toller Entertainer der leider zu lange im Ring stand un so doch sein Bild nachhaltig negativ beeinflusst hat."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: rika24143wrote on 23.08.2012:[8.0] "Eigentlich hätte Ric 10 Punkte verdient.  Jedoch versaut er sich seinen Ruf in den letzten Jahren, indem er wie Terry Funk, den Rücktritt vom Rücktritt vom Rücktritt inziniert.  Ich finde es ist die Zeit gekommen, dass Ihm eine Promotion mal die kalte Schulter zeigt und ihn dahin schickt, wo er hingehört, in Rente"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Undertaker555wrote on 20.08.2012:[5.0] "Auf jeden Fall eine Legende aber ich finde hätte er den Wechsel zu TNA gelassen würde ich ihn auch besser bewerten und alle würden sich an ihn besser Errinern. Abgesehen davon ist er einer der Größten und 40 Jahre Erfahrung kann (fast) niemand vorweißen. Woo!"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Hankinswrote on 11.08.2012:[6.0] "Ein Mann, der mich persönlich unglaublich nervt. Ich halte von seinen In-Ring Fähigkeiten nicht viel und teile keineswegs diese Begeisterung über seine angeblich so tollen Fähigkeiten im Ring. Fakt ist, er hat das Wrestling geprägt und steht neben Hogan wie kein anderer für den Boom der 80er und 90er. Trotzdem bleibt es für mich ein Phänomen, dass so ein Mann diesen Legendenstatus erreicht hat. PS: Seine lächerlichen Hinfaller fand ich besonders grausam."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: steviecwwrote on 15.07.2012:[3.0] "I wasn't a great fan of his shouty shouty nonsense glory days anyway but the last 15-20 years of his career have been the absolute abyss. They can't bury this guy deep enough in the hall of fame for me. By all means show his old matches where relevant but keep this man as far away from national television and PPV (even IPPV) as possible."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ARIZAwrote on 15.06.2012:[8.0] "Insgesamt natürlich einer der größten und besten, die je im Ring gestanden sind und hatte bei WrestleMania 24 eigentlich auch den perfekten Abschied. Schade, dass es nicht dabei geblieben ist und er seine Legende so schändet und auch im Privatleben leider nicht so großartig ist, wie er es im Ring einst war, weshalb er erst in der Situation ist, in der er sich heute befindet."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kitanoyamawrote on 19.04.2012:[10.0] "Überall wo er ist, bei TNAW mit Abstrichen, hat er die Massen an sich gezogen. Er ist technisch sehr versiert, hocherfahren und seine Promofähigkeiten gehören natürlich auch zu den besten. Er gibt nach außen hin nicht viel her, aber wenn man ihn eine Weile gesehen hat, kann man ihn lieben/respektieren oder hassen. Meinen Respekt hat er auf jeden Fall. Ich hoffe nur das er sich den Kredit, den er sich über all die Jahre bei den Fans erarbeitet, nicht irgendwann doch wieder verspielt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Senajwrote on 27.01.2012:[10.0] "Wenn man von einer Wrestling Legende spricht, dann spricht man von Ric Flair. WOOOOOOOOO"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sirius Van Grathwrote on 19.01.2012:[9.0] "Mit TNA hat er seiner Legende geschädigt. Nicht wegen TNA selber, sondern da er schon "retired" war und dann wegen Geld-Problemen zu einer Liga unter seinem Niveau ging. Aber weil er wirklich eine wahre Legende und ein großartiger Ring-Worker ist, kann ich ihm einfach nicht schlechter als 9 bewerten!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mark Henry 95wrote on 07.01.2012:[10.0] "10 Punkte , er war der Wrestling - Gott der 80er und ist nicht umsonst ein 16facher World Champion. Da gibt es nur eins zu sagen Woooooooooo"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Teekaywrote on 27.10.2011:[1.0] "Ich mochte Flair noch nie, dennoch hab ich immer respektiert, was er für das Biz getan hat. Sein Rücktritt hätte ein grandioses Finale dargestellt. Leider hat er durch sei Comeback seine Legende zerstört. Heutzutage macht er sich nur noch lächerlich."
Rating: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: VanderVaartwrote on 16.09.2011:[9.0] "So lange wie der Nature Boy hat niemand im Ring gestanden. Viele Matches sind noch heute legendär. Kaum jemand erlebt, der das Wrestling so gelebt hat. Wooooo. Geld auf die hohe Kante zu legen ist nicht sein Ding. Deshalb trat er auch noch mit 55 in den Ring. Die Zeit in der WWE als Wrestler war deshalb nichts besonders. Ausgenommen natürlich die letzten 6 Monate. Flair wäre aber nicht Flair, wenn Natche jetzt nicht bei TNA wäre. In dem hohen Alter ist es auch besser, als Manager zu fungieren. Er wrestlet trotzdem..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rated R Punkwrote on 06.09.2011:[7.0] "Natürlich ist Ric eine Legende keine Frage, aber er verdierbt all seinen Ruhm immer mehr durch TNA... Ich finds echt traurig wenn ich bedenke was er früher alles geleistet hat und ich ihn gerne volle 10 Punkte geben würde..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Golgotawrote on 04.09.2011:[9.0] "9 Punkte für seine großartige WCW-Zeit als Natureboy und die ausgezeichnete Unterhaltung, die er bis zu seinem grandiosen zu Tränen rührenden Abschied in der WWE geleistet hat. Alles, was danach und in seinem Privatleben geschah, interessiert mich nicht."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheRatedRLegendKillerwrote on 27.08.2011:[10.0] "Natürlich schon lange nicht mehr die wrestlingtechnische Messlatte, doch was Flair in knapp 30 Jahren für sein Vermächtnis getan hat, kann auch eine diletantische Chaotenliga wie TNAW nicht mehr zerstören. Einer der wirklichen Legenden dieses Businesses..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Fall Out Boywrote on 27.08.2011:[8.0] "Hier bedarf es wohl doch einer Aufwertung. Trotz seinen sehr unrühmlichen Auftritten in der nahen Vergangenheit, ist Flair doch einer der Größten aller Zeiten. Dabei find ich ihn am Mic nicht mal so gut und auch seine Matches liefen oft nach dem selben Schema ab. Das was in diesem Jahrtausend kam, kostet ihm aber die 2 Punkte für die Bestbewertung."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rated R Champwrote on 27.08.2011:"Es ist auf eine traurige Art erstaunlich, wie sehr Ric Flair es in den vergangenen Jahren geschafft hat, sein Vermächtniss selbst in den Dreck zu ziehen. Der Nature Boy war, auch wenn es technisch immer bessere gab, für lange Zeit eines der besten Gesamtpakete im Wrestling und auch wenn er zu seiner WWE Zeit nach der Jahrtausendwende seinen Zenit bereits überschritten hatte, hatte er dank seines Gimmicks und seines einzigartigen Charismas immer eine klare Daseinsberechtigung. Es würde mich auch nicht störem, dass Flair nach seinem grandiosen Abschied gegen Shawn Michaels noch im Wrestling Business verblieben ist, wenn er sich denn auf die Rolle des Managers oä beschränkt hätte. Allerdings sah es in den letzten Jahren regelmäßig danach aus, dass Flair nur noch darauf aus ist, auch noch das letzte bisschen Geld, dass mit seinem großen Namen zu machen ist rauszuholen, wodurch er sein Vermächtniss jetzt schon deutlich verwässert hat. Schade."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: FriarFergusonwrote on 26.08.2011:"Nachdem ich mir den Bericht von Shane Ryan durchgelesen habe ziehe ich meine Bewertung zurück. Ich habe nicht das Recht, über diesen Mann zu urteilen, denn sein nicht enden wollender Niedergang im Ring geht mit persönlichen Problemen Hand in Hand. Über den Menschen Ric Flair gibt es keine Diskusion, der Wrestler kann für mich nicht richtig bewertet werden, da seine Karriere ohne seinen privaten Absturz vermutlich viele andere überstrahlen würde. Diesen Glanz hat er aber schon lange verloren. Schade um ihn."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TeeHaawrote on 26.08.2011:[8.0] "Ich gehe bei meinen Bewertungen in der Datenbank immer danach: "Welches Attribut würde ich nutzen um diesen Wrestler einem Wrestling-Greenhorn näher zu bringen? " Ich denke es wäre "wichtig" Er ist wichtig um die Entwicklung des Wrestlings zu verstehen. Hätte er 1995 aufgehört hätte ich ihm den "legendär" Status gegeben (11/10) wenn er zeitgleich mit der WCW aufgehört hätte Ringe heimzusuchen - nunja... dann wäre er bei 9/10 (mit viel wohlwollen bei 10/10 gelandet. Inzwischen schlurft slick Rick seit sage und schreibe 15 Jahren als Wrestling Randerscheinung durchs bild und meint immer noch wrestlen zu müssen. Das hat seinen Status beschädigt. Wie sollte ich denn das jemandem erklären? - "der Mann ist legendär, aber schau dir bloß keine Matches nach 1995 an! ""
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheManwrote on 19.08.2011:[10.0] "Bevor er wirklich wirklich alt wurde wurde alles, das er Angriff zu Gold. Zahlreiche Matches von ihm in den 80ern und auch 90ern, die in den 5Sterne Bereich gehen. Klar is er in letzter Zeit eher senil, aber er ist und bleibt einer der wichtigsten Leute, die das Buisness je hatte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: WWE4evermaybewrote on 17.08.2011:[3.0] "Der Mann weiß nicht, wann er in endlich in Rente gehen soll. Der Oberhammer war als er mehr als würdig nach WM 24 verabschiedet worden war und seine Wrestling-Karriere scheinbar an den Nagel gehängt hatte. Pustekuchen, zwei Jahre später stieg er bei TNA wieder in den Ring. Was für eine Verarschung für die WWE-Fans."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Michael Shawn Hickenbottomwrote on 03.08.2011:[10.0] "Woooooooooooooooooo. Woooooooooooo. Der "Nature Boy" begeistert mich immer und immer wieder. Trotz seines hohen Alters. Er weiß einfach wie man die Massen wütend beziehungsweise "geil" auf ihn macht. Dafür kann es nur 10 Punkte geben. Wooooooooooooooo."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MaikBaaderwrote on 29.07.2011:[6.0] "Ich wurde mit Flair wirklich nie warm. Er ist definitiv nicht schlecht und er hat auch gute Matches abgeliefert, aber sein Stil, seine Art zu wresteln gefällt mir einfach nicht. Seine Promos früher waren gut, in der jetzigen Dekade allerdings alles andere als gut."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: FNShowwrote on 13.07.2011:[4.0] "War sicherlich bis zur Jahrtausendwende eine der schillernsten Figuren im Wrestling, wirkt meiner Meinung nur noch peinlich und ist fast nur noch da um ein Blutbad im Ring zu veranstalten und seine Schulden zu begleichen. Oh Mann Ric Flair hat über die Millionen verdient und hat eigentlich nichts."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: NHJ2102wrote on 11.07.2011:[5.0] "Konnte dem Natur Boy nie viel abgewinnen fand ihn bei der Evolution mal ganz gut aber mehr auch nicht"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: antihiphop2002wrote on 20.06.2011:[6.0] "Er ist immer noch sehr Unterhaltsam, aber eben nur noch ausserhalb des Rings. Nach so einem grandiosen Abschied noch einmal wieder zu kommen weil man einfach nicht weiss wann Schluss ist ist einfach nur traurig. Wie viele Leute können in seinem Beruf den sagen ich stand so lange im Ring war so lange in der größten Liga. Ric Flair ist in fast allem ein Phänomen, aber leider auch darin das er absolut nicht weiss wann es Zeit ist auf zu hören. Ich hoffe nur das er sein Denkmal nicht noch zu lange demoliert."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: C0nspiracywrote on 27.03.2011:[10.0] "Alles andere als eine 10 wäre lächerlich. Was kann ein Wrestler mehr erreichen als Ric Flair? Er ist 16 Facher World Champion, Anführer der 4 Horseman einen der legendärsten Stables der Wrestling Geschichte. Und für mich am ausschlagebensten für die 10er Wertung , er hat unzähligen Wrestlern die Tür geöffnet und war sich so gut wie nie zu schade den Job zumachen um einen jungen aufstrebenden Wrestler den schub zum Star zu verschaffen. Für mich der kompletteste Wrestler der je in den Wrestling Ring gestiegen ist. Er konnte mit jeden ein sehenswürdiges Match bestreiten. Seine Matchserie gegen Ricky "The DRagon" Steamboat gehört handwerklich zum besten was es im Mainstream Wrestling gibt. selbst im fortgeschrittenen alter steckt er noch mit schöner regelmässigkeit seine auch mal gut 35 Jahre jüngeren Gegner in die Tasche. Eine wahre Wrestling Legende ich glaube das mann noch in 100 Jahren von Ric Flair sprechen wird. Mit seinen arbeitswillen und seiner einzigartigen ausstrahlung hat er sich ein Denkmal für die Ewigkeit geschaffen und wird jeden Wrestling Fan für immer ein Begriff sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Y2J Problemwrote on 23.03.2011:[10.0] "Ach scheiß doch drauf, was Ric grade macht, in den letzen Jahren seiner Karriere. Was er für das Business getan hat, das er so liebt. Er hat so viele Leute dazu gebracht, Wrestler zu werden, er hat sich einfach so oft den Arsch aufgerißen. Was er alles geleistet hat, kann man nicht in Worten ausdrücken, und das muss man auch nicht... In diesem Sinne: Woooooo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Elvis6wrote on 21.03.2011:[4.0] "Tja, früher hätte ich Ric bedenkenlos 9 Punkte gegeben. Aber er weiß nicht wann genug ist. Unterhaltend ist er nurmehr außerhalb des Ringes. Im Ring hab ich eher das Gefühl er beginnt schon zu bluten wenn man ihn böse anschaut;) Außerdem gefällt es mir nicht wenn jemand zurücktritt u a es a paar Monate darauf schonwieder vergessen hat. Naja, wahrscheinlich das Alter. Also laß es endlich gut sein Ric"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rock93wrote on 20.03.2011:[10.0] "Mal ehrlich: Welcher Mann schafft es seit 40(! ) Jahren, Wrestlingfans zu begeistern? Nur Ric Flair. Das ist einmalig und wird es immer sein. Er war früher ein Gott, in den 90ern schon eine Legende und auch in den 2000ern selten peinlich. Wenn er es sich jetzt bei TNA nicht noch versaut, darf er nach seinem Tod direkt neben dem Wrestling-Gott sitzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: xXxwrote on 19.03.2011:[7.0] "Schwierige Sache dieser Mann. Eins ist aber klar, der kann nicht vom Ring wegbleiben. Er meint auch mit über 60 Jahren müsse er noch immer bladen. Er will und muss im Rampenlicht stehen. Sein Vertrag bei TNAW nachdem Vince ihm bei WM24 einen Abschied mit Pauken und Trompeten gegeben hat, ihn als Nationalheld und lebende Legende hat feiern lassen, ist eine Frechheit. Er ist ohne Frage nicht nur ein Eckpfeiler einer Company, sondern des Geschäfts an sich. Aber irgendwann muss doch auch mal gut sein! Ich verstehe es einfach nicht(obwohl irgendwo ja schon.. )wieso manche sich in diesem Business so schwer damit tun, sich zurückzuziehen, anderen das Feld zu überlassen, und wenn aktiv sein dann irgendwann halt hinter den Kulissen und nicht mehr vor den Kameras. Sein Status ist um es gelinde auszudrücken geschmälert, für einige wohl ganz offen dahin. Mehr als 6 Punkte kann ich hier nicht geben, nicht zu diesem Zeitpunkt. Ich bin mir auch nicht sicher ob es zu respektieren ist dass er sich das in seinem Alter noch alles antut oder man einfach mal nicht mehr WHOOOOen sollte wenn der Mann die Halle betritt. Flair und Hogan, die können es einfach nicht lassen! EDIT: 1 Punkt nach oben weil er trotz allem eben einfach überzeugt, vielleicht irre ich mich ja und der Mann hat noch einen letzten Trumpf im ärmel von dem nicht nur er profitiert... mal sehen. EDIT END"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Raven Ravnoswrote on 05.03.2011:[10.0] "Der Beste aller Zeiten! Der erste Heel den ich als Mark bewundert habe. Er war der Star in 3 Ligen und das über mehrere Jahrzehnte. Und im Gegensatz zu mach anderen hatte er nie damit Probleme den Job zu machen. Leider will er nicht so recht wahrhaben, dass irgendwann auch seine Zeit vorbei ist. Dennoch der ANture Boy bekommt von mir 10 Punkte für sein Lebenswerk."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: deuss00wrote on 23.02.2011:[4.0] "Er war nie ein großartiger in ring wrestler aber er hat ausstrahlung das muss ich zugeben. Hab ihn nie gerne im ring gesehen weil er immer das selbe match zeigt aber er bekommt von mir eine bessere bewertung als Hogan weil er sich auch für jüngere leute hinlegt um sie zu pushen. Er ist zwar was backstage politik angeht nicht viel besser als Hogan aber er gibt den business wenigstens was zurück. Leider hat er sich mit seinen in ring comeback jegliche glaubwirtikkeit verspielt was schade ist. Aber bei aller Kritik meinerseits dennoch eine Legende dieses Sports!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Hu-Manwrote on 22.02.2011:[10.0] "Whoooooooooo! Bester Worker aller Zeiten, für mich gibt es keinen besseren. Jedes Mal marke ich völlig aus, wenn ich ihn vor der Kamera sehe. Alles unter 8 Punkten ist lächerlich. Man kann gar nicht in Worte fassen, wie viel wertvoller er für dieses Business ist/war als z. B. ein Triple H. Sein Engagement bei TNA nach diesem unglaublich geilen Abschied bei WM24 ist natürlich mies, aber ich kann ihm nicht böse sein, wenn ich ihn dann am Mic bei Impact sehe... unglaublich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Matt4Wrestlingwrote on 15.02.2011:[10.0] "16 Titelregentschaften als World Heavyweight Champion sprechen für sich und der Vorwurf eines stets selben Match-Ablaufs scheint mir mehr als unbegründet. Live hat Flair immer und egal in welchem Alter immer sein Bestes gegeben und das er sein Wissen jetzt als Manager zur Verfügung stellt, ist nicht wirklich schlecht, weder für seinen Ruf, noch fürs Business-NUR er sollte wirklich, um noch etwas ernsthafter darzustehen, weitere Ausflüge in den Ring vermeiden!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mizisawesomewrote on 30.01.2011:[10.0] "Top Wrestler. Wer hier weniger als 6 Punkte gibt muss sich wirklich fragen wie "smart" er denn ist. Unglaublich tolle Ausstrahlung, toller Techniker. Seine vielen World-Title sprechen für die gute Qualität, die ihn als Wrestler ausmacht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheEmpirewrote on 26.01.2011:[0.0] "Früher in der WCW ein Gigant, heute eine fürchterliche Lachnummer. Entweder ist er dauer betrunken, oder auf Drogen. Anders kann ich mir sein Verhalten innerhalb und ausserhalb des Rings nicht erklären. Ganz klar einer der größten Nervtöter der Branche in meinen Augen. Sollte sich endlich ein für alle mal zurückziehen."
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Maxiennewrote on 20.01.2011:[6.0] "Annsich klar ein 10 Punkte man. Weiler einfach alles hatte was einen großen Wrestler ausmacht.  Aber im kann ihm nur 6 Punkte geben weil er mit der TNA Aktion uns alle hintergangen hat.  WM25 sollte sein letztes Match sein und dann sowas tut mir leid hab ich kein verständniss für deswegen 6 Punkte"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kumbaowrote on 11.01.2011:[10.0] "Ein Satz: einer der besten Wrestler aller Zeiten.  Flair kombiniert ein hohes Niveau als Wrestler mit viel Charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheRock 7 Champwrote on 11.12.2010:[10.0] "Die Legende beim Wrestling. Er ist einer der besten Wrestler die es je gab und geben wird. Aber er soll sich seine Karriere nicht verpfuschen indem er bei TNA ist. Als er sein "letztes" Match hatte bei Wrestlemania 24 gegen Shwan Michaels dachte ich mir: Das ist der beste Superstar überhaupt. Nachdem ich ihn aber plötzlich bei TNA gesehen habe dachte ich mir: Mann Ric, du hattest die tollste Karriere und jetzt machst du alles kaputt. Dennoch gebe ich ihm 10 Punkte fürseine Leistungen. WOOOOOOOOOOOO"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Necronwrote on 08.12.2010:[9.0] "Mit Flair tue ich mich immer schwer. Seine Erfolge und Lesitungen sprechen für sich, aber ich war nie begeistert von Slick Ric..."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Aceonwrote on 09.11.2010:[9.0] "Während er früher als der überragende Wrestler Ric Flair bekannt war, macht ihn heute sein unglaublich geniales, überzogenes, und lächerliches Micwork aus. Das ist absolut positiv gemeint und ich genieße jede einzelne Promo von Flair. Whoooo! Whoooo! Whooo!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Gomorrawrote on 04.11.2010:[7.0] "Ein Showman sondergleichen der polarisierte.  Was seine Legende jedoch kaputtmacht ist diese ewige Rücktritt/Wiederkommens Geschichte Es ist zeit aufzuhören Ric..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Homicide187wrote on 18.10.2010:[10.0] "Unheimlich unterhaltend und das schon seit so vielen Jahren. Im Ring und am Mik einfach göttlich. Natürlich ist er mittlerweile alt geworden und zeigt keine Klassiker mehr aber trotzdem sehe ich ihn noch gerne und im Ring glänzt er nun durch Härte & Comedy und weniger durch Technik. Wobei ich mich doch manchmal ein wenig an Terry Funk erninnert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: A-marwrote on 15.10.2010:"Seine Fehde mit Shawn Michaels war wundervoll, genauso wie der Kampf zwischen den beiden. Dann bei RAW so eine denkwürdiger Abschied. Und dann sowas.."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DJ MaSchwrote on 13.10.2010:[8.0] "Zerstört im Moment sein eigenes Denkmal. Nichts desto Trotz eine der herausragenden Figuren der Wrestlinggeschichte und ein ohne Frage ein ehemals fantastischer Worker, der die zehn Punkte durch seine weltklasse Schlachten und durch jahrzehntelange Top Unterhaltung eigentlich mehr als verdient hätte. Hoffentich kommt nun so schnell wie möglich das engültige Karrierende, denn dann gibt es an der Höchstnote nichts zu rütteln."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Ramwrote on 26.09.2010:[8.0] "Also ich bin ein großer Fan des Nature Boys aber trotzdem will ich ihn jetzt nicht mehr sehen. Er ist Ü60 hat im Ring nur noch beschränkt was drauf und am Mic fällt es mir schwer ihn noch ernst zu nehmen. Wenn er nicht bald in Rente geht verbaut er sich bei mir noch alles."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: rockysadrianewrote on 10.09.2010:[9.0] "Eigentlich die unumstrittene Nummer 1. Leider wirkt das was er bei TNA tut etwas zweifelhaft."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: jerseyhoolwrote on 29.08.2010:[8.0] "Ich hatte Flair bereits vor einiger Zeit bewertet, muss nun allerdings meine Meinung über ihn korrigieren. Der Mann WAR ein Gott im Ring & als Entertainer ein würdiger Nachfolger von Gorgeous George. Allerdings ist das der Ruhm vergangener Tage & ein Flair, der sich nach einem seiner wahrhaft mehr als würdigen Verabschiedungen bei WM 24 nur des schnöden Mammon wegen nun bei TNA agiert, erweckt bei mir einen mehr bemitleidenden denn einen ehrfurchterbietenden Eindruck bei mir! Ok, der Mann ist nach wie vor einer der Mic-Götter, keine Frage. Aber das alles kann nur schwer darüber hinweg täuschen, dass der Nature Boy sich selbst als lebende Legende demontiert. Sehr schade!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Double Jwrote on 28.08.2010:[9.0] "Einer der besten Mic worker aller zeiten! Im Ring konnte ihm auch kaum jemand was vormachen! Aber für die Verarsche wegen dem rücktritt vom rücktritt gibts nicht die volle Punktzahl!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: y94wrote on 06.08.2010:[10.0] "Es zeugt vom enormem Sachverstand eine Wrestlinglegende wie Flair nur auf Basis dessen zu beurteilen, was er im absoluten Spätherbst seiner Karriere abliefert. Flair hat einen überwältigenden Teil seinerfast 3 Jahrzehnte langen Karriere auf allerhöchsten Niveau gewrestlet, was viele scheinbar aus welchen Gründen auch immer nicht zu würdigen wissen. Außerdem bezweifle ich, dass die WWE ihm sein Abschiedsmatch nur aus reiner Nächstenliebe ermöglicht hat.... Es ist doch immer wieder schön zu sehen was für Experten sich auf dieser Seite herumtreiben..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Technicowrote on 05.08.2010:[4.0] "Zwar eine echte Legende und das Match gegen Michaels bei WM24 gefiel mir auch sehr gut, aber jetzt mal ehrlich: Wie lange will der noch so weitermachen? Alles was er noch kann sind ein paar Chops den Leglock und vielleicht noch ein heiseres "WOOOOOO! ". Bitte Ric, ich BITTE dich. HÖR AUF!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: lagunswrote on 24.07.2010:[10.0] "Wie soll man so eine Institution des Wrestling bewerten? Einerseitz MUSS es ne klare 10+ geben für all das was er in seiner Karriere für den Sport geleistet hat. Im Ring, am Microfon, und vom Charisma ganz klar Top.... Nur sollte man fairerweise auch die komplette Karriere betrachten und da muss man ganz deutlich sagen, das er nicht auf dem Höhepunkt abgesprungen ist und diesen seit inzwischen 15 jahren überschritten hat. Und wie soll man diese 15jahre nun bewerten? Speziell die letzten 10 jahre sind mit sicherheit keine volle Punktzahl wert und wenn sein Name nicht zufällig mit Ric anfangen und mit Flair enden würde, hätte er in der WWE sicher keinen PPV aktiv bestreiten dürfen. Also gebe ich ihm ne........ ach was solls. Es ist Ric Flair."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MattBornewrote on 05.07.2010:[9.0] "Bei dem Nature Boy muss man einfach die 80iger und weniger die letzten Jahre bei der WWE betrachten. Sicher kann ein Mann jenseits Ende der 50 nicht mehr den Stil gehen von früher. Das scheinen hier einige völlig zu vergessen. Ich denke beim NatureBoy am Meisten an die Zeiten der AWA bzw. WCW wo er einfach übelst gerockt hat. Man denke nur an die Schlachten mit Ricky Steamboat. Ausserdem hat er viel fürs Wrestlinggeschäft getan und viele Junge Leute die jetzt Stars sind over gebracht. Als Manager kann er gerne noch viele Tage erhalten bleiben."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Manu Adamswrote on 16.06.2010:[8.0] "Für mich ist es schwer Ric Flair zu bewerten. Auf der einen Seite sehe ich den größten Wrestler aller Zeiten, der den Fans Tag für Tag hochklassige Matches auf die Beine stellte und sich den Mund fusselig redete um seine Rivalitäten over zu bringen, doch auf der anderen Seite sehe ich einen Mann der unbedingt seine Karriere zerstören möchte. Ich will Flair gerne alle 10 Punkte geben, doch ich kann es nicht da er besonders in den letzten 2 Jahren sich der Lächerlichkeit preisgegeben hat. Deshalb nur ein gut bzw. 8 Punkte."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Atticuswrote on 07.06.2010:[8.0] "Normalerweise würde es von mir eine glatte 10 geben.  Leider ruiniert er sich und seine glorreiche Karriere unnötiger Weise derzeit noch bei TNA.  Persönlich ruiniert er seinen Ruf den er über 20jahre lang aufgebaut hat jetzt bei einer eher durchschnittlichen Liga, in der er nur noch falsch eingesetzt wird ..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Smido83wrote on 06.06.2010:[5.0] "Hmmm... war mal ein ganz Großer, ist aber leider zu ner Witzfigur geworden, da er sich, nach einem der besten Abschieder der WWE Geschichte, einfach nicht vom Wrestling verabschieden kann! Als rauskam das er und Hogan zur TNA wechseln hatte ich zuerst einen gedanken! McMahon übernimmt irgendwann die TNA und die 2 sollens vorbereiten! Könnte doch stimmen, da die TNA ja viele viele Probleme hat seit die 2 da sind! Im Ring kann er nix mehr, außer zu Bluten und auch am Mic wird er immer unverständlicher! Noch vor 5 Jahren hätte man im 8 oder 9 geben müssen, aber er, genau wie Hogan, zerstört seinen eigenen Mythos mit dem jetzigen getue! Es gibt im Wrestling nix schlimmeres als einen Worker der nicht einsehen will das seine Zeit vorbei ist!"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: WrestlingFanDuisburgwrote on 03.06.2010:[5.0] "Ich kann mit dem Nature Boy nichts anfangen. Klar ist er eine Legende, aber außer dem Match gegen Shawn Michaels und Mitte/Ende der 80er in der WCW finde ich hat er kaum gute Matches bestritten. Die meisten seiner Matches fande ich doch recht langweilig und auch am Mic finde ich ihn alles andere als überzeugend."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: morph80wrote on 30.05.2010:[9.0] "Wenn er nach seinem Abschiedsmatch gegen Shawn Michaels aufgehört hätte, wäre es ein perfekter Abschluss für eine lange und erfolgreiche Karriere gewesen, aber seine TNA Verpflichtung ist wie ein Tritt in die E... für die WWE, Shawn und seinen Fans."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Erasedwrote on 21.05.2010:[8.0] "In den letzten Jahren natürlich nicht annähernd so gut und unterhaltsam wie zur Anfangszeit seiner Karriere."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Straight Edge Jerichoholicwrote on 21.05.2010:[5.0] "Schade... hab ihn gern gesehn un hab auch paar alte Matches geseen wo er wirklich klasse der Mann hat unterhalten jedoch wird auch von mir etwas was an punkten runtergeschraubt erst sone tolle Abschiedstour und dann beim grössten Konkurrenten unterschreiben ist unter aller Würde!  5 Punkte für verblassten Glanz"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: RockerDropperwrote on 10.05.2010:[7.0] "Einer der charismatischsten Heels aller Zeiten und eine verdiente Legende; aber leider nicht ohne Mängel. Ric Flairs Repertoire scheint oft beschränkt, seine Matches gleichen sich schon lange wie ein Ei dem anderen. Zudem hat seine körperliche Verfassung schon vor langer Zeit nachgelassen, schon 1995 wirkte er unansehnlich und sah aus, als sollte er langsam Schluß machen. Zudem schießt er gerne gegen andere Größen wie Bret Hart oder Hogan; schlechter Stil. Loyalität wird von ihm viel beschworen, und dennoch dreht er sein Fähnchen mit dem Wind; als loyaler NWA-Held brachte er den Weltmeistertitel in die WWF, als bekennendes WCW-Aushängeschild wechselte er nach dem Ende zur WWE und pries Vince McMahon, um dann nach dem feierlichen Rücktritt bald schamlos zu TNA zu wechseln. Dabei wirkt er im Ring einfach nur noch traurig und macht sich mehr und mehr seinen Legendenstatus zunichte. 7 Punkte jetzt, und ich erhöhe, wenn er endlich wirklich aufhört."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sandmannwrote on 04.05.2010:[9.0] "Einer der größten den es je gab. Sicherlich hätte er sich schon längst zur Ruhe setzen sollen. Denn sein Wirken in den letzten paar Jahren schaden doch der Reputation einer wirklich großen Karriere die ihre Höhepunkte sicherlich in den epischen Schlachten mit Ricky Steamboat hatte. Ansonsten war Flair eigentlich immer ein Mainplayer und hat im Gegensatz zu manch anderen "Legenden" sich auch nie für etwas zu schade gefunden oder sich geweigert den Job gegen junge Stars zu machen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Felice-del-mondowrote on 24.04.2010:[3.0] "Ich bin Fan der alten Schule. Aber nicht der GANZ-alten Schule. Rick Flair habe ich nie zu seiner Blütezeit wrestlen gesehn, darum kann ich nur das Aktuelle bewerten. Er kann mich nicht überzeugen und auch die Farce die er mit seinem Abschied vom Wrestlen abgezogen hat wirkt sich schlecht auf die Bewertung aus. Erst eine schöne Abschiedstour bekommen und dann bei TNA unterschreiben. Nein, Flair schadet sich und seinem Denkmal damit erheblich."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Baldrickwrote on 23.04.2010:[9.0] "Wenn in 50 Jahren noch irgendwo in dieser Welt ein Chop ausgeführt wird, und sei es vor nur 6 zahlenden Zuschauern, irgendwer von ihnen wird ein "Wooo! " in den Raum rufen. Ein herausragender Wrestler und für mich der Erfinder der Superstaraura. Kratzt zwar nun ein wenig am eigenen Erbe, aber ich seh ihn immer noch gerne, gerade weil er immer noch faszinierende Promos halten kann, die sich allerdings zunehmend dem Irrsinn nähern."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Moyawrote on 19.04.2010:[10.0] "Ein großartiger Performer, muss man einfach so sagen. Kann als Wrestler und als Micworker unterhalten. Ich hoffe nur dass er irgendwann mit Würde abtreten kann, denn das hat er als lebende Legende schon verdient. Den Moment bei WM 24 hat er leider verpasst...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Brainbreakerwrote on 14.04.2010:[9.0] "Flair ist neben Hogan in meinen Augen das Paradebeispiel für einen ehemaligen Superstar, der seinen Legendenstatus nach und nach durch unnütze Auftritte im hohen Alter demontiert. Allerdings bleibt ihm nach seinem "Sex, Drugs & Rock'n'Roll Lifestyle" in den 80ern auch kaum etwas anderes übrig, als das zu verkaufen was er am besten kann (oder eher konnte). Traurig ist es trotzdem anzusehen. Da kann man nichts anderes machen, als noch einmal die Definitive Collection einzuwerfen und seine besseren Tage im Ring anzuschauen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Icebreakerwrote on 14.04.2010:"Flair möchte ich (noch) nicht bewerten da ich noch nicht allzu viel von ihm kenne. Eine Legende mag er ja sein, aber ich finde es eine Frechheit wenn er seinen Fans sagt er hört auf (und hat nebenbei bemerkt einen der tollsten Abschiede [Raw] mit allen Ehrungen erhalten und diesen damit in den Dreck gezogen) und macht dann weiter nur weil der zu dumm ist sein Geld zusammenzuhalten. Sein Match gegen Michaels war beachtlich für sein Alter, aber bitte einen alten Mann in kurzer Buchse will ich echt nicht sehen. Sein so hochgelobtes Micwork kann ich auch nicht nachvollziehen, schon zum Mitte seiner Karriere fand ich das er nur nuschelt. Guckt euch Leute wie The Rock, Edge, Y2J und HBK an DIE haben was drauf am Mic. Manche kapieren es einfach nicht, wann sie ihren Zenit überschritten haben. Irgendwann ist jeder Legendenstatus dahin."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: stay wet my friendswrote on 14.04.2010:[10.0] "Das seine Vergangenheit großartig war lässt sich nicht bestreiten. Gar nicht. In den letzten Jahren waren seine Auftritte ... nicht mehr ganz so Großartig. Sollte sich evtl. auf eine Managerrolle beschränken weil er da mit dem alter kein bischen nachgelassen hat. Wird aber wohl noch in den Ring steigen bis es garnicht mehr geht ... Edit: im Rollstuhl fast unterhaltsamer als im stehn ^^"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: stinger89wrote on 12.04.2010:[8.0] "Die Legende die ich noch nicht bewertet habe, aber gerade ihren eigenen Ruf zerstört. So steht ich zumindest zu seinem Engagement bei TNA. Schon die Tatsache, dass er dort als Manager auftrat, gefiel mir schon nicht. Als er dann aber sogar sein In-Ring Comeback gab war ich sehr entäuscht. Das kommt wohl davon, wenn man nicht mit seinem Geld umzugehen weiß... 8 Punkte noch, Tendenz aber fallend..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Eazyewrote on 11.04.2010:[7.0] "Ja, er ist wirklich eine Legende. In den 80ern und frühen 90ern war er wirklich super. Wer das nicht glaubt soll mal einige NWA Matches sehen. Gut am MIc und im Ring FRÜHER super. Doch dann, ab der NWO in der WCW war er nur noch ein Übergangschampion und liess stark nach. In der WWE mit der Evolution wieder gut, dann der RUn als alter Opa war dann weniger gut(Auch wenn einige Matches wirklich der Hammer waren). Was aber wirklich Grund gibt Punkte abzuziehen ist das er nach dem Carrermatchverlust trotzem weitermacht und nun TNA mit Hogan und Bischoff zugrunde richtet. Ansonsten würden 8-9 Punkte drinligen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: RickRollwrote on 09.04.2010:[7.0] "Ich kann an Flair nichts abgewinnen, wirklich nicht. Ich wunder mich schon oft wieso er so hoch "gehandelt" wird. Ich fand lediglich "einige" seiner Matches stark, vorallem die gegen Steamboat, aber ansonsten wars dann auch schon. Solider Worker, der jedoch in den 80ern alles wegrockte, auch wenn der Observer wie so fast immer echt bei einigen Matches auf Drogen warn. Dazu sollte man auch wirklich retiren, wenn man sagt; Das wird mein letztes Match. EDIT; @DerFlaechenbomber: Ich finds gut das du deine Meinung so gut beschrieben hast und wieso du ihm letztendlich die volle Punktzahl gibt, aber wieso sagst du dann gleich zu mir ich sei auf Drogen?  Ich mag Flair halt nicht so sehr wie du und das ist doch auch okay oder nicht? KEIN Mensch wird jemals einer Meinung sein, irgendwann mal sind Menschen bei einem anderen Wrestler anderer Meinung und dies solltest du auch "respektieren"."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Parlaelwrote on 05.04.2010:[2.0] "Ich kann nicht nachvollziehen, warum manche hier wirklich noch so viel von ihm halten. Da ich in den 80ern noch zu sehr mit Windeln beschäftigt war, kenne ich ihn nur aus den letzten Paar Jahren. Und ich hätte gut und gerne auf den Ökobubi verzichten können. Im Ring gefiel er mir gar nicht, und das, was man bei ihm als MicWork bezeichnen könnte möchte ich gar nicht bewerten. Hauptsächlich deswegen, weil er mMn einfach zu schwer zu verstehen ist. Dieses Genuschel und Gebrabbel geht mir ziemlich auf den Keks. Außerdem gefällt mir seine Rolle bei TNA auch nicht. »Macht den weg, den mag ich nicht. «"
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Turboladerwrote on 02.04.2010:[7.0] "Ein Mann, der seine Arbeit so sehr geliebt hat, dass er sie nicht loslassen konnte, einer der besten überhaupt, einfach eine Legende. Edit: Tja, so kann man sich irren... Der TNA Flair gefällt mir überhaupt nicht und ich finde es Schade, dass er sein Karriereende so mit Füßen getreten hat. Deswegen von 10 auf 7 Punkte runter."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Exist 2 Inspirewrote on 01.04.2010:[8.0] "Ric Flair ist drauf und dran sein Vermächtnis zu ruinieren. Ich persönlich möchte ihn wirklich nicht mehr im Ring sehen. Wenn ich ihn schon Woche für Woche bei TNA blutüberströmt sehe könnte ich grad abschalten. Nichts desto trotz bleibt Flair natürlich eine der größten Wrestler aller Zeiten, allerdings muss ich auf 8 Punkte runtergehen. Flair sollte sich langsam überlegen ob es nicht irgendwann genug ist, sonst macht er sich alles kapput!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Franjisewrote on 31.03.2010:[7.0] "Ric Flair war mit Sicherheit kein schlechter Wrestler. Aber meilenweit davon entfernt, der beste Wrestler der Welt zu sein. Sein In-Ring-Work war ok, aber seine Staerken lagen definitiv am Mikrofon. Naitch hatte Charisma, dass muss man ihm zugestehen. Und die Four Horsemen waren sicherlich eine der besten Stables aller Zeiten. Aber trotzdem ist Ric Flair, trotz seines Rekordes von 16 World Championships, nicht der beste Wrestler aller Zeiten (denn das ist Shawn Michaels! ). Schade ist aber vor allem, dass der Nature Boy seinen grandiosen Abschied vom Wrestling, so in den Hintern getreten hat. Haetten Vince und Co. gewusst, dass Ric Flair keine zwei Jahre spaeter wieder wrestlen wuerde, haette ihm die WWE niemals einen solchen Abschied bereitet!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Viperwrote on 30.03.2010:[5.0] "So ein tolles Karriereende bei der WWE und nun bei TNA? Was ein Schwachsinn! Nun gut, vielleicht ist das seine Art und Weise sich zu bedanken, nachdem er vor 2 Jahren in die Hall of Fame kam."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: 3durch16wrote on 14.03.2010:[3.0] "Sorry, aber was er in den letzten Jahren alles abzog, ließ sein Ansehen bei mir schrumpfen"
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Aquifelwrote on 14.03.2010:[10.0] "Flair ist zu Recht eine Legende. Seine Promos sind legendär, ebenso viele seiner Matches. Und eine Gabe hat(te) Flair: Er konnte auch einen Niemand gut aussehen lassen. Gerade als Heel konnte er jeden als Face over bringen, und sei es für das gerade stattfindende Match. Wenn man dann noch bedenkt, was der Mann alles über sich hat ergehen lassen in der WCW "unter" Hulk Hogan... Dass er jetzt wieder in den Ring gestiegen ist, sehe ich (noch) nicht als Grund für eine Abwertung, aber im Ernst, er gehört dort nicht mehr hin. Als Manager oder On-Screen-Character okay, aber bitte nicht mehr als Wrestler. Denn die Bereitschaft zu bluten und ein paar Bumps zu nehmen macht ihn nicht gerade wertvoll als Worker und auf Dauer ruiniert er damit nur seinen Ruf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: tobiasthegreatone1wrote on 11.03.2010:[5.0] "Ich gebe ihm 5 Punkte er war nicht schlecht im Ring am mic auch gut aber alles was er seit 2004 gemacht hat war nur noch Schei** . Flair sollte wirklich mal einen Schlussstrich ziehen. Bei Tna hat er auch noch AJ lächerlich gemacht in dem man Styles als Flair Jr. hinstellt Ric sollte sich echt schämen."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: rv27wrote on 10.03.2010:[10.0] "Was soll man dazu sagen. Er ist hald einfach Ric Flair. Da kann man nur sagen WwwwOOOOOOOOwwwW!  Naja großartiger Wrestler. Wenn auch mit einer sehr sehr undeutlich Aussprache."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MJ Goldbergwrote on 09.03.2010:[9.0] "Früher sehr gut im Ring, am Mic ein Gott, er sollte zwar nicht mehr zu häufig wrestlen, aber ohne Ric Flair geht es auch irgendwie nicht! Absolute Legende!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Wizz21wrote on 04.03.2010:[10.0] "L-E-G-E-N-D-E, der beste Wrestler aller Zeiten... 'nuff said!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Solid Snakewrote on 19.02.2010:[0.0] ""King E und K AG" hat alles gesagt, was es zu dieser Frechheit zu sagen gibt. OVR von 9 hier in CM *hehe*"
Rating: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Whopperlewrote on 16.02.2010:[10.0] "Einer der besten Worker aller Zeiten. Genug gesagt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kankurowrote on 12.02.2010:[9.0] "Ein in sämtlichen Belangen außergewöhnlicher Wrestler, dem ich aber dennoch die volle Punktzahl verwehren muss. Mit dem tollen Abschied bei WM24 hätte einfach Schluss sein müssen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Bisorwrote on 30.01.2010:[5.0] "Absolute Legende aber entwickelt sich mittlerweile immer mehr zum Hulk Hogan. Immerwieder mal einen Auftritt obwohl er schon Zurückgetreten ist usw.. Hätte 10 Punkte verdient, aber seitdem er in Australien wieder in den Ring gestiegen ist, hat er seine Ehre verloren."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: nwowrote on 24.01.2010:[9.0] "Absolute Legende. Hatte das Talent auch schlechte Wrestler gut aussehen zu lassen. 1 Punkt Abzug weil ich ihn während seiner ganzen Karriere wirklich niemals leiden konnte. Übrigens: Seine Auftritte bei TNA sind wohl der Grund für manche ihn schlechter zu bewerten. Es mag den einen oder anderen überraschen, aber wer Geld braucht muss arbeiten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Pinguwrote on 18.01.2010:[8.0] "Hmm habe ihm nach WM 24, 10 Punkte gegeben. Aber auch er hat durch seine TNA Aktionen auf jeden Fall eine Abwertung verdient. Bekommt einen total großen Abschied, mit großen Momente, und ganz ehrlich: Leute mit 60 Jahren gehören einfach in keinen Ring, auch wenn er es noch kann. Aber man muss wissen, wann der richtige Zeitpunkt für einen Abschied ist. Hin und wieder Gastrollen wäre ja schön und gut, aber ehrlich Ric: Es ist Zeit für die Rente. Dennoch eine Legende"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: HeartBKwrote on 14.01.2010:[7.0] "Absolutes Plus aufgrund seiner großen Karriere, aber leider Abzug nach der aktuellen Situation. Es war ein so genialer Abschied. 7 Punkte."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: element-41wrote on 12.01.2010:[7.0] "In den letzten Jahren seiner aktiven Wrestlingzeit haben mir seine Matches nicht besonders gut gefallen, wobei ich dazu sagen muss, dass ich ihn nicht mag. Jedoch hat er mich in seinem letzten Wrestlemania Match gegen Shawn Michaels positiv überrascht, da dies ein sehr gutes Match war. Als Manager kann ich ihn mir sehr gut vorstellen und blicke deswegen mit großer Freude in die Zukunft bei TNA. 7 Punkte!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Ywainwrote on 11.01.2010:[8.0] "Ein Mann, der wrestlerisch eigentlich alles erlebt, gesehen und erreicht hat. Trotzdem ist er (leider) ein gutes Beispiel für jemanden, der den Absprung nicht geschafft hat und sich nun, als ältlicher Alt-Star, mehr und mehr der Lächerlichkeit und des Mitleids preisgibt. Sein Abschied bei WM 24 hätte einer der großartigsten Schlusspunkte sein können, der einem Worker je gegönnt wurde. Leider hat er es verpasst, in Würde den Ruhestand zu genießen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: devilsoldierwrote on 05.01.2010:[7.0] "Hätte als einziger von der älteren Generation noch die Berechtigung im Ring zu stehen weil er kann es noch( im Gegensatz zu Duggan oder Hogan) aber hat den besten Zeitpunkt zum Aufhören selber gewählt. Er ist einfach einer der besten im Ring. Ric genieß dein Lebensabend und die Gewissheit besser als Vince zu sein. Update: Hat den Zeitpunkt zum aufhören gehabt und verpasst, ab jetzt wirkt es nicht mehr schön. Zerstört seinen eigenen Ruf."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Aesopwrote on 20.12.2009:[10.0] "Einfach nur legendär. Im Ring war er super und Charisma hatt zte er auch. Er hat klasse Matches abgeliefert wie das I Quit Match gegen Steanboat. Er war für die NWA das was Hogan für die WWF wahr."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Blazewrote on 09.12.2009:[6.0] "In den Siebzigern und vielleicht bis Mitte der Achtziger ein guter Wrestler. Spätestens zum Ende der Achtziger im Ring nicht mehr zeitgenössisch. Fehlende Dynamik, zudem gab es in puncto Ringpsychologie seitdem weitaus bessere. Am Mic liefert er bis heute eine ganz große Show. Im Ring zu einseitig, langweilig. Anerkennung für die große Hingabe zum Sport, einstiges Pioniertum, aber Abzug für die letzten 15 Karrierejahre und deutliches Überschreiten seines Zenits."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mister MOwrote on 01.12.2009:[5.0] "Nur 5 Punkte, weil er einfach eine Rampensau ist, der nicht weiß wann es genug ist. Sein toller Abschied bei WM24 war jetzt betrachtet voll für den Allerwertesten. Die 5 Punkte hat er, aufgrund seienr unnachahmlichen Karriere, dann doch verdient, aber mehr nicht, da im Ring auch sehr limitiert."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MrSmackdownwrote on 30.11.2009:[6.0] "Hat seine Karriere längst hinter sich, nun durch die Rückkehr macht er sich alles kaputt, däfür gibts nurnoch befriedigend, schön er war ein Mega Star, vor 15- 20 Jahren....."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: brianpillmanwrote on 27.11.2009:[9.0] "Vielleicht die größte lebende Legende im Business. Nicht völlig zu unrecht. Viel Charisma, unglaubliche Promos. Im Ring sehr solide, auch wenn ich ihn technisch für teilweise überschätzt halte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: chimpwrote on 18.11.2009:[3.0] "Ich habe Flair seid etwa 1990 erlebt und fand ihn wirklich zu keiner Zeit richtig gut, oft hat er mich gelangweilt! Mag sein, dass er davor wichtiges fuers Business geleistet hat, aber das ist 20 fast durchwegs aktive Jahre her, die man einfach mit einbeziehen muss. Zudem hat er sein Leben nicht im Griff und nie gehabt, weshalb es immer und immer wieder zu diesen unsaeglichen Comebacks kommt. Das aktuelle mit Hogan ist nach WM25 echt eine Frechheit!"
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Shikawrote on 17.11.2009:[6.0] "Mit meinen 16 Jahren habe ich zwar nicht alles von Flair gesehen aber das was ich gesehen hab fand ich nicht gut. Hat seinem Ruf zu sehr geschadet als er noch mit über 50 in den Ring stieg. Sein Mic Work find ich auch gar nicht soo gut wie es viele immer wieder sagen. Durch seinen Legenden Status und den vielen Titeln die er erringen konnte bekommt er dennoch 6 Punkte"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: downtown2wrote on 13.11.2009:[10.0] "Dieser Mann ist schlicht und ergreifend der Inbegriff von Wrestling. Mehr Wrestler geht einfach nicht. Er trug die NWA allein auf seinen Schultern, setzte sich sowohl in der WWF/WWE als auch in der WCW durch. War in einigen der aufregensten und berühmtesten Stables in der Geschichte des Pro Wrestling. Über 35 Jahre Ringerfahrung. Einen Mann der das Wrestling nicht nur so stark verkörpert, sondern es auch so liebt, für den ist das Wort Legende das Mindeste, was man über ihn verlieren muss."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Big Bad Booty Babywrote on 06.11.2009:[8.0] "Viele verehren ihn für seine technischen Fähigkeiten, andere hassen ihn für die vielen Chops und den unspektakulären Stil. Er ist im klassischen Sinn ein toller Wrestler, allerdings im Vergleich zu vielen Attitude- und Post-Attitude- oder gar heutigen Indy-Wrestlern wie Danielson langweilig und viel zu unbeweglich. Dazu kommt ein Rücktritt in einem Alter, das ihm jegliche Beweglichkeit oder gar Flugmanöver nahm und er kann immer noch nicht die Finger vom Wrestling lassen. Einzig am Mic ist und bleibt er über jeden Zweifel erhaben und auch durch seinen etwas fragwürdigen Lebenswandel ist der "diriest player in the game" Kult und hat nach seiner langen Karriere auf jeden Fall Legendenstatus verdient."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Orton7wrote on 21.10.2009:[5.0] "War in meinen Augen zu lange aktiv und hat sich dadurch doch noch einiges kaputt gemacht.."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Cool Papa Bellwrote on 14.10.2009:[10.0] "Mir fällt kein Größerer ein; guter Wrestler mit Love for the game"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheBrainwrote on 04.10.2009:[4.0] "Wenn ich Ric Flair mit einem Rock, Austin, Undertaker, HHH, Hulkster, etc vergleiche, dann kann ich einfach keine 10 Punkte geben. Flair war zu WCW Zeiten schon bei weitem zu alt. Physisch nicht an zu sehen, alles hing herunter und trotzdem gewann er gegen die Größten. Das konnte ich als Junge nie verstehen. Abgesehen von seinem faden Wrestlingstil der sich so erklärt dass er einfach zu wenig Kraft hatte. Also man sieht ich bin kein Flair Fan darum auch die Punkte!"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: NewGuywrote on 07.09.2009:[4.0] "tja eigentlich eine richtige legende aber menschlich überhaupt nicht ertragbar! selbst total lebensunfähig (was man an seinen schuldenberg ja sehen kann der immer und immer wieder kommt) aber kritisiert andere wo es nur geht^^"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: N3m35i54wrote on 30.08.2009:[8.0] "Ric Flair hätte glorreich bei WM 24 abtreten können, und nun ist er so tief gefallen. Ich werte daher auf 8 Punkte ab"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: teekay86wrote on 25.08.2009:[10.0] "Eine Legende. Wenn es nach mir ginge würde sein Rekord für die meisten World Titel ein Rekord für die ewigkeit sein. Leider hat er es nicht verstanden Rechtzeitig seinen Hut zu nehmen. Allerdings schmälert das seinen Status nur minimal"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Woerpwrote on 23.08.2009:[9.0] "Die Legende des Wrestling! Wer war noch mal Hulk Hogan?"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Muthmasterwrote on 14.08.2009:[2.0] "Der in meinen Augen größte Witz im Pro Wrestling. Und das beste ist, er überbewertet sich selber bis ins unmenschliche. Nicht mehr schön. Im Ring kann er leider fast nichts außer Choppen oder mal vom obersten Seil zu fliegen. Sah schon zu Beginn aus wie ein alter Mann, was man ihm aber lassen muss, er war am Mic nicht schlecht. Ansonsten frag ich mich wie er 20 World Title gewinnen konnte. Keine Legende in meinen Augen."
Rating: 2.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: 1234wrote on 08.08.2009:[5.0] "Ohne Zweifel ein legendärer Wrestler, aber wer jahrelang das Gleiche abspult und zudem den idealen Rücktrittszeitpunkt verpasst hat, kommt nicht über eine 3- hinaus."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: wweinspectorwrote on 02.08.2009:[7.0] "Also ich finde das RIc Flair viel zu überwertet wurde/wird. Sicherlich ist er gut. Aber in den letzten Jahren wahr er einfach nur schlecht!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: 108 Sternewrote on 24.07.2009:[9.0] "Eine ganz große Legende; und einer der wenigen Wrestler, die nicht mit Verbitterung zurückblicken, sondern das Business vorbehaltlos lieben. Seinem Körper hat man das zunehmende Alter schon Mitte der 90iger angesehen, trotzdem blieben seine Leistungen im Ring solide."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mick Funkwrote on 15.07.2009:[10.0] "DIE Wrestlinglegende überhaupt. Hat zwar den richtigen Zeitpunk zum Absprung verpaßt, aber für das Lebenswerk kann es nur 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Basket Casewrote on 21.06.2009:[8.0] "Durch seine weiteren Auftritte nach seinem Abschied bei WM24 zerstört er selbst sein Denkmal, ich will ihn nicht mehr sehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Matt Mackswrote on 14.06.2009:[9.0] "Ric Flair war einer der größten Stars des Wrestlings in den 80er und 90er Jahren, der sich diese Position durch zahllose Stunden Hochklasse-Wrestlings und -Unterhaltung verdient hat. Sein "Abschied" bei WrestleMania 24 war einer der emotionalsten Momente des Jahres und in meiner Zeit als Fan überhaupt, was durch die exzellenten Szenen bei der Hall Of Fame-Veranstaltung und der RAW-Sendung danach noch unterstrichen wurden. Was Flair jedoch mittlerweile betreibt, ist Raubbau an seiner eigenen Reputation. Mit seinen selbst auferlegten Zwänge nach weiteren Matches für viel Geld sowie seiner vollständig respektlosen Behandlung des Vertragspartners Ring Of Honor treibt Flair ein gefährliches Spiel, das damit enden könnte, dass wir uns nicht mehr an Flair, den Star, erinnern werden. Nicht nur wegen der unakzeptablen Komplettverarschung von ROH seitens Flair habe ich persönlich NULL Interesse, Flair noch einmal zu sehen, geschweige denn als Aktiver im Ring."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Theron083wrote on 07.06.2009:[6.0] "Eigentlich eine große Legende, aber massive Abzüge für sein "Comeback". Der ganze große Abschied von WM 24 mit Michaels wird damit lächerlich gemacht. Bähh.."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Unrated Superstarwrote on 04.06.2009:[8.0] "Der alte Mann und das Wrestling! Hat auch jetzt immer noch einiges drauf, wenngleich die Ring-Skills mit dem Alter immer mehr nachlassen. Erfahrener Ringfuchs und eine wesentlich größere Respektperson als andere sogenannte "Legenden" wie u. a. Hulk Hogan, da er sich nicht auf den Lohrbeeren von Vorgestern ausruht und stehts bemüht ist das Publikum im Ring zu unterhalten. Bekommt aber dennoch einen Punkteabzug, da er zur Zeit mit seinem In Ring-Comeback-Gehabe dabei ist an seinem eigenen Thron zu sägen. Ric, lass es einfach sein!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: heiniwrote on 10.04.2009:[10.0] "Man bewertet hier einen der besten Pro-Wrestler aller Zeiten. Flair hat nicht nur heute bekannte Moves wie den Chop oder den Figure-Four Leg Lock erfunden, er konnte diese auch perfekt einsetzen und wurden dadurch ein 16faches World Champion. Ebenfalls bewundernswert am Nature Boy ist, dass er von den Fans sowohl als Face als auch als Heel angenommen wurde und sich auch perfekt in die Rollen heineinversetzen konnte. Das größte was Flair wohl neben seinen World Championships geleistet hat, ist sein Abschied vom aktiven Wrestling. Dies wird wohl der größte Abschied eines Wrestlers für lange Zeit sein und die nächsten werden einfach klein im Vergleich zu Flairs scheinen. Es bleibt nur zu sagen: WOOOOOOOOOOOOOOOOOOOOOOOOOOO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The-Game91wrote on 01.02.2009:[10.0] "35 Jahre hat er sich dem Wrestling gewidmet und wurde zur Legende. The greatest of all time!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rattlesnakewrote on 31.01.2009:[10.0] "Sicher gibt es bessere Techniker. Aber er war ein perfekter Wrestler. Grundsolide Aktionen; umfassende Ringpsychologie - herausragendes Micwork und unglaubliches Charisma. Grandiose Kämpfe mit Steamboat, Sting, Vader und vielen anderen - und dabei immer glaubwürdig. Im Alter sich auch nicht zu schade, für andere zu jobben. Kurz: einer der größten aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: vida-locawrote on 29.01.2009:[6.0] "Wenn er früher zurück getreten wäre hätte er 10 punkte bekommen, aber so leider nur sieben da es am ende einfach unrealistisch aussah wenn die jungen stars besiegt"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ScrWwe94wrote on 10.01.2009:[10.0] "Fand ihn wirklich Klasse und hat ein perfektes Abschiedsmatch gegen Shawn Micheals geliefert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sallywrote on 31.12.2008:[3.0] "Flair stand einfach zu lange im Ring. Er hätte schon viel früher aufhören sollen. Am Ende seiner Karriere wirkte er einfach nur noch unglaubwürdig (Verteilte nur einen Chop nach dem anderen). Früher mal ein einigermaßen guter Wrestler aber die letzten Jahre vor seinem Karrierenende nur noch lächerlich."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Jar Jar Binkswrote on 18.12.2008:[10.0] "Was will man da noch Großes sagen außer "Whoooooo! "?  Dieser Mann hat Wrestling geprägt und ist einfach die Legende schlecht hin."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: manager1977wrote on 10.12.2008:[10.0] "Nicht unbedingt einer meiner Lieblingswrestler aber sicher einer der ganz großen des Business. Ric Flair war ein Wrestler der das Geschäft gelebt hat. Dafür auf jeden Fall die Höchstwertung."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Amazing Bluewrote on 19.11.2008:[10.0] "Einer der besten Wrestler aller Zeiten, der mich fast immer überzeugen konnte. Dazu das großartige Karrieende. Einfach top!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: domi1984wrote on 10.11.2008:[10.0] "Flair gehört zu den besten Wrestlern die je in diesem Geschäft gearbeitet haben. WHOOOOOOOOOOOOOOOOO & 10 Pkt. !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Animal360wrote on 24.10.2008:[10.0] "Er hat dem Business mit all seinen Taten geholfen es groß zu machen. Er lebte das Business mit Blut, Schweiß und Tränen. Er ist einfach Legendär. Deswegen ein WOOOOOOOOOOOOO! und 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: thxthxwrote on 20.09.2008:[3.0] "War nie ein großer Flair Fan - mochte shcon eine Aufmachung nicht."
Rating: 3.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Niklas1106wrote on 28.08.2008:[10.0] "Eigentlich hätte Ric auf dieser Skala eine 11 verdient, aber leider geht sie nur bis 10. Ric ist über Jahre hinweg ein Meilenstein im Sportsentertainment gewesen und zu Recht "Hall of Famer" Seit dem ich Wrestling schaue ist er dabei und stets hatte er Kultstatus bei mir. Sein Matches sind stets sehr unterhaltsam gewesen und seine Abschiedsfede mit Vince (mit der Klausel dass er bei der nächsten Niederlage gefeuert wird) haben mit dem Match bei Wrestlemania ein würdiges Ende für seine großartige Karriere gebildet. Sein Abschiedsmatch bei Wrestlemania ist für mich bis jetzt das beste und unterhaltsamste Matche des Jahres! WHOOOOOOO"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: SelfEsteemwrote on 31.07.2008:[10.0] "Mehr als "WOOOOOOOOOOOOOOOO" kann man hier wohl nicht sagen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CenaSuckswrote on 29.07.2008:[10.0] "Was soll man sagen außer ein kräftiges 16-Times: Wooooooooooooooooooooooooooooooo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Weihnachtsmannwrote on 23.07.2008:[5.0] "Oh ja, Ric Flair... Hmh. Sein In-Ring-Stil gefiel mir nie (gerade in den letzten Jahren seiner Karriere extrem langweilig), sein Micwork fand ich immer grenzwertig. Verdient aber Anerkennung für seine lange Karriere und für das, was er für den Sport geleistet hat. Daher noch 5 Punkte."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Dirkiboywrote on 06.07.2008:[10.0] "ein ganz Großer des Geschäfts. Mehrfacher Champion in allen Ligen. Top ! Er hat große Schlachten geschlagen und auch wrestlerisch recht viel drauf (ganz im Vergleich zu z. B. Hogan). Eine wahre Ikone und von daher gibts die Topwertung !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: andrekoenigwrote on 20.06.2008:[10.0] "Der Nature Boy ist ohne Zweifel einer der größten Wrestler in der Geschichte dieses Sports. Er hat sich legendäre Matches mit z. B. , Dusty Rhodes geliefert und war Mitglied eines der dominierensden Stables überhaupt: der Four Horsemen. Er hat seine 16 World Titles auch ohne Zweifel verdient. Er hatte wirklich, eine der größten Karrieren im Sports Entertainment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: LordTrailerwrote on 16.06.2008:[10.0] "Ich muß zugeben, dass er persönlich nie mein Fall war, aber ich erkenne seine Leistungen klar an. Er hat über mehrere Jahrzehnte eine tragende Rolle gespielt. Zwar hat er den Absprung meines erachtens um ein paar Jahre zu lange verzögert, aber das schmälert nicht seinen Beitrag zur Wrestlingwelt. Auch wenn er für mich nicht der größte aller Zeiten ist, bleibt mir nichts anderes als die Höchstpunktzahl zu ziehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Blue Meaniewrote on 07.06.2008:[10.0] "Einer der besten aller Zeiten, wenn nicht sogar DER BESTE. Naitch war klasse und sein Abgang das emotionalste, was ich bisher im Wrestling miterleben durfte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DeadHeadwrote on 04.06.2008:[10.0] "The jet flying, limousine riding, kiss stealin, wheelin dealin, son of a gun! WOOOOOOOOOO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kevichenkowrote on 01.06.2008:[10.0] "Er hat das Wrestling geprägt. Er war einer der komplettesten Wrestler aller Zeiten , und auch ohne seine 16 World-Title Gewinne wäre er was einzigartiges. Wooooooooooooooooooooooooooooooooooooooo ... !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Frutzwrote on 15.05.2008:[10.0] "Seltsam. Die einzig wirklich bewusste Zeit war 92, 93 in der WWF. Ich habe ihn gehasst, gegen den Macho Man, noch mehr gegen Bret Hart, gegen Mr. Perfect, der Vorzeige-Mark. Und trozdem, wenn ich seine Matches sehe, wenn ich sie lese, wenn ich ihn sehe, seine ganze Erscheinung, ich gebe es zu, da bin ich Mark: 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Haribowrote on 14.05.2008:[10.0] "Hat eine einzigartige Karriere hingelegt. Einer der charismatischsten Leute, die je einen Ring bestiegen haben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Timmiwrote on 30.04.2008:[10.0] "Er ist für mich einer der besten der Welt er hat fast alles erreicht was man erreichen kann. Hamma!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Riley Mathewswrote on 28.04.2008:[10.0] "Hab ihn sicherlich nicht so oft gesehen da ich erst 2005 angefangen hab zu gucken aber bei seinem Abschied bei RAW kamen mir trotzdem die Tränen. Thank you Ric!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Bigkev82wrote on 26.04.2008:[10.0] "WHOOOOOOOOOOOO! zwar sagt man immer als erstes Hulk Hogan, aber für mich is Flair die absolute Wrestling Legende. Hätte nicht gedacht, dass er so ei super match gegen Shawn zeigt. Schade dass er geht, aber er geht wenigstens wo es noch nicht peinlich ist ihm im Ring zu sehen the dirtiest player in the game... In Zwanzig Jahren werden die fans bestimmt immer noch "WHOO" bei chops rufen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Champwrote on 26.04.2008:[10.0] "10 Punkte für den Dirtiest Player in the Game! Mehr muss man zu ihm einfach nicht sagen. Nur das er grade im Mic-Work seine große Stärke hatte, an die nur ganz wenige ran kommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Undertalkerwrote on 22.04.2008:[8.0] "Einer der größten, wenn nicht gar der größte Name des Wrestlings, und das zurecht. Er ist unglaublich beständig und überall wo er die Finger im Spiel hatte, überzeugte er. Sein Micwork ist auch klasse, ebenso wie sein ganzes Auftreten. Ich finde ihn im Ring unheimlich unterhaltsam. Flair ist ein begnadeter Entertainer! Und trotzdem gefällt mir sein Wrestling-Stil nicht, da er keine große Aktionsvielfalt an den Tag legte und sich auch nie Mühe gab, sich mal etwas Neues draufzuschaffen. Da ich ein Fan von gutem, technischem und abwechslungreichem Wrestling bin, kann ich ihm, auch wenn's mir selber wehtut, nicht die volle Punktzahl geben. Hierauf lege ich nunmal viel Wert!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Julian007wrote on 21.04.2008:[10.0] "Ric ist einer der Besten Wrestler die es je gab dieser mann ist einfach eine Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: e-trom995wrote on 21.04.2008:[10.0] "Dieser Wrestler hat für seine Karriere einfach nur eine 10 verdient!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheAdaawrote on 13.04.2008:[10.0] "Die Legende des Wrestling! Nicht so bekannt wie Hogan, aber geschichtlich gesehen weitaus bedeutender. Die Four Horseman, die Art wie sich Wrestling entwickelte und sein Auftreten prägten das Wrestling wie niemand anderes. Was er anpackte machte er zu Gold. Thx for evrything Flair."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Muffiwrote on 13.04.2008:[10.0] "Einfach eine Legende. Hat sogar im hohen Alter gezeigt das er klasse Geschichten im Ring erzählen kann, die nicht nur aus Chops und Whoooos bestehen, wie manche Leute gerne behaupten. Eine großartige Karriere."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Dynamite4wrote on 11.04.2008:[10.0] "Legende. Hat eine Unglaubliche Kariere. Schade das sie zuende ist"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Aglaoswrote on 10.04.2008:[10.0] "9 Punkte für den Wrestler und einen Bonuspunkt für seine Einstellung zum Biz. Goodbye, Ric. Danke für die vielen schönen Stunden!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Tomkowrote on 10.04.2008:[10.0] "Diesen Mann kann man nicht mit Worten beschreiben..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Yukkowrote on 07.04.2008:[4.0] "Naja.... er mag früher mal was gewesen sein aber in seinen "aktuelleren" Matches bringt er immer das selbe. Chops... mehr nich -. -*"
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Bomberman2000wrote on 07.04.2008:[8.0] "Man braucht nur ein Wort um Ric Flair zu beschreiben: Woooooooo!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Fire Devil1990wrote on 06.04.2008:[10.0] "Ich finde er machte trotz seines Alters eine gute Figur. Aber ich denke, dass trotz seines "Ruhestandes" ihn die WWE noch anderweitig einsetzen wird."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Timetoplaythegamewrote on 04.04.2008:[10.0] "THE DIRTIEST PLAYER IN THE GAME. ! DER! Wrestler schlechthin. Eine lebende Legende, mit niemanden zu vergleichen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Steven McWheelerwrote on 03.04.2008:[10.0] "Eine Ikone dieses Sports, keiner redet sich so schön in Rage und kriegt nen so lustig roten Kopf wie er^^ Der Größte auf lange Zeit gesehen"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheROCKwrote on 03.04.2008:[10.0] "Ric Flair ist einfach ''The Man''. Natürlich hat Hulk Hogan Wrestling zum weltweiten Phänomen gemacht, aber niemand hat, nichtmal Hogan, dieses Business so gelebt wie der Nature Boy Ric Flair. Thank You Ric !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ReY-mYsTeRiOwrote on 03.04.2008:[10.0] "Schon nur für sein Match gegen HBK sollte man Ric 10 Punkte geben Thank you Nature Boy wir werden dich vermissen !  WHOOOOOOOOOOOOOOOOOOOOOOOOOOOO"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sabu316wrote on 03.04.2008:[10.0] "Habe ihm bei der ersten Bewertung 10 Punkte gegeben da er einer der besten (evtl. der beste) Wrestler aller Zeiten war. Muss nun aber noch ein dickes DANKE loswerden dafür das ich ihn in den letzten 18 Jahren (! ) im Ring erleben durfte!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Eaterwrote on 02.04.2008:[10.0] "Wenn diese einzigartige Karriere keine volle Punktzahl verdient hat dann hat es keine. Danke Ric!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ultimate-warrior-xwrote on 02.04.2008:[10.0] "The show must go one! Leider nun ohne Ric Flair. Wer so lange oben war wie Flair hat eine 1 verdient. Eine der grössten Legende diese Geschäfts. Wrestlemania 24 hätte mit dem Kampf HBK vs. Flair abschliessen müssen, es spricht aber für Flair, dass er abgelehnt hat um Jüngere den Vortritt zu lassen. Thank you Ric!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Eddiewrote on 02.04.2008:[10.0] "Jetzt nach Wrestlemania muss man erst recht die 10. 0 geben, das Match gegen HBK war genial. Mit einem Cross Body vom Top Rope, sowas habe ich von ihm noch nie gesehen! Thank you Ric!  Einfach einer der Besten (wenn nicht DER Beste) aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: fairywrote on 02.04.2008:[10.0] "einer der besten Wrestler aller Zeiten " thank you Ric""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Dave Concordiowrote on 01.04.2008:[10.0] "Ric Flair... welche Worte wären dem Mann schon gerecht? Der Michael Jordan, Babe Ruth, Joe Montana, Muhammad Ali, Pele des Pro Wrestlings... Hogan hat es vergleichsweise nicht verdient in dem Schatten derer zu gehen, die im Schatten von Flair gehen. Thank you Ric Flair."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Instant Classicwrote on 01.04.2008:[10.0] "Wahrscheinlich DIE Legende schlechthin. Hat aufgrund seiner Geldsorgen allerdings das rechtzeitige Karriereende verpasst und verliert von Jahr zu Jahr an wrestlerischen Fähigkeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: xXJohnCenaXxwrote on 01.04.2008:[10.0] "The greatest Wrestler of all time - so formulierte es Shawn Michaels und als HBK Fan kann ich mich dem nur anschließen.... 16-times World Champion, das schafft niemand anderes mehr, zu Ehren Rics sollte das ein Rekord für die Ewigkeit werden, dass Match bei Wrestlemania war nur großartig, besser hätte ich es aber gefunden wenn Shawn Michaels nach der SCM das Cover bei 2 abgebrochen hätte und dann unter Kopfschütteln einfach gegangen wäre, bei der nächsten RAW Show hätte er verkünden sollen, dass er es einfach nicht konnte und Ric hätte von selber retired. Trotzdem zu das Ende von Monday Night RAW war gut gemacht und wer weiß vllt. kommt er ja doch nochmal zurück holt sich den Title und geht dann wirklich in Rente, er ist ja der dirtiest payer in the game, ein letztes mal noch.... Woooooooooooooooooooooooooooooooooooooooooooooooo"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Pink and Black Attackwrote on 01.04.2008:[10.0] "mir ist klar, dass jetzt nach seinen karriere ende und dem match bei WM24 die kommentare fast nur positiv ausfallen werde. ich werde mich dem anschließen, denn lässt man seine karriere revue passieren, haben nur wenige so für den sport gelebt und soviel zum sport beigetragen wie ric. und das er bei WM noch so ein match aus dem hut zauberte, natürlich mit einfluss von HBK, dann kann man nur sagen, hut ab, tolle leistung!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Asumawrote on 01.04.2008:[10.0] "Das einzige was ich zu diesem Mann sagen kann ist: "Thank you Ric""
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Muutzwrote on 01.04.2008:[10.0] "Ric Flair, eine Wrestlinglegende, ich weiß gar nicht wo das Problem liegt " Er ist ale wie mein Opa den will ich nicht sehen". Wir sind hier beim Wrestling und nicht auf ner Modenschau oder auf Partnersuche.. Eine tolle Karriere ging zuende, eine schöne Rente dir RIC !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: D3adm4nwrote on 01.04.2008:[10.0] "Whoooo! Gelungener Abschied mit dem Wrestlemania Match... wird für immer unvergessen bleiben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: mdbnasewrote on 31.03.2008:[10.0] "Ich mag ihn als Typ überhaupt nicht. Sieht scheisse aus und hat 'ne blöde Frisur. Allerdings ist er der wahre Wrestlingkönig und ein Stehaufmännchen der alle Höhen und Tiefen des Biz gemeistert hat!  Auch wenn ich ihn nicht mag hat er nach seinem Abschiedsmatch bei WM 24 nun doch eine 10 verdient"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Hardcoremaniacwrote on 31.03.2008:[10.0] "Ich denke man kann es wahrlich sagen: Der beste aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kain Wolfsheadwrote on 31.03.2008:[10.0] "Wird wohl von niemandem mehr erreicht. Diamonds are forever. So is Ric Flair!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: HCN007wrote on 30.03.2008:[10.0] "Die Legende schlechthin - Die HOF-Aufnahme fehlte noch um Ihm ein Denkmal zu setzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Joe710wrote on 28.03.2008:[10.0] "Einer der besten Mic Worker, des gesamtem Buissnes. In der RAW Ausgabe vor Wrestlemania hat er, dass mal wieder eindrucksvoll unter Beweis gestellt. Wird als Wrestler, meiner Ansicht nach etwas überbewertet. Doch die Leidenschaft, die Liebe und die Bereitschaft, die er für dieses Buissnes zeigt, ist selten. Deßhalb die volle Punktzahl, für eine wahre Legende des Professional Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Ruppiwrote on 27.03.2008:[10.0] "Im Ring sehr gut. Am Mic sehr gut. 20 World Titles. Jede Halle betet ihn an. Passt perfekt in die Rolle des Nature Boy. Was kann man sonst noch sagen. Er hat (ohne Zweifel) seinen Zenit überschritten. Aber man kann ihn nach über 30 Jahren Wrestling, in denen er meistens im Main Event stand, meiner Meinung nach, nicht nach den letzten paar Jahren beurteilen. Deswegen steht die 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ZuluBunsenwrote on 24.03.2008:[10.0] "Für jemanden wie ihn gibt es nur eine gerechtfertigte Note, was hab ich den Mann damals als junger Mark bei WCW gehasst. Unterdessen bin ich mir aber Flairs Verdiensten im Business bewusst und kann kaum eine andere Note als die 10 geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Heatwrote on 13.03.2008:[10.0] "Heute klar kein überragender Wrestler mehr, doch er kann nach wie vor tolle Promos halten und was Ric Flair früher war, zeigen seine etlichen exzellenten Matches und auch seine vielen World Heavyweight Titelregentschaften sprechen doch für sich, oder? !"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: stryker9wrote on 27.02.2008:[10.0] "Die Statistiken von ihm sagen ja schon alles. Bekommt jetzt seinen verdienten Abschied. Wenn er nicht mehr da ist fehlt doch was. Er gehörte halt immer dazu. Aber die Zeiten ändern sich halt auch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: mr sledgehammerwrote on 26.02.2008:[8.0] "Der Nature- boy ist eine lebende Legende, schon klar. Aber ausser ein paar Back Chops schafft er doch auch nicht mehr. Und noch etwas kann er: WHOOOOOOOOOOOOOOOOO! .......... Gratulation! Aber weil er einfach Charisma hat......... eine Noch-2!"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Amurebkuwrote on 25.02.2008:[6.0] "Er ist eine Legende, ohne Frage. Aber er konnte mich niemals in seinen Bann ziehen. War nie ein Fan von Ric Flair. Trotzdem ist er ein guter Mann der viel im Wrestling-Business bewegt hat."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: FifaFrancescowrote on 21.02.2008:[10.0] "Zu Ric Flair muss man ja wohl nicht viel sagen, oder?"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Staniwrote on 21.02.2008:[8.0] "Zusammen mit Sting der Mann der WCW. Leider schaffte er nicht den Absprung vor ca. 10 Jahren. Hatte ab der Zeit in der WCW kein vernünftiges Gimmick mehr udn auch in der WWE wusste er nur noch kurzzeitig bei der Evolution zu überzeugen. Leider hat er den Karriereabsprung einfach nicht geschafft und zerstört sich somit seinen Ruf"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Showstopperwrote on 10.02.2008:[10.0] "Wenn man Flair bewertet, sollte man sich nicht auf seine letzten Jahre beschränken, sondern seine ganze Karriere würdigen. Er war der Top Draw der NWA in den 80ern, er war neben Sting der Name in der WCW, und selbst jetzt in der WWE hat sein Name noch Zugwirkung. Außerhalb der McMahonschen Comicwelt dürfte er einer der bekanntesten Namen sein, wenn man nach Wrestlern fragt. Anders ausgedrückt: der Mann ist eine Legende und hat die 10 Punkte mehr als verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Meanbeastwrote on 26.01.2008:[8.0] "War maßgeblich beteiligt an dem Durchbruch des Wrestlings zu dem Status, den das Wrestling heute einnimmt! Meiner Meinung nach einer der wenigen, die auch überzeugend den World Champion mimten! Ne 2 nur deshalb, weil er sich durch sein schlechtes Booking in der WCW Ende der 80er, Anfang der 90er keine wirklichen Freunde machte und weil er bei der kleinsten Berührung anfängt zu Bluten! ;D"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DarkWarrior86wrote on 24.01.2008:[6.0] "Konnte mich noch nie wirklich mit Ric Flair anfreunden, trotzalledem hat er viel fürs Wrestlingbuiz getan und kommt Wrestletechnisch lange nicht so lächerlich rüber wie ein Hogan.. Andererseits sollte er so langsam aber sicher seinen Mantel (bzw. Bademantel) nehmen und in Richtung Sonnenuntergang schlendern :-)"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: FreezyWwrote on 16.01.2008:[4.0] "ich kann bis heute nicht verstehen was man an ihm toll finden kann. ich hab maatches von ihm frpher gesehen und muss zugeben das er auch damals nie mehr als ein durchschnittswrestler war aber heute ist er einfach nur noch lächerlich. Ein Opa mit Hänge-Brustmuskeln und Schwabelwampe der durch den Ring hinkt und einen chop nach dem anderen austeilt. Wegen einigermassen guter Promos gibts von mir noch ne Vier. Auf das er nach Wrestlemania gehen mag..."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Yetiwrote on 05.01.2008:[8.0] "Tja, ich kann wohl nicht anders als nach seinen zuletzt gezeigten Leistungen wieder acht Punkte zu vergeben."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: AnFuwrote on 05.01.2008:[10.0] "Der Nature Boy, eine echte Legende, 16 World Titles, auf seiner Abschlusstournee, in einem der besten Stable des Wrestlinggeschäfts gewesen, drei *****-Matches gegen Ricky Steamboat, ich kann nur volle Punktzahl geben!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "Der nächste Nature Boy und 20malige Champ zieht ebenfalls die 1! Absoluter Superstar, es wird aber langsam Zeit, dass er seine erfolgreiche und lange Karriere beendet-hoffentlich mit einem gebührenden Abschied bei WM 24!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Cactus Danielwrote on 02.01.2008:[10.0] "Ein hervorragender Wrestler. Selbst mit 58 Jahren ist der den meisten Wrestlern im WWE Roster im Hinblick auf Wrestling-Skills und Mic-Work um längen überlegen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: real americanwrote on 02.01.2008:[10.0] "Er ist wohl tatsächlich der größte Wrestler aller Zeiten. Im Ring und am Mic einfach nur un glaublich, dazu massenhaft Charisma und auch hinter den Kulissen absolut respektiert und geachtet. Heute natürlich nicht mehr ganz so stark wie früher aber er hat einen würdigen Abschied vollkommen verdient, inklusive HoF Aufnahme."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: jimpanse1980wrote on 01.01.2008:[10.0] "Wenn ich mir hier einige Kommentare ansehe, dann dürften Alle, die noch mit 50 oder älter im Ring stehen keine 10 P mehr bekommen, da sie ja mit dem Alter (verständlicher Weise) schwächere Leistungen zeigen. Soll man aber deswegen Männern wie Flair nicht die volle Punktzahl geben? NEIN, denn ist eine Legende und hat diesem Sport einfach so viel gegeben, dass hier nur die Bestnote stehen darf."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Wuschl 85wrote on 15.12.2007:[4.0] "Ohne Zweifel hat dieser Mann viel erreicht, was allein seine 16 WorldTitle zeigen, und er hat auch zweifelsohne einen großen Anteil daran gehabt ( die Betonung liegt auf "gehabt")wo das Wrestling heute steht. Seinen Absprung scheint er dennoch nicht zu schaffen. Denn ein so alter Herr im Ring wirkt einfach nur unglaubwürdig, vor allem dann wenn er wirklich nocheinmal einen großen Titel gewinnen sollte. Zudem zeigt er ähnlich wie der Hulkster immer die gleichen Aktionen ( Chops, Chops und noch mehr Chops). Ohne Frage hat dieser Wrestler Ausstrahlung wie fast kein Zweiter, aber er lebt halt nur noch von vergangenen Tagen. Mir reicht es halt nicht das ein Mann immer wieder das selbe Match durchzieht (wenn auch solide)."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Reno Cortavillawrote on 09.12.2007:[10.0] "Meiner Meinung nach, der beste Wrestler aller Zeiten!  WOOOOOOOOOOOOOOOOOO! :-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Locutuswrote on 08.12.2007:[10.0] "Ric Flair ist der größte Wrestler aller Zeiten, ohne Zweifel. Neben seinen großen Verdiensten in der Vergangenheit war es sich nie zu schade, sich für irgendjemanden hinzulegen und nimmt noch mit Mitte 50 unglaubliche Bumps wie einen Back Suplex von einer Leiter. Wenn irgendjemand die 1 verdient hat, dann er. Er wir dem gesamten Business fehlen wenn er aufhört."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: mugel 187wrote on 28.11.2007:[8.0] "Einer der besten! Gefiel MIR aber besser in wCw! Zur eins fehlt aber noch Abwechslung!  WOOOOOOOOOOOOOO"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Pulpulwrote on 28.11.2007:[10.0] "Verdient den Begriff Legende einfach. Egal ob heute, vor 5, 10 oder 15 Jahren... Wrestling OHNE Ric Flair einfach unvorstellbar. Unfassbar unterhaltsam, egal in welcher Form und für so viele Klassiker verantwortlich. Einfach eine Bereicherung in der großen Welt des Wrestlings."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rock is Jerichowrote on 27.11.2007:[10.0] "The Dirtiest Player in the Game! Einer der Besten aller Zeiten, nicht mein absoluter Fave, aber die 1 hat er sich auf jeden Fall verdient."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Davewrote on 26.11.2007:[8.0] "Top Wrestler der göttlich in der WCW war ... Hätte jedoch einfach schon lange aufhören sollen und eine Talentscout Tätigkeit oder ähnliches machen sollen. Mittlererweile ist es ne Schande ihn hinterseinen Hängebrüsten hinterher kriechen zu sehn."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Undertaker13wrote on 22.11.2007:[10.0] "Die Legende schlecht hin. Ich hoffe er bekommt noch einen richtig großen Abschiedspush bis WrestleMania 24."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: bastinhowrote on 20.11.2007:[10.0] "Eine Legende des Wrestlings. Ist über Jahrzehnte immer an der Spitze der Promotion gestanden, in der er tätig war und ist nicht um sonst 20-facher World Champion. Er hat natürlich auf Grund seines Alters einiges an In-Ring-Skills eingebüßt, aber mit dem richtigen Gegner ist er immer noch ein Garant für ein gutes Match. Und in Sachen Mic-Work kann ihm auch heute noch keiner das Wasser reichen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Frommeltwrote on 20.11.2007:[8.0] "Schade das er am Ende seiner Karriere nicht öfter zu sehen ist. Woooooo"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DrBreswrote on 12.11.2007:[8.0] "Sicherlich eine Legende, aber es wird Zeit für den letzten großen Run - damit Flair abtreten kann, wenn es am schönsten wird... und dann als Heel-Manager auftrumpfen kann, wenn er sich zu schade ist, dem Wrestling den Rücken zu kehren..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Scotty 2 Hottywrote on 12.11.2007:[10.0] "Natürlich gibt es für den Nature Boy volle 10 Punkte. Seine Karriere ist unbeschreiblich, wobei er sich auch im höheren Alter für nichts zu Schade ist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Figure4wrote on 28.10.2007:[10.0] "Ric Flair ist einzigartig. Mit seinen großartigen Matches, insbesondere früher, hat er mich besser unterhalten als alle anderen Wrestler der Vergangenheit und Gegenwart. Forever the man."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Benny110106wrote on 28.10.2007:[10.0] "Einfach der Nature Boy. Wirkt als Wrestler manchmal sehr langweilig, aber wer über 30 jahre dabei ist auf hohen Level verdient die 1."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: King of Queenswrote on 27.10.2007:[10.0] "Um diesen Mann zu beschreiben, braucht es unzählige Superlative. Seit Jahrzehnten sorgt er für gute Stimmung, volle Arenen und tolle Matches, die noch immer auf hohem Niveau spielen. Und auch heute noch können manche junge Wrestler von den heutigen Qualitäten des "Nature Boy" im Ring und am Mic nur träumen. Flair kann noch immer in den brutalsten Matches einstecken, austeilen und einfach nur gut aussehen, wie er bei WrestleMania22 und im TLC-Match mit Edge anfang 2006 eindrucksvoll beweisen konnte. Vor diesem Mann muss man einfach seinen Hut ziehen für dieses einmalige Lebenswerk. Und auch wenn er bei WM24 aufhören wird mit dem, was er am besten konnte, dem Wrestling, so bleibt er auf Ewigkeit der wahrscheinlich größte Wrestler aller Zeiten. WHOOOOOOO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rated-R-Fanwrote on 21.10.2007:[8.0] "Früher einfach klasse! Doch er hat mittlerweile etwas von seinem Glanz verloren."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: HBK-Xwrote on 17.10.2007:[10.0] "Wooooooooooooooooooooooooooooooooooooooooooooooooooooo! Der beste Wrestler aller Zeiten! Ric Flair based on Ric Flair being Ric Flair! Der iss so drauf, er ist DER MANN, und mehr ist dazu nicht zu sagen!  Doch eins: Er muss zum 17. mal World Champion werden!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CM Dannywrote on 15.10.2007:[10.0] "Das Wort Legende reicht nicht aus um Flair zu beschreiben. Im Gegensatz zu Luger ist Flair wirklich das "Total Package". Im Ring auch im hohen Alter noch gut dabei, am Mikro unverwechselbar und charismatisch bis in die Haarspitzen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Hunter2007wrote on 04.10.2007:[10.0] "In Vergangenheit sowie in Gegenwart immer mit bester Qualität bei der Sache und am Mic zeigt er auch sonderbare Leistungen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Jerichoholicwrote on 02.10.2007:[10.0] "Die Wrestlinglegende schlechthin - tut sich selbst einen großen Gefallen wenn er seine Schuhe im kommenden Jahr an den Nagel hängt, wenngleich er noch immer zu starken Leistungen im Stande ist. Die jungen Worker dürfen sich gerne eine Scheibe davon abschneiden!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: dariawrote on 30.09.2007:[8.0] "eine Legende, am Mic ungeschlagen, allerdings finde ihn als Wrestler nicht so toll, deswegen auch nur gut"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Medeawrote on 29.09.2007:[4.0] "Große Anerkennung für seine früheren Erfolge und Leistungen, aber ich finde, dass es Zeit wird zu gehen, wenn die Kondition und die Auswahl an Moves nicht mehr ausreichen und man in seinem Stil einfach nicht mehr hineinpaßt. Da ist Wrestling wie jedes andere Business, es unterliegt Veränderungen und eine neue Generation rückt nach. Auch ein Ric Flair bleibt davon nicht verschont."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Nick Toxicwrote on 24.09.2007:[8.0] "Sorry, aber hat man ein Flair-Match gesehen kennt man echt alle, weil er wirklich immer das gleiche Programm abspult. Aber, bevor man mich in der Luft zerfetzt, Flair hat Charisma ( viel davon ) und kann auch wirklich die letzte Wrestlinggurke gut im Ring aussehen lassen. Das macht einen guten Wrestler auch aus und deswegen bekommt der gute Mann saubere 8 Punkte xD"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Mountiewrote on 17.09.2007:[10.0] "Jede Wrestling Hall of Fame, die was auf sich hält, muss für Flair einen eigenen Flügel einrichten. Weltklasse im Ring, sprudelnd vor Charisma, top am Mikro und füllt die Hallen - wer kann all das gleichzeitig sonst von sich behaupten? Er erfreut den Puristen ebenso wie den Showfan, er ist der Frank Sinatra des Wrestling und vielleicht wirklich der Größte aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Bullit69wrote on 16.09.2007:[10.0] "Der Nature Boy! Für mich der Beste aller Zeiten und wird hoffentlich einen grandiosen Abschied feiern nächstes Jahr bei WM24 oder vielleicht hängt er noch ein Jahr ran bei Flair weiß man nie! Jedenfalls DIE Legende des Wrestling! WOOOOOOOOOOOOO"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Zombrerowrote on 04.09.2007:[4.0] "Sicher, der war mal echt gut und hat auch heute noch Unterhaltungswert und echte Story- Qualitäten. Doch beim wrestlen kann ich ihm die letzten zehn Jahre fast nicht mehr zusehen. Schwerfällig, keine Ausdauer mehr. Man sollte ihm noch einen letzten großen Kampf geben. Vielleicht einen Tag-Titel- Gewinn mit Batista, oder so."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: sebigentnerwrote on 02.09.2007:[6.0] "Ansehenswerte Matches, auch wenn er an sich mittlerweile "ausgelutscht" rüberkommt. Hätte ihn gerne Backstage oder als GM."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: JesseBodywrote on 28.08.2007:[8.0] "Hat mittlerweile den gleichen Maskenbildner wie Sylvester Stallone. Gruselig. Seine "Ich fliege gestreckt auf die Fresse" und "Ich mach einen Kusselkopp über den Ringpfosten" fand ich immer daneben. Ansonsten aber sehr viel Charisma. Wer über Jahrzehnte! an der Spitze des Wrestlings steht, hat schon mal viel Respekt verdient. Ich denke, der hat in seiner Karriere nichts ausgelassen..."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CSHincwrote on 18.08.2007:[10.0] "der beste der größte und der bedeutenste wrestler aller zeiten"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: jupp365wrote on 18.08.2007:[10.0] "In meiner frühen Zeit als Fan habe ich Ric Flair gehasst. Er hat immer einen spitzen Heel abgegeben. Heute empfinde ich nur noch Respekt für ihn! Eine wahre Ikone, eine wahre Legende!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: shannonmoorewrote on 17.08.2007:[10.0] "ich finde irgenwan hat er den perfekten zeitpunkt verpasst aufzuhören so um das jahr 2002 herum. Auch wenn ich ihn nicht mag respektiere ich seine Leistungen und sein unendliches Charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Liebeskugelwrote on 13.08.2007:[6.0] "WAR früher ein extrem guter Wrestler, der leider nicht aufhören kann. Flair sollte lieber abtreten, bevor er völlig unter die Räder kommt oder sich gar sehr schlimm verletzt."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ecw foreverwrote on 04.08.2007:[10.0] "Er war mal ein genialer Wrestler und er faszinierte durch sein Charma. Doch heutzutage ist er einfach in die Jahre gekommen. Er sollte zu sich selber sagen. "STOP RIC" jetzt ist genug du bist keine Mid Carder Legende. echt schade das WWE zu dumm ist um was mit ihm anzufangen. E iner der allergrössten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: RhinoRaineswrote on 03.08.2007:[10.0] "Er ist eine Legende! Trotz seines Alters, hat er mehr Talent im kleinen Finger als viele andere WWE-"Superstars" im ganzen Körper."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: HHH-Stephwrote on 31.07.2007:[10.0] "Riesen Legende des Wrestlings! Überragendes Ringkönnen und eine gewatlige Portion Charisma zeichnen den Nature Boy aus!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: H-Scorpiowrote on 19.07.2007:[8.0] "Ich kann nicht sagen, dass er mir immer sonderlich sympathisch war. Erst gegen Ende seiner WCW-Zeit bei den "glorreichen Sieben" fand ich etwas Gefallen an ihm. Aber seine Ringpräsenz war zweifelsohne immer beeindruckend und sogar sehr unterhaltsam. Er ist eine absolute Wrestling-Legende."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Azraelwrote on 13.07.2007:[4.0] "Eine Wrestlinglegende, die leider den richtigen Zeitpunkt in den Ruhestand zu gehen verpasst hat. Sobald er im Ruhestand ist, kriegt er von mir die 10."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mr Lovewrote on 03.07.2007:[8.0] "Ric Flair ist sicher einer der größten Wrestler, er hat sehr viel Ausstrahlung und Charisma, sein Micwork ist gut, die Matches verkauft er noch teilweiße gut. Früher hatte er die immer super verkauft. Im Ring ist er nicht mehr so gut wie früher, was ohne Zweifel an seinem hohem Alter liegt, er ist auch einer, der nicht weiß wann genug ist, er soll noch einen Vertrag bei der WWE haben bis er 60 Jahre alt ist, ob er es so lange noch schafft? Er bekommt nur 8 Punkte von mir, weil er nicht weiß, wann genug ist"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Svaniwrote on 02.07.2007:[10.0] "Ach ja, der Ric. Ich mag ihn, auch wenn seine Matches nicht mehr das sind, was man gerne sehen würde. Für sein Alter ist der gute Nature Boy aber noch ziemlich agil und daher gibt's von mir die Note 1. Wooooooooooooooooooo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Foerstawrote on 24.06.2007:[8.0] "Jetzt zu alt und wird seine Karriere baldig beenden müssen. Jedoch ist er aufgrund seiner Vergangenheit und der Tatsache, dass er immer noch wrestlelt ist schon ganz groß. Alles in Einem ein cooler Typ."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Elvis33wrote on 24.06.2007:[6.0] "Sollte sich für den aktuellen WWE-Kram einfach nicht mehr opfern..."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: kaupi 1909wrote on 24.06.2007:[10.0] "Wenn jemand diesen Satz - "Leidenschaft und Hingabe zum Sport sind genauso wichtig wie der Sport" - mit Leib und Seele verkörpert, dann ist es der Nature Boy. The greatest of all time - Whooo. No doubt about it, whoooo!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Chris Cagewrote on 24.06.2007:[8.0] "Ganz klar eine der größten Legenden überhaupt, mit seinem 16-fachen gewinn der World Championship hat er sich in der Geschichte des Wrestlings verewigt. Doch seine Zeit ist langsam abgelaufen und er sollte sich lieber zur Ruhe setzen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: WCWlerwrote on 24.06.2007:[10.0] "Flair ist einfach der größte. Eine ganz große Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: BigVanVaderwrote on 24.06.2007:[10.0] "To be "The Man", you gotta beat the Man! Wooooooooo"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: timbo7111wrote on 24.06.2007:[10.0] "WHOOOOOOO! Ric Flair ist eine lebende Legende und hat mit den Besten der Besten absolute Topmatches abgeliefert. Auch mit fast 60 Jahren ist er immer noch over the top! Klarere 10 Punkte gibt es nicht! IMO der größte Wrestler aller Zeiten!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ShakDragoonwrote on 24.06.2007:[8.0] "Sicher ein herausragender Wrestler, der viel fürs Biz getan hat, aber irgendwie konnte er mich nie richtig fesseln. Naja und Mittlerweile ist er auch arg in die Jahre gekommen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Garvinwrote on 24.06.2007:[10.0] "Hat das Wrestling geprägt. War genauso wichtig für das Business wie Hulk Hogan. Er bringt einfach alles mit, was ein guter Wrestler braucht. Und trotz seines Alters immer noch in der Lage Matches interessant zu gestalten und immer noch so over. WHOOOOOO!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Blade Bourdeauxwrote on 24.06.2007:[10.0] "Was habe ich ihn 1992 nicht leiden können, der perfekte Heel eben sowohl im Ring als auch am Mic."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Dangerouswrote on 24.06.2007:[10.0] "Nur ein "Wort": WOOOOOOOOO! Sollte aber langsam mal ein Ende finden, bevor er seine eigene Legende zerstört."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mediwrote on 24.06.2007:[8.0] "Woooooooo........ nicht der beste Techniker oder Worker insgesamt; doch wenn man mal sieht, wie fit dieser Mann in seinem Alter noch ist muss man schon seinen Hut ziehen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: affenmannwrote on 24.06.2007:[4.0] "Sagt, was ihr wollt: Flair ist für mich der überschätzteste Wrestler aller Zeiten."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: joerillawrote on 24.06.2007:[10.0] "Charisma, Skills, Micwork, Ausstrahlung - einfach nur grandios. A true legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Die Ikone des Wrestlings schlechthin. Und meiner Meinung nach auch über Hulk Hogan einzuordnen, da er sich für dutzende Wrestler hingelegt hat und diese somit over brachte. Außerdem Ist er trotz seines hohen Alters noch in der Lage starke Matches zu bestreiten(Edge vs. Flair, HHH vs. Flair, Foley vs. Flair, um mal nur die letzten zwei Jahre zu beleuchten)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Cpt Dave Charismawrote on 24.06.2007:[8.0] "Ric Flair war absolute Weltklasse. Aber er sollte doch wissen, wann es genug ist. Deswegen nur ne 2 (aber mit imaginären +)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: suntan superstarwrote on 24.06.2007:[10.0] "der beste wrestler aller zeiten. er vereinte alle fähigkeiten miteinander die man für dieses business braucht: charisma, ringskills und ringpsychologie. nuff said"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sandman16wrote on 24.06.2007:[10.0] "Er bringt alles mit, was man beim Wrestling braucht. Er ist ein guter Wrestler, hat viel Charisma, super Mic-Work, geniales Gimmick etc. Bei ihm stimmt einfach alles. Einer der besten und größten Wrestler aller Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Anti-Championwrote on 24.06.2007:[10.0] "Ein Mann den ich jetzt schon vermisse, Flair ist für sein Alter immer noch solide im Ring. Saugeil am Mikro und eine Charismabombe wie er im Buche steht. 10 Punkte für eine lebende Legende."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Giant2wrote on 24.06.2007:[10.0] "Absolut eine lebende Legende, aber so langsam sollte er sich aus dem Ring zurückziehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: DecentWrestlingwrote on 31.01.2025:[7.0] "Gotta be honest most of her matches are quite disappointing. They get insane hype and never live up to them. The last 5-6 matches i saw from her all left me with the feeling of "that's it? " and that's not what you want. Her storytelling and selling is inconsistent. Lots of people will give 10 cause she failed in WWE and they want to stick it to them (Like WWE cares lol), or because she does unprotected headbutts which seems to make people happy for some reason. (why potential brain injuries are fun to people, idk)."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Thenwoagedbadlywrote on 29.01.2025:[10.0] "The thing about Sareee is she's never been bad per se. Even as a rookie she was completely proficient and she's just gotten better and better and better to the point now where she's clearly one of the best wrestlers alive. Also, I get a special kind of enjoyment out of Sareee's career, because for me, it's like if Sakie Hasegawa had had a career twice as long."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: venuswrote on 25.01.2025:[10.0] "Easily the best women's wrestler in the world. Ever since she departed WWE, I find it very hard to find a mediocre let alone a bad match since. Nuts that she's an under-30 going this hard in her career. Best wishes to her"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: ChocoboSagewrote on 23.01.2025:[10.0] "Had to reconsider my rating, after the past year or so of her freelance run. Along with her own SareeeISM shows, she's up there with the greats now. Easily the best womens wrestler around right now, have to give her a 10."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: BigRossManWPwrote on 23.01.2025:[10.0] "The absolute best in the world at the time of me writing this. Sareee was the best joshi wrestler on the indies prior to her WWE move and picked up exactly where she left off upon returning. Everything she does feels must-see."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: LIGERISMwrote on 21.01.2025:[10.0] "Sareee is the best wrestler in the world and has been since atleast 2019. Now that Meiko Satomura is retiring, Sareee should and will take the stop as the Final Boss of women pro wrestling in Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: KnivesBrandowrote on 14.01.2025:[10.0] "Sareee est tout simplement la Ace de tout le Joshi . Elle ne manque jamais les grands rendez-vous, elle est intouchable depuis son départ dès États-Unis et son retour au Japon . Les show qu'elle organise promettes à chaque fois un Main Event mémorable , Sareee est la meilleure dans le ring mais également dans le booking de show ."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: NiagraDriverwrote on 29.12.2024:[10.0] "The Michael Jordan of Joshi right now. She's like a female Bryan Danielson, nearly perfect at everything she does."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: coleeeeeeewrote on 17.11.2024:[10.0] "One of IF NOT THE BEST women's wrestlers in the world. She has had one hell of an upgrade she's had an I can't wait what she has in store for next year."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: ConnorLynxwrote on 15.11.2024:[10.0] "Man, Sareee has really been on a roll this year, hasn't she? I remember wondering what the hell had happened to Sarray around the time she left NXT UK, and now I'm sat wondering why WWE never thought there was any potential with her. She's been delivering some of the best work of her entire career this year, her matches with Bozilla, Mayu Iwatani, Big Hash and VENY being some of her best performances. She can only go up from her, and I'm looking forward to seeing her cement herself as one of the best wrestlers in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Dweeeabwrote on 10.11.2024:[10.0] "The best womens wrestler in the world right now imo. She knows how to fight from underneath and mount amazing babyface comebacks against bigger opponents and she can have absolute hard hitting bangers with others. One of my favorites in the whole world and she keeps getting better."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Wrestlingfan0808wrote on 04.11.2024:[10.0] "The best womens wrestler in the world. When I found out she was in Nxt at point playing a fuckin school girl character I was so pissed cause how the hell do you fumble saree? ! ? ! ? ! ? Seeing what shes doing right now as a freelancer is so sick. The best for a reason"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Kb2295wrote on 15.10.2024:[10.0] "Shame it didn't work out for her in WWE, came in at an awful time with the 2.0 experiment and was on the bad side of some writing. Glad I kept up with her career since though, she's had a hell of a year & has firmly cemented herself as a top 3 womens wrestler in the world right now with Mayu & Io"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: edgyfrwrote on 11.10.2024:[10.0] "She is 28 years old, get that in your head. The sky is the limit for her, one of the most talented performances (men or female) i have ever seen. Wrestling perfection"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Galmondiwrote on 21.09.2024:[9.0] "Truly a shame what happened to her in WWE, hope to see her back one day. Fantastic wrestler, one hell of a year she's having."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Dodoremiwrote on 05.09.2024:[10.0] "La meilleure catcheuse actuelle tout simplement. Depuis son retour au Japon, elle enchaine les excellents combats. Elle est parfaite: technique, charisme, brutalité! Je l'adore"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: thunderrockwrote on 03.09.2024:[10.0] "A very strong candidate for womens wrestler of the year and possibly one of the best Joshi wrestlers of all time. I think its honestly between Sareee, Iyo and Mayu Iwatani. And Mayu vs Sareee was just amazing. Its honestly disgraceful how she was treated and had her character reduced to a Japanese schoolgirl in NXT, and she had that bad match with Mandy that wed all like to forget."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Itsover9000manwrote on 26.08.2024:[9.0] "Fucking great wrestler, she is very smooth in ring, her style is very stiff with her Suplex and dropkick of death."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Joe907wrote on 18.08.2024:[10.0] "Sareee is one of the top joshi wrestlers. Her matches are amazing to watch. Shes a really good striker with technical ability. Very good moveset. Her nickname "Sun God" suits her very good."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Fangoonwrote on 17.07.2024:[10.0] "She really took the NXT fumble and became one of the best wrestlers in the world currently, an absolute workhorse and a pleasure to watch perform."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Chris777wrote on 14.06.2024:[9.0] "a below average stature and look compensated with one of the most passionate, stiff, shonen/odo wrestling style of her own (Sareeism, question mark? ) that it doesn't even matter, really carrying the freelance scene on her shoulder in these couple years. Unfortunately she just wouldn't able to work anything meaningful out character wise but really that it's okayit's that outgoing unspoken charisma that is already enough"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: StardomIconwrote on 21.05.2024:[9.0] "The WWE had a good run of completely dropping the ball on amazing wrestlers in the 90s with mind numbingly stupid gimmicks. Whether it be dentists, fitness fanatics, or teachers, the promotion had a knack for wasting talent. WWE must have been feeling with nostalgic with Sareee and decided to drop a magical schoolgirl gimmick on the best worker in their women's division. As it followed, Sareee left NXT and is now working freelance back in Japan. Sareee has an awesome main event worthy look, at least in joshi promotions. Her in-ring ability is up there with just about any women's division worker on the planet. She has solid strikes and arguably the best looking drop kick in wrestling. Sareee also boasts suplexes that would make Taz proud as she isn't averse to dropping opponents on their heads. Sareee's recent match against Mayu Iwatani at All Star Grand Queendom as well as her recent tag match against Giulia and Utami in the main event of Marigold Fields Forever are great examples of her in-ring skill. If you watch them, you'll be left scratching your head wondering how in the world did NXT let such an amazing talent go to waste."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: HC7wrote on 08.03.2024:[9.0] "My comment in February 2023: (In March 2021 I rated her an 8, I am going to keep it at an 8 because as Sareee she is very good. In WWE so far she has not hit at all and has barely done anything since she moved to Florida. Unlike some other Joshis that WWE has brought in like Io Shirai, KAIRI and Kana/Asuka, Sareee didnt really have as much exposure to non hardcore Japanese fans. Kairi, Shirai and Kana had some popularity amongst some hardcore fans. Shirai and Kana had multiple matches in North America prior to WWE and Shirai and Kairi were coming from the hottest joshi promotion which boosted them. Sareee didnt really have this and a lot of non Japanese wrestling fans wouldnt have had much reason to care for her in WWE. On top of this once she finally got to wrestle for WWE they dropped the ball with her fast and the anime schoolgirl thing really hurt her. Unfortunately I think shell be viewed by people who know of her outside of WWE in the same way that KUSHIDA and Hideo Itami/KENTAs wwe runs are viewed. Hopefully this changes.) A little more than a month after this Sareee has departed from WWE, I hope that she makes a splash wherever she ends up and people can see her talent that never got to be fully showcased in NXT!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: RusherBryan29wrote on 13.02.2024:[10.0] "One of the best women wrestler in the world. And one of my favorites currently. Amazing worker, always having great matches. She has amazing striking offense. Also she is a big match specialist."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Kungwrote on 11.11.2023:[10.0] "Ever since she came back to Japan from her underwhelming WWE run, Sareee has lowkey been the best women's wrestler not on a major roster (WWE, AEW, Stardom, etc.). She's got a gravitas to her that I don't see in many big match wrestlers today."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: MegaSPSwrote on 10.11.2023:[10.0] "sareee is one of the best wrestlers out there currently. she had an unfortunately lackluster wwe run which i was nervous would slow her down, but i couldnt be any more incorrect. her return to japan have been some of the best matches of the year and no one is more consistent than her. in 2023, she is tied with rika tatsumi as my wrestler of the year. the sun goddess is one to always seek out"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Wrestling Foreverwrote on 23.10.2023:[10.0] "Als Sareee zu WWE kam war ich so voll Vorfreude und dachte auch hier kommt die Nächste die es wie Asuka schaffen kann. Teilweise zeigte sie bei NXT ja ihre Klasse aber es klappte einfach nicht auch dieser Gimmickwechsel ne das war nix. Sicher hat sie dadurch Erfahrung gesammelt aber insgesamt war es einfach ein Flop. Wie gut oder wie großartig sie einfach ist zeigt sie wieder seit ihre Rückkehr nach Japan."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Pertinaxwrote on 08.09.2023:[10.0] "An incredible worker who is being absolutely wasted in NXT 2.0 right now. She came back from being stuck in Japan due to covid to a bunch of hype but that also coincided with big changes coming to NXT. She was basically meandering in the dying days of the black and gold NXT and I was hopeful when she was repackaged a little bit in 2.0 with the Sailor Moon-esque gimmick with the necklace transforming her. After a strong start they've basically been jobbing her out which is a big shame. She's easily the best female wrestler not named Io Shirai on that roster. EDIT: Had to bump this up to 10 because she's killing it in Japan since she left WWE."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: tommyyy1714wrote on 28.02.2023:[10.0] "It sucks to see the bad ratings on here purely from her WWE run because her stuff in Japan is on another level. From the small amount I've seen, Sareee never steps off the intensity and always brings it in every single match. Her striking is insane, whether its forearms, slaps or headbutts it all looks brutal. Her uranage finisher is awesome too and all of her big main event matches haven't dropped below "really great" for me. Sad that WWE used weird stereotypes for her character so fuck them but Sareee fucking rules."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: VitorRomeu100wrote on 27.11.2022:[5.0] "I just don't see what WWE saw in her. Because WWE brought her. Thought she was going to be an Asuka/ Kairi or Io and she wasn't even close to being a Gail Kim. Very boring and with a ridiculous and super dull gimmick."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: aoPSIwrote on 22.09.2022:[5.0] "Yeah... I don't know how big Sarray was back in Japan, but in NXT she just didn't make it. Some boring little matches, without fun, without emotion, doesn't even look like a Japanese wrestler."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: CTFBwrote on 05.07.2022:[9.0] "Very solid worker throughout sadly sapped with a generic, unimpressive gimmick. The truth about Sarray is that she came into the company at the wrong time. If she was able to get into NXT around 2018 or so she would've excelled as much as the other Joshi's have, but it seems that the timing made it unlikely for her to properly shine."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: HopelessHelenawrote on 13.05.2022:[7.0] "She's really fun inside the squared circle but lacks a little in charisma and personality. I that she finally has a gimmick but she's still a little bland."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Ma Stump Pullerwrote on 16.03.2022:[6.0] "From what I've seen she's a pretty middle of the road Joshi act: competent enough to have relatively good matches with talent (namely people like Iroha, who could honestly have great matches with virtually anyone so it's not THAT much of a feat all in all) better than her but usually can't do the same herself. She's most definitely a project worth working on given her talent, but her main weaknesses are charisma and character: she doesn't really have any to speak of at all. Unlike other Japan exports like Io, Asuka and Kairi, she hasn't had the immense experience and time to really put together anything interesting either in terms of persona, so it's definitely a unique situation that is seemingly being worked on in NXT. Either or not her current gimmick is able to survive intact or be forced to evolve is another matter, but as of now, she's a good wrestler that needs to learn the intangibles beyond just wrestling competently. Has promise, but certainly a way to go before deserving of the scores she's getting at the moment."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Dy1789wrote on 09.10.2021:[6.0] "Good in the ring, stiff with her offense but cannot speak english and cut promos. She does not have the charisma of an Asuka or Io Shirai to make up for it. I don't see her getting very far in NXT or main roster without serious character development."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Damianwrote on 17.07.2021:[4.0] "A Joshi that has nothing to offer from a character standpoint. She has the least menacing look I've ever seen, she can't cut a promo and even though her in-ring skills are supposed to be strong suit she ain't that good in it the ring either."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Suzukigunwrote on 14.07.2021:[8.0] "Sareee, now known as Sarray, is really good. She had some great matches at Sendai and also at Diana. Only 25, I hope she gets to excel in NXT."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: metagodzillawrote on 07.05.2021:[5.0] "They don't seem to know what to do with her already in NXT. Her work is good but not really standout in anyway."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Traum Einhornwrote on 25.04.2021:[6.0] "Sie bewegt sich gut und alles, aber noch nicht auffällig. Wird ihr mehr Zeit geben, sich zu entwickeln, aber die Erfolgsbilanz mit WWE und japanischen Talenten ist nicht gut."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: yzarcniogmiwrote on 19.04.2021:[6.0] "It's easy to see who her influences are, and she'll have to find an identity beyond that if she wants to stand out more."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: nWo-Joshi-Guywrote on 14.04.2021:[9.0] "She has always looked really good from what I have seen of her. She is confident has a great look and often looks absolutely vicious/brutal with her strikes, stomps and best of all suplexes; I am looking forward to finally see her in NXT (though I am assuming she will be somewhat toned down? ). Her entrance theme was amazing too; I am hoping WWE will get that singer to record a new one for them (unlikely I know)."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Swendivewrote on 14.04.2021:[5.0] "She's good but has no personality... yet. Willing to give her time to develop, after all, she is still very young. Perhaps needs more of an identity in-ring as well that she'll find in time."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: chinomorenowrote on 30.03.2021:[7.0] "Sareee is a good wrestler and that's it, but the bombastic way they tend to sell her is a bit laughable as I think she's a couple of notches below the level of wresltlers like Takumi Iroha, Miyu Yamashita, Arisa Nakajima, etc... also her matches have a certain pattern and lack of structure which makes them somewhat boring for me."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: ElPolloLocowrote on 28.10.2020:[6.0] "I don't know... hearing people talk it seems like Sareee is the second coming of Mima Shimoda and Manami Toyota all rolled into one. And it's not like she's bad, far from it, but expectations have been set so insanely high it's easy to get disappointed: you walk in expecting a once in a generation talent (Ric Flair, Shawn Michaels, Hiroshi Tanahashi etc) and you "just" see a good and promising wrestler. Nothing more, nothing less. I have the strong suspicion the WWE didn't sign Sareee because she's a very promising in-ring talent, they have literally more than enough of them, but for her looks and because she's Japanese: if they wanted a ultra-talented japanese wrestler under 30 they could have picked Chihiro Hashimoto but let's be honest. Chicchi is not marketable, Sareee is."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: jdt79wrote on 15.05.2019:[9.0] "Sareee is one of the best going today. A guaranteed exciting match. It's unfortunate she's somewhat unknown due to being signed to Diana which is one of the more difficult promotions to follow. Sareee is great."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Mikamaniawrote on 24.03.2019:[10.0] "If being young and talented is a crime, than saree would be considered one of those that would have the key thrown away.  at 22, saree has demonstrated she is not only capable but comfortable against the widest range of opponents from aja kong to command bolshoi. she's already held a world title 7 years in. 7 YEARS AT 22. god knows how the upcoming years will be but if it's anything like now. she will a force to be reckoned with"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: paijowrote on 23.03.2015:[8.0] "she is the most toughest young lady in modern era! it's hard to describe this. very unique personallity, trained by legendary Kyoko Inoue and Kaoru Ito make this young lady very stiff moveset as hell, she had a taekwondo, karate background. hope she still do the best. not to compare with anybody in Joshi puroresu but she is a really Hardworker"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: kaeleighwrote on 12.10.2024:[4.0] "Er lebt ganz stark von seiner Reputation aus den Neunzigern. Als vorzeige Junior neben Liger, Ultimo und mir Abstrichen Delfin und Samurai. Aber nach dem Osaka Pro split, ging es stetig immer weiter Berg ab. Die unzähligen Plunder matches sind ja lustig das erste oder Zweite mahl, gefühlt passieren diese aber seit 2007 gefüht in jeder Show und es sind immer die gleichen Spots und immer gegen die Brahams. Sasukes Hochzeit ist im großen Spektrum seiner Karriere wirklich nur noch ein kleiner Teil, dass man ihn jetzt immernoch in der Fukumen World League bringen muss ist einfach nur zum kotzen. 4 Punkte sind für seine Hochzeit noch drin."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Zak22wrote on 26.05.2024:[10.0] "One of the best high-flyers ever, any match with Sasuke in was exciting, his match with Liger at the 1st Super J cup is one of the best matches ever wrestled. Legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: All Cops Are Bossmanwrote on 06.01.2024:[10.0] "You could limit your lens of Sasuke to only his NJPW appearances and he'd easily be an all time great, but the man went above and beyond. Michinoku Pro, especially in the 1990s is Sasuke's gift to the world and we're all better for it. While he rose to fame thanks to the spotlight people like Liger shone on him, a lot of his MPro time is spent putting on great shows and matches in front of just hundreds of people in school gyms. He is unable to say no to the most insane match proposals put in front of him / dreamed up, especially later in his career. He's also done death matches with Onita, cross promoted Battlarts events with his pal Yuki Ishikawa, spent a brief but impressive time in CMLL where announcers still recognize the Sasuke special, and innovated The Great Space War where you can watch Ninja Turtles and Ultraman wrestle before the ring gets torn open and something dangerous happens to Sasuke, probably involving a barrel. Sasuke is proof that God is real and he wants us to be happy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Giantfan1980wrote on 07.06.2023:[6.0] "The guy the WWF wanted to make the first light heavyweight champion, but business stuff intervened so Taka Michinoku, the guy who was brought into put Sasuke over, got the belt. Only seen a handful of his matches, but good enough."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Wrestling Foreverwrote on 29.04.2023:[10.0] "Was soll man noch groß erwähnen eine der Japanischen Wrestling Legenden der besonders in den 90er seine Hochphase hatte. Selbst heute noch wrestlet er."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: TheOneAndOnlyCactuswrote on 03.04.2023:[10.0] "Mostly known as the phenomenal aerial worker that wowed audiences, he had plenty of good technical matches too. He could strike with the best of them in his division and make it look like a martial arts fight. He could become a hardcore wrestler too if needed, or even act as a comedy goof. He was simply a joy to see perform, no matter the environment."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: benh2wrote on 13.01.2023:[8.0] "If you're looking for someone who is accomplished in a variety of styles, add Sasuke to the list. Most known as the phenomenal high flyer but also had plenty of good technical matches too. He was a bit too much of a spot monkey at times and some of his bumps were frankly insane but he was absolutely great at doing it. Also managing to keep his own promotion afloat for 30 years is worthy of appreciation."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: GriffinXwrote on 06.02.2022:[10.0] "An amazing highflyer at his peak who managed to make a fairly large name for himself even while working for his own smaller Indie promotion."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: mmcoorwrote on 28.09.2021:[9.0] "a great high flying wrestler who was also good on the mat, maybe not as great as liger, ultimo, or hayabusa but he is still one of the best"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: CyberVolteswrote on 30.08.2020:[10.0] "The Great Sasuke is one of a kind. For starters, there's just too much to his skills and career than people usually give him credit for. While Sasuke will probably always be best remembered for his athleticism and flying moves from his time in the 90s', since that's the decade in which his most famous matches took place, it's hard to pinpoint if that's even his strongest suit. Depending on his opponent and the atmosphere of the match, you may get very different sides from The Great Sasuke. Athleticism-based spotfests? Yes, he can do that. Ground-based matwork and submission competitions? Oh, he's more than up to the task. Strike-heavy matches agains opponents with legit martial arts background? He can hold his own pretty nicely. Borderline hardcore matches with dangerous spots? He will take them - and keep on fighting like a superhero. A fun, comedy match with people dressed up as Star Wars characters? For somebody who has a reputation of taking things very seriously and being very short-fused, he will shockingly pull those off as well. A combination of any of those? Sure, why not? So, based on his ability alone, The Great Sasuke should be reknown as a legendary wrestler and one of the best junior heavyweights of all time. That said, what keeps me from rating him 10 points is the other side of the coin: The Great Sasuke may be just too over the top for his own good. Sometimes, the bumps he takes and the way he performs the simplest of the moves are more exaggerated than they need to be (conversely, his Thunder Fire Powerbomb seems pretty tame when compared to most of his regular moves). While that doesn't necessarily take too much from his matches, it just keeps many would-be classics of ever reaching that status, since they just don't flow naturally. Also, there's just too many painful bumps one can take before the audience stops being impressed and just wonders "Why? ". Apparently, Sasuke doesn't really believe in the proverb "less is more". Granted, age and injuries finally made him catch a break, but he will still do something unecessarily risky once a while, just because he can. Nevertheless, Sasuke's resumé is impressive any way you look at it and had he got more exposure instead of remaining mostly working on his long-lasting niche promotion, Michinoku Pro (which is really hard to follow unless you're local or a bootleg collector with a lot of disposable income), he would probably be as adored worldwide as someone like Ultimo Dragon or even Jushin Thunder Liger. EDIT: After some consideration, I've decided to raise his score to 10, as the negatives I've mentioned above are far outweighted by the positives."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: InactiveGuruwrote on 31.05.2018:[9.0] "One of the most well known and well respected Japanese wrestlers around. I can honestly say that Sasuke is indeed Great has his name suggests and deserves all the credit he has been given in wrestling. All I am going to say is watch a few Great Sasuke matches to discover the greatness for yourself."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Chekerwrote on 24.02.2017:[10.0] "I honestly feel like Sasuke is one of the best wrestlers of all time, overall. Excellent wrestler, excellent high flier, pretty cool costumes, willing to take ridiculous bumps even now. As one of the founders of Michinoku Pro, he's helped establish the japanese lucha style and inspire an entire generation that followed in his footsteps."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Wrestle fanboywrote on 20.09.2015:[9.0] "This man needs no introduction, he is one of the most fast and agile wrestler in junior heavyweight division and perhaps the greatest junior heavyweight champion in his prime to hold many of championship titles came from Morioka, Iwate, Japan no doubt he is a truly and rightful owner of Michinoku Pro"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Viper99wrote on 02.04.2015:[10.0] "Einer der absoluten Pioniere für die heutigen High-Flyer und das obwohl er ja selbst noch nicht der älteste ist. Er hatte sau starke Matches in den Jahren zwichen 1990 bis 2000 und ist einer meiner absoluten Lieblinge wenn es um NJPW geht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Matzinhowrote on 16.04.2014:[10.0] "44 Jahre alt und so ein Körperbau, dazu die Bereitschaft bis zum heutigen Tage sein abgefahrenes Repertoire zu zeigen. Ich finde wenn Sasuke aufdreht ist er weiterhin eine Augenweide - und er schont seinen Körper ausreichend, indem er seine Auftrittsrate heruntergefahren hat. Eine Legende und einer, der seinem guten Namen bis heute Ehre macht."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: jerseyhoolwrote on 07.12.2011:[9.0] "Leider naht auch für Sasuke die Zeit des Abschieds, aber objektiv gesehen ist bzw war er einer der Besten im Wrestling.... jedoch auch ein absolut Irrer! Diese Dives & Bumps macht doch kein normaler Mensch freiwillig, das war ja zeitweise noch schlimmer als bei Mck Foley. Der Asai Moonsault gegen Jushin Liger DIREKT auf die Absperrung tut schon beim Zusehen weh, "bemerkenswerte Schmerzresistenz" ist da noch schmeichelhaft formuliert! Anyway, er hat das japanische Wrestling entscheidend mitgeprägt, was soll man da noch meckern? 9 Punkte!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Necronwrote on 06.12.2010:[7.0] "Ein aboluter Pionier der Highflyer-Szene. Leider kann ich zu etwaigen Sprech- oder Schauspieleinlagen nichts sagen..."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Fountain of Misinformationwrote on 23.11.2010:[8.0] "Da er sich im Rahmen seiner Möglichkeiten nachwievor den Arxxx aufreißt, sehe ich mich mit Berücksichtigung seiner damaligen Glanztaten zu dieser Note genötigt. Natürlich ist er mit über 40 Jahren nicht mehr dort, wo er Mitte bis Ende der Neunziger wreslerisch stand, dennoch nachwievor ein herrlich bekloppter und dadurch ungemein sympatischer Kerl, der, wenn er es will, auch heute noch richtig aufdrehen kann."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Raywrote on 01.04.2010:[7.0] "Hat einen gewissen Status durch die Super J Crown und seinen Politik-Run, aber sollte langsam wirklich endgültig aufhören. Er ist nicht mehr auf dem Niveau von früher."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Super Dragonwrote on 25.12.2009:[8.0] "Früher gern gesehen, er hatte unglaubliche Matches in Japan bestritten aber heute hatt er sehr nachgelassen sollte wirklich schon langsam ans aufhören denken."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: T-Waynewrote on 18.12.2009:[9.0] "Ein Jr. Heavyweight, der diesen Stil über die Jahre wirklich geprägt hat. Trotz der riskanten Aktionen und vielen Verletzungen hat er seinen Highflying-Stil beibehalten. Trotzdem sollte er langsam mal an einen Rücktritt denken."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: STRIGGAwrote on 16.01.2009:[7.0] "Da ist heutzutage nicht mehr viel. Für seine früheren Verdienste gibt es allerdings einen Legendenbonus. Trotzdem naht die Zeit des Rücktritts."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: MrWrestlingwrote on 23.10.2008:[10.0] "Eine lebende Legende und super Wrestler. Seine Matches schaue ich mir immer wieder gerne an."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Baszdmegwrote on 07.09.2008:[10.0] "Heute wohl nicht mehr das Wahre, aber eine Junior Heavyweight Legende mit Matches, die man sich immer wieder gerne anschaut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Masadawrote on 19.06.2008:[10.0] "Legendär, der Mann hat ne Austrahlung dat is nich mehr Feierlich, der brauch bloß zum Ring zu schländern und mann bekommt den Mund nicht mehr zu. Mit Sicherheit einer der besten Worker die man finden kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[9.0] "Diesem Mann haben wir japanisches Indy-Wrestling zu verdanken^^ ... Und ganz nebenbei ist er auch ein verdammt guter Wrestler."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: AnFuwrote on 11.04.2008:[9.0] "Sasuke, ein riesen Wrestler! Der Junior Heavyweight schlechthin, klasse Matches, unter anderem mit J. T. Liger und einer netten Titelsammlung aus vielen verschiedenen Ligen. Dazu sein Stil, außerdem noch Besitzer einer eigenen Wrestlingliga, fast die Bestnote!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Pulpulwrote on 09.04.2008:[8.0] "Gehört ohne Zweifel zu den größten Junior Heavyweights Japans. Heute allerdings etwas lustlos und nicht mehr mit früher zu vergleichen, aber gut, jeder wird irgendwann mal älter."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Texas Tornardowrote on 23.12.2007:[10.0] "Êin super Wrestler und Highflyer. Ein meister seines faches!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: jollietwrote on 24.06.2007:[10.0] "Toller Wrestler; 10 Punkte auch für den Autor der "Wissenswertes"-Rubirk: ... zwei Schädel... :-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Zak22wrote on 29.10.2024:[9.0] "Already one of the best of this current joshi generation, she has all the tools and potential to ascend to the Toyota, Iwatani, Aja Kong levels of greatness. She is super exciting in the ring and incredibly talented. Big claim but if she keeps on the right track, she has what it takes to be a top 20 wrestler of all-time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Thenwoagedbadlywrote on 21.10.2024:[10.0] "A 9 for a while but her work and development from the 2023 5STAR onwards clearly position Suzu as one of the best wrestlers alive under 25. It might be a cliché but she doesn't really have a weak spot. She can work comedies to death matches with equal brilliance, she can talk, she's charismatic, she has a great build, she works babyface or heel equally well, she can wrestle up a storm whilst also making her opponent look amazing, she always looks good gear-wise and she's a draw. A future red belt champion, no doubt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Gabiwrote on 04.08.2024:[10.0] "Suzu Suzuki is so so talented and still so young. Cool presentation and awesome in-ring. She will be the ace of Stardom someday"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Aspionwrote on 22.07.2024:[9.0] "(Sorry english is not my firtst language) This women is the future of the Wrestling, Im still waiting for her big moment in Stardom. This is one of this persons that jest on her entrance you kno that she is something special"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Daigotsuwrote on 23.04.2024:[8.0] "Suzu is a fantastic talent for her-- or any-- age. She's got a lot of charisma and is a great worker. She has all the makings of a star, and it seems inevitable that she'll be a champion in any promotion she's in."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: gabriarewrote on 23.02.2024:"Suzu Suzuki carries herself and has the presence of a veteran, i was shocked when i found out she wasnt already a 10 year legend, and she hasnt even hit her peak yet. I am sure she will be major player in any company that she decides to stay in no time."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: mxkamiwrote on 11.02.2024:[9.0] "Still INSANELY young, and appears to be on the way to absolute prodigy status. Her program with MAIKA ending 2023 was killer, and showed that she can in fact be booked in long term feuds. I pissed myself laughing at the behind the scenes of MAIKA/Suzu rolling around on a bathroom floor pouring alcohol on each other, then the follow up match where MAIKA got her crowning moment while Suzu looked on with envy was great. Suzu has a ton of promise, and I really enjoy that she branches out into other companies as a freelancer that can have any number of matches including what inspired her to get into the business in the first place; deathmatches. Her finish also helps set her apart, and something about her death sells gets me. Genuine joy for me to watch, and I look forward to seeing what the future brings for this rising Joshi."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Animagowrote on 31.10.2023:[10.0] "The word "genius" is often overused when it comes to young wrestlers that are good really fast, in the case of Suzu Suzuki it is totally deserved. More than a prodigy, she is a complete natural at wrestling. She excels in every aspect of it, everything she does just seems so organic. Not just in-ring, but alose promos, aura, her expressiveness in general. She can do anything from stiff brawl to high-fly moves, from deathmatches to even comedy, adapt to her opponent seamlessly. It is crazy to think she is just 21 and barely 5 years in her career, there is no doubt she will become an all-time legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: ImperialUnowrote on 03.10.2023:[9.0] "Only 21 years old and she's already one of the best wrestlers in the world. Even in her Ice Ribbon days, we can see all the potential she had, i remember the excellent match she had against Maya Yukihi in august 2020 and after the match finished, i understood that she had the potential to be a major star and damn i wasn't wrong because now Suzu Suzuki is already a big star in Stardom. Suzu Suzuki is extremely charismatic, has great facial expressions, has a great in ring presence, knows how to tell a compelling story and damn she can do absolutely everything inside the ring, she's a great technician, brawler, high flyer (she can do outstanding Sky Twister Press) and death matches. She has the potential to be an all timer, she has everything to be one whatever if it's the charisma or the ringwork."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Kamilahclanwrote on 29.04.2023:[7.0] "She's showing good potential so far in her career and I'd like to think that there are big things in her future. I've liked what I've seen so far."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Mugendaiwrote on 08.04.2023:[8.0] "Suzu has great fundamentals and has always had solid potential. I wish she wasn't so obsessed with the deathmatch stuff, but I guess you have to chase your dreams, even if your dreams are nightmares to others. Hopefully she stays healthy and lives up to the reputation she's developed."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: TheOneAndOnlyCactuswrote on 06.04.2023:[10.0] "Suzu Suzuki is not nicknamed the Violent Prodigy for no reason. At the age of 20, she is as good as they come and she has the charisma of a true badass as well. While her current promotion Prominence showcases her in death matches, her Stardom matches show she is more than a mere deathmatch wrestler, and is already an all round great talent. I hope she gets to stick around in Stardom after her current reign is over, as it would be a damn shame if she just is remembered for her hardcore matches and not much else."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Wishtapwrote on 01.03.2023:[10.0] "Suzu Suzuki is one of the best wrestlers in the world and at only 20 years of age. She truly is a prodigy, her skillset, interactions with the crowd and her passion for the sport is unmatched. Her adoption of the Tequila Shot from Tequila Saya matches her character perfectly and looks flawless every time. She is destined to become a world champion one day and possibly will be the one to take the belt off of Giulia, as each time the two lock up, magic is created. She has not had a single bad match since her debut over 3 years ago."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: JUmbo Akiyamawrote on 26.10.2022:[10.0] "Suzu is just an amazing perfomer, her skills in the ring and ways of delivering stories always give me a great vibe of bad ass coming from this young little girl, it's scary to imagine what she will show us when she grown up more."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: No Onewrote on 26.09.2022:[10.0] "Suzu Suzuki is dope as hell. She has Attitude, "IT" Factor, has the charisma of a believable badass, has an aura that tells me that she should have come up during the 1990's era of AJW, JWP, & LLPW. She would have went to war with the likes of Akira Hokuto, Aja Kong, Bull Nakano, Devil Masami, & Shinobu Kandori, and she probably would be seen as a Legend today. She can work any type of match, can work with any type of opponent, male or female, (She is even a Death match wrestler as well) and produce a great match, clearly is a Ring General, can do anything inside a wrestling ring (technical wrestling, move variety, brawl, strike, aerial, all of it), has a very interesting backstory with Guilia of all people, who is one of the biggest stars in all of Joshi for the 2020's decade. Has impressed so many who knew nothing about her before the Stardom 2022 5 Star Grand Prix, It goes on and on, and she just turned 20, freakin' 20! A Future Legend, indeed."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: inauricwrote on 07.09.2022:[10.0] "Suzu Suzuki is already working at the top of the world in terms of quality at the age of 20, and the only thing standing in the way of being booked as such by major companies is her strong commitment to her company Prominence and to freelance shows in general - which is no flaw. She has the ability, the natural charisma and the personality to rule the industry in the years to come. She's hitting the main events of Korakuens now, wait til she hits the main event of even bigger shows."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Wright15wrote on 15.08.2022:[9.0] "As of December 2021, Suzu Suzuki will have her third anniversary since her debut in a couple weeks, but she already wrestles with the timing, emotion, and psychology of a ten year veteran. Watch her deathmatch with Rina Yamashita and tell me with a straight face that you can believe she was only 19 years old. She, along with a plethora of extremely promising young wrestlers in the industry today, makes up the foundation for a bright future. I will probably upgrade this rating within the next year as she continues to show what she can do. EDIT: Yeah, she's easily top 100 in the world right now."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: LIGERISMwrote on 26.07.2022:[9.0] "I don't mean to be hyperbolic and I don't want to crown anyone of anything this early on in their career, but if Suzu Suzuki's career trajectory continues in the way it is as the face of the women's hardcore/deathmatch movement, she may be remember as this era's Megumi Kudo. She showed great ability very early on and was pushed accordingly by Ice Ribbon. Now as one of the face of Prominence, she has the chance to carve out a legacy truly unique to any of her peers. She has been showing up in places like Stardom, Wave and Sendai Girls and putting on great performances, as well as having awesome hardcore/death matches with the best in FREEDOMS."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: R0n1nwrote on 22.07.2022:[9.0] "Not many young joshis have such potential as Suzu Suzuki. And I'm really happy that she's doing deathmatches because that's what she loves and that's why she became a wrestler, not giving a damn about people who think "wrestling in deathmatches is such a waste for her". She still has some polishing to do, but for almost 20-year old wrestler, she's a full package."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: nWo-Joshi-Guywrote on 04.06.2022:[9.0] "Insanely talented. Awesome look and massively charismatic. I will be shocked if she is not considered a legend in the future."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Suzukigunwrote on 17.05.2022:[9.0] "She's only 19 and has only been wrestling for three years, yet she excels at everything. She's really good in the ring, awesome on the mic, has an intense charisma to her and is a budding star on the rise. She could be an ace-caliber player for any company she'd want to join, but is opting to be a freelancer so that she can do deathmatches too. I can't speak about her as a deathmatch wrestler since I don't watch deathmatches, but I've a lot of her non-deathmatch stuff and have been impressed every time. If she's this good already, I can't imagine how great she could be a few years from now."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: NoSellwrote on 27.03.2022:[10.0] "She's absolutely fucking unbelievable especially for someone who's been wrestling for 3 years. I'm all for doing what you love but if she only does deathmatches with the formation of Prominence it'll be such a waste because she's legit one of the best in the world. Has everything to be a legend of the joshi scene."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Grissomwrote on 26.03.2022:[9.0] "Suzu Suzuki sollte man nicht nur auf ihre Hardcore Matches reduzieren. Suzu ist eine sehr gute Wrestlerin und hatte vorallem bei Ice Ribbon von 2020-2021 ein ziemlich starkes Jahr als Champion mit klasse Matches. Mit ihrerer Prominence Gruppe mischt sie aktuell die Joshi Szene auf und mit erst 19 steht ihr noch die große Karriere bevor. Tolle junge und charismatische Wrestlerin."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: chinomorenowrote on 25.06.2021:[9.0] "Can you believe she is only 18 years old? damn, for her young age and little experience she is extremely talented, probably to this day Suzu is the best young wrestler in the world."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: EleceRockwrote on 10.06.2021:[10.0] "She's very skilled in the ring, very compelling as a character and everything she does is just so good you can't stop watching her. She is my favourite joshi wrestler along with Mayu Iwatani and Momo Watanabe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Edgewrote on 14.05.2021:[9.0] "Suzu Suzuki ist unglaublich talentiert und in so jungen Jahren bereits richtig gut im Ring. Sie hat sich zuletzt in Death Matches versucht und durchaus eine gute Figur gemacht. Suzu hat eine große Zukunft vor sich und dürfte schon in wenigen Jahren eine der besten Wrestlerinnen der Welt sein."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ak47al123wrote on 05.01.2025:[10.0] "Might be the best indie wrestler between his two NXT runs. He never had a chance to showcase what he can truly do on a global scale, but if you watch more than a few of his matches you will instantly know he is a brilliant wrestler. He can do it all, striking, lucha style, delivering epic matches or shining in a three minutes match, I don't think I have seen anyone else that was so good in every aspect."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DangoDaisukiwrote on 30.11.2024:[7.0] "Chris Hero war schon immer ein guter Wrestler den ich gerne bei großen Promotions gesehen hätte, dann wurde er dort eingesetzt und hat einfach nicht komplett überzeugt. Ich weiß nicht ob er sich selbst im Weg steht, aber ich denke immer er hätte mehr Potential gehabt als er gezeigt hat."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Wrestling Foreverwrote on 23.11.2024:[10.0] "Irgendwie bin ich froh das er nicht mehr bei der WWE ist. Er ist halt für das Independent Wrestling perfekt geschaffen. Er hat unfassbar viel Charisma, kann mit dem Mikro umgehen, er ist ein absoluter Allrounder und kann auch fliegen. Trotz seiner Größe ist er sehr beweglich und hat auch einen sehr harten Finisher. Edit 14. 06. 2016 Es hat sich wieder viel bei ihm getan. Viele neue Matches, zweiter Carat Sieg, neues Tag Team und so weiter was sein aktuelles Gewicht angeht so hab ich durchs Internet erfahren das er eine Schilddrüsenerkrankung hat die zu dieser starken Gewichtszunahme führte. Trotzdem ist der Mann immer noch sehr beweglich. Edit: 08. 01. 2017. Jetzt ist er doch wieder zu NXT gegangen. Ich hoffe das es nun besser mit ihm wird. Ich hätte es nicht gedacht. Ich bin sehr gespannt wie man ihn nun bei NXT einsetzt. Edti 05. 09. 2020 Kassius zweiter NXT Run war etwas besser als der erste aber echt so Schade das er Teil der großer Entlassungswelle war. Edit 22.10.2022 man hat ihn jetzt schon Jahre nicht mehr im Ring gesehen es ist aber nicht so das er von der Bildfläche verschwunden ist er macht inzwischen für Highspots den Podcast Shoot Conversations. Edit 23.11.2024 Leider hat Chris diese Woche seine Mutter an Krebs verloren. Auf seinem Instagram Account hat er einen langen Nachruf verfasst. Auch einiges zu seiner Mutter hat er geschrieben was sehr interessant war. Da dies nirgendwo zu finden ist. Eine kleine Info zu seiner Mutter so ist sie in Kettering, Ohio aufgewachsen. Ich wollte das einfach mal wissen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Fabibiwrote on 01.09.2024:[7.0] "He had great matches on the independent scene during the 2000s and the 2010s. He spent some time in NXT but he unfortunatly never made it to the main roster. He got in pretty rough shape during the 2010s so it might have limited his sucess in WWE but he still had a good career with many great matches."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: AnthoTheKIDwrote on 30.08.2024:[10.0] "Chris Hero is a student of a game and now, he's sort of a historian of it, his knowledge of the business is indecent as he knows obscure stuff that I wouldn't put my nose in. Excellent worker in the indies, the one who has a shop of Cravates and doesn't look that corporate. The man, the myth, the legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Joe907wrote on 25.08.2024:[10.0] "Chris Hero one of the greatest wrestlers. His in-ring skill are super good. Technical wizard and heavy hitter. He's also one of the smartest wrestlers too. He's learned different styles of wrestling and adds them to his matches. He's been in some of the best indie wrestling matches with Bryan Danielson, ZSJ, Claudio, CM Punk, and a bunch of other ROH and PWG wrestlers. Even wrestling internationally, Chris is one of the best Indie wrestlers ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Aspionwrote on 23.07.2024:[8.0] "(Sorry english is not my firtst language) This guy is good at everything expect having more interesing gimmick"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: JediSaiyanMaster1203wrote on 26.06.2024:[10.0] "No matter if he's going by Chris Hero or Kassius Ohno, singles or tagging with Claudio Castagnoli, skinny or big, this man is a bonified legend in professional wrestling (especially on the "Indy Scene"). Here you have a man who, doesn't care about the fortune and fame, just loves professional wrestling and only cares to give it his all and know everything about the business, adapt to any style put in front of him and can work with, almost, anyone. His best work would be his classics with CM Punk in IWA, where they would have some of the longest matches you'll come across, and they're totally worth it. Not only that, his days with Claudio in the "Kings Of Wrestling" tag team is amazing, having natural chemistry and being a perfect heel duo that had some amazing bouts with so many great tag teams in ROH. Then you get to his days as KO, while not having a prominent presence in WWE/FCW, he still went out of his way to deliver a solid match when given the chance to. His run in PWG from 2014/2016 is of legends, a great example of someone who's "passed their prime" (only in the sense that his peak is behind him), but still able to go and still has "it." He's a great wrestler who blends tons of different in ring styles when he wrestles, he especially shines as a technical wrestler, having some of the best looking elbow strikes you'll come across, can play the role of a heel perfectly well, naturally knowing how to be a prick to his opponents. I seriously hope he starts wrestling in AEW soon, I'd love for him to face off against some of the best AEW has to offer and, possibly, get a Kings of Wrestling reunion. Anyways, Chris Hero is a legend and a phenomenal wrestler, one of the best talents of the past 25 years."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: kwadiavawrote on 29.04.2024:[10.0] "I don't rate wrestlers as much or give easy 10s, even to the ones who are alleged legends, but man... Chris is awesome; he's as hot as he gets. And... He's truly legendary. His theme song lyrics tell you everything you need to know about him. While it's true he has slowed down and put on some weight while also adjusting more to backstage work, I wishfully wait to watch him on the AEW screen before he goes on to a potential retirement tour. He deserves to be promoted on national TV. And, as the others nailed it, Chris really never needed anything; he was always relatively big and well-known for the passionate PW fans. Amongst the fandom, Hero earned every bit of his reputation by grinding years after years in the independent circuit. He delivered banger matches wherever he went, from Midsouth to PWG to CHIKARA to NOAH to ROH and even in WWE. In his words, he couldn't keep himself out of wrestling in any way. While some of his work in ROH/NOAH/CHIKARA will always be memorable, especially the Kings of Wrestling, even his lackluster runs were something. He played the cocky heel perfectly against Matt Riddle and put him over. And, unironically delivered some more great matches under Kassius Ohno moniker post-WWE. He has one of the longest matches up to date, being a 3-hour gauntlet match. As passionate as he was, he also has been notably charitable. Incredible stamina that he can still go over 40 minutes against Timothy Thatcher in 2023. He can adapt to different styles, be it strong style, your British/European (fka Lanceshire) style as he considers it physical & mental chess, or lucha libre, after studying all of the styles while traveling around the globe. He helped Punk to make a name, he helped Cassidy by a great deal, still helps people. Has a huge library of incredible matches against Fenix, Pentagon, Tommy End/Malakai Black, Zack Sabre, Danielson, Angelico, Thatcher, Cole, Shibata, Ishii, (Christopher) Daniels and many more you can't name in one breath without running out of it. There is almost nobody he hasn't wrestled with (yet) in a high caliber match. Hero is on the Rushmore of independent wrestling and the first contender to the indie HOF if it were a thing."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Horatiowrote on 22.03.2024:"How many guys his height can spring-board off the top-rope in one hop? Or put on an extra 100 lbs and still nip-up in circles with one arm lock'd? An easy contender for best wrestler of all-time. No one gives it more every time than Chris Hero. Using a vast array of skills with widespread knowledge to boost, he's the guy to beat even though he doesn't have the greatest win-loss record."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Nilesmaniawrote on 17.02.2024:[6.0] "I have nothing against him, just has never really been for me. What Ive seen in some of his indies matches, he can work, but I just dont think hes anything special. Not to say hes bad at all, as 6/10 is still a satisfactory rating, just hasnt been my cup of tea."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Mariano14wrote on 27.12.2023:[10.0] "Never needed lots of championships. Never needed to be mainstream. Never needed heavy marketing production. Never needed to win everything. Never needed to make a name in WWE. Chris Hero was always just himself, enjoying what he does and what he loves. He doesn't wrestle for championships or fame, just passion. A guy who came from the bottom to became a wrestling legend because of him and only him, with his love for this business, his effort, his talent and his profesionality. This gentlemen, is one of the greatest of all time."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Messallawrote on 04.08.2023:[9.0] "Ohno/Hero is extremely talented; he obviously deserve the spotlight, and indeed he still can steal the show. Nonetheless, he seems unable to control his body, possibly for some medical issues, or at least he doesn't care anymore. Still, he's a potential 10."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: benh2wrote on 15.04.2023:[8.0] "One of the best indie workers of all time. Unfortunately he doesnt really have the look to succeed on the national stage."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: macisbetterwrote on 26.02.2023:"I love everything about Chris Hero. He is easily one of the best of all time, and easily my favorite wrestler of all time."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Minorsmile09wrote on 25.11.2022:[10.0] "One of the best independent wrestlers of all time. Can't give this guy enough love. I hope he comes back for one last run in the indies or in AEW."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Vukowrote on 24.11.2022:[10.0] "This guy was.. EH is one of the best technical wrestler ! I mean, if you never watch his matchs at ROH or NOAH, go on google."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ROCKETMANwrote on 22.08.2022:"Easily the best technical wrestler only got better by adding more aggression and nastiness to his wrestling style !"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: GriffinXwrote on 04.06.2022:[9.0] "In another era Chris Hero would of been a much bigger star. Hell if he was at his peak today he would thrive in places like AEW or New Japan strong. A guy who was able to mix numerous styles. Able to work great tag team matche and singles matches. And there is a very good reason why it was vs. Chris Hero that the name CM Punk started to gain a lot of attention"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: jamzell00wrote on 25.05.2022:[9.0] "It is a tragedy Hero went back to the fed after the 2016 he had. He's one of the best wrestlers of our generation and even that is an understatement. He mastered the ability to be a bully in matches to perfection yet that didn't stop him from knowing when to eat shit and let his opponent look good. Guy was one of the foundations of an entire promotion in evolve and gave progress its best matches ever when he decided to stop by the UK. Not to mention the legacy he built in companies like WXW CZW ROH and PWG. This isnt even me diving into his stuff before his 2nd wwe run the guy was just a different kind of shark before re-signing. You can credit him along with Bryan for the style of indie wrestling we got in the 00s and most of the 10s. It's a shame he hasn't done anything since getting released but when he does pop back up I'll be there happily watching"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: k1ngFreire - k1nghoFFFwrote on 24.05.2022:[10.0] "Lendário, uma das maiores estrelas das Indys de todos os tempos e certamente um dos melhores wrestlers do mundo, apesar de ser bem Underrated. Hero é tão bom que mesmo não estando em sua forma ideal nos ultimos anos, esteve em uma fase fantástica em 2014-2018 com várias matches absurdas que fizeram ser um grande fã, dele e do seu estilo de luta, é lindo de ver o homem lutar, simplesmente o Knockout Artist!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: CLUCKwrote on 19.05.2022:[7.0] "i follow him since ROH, he is doing good in indy wrestler but in NXT he didnt like in ROH, so that why i rated him just 7"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Dcarter1153wrote on 19.05.2022:[7.0] "Chris Hero pre nxt is incredibly awesome. Everything else after that I'm not a fan of. Kassius Ohno is not good. And not being offensive but when he got fatter he got worse and I just don't enjoy him anymore"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DanTalksRasslinwrote on 27.04.2022:[9.0] "A very strong technical wrestler known both for his holds and strikes. My favorite work of Hero's to date was, by far, his tag run with Claudio Castagnoli as the Kings of Wrestling, but his singles work has also resulted in compelling matches. Has sometimes suffered from issues with his physical shape, which in WWE likely placed a lower ceiling above him than that of his former partner, but that never seemed to affect the quality of his in-ring work very much. In a setting like the independent scene or NXT, Hero is a reliable veteran performer who can be placed in virtually any position on the card and can be counted on to put on a good match versus virtually any opponent."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: CoolKylewrote on 27.04.2022:[7.0] "I prefer early, baby-faced and baby-fat lucha armdrags and Euro chain wrestling Hero to later Japanese strong style tribute act Hero. The former is a small-time act, but it's an endearing one and could produce fun matches. The latter is pretty grating. Part of the problem is that, despite his size, Hero just doesn't look like an intimidating guy, so him playing this badass just strikes an odd chord. Then there's the constant thigh slapping. Not every strike (and there are plenty of them) needs to make a slapping sound, and elbows certainly shouldn't. Still, he's a charismatic guy, who never seems to have a problem getting fans into his matches."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: jaytodadeewrote on 26.03.2022:[10.0] "Eine absolute Indy-Legende. Für alle, die ihn lediglich aus seiner WWE-Zeit kennen, lohnt es sich eines seiner unzähligen überragenden Indy-Matches zu schauen. Bis heute definitiv in den Top5 meiner absoluten Lieblings-Wrestlern!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: mjs2212wrote on 12.02.2022:[9.0] "Chris is awesome (sorry, I had to lol). I appreciate his singles runs over the years, but I truly admire Hero for his involvement with the Kings of Wrestling. Him and Claudio worked so well together, and the Kings are easily in my top 5 favorite tag teams of all time. Hero's elbows are so fun to watch, and as a singles guy, maybe even a bit underrated when compared to Claudio, who has found much greater mainstream success. Regardless, I greatly enjoy watching Chris Hero and is a major player in the tag team division."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Seshwrote on 12.01.2022:[4.0] "I'm surprised to see Chris Hero ratings so high. He is not a great wrestler. He hasn't offered many good matches especially since his second WWE comeback. His sell moves are pretty bad. He have a bit of charisma but not a charisma that caught my eye."
Rating: 4.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: benny5bellyswrote on 12.12.2021:[9.0] "He gave everything he had to this sport. A highlight in independent wrestling across the world in good times and bad."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: 7PercentAquilawrote on 05.09.2021:[9.0] "Fantastic technical wrestler who soaks up knowledge and has a true love for professional wrestling. Chris Hero has traveled across the world in order to hone his style as well as learn new ones to great success, and helps spread what he's learned to both wrestlers and fans alike. I do think his promo work is a little bit forgettable, and his aesthetic always came off as a bit lame when he wasn't working a cocky heel, but he truly is one of the best technical wrestlers in the world and one of the best US independent wrestlers of all time."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Upgrayeddwrote on 04.08.2021:[10.0] "One of the best modern day wrestlers ever. This man is a legend, I wish he would've done more in NXT. However, those poor runs of his in the WWE don't have a notable effect on his overall career. He's always been an extraordinary talent, and I hope to see him back in an ROH ring soon"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Burninghammercriticwrote on 25.02.2021:"A real unsung hero. Pun intended. One of the most complete arsenals and was over but was doomed due to management. He is a favourite of mine."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ZSJGunWwrote on 02.02.2021:[9.0] "One of the most complete wrestlers I've seen in my entire life. Amazing striker, solid technician, a great seller and a really smart athlete. You can try, but it's impossible to find a defect on him."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: chrisbbbbbwrote on 14.10.2020:[10.0] "Chris Hero is the best independent wrestler of all-time. He has worked various styles in promotions all over the world. While performing in the United States, Hero found an abundance of success. ROH, PWG, CZW, and Chikara all had eyes for his talent. He competed in a series of stellar matches with C. M. Punk in IWA:MS. Over the years, Hero spent ample time wrestling for European promotions, such as wXw and RevPro. Also, Hero has some experience in Japan, specifically for NOAH. Hero also found success in tag team wrestling. Partnering with none other than Claudio Castagnoli (Cesaro), Chris Hero formed The Kings of Wrestling, which would be one the most successful tag teams in the indies. Before signing with WWE in 2017, Hero showed that his size increase would not slow him down. Perhaps 2016 was the best year of his career. Hero was released by WWE in April of 2020, so it will be interesting to see where he ends up next."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Ma Stump Pullerwrote on 12.08.2020:[7.0] "Honestly, I never got the hype with Hero. Zero mic skill, bland look, and relied almost completely on being a solid worker in the ring. This is fine in the earlier years, when you'd be forgiven for stuff like that, but when he moved into the WWE, it was clear that he was out of his depth. There's only so far ring work can take you in the business, and Hero's a really good example of that. Doesn't help that he reportedly had a bad attitude backstage and he got pretty fat after he left NXT and went back to the indies. Later years also exposed another problem for Hero: his lack of ring psychology and pacing. Usually when wrestlers get into their later years, they have to rely more on working smart, rather than just going all out. This was shown tons of times with the likes of Tanahashi, Kojima, Misawa, Jericho, Joe, Austin, etc and is something pretty well established. Hero seemed to be unable to do this, and had to try and work at a noticeably slower and more clunky pace as compared to the smooth stuff he was pulling out before. His inability to work around it is a massive failure in general for himself, and likely why he wasn't exactly used often in NXT outside of the occasional average match. Usually the good matches I DO see him having were because the other guy in the ring was a far smoother worker. Hero was one of the big indie breakouts of the early 2000's, but his lack of development beyond the ring restricts him massively, and that's a shame."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ChopChopChopwrote on 01.08.2020:[10.0] "I don't think we will ever see another wrestler who has what Chris has. Here's a guy who mastered every style of pro-wrestling and fused them together to become this best-bout machine."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Divus Rolexuswrote on 16.07.2020:[10.0] "Chris Hero had so many excellent matches in the US and Japan. I'm really disappointed that Hunter never saw his potential in NXT, they could have done so many things in the Tag Team Division with him, they could have brought back the Kings of Wrestling with Cesaro or his team with Aleister Black. I hope he will have others great runs on the US Indy Scene"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: haroldanthony3wrote on 14.05.2020:[8.0] "One of the best ballroom wrestlers of all time. Very technically sound in many different styles of pro wrestling was able to be popular in the American and European indie scenes. His success did not transfer to the larger stages he wrestled such as Pro Wrestling Noah or the WWE to the same degree. In the WWE it is because he had trouble maintaining his weight especially when he first entered the WWE he was a bit overweight but not in a marketable degree. In the American and European scene he was able to stand out with his size and had the technical ability to match but once he moved to the WWE he no longer was the big guy in the company and since he did not have a bodybuilder figure, his biggest strength became his biggest weakness because he was no longer the biggest guy in the room. I need to watch some matches in this time in Noah to understand why he had a lack of matches in the Matchguide from his time there. It might just be when he was doing his tours there he was overshadowed by the likes of Kobashi, KENTA, Marufuji, and Misawa."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: BDDwrote on 05.03.2020:"Chris Hero was once one of the best wrestlers in the world, in 2016 being one of the strongest wrestlers of the year, he has a collection of amazing matches from many different places, he could adapt to any style, and managed to get the best out of his opponents, his current pace may not be the same, but he still manages to have a good match when he has the chance."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DeathByElbowwrote on 21.12.2019:[10.0] "Für mich die Definition vom Allrounder. Technik, sowie viele powermoves und teilweise etwas highflying. Seine Elbow Strikes sind immer schön anzusehen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: JOEvsISHIIwrote on 13.08.2019:[7.0] "Kassius Ohno is getting up there in age and his in ring work is starting to show it. He's still very good but he's not the 9 or 10 rated wrestler that he used to be."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TechnicalWrasslinwrote on 08.07.2019:[8.0] "A guy that would be great for AEW he? s underrated because of his work In roh Pwg Czw A man that is big and got lethal elbow strikes and a man that can flying hurricaranas He deserves a few North America title runs maybe a nxt world title Either uk or not But he would be decent on smackdown or possibly raw"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: steviecwwrote on 11.05.2019:[9.0] "I hope that when Chris Hero/Kassius Ohno retires that his latest run in WWE/NXT will not be too detrimental to his legacy. He was Indie royalty and made contributions to PWG, ROH, CZW, EVOLVE, Progress, Chikara, WXW, IWA Mid-South and many more. I still believe there's room for him to have success in WWE but they have to want him to."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ErycK24wrote on 08.04.2019:[6.0] "I find Ohno/Hero to be incredibly over rated, I don? t see the appeal, I? m not a big fan of his in ring work, and overall I? m just really not impressed, I hope this changes but I really don? t see it happening."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: miguelucedawrote on 01.03.2019:[9.0] "One of the best strikers in the business and at his 39, he is still making great performances with an amazing level. Love also the stiff side of his moveset. Besides, Ohno is a living pro-wrestling encyclopedia, one of the smartest guys in the business. He is going to be a great trainer in a future."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Shadow Explosionwrote on 31.12.2018:[10.0] "One of the most talented wrestlers of all time, Kassius Ohno knows his way around that ring bettger than anybody, A Big Man good at Tag Team, Technical, Powerhouse, Striking, and even High Flying Wrestling, Kassius Ohno is a Legend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: The Stott Onewrote on 30.11.2018:[8.0] "A very talented wrestler who is not thriving in the world of WWE. However, he can be a great asset if they could find some way to utilize him. It's a shame, but you can't overlook his performance pre-WWE. Amazing singles competitor, amazing tag matches with Colt Cabana and Claudio Castagnoli aka Cesaro. What's with the alliterative C's with Mr. Hero anyway?"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: zephyrwrote on 09.11.2018:[7.0] "Another one of those cases where I'm just not quiet seeing what everyone else seems to see in a wrestler. He's good and can definitely put on great matches but for the most part, he doesn't exceed "good"."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: RatingsMachinewrote on 12.10.2018:[9.0] "Chris Hero was a great wrestler. but Kassius Ohno? Not so much. Whether it's down a decline in abilities or a restrictive environment,  Ohno is not the wrestler Hero was. But that shouldn't detract from the fact that Hero, in his prime, and for quite some time, was a great wrestler, and had some incredible matches."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Oliver95xwrote on 23.03.2018:[10.0] "Eine legende und einer besten Indie Wrestler der Geschichte. Er liefert immer ab und zeigt nur selten ein schlechtes Match."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: cpatchjwrote on 05.03.2018:[7.0] "He's hardhitting and talented and I'm definitely a fan, but I'm more interested in stories and emotions, and I just don't get that from him."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Dragon Fighterwrote on 25.11.2017:[10.0] "An independent wrestling legend for sure. Ohno ( former chris hero ) had a long career and wrestled in various indy promotions in usa in Europe. His in ring performance is absolutely outstanding. Like AJ and bryan, he can make anyone look good in the ring and has at least good matches with anyone. His indy run from 2013-2016 was tremendous. Every time he stepped into the ring, you could expect very good matches. He stole the shows all the time. Now, he is in nxt for the second time. Hopefully, he has opportunities to prove how good he is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Klabauterwrote on 13.11.2017:[6.0] "Er ist ein solider Wrestler, mehr sehe ich in ihm nicht. In seiner aktuellen NXT Rolle, wo er andere Wrestler die besser sind als er, oder in denen man mehr Potential sieht over bringt finde ich ihn sehr gut aufgehoben. Er selbst wird wohl nie eine größere Rolle spielen, vielleicht darf er ja irgendwann mal in ein Tag Team mit einem Ähnlichen Wrestler. Singles Wrestler gibt es weit bessere als ihn."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: LonelyVillainwrote on 06.11.2017:[10.0] "Chris is awesome, my favourite wrestler of all time, instantly became a favourite of mine ever since he started his KO gimmick, knocking everyone out with stiff elbows, kicks and piledrivers. Hard hitting as hell, up there with shibata with his strong style, and athletic as all hell, doing head scissors, high jump planchas and moonsaults at 6’4 260 pounds, simply the best All round wrestler ever."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: freddnwrote on 17.10.2017:[6.0] "Im Ring sehr talentiert. Darüber hinaus jedoch nur Mittelmaß. Sowohl Promos, Ausstrahlung als auch körperliche Form (Fitness) lassen hier etwas zu wünschen übrig. Im Gesamten jedoch durchaus brauchbar, wengleich auch kein absoluter Top Player."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TooSweetPhilwrote on 25.09.2017:[8.0] "Chris Hero - er wird immer in der Diskussion sein, wenn man um den Besten Indy Wrestler reden muss. Der Typ hat sich nach und vor seinem schwachen WWE Run in den Indy's (PWG;PROGRESS etc. ) einen unglaublichen Namen gemacht. Im Ring kann er trotz Statur ziemlich alles, schnell, athletisch, Stiff, brutal und kann eine Story mit Struktur aufbauen. Dazu tolles Selling, als Team oder alleine grandios. 9 Punkte ! ---EDIT: Ich muss doch eins runtergehen, da ich ihn in der WWE weiterhin kaum mehr wirklich sehen kann und er so selten glänzt."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Phil272wrote on 12.06.2017:[7.0] "Liefert bei der WWE jetzt keine großartigen Matches. Da waren die Indy-Zeiten bei ihm besser. Er braucht auch ein neues Attire."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Lardo Parcelwrote on 27.02.2017:[9.0] "Honestly, I doubt that the WWE crowd would embrace someone like Ohno. He's extremely skilled in the ring, his mic skills are believable, but once again there's that doubt about his "looks". But other than that, Ohno, as Chris Hero, has been fucking killing it in the past 2 or 3 years. He would usually have the best matches against a variety of people. If anything, I feel that he belongs in the same sentence with the great wrestlers of the 2000's, from Punk to Bryan, to Styles and Daniels."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TheWrestlingFanwrote on 12.02.2017:[10.0] "Hands down to one of the best, if not the best, wrestler in independent scene. He can adapt to any kinds of wrestling style easily. Most of his matches are truly 4. 5-5 stars. His movement is still as smooth as ever despite he has reached his late 30s and has weight issues. If independent wrestling scene has a Hall of Fame ceremony, Hero should be the first ballot for the induction."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: umarthegreat15wrote on 11.02.2017:[10.0] "I've got noting but love for this guy. Truly had the best year in 2016 of anyone in the biz. Seems to only be getting better. He can work babyface, heel, anything and knows how to work a crowd. People complain about the weight, but I think he shuns those people pretty much with what he's able to do. Go, Ohno!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: csp6713wrote on 23.01.2017:[9.0] "Despite size and his weight, Hero/Ohno has a had a career year in 2016. Great matches with multiple guys, notably Andrews and Strong in my opinion, and one hell of an improvement as an all-around wrestler. As long as he's the Hero we know, WWE/NXT will give him a platform to excel."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: JokeyZockeywrote on 02.01.2017:[10.0] "Mein Lieblings-Indie-Wrestler aller Zeiten! Chris is awesome, dieser Satz beschreibt diesen Mann wirklich perfekt! Im Ring zu jeder Phase seiner Karriere einfach genial, sowohl früher als grandioser Allrounder als auch natürlich in der Neuzeit als ''Young Knockout Kid'', was sogar ehrlich gesagt das Gimmick ist, das ich mehr mochte. Dazu ist er auch noch ordentlich charismatisch und verkauft sich und seinen Gegner in seinen Matches stets nahezu perfekt. Auch wenn er besonders in den letzten Jahre wirklich sehr extrem an Bauch zugelegt hat (ich finde, er sollte es wie Owens machen und einfach mit Oberteil wrestlen), seinem Talent hat das keinen Abbruch getan. Sollten wir ihn 2017 tatsächlich wieder in der WWE bzw. bei NXT sehen, das Wrestling-Jahr 2017 hätte für mich schon mal einige Pluspunkte! Also: Chris Hero = einer der besten im Business momentan!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: MrMaggowrote on 30.12.2016:"Ich mag ihn sehr, nur soll er sich bitte ein anderes Attire aussuchen. Das jetzige ist sehr unvorteilhaft."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: SanthoshVNwrote on 16.12.2016:"Chris Hero is a genius in the ring. Very athletic, brutal, incredible in the ring. He uses the elbow & Piledrivers very well. I feel that he should go to promotions like ROH/Progress/NJPW than staying on small promotions. He is completely diffferent from the body shape he has"
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Jobbswrote on 12.12.2016:[9.0] "This guy was and still is absolute beast. The guy hasn't had a bad match in a couple of years and proved in 2016 that he is truly one of the G. O. A. T. as he just his one of the most elite professional wrestlers in the world as well. He is just amazing to watch in the ring and knows how to pace his matches and has had numerous classics too. Just a phenomenal athlete and his 2016 compares to Bryan Danielson's 2006 run. Chris Hero is truly that Awesome!"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: NastyYaffawrote on 12.12.2016:[10.0] "Truly a legend of independent wrestling, and one of the greatest wrestlers of all-time. He's always been a quality worker - he's had A LOT good-to-great matches throughout his career, legendary battles vs. the likes of CM Punk, Bryan Danielson, William Regal & others - but it's 2016 when he became a bonafide legend in my eyes, as Chris Hero's 2016 is quite simply one of the best years any wrestlers have ever had - totally up there w/ stuff like Flair's '89, Danielson's '06 etc. As his fantastic theme song is called; Chris is awesome."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TrevPuroFanwrote on 12.12.2016:[10.0] "I have always liked Chris Hero and his ring work. Had some classics throughout his career from 2002 till 2015, but its the 2016 Chris Hero that made me love him. He's just been on fire this year, delivering back to back classics. He's always been fantastic. Love him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: AtticusFinchwrote on 25.11.2016:[10.0] "In my opinion, probably the best active wrestler in the world. Everyone knocks Hero on his size and weight, which I can understand, but I'm honestly fine with it. His cardio is off the charts too. If anything, it just makes it more impressive when he's throwing his body around. Looks aside, Hero is a true student of the game. Everything he does looks smooth and brutal. Has no issue making upcoming independent talent looking great. I really hope Chris can get another chance to shine in the WWE, but if not, he'll continue his legacy as the best independent wrestler out there."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: mdgeistwrote on 05.11.2016:[9.0] "I've been watching Chris Hero since his early days in CZW & CHIKARA when he was rocking the indy-riffic baggy yellow firemans pants. In hindsight, I think Chris was a victim of his own wrestling intellect - in that he was such a student of the game - he appeared to want to fit EVERYTHING into every match, every night. Ironically, what appeared to hold him back was his inability to hold back.   Ever since he left WWE developmental in 2013, I have mostly been seeing Hero in PWG - and what a joy he's been to watch (and indeed listen to - whilst Chuck T almost fills the comedic void left by Steen, Hero provides a wonderfully geeky insight into each match perhaps rivalled only by his mentor Mike Quackenbush's commentary turns in CHIKARA) - Hero seems to have refined everything that gave him such great potential into one of wrestling's unsung... well, heroes. Chris appears to be one of very few wrestlers in this era capable of really improvising and adding to the story being told in the ring - and it's a totally different, wonderful story every time. Look at PWG matches with 'Speedball' Mike Bailey & Timothy Thatcher - Hero can raise lesser opponents up to his level in what should be just another match by raising the intensity and making it a classic.   Contrary to some, I see Hero's slightly podgy belly and all around shape to be a plus. He looks different, and he just looks like a hard bastard who would own most people in a bar fight - much like Steen.   Hero seems to be enjoying this part of his journey on the indies, but surely something bigger looms, as he is now in his absolute prime."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: MAGICIANwrote on 22.10.2016:[9.0] "Chris Hero gehört zu den besten Wrestlern auf der Welt derzeit. Jedes Match mit ihm ist so einzigartig, sein Storytelling göttlich! Im Ring ist er damit grandios (10/10), Ausstrahlung gut (8/10) und sehr charismatisch (9/10). Insgesamt sind das 9, 00 von 10 Punkten - 'sehr gut'."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Zedwrote on 08.10.2016:[5.0] "Hab ihn vorgestern nach langer Zeit mal wieder gesehen, Herrgott der ist ja aufgegangen wie ein Luftballon. Und langsam ist er geworden, jetzt nicht so mega langsam, aber im Vergleich zu früher doch arg die Handbremse gezogen. Er wirkt nicht in Form und seine runder Bauch steht ihm doch im weg. Schade was diese Indy Ikone mit sich gemacht hat. Für früher 8 Punkte, für heute 3 Punkte abzug. Find ihn nicht mehr so toll."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DerMilanowrote on 02.10.2016:[8.0] "Immer noch ein ziemlich starker Wrestler, der jedoch aufgrund seines Alters auf dem absteigenden Ast ist. Seine Matches werden von Jahr zu Jahr langsamer. Dennoch ist er immer noch gut anzusehen und definitiv noch in der Lage gute Matches zu worken."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Pro Wrestling Walruswrote on 16.09.2016:[10.0] "Perhaps the best wrestler I have ever seen live. He is just that good. He can work any style, and his stuff looks incredibly believable. Aesthetically, he's really let himself go and doesn't look good, but it doesn't seem to affect his performance. I'd give a 9. 5 if possible, simply because his current look is so sloppy."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: adp125wrote on 12.09.2016:[8.0] "Whilst he looks physically out of shape, his conditioning is good and he can still put in solid performances. Not over rated, but it would have been interesting to see where his career could have gone"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ECW444lifewrote on 05.07.2016:[10.0] "the best wrestler in the world point blank when you think of indie wrestling you think of chris hero if you dont your not a pro wrestling fan"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Luv all wrestlingwrote on 04.07.2016:[10.0] "King of the indies. Chris Hero has faced virtually everyone on this continent from redneck briscoes to arm breaking luchadors to former multitime wwe champions. Now that he freelances he shows up everywhere from aaw to progress. Man has a amazing workrate and is just all around a king of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Alex Maedawrote on 04.06.2016:[9.0] "Charismatisch, wrestlerisch vielseitig talentiert, starker Crowdworker. Auch abseits des Rings ein sehr sympathischer Mensch. Who's your hero? It's Chris Hero."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: prowrestlingisrealwrote on 13.05.2016:[10.0] "What can I say about this guy ? Chris Fn' Hero, he don't need an introduction, he is without a doubt an Indy legend, and one of the best pro wrestlers in the world, good with a mic on his hands, awesome charisma and a devastating moveset with a combination of technical wrestling, hard hitting style and some high flying stuff lol, and I don't care about his weight."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: skranserwrote on 08.05.2016:[6.0] "Le habría puesto una nota superior hace unos años, pero el Chris Hero de ahora es alguien bajo de forma que hace tiempo pasó su mejor tiempo. Además, la nota media que tiene me parece una barbaridad."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: downtown2wrote on 11.04.2016:[5.0] "Eine Tragödie, wie es mittlerweile um Chris Hero steht. Seit seinem Scheitern bei NXT sind drastische Verfallserscheinung zu beobachten, man erkennt ihn irgendwie kaum mehr wieder. Seit er von der WWE mangels Fitness und Einstellung entlassen wurde, ging es wegen genau diesen Kritikpunkten immer weiter bergab. Halbherzige Matches und Micwork, dazu aufgedunsen und träge. Sollte ihm aufgrund dieses geplatzten Traums der Zahn gezogen worden sein, sollte er die Stiefel an den Nagel hängen, bevor sein glänzender Ruf in den Indies noch weiter zu bröckeln beginnt. Ich glaubte vor NXT persönlich, dass er einen ähnlich Weg wie CM Punk gehen könnte. Irre wie zwei ähnlich großartig veranlagte Männer (Nicht nur Punk, sondern viele andere seiner ehemaligen ROH Kollegen) so derart unterschiedliche Erfolge in ihren Karrieren erzielen könnte. Sehr sehr schade um Hero, ich dachte ihm gehöre die Zukunft - nun scheint es zu spät."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: NoNamewrote on 30.03.2016:[8.0] "Ich kann Leider nur 8 Punkte geben, das liegt an seiner Aktuellen Situation, Ich hätte ihm liebend gerne 9, sogar 10 Punkte gegeben, allerdings hat er einiges an Awesomeness verloren, seit seinem NXT Run. Hoffentlich findet er zu alter stärke zurück, dann gibts auch die volle Punktzahl."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ApexOfEvolutionwrote on 29.03.2016:[7.0] "Technisch sicherlich ein klasse Wrestler und volle 10 Punkte wert. Hat mich aber am Mic nie wirklich 100% überzeugt, auch wenn er nicht schlecht ist (8 Punkte). Charisma ließ auch immer ein wenig zu wünschen übrig, vor allem mit diesem Superman-Krams und auch bei seinem WWE-Run (6 Punkte). Damit wären wir bei 8 Punkten, aber ich muss leider noch einen für die Leistungen in der letzten Zeit abziehen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DaBBwrote on 17.02.2016:[6.0] "Vor einigen Jahren hätte ich ihm noch 2-3 Punkte mehr gegeben, was er seit seinem Aufenthalt bei NXT allerdings abliefert ist ziemlich traurig anzusehen. Kaum noch etwas ist übrig vom agilen, aufregenden Wrestling Talent Chris Hero. Ich dachte ja, schlimmer als sein Superman Outfit kann es nicht werden, nachdem er das glücklicherweise irgendwann eingemottet hat. Aber bei seiner Riesenwampe die engen Eierquetscher auszupacken grenzt schon an Körperverletzung, das ist echt nicht feierbar. Ab und zu haut er noch die Tempowechsel raus, die ihn zu einem meiner ersten Indy Favs gemacht haben, den Rest seines Arsenals hat er aber gegen eine gemächliche Matchführung und immer weniger kreative Elbow Strikes eingetauscht. Es scheint fast so, als würde er nur noch mit angezogener Handbremse wrestlen. Für einen Großteil der Fans scheint das ja offensichtlich zu reichen, also kann man ihm das nicht mal unbedingt vorwerfen. Ich bin allerdings schwer enttäuscht von seiner jüngsten Entwicklung, hoffentlich überwindet er sich irgendwann doch mal und schwingt seinen Arsch ins Gym."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Haberfeldtreiberwrote on 16.01.2016:[7.0] "Mag ein solider Wrestler sein und zeigt von Zeit zu Zeit tolle Matches, doch in seiner langen Karriere nie den großen Durchbruch geschafft. Ich selbst werde mit ihm auch nicht richtig warm irgendwie ein ewiger Midcarder der in der Indy Szene aber besser aufgehoben ist als in den Top Promotions deshalb 7 Punkte."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Bedderwrote on 19.10.2015:[9.0] "Chris Hero has to be one of the best technical wrestlers out there.  He can have an absorbing match with seemingly anybody.  Has had some unbelievable matches for PWG in the last year or so with Bola 2014 and his recent wars with Tommy End and Mike Bailey standing out as brilliantly entertaining."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: letsgeweirdBAYBAYwrote on 18.10.2015:[9.0] "In my personal opinion Chris Hero is sensational.  I see where a lot of users are saying that he is boring or overrated and while they are definitely entitled to their own opinion I have to strongly agree.  To me, Hero is very diverse in the ring but its mainly subjective to a match by match basis.  I personally wouldn't mind if all he did was throw strikes because he is so damn good at it.  As far as his weight or body type is concerned, I could care less.  I see a lot of people attacking his weight and appearance in various forums. I don't watch wrestling to look at the bodies of the performers but if you do then I just say to each his own.  Dusty Rhodes sure didn't suffer from having an unconventional physique... and to say that Chris Hero's weight is causing his in-ring performance to suffer then I strongly advise you to watch his match with Tommy Dreamer at House of Hardcore 9, he does multiple kip ups only to follow it up by a kip up without using his hands/arms.  The guy is a beast to me, and enjoy every match that I have seen him in.  I agree that everyone is entitled to their opinion and I respect other's opinions but facts are facts."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: CGNRavenswrote on 18.10.2015:[7.0] "Chris is awesome! Ja er war awesome, sagen wir so. Als er zu WWE ging war ich tot traurig, kein Spaß! Da ging einer meiner Lieblinge zum Branchenprimus und ich konnte mich absolut nicht freuen, weil ich ihn wirklich vermissen werde (dachte ich). Hero kam dann, ohne TV Auftritt in den Main Shows, zurück in den Indy-Zirkus und sah chubby aus, und außer Form. Auch bei wXw wollte der Funke nicht mehr überspringen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Blade Bourdeauxwrote on 08.10.2015:[5.0] "Handwerklich über jeden Zweifel erhaben. Formmäßig noch nicht auf WWE Niveau und Sorry aber die WWE ist eben auch Optik (in beide Richtungen). Dieses Manko begleitet ihn schon lange und nicht nur Samoa Joe ist ein gutes Beispiel dafür was eine beliebige Optik einem vieles verbauen kann. Entweder man ist Six-Pack Träger oder man trägt das ganze Fass. Update: 6 Punkte Der Vergleich ist sehr schlecht für ihn: Punk -> längster Champion Bryan -> mehrfacher Titelträger Cesaro -> US Champ er hat es nicht geschafft, seine Fähigkeiten reichen nicht für die WWE und damit ist er nicht auf einer Stufe mit den letzt genannten. Stand jetzt ist er der Marty Jannetty der Kings of Wrestling. Auch 2014 bisher nicht besser, insgesamt extrem overrated"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Claudio Herowrote on 25.04.2015:[10.0] "Chris Hero ist für mich einer der 10 besten Indy Wrestler aller Zeiten ... Für mich grandios im Ring und am Mic ... für seine WWE Zeit konnte er nicht viel, da scheiterte er an einem blinden und talentfreien Triple H der für mich eh keine Ahnung vom wirklichen Wrestling hat. Seine Zeit bei IWA Mid-south und die Fehde gegen CM Punk ist legendär, aber auch seine Super Matches bei ROH, NOHA, Chikara, Evolve, Dragon Gate USA vor allem auch WxW ... er konnte eigentlich immer überzeugen ... für mich mehr als verdiente 10 Punkte für einen Mann der nie einen großen Titel gewann"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Viper99wrote on 14.04.2015:[10.0] "! Er ist leider nicht eines der Arbeitstiere im bezugs auf das tägliche Trainieren, wesshalb er leider aus der WWE entlassen wurde, aber er ist ein verdammt guter Worker. Selbst Heutzutage mit mehr Gewicht ist er super wie man vor kurzem bei PWG auch gesehen hat. Ansonsten ist er auch noch stark am Mic und besitzt das nötige Charisma. Die Kings of Wrestling Zeit war auch fantastisch und ich hatte immer auf eine Reunion in der WWE gehofft...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Uap09wrote on 10.03.2015:[8.0] "Immer noch einer der Besten im Indybereich, auch wenn er in letzter Zeit körperlich etwas nachgelassen hat. Schade, dass er es bei der WWE nicht zu mehr gebracht hat, verdient hätte er es allemal."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Maryanwrote on 04.03.2015:[8.0] "Chris is awesome, just like his song suggests but over the years the age put his amprent on him... I'm not saying he doesn't have it anymore, but he got a bit of belly :) and he's kind of stiff in the ring. Overall, when I think about Chris I think about his elbows, brouge kicks and King of Wrestlings. Heeeerooo, Heeerooo, Heeerooo...."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TAWPTierJustinwrote on 29.12.2014:[9.0] "I'm glad Chris Hero is back on the indies and he's still doing what he loves to do which is wrestle and he's free to go all out in his matches again. At the time though when Chris got released from WWE cause he wasn't trying to get himself more fit, I didn't understand why that was and just looked at it as a bad mistake by WWE for letting him go. But nowadays, I still feel it's somewhat of a mistake but looking at Chris Hero's matches from PWG and Evolve a couple months ago, I honestly see now why WWE released him cause Chris has gained a significant amount of weight which I feel is kind of bringing him down in the ring a bit. Either way I feel bad for him cause he's such a gifted wrestler and he's such a world champion caliber talent that his talents and abilities deserve to be showcased at Wrestlemania. Like I said, I'm glad Chris Hero has been back on the indies for a little over a year now and he's still doing what he loves to do but I just hope he gets himself back in better shape than he was before not for any of us but for himself."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Leonewrote on 24.12.2014:[9.0] "The man was never built.  He's either thin, fat or a bit flabby, and that's basically the only reason he didn't get far in the WWE, because he didn't have the physique of his best tag partner, Cesaro.  Other than that, he's easily 1 of the best 6'5 technical wrestlers in the world, while also having an intense and brilliant strong style, submission wrestling background and the ability to be very acrobatic.  Other than Kevin Steen, he was the best CZW Iron Man Champion (and put on great title defenses), and he has a lot of charisma.  Compared with his potential, he's an underachiever - and hopefully we'll see great things from him within the next 5 years."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: 8BitLegendwrote on 03.11.2014:[7.0] "Ich habe nicht so viel von ihm mitbekommen. Ein paar ROH-Auftritte und seine komplette NXT Zeit. Von den Anlagen her ähnelt er CM Punk und man hätte bei WWE sicherlich deutlich mehr aus ihm herausholen können, wenn es denn geklappt hätte. Mag sein, dass er nicht 100% durchtrainiert war, aber so oberflächlich sollte man nicht sein einen Wrestler über das Vorhandensein eines Sixpacks zu definieren. Ich denke er befindet sich jetzt im letzten Drittel seiner Karriere und wird noch 5-6 Jahre die Indies beackern, es ist nur schade dass er die großen Bühnen wahrscheinlich nicht mehr sehen wird."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: GlobalSportsGamerwrote on 20.10.2014:[10.0] "Extraordinary wrestler. WWE really made a mistake in letting him go. Extremely agile and quick for a big guy and an amazing innovator, technician and ring general. One of the best of all time in terms of brawling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: MrJamesssswrote on 05.06.2014:[8.0] "He's (maybe) the best wrestler in USA behind D-Bryan. But I prefered him when he was "Mr. Cravate" instead of "Mr. Elbow" as he's today. He has a big moveset, charisma and solid psychology, but sometimes he's sloppy and slow. Anyway, he's overall one of the best wrestlers today."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DieOffenbarungwrote on 29.05.2014:"Werde hier mal nur ein Kommentar hinterlassen, weil ich Ihn nicht wirklich bewerten kann und auch nicht möchte. Weiß einfach nichts mit Ihm anzufangen, klar er kann was im Ring, gehört definitiv zu den bessere, aber und das ist das großer ABER, er ist von den der Form her nicht konstant. Zudem bin ich am Mic von Ihm nicht überzeugt und es fehlt ein wenig an Charisma. Vermutlich außerhalb der WWE besser platziert."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: SRwrote on 12.05.2014:[9.0] "Meist ein Garant für gute Matches und völlig zurecht einer der wohl meist gebookten Indyleute seit seiner Rückkehr in diese Szene."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: elpegadowrote on 23.03.2014:[8.0] "Very good all-around wrestler, a bit sloppy sometimes. Has improved loads throughout his career."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: RJLwrote on 05.03.2014:[10.0] "Chris Hero is nothing short of pure wrestling talent, It's a shame that the WWE dropped the ball on him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: LS Incwrote on 28.12.2013:[10.0] "Chris Hero is, if not the best, one of the best wrestlers in the world."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: yanuswrote on 26.12.2013:[8.0] "Very good wrestlers, but not on the level of Danielson, Punk or Samoa Joe (during his time in ROH). Excels in long matches, but isn't really suited for the short wwe-style of match (although there are exceptions, like his match with Bobby Fish). Should really work on his physique. His main strengths remain his stamina, technical-prowess and his mic-skills."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: daniel cassidywrote on 13.11.2013:[10.0] "Chris Hero is the perfect wrestler; there is nothing bad about him at all, it's WWE's mistake to have released him."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Martyrswrote on 09.11.2013:[10.0] "Was zum Teufel ist los mit der WWE? Warum entlässt man einen so guten Wrestler, ohne ihm jemals die Chance im Main-Roster gegeben zu haben und gibt Pfeifen wie Big E. Langston oder Ryback einen Push...  Chris Hero back with the Indy-Circuit. Vielleicht besser so.  Von mir klare 10 Punkte für seine Fähigkeiten im Ring und sein überdurchschnittliches Charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: That 70s Blokewrote on 26.07.2013:[10.0] "The only reason he isn't on the roster yet is because Vince thinks he's too fat!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Rinskywrote on 26.07.2013:[10.0] "Sehr gut im Ring, tolle Ausstrahlung, tolles Gimmick und spitze Micwork. Ich frage mich schon seit Jahren, warum er nicht längst den ROH World Title halten durfte. Jetzt, da er auch etwas durchtrainerter ausschaut, könnten sich die Tore für die beiden großen Ligen öffnen. Das Können um sich dort zu beweisen hat er auf alle Fälle."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Lecterwrote on 06.06.2013:[8.0] "Good at everything, really. Quality matches, decent promos, believable character."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: PhenomenalTLDwrote on 21.01.2013:[10.0] "He is already one of the greatest independent wrestlers of all time. A former PWG World Champion, CZW Champion, and IWA MS Champion. He has won tag team titles in ROH, CHIKARA, and CZW. The man is a true force in wrestling and he is making his mark in FCW/NXT. When he gets called up to the main WWE roster, he will show his skills in the ring and on the microphone. Hero/Ohno is poised to be a TRUE star in the world of wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Luke1984wrote on 04.01.2013:[10.0] "Betrachtet man seine Gesamtkarriere kanns hier nur die 10 geben. Ich habe früher ein wenig CZW und IWA-Mid South geguckt und schon da hat er mir sehr gut gefallen. Bei CHIKARA und ROH hat er noch mehr aufgetrumpft und so wie er sich jetzt in der WWE entwickelt wird aus ihm mal ein Main Eventer im Hauptroster. Ist sowohl im Singles als auch im Tag Team Bereich bestens aufgehoben und Charisma und Mic-Skills sind ebenso mehr als nur verhanden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: VanderVaartwrote on 12.09.2012:[9.0] "Wife Beater und seine Mitgliedschaft bei Sweet & Sour waren zwar großer Mist und auch seine Statur ist noch ausbaufähig. Dafür auch nicht die volle Punktzahl, aber Heros Entrance und Wrestling sind jedesmal Main-Event würdig. Mehr Pops als er bekommt doch kaum jemand."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Sascha311wrote on 25.08.2012:[5.0] "Zwar ganz annehmbar im Ring aber zum Maineventer fehlt ihm einiges was man immer wieder an seinen Matches sieht."
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: BrotchMrToastwrote on 16.08.2012:[10.0] "Sehe ich richtig, dass nur manche ihn wegen seinen Körperbau bewerten, und deshalb sagen, dass er nichts in WWE zu tun hat? Und auch noch sein gimmick? Ich versteh euch echt nicht, Man soll den Wrstler an sich bewerten, und mit dem Gimmick, hat er ja nichts zu tun, das entscheidet die Liga, in dem Fall FCW, aber er ist einer der Technich besten, die ich schon lange gesehen habe, und das ist Fakt!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Damon Strikerwrote on 28.05.2012:[10.0] "Look, Ausstrahlung und Mic-Skills sind über jeden Zweifel erhaben. Im Ring ebenfalls begabt und mit einem aussergewöhnlichen Stil. Ich hoffe, er wird es weit bringen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: alewrote on 27.04.2012:[10.0] "Wie kann die WWE Chris Hero nur in die Farmliga stecken? Raus mit ihm rein ins Main Roster und gleichmal ab ins Main Event, Dreiecksfehde mit CM Punk und Daniel Bryan und die Welt ist in Ordnung.  Ansonsten zum Wrestler Chris Hero muss man wohl nicht viel sagen, meiner Meinung nach auch der bekannteste Indy Wrestler der Welt."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: devilsoldierwrote on 20.12.2011:"Gerüchte besagen das die WWE ihr Angebot zurückgezogen hat weil der durch den Drogentest gerasselt ist wegen zu hoher Testosteronwerte. Ich hoffe er fährt die wieder runter und wird noch eingestellt. Nicht Nigel 2. 0 bei TNA das muss nicht sein."
Rating: No rating found
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: cookie monsterwrote on 27.10.2011:[10.0] "He is my Hero^^ Ach wie ich solche großartigen Wrestler nur in ROH liebe."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: chaoswrote on 24.09.2011:[10.0] "Unglaublicher Typ. Nahezu perfekt im Ring! Hoffe das er zur WWE kommt und sein können zeigen kann."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: treeofworldswrote on 01.08.2011:[10.0] "Nicht nur, dass ich schon 2007 ein großer Hero-Fan war. Er hat es auch noch geschafft sich seit dem deutlich weiterzuentwicklen und sogar noch zu verbessern. Ich hoffe mal wir dürfen auch in der WWE noch seine unfassbaren technischen Fähigkeiten zu Gesicht bekommen. Chris is awesome!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Double Jwrote on 23.05.2011:[10.0] "Chris Hero, was soll man da groß sagen? Charismatisch, grandioser Look (wie ich finde^^), unglaubliche In-Ring Fähigkeiten - meines Erachtens nach der beste aktive US-amerikanische Wrestler!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Hu-Manwrote on 18.05.2011:[10.0] "Hero ist einfach der Kracher. Ich liebe seine harten und stiffen Aktionen und fast noch lieber ist mir sein überragendes Selling. Am Mic ist er ebenfalls ne Bombe und so kann man dem charismatischen K. O. Kid nur 10 Punkte geben."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Jerichoholicwrote on 05.05.2011:[9.0] "Meiner Meinung nach einer der besten und vielseitigsten Wrestler der Indy Szene, der durch seine tolle Ausstrahlung und seinen durchaus Mainstream kompatiblen Look eigentlich schon lange in den Fokus der großen Ligen hätte geraten müssen. Gerade mit seinem Gimmick als "Young Knockout Kid" hätte ich mir Hero so gut im WWE Programm vorstellen können - er ist eben nicht der leichtgewichtige und gesichtslose Indy Wrestler, sondern ein echter Entertainer. Im Tag Team mit Castagnoli einfach grandios, als Singles Wrestler allerdings nicht minder gut."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Aquifelwrote on 04.05.2011:[10.0] "Technisch und athletisch ist Hero sowieso einer der besten Wrestler, die sich im Ring tummeln. Dazu kommt ein schön stiffes Striking (zumindest sieht es oft so aus) und ein erkennbarer Sinn hinter seinen Aktionen. Sowohl als Singles Wrestler, als auch im Team mit Claudio, erstklassig."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Baszdmegwrote on 02.05.2011:[10.0] "Phänomenaler Wrestler mit sehr viel Ausstrahlung und gutem Micwork. Verrückt, dass die WWE sich noch nicht gemeldet hat! Spätestens seit er den Look verändert und etwas an Muskelmasse zugelegt hat, hätte er sich seine Chance verdient. Wer weiß, vielleicht muss ja noch die Mähne ab. Aber dann wird es allerspätestens Zeit, kann ihn mir sehr gut bei NXT oder innerhalb einer Storyline mit CM Punk vorstellen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: SoulTouchaZwrote on 30.04.2011:[10.0] "Grandios, einfach grandios! Als "That Young Knockout Kid" auf jeden Fall besser als der Superhero, in meiner Ansicht! Wrestlerisch auf sehr sehr hohem Niveu!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Rated R Champwrote on 09.03.2011:[10.0] "Chris Hero bringt eigentlich alles mit, was man von einem Wrestler verlangen kann, er ist fantastisch im Ring und kann dort verschiedene Stile mitgehen, er ist sehr beweglich und seine Aktionen sehen quasi nie unsauber aus. Zudem hat er einiges an Charisma und kann hervorragende Promos halten. Fantastisches Gesamtpaket. Ausserdem gefällt mir in letzter Zeit (bei ROH) wieder deutlich besser als zu Sweet 'n Sour Zeiten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Sandmannwrote on 09.03.2011:[9.0] "Hero zu bewerten ist echt schwierig. In letzter Zeit als Young Knockout Kid gefiel er mir sehr gut. Seine Zeit bei Sweet ŽnŽ Sour fand ich ehrlich gesagt zum kotzen. Mit Castagnoli als Kings of Wrestling natürlich auch Gold wert. Sehr cooles Tag Team. Als Führer der CZW Invasion auch sehr unterhaltsam. Allerdings hab ich mittlerweile auch mehr alte Sachen von ihm gesehen so dass es noch ne Nummer mehr gibt. Genialer Wrestler"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Matt4Wrestlingwrote on 17.02.2011:[10.0] "Einer der besten und Fan-freundlichsten Wrestler, die ich je getroffen hab! Das er trotz die härte und Masse die er jetzt aufbringt immer noch so eine guter High-Flyer sein kann beeindruckt mich zutiefst!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Necronwrote on 03.12.2010:[7.0] "Ein toller, kreativer und innovativer Wrestler. Wenn er etwas "bodenständier" im Ring arbeiten würde, träfe er meinen persönlichen Geschmack wohl noch besser, aber man kann's sich ja nich aussuchen."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Excellence of Executionwrote on 14.11.2010:[9.0] "Sehr guter Mann, der sowohl im Team mit Castagnoli als auch allein zu überzeugen weiß. Am Mic und was seine Psychologie im Ring anbelangt für mich einer der besten bei ROH. Hat im Grunde genommen alle Qualifikationen, um auch auf prominenter Bühne zu bestehen. Aber als nun regelmäßiger ROH Gucker sehe ich ihn ganz gerne da, wo er gerade ist^^."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Aesopwrote on 18.10.2010:[10.0] "Hero ist nachdem Bryan und Nigel weg sind, der beste Indy Wrestler, die anderen beiden hatten ihm immer etwas vorraus. Das ändert aber nichts an der Tatsache das er einfach großartig ist und war, im Ring meistens ziemlich unterhaltsam und auch außerhalb des Rings gut."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ARIZAwrote on 06.09.2010:[10.0] "Einer der besten, die es gibt und das schon seit einigen Jahren. Konnte schon immer überzeugen und das, obwohl er sich über die Jahre sehr verändert hat."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Ryklon Stephenswrote on 25.08.2010:[7.0] "Auch nach einigen Jahren bin ich von Hero nicht wirklich begeistert. Starke Matches kann er durchaus zeigen, allerdings ist das auch das einzige was mir an ihm gefällt."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: alsb683wrote on 23.08.2010:[10.0] "Chris Hero hat eine Entwicklung hinter sich, die ihresgleichen sucht. Vom etwas nerdig aussehenden Indy-Wrestler (Der trotzdem schon immer super war) zu einem Top-Wrestler mit Superstar-Look. Hier kommt man an einer 10 nicht vorbei, da jedes Hero Match eine Klasse für sich ist.  Es ist zu hoffen, dass ihm noch der letzte große Schritt gelingt und er CM Punk und Bryan Danielson folgen kann. Verdient hätte er es allemal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Whole FN Showwrote on 18.08.2010:[9.0] "Chris Hero fand ich als Teil der King of Wrestling, als CZW Leader, als That Young Knockout Kid und in seiner Zeit bei IWA-MS ziemlich unterhaltsam und gut. Einziges Manko war mMn die Zeit bei Sweet and Sour Inc. die mir irgendwie überhaupt nicht gefallen hat."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Erasedwrote on 22.05.2010:[9.0] "Liefert fast immer gute und vorallem sehenswerte Matches ab. Technisch sehr begabt."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Straight Edge Jerichoholicwrote on 28.04.2010:[10.0] "Chris is Awesome!  Eindeutig einer der besten die ROH bzw. die Indy Szene hat!  Der Kerl rbingt klasse Matches zustande wie z. B bei IWA MS gegen CM Punk die waren der Hammer!  Deswegen 10 Punkte"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Blazewrote on 28.04.2010:[10.0] "Goßartiger Wrestler, der sowohl im Ring als auch am Mic Weltklasseleistungen bringt. Jahrelang konstant hohes Level mit wahren Schlachten im Ring. Wer ihm verwirft, er habe keine Ahnung von Ringpsychologie hat noch nicht viel von ihm gesehen. Kann außerdem von Matwrestling bis Brawling, europäischem Catchen bis Puroresu alles gehen und holt aus beinahe Jedem ein gutes Match heraus. Was will man ihm vorwerfen? Selbst sein schlechtes Wrestling Gear hat er aussortiert. Neigt manchmal zu stark zum langsamen Brawling, hat erst vor kurzem angefangen ins Gym zu gehen, aber seine Klasse ist einzigartig. Höchste Wrestlingskills, Micwork, Charisma und einen beinahe Rockstarähnlichen Hype unter Indy Fans hat er sich mittlerweile aufgebaut. Egal ob im Tag Team oder als Single Wrestler - absolutes Championship Material!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: StefanKwrote on 21.04.2010:[10.0] "Chris Hero ist einer der Wrestler, die ich sehr gerne sehe, da er immer 100 % gibt und z. B. beim Carat 2010 oder the Vision, ausschliesslich geniale Matches abliefert."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: catchfanwrote on 14.04.2010:[7.0] "Muss sich noch körperlich verbessern, um in der WWE oder TNA mithalten zu können. Sonst gut."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: THE GAME 4-EVERwrote on 11.04.2010:[8.0] "2003 - 2008 sind das 10 Punkte gewesen. Der momentane Stil und Young KnockoutShit sind allerdings sowas zum vergessen und schlecht. Wie man sich freiwillig so auf seine Elbows festbeißen kann, die allerdings gewaltig knallen, ist mir schleierhaft. 2009- Heute sind das nur noch 6 Punkte !"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Finswogglewrote on 19.03.2010:[10.0] "Chris Hero ist einfach grandios. Habe diverse Matches von ihm gesehen und wurde noch nie enttäuscht. Technisch brilliant und äußerst stiff- 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Perfectionwrote on 07.03.2010:[10.0] "Chris is awesome! Ein super netter Kerl... hab ihn gestern bei der WXW persönlich kennengerlent und er ist einfach nur cool und freundlich. Im Ring überzeugt er mich komplett und am Mikro hat er es drauf. Ich hoffe, dass er bald noch einen nächsten Schritt gehen kann und den Durchbruch in der WWE oder TNA schafft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: The Rated R Superstar EDGEwrote on 03.03.2010:[10.0] "Chris Hero ist jetzt wo Desmond Wolfe und Daniel Bryan weg sind der beste Indy-Wrestler. Er hat unglaublich viel Charisma und seine in Ring Skills sind der Hammer. Er solte es auch mal bei der WWE oder TNA versuchen. Das Potential dazu hat er alle mal."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: The Crown Jewelwrote on 08.02.2010:[9.0] "Ist immer im Stande ein gutes bis sehr gutes Match abzuliefern. Dazu noch ungemein charismatisch. Zur Zeit einer meiner Favoriten."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Anti-Championwrote on 06.02.2010:[9.0] "Nachdem ich mir in den letzten 2 Wochen mehrere Hero Matches angeschaut habe (alte und neue) muß ich meine Meinung ändern, er hat verdammt gute Matches abgeliefert, vorallem beim BOLA 2008 (und ein paar anderen Indyshows) konnte er mich voll überzeugen."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: RoHSupporterwrote on 27.01.2010:[10.0] "Chris Hero ist mit Bryan Danielson das beste was die Wrestlingwelt zu bieten hat. Er hat eine Menge Charisma seine IOn-Ring Skills sind überragend und am Mic ist er auch noch stark, nur sein neues Attire ist Müll. Er wird mal ein ganz großer da leg ich mich fest, er ist einfach AWESOME! 10/10"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TheLoudMouthwrote on 25.01.2010:[10.0] "CHRIS IS AWESOME! Chris Hero gehört einfach zu den besten Wrestlern der Welt - zudem besitzt er haufenweise Charisma und ist einfach stark am Mic. 10 Punkte."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Hypocrisywrote on 24.01.2010:[10.0] "Ist natürlich nur meine subjektive Einschätzung, aber was gibt es für Gründe hier nicht die 10 Punkte zu vergeben? Chris Hero ist sowohl von den in-ring-skills wie auch am mic einfach einer der Besten. Im Team mit Larry Sweeney, Sara del Ray und Bobby Dempsey einfach göttlich!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: lapenowrote on 14.12.2009:[10.0] "Hero ist für mich ein möglicher Champion in ROH. Auf seinen Schultern ruht die Zukunft."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: alexshelley84wrote on 09.12.2009:[10.0] "Würde ich auch mit 11 Punkten bewerten wenn es gehen würde!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: MrSmackdownwrote on 30.11.2009:[9.0] "Sollte er aus den Jobber Klamotten raus kommen und seinen Penner Bart abrasieren und endlich wieder Chris HERO sein. Dann bekommt er wieder 10 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DJ MaSchwrote on 12.09.2009:[10.0] "Mein Lieblings Wrestler zur Zeit. Er kann so gut wie jeden Wrestling Style gehen, holt gegen nahezu jeden Gegner ein gutes Match raus und ist zudem charismatisch as hell. Am Mic ist zudem er auch sicher. Chris Hero is my Hero."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: AMMOwrote on 28.08.2009:[10.0] "Einer, wenn nicht DER beste WRestler der Welt. Live der helle Wahnsinn!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Marco Ewrote on 12.08.2009:[6.0] "Strahlt schon etwas aus und ist sicher ganz unterhaltsam, als Wrestler finde ich ihn aber irgendwie etwas überbewertet! Natürlich hab ich auch von ihm schon einige sehr gute Matches gesehen, aber alles in allem, ist er nicht mein Fall und für mich nicht viel mehr als Mittelmaß."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Thomas Carlsonwrote on 19.07.2009:[8.0] "Eigentlich bringt Hero alles mit was man braucht. Gut die Klamotten sollte er wechseln. Ich weiß aber auch nicht was ihn bremst. Zwar zeigt er bei ROH gute Matches aber er bleibt nach guten Ansätzen immer wieder stecken. Vielleicht funktioniert er nur in einer Liga wo er der alleinige Star ist. Wenn die WWE mal anrufen würde dann hätte er wohl die wenigsten Probleme sich umzustellen. Er könnte jederzeit sein Move Arsenal umstellen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: homicidal cena michaelswrote on 29.06.2009:[10.0] "Chris ist am Mic sehr gut Wrestlerisch sehr gut und besitzt Ausstrahlung. Er weis immer zu überzeugen. Chris is awesome!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Babuswrote on 01.05.2009:[6.0] "Technisch sicherlich kein schlechter, aber bisher ist der Funke bei mir nie wirklich übergesprungen. Könnte vielleicht daran liegen, dass die meisten Matches, die ich von ihm gesehen habe, RoH-Material sind und seine Auftritte dort anscheinend als seine schwächeren gelten. Dass Hero aber irgendwann ein Mainstream-Star werden sollte, kann ich mir wirklich nicht vorstellen. Denn optisch fällt mir wirklich kein ernstzunehmender Wrestler ein, der so weit vom Superstar-Look entfernt ist."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Mick Funkwrote on 17.04.2009:[8.0] "Göttlicher Worker, dem alleine der Look zum absoluten Star fehlt (schlechter Körperbau und albernes Outfit)."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Soerenwrote on 03.02.2009:[9.0] "Einer der komplettesten Worker überhaupt. Kann fast alles, aber zur Bestwertung fehlt ihm einfach noch etwas."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ShakDragoonwrote on 19.01.2009:[10.0] "Gehört für mich in eine Reihe mit Chris Jericho und CM Punk... also ein absolutes Total-Package, das alles mitbringt, was ein perfekter Wrestler braucht! Allerdings gefällt mir seine derzeitige Position bei ROH nicht so sehr, obwohl ich die Sweet 'n' Sour Inc. eigentlich mag. Da muss einfach noch mehr drin sein."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Herr der Kritikwrote on 30.12.2008:[7.0] "Mir persönlich unsymphatisch, spreche ihm Charisma klar ab, im Ring jedoch immerhin gut."
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Father Nelsonwrote on 24.12.2008:[10.0] "YouŽve got to see this guy live to belive how good he really is."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: 150pwrote on 14.12.2008:[9.0] "Wurde nach seinem Carat Sieg etwas schwächer, dazu kommt, dass er bei ROH nie die Leistungen zeigt (zeigen darf), die er woanders bringt. Bei PWG (u. a. ) jedoch großartig."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: domi1984wrote on 04.12.2008:[5.0] "Für mich ist er overated... ich weiß nicht, ich mag ihn irgendwie nicht. Ist nicht mein Geschmack. Da gefallen mir andere im Indy Bereich deutlich besser"
Rating: 5.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Eddiewrote on 28.11.2008:[9.0] "Jedes mal wenn Hero nach Deutschland kommt, muss ich ihn einfach sehen. Seit meinem ersten Live Event im Oktober 07 in Essen bin ich schon von ihm begeistert. Einziges Problem ist, das er es in ROH nicht schafft, richtig rüber zu kommen. Mittlerweile mit der Fehde gegen Strong schon etwas mehr, aber noch nicht so wie man es gerne hätte, deshalb 1 Punkt abzug, 9 Punkte."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: nacho83wrote on 17.08.2008:[10.0] "Der Mann hat alles was ein Wrestler braucht: Technik, Kraft, Charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Knurkselwrote on 22.07.2008:[10.0] "Live einfach der beste Wrestler der Welt. Und auch auf DVD immer wieder überzeugend."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: wXw Fanwrote on 22.07.2008:[10.0] "Neben American Dragon das beste Komplettpaket zurzeit im Wrestling."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Chris Herowrote on 22.07.2008:[10.0] "Chris is awesome! Best in the world, best in the world! :-D"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: dariawrote on 26.05.2008:[9.0] "ich finde ihn ein klein wenig überbewertet, aber er gehört in jedem Fall zu den Besten"
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Baron-Bwrote on 15.05.2008:[10.0] "Es gibt Wrestler, die kommen einfach in einen Ring, wrestlen gut, weniger gut oder einfach nur so vor sich hin, verlieren oder gewinnen ein wenig in der Gegend herum, peppen das Ganze ggf. durch ein mehr oder weniger lustiges Gimmick auf, bluten vielleicht auch mal brutalst in der Gegend herum, ziehen sich irgendwann vom Wrestling-Geschäft zurück und hinterlassen eigentlich gar bis überhaupt nichts. Und es gibt Wrestler wie Chris Hero. Charisma pur, extrem hoher Unterhaltungswert, im Ring ein Allrounder wie er im Buche steht und so ganz nebenbei einer der besten Wrestler, weltweit. Im Team mit Claudio Castagnoli gottgleich, bei ROH ein Genuss, die Eddie Kingston-Fehde knüppelhart und selbst in den Abbruch-Hallen von IWA-MS ein stetiger Lichtblick. Ich hoffe, er bleibt dem Independet-Wrestling noch viele viele Jahre unverletzt erhalten."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Bogo Bogaczykwrote on 13.05.2008:[10.0] "Das beste seit geschnitten Brot. Best wrestler in the world!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Muffiwrote on 15.04.2008:[10.0] "Der beste Allrounder im US Wrestling. Schafft bei Ring of Honor im Moment leider nicht den Durchbruch, aber das kommt noch."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: AnFuwrote on 11.04.2008:[7.0] "Etwas überbewertet aus meiner Sicht! Hier kann ich auf keinen Fall die volle Punktzahl geben, Gründe dafür: als Heel bei ROH gefällt er mir überhaupt nicht; im Ring ist er 1, dass ist klar. Zudem hat er noch keine großen Titel gewonnen, dass ist zwar meckern auf sehr hohem Niveau, aber mehr als eine 3 gibts nicht!"
Rating: 7.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Matt Mackswrote on 10.04.2008:[9.0] "Der Grund für Heros Popularität ist wohl der, dass er in einer Live-Umgebung ungleich viel imposanter und besser wirkt als auf Tape. Bei Ring Of Honor leider noch nicht vollständig angekommen, ansonsten aber neben Bryan Danielson der wohl bekannteste und wichtigste amerikanische Wrestler ohne Mainstream-Vertrag."
Rating: 9.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Urbaner1982wrote on 26.03.2008:[8.0] "Yeah, Chris Hero. Our Hero, your Hero, my Hero. Auch schon sehr oft live gesehen und auch immer überzeugt gewesen. Bei ROH wirklich gut... kann sein Potential dort voll ausnutzen. Leider irgendwie im falschen Stable (Sweet & Sour Inc. ) darum auch keine 1 ;-)"
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Kaffoe 666wrote on 24.03.2008:[10.0] "Einer der genialsten Wrestler überhaupt! Im US-Indy bereich seit Jahren unter den Top 5 und nun auf einem guten Weg in Japan. Zu seinen verdiensten in Europa muss man nicht viel sagen!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TheBastion90wrote on 15.03.2008:[10.0] "Um Shaggy 2 Dope aus einer JCW Show zu zitieren: "This Guy should not be called Hero, he should be called Homo! ... Chris Homo" Das ging das ganze Match lang so weiter und ich habe mich nicht mehr eingekriegt vor lachen. Ich finde ihn sehr gut und er verkauft sich wirklich wunderbar. Ok, viele meinen, dass sein Talent etwaseingeschrängt ist, doch ein Spitzen Entertainer muss ja auch gut labern können und er kann das wirklich sehr gut!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Aaronwrote on 25.02.2008:[6.0] "Hero hat sicherlich die richtige Einstellung zum Wrestling, aber er konnte mich bei ROH im Ring absolut nicht überzeugen! Er unterhält gut, aber er ist im Ring einfach noch nicht da wo er hingehört! Da ich bisher wenige gute Matches gesehen habe (außer ein paar einzelne von CZW und IWA Mid South) reicht es bisher noch nicht zu der Super Note! Kann ja alles noch kommen!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Joeevil123wrote on 19.02.2008:[10.0] "Hero hat alles was ein Wrestler haben muß!  Tolles Charisma , klasse Micwork und was am wichtigsten ist , er ist verdammt gut im Ring."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Joe710wrote on 18.02.2008:[10.0] "Charismatischer Typ, mit enormer Ausstrahlung. Wer ihn schon einmal live gesehen hat, weiß was ich meine. Trotz seiner größe und Statur einer der besten Athleten im Pro Wrestling, die ich je zu Gesicht bekommen habe. Und ein Gimmick und entsprechendes Auftreten, dass jeden Zuschauer in seinen Bann zieht. Nur schade, dass er nur im Indy Bereich bekannt ist. Ich würde mir so sehr wünschen, dass er es einmal in eine Main Stream Liga schafft. Diesen Typen muss einfach jeder Wrestlingfan einmal zu Gesicht bekommen."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Giant2wrote on 23.01.2008:[6.0] "Um bei mir mehr als eine 3 zu bekommen, muss man sich schon auf großer Bühne durchgesetzt haben, was bei ihm (noch) nicht der Fall ist."
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: GothicBearwrote on 17.01.2008:[10.0] "Wohl derzeit definitiv einer der besten Wrestler Amerikas, der jeden Stil perfekt mitgehen kann. Leider fehlt bei ROH bisher noch der letzte Funke und das wirkliche "Breakout-Match". Ansonsten könnte er auch dort problemlos dauerhaft im ME stehen. Mic-Work, Charisma und Talent sind zweifellos im Überfluss vorhanden."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: mdbnasewrote on 13.01.2008:[6.0] "Guter Techniker und Indy-Ikone. MMN aber overrated!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: WCWlerwrote on 12.01.2008:[10.0] "Sehr guter und vor allem sehr unterhaltsamer Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Benny110106wrote on 11.01.2008:[8.0] "Der Indy-Wrestler der lezten Jahre ! ER kann jeden Stil gehen und ist der beste Allrounder der USA. In Europa so beliebt wie vorher nur Rambo oder Wanz. Genau wie Danielson würde ihn TNA oder WWE nur schaden."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: shannonmoorewrote on 10.01.2008:[8.0] "I know Chris Hero is ein sehr guter Wrestler und ich mag ihn vor allem bei seinen Deutschland Auftritten. Aber der letze Funke will trotz aller Sympathien noch nicht rüberkommen."
Rating: 8.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Remootwrote on 05.01.2008:[10.0] "Der Shawn Michaels der heutigen generation.. im gegensatz zu Colt Cabana und Bryan Danielson würde ich ihn z. b auch eine grosse karriere bei der WWE zutrauen!  Warum?  Weil er alles hat Die erforferliche grösse , das erforderlich micwork... interressantes auftreten auch ohn ein grossartiges gimmick (wie solls erst werden wenn er mal nen richtig gutes gimmick verpasst bekommt) Er kann alle matchrichtungen mitgehen ( selbst ultraviolent ist für ihn kein problem) Kurz gesagt er ist der Kompletteste und damit beste Wrestler der Welt neben Shawn Michaels, Kurt Angle und dem Undertaker."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Kathywrote on 26.11.2007:[10.0] "Meine Nummer eins! Chris ist einfach nur Klasse! Was er in einem Match zeigt, schaffen manche Wrestler nicht in Ihrer gesamten Karriere. Hero rocks...."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: LexLuger4everwrote on 17.11.2007:[10.0] "Abgesehen vom American Dragon ist der Hero wohl der Mann schlechthin im Indypendent Bereich und das zu Recht! Auch er verfügt über sensationelles In-Ring Talent. Von keinem Charisma kann überhaupt nicht die Rede sein!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Blue Meaniewrote on 25.10.2007:[10.0] "Einer der Besten und Innovativesten Wrestler der Welt! Frage mich, warum WWE und TNA sich den noch nicht "geschnappt" haben. Ist aber denke ich auch besser so, dass wir ihn "noch" im Independent Bereich sehen, denke mal, dass sich das auch schnell ändern kann. Die Verpflichtung von Colt Cabana bei WWE kam ja auch relativ schnell und übberaschend ..."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: CaptainCarnagewrote on 27.09.2007:[10.0] "Alles andere als 10 Punkte wäre IMO bei Chris Hero lächerlich. Wahnsinnig gut im Ring und am Mic. Daumen hoch!"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Mediwrote on 07.09.2007:[10.0] "Hat u. a. gegen Eddie Kingston ja so was von einer geilen Fehde gehabt. Ist mein Lieblings Indy-Wrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Was soll man sagen, im Ring fantastisch genau wie am Mic, zurzeit mit Larry Sweeney wohl das unterhaltsamste Manager/Wrestler Duo"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Obermackerwrote on 24.06.2007:[6.0] "Kein schlechter Wrestler, hat aber noch nie ein Studio von innen gesehen! Deswegen wird er nie weiter kommen!"
Rating: 6.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Alex Shelleywrote on 24.06.2007:[10.0] "IMO zur Zeit Weltbester Wrestler knapp vor Bryan Danielson! Reicht schon als Kommentar, bringt es ja schließlich auf den Punkt. :)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: STRIGGAwrote on 24.06.2007:[10.0] "Our hero! Seit 2002 verfolge ich die Karriere Heros nun und immer wieder wusste er mich aufs neue zu begeistern. Ob seine Matches gegen CM Punk, von denen ich schon eines live miterleben durfte, oder seine neuerlichen Matches im wXw 16 Carat Tournament 2007... Hero ist ein absoluter Ausnahmewrestler."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Shellshockwrote on 24.06.2007:[10.0] "Best Wrestler On The Planet... who's Danielson? ! ;-)"
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: UltimateCarebearwrote on 24.06.2007:[10.0] "Das perfekte Paket: Großartig im Ring und am Mikro und hat zudem noch tonnenweise Charisma."
Rating: 10.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Sabu316wrote on 24.06.2007:[10.0] "Kann eigentlich jede Art von Wrestling im Ring mitgehen und gerade als Face ist er für mich unschlagbar gut!"
Rating: 10.0
----------------------------------------

Task 2

Perform any form of sentiment analysis. What is the relationship between a reviewer’s sentiment and their rating?

import nltk
nltk.download('vader_lexicon')
[nltk_data] Downloading package vader_lexicon to
[nltk_data]     C:\Users\pauly\AppData\Roaming\nltk_data...
[nltk_data]   Package vader_lexicon is already up-to-date!
True
from textblob import TextBlob

def get_sentiment(text):
    blob = TextBlob(text)
    return blob.sentiment.polarity

for entry in wrestler_rating_comments:
    comment = entry['comment']
    sentiment = get_sentiment(comment)
    entry['sentiment'] = sentiment  
    print(f"Wrestler URL: {entry['wrestler_url']}")
    print(f"Comment: {comment}")
    print(f"Rating: {entry['rating']}")
    print(f"Sentiment: {sentiment}")  
    print("-" * 40)
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: jesicawrote on 04.02.2025:"https://studyx.ai/questions/4ljb19z/is-priceline-free-cancellation-within-24-hours-is-priceline-free-cancellation-within-24"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: anarchovampwrote on 27.12.2024:[10.0] "John Bradshaw famously dubbed himself a wrestling god in kayfabe, but Kenta Kobashi is probably at least a shoot demigod. He could captivate audiences on levels that have really only been surpassed by prime Michael Jackson. He was a big rugged worker, but also had surprising athleticism and almost unlimited stamina, as well as being able to tether the audience on a string around his finger. When it comes to universally beloved professional wrestlers, Kenta Kobashi has to be on the top of that list, and it's very easy to argue that throughout the 90s and 2000s, no other wrestler did more to push the art form forward. A truly revolutionary and legendary icon of the sport."
Rating: 10.0
Sentiment: 0.3712179487179487
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ZephsPancakeswrote on 12.12.2024:[10.0] "I personally slightly edge Misawa over Kobashi and the rest of the pillars due to Misawa being the person who introduced me to King's Road and All Japan/NOAH but Kobashi to me is still the perfect wrestler. The greatest babyface of all time, Kobashi was the definition of resilience and heart, whether it's kicking out of Tiger Drivers of delivering a Burning Hammer to cancer itself, Kobashi is someone who you cannot help but root for, no matter who is against. Some of the most legendary matches of all time along with some of the most legendary moves of all time, anytime I hear a crowd chanting "KOBASHI! KOBASHI! " I cannot help but get chills, one of the most influential wrestlers of all time, Kobashi will forever be replicated but will NEVER be duplicated."
Rating: 10.0
Sentiment: 0.5787037037037037
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TPGwrote on 05.12.2024:[10.0] "If I'm being honest, Kobashi's probably one of my favourite babyfaces of all time. He knew how to work a match and to work the crowd, he had sensational chemistry with most of his opponents, and I think that's what makes it so hard to pick out a favourite Kobashi match. Maybe Joe VS Kobashi, sheerly for the crowd on its own, but maybe the 25/05/1992 match? I don't know. Maybe sometime this week, I'll go watch them back, but Kobashi gets a shining spot in my top 10 wrestlers of all time."
Rating: 10.0
Sentiment: 0.32187499999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Daniel IWwrote on 03.12.2024:[5.0] "Known for his devastating chops and iconic moves like the Burning Hammer, Kobashi combined raw power with technical brilliance, setting the standard for what it means to be a true warrior in the ring. Kenta Kobashi isnt just a wrestlerhes an icon whose legacy continues to inspire fans and wrestlers worldwide."
Rating: 5.0
Sentiment: -0.06346153846153847
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: NightStalkerwrote on 02.11.2024:"Kobashi was my first introduction to wrestling outside of North America. All his matches were just on another level than anything I saw in WWF or NWA back then. Hands down in my top 5 of all time."
Rating: No rating found
Sentiment: 0.11888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Dweeeabwrote on 27.10.2024:[10.0] "Kenta Kobashi is one of the few wrestlers from the 90s that I can go watch a match and it hold up just as well today. This man was part of some absolutely legendary matches and part of one of my favorite fueds of all time with Misawa. Not to mention some of the absolutely INSANE bumps this man took to put on amazing matches for the fans. An absolute legend."
Rating: 10.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Zak22wrote on 25.10.2024:[10.0] "I have no issue with people putting Kobashi number one in the all-time list, he deserves it. For me, Misawa is number one but its a 0.00001 difference between the two, and I'll happily say that Kobashi bought more emotion and intensity than Misawa, I'll also say that I think Misawa had a more consistent career and a slightly better prime. But enough about the timeless comparison, Kobashi was the best in the world for a multi-year stretch and his insane match catalogue speaks for itself, Kobashi was special and at his best, he was the perfect main eventer."
Rating: 10.0
Sentiment: 0.4228174603174603
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TreyHalowrote on 23.10.2024:[10.0] "My favorite pillar and no doubt one of the greatest to ever lace em up, can't think of many people more deserving of that #1 spot so it puts a smile on my face to see Kobashi appreciated to this extent, so I'm dropping a 10/10 here to add onto it because it is SO so deserved, a genuine GOAT."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Cosmowrote on 10.10.2024:[10.0] "If Bryan Danielson decided to stay at McDonald's instead of wrestling sweaty dudes Kobashi would be the goat probably he can fuck my girl he's so amazing honestly"
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: jrssscwrote on 07.09.2024:"Kenta Kobashi is someone I discovered recently and I am absolutely floored with this mans talents. I recently watched his 03 classic with Misawa as my first match of his and I can't wait to deep dive into the history books of this phenomenal, legendary talent."
Rating: No rating found
Sentiment: 0.26458333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Willie 19200wrote on 15.08.2024:[10.0] "One of the best to ever do it right behind Mitsuharu Misawa and Bryan Danielson in my opinion. The matches he's put on along with Toshiaki Kowada, Akira Taue, Mitsuharu Misawa, and many more people all over the world, it's no secret that he's definitely a game changer. It's no doubt that Kenta Kobashi has earned the right to be called "Mr. Pro Wrestling.""
Rating: 10.0
Sentiment: 0.24642857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Jordan Impactwrote on 13.08.2024:[10.0] "The greatest of all time. I dont know where to start with Kobashi just I dont think there has been a better wrestler to have ever stood in a ring. If you are gonna watch one Kobashi match go watch his match vs Misawa in NOAH in 2003 at the Nippon Budokan its just a masterpiece of pure pro wrestling. Should also mention Kobashi was a great example for being a pure babyface wrestler that always got the crowd behind them. And to those who say Ric Flair has the best chops in wrestling well watch Kobashi chops and then youll change your mind."
Rating: 10.0
Sentiment: 0.4755102040816327
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: jsbortswrote on 05.08.2024:[10.0] "In my humble opinion, the greatest of the four pillars and the absolute master of everything he did. I don't understand a word of japanese, but Kenta Kobashi has made me feel more about wrestling than anyone has with all the mic time in the world. His emotion and storytelling is unmatched, and the man gave EVERYTHING in the ring. An absolute powerhouse, a legend in every respect, and one of the greatest of all time. If he isn't in your top 5 you haven't watched enough of his matches."
Rating: 10.0
Sentiment: 0.35555555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: KobashiChopMewrote on 02.08.2024:[10.0] "Kobashi is arguably the greatest wrestler of all time. Incredibly consistent throughout his entire career, and always putting on high level classics. First saw him with his match against Joe and became hooked, since then I must have watched every match I can get my hands on when it comes to Kobashi. He is, in my book. One of two people fully deserving to be called the greatest to ever do it."
Rating: 10.0
Sentiment: 0.4657142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: nabigoyewrote on 31.07.2024:[10.0] "Aus meiner Sicht der größte aller Zeiten, der beste Face in der Geschichte von Puroresu. Es gibt nichts was er nicht konnte oder erreicht hat. Persönlich gefällt mir seine NOAH Zeit sogar besser als die in AJPW, wobei sein GHC Titelrun, welcher der vielleicht beste aller Zeiten (einzige Konkurrenz ist Okadas IWGP Titelrun) ist, natürlich hervorsticht. Zudem natürlich auch die Geschichten abseits des Rings, zwecks seines Kampfes gegen den Krebs. Ein perfekter Wrestler und sicher einer der größten aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: SigmaAngeloAsteriawrote on 28.07.2024:[10.0] "What hasn't been said about Kobashi? A very great wrestler, one of the draws of the golden era of AJPW, iconic matches with his peers (Misawa, Kawada...), and can hang out with American wrestlers. Top 5 for sure in my book"
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: woolyshamblerwrote on 21.07.2024:[10.0] "a master at doing a lot with a little, kobashi could get an entire match out of his chops, his facial expressions, and his realistic selling. this makes him an incredibly consistent wrestler, not to mention how spectacular it is when he goes all out. when kobashi fights through pain after being worked over by the heel all match, you buy into every second of his comeback. you believe he really is that inhumanly tough and spirited. that's so hard to do! i love kenta kobashi."
Rating: 10.0
Sentiment: 0.10630787037037037
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: zollstockwrote on 28.06.2024:"Ein wirklich sehr sehr guter Wrestler. Immer wenn man ihn sieht bringt er top Leistung. Noch nie ein schlechtes Match mit ihm gesehen."
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: WrestlingGuruwrote on 26.05.2024:[10.0] "One of the original masters of Puroresu, have to respect that. I lvoed the response he got when he had his first U.S. match against Samoa Joe. That was the first match I ever saw of his despite hearing about him for years. Glad I took the plunge and looked up his famous battles from AJPW and NOAH. Perfect eprsonification of Strong Style from the 90's."
Rating: 10.0
Sentiment: 0.47261904761904766
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Pigeon Scratchwrote on 29.04.2024:[10.0] "My pick for the best to ever do it, and my absolute favorite in the entire industry. His presence, his ability to connect to the crowd, his pure, strong willed fighting spirit is legendary, something that even Mitsuharu Misawa didn't quite have due to his stoicism. To be chopped by him was an honor, to take offense from him was an honor, to lose to him was an honor. He did quite literally everything to near perfection, and made every spot in a bout count, never missing a second. His entire moveset was excellent, and he had one of the best finishers of all time. I don't think there will ever be someone who can pull off a Burning Hammer quite like Kobashi. And to think he went through so much pain while still being able to put all of his effort into every match is incredible, even going through cancer and emergency surgery, even when his knees deteriorated, he just kept going. One of the best of all time, one of the most inspirational, and there will be nothing quite like him."
Rating: 10.0
Sentiment: 0.45113095238095247
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: arisenbywrote on 20.04.2024:[10.0] "[10.0] I think it's already been said, probably by others on this site, but this man is the Jordan of pro wrestling; the strongest contender we will ever see for Greatest of All Time with nearly no blemishes on his record. God-tier chops and lariats, good look, two of the best finishers in wrestling, and very good presence. This man beat cancer in 18 months and was able to get back from emergency surgery on both arms in less than six months. There's no words for him except 'absolute beast.'"
Rating: 10.0
Sentiment: 0.4548148148148148
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: BruceMarcos524wrote on 19.04.2024:[10.0] "Simply the greatest wrestler in history. No flaws, a near ideal pro-wrestler. He had epic bouts against Mitsuharu Misawa, Toshiaki Kawada, Stan Hansen, etc. He also ruled both AJPW and NOAH during his tenure. The master of knife edge chop, who wouldn't forget the chop fest between him and Kensuke Sasaki, an inspiration of many chop battles especially in Japan. Simply his amazing skill and work rate outshone most of the wrestlers in its existence. The Burning Hammer is the most visually devastating move ever that puts down most of the victims of the receiving end, an ultimate finishing move. He had one of the best and the most inspiring comebacks when he returned to the ring after he was diagnosed with cancer. He was truly overlooked in the Western media but there is no denying that no matter how much they ignore Kobashi, most of its hardcore wrestling fans will know that Kobashi is the GOAT and I definitely agree with it. For those who wanted to know more what he's capable of, I suggest watching their NOAH match against Mitsuharu Misawa on 1st of March in the year of 2003. In my opinion, the greatest wrestling match of all time."
Rating: 10.0
Sentiment: 0.31777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Oddtalkwrote on 29.03.2024:[10.0] "My number one favorite wrestler of all time. I don't think any other person has opened my eyes to the true greatness of wrestling like Kobashi has. Discovering his work was life-changing."
Rating: 10.0
Sentiment: 0.24166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: brettlobsingerwrote on 18.02.2024:"Yoooo Seth (Kenta Kobashi), this class was dope as hell and fun to get a little stressed every couple of days or so, thank you for the chance to learn a bunch of dope stuff."
Rating: No rating found
Sentiment: 0.056249999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ABQMIKEwrote on 15.02.2024:[10.0] "The Superstar. Absolute Champion. Mr. Pro Wrestling. Orange Crush. Pick a name and he fits it. He was THE guy and he was great at it. (Of the 4 pillars Kobashi and Misawa are my favorites but Kawada and Taue are pretty dang close. I wouldn't argue with anyone picking any of the others as their favorite). When I think of Kobashi I can heat a lout chop echoing out somewhere. He could have a classic match with a broom stick, he was that good."
Rating: 10.0
Sentiment: 0.4361111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: KEIwrote on 01.02.2024:[10.0] "Mr. Pro Wrestling, Kenta Kobashi is possibly the greatest professional wrestler to ever step foot in the ring. One of my favorite performers of all time. 10 out of 10."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: GoldenHomieswrote on 02.01.2024:[10.0] "Kenta Kobashi simply is the greatest of all time. A beautiful special wrestler this sport will forever be indebted to."
Rating: 10.0
Sentiment: 0.5517857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: MegaSPSwrote on 04.12.2023:[10.0] "kenta kobashi is the best wrestler of all time. if you look into what ive rated or commented on, youll see hazuki from stardom is my favorite ever, but ill say that kenta kobashi is better than my favorite. kobashi is one of the hardest hitting, most technically sound wrestlers of all time. i promise there is a reason that kobashi is the number one ranked wrestler on this site. kenta kobashis worst match will still be the best match on the show. orange crush is the best."
Rating: 10.0
Sentiment: 0.39
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: JediSaiyanMaster1203wrote on 18.11.2023:[10.0] "As I'm writing this comment, Kenta Kobashi is the highest rated person on this website. While I don't agree that he's number one, I can't argue against that point since Kenta Kobashi may be the greatest professional wrestler of all time. Kenta Kobashi is up there with the likes of Sting and Ricky Steamboat for the best pure babyfaces to ever step foot in the ring, his psychology and storytelling is up there for some of the best (he can get a crowd to pop by just slight, subtle facial expressions made by him), his strikes are painfully brutal to watch, some of the best chops of all time, the burning hammer is one of the best finishing moves ever, some of the best matches that have ever taken place in the ring feature him, his bouts with guys like Mitsuharu Misawa, Samoa Joe, Jun Akiyama, Stan Hansen, Steve Williams, and tons more to add (seriously...) will forever go down in history as classics. Kenta Kobashi is one of my all time favorite professional wrestlers, everything he did was incredibly solid in ever way, shape or form, a true legend in this amazing "sport.""
Rating: 10.0
Sentiment: 0.32501984126984124
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Roastertakerrwrote on 26.08.2023:[10.0] "Quite frankly, one of the greatest wrestlers of all time. Even though as the years will go by. People will continue to talk about him in wrestling circles, at least those who watch Puroresu. He was perfect, and his matches kept you engaged. If you asked him to put on a good match, he'd deliver, 99.9% of the time. 10/10 wrestler"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: texasyoshwrote on 23.08.2023:[10.0] "He may be the most "contemporary" out of all the Four Pillars. Not only was his rise to the top much later than his contemporaries, but his lasting spot on top of the card happening in a completely different era than Misawa. While Misawa was the Ace of AJPW, Kobashi ruled NOAH with an iron fist. He's unlike Misawa or Kawada, not really relying on his strikes as much as he weaponizes fighting spirit. Kobashi may be fighting spirit personified. It is impossible not to root for Kobashi whenever Sniper or Grand Sword starts playing, and that's perhaps by Baba's design. After all, a guy who lost time and time again for over an entire year, finally eclipsing all of his peers in the late 1990s and 2000s. Peak years are probably 1992-2005. Quite literally his time in SGA, winning the tag titles with Kikuchi, all the way through to the end of his GHC reign. Kobashi may have the "most complete" level of top matches within the four pillars, as he not only worked the numerous top stars in AJPW in high-level matches (Hansen comes to mind), but also later on in NOAH with people like Nagata, Suzuki, and Sasaki. Kobashi, while isn't my favorite pillar, is undeniable as probably "the best" out of the bunch from the sheer magnitude of his catalogue. Truly an Ironman in all ways, overcoming numerous knee injuries and CANCER to sporadically wrestle until an excellent retirement match in 2013."
Rating: 10.0
Sentiment: 0.21071428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Jarr4hwrote on 28.07.2023:"The greatest wrestler I've ever watched in my life, spectacular career , rivalries , feuds and title reigns."
Rating: No rating found
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: flipflopdoritoswrote on 23.07.2023:[10.0] "it truly feels like a gift every time i watch a match from this guy. he's 100% one of the best rounded (no pun intended) wrestlers i've ever seen. truly a legendary talent."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: neat o wrasslinwrote on 22.07.2023:[10.0] "Greatest wrestler of all time. There's a moment in his match against Samoa Joe where the crowd react just to a subtle change in his facial expression. The man blended psychology and athleticism better than anyone has and likely ever will."
Rating: 10.0
Sentiment: 0.23333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: LGL19wrote on 28.06.2023:[10.0] "Possibly the greatest wrestler of all time, definitely the greatest Japanese wrestler of all time. Could tell amazing stories in the ring and has had some of the most amazing matches and rivalries I've ever seen and is part of probably the greatest match of all time with Misawa in 2003. He also has the greatest chop ever"
Rating: 10.0
Sentiment: 0.5700000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: eenfish69wrote on 22.06.2023:[10.0] "Good wrestler. Put on some very good matches. Did some good work. Definitely better than any wrestler anywhere else in the world except for maybe five during his time wrestling. If I were to rate him on a scale of 1 to 10, the scale would have to be broken. If you are here looking for a reason to watch a Kobashi match, just stop reading and go watch the January 20 1997 match against Misawa. If you can't dig that then you just don't get it and probably never will. Kenta Kobashi is simply put one of the greatest in ring story tellers, hardest hitters, and hardest workers to ever wrestle."
Rating: 10.0
Sentiment: 0.4871428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: GeneBlastKyodaiwrote on 17.06.2023:[10.0] "The epitome of fighting spirit. A literal god of professional wrestling. One of the greatest to ever lace a pair of wrestling bootsand had a banger theme to boot."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: HighFlyDeathcorewrote on 16.06.2023:[10.0] "Kenta Kobashi is one of the greatest wrestlers of all time. Constantly innovating the biz with high profile perfect matches and moves such as the Burning Hammer. His work alongside the 4 pillars as well as GHC title matches with the likes of Masahiro Chono and Minoru Suzuki make him easily the greatest GHC world champion of all time and one of the greatest champions in the history of the wrestling business. His fighting spirit is truly unmatched and the fact he could hit a moonsault even in 2003 is fucking insane. As someone said in a different comment, I can bypass the ratings if Meltzer can. Easy 12/10, one of the greatest to ever grace our sport"
Rating: 10.0
Sentiment: 0.4188888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TheOneAndOnlyCactuswrote on 03.04.2023:[10.0] "Kenta Kobashi is my co-favorite Japanese wrestler of all-time, and one of the greatest, if not the greatest babyface of all-time. An all-around wrestler and great technician, despite his chops being the most iconic part of his arsenal (along with the Burning Hammer). He was a towering figure, and yet you could believe that he was in trouble and root for him, so great was his selling. And his fighting spirit being unleashed is always a great sight to behold. He could have great matches with pretty much anyone, and his GHC title run was maybe the greatest world title reign of all-time. I could talk about him for days, but to keep it short, he was just damn near perfect."
Rating: 10.0
Sentiment: 0.5147058823529411
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TripleCrownwrote on 02.04.2023:[10.0] "Kenta Kobashi is a Japanese wrestling god, plain and simple. His work alongside the likes of Misawa, Kawada, Taue & Akiyama will forever be remembered for putting Japanese wrestling on the map again."
Rating: 10.0
Sentiment: -0.05357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: KKeanelwrote on 25.02.2023:[10.0] "Alongside Misawa, top of the top of puroresu. Watching his matches with enormous intensity and psychology is a great privilege."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: WhatIsLooveeewrote on 24.02.2023:[10.0] "Absolutely the greatest. I enjoyed every Kenta's match I watched, he had a great look, his every move maked sense, he perfectly conveyd emotions and he was a master of storytelling, who is not for nothing considered one of the pillars, whose history is thought out to the smallest detail and is outstanding, and one of the best pro wrestlers of all time."
Rating: 10.0
Sentiment: 0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ajsmileswrote on 09.02.2023:[10.0] "Simply the greatest wrestler ever in terms of in-ring ability. Stiff as hell to his opponents, can take a beating himself, knows how to pop a crowd, how to structure a match and is an amazing babyface. Misawa might be better in terms of moves but Kobashi isn't an AI controlled robot in the ring like Misawa. So glad that he knew when to retire although years of going all out every night and most of all the nasty neck bumps (even though he didn't take as many of them as Misawa) certainly took his toll on him."
Rating: 10.0
Sentiment: 0.26
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: benh2wrote on 12.01.2023:[10.0] "Arguably the greatest to ever do it. Even in his early career during the losing streak you could tell he would make it to the top. By the time he really hit his straps in 93-94 you could almost guarantee he'd be in the best match on the card. Hard as nails with great fire and some of the best offence there's ever been, he was the ultimate babyface to a lot of fans. You couldn't help but love Kobashi. The only downside is that he had zero nights off and destroyed his knees. The fact that he still churned out all-time classics in NOAH when he should have been in a wheelchair was a marvel."
Rating: 10.0
Sentiment: 0.43712121212121213
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: UltraNano54wrote on 03.01.2023:[10.0] "My personal favorite wrestler of all time. He has it all from the look, the charisma and the match quality. A Talent that can never be topped."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: sbg2022wrote on 18.10.2022:[10.0] "The quintessential perfect wrestler. Rating him a 10 is underrating him. But I have no choice but to give him a 10 even though that's discrediting him."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: wrestlingreviewerwrote on 11.10.2022:[10.0] "One of the best baby face ever highly charasmatic If you only talk about AJPW tenure I would say he shouldn't be No 1 but if you combine that with his Noah run and ROH appearance he was real deal"
Rating: 10.0
Sentiment: 0.33999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: munrapido3wrote on 23.09.2022:[10.0] "Kenta Kobashi, a man so tough he was called 'Tetsujin' or 'Iron Man' and beat kidney cancer then returned to wrestle. One of the greatest professional wrestlers and one of the greatest babyfaces ever. Just like his fellow pillars, Kobashi was a great storyteller. He was consistent, charismatic, and had great agility. He was truly a once in a lifetime talent because there's no one comparable to the Iron Man of Puroresu."
Rating: 10.0
Sentiment: 0.5076388888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Blainewrote on 01.09.2022:[10.0] "Kenta Kobashi, innovator of the Burning Hammer and one of the faces of All Japan. A once in a lifetime talent who's ring work, charisma, consistency, iconic nature, and general aura is nearly impossible to imitate in this generation. Kobashi gets wrestling. His legendary battles with Misawa, Hansen, Kawada, Taue, and Joe are stablehoods of my personal favorite matches, each having their own specific aura in storytelling. The Burning Lariat to this day remains one of the best lariats in all of wrestling, and the Burning Hammer takes its rightful place on the throne of best finishers. No man will ever match the highs Kobashi had. No man will ever earn the honor of being considered the next Kenta Kobahi. And that's a legacy to go out on."
Rating: 10.0
Sentiment: 0.3621212121212121
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: CTFBwrote on 28.07.2022:[10.0] "Kobashi has to be up there with some of the greatest of all time. A charismatic aura like any other, A wrestling style that's hard hitting but fluid, A wrestler that is a tough son of a bitch that beat the shit outta cancer and has left a legacy unlike any other similar to Misawa. Rating him ANYTHING but a 10 is underrating."
Rating: 10.0
Sentiment: 0.03694444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Omnisplicerwrote on 02.05.2022:[10.0] "Easily one of the greatest of all time. My personal favourite of the AJPW four pillars and the embodiment of Kings Road."
Rating: 10.0
Sentiment: 0.4777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: AdamWwrote on 06.04.2022:[10.0] "The perfect wrestler. Great look, could get the crowd invested in a match like no one else with his charisma and fighting spirit, was a master of Psychology and storytelling and is one of the biggest draws in Japanese wrestling history. His match history speaks for itself, he's in some of the best tag team and singles matches of all time. Kenta Kobashi is the Greatest Of All Time."
Rating: 10.0
Sentiment: 0.76
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Ratewrestlewrote on 31.01.2022:[9.0] "The man is the GOAT of professional wrestling, currently rated number one on my overall rankings. Every match i have seen of his has been beautiful"
Rating: 9.0
Sentiment: 0.2375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: GriffinXwrote on 17.01.2022:[10.0] "Kobashi isn't just one of the very best to ever do it he has a legit case as the greatest ever. So many classics during his career. It says a lot he started as the weakest of the 4 pillars yer when onto be the one that rivaled Misawa."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Wright15wrote on 14.12.2021:[10.0] "Kenta Kobashi is perhaps the greatest wrestler of all time. No one in history comes close when it comes to emotion and pure fighting spirit. There are fewer than ten other wrestlers in history who you can argue match him in work rate. I can only think of four others who gave everything they had each night they wrestled, no matter where on the card they were or how many people were in attendance (Ric Flair, Manami Toyota, Tomohiro Ishii, Will Ospreay). He started his career losing more than 60 matches in a row, yet he managed to get the crowd more invested in him with each loss. As he transitioned from the midcard to the main event, he was involved in some of the greatest tag matches and singles matches of the 1990s, and really of all time. As the triple crown champion, he brought the sellouts back to Budokan in a declining period for AJPW. He singlehandedly, without any strength left in his knees, turned Pro Wrestling NOAH into a major worldwide promotion in one of the greatest title reigns of all time - in an era when wrestling everywhere else in Japan was dying. Many think the Road to the Heavenly Kings began with Misawa's match against Jumbo Tsuruta (for good reason), but I think it began earlier that night, when Kobashi kicked out of Steve William's Oklahoma Stampede. And the Kings Road ended with him taking the throne, a wrestling god if there ever was one."
Rating: 10.0
Sentiment: 0.34546957671957673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TigerDiverwrote on 13.11.2021:[10.0] "I found it baffling how I just discovered this man last year. Whenever I feel like wrestling is boring, I go to Kenta Kobashi. This guy is just too good. Honestly, I don't think words, paragraphs or even essays are enough to describe how incredible this guy was/is. Finding a bad Kobashi match is like a mission impossible. Because it simply doesn't exist. Seemingly infinite number of classics with his name on it. What a legend."
Rating: 10.0
Sentiment: -0.018518518518518504
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: benny5bellyswrote on 27.10.2021:[10.0] "The greatest of all time in my opinion. What more can you say' Hit YouTube and start watching every match you can"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: BEER CATwrote on 13.09.2021:[9.0] "I have to give him a 9 because he's the Pillar of Heaven I always wanted to cheer the least. A legend in any sense of the word, one of the greatest resumes of all time, wildly successful in noticeably different phases of his career - I probably prefer him as a NOAH destroyer to screamin' Orange Boy, and I slightly prefer his 90's tag output to his singles matches. But there's this quality about certain mega-workrate babyfaces that prevents me from *loving* them, especially when I don't really buy them as underdogs, it's the same tiny problem I have with Shawn Michaels and Manami Toyota made worse by the fact that Kobashi was usually the biggest guy in the match. I am absolutely picking nits over the highest rated wrestler on this site, and I offer these words fully aware of that."
Rating: 9.0
Sentiment: 0.13984126984126982
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: MrJabroniCamelClutchwrote on 02.09.2021:[10.0] "Quite simply , the greatest professional wrestler in history of not just Japan , but arguably in history , has had almost an endless array of classic matches ( his matches against the great Mitsuharu Misawa will always stand the test of time ) , ultra tough and had a in ring fighting spirit like no one else inside the wrestling ring , i could not say i've ever seen Kobashi phone it in or had a match of low standard , simply put , the standard bearer of wrestling that virtually no one compares which only the Late Great Mitsuharu Misawa equals , simply put , no moniker suits Kobashi more than Mr. Pro Wrestling."
Rating: 10.0
Sentiment: 0.15954861111111113
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Lalo Camposwrote on 21.08.2021:[10.0] "The greatest wrestler I have ever seen, his matches with Misawa, Joe, Hansen, Dr. Death, Taue, Kawada, Nagata, Akiyama, Takayama, Sasaki and many more is the stuff of legend, he is an icon of this sport."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: JustTapOutwrote on 04.08.2021:[10.0] "God of pro wrestling, most wrestlers today get inspiration from this man. He had classic after classic after classic in his entire career so for that, he gets a 10. I would give him a 12 if I could!"
Rating: 10.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: BrayanLaPrewrote on 12.07.2021:[10.0] "There's a reason why Kenta Kobashi is currently the highest-rated wrestler on Cagematch. An absolute icon of Japanese wrestling who is revered by many as a GOAT candidate. The amount of classics he has is pretty much second to none, including his legendary rivalry with Misawa, his classic U. S. debut against Samoa Joe, and his phenomenal feud with Dr. Death. 10/10. A five-star wrestler."
Rating: 10.0
Sentiment: 0.29074074074074074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: WrestlingStuffwrote on 21.06.2021:[10.0] "Kobashi is the model for every wrestler and human being. The man had no martial arts records in school or professionally, so he almost got turned down by the AJPW dojo, but he then got accepted under the condition he had to outwork everyone there and invent his own style... and he did. He entered the dojo slim and raw, and got out of there jacked and well built. I don't even need to say what happened next, you guys just see the 5 star ratings he got and the numerous belts he won, along with the Kobashi chants and worldwide love. ICON! LEGEND! KO-BA-SHI!"
Rating: 10.0
Sentiment: 0.14335974596391263
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: JustAWrestlingFanwrote on 06.06.2021:[10.0] "The matches. The intensity. The sacrifices. Words cant describe the amazing career of Kobashi. Top star in two major companies. The single most protected super finisher of all time in the Burning hammer. Legend status."
Rating: 10.0
Sentiment: 0.320734126984127
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: The A-Listerwrote on 05.05.2021:[10.0] "Fantastic wrestler. Did great as a babyface and had special connection with the crowd. His matches with Mitsuharu Misawa are legendary. GOAT."
Rating: 10.0
Sentiment: 0.6392857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: BH62wrote on 30.04.2021:[10.0] "Greatest pro-wrestler on Planet Earth. No one can surpass Kenta Kobashi, he embodies consistency. I cannot find a bad Kobashi matchup. Booked as an eternal looser by Giant Baba during his early years, Kobashi became an ultimate babyface and the crowd was always behind him, like his matches with Kikuchi, hello Can-Am Express. He was always under Misawa during his All Japan years and becomes the final boss of NOAH. His GHC Heavyweight run is by far the greatest in pro-wrestling history. His matches against his three Pillars mates are arguably the best ever. Not to mention Akiyama, Williams, Hansen, Tsuruta, Vader, Takayama and so many others like against Joe as classics. Wrestling machine personified. Even sidelined by injuries and f*cking cancer, he always came back. He's somehow a hero to me. When he knew he was out of the game, he retired in one of the greatest retirement matches ever. Long live Kobashi-san."
Rating: 10.0
Sentiment: 0.15802139037433155
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: math1823wrote on 18.04.2021:[10.0] "There are some wrestlers that have wrestled a few decades ago but who didso much for wrestling that their contribution to this sport is still being felt today, and Kenta Kobashi is one of them. He is the creator of the most legendary move in professional wrestling, the Burning Hammer, that he used 7 times, and no-one ever kicked out of it. Kobashi is the embodiment of a japanese babyface, hard-hitting, some high-flying moves, big bumps, and a natural connection with crowds that made him over anywhere he went, from Japan to ROH where his match against Joe is an all-time classic."
Rating: 10.0
Sentiment: 0.20740740740740743
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "The Greatest Babyface of all time, the greatest finisher of all time, the greatest title reign of all time, Kobashi is the best pro wrestler ever bar none."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ProWrestlingGuy316wrote on 11.04.2021:[10.0] "In meinen Augen der beste Wrestler aller Zeiten mit einer Aura, an die nur ganz wenige herankommen. Hat so viele zeitlose Klassiker bestritten, was noch bemerkenswerter ist, wenn man bedenkt, dass er sich seit seinen zahlreichen Knie- OP's quasi wie ein Roboter bewegt und dennoch die Massen begeistern konnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Ma Stump Pullerwrote on 04.04.2021:[10.0] "I think Kobashi can be spilt into two halves: AJPW Kobashi who was all about high workrate, being a wrestling machine that could do power and agility seamlessly and was easily one of the best performers of the 90's, even doing better than Misawa in some places. His beginnings as a always losing rookie built him up to the crowd as a endlessly impressing eternal babyface, even if he could never quite make that top position. NOAH Kobashi had bionic legs at that point, consistently injured, and was maybe half as physically capable as his younger years, but he just KNEW at all points what was effective and what wasn't as a babyface: he knew when to give away control in a singles match, he knew when to turn up the gas for a comeback, he knew how to play to the crowd effortlessly, and as a result he had the most success during those years despite those shortcomings: his GHC run is well renowned as being possibly one of the greatest title runs ever, with multiple amazing bouts along the way and some surprisingly great matches brought out from some rather unimpressive guys ring wise. Even in his older years he could still go in tag bouts and was very much as over as he ever was. For me, Kobashi is simply one of the greatest. Every part of wrestling from technical work to charisma to selling he understood perfectly and even if his title runs before NOAH weren't quite as big of draws as people would have expected them, he learned and adapted from those and became even greater as a result. He's one of the few wrestlers I'd say is worth every bit of hype he gets."
Rating: 10.0
Sentiment: 0.3315591397849463
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Golden Loverwrote on 28.03.2021:[10.0] "One of the best ever, when I first saw NOAH around 2004 or 5 it was immediately clear to me that he was THE guy. He instantly stood out and from then I have always been in awe of his power and mystique. I absolutely love Kenta Kobashi."
Rating: 10.0
Sentiment: 0.3583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Bad Jobberwrote on 22.03.2021:[10.0] "kobashi is the greatest of all time, he truly perfected his craft and would have been even better if not for his lingering knee problems. absolute wrestling god."
Rating: 10.0
Sentiment: 0.25000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ExcitingProWrestlin3wrote on 16.03.2021:[10.0] "Whoever is rating him 6 or 7, as much as I respect your opinion, I find it difficult to believe how anyone can dislike the craft or atleast what Kenta Kobashi has done. He's undeniably in the top 3 greatest in-ring performers of all time. Truly amazing overall, and always has been. Skilled, innovative, and fantastic in ring."
Rating: 10.0
Sentiment: 0.3555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: mamboKENTAwrote on 18.02.2021:[10.0] "The comment on here that said that there are two halves of a fan's wrestling life - before Kobashi matches nd after -- such an amazing point. As of right now, Kobashi is the GOAT. The greatest in-ring performer in the history of the sport."
Rating: 10.0
Sentiment: 0.4714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: JBoogieRom28wrote on 11.02.2021:[10.0] "Wow. Someone who actually deserves to be the best on the entire website is 9. 72? Deserves way more because every Kobashi match I've ever seen delivered."
Rating: 10.0
Sentiment: 0.32
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Kungwrote on 27.01.2021:[10.0] "There are two halves to every wrestling fan's life; before they've watched a Kobashi match, and after. I don't know if he's the GOAT, but he's certainly in the conversation."
Rating: 10.0
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: dinosaurjrwrote on 05.01.2021:[10.0] "KK is a legend and has some of the most infamous and breathtaking matches in puro history, but he has (along with the other pillars) unknowingly influenced Japanese pro wrestling for the worse. Nearly every wrestler is a soulless husk of kk copying what made him successful without understanding what made him to varied results the first time I saw kk match I thought "this is the guy who no sells right" and about 15 minutes later I was thinking jesus he's catching a real beatdown it clicked to me that what made kk special was his selling (sometimes to his own detriment) but damn near every one seems to be blindingly imitating him just seeing the fighting spirit no sell/strike exchange not what built up to it or they like (Kazuchika Okada) get beat down for an painstakingly boring 20+ minutes hit a handful of big moves and win the match supposedly making their opponent look "strong in defeat" and not completely incompetent. There will never be another wrestler with such passion, selling, timing, etc. and although his legacy has left a lot imitators thier can only be one "Mr. Puroresu" 10/10 wrestler 2/10 Legacy"
Rating: 10.0
Sentiment: 0.15882539682539687
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: rainmakerpunkwrote on 22.10.2020:[10.0] "Kenta Kobashi in AJPW was having the best matches in the company's history, and some of the best matches in wrestling history, this trend continued in NOAH as well, this guy is seriously insane in the ring and his two year title reign is the 2nd best title reign behind only Okada's 2 year IWGP title reign, Kenta Kobashi has more than just the ability to have amazing matches and title reigns, he has so much charisma and he's so damn likeable, just has this charm, only man that can make me root against Misawa is Kobashi whenever they wrestled, and honestly seeing him lose a match hurts"
Rating: 10.0
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: brandon062896wrote on 18.10.2020:[10.0] "Great look, amazing ringwork. His matches are hard hitting. His work with Misawa, Kawada, Hansen, Taue and Steve Williams are a masterclass in puroresu!"
Rating: 10.0
Sentiment: 0.34513888888888894
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Roachwrote on 02.06.2020:[10.0] "The 3rd best wrestler ever in my eyes. I do not believe there is and ever will be a person that can match the incredible intensity Kobashi brought every single time he stepped foot in a wrestling ring."
Rating: 10.0
Sentiment: 0.45714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: VillainClubwrote on 12.05.2020:[10.0] "Was soll man hier anderes geben als 10 Punkte. Neben Misawa der beste Wrestler aller Zeiten. Es gibt nur sehr wenige, die an ihn herankommen. So viele Fantastische Matches, eine Legende im Pro Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: arrancarwrote on 22.10.2019:[10.0] "Truly one of the best wrestlers ever. Kobashi was one of the few wrestlers whose performances took me on an emotional rollercoaster. He could perfectly communicate any emotion at the necessary times, as it was easy for him to switch from 'badly beaten down hero who is just desperate to hold on to whatever little life he has remaining' to 'raging demon who is gonna destroy your entire world', and what's more, the way he switched between these roles was always totally believable. Some of his matches and his performances within them will, I'm sure, last with me forever. What, in my eyes, places Kobashi above his eternal friend and rival, Misawa, is that I think Kobashi's babyface selling was just far more sympathetic (probably because Kobashi never got superman booking like him), thus his matches were always far more engaging because Kobashi would rope me in and make me desperate to see him come out on top. Also, Misawa kind of lost his charm following the NOAH exodus, whereas Kobashi just continued having legit world-class matches, and some people would have good room to make the argument that he actually peaked in NOAH, despite his general athleticism taking a noticeable hit. Overall, this man is a true warrior and an absolutely incredible, amazing storyteller to whom (along with Kazuchika Okada) I am forever indebted to for helping me find my love for wrestling. Your love and respect for Kobashi is one of the few important litmus tests I use in order to figure out whether someone's wrestling opinions are valuable or not."
Rating: 10.0
Sentiment: 0.21816520467836256
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: JokeyZockeywrote on 16.09.2019:[10.0] "Der beste Wrestler aller Zeiten! Unerreichte In-Ring-Leistungen, grandioses Charisma und eine einzigartige Aura, die wohl nie mehr erreicht werden wird. Wenn ein Mann die Bezeichnung ''Wrestling-Gott'' verdient hat, dann Kenta Kobashi! Wenn ich könnte würde ich 11 Punkte (oder sogar mehr) geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TheGorgis309wrote on 15.09.2019:[10.0] "Kobashi is one of the best to ever walk the planet, and everyone that disagrees is a damn fool. What didn't this guy do? He won championships everywhere he went, pulled out five star classics almost every night, beat freaking cancer before resuming to wrestle at his same consistent level and continued to be this good into his 40s. He also invented one of the most brutal and gut wrenching moves ever, which has been mimicked the world over, but no one could perform the Hammer with the same oomph as Kobashi. Truly the trailblazer of his class."
Rating: 10.0
Sentiment: 0.22500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: NEVERoverweightChampionwrote on 12.07.2019:[10.0] "Great as an underdog, great as the favorite, he could do everything. At his peak he was simply godlike, his charisma and his presence in the ring was second to none. He looked intimidating, he looked like a bear with his huge arms. His athletic abilities were very impressive for a guy his frame, he could tell great stories and had some of the best and most convincing moves. His Moonsault was unbelievable, his Burning Hammer is iconic and he is renowned for his chops but in my opinion he mostly had the best Lariat ever. So much qualities that allowed him to have a lot of legendary matches, and one of the greatest major champion reign, making him one of the greatest wrestler ever."
Rating: 10.0
Sentiment: 0.565625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: The Sick Lebowskiwrote on 26.04.2019:[10.0] "Gehört für mich neben Rikidozan, Inoki, Baba und Misawa zu den fünf Großen des japanischen Wrestlings. Zahlreiche Klassiker und sein Standing im Puroresu sprechen da für sich. Ganz klar Höchstwertung."
Rating: 10.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Slickooo7wrote on 20.04.2019:[10.0] "His fire as a baby is second to none. He has had so many great matches with so many different opponents. His connection with the audience was amazing. From beggining to end an amazing career. Such a great performer and in my opinion, the greatest wrestler to ever live."
Rating: 10.0
Sentiment: 0.4487603305785125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: zephyrwrote on 16.03.2019:[10.0] "In my opinion, Kobashi is the single best wrestler of all time. Consistently great for over 10 years. The only person to ever match him is Misawa."
Rating: 10.0
Sentiment: 0.43214285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: LandonRyanWyattwrote on 27.01.2019:[8.0] "Kobashi was very good, especially between the mid 90s and mid 00s. Very good matches with Kawada and Misawa."
Rating: 8.0
Sentiment: 0.364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Makai Clubwrote on 30.11.2018:[10.0] "The ultimate mold for what a wrestler should at least try and inspire to be like - not in the copycat way but in the way of being the greatest babyface of all time but be a total badass as well. Sympathetic but doesn't come across as a loser. Great innovator creating some of the worlds most famous moves and having some of the best matches ever. Big success in the box office too and a total major star. Can you even make an argument for anything less than a 10? Maybe I'm biased but Kobashi is a ten without a doubt."
Rating: 10.0
Sentiment: 0.2797222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Kenta Kobashi is the greatest wrestler of all time. He was the complete package of talent and charisma. Even injuries couldn't stop him from churning out classic matches."
Rating: 10.0
Sentiment: 0.19166666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Steamboat2511wrote on 01.10.2018:[9.0] "Vielleicht die japanische Legende schlechthin. Im Ring vielleicht der technisch beste japanische Wrestler überhaupt mit zahlreichen Topmatches. Er vermochte es nahezu jeden Wrestler zu einem immer noch ansehnlichen Match zu führen. Leider ist er auch einer der Fälle, der zu lange aktiv war und am Ende (ab 2008) war die ganze Sache nicht mehr so ansehnlich. Aber auch als Fan des American Wrestling muss ich seine enorme Leistung anerkennen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Tomlou12wrote on 17.09.2018:[10.0] "One of the best and biggest stars in Japanese wrestling, Kobashi is rightfully considered a legend. The sheer amount of incredible matches this guy has delivered over the years is immeasurable much like his passion for the sport of pro wrestling. To me he's one of those wrestlers that just has an aura about him, just seeing him make his entrance gives me chills.  An excellent wrestler and one of my personal favorites."
Rating: 10.0
Sentiment: 0.4428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: IsThisWrestlingwrote on 30.07.2018:[10.0] "Kenta Kobashi has to go down as, at the very least, one of the top 5 greatest wrestlers ever. Everyone wants to ride Misawa's jock, but I say that Kobashi is where it's at."
Rating: 10.0
Sentiment: 0.23088888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Okaro143wrote on 18.05.2018:[10.0] "No words. Just wow. I am amazed by the talent this guy had. He was one of the greatest wrestler of all time. He is definitely in the top 5 greatest along with Ric Flair, SteamBoat, Mitsuhara Misawa and Okada Kazuchika."
Rating: 10.0
Sentiment: 0.52
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: LrockBesnarwrote on 26.04.2018:[10.0] "A true sportsman and the people's champ who come to the world just to wrestle. He is someone who really wrestles with his heart. People love him because he is a good and courageous man. You can understand when you look at his face that he is really honest. God bless him. He is a real legend."
Rating: 10.0
Sentiment: 0.42500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ACRogerwrote on 30.03.2018:[10.0] "One of, or arguably the greatest wrestler in history. You could argue he's also had more classic matches than any other wrestler(maybe Misawa or Kawada). Though in my opinion, Kobashi had more charisma and natural talent than the other Four Pillars and he had a great connection with crowds, his facial expressions and emotion are second to none. Among his many accomplishments, 41 main events at Budokan, including headlining 34 sellouts, and was undoubtedly the biggest draw in All Japan behind Misawa and arguably a bigger star than him during his NOAH run.  His rivalry with Misawa is one of the greatest of all time in terms of match quality and was the defining story of his career. The only negatives you could say about Kobashi is that some of his matches set a very dangerous precedent in that many featured the dreaded head drop suplexes and drivers that ruined many wrestler's careers. The drive to outdo their previous encounters with ever increasing danger wreaked havoc on Kobashi and Misawa's bodies. Regardless, Kobashi is still, in my opinion, the greatest wrestler of all time. His charisma, drawing power, and wrestling ability are only matched by few."
Rating: 10.0
Sentiment: 0.21463768115942028
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: FrozenOnewrote on 15.03.2018:[10.0] "In my opinion, Kenta Kobashi is the greatest performer in the history of the Japanese professional wrestling scene. Excellent worker, master of psychology, innovator of some of the most brutal and iconic moves in history, had some of the greatest matches of all time with guys like Misawa, Sasaki, and Hansen. It should also be said that Kobashi is arguably the greatest baby face performer of all time, as he was always able to get the crowd invested in any match he participated in with his charisma, fighting spirit, and amazing facial expressions. The quintessential wrestler when it comes to in ring performances."
Rating: 10.0
Sentiment: 0.4437499999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TheMikeThunderwrote on 18.12.2017:[10.0] "One of the greatest wrestlers of all time. One of the best babyfaces of all time. Had great fighting spirit and was a great underdog. Very charismatic. He was the best AJPW pillar in my opinion. Had some of the best matches of all time. Top 5 of all time in my opinion."
Rating: 10.0
Sentiment: 0.84375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Vancouver Victiniswrote on 22.10.2017:[10.0] "Kobashi Is probably one of the best Fiery Babyface underdogs to exist, he had charisma for days and could get you to believe he was hurt when selling. it took him a whole decade to get onto the Level of Mitsuharu Misawa to beat him for that Ace role."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: tykechandlerwrote on 19.10.2017:[10.0] "If not the best wrestler ever, then the second best (or third? can't forget about Kawada! ) The best power wrestler ever, but he blended such perfect technique and storytelling. Truly world class in every way!"
Rating: 10.0
Sentiment: 0.5714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: LegibleToe762wrote on 16.10.2017:[10.0] "I'd say Kobashi was almost or even on the same level in-ring as Misawa and they had some of the greatest matches of all time with each other. I'm rating Kobashi higher than Misawa due to his charisma, I genuinely think Kobashi was one of the best babyfaces ever, I've never found myself not rooting for him. His GHC run is something I intend to re-watch and he also had amazing matches in AJPW with pretty much everyone + his ROH match vs. Joe. His life after wrestling has also been entertaining and even his retirement was one of the best I've ever seen, there's nothing I can criticise him on."
Rating: 10.0
Sentiment: 0.41250000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: The Big Blue Machinewrote on 03.10.2017:[10.0] "Fighting Spirit.  That's what Kenta Kobashi is. His enormous size combined with his stiff offense and his incredible stamina makes him one of the best wrestler that ever lived. He represents 90s' puroresu like no other."
Rating: 10.0
Sentiment: 0.24974489795918367
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: taabr2wrote on 10.09.2017:[10.0] "In my opinion Kenta Kobashi is the greatest worker in the history of professional wrestling. While his run as the Ace in NOAH was undeniably great it is actually his work during the early 90s when he was the young gun constantly getting beaten up by the veterans that in my favorite work of his."
Rating: 10.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: PistolPeteMattywrote on 09.08.2017:[10.0] "Simply put, Kobashi was the greatest pro wrestler of all time. He had everything from a fantastic look to near flawless in ring skills. The only person who comes close to matching him is longtime rival Misawa. To say he didn't have a character, that he could just produce big matches and nothing else is just plain foolish and sign of people just watching matches of his in a vacuum. The man was a masterful storyteller in the ring, and the ultimate babyface. Just because he wasn't an undead wizard or something doesn't men he didn't have a character or ooze charisma."
Rating: 10.0
Sentiment: 0.29794372294372296
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: NikoWrestling7wrote on 04.06.2017:[10.0] "Kenta Kobashi, 50 years old today but has nearly half his age in five star matches, second only to his greatest rival, Misawa."
Rating: 10.0
Sentiment: 0.18666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Blood Pumpwrote on 30.03.2017:[10.0] "Of the big three that was Kobashi, Kawada and Misawa Ive always considered Kenta to be the most WWE audience friendly. I know that might sound like an insult but think about that statement; it means he knew how to work a crowd better then his friends (I'd say really only Tsuruta had him tied back in the early 90s) and tended to wrestle a more entertaining flashy match, pulling out a lot of nifty moves. However he never had a problem retaining a good pace. His wars with Misawa and Williams are sights that need to be seen, his tag matches w/ Misawa vs the Holy Demon Army (Kawada and Taue) are works of beauty and are absolutely not to be ignored."
Rating: 10.0
Sentiment: 0.22884615384615387
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TheRainmaker28wrote on 18.02.2017:[10.0] "It's difficult to find so many compliments to describe Kobashi. This man had everything: The charisma, the badass look, he was a amazing worker with his selling, stiff offensive, devastating moves, a great storyteller, a proved draw and what I consider, the best babyface character in history of professional wrestling. I think that no one will ever top what Kobashi did, truly establishing him self as the greatest wrestler of all-time."
Rating: 10.0
Sentiment: 0.2785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: strongstyle77wrote on 25.01.2017:[10.0] "Wahrscheinlich der beste Wrestler aller Zeiten. Im Ring kommt nur Misawa an ihn heran. Großartige Matches gegen Misawa, Kawada, Hansen & so vielen mehr. Man brauch nicht viel zu Kobashi zu sagen, eine Legende & wahrscheinlich der beste aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Chekerwrote on 18.01.2017:[10.0] "This man was so charismatic and so great. After seeing his All Japan stuff I thought he was "just" very good but then I checked out his NOAH stuff and I personally think he peaked there. Excellent wrestler, powerhouse, storyteller, and he even took to the air sometimes! They just don't make 'em like Kobashi anymore."
Rating: 10.0
Sentiment: 0.642
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Alex Maedawrote on 02.01.2017:[10.0] "Neben Misawa der beste Wrestler der Neuzeit. In allen Belangen absolut herausragend, hat sich seinen Status als Wrestling-Legende mehr als verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: NastyYaffawrote on 01.01.2017:[10.0] "An absolute legend. One of the biggest names in wrestling history, and rightfully so - Kobashi was absolutely excellent in ring worker, who showcased fighting spirit, emotion, fantastic offense, fantastic selling & great storytelling. Deserves all the respect he gets."
Rating: 10.0
Sentiment: 0.5599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Puro Spiritwrote on 01.12.2016:[10.0] "The greatest in ring worker in the history of Pro Wrestling ..... bar non .... his work speaks for itself."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: RainmakerF7wrote on 25.08.2016:[10.0] "From losing his first 63 matches in pro-wrestling, having incredible 5 star encounters with the likes of Stan Hansen, Steve Williams or Toshiaki Kawada, to FINALLY winning the Triple Crown title from Akira Taue in 96', having arguably the best rivalry in wrestling history with Mitsuharu Misawa, to holding the GHC title for 2 years, while selling out Budokan Hall and Tokyo Dome on numerous occasions, to BEATING A FUCKING CANCER and returning after almost 2 years in 2007, to finally ending his career in May of 2013, in what was probably the best and most memorable retirement show of all time. Folks, it doesn't get much better than this. Kenta Kobashi is indeed a legend and a first ballor hall of famer. And for me, the greatest wrestler of all time."
Rating: 10.0
Sentiment: 0.4461538461538461
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: prowrestlingisrealwrote on 25.08.2016:[10.0] "There is no words that can describe the greatness of this man more than him being the GREATEST PRO WRESTLER OF ALL TIME, his devastating moveset, his charisma, how the crowd responded to him ..."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Chak95wrote on 19.08.2016:[10.0] "Arguably the greatest wrestler of all time, there isn't much to say, his achievements speak for themselves."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: jboyaquarwrote on 08.07.2016:[10.0] "The 'Adam Bede' of professional wrestling: blue-collar, provincial, diligent, integrity, tempestuous, honorable, upright, imperfect in his obsession in that building a bigger and stronger body for the short-term he handicapped his own lasting power. Kobashi was one of the three vertices of the triangle that supported AJPW throughout the 90s and the draw for NOAH during its most successful years. His extraordinary number of singles and tag team bouts and indelible emotional connection he made on a nation not known for their outward emotional expressions is remarkable. Perhaps the only detriment to an amazing career was the shitty entrance music that accompanied him during his most notable title reign."
Rating: 10.0
Sentiment: 0.33095238095238094
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: BarKing81wrote on 01.05.2016:[10.0] "Kobashi is one of the greatest wresters, and is the greatest Japanese wrestler of all time! He is a five star match machine!"
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Hanscydewrote on 29.04.2016:[10.0] "To me, the best wrestler of all time anywhere. There's no perfect wrestler (even though many Japanese magazines called Kobashi back then "the perfect wrestler") and if I have to nitpick one thing about Kobashi is that he never knew how to slow it down even when he was in a nothing match and that made him retire early. But despite that, there's probably no one in history that had as many all-time memorable matches as Kobashi did in All Japan and Pro Wrestling Noah. A one of a kind."
Rating: 10.0
Sentiment: 0.27037037037037037
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: JuliTheCage87wrote on 19.03.2016:[6.0] "Rückblickend und ohne Vorkenntnisse betrachtet wäre er nur einer von vielen. Seine Skills waren schon zur damaligen Zeit nicht einmalig wenn man an Kawada oder Misawa denkt - er hat ziemlich viel Glück gehabt. Versteht mich nicht falsch, er war echt ein guter Wrestler und konnte mitreißen, aber er war weder sehr variabel noch "outstanding". So wie Bret Hart nach heutigen Standards kein herausragender Wrestler mehr wäre, ist es Kobashi im Puroresu auch nicht mehr. Ich finde es generell schwierig alte japanische Wrestler zu bewerten, da der Aspekt "Mic Work" nahezu ausnahmslos wegfällt (Sprache, Auffinden von Aufnahmen... ) - was heutzutage bspw. bei einem Shinsuke Nakamura nicht der Fall ist - und das gehört für mich bei Wrestlern einfach dazu."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ApexOfEvolutionwrote on 25.02.2016:[8.0] "Einer der ganz großen des Puroresu. Okay, Promos und Gimmick-Working sind in Japan nicht ganz so wichtig, hat aber im Gegensatz zu vielen anderen japanischen Wrestlern der 90er Jahre mehr Charisma. Die Schlachten mit Misawa oder Taue sind beeindruckend und kommen verdammt realistisch rüber und auch der Körperbau ist einem Kämpfer eher angemessen, als das Zeigen hochgezüchteter Muskelberge. Soetwas gehört zum Bodybuilding und wirkt beim Wrestling eher lächerlich. Ich finde aber auch, dass dieser von Kenta Kobashi genutzte Strongstyle die Gesundheit der Gegner zu sehr belastet. Für mich kommt es beim Wrestling auch darauf an, Aktionen hart aussehen zu lassen ohne die Gesundheit der Wrestler zu gefährden."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: pingola12wrote on 28.01.2016:[9.0] "A master in the king's road style and in the strong style, his only flaw was the silly botches he did in some matches, but one true legend and one of the bests in history of Pro Wrestling"
Rating: 9.0
Sentiment: 0.07083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: BlueDiamondwrote on 14.10.2015:"@JacobCass: Ich denke mal, dass du beim falschen Kenta gelandet bist. Kobashi wäre zwar ne Riesennummer, aber das ist nicht drin, Bro. ;)"
Rating: No rating found
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Kevin434wrote on 14.06.2015:[10.0] "Für mich der zweitbeste aller Zeiten nach Misawa, workte mit jedem ein gutes Match, er hat sich sein ganzes <leben den arsch aufgerissen fürs Wrestling, seine großartigen Matches werden wir nie vergessen, im Unterschied zu Misawa wusste er wann Zeit ist aufzuhören. Danke für alles."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: RonAyyyyyyyywrote on 27.05.2015:[10.0] "Quite simply the greatest wrestler of his era, even better than Misawa in my opinion, even though he doesn't know as many moves. His signature style, techniques, and moves are now standard for strong style matches. His good matches are better than most wrestler's best, and his best matches are truly art. He literally destroyed his own body to be the greatest wrestler on earth, and became rightfully celebrated as a hero in Japan for it. My personal favorite is his tag matches with Misawa and his match with Joe, but Kobashi/Misawa 2003 I think will always be considered his best."
Rating: 10.0
Sentiment: 0.5637254901960784
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Viper99wrote on 21.04.2015:[10.0] "Einer der besten die es jemals gab! Er hatte Super Starke Matches und ist wohl die Japanische Legende Schlechthin"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Wrestling Foreverwrote on 10.01.2015:[10.0] "@JacobCass Du verwechseltst diesen Kenta mit dem KENTA der nun als Hideo Itami auftritt. Das hier ist Kenta Kobashi der hatte zwar Indy Matches aber der ist inzwischen schon länger Inaktiv. Auch hatte Kenta Kobashi nie ein Match in Amerika bei der WWE. Kobashi ist natürlich eine absolute Legende hat viel für das japanische Wrestling getan und sein Tag Team mit Misawa dazu muss man nichts mehr posten außer Weltklasse."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: sevendaughterswrote on 13.12.2014:[10.0] "Kenta Kobashi is the greatest wrestler of all time. Many guys can work or do great expressions or draw you into their world. Many guys have had great matches and meant a lot to their industry and nation and many guys have drawn big houses or existed through multiple important phases in a company/many companies' histories. Kobashi has done all that and remained the most believable permanent babyface of all time. He is the only wrestler whose believability and passion can bring me to tears. He's given everything for the sport and his everything was the best."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: yanuswrote on 22.11.2014:[10.0] "One of the all-time greats, Kobashi excelled due to his facial expressions, selling and his ability to structure a match. Sometimes he went a little bit overboard with trying to make all his matches "epic", but I nonetheless regard him as a easy top 20 of all-time."
Rating: 10.0
Sentiment: 0.06726190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Matzinhowrote on 06.09.2014:[10.0] "In den 90er Jahren übermenschlich, Anfang des Jahrtausend immer noch gut, zum Teil sogar sehr gut, nach diversen Kleinigkeiten und schließlich der Krebs-Erkrankung gezeichnet und nur noch aus Nostalgie-Gründen ansehbar. Trotzdem ist Kobashi über die gesamte Karriere betrachtet für mich einer der besten Wrestler überhaupt und von den Four Corners sicherlich die strahlendste Säule, mitunter weil er extrem viel eingesteckt hat und mit seinem Feuereifer immer wieder zurückgekommen ist. Im Ring hat Kobashi mich nie auf ganzer Linie überzeugt. Da fand ich Kawada immer besser. Aber Kobashi ist dennoch meines Erachtens ein Genie und einer, der mit praktisch jedem Gegner ein gutes Match wrestlen konnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: superpuroresuwrote on 10.05.2014:[10.0] "The greatest worker in the history of pro wrestling , his legendary matches with Mitsuharu Misawa , Stan Hansen , Steve Williams , Toshiaki Kawada ... will forever be the standard bearer of future matches"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: TakerFanwrote on 08.03.2014:[10.0] "Vielleicht DIE Persönlichkeit des Wrestlings in Japan der letzten 25 Jahre. Ein Kämpfer ohne gleichen und ein Fels in der Brandung!  Kenta Kobashi hat mehr Klassiker abgeliefert als jeder andere in meinen Augenund sein Fighting Spirit wird niemals vergessen werden!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: KobashiKentawrote on 26.09.2013:[10.0] "Nach einer Wrestling Karriere, die (nur bezogen auf die Action im Ring, mehr kann ich aufgrund fehlender Japanisch Kenntnisse nicht bewerten) bis auf wenige Ausnahmen ihresgleichen sucht ist einer der größten und besten Pro Wrestler aller Zeiten abgetreten. Hierfür hat er (leider im Gegensatz zu Misawa) einen guten, passenden Zeitpunkt gefunden. Auch im gehobeneren Wrestling Alter noch zu überragenden Matches fähig, was Charisma, Technik, Selling und Härte angeht sowieso über alle Zweifel erhaben. Ich meine, auch wenn der Spruch abgedroschen ist, Kobashi hat Krebs "ge-no-sellt"! Allein dafür 10 Punkte!"
Rating: 10.0
Sentiment: 0.15625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: alewrote on 11.05.2013:[10.0] "Einer der ganz Großen ist abgetreten. Es gibt wenige Menschen, die japanisches- und Wrestling generell so geprägt haben wie Kenta Kobashi. Er ist immerhin neben Muta, Liger (die kennt vorallem auch wegen ihren Auftritten außerhalb Japans) und Tiger Mask einer der Wenigen, die auch Nicht Puroreso Fans kennen dürften. Und das mit Recht. Für ihn darf es nur eine Wertung geben: 10/10"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: y94wrote on 08.02.2013:[10.0] "Unbestritten einer der besten Wrestler aller Zeiten, wobei einige seiner Matches deutlich überbewertet werden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: apc24wrote on 25.11.2012:[10.0] "Kobashi is an amazing wrestler, he's been around for a while and has been working great matches from the beginning."
Rating: 10.0
Sentiment: 0.7000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Leonewrote on 22.08.2012:[10.0] "If there was ever a wrestler who resembled Goku from Dragonball Z, it would be this guy.  Along with the likes of Mitsuharu Misawa and Toshiaki Kawada, Kenta Kobashi could be best described as 1 of those guys who ruined wrestling for everybody - not because he is a bad wrestler, but because he set the standard so high that very few can reach it, and anybody who has seen (and liked) his work, has very high expectations afterwards.  He wasn't just 1 of the best wrestlers in Japan, but 1 of the best in the world, and in his prime, he always delivered the goods.  Along with being incredibly strong, he was also an effective overall wrestler, performing a variety of suplexes, DDTs, kicks and powerbombs on opponents of seemingly any size and doing high flying moves such as moonsaults and leg drops.  His backhand chops are of legendary proportions, his Burning Hammer remains 1 of the most dangerous wrestling moves of all time, He innovated moves such as the double underhook DDT and the vertical suplex powerbomb, his Lariat finisher was taught to him by "The Lariat" Stan Hansen himself, his endurance and stamina makes John Zandig look like an attacking water balloon, and he has 23 5-star matches under his belt.  Conclusion: There will only ever be one Kenta Kobashi."
Rating: 10.0
Sentiment: 0.25506666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ARIZAwrote on 15.06.2012:[10.0] "Ist natürlich heute lange nicht mehr so gut wie noch vor einigen Jahren, wo er etliche großartige Matches bestritt. Leider kann man nur 10 Punkte geben, denn er hätte auch 11 oder 12 verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Miloswrote on 14.05.2012:[10.0] "Arguably the best Japanese wrestler ever. He is the one, who made a sheer enormity on memorable matches with his one of a kind style - though and brutal, but also distinguished and dignified. Even now, in the the twilight of his career, he's still absolutely entertaining thanks to the amazing abundance of natural charisma."
Rating: 10.0
Sentiment: 0.26250000000000007
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Fighter Daronwrote on 02.02.2012:[9.0] "It could be considered the best or the worst of the fourth, for me is the third."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Senajwrote on 29.01.2012:[10.0] "Eine absolute Wrestling/Puroresu Legende. Er wollte der Beste werden und hat es auch geschafft. Es ist unglaublich was er für Matches auf die Beine stellen kann. Man denke nur an sein Match gegen Kensuke Sasaki. Der absolute Wahnsinn."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: ShakDragoonwrote on 04.10.2011:[10.0] "Genialer Heavyweight, der einige der besten Matches abgeliefert hat, die ich je sehen durfte. Respekt außerdem dafür, dass er es über all die Jahre seiner Karriere geschafft hat, seinen Wrestlingstil zu variieren. Kenta Kobashi ist King und zum Glück wieder im Ring, wo er hingehört, wie kaum ein anderer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: The last Outlawwrote on 26.07.2011:[7.0] "Klasse Leistung, die er abgegeben hat, er hat zwar mit der Zeit nachgelassen, aber das er in dem Alter immernoch im Ring steht ist eine verneigung wert"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Top-Hardywrote on 09.06.2011:[10.0] "Eine lebende Legende. Mehr muss man dazu eig. fast nicht sagen. Wahnsinn was für Matches er alles schon rausgehauen hat. Wie er nach seiner schlimmen Krankheit zurück kam und dann noch top Leistungen gebracht hat zeigt einfach nur was für ein ausnahme Wrestler er ist. Wenn er keine 10 Punkte verdient hat wer sonst ?"
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: The Meanbeastwrote on 23.04.2011:[10.0] "Kenta Kobashi ist wahrlich einer der besten Wrestler auf der Welt. Er überzeugt in jedem ach so kleinen Match, bringt hundertprozentige Leistung! Seine Technik, gemischt mit seiner Härte und der Art und Weise, einem Match eine Geschichte einzuhauchen, machen aus nahezu jedem Match ein 5-Sterne-Match. Zusammen mit dem leider viel zu früh verstorbenen Mitsuharu Misawa stellte er epische Schlachten auf die Beine, und es ist nicht verwunderlich dass ihm überall auf der Welt von den Wrestling-Fans Respekt und Ehre entgegengebracht wird. Ein ganz ganz großer in diesem Geschäft, und dafür auch 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Hu-Manwrote on 24.02.2011:[10.0] "975 Five-Star Matches... oder so... unglaublicher Worker. Grandios!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Matt4Wrestlingwrote on 20.02.2011:[10.0] "Einer der größten, die ich je live sehen durfte! Seine härte und Technik sind einfach unerreicht. Es wäre schön wenn er seine Krankheiten endgültig besiegt, um nochmal zu zeigen, was in ihm steckt!"
Rating: 10.0
Sentiment: 0.2130681818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Kings Roadwrote on 29.01.2011:[10.0] "Kobashi ist und bleibt der beste Wrestler aller Zeiten und ist meines Erachtens nach noch vor Legenden wie Misawa, Kawada, Muto, Hashimoto etc. zu sehen. Sein Charisma, sein Fighting Spirit und das scheinbar grenzenlose Talent haben es ihm ermöglicht auch unter schwersten Verletzungen Topleistungen zu bringen und NOAH zu tragen. Wenn sein Zustand es zulässt, würde ich gerne noch eine letzte Abschiedstour von Kobashi sehen, die im Budokan endet und ihm den Ruhestand ermöglicht, den er sicht ohne Zweifel verdient hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Rated R Champwrote on 09.12.2010:[10.0] "Knapp hinter Misawa die zweit größte Puroresu-Legende aller Zeiten. Und mit 22 5*-Matches auch der Einzige, der annähernd an erstgenannten heranreicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Berlin Dragonwrote on 18.09.2010:[10.0] "DIE Legende überhaupt. Der beste Worker aller Zeiten !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Double Jwrote on 28.08.2010:[10.0] "Eine wahre Legende und immer noch super genial im Ring. Schade dass er gerade verletzt ist, aber Kobashi hat Noah und AJPW und auch zurecht als eine der besten angesehen!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Darbenwrote on 11.08.2010:[10.0] "21 5 Sterne Matches sprechen für sich. Kenne Kenta Kobashi noch nicht so lange aber dank dem Internet kann ich seine Karriere verfolge. Führt technisch saubere Aktionen durch und seine Härte ist der Wahnsinn. Mic-Work und solche Dinge sind mir nicht wichtig. wenn ich Bock auf gutes, Harters wrestling habe, dann gucke ich mir von Ihm ein Match an"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Excellence of Executionwrote on 15.07.2010:[10.0] "Es ist unglaublich, dass Kobashi (allen Widrigkeiten zum Trotz) über so viele Jahre im Ring großartige Matches und heftige Bumps zeigte und dass er bei all dem immer noch dabei ist. Sicherlich geht auch an ihm das Alter nicht spurlos vorüber. Dennoch muss man seine langjährige Qualität auf höchstem Niveau einfach anerkennen. Er produzierte zahlreiche Klassiker, die auch noch in 20 Jahren zu Matches höchster Qualität gehören werden. Dabei brachte er als einziger nahezu so viele 5 Sterne Matches auf die Beine wie Misawa. Für mich neben Misawa und wenigen anderen (Tsuruta, Hansen, Williams, Taue und Kawada) der wichtgste Mann in der (leider vergangenen) Glanzzeit des Puroresus. Und auch darüber hinaus jemand, der einfach alles gibt. Und dafür rufen die Fans zu Recht seinen Namen. Eine absolute Legende! Außerdem für mich noch vor Flair der eigentliche Großmeister des Chops."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Super Dragonwrote on 20.06.2010:[10.0] "Einer der Gründe warum ich Puroresu so liebe, deshalb 10 Punkte für Kobashi."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Kenshin Uesugiwrote on 05.06.2010:[10.0] "Kobashi ist körperlich ein Wrack, er hat so viele Verletzungen erlitten und die Krebserkrankung durchgemacht, das er im Gegensatz zu früher richtig steif und unbeweglich ist. ABER wie bei der anderen Puroresu- Legende mit den zerstörten Knien, ist es die Aura, Ausstrahlung und der Spirit der den Körper vorantreibt. Ähnlich wie Muto kann er mit seinem umgestellten Stil immer noch die Leute begeistern, wobei Muto sich im Vergleich zu Kobashi ja geradezu wie ein junges Reh im Ring bewegt. Der Wille macht einiges möglich und alle Fans die ihn heute sehen und sich fragen was an dem so besonders ist, die sollen sich die alten AJPW und NOAH Matches ansehen. Darum rastet die Crowd aus, wenn Kenta Kobashi zum Ring schreitet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Fountain of Misinformationwrote on 01.05.2010:[10.0] "Heute natürlich ähnlich wie Muto durch seine Knie und anderen körperlichen Probleme recht eingeschränkt, dennoch im Rahmen seiner Möglichkeiten immer noch mit der Leidenschaft von einem ganzen Promotion-Roster dabei und vor den unzähligen Klassikern und dem Lebenswerk muss man jetzt, zu seiner aktiven Zeit, bereits ganz tief den Hut ziehen. Einfach ein Wrestler wie kein Zweiter, vor dem sogar Gevatter Tod allerhöchsten Respekt hat. Man sagt dieser hätte Kobashi einmal seinen baldigen Besuch angekündigt, Kobashi ließ ihm ausrichten dass Lariats, Chops und sogar der Burning Hammer auf ihn warten würde, heute weiß man nur dass es niemals zu diesem Treffen kam."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: RickRollwrote on 15.04.2010:[10.0] "Für mich neben Misawa der zweitbeste Wrestler der jemals ein Ring betreten kann. Ihm wird oft nachgesagt das er ein eher "kleines" Moveset hat, aberdas stimmt nicht, wirklich. Er besitzt ein sehr großes innovatives Moveset das er geschickt einzusetzen mag. Verkörpert dazu den Fighting Spirit und es macht mir immer großen Spaß ihm in einem Ring zu sehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: DJ MaSchwrote on 05.01.2010:[10.0] "Der zur Zeit warscheinlich beste Worker der Welt. Er war der erste japanische Wrestler, der mich wirklich fasziniert hat und er hat mich zusammen mit Misawa zum Puro Fan gemacht. Ich kann mich ankein Match von ihm erinnern, indem er mich entäuscht hat. Das Niveau, was dieser Mann seit so vielen Jahren an den Tag legt ist einfach einzigartig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: daniel88wrote on 03.01.2010:[10.0] "alles andere wär ein witz, dieser mann hat einfach eine 1 verdient. schon allein die gänsehaut die ich bei seinem auftritt hatte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Mick Funkwrote on 12.11.2009:[10.0] "Gefällt mir heute so gut wie gar nicht mehr, aber die Leistung in den 90ern läßt nichts anderes als 10 Punkte zu. Ein gewaltiges Lebenswerk."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: THE GAME 4-EVERwrote on 12.10.2009:[10.0] "Es gibt Wrestler die gelebt haben und leben die einfach keine wirkliche Begründung brauchen, um die 10 Punkte zu erhalten. Kobashi wäre einer von diesen. Denn all die Klassiker in den 90er, seine Comebacks nach dem Krebs und der Knieoperation, ein Mann der Fighting Spirit verkörpert und auch mit nur wenigen Moves und vielen Chops einen Klassiker aufs Parkett legen kann. Kobashi ist IMO der beste Wrestler den es bis heute gibt."
Rating: 10.0
Sentiment: -0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: hatebreederwrote on 07.09.2009:[10.0] "Dieser Mann ist ein Puro-Gott! Mehr muss man nicht mehr sagen, da alles schon erwähnt ist. Eine wahre Legende. Der Inbegriff des Puroresu. Wer den besten Wrestler aller Zeiten sucht, bei dem sollte der Name Kobashi Kenta ganz vorne auf der Liste stehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: UltimatePwrote on 21.06.2009:[10.0] "Kooobaashiiii ... Der Mann mit den härtesten Chops der Welt, in jedem seiner Matches empfinde ich Mitleid für seine Gegner ... 10 Punkte für diese Legende die zum Glück noch unter uns weilt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: The Excellent of Executionwrote on 16.06.2009:[10.0] "Eine lebende Legende. Mein persönlicher Lieblingswrestler."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Aquifelwrote on 15.06.2009:[10.0] "Lebende Legende. Sicherlich inzwischen nicht mehr ganz in Hochform, aber was dieser Mann (vor allem zusammen mit Toshiaki Kawada und Mitsuharu Misawa, R. i. P. ) im Ring veranstaltet hat, ist und bleibt für die Ewigkeit. Da spielt es nichtmal eine Rolle, dass er nicht gerade der Mann der 1000 Holds ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: theflo438wrote on 15.06.2009:[10.0] "Auch eine der Legenden, die mit dem Tod schon ein wenig in Kontakt kamen. Zum Glück überlebte er den Tumor, Misawa konnte seinem Pech nicht mehr entgehen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Mankirawrote on 13.06.2009:[9.0] "Wahnsinns Charisma, zu 100% im Match und viele epische Klassiker; ich gebe 9 Punkte, einen Punkt Abzug für das Limitieren des Movesets auf Chops"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Ryklon Stephenswrote on 06.06.2009:[10.0] "Die größte Lebende Legende im Pro-Wrestling. Was Kobashi für eine Aura besitzt ist unglaublich. Und in seinen Matches muss man Angst um die Gesundheit seiner Gegner haben. Man munkelt es seien einige japanische Rookies an den Folgen der Chop Serien gestorben. ^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Eddiewrote on 02.06.2009:[10.0] "Einer der größten aller Zeiten in Japan, mehr braucht man nicht sagen für die 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Father Nelsonwrote on 01.02.2009:[9.0] "He is the best thing that happened to wrestling. Or the worst. Depends on the individual prospective."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: MrWrestlingwrote on 25.01.2009:[10.0] "Ein sehr guter Wrestler, der in letzter Zeit aber Leider oft von Verletzungen verfolgt war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Manolowrote on 31.12.2008:[10.0] "Neben Misawa und Kawada der beste AJPW-Wrestler der Neunziger. Im Gegensatz zu Misawa aber auch heute noch in der Lage, absolute Topmatches abzuliefern. Overall zweifellos einer der besten Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: caterwrote on 29.09.2008:[10.0] "Die Wrestlingmaschine schlechthin. Es ist genug über Kobashi gesagt wurden, so dass ich da nichts mehr hinzufügen muss. Was Bryan Danielson in Nordamerika ist, ist Kobashi in Japan."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Rancorwrote on 24.07.2008:[8.0] "Ein ganz großer Pro-Wrestler, keine Frage. Mich persönlich konnte er jedoch nie so richtig mitreißen - viele Auftritte in den letzten Jahren haben diesen Eindruck nur verstärkt. Höchsten Respekt für seine Leistungen und auch das Comeback nach dem Nierenkrebs, aber mittlerweile wirkt er auf mich im Ring einfach sehr, sehr unbeweglich. Es macht mich geradezu traurig, ihn heutzutage im Ring zu sehen. Das ist nicht mehr der Kenta Kobashi, an den man sich später erinnern möchte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: e-trom995wrote on 28.06.2008:[7.0] "schließe mich daria unter mir an. Mittlerweile nicht mehr so top wie früher."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: dariawrote on 26.05.2008:[9.0] "lebt mittlerweile von seinem Heldenstatus, aber naja..."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Eaterwrote on 11.05.2008:[10.0] "Ausnahmewrestler, der zurecht derart gelobt wird. Die zahlreichen Klassiker sprechen für sich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: AnFuwrote on 26.04.2008:[9.0] "Selten solche Reaktionen in Japan gehört, wie für Kobashi. Klasse Typ, ein Gesamtpaket und ein Topmatchgarant. Ganz groß!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Fran7iCwrote on 12.04.2008:[10.0] "Kannte ihn erst garnicht, aber er ist wirklich legendär!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: EvenflowDDTwrote on 26.02.2008:[10.0] "Ein Wunder das er nach den Backdropdrivern Kobashis noch lebt :D"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: FiveStarwrote on 07.02.2008:[10.0] "Wahrscheinlich der vollkommenste Pro-Wrestler aller Zeiten - eine geniale Symbiose aus Ausstrahlung, Fighting Spirit und technisch hochwertigem Wrestlingkönnen. Kobashi zieht jeden Fan in seinen Bann: eine absolute Ausnahmepersönlichkeit und ein Ausnahmekämpfer!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Moshpit-Hooliganwrote on 21.01.2008:[10.0] "So muß ein Wrestler sein. Technisch perfekt, gute Power Moves und stiff bis zum geht nicht mehr. Wenn man einen WWE Fan einen perfekten Wrestler zeigen möchte, dann sollte man ihn Kenta Kobashi zeigen. Bin der Meinung das er immer noch fast genau so gut ist wie früher...... meine lieblings Matches von ihn sind gegen KENTA und Steve Williams."
Rating: 10.0
Sentiment: -0.007142857142857131
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: jimpanse1980wrote on 01.01.2008:[10.0] "Wenn ich mir hier einige Kommentare ansehe, dann dürften Alle, die noch mit 50 oder älter im Ring stehen keine 10 P mehr bekommen, da sie ja mit dem Alter (verständlicher Weise) schwächere Leistungen zeigen. Soll man aber deswegen Männern wie Kobashi oder Flair nicht die volle Punktzahl geben? NEIN, denn sie sind Legenden und haben diesem Sport einfach so viel gegeben, dass hier nur die Bestnote stehen darf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: D-Stylewrote on 07.12.2007:[10.0] "Kobashi kann nur eine "1" gegeben werden. Die Chops, der Spirit, die Intensität im Match: Kobashi hat Gottstatus. Ganz klare 1 ohne zu zögern"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: SternessDustOmegawrote on 05.12.2007:[10.0] "Definitiv eine lebende (und endlich wieder aktive! ) Legende des Pro Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Matt Mackswrote on 04.12.2007:[10.0] "Einer der größten Puroresu Stars aller Zeiten, darauf gebe ich Brief und Siegel. Hatte bereits nur ein Jahr nach seinem Debüt seinen ersten PPV Main Event mit den AJPW Legenden Tsuruta, Tenryu und Hansen. Im goldenen Zeitalter von All Japan folgten viele weitere zusammen mit Misawa, Kawada, Williams, uvm. Auch der jahrelange Missbrauch seiner Knie konnte ihn nicht stoppen, als er 2003 nach fast zweijähriger Pause mit einem neuen Stil ("Chop-bashi") in den NOAH Ring zurückkehrte, um in den folgenden beiden Jahren die Puro-Fans erneut zu faszinieren. Selbst ein Nierentumor konnte Kobashi nicht stoppen und sein Return Match zeigte, dass mit Kobashi auch im Jahr 2008 zu rechnen sein wird, wenn es um die besten Matches und Fanreaktionen im Wrestling gehen wird."
Rating: 10.0
Sentiment: 0.12222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: LexLuger4everwrote on 21.11.2007:[10.0] "Ist in Japan definitiv eine der größten Legenden aller Zeiten, das muss man anerkennen! Schade nur, dass er in den Mainstream Bereich der US amerikanischen Ligen nie großartig involviert war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: SuperRKOwrote on 21.11.2007:[10.0] "Seine Matches muss man gesehn haben! Er schickte Omori schlafen mit seiner Bomben Clothesline und seine Matches mit KENTA einfach fabelhaft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Mediwrote on 07.09.2007:[8.0] "Sorry, aber ich habe mir noch mehr aktuellere Videos angesehen und das ist einfach nicht mehr das selbe. Nicht falsch verstehen, denn Kobashi war und ist immer noch einer der ganz großen, doch die Leistung gegenüber früher ist einfach schwächer."
Rating: 8.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Steven McWheelerwrote on 27.06.2007:[8.0] "Nahezu kompletter Wrestler, leider fehlt ihm Charisma! Naja und sein Micwork kann ich nicht so beurteilen^^"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: HubertHuhnwrote on 24.06.2007:[10.0] "Perfekte Ringpsychlogie, perfektes Selling und stiff as hell! Einer der Besten-ohne Zweifel..."
Rating: 10.0
Sentiment: -0.26785714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: King of Queenswrote on 24.06.2007:[10.0] "Man muss sich nur angucken, wie viele Klassiker es mt ihm gegeben hat, um zu wissen, das er zur absoluten Weltspitze gehört."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Knurkselwrote on 24.06.2007:[10.0] "Dieser Mann ist Pro-Wrestling, da kann man über einen Samoa Joe doch nur lachen. ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Hirnklopswrote on 24.06.2007:[8.0] "Schon saugut, aber ein klein wenig überbewertet, meiner Meinung nach. Ich kann mit diesem Japan - Käse aber auch nicht sooo viel anfangen..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: STRIGGAwrote on 24.06.2007:[10.0] "Wenn ich an Pro-Wrestling denke, ist Kenta Kobashi der erste Name, der mir in den Sinn kommt. Dieses Niveau, welches er über viele, viele Jahre gehalten hat und welches immer wieder für Traum-Matches mit immer anderen Gegnern sorgte, ist einfach nur fantastisch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Pulpulwrote on 24.06.2007:[10.0] "Kobashi ist das Maß aller Dinge. Platz 1 für ihn definitiv ein Muss, alle andere Wrestler müssen sich an Kobashi messen lassen. Kobashi ist DER Pro Wrestler, keine Frage."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=360&gimmick=Kenta+Kobashi
Comment: Sabu316wrote on 24.06.2007:[10.0] "Wrestling in Japan, wenn man daran denkt muss einem einfach der Name Kenta Kobashi einfallen. Er ist das Sinnbild für unglaubliche Matches. Leider ist er an Krebs erkrankt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: jesicawrote on 04.02.2025:"https://studyx.ai/questions/4ljb19z/is-priceline-free-cancellation-within-24-hours-is-priceline-free-cancellation-within-24"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: anarchovampwrote on 27.12.2024:[10.0] "Quite possibly the most mythical figure in wrestling and for good reason. A goat-level performer for basically his entire career, along with putting on some of the best shows at the time with NOAH as their booker, while also simultaneously functioning as their top ace when Kobashi underwent treatment for cancer. Simply put, the perfect wrestler."
Rating: 10.0
Sentiment: 0.4625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ZephsPancakeswrote on 06.12.2024:[10.0] "Quite simply the greatest professional wrestler to ever live. He and Kobashi will always be 1A and 1B for me personally but Misawa always tips it. The epitome of Kings Road; Misawa, for better and unfortunately for worse, gave everything for wrestling and for NOAH. The work of Misawa will live forever, carried on in present day and will definitely be carried on in generations to come. The emotions he was able to draw from a crowd, the matches he had bell to bell, everything about him is exactly what you'd want from a professional wrestler. There will never be another Mistuharu Misawa, truly one of a kind."
Rating: 10.0
Sentiment: 0.16151515151515153
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: bustopboywrote on 20.11.2024:[10.0] "Quite possibly the greatest wrestler to step foot into a squared circle. One of the iconic four pillars of heaven. His matches and rivalries with Kawada, Kobashi, and Tsuruta in AJPW and NOAH(which is his creation) not only defined puroresu's kings road style, but all of pro-wrestling and still influences people to this day like some of the best in Samoa Joe, GUNTHER, Eddie Kingston, etc. He certainly earned the nickname Mr. Triple Crown with his amazing title defenses and title reigns and trust me when I say those championships wore him. Nothing is more bone-chilling in wrestling than when Misawa would come out to ring in his iconic green robe and the crowd is as loud as they can just belting MI-SA-WA! MI-SA-WA! at the top of their lungs. Not even to mention his moveset of forearm strikes, the tiger drive, and emerald flowsion. He just explodes with power and is just a beautiful storyteller in the ring. Kawada finally overcoming Misawa is ultimately one of my favorite moments OAT in pro-wrestling and that is not only due to Kawada being legendary, but Misawa's ability to be a perfect pro-wrestler and play into any role that he's given or placed into based on his positioning of the match or rivalry that he is attached too. There is simply nobody like him in wrestling and he has more than defined a beautiful style of puroresu. Unfortunately, with all this said, we lost the living legend way too early and it is one of the biggest tragedies to ever happen in a ring. He gave his sport his all and he will be remembered as such and will be respected and revered for the entire history or pro-wrestling. Mitsuharu Misawa is truly a legend that will never be forgotten and he truly was the one and only emerald warrior."
Rating: 10.0
Sentiment: 0.31948341836734695
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ItsAllAWorkAnywaywrote on 18.11.2024:[10.0] "MISAWA! MISAWA! The guy was a legend in Japan and for good reason - This maneuvers were game-changing and he had the ability to make 50 minute matches feel like they breezed by with how well they were laid out (and while his compatriots deserve some credit, there was a reoccurring theme with great puroresu matches and matches featuring Mitsuharu Misawa.) Regrettably, he never made the same splash state-side and even more regrettably, he died in the ring following a botched suplex. His legend is hard to ignore, though, and his influence in wrestling will be felt across both sides of the Pacific for generations."
Rating: 10.0
Sentiment: 0.2847222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: jsbortswrote on 26.09.2024:[10.0] "Misawa has the catalogue, the moveset, the aura, the historical impact, the success in multiple companies, the success with multiple characters, the abilty to reinvent himself, and the ability to connect with audiences. Undeniably thought of as one of the most gifted wrestlers of all time for obvious reasons, and innovated countless moves and told such a wide variety of different stories. One of, if not, the best (though, for my money, my third favorite pillar! )"
Rating: 10.0
Sentiment: 0.20833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: perconflncnswrote on 22.08.2024:[10.0] "Greatest wrestler to ever step in a ring. The greatest triple crown champion in history, he is truly the one and only mr triple crown. Wrestling was never the same after misawa, he put every ounce of his soul in the ring every time he was between the ropes. There is only a handful of wrestlers who really could get a crowd to cheer for them like misawa, i dont think you could find a match where the roof isnt about to blow off the place from misawa chants. Truly the greatest to ever do it, a genius of wrestling in all aspects and someone every wrestler and wrestling fan should study."
Rating: 10.0
Sentiment: 0.4571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Willie 19200wrote on 15.08.2024:[10.0] "In my opinion he is the best wrestler of his time and top 3 of all time. he put so much effort to change pro wrestling forever. Hell, he sacrificed his health for the sport. Him and the other 3 pillars; Kawada, Taue, and Kobashi, all worked together to make some of the best matches the wrestling world has, and may ever see, not to mention the many he had inspire to follow in his footsteps and try to be a legend just like the "Mr. Triple Crown.""
Rating: 10.0
Sentiment: 0.5125000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: nabigoyewrote on 11.08.2024:[10.0] "Dieser Mann hat so viel für diesen Sport getan, wie kaum ein anderer. Als Wrestler in meiner Top 3, knapp hinter Kobashi und einfach nur Weltklasse. Er war seiner Zeit weit voraus. Die Athletik, die Technik, Selling, wie man ein Match und eine Crowd worked. Seine Rivalitäten mit Kawada, Kobashi und den anderen Three Pillars generell. Alles. Für NOAH und Puroresu so viel getan und gegeben, schlussendlich sein Leben. Wir können Mitsuharu Misawa alle dankbar sein. Eine klare 10."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: KobashiChopMewrote on 02.08.2024:[10.0] "Misawa is another guy who you could make a very solid case for being the greatest to ever lace a pair of boots. I can see why everyone would think so, as in my opinion he is tied for first. Misawa knew how to get a crowd behind him. Every time he set foot into the ring he knew how to work. People should study Misawa tapes to try and get a better understanding of the business."
Rating: 10.0
Sentiment: 0.27
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Zak22wrote on 28.07.2024:[10.0] "Possibly the greatest wrestler of all-time. Misawa first came to prominence under the Tiger Mask gimmick and established himself as a good grappler with some good high-flying but no one could have seen what he'd become after he took the mask off. With the mask off, Misawa became the face of All Japan, as the main guy in AJPW, Misawa was a perfect in-ring and he bought massive amounts of charisma and intensity to every match. Misawa's matches with Jumbo, Kawada, Kobashi and Akiyama were fantastic, show stealing events. Then Baba died and after some politics Misawa went on to form Pro Wrestling NOAH and make them the number 2 promotion in Japan and 3rd biggest in the world, Misawa in NOAH clearly declined but he still had great matches before his unfortunate death in the ring. I do struggle to watch Misawa landing on his head knowing what would happen, but also knowing the end of Misawa's story makes his immense highs feel even higher and makes me emotional on occasions. Misawa had the ability to make me pop off a single elbow strike... which quite frankly no one else can (well maybe Kawada), Misawa's in-ring action is exciting and gripping. RIP to the GOAT, you excited us in the ring, changed the whole industry with NOAH and left a legacy few others can compete with."
Rating: 10.0
Sentiment: 0.2529265873015873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: munrapido3wrote on 10.06.2024:[10.0] "Misawa was such a once-in-a-lifetime wrestler and definitely one of the most legendary professional wrestlers in the history of wrestling. He had everything a wrestler needed; he had the charisma, he had the athleticism, he had the near-perfect moveset, he pretty much had it all. He serves as one of the best examples for young upstarts in wrestling on how to be the greatest wrestler ever. The most notable problem about Misawa was that he was too passionate about wrestling; he loved the business so much, he died in it. Not to note his notorious obsession of neck bumps which had a long-term consequence of death in 2009. It made his legacy, or atleast the legacy of King's Road style he was famous for, a bit problematic. Nonetheless, Misawa is a must-watch wrestler for new wrestling fans and should be recognized as one of pro wrestling's greats."
Rating: 10.0
Sentiment: 0.3903743315508022
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Wrestling Foreverwrote on 01.05.2024:[10.0] "Sein Tod war 2009 solch ein Schock er hinterließ eine riesige Lücke die man irgendwie nie bei NOAH richtig füllen konnte. Mitsuharu war einfach einzigartig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Pigeon Scratchwrote on 29.04.2024:[10.0] "A contender for quite literally the best wrestler of all time and one of the most important and influential, at least in Japan. He sacrificed his health, and eventually his entire life to change professional wrestling in Japan, and in turn professional wrestling as a whole. He made every match he was a part of mean something, he elevated each bout and opponent he faced and with every teammate he worked with. He is a part of some of the best matches of all time that will stand the test of time and will be endlessly rewatchable. He, alongside the Four Pillars of Heaven, were what made the best years of AJPW, and after Giant Baba's death, he was what led to creating one of the best wrestling promotions of the 2000s. He sacrificed so much for the business, and I don't think we can ever thank him enough for what he did. Thank you Misawa."
Rating: 10.0
Sentiment: 0.29765625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Oddtalkwrote on 29.04.2024:[10.0] "Simply one of the greatest to ever step into a ring. Top five, minimum. His technical skill, ability to tell stories through the action, and his surprising athleticism make him one of the best of all time. It's a shame we lost him at all, especially when he should've retired two years before. He deserves to still be here, working behind the scenes, no longer battering his body with dangerous bumps. In a better world, that's what he's doing."
Rating: 10.0
Sentiment: 0.2545454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: jcheng777wrote on 24.04.2024:[10.0] "Personally he is easily the greatest and most influential wrestler of all time. That match with Kawada in 94 will stand the test of time as the greatest athletic performance of all time."
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ABQMIKEwrote on 15.02.2024:[10.0] "The greatest! " I could just put that and every wrestling fan would understand. His aura, his ring style, and his love for wrestling was the complete package. Every match he had seemed big to me. I could never put my finger on it but I do know that I always loved PURO but Misawa made me appreciate it."
Rating: 10.0
Sentiment: 0.45999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: KEIwrote on 01.02.2024:[10.0] "Mitsuharu Misawa is personally my favorite Japanese wrestler of all time. Second is Kobashi. The fact that Misawa is one of the greatest professional wrestlers can't be disputed. 10 out of 10."
Rating: 10.0
Sentiment: 0.32
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Wrest lingaddictionwrote on 19.01.2024:[10.0] "One of the greatest if not the greatest technical wrestlers in history. He put on banger after banger and for his efforts was rewarded with multiple top titles. When NOAH started it relied a lot on Misawa. Despite the immense pressure this must have put on him I still look at that period in his career fondly."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Ingoldwrote on 16.12.2023:"The greatest professional wrestler to ever live. I say that with no hyperbole. He is the number 1 wrestler I study."
Rating: No rating found
Sentiment: 0.4121212121212121
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: thewrestlinguywrote on 13.12.2023:"[10.0] This man laterally gave his life for this business his fueds are great he wrestled kings road style which is dangerous but cool he had natural charisma and a love for wrestling sad to see him go out the way he did the stuff he did in all japan and pro wrestling Noah was great a match of his i recommend watching is when he faced stan Hansen for the AJPW triple crown its just good."
Rating: No rating found
Sentiment: 0.26875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Luna100wrote on 01.12.2023:[8.0] "Mitsuharu Misawa is a very overrated wrestler. While he is one of the most important wrestlers of all time, by no means is he one of the greatest wrestlers of all time. My main problem is that he has very formulaic, he can go against the formula, but he tends not to, and I know may praise him for his stoicism, and sometimes it works, but often it can just make him more dull than his contemporaries. He has a lot of good strikes, and can tell a good story, but he can still not connect more than he should."
Rating: 8.0
Sentiment: 0.3977272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: JediSaiyanMaster1203wrote on 19.11.2023:[10.0] "Mitsuharu Misawa is arguably the greatest professional wrestler of all time, he was one of the most consistent and prolific and has left a long lasting influence even after all these years after his death. Misawa is one of the best in ring performers ever, showcasing he can do any style you give him, showcasing his high flying abilities under the Tiger Mask gimmick he worked under, and then showcasing his storytelling and technician style during the 1990s up until his death, he was a well crafted wrestler. His rivalries are that of legends, matches and feuds that are still discussed and held as bench marks to this day whether it's his feud with Kenta Kobashi or Toshiaki Kawada, every wrestling fan is at least aware of these. He's also an innovator of tons of classic wrestling moves that are still being used by many wrestlers to this day, moves like Emerald Flowsion and Tiger Driver to name a few are moves you can see many guys nowadays using. Misawa's influence is incredibly significant, especially on the independent scene, which is amazing considering he rarely ever worked in North America, mostly sticking with Japan with a few matches outside the country. Mitsuharu Misawa is also one of the greatest sellers and bumpers of all time, going for a more realistic and subtle way than doing a more traditional or flashy way like some of his contemporaries did, which made him easier for the audiences to get behind. Overall, Mitshuaru Misawa is a legend who's impact can still be felt all around the wrestling industry for being one of the all time best to ever do it. R.I.P. Mitsharu Misawa"
Rating: 10.0
Sentiment: 0.22378787878787879
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: FattitudeErawrote on 31.10.2023:[10.0] "As previous comments have said, Misawa's aura coupled with his ability to make everything he did meaningful make him one of the greatest of all time. I have recently started working my way back through his match catalogue and I am yet to find a match I don't find enjoyment in. There may never be another like him."
Rating: 10.0
Sentiment: 0.2666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: texasyoshwrote on 21.08.2023:[10.0] "As far as personal enjoyment goes, Misawa is not my favorite "pillar" of the AJPW four. But there's something that's so undeniable when his music hits, the elbows fly, and when the crowd comes alive. It's the presence of being the Ace. And I think as far as company Aces go, Misawa is a top tier one, in two companies. Peak years are 1990-1994 for me. Super Generation Army, his quest to getting to the top of the card, is incredibly interesting to me. As booker he was dealt the hand of mismanagement and differing philosophies with Matoko, and his untimely passing removes a potential final third of his career. His entire run in AJPW is recommended watching for any pro wrestling fan, as well as some of the first years in NOAH."
Rating: 10.0
Sentiment: 0.24555555555555558
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ElMatadorwrote on 05.08.2023:[10.0] "Misawa wrote the book on how to put together a wrestling match. Every detail mattered, no wasted motion, genius! Anyone reading this who didn't have the privilege of growing up watching Misawa work, go back and watch him. I don't disagree with other comments that we may never see another on his level."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: flipflopdoritoswrote on 25.07.2023:[10.0] "the goat. everything he did, from his demeanor, to his moveset, to his selling, his storytelling, was all perfect. i doubt we'll ever see a wrestler as good as misawa"
Rating: 10.0
Sentiment: 0.85
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Fluerrewrote on 23.07.2023:"Mein persönlicher GOAT. Er hat Wrestling verändert und hat für seinen Sport gelebt (und ist auch für seinen Sport verstorben). Diese unfassbare Ausstrahlung gepaart mit technischer Finesse und Härte. Einfach seiner Zeit voraus gewesen."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: LGL19wrote on 28.06.2023:[10.0] "One of the greatest wrestlers of all time, could tell amazing stories in the ring and could keep you engaged in some amazing long matches. He had some fantastic matches with Kobashi, Kawada, Taue, Akiyama and Tsuruta. Just an unbelievable talent and i wish he was recognized more in western wresting."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: TripleCrownwrote on 01.04.2023:[10.0] "Without a doubt the greatest wrestler of all time. People talk about the likes of Flair, Steamboat, Bret Hart, Shawn Michaels, etc., but none of them are even close to being on the same level as Mitsuharu Misawa. His in-ring work was second to none. Excelled when he went under the Tiger Mask persona in AJPW and took his career to the next level by unmasking mid match. Was the top dog in AJPW throughout the 90s and left to start Pro Wrestling NOAH which overtook AJPW and even rivaled NJPW at one point in the mid 2000s. Misawa had won it all and done it all in professional wrestling. In my opinion, he is the greatest of all time. Others may come close, but nobody can take that top spot away from him in my eyes."
Rating: 10.0
Sentiment: 0.2818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Puro113wrote on 14.03.2023:[10.0] "There will never be another like him. He defined an era of pro wrestling with his legendary bouts with the likes of Kobashi, Kawada, Taue, Tsuruta, Akiyama, Williams, et al. His legacy is assured and his influence far reaching and monumental. He is truly one of a kind."
Rating: 10.0
Sentiment: 0.5666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Makai Clubwrote on 05.03.2023:[10.0] "After a lengthy period of being utterly medicore as a Satoru Sayama wannabe, Misawa's luck changed with a few shady business dealings that lead to spots being opened on the card. He lost the mask and his legacy starts from there. Suddenly, he has charisma, his wrestling has energy, purpose, orignality to it. The fans take to him to a point where only Giant Baba rivals him as the guy in All Japan's history, and it's hard to compete with that. Misawa is truly a world class wrestler. One of the greatest wrestlers of all time. A massive draw for his home promotions (AJPW and then NOAH) until his death. His wrestling needs no analysis. And while he has his flaws, his strengths are too great. His worst attributes come with his booking and promoting skills, which were flatline around being medicore to decent, argubly being helped by the foundations Baba gave him once he took the book and then created NOAH. But those periods still gave fans great memories, iconic wrestlers and famous matches to this day. Misawa is an icon. Perfect? No. But legendary nonetheless."
Rating: 10.0
Sentiment: 0.23676470588235296
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: KKeanelwrote on 25.02.2023:[10.0] "Tremendous individual, alongside Kobashi - a king of puroresu. It sucks that wrestling literally took his life, but in some way i'm glad that he died during something what he really loved."
Rating: 10.0
Sentiment: 0.24666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: benh2wrote on 11.01.2023:[10.0] "If not the greatest, definitely in the top handful. As a worker he just had all the tools. He would tear the house down week after week and it looked like a stroll in the park for him. He had that perfect combination of natural talent and an unrelenting commitment to wrestling. Even in his earlier years he did some great work as Tiger Mask, so much so that they had to unmask him because the fans were chanting "Misawa" during his matches. Then he truly broke through and the 92-98 run was pretty much wrestling perfection, even as injuries started to pile up. Still continued to bust out all-timers in NOAH long after his body had peaked."
Rating: 10.0
Sentiment: 0.3203703703703704
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: TheAWF105wrote on 11.01.2023:[10.0] "One of the greatest of all time. Classics with Tsuruta, Kobashi, Kawada, Taue, and Akiyama. In my opinion, the best of the 4 Pillars. I was very late to appreciating his greatness, wish I appreciated him sooner. Really liked that he had several moves that could end the match."
Rating: 10.0
Sentiment: 0.4016666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: amhlilhauswrote on 24.12.2022:"Misawa in my opinion is the best in ring worker ever. Everything he did in his prime looked effortless. He was obviously an all timer by 1993 and he was the obvious choice as all japan's ace."
Rating: No rating found
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: devwilwrote on 26.10.2022:[8.0] "I know it's sacrilege, but--after watching a lot of his best-regarded matches--I think Misawa is really overrated. Not because he was a bad wrestler (not at all), but because he's a distant third of the four AJPW pillars, behind Kobashi and Kawada. There's no denying his impact on puroresu via his AJPW feud with Tsuruta, the founding of NOAH, and so on, but I have to say: too often I find him to be kind of dull. He's got good offense and smooth reversals, but I think his selling is frankly kind of weak in my eyes and a lot of the time he weirdly looks bored to me during his own matches. I like him a lot better in tag matches than in singles matches."
Rating: 8.0
Sentiment: 0.048888888888888885
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: wrestlingreviewerwrote on 11.10.2022:[10.0] "The best elbow strikes ever .He was highly Athletic for a man his size and the biggest star in AJPW intense and took every bump on his head He was so influencial his death killed the King's road style and made every wrestler be a little more protective of his neck Unbelievable performer RIP"
Rating: 10.0
Sentiment: 0.17464285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: benny5bellyswrote on 26.07.2022:[10.0] "He is probably my least favourite pillar but he is also in pretty much every single one of my favourite ever matches."
Rating: 10.0
Sentiment: 0.01964285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Kingmoose22wrote on 21.07.2022:[10.0] "In my own completely biased opinion Misawa is the best wrestler to ever walk the earth. He was so well rounded and so innovative in the ring. His matches were awesome and some of the best in the world. Just a fantastic performer top to bottom."
Rating: 10.0
Sentiment: 0.6375000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: UltraNano54wrote on 16.06.2022:[10.0] "As many have said, he is an almost perfect wrestler and a real jack of all trades with no real noteworthy weaknesses. He always knew how to put on a show and do something breathtaking."
Rating: 10.0
Sentiment: 0.5199999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: arrancarwrote on 13.02.2022:[10.0] "If you're like me and you form your initial opinion on Misawa based only on watching a handful of his most highly rated matches, you'll get the impression that he is a robot-like stoic character who never show emotions, never sells, and just got over because of his superman push. I still considered him an amazing wrestler, but no-one deserving of a 10/10 rating. Having now seen a good amount of his 90s AJPW work plus some of his NOAH work while he was more spry, I have to conclude this dude is one of the GOATs. His wrestling style was unlike anything else in Japan at the time he was on top, since having previously been a junior with the Tiger Mask II gimmick, he brought over a lot of impressive acrobatic and high-flying spots to his heavyweight matches. It was awesome seeing a guy of Misawa's size fly around, since his relatively large weight meant that all his flying attacks connected like absolute missiles that would obliterate his opponents or at the very least convincingly knock them down. No-one else in the AJPW main-event scene moved around like Misawa, so he was instantly a fan favourite for that reason. Then there's also his signature strikes and power moves. Misawa had a variety of absolutely fantastic suplexes, which in appropriate 90s AJPW fashion would absolutely wreck his opponents. But okay, there's Benoit, Lesnar, and Angle who were also known for their suplexes. Well, how about a wrestler known literally just for their elbows and forearms? Because Misawa would absolutely KILL with those stiff strikes he'd throw, which was usually also when he'd show his emotions getting the better of him, as he often couldn't stop himself just repeatedly smashing away at his opponent. That's the thing about Misawa: yes, he was stoic and 'collected' with his emotions, but the actual array of moves he hit showed that he was anything but complacent or uncaring. An uncaring man doesn't destroy his opponent's neck like that, or genuinely knock them senseless with a brutal strike to the face. Misawa was the handsome badass who smartly chose the right moments to show him in real pain or getting fired up, since then those emotional moments would feel far more special because of how rare they were. There's also the fact that Misawa was a fantastic seller and bumper. His selling was a lot more restrained than someone like Kobashi, who wore his emotions on his sleeve and always communicated his struggles clearly. Misawa's selling style was different (neither better nor worse), being a lot more subtle and less "showy" in the traditional pro-wrestling style, which likewise allowed him to connect with fans because he appeared more realistic with his experiences of pain and discomfort. His bumping was absolutely godly, and he sadly put his body on the line so frequently to the point it cost him his life. At the very least Misawa will never be forgotten for the legendary performances he gave alongside other fellow legends."
Rating: 10.0
Sentiment: 0.21088943623426382
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Ratewrestlewrote on 31.01.2022:[9.0] "One of GOAT's of professional wrestling, only behind Kenta Kobashi in my eyes. He in ring work will never be matched again"
Rating: 9.0
Sentiment: -0.10000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: GriffinXwrote on 16.01.2022:[10.0] "I honestly don't know how you can look at this man and say he's not a 10. He was the top man at the time All Japan was at its peak, numerous great wrestlers talk about his influence. So many classic matches. My guess is lower ratings are "Fans" who the misconception being from Japan mean no character. Except those that watched know his character work was amazing ."
Rating: 10.0
Sentiment: 0.35677083333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: mmcoorwrote on 02.12.2021:[10.0] "Misawa is the greatest wrestler ever. ther isnt and will never be anyone like him in the world of wrestling."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Okaro143wrote on 22.10.2021:[10.0] "Legendary wrestler. One of the greatest wrestler in professional wrestling history. An outstanding performer with a record 25 *****+ matches from Dave Meltzer. ACE of AJPW during it's height. Legendary rivalries with Kenta Kobashi and Toshiaki Kawada."
Rating: 10.0
Sentiment: 0.72
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "He is the Ace of Wrestling, I can't say nothing new about this man, an icon of profesional wrestling and a great promoter/booker. Long Live the Esmerald Warrior"
Rating: 10.0
Sentiment: 0.2556818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: sami07wrote on 26.09.2021:[10.0] "He just is the best wrestler of all time in my opinion. He has an insane charisma, he is absolutely perfect in a ring, he has everything a wrestler dreams of"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: No Onewrote on 30.08.2021:[10.0] "Long live the legacy of Mitsuharu Misawa. All the legendary matches, the legendary feuds with Jumbo Tsuruta, Kenta Kobashi, Toshiaki Kawada, & Akira Taue, playing a part in the "Tiger Mask" lineage, all the moves he innovated (including my favorite move of all time: The Tiger Driver '91), being the ACE of AJPW during the legendary "Four Pillars of Heaven/King's Road" era, being the unmistakable 1990's Wrestler of the Decade, being the founder of Pro Wrestling NOAH, which is still one of the top promotions in the world after his passing, being so influential to so many male & female wrestlers that I see around the world doing moves that he created such as: Chris Hero, Tyler Bate, Toni Storm, Syuri, Kaito Kiyomiya, Konosuke Takeshita, among so many others. WOW, what a great legacy for a great man. RIP to the legendary Mitsuharu Misawa."
Rating: 10.0
Sentiment: 0.4866477272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: BH62wrote on 27.07.2021:[10.0] "He died from his passion and I think this is the way he would have want to die, like a greek soldier on the battlefield. With the three other Pillars, Mitsuharu Misawa changed my vision of wrestling. I remember being completly shocked the first time I watched a Misawa's match. He was an artist. He maybe lacked a bit of charisma in my view but reprensented to me the honor and class of pro-wrestling. The man is quiet but can destroy you in a couple of seconds. His shyness in the ring helped him to become what he was. Greatest in-ring worker of all time. Absolute classics with everybody we wrestled. Even in his later career in NOAH, Misawa was great. He was surely broken down but the passion was so deep, he had to wrestle for an audience who asked for him. Put his body on the line till the end. It's sad and also epic. All hail to Misawa-san, a wrestling genius, he has inspired so much the next generations."
Rating: 10.0
Sentiment: 0.027614379084967323
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: C1aranTTwrote on 26.06.2021:[10.0] "Greatest wrestler of all time, when I think of honor, class, technique & ability, Mitsuharu Misawa is no. 1"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Josh Drakewrote on 17.06.2021:[10.0] "One of my favorite wrestlers ever, I unfortunately didn't get to see his work until he was dead, but I can still safely say that Mitsuharu Misawa is the greatest worker that ever lived in this business. He is one of the finest athletic specimens in the sport. He may be 250 lbs. but he moves like a junior heavyweight, a feat only rivaled by his fellow colleague Kenta Kobashi. His matches with Kobashi and Toshiaki Kawada are made legendary not only for their performances, but because of the boom of tape trading and Dave Meltzer's affinity for Japanese wrestling. I personally would say that Misawa could outperform any of the so-called 'GOATs' that came out of the United States, and would even put money on it."
Rating: 10.0
Sentiment: 0.22999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Unal ERDEMIRwrote on 27.04.2021:[10.0] "In my opinion, Mitsuharu Misawa is the best ever wrestler in the world. He is the God of Puroresu. Evertyhing Misawa did was absolute special. Espeacially his elbow strikes were exclusive. His matches was pure and orgasmic to watch. Rest in peace, greatest in-ring worker of all time, Mitsuharu Misawa."
Rating: 10.0
Sentiment: 0.5542857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "The God of Puro. The Ace of King's Road. Never forget that Misawa's. Elbow. Is. God. What can I say that hasn't already been said? His match with Bret Hart isn't as bad as people say and even though he didn't have much chemistry with Stan Hansen and could be limited in other ways, Misawa's intangibles, fan adoration, and the fantastic story of he and the Super Generation Army's rise, put the Emerald Warrior over the top. The people who gave him six stars are out of their minds and should be tiger suplexed into the sun."
Rating: 10.0
Sentiment: 0.07670068027210886
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ProWrestlingGuy316wrote on 12.04.2021:[9.0] "Eigentlich einer der besten Wrestler aller Zeiten und von daher sicher mit der Höchstwertung zu beurteilen. Wären da nicht die letzten Jahre seiner Karriere bzw. seines Lebens. Bis ca. 2003/04 war er noch "der" Misawa. 2005 hat er schon sehr abgebaut, war aber noch akzeptabel. Seit 2006 jedoch war es fast nur noch ein Trauerspiel, ihm zuzusehen. Sein unsäglich langer Run als GHC Heavyweight Champion war (abgesehen vom Titelgewinn-/Verlust, diese Matches waren gut) eine einzige Qual, mit anzusehen. Leider hat Misawa mit dem Leben bezahlt, dass er zu lange in den Ring gestiegen ist."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Golden Loverwrote on 28.03.2021:[10.0] "Probably the greatest wrestler of all time. Even his "bad" matches blow away most people's best. I love everything about him especially his moveset half of which I would havevused on my old CAWs in the old wrestling games before I had ever even seen him."
Rating: 10.0
Sentiment: 0.26333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: rainmakerpunkwrote on 23.03.2021:[10.0] "Wow, this guy is beyond incredible, he deserves to be in every single GOAT discussion, one of the biggest stars in wrestling history that drew huge crowds, but more important to that for GOAT discussion is how everytime he stepped in the ring it was like magic, in his prime he was having MOTY left and right, having incredible matches with the other incredible AJPW talent of the 90s, his Kobashi matches are storytelling perfection and in-ring perfection as well, likewise for his Kawada matches, the best to be Ace of a company, balanced stiff strikes, suplexes, and Junior moves, and his NOAH work was honestly good, and proved how much of a warrior he was even if he should of stopped much sooner"
Rating: 10.0
Sentiment: 0.38676470588235295
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Kungwrote on 21.02.2021:[10.0] "Whether he was competing in one of the greatest tag teams with Kenta Kobashi, battling Toshiaki Kawada in some of the best singles matches of all time, or totally changing the face of Japanese wrestling with the creation of Pro Wrestling Noah, Mitsuharu Misawa will go down as perhaps the greatest professional wrestler to ever live."
Rating: 10.0
Sentiment: 0.3851010101010101
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: DaUndatakaawrote on 28.09.2020:[10.0] "Mitsuharu Misawa is probably the greatest in-ring worker of all time. From his classics as Tiger Mask II, to his 6 Star match with former partner Toshiaki Kawada. Looking at his matches, you can see why he is the best. He also made NOAH, where guys like KENTA and Naomichi Marufuji were built. Its just sad that his life got cut short due to his determination to keep his company going."
Rating: 10.0
Sentiment: 0.22916666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: znezaaljwrote on 03.08.2020:[10.0] "Great in the ring, great psychology, great storytelling. This dude was magnific, every singles match is great and his rivalries with Kawada and Kobashi were absolutely legendary"
Rating: 10.0
Sentiment: 0.8400000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: OffensiveLariatowrote on 13.07.2020:[10.0] "A great wrestler, promoter, booker and trainer and an all-rounder like no other, the best of all time without a doubt, watching his matches is like an adrenaline rush, undoubtedly an inspiration for many wrestlers"
Rating: 10.0
Sentiment: 0.590625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Roachwrote on 02.06.2020:[10.0] "The GOAT in my eyes. Nobody will ever be as good as telling a story in the ring than Misawa. He gave quite literally everything to wrestling, even his life. When dark times approached NOAH he stepped up even though he knew his body could not handle it. The fact that he wrote a note in case he ever died in the ring amazes me. He gave everything to wrestling."
Rating: 10.0
Sentiment: 0.27499999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: VillainClubwrote on 12.05.2020:[10.0] "Der Beste Wrestler aller Zeiten. Seine Matches sind bis heute Meisterwerke. Eine Legende des Pro Wrestling und es gibt nur sehr wenige die im Ring an seine Leistungen rann kommen. Sein Einfluss auf das Wrestling ist riesig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Ma Stump Pullerwrote on 28.03.2020:[10.0] "Not much to say, really. A guy far ahead of his time both in wrestling and in ring psychology with a superb physical presence and a moveset that was both brutal and also insanely athletic: in his prime he pumped out classic after classic like hotcakes. Even at the eclipse of his career when he was battling multiple chronic injuries, age, and doubts over the survival of his own self made wrestling company, he still could go like a man half his age. Easily one of the GOAT's."
Rating: 10.0
Sentiment: 0.04038461538461538
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: TheOneAndOnlyCactuswrote on 03.03.2020:[10.0] "So, this is the wrestler this website overall ranks as the GOAT, judging by his average rating. Is he mine? Nope. But I don't have a "GOAT" per say. No wrestler is perfect either, but Misawa was just so absolutely amazing. When it came to storytelling he was in the elite. He was also a gifted athlete in his prime, which allowed him to put mat classics after mat classics, with a wide range of moves and counters. He was never the most charismatic man in the Four Pillars of Heaven, yet he was the most popular for a reason. He was a badass, and his lack of emotional display at points really helped his character. His biggest flaw turned into a strength, and he rightly deserves his high ranking amongst the community. Of course, he wasn't just a wrestler, he founded NOAH, and led it to its peak in the mid-2000s, when it was arguably the best federation in the world, and definetly in Japan. If there were a Mt. Puroresu, he would be on it with Rikidosan, Baba and Inoki"
Rating: 10.0
Sentiment: 0.3730476190476191
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: JokeyZockeywrote on 16.09.2019:[10.0] "Der zweitbeste Wrestler aller Zeiten. Diese Bezeichnung soll auf keinen Fall etwas von Misawas Fähigkeiten entwerten, aber für mich persönlich stand er einfach immer ein winziges Stück hinter Kobashi. Dennoch war Misawa einfach etwas einzigartiges, er hatte eine Aura, eine Präsenz im Ring wie kaum ein Zweiter. Er gab alles, seinen Körper, seine Seele, sein Herz für das Wrestling und erschuf damit eine beispiellose Legacy. Die meisten 5-Star-Matches der Geschichte, unzählige zeitlose Klassiker, ein Theme Song der stets für Gänsehaut sorgt, Misawa hatte einfach alles. Es ist die wohl größte Tragödie der Wrestling-Geschichte, dass er uns unter solch unglücklichen Umständen so früh verlassen musste, 10 Jahre ist es bereits her und man merkt einfach dass das Wrestling an jenem Tag einen großen und wichtigen Teil seiner Existenz verloren hat. Doch der Emerald Emperor wird für immer in unseren Herzen weiterleben, wir werden ihn und seine Legacy nie vergessen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Residentwrote on 12.08.2019:[10.0] "I have only seen a few of his matches, but he is one of the best wrestlers I've ever seen. He was the first to do a bunch of moves and so great in the ring from what I saw. Also, my favorite wrestler to play as in the All Japan wrestling video games. Love his move set."
Rating: 10.0
Sentiment: 0.40714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: FrozenOnewrote on 16.06.2019:[10.0] "The greatest Japanese "ACE" there has ever been and ever will be. Better than Jumbo, Inoki, Tanahashi, Okada, Miyahara, etc... Misawa never had the charisma of Kobashi, or the intensity of Kawada, but he possessed the technical ability no wrestler has ever had. He didn't need to be a flashy or charismatic babyface because that wasn't his role. Misawa was simply the emotionless, stoic badass that could take countless amounts of punishment, but would never stay down. There's a reason why he was rarely beaten. You could drop Misawa on his head over and over again, but he would always be able to find a way to win. His selling is just unreal, his storytelling is quite frankly otherworldly, and his offense is some of the greatest offense you will ever see in professional wrestling. Those forearm/elbow strikes were just fucking lethal man. The greatest Triple Crown Champion to ever live."
Rating: 10.0
Sentiment: 0.2694592988710636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: PuroresuLoverwrote on 13.05.2019:[10.0] "What I need to say? We're talking about Mitsuharu Misawa, goddamit! This is one of the most creative wrestlers of all time, he mixes the Junior with the Puroresu Style and I simply LOVE that! Kaito Kiyomiya is so right in having this legend as his hero. Thank you for everything, Misawa, we miss you."
Rating: 10.0
Sentiment: 0.4776785714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ZestyZuluWarriorwrote on 08.05.2019:[10.0] "He is tied with Kenta Kobashi as my favorite wrestler of all time. It is not a coincidence that he is the highest rated wrestler on this site AND the top 2 highest rated matches on this site involve him. His matches with Kenta Kobashi are some of my favorites. They were hard hitting and brutal but never dragged. This man went balls to the wall every night and delivered"
Rating: 10.0
Sentiment: -0.041666666666666685
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: The Sick Lebowskiwrote on 26.04.2019:[10.0] "Gehört für mich neben Rikidozan, Inoki und Baba zu den vier einflußreichsten Personen des Puroresu. Als Wrestler Weltklasse mit unzähligen starken Matches. Die Gründung und Führung von NOAH war dann sein von ihm wohl etwas ungewolltes Sahnehäubchen. Hier geht an zehn Punkten nichts vorbei."
Rating: 10.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: zephyrwrote on 16.03.2019:[10.0] "I have no idea what to even say about Misawa. Like many others, I'd have to choose between him and Kobashi if you asked me to name the greatest wrestler of all time. Tremendous."
Rating: 10.0
Sentiment: 0.611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Aurtletheturtlewrote on 11.03.2019:[10.0] "To put it simply. Mitsuharu Misawa is quite possibly the greatest professional wrestler in history who excelled in every aspect of the trade. Misawa is perhaps best known for the sheer ridiculous consistency of his in-ring work which spans decades and has some of the most unbelievable rivalries and competitions, in his catalogue of work Misawa has classics that will never be forgotten and heights that very few have ever reached. Mitsuharu Misawa's memory will live on forever. We love you Misawa-San."
Rating: 10.0
Sentiment: 0.1994191919191919
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: LandonRyanWyattwrote on 27.01.2019:[10.0] "Definitely the greatest Japanese wrestler of all time. Misawa was the cream of the crop in All-Japan, and no one had/has ever done it any better. A true legend, icon and inspiration in the business. One of the greatest wrestlers of all time, anywhere."
Rating: 10.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: JEK 1991wrote on 31.12.2018:[10.0] "Personally I wish he wrestled more in North America. He only wrestled 5 times there. he was exciting to watch and one of best Japanese wrestlers of all time. Too bad he died in the ring. RIP"
Rating: 10.0
Sentiment: 0.15714285714285717
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Mitsuharu Misawa was one of the best who ever stepped into the ring. His matches are legendary, and deservedly so; many people consider his June 1994 match with Toshiaki Kawada to be 'perfect' and the best match in wrestling history. Misawa's legacy will be as the cornerstone of All Japan in the 90s, and of the founder of Pro Wrestling NOAH."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: LockeJVwrote on 03.07.2018:[10.0] "Misawa's battles with Kawada, Kobashi and Taue stood alone on top of the wrestling world for nearly two decades, and only now in 2017-2018 are certain competitors beginning to challenge their standing.  Misawa was the Ace of All Japan for a decade during what many consider the greatest era of pro-wrestling.  From his time as TIger Mask II to his upset over Jumbo, to multiple Triple Crown and GHC title reigns, to the devastating finishers he innovated, calling Misawa the greatest worker and technical wrestler of all-time is far from controversial."
Rating: 10.0
Sentiment: 0.24702380952380953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Paul Allainwrote on 26.10.2017:[7.0] "A pioneer of japanese wrestling that made memories in millions of fans. You honestly have to deduce some points, as his last five years or so were noticeably lazier and less coordinate, but he remains an exceptional wrestler with a magnetic aura that will perdure."
Rating: 7.0
Sentiment: 0.22000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: LegibleToe762wrote on 16.10.2017:[9.0] "He literally gave his life to puroresu and, towards the end of his career, the matches he had in the preceding years ended up almost destroying it. He held AJPW up as their ace and founded one of the Top 5, probably Top 3 puroresu companies of all time in NOAH. His in-ring skill was through the roof, one of the GOATs in that department. The only criticism I have with Misawa was his lack of facial expressions or, seemingly, charisma. It's hard to connect with him when he didn't seem to show much personality. Other than that, a true legend."
Rating: 9.0
Sentiment: 0.10370370370370369
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "The best wrestler of all time, period. No one could have so many legendary matches. He is puroresu incarnate."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ZumaZumawrote on 02.10.2017:[10.0] "Probably one of the greatest wrestlers to ever live. His sheer ability to have an amazing match under any circumstances was above and beyond amazing. RIP GOAT"
Rating: 10.0
Sentiment: 0.3893939393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: taabr2wrote on 10.09.2017:[10.0] "Mitsuharu Misawa was the Ace of simply put the greatest period of in-ring wrestling by a company ever. He then started up one of the few companies in Japan that was actually a legitimate challenge for the big two of All Japan and New Japan."
Rating: 10.0
Sentiment: 0.15606060606060607
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: TheBrainlessRobotwrote on 18.08.2017:[10.0] "One of the absolute greatest of all time. The matches that he puts on are crazy good, and if not for him we could not have the likes of CM Punk or Daniel Bryan. Rest in peace."
Rating: 10.0
Sentiment: 0.32499999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: tykechandlerwrote on 13.05.2017:[10.0] "Very obviously one of the greatest wrestlers ever, if not the best. He is my personal favorite. Every match is a joy to watch. If a Mt Rushmore of pro wrestlers were to exist, he would absolutely be a consensus choice to be on it."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Blood Pumpwrote on 19.04.2017:[10.0] "What needs to be said about AJPWs crown jewel that hasn't already been said? Misawa's recognized as the greatest ever by many and its easy to see why. While I don't give as much credence to Dave Meltzer as others it says something that he has, bar none, the most five stars and even one of the scant few 'six' stars from the journalist. Even before he became the mega star AJPW needed he was excellent in ring. Many of his as Tiger Mask is a good example of how good he was. I will say I like Tsuruta more, but its pretty damn close to equal for me."
Rating: 10.0
Sentiment: 0.46794871794871795
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ChilliDogzwrote on 19.02.2017:[10.0] "So Many 5 Star matches, too many to watch. What a legend, it is sad, however, that is own baby, Pro Wrestling NOAH, has been destroyed and almost ruined by the success of Current New Japan and the leaving of SUZUKI-GUN."
Rating: 10.0
Sentiment: 0.21948051948051953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: TrevPuroFanwrote on 14.02.2017:[10.0] "Can't believe he's gone for 6 years now. Misawa was one of a kind. The total package imo. He could wrestle, had super stiff elbows, had a few amazing moves and the most important of them all his inring psychology was fantastic. Miss you Misawa-san."
Rating: 10.0
Sentiment: 0.2687830687830688
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: AJfan83wrote on 14.02.2017:[10.0] "Probably the best wrestler of Japan history, just remove the trolling that give 0 with ''ILoveRomanReigns'' nickname, it's just a troll."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Chekerwrote on 06.02.2017:[10.0] "There's not much more to say about the legendary Misawa. A wrestler ahead of his time, put on matches that still hold up by today's standards."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Puro Spiritwrote on 01.12.2016:[10.0] "One of the greatest in the history of pro wrestling ..... arguably the greatest ..... an incredible career filled with classic matches ..... gone but never forgotten."
Rating: 10.0
Sentiment: 0.6933333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Chak95wrote on 06.09.2016:[10.0] "The Ace, Mr Triple Crown, him and Kobashi are the greatest of all time, he's had and absurd number of 5 star matches, and has probably the best move set in wrestling history, and he just oozes charisma, he is the complete package."
Rating: 10.0
Sentiment: 0.28
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: AriesMarkwrote on 20.06.2016:[10.0] "Probably one of the greatest, if not THE greatest wrestlers of all time. His match with Toshiaki Kawada for the AJPW Triple Crown at the 1994 Carnival of Champions was my favourite match of all time, and nothing has yet to top it. Misawa has almost in a way ruined wrestling for me because of the fact that I hold so many of his matches in such a high standard."
Rating: 10.0
Sentiment: 0.45142857142857146
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: jboyaquarwrote on 20.05.2016:[10.0] "The self-assuredness, timing and class are in a league almost in his own. After a seamless transition from junior to heavy he went on to be the Ace of two different promotions from 1992 to his unfortunate passing seventeen years later. After, reportedly, Mrs. Baba's lack of commitment to the product he went on to found a promotion that was at the top of the Japanese scene throughout the mid 2000's. My only drawback would be booking issues that eventually soured the mainstream from the NOAH product."
Rating: 10.0
Sentiment: 0.018181818181818177
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: prowrestlingisrealwrote on 10.05.2016:[10.0] "Misawa is one of the greatest pro wrestlers of all time, Innovative, great ring skills, and a lot of 5 star matches."
Rating: 10.0
Sentiment: 0.7666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Zedwrote on 09.05.2016:[10.0] "Wenn man sich mit dem Puroresu der 90er beschäftigt hat und den Namen Mitsuharu Misawa hört fällt einem gleich nur dieses eine Wort ein: Legende. Seine ruhige No-Nonsens Art und sein können hat die Fans begeistert, er war wahrscheinlich der Japaner mit den meisten bedeutungsvollsten Matches aller Zeiteten, wenn man Wert auf die Meltzer Sterne legt(Ich nicht).  Misawa war einfach die Perfektion des Puroresus und des Strongstyles, sein Finisher wird bis heute gefürchtet und sein Name schallt auch heute noch durch die japanischen Hallen. Meiner Meinung nach der bedeutenste Wrestler aus Japan den es gab, neben Keiji Mutoh."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Jobbswrote on 02.05.2016:[10.0] "This guy is one of the best ever! He could mix it up with anyone and just dominated AJPW as their ace in the 90s. He's had some legendary matches as well and his match vs Kobashi on March 1, 2003 in NOAH is my absolute favorite. Just a superb performer and one that will be remembered for generations. R. I. P. Misawa"
Rating: 10.0
Sentiment: 0.74
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: NastyYaffawrote on 15.04.2016:[10.0] "One of the absolute greatest wrestlers of all-time. Misawa was so charismatic, the perfect ace figure, and he has been a part of some of the greatest matches ever. The best Japanese wrestler of all-time, and the 2nd best wrestler of all-time, in my opinion. Misawa = The man."
Rating: 10.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: richeyedwardswrote on 15.03.2016:[10.0] "To put quite simply the best wrestler who has ever lived. Nobody has had more great matches, and the only people comparable to him are jumbo, kawada and kobashi. thank you Misawa for giving your life for pro wrestling, rest in peace emerald warrior."
Rating: 10.0
Sentiment: 0.45999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ApexOfEvolutionwrote on 27.02.2016:[8.0] "Im Ring absolute 10 Punkte. Verbindet den Strongstyle hervorragend mit technisch einwandfreien Wrestling. Das ihm dieser Stil irgendwann selbst zum Verhängnis geworden ist, ist natürlich tragisch. Wenn ich mir Kämpfe von ihm ansehe bin ich immer überrascht, wie over er beim Publikum war. Für mich ist da so gut wie kein Charisma und auch keine Interaktion mit der Crowd. Vielleicht verstehe ich aber auch nur die japanische Mentalität nicht wirklich."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: meatrockit83wrote on 26.02.2016:[10.0] "One of the all time greats (my personal #2 all time).  His workrate was practically unmatched.  So sad he went the way he did as his style and his pace took its toll in the end.  In terms of the all-time greats in Japan, Misawa should be mentioned along side Rikidozan, Inoki, and Baba as the "big 4. ""
Rating: 10.0
Sentiment: -0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: MrPogowrote on 19.02.2016:[10.0] "Was soll man zu dieser Legende schon groß sagen? Er war nicht nur einer der technisch besten Wrestler, nein, er war wohl auch der härteste Worker aller Zeiten. Keiner hat so viel eingesteckt wie er und ist trotzdem, bis zu seinem tragischen und viel zu frühern Ableben, immer wieder zurückgekommen. Er brauchte nicht rumschreien, um einen Pop von der crowd zu kriegen. Durch seine überragenden In-Ring-Fähigkeiten, aber auch durch die stoische coolnes, die er ausgestrahlt hat, war er in Japan so over wie vlt sonst nur noch ein Kobashi. Meiner Meinung nach mit deutlichem Abstand zu Kobashi und Kawada der beste der 4 corners of heaven und somit auch der beste Wrestler aller Zeiten. Wunderschöne suplessen, die wohl glaubhaftesten Strikes die man je im Wrestling gesehen hat, überzeugendes selling und in-ring-psychology, high-flying, brawling; es gab NICHTS, was Misawa NICHT konnte und es wird wohl niemals wieder einen Wrestler wie ihn geben. RIP Emerald Emperor."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Armbarmaniawrote on 01.01.2016:[10.0] "Die Größte Legende des Japanischen Wrestling und höchst wahrscheinlich auch des ganzen Sports. Am Anfang seiner Karriere als Tiger Mask Nachfolger ein großes Erbe angetreten und konnte sich selbst und seine Guten Fähigkeiten Bestätigen. dann kamen für ihn die Hochzeiten in den 90ern wo er zum Besten Wrestler der Welt wurde und auch zur Legende. Völlig Verdiente Vierundzwanzig 5* Matches und hinterließ nach seinem Tod eine große Lücke"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Kevin434wrote on 06.08.2015:[10.0] "Misawa...  Misawa... Misawa... Jedes mal Gänsehaut wenn "Spartan X" gespielt wird, wenn er in die halle kommt und alle das chanten... schön... oh stimmt ich muss ja bewerten, also:   Was soll ich schon sagen, er ist für mich DER BESTE aller Zeiten, nicht nur aus Japan, der beste aller Zeiten! Was der im Ring geleistet hat war schon einzigartig, er hat sich sein ganzes Leben den arsch nur fürs Wrestling aufgerissen, und musste dafür leider mit seinem Leben bezahlen, R. I. P. Er konnte mit absolut JEDEM ein gutes Match worken, er war einzigartig, einfach klasse und sowass wird es wahrscheinlich nie mehr in der Art geben. So viele 5 stars... so ein verdammt gutes Storytelling... DANKE, Mitsuharu, wir danken dir für alles was du für diesen Sport getan hast, deine unvergesslichen Matches mit Kobashi, Kawada und co. werden wir immer in Erinnerung behalten. Danke!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Wazzerwrote on 06.05.2015:[10.0] "Stiff, and absolutely awe inspiring in-ring style and moveset. Larger than life character and put on some of the greatest matches I've witnessed.  Not to mention giving Samoa Joe one of the stiffest elbows I've ever seen to the back of the head"
Rating: 10.0
Sentiment: 0.24761904761904763
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Viper99wrote on 25.04.2015:[10.0] "Mit Kobashi wohl eine der japanischen Legenden schlechthin. Er war gut im Ring und konnte die Massen bewegen! Wirklich traurig das er so früh von uns gegangen ist. R. I. P"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: eldenaaaaawrote on 25.04.2015:[10.0] "He started Pro Wrestling NOAH, and give guys like KENTA, Morishima, Marufuji and so many more a stage to perform on. A man who influenced the likes of Chris Hero and CM Punk in America. Misawa passed away in 2009 rip without a doubt the best puro wrestler."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Deviantwrote on 25.01.2015:[10.0] "Talented man and an innovator. It's quite unfortunate that he died after a belly-to-back suplex, though, but after years of untreated back injuries and concussions, it was sadly inevitable.   He's started a great Japanese promotion in Pro Wrestling NOAH and may his legacy live on."
Rating: 10.0
Sentiment: 0.1623376623376623
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: yanuswrote on 22.11.2014:[10.0] "One of the best in-ring performers of all-time. Misawa was almost always very calm and collected in the ring, almost stoic; in that regard he can almost be seen as the perfect japanese male."
Rating: 10.0
Sentiment: 0.47800000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ilovewrestlingwrote on 13.07.2014:[10.0] "Man muss nicht viel zu Misawa sagen. Was er in den 90ern auf die Beine gestellt hat ist einfach unglaublich. Aber selbst bis in die Mitte der 2000ern konnte mich Misawa mit seinen Matches noch wirklich begeistern. Leider wusst er nicht, wann er einen Schlusstrich unter seine großartige Karriere ziehen musste und so ist er leider viel zu früh von uns gegangen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Matzinhowrote on 30.03.2014:[10.0] "Er hätte einfach aufhören sollen. Was er zum Schluss abgeliefert hat war sowieso nicht mehr das, was ich mir beim Namen Misawa gewünscht habe. Für mich einer der verkanntesten Wrestler überhaupt, wegen Dave Meltzer. Meltzer hat seit jeher seine Ahnungslosigkeit ins Internet gestreut und damit ein Bild von japanischem Wrestling geprägt, das dem eines Menschen entspricht der sich nur japanische Wrestlingmatches ansieht und sonst keine Ahnung hat. Ich bin immer wieder verblüfft, wieviele Nachahmer er damit international findet. Wegen Meltzer und seinen fragwürdigen Ratings, die aber irgendwie kaum jemand hinterfragt der sich für "smart" hält, haftet Misawa der Nimbus des Allerbesten an. Für mich ist und war er immer die Nummer 3 bei den Four Corners, eindeutig mit viel Abstand hinter Kawada und knapp hinter Kobashi. Ein exzellenter Wrestler, der "King's Road" verkörpert hat und irgendwie mit jedem in jeder Gewichtsklasse ein gutes Match wrestlen konnte."
Rating: 10.0
Sentiment: 0.10714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: fibbingtonwrote on 19.03.2014:[10.0] "Is there much I need to say? Possibly the greatest in-ring performer in history. So many five star matches."
Rating: 10.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: JourneybyTrainwrote on 21.12.2013:[10.0] "My favorite wrestler ever. Hellacious looking offense, willingness to take huge bumps, perfect structuring and selling, great presence, absurdly large amount of great matches, he even has a really bad ass jacket. Also the "last 5 years" thing is ridiculous especially saying his TMII run was better, adapted his matches around his character, striking and bumping really well."
Rating: 10.0
Sentiment: 0.2985347985347986
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Alex Maedawrote on 05.09.2013:[10.0] "Der vielleicht beste In Ring-Performer aller Zeiten. Großartiger Sportler, der wörtlich sein Leben für das Wrestling aufgab. Überlebensgroße, unsterbliche Legende, die für immer in den Herzen aller Puro-Symphatisanten weiterleben wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Lecterwrote on 05.06.2013:[9.0] "The last 5 years of his career saw him put on a number of frustratingly unsatisfactory bouts, and it's a tragedy that he felt pressured into having to keep going despite wanting to hang up the boots. That being said, his '80s and '90s stuff, plus a few select matches from the oughts (especially the big GHC match vs. Kobashi) is about as good as it gets."
Rating: 9.0
Sentiment: 0.016666666666666646
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: General Incompetencewrote on 11.05.2013:[10.0] "The absolute best that Japan has to offer, possibly the greatest to ever step into the ring."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Kenshin Uesugiwrote on 15.02.2013:[10.0] "Misawa stand als eines der Symbole für eine Zeit bei AJPW und dem Puroresu allgemein in den das In-Ring Produkt nirgends auf der Welt zu übertreffen war, jedenfalls was konstanter hohe Leistung angeht. Seine ruhige Art, den im Gegensatz zu Kawada und Kobashi war er nie ein Tokun-Schreier, die Art und Finesse fast alles was im Wrestling so gibt zu beherrschen, macht ihm zum Emerald Emperor. Für mich ist es eigentlich ziemlich egal, ob Metzler ihm 35 oder 25 ***** Matches geben hat, das macht Misawa nun auch nicht größer oder besser und hat überhaupt keinen Einfluss. Ihm umgab schon zu aktiven Hochzeiten eine Aura des Besonderen, einer lebenden Legende, ein Mann der ebenso wie Kobashi von den Fans geliebt wurde und so manches Mal nach vorne gepeitscht wurde. Mit fortschreiten Alter wurde aber dann ab 2005 einem klar das der Mann eigentlich körperlich nicht mehr in einem Ring gehört, trotz immer noch überraschender Leistung. Trotz des Unfalltodes von ihm bleibt, sein Stil und Art wie er mit seinem Kollegen ein Match führt und aufbaut wegweisend für das Wrestling allgemein. Er bewies das zum einem tollen Match einfach nur zwei Wrestler braucht die sich den Arsch aufreißen um die Bude zu rocken. Das ist Mitsuharu Misawa."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Cobrawrote on 14.12.2012:[10.0] "The word legend gets thrown around a lot... but a legend is exactly what Mitsuharu Misawa is."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Leonewrote on 01.07.2012:[10.0] "A fantastic wrestler, promoter and innovator - Misawa had great in-ring psychology, was a great storyteller in the ring, and I like the fact that he could have finished a match with seemingly any move (and after several occasions when he accidently knocked out opponents with his elbows, it makes very exciting wrestling).  Some of the bumps he took in the ring were enough to make everyone cringe in their seats, and made all of us wonder: 1. Why he wasn't paralysed on numerous occasions, and 2. how he kept coming back for more!  He did it all to put over his opponents and make the fans happy.  When he died, it was incredibly tragic.  To say this least, he was the Anti-Cena, and just as popular for the right reasons."
Rating: 10.0
Sentiment: 0.260765306122449
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ARIZAwrote on 15.06.2012:[10.0] "Neben Kobashi war er der Beste in Japan. Natürlich waren die letzen Jahre vor seinem tragischen Tod nicht mehr auf einem Niveau mit dem davor gezeigten, doch für sein Lebenswerk führt kein Weg an den 10 Punkten vorbei."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Fighter Daronwrote on 02.02.2012:[9.0] "He'd be the second best of the four pilars, but not far away from Kobashi."
Rating: 9.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: WhiteHummerDriverwrote on 16.09.2011:[10.0] "Für mich DIE Puro-Legende überhaupt! Großmeister des King's Road Style der AJPW in die goldenen 90er geführt hat. Manchmal für meinen Geschmack fast ein bisschen ZU unbesiegbar gebookt aber langweilig wars sicher nie wenn er im Ring stand. Nur in seinen späteren Jahren hat er körperlich und daher auch wrestlerisch arg nachgelassen. Letztendlich starb er leider viel zu früh im Ring, weil er nie ne Auszeit genommen hat um seinen Nacken mal zur Ruhe kommen zu lassen und dachte er müsse mit fast 50 noch Backdrops nehmen.  Trotzdem werde ich immer eine Gänsehaut bekommen, wenn ich ein altes Puro-Match anguck und "Spartan X" als Einzugsmusik ertönt, und ich werde mich immer an ihn erinnern als den Typ, der uns einen Arschvoll der geilsten und heftigsten Matches der Pro Wrestling Geschichte hinterlassen hat.  Rest in Peace Emerald Emperor"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Roseswrote on 24.05.2011:[10.0] "Misawa war wahrscheinlich der BESTE Japanische Wrestler der jemals einen Ring betreten hatte. Seine Qualitäten waren unerreicht und er starb genau dann als ich anfing mehr von Ihm sehen wollte, um genau zu sein an dem Tag als ich zum ersten mal meine Freundin traff, ich verbinde inzwischen mit ihm soviel Emotionen das mir jedesmal die Worte fehlen wenn ich es lese dass er dort starb wo er lebte, und zwar im Ring den er lebte für diesen Sport und gab jedem Fan das was er wollte. Ohne Ihn wäre Japanishces Heavyweight-Wrestling nicht einmal halb so Interessant geworden wie es in den 90 Jahren war, seine Karriere ist mit Siegen, Titeln und Awards übersät die für sich sprechen. Seine 5***** Matches lesen sich wie ein Who ist Who? Der Wrestlingszene und Als Promoter und Gründer von NoaH hat er etwas Geschaffen was mich überhaupt erst vom Mainstream gelöst hat, ohne Ihn wären Ligen wie RoH oder WxW eine weit entfernte Fantasie guter Qualität. Er brachte immer 100% und hatte wohl auch die Größte Ausstrahlung ohne ein Mikrofon in der Hand zu halten. Ich werde Ihn vermissen und Ihn immer mit meinem Glücklilchsten und meinem Traurigsten Tag verbinen v. v R. i. P. Misawa"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Rated R Champwrote on 09.12.2010:[10.0] "Der Mann konnte im Ring einfach zaubern. Zu Lebzeiten schon längst die wohl größte japanische Wrestling Legende und zu (wenn ich richtig gezählt habe) 24 *****-Matches muss man wohl nicht mehr viel sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: TigerDriver91wrote on 16.10.2010:[10.0] "Wenn es um die Frage: "Wer ist der beste Wrestler allerzeiten" geht, führt kein weg an Misawa vorbei.  Er ist ganz klar, mit großen Vorsprung der beste Wrestler allerzeiten. Exzellenter Techniker, der wirklich aus JEDEM ein gutes Match raushauen kann. Kann den High Flyer Stil gehen (Vorallem als Tiger Mask war er wirklich stark),  natürlich den technischen und of course den Stiffen.  Misawa ist einfach der beste Worker den es jemals gab und geben wird."
Rating: 10.0
Sentiment: -0.020000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Berlin Dragonwrote on 18.09.2010:[10.0] "Eine der größten Legenden des Wrestling-Business. Er konnte wie Kobashi mit fast jedem ein gutes Match zeigen und mit Kawada oder eben Kobashi die größten Klassiker , die ich bis jetzt gesehen hab , zeigen. An seine Anzahl an 5* matches wird wohl auch kaum mehr jemand herankommen. R. I. P Misawa Mitsuharu."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Manolowrote on 20.07.2010:[10.0] "Mitsuharu Misawa ist nicht mehr und nicht weniger als der beste Wrestler aller Zeiten.  Japan hatte in den 90igern insbesondere mit Kobashi, Kawada und dem von mir sehr geschätzten Hashimoto so mit das Beste, was es je im Wrestling gab.  Aber keiner kam an Misawa ran.  Leider starb der Größte aller Zeiten viel zu früh.  Sein Tod traf mich, wie es noch bei keinem anderen verstorbenen Wrestler vorher der Fall war.  Wenigstens starb er bei dem, was er über alles liebte.  Farewell, my hero !  Ruhe in Frieden, Misawa-SAN."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: VerticalDropBrainbusterwrote on 12.06.2010:[10.0] "Misawa soll kein einziges 5 Sterne Match gehabt haben? Ich bitte dich, ich musste lautstark lachen.  Gut, Meltzer hatte bei einigen 5* Matches "übertrieben", aber trotzdem hat Misawa sehr viele 5* Matches.  Egal, Misawa ist DER Inbegriff für Puroresu. Misawa konnte im Ring richtig gut überzeugen, konnte jeden Stil mitgehen. High Flying, Technik, Powerhouse, stiffness, einfach alles. Konnte mit fast jedem ein gutes Match zauberm"
Rating: 10.0
Sentiment: 0.18
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: RickRollwrote on 23.03.2010:[10.0] "Der beste. Der beste Wrestler allerzeiten. Kein Bryan Danielson, kein Kobashi (auch wenn Kobashi nur knapp "schlechter" ist als Misawa ist), kein Kawada, kein Tsuruta kann Misawa das Wasser reichen. Natürlich sind Wrestler wie Tsuruta, Kawada, sowie Kobashi gut, doch ich mag Misawa einfach mehr. Technisch ist er wohl einer der besten Wrestler, hat zusammen mit Chris Hero wohl eines der größten Movesets, kann alle Stile gehen, ist stiff wie sonstwas (was man aber nur selten hört, da das Publikum ja sehr laut ist). Als Tiger Mask II war er ein klasse High Flyer sowie guter Technischer Wrestler, doch als er demaskiert wurde, wurde er Mitsuharu Misawa, den Mann den wir alle lieben. Alle seine Matches erzählten immer wieder eine neue Geschichte. Seine Rivalitäten zwischen Toshiaki Kawada, Kenta Kobashi und Jumbo Tsuruta waren die besten Fehden allerzeiten. Seine Matches waren die besten allerzeiten. Sein Match von 1997 (20/1/1997) gegen Kobashi war das beste Match allerzeiten, da kommt natürlich nicht das Match zwischen Kobashi von 2003 ran, nie. Misawa ist/war einzigartig, es wird niemals mehr solch ein Wrestler wie er geben. Er hat den Sport geliebt, auch wenn man den Fighting Spirit von ihn nicht so übel ansieht wie Kobashi. Er liebte diesen Sport einfach und er ist auch wegen dem Sport gestorben. Wirklich, weniger als 10 Punkte sind fast schon lächerlich, 9 gehen noch inordnung. Wie dem auch sei: Rest in Peace, Misawa-Sensei."
Rating: 10.0
Sentiment: 0.04857142857142858
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Hu-Manwrote on 15.01.2010:[10.0] "Habe Misawa durch die 5-Star Matches von Melzer kennengelernt und bin einfach nur beigeister. Ein großartiger Wrestler, der unglaublich viele starke Matches gezeigt hat. In der Vielzahl wohl für die Ewigkeit unübertroffen. Zählt für mich mit Flair, Angle, Kobashi und dem Hitman zu den besten aller Zeiten. RIP"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Super Dragonwrote on 25.12.2009:[10.0] "Misawa war ganz klar ein Wrestler den es so nie wieder geben wird, was bleibt mir noch zu sagen er war fürs Wrestling geboren und leider ist er fürs Wrestling auch zu früh vestorben."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Mick Funkwrote on 12.11.2009:[10.0] "Zu Hochzeiten einfach brilliant. Etwas anderes als 10 Punkte sind trotz zuletzt schwächerer Leistungen einfach untertrieben."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Rancorwrote on 25.10.2009:[10.0] "Unglaublich tragisches Ende, in den Neunzigern das Maß aller Ding. Volle Punktzahl für das Lebenswerk."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: THE GAME 4-EVERwrote on 13.10.2009:[10.0] "Gibt die 10 Punkte fürs Lebenswerk. Sicherlich die letzten 5 Jahre waren nicht mehr stark aber immernoch gut. In den 90ern das Maß aller Dinge, Matches gegen Kobashi , Kawada , Tsuruta und so weiter muss man gesehen haben."
Rating: 10.0
Sentiment: -0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Matt Mackswrote on 23.09.2009:[10.0] "Misawa war einer der großartigsten japanischen Wrestler aller Zeiten, dessen generelle Lethargie der letzten Jahre seiner Karriere keinen Abbruch daran tun, dass seine Matches gegen Kenta Kobashi, Toshiaki Kawada, Jumbo Tsuruta und viele andere Stars zu dem Besten gehören, was man als Wrestlingfan gesehen haben kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: hatebreederwrote on 07.09.2009:[10.0] "DER Wrestler der 90er Jahre neben Kobashi und Kawada. Dazu der Gründer von Pro Wrestling NOAH. Mehr muss man nicht sagen. Überragender Mann. Rest in Peace, Misawa-San."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Switchbladewrote on 07.08.2009:[10.0] "Großartiger Wrestler! 10 Punkte für sein Lebenswerk, einer der besten aller Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Aquifelwrote on 30.06.2009:[10.0] "Absolute Legende. Sicherlich hat er, aufgrund seines Alters, nachgelassen, aber auch das kann an den 10 Punkten nichts ändern, nicht bei eínem Mann, der so viele Klassiker gewrestlet hat, der so viel Einfluss auf das Wrestling hatte. Möge er in Frieden ruhen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Sabu316wrote on 27.06.2009:[10.0] "Habe meine Wertung hiermit geändert. Bewerte nun das Lebenswerk von ihm und da spielen die letzten Jahre eine zu kleine Rolle um ihn von der 10 abzuwerten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: UltimatePwrote on 21.06.2009:[10.0] "Gründer von NOAH, einer der erfolgreichsten/besten/stiffsten Wrestler in diesem Business bzw. war er das , dem wahrsch. so schnell kein Wrestler gleich kommen wird. Mehr als 10 Punkte von meiner Seite!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Ryklon Stephenswrote on 18.06.2009:[10.0] "Es gibt eigentlich nichts mehr zu sagen was über Misawa hier nicht schon gesagt worden ist. Er gehört zu den besten was Japan an Wrestlern zu bieten hat und das ist schon ein verdammt hohes Niveau. Doch viel wichtiger ist das er mit der Gründung von NOAH eine Welt geschaffen hat, für die Großen des Sports und für die, die es noch werden wollen. Er hinterlässt ein Erbe das sich schwer tragen lässt. Ruhe in Frieden Mitsuharu."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Fountain of Misinformationwrote on 17.06.2009:[10.0] "Ich sehe mich aufgrund seines frühen Todes gezwungen meinen Kommentar und meine bisherige Bewertung (zehn Punkte abzüglich zwei Punkte aufgrund der Tatsache dass die letzten Jahren nicht mehr so toll waren) zu ändern, weil ich nun sein "Lebenswerk" bewerte und deshalb geht kein Weg an dieser Wertung vorbei."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: AK-Styleswrote on 16.06.2009:[10.0] "Unglaublicher Mann. Ein Puro-Legende. Im Ring, sowie ausserhalb. Ein Innovator dieses Sportes. Ruhen in Frieden, Misawa-San."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Excellence of Executionwrote on 14.06.2009:[10.0] "Ich sage nur eins: 24 FIVE STAR MATCHES! Niemand war an mehr Five Star Matches beteiligt als Misawa. Lediglich Kenta Kobashi ist mit 22 Five Star Matches nah dran. Ansonsten klafft da eine beträchtliche Lücke - Zum Vergleich: Bret Hart und Shawn Michaels wurden je 2 Five Star Matches attestiert...... Misawa war zweifelsohne einer - wenn nicht sogar DER - beste Wrestler der Welt. Er ist eine absoloute Ikone der Wrestlingwelt und wer zu den Besten gehören will, muss dem Vergleich mit ihm wagen. Normalerweise müsste er 12 Punkte kriegen ;-) Es birgt einen kleinen Trost, dass sein Tod scheinbar plötzlich und im Ring kam - einer Umgebung, die mehr als alles andere das Schaffen von Misawa widerspiegelt. Doch leider musste auch er viel zu früh gehen ... oder auch nicht? Wer bin ich, um das zu wissen? Seine Name wird noch lange nachhallen. Denn auch im Tod ist eines sicher: Misawa IST eine Legende!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: anglejoewrote on 14.06.2009:[10.0] "Misawa wird für immer der beste Wrestler allerzeiten bleiben. Was er geleistet hat ist unerreichbar. Ruhe in Frieden! Danke für alles..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: The Excellent of Executionwrote on 14.06.2009:[10.0] "Er war immer einer meiner Lieblinge. RIP Misawa-sama"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: mugel 187wrote on 14.06.2009:[10.0] "Als Gründer von NOAH allein schon 10 Punkte verdient. Als worker hat er sich auch 10 Punkte verdient. Mit ihm ist eine Jpanische Wrestling Legende & Ikone von uns gegeangen. Er ist auf einer Stufe mit Karl Gotch & Jumbo Tsuruta! RIP Misawa-san"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Mankirawrote on 14.06.2009:[9.0] "Ein ganz Großer ist heute von uns gegangen :( Ich gebe Misawa 9 Punkte für viele fantastische Momente und einige klassiker Matches im grünen und blau/roten Ring. Rest in Peace, we will never forget you"
Rating: 9.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Eddiewrote on 03.06.2009:[10.0] "Auf einer Stufe mit Tsuruta und Kobashi einer der Puroresu Götter, die jedes Match genial machen, einfach 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Blazewrote on 02.05.2009:[10.0] "Absolute Legende, würdiger Tiger Mask Nachfolger, einer der Grundsteinleger des heutigen dynamischen Wrestlings, Erfinder einiger großartiger Moves, top Main Eventer und die Liste geht immer weiter. Sicher einer der Kings des Wrestlings, einer der Besten aller Zeiten. Hat zu dem mit Pro Wrestling Noah eine großartige Company geschaffen. Großartiger Worker, an dem das Business im Laufe der Jahre leider seine Spuren sichtlich hinterlassen hat."
Rating: 10.0
Sentiment: 0.28888888888888886
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: STRIGGAwrote on 19.10.2008:[8.0] "Einen Wrestler bewertet man bekanntermaßen nicht nur nach vergangenen Leistungen, sondern muss auch auf aktuelle Verdienste schauen. Dennoch ist Misawa eine absolute Legende und hat auch in diesem Jahrtausend noch gute Kämpfe dargeboten, weshalb ich unter Berücksichtigung der schwachen Leistungen in den letzten Jahren eine zwei gebe... er sollte wirklich langsam aufhören."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Baszdmegwrote on 07.09.2008:[10.0] "Absolute Legende und deswegen gibt es für die gesamte Karriere verdiente 10 Punkte."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: e-trom995wrote on 22.06.2008:[6.0] "Eine Wrestling Legende, die in letzter Zeit recht gut nachgelassen hatte."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: LexLuger4everwrote on 27.04.2008:[10.0] "Mitsuharu Misawa ist einer der besten Wrestler aller Zeiten und vielleicht mein All-Time Favourite aus Japan! Seine Matchserien gegen Tsuruta, Kawada, Kobashi, Marufuji und wie sie alle heißen gehören einfach zum Besten, was man jemals in einem Wrestlingring zu sehen bekam. Zudem ist er DAS Aushängeschild der goldenen 90er in Japan. Auch wenn er in den letzten Jahren ein wenig abgebaut hat, alles andere als 10 Punkte wäre ein Witz."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: AnFuwrote on 26.04.2008:[9.0] "Wahnsinnswrestler und für mich auf einer Stufe mit Kobashi. Heutzutage nervt er mich ein bisschen, aber er war klasse und es auch heute noch, zudem Besitzer einer der größten Wrestlinligen der Welt, fast die Bestnote!"
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Doerbenwrote on 10.04.2008:[9.0] "So, mit alternativen Bewertungsmöglichkeit ändert sich nun auch die Note die ich Misawa hier gebe - von 10 auf 9. Denn genau wie auch AnFu teile ich die Meinung von Exellence, finde aber auch das das Alter den Abzug bringt, weil ja auch die aktuelle Zeit in die Bewertung einfließt und die Sachen die er in letzer Zeit abliefert... sollte man besser verdrängen. Sobald er retired kommt aber eine 10 hierhin, für sein unglaubliches Lebenswerk."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Kaffoe 666wrote on 24.03.2008:[10.0] "Im Spätherbst seiner Karriere, sieht hoffentlich bald ein das die ME Zeiten vorbei sind... alles andere als volle Punktzahl würde ich aber NIE über das Herz bringen. Absolute Legende, Misawa hat einige meiner fav. Matches geworked!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: EvenflowDDTwrote on 26.02.2008:[8.0] "Ebenfalls eine Puro Legende in meinen Augen. Hab aber noch zu wenig von ihm gesehen um ne 1 geben zu können"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: D-Stylewrote on 07.12.2007:[8.0] "Hier musste ich lange überlegen: Auf Dauer gesehen natürlich die 1, aber in letzter Zeit (gerade gegen Joe) bietet Misawa allerdings Leistungen die schon fast 5 sind. Ich gebe dennoch die 2 weil er echt viel in seiner Karriere geleistet hat, was wirklich klasse ist. Trotzdem sollte er sich langsam zurückziehen."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: SternessDustOmegawrote on 05.12.2007:[8.0] "Obwohl er immer noch für ****+ Matches zu haben ist wirkt er "verbraucht". Zwischen Ž90 und Ž99 sicherlich der absolute Gott, heute "nur noch" Halbgott im Ring."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Carlito ICWwrote on 18.09.2007:[10.0] "Zwar längst nicht mehr so stark wie früher, doch einer der Legenden in Japan. Ich bin froh, dass es ihn gibt und das er NOAH gegründet hat. Danke Misawa."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: FiveStarwrote on 21.07.2007:[10.0] "Der Doktor des Pro-Wrestling: Zu seiner Hochzeit technisch und wrestlerisch das Maß aller Dinge. NIEMAND hat soviele MOTY-Kandidaten gewrestlet wie Misawa. Er war die Speerspitze der Super Generation und der hochwertigsten Pro-Wrestling Ära aller Zeiten (All Japan 1990-1999)... sein Vermächtnis kann auch durch seine aktuelle schlechte körperliche Verfassung nicht angerührt werden."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: ShakDragoonwrote on 24.06.2007:[10.0] "Eine absolute Legende des japanischen Wrestlings, die auch heute noch mit sehr guter Leistung überzeugt!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Kruemelwrote on 24.06.2007:[8.0] "Insgesamt natürlich 10 Punkte, keine Frage. Aber aktuell nur noch 8"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=541&gimmick=Mitsuharu+Misawa
Comment: Knurkselwrote on 24.06.2007:[10.0] "Ganz klar eine Legende, man kann echt nur jedem empfehlen sich mal alte AJPW-Sachen angucken, dann weiß man, was man vorher verpasst hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Willie 19200wrote on 03.02.2025:[10.0] "The best women's wrestler in the world and one of the best overall wrestlers in the world today. Her in-ring is unmatched in her division and her technical work is fantastic. She is an amazing worker and deserves more time in matches then she gets, she put on one of my favorite matches on a Wrestle Kingdom in less than 10 minutes, that shows how talented she is. Overall an absolutely amazing wrestler."
Rating: 10.0
Sentiment: 0.42777777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: wrestlingswiftiewrote on 29.01.2025:[10.0] "Best women's wrestler in the world, I've never seen a bad match from Mayu. Her improvisation ability is next level wizardry, and she's one hell of a technician."
Rating: 10.0
Sentiment: 0.10000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: LJAwesome 03wrote on 18.01.2025:[10.0] "My first time seeing Mayu in Action was at Wrestle Kingdom 19 and I was instantly hooked on her and went down a rabbit hole of her matches and I can safely say she's the GOAT! From her personality, her devastating moves and everything top to bottom about her as a wrestler is so awesome to see!"
Rating: 10.0
Sentiment: 0.16493055555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: bluexywrote on 12.01.2025:[10.0] "Simply one of the best, if not the best, wrestlers of her generation. No other woman is so consistently able to meet a moment and elevate it like Mayu does."
Rating: 10.0
Sentiment: 0.5125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: NiagraDriverwrote on 04.01.2025:[10.0] "She's like watching Neo in the matrix, she has mastered the artform of wrestling from the psychology, her timing and balancing chemistry with any wrestler. Its almost like its too easy for her now. I can't ever recall seeing a bad singles match from her."
Rating: 10.0
Sentiment: -0.13333333333333325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: StardomIconwrote on 02.01.2025:[10.0] "Mayu Iwatani is my personal GOAT. There are wrestlers that excel in in-ring skill and wrestlers that excel in charisma, but rarely do wrestlers excel in both. Mayu is one of the very few who does. My previous all time favorite was Rob Van Dam, but I think Mayu's character work and mic skills are significantly better than his. Shawn Michaels is probably the only other wrestler who I can think of with such a high level of in-ring skill and charisma, but I give the nod to Mayu for being so stable throughout her career and coming off as an awesome person in real life."
Rating: 10.0
Sentiment: 0.17569444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: FutureWrestlerCelebwrote on 01.01.2025:[9.0] "Mayu Iwatani is one of the best wrestlers in the world, especially in the Joshi (Japanese women's wrestling) scene, and her contributions to Stardom are legendary. Here's a rating breakdown: In-Ring Skills: 9.5/10 - Mayu's athleticism, precision, and ability to tell emotional stories through her matches are nearly unmatched. She seamlessly blends high-flying moves with technical wrestling. Charisma: 9/10 - Her unique charm and endearing personality make her a fan favorite, while her determination in the ring shows her fighting spirit. Mic Skills: 7.5/10 - Though not primarily known for promos, her genuine and heartfelt delivery resonates with fans, especially in Japan. Finisher Impact: 9/10 - The Two-Stage Dragon Suplex is one of the most beautiful and devastating moves in wrestling, perfectly reflecting her style. Overall Presence: 9/10 - Mayu has an aura of being a true ace, representing Stardom as one of its cornerstones and elevating women's wrestling globally. Overall Rating: 9/10 - Mayu Iwatani is a masterful performer and a true icon in professional wrestling, excelling both as a singles competitor and in elevating the prestige of Joshi wrestling worldwide."
Rating: 9.0
Sentiment: 0.27699999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: coleeeeeeewrote on 17.11.2024:[10.0] "Mayu Iwatani is arguably if not one of the best women's wrestler of all time. And, she is the main reason i was able to get into Stardom and still be watching it till this day, and became a fan of hers after i watched a match of hers against Utami Hayashishita. And , she is pumping out some of the best matches of the year"
Rating: 10.0
Sentiment: 0.6666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Pmurt2024wrote on 14.11.2024:"Mayu Iwatani, the Icon of Stardom, blends fearless high-flying with technical skill, captivating fans with her resilience and heart. A true legend, she embodies the passion and excellence of Japanese wrestling."
Rating: No rating found
Sentiment: 0.2125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Thenwoagedbadlywrote on 21.10.2024:[10.0] "I'm convinced I could show a Mayu match to any decent person and they would say, at least, two things: 1) She's really great at wrestling and 2) She's really loveable. That kind of instant impact just shows what a talent she is and the strength of the character she has created. She could have been a star in any era of joshi puroresu, has absolutely no weaknesses and even continues to add new notches to her belt (such as her being super heelish in 2020). Also, she's never really failed to deliver when the spotlight is on her, has carried Stardom on her back multiple times and set the stage for their most profitable period ever by crowning Utami the red belt champion (when she could have been a dick and not played ball). Long may she continue because the joshi puroresu scene will have a big hole in it when she retires."
Rating: 10.0
Sentiment: 0.14919786096256682
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: troyotawrote on 15.10.2024:[10.0] "In my opinion the greatest women's wrestler of all time. A lot of new fans only know her by her new stuff and her IWGP title reign, and while that reign has been great, Mayu's old stuff is even better, so i definitely recommend checking that out. Besides being an amazing wrestler she is an amazing person, and i'm sure that over the coming years we're gonna have many wrestlers debut who grew up watching Mayu."
Rating: 10.0
Sentiment: 0.40606060606060607
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: JoseNEOwrote on 09.10.2024:[10.0] "When all is said and done, I fully expect Mayu to be considered not just the greatest female performer in the history of this sport but also one of the greatest overall wrestlers ever. Her rivalry with Kagetsu is one of the greatest of all time, her best matches are some of the greatest of all time, and her character work the story she has been through to reach the point of being called the Icon of Stardom is one of the greatest of all time."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: BiosJoshiBarwrote on 08.10.2024:[10.0] "I don't think it is a stretch to say that Mayu is one of/ if not the greatest wrestlers to ever do it. She deserves all the 10s"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: dizziedwrote on 29.09.2024:[10.0] "Mayu is one of the greatest wrestlers ever (man or woman). I think there might be a dilemma with her whether to stay in Japan or to branch out to the United States like her contemporaries like Io Shirai, Asuka (Kana), Kairi, and recently Giulia have done. Her success can match the first 3 or it can be like Sareee aka Sarray where the WWE wasted a very good wrestler. Having a long reign as IWGP Women's Champion is probably enticing but the title has nowhere near the level of credibility that the AJW's WWWA World Women's Championship had in the 80's and 90's. The competition is nowhere near that level at this time. While Manami Toyota is arguably the greatest women's wrestler ever, the only thing that kept her from being absolutely the greatest women's wrestler was going to the United States and competing (although fair enough to say the competition in the United States was not good in the 80's and 90's). I think she should give it a chance but her success will be measured by her ability to connect with the American audience like Io, Asuka, Kairi, and even Giulia have."
Rating: 10.0
Sentiment: 0.29222222222222227
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: JordyJackswrote on 24.09.2024:[10.0] "The greatest female wrestler of all time. Nobody has consistently shown time and time again why they are held in such high regard. She can sell like very few others and has a very unique in ring style. Not only is this in ring work as a whole at the highest level possible but the high level of emotion that's put into every match is so easy to see. She truly leaves it all in the ring every time she steps between the ropes. Every match is part of the story of Stardom's Icon and I look forward to the story continuing!"
Rating: 10.0
Sentiment: 0.21159722222222221
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Cletxawrote on 27.08.2024:[10.0] "The best female wrestler in history, ever and future. Top level. Mayu GOATANI is a little difficult to describe. SHe's the best technician you'll ever see, there's no limit to what she can do in the ring. She deserves her nickname. Icon Of Stardom."
Rating: 10.0
Sentiment: 0.25892857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: snazzywrote on 22.08.2024:[10.0] "The best womans wrestler of all time and the best seller of all time, man or woman. She encapsulates the best of what Joshi wrestling is."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Ne4rzer0wrote on 09.08.2024:[10.0] "One of the best wrestlers in the world man or woman. I watched one of her big matches one day and instantly fell in love with her style and personality. People who don't know of her are missing out she's a 10/10."
Rating: 10.0
Sentiment: 0.26
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Ismonpoikawrote on 07.08.2024:[10.0] "Perfect wrestler, 100% the style I adore. great at aerial moves and risk taking, but also remembers to sell at a top level."
Rating: 10.0
Sentiment: 0.7666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Sal1314wrote on 05.08.2024:[10.0] "The heart and soul of Stardom Mayu Iwatani is the definition of a wrestling prodigy, a true student of the game. She is your favorite wrestler favorite wrestler, a natural babyface with outstanding wrestling ability. I wish she would follow in the footsteps of her friends Iyo and Kairi and get more exposure to main-stream wrestling (WWE or AEW), but she will probably remain with Stardom until the end of her career. Mayu, Iyo, and Kairi were the heart of Stardom; they really helped put the promotion on the map, especially during that dark time when a match turned into a real shoot between Yoshiko and Act."
Rating: 10.0
Sentiment: 0.2090909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: SigmaAngeloAsteriawrote on 28.07.2024:[9.0] "Mayu Iwatani has to be the GOAT of this current Joshi generation. A very talented and skilled wrestler. Still missing a bit of the IT that made the 90s Joshi legendary. Definitely top 10 though"
Rating: 9.0
Sentiment: 0.45166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Gabiwrote on 26.07.2024:[10.0] "Mayu Iwatani is the GOAT. I throw around this term quite a bit, but this time I truly believe it. She belongs in the same tier as all the greatest. Her in-ring is simply unbelievable. I could write a big paragraph to explain how good she is but Im just left speechless. You have to see it for yourself. Her selling is absolutely incredible. Her personality outside the ring also makes it so easy to root for her. Everyone loves funny and clumsy Mayu"
Rating: 10.0
Sentiment: 0.2484848484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Aspionwrote on 22.07.2024:[10.0] "(Sorry english is not my firtst language) She is in my opinion the best wrestler in Womens history. IDK if we are going somebody that good in next years"
Rating: 10.0
Sentiment: 0.24
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Itsover9000manwrote on 22.07.2024:[10.0] "What an unbelievable talent. Her selling is the best I've ever seen. She's incredibly versatile and can work pretty much any style. Her Character is extremely likeable. Honestly one of the best wresters I have ever seen."
Rating: 10.0
Sentiment: 0.446875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Joe907wrote on 19.07.2024:[10.0] "Mayu Iwatani is the perfect professional wrestler. The ace of womens wrestling. Very good at technical wrestling and goes at high pace. Definitely one of the greatest of all time"
Rating: 10.0
Sentiment: 0.45285714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: IronStarwrote on 04.05.2024:[10.0] "Mayu is just a genius of pro wrestling. Literally every time she walks into the ring, she gave me goosebumps. Her style of wrestling is so unique, I have never seen someone who wrestles like Mayu Iwatani and that's the reason why she is the greatest of all time. It is indeed a special occasion to see Mayu Iwatani wrestle in a important match. Even with the IWGP Women's Championship, the title that is not cared by NJPW, she is doing a really great job. I hope her retirement won't be before her 40's"
Rating: 10.0
Sentiment: 0.5864285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: JoLUVmaniawrote on 15.04.2024:[10.0] "I just started rating on Cage match and I want to give her a Ten but right now Im to eager to talk about her. When you look at the Top 10 highest rated people in match guide you see people born in the 20s 60s 80s (they rightfully deserve it) but someone born in 1993 and starting her career in 2011 and she rightfully deserves a 10. I was first introduced to Mayu when Mercedes faced her at Stardom (I know Ive seen her for a long time) That was one of my favorite Mercedes Mone match in Japan. Mayu vs IO Shirai is one of my favorite Matches ever. Purrriod. She is one of the best female wrestlers in the world, If we ever see Mayu in AEW I need to see her face Moné. I Lloyd watching her old stardom matches, and her new NJPW Matches."
Rating: 10.0
Sentiment: 0.2685064935064935
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: TripleCrownwrote on 04.04.2024:[8.0] "One of the very best Joshi and overall female wrestlers of her generation. Feels like Mayu has been around for AGES, and after a quick look... she has been doing this since 2011, which is just crazy considering she's only 31. Fantastic in-ring wrestler, I have zero knowledge of Japanese so I can't rate her ability on the mic, but pure wrestling she is just one of the very best."
Rating: 8.0
Sentiment: 0.23476190476190473
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Lauchlanwrote on 26.02.2024:[10.0] "The best women's wrestler in the world and one of the best wrestlers in general. Mayu personifies Icon, she is a true leader, a champion, has so much charisma and is also a genuine amazing person. She will continue to thrive whatever happens next."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: RusherBryan29wrote on 10.02.2024:[9.0] "My current favorite woman wrestler. Fantastic athlete and always give her all in matches. The definition of ace in a pro wrestling formation. One of the best pure babyface in pro wrestling."
Rating: 9.0
Sentiment: 0.4228571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: xmenxwrote on 15.01.2024:[10.0] "she is so Good! Ace of Yoshi, ssshe can make 5 star match so easy. good seller af, you can say she is hard working and her love for pro wrestling is real."
Rating: 10.0
Sentiment: 0.40277777777777785
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Wrest lingaddictionwrote on 16.11.2023:[10.0] "This woman is incredible! Aside from being one of the best wrestlers in STARDOM, she's also made her way into NJPW and won their top women's title. Just having her name mentioned along side it elevates the prestige of it by tons."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: MegaSPSwrote on 03.11.2023:[10.0] "mayu iwatani might be the best female wrestler ever, shes also easily one of the best wrestlers ever regardless of gender. she has the most for the love of the game attitude when working her matches where shell take the most insane moves when she definitely doesnt need to. shes stardoms ace for a reason, and the icon nickname is well deserved. when kairi and io left stardom, mayu practically carried the company on her back (or neck based on her insane bumps) along with kagetsu while stardom built up their next generation. no matter who has been built up or been signed, mayu has remained on top for a reason. shes arguably the best ever."
Rating: 10.0
Sentiment: 0.18958333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Animagowrote on 21.08.2023:[10.0] "The greatest wrestler of generation regardless of gender. Her contribution to Stardom is simply tremendous, rising from the bottom to the top of the company in an amazingly organic way. Stadom just wouldn't be where they stand now if not for their icon and ace Mayu Iwatani. She has this incredible ability to be at the same time a dominant champion and a fantastic underdog. Her repertoire of moves is just insane, she has a dazzling miw of speed excellent technical skills and hard-hitting strikes (when she serious only Syuri can surpass her in that field). Her ability to invest people in her matches through her world-class selling and bumping, her one-of-a-kind charisma and willingness to work in any position on the card makes her virtually the perfect wrestler to be at the top of major company."
Rating: 10.0
Sentiment: 0.35703125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ThreedomLegacywrote on 09.08.2023:[10.0] "My favorite of all time -- when it's all said and done, there will be a claim for the greatest of all time as well. She embodies everything you want in an ace but she was always better than that as "The Icon." What she was able to do for STARDOM time and time again to help get them to the level that they're at now is incredible. She's one of a kind."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: gtg018wrote on 07.08.2023:[10.0] "A true athlete and fighter. She has a unique and appropriate selling style and really feels all the those impacts (especially bodyslams). She is an enjoyable wrestler to watch with her acrobatic moves. It is an admirable feature of her that she always keeps her energy high. Totally a role model in women's wrestling."
Rating: 10.0
Sentiment: 0.260625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ak47al123wrote on 01.08.2023:[10.0] "Mayu Iwatini might be the best female wrestler of the last five years. She got the look, the awkward yet charismatic personality, and most importantly, excellent in-ring performance. Her dragon suplex is a thing of beauty and her selling is top-notch."
Rating: 10.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: SienaArsenwrote on 02.07.2023:[10.0] "Mayu carried Stardom in her back for all year during 2020. And take all the risks basically alone to maintain things warm in the company. She proved her value, and it's unnecessary talk about her skills, charisma and in-ring performances. It's so far the best wrestler in the world today, even now, while take a backseat and let the others take place on the spolight, she's still one of big stars, always taking the attention to herself. And there's no point to make excuses to not talk good things about her, especially when take on singles matches. For me, no matter how her career could be a rollercaster sometimes, she's the only wrestler in the world I'll always give a 10."
Rating: 10.0
Sentiment: 0.2222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: NEVERoverweightChampionwrote on 29.06.2023:[9.0] "She's pretty athletic and is good at a lot of things. Being extremely flexible she can sell and bump like almost nobody else, not scared of trying some crazy/weird spots sometimes. She has a charisma of her own, being awkward, clumsy but endearing. You can always count on Mayu to do her best and make her opponent look great. One of the best female wrestlers out there and surely the soul of Stardom at this point."
Rating: 9.0
Sentiment: 0.36041666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: MasteroftheMatchGuide99wrote on 28.06.2023:[10.0] "Without a doubt the ace of Women's Wrestling no matter which company. Consistently delivers high-level performances, always has a charismatic aura, and can work with pretty much anyone, no matter how inexperienced or experienced they are. She's still relatively young at 30, but the fans better enjoy her while she wrestles, because the day she retires will be the day we lose a huge icon."
Rating: 10.0
Sentiment: 0.32999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: BigRossManWPwrote on 26.06.2023:[10.0] "The greatest women's wrestler of all time. Has been the undisputed ace of the conpany that's now the best in the world since its inception, and she's still delivering every chance she gets."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: SoaKaswrote on 23.06.2023:[8.0] "It feels like hat to give her such a "low" rating but she's just not my type of wrestler. I struggle to get into her matches and she really just doesn't capture my excitement. Really frustrating for me since I know how good everybody thinks she is but there's nothing I can do about it."
Rating: 8.0
Sentiment: 0.09999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Storyline Guywrote on 08.06.2023:"The best female wrestler in the world and one of the best wrestlers in general. She's crazy athletic and has amazing wrestling style coupled with great charisma and strong babyface energy. The best part of her game is selling... oh my world she can make anyone look like a million bucks. Came to know about her last year and it took me only one match to become a fan of her (vs Io Shirai in December 2016). She's the icon of stardom for a reason."
Rating: No rating found
Sentiment: 0.3236111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: vaiser21wrote on 29.05.2023:[10.0] "The best women wrestler, probably the GOAT of women's wrestling, great babyface and great in-ring, there's nothing that she can't do, and she still has many years of her career ahead of her, excited to see what she does in the near future"
Rating: 10.0
Sentiment: 0.5107142857142858
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: RecklessOnewrote on 17.05.2023:[10.0] "One of the best wrestlers on the planet. A great ring skill coupled with a great energy of a babyface makes her the best wrestler out of her. On her example, a future star is already growing, she is surrounded by interesting girls and is not going to stop there."
Rating: 10.0
Sentiment: 0.6833333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ZayTokyowrote on 14.04.2023:[10.0] "The John Cena of stardom and possibly womens wrestling as a whole. One of the best wrestlers of all time and she has no signs of slowing down anytime soon. 20/10 no typo needed."
Rating: 10.0
Sentiment: 0.26111111111111107
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: TheOneAndOnlyCactuswrote on 13.04.2023:[10.0] "In my opinion, the greatest womens wrestler of the modern era. I can't express enough in just a few words how much I love Mayu Iwatani, the Icon of Stardom. Is she perfect? No, but she is athletic, she sells so well, arguably the best in the business right now at it, she is amazingly charismatic with a deep connection with the crowd, and has the knowledge of psychology and the moveset to have classics after classics with pretty much anyone she is put against. So while she is not perfect, she is as close as I can hope for anyone."
Rating: 10.0
Sentiment: 0.32582417582417583
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Cyclopz007wrote on 31.03.2023:[10.0] "My absolute favourite woman's wrestler. Incredible skill, matchless charisma, and perfect style. Discovered her on ROH and was blown away to this day. 10 outta 10!"
Rating: 10.0
Sentiment: 0.7000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: GriffinXwrote on 27.03.2023:[10.0] "At a time where Stardom has a very real case at being the best wrestling on earth Mayu reminds the standard others have to live up to. Able to play both a serious ace but also a total goofball she draws fans in with everything"
Rating: 10.0
Sentiment: 0.22329004329004332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: nizzyhizzywrote on 09.03.2023:[10.0] "There's not a wrestler in the world like Mayu Iwatani right now. I discovered Mayu at the end of 2020 during her great World Of Stardom run and since then she's been my favorite women's wrestler and probably my favorite women's wrestler of all time. Her matches with Takumi, Io, Utami, Kairi, Yu Ishino and a bunch of other wrestlers I'd highly recommend that you'd watch."
Rating: 10.0
Sentiment: 0.353452380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Makai Clubwrote on 05.03.2023:[8.0] "One of the few Joshi that can rival her predessors of the 1980s and 1990s. You can maybe pick apart the style and flaws of her matches but you can't fault her performances, her drive, her amazing abiltiy to make you care and root for her when she is being a bump machine. She really carried the idea of Stardom for years prior to Bushiroad coming in. And while I haven't paid attention to her recently, she was the very reason I watched Stardom after the first show. And that is the case with men. She is nothing but quality. One of the best of her peers, perhaps the best."
Rating: 8.0
Sentiment: 0.33888888888888885
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Daigotsuwrote on 16.01.2023:[10.0] "Mayu is an absolute genius professional wrestler. She's very good in the ring for sure; she's fast, she's athletic, her moves are great. She is on the shortlist of best sellers of all time. Her real genius is in her charisma, and her unparalleled ability to connect emotionally with her audience. I've rarely rooted for a babyface as much as I have for Mayu. She's able to make you care about professional wrestling, and the people involved. She really is a generational talent."
Rating: 10.0
Sentiment: 0.37214285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: TerwilligerTheLuchawrote on 13.01.2023:[10.0] "Legitimately one of the best professional wrestlers of all time. The absolute template for "ditzy" wrestler apart from possibly Kota Ibushi, just one of the funniest wrestlers I've come across. On top of that, her ring work is almost unparalleled. She's able to get you completely emotionally invested in any match she's in. The fact that she's not even 30 yet makes it all the more unreal."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: eBentowrote on 06.11.2022:[10.0] "Mayu Iwatani is a generational talent; there won't be anyone like her in the world of Joshi Pro Wrestling for a long time and she will forever go down as THE Icon. Nobody in the whole industry is as good of a seller, nobody is as believable and charming as a babyface and nobody embodies the passionate spirit of pro wrestling quite like Mayu Iwatani."
Rating: 10.0
Sentiment: 0.2634920634920635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: benny5bellyswrote on 11.10.2022:[7.0] "Mayu is very very good and although I don't watch as much Stardom as much as I used to, when I do check in on the promotion she still delivers when needed."
Rating: 7.0
Sentiment: 0.4366666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ScottEWrestlingwrote on 10.10.2022:[10.0] "For my money, Mayu Iwatani is the greatest of all time. If you watch her work throughout and take into consideration what she has done for STARDOM throughout her career, it's difficult to thank anyone for their success more than her or Rossy Ogawa. She has a limitless number of matches to her name that not only go down as "classics" but as all timers. Each year she never fails to at least enter one into the equation and she has proven that she is the best out of Threedom despite never being the chosen one over the likes of Io Shirai and KAIRI. Her match with Starlight Kid on the final night of the 5STAR Grand Prix identifies what makes her so special as a performer but that's only one of many. Truly the GOAT."
Rating: 10.0
Sentiment: 0.24654195011337868
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Rivermanwrote on 16.09.2022:[10.0] "The greatest at bumping/selling in history....Oh yeah, and pretty outstanding at literally everything else too"
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: BabaYagaV20wrote on 03.09.2022:[10.0] "Mayu Iwatani has been an essential part of women's wrestling for almost 10 years now. Arguably the best worker in the industry right now, she's not only the ace of STARDOM, but of the whole sport in general."
Rating: 10.0
Sentiment: 0.25595238095238093
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Kingmoose22wrote on 21.07.2022:[10.0] "Mayu Iwatani is one of the best wrestlers in the world today. She is without diskussion the best seller in the world. She manager to always make herself look like the underdog even against far less experienced opponents. She is in my opinion the best wrester in STARDOM."
Rating: 10.0
Sentiment: 0.6222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Plume Kiddowrote on 03.07.2022:[10.0] "Mayu Iwatani is everything Joshi Puroresu is about. Mayu is the legacy of an entire generation and at the same time, the bulwark of a new era. Her in-ring skills are exceptional, so much that her contribution to the innovation of the sport is still evident today and I feel very lucky to be able to witness her career prime. She'll go down as one of the best wrestler of all time and at 29 she already tops every woman ever in the athlete toplist."
Rating: 10.0
Sentiment: 0.3030808080808081
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: jamzell00wrote on 05.06.2022:[10.0] "It is impossible to cheer against this women. Her ability to get people to believe in her and her matches is all time great and of course she's a great worker too. Always smooth in the ring and makes her opponents look amazing with how great of a seller she is. Maybe the best in the world at looking like they just got destroyed in the ring. Somehow not even 30 yet lives up to the nickname of Icon of Stardom every step of the way. Many prefer Kairi and Io during this time period but Mayu will always be my favorite of the trio"
Rating: 10.0
Sentiment: 0.5259259259259259
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Wright15wrote on 26.05.2022:[10.0] "Mayu Iwatani was one of the first wrestlers of whom I became a huge fan. She was, by all accounts, the least promising rookie from Stardom's original class, yet after 11 years, she is the only one left in the company. Not only that, but she has been the ace for years. Over the last two or so years, she has surpassed Io Shirai as the best wrestler in the history of the promotion. Tomohiro Ishii is the only active wrestler that I would say is a better seller. There are very few who have taken crazier bumps for otherwise routine spots. It's difficult to think of a more natural babyface. She was one of the three or four best wrestlers in 2020, and she remains comfortably in the top 20 today."
Rating: 10.0
Sentiment: 0.2015833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: CoolKylewrote on 13.05.2022:[10.0] "Mayu cannot be killed by conventional means. When the human race is extinct and the dust settles after all the noise and commotion from the nuclear wars there will be only silence, cockroaches and Mayu Iwatani. Greatest of all time"
Rating: 10.0
Sentiment: 0.04285714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: LilKazu69wrote on 10.05.2022:[10.0] "Easily the greatest female wrestler of all time and probably the most talented wrestler in the world. Absolutely love that her story is the entire story of Stardom"
Rating: 10.0
Sentiment: 0.44761904761904764
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: WhatIsLooveeewrote on 01.05.2022:[10.0] "I have never been a really big fan of joshi, but I am very impressed and inspired by the story of Mayu. She was able to overcome personal socialization problems and, despite all the difficulties, succeed in his favorite thing to become one of the main faces of a successful major promotion. Mayu is a wonderful wrestler and great storyteller, whose commitment and sincerity are exciting, and the technique is impressive."
Rating: 10.0
Sentiment: 0.5065972222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Okaro143wrote on 22.04.2022:[10.0] "One of The most outstanding female wrestler on the planet and one of my personal favorites. Very versatile wrestler with impressive striking ability, technical ability and high flying ability as well. A bit clumsy sometimes but also very charismatic."
Rating: 10.0
Sentiment: 0.29181818181818187
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Legend003wrote on 14.12.2021:[10.0] "Was kann man noch über Mayu sagen. Sie ist sicherlich einer der besten Damen im Wrestlingbereich. Sie kann so unglaublich gute Matches worken, hat ein fantastisches Moveset und ist schon jahrelang an der Spitze von Stardom. Eine wahnsinnig starke Perfomerin, die sicherlich jeder schon einmal gesehen hat bzw. gesehen haben muss."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: hothstationwrote on 13.12.2021:[10.0] "Fantastic performer all-around that is excellent at every facet of her craft; she also has that special ability to connect with the audience in a way very few do."
Rating: 10.0
Sentiment: 0.33942857142857147
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: twostagetommywrote on 19.11.2021:[10.0] "She has been one of the best wrestlers in the world men or female for the last half decade. Arguably the best out of threedom, can have a great match with literally anybody. Clumsy outside of the ring but perfect and graceful inside of it."
Rating: 10.0
Sentiment: 0.37037037037037046
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: jmerchantTWMwrote on 08.08.2021:[10.0] "If Io Shirai didn't exist, Mayu Iwatani would be the undisputed best women's wrestler in the world today and there is no debating it. She's the ultimate seller in the ring, everything her opponents do to her looks absolutely excruciating. She's got a top notch move set and she's got this killer look when she gets serious. I swear she looks like she is going to murder her opponents sometimes and I love it. You watch Mayu in the ring and some of the bumps she takes and you have to wonder how she didn't break her neck taking it. She has to be made of rubber, I swear."
Rating: 10.0
Sentiment: 0.3111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: blastostgwrote on 28.07.2021:[10.0] "The Ace of Stardom for good reason. The icon. In addition to her fantastic matches, her bones are seemingly made out of rubber. She seems to have no issue landing directly onto her neck, being folded in half or taking any manner of brutal bump."
Rating: 10.0
Sentiment: 0.03166666666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Lueokawrote on 16.07.2021:[10.0] "Possibly the greatest talent that STARDOM has ever produced. Mayu has filled in all the check boxes to meet the requirements for being a complete wrestler with a depth that is only found in those that are of legendary status (deservedly so). While her earlier back catalog reveals how flawed she used to be, altogether she makes up for it when she fleshed out her entire game and lifted herself into the beloved wrestler we know today."
Rating: 10.0
Sentiment: 0.19166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: XIIVwrote on 05.06.2021:[10.0] "Mayu is as good as everyone says and has truly established herself as the Icon of Stardom beyond just a moniker."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: VladimirPoopinwrote on 03.06.2021:[10.0] "Mayu Iwatani is the Icon of Stardom and possibly the best wrestler in Japan. She always pushes herself to go to new lengths to put on a show. This is particularly evident when facing off with other greats such as Kagetsu, Takumi Iroha, Jungle Kyona or Momo Watanabe. She has a natural charisma much needed in Stardom today, and bumps like something crazy. Mayu was with Stardom from the beginning, has been a rallying point through some dark times, and has been central to helping the organization achieve greatness. 10."
Rating: 10.0
Sentiment: 0.07376033057851239
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Suzukigunwrote on 26.03.2021:[10.0] "She's called the "Icon of Stardom" for a reason. Amazing in the ring, interesting enough on the mic and the heartbeat of Stardom."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Kungwrote on 04.02.2021:[10.0] "When it comes to joshi wrestlers, there isn't a better one today than Mayu Iwatani. She's the total package; she's great in-ring, she can hold the crowd in the palm of her hand, and she's eternally likable. She also has the smoothest arm drags on the planet. To me, she's a top 5 female wrestler right now."
Rating: 10.0
Sentiment: 0.36938775510204075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: pierreMinnewrote on 28.01.2021:[10.0] "I can't give her another rating than a 10 for obvious reasons. She has maybe the best in ring in the world alongside Io Shirai, she puts over everyone she is in the ring with. She is a great babyface and can carry everything that moves. One of the best in the world, surely."
Rating: 10.0
Sentiment: 0.6599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: EmbraceTheHatewrote on 03.01.2021:[9.0] "Honestly one of the best wrestlers around. Easily one of the greatest female competitors the sport has ever seen. As clumsy and goofy as she seems her matches show great resourceful action and a very charming and well put together talent that has a lot of crossover appeal. Her work can't be understated. She hopefully will be remembered as a legend in this great business and rightful earns that spot. Reliable worker who can lead and mentor with her ability. She should be proud."
Rating: 9.0
Sentiment: 0.5571794871794871
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: medousewrote on 10.12.2020:[10.0] "There will be moment, she will become a legend and a face of joshi wrestling. She already is considered as one of the best female wrestlers in the world. She's got the looks, amazing skills and she's the sweetest babyface of all time. The amount of work she put in Stardom is tremendous. I cannot imagine this company without her."
Rating: 10.0
Sentiment: 0.48333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Same Old Same Oldwrote on 16.09.2020:[9.0] "Neck abuse aside, Iwatani is currently pulling out all the stops on a consistent basis, in both in ring and character performance."
Rating: 9.0
Sentiment: 0.06999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ElPolloLocowrote on 29.08.2020:[8.0] "Until 2018 or so she was extremely mistake-prone to the point sometimes she got stuck in the middle of a move, something that still pops up from time to time these days. I remember in one 2017 interview Rossy Ogawa went as far as publicly call her "lazy". But after Stardom was mercilessly raided for talent she really upped her game, perhaps because she would have had no other place to work if the promotion closed down. She has cleaned up her in-ring work a lot since then and had some truly excellent matches since. Basically she carried the promotion together with Kagetsu until earlier this year, including all the dead weight of the useless foreigners. Now she's the only ace Stardom has left up her sleeve, at least until Momo Watanabe finally finds a character that suits her and the time to seriously push Konami and Tam Nakano comes. And again she seems to be giving her best when under pressure. As a character I must say I find her fake clumsy persona unconvincing at the best of times. I just cannot buy her in that role. And in spite of her huge in-ring improvement I still find her the least of the Three Daughters of Stardom."
Rating: 8.0
Sentiment: -0.01543803418803418
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: SpaceLionWwrote on 11.08.2020:[9.0] "Amazing wrestle person. A bit clumsy at times and definitely a bit too keen on landing on her neck, but really just possesses an endearing energy and puts on really, really fun matches and bumps with the best of them (except when she's landing on her neck please no)"
Rating: 9.0
Sentiment: 0.32857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: EUJBFTYwrote on 26.07.2020:[10.0] "An amazing wrestler and my favorite Joshi of all time. She has an inspiring backstory of how she went from being a hikikomori to being the Ace of the Stardom and is (in my opinion) the best female wrestler in the world today. She has the potential to be remembered as one of the all time greats in decades to come."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ProWrestlingGuy316wrote on 20.06.2020:[10.0] "Es gibt im Wrestling aktuell kaum Faces, die diese Rolle so gut verkörpern wie Mayu Iwatani (ich würde Tanahashi oder Kento Miyahara nennen, die in dieser Hinsicht ähnlich gut sind). Gepaart mit herausragenden Fähigkeiten im Ring ist Mayu schlicht und ergreifend eine der besten Wrestlerinnen der Welt, wenn nicht sogar die beste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: VillainClubwrote on 12.05.2020:[10.0] "Das Icon von Stardom und Zurecht das ACE. Vollkommen zurecht World of Stardom Campion. Eine der besten Wrestlerinnen der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Wrestling Foreverwrote on 14.04.2020:[10.0] "Längst eine Stardom Legende unfassbar sympathisch. Auch eine die sich nie schont und so viel drauf hat. Was hatte Sie nicht schon für Schlachten gerade die mit und gegen Io und gegen Kagetsu sind legendär."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Riggswrote on 24.02.2020:[10.0] "She is a really good face underdog. I always can see her losing a match believably and rarely think she is the favorite. However, she is an incredibly good technical wrestler and that is able to make her a believable face of Stardom. Edit: She has really shown she is one of the best in-ring Joshi right now. She is smaller and awkward outside of the ring, but inside she is amazing. And she has now taken just about every moved Io Shirai used."
Rating: 10.0
Sentiment: 0.3457142857142858
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Dragon Fighterwrote on 22.02.2020:[10.0] "A tremendous talent overall. A real world-class female wrestler nowadays after having seen a fair amount of her matches. She is excellent at working babyface. She has a really brutal moveset and especially the variety of her bridging suplexes (which are one of my favorite things in wrestling today). Mayu can work well with various opponents as well. She can bring intensity, bump and execute brilliant babyface comeback. She can really do everything right now as she is the Ace of Stardom after the departure of Io Shirai and Kairi Hojo. And even of all these 3 women, she is now the one I enjoy the most while the other two seem to struggle in WWE. Easily one of the best in the world and one of my favorites."
Rating: 10.0
Sentiment: 0.3029100529100529
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: jaykyuenwrote on 16.01.2020:[10.0] "Mayu has my favourite wrestling style and is one of the best babyfaces in the entire business, it's just impossible not to root for her. A brutal moveset, a long list of great matches and emotional moments, a great babyface aura, some of the sickest bumps you'll ever see and overall a world class talent in and out of the ring, Mayu has it all to be considered one of the best in the world."
Rating: 10.0
Sentiment: 0.20083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: CrazyCoffeewrote on 22.12.2019:[10.0] "Mayu Iwatani.  The Icon.  The Savior. The Current Ace of Stardom. The last remaining member of the Threedom still in Stardom.  Probably one of the greatest sellers and bumpers of this generation regardless of gender.  She has had amazing matches with Io Shirai.  Mainstream fans who like Io, Asuka, and Kairi, I highly recommend checking out her matches in Stardom as well as her colleagues.  And if that isn't enough, you need to check out "THE WRESTLERS: Japan's Finest Wrestlers (A VICELAND documentary about STARDOM)" which gives us a glimpse of Mayu as a person.  She loves wrestling as it is and Stardom is her.  I doubt she will ever leave there, but anything is possible."
Rating: 10.0
Sentiment: 0.22
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: cuervonegro83wrote on 30.08.2019:[10.0] "Mayu Iwatani the Ace of Stardom or like she saids the Icon, I really think she is one of the greatest in the world, everytime she tries a move she does it, except that time she tried to do the surfboard but was a funny moment, that's the good thing about Mayu she is great but at the same time you can feel she is a bit goofy in the way members of other stables make fun of her, is like they don't respect her, but of course they do is just part of the show. Some of her moves are so cool to see, the super kicks, her new moonsault is so beautiful and even she learn in less than a month to do the Tiger feint kick (619 for WWE fans) to use it in tag matches with Starlight kid (she also starts using the standing moonsault), showing that she always wants to learn to do new things and do better matches with her tag team partners. She is also a great seller, she had some injuries this past years so I expect she can be healthy for a long time.  Some weeks ago I watched a documentary about "STARDOM THE WRESTLERS: Japan's Finest Wrestlers", you can see it in Youtube, is from 2017 but in this video you will find some things about Mayu, I was surprise to know somethings about her past and how she is and I can only love her more.  If I had to recommend a match, obviously any match agains Io Shirai is great, but matches against Kagetsu, Momo Watanabe or Utami are also a great option, and of course any tag team match with her STARS partners are fun to watch."
Rating: 10.0
Sentiment: 0.3069159335288368
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: KyleEnjoysWrestlingwrote on 05.08.2019:[8.0] "Mayu is hard for me to rate because I do like her, but there just feels like there's something missing. She's good in the ring & has some charisma, but it just feels like part of the "it factor" is missing with her. I totally understand why WWE would want Io & Kairi & would opt to pass over Mayu. I feel bad for her because she's very good... but just missing something."
Rating: 8.0
Sentiment: 0.002291666666666657
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: RussTShackleford46wrote on 15.02.2019:[10.0] "For a long time she was relegated by many as "3rd place in Threedom" behind Io Shirai and Kairi Hojo, but I've come around to the possibility that she very well might be the best of the 3. While her offense isn't as eye popping as Io's, she has a good technical style mixed with a bit of high flying and a fluidity that is among the best. Ranks right up there with Kota Ibushi as the best bumpers in the business, and she always makes her opponents' offense look like a million bucks. Mayu's also one of the most charismatic workers in Joshi, and has a natural underdog babyface aura that really gets crowds behind her. Easily one of the best female wrestlers in the world today."
Rating: 10.0
Sentiment: 0.32043083900226754
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: 20SaiDa19wrote on 10.02.2019:[10.0] "Mayu is amongst the best in-ring performers in the world today. She throws some of the best suplexes and is in my opinion, the best bumper in modern wrestling; this combined with her ability to sell, means that she makes most of her opponent's offence look great. She can also play the underdog role well and can cut a decent promo; my personal favourite women's wrestler ever."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: LandonRyanWyattwrote on 31.01.2019:[8.0] "An underdog of underdogs in the women's division. Good wrestler, and enjoyable on a lot of levels. The future."
Rating: 8.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: TheRatemakerwrote on 24.10.2018:[10.0] "She is one of the best in the world today. Good babyface, tremendous in a ring, cut some goofy promos, the last one of the threedom still in Stardom. Her journey to reach this level is awesome too, she is an underdog in real life too. She brought the best feud in the modern era of Joshi-puroresu with Io Shirai, and she probably hold the best match of the modern era of women wrestling."
Rating: 10.0
Sentiment: 0.5575757575757576
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: PistolPeteMattywrote on 28.08.2017:[10.0] "Along with Kairi Hojo & Io Shirai, Mayu is one of the top three female wrestlers around today. She's an excellent underdog babyface and has the most brutal looking Dragon Suplex around. Have yet to see her deliver a bad match."
Rating: 10.0
Sentiment: 0.07083333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: LooseExplosionwrote on 17.12.2016:[10.0] "One of the best female wrestlers on the planet and of this generation. Her salesmanship is unparalleled and her natural underdoggedness makes her one of the most sympathetic wrestlers going. Her execution is generally pretty crisp, her kicks are great, and her dives are pretty decent. I don't know any women that move as fast as she does in the ring. She reminds me a lot of Kota Ibushi, which is huge praise. Iwatani is great and deserves greater international recognition."
Rating: 10.0
Sentiment: 0.3811111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: martyrofevilwrote on 13.11.2016:[10.0] "My favourite wrestler in the world. She's an incredible underdog and perhaps the best bumper I've ever seen who can make even commonplace maneuvers look terrifying. She sells extremely well too, not just immediate damage but her own exhaustion as well and she can convey a lot of complex emotion through her face and body movements. She always knows what little touches to add in to really make a captivating in-ring story and if I had any flaw to say about her its that sometimes she sells me so hard on the build-up for a match that the match itself sometimes can't live up to the hype. If all that isn't enough, she's also super good at the actual "wrestling" part too with great speed, stiff strikes, beautiful suplexes, she's just the best."
Rating: 10.0
Sentiment: 0.2579602415128731
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Luv all wrestlingwrote on 10.08.2016:[9.0] "She shows good intensity, sick suplexes and the option to be a huge young star for STARDOM, which she already is."
Rating: 9.0
Sentiment: 0.12142857142857141
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: rustybridgewrote on 10.08.2016:[9.0] "Good intensity, great speed, very good offensive, takes bumps well and sells well. Also fun to watch and good on the mic. Current holder of 2 titles and is definitely a rapidly rising young star."
Rating: 9.0
Sentiment: 0.43875000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: ntrlk1wrote on 06.07.2016:[9.0] "Undeniably among the best in the world.  Her offensive moves all look great, "suspension of disbelief" is not difficult with the way she lays in her kicks and suplexes.  Her bumping and selling are incredible, which make her a babyface of the highest calibre.    Her mic skills are good too, she does both sarcastic humour and serious emotion very well."
Rating: 9.0
Sentiment: 0.4520833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: LawDog89wrote on 29.03.2016:[8.0] "Iwatani is one of the best babyfaces working today. She shows great fire, and is a relatable and sympathetic character. Her work is very good of someone her age. She has cool moves and great athleticism. There are times when I feel like she hasn't fully grown into her body though. I know she's 23 but sometimes she moves like a bit of an awkward teenager. She is constantly getting better however and is one of the most popular wrestlers in Stardom, for good reason. One day I expect her to be a main event player. She's almost there now."
Rating: 8.0
Sentiment: 0.47897435897435897
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10402&gimmick=Mayu+Iwatani
Comment: Nikkideamus Osyrenwrote on 22.11.2014:"She's got a lot of charisma.  She's a great high flyer, and she's a lot of fun to watch.  She has this spunky underdog vibe, which seems to be rare in Japan.  I'd love to see her take flight on the international stage.  She's a boat load of skill too. I think she's a tad slow at times, or, at least compared to other Joshi in her field.  But either way, she's got a lot of technical prowess, and she's highly athletic."
Rating: No rating found
Sentiment: 0.1359090909090909
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: YagameTheRealKingpinwrote on 29.01.2025:[10.0] "Kawada hat für mein Empfinden immer ein etwas unfaires Los gezogen. Als Teil der , , Big 3" war er immer der den zwar natürlich auch stets alle krass fanden aber auch der, der immer etwas...ich will nicht sagen belächelt wurde...aber er hatte es schon schwer mit Misawa und Kobashi. Was echt schade war, weil er ein absolutes außnahmetalemt war. Aber gut nicht umsonst wurde all das damals als Goldene Ära des Wrestlings betitelt. Viele Leute mit unglaublichen Talent. Für mich hat Kawada aber ein ganz besonderen Platz in meinem Herzen und ich schaue mir immernoch gerne Seine Matches an die noch mit einem Toaster aufgenommen wurden. Ich komme nicht herum um Kawada volle Punktzahl zu geben und an dieser Stelle nochmal danke zu sagen an eines meiner absoluten Vorbilder. Arigato Kawada-san."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Mauiwrote on 23.01.2025:[10.0] "Probably the third most popular wrestler in Japan in terms of match quality, selling and technicality. His stiff shots and receivings onto his own body are popular. So is his finisher. His battles against Misawa are stuff of legends and would they occur today, that would indeed surpass all those 6+ star matches of today and reach like 8 to 9 stars. S-Tier wrestler of all time."
Rating: 10.0
Sentiment: 0.34761904761904766
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Zak22wrote on 06.10.2024:[10.0] "An incredible talent who was instrumental to the greatest main event period in wrestling history. A legendary rivalry with Misawa and his great kicks earn him a place in wrestling history. One of the most exciting and intense in-ring workers of all time."
Rating: 10.0
Sentiment: 0.6083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: jsbortswrote on 26.09.2024:[10.0] "Kawada was fucking awesome. One of those wrestlers who doesn't need a reputation to precede him, he brings his intensity every time he comes to the ring and wrestles like he has something to prove. Innovator of offense, but also just a brutalistic intensity that befits pro wrestling at its top form. One of the absolute coolest to ever wrestle, and one of those wrestlers who can change people's perception of what the sport/art is."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Willie 19200wrote on 01.06.2024:[10.0] "Toshiaki Kawada is one of the most influential and overall just cool wrestlers of all time. The stuff he did with Misawa, Kobashi, and Taue was legendary and revolutionary to the business. I specifically really enjoyed his rivalry with Misawa. I also feel like he is the most underrated of the 4 pillars of heaven and definitely does deserve all the credit for his work. Not to mention without a shadow of a doubt Kawada is the best kicker in the pro wrestling business. Overall one of the greatest wrestlers of all time and deserves 100% to be on the list of being one of the greatest of all time."
Rating: 10.0
Sentiment: 0.5318181818181817
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: JediSaiyanMaster1203wrote on 30.05.2024:[10.0] "One of The Four Pillars of Heaven of All Japan, and there's a damn good reason for that. Toshiaki Kawada is easily one of the greatest professional wrestlers of all time, whether he's doing singles or tag team competition, there's very few on his level. Kawada might just be the best kicker in wrestling, up there with the likes of Bryan Danielson, he's so good that people replicate his kicks to this day (especially the "Kawada kicks, " the one where his opponents are bend over and he just kicks their face in). His rivalry with Mitsuharu Misawa is one of the all time best in this illustrious "sport" we love so much, their bout in 1994 is-arguably-the best match to ever happen in Japan or anywhere else, so good that Dave Meltzer rated it a 6 star rating (LONG before Okada and Omega, and after Flair and Steamboat's house show match). Very effective heel, always played his roles very well in matches as the evil bad guy trying to take out the other pillars or grizzled veteran trying to catch up with the youth, he is a perfect villain to anyone you put him in the ring with. His tag team with Akira Taue is one of the best of all time, having countless classic matches with many tag teams, collecting tag belts left and right, they were a perfect duo. Not to mention, while majority of All Japan's roster left to work for Pro Wrestling NOAH, he was among the very few who stayed loyal to All Japan and remained working their until retirement, proving he was a very valuable asset to the company, but not to a tribalistic route of only working in AJPW, wasn't shy away from working other promotions. Overall, Kawada is a legend in the business, he's paved the way for so many kickers and has set the bar super hight with the other Four Pillars, thanks to them for making AJPW in the 1990s, arguably, the best professional wrestling that's ever been broadcasted."
Rating: 10.0
Sentiment: 0.2806519274376417
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: StrongStyle2020wrote on 27.05.2024:[10.0] "Quite possibly the greatest wrestler of all time. He may not quite have the accolades or titles of others in contention, but his match resume is up there with any, and as a complete pro wrestler, I can think of no better. His often brutal matches are sold to perfection. That's right, no roll the eyes "fighting spirit" comebacks where selling goes completely out the window and you pop up from being dropped on your head to perform the next high spot within a split second; instead he battles through the pain and sells his wear and tear and pain to perfection. His feud with Misawa is legendary and you can see the roots of Genichiro Tenryu in him. Tomohiro Ishii is the closest thing to replicating his greatness in the modern day, but there is only one Dangerous K, Toshiaki Kawada. Part of the greatest tag team of all time alongside Akira Taue as Holy Demon Army, and possibly the outright greatest wrestler of all time."
Rating: 10.0
Sentiment: 0.18357142857142858
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: DENDYwrote on 01.04.2024:[10.0] "In my eyes, there is no question that Toshiaki Kawada is the greatest wrestler of all time. From his work in the late 80s, up until he retired in 2010, you can find matches which rival what anyone else could put on. Kawada is known as Dangerous K for a reason, he seems genuinely dangerous in the ring, laying out brutal power moves and kicks which while not always the stiffest, still somehow seem to be the best for my money. He also sells in a way quite unlike anyone else. If you watch his bouts in the early 2000s you see a man who is hurt, but never wants to show it, the selling is subtle and calculated, with Kawada often getting angry at himself for taking the damage. While he was undoubtably the perfect foil for Mitsuharu Misawa in and out of the ring, I always found him the more intriguing of the duo, both as a character and a person. Nobody draws me into a match like Kawada, nobody makes me wince like Kawada and nobody has or will ever quite do it like Kawada. Pick any year he wrestled and find some odd matches and youll undoubtedly find a hidden gem or five in there. Go out of your way to watch Dangerous K, He is the perfect 10/10 wrestler in my opinion."
Rating: 10.0
Sentiment: 0.038725490196078446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: RusherBryan29wrote on 06.02.2024:[10.0] "My favorite of the four pillars and my favorite japanese wrestler of all time. Always give intense and aggressive performance. Complete package, natural charisma, badass look, great technical wrestling, and the best kicker in pro wrestling."
Rating: 10.0
Sentiment: 0.35555555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: All Cops Are Bossmanwrote on 06.01.2024:[10.0] "Half the reason I like Eddie Kingston is he rightly worships at the altar of Kawada. I am a sucker for wrestlers who kick people right in the face, and Kawada is the Michael Jordan of gamen giris. You should watch his big famous triple crown and Holy Demon Army matches but also any of his ferocious matches *against* Taue, and for something completely different his 2000s match against Mick Foley. Kawada can sports entertain too."
Rating: 10.0
Sentiment: 0.08639455782312924
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: texasyoshwrote on 22.08.2023:[10.0] "Kawada probably has the most fascinating career out of all the four pillars. A man who really rose to his peak quite early, and stayed their well into the 2000s. While Misawa was the bonafide Ace figure, Kawada resembled something different in AJPW. Something a little more dangerous. To me, Kawada was the perfect foil to Misawa. Not only the differentiation between their striking styles, but mannerisms in the ring. Misawa can feel a little stoic, while Kawada is much more expressionable. Kawada was never the insurmountable mountain that Misawa became, but rather someone more plucky, despite being the heel for many of the native v. native matches. His best work is in the entirety of the 1990s, including also the 80s working in Footloose. Unfortunately, Kawada getting the short end of the booking stick was a constant in his career, even after the NOAH excursion, with the likes of Genichiro Tenryu and Keiji Muto becoming the top faces of the company. His 2005 Triple Crown reign is good, but it lacks a statement match unlike his prior chases for the title in the 1990s."
Rating: 10.0
Sentiment: 0.2858695652173913
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: TESDAnt37wrote on 29.06.2023:[10.0] "Kawada is my favorite of the Four Pillars & my favorite wrestler of all time. There has never been many as tough or believable as Kawada. His feud with Misawa is the stuff of legends & rightfully so. Its a shame that his Triple Crown title runs were so snake-bit. Im sure hed be even more fondly remembered than he is. Not only that, but he is also one half of one of the best tag-teams ever with Akira Taue as the Holy Demon Army. Theres few better."
Rating: 10.0
Sentiment: 0.31203703703703706
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: TheOneAndOnlyCactuswrote on 12.04.2023:[10.0] "Dangerous K was a stiff motherfucker, projecting an intensity and aggressiveness rarely seen in wrestling. He would beat the piss out of anyone and torture anybody he stood in the ring with, and do it in a very creative and entertaining manner, often one that would make you root for the opponent. But don't get it twisted, he could also play as a face when needed, and regardless of roles, he was a tremendous seller too. And, something he has over any other Four Pillars Member is that he was the best in comedy too."
Rating: 10.0
Sentiment: 0.14933862433862435
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: KKeanelwrote on 11.03.2023:[10.0] "Second best from the 4 pillars. His stiff move-set and deep in-ring psychology undoubtedly makes him one of the all-time best."
Rating: 10.0
Sentiment: 0.3571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Strong Zero Machinewrote on 26.02.2023:[10.0] "My favorite of the 4 pillars (1st Kawada, 2nd Kobashi, 3rd Taue and 4th Misawa yes sorry) Kawada is like Ishii or Shibata a raging bull without fear one of the best seller ever im my opinion, a great kicker, his comedy stuff in Hustle is great too, member of one of my favorite team ever with Taue. He never be the ace despite is loyalty for AJPW. If you want some great stuff from Kawada watch any Kawada Taue vs Misawa Kobashi or watch Kawada vs Williams in the final of the Champion Carnival 1994 and his match against Misawa for the triple crown championship in AJPW New Year Giant Series 1999 this is just brilliant."
Rating: 10.0
Sentiment: 0.3835497835497836
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: GeneBlastKyodaiwrote on 31.01.2023:[10.0] "I consider him to be one of the greatest wrestlers of all time. A godlike seller with an amazing moveset and a banger theme. He also had an unmatched aura, you knew he was going to beat the absolute tar out of someone any time he arrived, also trained Taichi, a few years ago That would have been a ratings dropper, but Taichi has really come into his own."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: benh2wrote on 11.01.2023:[9.0] "Kawada was just a beautifully intense, aggressive wrestler. Part of arguably the greatest tag team ever as well as being a tremendous Triple Crown champion in his own right. I also respect his decision to stick with AJPW after the split and we got to see more great matches with completely different workers."
Rating: 9.0
Sentiment: 0.4648809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: wrestlingreviewerwrote on 11.10.2022:[10.0] "He was the most aggressive of the four pillars His selling was some of the best in history.He was the best tag team wrestler as well probably the best in history and His singles career was also great with matches against Misawa, Kobashi, Taue, Stan Hansen, kojima, Williams, Jumbo being the best of the bunch an all time greats"
Rating: 10.0
Sentiment: 0.8833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: munrapido3wrote on 23.09.2022:[10.0] "One of the most phenomenal Japanese wrestlers and possibly one of the most toughest in the world. The most murderous bastard in AJPW's amazing quartet nicknamed the 'Four Pillars of Heaven', Kawada is unquestionably the most brutal out of the four pillars. From the Gamengiri to the infamous Ganso Bomb, 'murderous bastard' is definitely a good nickname for him. Kawada's selling is exceptional, his ability on storytelling, and churning classics with Misawa, Tsuruta, Hansen, Kobashi, Akiyama, and others. Definitely one of the greatest wrestlers of all time, Misawa's death being the reason that he retired from wrestling entirely was depressing tho."
Rating: 10.0
Sentiment: 0.17598039215686273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: UWF Rules Enthusiastwrote on 24.04.2022:[10.0] "Not only was Toshiaki Kawada the best worker of the Four Pillars (Kawada, Misawa, Kobashi, Taue), but Kawada is probably the best heavyweight pro wrestler ever. He has been in countless of great matches, and he was a big reason why 1990s AJPW is some of the best pro wrestling ever. His selling was great, his striking was great, and his work was generally quite realistic for pro wrestling standards."
Rating: 10.0
Sentiment: 0.5097222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: GriffinXwrote on 19.01.2022:[10.0] "Think about it Kawada spent a decade chasing a win over Misawa yet the fans didn't lose faith in him. It takes a special kind of talent to keep the fans behind him. He was also a man who dared to be different in All Japan. Baba was his company to be "real" wrestling. Yet Kawada was willing to work a martial arts based style helping him stand out. And of course one of the great teams ever in the Holy Demon Army"
Rating: 10.0
Sentiment: 0.2507142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Denpa Popewrote on 05.01.2022:[10.0] "A legend among legends. Intense, grimy striker, superb technical wrestler, unrivaled story teller and one of the best sellers of all time. The amount of classics Kawada has behind his back is staggering. Superb at both singles and tag competition. Misawa vs Kawada is perhaps the greatest rivalry/series of matches in pro wrestling history."
Rating: 10.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: benny5bellyswrote on 12.12.2021:[10.0] "There is nothing I can say that has not been said already. Just a remarkably good wrestler. Till the day I die I will never go tired of watching him in the ring."
Rating: 10.0
Sentiment: 0.14999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Lakhiarfarhad91wrote on 05.11.2021:[10.0] "What I am gonna say about him is probably said already. I haven't made my top 5 greatest wrestler's list but he would easily be in my top 5. His attributes : Fantastic and brutal looking offesne + awesome facial expressions and selling ability + incredible storytelling and mastery in ring psychology."
Rating: 10.0
Sentiment: 0.428125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Okaro143wrote on 22.10.2021:[10.0] "One of the most outstanding wrestler on the planet. Brutal and Sadistic style of wrestling with Lethal striking ability. One of the pillars of AJPW."
Rating: 10.0
Sentiment: 0.15625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "One of the greatest wrestlers of all time, his letal striking is legendary, one half of the HDA in AJPW and even his comedy in HUSTLE is awesome"
Rating: 10.0
Sentiment: 0.6666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: BH62wrote on 27.07.2021:[10.0] "The only sad thing about Kawada he will be always in the shadow of Misawa and Kobashi despite being in my opinon the most consistant worker of the Four Pillars. From being a fan favorite with his best friend Misawa and betrayed him and turned to be the absolute vilain, it was extraordinary. Nevertheless, his fighting spirit made him an organic face just by the reactions to his big victories. He formed the greatest tag-team of all-time with Taue as well. Man was stiff as fuck and so intense, no nicknamed Dangerous K for nothing. I really like his later career, Kawada's wow to stay in All Japan in 2000 is my opinion the greatest thing he did. His later career is excellent, he stills very consistant past his 40's. His work in early 2000's was tremendous. Even at the end of his career, he could put some very good and solid matches. If he could have been wrestled one more match for the beauty of it but life has decided otherwise..."
Rating: 10.0
Sentiment: 0.2350915750915751
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Josh Drakewrote on 27.06.2021:[10.0] "The foil to one of the greatest wrestlers that ever lived. A master of many lethal kicks. A fantastic seller who made you want to put Age of Empires I death sounds to his sells for laughs. If there ever was a solid '#3' in AJPW in the 1990's behind Mitsuharu Misawa and Kenta Kobashi, it would definitely be Toshiaki Kawada. He began his career as a sidekick to Kodo Fuyuki in Footloose before going single and having his breakthrough moments with Misawa that we all love and cherish. When Misawa died, he lost his passion for the business, sadly."
Rating: 10.0
Sentiment: 0.15873015873015872
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "Even when rated high, Kawada is still the most underrated of the four Kings of Heaven. His "betrayal" of high school chum Misawa led to the very finest of the Kings Road matches, Misawa and Kawada had a chemistry that is on another level and much of that was due to Kawada always pulling the very best out of Misawa. I also give him extra badass points for his dangerous and frenetic style, his missing teeth, and the fact that he didnt leave AJPW for NOAH, although it would have been great to see the storyline between he and Misawa continue. Check out literally any match he's in, it's dimes every time."
Rating: 10.0
Sentiment: 0.19045454545454543
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Kungwrote on 21.03.2021:[10.0] "I mean, what else am I going to give Kawada? He was one of the most important wrestlers from the single greatest era in pro wrestling history, that being 80s and 90s All Japan. If you haven't watched a Kawada, just get off this site, pull up YouTube, and do it!"
Rating: 10.0
Sentiment: 0.30321428571428577
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: rainmakerpunkwrote on 11.02.2021:[10.0] "He was vicious, intense, and dangerous, you wouldn't think just by looking but when he stepped in the ring he was always the biggest badass, he took no shit from anyone and kicked asses in brutal and physical matches, 5 star fight factory"
Rating: 10.0
Sentiment: -0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: CyberVolteswrote on 01.09.2020:[10.0] "Where do I even begin with Toshiaki Kawada? He is my favorite pro wrestler and I do, in fact, believe he's the greatest of all time. There's just so much to him, his wrestling style, his persona, his historical matches. While I do get why people often overlook him for either Kobashi or Misawa, since Kawada was (arguably) not as charismatic as the former nor as flashy as the latter, I'd argue that Kawada was the better worker between them (not by far, of course, but he still had the advantage). Most commenters around here have already pointed out how agressive and fearsome Kawada was in the ring, plus how good he was as a striker (mainly when it came to kicks), but it seems Kawada never gets the due recognition for his genius-level psychology: literally nothing he did on the mat was meaningless, illogical, too over-the-top or wasteful (and if it ever did seem that way, it was very obviously his opponent's fault). He always had a plan behind what he was doing, whether it was working on a limb, straight up brawling or going into technical matwork. Speaking of the latter, Kawada's is both a brilliant and straight-up underrated matworker: his past as an amateur wrestler would often shine through his moves and, to boot, Kawada has showed a deep knowledge on submission holds and stretches. As if that wasn't enough to bring legitimacy to his game, Kawada was also a formidable seller, more often than not making his opponents look great in the process. As far as his matches go, Kawada has delivered a lot of undisputable classics, as well as many great, underrated encounters. It should be noted that up to his final years, in which he had lost some steam (but not even close to what other wrestlers from his era, like Kobashi, were going through), he was still able to deliver great performances, such as when he faced Daisuke Sekimoto in 2010 (and, no, he was not carried at all). Also, let's not forget about how versatile he was: whether we're talking about of King's Road or Strong Style, Kawada's well-rounded offense worked in both scenarios. Besides, he managed to look spectacular even in matches that should be out of the left field for him, such as shoot-style matches and even in comedy-ladden 'bouts (HUSTLE really brought a different-yet-the-same Kawada to the world). And last, but not least, along with Akira Taue, he was part of one of most legendary tag teams of pro wrestling. Even though Taue was never as skilled as his partner, both had noteworthy chemistry and delivered some of the best matches in the genre. Wrapping it up, there's nobody in the business like Toshiaki Kawada, not even those who are clearly influenced by him. By the way, the comparisons I made above are in no way intended to diminish the other wrestlers (I guess we are all in the same page that the Four Heavenly Kings are the cream of the crop): they just go to show how off-the-charts Kawada was a pro wrestler."
Rating: 10.0
Sentiment: 0.20336538461538464
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Ma Stump Pullerwrote on 06.08.2020:[9.0] "Kawada is less iconic than the Misawa/Kobashi combo that dominated the Japanese wrestling scene, but he could go with either with them just fine and match them for pace. Granted, he wasn't the smooth and crisp technical wrestlers like they were, but focused a lot more on stiff, nasty strikes, and a roughhouse nature (much like his mentor, Tenryu) which would be imitated beyond compare by later wrestlers. As well as that hallmark, Kawada had some of the best ring psychology and selling around: he could make anything seem like a legitimately dangerous manoeuvre, and he seemed to use that a lot to make his opponents look as impressive as possible. His tag work in the Holy Demon Army is legendary also, and easily one of the more underrated tag teams, with their wealth of work towering over a lot of the teams both present and past. I'd say Kawada did well considering he never really got the top spot for long during the prime years of All-Japan and only got to the top and stayed there after everyone relevant left for NOAH. It's still a shame that he'd never got that chance, because Kawada seemed to age the best out of the Four Pillars and was having great matches up to the mid 2000's. The only thing that holds him down from being the best is, unfortunately, he didn't have the raw charisma that Misawa and Kobashi had within the ring (even if that's FAR from a downside) and that was likely what kept him away from being the ace of his respective companies."
Rating: 9.0
Sentiment: 0.18545443160827774
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: OffensiveLariatowrote on 13.07.2020:[10.0] "He may not be the greatest of all time for some but for me he is my favorite wrestler although I consider that Misawa the greatest of all time, but by far Kawada is the one who has made me enjoy this sport the most, his work as singles wrestler or with Taue as a Holy Demon Army is the best of the 90s"
Rating: 10.0
Sentiment: 0.6428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: VillainClubwrote on 12.05.2020:[10.0] "Ein Fantastischer Wrestler mit vielen unglaublichen Matches. Einer der besten aller Zeiten, auch wenn ich ihn ein Stück hinter Misawa und Kobashi sehe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: zephyrwrote on 25.03.2020:[10.0] "Veritable wrestling legend and sadly not appreciated as much as Misawa and Kobashi despite being on the same level as them."
Rating: 10.0
Sentiment: 0.03333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: JokeyZockeywrote on 16.09.2019:[10.0] "Obwohl ich Kobashi und Misawa als objektiv besser sehe war Kawada schon immer mein persönlicher Favorit der Four Corners, hauptsächlich wegen seiner No-Nonsense-Attitude, die viele meiner ''späteren'' Favoriten (Shibata, Ishii, WALTER, etc. ) adaptiert haben. Doch auch zwischen den Seilen wusste Kawada stets eindrucksvoll zu überzeugen, vor allem seine Härte und sein Selling stechen hierbei sehr stark und positiv heraus. Wenn man sich seine Matches gegen Misawa ansieht und dann auf die vielen kleinen Details achtet, die Kawada in die Match-Story einbaut, zeugt das einfach von seinen Fähigkeiten in diesem Bereich. Im Tag Team mit Taue ebenfalls sehr stark, auch wenn ich davon nicht wirklich viel gesehen habe (leider). Nichts desto trotz ist und bleibt Kawada, wie die drei anderen Corner of Heaven, einfach eine absolute Legende des Wrestling-Sports."
Rating: 10.0
Sentiment: -0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: PuroresuLoverwrote on 26.05.2019:[10.0] "This man splits my heart along with Mitsuharu Misawa and Kenta Kobashi. His Bad Ass persona and brutal kicks are amazing, and he can perform like a true heel. Toshiaki Kawada is easily one of the greatest."
Rating: 10.0
Sentiment: 0.13472222222222227
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: OrangeAidCrushwrote on 24.05.2019:[10.0] "My third favorite member of the Four Corners (Behind Kobashi and Misawa), Kawada is easily one of the greatest wrestlers of all-time.  His heavy strike-based mma-style offense is one of the most iconic repertoires in the history of professional wrestling. That style combined with his toughness and athleticism propelled him to being one of the best wrestlers to ever grace the squared circle."
Rating: 10.0
Sentiment: 0.3433333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Toshiaki Kawada was one of the best wrestles in the world in the 90s. He sometimes didn't get the praise he was due because he was overshadowed by Misawa and Kobashi, but Kawada was just as good as they were in the ring,"
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: jamzell00wrote on 17.08.2018:[10.0] "Not as charismatic as Kobashi or the star like Misawa but you'll be hard pressed to find a better wrestler in history.  His ability to tell a compelling story along with his all time great offense made his matches with the other four pillars must watch. Even towards the end of his career he was still a phenomenal wrestler. Only other guy I could say that about from that era is Jun as he's still going strong. Absolute legend Kawada is"
Rating: 10.0
Sentiment: 0.24469696969696975
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Makai Clubwrote on 16.03.2018:[10.0] "He is arguable the best member of the four pillars. His storytelling was impeccable, his selling was exceptional and has since been emulated in great matches. Very innovative with his kicks, powerbombs strikes, mat work etc. If you ever watched the matches he had with Misawa, Kobashi and the tags, Kawada is always the highlight due to his psycholgy. Of course he isn't as charismatic as Kobashi nor was he the ace of All Japan so he doesn't get as much credit as either Misawa or Kobashi but he should get equal amount of praise, if not more."
Rating: 10.0
Sentiment: 0.41916666666666674
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: TheRainmaker28wrote on 25.10.2017:[10.0] "Perhabs the most underrated japanese wrestler of all-time. Kawada just had everything, from the amazing and one of the most brutal looking offensive to the amazing psychology and character work. It's a shame that him doesn't get the same praise as Kobashi and Misawa, because he always was on the same level. Kawada is definitely one of greatest of all-time."
Rating: 10.0
Sentiment: 0.2325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: The Big Blue Machinewrote on 16.10.2017:[10.0] "There isn't much to say about someone like Toshiaki Kawada: one of the best wrestler ever existed, participant of two or three of the best matches in the history of pro-wrestling, a japanese legend. Probably one of the best powerbomb user in the world, he also taught us the beauty of the ganso bomb."
Rating: 10.0
Sentiment: 0.4571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: taabr2wrote on 10.09.2017:[10.0] "One of the best asshole heels in wrestling. Toshiaki Kawada was the perfect heel and is somehow one of the best wrestlers at targeting a body part and working it over while also being one of the best sellers which mean he could play any role in a match to perfection."
Rating: 10.0
Sentiment: 0.7375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: tykechandlerwrote on 15.06.2017:[10.0] "To me, easily one of the ten best wrestlers ever, and if someone argued he was top three I would not argue. Brutal strikes, stiff suplexes, great in-ring psychology--Kawada had it all. Not to mention he participated in some of the greatest matches of all-time, including my own personal favorite. He is a legend!"
Rating: 10.0
Sentiment: 0.35173160173160173
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Chak95wrote on 27.05.2017:[10.0] "Tremendous wrestler, his singles and tag matches with Misawa, Kobashi, Taue and Akiyama are legendary, the fued he had with Misawa is arguably the best ever, and the psychology and stiffness he brought to the ring are unmatched, unfortunately he never had a great triple crown title reign until after the exodus, and in my opinion he lost too many times against Misawa. but that doesn't take anything away from his superb skills."
Rating: 10.0
Sentiment: 0.6976190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Blood Pumpwrote on 30.03.2017:[10.0] "With Toshiaki Kawada Ive given eleven men a ten out of ten, and as of now that's it. Kawada might be near the later half of the eleven (to be precise hes 10, just ahead of Bret) he none the less is just as significant in his own way as the others. Toshiaki might not have been the chosen Ace for All Japan like Misawa, he might not have had the kind of reactions of a Kobashi or the size of Dr. Death but he sure as hell hit harder then all of 'em. Every time Kawada kicked someone he made it look nasty. Despite likely being the smallest of the crew he was also the most frightening because of those bone crushing kicks and because of his look. Taue may have been an awkward giant, but Kawada was a demon from hell and he made sure to let anyone who stepped in that ring against him know it."
Rating: 10.0
Sentiment: 0.07208333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: arrancarwrote on 12.02.2017:[10.0] "One of the very best. Kawada had an absolute killer offence that could/would easily cripple anyone, but he was also a fantastic actor, his facial expressions and body posture being utilised to create many exciting story-based moments regardless of whether he was playing the dominant role or the subservient role. Kawada was one of those wrestlers whose character perfectly represented aggression. Everything he did was fiery, and when he was pissed off he was REALLY pissed off. It's a shame he was overshadowed by Misawa so frequently in All Japan, as I personally felt he was a much better all-around performer who deserved a lot of the accolades and respect that Misawa otherwise received. With some of the stiffest offence ever and a fantastic ability to tell a story, Kawada is definitely one of the best wrestlers of all time."
Rating: 10.0
Sentiment: 0.38958333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: NastyYaffawrote on 01.01.2017:[10.0] "Toshiaki Kawada = One of the best offensive wrestlers ever, one of the best sellers ever, tremendous facial expressions, great storyteller - simply put, one of the greatest professional wrestlers ever."
Rating: 10.0
Sentiment: 0.5291666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: PuroFanwrote on 22.02.2016:[10.0] "My favorite pro wrestler of all-time. His kicks are sick, he is a amazing storyteller and seller. He saved All Japan as well, after Misawa and the (almost) entire roster left the promotion."
Rating: 10.0
Sentiment: 0.07714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: PSachkovskywrote on 14.02.2015:[10.0] "One of Japan's greatest athletes. The man put on some incredible battles with the likes of Mitsuharu Misawa."
Rating: 10.0
Sentiment: 0.95
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: GulakBusickwrote on 14.02.2015:[10.0] "When discussing the absolute greatest of all time, it's difficult to pick one from a small elite group. But if I was asked to, Toshiaki Kawada is the name I would give."
Rating: 10.0
Sentiment: 0.11249999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: yanuswrote on 22.11.2014:[10.0] "One of my favourite wrestlers of all-time, Kawada is great in nearly every aspect of professional wrestling. I especially love his selling and his stiffness. Maybe the best guy out of all the AJPW stars in the 90's (and as anyone who has seen Misawa, Kobashi or Taue can attest, this is really high praise)"
Rating: 10.0
Sentiment: 0.5266666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Matzinhowrote on 11.02.2014:[10.0] "Für mich der beste der Four Corners. Einfach ein ultragemeines Riesenarschloch! Wo der Kerl hintritt, da wächst buchstäblich kein Gras mehr. In seinen 40ern ist er auch langsam geworden, hat aber - ähnlich Kobashi und in meinen Augen ungleich Misawa und Taue - seinen Stil sinnvoll umgestellt und weiter gut gewrestlet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Alex Maedawrote on 05.09.2013:[10.0] "Offiziell scheint seine Karriere noch nicht vorbei sein, aber das letzte Match liegt laut Cagematch nun schon 3 Jahre zurück, also ein guter Zeitpunkt, um einen Karriererückblick zu vollziehen.  Der wahrscheinlich stiffste Wrestler seiner Zeit. Dazu kommt ein großartiges Verständnis dafür, wie man im Ring ohne Worte eine spannende, intensive Geschichte erzählt. Kawada war und ist große Klasse, spätestens ab den Nullern natürlich nicht mehr mit dem Worker zu vergleichen, der er zu Glanzzeiten mal war, aber ähnlich wie Muto, Kobashi oder, um mal ein amerikanisches Beispiel zu nennen, Austin hat er seinen Stil zu umgestellt, dass er selbst mit eingeschränktem Moveset immer noch ordentliche bis gute Matches liefern konnte. Außerdem herrschte vor allem zwischen Kawada und Misawa so eine unfassbar intesive Chemie, die letzterer wahrscheinlich sonst nur mit Kobashi erreichen und vielleicht sogar toppen konnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Milopowrote on 03.09.2013:[10.0] "This man is the complete package charisma, in ring talent and range as a character."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Lecterwrote on 06.06.2013:[9.0] "A lot of people think he's considerably better than Misawa and Kobashi, but I never got into his matches the same way I did theirs. Kawada's a great wrestler with deathly kicks and a great career, but he felt more like a wrestling machine than a wrestler to me at times."
Rating: 9.0
Sentiment: 0.52
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Yoyowrote on 31.12.2012:[10.0] "The best kicker and one of the toughest guys in wrestling, period. A damn great seller too."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Leonewrote on 05.08.2012:[10.0] "Back in the 1990s, and even into the 2000s, Kawada Toshiaki was a war machine in professional wrestling.  His matches against the likes of Mitsuharu Misawa and Kenta Kobashi are of legendary proportions.  His kicks are like Misawa's elbows and Kobashi's backhand chops, in the sense that almost nobody else can do them to such perfection.  Slow motion of these kicks have shown us how much they hurt, but they aren't all he had to offer.  He won the All Japan Triple Crown title with a broken arm, and in the process he accidentally added 1 of the most dangerous moves of all time to his arsenal, the Ganso Bomb.  Along with his picture-perfect powerbombs and terrifying suplexes, Kawada was also the submission specialist of the All Japan Famous Five, after spending time in Canada to hone his craft early in his career.  With numerous championships, including 5 triple crown title reigns, about 18 5-star matches, and many more matches with 4 or more stars, he is a wrestler who deserves to be remembered and credited for his high quality and violent matches."
Rating: 10.0
Sentiment: 0.05333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: WhiteHummerDriverwrote on 24.12.2011:[10.0] "Kawada war für mich Phasenweise sogar besser als Misawa und Kobashi. Kawada hat alles: Eine unglaubliche "Badass"-Ausstrahlung, stiffe Kicks, harte Aktionen und das geilste Selling seit Jumbo Tsuruta. Leider in den goldenen 90ern von AJPW unter Wert verkauft, zumindest was die Triple Crown angeht. Hat dennoch Hammermatches am Fließband produziert und ist meiner Meinung auch der einzige der alten Garde (wenn man Akiyama mal weglässt da der ja erst gegen Ende der 90er seinen hohen Status erreichte) der noch im fortgeschrittenen Alter richtig was zeigen kann (Kobashi's Körper fällt nach und nach ausseinander, Misawa war vor seinem Tod auch schon jahrelang nicht mehr wirklich fit, und Taue hat schon vor langer Zeit eingesehen, dass seine Fähigkeiten nur noch dazu reichen, die Matches der Undercard aufzupeppen).  Dangerous K - für mich für immer einer der Top 5 aller Zeiten im Puroresu."
Rating: 10.0
Sentiment: 0.10000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Neuhofwrote on 05.07.2011:[10.0] "Ohne, dass ich jetzt wirklich fit im Puro bin: you gotta love Toshiaki Kawada. Der Mann ist der gemeinste, böseste, härteste MF'er, den ich jemals in einem Wrestling-Ring sehen durfte. Können im Ring, Stiffness, Brutalität, unheimliches Charisma, und geradezu grenzenlose Coolness. Wird zwar allzu oft nicht mit dem Respekt behandelt, den er verdient, aber einer der größten des Wrestlings."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Berlin Dragonwrote on 18.09.2010:[10.0] "Der coolste Wrestler Japans. Geniale Matches mit Kobashi und Misawa , aber auch perfekt im Team mit Taue."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: BenZenwrote on 28.02.2010:[10.0] "Can't fuck with Kawada~! Mit seiner brutalen Stiffness gepaart mit der ausgestrahlten Coolness traf er schon immer einen Nerv bei mir. War an legendären Schlachten beteiligt, einer der ganz großen Repräsentanten der vielleicht stärksten Wrestlingphase mit dem All Japan der 90er und auch wenn er heutzutage nicht mehr die Leistung von früher zeigen kann, so bleibt er immer noch ein dreckiger Bastard - im absolut positiven Sinn. Von den ganzen großen All Japan-Namen von damals meine Nummer 1."
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Kenshin Uesugiwrote on 16.01.2010:[10.0] "Ich brauche ja nicht wiederholen was die anderen User gesagt haben, Kawada ist ein verdammt harter, brutaler, genial Wrestler. Und auch wenn ich trauig bin das er nicht bei AJPW geblieben ist, so freue ich mich doch über jeden Auftritt und Kampf von " Dangerous K ". Er braucht weder mir, noch sont jemanden etwas zu beweisen. Er gehört zu den Wrestlern, wo man sich wünscht das sie nie altern."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: DJ MaSchwrote on 06.01.2010:[10.0] "Ein klasse Wrestler und guter Heel. Er legt eine unglaubliche Stiffness an den Tag, die seine Matches realer wirken lassen als bei jedem anderen Wrestler der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Mick Funkwrote on 12.11.2009:[10.0] "Göttlicher Heel. Sein Stil ist genau das was mir gefällt. In Sachen Puro einer meiner absoluten Lieblinge."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Fountain of Misinformationwrote on 06.10.2009:[10.0] "Ich kann mir nicht helfen, aber so langsam aber stetig baut auch Kawada ab, was in Angetracht seines Alters und der mehr als 25 Jahre im Geschäft nur allzu verständlich ist. Auch er sollte in meinen Augen den richtigen Zeitpunkt des würdevollen Rücktrittes nicht verpassen, um seiner überlebensgroßen Vergangenheit nicht zu schaden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Matt Mackswrote on 24.01.2009:[10.0] "Toshiaki Kawada ist einer meiner Lieblingswrestler aus Japan. Die harten Kicks sind sein Markenzeichen, doch auch der Rest seines Angriffsarsenals wird von Amnesty International auf einer schwarzen Liste geführt. Zusammen mit Kenta Kobashi und Mitsuharu Misawa einer der zentralen Eckpfeiler der Goldenen Ära von All Japan in den 90er Jahren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Herr der Kritikwrote on 03.12.2008:[10.0] "Wer so krass drauf ist, dass ihm Millionen Wrestlingfans aus aller Welt einen Kick als Finisher abkaufen verdient nichts anderes als 10. Nein, mal im ernst, absolut genialer Mann, kann ihn mir selbst jetzt noch im hohen Alter gut 25-30 Minuten ansehen, ohne einen Ansatz von Langeweile zu verspüren, schade nur seine Auftritte bei HUSTLE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Tomkowrote on 24.08.2008:[9.0] "Klasse Wrestler, der mich immer wieder mit seinen stiffen Kicks begeistert, aber dennoch nicht 100% überzeugt!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Kaffoe 666wrote on 25.03.2008:[10.0] "Cool und böse mit vielen geilen Aktionen und maßig starken Fight jenseits der ****. Kobashi/Kawada/Misawa/Sasaki sind so meine absoluten "1er" im Puro..."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Hennewrote on 22.03.2008:[6.0] "Kawada ist sone Sache. Sicherlich kein schlechter Wrestler, aber wirklich begeistern kann er mich kaum."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: LexLuger4everwrote on 22.02.2008:[10.0] "Zählt zusammen mit Kenta Kobashi und Mitsuharu Misawa zu einem der 3 legendärsten japanischen Wrestler aus den 90er Jahren und ist gleichzeitig einer meiner absoluten Lieblingswrestler aus Japan!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: D-Stylewrote on 17.01.2008:[8.0] "Ich hätte auch die 1 gegeben wenn er sich nicht bei Hustle vollkommen zum Affen machen würde, und sich selbst etwas demontiert. Bei AJPW natürlich eine Legende, und viele Topmatches hingelegt. Sehr guter Mann"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: xspikexwrote on 19.11.2007:[10.0] "Hat im Gegensatz zum Kollegen Misawa rechzeitig aufgehört, bei jeder Tour komplett dabei zu sein und ist somit noch in der Lage klasse Matches abzuliefern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=290&gimmick=Toshiaki+Kawada
Comment: Baszdmegwrote on 19.08.2007:[10.0] "Eine der größten Japan-Legenden überhaupt. Im Westen neben Namen wie Kobashi oder Misawa leider total unerwähnt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Ryanbest316wrote on 15.12.2024:[10.0] "Manami Toyota makes all of our favourite wrestlers seem like amateurs, its hard to comment on her ability because words feel like they cheapen her fight, passion and her ability to seem like she is fighting Gods and surviving. When Manami Toyota bumps you forget wrestling is a work, one of the best of all time, and deserves to be known by every wrestling fan."
Rating: 10.0
Sentiment: 0.35416666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Dweeeabwrote on 03.12.2024:[10.0] "The best female wrestler ever and can be argued the best wrestler ever. Probably has the best cardio in wrestling ever, her gas tank never emptied. The way her body would fold during powerbombs and Germans always made them look incredibly impactful. The jump to the top rope followed by any type of dive she decided she wanted to do was always a great spot & she continued to be great even at the end of her career putting on great matches. From videos Ive watched her work ethic was also undeniable never not putting on her absolute best."
Rating: 10.0
Sentiment: 0.7272727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: yumin76wrote on 08.11.2024:[8.0] "Absolutely gorgeous woman and a stunning fighter. She moves with such grace and truly feels like a queen in the ring. Awesome."
Rating: 8.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Zak22wrote on 13.10.2024:[10.0] "Not all of Manami Toyota's matches are for me, sometimes because of the frantic pace. But Manami Toyota is simply the greatest women's wrestler of all time and a top 10 wrestler of all-time in the very top league. Toyota had fantastic work-rate, great highflying and speed based offense, some great power moves as well. She had some of the greatest matches of all-time. 100% legend."
Rating: 10.0
Sentiment: 0.6437499999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: igskillfartwrote on 12.09.2024:[10.0] "She is one of if not the greatest wrestlers to have ever graced this planet, she has influenced a generation of talent, her high flying and technical ability legit changed the way Joshi style was, of course she deserves a 10"
Rating: 10.0
Sentiment: 0.38666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: KobashiChopMewrote on 03.08.2024:[10.0] "She is arguably the greatest female wrestler to ever do it. It's clear how influential she was when you look at how much modern day wrestling is influenced by her body of work. Phenomenal. 10/10."
Rating: 10.0
Sentiment: 0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: SigmaAngeloAsteriawrote on 28.07.2024:[8.0] "Definitely a great wrestler, has her shine and her great matches, but I'd consider Yokota, Nagayo, Hokuto and Matsumoto over Toyota."
Rating: 8.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Gabiwrote on 25.07.2024:[10.0] "Manami Toyota is up there with the greatest to ever do it, and that includes the male wrestlers. She could do everything and have a 10/10 match with anyone. Perfection"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Joe907wrote on 19.07.2024:[10.0] "Manami Toyota is the greatest women's wreslter ever. The perfect professional wrestler. Great technical abilities and high flying. She is a legend and influenced the modern generation of wrestling."
Rating: 10.0
Sentiment: 0.4657142857142858
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: JLHarmanwrote on 01.07.2024:[10.0] "How do you describe Manami Toyota? It's as simple as just the greatest female wrestler in history. Nobody did what she did in the ring, especially back then. She's one of the pioneers and an example for many female wrestlers. Her matches are unbelievable, have never aged and are still appreciated today! If you don't know this woman, check out her work !"
Rating: 10.0
Sentiment: 0.17916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: doobwrldwrote on 26.05.2024:[10.0] "A true pioneer for womens wrestling today not just within the Joshi based promotions we see today like STARDOM, TJPW, and Marigold, but for any womens division elsewhere. One of the standard bearers of the revolution and rise of Japanese professional wrestling in the 90s as well. A genuine candidate for greatest professional wrestler of all-time, regardless of gender."
Rating: 10.0
Sentiment: 0.2785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: teenagehonvedfanwrote on 02.03.2024:[10.0] "That insane "I am the best and I also don't care" attitude. Likely better than any female wrestler even now. Maybe Io could match her."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: skillgullwrote on 29.02.2024:[10.0] "Every LGBT male person usually has one random woman who they are the biggest fan of for no reason. for me Manami Toyota is that women. One of my favorite pro wrestlers ever, one of the best of all time. The prefect pro wrestler."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: KEIwrote on 02.02.2024:[10.0] "The greatest female wrestler of all time. One of the greatest wrestlers regardless of gender. Minami Toyota is an icon of joshi puro and puroresu in general. An absolute legend. 10 out of 10."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: chemstarwrote on 30.01.2024:[10.0] "Easily the best female wrestler ever. Perhaps even the greatest wrestler period. Her matches with Kyoko Inoue and Akira Hokuto sold me on her and I can't recommend her enough."
Rating: 10.0
Sentiment: 0.4866666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Wrest lingaddictionwrote on 20.01.2024:[10.0] "For my money the greatest female wrestler of all time. She was before her time in my opinion. Toyota had a moveset and in-ring ability that could stand against the best even now. Her matches with Aja Kong were some of my favourite, same with Meiko Satamura."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: alleyallewrote on 11.01.2024:[10.0] "Go back and watch her matches. She was not only ahead of her time, but she would still be one of the best wrestlers in the world today if she was competing like she did in her prime. Absolutely fantastic. Sometimes she took risks which might have been ill-advised, but that's part of what made her so great. She's without a doubt the best female wrestler of all time, and she's in the conversation for best wrestler of all time period."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Bar786788wrote on 12.12.2023:[10.0] "Manami Toyota is my favorite wrestler of all time, and I think the greatest female wrestler of all time. The first Joshi match I watched was her versus Aja Kong, and most of the womens wrestling I had seen previously was WWE (this is about 2007), so needless to say I was blown away by the intensity, the athleticism, and the storytelling. Her matches in her prime are nothing short of art."
Rating: 10.0
Sentiment: 0.19791666666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: JediSaiyanMaster1203wrote on 25.11.2023:[10.0] "The Greatest Female Professional Wrestler Of All Time! Seriously, how good this woman is as a wrestler is insane, it's unfair that she's so gifted. To this day, the best female rivalry is still her against Aja Kong, no other women's feud can touch it, as good as some of them are. Her matches with Aja Kong, Kyoko Inoue, Akira Hokuto, Toshiyo Yamada, Mima Shimoda to name a few, along with her tag team bouts, all speak for themselves and should be seen by anyone who appreciates professional wrestling in general. Her move set is breath taking, watching her taking nasty bumps, selling like crazy, taking all kinds of high flying risks, getting technical, there's so much to offer that she can provide and always delivers, not to mention that she's also a great storyteller, she's a very believable babyface and plays the role super well in her matches almost in the same way that a Bret Hart does. I know this phrase gets thrown around a lot, but this is 100% deserving of a title for her, Manami Toyota is a generational talent that we will never see anyone come close to being on her level of in ring talent, psychology, story telling and able to have the crowd in the palm of her hand ever again. Seriously, she's so refined and athletic, that it's almost unreal how out of this world her in ring abilities are, she makes everything look so easy and takes so many risks with no hesitation whatsoever, truly on a whole different level, no matter the race or gender. Overall, Manami Toyota is the GOAT who has a 30 year career that has influenced many talents since then, everyone should put some respect on her name!"
Rating: 10.0
Sentiment: 0.15977272727272726
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: wrestlejackalwrote on 20.10.2023:[10.0] "The high peak excitement and danger of Manami Toyota is what makes her spectacular. The adrenaline rush that comes watching this woman crash at high speed, or deliver a devastating maneuver, is what gives me the joy and pleasure of considering Toyota as one of the absolute best. Many will simply say "She's the best" without ever telling you why. The leaps of faith with zero hesitation, the dangerous yet wildly innovative offense and her refusal to compromise made her extremely compelling in her prime. Her famed matches against Kyoko Inoue, Akira Hokuto, Aja Kong and so many others are legendary at this point. My favourite stuff has got to be the tag work during the interpromotional feuds with JWP and LLPW. The two WWWA tag championship bouts with Toshiyo Yamada against Dynamite Kansai and Mayumi Ozaki are spectacles, masterclasses in tag team wrestling. Those on top of her feud against Yamada were key to me getting deeper into the joshi scene. It's the art of it all that made Manami Toyota great. The raw emotion and danger - all learned from the innovator before her and another all time great Jaguar Yokota. Don't let either the revisionists who say she's an emotionless no-seller or the uneducated Meltzer-repeaters that never watched and will fail to explain her greatness fool you. Just watch the matches and see for yourself. She was the real deal who became one of the key pieces of the post-Crush Girls era of AJW, and I will always view her as one of the greatest wrestlers of all time."
Rating: 10.0
Sentiment: 0.3203846153846153
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Lutwiejwrote on 30.09.2023:[10.0] "Manami Toyota is one of the best wrestlers of all time, male or female. With a lot of 5 star matches, her bouts stand the test of time, being some of the most impressive women's matches of all time. She was always giving 100% in her matches, doing a lot of crazy moves and taking some big bumps. Great seller and always had a great connection with the audience. Truly the GOAT."
Rating: 10.0
Sentiment: 0.3888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: SienaArsenwrote on 05.08.2023:[10.0] "The best female wrestler of all time, and one of the best in general. She had 13 5-Star Matches in her carreer. She had no fear to be agressive, to put her limits on test every single match, to be innovating. She makes moonsaults, backflips, turnbuckles rolling pins and falling dropkicks in a age of the most wrestlers uses backsuplexes and hammerpunchs as better move. She also had a incredible balance control, jumping on the ropes without a single trace of sliping, and could be considered one of the pionners of the future "high-speed style". And she completed with good sellings. No much more to say, she's simply the best!"
Rating: 10.0
Sentiment: 0.37551020408163266
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: jonsnoewrote on 01.06.2023:[10.0] "The best women's wrestler of all time. Her movement and her agility feel more like a man wrestler than a woman. TRUE GOAT."
Rating: 10.0
Sentiment: 0.6166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: CorpusSkiptotelicumwrote on 13.05.2023:[5.0] "Fine Wrestler that has had many good matches. But theres something missing; selling. Whenever I watch a Manami match, its like i'm watching advanced AI art, sure its impressive on a technical level but theres no soul to be found. Somehow, she lacks the charm that some of the more successful american spot monkeys have. I still respect her, and maybe one day I will get it, but its not today."
Rating: 5.0
Sentiment: 0.4151515151515151
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: TheOneAndOnlyCactuswrote on 12.04.2023:[10.0] "The best female wrestler of all-time in my humble opinion. There's revisionists out there that will claim she had no psychology and couldn't sell. I wholeheartedly disagree here. She was a tremendous seller that could take some crazy bumps. She could squeeze out any emotional reaction from the audience at any time, she always had them in the palm of her hands. And wow, what a worker she was. Setting the standards for in-ring action for the decades to follow, insane pace and stamina in her prime, she was just a joy to see perform."
Rating: 10.0
Sentiment: 0.05333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: ChrisPrattAsMariowrote on 06.03.2023:[10.0] "The greatest female wrestler of all time and one of the best wrestlers in general. Matches against Hokuto, Aja, Inoue, and Kansai always deliver and her wide array of moves is amazing. My favorite match of hers is against Akira Hokuto at Destiny 1995"
Rating: 10.0
Sentiment: 0.43571428571428567
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: TooDarkMarkwrote on 23.12.2022:[10.0] "One of the greatest professional wrestlers to walk this Earth. Lou Thesz, Buddy Rogers, Harley Race, Bret Hart, Manami Toyota. A real shame that many outside of Japan will never know the true genius of her work."
Rating: 10.0
Sentiment: 0.35833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: CJRisAwesome12wrote on 10.09.2022:[7.0] "I? ve always liked Aja Kong better because Manami? s matches just have never been as exciting. Don? t get me wrong she is still very good. Even her matches with Aja aren? t fantastic. One of them I can? t even finish because Manami won? t stop screaming. I feel like she doesn? t sell as much as her other contemporaries but maybe I just don? t notice it. Because I am decently new to Japanese wrestling. I think a 7 out of 10 currently is satisfactory. Maybe I? ll change it later once I watch a little bit more of her work."
Rating: 7.0
Sentiment: 0.19527597402597402
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Makai Clubwrote on 11.05.2022:[9.0] "While I don't think Toyota was the best of her generation, she could do wonderous things in the ring. And, like her peers, her longevity is underrated. She wrestled as a top level for a good while. Perhaps not twenty years like some of the male wrestlers, such as Negro Casas, Bryan Danielson, etc, did but the lack of footage doesn't skew in her favour either. But for what we seen, she has a long list of great matches against different opponents or tag team partners. Her feuds against Toshiyo Yamada and Aja Kong are well known throughout history and for good reason. But she had a lot of good matches against lesser known rivals such as Yumiko Hotta and Kaoru Ito. Her longevity was certainly helped with the hyping by Dave Meltzer and while I think she is below the likes of SHonbu Kandori, Akira Hokuto, Chigusa Nagayo, she was a quality wrestler in her own right. Someone who helped push the hyper competitive mindset that allowed for everyone to be on their top games for a period of time. That's an achievement."
Rating: 9.0
Sentiment: 0.371875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Wright15wrote on 11.02.2022:[10.0] "You can make great arguments for a few different people, but I think that Manami Toyota is the best female wrestler of all time. But it's insulting to give her that label and call it a day, as she is easily one of the greatest wrestlers period. This woman was insane. I don't understand how she would do that MISSILE DPROPKICK FROM THE TOP ROPE TO THE FLOOR every single show and still wrestle for 30 years. No one has been as successfully reckless a high flyer, and honestly, no one should ever try. You can probably count on two hands the number of wrestlers with her stamina (about half of them would have been working with her in 1990s AJW by the way). To this day, she holds the distinction of participating in the fastest 60 minute draw of all time against Kyoko Inoue in 1995. Seriously, they sprinted towards the finish for a whole hour. She is proof that you don't need to be flashy outside the ring in order to get over: her soft-spoken nature in interviews never held her back. An ultimate face during her prime, she would seldom fail to get the crowd cheering. Her feuds against Toshiyo Yamada, Kyoko Inoue, and Aja Kong are legendary. It is difficult to keep track of the number of classic matches she had. Even in the 2000s, during the dark ages of joshi wrestling, she still managed to have her share of awesome matches. But most importantly, she never compromised: she always stayed true to her vision of wrestling and did it her way. Because of that, modern wrestling is only just catching up."
Rating: 10.0
Sentiment: 0.1314718614718615
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: NoSellwrote on 17.11.2021:[10.0] "The GOAT, the Queen of Queens. Simply the greatest female professional wrestler of all time and one of the best regardless of gender. Innovator of moves and absolutely fearless in the ring, throwing herself 100% into everything. A joy to watch her matches with Aja Kong, Kyoko Inoue, Akira Hokuto and many more. Legendary."
Rating: 10.0
Sentiment: 0.51
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: ActualHumanWillwrote on 28.09.2021:[10.0] "Bar none the greatest women's wrestler of all time, and arguably one of the greatest wrestlers of all time in general. Had an unrivaled career full of legendary matches, great moments, and innovative offense thats still used by many indie wrestlers to this day. A truly incredible wrestler."
Rating: 10.0
Sentiment: 0.6100000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "The greatest Joshi/female wrestler of all time, she is a innovator with his aerial moves, a lot of aerial wrestlers owe respect to Toyota"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: doxkevwrote on 20.06.2021:[10.0] "Best woman I've ever seen wrestle. Glad her matches are on youtube. I'm surprised other professional wrestling ladies don't mention her?"
Rating: 10.0
Sentiment: 0.31500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Ma Stump Pullerwrote on 05.06.2021:[9.0] "If we were discussing the prime of her career, I'd most definitely say she was a 10, no question. Fantastically agile and had a workrate that not even the vast majority of the talent today can really keep up with. Extremely innovative and consistently having world class matches, as well as being a sensational seller, especially against the monster heels at the time: no one has quite made me cringe as much as she has with some of her brutal bumps. The only gripe I'd have with 90's Toyota was that she had a tendency to just never really slow down, which is great for some but for me I like the slower paced, psychological ringwork rather than just going full steam all the time, which was a habit she consistently dipped into. Why not a 10 if she's so talented then? Well, it's the fact that she slowed down considerably in her later years (not helped by her relentless workrate wearing her down pretty fast) and couldn't really go for a good bit near the end of her career. Sure, she'd still have great matches now and then depending on who was there, but never on the level that she'd have in her better days. That for me keeps her at a 9 despite her numerous accomplishments."
Rating: 9.0
Sentiment: 0.22109375000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Kungwrote on 29.05.2021:[10.0] "I don't think you can be hyperbolic when talking about Manami Toyota. She was ridiculously talented in the ring and she might be the best pure babyface in Joshi history next to Chigusa Nagayo. Also the Japanese Ocean Cyclone Suplex is the greatest suplex ever conceived."
Rating: 10.0
Sentiment: 0.4857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Wrestling Foreverwrote on 19.04.2021:[10.0] "Eine der Joshi Legenden schlechthin. Würde sicher auch heute noch starke Matches zeigen. Trägt heute kurze Haare würde man echt nicht wiedererkennen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: axebombertsurutawrote on 18.04.2021:[10.0] "Gorgeous Moonsault, maybe the best ever in the business. Love her matched against Aja Kong especially."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: math1823wrote on 17.03.2021:[10.0] "Toyota did in the 90s what is considered "modern" today. She, alongside all of the AJW roster but I think it was even more obvious with her, was 20 years ahead of her time and she really helped women's wrestling grow in Japan and in the world. She is imo the best wrestler of all time."
Rating: 10.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: KOtrianglewrote on 18.02.2021:[10.0] "The greatest women's wrestler of all time, her ability, and how great she in terms of storytelling or being the biggest babyface in the match, unfortunately she wasn't as popular as Aja or Bull or Hukoto for the international fans, but that doesn't change the fact about her greatness."
Rating: 10.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: rainmakerpunkwrote on 28.11.2020:[10.0] "One of the best wrestlers in history, I've seen her do some incredible moves that nobody else can really do, her offense is incredible, she's not bad at selling either, in 1995 she was the best wrestler in the entire world"
Rating: 10.0
Sentiment: 0.6214285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Suzukigunwrote on 07.11.2020:[10.0] "Best female wrestler ever. One of the best wrestlers ever, period, and universally regarded as such for good reason."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: BlueVinsmoke2323wrote on 01.11.2020:[10.0] "The greatest female wrestler of all time and one of the best wrestlers male or female ever in my opinion. She was a super workhorse, being part of many nonstop action matches. She? s really good as a sympathetic babyface and her selling is fantastic. Her agility is out of this world, she literally did springboard moves without even using her hands. Very revolutionary and important wrestler to the history of this sport."
Rating: 10.0
Sentiment: 0.39487179487179497
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Nerfair1wrote on 15.10.2020:[10.0] "Probably the best female wrestler of all time, also one of the best wrestler of all time period, she was amazing."
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: EUJBFTYwrote on 23.07.2020:[10.0] "The greatest female wrestler of all time and in the top five greatest wrestlers of all time, regardless of gender."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: OffensiveLariatowrote on 04.06.2020:[10.0] "The GOAT she is my favourite female wrestler and the second one overall after Kawada, she was a pioneer and inspired a lot of people, it's sad that a lot of people doesn't even know who she is because of the unfamiliarity of the general/mainstream public with japanese wrestling and more specifically the 90's Joshi Puroresu"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Kaswrote on 27.01.2020:[10.0] "A champion of work-rate above all else and is unmatched by anyone in that aspect. Rightly draws criticism for her lack of long-term selling and her tendency to just go-go-go at her peak, but these are aspects that were improved upon considerably from 1997 onwards. On top of this, she really does not get enough credit for other aspects of selling, like bumping, submission sequences, and FIP segments in tag matches. She was also a pioneer of a style that may not be to everyone's tastes but was incredibly ahead of her time to the point where many of her matches wouldn't look out of place even today. Top 3 women's wrestler of all time along with Hokuto and Bull."
Rating: 10.0
Sentiment: 0.2860714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: 20SaiDa19wrote on 14.03.2019:[10.0] "My personal favourite wrestler from the 90's. Her in-ring style was way ahead of its time and a majority of her matches, both single and tag, hold up very well today. It could also be argued that, during her prime, Manami was one of the most athletic wrestlers ever, regardless of gender."
Rating: 10.0
Sentiment: 0.15714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: MitsuharuMisawawrote on 09.03.2019:[4.0] "I like Toyota but she is missing psychology in most of her matches. I do not like her famous tag team matches but like one of her singles matches with Aja Kong. She is too quick for my tastes. She is not the greatest female of all time."
Rating: 4.0
Sentiment: 0.35555555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Aurtletheturtlewrote on 06.03.2019:[10.0] "The greatest female wrestler to ever exist. She elevated every match she was in and every person she faced to her level and yet still no one could touch her. Manami Toyota is not just the greatest female wrestler to ever step in between the ropes, she is one of the best wrestlers to ever lace up a pair of boots regardless of gender."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: RatingsMachinewrote on 14.10.2018:[10.0] "Manami Toyota was the best female wrestler of all time, and the only one you could put on her level was Akira Hokuto. She always worked hard, she could do some incredible things in the ring, and she did it all within the confines of making a match both exciting and dramatic. If you try to argue she wasn't as a great as she was, you're only going to make yourself look foolish."
Rating: 10.0
Sentiment: 0.2527777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: JokeyZockeywrote on 29.11.2017:[10.0] "Die beste Frau, die jemals einen Wrestling-Ring betreten hat! Zu ihr muss man nicht viel sagen: Technisch besser als viele Männer, unzählige atemberaubende Klassiker auf die Beine gestellt und eine unvergleichliche Intensität und Charisma! Die ''fliegende Fee'' ist einfach die größte Legende des Joshi-Puro und wird uns auch jetzt nach ihrem Karriereende für immer in Erinnerung bleiben! Danke für alles Queen, genieße jetzt deinen wohlverdienten Ruhestand."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Vancouver Victiniswrote on 19.11.2017:[10.0] "Look if you can get 17 5* matches in about 4 years and 2 of those in a tag team tournament on the same night. you are perhaps the greatest wrestler on the face of the planet."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Paul Allainwrote on 11.11.2017:[7.0] "Good veteran joshi, absolutely, but nowhere near a top all-time wrestler. Certainly a very good hand, but nothing overwhelmingly special, aside from great moves executions."
Rating: 7.0
Sentiment: 0.4458928571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: UserDragon12wrote on 23.10.2017:[10.0] "I can not find words that honor everything Toyota Manami did. Seeing that some people who should know of wrestling give it a rating of 0. 0 / 10. 0 is really sad. She is a great fighter and had legendary matches, to name a few, vs kong in tokyo dome 94, vs Kaoru Ito in 97 (in this match you can highlight the sale of manami in its maximum splendor, I chose it so that its detractors close the mouth) vs toshiyo yamada hair vs hair, vs akira hokuto 9/2/95, and much more, maybe you can doubt if she is the best fighter of all time (there was a lot of competition in that then), but definitely she's a great joshi fighter, and seeing her work is something you can not miss."
Rating: 10.0
Sentiment: 0.42500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: taabr2wrote on 10.09.2017:[10.0] "Manami Toyota is one of the greatest workers (man or female) of all time. In the early 90s she was pulling out maneuvers that not even men in wrestling was doing at the time."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Arousalswrote on 17.04.2017:[7.0] "She's had more 5 stars match than any woman in history and will definitely go down as one of the all time greats."
Rating: 7.0
Sentiment: 0.17222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: SuTonwrote on 17.04.2017:[9.0] "Manami Toyota is often touted as the greatest woman wrestler ever by people with just passing knowledge of Joshi or parrots of Meltzer, but the story was different among her peers at the time of her Zenjo run with Akira Hokuto getting the bulk of the praise. There's no question Toyota was a great athlete and could go at brisk pace with fantastic stamina. She embodied the style of the promotion during her prime and worked it the faster; rapid work-rate, a ton of high spots, and screaming. Compared to her contemporaries like Aja Kong and Hokuto, the way she put her matches together sacrificed story, structure, long term selling (her climb to and more emphasized getting her shit in e. g. I hate the table spot outside stuff like where Hokuto kicks her in face for her troubles. She had explosive offense that played on her ability to convey a sense of urgency. You can say she relied mostly on her athletic ability, given the lack of notable matches after peaking. No arguments would be had if you said Toyota was one of the best offensive wrestlers ever. Toyota was a great babyface in peril and could sell an ass kicking with her facial expressions, contorting, and bumping. Her shrieking could get excessive, though. Her flaws as a worker are obvious and while she's not among the absolute best joshi wrestler of all time, she's among the best, has been involved in some of the greatest matches of all time (few wrestlers have been in more great matches), and was a great performer."
Rating: 9.0
Sentiment: 0.3784
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: cbenson5wrote on 11.04.2017:[10.0] "Manami Toyota's work is breathtakingly beautiful.  Greatest woman's wrestler of all time and probably top 5-10 when you include the men."
Rating: 10.0
Sentiment: 0.7833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: nitrop199wrote on 29.10.2016:[10.0] "She puts any other wrestler of any era to shame when it comes to trigger empathy. Incredible acting, incredible selling, she did stuff that only a few would dare to do, even today.  Had some of the greatest matches in the history of pro-wrestling.  Manami Toyota is without a doubt one of the greatest wrestlers of all time."
Rating: 10.0
Sentiment: 0.434375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: TheOneWhoKnockswrote on 23.10.2016:[10.0] "Calling Toyota the greatest female wrestler of all time is not enough. She is one of the greatest wrestlers of all time, full stop. Top 5 at least even. No woman to ever enter this business, not even her AJW counterparts, have ever met her level. Her selling is wonderful, one of the best sellers of all time, she could sell any submission or strike and make it seem legitimately painful. A shit ton of charisma, got the crowd invested in her matches consistently and is also one of the best babyfaces of all time. Her high flying moves impressed also and she could hit a mean German Suplex. Only thing left to say is that she was this good while being stunningly beautiful. Not relevant but hey. She is. Toyota is almost everything you want in a wrestler. An easy 10."
Rating: 10.0
Sentiment: 0.3274275362318841
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Luv all wrestlingwrote on 10.10.2016:[10.0] "Manami Toyota has had over ten five star matches, that should tell you all about how great she was. A great tag team and singles wrestler, Toyota knew how to pace a match and she once had a great match in a RAINSTORM."
Rating: 10.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: ApexOfEvolutionwrote on 31.07.2016:[10.0] "Die " alte" Dame ist eine wahre Legende und man hat nicht das Gefühl, dass sie auch nur ein bißchen Rost angesetzt hätte. Majestätische Ausstrahlung, tolle Technik, spektakuläres Highflying und ein göttliches Selling. Einfach nur 10 Punkte wert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: ShooterMcShootwrote on 24.06.2016:[10.0] "I can't really build on the comments that have already been made describing her as the greatest women's wrestler of all time (and one of the greatest wrestlers of all time, period), because they're absolutely right, in my view."
Rating: 10.0
Sentiment: 0.6214285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: shimmerknockoutwrote on 07.05.2016:[10.0] "One of the, If not the greatest women's wrestler ever. A true innovator and Joshi queen, and still going strong today."
Rating: 10.0
Sentiment: 0.5944444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Laurelleswrote on 05.05.2016:[10.0] "One of the greatest wrestlers of all time, a true innovator. Allegedly she's not as highly rated by her contemporary joshi workers, but she's a true delight to watch from my perspective."
Rating: 10.0
Sentiment: 0.3211111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: paijowrote on 15.07.2015:[10.0] "The anti aging lady, she's the coolest wrestler in the 90's. queen of Innovator. and amazing athlete"
Rating: 10.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Alex Maedawrote on 26.09.2013:[10.0] "Die Joshi-Legende schlechthin. Und das zurecht. Gimmick, Unterhaltungswert und Intensität im Ring habe ich so noch nie zuvor und danach so erlebt wie bei ihr."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Leonewrote on 01.07.2012:[10.0] "Along with Jaguar Yokota, this woman is in a league of her own when it comes to quality wrestling.  Back in the 1990s she lived up to the description of a wrestling martyr, selling moves incredibly well for her opponents and taking some of the sickest head drops you will ever see, even today.  Her tag matches with Toshiyo Yamada against Dynamite Kansai & Mayumi Ozaki, are legendary.  Her 1994 match against Aja Kong is a must-see, even for curious non-wrestling fans.  And a year before Shawn Michaels & Bret Hart did it at Wrestlemania, Toyota and Kyoko Inoue went 60 minutes in an awesome match.  Today, she is still a great worker, despite the competition not being in par to what it was back then), and deserves to be classified as a standard-bearer - 1 that I'm not sure will be reached anytime soon."
Rating: 10.0
Sentiment: 0.4388888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Rated R Champwrote on 15.02.2012:[10.0] "Was soll man noch großartig sagen, Toyota ist die Legende im Womenswrestling, was sie in den 90ern an Matches abgeliefert hat sucht Seinesgleichen (Aja Kong kommt vielleicht noch ran). Und auch heute ist sie, auch wenn sie natürlich abgebaut hat noch zu sehr guten Matches in der Lage."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Mediwrote on 08.09.2011:[8.0] "Durch Chikara bin ich auf sie aufmerksam geworden und irgendwie würde ich sie gerne in mehr SHIMMER-Matches sehen, vor allem gegen MsChif, Melissa und Haze."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: sign squadwrote on 19.09.2010:[9.0] "Ein Punk Abzug für die Tatsache, dass sie es wie so viele andere nicht lassen kann, auch heute noch in den Ring zu steigen. Großartige Wrestlerin mit allem, was dazu gehörte und auch noch immer gehört. Besonders Mitte der 90'er in den Top 10 der besten Worker egal welchen Geschlechts, den sie konnte mit jeder Gegnerin arbeiten und sie gut aussehen lassen. Für mich damals das perfekte Rund-Um-Sorglos-Paket im Ring, an das niemand sonst ran kam."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: MaKnowrote on 21.08.2010:[10.0] "Eine atemberaubende Wrestlerin, die noch heute mit großer Leidenschaft zu Werke geht. Ich habe mehrere Klassiker gesehen und muss gestehen, dass das Rating von Melzer alles andere als übertrieben ist. Toyota ist im Damenwrestling längst eine Lichtgestalt, die für die Klasse des weiblichen Geschlechts im männerdominierten Wrestling Business wie keine Zweite steht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Raywrote on 13.08.2010:[10.0] "Legendär ist noch untertrieben um das Schaffen dieser Frau zu beschreiben. Sie ist der Gegenbeweis zur These, dass Damenwrestling immer langweilig sei."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2265&gimmick=Manami+Toyota
Comment: Legionwrote on 06.05.2010:[10.0] "Was ich gesehen habe, waren einige der besten Wrestlingmatches überhaupt. Da soll noch mal einer sagen Frauenwrestling taugt nichts.  Sie ist eine Legende an die auch die meisten Männer nicht ran kommen, zumindest im amerikanischen Raum."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: ZephsPancakeswrote on 13.01.2025:[10.0] "The greatest Joshi of all time. The greatest female wrestler of all time and for me, the third greatest wrestler of all time. Akira Hokuto had it all, a fantastic look, phenomenal in ring skill, fantastic selling. There was nothing she couldn't do. It says a lot about her and her contemporaries when WCW brought them in to actually have a competitive women's division and the fact at that time, she was able to captivate that audience says a lot about how good she was. Whether its the iconic Destiny match with Manami, the underappreciated GAEA match with Meiko or the absolute bloody war with Kandori, Akira Hokuto has something for everyone and someone whose influence in wrestling will carry on for a long time."
Rating: 10.0
Sentiment: 0.3566666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: dizziedwrote on 12.01.2025:[10.0] "Everyone has a right to their opinion, No clue what (the reviewer below me is saying) is saying. She's an icon but you give her a 7.0. Her average rating is 9.69. How does he get away with putting such a few worded explanation.... Go back and watch her matches. And reconsider your ranking. Matches with Manami Toyota, Bull Nakano, Kyoko Inoue, and Shinobu Kandori are legendary. Even the matches in the United States where she had to carry Madusa to make it a good match. All Japan Women's Wrestling did her a disservice but not letting her hold the top Women's World Championship She is absolutely a 9 or 10."
Rating: 10.0
Sentiment: 0.25952380952380955
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Anas Kingwrote on 11.12.2024:[7.0] "She's a legend in her own right. She's an icon. But when we specifically talk about in ring work rate, I think she falls short in comparison to some other greats."
Rating: 7.0
Sentiment: 0.19017857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: yumin76wrote on 08.11.2024:[10.0] "The best woman wrestler of all time. period. No one was such iconic, technically experienced and amazing"
Rating: 10.0
Sentiment: 0.58
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: JediSaiyanMaster1203wrote on 11.10.2024:[10.0] "Akira Hokuto Is A Badass! That's all I think of when I watch her, she is just amazing. Personally, in contention with Manami Toyota for the greatest female wrestler of all time, every move she does looks picture perfect, she's an incredible storyteller, sells her ass off, she can have some of the most brutal looking match, innovated one of the coolest finishers of all time (Northern Light Bomb), made 1993 her year, rightfully nicknamed "The Dangerous Queen, " has amazing ring gear, her entrance before her match wit Aja Kong in the VTOP tournament is one of the all time best, her theme song slaps, amazing entrance gear, can blade like she's Ric Flair or Terry Funk (LOL! ) and, of course, her infamous hit list. I could seriously go on and on about how amazing she is, shame she didn't have an amazing run in WCW, but oh well, who cares? It's not like America was ready for Joshi wrestlers in the 1990s, she still has forged a great career for herself in Japan, left behind countless classic matches and feuds that will still be remembered to this day and talked about for many years to come."
Rating: 10.0
Sentiment: 0.31033333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: igskillfartwrote on 13.09.2024:[10.0] "Behind Toyota, Hokuto is one of the greatest female wrestlers to have ever graced this planet, she is the reason why i became a Joshi wrestling fan, easily one of the greatest wrestlers to have ever lived, 1993 she was probably the best wrestler not only female, but of the world. she is a true legend"
Rating: 10.0
Sentiment: 0.37592592592592594
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Gabiwrote on 07.08.2024:[10.0] "Perhaps my favorite wrestler of all time if you ask me. Akira Hokuto has a very strong case for greatest women wrestler of all time. If shes not number 1 shes definitely top 3 in all objectivity. Great character and some all time matches"
Rating: 10.0
Sentiment: 0.6726666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: SigmaAngeloAsteriawrote on 28.07.2024:[10.0] "Akira Hokuto is perhaps the GOAT of female wrestling altogether. A fantastic worker, hard-hitting, a good technician, good seller, basically what you want from a fantastic wrestler."
Rating: 10.0
Sentiment: 0.44000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Joe907wrote on 19.07.2024:[10.0] "The dangerous queen Akira Hokuto is one of the great wrestlers ever regardless of gender. She is a legend. Hard hitting technician who can do it all in the ring. Her matches with Kandori and Toyota are some of greatest matches ever. Definitely one of the best of all time."
Rating: 10.0
Sentiment: 0.3180555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: SlapViperLLCwrote on 13.01.2024:[10.0] "Violence Personified! There are many wrestlers who can make wrestling look real and feel real. Akira Hokuto makes wrestling feel so perfect. The very tiny things she does. The smirks, the screams, being so brutal and so much of an arrogant foe to anyone in her path. Many wrestlers Iike Bull Nakano and Manami Toyota had their best match with Hokuto and to think she didn't even crack 500 total career matches and is considered one of the greatest of all time! Not to mention that she gave birth to the greatest finisher ever AND had one of the best entrance themes ever! We love The Dangerous Queen!"
Rating: 10.0
Sentiment: 0.365
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "The best Women's wrestler in history? You can make a strong case for it. Even her stuff in WCW where the Japanese wrestlers usually "have a night off" were good."
Rating: 8.0
Sentiment: 0.37666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: TheOneAndOnlyCactuswrote on 11.04.2023:[10.0] "Prime for prime, Akira's up there with the best of them. Her 1993 year is damn legendary, argued as the best for any wrestler, regardless of gender. Building of character, incredible matches, emotional intensity, high drama, whatever you enjoy in wrestling, she had it in her prime, and was as good as anyone you could name. If the Dangerous Queen could have avoided injuries, she probably would have been remembered as the greatest of all-time. But still, she had a great career she could be proud of. Plus she married Kensuke Sasaki, so good for her."
Rating: 10.0
Sentiment: 0.5792857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: benny5bellyswrote on 02.04.2023:[10.0] "An all timer and gets nowhere near the love and respect she deserves. Brings a level of intensity and believability to everything she does with more charisma then few have ever had."
Rating: 10.0
Sentiment: 0.22500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: ShineyxDiverwrote on 31.03.2022:[10.0] "The Greatest of All Time. It is as simple as that. The Dangerous Queen had some particularly glorious years, with 1993 being all time and multiple 5 star matches where the crowd loved her and her wholly. A woman forged by pain and agony and the determination to be the greatest. She was."
Rating: 10.0
Sentiment: 0.3238095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Kaswrote on 20.12.2021:[10.0] "Hokuto's 1993 is about as close to wrestling perfection as you can get. That alone makes her an all-time great. What makes her a candidate for greatest wrestler of all time is that, not only does she not have a single weak year in her (admittedly brief) career, between 1990 and 1995, she was at the very least a top 5 wrestler in the world."
Rating: 10.0
Sentiment: 0.18294642857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: NoSellwrote on 21.11.2021:[10.0] "I'd say if Manami Toyota didn't exist then Akira Hokuto would be the greatest female wrestler ever. Can't say that for sure because there's a lot of competition for the number 2 spot behind Toyota but she would definitely be in the conversation. Incredible performer."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Avadon1wrote on 21.11.2021:"One of the greatest of all time, without the injury concerns she could have been far and away the best."
Rating: No rating found
Sentiment: 0.7000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Jaedynr5wrote on 26.10.2021:[10.0] "an absolute legend of the wrestling world who still carries a lot of influence now, unique look in Japan and the US, carried an imposing aura, and a phenomenal in ring worker who could work with anyone"
Rating: 10.0
Sentiment: 0.35833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Lalo Camposwrote on 16.10.2021:[10.0] "One of the best Joshi wrestlers of all time, her presence was unmatched and have one of best female matches of all time with Toyota"
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: BEER CATwrote on 22.09.2021:[10.0] "Hokuto's calendar year of 1993 is the highest one-year peak any wrestler has ever reached, regardless of country, time, or gender. It just doesn't get any better. Every second is maximum intensity, overflowing emotion, breakneck (heh) pace, all of it made sense in a character context, she worked with dozens of all-time greats and made everyone better. Peak Hokuto is essential viewing for anyone with even a passing interest in pro-wrestling beyond the televised Western mainstream."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Jacky Chanwrote on 03.07.2021:[10.0] "The greatest women's wrestler after Meiko Satomura, it is sad that her career was ruined by injuries & ended earlier. She has an incredible character & charisma, her entrance was really impressive, and in the ring she was GOAT, her classic matches made me a big fan puroresu, she is aggressive & the dangerous queen"
Rating: 10.0
Sentiment: 0.2458333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: math1823wrote on 21.06.2021:[10.0] "How sad is it that her career was ruined by injuries and that she barely wrestled from 1994 to 2002, because when she did, she is easily one of the 10 best women's wrestler ever, probably even on the top 5. She had everything. Charisma, in-ring skills, popularity, connection with the crowd, able to work heel or face... Her nickname "Dangerous Queen" fitted her so well, her big matches were violent, but it was a kind of violence that is just beautiful to see. A legend is every sense of the word."
Rating: 10.0
Sentiment: 0.18484848484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: CognacConversationwrote on 17.06.2021:[10.0] "You can easily make a case for the Dangerous Queen ranking highly in an all-time greatest wrestler list. In joshi, she was perhaps the total package. Fantastic wrestler, impeccable psychology, bundles of character, and popularity was through the roof in the 90s in Japan. Always told dramatic stories in her matches, and gave it 110% while dealing with serious injuries that plagued her career. Hokuto's gutsiness tenacity were her most endearing traits. Match-wise, the Dream Slam classic with Kandori should rank highly anywhere, but she has a long road of brilliant matches against her contemporaries like Manami Toyota, Kyoko Inoue and Mayumi Ozaki."
Rating: 10.0
Sentiment: 0.17208333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Kungwrote on 30.05.2021:[10.0] "While I have all the respect in the world for Manami Toyota, I genuinely believe that Akira Hokuto is the most spectacular female wrestler I've ever seen. She had the look, the intensity, the charisma, the in-ring ability, and she continues to give back and show her love for the sport even today. I can't help but watch her best matches over and over again!"
Rating: 10.0
Sentiment: 0.42857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: BlueVinsmoke2323wrote on 04.12.2020:[10.0] "In my top 5 wrestlers of all time male or female. Hokuto was a master of storytelling with so many classic and created 2 deadly moves (Northern Lights Bomb and Gutwrench Powerbomb). Her charisma and character were outstanding. She didn? t afraid to took risks so there? s a reason she called ? Dangerous Queen? ."
Rating: 10.0
Sentiment: 0.029629629629629648
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: 20SaiDa19wrote on 14.03.2019:[10.0] "Although there are certainly better in-ring women wrestlers than her, very few ever, if any, can match her levels of charisma and aura. She was however still a great in-ring talent and has been involved in countless classics with numerous different opponents."
Rating: 10.0
Sentiment: 0.17333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Akira Hokuto is either #1 or #2 when it comes to ranking the best women wrestlers of all time. Hokuto had an incredible work ethic, and whilst it meant that she had awesome matches, it also meant that she paid a hard price for having those awesome matches."
Rating: 10.0
Sentiment: 0.7216666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Claudio Herowrote on 03.12.2014:[10.0] "Die Ehefrau von der Legende Kensuke Sasaki ist auch heute noch in Japan extrem bekannt und beliebt. Akira Hokuta hat sich durch etliche Top Matches und auch richtigen Klassikern einen Namen gemacht. Die Fehden gegen Shinobu Kandori, Manami Toyota und Bull Nakano zählen für mich mit zu den besten Damen Matches aller Zeiten ! Für mich glatte 10 Punkte"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: joshimaniawrote on 23.06.2013:[10.0] "One of the most intense and charismatic wrestlers in history."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: Leonewrote on 20.03.2013:[10.0] "A nice person in real life and a vicious wrestler in the ring, Akira Hokuto is a legend in women's wrestling.  Over the years, she wrestled in some of the most violent matches, and has bled like Ric Flair on several occasions.  She has wrestled in quality matches with numerous injuries, including a broken neck early in her career.  Her match against Shinobu Kandori at Dreamslam in 1993, remains 1 of the best sold grudge matches I have ever seen, and I say that because Hokuto's selling in it was a solid 10/10.  On top of that, she innovated several wrestling moves, including the gutwrench powerbomb and Northern Lights Bomb.  Overall, 10."
Rating: 10.0
Sentiment: 0.049999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=131&gimmick=Akira+Hokuto
Comment: WhiteHummerDriverwrote on 23.11.2012:[10.0] "Kriminell unterbewertet auf dieser Seite. Einzige Erklärung für mich ist, dass die meisten die sie hier bewerten sie nur aus WCW kennen und nie ihre wirklich großen Matches gesehen haben. Hokuto ist eine absolute Legende und zählt für mich zu den Top 5 Wrestlerinnen der 90er. Die Frau konnte alles: Brawlen, Technik, High Flying, und ihr Selling war auf einem Level das nur die wenigsten Wrestler - egal ob Mann oder Frau - je erreichen. Und egal ob in blutigen Schlachten wie gegen Shinobu Kandori, oder in Technik-Feuerwerken wie gegen Manami Toyota, Akira Hokuto war immer mit einer Leidenschaft für dieses Business und einer Toughness bei der Sache, die ebenfalls bei beiden Geschlechtern ihres Gleichen sucht. So beendete sie unter anderem ein sehr frühes Match mit einem gebrochenen oder zumindest schwer verletzten Hals, wobei sie sich selbst den Kopf in Position hielt. Des Weiteren zählt die Entwicklung der Northern Lights Bomb - die seitdem von Wrestlern wie Al Snow, Steve Corino und Hokuto's Ehemann Kensuke Sasaki benutzt wurde - zu ihren Verdiensten. Und als wär das alles noch nicht genug, ist diese Frau zudem so charismatisch, dass sie selbst Jahre nach ihrem Rücktritt zu Japans beliebtesten Celebrities gehört und ständig im Fernsehen zu sehen ist. Hier weniger als die 10 zu vergeben würde mir im Traum nicht einfallen."
Rating: 10.0
Sentiment: 0.2866666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Zak22wrote on 08.01.2025:[10.0] "I just want to take a moment and explain why I love Jumbo Tsuruta and why I think he is a top 15 all time talent. Jumbo went from being a fantastic, technically skilled rookie wrestler in the 70s to being the power house, brawling ace of All Japan in the mid to late 80s and early 1990, bowing out from the main event picture by putting over the Four Pillars of Heaven and having the best passing of the torch match in wrestling (1990 vs Misawa). Tsuruta had great matches with Tenryu, with Misawa, with Bockwinkel (even capturing the AWA world title) and with Ric Flair, plus some great tag matches. Tsuruta was intensity and brutality in human form. For a solid decade (maybe more), Jumbo was a top 10 wrestler in the world. Tsuruta is the best possible wrestler that Giant Baba could have possibly picked to be the ace of All Japan. Jumbo optimised greatness in the 80s. And he was the first Triple Crown Champion."
Rating: 10.0
Sentiment: 0.3358333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Wrest lingaddictionwrote on 26.09.2024:[10.0] "One of the best in-ring workers of not just his era but all time. With a plethora of high-level matches and opponents, he's without a doubt a ring general. His matches with the Four Pillars, Nick Bockwinkel, and pretty much any other name in wrestling from the mid to late 70s through to the 90s were phenomenal and a true testament to his training from other legends such as Giant Baba, the Funks, and Lou Thez. Jumbo epitomised AJPW and Japanese wrestling for his era and without him, the history of wrestling would suffer drastically."
Rating: 10.0
Sentiment: 0.13846153846153844
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Ron Ewrote on 13.06.2024:"Jumbo Tsuruta is the definition of a wrestling legend. Trained by the likes of Giant Baba and Terry Funk you can see why Jumbo made it as far as he did. Jumbo brought many qualities to the ring, size and power was a must at a whopping 6ft 4 but the fluidity in the the ring will have you in awe. Moves such as his jumping knee from the top rope and his heavy backdrop driver prove this. In my opinion Jumbo has the best and most clean looking powerslam in the business, he was one of the best workers in the world throughout the 80's and 90's and was truly instrumental to building the rise of the 4 Pillars. His matches with the likes of Tenryu in the 80s and Misawa in the early 90s are some of the best matches of all time."
Rating: No rating found
Sentiment: 0.4055555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: BostonIdolwrote on 01.02.2024:[10.0] "Jumbo Tsuruta was arguably one of the top five pro wrestlers in the world from the mid-seventies until the early nineties, having a string of classic matches against several generations of wrestlers. Tsuruta was a legit athlete prior to joining All Japan in the early seventies. Jumbo brought size, strength, agility, and a fluidity of movement to the ring while learning from the best workers of the era including the Funks, the Destroyer, Harley Race, and Billy Robinson. Jumbo went on to become one of the top performers of his own generation which included workers like Ric Flair, Ricky Steamboat, and Stan Hansen. Jumbo continued to have world class matches against the next generation of main eventers including Misawa, Kawada, and Kobashi. Until he was knocked out by hepatitis in late 1992, Jumbo was consistently one of the ten best workers in the world. Someone looking for highlights could start with Jumbo vs Terry Funk for the NWA title in 1976. There the still young Jumbo matches veteran champ and former tutor Funk hold for hold in arguably the best match of Terry's career on tape. The following year Jumbo had a memorable series with Billy Robinson along with classics against Harley Race and Mil Mascaras. Fast forwarding to the mid-eighties, Jumbo had classic world title matches with Ric Flair, Kerry Von Erich, and Rick Martel. From 1987-1990, Jumbo worked a series of memorable matches against Genichiro Tenryu that were the highlight of Tenryu's working career. In the nineties Jumbo put over a new generation of Japanese main eventers. He was pinned by Misawa in 1990, but he also made Kawada and Kobashi by making them look like credible threats even while defeating them. Jumbo also had a number of great tag matches, notably the feud where he and Tenryu teamed up against Riki Choshu and Yoshiaki Yatsu from 1985-1987 which yielded several of the best tag matches of the decade. Jumbo's moveset changed and expanded with the times. He was known for the lariat, the jumping knee, and the backdrop suplex, but like Harley Race, Jumbo always had more than a dozen big spots he could draw from to fill any match. He was also willing to give his opponents plenty of opportunities to look good, bumping for and selling their spots. In March 1986, Jumbo had a match with Animal Hamaguchi that was the finest exhibition of Hamaguchi's career. Animal wasn't Jumbo's peer at the time, being a lesser member of Ishin Gundan, but Jumbo made him look like a main eventer. The one match where Jumbo was less than generous was his one hour draw with Riki Choshu from late-1985, where he never made it look like Choshu could actually beat him. One assumes Baba booked the match in that fashion as he didn't fully trust Choshu enough to elevate him as Jumbo's peer, instead feeding him Tenryu, Jumbo's junior partner. It's a shame because it was their only singles match and left to his own devices, Jumbo probably would have carried Choshu to the greatest match of his career, as he did with so many others. In terms of rating, Jumbo was arguably a 10 by 1976 when he was turning out match of the year candidates with multiple opponents and he maintained that quality level through 1992, though by the early nineties All Japan had become more insular and Jumbo's role had become more limited as the franchise champion without many peers."
Rating: 10.0
Sentiment: 0.28137695637695637
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: danzitorockwrote on 15.12.2023:[10.0] "The King of King's Road, the first ace of puroresu, Jumbo is the definition of a legend. The guy completely molded and solidified an entire style of wrestling, his contributions and importance to the sport are priceless. The man is incredibly gifted, has an amazing technique and knows how to tell a story in a match like few others. Amazing storyteller, brilliant seller, one of the best we ever had, the ultimate ace."
Rating: 10.0
Sentiment: 0.4318181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: WrestlingStuffwrote on 04.09.2023:[10.0] "The man became an accomplishment himself, because someone who's compared to Jumbo is meant to be greatly talented and fully committed to this business. The first japanese wrestler to be appreciated by an American audience, Tsuruta was a gifted athlete since his childhood. The perfect ace, the perfect rival, the perfect wrestler, and perfect coach and father until the end. Godspeed Jumbo, your mission was perfectly executed."
Rating: 10.0
Sentiment: 0.6045454545454546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: No Onewrote on 24.05.2023:[10.0] "He was the best young wrestler of the 1970's decade. He was arguably the best wrestler of the 1980's decade (in contention with Ric Flair & Ricky Steamboat). IMO, he was the best wrestler in the world for the 1990's until he unfortunately became ill, then his rival Mitsuharu Misawa took over for that accolade. He was able to change & adapt to comfortably fit in with every decade that he performed in, based on his character presentation and the type of in-ring style that he worked. He went from Young Up & Comer (1970's), to ACE of AJPW (1980's), to the Final Boss (1990's). He was the one who got The Four Pillars of Heaven over as the future of AJPW by virtually trying to kill them all the time, LOL. He is one of the greatest in-ring performers of all time. Konosuke Takeshita very much reminds me of him today. He should never be forgotten. His feuds with Genichiro Tenryu & Mitsuharu Misawa are also legendary. RIP to the legendary Jumbo Tsuruta."
Rating: 10.0
Sentiment: 0.4475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: taakeferdwrote on 16.04.2023:[10.0] "Jumbo Tsuruta is the greatest professional wrestler I've ever seen. Nobody made me believe more that what was going on in the ring was a true struggle for everything he had. He was a truly believable ace and successor to the (Almost) impossible to follow Giant Baba in All Japan, but he was truly instrumental in the rise of the 4 Corners, leading all of them to their first great matches. He showed them how to build, how to tell a story and how to keep that story going across multiple matches, tours, months and years. It's the greatest shame in Japanese wrestling that the Jumbo vs. Misawa program never finished as it should have due to his illness. I think his greatest compliment came from his retirement ceremony: "It was Rikidozan who planted the tree, it was Giant Baba who made it grow, but it was Jumbo Tsuruta who allowed it to blossom""
Rating: 10.0
Sentiment: 0.31388888888888894
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: benh2wrote on 11.01.2023:[10.0] "If you told me Jumbo was the best wrestler ever, I probably wouldn't argue. His output was just phenomenal, 200 matches a year right up until his illness in 1992. He just had it all in the ring and it is kind of unheard of for such a big man to be one of the best sellers there's ever been. Had great offence and knew exactly how to properly build a match. The ultimate ace right through the duration of the 80's and even as the generation of the Four Pillars was starting to come in, he was still producing the best matches on the show. It's interesting to think how far into the 90's he could have gone had he not gotten sick because his output was still top drawer until he had to step away."
Rating: 10.0
Sentiment: 0.33928571428571425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: MainEventMasterwrote on 26.10.2022:[10.0] "RIP to one of the greatest ever. Can be considered the perfect wrestler, the greatest ace in the history of aces (Sorry Tana). Had nothing but bangers and deserved the goddamn world."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: GriffithWhitewrote on 15.10.2022:[9.0] "Jumbo Tsuruta was the MVP of AJPW after Baba was too old to be the guy. Seeing Tsuruta's rise from the plucky underdog babyface fighting alongside Baba & saving AJPW from the gaijins into a grumpy old veteran is downright phenomenal. It's slow metamorphosis which happens in such a way that it catches up to you before you even know it. Watching his classics against Tenryu I wasn't aware that he's a heel but it's so obvious in the way he worked. Jumbo happens to be one of the best sellers in this industry & had the ability to throw the best suplexes bar none. No Kurt Angle or Brock Lesnar can touch a Jumbo Tsuruta suplex. His work has not aged one bit and you can throw him into the modern japanese wrestling scene & he'll end up in the same exact place he was in AJPW. He looks like a 9 inch taller Tomohiro Ishii & if that isn't the Ace look then what is?"
Rating: 9.0
Sentiment: 0.21
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: texasyoshwrote on 15.07.2022:[10.0] "One of my personal favorite wrestlers to watch. A phenominal seller, and a pristine big man who could also grapple and move with ease. An all-time great."
Rating: 10.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: BH62wrote on 10.02.2022:[10.0] "As time is going by as I'm watching more and more of Jumbo's career, I have to say he's the GOAT. Kenta Kobashi is my true favorite wrestler but Jumbo Tsuruta was the Ace of AJPW for nearly 20 years. An artist of that sport. Baba gave him the keys of his promotion and Jumbo had the time of his life against all the world best wrestlers and putting classics all the way. Whether we was that young trailblazer in his rise or that grumpy veteran as the time went by, the crowd loved him so much. A true GOAT. Can told an intense and emotionnal story as that was brutal. True fighting spirit. His tag work was excellent as his solo run by the way. To sum it up, Jumbo Tsuruta was the backstone of the best golden era in wrestling history as he was also the top one wrestler before it. He deserves every recognition possible."
Rating: 10.0
Sentiment: 0.3652777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: KonamiSuissewrote on 28.01.2022:[10.0] "10/10. Getting it out of the way as a premise. This man was the true successor of the legendary Giant Baba and could work a crowd like no other. Jumbo was an amazing worker, especially for someone his size, he hung around the best of the time and was still putting on timeless classics and clinics almost 20 years later, that is unreal. Tsuruta was instrumental in the rise of AJPW's 4 Pillars, especially Mitsuharu Misawa, but before them, he was the ace worker for the promotion for over a decade, always the one they could rely on, never failing to disappoint. It's seriously hard to express in words how good this guy was, I suggest everyone watch some of his matches, even in his late years before a premature death, Jumbo barely missed a beat in the ring. The crowd loved him, and I'm surprised to see that almost no one talks about him in the west, he deserves way more recognition and had no real flaws."
Rating: 10.0
Sentiment: 0.25710784313725493
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: GriffinXwrote on 20.01.2022:[10.0] "Jumbo is one of those guys that other wrestlers watch to learn from. A youtube video made a great point "It was only Tomomi Tsuruta's body that could topple Jumbo form his throne""
Rating: 10.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: benny5bellyswrote on 01.11.2021:[10.0] "I love Jumbo. Amazing matches through 80s and early 90s. Grumpy vicious veteran Jumbo fighting to keep his spot at the top is amazing"
Rating: 10.0
Sentiment: 0.18571428571428575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "One of the greatest wrestlers of all time, the Ace of AJPW in the 80s and thanks to him, we had the Four Pillars of Heaven"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "Legendary, the Ace of AJPW who would put over the God Emerald Elbow Misawa. Sadly we were robbed of a finale to their series, as Jumbo's career and life were tragically cut short. His work as face or heel is fantastic and his matches with Tenryu are the stuff of gods."
Rating: 10.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Kungwrote on 24.03.2021:[10.0] "Although we don't talk about him as much as we should, Jumbo Tsuruta should always be included when talking about who the best Japanese wrestler was in history. Without Tsuruta's decade of brilliance in AJPW, it's hard to fathom if guys like Misawa, Kawada, Taue, or Kobashi would've even entered the business."
Rating: 10.0
Sentiment: 0.2270833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: ExcitingProWrestlin3wrote on 16.03.2021:[10.0] "One of the best storytellers, and over babyfaces at his peak. The man was simply just a phenom, a man who had carried the ace mantle for him to pass down to Misawa!"
Rating: 10.0
Sentiment: 0.26851851851851855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: rainmakerpunkwrote on 11.02.2021:[10.0] "He was AJPW's ace in the 80s for a good reason, in the 80s the only wrestler better was Flair, and not by much, Jumbo was elite and far ahead in the ring from what you'd expect from an 80s wrestler, storytelling master with a great big guy moveset, he set AJPW apart from every other company"
Rating: 10.0
Sentiment: 0.271875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: KinchStalkerwrote on 28.08.2020:[10.0] "I can see the argument for not rating Jumbo a 10. In the 1970s, one could certainly see him less as one of the great workers of the decade and more a great dance partner who had the fortune of a platform that frequently put him against the best in the world (something of a 70s Japanese equivalent to the common narrative around mid-to-late 2000s John Cena). And the early 1980s were not a period of smooth transition for him; granted, one might rightfully point out that this was more a problem of All Japan's creative state as a whole than with Jumbo's inadequacy at his job, but a more critical observer could likewise ding him for failing to transcend more often than he did. At the end of the day, if one takes this view they will likely see Jumbo as having, at most, a great run from 1985-1992, which might not be enough for them. But while I can see this argument, I cannot agree with it. Jumbo Tsuruta played a vital role in some of the best wrestling of the 1970s. Despite being a victim of the NWA's unwillingness to give their top strap to a foreigner in the 1980s, which stunted Jumbo's growth by preventing him from resolving the first arc of his career (that is, the Japanese farm boy who could match the Americans at their own game), he still put out great matches as often as just about anybody in AJPW did at the time. And when Ishingun had their mid-80s incursion, Jumbo finally had a crop of opponents against which his mean streak could really manifest. When Choshu went crawling back to NJPW, he was able to build from what that feud had given him and create the best Jumbo: grumpy Jumbo. As far as I'm concerned, Jumbo is one of the great Japanese wrestlers, whose flaws in his case as a GOAT contender aren't really his fault, but those of the broader industry in his time. It's a testament to his greatness that, while I think the Four Pillars soared to greater heights when they built off of the SGA/Tsuruta-gun feud, I have an emotional attachment to Jumbo that I've never quite had for any of those who built upon his work. And it's one of the great shames of puroresu that the development of his hepatitis prevented Jumbo from really getting to close his career as a main-eventer on his own terms."
Rating: 10.0
Sentiment: 0.3180026455026455
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Ma Stump Pullerwrote on 04.07.2020:[9.0] "Massively overlooked if only for the Four Pillars coming right after him, Tsuruta was a megastar in Japan with his innovative moveset, natural charisma, and brilliant ring work. Ironically, his best years came after his physical peak in the 70's and early 80's (which were still good, but wasn't the most consistent quality wise) when he was facing off with some of All Japan's future superstars at the time. Despite being a relatively large wrestler in comparison to his peers (the only native guy who stood taller than him was Giant Baba) he wrestled like a man half his size and was easily one of the best in terms of getting the crowd invested in the match. This got much more improved in his later years when he couldn't leap around the ring and had to rely more on adapting to his opponent's style, being more stiff if required, performing heel antics against younger talent, etc. Sadly years of high workrate and hepatitis took him away from the wrestling scene and eventually took his life, but he'll always be remembered for paving the way for Misawa and others in the business with his talent. Definitely one of the most underrated wrestlers in history."
Rating: 9.0
Sentiment: 0.2654126984126984
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: glassS0Ldierwrote on 28.05.2020:[10.0] "He was pretty cool I guess. I like when he did his Tsuruta "OH! " taunt, always felt like him searching to the audience for validation, even if he was in the wrong. Great touch. Nice knee. Stuff like that. Yeah."
Rating: 10.0
Sentiment: 0.3175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: TheGorgis309wrote on 15.09.2019:[10.0] "Although Tsuruta isn't that well known outside of Japan, he really should be more recognised. One of the best talents All Japan had ever developed, Tsuruta was a multi talented in-ring performer that could pull the best out of anyone, due to his legitimate sports background. He also helped legitimise a young Mitsuharu Misawa, another one of the GOATS in Japanese wrestling. Unfortunately, Tsuruta met a very swift and unmerciful end shortly after his retirement; had he lived longer I'm certain he could have been instrumental in the development of future talent in Japan. Go out of your way to check out his clash with Genichiro Tenryu if you can,  in fact watch all of his matches you get his hands on. He? s truly a marvel to watch."
Rating: 10.0
Sentiment: 0.225952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: LandonRyanWyattwrote on 27.01.2019:[8.0] "Tsuruta was very good for his size and style of wrestling he was able to perform. From the late 70s to late 80s, probably Japan's most recognizable figure."
Rating: 8.0
Sentiment: 0.25999999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Desecratedwrote on 15.01.2019:[10.0] "He can have his flaws, as noted by a lot of his work pre-Tenryu feuds. But when he hit that prime sweet-spot in 1987 to late 1991, his form was top 5 ever form. Probably thinking Misawa 94-98 and Kobashi 97-05 beats him out definitively. He had a knack for learning from different people and applying that into his skillset. When he worked with gaijins such as Hansen and Gordy, he really started to kick his snugness into a new gear for example. Same as when he worked with the Funks, Flair, Tenryu, Choshu and even Misawa. All of them gave him an extra edge. So in a sense, a true student of pro-wrestling."
Rating: 10.0
Sentiment: 0.09848484848484848
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: JEK 1991wrote on 17.12.2018:[10.0] "Had a great career. He was home to AJPW and sold out arenas. Very talented and big guy and knew how to maneuver in the ring. He had expose in North America when he became AWA Champion."
Rating: 10.0
Sentiment: 0.57
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: RatingsMachinewrote on 12.10.2018:[10.0] "Jumbo was a polished worker right out of the gate, that's how good he was. and it didn't take long before Jumbo was not only wrestling the top names in the business, but looking like he more than belonged in the ring with them. Jumbo was the cornerstone of All Japan in the 80s, having classic matches on a regular basis. Jumbo could still hang with the best in the business when illness brought his career to what was effectively its end; Jumbo kept wrestling, but it was only a few times a year, and strictly in the midcard comedy match where he could tag in, hit a couple of spots, and then tag back out."
Rating: 10.0
Sentiment: 0.2694139194139194
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Makai Clubwrote on 07.09.2018:[10.0] "JUMBO~! Extremely talented, very versatile in away where he can do a bloody brawl with Stan Hansen one show and do a 60 minute time limit with Nick Bockwinkle the next. One of the best wrestlers of his time, bar none. Very agile, very powerful and explosive, has a a unique charisma to him and very tough. Highly influential to the history of All Japan and wrestling in Japan overall."
Rating: 10.0
Sentiment: 0.19722222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: taabr2wrote on 10.09.2017:[10.0] "I haven't really watched much of Jumbo's work in his prime. I know he is considered by some to be the best worker in Japan in the 80s. From what I have seen of his work I can believe that statement. Jumbo helped to create the Kings Road style of wrestling in AJPW in the late 80s and early 90s which led to the greatest period of in-ring wrestling ever."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Blood Pumpwrote on 29.03.2017:[10.0] "Would it be a stretch to call him the Ric Flair of Japan? To me Tsuruta is the most important wrestler in the history of AJPW, surpassing even Giant Baba. Without him Misawa might not have gotten as big as he did. He and Tenryu revolutionized what wrestling was with their faster paced bout near the end of the 80s, but even before then Tsuruta was an in ring genius, wrestling unsung classics with Ric Flair, having great bouts with the Funks and having a large set of forgotten masterpieces with Billy Robinson. His most famous work maybe in the 90s, but I'd argue hes always been worht watching no matter the era he wrestled in."
Rating: 10.0
Sentiment: 0.3349206349206349
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: DomoDaDudewrote on 26.12.2016:[10.0] "lol some of the recent comments are clearly from people who haven't seen a lot of Jumbo. How he didn't reach his full potential when he was an top star for nearly 3 decades? He is absolutely one of the greatest pro wrestlers of all time who molded the goats after him in Misawa, Kobashi, Kawada etc. Highly influential and left a huge mark on not only Japan but wrestling in general."
Rating: 10.0
Sentiment: 0.26142857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: ErycK24wrote on 31.08.2016:[7.0] "First of all, R. I. P Jumbo he was gone too soon. But that brings up another point he was great but we were never able to see his full potential because of his early death. He is a huge case of what could have been like many other men in this industry that were taken too soon from us."
Rating: 7.0
Sentiment: 0.22499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: TrevPuroFanwrote on 17.04.2016:[10.0] "Jumbo was the absolute MAN! This guy basically already was putting on 5 star classics a year into his career, and he's been doing so till the early 90's. His charisma was off the charts as well. Easily one of the best wrestlers ever."
Rating: 10.0
Sentiment: 0.4458333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: eldenaaaaawrote on 02.09.2014:[10.0] "Only a few people outside of hardcore puro fans know about him, but he is not only the best Japanese wrestler of all time, he's arguably the best wrestler ever. Trained by Dory Funk, he was capable of going against top names like Jack Brisco and Harley Race and matching them spot for spot while learning a lot too. By the end of the 70s, some were calling him the best wrestler on earth already. One of his best feuds was against a recently-maskless Mitsuharu Misawa, in a passing of the torch of sorts, as well as several crackers against Genichiro Tenryu. Even after twenty-plus years of wrestling, he actually kept getting better and better until his retirement and eventual death."
Rating: 10.0
Sentiment: 0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: yanuswrote on 05.01.2014:[10.0] "Great worker, easily the best japanese wrestler in the 80's and early 90's, maybe event the best in the world. Brilliant crowd control, but also selling and impactful offense. What is shocking is how good he was, considering he was such a huge guy."
Rating: 10.0
Sentiment: 0.393939393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: RoyLucierwrote on 17.12.2013:"Best wrestler in the history of puroresu, bar none. He was the complete package. When you look up the word "strong style" in the dictionary, you should see his picture. He could go 60 minutes without losing his breath. A must see!"
Rating: No rating found
Sentiment: 0.5472222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Sir Vida Loca IIIwrote on 10.07.2013:[8.0] "Diese Legende hat für viele die "berühmte Tür geöffnet" und war auch im Ring einer der besten seiner Zeit. Leider ist auch er viel zu jung verstorben, seine Legende aber lebt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Lecterwrote on 05.06.2013:[10.0] "JAMUPINGU NIIIIIII~! Jumbo ruled. Great matches all over the place."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Kenshin Uesugiwrote on 19.02.2013:[10.0] "Wahrlich ein wegweisender Wrestler,  mit einem für damalige Zeit schnellen Tempo als Heavyweight, der einen perfekter Sinn dafür hatte wie man spannende Matches aufbaut. Eben ein Pionier den wohl gar nicht genug dafür loben kann so schnell und zeitig die nächst Generation ins Rampenlicht gezogen zu haben. Und sie auch dementsprechend aufbaut, das gilt für Misawa, Taue, Kobashi und Kawada. Auch hatte er im Gegensatz zu einigen Behauptung, Charisma. Das lag aber mehr mit seinem ganzen Auftreten zusammen und wirkt auch nur wenn man es sehen wollte, schon allein die Mimik göttlich. Vielleicht der Größte seiner Generation. Und jetzt ALLE: ~OH! OH! OH! ~"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Leonewrote on 11.02.2013:[10.0] "When we think of who the best Japanese wrestler was in the '70s, 80s, and even the early 90s, several well known names might come up.  But the fact is, the best one was Jumbo Tsuruta.  As a former amateur wrestler who represented Japan in the 1972 Olympics in Munich, Germany - Jumbo was unlike any Japanese wrestler around in his day.  He was a tremendous size for a Japanese man, and the only other Japanese wrestler physically bigger than him was Giant Baba.  To go along with his size, he was incredibly strong.  He had the technical skill to match the likes of Dory Funk Jr & Jack Brisco in the ring, and demonstrated enough agility to perform very high dropkicks.  His storytelling and psychology were rarely matched, even to this day, and his charisma was strong enough that he was even cheered in the USA when wrestling their home talent.  By his late 30s/early 40s, he was putting on some of the best matches in the world at the time, which included his feuds against the likes of Genichiro Tenyru and a young, almost ready for the main event, Mitsuharu Misawa, who he symbolically pasted the torch to.  A fantastic singles wrestler and tag team wrestler with 1 of the best power bombs and backdrops ever, who would be just as good in this era as he was in his own."
Rating: 10.0
Sentiment: 0.23547311827956993
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Fighter Daronwrote on 29.01.2012:[10.0] "One of the bests ever, no excuse to not loving him. Charisma, psychology and athleticism."
Rating: 10.0
Sentiment: -0.13749999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: MaikBaaderwrote on 16.07.2011:[10.0] "Ein wahrer Heavyweight, ein wahrer Champion. Das war Jumbo! Im Ring war er wirklich spitze, aber nicht nur sein Moveset war gut, sondern auch seine Psychologie. Unglaublich guter Storyerzähler, der glaubwürdig sellte und erst recht glaubwürdig zuschlägte.  Ist mein Lieblingsheavyweight zusammen mit Misawa, Kobashi und Kawada. War außerdem noch der Wegbereiter für die neuen Stars. Machte aus Misawa, Kawada, Kobashi und Taue in seinen Schlachten zu einem richtigen Star!  OH!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: RickRollwrote on 17.04.2010:[10.0] "Einer der besten In Ring Performer allerzeiten. Mit der glaubwürdigste Heavyweight und Triple Crown Champ allerzeiten. Tsuruta war einfach große klasse und dank ihm hat die neue "Ära" von All Japan begonnen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Obermackerwrote on 11.03.2010:[8.0] "Seine Kämpfe waren jetzt nicht so der Bringer, aber als wichtiger Champion in Japan und Nordamerika ist doch eine 8 gerechtfertigt. Charisma war früher nie die Stärke japanischer Wrestler. ;)"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Mick Funkwrote on 02.10.2009:[10.0] "Massiger, großer Wrestler, der dennoch schnell und agil im Ring war und jede Aktion sehr glaubhaft rüberbringen konnte. In seiner Gewichtsklasse geht es nicht viel besser."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: FiveStarwrote on 15.06.2009:[9.0] "Der Gründungsvater des modernen Kings Road Pro-Wrestling und der Vorreiter der Super Generation. Er hat Misawa, Kobashi und Co. zu den Stars gemacht, die sie heute sind. Seine Six-Man Tag Matches mit und gegen die Four Corners of Heaven sind unvergessen, genauso wie seine Matches gegen Misawa, in denen er ihn über nacht zum Superstar gemacht hat - Jumbo, we miss you~!"
Rating: 9.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Eddiewrote on 02.06.2009:[10.0] "Er definiert das, was ein Old-School Heel ist, einfach genial anzusehen und seine Erfolge sprechen Bände, 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Verbecwrote on 03.06.2008:[10.0] "Ohne jede Frage, der beste Wrestler aller Zeiten. Oh~!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[10.0] "Einer der besten und größten Wrestler ever. Er hatte keinen unerheblichen Anteil daran, dass die Himmelssäulen der 90er überhaupt diesen Status erlangten. Und er selbst war auch ein Meister seines Fachs."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Pulpulwrote on 31.03.2008:[10.0] "Einer der wichtigsten Stars des Puroresu. Geniales Auftreten, fantastische Kämpfe, Jumbo war nicht nur körperlich einer der Größten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: LexLuger4everwrote on 26.03.2008:[10.0] "Eine der frühen Legenden in Japan! Der Wegbereiter für die Stars von heute, sei es Kawada, Misawa, Kobashi etc. Wer weiß, wo das japanische Wrestling heute ohne ihn stünde."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Rob the bobwrote on 06.01.2008:[10.0] "Eine Legende. Weniger als 10 sind völlig unangebracht!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: SternessDustOmegawrote on 05.12.2007:[10.0] "Alles andere als die volle Punktzahl währe hier nicht gerechtfertigt. Ein wahrhaft großartiger Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=593&gimmick=Jumbo+Tsuruta
Comment: Rancorwrote on 10.07.2007:[10.0] "Absolute Legende des Puroresu. Eine andere Wertung kommt da nicht in Frage."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Hangmanroxwrote on 30.01.2025:[10.0] "Okada is incredible. Everything he does has purpose and he understands ring psychology more than most. Super athletic and can make anyone look like a million bucks."
Rating: 10.0
Sentiment: 0.5583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: WillOspreaywrote on 23.01.2025:[9.0] "the only complaint I have is that he doesn't give more in regular tv matches, but I understand, he saves his all for big matches, like for his match at world's end against Will Ospreay Kyle Fletcher. all i gotta say is this man is a living legend."
Rating: 9.0
Sentiment: 0.04
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Anas Kingwrote on 20.01.2025:[9.0] "Honestly, there isn't much to say about him. What a talent this man is. One of my fav indy wrestlers of all time."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: RantingRingGeneralwrote on 20.01.2025:[7.0] "He did better in Japan, and it's clear he went to AEW just for a retirement check, which is licit. He still brings something to the game, but you can actually see the decline. I'm curious if they're gonna take him off the title scene, and still having him on TV."
Rating: 7.0
Sentiment: 0.01999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Jona5Holt on Xwrote on 18.01.2025:[10.0] "Simply one of the best of all time, changed the wrestling world with his companions during his time in New Japan, blessed to have been able to watch his career and continue to watch it. Gotta love the rainmaker"
Rating: 10.0
Sentiment: 0.42727272727272725
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Dkexwrote on 04.01.2025:[10.0] "Auch wenn sein AEW Run ihm zum größeren Teil nicht gerecht wurde bisher, er ist einer der besten, wenn nicht sogar der beste Wrestler der Welt. Dazu hat er eine unfassbare Ausstrahlung, sowohl In-Ring, als auch außerhalb. Die Sprachbarriere schadet ihm weniger als Anderen, ein bisschen schwerer ist es für ihn natürlich trotzdem."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: FishHookEXEwrote on 30.12.2024:[10.0] "The best finishing sequence artist in the history of pro wrestling. The absolute best wrestler of the 2010s, no question. The modern day version of a Lou Thesz, Nick Bockwinkel, or Ric Flair. From the Rainmaker Shock and the following iconic statement match against Naito, to the legendary series against Omega, his final bow in the Tokyo Dome to now in AEW, one of the all time greatest to ever do it. The only real complaint you can give is that he's one of those guys that's so damn good that you sometimes get frustrated that he doesn't do more in lesser matches. Up there in the greatest of all time category for my money."
Rating: 10.0
Sentiment: 0.371875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: LJAwesome 03wrote on 25.12.2024:[9.0] "Okada is one of if not the best wrestler in the world! His time in NJPW cemented his legacy as one of the greats just based off his size, presence, & star power he embodies able to put on any type of match with perfection! Since coming over to AEW, he's impressed me even simply of his personality truly becoming the quote of "born to be a comedian, forced to lock-in as the best pro wrestler" and he does it to a tee!"
Rating: 9.0
Sentiment: 0.5392857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ItsAllAWorkAnywaywrote on 18.12.2024:[10.0] "Okada could've remained New Japan's Ace if he had chosen to. Yet instead, he's betting on himself to find success on the opposite side of the Pacific. He's got the size, skill, and gifts that any promoter would crave across the world, and he's got the proven track record of a main eventer to deliver high-intensity, high-emotion matches. It would be nice to see him given the same chance in AEW has he had in New Japan, but that's probably an eventuality anyway."
Rating: 10.0
Sentiment: 0.19134199134199134
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AceHagannwrote on 26.11.2024:[9.0] "An amazing performer all around. With his heel work being always on point. He has a knack for hitting a nerve on the audience. His in-ring work is just as amazing. Okada is not far from being a synonym to a good match."
Rating: 9.0
Sentiment: 0.4625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SnappleQuartzwrote on 14.11.2024:"Kazuchika Okada is wrestling excellence defined. His timing, versatility, and ability to elevate any opponent make him elite. Okada blends psychology and athleticism to create pure, unforgettable matches."
Rating: No rating found
Sentiment: 0.5071428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheCrowwrote on 01.11.2024:"Ich kenne Okada nur von AEW. Da finde ich ihn absolut langweilig. Kein Charisma, die rainmaiker Clotheline ist für einen finisher langweilig und auch sonst beeindruckt mich da fast nichts. Der Dropkick ist gut, das wars aber irgendwie auch schon."
Rating: No rating found
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheNomadMagicianwrote on 20.10.2024:"Ich verfolge kein NJPW und kenne ihn daher bloß von AEW, wo er recht wenig gemacht hat. Er hat zwar den Look und er hat ein gewisses Charisma aber im Ring habe ich bis jetzt nichts gesehen was mich irgendwie beeindruckt hätte. Hoffe das ändert sich noch bei AEW, denn wen so viele 10/10 geben, muss da noch EINIGES kommen."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TreyHalowrote on 17.10.2024:[10.0] "One of the absolute greatest to ever step foot in New Japan and while this is obviously subjective, in my opinion is responsible for the greatest championship reign of all time, just a big match machine in his prime years and even now has shown he is still fully capable when he locks in, easily a 10/10 in my opinion and an absolute all-time great."
Rating: 10.0
Sentiment: 0.37906336088154274
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: UBVenuswrote on 12.10.2024:[10.0] "Kazuchika okada is actually a generational wrestler and anybody with a brain would never speak down on my glorious king"
Rating: 10.0
Sentiment: -0.07777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SlapViperLLCwrote on 12.10.2024:[0.0] "I know Okada is a big part of people's wrestling fandom and maybe my opinion on him is a bit harsh but in all honesty I found The Rainmaker boring and uninspired in many matches I watched from him even when taking that stigma I had of him away from his matches. Watching his matches with people like Tanahashi, Omega, Ibushi, Naito, Ospreay, Shibata, etc. while I found some that I thought were good, some even great, even when touching myself up on the story of the match to better understand the context I never found myself being that emersed in the match. I can usually take away my opinion on a wrestler and try to understand them better to find myself better emersed in their matches like what happened when I first saw people like Eddie Kingston, Moka Miyamoto, Kenny Omega, Mercedes Mone, etc. I wasn't initially a fan of any of them but became a fan after looking at more of their work and better realizing their style. Something about his style never clicked, I don't know if its the pacing, the moves, the flow he goes at but I can never find myself loving his work like the level I loved other people around him at the time. It's the same with people like Misawa and Toyota as well, while I have matches of theirs I love I always found that the names around them did a much better job at making me invested in their matches. Not to say that I hate them either but they never clicked with me like many people around their era clicked with me. I know I had some very choice words about Okada, some harsher than others and maybe I can be a bit harsh on him, but overall I find myself coming off of his big matches feeling like he is missing something."
Rating: 0.0
Sentiment: 0.17155172413793102
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: browntheclownwrote on 11.10.2024:"One of the best wrestler of the past decade. He is really great in elevating his opponents as well. His recent run in AEW has also been quite fun to watch as his comedic side is being explored more."
Rating: No rating found
Sentiment: 0.39166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Moose Nuggetwrote on 27.09.2024:[9.0] "I think Okada had a great run in Japan. I first saw him in TNA, and though he had a silly gimmick that was very early in his career. New Japan really caught on fire when he became a top star in the company. I'm not of fan of what they're doing with him in AEW, and I feel like wrestling strong style so long he decided to slow down right when he's getting his biggest exposure to American audiences. Part of my rating is considering a wrestler's longevity, and I don't think Okada is going to reach the heights he did in New Japan."
Rating: 9.0
Sentiment: 0.133301381158524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kai Kantewrote on 25.09.2024:[7.0] "Ich kann Okada nur nach meinen Gesichtspunkten beurteilen, welche nach den Vorschusslorbeeren durchaus ernüchternd ausfallen. Mit 90er Jahre Skillz, mittelmäßiger Ausstrahlung und einigen geschossenen Böcken hier und da, ist hier kein Legendenstatus für mich erkennbar. Ok, sein Dropkick ist wirklich schön anzusehen aber der Rest haut mich nicht aus den Latschen."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: comiligiwrote on 24.09.2024:"[9] In my opinion, Okada's greatest strength is his ability to elevate his opponents. On paper, his moveset isn't super flashy, but it gives him the ability to be incredibly adaptable and versatile, and work off anything his opponent's bringing to him. Anyone who fought Okada probably had their best match, or one of their best matches, with him. The downside of this is that I do often go away from those big matches more impressed by Okada's opponent than by Okada himself, but he more than makes up for it with his consistency by comparison. In terms of character work he's one of the best ever; not many people can go from cocky heel to dominant and confident champion to babyface fighting from underneath to goofball, but Okada makes it look easy. Sure, some people are salty that we're not getting the five star bangers in AEW yet, but I think he's more than earned a bit of an easier run away from the very top of the card, especially considering how young he was when he first got into that position."
Rating: No rating found
Sentiment: 0.4388888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jsbortswrote on 08.09.2024:[10.0] "While so far his American wrestling history has been less inspired, he's had one of the best 10+ year runs of any wrestler ever. He has a smoothness that makes everything feel easy for him, he's capable of some genuinely impressive athletic feats for his size, one of the best dropkicks in the history of the business, and really understands how to build his character within matches."
Rating: 10.0
Sentiment: 0.4185185185185185
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AnthoTheKIDwrote on 30.08.2024:[9.0] "Kazuchika Okada is a great wrestler, delivering good handful of matches. His comedic side in All Elite Wrestling that can be a double-edged sword especially for those who watched him in New Japan but he's great doing it and I think he loves being that fun heel but behind that facade, everybody knows who he is.A truly great master of the ring."
Rating: 9.0
Sentiment: 0.3920454545454546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Joe907wrote on 28.07.2024:[10.0] "One of the greatest wrestlers ever. Okada has it ALL. He was THE guy for NJPW in their golden years. His moveset is very good. He's had a lot of legendary matches with Omega, Naito, Tanahashi, and Shibata. His IWGP run was one of the best in modern professional wrestling."
Rating: 10.0
Sentiment: 0.6442857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Wrest lingaddictionwrote on 02.07.2024:[9.0] "Five or so years ago I would've said there would've been maybe a handful of guys better than Okada. Now not so much, while still a good wrestler it's become increasingly clear he was only doing such good matches because he was and still is being carried to a good match. His moveset is highly repetitive and is becoming less and less impactful as time goes on. At this point in his career, he's relying on his name value alone because let's face it, he's past his prime and has been for a while now. Okada in 2016 through 2019 was the man. Now, he's a somewhat credible comedy character. Could he be bumped up to a 10 again? Possibly. But what ever they're having him do now isn't gonna do it."
Rating: 9.0
Sentiment: 0.1944444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: rgpickwrote on 19.06.2024:[10.0] "Quite simply one of the greatest wrestlers to ever have stepped into a ring. He was The Man in what was the greatest period for NJPW and the number of incredible matches speak for themselves. So far his run in AEW has shown he can adapt to a western TV audience as well, though he will forever be linked to NJPW. A wrestler that is every bit as good as the hype would lead you believe."
Rating: 10.0
Sentiment: 0.5285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MasteroftheMatchGuide99wrote on 04.05.2024:[10.0] "Without a doubt is a mainstream celebrity in his home country. Not only does Okada consistently give fans amazing matches, he's also been in ads, commercials, movies, TV shows, and news shows. In fact, last month I saw a Japanese advertisement that had Okada advertising wasabi KitKats. But, his wrestling is where you really see just how amazing he is. His 4 matches against Kenny Omega have been billed as best matches in both of their careers. Okada is even a hero to some non-Japanese fans who treat him almost like a folk hero, because his skill is on another level entirely. And now that he's in AEW, just how much MORE can we see? When he retires, he'll be a legend for sure."
Rating: 10.0
Sentiment: 0.33181818181818185
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: BruceMarcos524wrote on 02.05.2024:[10.0] "Don't let my bias get you through that Kazuchika Okada IMO, is the best wrestler in the world today. A total package of a wrestler that can easily adapt to any styles of wrestling. One of the biggest prototypes and assets of NJPW and rightfully so. I couldn't think what the best matches are to be recommend because he has a lot of them, like the Britannica like of catalogue matches to watch. He had great rivalries with Hiroshi Tanahashi, in which according to fans and critics is the greatest wrestling feud of all time. Who else can't forget his slew of epic matches with Kenny Omega, in which I may considered the bar of all wrestling matches. He has a great in-ring psychology and the master of dramatic selling. His moves are very calculating and most of his hits timed perfectly, hence why most of his matches are visually appealing. His dropkick has the most beautiful visual I've ever witness as a wrestling fan. A true in-ring general that can even make Toru Yano's matches a 5-star like calibre. Sometimes, he can be a POS if he didn't get the things his way, in which is pretty dope for him. His move sets and his wrestling style are widely ranged, he can go Puroresu, Lucha Libre or American wrestling. Knowing that Okada is leaving NJPW, whichever promotion he is after are the luckiest promotion in the world as they acquire one of the biggest signings in wrestling history. A once in a generation talent in pro-wrestling."
Rating: 10.0
Sentiment: 0.4227272727272728
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Jeezuswrote on 23.04.2024:[10.0] "[5.00/5.00]: The greatest to ever do it, there's nothing much more to say except that he's the most perfect yet traditionalist pro-wrestler that perfects his craft whenever he's in the ring, seemingly even can make chicken shit to chicken soup (his feud with Bronson Reed). There's a reason NJPW has given him an entire decade dedicated to him with one of the most prestigious reigns in the mid-late 2010s: reliability. Others have probably said more in their in-depth reviews of the man and his rivalry with Omega, Tanahashi, and Naito, and I'd agree. Up there as the Greatest of all Time."
Rating: 10.0
Sentiment: 0.3272727272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: twojswrote on 22.04.2024:"Generational talent, sad to know most don't understand what we're watching before he retires. I love what he's doing right now as a Global Ambassador with The Elite."
Rating: No rating found
Sentiment: 0.15714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: UltimoMutawrote on 22.04.2024:[10.0] "It took me a while to get it. It took me a while to embrace it. Okada is one of the greatest of all time. A pro wrestling machine; smooth, athletic, powerful, technical and the aura of a champion even if he's not holding a title. Best dropkick of all time and some of the greatest Match and rivalries we've ever seen."
Rating: 10.0
Sentiment: 0.6166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: arisenbywrote on 17.04.2024:[10.0] "[9.8] No ifs, ands, or buts about it, even if I were to just look at his New Japan run, whenever Okada hangs it up, he is going to be firmly in the conversation for greatest of all time. Amazing presence, carries himself like the biggest deal on the planet, beautifully simple yet refined moveset, and is almost guaranteed to have the best match of the card on any event he's on. This dude was able to make the character of "having a mental breakdown and getting really into balloons after losing the heavyweight championship after a 2-year long superchampion reign where you broke most of that belt's records" work."
Rating: 10.0
Sentiment: 0.32603305785123965
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TripleCrownwrote on 04.04.2024:[10.0] "Will go down as one of the best Japanese wrestlers of all time, a true living legend. That run he had as IWGP Heavyweight Champion from 16-18 was incredible, almost every match was just pure wrestling art. First time I had ever seen Okada was during his TNA days back in 2010 or something like that, honestly just saw him as another Japanese wrestler in the US, didn't think anything of it. Was so surprised to see how much he improved when he returned to NJPW. His first look back was quite... interesting, to say the least. Blonde eyebrows did not suit him, looked really weird, so I was happy to see he changed that very quickly. But man, the guy just grew and grew and grew into something larger than life. Not a fan of his move to AEW, I feel like he should've just stayed in Japan, but obviously he wants to take a different path and we've just gotta sit back and enjoy the ride. His days of being the best wrestler in the world are kind of beyond him now though, which is a little sad to say but I think that 16-18 run really took a lot out of him. He's still one of the best wrestlers alive today, but I don't think he's capable of being number 1 anymore. Looking forward to seeing what he can do in AEW, despite the fact I'm not overly excited about him being there."
Rating: 10.0
Sentiment: 0.23616363211951447
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Willie 19200wrote on 03.04.2024:[10.0] "There isn't much else to say other than Kazuchika Okada is one of the greatest wrestler to ever step foot in the squared circle. At the rate he is going in he could be known as the greatest wrestler of all time, I only have one problem with him: He's kind of overused, and by that I mean, look how many Wrestle Kingdoms he's been a part of the main for event, I mean he's good I get it but I don't need him shoved down my throat. But besides that I think what he did in NJPW is amazing and I'm ready to see what AEW will have him do with Continental Championship."
Rating: 10.0
Sentiment: 0.2900793650793651
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Pigeon Scratchwrote on 26.03.2024:[10.0] "I'm unfortunately a little late to the party of Kazuchika Okada, finally starting to watch more wrestling in late 2023/early 2024. My first match of his was against Bryan Danielson at Wrestle Kingdom 18, which was the best match of the night, no argument. Afterwords, I finally watched his matches with Kenny Omega, and the one match with Shibata, and holy fucking shit. There is no wonder he was placed at the top of NJPW for the longest time. No wonder he is considered one of the best world title holders of that promotion. No wonder both WWE and AEW wanted him so badly the moment he was announced to leave NJPW. No wonder he takes up 3 of the top 5 highest rated matches on Cagematch. He is the top of the best wrestlers of the modern era, and one of the most important of all time, and he still has so much gas in the tank."
Rating: 10.0
Sentiment: 0.25592105263157905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: benny5bellyswrote on 10.03.2024:[10.0] "He was the ace of New Japan for near enough 10 years for a reason. Been part of some of the greatest matches of all times. Carries himself to perfection except when he had a balloon fetish."
Rating: 10.0
Sentiment: 0.3090909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: danzitorockwrote on 09.02.2024:[10.0] "Okada is a wrestler that was placed at the top very suddenly and in an abrupt way, basically a gamble by Gedo, but it's also probably the best gamble of all time, he was born to shine. Maybe the biggest case of succeeded industry plant of all time, Okada came back from a somehow failed excursion at TNA with a brand new look, and a gimmick that many people thought it was too "americanized", and that he was all presentation and no ring skills, but immediately he won championships, had big matches, and beat legendary opponents. He also made rivals that he would have some of the most incredible matches of all time, and proved to everybody that he was the deal. His moveset is not incredibly revolutionary or impressive, but he does the simple things in the most amazing way imaginable, and absolutely can tell a good story inside a match, like few others in history. His moves may seem basic, but the way he threats them makes his matches look the most tense ones, and the ones that look the hardest to win. The rainmaker was born to be a top guy, and I'm only thankful for all the incredible moments he proportioned me all those years, he's undeniably one of the greatest wrestlers of all time."
Rating: 10.0
Sentiment: 0.34385822510822506
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: KEIwrote on 01.02.2024:[10.0] "Kazuchika Okada seems to be the best modern day professional wrestler. Okada is one of the greatest, if not the greatest wrestler of his generation. His matches with Kenny Omega in 2017 made me fall in love with NJPW. 10 out of 10"
Rating: 10.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: VictoriaDTwrote on 27.01.2024:[10.0] "It's been a while since I have watched a NJPW match (let alone an Okada match). But this guy lives in my head rent-free, when I think of the greatest wrestlers, he always comes to my mind. Just a top-tier worker, and to think he is only 36 and has the history is does is outstanding."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Grapefruit Juicewrote on 22.01.2024:[10.0] "From everything Ive seen of Okada, hes been absolutely incredible, I am not burned out like some people may be, I love how he carries himself and how he works. A truly incredible main event SuperStar."
Rating: 10.0
Sentiment: 0.6166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Toumiwrote on 18.01.2024:[10.0] "My favorite modern day wrestler, he carries himself so damn well and his presentation overall drew me in initially as this final boss or major threat for anyone opposing him. And then there is the matches he is in, which are commonly sone of the best shit i've seen. He has a formula in his matches that can work so well and even when he is not using that and playing someone else's game (For example Shibata) he can still thrive and even elevate the match. He is so damn good at what he does i love watching the Rainmaker."
Rating: 10.0
Sentiment: 0.171875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: somerandommarkwrote on 13.01.2024:[10.0] "The greatest in-ring storyteller of this generation. Looking for a guy to sell his ass off and put the other guy over as a huge threat? Okada. Looking for a guy to kick the shit out of a lovable babyface (or young boy)? Okada. Looking for a wrestler with World Champion wrestling skills, look and charisma? Kazuchika fucking Okada. My GOAT"
Rating: 10.0
Sentiment: 0.1535714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: The Quick Manwrote on 13.01.2024:[9.0] "What can be said about Kazuchika Okada that hasn't been said by everyone and their mum over the past 11 years and counting? Ever since the infamous Rainmaker Shock of 2012, he has been a mainstay of the forefront of professional wrestling, including a two year title reign that many consider the best world title run in modern professional wrestling. And it's hard to argue!"
Rating: 9.0
Sentiment: 0.12430555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AdachiGaming47wrote on 08.01.2024:[10.0] "In my honest opinion, the GOAT of pro wrestling. My love for wrestling was shot dead in 2019, only watched WWE at the time. Decided to branch off into other promotions, and stumbled upon Okada V Omega, WK11. I fell down a rabbithole of Okada matches, I watched every Omega match, Tanahashi, Ibushi, Shibata, and more. Okada reignited my love for pro wrestling, and I cannot give him a rating any less than a perfect 10."
Rating: 10.0
Sentiment: 0.24527777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: dulonicdaddywrote on 02.01.2024:[7.0] "A competent top guy that you want to see lose, and in that role he is stellar. However, enduring his many runs on top, in which he wrestles pretty much the same "methodical" 4/5ths of a match before a semi-exciting yet redundant 5th, is tired. Tanahashi was an Ace that you never wanted to see dethroned. The most exciting Okada has been (outside of his new bullying young boys schtick) was when he was usurping Tana."
Rating: 7.0
Sentiment: 0.20909090909090908
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Wrestling Foreverwrote on 17.12.2023:[10.0] "Ach Okada kann ich nur mögen. Er ist einfach nur fantastisch im Ring. Absolut sauber geführte Moves, tolle Chemie mit vielen Gegner. Wie Tanahashi ist er bei NJPW auch ein Granat für immer klasse Matches. Auch wenn er bei CHAOS ist, das Publikum liebt ihn. Man hört immer Okada Chants. Ein super Techniker und ein würdiger IWGP Heavyweight Champion. Edit 17.12.2023 2024 wird ein interessantes Kazuchika Jahr denn sein NJPW Vertrag läuft dann aus und er hat noch nicht verlängert. Es wird interessant sein wo geht er dann hin. Ansonst er ist längst eine NJPW Legende und einer erfolgreichsten NJPW Wrestler überhaupt."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: GriffinXwrote on 08.12.2023:[10.0] "Okada is an excellent wrester. He was pushed to the top very early in his career and many would have cracked the pressure. The 1 flaw I see is his habit of spamming finishers. Example when he does the rain maker now it's not just the rain maker but several short arm clotheslines happen first often with several tomestones. Worse is the money clips which he often uses as a rest hold early in the bought and than goes back to as the finish"
Rating: 10.0
Sentiment: 0.1890909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Tacho24wrote on 06.12.2023:[10.0] "The GOAT in my opinion, i stopped watching wrestling for 3 years until i get a look at the Okada vs Omega at WK11, i returned to watch wrestling, this time NJPW, and Okada is just simply a legend of the sport, 90% of his singles matches are classics, everytime the world title is not on him it loses value, he is simply the best."
Rating: 10.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[10.0] "While some might be tired of how over pushed Kazuchika Okada is nowadays, don't let that cause you to forget how amazing of a performer he is and why he is NJPW's top guy for so many years. From 2012-2019, Kazuchika Okada was build different, often having match of the year candidates every year with Hiroshi Tanahashi, Kenny Omega, Katsuyori Shibata, Kota Ibushi, Shinsuke Nakamura, Tomohiro Ishii, Minoru Suzuki, Will Ospreay, Tetsuya Naito, and so many more to name, he can hang with the best no matter who you throw at him. You watch Kazuchika Okada compete, and you can tell he's a top guy, no promoter would be foolish enough to not book him as the star of their promotion, because of how good he is. As a wrestler, he's amazing all around, possibly the best dropkick in the business, the Rainmaker is one of the best finishers of all time, incredible elbow drop, very solid in the ring, great execution, everything he does looks believable and painful, sells & bumps like crazy, durability is off the charts, cardio is in remarkable, incredible psychology and storytelling, he's a perfect wrestler. His character work as "The Rainmaker" is incredible, carries himself like a star and has godly levels of charisma, has an amazing aura and presence to him, you can just sense he's a big deal. Overall, while he may be overpushed, it's hard to not get why he is, since he's an amazing athlete and is a dependable hand for NJPW, always able to put on classics no matter who he faces, he could possibly surpass many of the greats when he retires. Remember, he's only 36 (as I'm writing this) now, imagine what he'd be capable of in his 40s, he's got a lot of years ahead of him as long as injuries don't get in the way. He's so good, WWE (reportedly) wants him and are trying their hardest to convince him to sign."
Rating: 10.0
Sentiment: 0.37916666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ECWCWWEAEWwrote on 13.11.2023:[9.0] "I cant fully explain why I cant give Okada a perfect 10... he's just.. not always reached me. He's not perfect, his personality can be really lackluster sometimes.. his current "I hate these children gunning for my spot" is easily his best, but sometimes he comes off like he's kind of just tired or bored or doesn't want to be where he is. He's fantastic across the board and yet the idea of calling him a top 10 great doesn't sit right with me.. not sure why, he's not remotely my favorite Japanese wrestler, and neither Tanahashi, Im more in favor of calling Shinuske or Suzuki the GOATS for their eras, and right now my all time fave in New Japan is Shingo Takagi, but Okada is undoubtedly there. Maybe I need to just rewatch some matches. But when he's great he's great, but he still has some low points"
Rating: 9.0
Sentiment: 0.21917937135328439
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: The Marvelous Joewrote on 17.10.2023:"Never knew what the big deal with this guy was back then. He looks like a star, but his move sets look pretty basic. Then I actually watch his matches and I got to say.... he delivers. Now, I can see why he's not only big in Japan, but in the world. His match against Omega, Shibata, and others made me a fan of his. A tad overrated, sure, but I don't care."
Rating: No rating found
Sentiment: 0.19444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: KENTAfanwrote on 15.10.2023:[9.0] "Don't get me wrong, Okada is an incredible wrestler, but I do think that he's just a tad overrated. He can hang with anyone in the world, but usually, in the many classic matches he's had, his opponents seem to come across as the stars just a bit more than him (Omega, Ospreay, Naito, Shibata, Danielson). He also peaked back in 2016-2018 and just hasn't seemed quite as good as he was back then in recent years."
Rating: 9.0
Sentiment: 0.20166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: CorpusSkiptotelicumwrote on 03.10.2023:[9.0] "Okada is a strange wrestler.. The Great Catalyst I like to call him, as he's someone that adapts to his opponents style and helps them elevate that to the highest degree possible; workrate epics with Omega, storytelling masterclasses with Tanahashi, being the final boss to plucky wrestlers like Naito and Ishii and more. There's a reason so many have their best matches with him, he's like the perfect canvas for them to paint that picture. That's the thing however, though it may sound strage, without that he's not particularly interesting by himself. As the years have gone by and he's gone up against everyone on the njpw roster, we've pretty much seen everything he can do. There is hope though as his work as a cranky veteran antagonising the younger generation is the most interesting he's been in years. But that will too run its course, and this probably sounds like blasphemy, but I'd love to see what he can do outside njpw full time."
Rating: 9.0
Sentiment: 0.3263157894736842
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Innercelphwrote on 19.08.2023:[10.0] "Best wrestler of the last decade, not quite at his peak anymore but still an S-tier performer. His trilogy/quadrilogy with Kenny Omega remains my favourite rivalry of all time, and his legendary two-year reign as IWGP Heavyweight champion from June 2016 to June 2018 helped anchor my interest in NJPW."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Lalo Camposwrote on 16.08.2023:[9.0] "One of the best in the history of New Japan Pro Wrestling and Puroresu in general, but in my opinion, he is not the absolute best wrestler in any kind. His matches with Tanahashi, Styles, Omega, Naito and others are the stuff of legend, the second best IWGP Heavyweight Champion in my books."
Rating: 9.0
Sentiment: 0.49829545454545454
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: BlueBrandwrote on 12.08.2023:[10.0] "For me over the past decade few wrestlers have continued to shine at the peak of the wrestling industry as brightly as Kazuchika Okada. If I had to sum up Okada's wrestling style in one word it would be versatile. His in-ring technique seamlessly blends power, agility, and technical prowess which enables him to work great with any wrestlers that he steps into the ring with, with his opponents consistently finding themselves producing some of the best matches of their careers when facing him. His pacing, storytelling and call backs within matches are second to only Kenny Omega in this day and age. Okada's legacy was built off of the back of his iconic feuds against some of the industry's greatest legends. I'd have to specifically call out his longest rivalry against Hiroshi Tanahashi, a feud that symbolized a passing of the torch from the ace of New Japan Pro-Wrestling's past to its future. Their rivalry and matches elevated both wrestlers to new heights, elevated the entire NJPW company bringing it back to prominence and in my opinion elevated professional wrestling as an art form. His other historic rivalry was with Kenny Omega, the fights between these two broke the limits and redefined what wrestling matches can be, pushing the boundaries of physicality and storytelling. All four of their legendary matches have earned universal acclaim which elevated both men on the world stage. While he has had many other incredible matches and rivalries, these two rivalries in particular really put him on the top of the modern wrestling landscape that very few will ever be able to get to."
Rating: 10.0
Sentiment: 0.22664830119375579
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: mooerwrote on 10.08.2023:[10.0] "Although there are many complaints about Okada being a stale headliner in New Japan, I still consider pretty much all his singles matches must watch and think that he carries himself with a level of poise that few wrestlers do. His match style is slower and less flashy than some of his contemporaries, but by and large I enjoy the slow openings as a way to pace yourself as a viewer for these longer matches. He's had as many great matches as anyone, is one of the best champions in wrestling history and in 2023 has been adding new facets to his character as an intolerant veteran fighting back younger, hungrier wrestlers, establishing them through his apparent disinterest as stars to watch."
Rating: 10.0
Sentiment: 0.13264980633401685
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: bigredtalk89wrote on 24.07.2023:[7.0] "Yea, maybe I'm being a contrarian, but Meltzer over hyped him to the point where every time I watch a match of his I'm incredibly underwhelmed. The culture and language barrier doesn't help, but I feel like I'm talking to wine snobs whenever he's brought up, like if you don't think his matches are the best you just "don't understand""
Rating: 7.0
Sentiment: 0.95
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: John Brandowrote on 17.07.2023:[10.0] "Schon einer der besten Wrestler auf diesem Planeten, in den Top 3 wahrscheinlich und auf der östlichen Seite der Erde der Beste. Man kann schon sagen, dass ein Okada das Wrestling maßgeblich prägt und sich, ähnlich wie ein Omega, verewigt hat, auch durch die Schlachten mit eben Selbigem. Ich hoffe, dass er uns als Performer noch ein bisschen im Ring erhalten bleibt und uns weitere Schlachten beschert. In Japan würde ich ihn schon zu meinen Favorites zählen. Vielleicht sehen wir ihn nochmal in Nordamerika. Wer weiß!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: BigNiggleswrote on 26.06.2023:"[10.0] Truly the final boss of professional wrestling. Okadas fighting spirit, selling, charisma, and malleability is unmatched at least in todays era. He can put on a good match with anyone and his matches with Omega, Tanahashi, Ospreay, and the one with Shibata are some of the greatest matches one can view. Hes the GOAT for me."
Rating: No rating found
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Megastar309wrote on 22.06.2023:"Okada for me is quite simply the personification of a wrestling machine. Not watched him loads but seen his bouts with the likes of Kenny Omega & Jay White and everytime he impresses. No reliance on over-the-top spots or cringey gimmicks, the definition of the word wrestler."
Rating: No rating found
Sentiment: -0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Lunawrote on 14.06.2023:[10.0] "One of the greatest of all time. A special wrestler and personally one who truly broadened my horizons"
Rating: 10.0
Sentiment: 0.4523809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Frank Shooterwrote on 02.06.2023:[10.0] "The Wrestling God of the 2010's. You think about the best matches in the last decade and this guy has been in at least 90% of them. From his impecable In-Ring work to his stellar presentation and natural big star charisma, Okada is on the very top of the mountain."
Rating: 10.0
Sentiment: 0.24285714285714288
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Dancerwrote on 01.06.2023:[10.0] "Probably the best big match wrestler of all time. Him and Omega probably have 3 of the top 5 matches of all time. He's got a cool gimmick, but I can't speak for his promo ability because I don't speak Japanese, but it hardly matters. His in ring ability is top notch. I really only watch New Japan when he's in the main event."
Rating: 10.0
Sentiment: 0.23613636363636364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: gargoylesmainwrote on 26.05.2023:[10.0] "Okada has been in the game a long time, but is showing new character work and branching out a bit lately, which was very needed and a sign of a top talent that can pivot when his run at the top starts getting stale. Jerk Okada is a glory to see, after years of having him as the top babyface. He is a goofball at heart, and yet a master in the ring."
Rating: 10.0
Sentiment: 0.06515151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: PepsiManwrote on 15.05.2023:[7.0] "A absolute athlete but I hate the fact that he's still on top and he really should have dropped the IWGP World Heavyweight Champion to Zack Sabre Jr at Hyper Battle and at the time of writing he's still champion and putting on good matches but the booking is still in 2017 yet it really shouldn't. If he had dropped it to Ospreay or Sabre Jr I would rate him higher but he's getting stale."
Rating: 7.0
Sentiment: 0.09374999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Erik1031wrote on 28.04.2023:[10.0] "What else could be said about this man that hasn't been said. He's one of the greatest stars NJPW has ever had. The company put all their eggs in a basket when they pushed him to the World title in 2012 and they never looked back. He's been the ace of one of their best eras, legendary feuds with Tanahashi & Omega and he's put on classics with just about every major star in the company for the last decade. He could retire tomorrow and go down in history. At age 35 still has so much to give. A true generational talent."
Rating: 10.0
Sentiment: 0.38410493827160497
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: YourKingMobwrote on 20.04.2023:[10.0] "I starting just doing a ranking of the best pro wrestlers in NJPW over the years and as far as performance in the ring, he's better than Hashimoto, Tanahashi or even Nakamura! I strain to think of someone better than him going back a long time, save for Shibata in the last 35 years."
Rating: 10.0
Sentiment: 0.27187500000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: The Sick Lebowskiwrote on 12.04.2023:[6.0] "Sorry, aber ich kann die Faszination um ihn nicht verstehen. Ich gestehe ihm zu, ein richtig guter Seller zu sein, daher überhaupt eine mittelmäßige Bewertung. Offensiv kann er mich aber überhaupt nicht abholen, da finde ich ihn stinklangweilig. Kann aufgrund seines starken Sellings durchaus mit den richtigen Gegnern grandiose Matches auf die Beine stellen, aber dafür sind meiner Meinung nach durchgehend größtenteils seine Gegner verantwortlich. Warum ausgerechnet er das absolute Ace bei New Japan ist, ist mir schleierhaft."
Rating: 6.0
Sentiment: -0.21948051948051953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheOneAndOnlyCactuswrote on 30.03.2023:[9.0] "Quite frankly, he is not my favorite. But, I know that any list of the greatest Japanese wrestlers of all-time would feel empty without Okada being there somewhere. While his formulaic style for the main events can feel quite repetitive, there's a reason why he does it: it works. As a wrestler, Okada is one of the most naturally gifted wrestlers that I have ever seen. An athletic beast with a lot of tools in his arsenal and natural charisma, it's easy to see why he has been at the top of the card for a decade now."
Rating: 9.0
Sentiment: 0.2791666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: KKeanelwrote on 12.03.2023:[10.0] "Japanese circuit needed in their 2010s generation a guy who will be continuator of symbol of greatness after golden days of Four Pillars of Heaven from 90s and 2000s. And we got it. I think I don't have to explain why I appreciate his huge talent and influence on wrestling business. All-time great - and he still can show us something iconic."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ChrisPrattAsMariowrote on 03.03.2023:[10.0] "Easily one of the best, if not the best, in-ring workers of all time. He's been considered that to me since 2014 but was solidified during his 2016-2018 run as champion. Okada has two of the best rivalries in wrestling history against Kenny and Tanahashi and will never fail to bring the best out of someone. My Favorite Match is when he faced Kenny Omega at Wrestle Kingdom 11"
Rating: 10.0
Sentiment: 0.7404761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Okaro143wrote on 21.02.2023:[10.0] "Okada is one of the best wrestler in the world and is on many fans and pundits' list of greatest wrestlers in pro wrestling. There are only a handful of wrestlers that could match his accomplishments. Many of his matches are among my favourite match of all time (Omega Vs Okada is #1). His fourth reign as IWGP Champion is the greatest reign(any championship reign at any promotion) in professional wrestling history. This guy is the G. O. A. T. of wrestling."
Rating: 10.0
Sentiment: 0.5125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: wrestlingreviewerwrote on 18.02.2023:[10.0] "The way I see it the greatest wrestler of all time With the greatest wrestling match of All time and the best title run of any champion. That's why he's the goat the goat"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: tommyyy1714wrote on 17.02.2023:[6.0] "Crazy to me how someone with so many all-timers under their belt can also be so underwhelming and dull. His main event style hasn't changed since like 2017, his personality rarely shows any range or dimensions and more often than not, he's an unstoppable champion which becomes tiresome."
Rating: 6.0
Sentiment: 0.010714285714285707
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: amaiwrote on 19.01.2023:[10.0] "quite possibly the best of all time, although he did run through a bit of a dry spell from about 2020-2022 (i blame it on the state of NJPW as a whole tbh) its very hard to deny that this guy is the complete package"
Rating: 10.0
Sentiment: 0.1423611111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Daigotsuwrote on 16.01.2023:[10.0] "Not much to say about Okada that hasn't already been said. He's an absolute star, one of the greatest of all time. Great look, great storyteller, and his physical gifts speak for themselves."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Klabauterwrote on 14.01.2023:[10.0] "By far the best wrestler in the world today and maybe even all time! Can't give him any other rathing than a 10/10. Incredible career, too, from his times as as a Young Lion on excursion in TNA getting totally wasted by them to returning and claiming the world title in one of the biggest upsets in a long, long time. And after that he only got stronger and better becoming the personification of his promotion, a promotion that presents him as the topstar he is. Many topstar in the pro wrestling world lack the trust and backing of the higher ups, but not Okada, which gives him the opportunity to not only be the best, but to show it on a regular basis. He also holds so many records and incredible stats. As of today (14.01.2023) it has been 4028 days since Okada returned from excursion on 04.01.2012; he held the top championship of NJPW (IWGP Heavyweight and IWGP World Heavyweight Championship respectively) for 1959 of those days! That's ~48% of the time!"
Rating: 10.0
Sentiment: 0.31375000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: nWo-Joshi-Guywrote on 12.01.2023:[10.0] "Awesome look/gimmick. Amazing move-set. One of the greatest wrestlers of this or any generation. Involved in many of the best matches of all time."
Rating: 10.0
Sentiment: 0.82
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: benh2wrote on 12.01.2023:[10.0] "Pretty much the prototype for the modern wrestler. A great look, decent charisma and an all-round great worker. Sure, there are plenty of others that are far more flashy than he is but he knows how to put together an entire match (or even series) rather than just a sequence. The only issue I have is that he's give birth to the NJPW big match formula that the company now thinks all main events need to adhere to and most others can't pull it off. But all big Okada matches are sure-fire hits."
Rating: 10.0
Sentiment: 0.23020833333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ISimon1912wrote on 31.12.2022:[10.0] "One of my favorite wrestlers ever, the guy who made me open my eyes outside the American wrestling bubble thanks to the (perfect) series against Omega in 2017, and had probably the best year a wrestler can have, one of the GOATs of our sport"
Rating: 10.0
Sentiment: 0.38571428571428573
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MainEventMasterwrote on 09.12.2022:[10.0] "One of the greatest ever, he just screams "main eventer" with his presence, not to mention he is an amazing wrestler."
Rating: 10.0
Sentiment: 0.5888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: crs285wrote on 28.11.2022:[10.0] "Crazy that TNA messed up Okada when he was there. Okada today is truly outstanding. He has the crowds eating out of the palm of his hand every night. Charismatic guy. In the ring his psychology and how he structures his matches are second to none."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Enriquepollazzowrote on 27.11.2022:[10.0] "Only an idiot would give Okada anything less than a 10. I would like to know the brain damage that would cause a WRESTLING fan not to enjoy Okadas best matches. If those matches are among the best ever (and they are) than he's a 10."
Rating: 10.0
Sentiment: 0.2388888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Vukowrote on 24.11.2022:[7.0] "Yeah I know my rating for Okada is low. I just can't watch his matchs now because this is so foreseeable that in a match, he will do the same things to win (being destroy but okay just one Rainmaker and bye). I mean if you look at the last G1, his last match of the tournament are foreseeable because NJPW books him like a god who just need one Rainmaker when Lance Archer litterally do all of this special move but just 2."
Rating: 7.0
Sentiment: 0.1271825396825397
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Mcbolskywrote on 22.11.2022:[9.0] "Just like Tanahashi, I understand that he is one of the all time greats but he is very repetitive. Couple dropkicks from the top rope, couple tombstones, and a couple lariats and rinse and repeat. He has a great look and is an excellent representative for NJPW but I just don't get it."
Rating: 9.0
Sentiment: 0.49375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jonsnoewrote on 31.10.2022:[10.0] "One of the best Japanese pro-wrestlers of all time. His matches are amazing. His charisma and entrance feel like the Last Boss. 10/10 or 100/100."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Osiris For Allwrote on 29.08.2022:[10.0] "One of the best I've ever seen and currently my favourite. I don't know why but he consistently makes me cry with his matches."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: dnmtwrote on 18.08.2022:[7.0] "Kazuchika Okada is like if some advanced AI developed a perfect wrestler simulation that you could test different opponents against to assess their talent without having the simulation have any possible influence on them in the match. He is like the scientific control for NJPW. For better or worse, Okada does essentially the exact same act in every match and always meets his opponents precisely at *their* level. The clearest example I have of this is how Kaito Kiyomiya, of all people, got Okada to show more hate and fire in 2022 than pretty much any other Okada opponent this year, despite these two having zero history together other than some magazine trash talk. He has good matches with good wrestlers and bad matches with bad wrestlers. The people who love him will point to specific details of how he's changed his match structure or nuances he's added (the "wrist control" spot with Tanahashi being the first big example), but when you step back and look at that tiny detail in the larger scheme of what pro-wrestling can be, it's laughably unimportant. Virtually every big Okada match begins with ~5 minutes of perfunctory chain or mat-wrestling, followed by a few minutes of outside brawling and guardrail collisions, then a control segment where he hits his standard mid-match moves, and concludes with a series of reversals and counters and convoluted wrist-control segments to hit a Rainmaker. The most interesting thing he's done to change this up in the last few years is simply swapping in a new move for another - Landslide for the Tombstone, Emerald Flowsion for the Landslide - like a computer program trying new permutations of the same formula. His big matches (vs. Omega, for example) are the same as his standard formula, just filled in with more stuff in the appropriate spots. I never feel like he has any hatred for his opponents, never feel like he is thrown off his game, never feel like he is panicking, never feel he is trying something new. He just goes out there, runs OkadaWrestlingMatch.exe, gets his nearfalls, hits a Rainmaker and calls it a day. It looks cool as hell and can be fun but I virtually never feel that there is substance underneath it. Each match seems entirely perfunctory until he hits a counter Dropkick, which is precisely when his matches turn into the big move counter trading people love. But when you see it coming, and it keeps coming the same way it always does, what's the point? Maybe the best boring wrestler of all-time, but definitely not an all-time great in my book."
Rating: 7.0
Sentiment: 0.11431818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Tyler72wrote on 13.07.2022:[8.0] "Kazuchika Okada is a wrestling legend who's been a driving force behind some of the best of the best matches in NJPW and the world."
Rating: 8.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MccainJamenwrote on 02.07.2022:[10.0] "Okada is a once in a generation superstar who elevates anyone who faces him. Making him the megastar he is was one of the best decisions New japan has ever made."
Rating: 10.0
Sentiment: 0.5681818181818181
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: texasyoshwrote on 19.06.2022:[10.0] "Not sure what to say about Okada that hasn't been said already. He screams top guy. Fantastic mannerisms, great athleticism, and puts on some great matches. There's a reason why there's so much buzz about Okada potentially being on American television. Many people call him one of the best workers of all time, and I think there'll be a defined historiography about how Okada works, and perhaps Gedo's booking as a whole, but I feel it can fall a bit overdone and formulaic at times. Despite that, Okada is a supremely great wrestler."
Rating: 10.0
Sentiment: 0.3807692307692308
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SoaKaswrote on 27.05.2022:[10.0] "He is probably the best wrestler of this generation and he absolutely earned that title. Character, matches, storytelling and look are excellent and all speak top star. Okada is at the top and rightfully so."
Rating: 10.0
Sentiment: 0.64
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheCoolGuywrote on 25.05.2022:[6.0] "Overrated matches that are nothing more than 30 minute spotfests. Im still gonna give him a solid rating because of he has had good matches and is a good wrestler with decent charisma. Not much more I have to say about him."
Rating: 6.0
Sentiment: 0.30277777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: DropingTheElbowwrote on 24.05.2022:"[10.0] Okada is the pinnacle of modern wrestling personified in one man, even with the accumulating injuries he managed to stay on top and deliver show after show."
Rating: No rating found
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Suzukigunwrote on 16.05.2022:[10.0] "The fact that someone recently gave this legend a 2 is hilarious. He's not one of my favorites, but anyone that knows wrestling understands how great he is."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: zags7000wrote on 03.05.2022:[10.0] "He's regarded as the best wrestler or at least in the top 3, for good reason. His classics with Omega helped NJPW grow worldwide and got me as a die hard fan and going back and watching the promotion. He's someone that has influenced many and everything about him screams star. Lots of charisma as well make him a once in a generation talent."
Rating: 10.0
Sentiment: 0.3011904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: PorcoRosso1wrote on 09.04.2022:[2.0] "If you ever want to know the current state of NJPW you just have to look at the Golden boy Okada; he has deteriorated into sludge these past couple of years beginning in 2018 and slowly getting worse year over year. I remember Okada from 2012-to 2017 as this great wrestler with few equals, and then I watch him now and am sadly reminded the years of NJPW main events have taken a toll on this poor guy. He simply can't have any other match than 30+ minutes of contrived kickouts of signature moves, long sequences that mean nothing because the match must reach a certain length, and an opening stanza with no bearing on the middle or end of the match. After a while, it gets tiresome to look at and with each match, Okada gets worse and worse. I look at a guy like Kenny who has moved on to Aew and has the freedom to construct his matches without adhering to the same tired formula and can safely say that since he's left the New Japan bloat I've enjoyed him so much more. Also Okada can't work when he's not on top of the card and I mean that in every sense of the word. He gets so lazy and uncaring and can't seem to bother to try something to get anyone invested, unlike Tanahashi that has worked great in the midcard even without the use of his knees. Okada stinks."
Rating: 2.0
Sentiment: -0.04633387445887446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: rhys4peacewrote on 21.03.2022:[10.0] "The best wrestler in the world right now, and one of the best wrestlers in the entire televised history of the medium. Okada is the full package; incredible selling, a simple but fantastically honed moveset and a million dollar look with the charisma to match. This man elevates nearly every opponent he faces, getting good matches out of okay wrestlers, and getting the best matches you've ever seen out of the great ones. I firmly believe that by the time Okada hangs up his boots, he will have carved his position in the Mt Rushmore of professional wrestling."
Rating: 10.0
Sentiment: 0.4668367346938775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: WorkrateOdysseywrote on 16.02.2022:[10.0] "For all the talk about Kazuchika Okada slowing down in recent years (most of it not accurate in the slightest), the truth remains that he's still having some of the best matches in the world during the early years of this fresh decade despite being the recipient of poor booking and opponents. If this is no longer his peak, it's a testament to how otherworldly his career has been. No doubt one of the best wrestlers of the 2010's and he's on a fast track to place among the all time greats."
Rating: 10.0
Sentiment: 0.23444444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: dinosaurjrwrote on 14.02.2022:[10.0] "Okada is very polarizing wrestler to some he is without a doubt a hof for his career however I don't feel like okada's had a standout year since 2018 and while he still shows gasps of greatness here and there okada has been the most overrated wrestler for at least 3 years now his body is is broken down I literally can't even remember a wrestler who broke down faster, but simultaneously I can't remember a wrestler who had more 30 minute matches of getting his shit pushed in. Okada's legacy will be kinder to him than father time is from 2012 to 2018 he was pretty much aj styles turned up to 11 sadly he hasn't (and probably won't) adapt to his physical decline and it's sad. Currently 3.5/10 Overall 9.5/10"
Rating: 10.0
Sentiment: -0.03740740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ZFIELDwrote on 10.02.2022:[6.0] "Okada's a tough one to point down. If I were rating him from roughly 2013 to 2017/2018 I would give him a 9 or a 10 even if some of his flaws have always been there. He's been a part of some of the best matches of the modern era. But if I were to only rate his work since then I would probably give him a 2 or a 3. Physically he has slowed down, wrestling so many 30 plus minute matches with the NJPW style will take its toll on someone. But the same has happened to guys like Tanahashi & Suzuki and they have adapted. Nowadays Okada is so lifeless he almost never shows any emotion anymore. The cocky pride and fire of his youth are gone and his matches have become boring slogs that suffer from the over-exposure of the NJPW main event formula. He is not totally without hope, his match with Naito a few years ago shows he can still find greatness but those instances are becoming less and less common."
Rating: 6.0
Sentiment: -0.02719298245614035
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ExcitingProWrestlin3wrote on 02.01.2022:[8.0] "When he's motivated he's one of the best there is. However the immense strain that's been put on his body by the booking of NJPW is very apparent. He's growing slower and he's only 34."
Rating: 8.0
Sentiment: 0.26625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "A return to form for Okada, his Wrestle Kingdom match vs Ospreay was my MOTY for months. Then he developed a case of the EVIL blues. He had a pair of Shingo bouts that were great (NJ Cup and Dominion). He cranked things up in the G1 (vs Tanahashi) and hasn't shown as many signs of back problems. Okada still has the ace role locked down, and 2022 will probably be Okada-heavy. Hopefully the injuries heel up and he doens't get bogged down in EVIL or SANADA feuds."
Rating: 9.0
Sentiment: -0.1234567901234568
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Wright15wrote on 07.11.2021:[10.0] "One of the five best wrestlers of all time. As of 2021, I would only put Tanahashi, Thesz, Kobashi, and Flair on the same pedestal. And Okada is only just about to turn 34! No wrestler, not even Kobashi or Misawa, has had a greater number of legendary matches. I have tracked down and watched almost every incredible bout that was ever filmed, from 1980s Crush Gals AJW to Kiyoshi Tamura's height in RINGS, from Sammartino's feud with Killer Kowalski to the WALTER-Dragunov rivalry, from the American Dragon's peak in ROH to his renaissance in AEW. I have seen literally thousands of awesome matches. Kazuchika Okada was a participant in five of the six that I thought were the best. No wrestler in history comes close to his ability to build a match to a breathtaking climax. Okada is the greatest big match wrestler of all time, and he may become the greatest overall as he continues to build his legacy."
Rating: 10.0
Sentiment: 0.5152777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MrIslamywrote on 31.10.2021:[10.0] "Kazuchika Okada is an amazing wrestler and could have 5-star matches with anything. He is one of the best workers of all time. His move set is especially good and his dropkicks are some of the best."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: IBladeDailywrote on 21.10.2021:[9.0] "In-ring Okada is one of the greatest of all time. His matches with Omega, Shibata, Tanahashi, and many others have been undeniable classics. He holds himself as a star and, having seen him live, I can say that definitely comes across when he's in an arena. My only criticism of Okada is his inability to be interesting without a world title. He doesn't tell any stories aside from pursuing, winning, defending, and losing the title. If he's not champion, he seems directionless. It's Charlotte Flair syndrome. If your gimmick relies on you being the champion at all times, it needs some work."
Rating: 9.0
Sentiment: 0.3766233766233766
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Nobuo98wrote on 14.10.2021:[7.0] "Kazuchika Okada is an honours pupil, his performance and charisma are his strengths, but he has absolutely no imagination, all his matches follow the same pattern, moreover, this pattern only works in the main matches, outside the main events Okada seems completely mediocre"
Rating: 7.0
Sentiment: -0.038095238095238106
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SrHunterwrote on 09.10.2021:[10.0] "This guy is 29 years old, and didn't reach his peak yet, with this age he has three FREAKING 6 stars in 3 GOAT matches in my opinion, he is already one of the greatest of all time, this guy is absolutely great."
Rating: 10.0
Sentiment: 0.6333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Zerowrote on 25.09.2021:[6.0] "There's still nearly as much wrong with him in the ring as there is right if you analyze his actual skillset. Obviously his reputation is very high because of his list of matches that many have enjoyed over the years and it coming at a time when interest in the company was at an all time high. That said, when you dig deeper into his career, when he isn't protected by being the champion and given every opportunity to have great matches, you can see his terrible execution of submissions. You can see his massively repetitive match structures. You can see his various unsuccessful attempts at acclimating himself to different characters and places on the card. You can see all of the wasted time that pad out the beginning of even his "greatest" matches. He is the epitome of the wrestler who has all the tools and no toolbox. He has great physical abilities for the majority of his career, and for argument's sake if you break matches down into a last 5 minutes category he would be among the elite of wrestling history, you could also argue his issues with match structure and his general unwillingness to go beyond the same tired tropes as a consequence of his company moreso than himself, but even when in comparison to Tanahashi, his greatest rival he pales at these things. At the end of the day a 6 feels right for someone who has had his moments, but has largely been an albatross to the main event scene of his company throughout the years. I also look forward to seeing his return to the top for the first time in his career for 2022 as I would like to see what the now veteran version of the Rainmaker can do after a turbulent last two years that has seen his company in the greatest crisis it's been since the Rainmaker was born."
Rating: 6.0
Sentiment: 0.16822017409114184
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: DeathToZepedawrote on 08.09.2021:[10.0] "Okada deserves to be looked at as one of the best modern day performers anywhere and by the time he retires should be looked at as one of the best to ever do it. He's absolutely explosive in the ring and has put on too many classics to think of. He knows how to make his opponents look great while also knowing how to look like a super hero. The Rainmaker gimmick is a perfect interpretation of what a babyface should be and he rocks it."
Rating: 10.0
Sentiment: 0.6291666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Thomas644wrote on 30.08.2021:[10.0] "He is the best In ring peformer of this Decade together with AJ Styles. he is amazing in the ring and a big Star in Japan. He is one of the Top guys in NJPW"
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Lorenzo Ritaccowrote on 11.08.2021:[10.0] "Arguably the greatest wrestler of all time. Only Mitsuharu Misawa and Ric Flair can be compared to an athlete of his caliber. He's synonymous with the IWGP Heavyweight Championship, having won that title 5 times including his 720 days reign, the best championship reign in the modern era, perhaps second only to Bruno Sammartino's 2803 days reign. Okada has been the protagonist in many, many classics throughout the years, including what I consider the best match of all time against Ibushi (JAN. 4. 2020). Other outstanding matches include Katsuyori Shibata, with the latter ending his career on the highest level of intensity and performance, Hiroshi Tanahashi, and his three title's bouts with Kenny Omega. He wears the symbol of perfection par excellence, a white gear, with a coat that portrays nation's flags from around the world. He is the best in the world, after all."
Rating: 10.0
Sentiment: 0.39821428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: FAZEDandCONFUSEDwrote on 11.08.2021:[10.0] "Okada had the unfortunate task of living up to Tanahashi and yet he's absolutely done it. That alone speaks to how incredible he is. Time will tell if he has the lasting power of quality Tanahashi has but I don't see any signs he won't."
Rating: 10.0
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: BrayanLaPrewrote on 06.07.2021:[10.0] "Arguably the best wrestler of his generation, Kazuchika Okada has elevated an entire company. New Japan Pro Wrestling obviously existed and thrived before him, but Okada has made it feel... Different. Even greater. There have been comparisons to countless greats, but I do believe Okada has created his own lane. IMO, the most adaptable wrestler on the planet? and arguably the best storyteller. A living legend who's barely in his prime, if he even is."
Rating: 10.0
Sentiment: 0.34421487603305784
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Lyno123123wrote on 03.06.2021:[10.0] "(100/10)The man, The myth, The legend, And The Best wrestler on this planet earth. There is nothing much to say about him. He got the BEST charisma since Ric flair retired, The best IN RING psychology since Kenta kobashi Retired and Misawa passing away, And the best wrestler that ever held a HEAVYWEIGHT CHAMPIONSHIP belt . and NO ONE is even close. I could argue that Ishii and Hangman Page is my personal favorite wrestler. But they are not okada. He built to wrestle and he is better than any "Wrestling Genius" or any "Genetic Freak". He is the only man that already hit the GOAT status before he hit 30."
Rating: 10.0
Sentiment: 0.5777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: BlakeFR37wrote on 02.06.2021:[10.0] "An excellent wrestler who helped Puroresu to be mainstream from my pov. Always a pleasure to see his matches."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jltwrote on 08.04.2021:[10.0] "One of the GOAT's in the business. He is amazing in the ring and should always be mentioned when people are talking about the legends of wrestling. It's probably too late for it now, but I do wish he would wrestle outside of Japan as I believe he can pull off a 3. 5* match MINIMUM with anybody if it's 1 vs 1 - as a lot of matches have been tag team recently."
Rating: 10.0
Sentiment: 0.07500000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Canadian117wrote on 31.03.2021:[10.0] "He's up there for the GOAT. What I wouldn't give to see him wrestle dream matches in North America. He's quite literally a god of wrestling and if any of you reading this haven't seen it, then go watch Kazuchika Okada vs Kenny Omega at Dominion 2018. Very widely considered to be the greatest wrestling match ever. Period."
Rating: 10.0
Sentiment: 0.435
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MOXHAVOCwrote on 17.03.2021:[10.0] "One of the best wrestler in the world if not the best. He is perfect in Ring and literally can give a good match with any wrestler in this world."
Rating: 10.0
Sentiment: 0.925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Bushidospirit22wrote on 16.03.2021:[10.0] "One of the all-time greats who accomplished so much at a young age. His record-setting pace has definitely caught up to him, and he has really struggled against his body the past couple years, but will occasionally remind why he's so highly regarded. Hopefully he recovers since he's still relatively young for a top level wrestler, and can continue to put on classics for the next decade plus."
Rating: 10.0
Sentiment: 0.101
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: mamboKENTAwrote on 18.02.2021:[10.0] "When it is all said and done, I sincerely believe that Kazuchika Okada will be remembered as the greatest wrestler of all time. We can probably excuse him for having a fairly weak 2019 and 2020, but when he's honed in, he's really unbeatable."
Rating: 10.0
Sentiment: 0.255
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: cal9099wrote on 11.02.2021:[10.0] "While 2020 wasn't his greatest year (after his absolutely stellar Wrestle Kingdom performances), Okada in my mind is still far and away the best modern wrestler there is and I believe will go down as perhaps THE best wrestler of all time if his body holds up. At 31 he's already had an amazing career, his quest for being the GOAT will now rely on his motivation and health."
Rating: 10.0
Sentiment: 0.4993055555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: michmoose21wrote on 08.02.2021:[10.0] "A top 5 wrestler in the world. His 2020 may not have been the best, but he still had bangers with the likes of Naito, Ibushi, and Takagi. His WK match this year was fantastic with Ospreay. He also took part in some of the best matches ever against Omega."
Rating: 10.0
Sentiment: 0.725
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ZSJGunWwrote on 03.02.2021:[10.0] "2020 was a not so good year for him. But he's still one of the best. Not only right now, but in history. He'll eventually come back at his max level, but he needs to get rid of the Money Clip lock. It just kills the momentum of the match most of the times he makes it."
Rating: 10.0
Sentiment: 0.4142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TOUGH AND HARDwrote on 30.01.2021:[8.0] "Okada Kazuchika is a man of two tales. On the one hand, he is a tremendous athlete with seemingly Olympian stamina, an incredible catalog of matches, has had 2 of the best years a wrestler has ever had (Dominion 2016 - Dominion 2018), and holds one of the most impressive list of accomplishments a professional wrestler could ever hope for. On the other hand, the first half of his (re-debuted) career was largely carried by both excellent opponents and Gedo as a top-of-the-line mouthpiece promoting him to the stars, and he often needs a passionate, vital opponent to bring out his best; he regularly leans on a frustratingly stale, repetitious, drawn-out match formula of outlasting his opponents (swelling his matches to irritating lengths), and has (with a couple exceptions) largely been coasting, post-Omega title loss. The company seems to want their golden goose to work conservatively. It all leaves an odd taste in the mouth, like some pop idol who's been constructed by an industry. Naturally, that's an unfair comparison, as--when Okada is at his best--there are few in the world that can keep up with him, and he's such a cardio-machine and an effective obstacle that he forces his opponents to work harder in the aim to overcome him. When Okada is 'on' he can be incredible. Unfortunately, post-2018, he is often churning out 30+ minute mind-numbing matches, and the company seems stubbornly against him pursuing other titles. I'm not merely arguing that he's a man with a high ceiling who's growing stale, I'm in the minority in asserting that his 2012-2016 stretch was largely overrated, and primarily carried by Tanahashi. Doing the math on this website alone, [as of the time of this post] 29 of his highest rated matches include Tanahashi. A world without Tanahashi or Omega is one in which Okada being spoken of in the "greatest" conversation is alot harder for me to stomach. If work-rate and 'match-potential', was the sole basis of a rating, Okada is a 9. 5 or 10, but Okada doesn't have the natural radiance, high levels of passion, and engaging, sympathetic magnetism I associate with the top-caliber names like Tanahashi and Kobashi (and statistically has half the popularity of the former, as a matter of record). He's no longer young or unproven enough to garner underdog sympathy. Spending a year or two in the mid-card, perhaps chasing the IC Title and helping develop other wrestlers would humanize him more. The problem with being Superman is that you become something unrelatable, and your victories lose catharsis. Okada is the most excellent, over-pushed, over-utilized, company-made champion I have ever seen, which is simultaneously an impressive feat and something that holds me back, personally. That said, he is a responsible company representative, has more than earned his spot, seems like a wonderful human being, and--on the best of days--is an absolute marvel of his craft."
Rating: 8.0
Sentiment: 0.21803835978835978
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: sanjurowrote on 28.01.2021:[10.0] "Admittedly his characterizations can be goofy and almost some sort of in-joke that only he gets when he's not in the title scene, but even so Okada is a once-a-generation talent, a worker with off-the-charts charisma and so great and innovative in the ring that New Japan reconfigured its entire approach to match booking around him. The latter causes some to call him overrated or limited, but that ignores how consistently he has pushed himself against a variety of opponents, especially during his IWGP reign which played like Big Match John Cena doing Bryan Danielson's 2006 ROH title run. He worked with fliers, brawlers, technical masters, juniors, and fellow all-rounder visionaries like Omega, to say nothing of how he and Tanahashi turned a multi-year feud into a consistently surprising series of five-star classics. The best big match worker since Flair, maybe of all time, and to think he's done all of this by 33 and has, barring catastrophic injury, so many years left in the tank only makes the case that he will go down as THE wrestler of his era."
Rating: 10.0
Sentiment: 0.2189147110199742
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kungwrote on 26.01.2021:[10.0] "If you ask me, Okada is either the best or second-best wrestler of the 2010s. His run with the IWGP Heavyweight Title from 2016 to 2018 was the stuff of legends."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Euzwrote on 03.01.2021:[7.0] "The difference between Okada and let say Tanahashi is that that Tana could make a great match with anyone else on the planet, from Suwama to Wataru Inoue, while Okada only in main events and with those who are skilled with in-ring psychology and who could carry a whole match. In some of his fights Okada looks like he is lost in the fog and needs to repeat the same move couple of times which is very frustrating. Lenght of the match is not an excuse because he is considered as one of the best in the world. In my opinion he is at least one level below workers like Naito, Ibushi, Tanahashi, not to mention Kobashi or Kawada. He reached superstardom level way to soon and year 2020 showed that he is not outstanding anymore."
Rating: 7.0
Sentiment: 0.1406060606060606
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TsurutaOHwrote on 13.12.2020:[10.0] "Seeing Okada, I can't think of anything other than "the best wrestler of this generation". Totally flawless in practically every aspect, he is a prodigy, it is amazing how good he is, even today his fourth reign remains in everyone's memory, and it is not surprising that they refer to it when they think of him, it is really something spectacular, this year he is not doing so many things, much because of some injuries that he is still recovering, and I really hope they'll give him a break after Wrestle Kingdom, but without a doubt he is the best wrestler in the world, and will continue to be for a long time. A genius in the matter of storytelling and skills given directly by the gods, I can't look at him and not see the big star that he is printed on his forehead."
Rating: 10.0
Sentiment: 0.3484375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: medousewrote on 11.12.2020:[9.0] "With all respect, I think he is one of the most overrated wrestlers of the generation. Don't get me wrong. I think he is incredible wrestler, hard worker, great skillset, phenomenal gimmick, awesome promo cutter and I respect all of his accomplishments. However, during his IWGP championship title reign, he wrestled so many great wrestlers who in fact were better than him and he beat them all. His winning streak was starting to get ridiculous and that's what really made my think the way I think of him right now. Anyways, not the greatest wrestler on the planet, but definitely a great one."
Rating: 9.0
Sentiment: 0.421218487394958
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JustAWrestlingFanwrote on 26.11.2020:[10.0] "He is extremely good at what he does, which is being a star. And right now he is THE star of NJPW. He has perfect in ring skills and the it factor. To have this guy ever be lower than main event would be a diservice to the guy."
Rating: 10.0
Sentiment: 0.5380952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kaswrote on 13.11.2020:[10.0] "He's been a top-level performer since 2012 and has had more great matches in these 8 years than most people manage in their whole career, and will in all likelihood continue to have great matches for about ten more years. He definitely has his problems. Pacing issues sometimes crop up in his title matches, stretching out matches longer than they perhaps should go on. His leg selling leaves a lot to be desired. He's not the best mat wrestler, in a company with workers like Ishii and Goto his strikes look bad in comparison, and his liberal use of the wrist-clutch lariat gets ridiculous sometimes. But that's where his issues stop. His general selling is incredible, whether that be exhaustion, bumping, neck selling, or arm selling. His move-set is fantastic, completely focusing on the head and neck of opponents with a finisher that has so many opportunities for counters and story-telling purposes. Above all else, his psychology and story-telling ability is excellent, showcased by his rivalries with Naito, Tanahashi, Omega, and even lesser rivals like Sanada and Suzuki. When all is said and done, Okada will likely be a candidate for the best wrestler of all time in many people's eyes."
Rating: 10.0
Sentiment: 0.35075757575757577
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Residentwrote on 02.11.2020:[10.0] "One of the best wrestlers I have ever seen. He had the IWGP championship for a long time. But when I'd watch New Japan on AXS TV, he was always my favorite to watch. So much charisma, great on the mic, technically skilled, and a good brawler and high flyer. A complete wrestler and one of the best of all-time. Also, he has the best dropkick in wrestling."
Rating: 10.0
Sentiment: 0.5038636363636363
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: rainmakerpunkwrote on 20.10.2020:[10.0] "The greatest pro wrestler in history, this guy is just too damn good, countless 5 star matches with a variation of opponents, not many people can take a prestigious title like the IWGP, the GOAT title, and elevate it the way he did, he elevated the title more than the title elevated him, and in his 2 year reign he had the greatest matches in history, he carried himself better than anybody I've ever seen and backed it up in the ring and still does big time, it's common for Okada to have the match of the year"
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ElPolloLocowrote on 23.09.2020:[8.0] "He's damn great, but since last year I have been wondering how much Okada would be worth had he not main-evented against AJ Styles, Hiroshi Tanahashi, Tetsuya Naito etc but more modest opponents. Probably as much as Kento Mihara, meaning an 8 out of 10. With the NJPW roster becoming thinner and thinner he's been feuding with folks like Sanada, meaning not the huge talents he faced previously, and the problems started right away. That Sanada series was for me a true eye-opener about Okada, and not in a good way. This year he's been pretty lackluster but perhaps he's just taking it easy to slow down tear and wear on his body and fully recover from old injuries. Hopefully new big talent will come and we'll get the Okada of old back."
Rating: 8.0
Sentiment: 0.2128722287813197
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: hassan01wrote on 10.09.2020:[10.0] "Definitely the best wrestler in the world today. He is just 33 years old and has accomplished a lot . He most likely will accomplish much more accolades to his name in the years to come hopefully. Vey charismatic and a matchmaker . He steps in the ring and you know you are going to get a quality match . I am guessing he will at the very least that Okada will be tying the record for most IWGP heavyweight title reigns with Tanahashi. Wishing him nothing but luck for his remaining career for he has solidified himself as one of the best wrestlers in the world."
Rating: 10.0
Sentiment: 0.3554545454545454
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: CyberVolteswrote on 29.08.2020:[7.0] "Okada is obviously good, but his accomplishments and skills as a wrestler have been vastly exaggerated for a long time now. If he's considered one of the greatest of all time nowadays, that's more of a legacy of Gedo's smart booking (to the upper card, that is) than Okada's individual merit. Add to that the fact that certain journalist, whose word is gospel to the fanbase, doesn't hide his favouritism over Okada, going as far as constantly breaking the rules of his own rating system in order to keep praising him (remember when getting 6 stars actually meant something? ), and there, a GOAT is made. To be fair, neither of those things would be enough to make Okada as well regarded as he is if he didn't have at least some substance to back it up. Okada strongest suit is his in-ring psychology: he is great at dictating the pacing of the match, adding manerisms and little touches that make it feel unique and, ultimately, he can have a good match with pretty much everybody. That said, I don't think he's off-the-charts in any of those individual things. Also, his moveset is nothing to write home about and neither is the way he applies those moves (except for that admittedly awesome dropkick he does). And while the way he can connect to the audience shouldn't be underestimated, I don't see him doing anything the true GOATs from the past didn't do much better. Maybe I've been spoiled by watching too many matches from 90s' All Japan and early NOAH. Maybe New Japan has already set the bar too high when it comes to "aces". But the so called passing of the torch to Okada, making the latter the "face" of the company, seems like a downgrade after what Tanahashi has brought to the table (in all fairness, I don't think there's anybody in the current NJPW roster who is up to the task). All in all, Okada is already regarded as one of the greatest to many fans worldwide and he continues to deliver good-to-great matches every time he enters the ring."
Rating: 7.0
Sentiment: 0.2516874341874342
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: znezaaljwrote on 27.08.2020:[10.0] "He is in my top 3 GOATs list no doubt. He probably has the highest star power that I have ever seen and his matches are just from another world. Even when you see him wrestle in the multi man tag team matches it makes them look special and important. He has a great promo work and he is one of the main reasons the IWGP HW Championship is as prestigious as it is."
Rating: 10.0
Sentiment: 0.4447619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: realyoshihashiwrote on 12.07.2020:[9.0] "Not a 10 because he hasn't quite perfected the art of the Dropkick in the Lariato scale. Has great matches and is a great performer though"
Rating: 9.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: marexcelwrote on 05.07.2020:[10.0] "Kazuchika Okada ist einer der weniger Wrestler auf der Welt, bei denen jeder Gegner im Ring besser wird, wenn sie gemeinsam antreten. Benötigt ein Omega z. B. immer diese Klasse als Gegner, um richtig zu funktionieren, ist es bei Okada seine Präsenz, Ausstrahlung und oft überragende In-Ring-Arbeit, die das Match in höhere Sphären bringt. Sein Selling und Timing sind so gut, dass ich mich kaum an 4, 5 Momente erinnere, wo Sequenzen in seinen (großen) Matches konstruiert oder fake aussahen. Wäre ich des Japanischen mächtig und könnte seine Mikro-Arbeit beurteilen, wäre ich wohl endgültig ein Fanboy, aber auch so ist es er einfach Weltklasse und wohl noch lange nicht am Ende seiner Leistungsfähigkeit. Qualitätsgarantie und zurecht immer wieder ein Ankerpunkt in den NJPW-Stories. Dass das nah am Overpushing ist, mag man ihm aber nicht anlasten."
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Espio1332wrote on 20.04.2020:[10.0] "My favorite pro-wrestler of all time! There's not much that I could say that hasn't otherwise been said here regarding this man. All I could say is that while wrestlers like Tanahashi were what made me get interested in New Japan, Okada is who made me stay."
Rating: 10.0
Sentiment: 0.2278409090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AndoCommandowrote on 30.03.2020:[10.0] "Even before he hit 30, Kazuchika Okada had already made a case for the greatest of all time. A key factor is NJPW's drastic increase in popularity over the last decade, Okada almost always delivers high-quality matches every time he steps foot in the ring. From 2015-2017, it was almost undeniable that he was the best in the world, bringing the best out of so many opponents. His psychology, selling and in-ring ability are all top-notch and has only grown in experience and confidence on the mic. His nonchalant and arrogance on the surface only conceal his deep passion and almost inhuman will to be New Japan's top star. He's not perfect and in the last couple years holds some recurring flaws in his craft, but as a character desiring to symbolise perfection, there might be none better. He holds the greatest world title reign, the most combined days as IWGP Champion and has been in the main event scene more than any of his contemporaries. Will very likely surpass the best ever of Japan (Kobashi, Tanahashi, Misawa, etc. ) if he hasn't already."
Rating: 10.0
Sentiment: 0.39538239538239545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: kaantheviperwrote on 13.02.2020:[10.0] "He is one of the guys I can call GOAT. Amazing worker you can put him in any type of big match. He will not disappoint you. When he walks down to ring I see a god entering that squared circle."
Rating: 10.0
Sentiment: 0.14814814814814817
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Bobbythreesixteenwrote on 06.01.2020:[10.0] "Okada ist ein unvergleichbarer Wrestler. Er hat alles was man braucht. Charismabolzen durch und durch. Und was seine Matches angeht steht keiner vor ihm. Er hat bewiesen das er eine Promotion halten kann. In der heutigen Zeit einen World Title für fast zwei Jahre zu halten ist an sich für mich undenkbar, Okada hat es aber möglich gemacht. Ich bin voll mit Lobeshymnen für ihn und kann gar nicht in Worte fassen wie Großartig er ist. Es gibt nur eine Hand voll Wrestler die ihm auf gleicher Ebene begegnen können. Ich hoffe das er diese Leistungen noch ein paar Jahre zeigen kann."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Leon101wrote on 05.01.2020:[10.0] "Einer der besten Wrestler der je gelebt hat. Kann ein gutes Match mit jedem, aber auch wirklich jedem worken. Seine Dropkicks sind legendär, mit dem Rainmaker einen super Finisher. Einen Wrestler der mehr Starpower mitbringt habe ich noch nie gesehen, er ist der geborene ACE von NJPW."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: 20SaiDa19wrote on 26.12.2019:[10.0] "The wrestler of the decade and considering his age, if he can stay healthy, quite possibly the greatest of all time by the time he is done. Ever since Okada was brought back from excursion, NJPW's popularity, not only in Japan, but elsewhere, has increased drastically and Okada is a key factor in that. His feud with Tanahashi is for me the best in-ring rivalry since Kobashi/Misawa, whereas his matches with Omega and Shibata are also widely considered all time greats, with his match against Shibata personally being my favourite of all time. Okada is now also comfortable on the mic, which wasn't always the case and he has shown a lot more personality recently, which was the only real criticism people had of him early on."
Rating: 10.0
Sentiment: 0.24000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: arrancarwrote on 26.12.2019:[10.0] "Ever since I saw this guy in 2015, I KNEW he was the best wrestler in the world, and year after year he vindicates that opinion more and more. What I love most about Okada is the passion he injects into his performances. His facial expressions are second to absolutely none. He can communicate a story perfectly with such simple visual acts. The arrogance and determination that this guy displays makes him so enthralling, and I can't help but cheer him on and even cry when he succeeds or fails. To claim that Okada "doesn't sell" reveals that you've only ever seen maybe 2 of his matches. His long-term limb selling has dramatically improved these last few year to the point that it is 'good' at worst, and his real-time general selling has been absolutely world-class going all the way back to his redebut in 2012. People often mistake his nonchalance for a lack of actual character, but that is actually PART of his character. He's a rich boy -- covered in gold, cash flying around as he enters, escorted everywhere by young boys to protect him, hand picked by Gedo, always posing and pulling off impressive moves easily, etc. But Okada is not apathetic, because when he is pushed by someone who is a real threat, he becomes scared and shocked, because his illusion is then broken. Then we see the real Okada -- eyes sharpened, nostrils flaring, teeth clenched, as if he takes on the facial structure of the devil himself. The truth is that Okada cares deeply about wrestling, and it is clear that winning is his greatest goal, so when he is made to display this secret of his, he turns into a monster that is determined to survive everything and destroy anyone. His pure wrestling skill is 10/10, second only to his story-telling. I have never felt so emotionally invested in a wrestler or any other character before, and so I truly believe him to be the greatest wrestler of all time."
Rating: 10.0
Sentiment: 0.16550264550264548
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: VillainClubwrote on 23.12.2019:[10.0] "Der Beste Wrestler der Welt. Zudem ist er völlig verdient das ACE von NJ. Sein Entrance fühlt sich schon groß an und bei seinem Matches merkt man einfach, das er der Top Guy der Company ist. Er ist völlig zurecht IWGP Heavyweight Champion."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Iceqwrote on 08.10.2019:[10.0] "Gerade der beste Wrestler der Welt. Schon seit 2012 Weltklasse und erst 31 Jahre alt. Wenn er so weiter macht, dann kann er sicherlich zu den besten Wrestler aller Zeiten gehören, wenn er das um ehrlich zu sein nicht schon bereits ist. Besonders seine Rivalitäten mit Tanahashi und Omega haben unzählige Klassiker produziert. Dazu ist er nicht nur In-Ring technisch Weltklasse sondern auch unfassbar charismatisch und sein Theme gehört auch zu meinen absoluten Lieblingen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Booker Cwrote on 03.10.2019:[10.0] "Okada ist für mich ohne Frage der zurzeit beste Wrestler der Welt. Im Gegensatz zu anderen sehr guten Wrestlern wie Johnny Gagarno, Adam Cole oder auch einen Will Ospreay fehlt aber beim nie die Substanz in den Matches. Der schmale Grad zwischen einer epischen Schlacht und einem reinen Spotfest gelingt ihm halt viel öfters."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Coop DEtatwrote on 09.09.2019:[7.0] "I would consider a higher rating if his work looked more realistic and less spotty. He is severely overrated, although I do have a high opinion of him regardless.  If the best in the world were grouped into one category, he would be just under that."
Rating: 7.0
Sentiment: 0.31833333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JEK 1991wrote on 09.09.2019:[10.0] "One of the very best Japanese wrestlers of all time. Is no the NJPW Champion! He was blessed and trained by some of the best Japanese wrestlers like Ultimo Dragon, Jushin Liger, Yuji Nagata and others."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: taabr2wrote on 31.08.2019:[10.0] "The best in-ring wrestler in the world today. Kazuchika Okada, much like Ric Flair back in his day, has the ability to work with pretty much every style of wrestling out there. His formula is pretty smart for a top guy as it can work as both heel or babyface and it even suits his character. If Okada needs to be the heel, he adds little subtleties to be more cocky in the ring, if Okada has to be the face he adjusts to give his opponent more shine to work on top to draw sympathy and yet it never fells out of place for Okada to switch. Also in an age where everyone does complex impressive moves, Okada is the opposite he performs simple moves impressively and yet still gets his moveset over, a true legend right there. As Ace Okada is currently leading NJPW to their most profitable period ever, so you can't deny that his push is working. Also thanks to the internet Okada is probably the most well known Japanese Ace outside of Japan. We have yet to see the end result of NJPW's push into America but Okada being on the forefront might make him one of the most important figures in wrestling histroy, we'll see about that though."
Rating: 10.0
Sentiment: 0.2915178571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Pm Frankwrote on 27.08.2019:[10.0] "He is on another level . Maybe he is the best wrestler of this century ( I prefer Omega) he make njpw look prestigious"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheFrenchDisasterwrote on 19.08.2019:[10.0] "Actually, Kazuchika Okada is the best champion of all time and maybe the best wrestler in the world today. His rivalry with Tanahashi is like Steamboat-Flair or Austin-Rock, he always manage to have good matches. The NJPW was right to rely on him as the face of the company. Oh, and one of the best things about him is his presentation, the best announcement in the world."
Rating: 10.0
Sentiment: 0.7122448979591837
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: UsualSuspectwrote on 16.08.2019:[10.0] "Greatest wrestler of all time. He always deliver great to fantastic one on one matches. Despite having a restricted moveset, he has impactful moves and he has the greatest dropkick in the buisness."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: VanguardWhowrote on 08.08.2019:[10.0] "There's very little to be said about Okada that isn't already being said constantly, but perhaps the most overlooked aspect of his brilliance is that, barring a good handful of crazier-than-normal bumps he's taken over the past year or two, his style is remarkably safe and consistent, especially for a top face in New Japan. The most essential parts of his moveset are barely taxing for his body, or the bodies of his opponents, at all; there's nothing to say he can't keep wrestling pretty much this exact style for another 10, 15, even 20 years at a push, with only very minor adjustments. Getting so over in NJPW with a style so geared towards longevity is perhaps his greatest accomplishment of all, and a testament to just how special of a wrestler he really is."
Rating: 10.0
Sentiment: 0.23022649969078537
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[8.0] "The most overrated wrestler in the world right now. Don't get me wrong, I think he's good... but when talking about the best in the world right now? I don't think he should even be in that conversation. I think people see him through rose tinted glasses because he's constantly booked to have these epic "finisher-counter-kickout" type matches. I feel like he often looks like he's moving in molasses. I like his presentation & think he's good & appreciate him being a top guy in NJPW, but don't believe all the hype."
Rating: 8.0
Sentiment: 0.37922077922077924
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: NEVERoverweightChampionwrote on 01.07.2019:[10.0] "While he's maybe not the most athletic guy, the stiffest, the most technical or the absolute best in psychology or storytelling he's still definitely one of the best in all of these areas. Charismatic and goofy/funny, he learned to cut good promos and doesn't need Gedo anymore. To me his greatest quality is that he's simply the best major champion that you can have because he can work with everyone, still maintains his presence but makes sure that his opponent stays THE star of the match. He elevated the status of many wrestlers, wether they lost or not, and that's what makes a great champion. He can play many roles but he is perfect at being the final boss, the cocky and dominant champion. He's already a legend."
Rating: 10.0
Sentiment: 0.4781250000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Cow Manwrote on 20.05.2019:[10.0] "He works great as both a heel and face. His in ring skills are tremendous. He will certainly rank as one of the greatest to step into the ring."
Rating: 10.0
Sentiment: 0.24
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: My Bloody Doobwrote on 20.05.2019:[9.0] "Is Kazuchika Okada the greatest wrestler in the world right now? You ask everyone who regularly watches him, and an overwhelming majority would with sincerity say yes. It's hard to disagree with that sentiment because why shouldn't I agree? He's had many all time classics, can pull out great matches with zero effort and can even give shitty wrestlers probably their best match ever.. So why am I so inclined to still disagree? Mostly because of how much he rests on his laurels. There used to be a time where Okada matches were enjoyable from start to finish, but nowadays he has no problem with wasting your time in the first 10 minutes of his matches. It would be excusable if he knew how to actually grapple or even legitimately wrestle, but instead he's fine with headlocks and pointless tumbling around in the first half as long as the second half are full of counters and dramatic moves. I hate him so much for that because the second half of his matches tend to be incredible, AND he can bring out the best of his opponents. It doesn't help that he's gone through virtually the entire roster before 30 which also means his bump card is slowing down, but there still isn't an excuse in the context of just his matches. tl;dr I wish Okada would stop being such a lazy bastard."
Rating: 9.0
Sentiment: 0.14917133520074696
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: PuroresuLoverwrote on 13.05.2019:[10.0] "Kazuchika Okada is the very best in the world, he will be the Ace of NJPW for years! He has a complete package to be the GOAT, he has a good looking, a lot of charisma, great mic-skills, excellent in-ring skills, knows how to play a good babyface and a great heel. God, this guy's just amazing!"
Rating: 10.0
Sentiment: 0.73125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Garrettwrote on 09.05.2019:[10.0] "The wrestling god. Okada in his own right is a once in a century talent. When you're the longest reigning champion in the history of NJPW and has had some of the greatest matches in the history of pro wrestling with Omega and Tanahashi you can see why he is considered the greatest of all time."
Rating: 10.0
Sentiment: 0.7214285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheGorgis309wrote on 21.03.2019:[10.0] "The absolute greatest wrestler in the world right now, perhaps with the exceptions of AJ Styles and Kenny Omega. Every move he delivers feels so precise and crisp and the man oozes style and charisma. A master between the ropes and will go down one day as one of the greats of his generation, and of all time"
Rating: 10.0
Sentiment: 0.25430839002267575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: zephyrwrote on 16.03.2019:[10.0] "Okada is, in my opinion, the embodiment of what it means to be a wrestling star. In my years of watching him I haven't seen him make so much as a single mistake. He exudes confidence and arrogance but does it in a way that makes him credible both as a face or a heel. Gonna go down in history as one of the all time greats."
Rating: 10.0
Sentiment: 0.05767195767195769
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Aurtletheturtlewrote on 04.03.2019:[10.0] "Ever since that fateful day on February 12th 2012, the legend of the Rainmaker has continued to grow and reach astronomical heights. Boasting unbelievable feuds and matches with Hiroshi Tanahashi, Kenny Omega, Tetsuya Naito, AJ Styles and so many more, Kazuchika Okada's star shines brighter than any other in Professional Wrestling today and it's due to Okada's dedication in his performances. Okada has shrouded himself in both the glory of gold and competition, becoming the longest ever reigning IWGP World Heavyweight Champion at over 1, 700 days as champion as well as having the most title defences in a single reign, a reign which many atest to being the Greatest Championship reign in professional wrestling history. All of this has proven why he is without a singular doubt the greatest wrestler in the world and also perhaps going to become the greatest of all-time. He proved all this before his 30th birthday. We have a bright future with the shining Rainmaker at the forefront and I am looking forward to every single moment. COME ON RAINMAKER!"
Rating: 10.0
Sentiment: 0.3346638655462185
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kevin41182wrote on 14.02.2019:[10.0] "Okada is an extremely talented wrestler. He really embodies New Japan. Not only has he put on many 5 star matches but he also really helped raise the IWGP Heavyweight Championship to the level its regarded with today."
Rating: 10.0
Sentiment: 0.28939393939393937
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: LandonRyanWyattwrote on 31.01.2019:[8.0] "Okada is a very good wrestler. I've very much enjoyed watching him over the past few years. This dude will one day be in every Hall of Fame he's eligible for."
Rating: 8.0
Sentiment: 0.24
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AmericanNightmare96wrote on 17.01.2019:[10.0] "Okada hat sich in den letzten Jahren stark verbessert und durch seine epische 4-Matches-Serie gegen Kenny Omega bewiesen dass er zu den besten In-Ring Performern der Welt gehört."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Cibswrote on 16.01.2019:[7.0] "Okada has improved over the years, he is solid in the ring (terrible selling), although I have never seen him as that amazing wrestler that many say he is. The favoritism that exists towards New Japan has benefited him because his matches in general are the same, with a lot of pose and very boring initial minutes but exciting endings (even epic). In general he is very similar to Randy Orton but without so much hatred for the company in which he works."
Rating: 7.0
Sentiment: -0.004545454545454531
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: KINGwrote on 09.11.2018:[10.0] "Like a Randy Orton who improved instead of getting lazy, Okada's push to the moon paid off as New Japan discovered one of the most talented and charismatic performers of history, Okada is probably the guy with most classic matches in this decade, he always looks great with everyone, he also represents what NJPW wants as top guy, talented, good looking, charismatic, traditional but modern at the same time, every Japanese who would want to be a wrestler should look up to him, he's the best right now."
Rating: 10.0
Sentiment: 0.37572339940760996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: RatingsMachinewrote on 14.10.2018:[10.0] "Kazuchika Okada is the best in the business. The only guy on his level, and they are both different enough that who you put ahead comes down to personal preference, is Hiroshi Tanahashi."
Rating: 10.0
Sentiment: 0.14074074074074075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Rasslin Ruleswrote on 07.10.2018:[10.0] "Meiner Meinung nach zurecht an der Spitze. Ich verstehe, dass manche auf Dauer leicht gelangweilt sind von ihm, allerdings trifft das bei mir gar nicht zu. Er ist ein wahrer Champion, der sich auf jeden Gegner einstellt und bei den großen Titelverteidigungen immer abliefert. Das gleiche gilt fürs G1. Er kann einfach alles im Ring, worked so sauber wie kaum einer und hat dazu schöne Trademark-Manöver(Rainmaker, Dropkick, Elbow-Drop). Im Selling für mich der weltweit beste und auch in Sachen Storytelling in der Weltelite. Außerdem schreit sein Look einfach nach Superstar. Er wird zusammen mit Naito, Omega usw. NJPW noch ganz groß machen. Ich bin echt froh seine Karriere miterleben zu können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Tomlou12wrote on 17.09.2018:[9.0] "One of the best workers out there, he's capable of having great matches with just about anybody and his rainmaker gimmick was one of the best around. While you may argue that his title rain went on too long you can't deny that it really legitimized him as a wrestler and made it feel all the more serious when he finally dropped the belt. Overall, a great wrestler that's great at working a crowd with an awesome finisher. What more can you ask for?"
Rating: 9.0
Sentiment: 0.45833333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: KOR KOMBATwrote on 24.08.2018:[10.0] "The current ACE of NJPW doesn't fuck around. Tons of personality away from the ring and his interactions with other wrestlers over social media are hilarious. That's probably not what you want to see though. Okada has been bringing out the best in his opponents for years, even Fale has had a good match with him. This new unhinged Okada is goofy and I feel it's a much deserved break for the longest reigning IWGP champ ever."
Rating: 10.0
Sentiment: 0.254469696969697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: OrangeAidCrushwrote on 03.08.2018:[10.0] "What can you say about Kazuchika Okada that hasn't already been said? The only negative thing I can say about him is that he is so talented that he makes great wrestling seem effortless. You forget how amazing he is because of how consistently amazing he is.  He's absolutely incredible and and easily one of the greatest wrestlers of all-time."
Rating: 10.0
Sentiment: 0.5259259259259259
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: sign squadwrote on 24.07.2018:[10.0] "Es gibt nicht so viele, die mit so vielen Gegnern immer wieder unterschiedliche Matches haben können. Okada ist aktuell so derjenige, dessen Matches ich jemandem zeigen könnte, der kein Wrestlingfan ist, ohne mir Sorgen machen zu müssen, seine Matches wären irgendwie "albern"."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: nwo4204lifewrote on 22.07.2018:[10.0] "It almost is unfair how good Okada is and that he is my age.. I can not even begin to imagine what Okada will be like in say 5 years. Already a record shatterer, a rain maker, and deserving of every accolade he has thus achieved. He paid his dues, working his way through the Young Lion's system. Go ahead and check out some footage of Okada's excursion in TNA, which was at the time partners with NJPW. It was right around that point in time when TNA was at its all time lowest, and right before the perception of professional wrestling outside of the WWE began to change. Already considered to be one of the all time greatest Japanese wrestlers of all time, considered by all who KNOW to be at least one of the top 5 wrestlers active today. Okada will be the kind of guy we tell our grandchildren about, and they just won't get it. will they?"
Rating: 10.0
Sentiment: 0.23129251700680273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Makai Clubwrote on 24.06.2018:[10.0] "When you think of the complete package, I think Okada. Wrestling, charisma, look, gimmick, ability to turn the crowd against him at anytime, both hateable and likable a switch of the light. Okada is no doubt one of the best wrestlers in the past 50 years. No one has gone on the run he has had, for the amount of time it took and not be a GOAT. His wrestling ability is impeccable. His entire moveset is set up to make the rainmaker, which can be considered weak, a killer move. Fantastic psychology. His crowd interactions are great, he can get the crowd marking out with a simple hand movement. His versatility it is great. His selling is fine, not great but bad either. Does have a tendency to no sell everything at the end though. He is truly on another level."
Rating: 10.0
Sentiment: 0.22944444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SGKwrote on 17.06.2018:[10.0] "Kazuchika Okada is the most complete wrestler we've seen in the 21st century. He does not require flashy moves to entertain the audience. His moveset is well rounded and his in ring psychology is insanely good. His 4th title reign was one of the best in the history of pro wrestling, and we expect more from him in the years."
Rating: 10.0
Sentiment: 0.32857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: avagar44wrote on 12.06.2018:[8.0] "Okada is one of the best pro wrestlers today, he brings an aura of a big match, and has one of the best tittle reigns today, but he lacks in some aspects, first of all, he looks clumsy sometimes, his offensive (not all) doesn't look strong, his short term selling is very good, but further in the match is bad, so when he receives limb work, it doesn't matter for the match, I can rate his promo skills, but he has a good character, and he tends to be very very formulaic in his matches, almost all of them show the same patron, but, he can make those matches very very entertaiment, although they are the same, which is a very interesting characteristic, and can make look good any opponent, I only remember one boring Okada's match. He has in ring skills to improve, but he is young and have a lot of time to get better"
Rating: 8.0
Sentiment: 0.2016666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ohnoeswrote on 04.06.2018:[10.0] "Okada is one of the best wrestlers in the world today, if not the best. From 2013 onwards to today, he's excelled at every category, from storytelling, to pacing, to his ring-work, emoting, selling, and popping the crowd. His ring-work in particular is impressive, but even more so because none of it is particularly 'high-risk'; he's 30 as of this writing, and yet he could probably go another 15-20 years working his style. He'll adapt to his opponents and compliment their work while providing slight variations of his own so as not to become stale. And that's another one of his greatest traits: he's anything but greedy. It'd be so easy for him to showboat, yet people tend to talk a lot about how great his opponent was in most of his highest-rated matches. In the years he's been on top of NJPW, he's had plenty of memorable feuds and matches that should stand the test of time. Excellence in Okada matches are expected, and essentially always deliver. In my two decades of watching wrestling, he's currently my only five-star wrestler. There are only two slight complaints I have against him; one is that he's not always consistent about selling damage to his limbs done by his opponents. The other is that he hasn't quite connected with the crowd in the same way that certain aces or legends have. I have yet to hear a crowd chant 'O-ka-da' with the same extravagance as Misawa or Kobashi have had in their careers, although there's still plenty of time left to receive that honor."
Rating: 10.0
Sentiment: 0.2912545787545788
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Ranch DuBoiswrote on 20.05.2018:[10.0] "No wrestler in his generation deserves a 10 more than Kazuchika Okada, who has been the ace of NJPW not only during their resurgence in Japan but their expansion into the rest of the world. He is a wrestling chameleon, a fantastic champion that can highlight an opponent's strengths and get them over despite losing just by being in a match with him. His feuds with Omega, Tanahashi, & Naito are among the greatest of all time and are guaranteed bangers whenever they fight. Just a note, I consider Mitsuharu Misawa to be the greatest wrestler, ever. Okada hasn't surpassed him at all in my eyes, but when I compare a 30 year old Misawa to Okada now, it's clear to see how ridiculously far ahead Okada is. He will almost certainly retire as the greatest wrestler of all time"
Rating: 10.0
Sentiment: 0.44142857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Gothic Bloodletterwrote on 12.05.2018:[10.0] "Kazuchika Okada is one of the greatest wrestlers of all time. Already, he is de facto the best in all parameters, and only the presence of such guys as Styles, Omega and Naito somehow make him a competition.  The greatness of Okada in the ring is a combination, an amazing hybrid of phenomenal talent, of enormous enthusiasm and a lot of experience. He is charismatic in his own way, he knows how to work with the public and cameras. The bright and unique texture of the gimmick gives all of us an incredible image, cutting into memory quickly and permanently.  His advancement fully justified. He not only puts his best on the ring every time, but also creates a remarkable media personality, speaking at various shows (not only Japanese, but also foreign ones). Love, or at least respect him and consider it equal to any of your favorite - the wrestlers like the Rainmaker are born only once in a hundred years."
Rating: 10.0
Sentiment: 0.3083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Adaskerrwrote on 11.05.2018:[10.0] "Gift from Wrestling Gods sent to Earth. Everything about this guy is just perfection. That? s how the face of the company should look like."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Viper99wrote on 06.05.2018:[10.0] "Ich war anfangs (12/13) kein Riesen Okada Fan und fand ihn sogar etwas Overrated! Inzwischen ist Okada auf Papier und rein Sachlich der beste Wrestler der Welt. Ich Persönlich mag Omega mehr, aber die Gott Matches am Laufenden Band sprechen einfach für Okada. Mit seinem Momentanen Title Run und mit Verteidigungen gegen Shibata, Suzuki, Naito, Marufuji, Sabre oder Tanahashi reiht er sich mit seinen 30 Jahren unter den besten Performern aller Zeiten ein. Unglaublicher Smarter Worker welcher Matches so gut Paced, aufbaut und jeden seiner Gegner wie Gold aussehen lässt. Es ist kein Zufall dass Okada in 2 meiner Liebsten Matches aller Zeiten steht (vs Shibata/ vs Omega)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: LrockBesnarwrote on 12.04.2018:[10.0] "Okada is still on his way without losing his excitement in the ring despite his full time work. He is very young and charismatic. Super talented and healthy. It may sound absurd to some people, but the only complaint i have about him is his unconcerned attitude in his matches. His facial expressions do not care much. I think he needs some more acting skills. He is able to flow like water in the ring but his characteristic features are very level. He seems a little nervous and shy to me. He has to develop himself in the direction of acting. My only wish about him also i hope that he will not suffer a injury that will harm his career. He is a man who is very serious about wrestling. Shibata was also getting serious but now he retired from wrestling for a little time."
Rating: 10.0
Sentiment: 0.07520833333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Izinwrote on 06.04.2018:[10.0] "(Review from 2014) YOUNG as HELL, works like someone with twice his experience, and has INSANE potential for the future. He has a great presence about him and has proven already to be a capable champion. Look to this guy to carry NJPW once he's ready for the next decade, even."
Rating: 10.0
Sentiment: 0.037500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Sebastian Vwrote on 26.03.2018:[10.0] "Was soll man Okada anderes als 10 Punkte geben? Im Ring ist er wie Omega auch eigentlich mehr als 10 von 10. Dieser Mann liefert seit Jahren ein Weltklassematch nach dem Anderen ab und kann auch irgendwie aus jedem ein gutes Match rausholen. Er beherrscht die ganze Palette sowohl im Ring ( Technik, Strong Style, High Flying, Characterwork, Psychologie, Selling) als auch was die Rollenübernahme angeht (Face, Heel. Tweener). Zudem spielt beides bei ihm zusammen, was die Dynamik von Matches beeinflussen kann. In jeder Rolle ist er unglaublich charismatisch und fesselt die Leute vom Entrance an über teilweise ein stündige Matches hinweg. Auch hier glatte 10 von 10. Micwork kann und will ich bei einem japanischen Wrestler nicht miteinfließen lassen aber wie er die Dinge sagt wirkt auch sehr intensiv und authentisch und auch wenn ich nicht verstehen was er sagt, bringt er mit seinen ganzen Art und Weise etwas rüber. Insgesamt wie sein Nemesis Omega einer der besten Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.2966666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: coolserazwrote on 11.02.2018:[10.0] "Excellent wrestler. One of the very best. Uses his moves very well,  his selling is amazing, an unselfish bumper. More importantly, he works on his gimmick and carries himself like a champion. Not just a great wrestler but a star."
Rating: 10.0
Sentiment: 0.6428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheLoudMouthwrote on 08.01.2018:[10.0] "Denke, zu Okada braucht man keine großen Worte verlieren. Der Kerl ist aktuell einer der besten Performer im ganzen Business und weltweit in der Spitzenriege angekommen. Allein sein Matchguide spricht für sich. Großartiger Worker in allen Belangen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AlexRichardswrote on 28.12.2017:[10.0] "At 30 it is easy to see Okada becoming one of, if not the greatest to ever step foot in a ring.  Already set to smash every record for the IWGP title we are blessed to see this mans legendary career evolve in front of our eyes.  Once in a generation talent that has a mix of psychology, ability and charisma that we may never see again"
Rating: 10.0
Sentiment: 0.7208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: GraavOfGraavwrote on 26.12.2017:[10.0] "He is only 30 years old and I already consider him a living legend. He has incredible matches that most wrestlers can only dream with."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SamTheRam28wrote on 17.12.2017:[10.0] "Okada has proven himself to be the best wrestler in the world today with countless great matches throughout his over 500 day IWGP title reign. He can wrestle any style asked of him to perfection. Look at the difference between his Omega matches, his Shibaga match, and his Fale match."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: DanTalksRasslinwrote on 09.12.2017:[10.0] "Okada has already proven himself a top-shelf talent for NJPW, with a technical ring style and firm grasp of wrestling psychology and selling, as well as a confidence and swagger to match his "Rainmaker" gimmick.  And with three reigns as IWGP Heavyweight Champion under his belt, he's still young, and can only get better from here.  He's certainly come a long way since being cast as "Okato" in TNA."
Rating: 10.0
Sentiment: 0.08061224489795918
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: benYowrote on 21.11.2017:[9.0] "K. Okada besitzt eine Aura, die nur wenige haben. Auch wenn sein Wrestling teilweise langsam und unspektakulär aussieht, so ist jede Aktion von ihm sauber und nahezu perfekt getimt ausgeführt. Ich finde das Herr Okada immer wieder zeigt was dieser "Sport" ausmacht und wie schön er sein kann. Ich denke er wird noch lange im engsten Kreise an der Spitze von NJPW sein. Verdient einer der besten der Welt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Spartak87wrote on 15.11.2017:[10.0] "One of my favorite wrestlers and simply the best wrestler in the world. Just incredible matches all of the time."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Dragon Fighterwrote on 30.10.2017:[10.0] "The comment below me is laughable to take seriously. Okada without a doubt is one of the best, if not the best wrestler in the world. Countless classics since coming back to new japan in 2011. Great in-ring performances, solid mic work, have charisma. Moreover, he is already a proven big draw. His weakest point- selling- is also improved greatly. It is scaring that he is barely 30 now. I am so happy to see what happens next to him and a potential GOAT career."
Rating: 10.0
Sentiment: 0.2502020202020202
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Paul Allainwrote on 26.10.2017:[10.0] "It's hard to explain the transformation, but a man that was once a job boy and a joke character on excursion, unleashed a mountain of charisma and of savant move arsenal, and The Rainmaker is an elite worker in japanese wrestling history. Truly inspiring perseverance."
Rating: 10.0
Sentiment: 0.06944444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: tykechandlerwrote on 19.10.2017:[10.0] "His matches speak for themselves. He is not only one of the greatest wrestlers working in the world right now, but one of the great of all time."
Rating: 10.0
Sentiment: 0.5214285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: The Phenomenal 1551wrote on 09.10.2017:[10.0] "Subjektiv betrachtet bin ich kein Riesenfan von Okada, aber objektiv gesehen führt kein Weg an der Höchstwertung für den Rainmaker vorbei. Sein Moveset mag zwar vielleicht etwas "casual" wirken und die etwas langgezogenen Anfangsphasen in vielen seiner Matches sind auch nicht jedermanns Sache. Aber was der Mann einem im Match mit Mimik, Gestik und Selling für eine Story erzählt ist ein ums andere Mal grandios. Das Ergebnis sind diese großartigen Matches, die er vor allem in diesem Jahr, aber auch schon davor oft geworked hat. Zurecht an der Spitze von New Japan derzeit."
Rating: 10.0
Sentiment: 0.04545454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Headlockwrote on 02.10.2017:[8.0] "Ich kann ehrlich gesagt nicht begründen was ich gegen denn Rainmaker, Kazuchika Okada hab, seine Matches sprechen mich nicht wirklich an, weil er oft langsame Anfangsphasen hat, sein Charisma ist auch nicht meins und das Gimmick des Young, Cocky, Champions wurde leider durch 08/15 Ace Face getauscht, der anfängt zu heulen, wenn er verliert Großes update  Seit dem G1 wieder gefällt so gut wie 2013! Die Story im G1 das er sich immer sicherer wurde war grandios umgesetzt, was an großen Teilen an Okada lag. Seine Mimik und seine Gestik waren so gut wie lange nicht mehr und er war wieder das Cocky A-Loch in dem ich mich damals verliebt hab. Momentan gefällt er mir wieder und ich hoffe das bleibt so!"
Rating: 8.0
Sentiment: -0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "Without a doubt, the best wrestler in the world at the moment. He could put on a 5-star match even with a doll.  No matter who his opponent will be, if Kenny Omega, Bad Luck Fale, Tomohiro Ishii or Prince Devitt, he will be able to steal the show. But aside from his storytelling skills and his terrific athletic abilities, Okada is also incredibly charismatic: he can easily get the audience to like or dislike him, and can catalyze the attention like no one."
Rating: 10.0
Sentiment: 0.2166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: El Generico Apodowrote on 01.10.2017:[10.0] "Well, what can I say about Okada? I think is safe to say that he is one of the best wrestlers on the planet right now, seriously. His matches against guys like Tanahashi, Suzuki, Shibata, Nakamura, Naito and (of course) Omega, are awesome! Great in-ring work, great charisma (he really looks like a star), just a perfect Superstar. The true Ace of Universe."
Rating: 10.0
Sentiment: 0.5602380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jcleaguewrote on 29.09.2017:[10.0] "Okada is so damn good at pro wrestling. Easily my favourite wrestler currently working, and already high on my Top 10 Overall. He has everything, fantastic storytelling and psychology, a versatile and seemingly neverending move set, great look, gimmick and manager. Okada has such a presence that he truely does feel like the 'Final Boss of New Japan'. It's incredible how much talent the guy has at just 29 years old. He is very comfortably holding the reigns as the Ace of New Japan whilst Tanahashi has transitioned into the upper midcard spot, and still has many more years of fanstastic matches and moments to look forward to."
Rating: 10.0
Sentiment: 0.3168030303030303
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Blood Pumpwrote on 01.09.2017:[10.0] "This is the third time Ive done a review on this guy, and after being hard nosed on giving the guy his due respect and finding excuses to not 10 him I'll finally submit that he is indeed one of the greatest of all time. To say he is the Ric Flair of this generation would be a disservice to him, hate as I do to admit it Okada might be more of a total package then even The Man. Hes not as flashy as Omega or as charismatic as Naito, he doesn't hit as heavy as Ishii or Shibata but he outclasses them all. He has phenomenal booking behind him and he hasn't had a single match during his most recent IWGP Heavyweight Title reign that hasn't been a classic. I once scoffed at those who've compared him to Misawa in terms of quality, now I'm starting to think he might actually be a little better. I don't like him more then Misawa mind you, but hes just got everything. Great character, great work mentality, an absolutely stunning dropkick and durability. I highly anticipate what this mans future holds."
Rating: 10.0
Sentiment: 0.14811813186813186
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Leithorwrote on 29.08.2017:[10.0] "One of the greatest wrestlers in today, he looks like he could make a 4* match with everyone, I dont know why people dont like him, normally them are just on American style (which is bringing some things from there)."
Rating: 10.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AnagelLover92wrote on 20.08.2017:[10.0] "Liebe CM-Admins. Kann man mal die letzten 4 Bewertungen rauslöschen, denn diese stammen zu 99, 9% von der selben Person. Hab gerade mal geguckt, alle 4 Members haben 2 Wrestler bewertet, jeweils Okada 0 und AJ Styles 10 Punkte. Das stinkt zum Himmel und schwächt die Durchschnittsbewertung enorm. Man muss Okada ja nicht leiden können, von mir aus kann man auch eine 0 geben (persönliche Meinungen muss man akzeptieren), aber sowas das geht gar nicht. Danke"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: AZackSnyderFilm96wrote on 19.08.2017:[10.0] "GOATKada! The best wrestler in the world today and that is a scary thought because he has yet to hit his prime."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheAlmightywrote on 31.07.2017:[10.0] "Ich verstehe wenn man kein Fan ist aber hinsichtlich von Okadas Leistung zeugt alles unter 8 von extremen Unwissen. Schön dass es Leute wie Rasslin Rules gibt, die noch was mit Selling und Match Story anfangen können bzw. überhaupt wissen was das ist.  Okada ist zurzeit der beste Wrestler der Welt. Er bringt mit jedem Wrestler min. 4* auf die Matte aber kratzt dieses Jahr mit fast jedem Match an den 5* wenn er sie nicht sogar erreicht oder übertrifft. Dieser Mann ist Weltklasse obwohl er so jung ist. Er hat das Selling auf ein neues Niveau gehoben und ist der sauberste Worker der Welt. Die so kritisierten Standard Moves führt er unfassbar gekonnt und glaubwürdig aus! In ein paar Jahren wird er der größte Wrestler sein den NJPW je hervorgebracht hat. Ab und zu nervt jedoch das Overbooking von Gedo. Dennoch wäre im Moment wohl eher 20 Punkte für ihn angebracht, obwohl er nicht einmal mein Lieblingswrestler ist. Seine Klasse und Genialität im Ring sind jedoch nicht von dieser Welt!  P. S. Headlock saugt sich mal wieder x-beliebige subjektive Pseudo Argumente aus den Fingern heraus."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: aydings05wrote on 17.07.2017:[10.0] "Kazuchika Okada ist mit Abstand der Aktuell beste Wrestler den es gibt . Die Entwicklung die er bei NJPW gemacht ist einfach nur krass und vor allem der Moment als er Tanahashi als Ace ablöste . Noch dazu hat er ein unglaublich gutes Storytelling und kann einfach mit jedem Gegner Klassiker abliefern . Noch dazu hat er eigentlich so fast jeden Wrestling Stil drauf einfach TOP.  Was man bei ihm dazu bedenken muss ist das er auch erst 29 ist wenn er so weiter macht wird er sicherlich irgendwann neben Misawa und Kobashi zu den besten Allerzeiten gehören  10/10"
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Drew115wrote on 14.07.2017:[10.0] "Greatest wrestler in the world today in the midst of one of the greatest title reigns in pro-wrestling history. The total package."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Cleanerwrote on 02.07.2017:[10.0] "Das Aushängeschild von NJPW, ein wahnsinnig starkes Babyface, das nicht nur in seiner Heimat perfekt mit der Crowd connected. Und seine Matches sind nicht von dieser Welt. Was er alleine 2017 schon gewrestlet hat... F*ck yeah, er ist der beste der Welt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: XinJuZhaowrote on 27.06.2017:[10.0] "Der wohl mit beste Wrestler den ich kenne! Nicht nur hat er ein 6 Sterne Match bestritten gegen Kenny Omega, seine Moves sind grandios und seine Titelregentschaft ist eine der besten die ich je gesehen habe. Seine Matches sind sehr sehenswürdig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheCleanerwrote on 17.06.2017:[10.0] "This guy is soo good and he's not even reached 30's yet. Easily the best wrestler in the world. Can get a 4 star match even with a guy like Fale. His singles matches this year have all been incredible and his matches with Tanahashi are some of the all time classics. If he stays for 10 more years i believe he will go down as the greatest wrestler of all time."
Rating: 10.0
Sentiment: 0.6253968253968255
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ParisTheSpiderwrote on 15.06.2017:[10.0] "Momentan der beste Wrestler auf dem Planeten. Okada liefert mehrere 5 Sterne Classics. Zweifellos der beste Performer im Pro Wrestling. Seine Matches gegen Naito, Shibata, Tanahashi und Omega sind einfach weltklasse."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: CorvinLEwrote on 12.06.2017:[10.0] "Dieser Typ hat sich einfach zum besten der Welt entwickelt, er zeigt ganz normale Standart Moves, wie z. B nen "Droppkick", die er einfach nochmal perfektioniert. Zusätzlich ist er für seine größe extrem beweglich. K. a warum TNA sein Talent nicht erkannten und ihn zurück nach Japan haben ziehen lassen, aber für Okada hätte es anders nich laufen können. Ohne frage ist er mein Favourite in der Wrestlingworld Rainmakeeeeer! ;-)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: NikoWrestling7wrote on 04.06.2017:[10.0] "Kazuchika Okada is untouchable currently for me in professional wrestling. Not a bad singles match this year and I can't remember the last time I didn't enjoy a match from him, even the Fale match at Dontaku. Okada is my standard currently in wrestling. Simple as that."
Rating: 10.0
Sentiment: 0.10625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: PistolPeteMattywrote on 31.05.2017:[10.0] "Okada is currently the best champion in the world of wrestling, with every match for the title in his reign being amazing, and having multiple 5 star matches during said reign. He's only 29 and already the best in Japan, if not the world."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MingTeawrote on 30.05.2017:[10.0] "Okada is the best wrestler in the world right now. His ability to perform at this level at such a young age is incredible. Can't wait to see where his career goes."
Rating: 10.0
Sentiment: 0.45714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: LordGabrielwrote on 28.05.2017:[10.0] "One of the best in ring wrestlers i ever seen. Probably he can carry a good match with almost every decent wrestler. I saw some of his matches in NJPW and he is remarcable inside the ring and he is only 29 years old.  The future is bright for him if he won't suffer a a serious injury."
Rating: 10.0
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: richeyedwardswrote on 28.05.2017:[3.0] "Okada from 2012 up until the end of 2013 I would have given okada 9. After that however I think he has been good to terrible. He has fallen into a routine that sucks and is just sooo boring. Same opening to every match followed by 25 mins of nothing with okada not looking like he cares about anything that is happening like it does not matter. This is not in a good way like he is a cocky ace who is not taking his opponents seriously instead he just looks like he does not care and that he is doing stuff in order to make the match go long because main event matches have to go long in njpw.   The absolute worst thing about him though is that his selling it is awful. After that tana match at kopw he gave up selling a limb in any match. The opponent will work a limb like the leg or the arm during that 25 mins of nothing and then when it was time for a comeback he hits all his trademark spots without any trouble and they they go into the very silly clichéd finish sequence where they dance around each other for he rainmaker not looking in any way tired or like they have just been fighting for 35 minutes.   Nothing looks like a fight it just looks like a silly exabition with a wrestler trying to do epics but sucking at them.   Not the worst wrestler in the world but along with omega easily the most overated."
Rating: 3.0
Sentiment: -0.23219696969696973
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MRNwrote on 09.05.2017:[10.0] "The best wrestler in the world today. In the middle of a legendary IWGP championship title reign he's managed to make his opponents look better than ever even in defeat and make fans want to see a rematch everytime the bell rings. At only 29 years of age Kazuchika Okada is on his way to being considered one of the best of all time."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: LSEstrelawrote on 07.05.2017:[9.0] "Okada is a one of a kind. He seems to be the perfect blend of charisma, in-ring ability and promo skills. But he's not quite the phenomenon that Nakamura and AJ Styles were in Japan, so that stops him from being a 10/10."
Rating: 9.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: koblandwrote on 24.04.2017:[10.0] "The best in the world right now, and he's only 29. He could quit tomorrow and I think he'd rank in the top 5 of all time, so many classics already, and it's scary to think of how many more are to come. Why is he the best? Watch any of his 5* matches and you'll see plenty of reasons, he works any style perfectly, he tells some of the best stories I've ever seen in a ring, his ability to move a crowd is currently unparalleled, and he has proven time and time again that he can work with anyone. The Rainmaker is one of the best finishers in the game right now, and the fact that it's sometimes preluded by a Tombstone Piledriver is just a testament to how strong he makes it look. The best in the world right now, and when he's done, probably the best of all time."
Rating: 10.0
Sentiment: 0.42952380952380953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kamen Rider X7wrote on 15.04.2017:[10.0] "Absolutely the greatest wrestler in the world at this moment. The fact that he is only 29 makes the idea that he might not have hit his peak yet kind of amazing."
Rating: 10.0
Sentiment: 0.48
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheRainmaker28wrote on 14.04.2017:[10.0] "Okada was one of my favorite wrestlers of all-time, but after his performance against Omega and Shibata, he became the number one in my list. At the age of 29 years-old he already have a hall of fame career, with a catologue of classic matches and as one of the main responsables for New Japan getting in their feet again. Aside from that, he is a full-package wrestler, as he got the look, the charisma, the drawing abilty, a amazing in-ring work and psychology, being able to adapt and fit his style in any type of match, and he does such little things that are important to structure a match, as his amazing facial expressions and his facility to work and play his character with perfection as heel or a babyface. For a man that established him self as one the best already in his age, I have no doubt that he is going to be on the books as one the greatest wrestlers of all-time. Fantastic is the word to describe Kazuchika Okada."
Rating: 10.0
Sentiment: 0.3788131313131313
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: BerserkGutswrote on 14.04.2017:[10.0] "It's scary to think Okada is only 29 years old and is considered to be one of the best in the world. A big match wrestler, who adapts to any style. His rivalry with Tanahashi is legendary and the match quality are spectacular. he is only going to get better and will probably eclipse Tanahashi as the Ace of New japan. Go watch any match with Tanahashi, Omega and most recently with Shibata and see for yourself how good he is."
Rating: 10.0
Sentiment: 0.31048951048951046
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TooSweetPhilwrote on 10.04.2017:[10.0] "Hat sich vor kurzem zu meinem Absoluten Lieblingswrestler entwickelt. Okada's aktueller Titelrun ist einfach bravourös. Jedes Match ist ein absolutes MustSee und Okada zeigt immer Topleistung und varriert seinen Style immens. Sei es die psychische Schlacht mit Suzuki, das HighFlying mit Tiger Mask W, der Strong Style Krieg mit Shibata oder einfache Klassiker mit Marufuji oder Omega man kann von Okada nur Storytelling, Matchpsychologie und Selling erwarten. Mal die ganzen 5* Matches und die beste Fehde aller Zeiten mit Tanahashi außer Acht lassen. Genau wie Tanahashi überzeugt er nicht unbedingt durch das übertriebenste MoveSet sondern viel eher durch die Fähigkeit ein geiles Match auf die Beine zu stellen.  Aktuell der Beste Wrestler der Welt"
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: prowrestlingisrealwrote on 06.03.2017:[10.0] "I didn't think that Okada had it in him, but he proved me wrong big time in the past year, and he's still doing so by having one of the greatest world title runs in the history of the business, what a talent!"
Rating: 10.0
Sentiment: 0.0625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TheWrestlingFanwrote on 04.03.2017:[10.0] "The new Ace of New Japan. He's capable of delivering great matches after great matches against any talent. He oozes charisma and has marketable look that will bring New Japan's value into new heights. New Japan better doesn't let their true face of company leaving anytime soon."
Rating: 10.0
Sentiment: 0.2847107438016529
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SanthoshVNwrote on 19.02.2017:[9.0] "Okada is a very great wrestler to the age he is. He is young, athletic, great technician and charismatc in the ring as well. His bouts with Karl Anderson, Tanahashi, AJ Styles and Nakamura are recommended to watch"
Rating: 9.0
Sentiment: 0.6333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Segri98wrote on 11.02.2017:[10.0] "Was für ein Wrestler. Technisch begabt, Charisma ohne Ende, liefert grandiose Matches ab und verbreitet Freude. Ich liebe seinen harten, aber dennoch eleganten Stil und könnte mir stundenlang Matches angucken. Er ist absolut zurecht der amtierende IWGP Heavyweight Champion. Besser geht nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Changeling45wrote on 09.02.2017:[10.0] "The funny thing about Okada for me is, I know his shtick and routine.  He'll rarely surprise you-- you basically know what you're getting yourself into when you watch a match of his.  In some ways he's like the Japanese Randy Orton, because he doesn't necessarily have to leave his comfort zone but what he does do he does super flawlessly and smooth.  The difference in him and Orton though is Okada's greater ability to work more styles and tempos.  He's a prototype in the ring, as long as his opponent keeps up their end of the bargain and spices things up a little bit, Okada will help you get the absolute best out of each other.    And that damn dropkick."
Rating: 10.0
Sentiment: 0.2943452380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Jobbswrote on 02.02.2017:[10.0] "This guy is only 29 years old and can be considered one of the best in the world currently. The amount of classics he's had is just incredible and even racking up 3 ***** matches with arch rival Hiroshi Tanahashi too. The guy can adapt to any style and get the crowd invested too. Have to give this guy a 10 as I have rarely seen a match of his that I didn't enjoy and honestly the guy can do it all and he's not even reached his prime yet."
Rating: 10.0
Sentiment: 0.4125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SomeDudeOnTheInternetwrote on 27.01.2017:[10.0] "Junge Junge.. Okada erfährt mit 29 Jahren ein unglaubliches Hoch im Wrestling Biz und er hat es zu 100% verdient. Unglaublicher Worker, charismatisch ohne Ende und viele Matches sind Mainevent tauglich. Jeder Move sieht einfach perfektioniert aus und er zählt ohnehin zu den besten Top 5 In-Ring-Performer der Welt."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: csp6713wrote on 23.01.2017:[9.0] "He's been so consistently good that Okada will get my ten the moment I see him step up his game. Even after his WK11 main event, Okada has a whole lot more to offer as a performer, once he is made the 100% star that he's made to be."
Rating: 9.0
Sentiment: 0.19444444444444442
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Chekerwrote on 10.01.2017:[10.0] "Kazuchika Okada was arguably given the world a bit too soon, but he soon became worthy of all of it. Okada is capable of having a great match with anyone, he has a great heel vibe, and I hope the only reason people are talking a lot more about Kenny right now is because it was his time to shine, while Okada... well, we all knew already Okada is excellent."
Rating: 10.0
Sentiment: 0.4898809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ApexOfEvolutionwrote on 08.01.2017:[9.0] "Im Ring zur Zeit einer der besten Wrestler der Welt und der einzige, der einen Lariat als wirklich effiziente Aktion verkaufen kann. Was er gegen/mit Tanahashi und zuletzt Omega auf die Beine gestellt hat, gehört jetzt schon zu den ganz großen Klassikern. Seine Promos kann ich nicht bewerten und vom Charisma her steht er leicht hinter Tetsuya Naito oder Kenny Omega , so dass ich nur 9 Punkte vergebe."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Gravelordwrote on 08.01.2017:[10.0] "Kazuchika Okada is already one of the greatest wrestlers in the history of NJPW and yet, he is only 29 years of age. A truly special performer and somebody that an entire company can be built around with his superstar look and aura, as well as top-notch in-ring skills and a brilliant character that he plays to absolute perfection. Not only this, but it is scary to think that as good as Okada is, he can only get better over the next decade and perhaps can grow into the greatest overall performer pro wrestling has ever seen as his catalogue of classic matches continues to grow and success as Ace of NJPW becomes more and more beneficial to the entire pro wrestling landscape."
Rating: 10.0
Sentiment: 0.3311904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TrevPuroFanwrote on 07.01.2017:[10.0] "Okada will go down in history as one of the greatest ever. Only 29 years of age and has already so many classics on his name and already a 4 time IWGP Champion. I only expect bigger and better things for Okada in the future, as he carries New Japan on his back."
Rating: 10.0
Sentiment: 0.19808080808080808
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JokeyZockeywrote on 07.01.2017:[10.0] "Der Rainmaker! Ich habe ihn ja bisher immer schon als einen der besten der Welt angesehen, in meinen Top 5 war er immer sicher drin. Aber nach seiner Performance und dem Match gegen Kenny bei WK11 hat er mich endgültig überzeugt und in seinen Bann gezogen! Nun gibt es überhaupt keinen Zweifel mehr: Kazuchika Okada ist der aktuell beste Wrestler der Welt und wird es noch für viele Jahre bleiben! Im Ring 1+ mit Sternchen, Charisma in anderer Form auf demselben Level wie Nakamura, Gimmick wird perfekt ohne Makel dargestellt und die dazugehörige Ausstrahlung sucht ihresgleichen. Noch dazu ist der Jung erst 29 Jahre alt! Lass ihn noch 10-15 Jahre in dieser Form weiter machen, er wird ganz oben im Olymp des Wrestlings an der Seite von Kobashi und Misawa stehen! Am Ende seiner Karriere wird man ohne jeden Zweifel sagen können: Dieser Mann war einer der, wenn nicht vielleicht sogar der beste Wrestler, der jemals in einen Ring gestiegen ist!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Rattlesnake3-16wrote on 05.01.2017:[9.0] "One of the greatest Japanese wrestler ! The leader of Chaos has a huge charisma with fantastic in-ring skills."
Rating: 9.0
Sentiment: 0.44999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: NastyYaffawrote on 01.01.2017:[9.0] "People always say how TNA wasted Okada, but I don't think that's the case - he just didn't showcase that level of greatness he is now at while he was there. Right now he is definitely one helluva wrestler, one of the best in the world. He has been a part of some truly great matches vs. the likes of Minoru Suzuki, Hiroshi Tanahashi, AJ Styles, Shinsuke Nakamura & many others - and I am sure that his great match catalog will once grow as years go on, as he is only 29 years old."
Rating: 9.0
Sentiment: 0.3785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Jack Londonwrote on 14.12.2016:[10.0] "Okada ist einer derjenigen, dessen Wertung hier im Board sicher nicht seine Leistung wiederspiegelt. Kazuchika Okada in 2012 ist absolut großartig, er bietet tolle Matches, beweist Charisma und wird immer sicherer in seiner Interaktion mit den anderen Größen von New Japan. Irgendwo in Orlando sollte jemand seinen Kopf gegen die Wand knallen, weil man dieses Talent so sträflich vernachlässigt hat."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: kingbilbinwrote on 23.11.2016:[7.0] "Okada is a great worker but overrated as f*** and he canŽt be compared to Tanahashi as ace. He is not the star NJ needs despite 4 years of megapush."
Rating: 7.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JordanACEwrote on 04.11.2016:[10.0] "Rainmaker! OKADA KAZUCHIKA! This guy is so good inside the ring it's unbelievable. I am not a big fan of NJPW, but currently, he is the only reason that I tune into their PPVs (he and Kenny Omega, tbh).  I watched all of his matches with Tanahashi, and every time they delivered. Kinda reminds me of Flair vs Steamboat with Okada being Flair and Tanahashi being Steamboat. Okada is just one of the best wrestlers out there."
Rating: 10.0
Sentiment: 0.24166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: akm0wrote on 18.10.2016:[9.0] "Charismatic af, great in-ring worker and one of the simpliest, but coolest finisher in the buisness make Gedo's pupil what he is today. While I think he's a star and he can improve a lot being only 28, I also think that his matches have all the same build. He is not very versatile as Tanahashi and he doesn't bring something really special in the ring aside from the Rainmaker. He's also capable of doing good promos and to always entertain the crowd. Probably three years from now we'll be talking about him as THE best wrestler in the world, but right now he just need a lil bit more time and experience. However, his series of matches with Tanahashi will be forever remembered as one of the best feud ever on pair with Flair/Steambot, Kobashi/Misawa and so on."
Rating: 9.0
Sentiment: 0.4369047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Alex Maedawrote on 08.10.2016:[10.0] "Okada hat in den letzten 4-5 Jahren eine Entwicklung vollzogen, die ihresgleichen sucht. Vom durchaus ambitionierten, aber doch eher unauffälligen Rookie zum neuen Ace von New Japan. Tanahashi scheint nun endgültig die Fackel an ihn übergeben zu haben - und womit? Mit Recht! Okada ist einer der charismatischten Worker der Welt, haut einen MOTY-Kandidaten nach dem anderen heraus und hat sich absolut im Wrestling-Olymp etabliert."
Rating: 10.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Luv all wrestlingwrote on 08.10.2016:[10.0] "Okada is the future of NJPW, a proven draw with excellent timing and charisma, Okada is always a joy to watch."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Robert Taylorwrote on 18.08.2016:[10.0] "Wird mal Zeit für eine Aufwertung auf die 10. Er hat mittlerweile über einige Jahre bewiesen, dass er zur absoluten Leistungsspitze bei New Japan und im Wrestlinggeschäft allgemein gehört. Zahlreiche Klassiker und sehr starke Matches hat er gezeigt und zurecht hat er den IWGP Heavyweight Title bereits mehrere Male gehalten. // 13. 01. 2013: Unglaublich, was dieser Mann in einem Jahr für einen Aufstieg erlebt hat. Es spricht für seine Qualität, dass er daran nicht zerbrochen ist, sondern sich durchgesetzt hat. Das Rainmaker-Gimmick passt perfekt zu ihm und im Ring eine Bombe, wie man dieses Jahr sehen konnte. Ich hoffe in Orlando beißt sich jemand täglich in den Hintern, dass man ihn nicht richtig eingesetzt hat. Wenn er das Niveau von 2012 weiterhin halten kann, gibt es auch eine höhere Wertung."
Rating: 10.0
Sentiment: 0.06818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ThePhenomenal1wrote on 05.07.2016:[10.0] "Respekt! Der Typ ist 28 Jahre alt und ist einer der größten Stars in Japan. Das was er im Ring zeigt ist absolut genial. Der Rainmaker gefällt mir besonders, es ist zwar ein relativ schwacher move als finisher aber wir den rüberbringt ist der finisher sehr glaubwürdig weil er all seine Kraft in den move steckt. Ich bin auch sehr froh der rübee das er seinen Vertrag bei New Japan Pro Wrestling verlängert, denn da ist er meiner Meinung nach am besten aufgehoben."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Delirious434wrote on 19.06.2016:[4.0] "I already don't think he's that kind of a big deal, and NJPW is making me dislike him even more, just like a guy down here said, Okada is the Randy Orton of New Japan, and the way NJPW Book him is horrible, winning the IWGP Heavyweight Title EVERY SINGLE FUCKING TIME!"
Rating: 4.0
Sentiment: -0.02673561006894339
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MAGICIANwrote on 13.04.2016:[10.0] "Kazuchika Okada ist unglaublich gut, hat sich mittlerweile zu einem der 3 besten Wrestler der Welt entwickelt. Der Rainmaker ist einfach einmalig. Großartiges Gimmick, göttlich im Ring, göttliche Ausstrahlung und so viel Charisma, dass bei seinem Auftreten fast die Halle einstürzt. Wenn man dazu bedenkt, dass der Kerl erst 28 ist. Der Rainmaker gehört mittlerweile zu meinen absoluten Favoriten! Volle 10 für das beste, was NJPW derzeit zu bieten hat!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: CmNag66wrote on 10.03.2016:[10.0] "Das neue Ace von New Japan und einer, wenn nicht sogar der beste Wrestler der Welt im Moment. Seine Matches sind durchgehend richtig stark, dazu kann er auch komplett verschiedene Matches zeigen (z. b. vs. Tenryu) und an Charisma mangelt es ihm ganz sicher auch nicht. Hat für mich dazu auch noch das Beste Match was ich je gesehen habe gegen Tanahashi bei WK 10 gehabt. Mit einer großartigen Leistung von ihm wo er am Ende zurecht das Zepter in die Hand bekam."
Rating: 10.0
Sentiment: -0.03181818181818183
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: SapolBlackwrote on 03.02.2016:"Jetzt überzeuge er mich der Rainmaker!  Nach dem er seine dauer und Erzrivale bei WK10 besiegte. Umfassbar, diese Entwicklung und ein Unglaubliches Bereicherung für NJPW. Jetzt liegen die Zügeln an ihm, was er aus seiner Zukunft macht. Er ist an der Spitze angekommen."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: themadsamuraiwrote on 16.01.2016:[10.0] "A three time IWGP champion at the young age of 28, Okada really is the new ACE of new japan. Okada is so good for his age and he'll only get better as the years go by. Excited to see how good he gets in 5 to 10 years."
Rating: 10.0
Sentiment: 0.3164141414141414
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Matzinhowrote on 07.01.2016:[9.0] "Verdient (in meinen Augen nicht nur von mir) eine Aufwertung. Mit dem WK10-Sieg hat sich Okada endgültig emanzipiert und hat sich aller Kritik zum trotz, die ich ihm und seinem Stil gegenüber noch äußern könnte, doch zu einem liebgewonnenen Teil des Pro-Wrestling der Gegenwart entwickelt. 9 Punkte für jemanden, bei dem ich NOCH IMMER Luft nach oben sehe, obwohl er bereits einer der prägendsten Akteure seiner Ära ist."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Oddark123wrote on 06.01.2016:[9.0] "Kazuchika Okada is a man who shows how time and improvement can cultivate a talent. His transformation to the Rain Maker, was his gel moment. And from that point on he's had the right road to success. His reigns at the top of NJPW's mountain have been well deserved. He has also added to his presence by being a nice attraction to other promotions he has appeared in. With his time put in, Okada has transformed himself into a highly deserving wrestler."
Rating: 9.0
Sentiment: 0.3601190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Phenomenal91wrote on 10.11.2015:[10.0] "From Ultimo Dragon's protegee to TNA jobber... to the ACE of the New Era, he is truly one of the Best in the World. It was a big risk putting the title on him back in 2012, as the Japanese audiences didn't truly know what he was capable of. But it payed off... now the Rainmaker stands in the elite of puroresu: brutal, uncompromising, electrifying. His feud with Tanahashi can't be seen anywhere else in the world. And he's just getting started!"
Rating: 10.0
Sentiment: 0.048051948051948026
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Antimasterwrote on 23.10.2015:[10.0] "Dieser Typ ist mit 27 in meinen Top 5 momentan, absolut fantastischer Wrestler. Sein Gimmick ist großartig, man nimmt ihm einfach ab, dass er der King ist, dazu diese Dropkicks zum dahinschmelzen. Er kann mit wirklich jedem ein gutes Match worken, was er beispielsweise aus Fale Anfang dieses Jahres herausgeholt hat, war unglaublich. Und das beste: Wenn alles normal läuft, hat er noch mindestens 10 Jahre auf dem Höhepunkt seiner Leistungsfähigkeit vor sich! Ich kann es kaum erwarten, mit was für Matches mich Okada in Zukunft erfreuen wird."
Rating: 10.0
Sentiment: 0.34375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kevin434wrote on 02.08.2015:[10.0] "Der für mich zurzeit sechstbeste Wrestler der Welt, ich gebe 10 Punkte, weil der wirklich einfach mit JEDEM ein gutes Match herbeizaubern kann, was für ein guter und realistischer Wrestler, und er steht zurecht jetzt schon an der Spitze New Japans. Was soll man noch groß sagen, fantastischer Worker, erfüllt alles was man als guter Wrestler in Japan braucht."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Play2Xwrote on 13.04.2015:[10.0] "Klasse Selling, klasse Ausstrahlung, klasse Entwicklung: Einfach ein klasse Mann, welcher die nächsten 10 Jahre großes bringen wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ShortArmLariatwrote on 11.04.2015:[10.0] "My favorite wrestler in the world today. With just 27 years, is one of the greatest wrestlers in the world. His moveset focused on the neck, the rainmaker, the way he sells his arm, his classics against Tanahashi... He has got the IT Factor and in a few years, we could be talking about the next japanese legend."
Rating: 10.0
Sentiment: 0.26
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TAWPTierJustinwrote on 29.01.2015:[10.0] "Kazuchika Okada really has come a long way since I first watched him wrestle in TNA as nothing more than a jobber in 2010 and 2011 and even called himself Okato at one point and aligned himself with Samoa Joe for a bit for a feud with Joe and The Pope. Ever since Okada came back to New Japan after leaving TNA, he really reinvented himself, changed his look and everything, improved his wrestling a whole lot, gave himself a moniker which is The Rainmaker, and he became one of THE top 2 stars in New Japan Pro Wrestling today!"
Rating: 10.0
Sentiment: 0.2106818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: llboxingwrote on 18.01.2015:[9.0] "Look up "It Factor" in the dictionary and you will likely see a picture of Okada.  The one Japanese star who has a legitimate chance to reach main event status in WWE, if he ever decides to jump ship.  Vince McMahon and WWE see dollar signs everytime they see this guy wrestle.  Dixie Carter is kicking herself right now for the way she misused him during his time in TNA.  Excellent look, tall for a Japanese wrestler, and elaborate costumes.  Reinvented himself with his Rainmaker gimmick of a bleach blonde rich playboy.  Good showmanship and charisma, which is sometimes missing in Japanese wrestlers.  Almost like a more youthful, Japanese version of Ric Flair.  He plays a cock and arrogant pretty boy and you would think that he would be the most hated heel in the company, and he started out that way, but quickly became a beloved anti-hero.  One of the top workers in the business, super smooth in the ring with freakish athleticism. Excellent seller, ring psychologist and a variety of cool moves.  He took a simple short arm clothesline and made it into the most feared finisher in wrestling.  Still a few years away from 30, his upside is scary.  Physique is a little on the lanky side.  I'd like to see him build some more muscle.  Some have criticized his promos but he has Gedo as his pitch man and the crowd eats up everything he says. Also speaks relatively good English.  As long as he stays healthy, will be a top draw for years to come."
Rating: 9.0
Sentiment: 0.23768187830687834
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JuliTheCage87wrote on 05.01.2015:[10.0] "Diese Entwicklung bei ihm ist phänomenal. Während er noch vor drei Jahren für seine Kindlichkeit belächelt wurde, gibt er jetzt einen erfahrenen, zuverlässigen, energischen, unterhaltsamen und talentierten Wrestler der Extraklasse ab. So viele 4- oder mehr Sterne-Matches hat wohl niemand zuvor in diesem jungen Alter zu verzeichnen, Respekt für diesen Jungspund."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: TRMBwrote on 26.12.2014:[9.0] "Der neue Topstar Japans! Einfach rundum ein Klasse Wrestler mit Austrahlung, Charisma, Sicherheit und Selbstvertrauen, Promo technisch wirkt er sehr sicher (natürlich schwer zu beurteilen wenn man kein japanisch spricht). Nur 9 weil er halt (noch) nicht das die Klasse von Nakamura und Tanahashi hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: 8BitLegendwrote on 22.09.2014:[6.0] "Ich kritisiere kaum etwas am fantastischen NJPW-Produkt, aber Okada ist definitiv überpusht. Er hat ein ganz nettes Gimmick, kann gut wrestlen, aber in Sachen Star-Power ist er kein Tanahashi, Nakamura, Liger oder Suzuki."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: sevendaughterswrote on 31.03.2014:[10.0] "Okada can wrestle with anyone. That much is clear and I point to a string of **** or better matches by the age of 26 that testify to his in-ring ability - including the greatest wrestled feud of this decade against Hiroshi Tanahashi, which contains six matches of such absolute brilliance that it's unfair. Smooth but powerful. Convincing and sells generously. You couldn't ask for more of his ring work, really. Some people have a problem with his charisma and think that he has none; on the surface this seems true. His press conferences and post-match mic work is REALLY awkward. But the more I watch, I am convinced that this is part of his 'cocky young champion' character: that he both wants to let his wrestling speak for itself and refuse to get drawn into pithy speech feuds."
Rating: 10.0
Sentiment: 0.2088235294117647
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jay arewrote on 16.02.2014:[10.0] "The rainmaker has really impressed me these last two years. I love the production value of his entrances, I love his consistently very good ring work almost never having a bad match anymore and the stories he's able to tell in them. He has helped reel me in to NJPW."
Rating: 10.0
Sentiment: 0.3871428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: eldenaaaaawrote on 16.02.2014:[10.0] "at only 26 years of age this man has had a lot of classics Okada is the future of wrestling"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: apc24wrote on 07.01.2014:[10.0] "Okada has evolved into one of the best wrestlers in the world today. Going from a nobody jobber to a great great main eventer. He has excellent in-ring ability and can also have a great story in the ring (the man can sell) and is now the face of Japanese Wrestling."
Rating: 10.0
Sentiment: 0.6523809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: JourneybyTrainwrote on 09.12.2013:[6.0] "Okada is a decent worker with a good look, though strangely it doesn't translate well as far as in-ring presence goes. His selling can be iffy and the middle of his matches can get boring but he does have a knack for finishing stretches; though I think that's slightly negated due to having a stupid dance looking finisher."
Rating: 6.0
Sentiment: -0.13055555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Bluminho 93wrote on 04.12.2013:[9.0] "Okada ist jemand, bei dem man einfach alle richtig gemacht hat und auch nicht gleich einen Push abbrach, wenn etwas mal nicht perfekt klappte. Der Mann ist jetzt 26 und hat bereits alles relevante bei NJPW gewonnen, was es dort zu gewinnen gibt. Okada ist einfach ein starker Wrestler, hat ein tolles Moveset, eine Wahnsinnsaustrahlung, einen starken Manager als Sprachrohr und ist bei den Fans trotz Heel Status dermassen over, dass man nur den Hut ziehen kann. Trotzdem gebe ich erst einmal noch starke 9 Punkte und bewahre mir den einen Punkt noch auf. Denn wenn Okada nicht als Headliner im Main Event antritt, dann ist er für mich noch nicht fähig genug, Showstealer zu produzieren. Dies hat man beim diesjährigen Climax oft gesehen. Okadas Matches waren alle gut, doch im Endeffekt waren es auch nie DIE Begegnungen des jeweiligen Tages. Er konnte aus seinen Gegnern nie den ganz grossen Kracher herausbringen. Ich denke aber, dass der noch so junge Okada sich auch da noch steigert und früher oder später der beste Wrestler des Planeten sein wird und von mir die 10 Punkte erhalten wird."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: ADoublewrote on 28.11.2013:[10.0] "RAINMAKAH! Okada is, purely and simply, one of the best wrestlers in the world today. And with him only being 26, he'll have many years of being one of the best to come."
Rating: 10.0
Sentiment: 0.4523809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: todd1928wrote on 12.08.2013:[10.0] "One of the finest wrestler's Japan has to offer and only 25 years old. The fact is for the next twenty years Kazuchika Okada will be one of the biggest names in wrestling. Also he has the best lariat finisher since JBL himself."
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: alsdncjswo34wrote on 19.07.2013:[10.0] "He has best talent, and he makes the best of his all matches. ( he makes 5 star matches in twice ) he is young and he will be greatest wrestler in the future."
Rating: 10.0
Sentiment: 0.62
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Leonewrote on 05.07.2013:[10.0] "From being a jobber in TNA to the IWGP heavyweight champion within 2 years, shows several possibilities - either Okada became 1 of the best improved wrestlers over the last few years, or TNA didn't know what to do with him, or they thought he wouldn't get over with the crowd in America.  I think all possibilities are correct, as Okada eventually got an extreme makeover, became the Rainmaker, and became 1 of the strongest heels in Japan right now.  His in-ring storytelling is incredibly good, he has very good athletic ability to back it up, and his matches against Hiroshi Tanahashi are a must-watch."
Rating: 10.0
Sentiment: 0.28563492063492063
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Puromanwrote on 28.06.2013:[10.0] "Was ein Superstar. Auf dem Weg zum Ace in New Japan und mit 25 Jahren den Climax, den NJ Cup und 2-mal den Heavyweight Title gewonnen. Er war Anfang 2012 so gut wie abgeschrieben, vorallem nach dem Kingdom Auftritt, aber trotzdem hat er es geschafft allen zu zeigen. Er hat auch noch so viele Jahre vor sich."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Damon Strikerwrote on 15.04.2013:[9.0] "Ein wirklich starker Performer mit natürlicher diabolischer Ausstrahlung. Im Ring wirklich gut anzuschauen, inklusive tollen Dropkick."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jchiofalwrote on 14.04.2013:[10.0] "I was initially skeptical in NJPW putting the title on Okada. He didn't have very much experience at the time, and he didn't quite show that he was main event material. Now though, Okada is one of the best heels in Japan today, and is jone of the best wrestlers in the world today. I really cannot wait to see what the future has in store for him."
Rating: 10.0
Sentiment: 0.30380952380952386
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Obermackerwrote on 12.04.2013:[8.0] "Wurde trotz solider Leistung bei TNA nie richtig gepusht, aber dafür nach seiner Rückkehr nach Japan umso mehr. Ich steh auf sein "Rainmaker"-Gimmick und er fängt an, sich als Champion zu beweisen. Aufwertung: kratzt schon an einer 9, der Mann ist die Zukunft von NJPW!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Kenshin Uesugiwrote on 04.02.2013:[8.0] "From Zero to Hero! " Nachdem Excursiondesaster bei TNA hat niemand Okada auf der Rechnung, der neue Lock war zuerst befremdlich, das Wrestle Kingdom Rückkehr Match schwach und die Begründung das er nun Tanahashi um den höchsten Titel herausfordert lächerlich. Daraus resultiert zu Recht große Skepsis, doch der Junge hat die Chance zu hundert Prozent genutzt und steht nun bombastisch da und überholt mal so einfach das halbe NJPW Roster in allen Belangen. Das nächste Jahr wird diesen herausragenden Wrestler gehören, der wahrlich das heißeste neue Eisen im Puro Land ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: STRIGGAwrote on 09.01.2013:[8.0] "Also Okada am 04. 01. 2012 zu New Japan zurückckehrte, war er ein veränderter Mann. Ich hätte aber niemals gedacht, dass die Veränderung so weitreichend sein würde. Aus einem ambitionierten und hochveranlagten jungen Wrestler war ein Mann mit einer unvergleichlichen Ausstrahlung geworden, der 2012 ein Blockbuster Match nach dem anderen wrestelte. Das Rainmaker Gimmick sitzt perfekt und wurde vom Publikum so schnell angenommen, dass man sich fragen musste, was eigentlich gerade passiert. Ich hoffe, Okada bleibt dem Puroresu noch lange erhalten, denn er ist in der Kürze der Zeit zu einem der wertvollsten Wrestler New Japans herangereift."
Rating: 8.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Excellence of Executionwrote on 07.01.2013:[8.0] "Gefühlt könnte ich ihm schon jetzt mehr als 8 Punkte geben. Allerdings habe ich noch nicht so viel von ihm gesehen. Als Nachfolger im Geiste von Masa Chono gefällt mir Okada aber bereits jetzt verdammt gut."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Miloswrote on 10.07.2012:[10.0] "Seit seinem Re-Debüt als Rainmaker ist er total beeindruckend. Er hat tolles Gimmick und überragende Technik - sogar in Liga, die so viele ungewöhnlich talentiert Wrestler hat. Ich meine, dass er ein der erfolgleichsten Wrestlern derzeitigen Jahrhunderts werden kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Asumawrote on 11.06.2012:[10.0] "Großartiger Rookie und möglicherweise der Newcomer 2012 in Japan.  Hat seit seiner Japanrückkehr eine unglaubliche Präsenz im Ring und nachdem er zum wiederholten mal auch seine Klasse im Ring gezeigt hat verdient er unbedingt eine Aufwertung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Heroofclownswrote on 25.05.2012:[9.0] "Okada has been great this year! He looks the be the guy to lead New Japan into the future, and I look forward to it!"
Rating: 9.0
Sentiment: 0.37878787878787873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: Nguyen2103wrote on 05.01.2012:"So er ist zurückt von TNA und sieht einfach nur Gay aus mit den blonden Haaren ! Man sieht es ja an, das er was draufhat aber bei TNA war es einfach nur ein verlorenes Jahr ! Wenn ich NJPW wäre, würde ich es wie Dragon Gate machen, einfach ein Rookie nach Amerika schicken, in die Indi-Ligen z. B ROH, PWG etc. da lern man was siehe Tozawa !  TNA suck einfach und ich hoffe diese Liga stirb einfach nur ab"
Rating: No rating found
Sentiment: 0.8138020833333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: jjchiofalowrote on 06.11.2010:[5.0] "Okada needs a good deal of work to truly become great, however I do definitely a lot of potential. I hope that he develops in TNA, and actually gets a chance to wrestle on impact"
Rating: 5.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4324&gimmick=Kazuchika+Okada
Comment: MaKnowrote on 24.08.2010:[5.0] "Die Suicide-Sache hätte nicht unbedingt sein müssen - allgemein stellt TNA aktuell sehr wenig mit Okada an, obwohl dieser an sich ein großes Talent ist. Die Vergangenheit hat uns leider gelehrt, dass sich Japaner in großen amerikanischen Ligen nur schwerlich beweisen können. Insofern hoffe ich auch, dass er nach Ablauf seines Vertrages entweder in den Indyligen auftritt oder gleich nach Japan zurückkehrt - so oder so ist Okada bestimmt eine der künftigen Leistungsspitzen von New Japan."
Rating: 5.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Rave Dragwrote on 26.01.2025:[10.0] "Tanahashi is a legend. A locker room leader. A master. A legend who saved NJPW from the gutter and elevated so many wrestlers. I want him to win one last Climax and main belt before he retires."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Quenthi3wrote on 26.01.2025:[10.0] "I guess it's time to let a comment saying how much I appreciate Tanahashi as a wrestler and as a member of the wrestling community. He is my favourite wrestler and will always be because of his work ethic, his skills, his charisma, his will to make New Japan a better place for everyone, fans and wrestlers. It all started at Forbidden Door 2022 where he competed in the main event against Jon Moxley, I saw his presence in the ring, I saw how important he was, later I discovered his evolution by watching every edition of Wrestle Kingdom and some other matches against Minoru Suzuki, Bryan Danielson or Katsuyori Shibata, I think I know how Tanahashi evolved and all I have to say is that he's the Japanese equivalent of John Cena in terms of charisma, in temps of career and in terms of fame. It's also wonderful to observe how much he has done to pass the torch to Okada while remaining relevant in upper midcard and sometimes in main event from 2015 to 2019. His later career, despite his legs issues hasn't damaged his fighting spirit, he is now sort of All Might from BNHA, he is a symbol we all know is declining, but he does his best to secure the future of New Japan while begin there for the fans as much as possible. Thank you Tanahashi-san !"
Rating: 10.0
Sentiment: 0.24110845295055827
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: BrettThousandwrote on 06.01.2025:[10.0] "Greatest babyface of all time and a wrestler deeply influential to me in terms of exploring different styles of wrestling outside the United States."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: anarchovampwrote on 27.12.2024:[10.0] "He's the Ace for a reason. Very few people in wrestling can say they were single-handedly the reason for saving a promotion, and that describes what Hiroshi Tanahashi did for NJPW to a tee. He simply has unmatched babyface fire and next-level in-ring psychology. When people talk about how guys like Steph Curry could come off the bench as shooters until they were 50 is basically what Tanahashi is like right now with his knees, thanks to his out of this world charisma. Easily one of the greatest of all time, and possibly the greatest."
Rating: 10.0
Sentiment: 0.3323809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Its Clobbering Timewrote on 18.12.2024:[10.0] "The Ace of New Japan is truly a one a kind performer, Hiroshi is one of the best babyfaces of all time. He is the John Cena of Japan. Tanahashi is the biggest new Japan star ever without a doubt and has cemented his legacy as that. He's Been a top guy for 15 Years now, he's main evented multiple wrestle kingdoms won the IGPW Heavyweight Championship 8x and is also 3x G1 climax winner. He has now took over as the President of New Japan and their couldn't be a better person to lead them into the Future. I'm Sad that one of my favorites is Retiring soon but happy i got to witness the amazing charismatic performer that he is."
Rating: 10.0
Sentiment: 0.3268398268398269
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ItsAllAWorkAnywaywrote on 10.12.2024:[10.0] "Go Ace! - I think the biggest tragedy of WWE's leadership change not happening 10 years earlier is that we never got to see the Cena/Tanahashi match (or watch them tag together) that would've been beyond colossal. Be that as it may, he dutifully served as New Japan's figurehead and was their draw for the better part of 20 years time. Age and a lifetime of bumps might be slowing him down a bit now, but his time as a main event workhorse cannot be ignored or denied."
Rating: 10.0
Sentiment: 0.1579124579124579
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Khalid Acewrote on 14.11.2024:[5.0] "It's actually strange for me that I give this low rating for someone I believe he's the 2nd best wrestler ever and he's the reason I started watching NJPW however his current form is a 5. I would love to see him picking up his form in the rest of the year"
Rating: 5.0
Sentiment: 0.24166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TreyHalowrote on 23.10.2024:[10.0] "He's not the Ace for no reason, he has a genuine case for being the greatest to ever do it, one of the absolute deepest match catalogs you'll ever see and no doubt a big part of what put New Japan on the map on a larger scale, one of the best babyfaces ever and again, one of the easiest 10/10 ratings I'll ever dish out..."
Rating: 10.0
Sentiment: 0.39090909090909093
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: jdep78wrote on 11.10.2024:"An all time great of this sport and quite possibly the greatest babyface of all time. However, his rating is marred by his current state. 7/10"
Rating: No rating found
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Nootnootwrote on 03.10.2024:[10.0] "Tanahashi is my personal GOAT, and this rating reflects his overall career and contributions to the business. The older, slower man we see today may well be a far cry from the Ace of the Universe, but his work to lug NJPW out of the dark days and get the next generation of stars over cannot go unnoticed. He can work babyface and heel (watch the 2008 Champions Carnival, it's on YouTube) and seems to still have a magnetic connection with the crowd"
Rating: 10.0
Sentiment: -0.011904761904761906
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: jsbortswrote on 08.09.2024:[9.0] "Tanahashi was the Ace of New Japan with an ability to only do about 10 total moves, and just an old school throwback in so many ways. He exudes charisma and is an impressive physical sight. He's able to captivate an audience and is extremely memorable, and realy knows how to put a match together; however, he's not quite exceptional at any one thing in the ring and actually has somewhat average athleticism. He absolutely was the best overall package as a wrestler, but largely due to how well he was booked. To his credit, he's always been able to live up to the level of any opponent he has."
Rating: 9.0
Sentiment: 0.2757996632996633
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: dizziedwrote on 11.08.2024:[8.0] "Curious as to how these ratings are done. Lots of recent ratings of 10..... Hiroshi Tanahashi during his time prior to 2020, i would say was clearly a 9 or 10, but he continues to wrestle and put on terrible matches (He is probably about a 6 now). 8.0 to average Tana before and Tana now.... I do think it is good that he realized he cant do the GI Climax anymore and allowed himself to be booked as to not get into the tournament. However, He still has put himself over way too much latin 2024......getting himself booked to beat Zack Sabre Jr for the NJPW TV title at Wrestle Kingdom. That was a self serving move.... Than to lose it to Matt Riddle, the part timer who got fired from WWE for substance abuse issues....that was also pretty lame....why not let Zack take it back from you? Fortunately it looks like Zack may win G1 Climax this year... Tana please do us a favor and stay out of Title Matches....please drop the Never Open 6 man tag team titles."
Rating: 8.0
Sentiment: 0.09230769230769233
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Joe907wrote on 28.07.2024:[10.0] "The ace of NJPW. Highly talented and charismatic. Tanahashi is a great technician and good high flyer. He saved NJPW in the lowest they have been to their golden years 2016-2019. He's put on some of the greatest matches ever with Okada, Omega, Ibushi, Naito, and Suzuki. Living legend"
Rating: 10.0
Sentiment: 0.5942857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Willie 19200wrote on 24.07.2024:[10.0] "Tanahashi is such a revolutionary and legendary wrestler to the business who help NJPW in some of it's darkest times. I loved his IWGP World Championship reigns and his feud with Okada and Omega was even more legendary. Later in his career he's a lot slower and now doing more booking and behind the scenes work, Tanahashi is still considered to be one of the greatest of all time."
Rating: 10.0
Sentiment: 0.47777777777777786
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Aspionwrote on 23.07.2024:[8.0] "(Sorry english is not my firtst language) I dont like him that much like the others but still its the legend"
Rating: 8.0
Sentiment: -0.09999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: djones06wrote on 03.07.2024:[10.0] "Yes Tana is older now and has stepped back from regular in ring work, his career was nonetheless spectacular and he carried his company to financial and critical success in his time at the top."
Rating: 10.0
Sentiment: 0.19583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ReeBoyJenkingswrote on 23.05.2024:[10.0] "While his recent work leaves much to be desired President Ace will forever be one of the greatest wrestlers to ever grace the Cerulean Blue. He's had so many classics with so many legends, a true must know figure in the greater wrestling universe"
Rating: 10.0
Sentiment: 0.38125000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: WrestlingStuffwrote on 16.05.2024:[10.0] "I have nothing but great things to think about when this man's name is mentioned. The hero NJPW needed when the other egotistical bums decided to leave after causing damage, leading them through the dark days. Thanks to Tana, we got Okada, we got Naito, we got Hiromu, we got Shingo, we got all those great wrestlers because Tanahashi made it possible that there was a NJPW for them to perform and for us to watch. Which is why my rate here is only 10 because this man is a wonderful figure and believe me, his funeral will be bigger than Inoki's if he ever leave us. However, it hurts to see current day Tana; his body's flabby, he moves slowly, can't jump for the High Fly Flow anymore, and constantly look like he is in pain. Soon he will end up like Nakanishi if he doesn't do something about it. Please Ace, be healthy!"
Rating: 10.0
Sentiment: 0.25400000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: OldSchoolFan3098wrote on 10.05.2024:[9.0] "The Ace has been one of the top tier talented athletes in the world of professional wrestling for quite a long time. His work in the ring has been solid for a long time. He has the ability to still put on classic matches even at this stage in his career. The only knock against Tanahashi is that his matches against bigger opponents can feel stale at some points but the story still comes across well as a fan. Tanahashi is the Fernando Alonso of the business as he continues to evolve and do wonders as he gets older. As a long time fan of wrestling, he's one of the superstars in the industry that will make me wanna watch a show that he will be on."
Rating: 9.0
Sentiment: 0.08194444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Oddtalkwrote on 31.03.2024:[10.0] "He's the Ace of New Japan for a reason. Incredible skill and charisma, and puts on amazing bouts like it's nothing. He can even get great performances from wrestlers thought to be mediocre. He's not only gonna go down as arguably NJPW's greatest of all time, but as one of the best ever."
Rating: 10.0
Sentiment: 0.4200897867564535
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TripleCrownwrote on 17.03.2024:[10.0] "This man saved NJPW. Let that sink in, he saved NJPW. That era of MMA in the promotion almost killed it, if it wasn't for Tanahashi then who knows what NJPW would look like today. Has had so many classic matches, great on the mic, great look, great wrestling ability, there's literally nothing more you could ask from him. I know he toyed around with the idea of going to AJPW in mid-late 2000s but he ultimately stayed and helped the likes of Okada become the next big thing in the world of Japanese pro-wrestling. Will be interesting to see how he does in a more senior role in NJPW, unless he does something incredibly stupid then I can't see my rating for him changing."
Rating: 10.0
Sentiment: 0.25476190476190474
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: danzitorockwrote on 10.02.2024:[10.0] "The Ace of the Universe is one of the best and most important wrestlers of all time, I don't think there's a wrestler in front of Tanahashi when it comes to New Japan Pro-Wrestling, the man absolutely revitalized the company after a really bad period, and led them to one of the best eras a wrestling company has ever had. His ring skills are incredible, and he is incredibly charismatic, have a huge storytelling ability, and it's one of the best babyfaces of all time. I think it's fair to say that Tanahashi not only completely saved New Japan, but also played a very important role on keeping puroresu popular. He's now president of New Japan and absolutely deserves the job."
Rating: 10.0
Sentiment: 0.40679425837320576
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: BruceMarcos524wrote on 10.02.2024:[10.0] "He was called "The Ace" of pro-wrestling for a reason. During its dark days of NJPW, where Antonio Inoki tries his wrestlers to fight against MMA fighters, Tanahashi lifted its dark days and made NJPW the best wrestling promotion in the world. He has amazing charm and enough charisma to attract the audience. The way he moves smoothly is like he is dancing ballet, that is why I never got tired watching his matches. His rivalry against Kazuchika Okada may probably be considered the best wrestling feud in history because of how rich their animosity has through the years. And no matter how many times they wrestle, it never becomes stale (unlike Cena vs Orton which we saw a load of times already). Tanahashi is also the reason why North American fans flocked to watch NJPW. His 2011-2013 run will always be unmatched. The High Fly Flow move by Tanahashi in my opinion is the best picture-perfect move on all of wrestling, aside from Eddie Guerrero's Frog Splash. No doubt he is one of my Top 10 greatest of all time and deservingly so. His matches never disappoint and truly a show-stealer of his time. Because of his influence and knowledge, the NJPW board made a right decision to appoint him as president. Surely his new role will seek greater heights for the future of NJPW, but still let's see how it goes from there. Truly a once in a century talent that can never be duplicated by anyone."
Rating: 10.0
Sentiment: 0.33571158008658014
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ddtprofan4000wrote on 01.02.2024:[10.0] "The ACE , The GOAT of NJPW for a reason , He carried the company during some of its darkest days and even into his older age hes still very capable to put on a good performance and is now the president of NJPW . GO ACE"
Rating: 10.0
Sentiment: 0.3755555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: The Quick Manwrote on 13.01.2024:[8.0] "Go Ace! Not quite the man he used to be, he is still a beloved personality who always brings the joy (especially to the women. And men like me. Look at those pictures of him in aprons and tell me that isn't the look of someone who can carry a company.) Now the President of NJPW, he may be winding down his in-ring career in the near future, now being the championship holder of a title belt that gets defended in matches that go no longer than 15 minutes."
Rating: 8.0
Sentiment: 0.26587301587301587
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "I'll admit that I'm not a super consistent watcher of New Japan Pro Wrestling, but when I do, I adore Hiroshi Tanahashi. Here you have a guy who is a naturally likeable babyface, with a really cool look to him, amazing ring gear and one of the best frog splashes ever. He might just be the perfect "never say die" type babyface, through his spirit fighting and knowing how to gain sympathy from the fans, he has it in spades. He's the Ace of New Japan for a reason, a very organic babyface who is viewed as NJPW's version of John Cena, but done right (saying this as a big fan of the guy). He's an incredible wrestler, storyteller and worker, having clinics with the likes of Kazuchika Okada, Kota Ibushi, Minoru Suzuki, AJ Styles, you name it, he's also a master of carrying opponents to great matches no matter how bad they might be (except Mike Bennett). While Tanahashi has been slowing down these days due to his knees being in pretty bad shape, his career and legacy speaks for itself and there will never be another Tanahashi. Also, his air guitaring is cool, it's a nice touch to make him stand out from everyone else in NJPW."
Rating: 10.0
Sentiment: 0.24339139696282544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: JBoogieRom28wrote on 29.09.2023:[10.0] "I've never really watched New Japan consistently but I can tell you that Tanahashi is undoubtedly one of the top wrestlers in the entire business. Just the way he delivers moves amazes me and he can really put on a 5-Star match. He is the best in New Japan in my opinion and he doesn't age. He has been putting on excellent matches for 20 years and doesn't show any signs of stopping. He is my 2nd Favorite in New Japan But Is The Best There."
Rating: 10.0
Sentiment: 0.36608391608391605
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ECWCWWEAEWwrote on 13.09.2023:[8.0] "Maybe calling him the John Cena of New Japan is a bit cruel or much, but having watched New Japan since 2014 and there only being maybe 20 or 30 matches you really need to see before that time preiod to know just everything about Tana's career I dont think its going to change how I feel about him. Very good wrestler, wondrful personality, but he's a hero only good as his villians and his matches against Naito and Suzuki are what made him at his best for me. His matches againsgt Okada of course are good but there's just so many at this point that its kind of... ok yeah, we get it. But yeah, he's possibly full package wise the greatest Japanese wrestler for the sake of longevity and legacy, but purely as a wreslter and some of his character, he's lower than a few personal favorites of mine"
Rating: 8.0
Sentiment: 0.31652442795299934
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Bockelitowrote on 03.09.2023:[10.0] "Tanahashi is a generational talent. The best pure babyface of this generation, achieving over 15 years what most best babyfaces can only garner during their peaks. He is technically extremely sound, almost always working methodically on a limb while making it thrilling thanks to his exciting offens and all time great facial expressions. He also has the fire, the spirit of new japan, truly captivating the audience like no other. A master of crowd control, apparently fantastic on the mic and a top 5 big match wrestler, if not top 1, of all time, he is in a rare category among his peers. And beyond his tallent and capabilities, his track record speak for itself. He built a legacy worthy of his talent if not greater. He brought new japan out of the shadows, had a record breaking title reign and had some of the best matches in the greatest stretch of in ring talent of all time. And he did all this while in his mid 30s to early 40s. I personally believe he is the Greatest of All Time, and although guys like Kobashi, Okada or Flair have a stronger Argument, in my humble opinion, no one has quite reached Tanahashi going for his final High Fly Flow."
Rating: 10.0
Sentiment: 0.3247764475108226
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: UltimoMutawrote on 26.08.2023:[10.0] "My answer to the question of "who is the greatest professional wrestler of all time? " Is always Hiroshi Tanahashi. I had fallen out of love with Pro Wrestling for a long time until I decided to check out Wrestle Kingdom 9 and watch this guy I'd been hearing about. I thought he was the best wrestler I'd ever seen. Then, I did my homework and my opinion of him just sky rocketed. Tanahashi has literally everything; he has an incredible look, he's technical, a master of displaying emotion and telling a story in the ring, he's a great athlete and he carried NJPW on his back and into their golden era. His body of work is of the highest quality. His rivalry with Kazuchika Okada is maybe the greatest of all time. Not to mention his work with Shinsuke Nakamura, Tetsuya Naito, Kota Ibushi and many others. A real life super hero and the greatest big match wrestler ever. The king of the Tokyo Dome. Hiroshi Tanahashi."
Rating: 10.0
Sentiment: 0.4739583333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: cal9099wrote on 18.07.2023:[10.0] "A living legend. Yes he's very beat up and worn down now but he can still use his impeccable technique and psychological knowledge of the business to put on great matches. At his peak just a joy to watch."
Rating: 10.0
Sentiment: 0.39907407407407414
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Aliquickkwrote on 26.06.2023:[8.0] "'Kurt Angle said I was the Japanese Shawn Michaels... I appreciated the compliment, and at the same time thought 'damn, I've been found out! ' Hiroshi Tanahashi certainly patterns himself after and feels like Japan's Shawn Michaels. It only makes sense why he's arguably the GOAT NJPW of all time. But how do I rate him as good as Michaels? A dilemma. Here's the problem: 2023 Tanahashi hasn't adapted to his dwindling athleticism like Michaels did and readjust his style. He absolutely needs to because his top rope offense looks very sloppy and uninspiring now. I hope he adapts to his older age because it's hurting his legacy. The best ever adapt over time. His current skill level is a 6 or 7. I'm adjusting my rating to an 8 to account for what he once was."
Rating: 8.0
Sentiment: 0.2032738095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: CorpusSkiptotelicumwrote on 26.06.2023:[10.0] "Who the fuck gives tanahashi a 1? thats gotta be wilful ignorance or trolling, since he gives charlotte a 9 and sheamus a 10. Whatever, Tana's a legend and probably the greatest japanese wrestler ever based on variety and body of work. Outside the ring, he's more important to njpw than cena and reigns combined are for wwe, he basically carried through the dark ages into the golden bushiroad age. Only then, with the best roster in the world to work with, he started to have truly legendary matches. Kind of like the inverse of the best american wrestler ever Danielson, as what youd consider his peak and were most of his best matches are in the 00s and Tana's peak was in the 10s. These days he is very broken down but can still have a good match with the right oponent."
Rating: 10.0
Sentiment: 0.3530079365079365
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: SoaKaswrote on 23.06.2023:[7.0] "Wow ok so that's the rating I was always afraid to give. YES, Tanahashi is a legend and one of the best to ever do it, but I have to rate him based on his current skills and they are pretty much non-existent. He can still tell a story of course but the way he moves and the way he executes everything just make me sad because his age has caught up to him. OF COURSE this rating will go up when he eventually retires but till then I'm not the biggest fan of Tanahashi's wrestling."
Rating: 7.0
Sentiment: 0.11875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: gargoylesmainwrote on 14.06.2023:[10.0] "Have to give this man a 10 for everything he did for Japanese wrestling and the barn burners he put on in his time. Nowadays his body is clearly wrecked, he walks like his knees are made of cement, and he's very limited in what he can do, often filling out multiman matches now or popping up to lend some star power to USA events. But that doesn't change his overall body of work."
Rating: 10.0
Sentiment: 0.0017857142857142828
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Frank Shooterwrote on 02.06.2023:[10.0] "Tanahashi not only carried NJPW on his back through its worst times, but he completely put it on a whole new level. To be compared to John Cena in terms of popularity (In Japan, at least) is something that speaks loud about how influential he has been to the business. A hell of a worker, inmense Babyface charisma that solidified him as the Ace of the 2000-early 2010's era. One of my favorites of all time."
Rating: 10.0
Sentiment: -0.09545454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Leo 4 Kingwrote on 08.05.2023:[6.0] "I don't really understand all the hype around Tanahashi, he is good but I don't found him incredible and as he is ageing, he is getting most limited."
Rating: 6.0
Sentiment: 0.4457142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: lilrorowrote on 06.05.2023:[10.0] "If Mr. Nagata was the one who supported NJPWduring the dark ages, It was Tanahashi who set out a different set of values and erased the shadow of the dark. Ever since he was a rookie, he has held the same beliefs and has shown fans the light of hope. One of his great achievements is that he was able to completely dispel the half-baked martial arts line called "strong style""
Rating: 10.0
Sentiment: 0.19333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: eenfish69wrote on 27.04.2023:[10.0] "Tanahashi is probably the single most important wrestler of the 2010s. He is the key that unlocked NJPW's boom period, that elevated and worked with so many other great wrestlers to allow NJPW to achieve such heights as it did. Without Tanahashi, the flow on effects would be immense in almost every company across the world its hard to find somewhere to start or stop. Superb worker and performer, fantastic style (albeit paying for it now as he gets older), storyteller that could feed and control the crowd depending on what the match and opponent needs to achieve the most entertaining and engaging result. Smooth and technically proficient, with a good amount of athleticism and aerial ability to be able to work with anyone or any style. Truly one of the greatest of all time."
Rating: 10.0
Sentiment: 0.34659863945578234
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TheOneAndOnlyCactuswrote on 30.03.2023:[10.0] "One of my favorite wrestlers of all-time, in my opinion the greatest IWGP Heavyweight Champion ever, and arguably the best pure babyface of all-time. While today he is not as spritely as he used to be, and his knees are in poor shape, he can still put on performances at times that remind you why he was the Ace of NJPW. Full of personality and charisma, could fly, strike, grapple and deliver solid all-around performances where you fear for him when he is in trouble and cheer for him as he rises from the bottom to the top. I adore this man and what he has done for not just NJPW, pulling it away from the dark ages, but for wrestling as a whole."
Rating: 10.0
Sentiment: 0.3087912087912088
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ChrisPrattAsMariowrote on 03.03.2023:[10.0] "The greatest wrestler of all time, the greatest babyface of all time, and at minimum a top 10 in-ring worker of all time in my opinion. The only thing Tana can't do is have a bad match in his career. Even nowadays when he's obviously slowing down and his body can't hold up as well as it once could, he can still go and have a great match. My favorite match of his is against Kazuchika Okada at Wrestle Kingdom 10."
Rating: 10.0
Sentiment: 0.3271604938271605
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Suzukigunwrote on 19.02.2023:[10.0] "I mean, what's to say that hasn't already been said? The guy has a 9.7 rating with nearly a thousand votes, and he deserves it. It's so high that when you see the few low scores he has, you can't help but laugh. Everyone's entitled to their opinion, but the vast consensus is that he's every bit the beloved savior of NJPW that he's known for being. A living legend in every light, one who was flawless in his prime. Wrestlers like this come around once in a lifetime, if that."
Rating: 10.0
Sentiment: 0.21475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Daigotsuwrote on 16.01.2023:[10.0] "A true giant in professional wrestling. Even now, he can still go. He has a charisma that transcends culture and language. You can look at Tanahashi and see an absolute star."
Rating: 10.0
Sentiment: 0.16249999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: benh2wrote on 12.01.2023:[10.0] "Definitely up there in the conversation for greatest wrestler. He has an unbelievable charisma that gets everyone behind him, making him one of the best babyfaces of all time. Great psychology and selling, he fires up for his comebacks really well even if he has a fairly limited offence, which I don't really see an issue with because he always makes you pop for the actual finish rather than something half way through."
Rating: 10.0
Sentiment: 0.21017316017316023
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: MainEventMasterwrote on 09.12.2022:[10.0] "Might be the greatest wrestler ever, his legacy in pro wrestling will be remembered forever, saved New Japan with his amazing wrestler."
Rating: 10.0
Sentiment: 0.5787878787878787
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Mcbolskywrote on 22.11.2022:[8.0] "I get what he did for NJPW to get them out of the dark ages but I just don't get it with Tanahashi. He puts on a good match but has a repetitive moveset. sling blade, dragon screw, high fly flow, rinse and repeat. For his overall contribution to the business I can give him no lower than an 8/10 though"
Rating: 8.0
Sentiment: 0.21
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: HighFlyDeathcorewrote on 10.11.2022:[10.0] "I mean no offense when i say this but Tanahashi is truly NJPWs answer to John Cena, except Tanahashi has always been a fucking incredible worker. His recent match with Moxley was amazing and he legit has been at the top of his game for decades. He is a once in a lifetime level of being babyface, simply the greatest in my opinion. His matches with Okada are all in my top matches list. I wont waffle more. 10."
Rating: 10.0
Sentiment: 0.32875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: DammitChristwrote on 28.08.2022:[10.0] "Hiroshi Tanahashi is one of the best (babyface) performers of all time. It's going to be an incredibly sad day for the wrestling industry once he finally retires. Until he does (hopefully not anytime soon), GO ACE!"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Ramiwrote on 22.08.2022:[1.0] "I don't get it, I don't see what everyone sees in him, I don't see anything special in Tanahashi, he's just about decent in the ring, he's stuff looks rough and a bit clumsy, he looks just fine, his gimmick can be summarize as air guitar, but I don't see anything special in his matches, when I started watching New Japan, all the wrestlers and matches were as good as everyone says, but I don't get why people like Tanahashi, I've seen his matches with okada, with omega, with Suzuki and none of them has been exceptional, I just don't get him"
Rating: 1.0
Sentiment: 0.2667388167388168
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: fgpfriendswrote on 04.08.2022:[10.0] "Hiroshi Tanahashi is one of the best wrestlers ever created, I love Hiroshi Tanahashi gimmick, in ring performance, his moveset is just on the other level, a lot of amazing matches, truly one of the top tier ones"
Rating: 10.0
Sentiment: 0.495
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Tyler72wrote on 26.07.2022:[6.0] "Hiroshi sure has made a number of contributions to NJPW over the years, but ranking him by his in-ring skill in 2021 and 2022, I've found that his moves have been quite sloppy, and almost close to making mistakes. I've expected more from him in his matches, and his matches feel rather slow. I also feel his move set a little underwhelming, and perhaps in need of a mix up."
Rating: 6.0
Sentiment: -0.0006944444444444605
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: zags7000wrote on 14.06.2022:[10.0] "I don't know of anybody that has captured my attention during their matches the way Tanahashi has. One of the best storytellers in the ring, I'm glued to every match. He's charismatic as well and overall, a total package. He's not as great as he used to be, and his best days are behind him but still capable of a great match. His rivalry and matches with Okada are up among the best of his generation and all time. Once in a generation star who helped save a dying company. One of the most important stars and greatest stars in wrestling history."
Rating: 10.0
Sentiment: 0.5230769230769231
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: texasyoshwrote on 02.06.2022:[10.0] "He's the Ace for a reason. Probably was the driving factor for NJPW surviving the late 00s. An incredible wrestler who is probably the best babyface of the last 15+ years. Despite his age he still is an incredible worker who has the ability to draw babyface sympathy no matter what."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: tsdenizenwrote on 02.06.2022:[10.0] "How many guys can you say basically single-handedly saved a dying major promotion? Tanahashi is that guy. A legend among legends, his work is impeccable to this day and has been a top 10 wrestler in the world for basically the past 15 years straight without dips. I can't say that about anyone else ever."
Rating: 10.0
Sentiment: 0.29375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Wright15wrote on 25.04.2022:[10.0] "He is the master of psychology, the man who saved New Japan, the one who brought his own take on Southern Style wrestling to prominence. A good argument can be made that Hiroshi Tanahashi is the greatest wrestler ever. I have never seen anyone captivate a crowd during a match like he does. Ever since his match with Goto in 2007, he has been able to manipulate every little emotion in the fans at his whim. His record-breaking 2011 title run is a delight to watch back. His 2012 match against Minoru Suzuki is an all-time classic in selling and psychology. His legendary years-long and multi-chapter feud with Okada will be remembered a century from now. But it was Tanahashi's 2018 campaign that made realize he might be the greatest wrestler I have ever seen. At the start of that year, it was well-known that Tanahashi had a permanently damaged rotator cuff and arthritis in his knee. Everyone thought his best days were behind him. But that year was perhaps his finest. Every big match was rife with emotion, with the fans nearly in tears, practically begging for him to have one more run at the top. Suzuki, Ibushi, Okada three times, Tanahashi wrestled as well as he ever had in all of these matches, and he showed that he wasn't going to slow down. Even today, he can have a classic bout in the main event. Precious few have been so outstanding for so long."
Rating: 10.0
Sentiment: 0.28973232323232323
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Brutish Dandywrote on 13.04.2022:[9.0] "Tanahashi's an outstandingly charismatic performer but the majority of his main event bouts from 2012 onwards seem to fall into Same Match, Different Day. How many more times do I need to see him do the crossbody to the floor followed by the dragon screw through the ropes, the high angle Texas cloverleaf, and then the third act that consists of a strike battle, two to four slingblades, and a high fly flow double tap that invariably gets countered? Now tell me - how many of his matches did I just describe? That said, dude's great at his job and I can't fault a formula that works."
Rating: 9.0
Sentiment: 0.3143589743589743
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: GreatAether531wrote on 11.04.2022:[10.0] "Maybe the greatest of all time and on my personal wrestling Mount Rushmore. No one captures the spirit of what it means to be a hero better than the Ace, and the sincere love Tanahashi is able to elicit from a crowd makes him feel like a superhero walking the earth. At the same time, he's added shades of complexity to his character that reveal he's also an all-time adaptor, switching to playing the heelish veteran at times in his feud with Okada to showcase his desperation with holding onto his Ace status or his aggression when fighting Ibushi to communicate his frustration over Ibushi's lack of commitment to the company that helped elevate him. I'm sometimes critical of the bloated epics that have weighed down New Japan's match quality in more recent years, but when Tanahashi is in the position to wrestle that sort of match, nothing compares because there just isn't anyone who matches Tanahashi's energy and emotion. The fact that he's held together by duct tape and glue and still manages to produce some of the best matches of the year when push comes to shove is a testament to how incredible he is. I don't know how many more matches he has left in him, but regardless, being able to watch Tanahashi's main event run in the 2010s rekindled my love for this crazy pastime and I'll always be thankful for it."
Rating: 10.0
Sentiment: 0.31579430670339764
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: NeoSwas36wrote on 23.03.2022:"Tanahashi helped put NJPW on the map to where they wouldn't die. What he did for the business is remarkable, and he helped develop NJPW's training morals from utter shit to decent. Love this man, easily the greatest."
Rating: No rating found
Sentiment: 0.3785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Ualightningwrote on 26.01.2022:"[10.0] A true legend and probably the reason NJPW kept going in the 2000s. Charismatic, great looking, and above all a stellar pro wrestler. It's always exciting for me to watch a Tana match even in these whacky pandemic times for New Japan. A historic IWGP H/W Champ, love the ACE!"
Rating: No rating found
Sentiment: 0.329040404040404
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: SauzPauzwrote on 22.01.2022:[10.0] "The ACE of New Japan. The first time i ever saw a Tanahashi match i could feel the star energy and charisma he had and plus he was good in the ring as well. A GOAT of professional wrestling. Evrey single aspect in wrestling Tana checks and it's impressive. Even though only being 45 he still great in the ring. A 10 for me."
Rating: 10.0
Sentiment: 0.36436688311688314
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: GriffinXwrote on 20.01.2022:[10.0] "The man who saved New Japan and carried it to its latest golden era. Even know with year of wear and tear on his body he can still turn back the clock and but on a classic"
Rating: 10.0
Sentiment: 0.2206060606060606
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: rhys4peacewrote on 11.01.2022:[10.0] "Hiroshi Tanahashi, the once in a century talent, the ACE of New Japan Professional Wrestling and the heartthrob of thousands of men and women across Japan for the last 20 years. I can't say much about him that hasn't already been repeated ad nauseam, but I'm going to anyway, because Tanahashi deserves each and every bit of praise he has ever and will ever receive. Tana can captivate and manipulate a live audience like a potter moulds clay; his babyface comebacks in matches elicit massive roars and stamping from the crowds, and on the rare occasions he plays he heel, he has the audience booing him to hell and back. And on top of that, he's also one of the best in-ring workers in modern history. Equally skilled in bombastic showboating and gritty mat based wrestling, there's not a style or opponent that he couldn't match in his prime. Unfortunately, these last few years age and injury have swiftly crept up on him, but even in his current battered state he still stands head and shoulders above his peers."
Rating: 10.0
Sentiment: 0.13181818181818183
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: BradJohnson34wrote on 06.01.2022:[1.0] "Despite how beloved and critically acclaimed he is, my friends and I have never understood the hype around Tana. For me, it's his move-set that really bores me--splash, dragon screw, the slingblade, and not much else. I also find his character to be static."
Rating: 1.0
Sentiment: 0.25999999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: NoSellwrote on 21.11.2021:[10.0] "One of, if not the greatest in ring perfomer of all time (at the very least top 5) and the man that led NJPW out of the dark mid 2000's. He's 45 still putting on classics and his rivalry with Okada is absolutely legendary. Love him."
Rating: 10.0
Sentiment: 0.3514285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TheBeardedBaronwrote on 14.11.2021:[10.0] "I legitimately don't think there's a single aspect of wrestling that this man isn't simply outstanding in. One of the three greatest of all time."
Rating: 10.0
Sentiment: 0.4761904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: IBladeDailywrote on 20.10.2021:[10.0] "An absolute legend in his own time that will be remembered for decades after he retires. Hiroshi Tanahashi is one of the greatest in-ring workers, storytellers, white meat babyfaces and ring generals in the history of this business. His connection with fans worldwide is incredibly special. He's had all-time feuds with Kazuchika Okada, Shinsuke Nakamura, and Katsuyori Shibata. His Wrestle Kingdom main event against Kenny Omega in 2019 was nearly perfect. His G1 final match against Kota Ibushi in 2019 was the same. He can take a loss without losing any steam at all and has been extremely unselfish in putting over younger talent. There's only a few people with his accolades or abilities in the history of wrestling. He belongs in the GOAT conversation."
Rating: 10.0
Sentiment: 0.23067765567765564
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Stern Jwrote on 06.10.2021:[8.0] "Ok I'm in the minority on this but i think Tanahashi is overrated BUT this should not detract from how good he actually is, like years ago during the late 2000s/early 2010s he was overrated and booked to be New Japan's John Cena (there's a reason LOL TANA WINS became the meme it was back in the day) but as he grew older and more experienced he showed that he honestly had mastered the basics to a point where even his usual routines have has so many variations that i can't in good faith crap on the man like i did when he was SUPER TANA. Hiroshi Tanahashi, i respect you and even though it took me a better part of almost 2 decades of watching you go from over pushed buff guy who had some of the dullest matches imaginable to being a master of subtleties and managing to even make your weaknesses non existent at this point says alot about how people can grow and change for the better and overcome preconceptions and learn...though i was still salty that one time he beat Okada when clearly it was Okada's time but hey ho i'm not allowed to critique GEDO's booking right? Tanahashi deserves all of the 5* matches he's had :)"
Rating: 8.0
Sentiment: 0.2987308146399055
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: KENTAfanwrote on 04.10.2021:[10.0] "It? s difficult to actually articulate just how good Tana is, words can? t really do him justice. He? s indubitably one of the greatest wrestlers of all time, I don? t think that? s even debatable, he is quite simply a legend. The fact that he is STILL as good as he is, putting on 5* classics at 44 like it? s nothing, is mind blowing. Solid contender for GOAT"
Rating: 10.0
Sentiment: 0.26249999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: No Onewrote on 06.09.2021:[10.0] "One of the greatest professional wrestlers of all time. One of the greatest in-ring performers of all time. The ACE of NJPW. Has the aura of being the ACE as well. One of the greatest Babyface wrestlers of all time. One of the most accomplished wrestlers of the 21st Century. Legendary IWGP Heavyweight Champion. Was the greatest IWGP Heavyweight Champion of all time, until his records were broken by his legendary rival, Kazuchika Okada. Has held every modern NJPW Championship Belt currently available. Is a 3x G1 Climax Tournament Winner. Has put on matches that will withstand the "Test of Time". One of the best Ring Generals of all time. Has given his heart, body, & soul to NJPW and his body has paid a heavy price for it, as he had suffered many well known injuries. Was an outstanding all-rounder wrestler who became one of the best formulaic wrestlers, due to having to adapt his style because of the rough shape his body is in. At one point in time, was considered the very best in-ring performer in the world (from the late 2000's to the early 2010's). Legendary rivalry with Kazuchika Okada. The most reliable wrestler in NJPW history. Innovated The Sling Blade. Is still one of the top in-ring performers in the world over the age of 40. Highly charismatic. Naturally charming. Has spent his entire career with NJPW, and really helped them out of dark periods. Extremely loyal to NJPW. A Living Legend."
Rating: 10.0
Sentiment: 0.40759803921568627
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Kungwrote on 19.08.2021:[10.0] "The man who with Daniel Bryan made me the pro wrestling fan I am today. The Ace of New Japan is one of the greatest to ever lace up a pair of boots."
Rating: 10.0
Sentiment: 0.5681818181818181
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: FAZEDandCONFUSEDwrote on 11.08.2021:[10.0] "Might be the greatest wrestler of his era, and the case is there for all time as well. To this day he is still amazing."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Drachmwrote on 26.07.2021:[10.0] "A living legend. Even with a beat up body and growing older he can still perform at the highest level."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: BrayanLaPrewrote on 15.07.2021:[10.0] "A GOAT candidate with quite a few arguments in his favor. Hiroshi Tanahashi helped revitalize New Japan Pro Wrestling and has overcome a slew of injuries to prove that he can still hang with the best of the new generation. An icon of the industry with countless classics under his belt, Tanahashi is the epitome of a five-star wrestler."
Rating: 10.0
Sentiment: 0.21454545454545454
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: JMercwrote on 10.06.2021:[10.0] "One of my absolute favorites in Japan and the guy responsible for revitalizing Japanese Pro Wrestling in the past decade."
Rating: 10.0
Sentiment: 0.037500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: BlakeFR37wrote on 02.06.2021:[10.0] "The Ace of NJPW. He is one of the wrestlers who makes me love Puroresu. However he's in singles action, or in tag team, that's always a pleasure."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: JBWrestlingwrote on 18.04.2021:[10.0] "Hiroshi Tanahashi will go down as one of the greatest in ring performers in the history of pro wrestling. He also saved NJPW from their dark era in the mid 2000s. Even as he is in his 40s he still puts on five star matches. The day he retires will be a dark day in pro wrestling, and will be remembered as one of the greatest of all time."
Rating: 10.0
Sentiment: 0.25740740740740736
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: math1823wrote on 05.04.2021:[10.0] "If we only speak about active wrestlers, Tanahashi is probably the best of all time. His in-ring is amazing, his promos are always fire and most importantly, this guy can tell a story like no one else and make everyone feel emotions, from his biggest fans to the people who discover him. He is probably top 5 all time, I only see Manami Toyota, Kenta Kobashi, Mitsuharu Misawa and Toshiaki Kawada who were once on his level. He has a few more years to wrestle, and even if he currently holds the NEVER title, I want him to get his hands on the new IWGP World Heavyweight title soon or later, because it would be symbolic to have the man who, alongside Okada, took the former belt from the bad situation it was in with Inoki-ism and stuff like that to the most prestigious belt in the world have that new belt."
Rating: 10.0
Sentiment: 0.19055258467023173
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: marexcelwrote on 21.03.2021:[7.0] "Niemand wird leugnen, dass Hiroshi Tanahashi ein fachlich sehr guter Wrestler ist. Das möchte ich auch nicht, aber darüber hinaus sind da für mich doch ein paar Lücken dabei. Sein Charisma ist unstrittig, aber genauso festgefahren ist dann eben auch sein Charakter. Da tut sich nicht viel und in all den Jahren, die ich New Japan verfolge, wird er immer langweiliger. Für mich ist er kein Face, dem ich zujubeln würde. Seine Matches haben alle ein Schema und sein Moveset langweilt mich meistens etwas. Natürlich bleibt er ein guter Wrestler, aber ich kann mit ihm eher wenig anfangen - trotz seiner Klasse."
Rating: 7.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ExcitingProWrestlin3wrote on 16.03.2021:[10.0] "Tells a story, sells beautifully, lead a company out of it's dark ages with a guy like Giant Bernard and the rest of the New Japan roster, fluid in the ring, connects with audiences naturally, doesn't seem forced, has god given athletic prowess, amazing character work at his peak, WHAT AN ABSOLUTE LEGEND! Go Ace!"
Rating: 10.0
Sentiment: 0.17209595959595958
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Bushidospirit22wrote on 16.03.2021:[10.0] "Arguably the best wrestler of the past 15 years. In addition to being so fluid in the ring, there haven't been many wrestlers in history who have been able to connect with an audience like Tanahiashi. His run as NJPW ace has been so iconic, most overlook the cocky heel work he did early in his career which is some of the best character work I've ever seen, and made me a fan immediately."
Rating: 10.0
Sentiment: 0.365
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: rainmakerpunkwrote on 11.02.2021:[10.0] "The man that carried NJPW and kept it alive in its darkest days and the also one of the main reasons it thrives today, NJPW for the last 8 or 9 years has been the best promotion ever, and you could thank the ace for that, he's been having 5 star matches for many years now, he can still have them now, he has a great moveset and each move in that moveset he has truly mastered, that plus his unmatched charisma and GOAT tier psychology leads him to be a in-ring master, he's a very lovable face and is a top 5 GOAT"
Rating: 10.0
Sentiment: 0.4645833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Luna100wrote on 08.02.2021:[10.0] "The man who I first gravitated towards when I first started watching New Japan, when I first started watching it was for Omega vs Okada at Wrestle Kingdom, at age eleven I watched it with my dad who had seen that Omega vs Okada got 6*, he obviously wanted to watch the match, but I suggested we might as well watch the full show and it was great, and I got to his match and I saw Tanahashi; he looked like a star and I took an instant liking to him. Then I saw Naito, he portrayed his uncaring nature well and came off as arrogant and was very clearly the heel, especially as I saw him drag around the Intercontinental belt, that action disgusted me and when I heard the commentary team that Naito was planning to get rid of the IC belt I was outraged ( I cared more about the IC belt then than now after it being joined at the hip with the world belt ) and although I did not know the belt I knew I did not want to see him go. It was one of the clearest heel face divide in the whole show, he also turned out to be one of the greatest babyfaces of all time, of course it was a great match and he became my favourite wrestler in the company, even above Okada or Omega, despite not being able to understand what he was saying and I don't think they had translation either, he was still charismatic as hell. Although I eventually started to prefer other wrestlers above him, I still loved his work, I gained even more respect for Tanahashi as I learned he was one of if not the most important factors in making sure New Japan did not go under, it is sad to see him go down the card and become like Makabe or Nagata, he is such an amazing worker and I will always have him as my first NJPW favourite."
Rating: 10.0
Sentiment: 0.19329916815210932
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Burninghammercriticwrote on 01.02.2021:[10.0] "One of the most influential wrestlers ever. He is a master in every field that makes a wrestling match great. He helped put NJPW on the map and make it the go to company for current quality wrestling. The guy is just incredible. Id give him 11 if I could."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Thebossofthegym04wrote on 04.01.2021:[10.0] "Greatest wrestler ever. It is a fact. Tanahashi is an incredible person who commands immense respect. His contributions to pro-wrestling and NJPW in particular are enormous. He is an example of the perfect wrestler. Charisma, ring-skill, mix-skill, gimmick, storytelling are all at the highest level. He puts his soul into every match and squeezes the maximum out of the opponent, often showing the opponent on a good side. thanks to these qualities, he is able to show a good match with any opponent. Of course it's a pity that we are witnessing the decline of his career, but I really hope that at the end of his career he will be given the title rain. I will tell my children and grandchildren about this incredible person."
Rating: 10.0
Sentiment: 0.47435897435897445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: michmoose21wrote on 26.11.2020:[10.0] "The ACE is a top 5 wrestler of all time in my opinion. He wrestles with so much psychology and is so amazing in the ring. You also can't forget how great he is outside the ring. Class act. He does a great job making his matches feel like a big deal. He always sells what he is supposed to and takes the right approach to the business."
Rating: 10.0
Sentiment: 0.39821428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: medousewrote on 29.10.2020:[10.0] "It's hard to find another wrestler who literally lives and breathes pro-wrestling. The hardest working guy in business and the perfect baby-face. There is no man on this planet who could hate or even dislike this guy. The true face of NJPW and because of him I started watching this company."
Rating: 10.0
Sentiment: 0.0645833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Scott Kobayashiwrote on 25.10.2020:[10.0] "Tanahashi is just someone who if you give anything less then a 10, then you are doing the man a disservice. With all the respect in the world to people like Nakamura and Nagata, it was Tanahashi who brought New Japan Back. And in the process gave excellent match after excellent match. Easy 10. EDIT: The BUSHIROAD main eventer should hang there head in shame. I am talking to you Tetsuya, Kota, and especially you Kazuchika, because this man is outperforming all of you. In 2020, Ibushi and Naito have been really good and Okada has been fine, but Tana has been excellent. He is still a 10 performer no matter what the guy under me said. Him, Shingo, and Suzuki are the best in New Japan this year. The 38, 43, and 52 year old are the best in the company. Wow."
Rating: 10.0
Sentiment: 0.4389204545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: STARDOGCHAMP90wrote on 21.10.2020:[8.0] "The Ace has carved his spot in NJPW history as one of the most memorable IWGP Heavyweight champions of all time. He's been at it for years and hasn't stopped. A former 8 time IWGP Heavyweight champion, 2 time IWGP Intercontinental champion, and 3 time Never Openweight 6 Man Tag Team champion. Not to mention the gold he's won outside of New Japan. Nothing but respect for Tanahashi."
Rating: 8.0
Sentiment: 0.22727272727272724
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: elcompactowrote on 19.10.2020:[10.0] "One of the best competitors of this age and, indeed, of all time. His connection to the fans, his near peerless storytelling abilities and ability to remain relevant and consistently excellent in everything he does (even with a series of injuries that would've taken many to the filler matches on the card) has more than earned him a spot in the conversation for all time best. Deserving of nothing less than a 10."
Rating: 10.0
Sentiment: 0.548148148148148
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TOUGH AND HARDwrote on 03.10.2020:[10.0] "To say the current generation wouldn't have the platform they do without the near-peerless excellence and tireless sacrifices of Tanahashi Hiroshi is not a matter of opinion, it is an economic fact. NJPW's revival (from its late-2000s near-bankruptcy) and ascent to the second largest wrestling company in the world (and subsequent Bushiroad acquisition) was shouldered by this great man. A growing influx of current fans to NJPW seem more interested in raw work-rate and athletic diversity. It is precisely this basis that names like Okada are placed alongside Tanahashi as the "greatest". Tanahashi is so much more. Tanahashi is natural (superior) draw, he has presence, magnetic charisma, dynamism, has consistently kept himself in amazing shape (even despite his accumulation of serious injuries), radiates passion, can have great matches with virtually anyone (a distinction often too liberally thrown around), is dominant enough to be a threat but vulnerable and sympathetic enough to hold your interest and honor his opponent; he can work face or heel, has arguably the greatest psychology in wrestling history, and has a relationship with the fans rivaled only by the likes of Kobashi Kenta. His speech-closing slogan is literally "I LOVE YOU! ", and fans revere him, literally reaching out to kiss and hold him, wiping the sweat from his brow, children hug him, and he's loved by all demographics and age groups. Tanahashi is so much more than a catalog of impressive matches. Tanahashi is a ring general who doesn't need to lean on a drawn-out, formulaic approach, nor need an opponent to keep him interesting. He looks and feels like a champion, and even in his mid-40s is still voted (by fans) as the most popular wrestler in Japan. Tanahashi has said that it was the bodily sacrifices of men like the Dynamite Kid who inspired him to become a professional wrestler, and that he would gladly sacrifice his body to inspire the next generation of talent. Tanahashi is a natural leader, and has done far more than merely inspire a generation, he has transcended his own (such that Ibushi Kota literally refers to him as a god), and is the gold standard to measure others against. He is the most complete professional wrestler of all time, was the victor of the greatest bout I've ever seen (G1 28 Finals), and is the only man I would place higher than Kobashi Kenta. Tanahashi Hiroshi is the greatest professional wrestler of all time."
Rating: 10.0
Sentiment: 0.2843775197548782
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Okaro143wrote on 21.09.2020:[10.0] "The Ace of New Japan, I can't deny how good this guy is. His matches with Okada was the reason I started watching wrestling again. He was the one that saved New Japan during their darkest moments. His rivalry with Okada is considered by many and myself as the greatest rivalry in pro wrestling history. One of the best wrestler not only in New Japan history but also in all of professional wrestling."
Rating: 10.0
Sentiment: 0.4121212121212121
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ERockwrote on 12.09.2020:[10.0] "One of the greatest wrestlers of all time. Endless charisma and in-ring ability. Even with his body breaking down he is capable of pulling you into his matches with emotion and drama. Truly a 1/100 Talent."
Rating: 10.0
Sentiment: 0.22986111111111113
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: hassan01wrote on 10.09.2020:[10.0] "The ace for a reason . His contributions to wrestling are worth praise . Very hardworking and a very very charismatic wrestler . Other than that his in ring work is very enjoyable and worth a whole lot of appreciation. He has given the fans some of the greatest wrestling matches in Japanese wrestling history . Even when he retires he will be remembered as a wrestling icon ."
Rating: 10.0
Sentiment: 0.35277777777777775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Ma Stump Pullerwrote on 18.07.2020:[10.0] "Tanahashi will be likely considered after his eventual retirement to be one of the greatest wrestlers in Japan ever. The guy literally held New Japan on his back for years on end while the company went through recessions, management issues, and horrible booking. Despite all of this trouble, the guy managed to make multiple amazing matches with whoever came into the ring with him. Despite his obvious physical gifts, Tanahashi is also able to bring a masterful understanding of physical psychology, and can really act as both the beloved hero or the disrespectful antagonist. He's a great seller as well, which adds to how successful his babyface run became over the years. He can make literally anyone he's facing off against look like a million bucks. Granted, while he is starting to visibly slow down (being years beyond his prime at this point considering his many injuries, a consequence for going all out for years) he is regardless still able to employ his skills and experience in the ring to still catch that magic he had years ago. Some of his early stuff isn't the greatest quality wise due to him not being experienced enough, but the vast majority of his career is full of solid, consistently great matches with all kinds of wrestlers."
Rating: 10.0
Sentiment: 0.277448729721457
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: jboyaquarwrote on 26.06.2020:[10.0] "One of the best-ever Babyfaces who, over-the-years, steadily picked-up his game into one of the most persuasively emotional competitors ever. Though physically he's been on-the-decline since '14, noone captures the gleeful boyish enthusiasm for this sport like this dependable twenty-year NJPW veteran. By the start of NOAH, Misawa already looked like a miserable, though obliging, curmudgeon. Similarly, Tanahashi can't fly/move-about like his past, but as his company's top draw, he has never lost his love for the game. My first-ever live Tanahashi experience was KOPW '11 in a ballet masterclass against Naito (who has also compensated well for his physical shortcomings, ) and even high in-the-rafters at Koukigan, not an enviable location, his glow was undeniable and made me forget how far-away I was. Whereas Jericho had to become a rock star to become a true professional wrestling top-draw, Tana is a rock star as a pro-wrestler."
Rating: 10.0
Sentiment: 0.021354723707664877
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: VillainClubwrote on 12.05.2020:[10.0] "Der Mann der mein Interesse am Wrestling wieder geweckt hat und mich nach wie vor fasziniert. Seine Matches sind, trotz seine kaputten Körpers, immer noch sehr gut. Zudem gibt es wenige die ihm im Selling das Wasser reichen können. Einer der besten Wrestler aller Zeiten. Tanahashi hat New Japan wieder aufgebaut in dem er schlicht aus jedem das beste rausgeholt hat."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Espio1332wrote on 20.04.2020:[10.0] "When I first got into New Japan Pro Wrestling in mid 2015, Hiroshi Tanahashi was the man that really captivated my interest and truly showed me just how good NJPW is, causing me to just binge-watch his matches and as a result I learned more of the roster that way. And the more I learned about him and his role in the company, the more my respect for the man grew. He is a truly loyal company man and one of the greatest wrestlers of the past decade. While right now he is definitely past his physical prime and is held together by sheer willpower, his psychology and charisma more than makes up for it."
Rating: 10.0
Sentiment: 0.2753382034632034
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Cleanerwrote on 03.04.2020:[10.0] "Hat mittlerweile wirklich Legendenstatus erreicht und liefert immer immer weiter grandiose Leistungen im Ring ab. Ich krieg gute Laune, wenn er nur die Arena betritt und sobald der Gong geschlagen ist hat mich "The Ace" schon in den Bann gezogen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Oregano Jacksonwrote on 16.03.2020:[10.0] "Okada certainly couldn't have carried NJPW to such heights without the foundations established by Tanahashi. Through his charisma and athleticism, The ace helped NJPW rise to prominence by constently putting on classic bouts with literally everyone with his matches with Okada being some of the absolute best of the decade. Although injury and age have slowed him down physically, he's never been more psychologically sound and now rivals Shawn Michaels as perhaps the greatest in-ring storyteller ever."
Rating: 10.0
Sentiment: 0.3325396825396825
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: jdawgwrote on 16.02.2020:[10.0] "He's just a favorite. The drama to any match he's part of is automatically elevated to super importance. Great look and moves well despite being in physical decline. Great wrestler."
Rating: 10.0
Sentiment: 0.4866666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: AndoCommandowrote on 23.01.2020:[10.0] "His decades-long body of work and influence on NJPW and modern Japanese wrestling makes a pretty compelling argument for the title of "Greatest Of All Time". Match structures that age like fine wine, an undeniable charisma in his presence and masterful understanding of psychology bleeding into every one of his matches. My pick for the Wrestler of the 2010's (Okada is a close 2nd)"
Rating: 10.0
Sentiment: 0.3958333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Denpa Popewrote on 07.11.2019:[10.0] "From up and comer to prime Ace to the Legend we know now, there was no time Tanahashi was not great. Old NJPW, NOAH, New NJPW. Consistently the smartest worker with the deepest understanding of psychology, able to go at it with just about anyone and in any style. There is barely a wrestler that Tanahashi crossed roads with at this point that he did NOT have a classic match with. Though he slowed down the last couple of years, you will barely found anyone who did that as gracefully as the once in a 100 years talent."
Rating: 10.0
Sentiment: 0.06974747474747475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Iceqwrote on 09.10.2019:[10.0] "Die Bewertungen sprechen für sich. Hat New Japan gerettet und danach Jahrelang weltklasse Performances gezeigt. Tanahashi hat natürlich in den letzten Jahren ein bisschen nachgelassen und der einzige Grund ist einfach das er älter wird. Trotzdem zeigt er auch noch jetzt geniale Matches und charismatisch ist er immer noch. Wenn es um die besten Babyfaces aller Zeiten geht gehört Tanahashi eindeutig zu Diskussion dazu."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: taabr2wrote on 31.08.2019:[10.0] "Tanahashi is one of the most smartest workers in wrestling today. Probably the nest storyteller in the ring that is still active. Tanahashi is amazing at drawing sympathy from a crowd and getting them to rally behind him, however on rare occasion Tanahashi can play heel as well if need be. His run as Ace of NJPW is one of the most important periods of the promotions history, the company was near bankruptcy and Tanahashi lifted the company back into the number one spot in Japan. Now NJPW is doing the best business it ever did with Okada and Naito on top, both of whose careers was made in large part because of their relationship to Tanahashi, NJPW would not be where they are today without him. Not only was Tanahashi a top drawing level Ace but an Ace who was able to secure the future after he was gone, not many top stars can actually say that. Hiroshi Tanahashi is a wrestling legend and one of the most important figures in wrestling history."
Rating: 10.0
Sentiment: 0.2786796536796537
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: KyleEnjoysWrestlingwrote on 30.07.2019:[10.0] "Where I think Okada is greatly overrated today, I do not say the same in regards to Tanahashi. He is a great storyteller in the ring & has a vast moveset. Has had heaps of classic matches against a plethora of different talents on the NJPW roster. And he has the best hair in wrestling today."
Rating: 10.0
Sentiment: 0.3952380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: NEVERoverweightChampionwrote on 01.07.2019:[10.0] "A legend and one of the best of all time. Charismatic, beloved, great physique, awesome music... he is the greatest hero, the perfect babyface. He knows how to put a match together better than anyone, how to make every move feel important, he is one of the best (if not the best) in psychology. His moveset can work in every dynamic, face or heel. Even past his prime and in poor physique condition he can still put some legendary match from time to time and that's a testament to the genius he is, at the point that 2018 was probably one of his best year because he had one of the hottest underdog story I've ever seen. There is definitely nobody like The Ace, he is the soul of New Japan."
Rating: 10.0
Sentiment: 0.577020202020202
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: PuroresuLoverwrote on 14.06.2019:[10.0] "Another wrestler that I forgot to rate. Hiroshi Tanahashi is the personification of the word "perfect", he has everything to be one of the GOATs, he knows everything about wrestling, he can do everything! He is an born babyface, but can portray an awesome heel (his matches out of NJPW proves my point). Tanahashi really is the Once in a Century Talent, he has everything to be any company's Ace."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: SrHunterwrote on 26.05.2019:[10.0] "There is not much to say about this guy, just one of the greatest wrestlers of all-time and one of my favorites, simples as that."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: My Bloody Doobwrote on 20.05.2019:[10.0] "There was a time when I was over Hiroshi Tanahashi. I used to think he kept winning matches that he either didn't need to or shouldn't have won. What I'm trying to say is there was probably a point where he should've stepped out from the spotlight already, or at least I thought. The character of Tanahashi presents himself as perfection, yet I would call him one of the most flawed wrestlers ever in regards to character work which is why he eventually became one of my favorite wrestlers ever. His rise to the top was by no means an easy one. From his wars against his fellow musketeers Shibata and Nakamura, to his wars with previous generation rivals like Nagata, Kojima and Mutoh to rivals after his generation like Okada and Naito. It really felt like every step of his long and painful climb to the top meant something important in the history of Puroresu. Along the way he had to step on and over people even fighting against his own hypocrisy to achieve the title of "Ace". Eventually it clicked in my head that there wasn't anyone on the roster who could've held up New Japan on their shoulders with such grace like this man. In regards to his wrestling skills, he just understands completely what it means to just "do" good pro wrestling. I don't think this comment will ever do justice to how much I appreciate this man."
Rating: 10.0
Sentiment: 0.13765151515151514
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "The ace! Tanahashi has always been a top star in NJPW and at 42 he still puts on amazing matches. He has an huge connection to crowds and his charisma shines bright in everything he does."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: AJStylopzwrote on 06.04.2019:[10.0] "Tanahashi truly is one of the GOATs of the Puroresu scene. One of the most iconic wrestlers ever. I love his old school style of wrestling, he is a good seller for the most part, he can get to higher paces during a match, busts out some of the nastiest looking suplexes I've seen, has a tremendous finisher, he is truly one of the best. This man deserves nothing less than a 10."
Rating: 10.0
Sentiment: 0.4216666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: zephyrwrote on 16.03.2019:[10.0] "The ace of the universe. The once in a century talent. In a rather interesting twists, these aren't just nicknames for a wrestler - they're factual statements. This man pretty much singlehandedly carried NJPW through and out of its darkest era."
Rating: 10.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Oliver95xwrote on 01.03.2019:[7.0] "Ich mag Tanahashi. Er hat Charisma und auch soweit gute Matches. Jedoch finde ich ihn im Ring einfach zu langweilig. Ich habe das Gefühl das seine Matches immer die gleichen sind.  Als würde jedes Match mit ihm den gleichen Aufbau und die gleiche Struktur haben. Es ist einfach immer das gleiche."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Aurtletheturtlewrote on 24.02.2019:[10.0] "An underdog for the mantle of greatest of all-time. The Ace of the Universe is possibly the greatest babyface of all-time as he perhaps the only one to be universally loved throughout the entirety of his run. With endless charisma, boundless talent and unbelievable heart! It's easy to see why he is an 8 time IWGP World Heavyweight Champion when he continues to this day, in his 40s, to perform at an extrodinary level. One of the most important wrestlers in Japanese history. GO ACE!"
Rating: 10.0
Sentiment: 0.2829861111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Kevin41182wrote on 14.02.2019:[10.0] ""Tana" is definitely up there for the best workers in the history of puroresu. the "ace" really knows how to put on a stellar match with anyone he's in the ring with. Not to mention he literally pulled New Japan up from the dirt that Inoki laid."
Rating: 10.0
Sentiment: 0.31727272727272726
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: LandonRyanWyattwrote on 27.01.2019:[8.0] "Definitely Japan's greatest sensation of this generation. Has cemented his place in wrestling history in the most positive of ways."
Rating: 8.0
Sentiment: 0.4318181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ReedPryorNYwrote on 17.01.2019:[10.0] "Hiroshi Tanahashi is THE big match wrestler of this generation. If you give this man a main event, you're only going to get an installment of something that is as epic as it is unique. He has worked all-time classics with so many of New Japan's finest, it is scary to think of the current match-ups he can have for the IWGP Heavyweight Title if New Japan sticks with him for a good amount of 2019. Just to name a few great matches-vs Minoru Suzuki on 10/8/2012... vs Kazuchika Okada on 4/7/2013, 1/4/2015, 1/4/2016, 8/12/2016, 5/4/2018, 8/10/2018, 9/23/2018... vs Tomohiro Ishii on 8/2/2013... vs AJ Styles on 8/14/2015... vs Shinsuke Nakamura on 8/16/2015... vs Kota Ibushi on 11/5/2017 and on 8/12/2018... with Will Ospreay vs Kenny Omega and Kota Ibushi on 12/15/2018... against Kenny Omega on 1/4/2019."
Rating: 10.0
Sentiment: 0.17033799533799535
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Cibswrote on 13.01.2019:[10.0] "For me Tanahashi is the last great legend of New Japan. Incredible wrestler, his storytelling and psychology are pure gold to the degree that it can become really dramatic to see him up in the ring thanks to the way he gets you involved. His matches don't need inflated ratings to feel epic."
Rating: 10.0
Sentiment: 0.2396645021645022
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: KINGwrote on 09.11.2018:[10.0] "The Ace of the Universe, his ability to deliver epic matches with everyone is almost scary, he will bring the best out of everyone, able to be the suffering babyface against Suzuki but also the angry veteran against Ibushi, there's nothing he can't do except being a heel because nobody would dare boo him, but against Okada he proved he can be a bad guy as well, explosive and strong, with his power declining he constantly improved when it comes to psychology, at New Beginning against Suzuki he looked injured for real. A real pop icon in Japan, the Japanese not John Cena, but Hulk Hogan, but talented lol"
Rating: 10.0
Sentiment: 0.16212121212121214
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: RatingsMachinewrote on 15.10.2018:[10.0] "Hiroshi Tanahashi is so great that despite his physical limitations, he is still capable, through storytelling and psychology, to have incredible matches. Because Tanahashi can't do everything he used to, some people have decided that that means he isn't as a good as he used to be, but nothing could be further from the truth. Hiroshi Tanahashi is still one of the best going, and a certified legend and hall of famer."
Rating: 10.0
Sentiment: 0.5142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Speeblewrote on 23.09.2018:[6.0] "I never really got Tanahashi when I first started watching NJPW, but I wanted to hold off judgement until I'd seen enough big matches. A couple years later, I still don't get him. His "charisma" feels really forced and the air guitar gimmick is not endearing at all. Among the elite wrestlers in NJPW, his matches often come across as the most formulaic. I can't get into a match where I can practically predict the whole thing beat-for-beat. At least Okada tries to mix up his finishing sequences. Tanahashi's contributions to the business are undeniably important, but that doesn't make me enjoy watching him as a performer any more."
Rating: 6.0
Sentiment: 0.08000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: KOR KOMBATwrote on 19.08.2018:[10.0] "The best, period end of story. The Ace has been amazing for as long as I have been watching NJPW. When him and Okada get in that ring they can do no wrong."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ohnoeswrote on 31.07.2018:[8.0] "There's a lot that I like about the Ace. His music (both the old and new), his entrance, his poses, his attire, the air guitar, his likeable character, his hair. And yes, I like his in-ring work... but for the life of me, I can't figure out why I don't like him more than most. He can put on consistently good matches with almost anyone, and has had several memorable feuds and matches with the biggest names in New Japan over his lengthy career, but I usually go away from his matches not knowing what to say about them. I sometimes forget parts of his matches, and what he did in them besides his signature moves. His forearm exchanges are usually pretty weak-looking, or at least they do when the likes of Shibata, Ishii and Suzuki are there to make the entire venue hear the impact. He's deeply rooted in his own approach and philosophy to puroresu, and while I like that from Shibata, I unfairly like it less from Tanahashi. Regardless, I'm still a fan of him, and deeply respect everything he's accomplished. Tanahashi is deserving of all the praise he's given, and all the accolades bestowed upon him. He did carry New Japan when it desperately needed someone to do so, he's been such a key player for so long. When he finally retires (whenever that might be), although there are future 'aces' that will come along to carry New Japan, there won't ever be another 'Ace' quite like him."
Rating: 8.0
Sentiment: 0.09736251402918071
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Wrestling Foreverwrote on 11.06.2018:[10.0] "Tanahashi ist immer ein Granat für fantastische Matches. Er hat es einfach drauf. Sein Wrestling Style ist unfassbar sauber und éinfach nur klasse. Sein Einmarsch ist immer ein Highlight, High Energy ist so ein klasse Song. Er ist unfassbar charismatisch, total sympatisch und einer meiner absolut Lieblings Wrestler aus Japan. Schon jetzt eine absolute NJPW Legende. Edit: 11. 06. 2018 Hiroshi sieht man nun sein Alter an und er hat schon mit einigen Verletzungen zu kämpfen trotzdem hat er es immer noch drauf."
Rating: 10.0
Sentiment: 0.12
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Makai Clubwrote on 02.06.2018:[10.0] "How I haven't rated Tanahashi yet, I do not know. Hiroshi Tanahashi is no doubt one of the best wrestlers in the past 20 years. Someone who has filled loads of roles, ace, passer of the touch, someone who makes other look good. He can do it all and more. Highly charismatic and the way he shows it off within the ring and in presence is something to behold. Amazing wrestler,  basically popularized the modern day new japan style. Great pacing, great structure and psychology towards all of his matches. Sometimes he spams the HFF too much and has a tendency to no sell but he makes up for it in other ways. Very good at building drama and tension within his match and has a way of sucking you into the most tamest of near falls. Saved New Japan in the mid 00's and helped usurer in a new and very successful era for New Japan. GO ACE!"
Rating: 10.0
Sentiment: 0.37566115702479336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: InactiveGuruwrote on 01.06.2018:[8.0] "Tanahashi is known as the Ace of Japan. He is incredible in the ring and he just radiates charisma. I am hoenstly baffled why I don't like him more than I do."
Rating: 8.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ACRogerwrote on 30.03.2018:[10.0] "At a time when Japan was lacking legitimate stars, Hiroshi Tanahashi broke out in NJPW as the Ace and biggest draw in the company. His ability to connect with the crowd and draw them in is fantastic. I don't think there is anyone in the last 10 years that is better at the psychological aspects of wrestling than Tanahashi, his timing and execution is near flawless, even when racked with injuries. His rivalry with Okada brought the company back into prominence and completely reinvigorated it. There really is no aspect of wrestling that Tanahashi doesn't excel at: Promos, wrestling, charisma, crowd connection, he can do anything. He absolutely deserves all the credit for saving NJPW during the dark days and making them the best wrestling company in the world. There have and will be wrestlers who draw bigger crowds for NJPW but it none of it would have been possible without the Ace of the Universe."
Rating: 10.0
Sentiment: 0.2178571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Gravelordwrote on 23.03.2018:[10.0] "When the novelty of Inokism began to wear off around 2003 and NJPW was left the verge of bankruptcy by 2006, many onlookers within the wrestling world were already signing the death certificates for the promotion. Even when Yuke's purchased 54% of the company and forced Antonio Inoki out, NJPW was still left without any credible stars, as the Third Generation (Yuji Nagata, Hiroyoshi Tenzan, Manabu Nakanishi, and Satoshi Kojima) had either been embarrassed and marginalized in favour of MMA fighters during Inokism or, in Kojima's case, seen the writing on the wall and left the company in protest. If NJPW was to rebuild, it needed a transcendent star akin to the famed Three Musketeers (Shinya Hashimoto, Keiji Mutoh, and Masahiro Chono) who carried NJPW to mainstream success during the 1990s. Enter Hiroshi Tanahashi. He has often referred to himself as a "Once in a Century Talent", a bold claim, but once you watch his body of work, you'll quickly come to realize he ain't bullshiting. Tanahashi is one of those rare (you might say, a Once in a Century) talents who excel at every aspect at pro wrestling, be it in-ring ability, promo skill, unique look that makes him stand out, or even a memorable entrance. However, Tanahashi's best and most important quality if his immense charisma -- that is, his ability to not only draw people to him, but to inspire and evoke emotion from fans and detractors alike (don't believe me? Just watch his match with G1 Climax match with AJ Styles; by the end, his selling has fan crying). After all, pro wrestling is all about drawing fans to come to shows, buy merchandise, and purchase subscription services. Tanahashi is not only the man most responsible for reinvigorating interest in NJPW, but he has managed to endear the product to a once untapped demographic in Japan: female fans. Tanahashi has not only cemented himself as the most important Japanese wrestler of the past 20 years, but also as one of the greatest wrestlers of all time"
Rating: 10.0
Sentiment: 0.23419540229885058
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Headlockwrote on 14.03.2018:[10.0] "Tanahashi hat eine glorreiche Karriere, voller sagenhafter matches, intensiven Rivalitäten und ja beinahe schon legendären Titel Regendchaften. Tanahashi ist ein sehr guter Wrestler, der den Look und das Charisma eines Mega Stars hat. Wenn ich das Wort "Ace" höre dann kommt als erstes CIMA in den Kopf aber dann kommt Tanahashi."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TheLoudMouthwrote on 08.01.2018:[10.0] "Einer der besten, glaubwürdigsten und authentischsten Seller weltweit, der sich seit gefühlten fünf Jahren auf dem Zenit seiner Karriere befindet und einfach nicht schlechter wird aufgrund seiner nahezu perfekten In-Ring-Psychologie."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Dragon Fighterwrote on 05.11.2017:[10.0] "There are not enough adjectives to describe this guy. A once a century talent for sure. He carried new japan from the dark days in mid 2000 to become the best promotion in the world. A master of in ring work and psychology. Great mic work and charisma as well. Endless classics which make him big match tana. Elevated another phenomenal talent: okada. A GOAT, HOF for sure. Well deserved 10."
Rating: 10.0
Sentiment: 0.287396694214876
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "A wrestling machine. A intensely charismatic techinician that despite a very basic moveset, can make a 5-star match thanks to his psychology, without a doubt his best weapon. Tanahashi contributed to make New Japan a thing once again between 2011 and 2016, and despite having passed the torch to Okada, at the age of 40 he is still one of the best in the world."
Rating: 10.0
Sentiment: 0.35454545454545455
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TooSweetPhilwrote on 15.08.2017:[10.0] "Der Beste Wrestler Aller Zeiten. Ja das hört sich oft meistens wie eine direkte Hyperbel an, aber wer mit Hiroshi Tanahashi vertraut ist, dem dürfte diese Aussage bekannt sein. Dieser Mann ist nicht nur für NJ's Golden Age verantwortlich, sondern liefert immer noch Mal für Mal fantastische Matches. Gibt es einen besseren Big Match Performer? Nein, denn wenn Tanahashi ein Big Match hat, liefert er. Es ist atemberaubend, dass Tanahashi, trotz eigentlich nur leicht überdurchschnittlichen Move-Sets (Dragon SPLX, High Fly Flow, Slingblade) in alle seiner Matches Innovation reinbringt. Er ist dafür verantwortlich, dass Okada zum nächsten Großen Weltstar manövriert ist, denn diese beiden hatten die Beste (legit) Rivalität aller Zeiten. Gibt es jemanden der besser sellen kann als Tanahashi? Nein, denn während andere Wrestler auf schreien, schwören oder Doppel-Flips vertrauen, sellt Tanahashi konsequent, authentisch und schlicht perfekt. Was er sellen kann, kann er auch austeilen, Limb Work immer innovativ, brutal und durchgezogen. Sein Charakter-Display während seiner Matches ist einzigartig. Wenn Leute kommentieren, von wegen "der japanische John Cena" merkt man schon, wie wenig sie sich mit der Materie auseinandersetzen. Bezogen auf Gegner, Crowd und Atmosphäre kann sich Tanahashi zwischen Heel/Face wandeln und somit entweder Hope Spots oder Cocky Air Guitars performen. Wieviele All-Time Klassiker hat Tanahashi über die Jahre gezeigt? Unzählige, gegen Nakamura, Suzuki, AJ, Naito, als auch mein persönliches All-Time Favourite Match gegen Okada (WK10). Tanahashi ist wahrlich ein "Once in a Century Talent" und das zementiert ihn als einen der besten, vielleicht sogar den Besten aller Zeiten."
Rating: 10.0
Sentiment: 0.02642857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: jenstererwrote on 08.07.2017:[10.0] "People giving Tanahashi low scores because "he was shoved down our throats" or because "he isn't a draw" are so clueless, that none of their opinions should ever really be valued. On top of being one of the best workers of this generation, Tana is largely responsible for NJPW's survival."
Rating: 10.0
Sentiment: 0.29074074074074074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: prowrestlingisrealwrote on 08.07.2017:[10.0] "If you don't admit that Tanahashi is one of the GOAT's, you're delusional or you don't know what pro wrestling is about, great ring psychology, charismatic AF, can make himself and his opponent look good, have various classics with various opponents, He's one of the reasons why NJPW is on their feet now, and he's one of the biggest draws in recent memories, GO ACE!"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: LordGabrielwrote on 07.07.2017:[10.0] "In my opinion , probably the best wrestler in NJPW , every match that involves him is a gathering of tension and hard working. My favourite match with him is fore sure Tanahashi vs. Okada - Wrestle Kingdom 10."
Rating: 10.0
Sentiment: 0.40277777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Randomuser12345wrote on 22.06.2017:[10.0] "The total package, one of the best babyfaces I have ever seen. Second only to HBK in terms of creating emotion and drama in a match. Incredible mind for pacing a match, can work with anyone, incredible physique, great interviews from what translations I have seen, there's nothing he can't do. A joy to watch."
Rating: 10.0
Sentiment: 0.5499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TheRainmaker28wrote on 09.06.2017:[10.0] "LOL, I laugh about the latest comments. Tana is one of the greatest wrestlers of all-time and deserve respect for everything he did. The dude elevated Okada on 2012/2013, elevated Omega last year when losing to him for the IC title and elevated Naito on the fucking Dome and people have the courage to compare him to Cena. If you don't like Tana, you just don't like good wrestling."
Rating: 10.0
Sentiment: 0.38571428571428573
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: BerserkGutswrote on 14.04.2017:[10.0] "Probably one of the most important wrestlers for New Japan Pro Wrestling. Shouldering the biggest responsibility of leading the company out of the gutter back to the top. His feuds with Okada, Nakamura, Naito and many more, cemented his legacy as one of the greatest wrestlers of all time. A true professional who puts the company first and is the lifeblood of NJPW."
Rating: 10.0
Sentiment: 0.38512396694214873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Infamouswrote on 03.04.2017:[10.0] "Might be my favorite wrestler of all time. Charisma, selling, psychology, very few are on par with him on anything that makes someone a good wrestler. He is a legend and will forever be regarded as one of the greatest wrestlers of all time. Maybe even the greatest."
Rating: 10.0
Sentiment: 0.588
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Blood Pumpwrote on 30.03.2017:[9.0] "Often called the Japanese Cena as far as booking is concerned, which is kind of unfair to both men really. Yeah both were booked to be gods among children when they were at top and yeah they both spend their time putting over talent more often then not now and days but the two are night and day. I'm not taking anything from Johns work ethnic but he was never good at making his opponent look good while still being put over (that has changed a little with Styles and Owens). Hiroshi and whoever he was facing both tended to look very good no matter the result. While I don't think Hiroshi is the greatest worker now or even in the late 00s (not even in NJPW) hes consistently excellent; just about always making an effort."
Rating: 9.0
Sentiment: 0.29803571428571424
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Mizzle Assault Antwrote on 17.03.2017:[6.0] "Tanahashi is alright but I can't help but find him very overrated. His offense is often incredibly light and stands out as a stark contrast to the heavy hitting style of most of his peers. He also has a tendency to allow his matches to on and on, past the point where they feel they have peaked. I know most don't share this opinion, just my personal feeling on the man."
Rating: 6.0
Sentiment: 0.11875000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: PistolPeteMattywrote on 26.02.2017:[10.0] "There isn't a person on this planet who is better in a big match scenario than Tanahashi. Easily one of the best of all time, and probably the main reason NJPW survived the 2000's."
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Chekerwrote on 23.02.2017:[10.0] "THE ACE, the man responsible for the upswing in New Japan's fortunes a decade ago. Incredible wrestler, incredibly charismatic, great storyteller, just a really likable guy. I'm going to miss him when he retires. And, honestly, the comparisons to John Cena are insulting, on his best day Cena couldn't even begin to lace up Tanahashi's boots."
Rating: 10.0
Sentiment: 0.40404040404040403
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: SanthoshVNwrote on 19.02.2017:[10.0] "Hiroshi Tanahashi is a John Cena of New Japan. He is one of the guys who backed the company during the dark period of the company. He has the ability to pull out the best even from a low level wreslter. His rivalry with Kazuchika Okada is considered as the current best rivalry. If you are new to NJPW you should not miss Tanahasahi's matches. He is nothing but a genius"
Rating: 10.0
Sentiment: 0.3032467532467532
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Residentwrote on 28.01.2017:[7.0] "Tanahashi is a good wrestler for sure. But I prefer Nakamura or Okada. I heard a lot of hype on Tanahashi. I known he is a multi-time IWGP Heavyweight champion and his High Fly Flow move is a nice version of the Frog Splash. However, overall I haven't been impressed. I don't think Tanahashi would have been able to get over in the U. S. as Nakamura has and his style seems more geared to the Japanese audience. While he is a good technical wrestler, I don't think he has much charisma and from what I see, he is just average on the mic. While others like Nakamura and Okada have that charisma and to me Nakamura and Okada are better at telling a story in the ring. Yes, he has had many 5 star matches, but maybe his best days have come and gone, because in the last few years, all the matches I have seen of him have just been average except for a few and actually his tag matches with Michael "mail it in" Elgin didn't seem that great at all to me. He's still quite good, but currently I don't think he is one of the very best in New Japan (I'd give that to Okada, Naito, and Omega)."
Rating: 7.0
Sentiment: 0.3554208754208754
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: JonColwellwrote on 08.01.2017:[10.0] "The ACE of New Japan! His match with Naito at Wrestle Kingdom 11 will forever go down as one of the best matches in IWGP Intercontinental Championship and NJPW history. Nakamura's last match in NJPW with him in that six-man tag was the first NJPW match I ever watched, and it hooked me on as a fan of NJPW."
Rating: 10.0
Sentiment: 0.25297979797979797
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: rjsbx11wrote on 07.01.2017:[10.0] "Tana's last 4 years are arguably the greatest 4 years in pro wrestling history. The only guys who had those types of runs at the top while being successful and having absolute classics like Tanahashi are Flair, Kobashi and Misawa. I have him in my top 10 all time, which doesn't have a particular order. The big issue I have is cross generations and guys who potentially landscaped the business. For me, I can't truly appreciate them because of the disconnect. When you look at the incredible matches he's had, his undeniable charisma and his ability to lead the New Japan brand back to the top of Japanese wrestling and one of the biggest wrestling promotions on the planet, he's definitely a GOAT."
Rating: 10.0
Sentiment: 0.2737076648841355
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Puro Spiritwrote on 21.12.2016:[10.0] "One of the greatest workers in the history of Puroresu , the man is up there with the puro gods such as Misawa and Kobashi .... a special talent that almost always delivers a classic match ....."
Rating: 10.0
Sentiment: 0.380952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Undisputedwrote on 15.11.2016:[10.0] "This is a genius of Puroresu, I know is Misawa or Kobashi are more popular than Tana but this man is my favorite Japanese wrestler. Great charisma, very good ring skill and chemistry with Naito, Nakamura, Okada, Styles. Really Ace."
Rating: 10.0
Sentiment: 0.5014285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: MAGICIANwrote on 12.11.2016:[10.0] "Zu Hiroshi Tanahashi muss man eigentlich nicht viel sagen. Der Kobashi unserer Zeit, von 2012 bis 2015 durchgehend der beste Wrestler der Welt gewesen. Viele viele Klassiker, viele viele schöne Momente. Hat nun seinen "Ace-Status" an Okada abgegeben, ist aber wohl für uns alle für immer das ACE. Eine lebende Legende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: akm0wrote on 17.10.2016:[10.0] "Tanahashi is probably the best japanese wrestler right now. His knowledge of the business is as deep as it can get - just read his book - his passion is outstanding, his work is surprising, his charisma is unmatched and can work with anybody with any style. Not to mention his in-ring psychology. While he has given to the fans one of the best series of matches of the last 15 years with Okada, he also has stepped up to turn NJPW in what it is today. The crowd just loves him and for a good reason: every moves he does, has a special flavour. I remember reading that he chosed the frog splash as a finisher because it looked painful (immagine a guy who weights 103 kg/227 lb crushing down on you from the top rope at full speed) and that demostrate how much he cares about giving to the fans the feel of a real fight. He really is once in a century talent."
Rating: 10.0
Sentiment: 0.3076278659611993
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Luv all wrestlingwrote on 08.10.2016:[10.0] "Tana is a once in a century talent, even nearing 40, he can still have 5 star matches pretty easily, and is very charismatic."
Rating: 10.0
Sentiment: 0.4444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Viper99wrote on 25.08.2016:[10.0] "Hiroshi Tanahashi ist einer der absoluten Top Wrestler der Welt! Rein In-Ring Technisch wohl einer der TOP 3 dieser Welt. Jeder Move hat bei diesem Mann einen sinn und dies machte jedes seiner Matches mindestens Gut. Er besitzt absolutes Star Appeal und ist Japans größter Star. Einfach ein exzellenter Wrestler."
Rating: 10.0
Sentiment: 0.5625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: cheerupmurraywrote on 18.08.2016:[10.0] "Dave Meltzer says Tanahashi is unquestionably the best wrestler of the 2010's, I'll go one step further. Tanahashi is the greatest wrestler in the history of the business."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ApexOfEvolutionwrote on 18.07.2016:[9.0] "Bis vor drei/vier Jahren einer der besten Wrestler der Welt, der inzwischen leider seinen Zenit überschritten hat. Seine Matches waren immer weltklasse und er ist zu recht Rekordhalter des IWGP Heavyweight Titles. Hoffe, dass man ihn noch einige Jahre im Ring sieht, vor allem bei ROH ist er immer wieder ein Highlight."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Once in a 100 fanwrote on 07.07.2016:[10.0] "One of the greatest wrestlers in history in my honest opinion! One look at him and you'll know that he is definitely one of the top dogs in NJPW! Watching this man and his matches have reinvigorated my love with pro wrestling as he is able to adapt and work well with anyone he steps in the ring with and elevate them with his performances and the charisma that he possesses; that is not something that you can say with many wrestlers. Plus his rivalries with Kazuchika Okada and Shinsuke Nakamura are the stuff that legends are made of and are up there with rivalries like Flair & Steamboat, Bret & Shawn, Austin & Rock, Misawa & Kobashi, etc.   Truly definitely one of if not THE greatest wrestler in the world!"
Rating: 10.0
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: DB992wrote on 17.05.2016:[9.0] "Pure emotion in the ring. I favor his battles with Okada the most. He has it all: incredible moveset, magnetic charisma and every quality to be an ace in the economy of a federation like NJPW, which he helped to rise back to the top of their game after those disastrous early 2000s."
Rating: 9.0
Sentiment: 0.13928571428571432
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: arrancarwrote on 05.05.2016:[10.0] "One of the greatest wrestlers of all time. The emotion he puts into his matches and the emotion he evokes from the audience is unparalleled to any other wrestler I know of. He also genuinely cares for the art of wrestling, seen in how he will devote extend periods of time after shows to seeing the fans after a wrestling show and will also work through various injuries in order to continue wrestling. So, not only an amazing wrestler but also a good person and a dedicated professional. Some of his matches rank in my very favourite, as well as in the favourites of many other wrestling fans, because all that emotion and athletic ability can't help but result in multiple absolutely incredible matches. He's had arguably the greatest rivalry of all time (or, at the very least, the greatest rivalry of the last 10-15 years) with Okada, and succeeded in also helping develop Okada into the star he is today. Tanahashi's WK9 and WK10 matches are the main reasons why Okada is my favourite wrestler, so I also have that to thank Tanahashi for. He isn't my favourite wrestler, but the effort that Tanahashi puts into his matches (and the wrestling profession in general) and the reception he elicits from live crowds puts him unquestionably as one of the best wrestlers I've ever seen."
Rating: 10.0
Sentiment: 0.28695592286501376
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: NastyYaffawrote on 15.04.2016:[10.0] "THE ACE. Tanahashi's NJPW main event run has been absolutely legendary, and he has proven to be worthy of "the ace" moniker. One of the best in-ring workers ever."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: RainmakerF7wrote on 29.03.2016:[10.0] "There is no one like him. Unbelievable in the ring worker, incredibly charismatic with an outstanding ability to work with the crowd. He is the main reason New Japan Pro Wrestling is the second biggest (and definitely the best) wrestling promotion in the world. Truly once in a century talent. When it is all said and done, Tanahashi will be right there with Flair, Misawa, Kobashi, Michaels or Jumbo among the best of all time."
Rating: 10.0
Sentiment: 0.3338744588744588
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Jobbswrote on 18.03.2016:[10.0] ""THE ACE" He's done it all in New Japan and just an all around amazing athlete. Just one of the greatest of all time as well as he's been in some legendary feuds and matches and he holds the record for most IWGP Title reigns. Anytime this man is in the ring, you know you're in for a treat."
Rating: 10.0
Sentiment: 0.6472727272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: CorvinLEwrote on 08.03.2016:[8.0] "Für mich ist Tanahashi ein sehr guter Wrestler und war verdient viele Jahre das Top-Face von NJPW. Doch hat es sich mit ihm ausgelutscht, seine Matches werden etwas langweilig. Trotzdem hat er gute Matches gehabt. Sein Wrestlingstyle ist interessant und sehr schnell geführt.  Allem in allen ist er immer noch ein guter Wrestler dochverdienter weise jetzt nicht mehr das Gesicht von NJPW."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Antimasterwrote on 16.02.2016:[10.0] "Über viele Jahre DER Mann im Puroresu gewesen, jedes Jahr dutzende Top Matches. Man muss kein ganz großer Tanahashi Fan sein, was ich nicht bin, um anzuerkennen, wie großartig dieser Mann nun für mittlerweile ein Jahrzenhnt ist. Für mich auf einer Stufe mit den Besten überhaupt und für New Japan als einer der ganz wenigen nicht zu ersetzen."
Rating: 10.0
Sentiment: 0.3181818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TrevPuroFanwrote on 15.02.2016:[10.0] "Am I the only one who can't get enough of Hiroshi Tanahashi. I mean the guy is pushing 40, his injuries are starting to take a toll on him, yet everytime he steps in that ring he puts on a fantastic performance and pulls out the best out of every single one of his opponents."
Rating: 10.0
Sentiment: 0.1451530612244898
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: berserk589wrote on 08.01.2016:[10.0] "This guy always delivers in the big match. One of the smartest and charismatic wrestlers of this era or any other."
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: hatebreederwrote on 07.01.2016:[10.0] "Ace of the Universe! Dieser Beiname kommt nicht von ungefähr. Der mit Abstand Beste bei NJPW. Nuff said.. Update 2016: In der Matchguide-Datenbank sind 6 (! ) seiner Matches in den 26 beliebtesten aller User vertreten. Das sagt einfach alles. Der Mann ist so unfassbar gut, dass es schon fast unfair ist. Ein Geschichtenerzähler, eine Legende, der Hauptgrund, warum NJPW wie Phönix aus der Asche gestiegen ist nach dem verkorksten Anfang des Jahrtausends."
Rating: 10.0
Sentiment: -0.09999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Kevin434wrote on 03.01.2016:[10.0] "Er ist eine japanische Legende, einer der besten Wrestler aller zeiten. Dieser Mann ist praktisch die Definition von gutem Storytelling. Er kann mit jedem ein gutes Match worken und probemlos jeden Style mitgehen. Dazu ist er noch sehr Charismatisch. Aktuell der zweitbeste Wrestler der Welt, nach Nakamura, und er hat zurecht das Standing was er jetzt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Sundownerwrote on 02.10.2015:[7.0] "If wrestling were as popular anymore then Tanahashi would be nowhere near the level that Hashimoto, Misawa and Inoki (real aces) were at at their peak. Tanahashi is a modern ace and compared to the old days it isn't much. He is a great worker but completely overrated by the masses. His matches are pretty much the same everytime I see him."
Rating: 7.0
Sentiment: 0.255
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: yanuswrote on 18.04.2015:[9.0] "Very charismatic wrestler, who structures his matches extremely well. Unfortunately, his offensive moves often look very weak."
Rating: 9.0
Sentiment: -0.115625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: SapolBlackwrote on 27.03.2015:[10.0] "Wenn man heute in Japan sich um schaut, gibt es nu eine grandiösen Mann der Neuzeit. Tanahashi bringt einfach alles mit von Körperbau, Charisma , Intensität und Matchqualität ist alles Vorhanden. Der Superstar von NJPW und direkte vergleich zu John Cena von der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Taker77wrote on 09.03.2015:[10.0] "Tanahashi is so damn good, someday he should be part of the WWE Hall of Fame for his outstanding achievements.  He is the brightest star of a whole country."
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: pfuschiwrote on 07.03.2015:[10.0] "The ace of Japan, almost as good as Shawn Michaels to me. Tanahashis work attic is incredible and his ringstyle is a great mix between a Bret Hart and Shawn Michaels, he does combine the best of these two legends.  He really is a total package, great in the ring, great work attic, great great great selling, great highflying moves, great outfit, great entrance theme, great body and big charisma. Everything a wrestle needs, Tanahashi has it, IŽm very happy for Tana that he was the Main-Event on the last Wrestle Kingdoms, he has the look of a main eventer, he feels like the main event, he should stay in the  Main- Event as long as his body can handle it.  The only point why I put him close behind Shawn would be that his career was not as flexible and mixed up, he didnŽt change much in the last years, everything stays the same which is the only thing I would put against Tanahashi.   Shame on all the Wrestling Organisations that they never made it happen, Shawn Michaels against Hiroshi Tanahashi, what a dreammatch that would have been. I would have been there, no matter if in Japan or USA."
Rating: 10.0
Sentiment: 0.42321428571428565
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: llboxingwrote on 26.01.2015:[8.0] "Possibly the greatest in ring performer of his generation.  Good looks, excellent versatility, psychology, ability to sell, wide variety of moves and still has uncanny athleticism, not to mention the most chiseled physique among Japanese wrestlers. The Shawn Michaels of New Japan.  A heartthrob to female fans, a rock star to male fans, and a super hero to kids.  Still a huge draw although his John Cena-esque appeal is beginning to wear thin.  Has only a couple years left before age starts to catch up with him."
Rating: 8.0
Sentiment: 0.23797979797979799
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Le Wrestling Fanwrote on 04.01.2015:[10.0] "What can you say about this man? He is simply amazing. Every night, every match, you see something amazing. Hiroshi Tanahashi is the best in the world today, and there is nothing, and I mean nothing, that can deny his ability as a wrestler, entertainer, and the face of Japanese wrestling."
Rating: 10.0
Sentiment: 0.37750000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: TRMBwrote on 26.12.2014:[10.0] "Der meiner Meinung nach beste Wrestler der Welt. Er hat einfach alles. Habe ihn in Oberhausen live gesehen. Der Mann weiß genau was er tut. Jede Bewegung hat einen Sinn. Super Austrahlung, klasse Moves und vor allem einfach ein netter, cooler Typ."
Rating: 10.0
Sentiment: 0.23484848484848483
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Matt4Wrestlingwrote on 06.11.2014:[10.0] "Ein Technik und Kraftpaket per excellence! Selten so gut getimte Aktionen gesehen und so gutes selling! nicht Umsonst das Ace von IWGP!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: flewryanwrote on 07.10.2014:[9.0] "Tanahashi!  Mehr muss man dazu wohl nicht sagen, er hat in seinem Match gegen Andy genau das gezeigt, dass ihn als Star auszeichnet."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Alex Maedawrote on 29.09.2014:[10.0] "Etwas anderes als 10 Punkte kann ich hier nicht geben. Tanahashi ist der Star der Puro-Szene, NJPWs Ace Nr. 1 und das schon seit Jahren. Jetzt liegt es in den nächsten Jahren an ihm, die Fackel an Leute wie Okada weiterzureichen. Wem, wenn nicht Tanahashi, sollte das auch gelingen?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: 8BitLegendwrote on 21.09.2014:[8.0] "In der vergleichsweise kurzen Zeit die ich NJPW jetzt verfolge bereits jetzt einer meiner Faves. Ich sollte mir beizeiten mal seine Klassiker ansehen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Merdalixwrote on 08.08.2014:[7.0] "An overall passable wrestler but his offence is unconvincing and his monster pushes over the years have been undeserving. Granted his selling and ring psychology are damn noteworthy."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Matzinhowrote on 28.07.2014:[10.0] "Tanahashi sieht aus wie eine japanische Videospielfigur und er wrestlet nicht den Strong Style. Trotzdem muss ich ihn würdigen als denjenigen, der zu NJPs Aushängeschild avanciert ist und die gute Phase eingeleitet hat. Er ist im Ring zwar nicht mein Typ, aber er kämpft ansehnlich und ich genieße doch seine Matches."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: alewrote on 15.05.2014:[10.0] "Einer der besten, die ich je gesehen hab, auch live der Wahnsinn. Ist in Japan unglaublich populär. Von daher 10."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: eldenaaaaawrote on 14.02.2014:[10.0] "one of my favorite in ring performers today this man is amazing at wrestling"
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: daniel cassidywrote on 28.01.2014:[10.0] "Simply put, the greatest package in professional wrestling today and unarguably one of the greatest in history. Hiroshi Tanahashi is, beyond a shadow of a doubt, the ultimate peak in professional wrestling, and having such an astronomical draw and following (to the likes of Hulk Hogan) is a feat that cannot be replicated. With delivery of amazing matches, many of which are on my "all time" list, and the best charisma in the business, there is no doubt in my mind that Tanahashi is one of the very best professional wrestlers to ever grace any circuit. This man has ALL of my respect forever."
Rating: 10.0
Sentiment: 0.4153846153846154
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Bluminho 93wrote on 03.12.2013:[10.0] "Man kann ihm einfach nur 10 Punkte geben. Nakamura ist mir persönlich zwar sympathischer, aber Tanahashi ist die weltweite Nummer 1 in eigentlich allen Bereichen, die das Wrestling ausmachen. Er kannn jeden Gegner zu dessen Höchstleistungen ziehen und kann soagr spontan die Heel Rolle in einem Match annehmen, je nach Crowd Reaktion. Dass er dieses Jahr bereits in die Wrestling Observer Hall of Fame aufgenommen wurde, spricht einfach Bände. Trotz der Tatsache, dass er New Japans Topstar ist, ist er sich darüber hinaus nie zu schade, sich für andere Wrestler hinzulegen respektive diese zumindest sehr gut aussehen zu lassen. Es gibt einfach keinen Besseren und ich hoffe auf viele weitere Jahre von Tanahashi als Ace of the Universe auf Top Niveau!"
Rating: 10.0
Sentiment: 0.3806818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: LukethePiratewrote on 17.11.2013:[10.0] "Best in the world today, and one of the best of all time. Had a plethora of 5* matches from 2011 onwards and carries himself as a top level superstar in every aspect."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: joshimaniawrote on 23.06.2013:[6.0] "An acceptable but very overrated wrestler. His offense doesn't look convincing and his matches tend to be filler matwork leading into obligatory nearfalls."
Rating: 6.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Steenericowrote on 03.06.2013:[10.0] "Tanahashi ist aktuell der beste Wrestler auf der Welt, was man auch an seinem überragenden Titelrun gesehen hat, wo er einen MotY Kandidaten nach dem anderen gezeigt hat. Seine letztjährigen Matches gegen Suzuki und Okada waren für mich die beiden besten Matches des Jahres 2012 und auch dieses Jahr war er bisher an den besten Matches des Jahres beteiligt und lieferte mit seinen Titelmatches gegen Okada, Anderson und nochmals Okada schon drei Match of the Year Kandidaten ab. Etwas anderes als 10 Punkte kommt für mich bei diesem Ausnahmewrestler nicht in Frage."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Kenshin Uesugiwrote on 27.04.2013:[10.0] "Bei so einem Mentor kann ja nur Gutes rauskommen, aber mal jetzt im Ernst. Tanahashi hat einfach alles, vom Körperbau, den Wrestlingfähigkeiten, der Ausstrahlung und dem Charme. Mit Nakamura, der Ace von NJPW und eine zukünftige Legende, mit vielen Gemeinsamkeiten mit seinem Mentor. Der vielleicht genauso bedeutend und groß wird wie er oder sogar ihn überragen wird, aber nur vielleicht. Edit: Hat nun endgültig die Grenze überschritten was Höchstleistungen am Stück und über Jahre angeht. Es ist einsam auf dem Olymp im NJPW, deswegen ist es auch kein Wunder das mittlerweile Nörgler und Miesmacher kommen, sie seien an dieser Stelle gegrüßt! Er sei zu lange und zu oft Champ und im Main Event, manch einer singt sogar das Lied das er der japanische John Cena ist. Mal abgesehen davon das es so ist als ob man Äpfel mit Birnen vergleicht, muss ich doch ernsthaft am Sachverstand und Logik dieser Aussage zweifeln und vehement wieder sprechen. Wenn man der Beste in fast allen Bereichen ist, dann ist das so. Punkt, Rums Bums aus die Maus!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: apc24wrote on 29.03.2013:[10.0] "Ace of the Universe! He's the face of wrestling in Japan in my opinion, he's a great, spectacular wrestler and has the ability to make a yearlong title reign seem legit."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: deathsitcomwrote on 28.03.2013:[10.0] "Tanahashi ist der einzige wrestler der Welt, der mich derart begeistert, dass ich 10 Punkte rausrücken muss, obwohl ich sein gimmick absolut nicht ausstehen kann. Aber alles andere wäre einfach absurd, Anime-style und Luftgitarre hin oder her, im Ring ist er einfach perfekt. Mag sein, dass er meistens die selbe Schiene fährt, aber sie funktioniert und wird bis dato nicht langweilig. Sein title-battle mit Okada, das 5* Hammermatch gegen MiSu, wie er Anderson kürzlich zu dessen Karriere-highlight geführt hat, und generall sein Agieren als Ace von NJPW, alles großartig. Zudem hat er mir das schöne Erlebnis beschert, dass ich mir durch bloßes Erwähnen seines Namens in einer Kneipe in Tokyo über alle Sprachgrenzen hinweg Freunde gemacht habe, allein dafür ein aishite imasu!"
Rating: 10.0
Sentiment: -0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Play2Xwrote on 21.02.2013:[10.0] "Nachdem ich mittlerweile seit 2 Jahren immer Mal wieder NJPW gucke muss ich doch sagen, dass Tanahashi Hiroshi die ganze Zeit über IMMER megastark war.  Es gibt derzeitig wohl niemanden, den ich lieber sehen würde. Außer Nakamura Shinsuke."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Fountain of Misinformationwrote on 11.02.2013:[10.0] "Bewertung vom 16. 07. 2012: Toller Wrestler, ein echter "Star", ein Frühvollendeter, das Wahnsinns-Talent seiner Generation aber sein Luftgitarrenspiel ist ziemlich mies, ich glaube das ist kein echter Rocker! Nachtrag vom 11. 02. 2013: Ich weiß nicht warum ich ihm "nur" neun Punkte gegeben habe, aktuell vielleicht der "Beste Wrestler der Welt", aber eigentlich bedarf es solcher Worte gar nicht, ein klarer elf Punkte Wrestler. Wenn er nicht die selten von mir vergebenen zehn Punkte verdient hat, wer dann?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Obermackerwrote on 11.02.2013:[10.0] "Och, Bewertung wird nicht gezählt, wenn man nix dazugeschrieben hat! Na dann begründe ich die 10 Punkte ganz einfach damit: Der beste, charismatischste, japanische Wrestler, der letzten 10 Jahre - Punkt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Spearmanwrote on 24.11.2012:[10.0] "Der defintiv beste Wrestler der Welt, ich kann mich an wenig Matches mit Tanahashi erinnern, die schlecht waren. Er hat eine Austrahlung, wie sie sonst keiner hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Tamjukwrote on 13.10.2012:[10.0] "Hiroshi Tanahashi ist der John Cena New Japans mit nur einem Unterschied: er kann wrestlen!  Charismatisch, Aussehen eines Superstars und einfach nur ein guter Wrestler.  Als Kritik kann man naturlich sagen, dass er zu formelhaft arbeitet, aber er ist eben das Gesicht New Japans, er ist schon da wo er hin will, er muss nichts riskieren."
Rating: 10.0
Sentiment: 0.15340909090909088
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Robert Taylorwrote on 05.09.2012:[10.0] "Wenn mich jemand fragen würde wie ich das Wort Zuverlässigkeit definieren würde, dann wäre meine Antwort Hiroshi Tanahashi. Er bringt ganz einfach immer seine Leistung, meistens sogar eine sehr starke Leistung. Hat seine derzeitige Position bei New Japan absolut zu Recht inne, er hat den Look und vor allem das Können im Ring. Gehört zur absoluten Weltspitze und es gibt nicht viele, die ihm das Wasser reichen können. Dass er hier bei Cagematch nicht eine einzige Bewertung unter 8 Punkten bekommen hat, ist ein weiterer Beweis für seine Klasse."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Jack Londonwrote on 06.04.2012:[10.0] "Auch wenn seine Dominanz gegen Ende seines Rekord-Title-Runs doch langweilig zu werden drohte, ist jedes Match mit Tanahashi eigentlich immer mindestens gut. Er ist einfach ein Weltklasse-Worker, der auch noch ein derart großes Charisma hat, dass es auch bis zu uns nach Europa strahlt. Tanahashi ist der Grund, warum New Japan die Liga #1 in Japan ist. Den anderen großen Ligen fehlt einfach eine derartige, alles überstrahlende Figur wie Tanahashi sie es nun mal ohne Zweifel ist."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Aquifelwrote on 08.03.2012:[10.0] "War immer schon Sahne im Ring und er hat auch sehr viel Ausstrahlung (selbst für Europäer, die sonst eventuell nicht so viel mit Japan anfangen können), aber gerade mit seinem letzten Run als IWGP Champ hat er bewiesen, dass er nicht umsonst einer der grössten, wenn nicht gar DER grösste Star in Japan ist (momentan)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Manolowrote on 28.01.2012:[10.0] "Aktuell zweifellos der beste japanische Heavyweight. Neben seinen Fähigkeiten im Ring verfügt er auch über Charisma und ist absolut zurecht der größte Star in Japan. Mit ihm wurde das Produkt von NJPW in den letzten Jahren auch wieder viel besser als zu Beginn des Jahrtausends."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: ShakDragoonwrote on 05.10.2011:[10.0] "Sehr guter Allrounder, der verdienterweise an der Spitze der New Japan Heavyweight Division steht. Ich hoffe jedoch, dass die Liga es nicht versäumt, neben ihm und Nakamura auch andere Talente dauerhaft nach oben zu pushen. Obgleich die Matches der Beiden stets für gute Unterhaltung und hochwertige In Ring Action garantieren."
Rating: 10.0
Sentiment: 0.11818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Rated R Champwrote on 22.09.2011:[10.0] "Tanahashi ist nun seit einigen Jahren das Aushängeschild des japanischen Marktführers und das zurecht. Im Ring ist der Mann über jeden Zweifel erhaben, er versteht es Matches aufzubauen er hat den Look und (soweit ohne Japanischkenntnisse erkennbar) auch wirklich Charisma. Der Begriff Total Package greift hier einfach."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Hu-Manwrote on 24.02.2011:[10.0] "Er ist wohl DER japanische Superstar, den man in den USA mit John Cena vergleichen kann. Mit dem Unterschied, dass seine Stärken im Ring liegen und Cena eher der Mann am Mic ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: The Rated R Superstar EDGEwrote on 30.12.2010:[10.0] "Für mich zusammen mit Kenta der beste Japaner. Hat außerdem alles was ein Superstar braucht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Homicide187wrote on 03.11.2010:[8.0] "Sicherlich der Draw in Japan und auch gut im Ring und auf jeden Fall unterhaltsam. Aber sein Anime Aussehen find ich dich immer störend, wodurch ich ihn einfach nicht als den "Superhelden" oder ernsten Gegner sehen kann. Aber wie gesagt seine Matches enttäuschen eigentlich nie."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Hans Gruberwrote on 05.07.2010:[10.0] "Ganz klare 10 Punkte! Das Ace von New Japan. Nr1. Main Eventer für mindestens noch 10 Jahre, natürlich nur wenn die Kniee weiterhin mitmachen."
Rating: 10.0
Sentiment: 0.1515151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Denzwrote on 13.06.2010:[10.0] "Ich habe mir so einige einer Matches angesehen, wie zum Beispiel das gegen Kurt Angle oder AJ Styles. Der Typ hat einen ziemlich guten Körperbau, ein sehr schneller Techniker. Viele Japan-Wrestling Fans sehen ihn als japanischen Shawn Michaels - zu recht!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Erasedwrote on 22.05.2010:[10.0] "Sehr guter Technicker, der dazu noch eine große Portion Ausstrahlung hat und vom Wrestling sowie vom Entertaining auch etwas versteht. Ihm schaut man gerne zu."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: T-Waynewrote on 08.04.2010:[9.0] "Super Kerl, der sich wirklich den Weg zum Maineventer in der größten japanischen Liga erkämpft hat. Tolle Aktionen und Charisma hat er dazu auch noch, schade nur, das der High Fly Flow seine Knie zerstoert hat."
Rating: 9.0
Sentiment: 0.43111111111111117
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: wotan1985wrote on 09.03.2010:[10.0] "Hiroshi ist genau das was für mich ein Heavyweight ausmacht. Einfach Perfekt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Big Bad Booty Babywrote on 28.09.2009:[9.0] "Tanahashi ist (auch wenn ich mich noch nicht lange mit Puroresu beschäftige) der wohl beste NJPW Worker zur Zeit. Er war der erste den ich mit japanischem Wrestling in Verbindung brachte und das zu Recht. Er ist super im Ring und sehr charismatisch. Er wird sicherlich noch lange New Japan repräsentieren und noch öfters den IWGP Titel halten."
Rating: 9.0
Sentiment: -0.057575757575757544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: homicidal cena michaelswrote on 11.07.2009:[10.0] "Derzeit bester Japaner und auch weltweit ganz vorne dabei. Zurecht mehrfach IWGP Champion."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: The Main Eventwrote on 09.07.2009:[8.0] "Hiroshi ist mir sehr sympatisch und wrestlen kann er auf jeden Fall. Aus ihm wird hoffentlich nochmla was."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Blazewrote on 24.01.2009:[10.0] "Der absolute King von New Japan. In den letzten 3 Jahren für die Company extrem wichtig und hat riesiges Potenzial, irgendwann in einem Atemzug mit Misawa, Kobashi usw. genannt zu werden. New Japans MVP, wrestlerisch sehr gut mit einer Menge an Charisma."
Rating: 10.0
Sentiment: 0.15757575757575756
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: STRIGGAwrote on 05.01.2009:[10.0] "Hiroshi Tanahashi ist für mich der beste Performer in Japan, wenn nicht sogar darüber hinaus. Er hat die Ausstrahlung eines absoluten Superstars und verhält sich auch im Ring so. Dazu kommt sein überragendes Wrestling. Einer der Vorreiter des neuen New Japan Heavyweights."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Rancorwrote on 07.12.2008:[9.0] "Tanahashi hat sich zu einem der besten, wenn nicht DEM besten Schwergewichts-Wrestler weltweit entwickelt. Er hat sich als erster seiner Generation den Status eines Superstars erarbeitet."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Tomkowrote on 16.11.2008:[9.0] "Geniale Fähigkeiten, eine Menge Charisma und einen coolen Look machen diesen aufstrebenden Superstar aus, der mich aber noch ein kleines bisschen mehr überzeugen muss, damit es die 10 wird !"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: AnFuwrote on 05.06.2008:[10.0] "Cooler Typ, eigener Stil im Ring, mir gefällt einfach das Gesamtpaket Tanahashi, er leistet sehr gute Arbeit im Ring, er hat noch einiges vor sich, einer der großen Japaner jetzt schon."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Rob Van Duesenschrauberwrote on 17.04.2008:[9.0] "Da muss ich meine Wertung nach oben korrigieren. Tanahashi steht bei New Japan absolut zurecht im Main Event. Denn da gehört er die nächsten Jahre hin, wenn er sein Niveau hält."
Rating: 9.0
Sentiment: 0.1515151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Kaffoe 666wrote on 25.03.2008:[10.0] "Mein momentaner Liebling im Puro. Tana ist einfach göttlich!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: The Instant Classicwrote on 23.03.2008:[8.0] "Genialer Wrestler mit vorhandenem Charisma, das allerdings nicht an Top Leute heranreicht."
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: AMMOwrote on 21.12.2007:[8.0] "Zeigt andauernd starke Matches für NJPW! Wird in der Zukunft IMO noch einiges erreichen, dadurch NOCh keine volle Punktzahl, die denke ich aber sicherlich kommen wird."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: D-Stylewrote on 07.12.2007:[8.0] "New Japans Zukunft; er wird sich noch besser entwickeln, daher erstmal nur die 2, mit Tendenz zur 1. 2007 wird Tanahashi noch besser denke ich; seine Strong Style Matches gegen Nagata & Goto sind der erste Schritt zur NJPW Führung."
Rating: 8.0
Sentiment: 0.28484848484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: Blue Meaniewrote on 04.12.2007:[10.0] "Noch nicht so viel gesehen, aber das was ich gesehen habe war awesome. Beeindruckend guter Wrestler, der zudem auch (im Gegensatz zu vielen seiner Japan Kollegen) recht charismatisch ist und eine richtig starke Ausstrahlung hat."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: shannonmoorewrote on 29.07.2007:[8.0] "Wenn Japan dann Tanahashi :) Bin erst seit kurzem Fan von Japanischen Wrestling und er einer der ersten die mich intressierten."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1176&gimmick=Hiroshi+Tanahashi
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Im Ring genau das was man(Ich) haben will, den Look hat er ebenfalls und er hat mich bis jetzt mich immer bestens unterhalten, bis jetzt haben mir seine Matches gegen Nagata am Besten gefallen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RampageLitewrote on 12.02.2025:[9.0] "One of my favorite technical wrestlers, and one of the best to ever do it. He has good matches, great chemistry with a lot of people, and he's one-of-a-kind. Just an all around great in-ring competitor and just an all-around great guy. He always finds a way to put on a good match. We probably won't see him in the ring much anymore but he deserves retirement, he's worked hard in every company he's worked in. Mount Rushmore worthy wrestler, can be considered to be the GOAT."
Rating: 9.0
Sentiment: 0.4784722222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Keithnelson18wrote on 11.02.2025:[10.0] "One of the best wrestlers in the world, probably one of the most passionate wrestlers in the world. You can tell he loves this sport and tries to give the fans a match to remember."
Rating: 10.0
Sentiment: 0.33749999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Nickswrote on 06.02.2025:[10.0] "He is the best fucking wrestler ever. He is phenomenal in the ring, something we will hardly ever see again, and we should all be grateful to have seen."
Rating: 10.0
Sentiment: 0.15208333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DumBBoyManwrote on 01.02.2025:"The absolute fucking greatest of all time. No debate about it. Bryan Danielson is the greatest wrestler who has ever lived."
Rating: No rating found
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TPGwrote on 16.01.2025:[10.0] "There's a reason people call him the best in the world. It's because he's a genius. He doesn't just do flippy-shit, and he doesn't just do all these wild acrobatics, he's a technical mastermind, and he knows how to tell a story that can apply to any company if he's allowed to be given the freedom to do it. His feud with Nigel McGuinness is considered to be the best independent wrestling feud of all time. His match with Will Ospreay is highly regarded as one of the best individual matches in the history of this business. He is consistent in the ring, his character work is great, even if some people don't realise it. One can argue that he changed the landscape of WWE, and thus, changed wrestling, bringing a revolution. In the right moment, he's one of the best on the microphone. He knows when to be funny, he knows when to be serious. He understands the business and he understands the success criteria to put on a show. Danielson has truly achieved the heights of the wrestling world, and he will almost certainly go down in its history. Danielson outside of wrestling has continuously shown he is principled and motivated not just in regard to wrestling but with regard to life as well, as he has been active in ensuring positive connection with fans and as an environmental advocate as well. He's left a practically perfect legacy within his retirement, and now he can rest easy knowing that he'll go out as one of the greatest in the world."
Rating: 10.0
Sentiment: 0.35583035322165757
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheKenwynewrote on 15.01.2025:[10.0] "People that don't love Bryan Danielson are fickle and shouldn't be trusted. His body of work, despite struggles with injuries and being stranded in the indies for the first 10 years of his career is still amongst the best of any wrestler, period."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Drew115wrote on 12.01.2025:[10.0] "The rating couldn't be anything but a 10. He's genuinely just an incredible professional wrestler, even in a world of other incredible professional wrestlers. He overcame all obstacles and reached the top of the industry at WrestleMania 30. One of the all-time Independent greats, one of the all-time WWE greats, and now one of the all-time AEW greats."
Rating: 10.0
Sentiment: 0.3027777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Modestwrote on 09.01.2025:[10.0] "Bryan Danielson is my favorite wrestler of all time. Someone who I grew up watching. He's one of those guys where I feel like a lot of people won't realize what we had until he's gone. I legitimately can't remember the last time I didn't enjoy a Bryan Danielson/Daniel Bryan match, if there was ever one to begin with. There was never someone who made me feel more for the sport of professional wrestling than Bryan Danielson made me feel, he taught me that not every match needs a big soap opera story going into it, but that a story can also be told in the ring through moves, selling, counters, near-falls, etc. Some people would criticize his promo work or charisma and I can never understand why. When he's given a chance to go out and pump up the crowd and connect with the audience, he has a 100% success rate. His retirement promo from 2016, his promo the night after Wrestlemania 30, his promos against Kofi in the leadup to Kofi-Mania, his promo against Hangman after their 60-minute draw, his "When I die, my heaven will be in this ring" promo before the Ospreay match, or his promo on Swerve the week before All In 2024. And that's not to mention his matches, oh boy where do I start? He might have like 4 or 5 out of my 10 favorite matches of all time. In WWE against Cena, Punk, Lesnar, Roman, Kofi, and Styles. In Ring of Honor against Samoa Joe, KENTA, Roddy Strong, Nigel McGuinness, Homicide and Morishima. Or most recently in AEW or NJPW against Omega, Hangman Page, Eddie Kingston, Mox, Okada, ZSJ, Ospreay, Starks, Daniel Garcia or MJF. In my opinion, his match catalogue is absolutely unmatched. A timeless wrestler who will never be forgotten."
Rating: 10.0
Sentiment: 0.28611111111111115
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TWBwrote on 08.01.2025:"Arguably the best technical wrestler of all time. His Yes movement is one of the coolest things to happen to WWE, as it forced them to swallow their pride and give fans what they wanted. His AEW run wasn't the greatest, but ending his full time career with the AEW World championship was a nice sendoff."
Rating: No rating found
Sentiment: 0.44166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MEDaminewrote on 07.01.2025:[10.0] "One of the GOATs of wrestling, idk what else to say, wherever he went, he has an insane match catalogue, and wherever he went, he was a face of the company, and he proved himself even when he wasn't wanted from WWE, that's how great he is"
Rating: 10.0
Sentiment: -0.09999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ozwernwrote on 07.01.2025:[10.0] "One of the greatest to ever do it. His presence has been missed in AEW even though it's only been a couple of months. Hope he makes the best decision for his health but selfishly I'd love to see him in the ring once again."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Roangoddardwrote on 05.01.2025:[10.0] "Yeah, he's probably the greatest of all time. Not much I can say that everyone doesn't already know. Insane match catalogue over 3 top promotions and been the face of each of those companies. Forced his way to the top in the biggest promotion on the planet when the guys in charge didn't want him to be, the definition of undeniable. Fans can't help but love him yet his character work as a heel is equally as impressive."
Rating: 10.0
Sentiment: 0.2625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: anarchovampwrote on 27.12.2024:[10.0] "Simply put, one of the greatest wrestlers of all time. Danielson is able to combine a wizard's array of technical moves and high-impact strikes with elite crowd control and connection. Genuinely the only person who has a comparable prime and longevity to him is probably LeBron James. And while he's well known for his great babyface work, and probably stands as the WWE's best "top face, " even if it was momentary, his heel work is somehow even stronger. And not only is he of the greatest minds that a worker has ever had, and showed it off as a seminal tool for his legendary in-ring career, for many people, the greatest professional wrestler they will have experienced in real-time."
Rating: 10.0
Sentiment: 0.5375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: spacedustnebulawrote on 23.12.2024:[10.0] "Invariably the greatest wrestler to ever step into the ring. The fact that he was putting on amazing MOTY contenders at 43, after a quarter-century long career and however many neck injuries and spinal fusions he's had speaks so much to not only his physical talent but his complete and total understanding of wrestling as both a sport and an artform. For the sake of the sport I hope we do see someone at his level sometime again, but it's very unlikely anyone will be as good as the American Dragon."
Rating: 10.0
Sentiment: 0.20000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Its Clobbering Timewrote on 13.12.2024:[10.0] "The American Dragon Bryan Danielson is easily one of the best Wrestlers of All Time. He Has been the Top Guy at every company he's Been at. Bryan has had 3 Hall of Fame Careers In WWE, AEW & ROH/ The Indies, he is a 4x WWE Champion, 1x WWE IC Champion, 1x WWE US Champion, 2x WWE Tag Team Champion 1X AEW World Champion, 1x ROH World Champion & An 2x PWG World Champion. Bryan is also one of the best In Ring Wrestlers Ever, He Has had amazing Matches with the likes of Nigel McGuiness, Kenta & Chris Hero In Ring Of Honor & The Indies, In WWE he has had amazing matches with John Cena, AJ Styles, Brock Lesnar, Triple H, Dolph Ziggler & Kofi Kingston. In AEW & NJPW Bryan has had Dream Matches where he will Kick Your Fucking Head In with the likes of Kenny Omega, Will Ospreay, Swerve Strickland, MJF, Kazuchika Okada, Minoru Suzuki & ZSJ which is considered to be one of the best Technical Wrestling Matches of All Time. Bryan's Peak was in 2014 during the Buildup of WrestleMania 30 where he was the most loved and over wrestler in the world with the whole Yes Movement. In one of the Best Wrestling Moments of All Time Daniel Bryan Beat the Authority to become WWE World Heavyweight Championship after opening up Mania Against HHH & Main Eventing Mania against Randy Orton & Batista. Bryan Danielson is Truly one of the Best Ever"
Rating: 10.0
Sentiment: 0.5062500000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: maven loverwrote on 29.11.2024:[10.0] "The easiest 10 I've ever had to give. Is so fucking good at wrestling that he used a 5'8 (! ) body to successfully break through Vince McMahon's big-man complex; becoming among the best (if not the best) underdog champion the WWE has ever seen. He's so good that he made the otherwise-abysmal Wrestlemania 30 one of the most loved Wrestlemanias ever. He has forgotten more about nuances & maneuvers than most workers will ever know. Seems incapable of putting out a poor match, & always gave everything of himself that he could into every match & angle that he has worked, ever. Contemporary society's answer to people like Kurt Angle & Dustin Rhodes, & his presence successfully influenced new stars we've come to love today, like Mike Bailey & Konosuke Takeshita. Selfless to a borderline self-injurious fault. Uncannily, incredibly amazing & wonderful."
Rating: 10.0
Sentiment: 0.48700159489633177
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AceHagannwrote on 26.11.2024:[10.0] "Simply put, a beyond brilliant wrestler. A technical machine that is a master of the craft. His brilliance outside the ring is also commendable, with a flexibility to his character that allows him to shine in whatever scenario he is put in."
Rating: 10.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: lokithemadtitanwrote on 21.11.2024:"I have been watching Bryan wrestle for entire career. I have seen him wrestle live many times. I can honestly say I have never been anything but in awe of his passion and technical skill."
Rating: No rating found
Sentiment: 0.24727272727272726
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: wrestlingswiftiewrote on 18.11.2024:[10.0] "Bryan Danielson is nearly the perfect wrestler. He has such a relatable, fun, and realistic character that makes you feel emotion... Whether that be the small underdog not expected to succeed, or the pure-wrestling badass. I honestly believe he's up there with the likes of Bret, Shawn, and Kurt, in terms of ring work... Arguably even better."
Rating: 10.0
Sentiment: 0.2740740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Joelwrote on 17.11.2024:[10.0] "Bryan Danielson is truly an incredible athlete and a testament to perseverance. Scouted by Mark Henry, he faced skepticism from many, yet he never let that deter him. He consistently pushed himself, fought through challenges, and emerged as one of the greatest in-ring performers we've had the pleasure of witnessing. His journey in this business has been remarkable, and it's important that we acknowledge and celebrate his hard work, his captivating character, his powerful connection with fans, and his heartfelt promos. Despite being a punk kid at just 5'11" and under 200 lbs, he has proven that passion and talent know no size. Even after a decade in the industry, he continues to thrive and is still regarded as the best in the world. Thank you, Bryan Danielson, for inspiring us all and for being such a remarkable presence in wrestling. He truly is the man!"
Rating: 10.0
Sentiment: 0.48184523809523805
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AlienHominidwrote on 14.11.2024:[9.0] "In-Ring Ability: 5/5, Gimmick: 1/1, Fan Connection: 1/1, Promo Skills: 0/1, Career Retrospective: 1/1, As a person: 1/1. Danielson is another wrestler I find to be incredibly polarizing in the sense that for a lot of people he just doesn't work, which is a position I've found confusing. I started truly watching wrestling around the time where Daniel Bryan was beginning to appear as a big name in WWE, and I've consistently loved him since then. He's definitely one of the more skilled workers to come out of the United States, and I feel his matches in Ring of Honor and Pro Wrestling Guerilla laid the foundation for the shift away from only "big guy" wrestling and subsequently the acceptance and praise of technical wrestling outside of Japan, Mexico, and other hotspots. Furthermore, he cemented himself during his tenure in WWE where he consistently survived WWE's attempts to put him down and proved himself as an all-timer among their biggest names. His character has remained largely the same throughout the majority of his career, a smaller, more technical underdog who was always able to surprise those watching him. He was the type of guy you rooted for in the same sense that you would have for Mick Foley or that you do now for Jey Uso or Iyo Sky. When he was a heel, he was an effective one, building connection with fans during his time as a face and then attempting to destroy it as a heel creating the perfect scorn for him, such as during the "No! " movement or his militant environmentalist persona. His AEW run has focused mostly on his current reputation as a living legend and in this sense I feel they have not properly used him, but not to the point that it effects my view of him as a character. Even today in the latter years of his career he is still sought after and he leaves pleasant memories in the minds of fans as someone who may not have always been there but was there for the love of wrestling and the fans when he was. He's been a part of some of the most memorable storylines and movements in wrestling's modern history, and not even just in the big leagues. Personally I feel that Danielson has truly achieved the heights of the wrestling world, and he will almost certainly go down in its history. Danielson outside of wrestling has continuously shown he is principled and motivated not just in regard to wrestling but with regard to life as well, as he has been active in ensuring positive connection with fans and as an environmental advocate as well. It is hard to find much to criticize about him but I decided to dock the point on promo skills because if anything his promos were not necessarily as memorable as his wrestling and his other mic skills, specifically crowd interaction, and generally because I do believe he isn't necessarily the perfect wrestler. Still, absolutely an all-time great and one that I hope continues to do more behind the scenes for the business as he is likely soon to retire."
Rating: 9.0
Sentiment: 0.17809020120340874
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ItsAllAWorkAnywaywrote on 13.11.2024:[10.0] "You wouldn't assume that someone under 6' and under 200 lbs could be one of the best wrestlers of all-time, but that's what Bryan Danielson has become. He spent the early part of his career working on being an excellent in-ring technician. This opened the door for him to WWE, where he began to improve massively in regards to charisma, mic skills, and developing "it" factor. Though he his now in the latter stages of his career, he can still serve as any promotion's champion and absolutely deserved his "WrestleMania" moment during WM30."
Rating: 10.0
Sentiment: 0.31428571428571433
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Brando Calrissianwrote on 01.11.2024:[10.0] "I don't really have much to say about Bryan Danielson except for this simple statement: Bryan Danielson is definitely THE best wrestler EVER. It is not only due to his immense skill and technical ability and his career of incredible matches, it also has to do with the fact that Danielson is the most giving and willing to do anything if it means it will improve the business. He wrestled nothing but dream matches in AEW because he wanted to push the industry and talent forward. He wanted to showcase great wrestling with all sorts of talent, including putting people like Daniel Garcia and Ricky Starks and Shane Strickland into the stratosphere with incredible matches against him. Now, hopefully Bryan can rest and recover from his insane list of injuries he has accumulated."
Rating: 10.0
Sentiment: 0.24166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dweeeabwrote on 27.10.2024:[10.0] "The greatest to ever do it imo. Danielson had it all in every promotion. An amazing promo, amazing character work and ofc insanely good in the ring. I used to hate technical wrestling, I thought it was boring, but Danielson completely changed my mind on the matter transitioning from submission to submission so seamlessly is incredible and pulling out a submission out of nowhere gets me as excited as a huge move. I also believe Danielson was a master at structuring matches, the pacing of his matches always felt right no matter if it was a slow build up to a crazy finish or a crazy sprint. Greatest of all time."
Rating: 10.0
Sentiment: 0.16629464285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PenguinPeppewrote on 26.10.2024:[8.0] "I think that he is a truly skilled wrestler. He has always had great wrestling technique and strong promos. But his "last year" storyline was a little bit annoying."
Rating: 8.0
Sentiment: 0.12430555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DixieNormas1980wrote on 20.10.2024:"Brian Danielson was trained by Shawn Michaels, yet his moves are limited and he has very bad psychology in ring."
Rating: No rating found
Sentiment: -0.4907142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TreyHalowrote on 17.10.2024:[10.0] "In my opinion the greatest to ever do it, and he ended his career in the most "Bryan Danielson" manner of all time and in one of my favorite moments of the year, from ROH, to WWE, to AEW, he ran this shit everywhere man, his runs in these individual companies alone is what most wrestlers only pray to achieve and he did it three times over in three different places, no single hole in his game and one of the most well rounded performers ever, a perfect wrestler in every sense of the word..."
Rating: 10.0
Sentiment: 0.2863095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NoaHS106wrote on 16.10.2024:[10.0] "Was kann ich hier noch sagen was nicht schon gesagt wurde. DER VERMUTLICH BESTE WRESTLER ALLER ZEITEN. Zudem ist er auch noch am mik gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MrBigPiecewrote on 16.10.2024:[10.0] "In my many years of watching professional wrestling I have never seen a wrestler as complete as Bryan Danielson, he can work any style you want him to and convincingly portray an underdog, the top dog, a geek, a bully, a shooter, you name it, Bryan Danielson can and probably has done it well. There are very few wrestlers who can say they've done as much as him in one major company let alone 3, not to mention anywhere he's worked he's had a good run or a memorable performance, wether it be on a hawaiian military base or the tokyo dome. The 10 rating is very overused, but personally I believe Bryan Danielson is one of the few to wholeheartedly deserve a 10 rating, and I think we should feel very honoured to have watched him as long as we did. One of the Greatest of All Time, without a doubt."
Rating: 10.0
Sentiment: 0.17513888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: igskillfartwrote on 13.10.2024:[10.0] "What else can i say got him, his career speaks for himself, Danielson is one of if not the greatest wrestling stars to have ever laced up a pair of boots, he will be truly remembered as a wrestling legend, thank you Danielso."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CrystalXCXwrote on 08.10.2024:"No other wrestler can make what Danielson does in that ring, he is the greatest wrestler alive and he WILL kick your fucking head in."
Rating: No rating found
Sentiment: 0.14062500000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JLHarmanwrote on 05.10.2024:[10.0] "Bryan Danielson is the GREATEST OF ALL TIME, everything seems so simple to him, it's impressive. Nobody makes me feel as much emotion as he does. He's the best wherever he is, at ROH he was the best, at WWE too, at AEW too and even at NJPW on those rare occasions. Bryan Danielson is the definition of Pro-Wrestling."
Rating: 10.0
Sentiment: 0.6428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cakels1wrote on 27.09.2024:[10.0] "Danielson is simply the GOAT. No ones comes close to the amount of just absolute greatness Danielson has done over his entire career. The greatest Techincal wrestler no doubt. The greatest storyteller no doubt either. No one can make you FEEL as much as Danielson does. He understands how to go in and have a great match each time. No matter face or heel. Simply put the GOAT."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Nolan Greenwrote on 25.09.2024:[10.0] "The best wrestler in the world. Everything he does is great, he can make chicken salad out of chicken crap, and puts his heart and soul in every match. Even all the crap that he gets stuck in AEW, he does his best to match it good. He's the best in the world for a reason."
Rating: 10.0
Sentiment: 0.1888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: justabagwrote on 20.09.2024:[10.0] "Bryan Danielson is the greatest wrestler ever. Incredible in any type of match and any type of style. Nobody can touch him."
Rating: 10.0
Sentiment: 0.95
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LuiVillwrote on 11.09.2024:[10.0] "Danielson, a master technician, among the best to ever to do this professional wrestling thing, is also a masterful storyteller. His matches make you feel something, demanding an investment of your emotions in the outcome. The story being told through the match is what makes him special but the wrestling ability is still able to take your breath away. With simplistic brutality and a surgeon's precision, you can believe this man is capable of beating anyone in the world."
Rating: 10.0
Sentiment: 0.37959183673469393
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ItsLugerwrote on 10.09.2024:[10.0] "The greatest professional wrestler of all time. No question, no debate. He has been operating as a peak world class wrestler in every promotion, at every time period, at every era of professional wrestling he's been in. No one can equal that. Even under different wrestling philosophies, storytelling focus or in-ring focus, he excels to levels unlike anyone else. No one has ever been like Bryan Danielson."
Rating: 10.0
Sentiment: 0.24000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: travis807wrote on 09.09.2024:[10.0] "Bryan Danielson has reached a level where even if hes not your personal GOAT, you dont bat an eye when someone else says hes the GOAT. His matches in 2024 are as good as hes ever had."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LMZ2020wrote on 06.09.2024:[10.0] "A first-ballot hall of famer and undisputedly one of the greatest and most important wrestlers to have ever stepped into a ring. Anything lower than a 10 would be blasphemous. EDIT: yep, Bryan Danielson is the Kendrick Lamar of professional wrestling. Just GOATed beyond any doubt."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Djomowrote on 03.09.2024:"Fantastic match. Excellent stadium atmosphere. Being there in the crowd was like nothing else and I don't think it will ever be topped for myself. Easily a 10/10. Had I not been there in-person, maybe I wouldn't go the full 10; but watching this live in the crowd was absolutely peak wrestling."
Rating: No rating found
Sentiment: 0.4199494949494949
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: mendescelticwrote on 30.08.2024:[10.0] "Look, I understand that the topic "GOAT" has a lot of names that are good choices for this title, but Danielson is just above everyone. This man has been wrestling for 23 years and he's still better than almost every single pro-wrestler in history. Everyone has a different wrestling style and every category can have it's own GOAT, mas Danielson is simply amazing and cannot be put in just one specific category. Alongside Kurt Angle and Mitsuharu Misawa, this man has proven time and time again that he's on a different level."
Rating: 10.0
Sentiment: 0.25873015873015875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TH0810wrote on 29.08.2024:[10.0] "Simply put, the greatest professional wrestler of all time. from ROH to WWE to AEW & NJPW, he has always been at the top of his game consistently for the last 25 years. He wasnt lying when he said he was the best wrestler in the world, and has been for the last 25 years. It has genuinely been an honor to have been alive at the same time as Bryan Danielson & Daniel Bryans active in-ring career."
Rating: 10.0
Sentiment: 0.21666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SCMIV440wrote on 28.08.2024:"I personally believe that Bryan Danielson (or Daniel Bryan whichever rolls off the tongue better for you) is the greatest wrestler to ever live. For me the greatest thing about him is that it doesn't matter whether it's in a garage or at Wembley Stadium: he will always give 110%. A promoter can ask him to jump and he'll ask how high. He's dominated for over 3 decades in multiple continents. This second run that he's currently on is, in my opinion, better than some wrestlers will ever do in a single career. I do understand his decision to retire but I will definitely miss him as a performer."
Rating: No rating found
Sentiment: 0.26874458874458873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Decapopodwrote on 28.08.2024:"Bryan Danielson is why I love pro wrestling today. I started watching wrestling with WCW then WWE and I always liked that. But watching Danielson during is ROH run was a revolution. Since, I watched him in WWE and AEW and I always feel he was THE wrestler. There's a lot of great wrestlers but for me Danielson is the greatest american wrestler of all time."
Rating: No rating found
Sentiment: 0.5800000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Semicorrectwrote on 28.08.2024:[10.0] "It's hard to rate wrestlers across different eras, but Bryan Danielson is without question one of the greatest of all time. While he's had some peccadillos in his career, like overly long matches in ROH and an insistence on doing some silly story stuff in WWE and the occasional meh match, no American wrestler has been more consistently great -- and he's been great for 20+ years. Outstanding promo ability, outstanding technical ability, outstanding fire, an unparalleled ability to get fans to boo him when almost anyone else would have to be a permanent babyface given his reputation... if he's not a 10, no one is."
Rating: 10.0
Sentiment: 0.26845238095238094
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: A 64wrote on 28.08.2024:[10.0] "If Ric Flair isn't the greatest wrestler of all time in North-America, then it's clearly Bryan Danielson. The fact that this guy Can be considered as in the top 10 best wrestlers of the decade THREE times (2000s, 2010s and 2020s) is just something nobody else can do. I'm just not ready for the greatest in-performer of all time go retire."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RaindropsOnRoseswrote on 27.08.2024:[10.0] "This man is the greatest professional wrestler of all time, bar none. The greatest at every aspect of wrestling, he is the perfect professional wrestler."
Rating: 10.0
Sentiment: 0.64
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ShaneHaugheywrote on 27.08.2024:"One of the greatest wrestlers of all time. In-ring, I would say he is absolutely the best. He always knocks it out of the park and is the only wrestler to have brought me to tears of joy."
Rating: No rating found
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Chosen Onewrote on 27.08.2024:[8.0] "Der frühe Teil seiner Karriere ist mir unbekannt, aber ich fand ihn in NXT Season 1 sehr unterhaltsam im Tandem mit The Miz. Schade, dass die beiden sich nicht mögen, weil sie unglaublich unterhaltsam zusammen waren! Über den Rest seiner WWE-Karriere muss man wohl nichts sagen. Er war unfassbar over und das in einer Zeit, in der sonst die Fan-Reaktionen eher mäßig waren (im Vergleich zur Attitude Era vor allem). ABER sein Moveset hat mir nie so zugesagt und er war ziemlich anfällig für Verletzungen. Am meisten mochte ich ihn deshalb für seinen Witz und seine Persönlichkeit, die im storybasierten WWE am besten in Szene gesetzt wurde. In der mehr sportbasierten Liga AEW finde ich ihn leider weniger interessant."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 0nly1Boiwrote on 27.08.2024:[10.0] "How do you even describe the career and legacy of Bryan Danielson? No words could ever really describe him, you'd just have to watch his matches and just experience how special of a wrestler he is. Incomparable."
Rating: 10.0
Sentiment: 0.3190476190476191
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GameBoyAbysswrote on 27.08.2024:[10.0] "Almost certainly the best western wrestler of all time, and a high contender for the GOAT. Is there any other wrestler with such a high proportion of bangers! ?"
Rating: 10.0
Sentiment: 0.20704081632653057
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BigVan JimmyWangYangwrote on 26.08.2024:[10.0] "I wish I could give him a 20, at this point has cemented himself as the GOAT by a comfortable margin, NOBODY has as many all time great matches over as long of a period of time as consistently as Bryan. Man has been a top star everywhere he goes and had a whole award named after him because of just how damn good he is. Today is August 25th 2024 and earlier today Bryan won the AEW World Championship infront of 50k people in the main event of All In. Today is a good day"
Rating: 10.0
Sentiment: 0.37878787878787884
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MatthiasMarkingwrote on 25.08.2024:[10.0] "Best of all time man, comfortably the best babyface ever and also a sensational heel. No wrestler gets me consistently out of my seat like the american dragon"
Rating: 10.0
Sentiment: 0.5527777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: genericusernamewrote on 24.08.2024:[10.0] "Absolutely in the conversation for the best of all time and even as he is supposedly winding down still has a great argument for being the best wrestler in the world. Everything he does is in service of the match and the story, and his ability to connect with the crowd is top notch. That's not even getting into his ability, both as a technical wrestler and otherwise. It's going to be quite sad when he hangs it up"
Rating: 10.0
Sentiment: 0.3555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Odinohkawrote on 22.08.2024:[10.0] "I'm convinced that Bryan Danielson is the best wrestler in the world. His intelligence in the ring, his positioning and his wrestling are unrivalled. Every character works with him, every opponent shines against him and he shines against everyone. He's capable of anything, he sells wonderfully, every one of his moves is credible and impactful, every one of his holds is brilliantly and precisely executed, it's a flawless performance. Both in-ring and acting. He's got it all, and it's a shame the WWE let him slip away."
Rating: 10.0
Sentiment: 0.6125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ceasara63wrote on 17.08.2024:[10.0] "Bryan Danielson might honestly be the greatest professional wrestler of all time. Over twenty-five years, Danielson has been competing at such a high level and never really ever having a "prime", he's always been great and has just been getting better and better as he gets further into his career. His in-ring work alone would justify my high rating, he's had so many countless classics and is able to have a great match with virtually anybody. Looking at other stuff though, he is a severely underrated promo, he's never had one standout promo but he has an enjoyable promo style, passionate and real. He is perfect at being the underdog face, the role he's played most throughout his career, but he is also a great heel, and has the very rare ability to be able to switch between whenever necessary and make it work excellently. Countless memorable matches, memorable moments, Danielson has built a great legacy for himself in professional wrestling. Danielson has been a permanent fixture of my wrestling fandom since I was a child, he's always been one of my favorites, and even if next weekend is the end of his career, there won't ever be anybody as good as him."
Rating: 10.0
Sentiment: 0.37532258064516133
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Willie 19200wrote on 15.08.2024:[10.0] "Without a doubt he is the best wrestler of all time. He puts on great matches and story lines everywhere, He puts on great technical matches with people like CM Punk, Zack Sabre Jr, Katsuyori Shibata, Kenny Omega, and so many more. He was also known as one great underdog story in 2014 with the fans forcing the WWE to put Bryan in the main event Wrestlemania 30. It is sad that 2024 will be his last full year in wrestling but 2024 has already been a great year for him. He revolutionized the sport and always gives 100% in the ring. Bryan Danielson has always shown compassion, Effort, and Love to Pro-Wrestling and he will go down in history as the greatest to ever do it. One other thing Danielson has is the ability to put people over. In his AEW career he's put over countless talents and has rarely been put over in feuds, but still is one of the biggest fan favorites plus one the greatest of all time. Overall Bryan Danielson is amazing and when he retires later this year it will be the end of an era for pro-wrestling. 12/10 The GOAT easily."
Rating: 10.0
Sentiment: 0.38128019323671497
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: UltraMark1wrote on 15.08.2024:[10.0] "There is an argument for Danielson to go down as the greatest wrestler of all time - whether it's in wwe, aew or Roh he has consistently proven himself to be the greatest- He's had classics everywhere he's gone and can elevate any talent and can give them their best matches of their career such as kofi Kingston at wrestlemania 35 - having wrote this before his match againt sweve at i all in whether he wins or loses he will go down as one of the greats"
Rating: 10.0
Sentiment: 0.32654320987654323
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BULLETCLUB4EVERwrote on 14.08.2024:[10.0] "One of the best wrestler in the last 20 years. A lot of classic match since he was in Ring of Honor. The tour of the last year is amazing"
Rating: 10.0
Sentiment: 0.3533333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KSupreme3wrote on 09.08.2024:[10.0] "Bryan Danielson will go down as one of the greatest wrestlers to ever lace up a pair of boots. The journey it took to get here was insanely treacherous. Once a student of THE Shawn Michaels, His run in early ROH is the stuff of legends, and thats before he ever stepped into a WWE ring. As Daniel Bryan, he fought tooth and nail to reach the top. The Yes movement is a testament to how much the fans loved him. Hes not built like the stereotypical Vince era superstar, which made his ascent to the top even more difficult. But he never gave up, and neither did his fans. His career almost came to a screeching halt due to injuries so severe that the doctors told him to never wrestle again. Again, he never gave up. He returned to wrestling and won multiple championships in WWE until his departure in 2021. When the American Dragon showed up in AEW, it felt like a rebirth of sorts. This run he has been on is nothing short of legendary. At this point; if you see Bryan booked for a match, you know its going to be something special. With only 3 years in AEW hes had classic matches with some of the greatest wrestlers of this generation, such as: Kenny Omega, Will Ospreay, Zack Sabre Jr., Okada, Hangman, Eddie Kingston and the list goes on. As his full time career winds down, its safe to say that Bryan is a certified Hall of Famer. It will be a devastatingly sad day when he decides to retire. A master technician that could make you tap out in many painful ways. Will not hesitate to kick your fucking head in. His Busaiku knee is iconic (as well as the LeBell/Yes Lock). Hes just someone that you want to root for. An underdog that always seems to find a way to overcome obstacles in and out the ring. I have no shame reiterating that he will be known as one of the greatest wrestlers of all time. Bryan Danielson IS Professional Wrestling. And its hard to argue against that."
Rating: 10.0
Sentiment: 0.13321308321308317
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Connor26wrote on 08.08.2024:[10.0] "I genuinely think he could have a great match with a broom He is a legend he made my cry when he retired and when he came back Im eagerly awaiting my first live match of his at Wembley against swerve"
Rating: 10.0
Sentiment: 0.31727272727272726
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: lgccswrote on 07.08.2024:[10.0] "Danielson probably has the strongest case out of anyone (at least in the US) of being the absolute GOAT of the industry. So good for so long, Danielson's career is winding down but it's hard to imagine anyone passing him up on the totem pole anytime soon."
Rating: 10.0
Sentiment: 0.017129629629629616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Prorasslinanglewrote on 05.08.2024:[10.0] "Good. Lord. What a wrestler. I would like to say this is @modernravns fault as we... discussed some matches but really I was the catalyst for it. But this was genuinely one of the most intense... wrestlers hes ever shown me. This wrestler is incredible."
Rating: 10.0
Sentiment: 0.48333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jsbortswrote on 05.08.2024:[10.0] "Best in-ring technician of his generation. Innovator of so much offense and makes everything look incredibly crisp despite being undersized and not a terrific athlete. Great on the mic even though it was a thought of weakness for so much of his career. Unparalleled ability to connect with the audience through in-ring work. Delivers every single time the bell rings. One of the best of all time."
Rating: 10.0
Sentiment: 0.42232142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: YuuRiTKwrote on 03.08.2024:[10.0] "This man is a bloody legend, whether it be in WWE, ROH or AEW, this guy is one of the greatest wrestlers of all time. I'd put him up there with Mitsuharu Misawa and AJ Styles as one of the top three wrestlers in the world. Man, how can you not like him?"
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "Arguably the best wrestler that is active right now. Every match he has I watch, even with people I don't really like. He gets me to enjoy matches that I never thought I would just with his presence. The world of wrestling will miss him when he finally retires, and until then we need to appreciate what we have in Bryan Danielson."
Rating: 9.0
Sentiment: 0.2920634920634921
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Vairawrote on 01.08.2024:[10.0] "Bryan Danielson is the best wrestler in the entire world right now. Has the best matches with anyone, cuts intense and genuine promos, has an authentic character that you can always get behind and understand. He's a technical genius, his wrestling is an art and he's a living legend. He's #1."
Rating: 10.0
Sentiment: 0.33174603174603173
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dntbamarkwrote on 29.07.2024:[10.0] "D-Bry is one of the most technically gifted performers and one of the best pound-for-pound wrestlers working in the business today. He's a guy that practically had to claw his way to even get a shot in the WWE and made the most of it when he finally got his chance. I loved his work as "Earth's champion, " and his run in AEW has done wonders for the company."
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ozzywrote on 23.07.2024:[8.0] "I firmly believe that Bryan is one of the most overrated wrestlers in the industry. No promo ability, barely any charisma, good in ring work and one of the best OF HIS ERA emphasize OF HIS ERA. He is a respectable technician and I have no belief that he isn't talented in that ring, but when I hear that he is supposedly the greatest of all time, it honestly makes me groan every time. His legacy in ROH can only be potentially matched by Punk, Cole or Joe, (Singles only so no Briscoes) which is no shame. If he were solely ROH he would absolutely recieve a 9 or 10 but you look at the rest of his career where he is more known for WWE, with wrestlers like Flair, Bret Hart, HBK, Steamboat, Macho and Angle, and he cant even come close to comparison, in ring ability or sports entertainment qualities. And that's not mentioning his lackluster waist of money that was his AEW run, where he doesn't even feel like a star, thrown into the terrible BCC. In the PG era of the 2010s, I will acknowledge that very few were on his level, but that's not necessarily a complement towards Bryan, as much as it is an insult towards the 2010s WWE locker room. But most aren't just saying he is the best in WWE history, they say he is the best of all time? I wouldn't even put him in top 25, I have made a specific spreadsheet making a point system out of number of matches, career length, the ratings people get here on Cagematch/Wrestling Data, Hall Of Fames, Meltzer ratings and what not to determine the goats of all time, (Flair is #1 BTW) and he scores 27th out of currently 1472 male wrestlers, without people like Frank Gotch, Ed Lewis, and Jim Londos having all their data being correct due to certain information being sadly lost to time. That is all without my opinion being accounted for, and I would have him far lower, potentially not even top 75. So greatest of all time? Yeah, no. When competing with Flair, Thesz, Gotch, Ed Lewis, Londos, Gorgeous George, Bryan is a foot note, and that's barely opinionated or an exaggeration."
Rating: 8.0
Sentiment: 0.27733193277310925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Advocate of Inokismwrote on 18.07.2024:[10.0] "Maybe the greatest wrestler of his generation. Danielson's effect on the pro wrestling landscape has been nothing short of transformative. He changed the game forever. I don't know what other grade to give him other the highest one possible."
Rating: 10.0
Sentiment: 0.05833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Joe907wrote on 15.07.2024:[10.0] "Bryan Danielson is the best professional wrestler of all time. He is just a technical wizard. He went from the small indie shows to the highest mountain of professional wrestling. His wrestling is just flawless. Brings the best out of everyone. He's been doing his best work in AEW. Danielson has been on top of his game everywhere he went. GOAT wrestler."
Rating: 10.0
Sentiment: 0.36818181818181817
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JBruce1018wrote on 13.07.2024:[10.0] "The best professional wrestler Ive ever seen and Id argue that hes the greatest American performer ever as well. Nasty in the ring and underrated on promos (very much like Bret Hart) but his intensity and character work is outstanding as well. A must-watch performer that Im so happy has been able to return to the ring and do so at an extremely high level. Wrestlemania XXX will forever be one of my favorite events for his two spectacular performances and what a great happy ending that it had as well. Hes been awesome in AEW since he arrived and that was after making Roman Reigns on his way out of WWE. Just a brilliant artist and it will be sad when he starts to take a step back, but hes deserved it."
Rating: 10.0
Sentiment: 0.4122222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JamesHarrowrote on 12.07.2024:[10.0] "Easily one of the best wrestlers to have ever existed from fairytale stories to WWE and dream matches in AEW. It makes me so happy to see him able to wrestle regularly again after his injuries in WWE. Regardless of where he is wrestling its just good to see him back doing what he loves."
Rating: 10.0
Sentiment: 0.4904761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Xzaviiiwrote on 12.07.2024:[10.0] "The goat of our generation and maybe one, if not the best technical wrestler of all time. I heard someone compare wrestling to music, in this case, Bryan is really the conductor. I dare someone to find something negative about this guy, its literally impossible."
Rating: 10.0
Sentiment: 0.046666666666666655
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ZerKOwrote on 08.07.2024:[10.0] "Bryan is the modern day GOAT for me and one of the best of all time to ever lace them up. Simple as that, and possibly this is an understatment."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: bfrgwrote on 07.07.2024:[10.0] "in my opinion bryan danielson is the greatest in-ring wrestler of all time. Bryan Danielson wrestled in so many different wrestling companies and always got over while also delivering the best matches the companies has ever seen it doesnt matter who he wrestles he always bring out the best in them. Danielson almost every year had the match of the year i dont think nobody will ever be good as danielson in the ring he is special."
Rating: 10.0
Sentiment: 0.6510204081632652
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JTIwrote on 23.06.2024:[10.0] "The best to ever lace up a pair of boots. I'm not exaggerating when I say that Bryan Danielson is the best wrestler in the history of the industry. Where to begin? His in-ring acumen is masterful-- actually, "masterful" isn't good enough. Legendary. His in-ring acumen is legendary. Danielson is like some kind of perfect organism that can not only adapt and evolve but thrive in and even conquer any environment he gets put into. He's a chameleon who can work any style against any wrestler in the world and make it look convincing and real. Absolutely baffling that anyone could think this dude isn't one of the best on the microphone, either. Danielson is a master manipulator of the audience, able to get any kind of reaction he wants. His The New Daniel Bryan gimmick from the late 10's, with the wooden belt and indignant altruism and leading up to Kofimania, is some of the best content you'll find from that entire decade regardless of company. He works so fucking well as the plucky underdog babyface, the sniveling cowardly heel, or the kick-ass-take-names no-nonsense tweener. His short stature only enhances each of those aspects. His physique has also always been impressive, and just his physical health in general is something to behold. Aside from a few years where we weren't even sure that he could wrestle at all anymore, this dude's been wrestling on a regular basis for a quarter of a century. And the crazy thing? This year, his final year, is his best yet. That's fucking incredible. His passion and resilience are astounding. This is a man who not only "gets" pro wrestling but lives, breathes, sweats, and bleeds pro wrestling. He *is* pro wrestling."
Rating: 10.0
Sentiment: 0.4023341523341524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jjrulswrote on 21.06.2024:[8.0] "Obviously great in the ring, I just have never connected with him as others have. I didn't see his 2010s run so that may impact this, I will go back some time to watch and see if this changes my opinion on him."
Rating: 8.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 2pt0EcoBoostFusionwrote on 09.06.2024:[10.0] "There has been a debate within the wrestling community for many years of whether Bryan Danielson is a top 10 wrestler of all time, whether in this century or of all time. I personally believe that Danielson has all the factors to justify him being a top 10 wrestler of all time. He started wrestling before the 20th century came to a close, but he still wrestles as if he's in his prime, and this is despite him receiving many injuries to his head and neck, which have managed to put him on the shelf before, but only for 2 years from 2016-2018. Danielson has a really good and diverse move-set which makes him one of the best technicians all around, he manages to put on bangers with some of the best in the business and has also put over some great wrestlers while putting on said great matches, which helps the credibility of those he works with. Danielson has good skill on the microphone as well. His character work is great, and brought us the underdog gimmick which led to him winning the WWE Championship in 2014 at WrestleMania 30, which became "The Miracle on Bourbon Street" named by commentator Michael Cole. I still absolutely admire and really enjoyed his Heel Planetary (or whatever you want to call it) gimmick he had in WWE in 2019 and he was apart of that awesome feud which managed to bring us KofiMania, which gave another great but more underappreciated worker in Kofi Kingston an unforgettable WrestleMania moment. He joined AEW in 2021 and it is one of the BEST hires TK has ever made, it really furthered Bryan's legacy and made great moments even despite not holding the company's most prestigious world belt. This year will be the end of Danielson's Full-Time career and although he may be working part-time from some point forward in the near future, I want to thank Bryan for being one of the greatest wrestlers of all time and entertaining many of us. Here's to a perfect 10 point rating!"
Rating: 10.0
Sentiment: 0.5709677419354839
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kai Kantewrote on 09.06.2024:[7.0] "Bei den Bewertungen schwingt natürlich die Liebe zum Underdog in Verbindung mit seiner Leidensgeschichte mit. Klar ist, er ein guter Techniker aber 50 % der Matches bestehen aus Dropkicks und Kicks. Ich bin dessen mittlerweile überdrüssig. Seine Körpergröße beschränkt sein Moveset natürlich im Gegensatz zu vielen seiner Kollegen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Zak22wrote on 09.06.2024:[10.0] "Technical master, his body of work before going to WWE showed he was one of the best in the world and his WWE and AEW run have confirmed this every year since 2010. Danielson is a top quality wrestler."
Rating: 10.0
Sentiment: 0.475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: sarahlicitywrote on 09.06.2024:[10.0] "As Danielson himself said in a promo about a year ago, Bret Hart clearly did not have the foresight when he called himself "the best there is, the best there was, and the best there ever will be". Because as much as I love Bret Hart, and I really do love Bret Hart, the plucky tiny vegan from Aberdeen, WA stands as, quite simply, the greatest professional wrestler of all time. This isnt an exaggeration; people were saying this in 2002, when Danielson was barely old enough to buy a beer after working a show, and ever since then he has gone from strength to strength. It is no surprise that he was consistently one of the most over talents during his WWE from the moment he set foot in Stamford to the time he left ten years later. A man that is so full of heart that the fans would, and did, riot for him if he didn't get the respect he deserves. A man who dragged me back into watching professional wrestling with the Miracle on Bourbon Street. A man who broke all our hearts when he had to retire, and made us cry tears of joy when he was cleared; I still get goosebumps at the crowd in Dallas pointing to the WrestleMania sign for him. But Danielson is not a man to rest on his laurels. He could've been content to phone it in for the rest of his career, coasting on a Legend Pop until he was an old man. But instead, he re-invented himself as one of the most despicable heels in the WWE, playing his part in elevating Kofi Kingston to get the respect HE deserves too. And even after that, he puts on masterpiece after masterpiece, such as the AJ Styles match in the middle of the pandemic. His move to AEW gave him another career renaissance; freed from the mores of PG television, he can spread his wings and turn back the clock fifteen years, and he does so in marvellous fashion. His matches against Page, Omega, Okada, and Sabre Jr. are modern-day masterpieces. He put on a 65-minute banger with MJF just as easily as we get dressed in the morning. And my god, that Ospreay match. Forget Match of the Year; that's a lock for Match of the Decade, and it's only 2024. A master technician, no slouch on the mic, and selfless in his promotion of others, future generations will surely look back and envy us for being able to see the American Dragon in his prime."
Rating: 10.0
Sentiment: 0.28282828282828276
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Stalks14wrote on 04.06.2024:[10.0] "Will Ospreay vs Bryan Danielson. Nigel McGuinness vs Bryan Danielson. Brock Lesnar vs Daniel Bryan. Kenny Omega vs Bryan Danielson. Daniel Bryan vs The Authority I Struggle to put into words how incredible and everlasting this man is. People will say that others drew more than him, had better promos than him. But no one will make you feel like Bryan Danielson will. In my opinion the greatest professional wrestler of all time."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rassle Fanwrote on 31.05.2024:[10.0] "If there's any negative I can come up with it's that he gets injured a lot. I can't really hold that against him because he's so passionate about his craft that he puts everything he has into every match. In American wrestling he's the closest we'll ever get to another Bret Hart."
Rating: 10.0
Sentiment: -0.03749999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: blastermertwrote on 14.05.2024:[10.0] "Bryan did it all, does it all, and I hope will do it all and all. Maybe the best in-ring among wrestling universe, one of the best crowd engagement in history, elevating the promising others when it comes to that, he never ever disappoints when it comes to putting up a good match, hell you'd even not going to be disappointed if you expect one of the greatest matches of all time. He is my first station when I want to watch a top notch quality art in the form of wrestling."
Rating: 10.0
Sentiment: 0.48750000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: imonmxrswrote on 13.05.2024:[10.0] "can play an admirable underdog babyface, or an absolute annoying prick of a heel. the guy is simply one of the best workers of all time, may not be the biggest of guys but his sheer work-rate and talent make up for all of that. also very good on the mic and elevates almost every single person hes in the ring with, im sure he could have a good match with a mop if he tried."
Rating: 10.0
Sentiment: 0.27095238095238094
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: leonconnelly652wrote on 09.05.2024:[8.0] "Honestly think he's a little overrated, he reminds me a lot of cross between Owen hart and obviously beniot but I don't think he's as good as either of them. His offense is always a little light when he's striking. Honestly I'm a bigger fan of his character work then of his in ring stuff"
Rating: 8.0
Sentiment: 0.20277777777777775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: mr-peanut-butterwrote on 28.04.2024:"To me he is the best wrestler in the world at this point in time and arguably one of the best to ever do it. With Danielson matches, you get an absolute bare minimum standard of "match of the night". He brings the best out in every opponent through the pacing of his matches, the logic of the story they produce and through his own selling. He's got a small stature, but you feel like he could hurt you very badly as he is vicious and his array of submission holds is pretty scary. Just seems a terrific guy outside the ring too."
Rating: No rating found
Sentiment: 0.18076923076923077
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MichaelB137182wrote on 28.04.2024:[10.0] "Not here to write an essay, not here to recap his career. If you know you know if you dont then find out. Regardless his coming to the end of his career, so appreciate the matches he gives you, give the man his flowers and pray that he can still do a few super matches as there is still alot of wrestlers we need to see him go against. One Of The Greatest To Ever Do It."
Rating: 10.0
Sentiment: 0.37777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: itscalledtaylorhamwrote on 24.04.2024:[10.0] "I'm not just saying this because he's the man who made me love wrestling, but Bryan Danielson is the greatest wrestler of all time. For over 20 years, this man has shown time and time again that he can work any style, face or heel, with anyone on earth and get a solid match. Hell, he could probably get 2 stars out of me, a terrible athlete who's never stepped in the ring. If you watch the early ROH shows, the commentary team knew exactly what he was going to be, and I'm honored (no pun intended) to have seen it happen."
Rating: 10.0
Sentiment: 0.14166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ksr31wrote on 23.04.2024:[10.0] "One of the thing i am grateful for life is that i got to watch Bryan Danielson wrestle. The Greatest wrestler of all time. There will never be anyone like him."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cosmowrote on 22.04.2024:[10.0] "Bryan Danielson is the greatest wrestler to ever step in a ring he is the goat and in my mind there's not that much competition"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Oddtalkwrote on 22.04.2024:[10.0] "Danielson will go down as one of the best to ever do it. Give it another 10 years and people will be talking about him like people talk about Misawa today (but hopefully without the asterisk of a tragic end)."
Rating: 10.0
Sentiment: 0.03148148148148148
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JustAWrestlingFanwrote on 22.04.2024:[10.0] "One of the all time greatest. He just gets it. He has mastered so many different aspects of wrestling. He has mastered the technical aspect, becoming one of the finest to watch in the world. He has mastered the storytelling aspect, dragging the viewers along for rides for years. He has mastered the art of being both the most loved face and being the most hated heel. He has mastered the art of the promo. But most importantly, he has mastered the art of getting a connection to the crowd. The fact that he has managed to climb to such heights, and still put on legendary matches to this day in spite of his injury history, he really is in that best of all time discussion."
Rating: 10.0
Sentiment: 0.39
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JWC122304wrote on 19.04.2024:[10.0] "You can count the amount of bad matches he has had on one hand. Every time he steps into the ring, no matter the opponent, almost a guarantee its going to be great. Truly one of the greatest to ever step foot into a wrestling ring. An incredible underdog and awesome heel. Great on mic and overall great human being. An incredible story, from premature retirement to a run of a lifetime. Will go down as one of the best ever."
Rating: 10.0
Sentiment: 0.5287037037037037
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TommySDKwrote on 17.04.2024:"The GOAT in my opinion. One of the go-to wrestlers I know I can watch to find an amazing match on any given night from both a wrestling and storytelling aspect"
Rating: No rating found
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: arisenbywrote on 12.04.2024:[10.0] "[9.9] Danielson is actually about as close to a perfect wrestler as you can get. Anyone putting this man outside of their top 5 in-ring hasn't seen him. Amazing in the ring, great promo, passionate, has the range to be a huge babyface or heel, the man has it all. It's going to be a sad day when he finally hangs up the boots for good, but for now, all we can do is enjoy his generational run for whatever time he has left in the ring."
Rating: 10.0
Sentiment: 0.29615384615384616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: tlaustinwrote on 05.04.2024:[10.0] "Innovative, passionate, charismatic, able to produce a classic match with anyone of any wrestling style, has had all-time great matches in just about every promotion he's ever stepped into, can be the biggest babyface in the world and the most hated heel in the world whenever he needs to be either, was able to make a cartoonist vegan villain work somehow, survived some of wrestling's most famously bad booking decisions only to come out stronger, and he's still doing it better than most 2 decades into his industry-defining career."
Rating: 10.0
Sentiment: 0.23690476190476195
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Beeebonwrote on 01.04.2024:[10.0] "I have watched plenty of Danielson's matches from all stages of his career, he really does live for wrestling and is a phenomenal performer, I don't really have much to add other than the fact he is one of my absolute favourites"
Rating: 10.0
Sentiment: 0.18733766233766233
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: andytuga86wrote on 30.03.2024:[4.0] "The fact that this guy is one of the most popular wrestlers of all time, is beyond me. Not really the kind of Superstar i want to se as the face of a company or the Champion. I don't like his Indie body type at all, which has become the standard model for a lot of wrestlers. That was a big downgrade for the Wrestling product in my views. I will never understood the hype for him even though i can see some charisma (kinda forced sometimes) in him and some innovative moves in the ring. Way overrated for sure."
Rating: 4.0
Sentiment: 0.22999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Brutish Dandywrote on 28.03.2024:[5.0] "Quite possibly the single most overrated worker of the past fifty years, Bryan's overcompensation for his lack of physical aura and natural charisma has resulted in him chronically endangering his health with a style that he refuses to change despite having a wife and kids. That's not just being a mark for yourself, that's being an objectively bad husband and father. If he had half the smarts his supporters proclaim he would've stayed retired the first time around. I guess his matches with Morishima from twenty years ago were good though. Best wrestler ever."
Rating: 5.0
Sentiment: 0.12380952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Pigeon Scratchwrote on 26.03.2024:[10.0] "One of the best, ruthless, lovable men in the entire business, I can't say a single bad thing about him because he does everything so damn good. A great look, A fantastic technician and overall allrounder, one of the best promos around, and genuinely such a great guy outside of the ring through and through. Whether it's during his indie days, the top American promotions like WWE or AEW, or his occasional match in Japan, he's just absolutely incredible. I personally think he's currently in his prime, and has almost been constantly putting out banger after banger in AEW and NJPW. A personal favorite."
Rating: 10.0
Sentiment: 0.22202380952380954
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Michael Morbiuswrote on 27.02.2024:[10.0] "The greatest of all time. The perfcet mix of in-ring skill and promo work. Everytime he gets in a ring he is always impressive, delivers great perfomances and makes his opponents look like a million bucks. His promo are real, it looks like he means every word coming out of his mouth. He has the best babyface and heel run in the modern day WWE. His run in ROH and the indipendent early on in his carrer was phenomenal. His run in AEW has established him as the goat. He's also a true inspirational figure for overcoming the odds: despite the all injuries he suffered throughout his carrer and potential carrer ending injury in 2016 he's still here putting some of the best matches you'll ever see. Indomitable will personified. Simply a living legend and the greatest wrestler who has ever lived."
Rating: 10.0
Sentiment: 0.51
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AmirTheEnforcerwrote on 26.02.2024:[10.0] "There is nothing negative that can be said about this very fine fellow, The American Dragon ticks all boxes and no matter where he is, he never fails to be jaw dropping."
Rating: 10.0
Sentiment: 0.12291666666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TripleCrownwrote on 24.02.2024:[10.0] "I mean, come on, it's Bryan Danielson. Incredible wrestler before WWE, grew a lot character-wise within the promotion and became a huge name. He is one of the very few wrestlers you know could put on an absolutely fantastic match regardless of his opponent or the amount of people in the crowd. Injuries really took away some great years from him, but he bounced back in a huge way and is still killing it in AEW."
Rating: 10.0
Sentiment: 0.2808333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Spookylol1wrote on 21.02.2024:[8.0] "He's excellent and you would be lying to yourself if you said otherwise. Shoutout to his selling in his match vs Brock Lesnar, one of the most difficult to watch matches of all time solely due to how well Bryan sold Brock's offence."
Rating: 8.0
Sentiment: 0.21875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Divus Rolexuswrote on 19.02.2024:[10.0] "My personal GOAT and certainly the best American wrestler ever. No one had such a complete career everywhere in the world. He is one of the reason why I fell in love with wrestling, just the perfect wrestler. He never delivered a bad match, if you have one with Danielson, then you're not a good wrestler. His indy run in the 2000's is fantastic, straight-up classics with Nigel McGuinness, KENTA, Chris Hero, Morishima, Samoa Joe... WWE really treated him bad for the first years but they stopped to be stubborn and fully exploited his one of a kind talent. I really much appreciate his heel turn in 2018 and his world title reign at the time. And then, you have Danielson in AEW. Just perfect for now. He got a new youth and his last full time run is simply legendary. His match against Kenny Omega is my favourite one ever in AEW. He also had legendary matches with ZSJ, Adam Page and MJF. Not acknowledging Danielson's talent is just bad faith. I'm glad I got to witness his career and I sincerely think, once he retires, he'll be next to names like Kurt Angle, Bret Hart, Shawn Michaels, in the history of wrestling."
Rating: 10.0
Sentiment: 0.250024975024975
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wrestling Foreverwrote on 12.02.2024:[10.0] "Also wenn ich hier lese das Bryan Knochen aus Glas haben soll weil er sich nun mehrfach verletzt hat kriege ich innerlich schon eine gewaltige Wut auf solche Aussagen die sowieso nicht stimmen. Auch auf das sein Moveset bezog das es schwach sei. Hier ist nun mal die WWE und Bryan darf halt viel nicht zeigen. Damit muss ich klar kommen. Aktuell geht es ihm übrigens wieder viel besser. Er will wieder wrestlen ihm ist langweilig er vermisst es einfach und er wartet auf die Freigabe der Ärzte das er wieder aktiv in den Ring steigen kann. Alter Text: Bewerte nun seine bisher gesamte Karriere. Als ich das erste Mal damals in einem Wrestling Magazin über ihm laß war ich nicht an ihm interessiert. Da hab ich mich noch nicht fürs Indy Wrestling begeistert. Auch als er dann in der WWE bei NXT war ließ er mich kalt, doch das hat sich bald geändert. Er wurde für mich dann in Laufe seiner WWE Jahre immer interessanter und hat mich immer mehr begeistert. Inzwischen hab ich auch viele seiner Matches aus seiner Indy Zeit gesehen und man kann der Mann wrestlen. Egal ob die Matches unter 60 Minuten, 60 Minuten oder drüber sind seine Matches bei ROH sind einfach nur geil. Aber nicht nur da sondern auch bei PWG, Dragon Gate USA und sonst im Indy Bereich. Auch bei der WWE ist Daniel absolut angekommen. Zur Zeit ist er total over und hat auch schon einige wichtige Title in der WWE gewonnen. Zwar darf er vieles was er drauf hat nicht in der WWE zeigen doch das was er zeigt überzeugt auch in der WWE absolut. Charisma hat er genug, inzwischen ist er auch gut am Mikro und über seine Wrestling Fähigkeit muss man nichts mehr sagen. Edit: 09. 04. 2018 Jawohl er ist wieder aktiv im Ring egal wenn es auch im WWE Ring ist. So nun große Bitte an die Booker AJ vs Bryan Backlash 2018 ich will es einfach sehen. Edit 12.02.2024 Bryan überzeugt seit Jahren nach dem er nun bei AEW dort ist. Was ich interessant fand nach echt Jahren wurde das ROH World Title / ROH Pure Title Unification Match von ROH Unified in seinem Matchguide überboten und zwar mit dem Singles Match vs. Zack Sabre Jr. bei NJPW The New Beginning In Osaka 2024. Nach der Niederlage hat er Backstage Zack als den besten technischen Wrestler anerkannt. Bryan wird dieses Jahr 2024 seine Karriere beenden bis dahin genieße ich ihn noch im Ring."
Rating: 10.0
Sentiment: 0.11688311688311688
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RusherBryan29wrote on 10.02.2024:[10.0] "One of the best wrestler of all time. His in ring is always amazing, great talker, believable moveset. Also he's respectable figure in wrestling. Long live the American Dragon."
Rating: 10.0
Sentiment: 0.4357954545454546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: minimark215wrote on 07.02.2024:[10.0] "One of the greatest to ever do it. Great promo, can play a wide range of characters. Amazing in-ring work and technical prowess. 10/10"
Rating: 10.0
Sentiment: 0.45999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GhassaneJabriwrote on 02.02.2024:[10.0] "The first Bryan Danielson match I've ever watched was the 2013 match against John Cena. It was so weird to witness what I thought was a weird-looking bearded troll who non only beat the most recognizable wrestler in my native country (Morocco) but also turned out to be inspiring, entertaining, hilarious, ballsy, scary, but most of all, one of the most amazing workers in the history of professional wrestling. WWE Daniel Bryan was my initial draw towards wrestling. ROH Bryan Danielson was even better and made me fall in love with one of the best eras in ROH's history. And AEW Bryan Danielson is easily the most incredible tour de force from someone whose injuries nearly led him to never wrestle again. His body of work has a little something for everyone."
Rating: 10.0
Sentiment: 0.315719696969697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MattHallwrote on 31.01.2024:[8.0] "I like Daniel Bryan, he is very good in the ring and had some classics with John Cena, Triple H, Undertaker, Kane, CM Punk, or just about everyone. My favorite Bryan match was him vs. Cena at Summerslam 2013, and defeated him for the WWE championship!"
Rating: 8.0
Sentiment: 0.7675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kynarionwrote on 29.01.2024:[10.0] "Easily the greatest in ring performer in North America. What can you say about him that hasn't already been said ad nauseam? Electrifying"
Rating: 10.0
Sentiment: 0.7166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Tragiicwrote on 27.01.2024:[10.0] "Amazing heel, amazing face, some of the best matches I've ever watched. Probably the greatest of all time."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MaximilianBernerwrote on 27.01.2024:[6.0] "Für mich keiner der "Larger than Life" Charaktere die mich im Wrestling so begeistern, wenngleich man ihm die Qualität seiner Arbeit nicht absprechen kann. Trotz allem niemand mit dem ich mich identifizieren kann oder der mich mitreisst. Die Fans lieben seine Story so wie sie die meisten Aussenseiter Stories lieben, ich persönlich kann ihm beim besten Willen nichts abgewinnen, tut mir leid."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: packjutneywrote on 24.01.2024:[10.0] "The GOAT. I don't think I need to say anything else. This man singlehandedly got me back into wrestling on multiple occasions, and has continued to deliver. I love his WWE work, but I will say his run in AEW in terms of match quality may be one of the best runs ever? ! I wanted to throw a rating up for him now that he's almost done wrestling full-time; dude is one of the greats in and out of the ring!"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Grapefruit Juicewrote on 22.01.2024:[10.0] "A fantastic worker who could get a good match out of just about anybody. Why they couldnt see what he had in him at first is insane, a workhorse and good at pretty much all aspects of the business."
Rating: 10.0
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Plebastianwrote on 07.01.2024:[10.0] "Bryan Danielson is, to me and to many others, the Perfect Wrestler. 'Best in the World' is an understatement."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Madladwrote on 07.01.2024:[10.0] "Brayan Danielson is unreal.one of the greatest american wrestlers ever. his in ring work is perfect and he's a master in psychology and makes everthing he do matter his selling is wonderful.Danielson on the mic is more than solid specially as a heel. He's just incredibe at everything he does"
Rating: 10.0
Sentiment: 0.4761904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: tzifeelipwrote on 05.01.2024:"By far the greatest American wrestler I have ever witnessed. I can't say of the world and I can't really talk all time but he MUST always be in that conversation. He hooks you in any time he wrestles and makes you care about him about his opponent about the match about everything. He belongs to every hall of fame there is and deserves to have the happiest of retirements and all his wishes to become true. Stay safe Bryan."
Rating: No rating found
Sentiment: 0.35833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: polishsuplexwrote on 04.01.2024:"Dude's a legend. Has set the bar for the sport and the show of wrestling for his entire career. In-ring, his technicality, pacing, and versatility is incredible. His recent stints on AEW commentary are a brilliant character extension, funny, and sometimes even poignant. Only issue, and it's more of a concern, is a penchant to work through injuries, especially in light of his history. Take some rest, Dragon. You've more than earned it. Rating: A love that never ends."
Rating: No rating found
Sentiment: 0.39545454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Machinedwrote on 01.01.2024:[10.0] "Obviously one of the best to ever do it. Awesome technician who can really give you a good match against any kind of wrestler, and an aspect that is really underrated of him I feel like is his in-ring story-telling as in he knows very well how to play a cheating heel, a babyface underdog or just the really overconfident guy who knows he's better than his opponent."
Rating: 10.0
Sentiment: 0.4600000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CatboyMathuswrote on 31.12.2023:[10.0] "The litteral GOAT, this guy has done it all, from king of the indies, to king of the biggest promotion ever to king of the first WWE Rival company in 20 years, he is the essence of Pro Wrestling ! This guy made me LOVE the wrestling industry, he knows how to captivate an audience, his in-ring skills are truly unmatched, he has incredible mic skills, his storytelling proved multiple times to be near perfection and is good both as a face or as a heel ! I love you Bryan"
Rating: 10.0
Sentiment: 0.45535714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: matt17wrote on 25.12.2023:"Greatest in-ring wrestler of all time. Michaels is a close second. Absolutely incredible in all facets of pro wrestling. Great heel, unbelieveable babyface, incredible seller, hard hitting strikes, high flying, submissions, underrated promo, awesome human being aswell, humble and always eager to give back. Absolute GOAT."
Rating: No rating found
Sentiment: 0.37236111111111114
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: devxntewrote on 19.12.2023:[10.0] "What can be said about Bryan Danielson that has not been said already. If there was a wrestler I would build a company around it would either be Cena, Punk, or Danielson. This man is absolutely the GOAT inside the ring and I do not think that anyone comes close. His brawling is amazing, he's one of the best technicians to ever step foot in the ring, he's super physical, he can play the underdog, he can play the face, he can be a monster weirdly enough and he can have a GREAT match with just about anyone. One of my favorite matches of all time is him going against Kofi Kingston. He made Kofi look like a million bucks and Kofi was able to have his greatest singles match of all time. His catalogue of matches is just too many to list out, but some of my favorites include Kenta at Glory by Honor, Cena at Summerslam, Kofi at Mania, Punk at Over the Limit, Aries at Testing the Limit and honestly many more. There's a reason he's so influential to wrestlers coming up. He is the best and no one comes close to him yet."
Rating: 10.0
Sentiment: 0.530952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Perc Anglewrote on 18.12.2023:[10.0] "In my opinion has to be the greatest to do it in ring. He had revolutionary matches for years weather in ROH or WWE or AEW he could have 5 star matches with anyone and has."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: laddermatchwrote on 17.12.2023:[10.0] "Danielson is perhaps the greatest pro wrestler to ever lace up a pair of boots. Nobody delivers in big matches better than him. His ROH run was absolutely legendary. His WWE run was absolutely legendary, and his AEW run has been absolutely legendary. He was never meant to be the star that he's become but he's so damn good that he rose above all the bullshit that was put in front of him (especially in WWE) and became a living legend. There's never gonna be another wrestler like him again so we should enjoy him while we can."
Rating: 10.0
Sentiment: 0.5636363636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ryanbest316wrote on 15.12.2023:[10.0] "One of the best professional wrestlers in the world, maybe ever. Combines genius technical wrestling with vicious strikes and tops it off with visible passion in everything he does. You would have to struggle to have a bad match with him."
Rating: 10.0
Sentiment: -0.11999999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: brennyomegawrote on 14.12.2023:[10.0] "The greatest professional wrestler of all time. His run in Ring of Honor/Dragon Gate completely eclipsed what was going on in the world of professional wrestling at the time. Probably my favorite run in wrestling history. It's strange to see someone peak so early in their career, but never lose that insane ability. His WWE run did start off slow with NXT and his early main roster years, however, his ability to get over with the fans easily shined through. I stopped watching wrestling between mid-to-late 2014 and late 2019, so I did miss a couple of years of his career, but going back, he was still magnificent. Even before he initially retired, there's still a strong case for being the greatest of all time. Coming back from retirement, despite changing his style a little to protect the longevity of his career, it never changed the quality of his matches. One of his best career moves was leaving WWE for AEW. He was superb in WWE, but AEW prioritizes the matches itself more than WWE. His matches with Kenny Omega, Minoru Suzuki, Eddie Kingston, and Hangman Page, all happened in 3 months, and they're still being talked about. Danielson's AEW run has "forgettable matches" but only forgettable due to the fact that they're ALL superb. It is impossible for him to have a bad match."
Rating: 10.0
Sentiment: 0.1401388888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Paul04wrote on 11.12.2023:[10.0] "You want a comedy wrestlers, a monster heel, a coward heel, a underdog babyface, a submission machine, Daniel Bryan Danielson is the GREATEST WRESTLER OF ALL TIME, it doesn't matter in what position or role you put him, he is always going to make the best, the most selfless wrestler, he doesn't mind in putting over others, it doesn't matter if is ROH, AEW, Dragon Gate, WWE, etc. he is the best to ever do it"
Rating: 10.0
Sentiment: 0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KKeanelwrote on 10.12.2023:[10.0] "Even if you differentiate American and Japanese circuit, Bryan Danielson must be considered by everybody as one of if not the greatest professional wrestler of all time with full aware about meaning of this term. ROH's classics with McGuiness, legendary Yes Movement and many memorable moments from WWE and now making his unfullfiled dreams real by matches with Omega, Okada, ZSJ and many others at the final chapter of his career. This guy accomplished in every matter of being a wrestler. Enormous in-ring performer."
Rating: 10.0
Sentiment: 0.3285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: blondehog78wrote on 06.12.2023:[10.0] "One of the greatest professional wrestlers of all time. The odyssey of his career, from the earliest of ROH days to the McGuinness matches, signing with WWE and the magic of his Mania 30 journey, his retirement and magical return, to his current renaissance in AEW and putting on some of the best matches of all time, the man is a bonafide legend in this business and one who hopefully will remain putting on the best examples of his craft for years to come."
Rating: 10.0
Sentiment: 0.5857142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: No Onewrote on 30.11.2023:[10.0] "One of the greatest pro wrestlers of the 21st Century. One of the greatest in-ring performers of all time. Brillant technician. Brilliant mind for pro wrestling. One of the best Ring Generals of all time. Can have a great match with a wet mop. Legendary rivalries with Nigel McGuinness, Takeshi Morishima, Chris Hero, & KENTA. One of the main guys that built Independent Wrestling into a cult phenomenon. May be the greatest ROH World Champion of all time. Put on way too many re-watch worthy instant classics in ROH, all over the Indies, in Japan, & in the WWE. His WrestleMania XXX World Title victory is legendary. Excellent Babyface. Excellent Heel. Awesome promos. One of the greatest under 6 foot tall wrestlers ever. The "YES" Movement launched him into a new level of superstardom. I am excited to see what he does in AEW. A Living Legend. Updated: Bryan Danielson is now playing the role of a Tweener in AEW, this allows him to showcase his brilliant psychology as both a Babyface & as a Heel, while also giving him the chance to wrestle EVERYBODY. A genius. UPDATED: Nice to see that children are allowed to use the Internet. In the words of Jack Perry: "Go cry me a river.""
Rating: 10.0
Sentiment: 0.6352766798418973
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: chemicalcvltwrote on 26.11.2023:[10.0] "Bryan Danielson is the greatest professional wrestler of all time, there is truly nobody on his level. Every time I think he can't get better, or that he's as good as he can be he improves. Even in his final year as a full time professional wrestler he's managing to put on matches at a level that most performers could only dream of touching. I do not know if we will ever see a talent like him in the industry again.."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: tobyserrawrote on 26.11.2023:[10.0] "Who's the best wrestler in the world? Bryan Danielson. Peak of wrestling skill, while still being the most gripping storytellers."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Funnynameinsertwrote on 21.11.2023:"[10.0] Bryan Danielson is the greatest in-ring preformer of all time from his technical prowess of great limb work and submissions to his incredible and believable selling he truly is a once in a generation talent."
Rating: No rating found
Sentiment: 0.64
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: skillgullwrote on 17.11.2023:[10.0] "Bryan Danielson is the best wrestler of all time in my opinion. He has fan investment, the booking to back it up, he's charismatic and in ring he can have a good match with everyone. The prefect professional wrestler."
Rating: 10.0
Sentiment: 0.4600000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JediSaiyanMaster1203wrote on 17.11.2023:[10.0] "For my money, the best in ring wrestler to emerge from the independent scene in the 2000s. Bryan Danielson is easily one of the best submission specialists/technical wrestlers to ever grace the mat. Every move he does looks picture perfect, his chain wrestling and counters are always fun to watch, he knows how to get an audience engaged in that style of wrestling like very few can. Even aside from his in ring abilities, he's shown that he can even be a good promo and showcase personality and charisma. Dare I say he's the total package? Like CM Punk, he's had amazing runs in every company he's wrestled for no matter where, giving us classic rivalries and matches with everyone from Nigel McGuiness to Ricky Starks. Overall, one of the best in ring wrestlers of all time who is underappreciated as a personality."
Rating: 10.0
Sentiment: 0.45692307692307693
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: nWo-Joshi-Guywrote on 14.11.2023:[10.0] "Do I think Bryan Danielson is the greatest professional wrestler ever or even just in the world today? No, I do not but I also would not be able to rate him below 10 either. His characters and his charisma are often underappreciated in my opinion."
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MrCheesyPotato37wrote on 14.11.2023:[10.0] "The greatest professional wrestler of all time. His in ring work is unmatched. His mic work is top tier. His character work is top tier"
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Renat03wrote on 13.11.2023:[10.0] "My GOAT. Can work in every environment, against everyone, in any circumstances and as a good as a babyface (probably one of the best babyface run of all time towards WM30) as a heel (beginning of his ROH World Champ-run, Planet Champ, AEW/BCC work). Has one of the best work-rate ever and is very underrated on the mic' + incredible longevity. If 2024 is really his last year as a performer, we MUST see all the dream matches come true and please, TK, add this legend to the AEW World Championship's legacy."
Rating: 10.0
Sentiment: 0.54375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HYDROMAN93wrote on 10.11.2023:[10.0] "One of the greatest technical wrestlers ever one of my all time favorite wrestlers ever but I think its time that he hang up his boots. Hes gotten injured way too many times since signing to AEW. I after seeing the amount of injuries in AEW lately I honestly can see why WWE waters down their wrestlers it allows them to wrestle longer throughout the years and keeps them healthier though we all know That Bryan is still one of the top 5 wrestlers in the world today I think he should be given a farewell match when hes able to return and have one last match against an opponent of his choice to put over he deserves the proper send off after what hes done for wrestling as a whole. As much as it pains me to say it its time for him to hang up his boots."
Rating: 10.0
Sentiment: 0.3203703703703704
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: bigben123wrote on 02.11.2023:[10.0] "Greatest of all time. He has the longevity to be at peak capacity for over 2 decades. He has the resume with incredible matches against an infinite list of opponents: Nigel, Joe, KENTA, Morishima, Strong, Aries, Lowki, Cena, Punk, Styles, Reigns, Omega, Hangman, Moxley, Sabre Jr. He is an incredible promo. He has wrestled every damn style you can think of: British Catch, Strong Style, Jave Lucha, WWE Main Event, Hour draws, Indie epics++. Nobody else has ever been as perfect as the American Dragon."
Rating: 10.0
Sentiment: 0.4833333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Speedy2332wrote on 01.11.2023:[10.0] "In my opinion the best wrestler of this century. Granted, there's still a lot of time for other wrestlers to steal that spot but he is arguably the best technical wrestler of all time and one of the greatest men to lace up a pair of boots and he is still putting on bangers every other week."
Rating: 10.0
Sentiment: 0.4583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: wcwfanwrote on 20.10.2023:[10.0] "Undoubtedly one of the best to ever do it. Technically incredible and his selling is second to none, to the point where you're always worried he's really injured this time. Most of all he has that rarest of qualities in a pro-wrestler, the only of other example of which I can think of is Bret Hart, where he almost makes you forget that what you're watching is not a real sporting contest. Just a fantastic entertainer who could probably wrestle a cloth bag to a classic match."
Rating: 10.0
Sentiment: 0.29416666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AnthoTheKIDwrote on 15.10.2023:[10.0] "Bryan Danielson. What a career renaissance in All Elite Wrestling. I mean we know that the American Dragon is fucking great but now, we can call him legendary. His bout against Zack Sabre Junior at Wrestledream was so great to see live as it was technically perfect and beautiful to watch. Smooth and all. Concerning his in-ring legacy. I think the man can do it all."
Rating: 10.0
Sentiment: 0.5193181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ThunderCloudwrote on 10.10.2023:[10.0] "Bryan Danielson is one of the absolute best wrestlers of all time. He will most likely be mainly remembered for having one of the greatest underdog runs in the WWE, but his legacy goes much deeper than just that. He is good on the mic, can play both a babyface and heel character well, and was always able to get a reaction out of the crowd. On top of that, I would say that he is in the conversation for being the best in-ring wrestler of all time. His technical wrestling ability is phenomenal, he is a good striker, he is good at selling, and he is also great at bringing intensity to a match. There are not really many, if any flaws with Bryans in-ring work, and he is always able to bring the best out of his opponent. The day he decides to retire for good will be an incredibly emotional day for wrestling fans around the world, whenever that will be."
Rating: 10.0
Sentiment: 0.496031746031746
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: felixshanewesternwrote on 04.10.2023:[10.0] "I consider myself honoured to witness Bryan Danielson in his prime. For my money the greatest technical wrestler of all-time, and for sure one of, if not the greatest of his generation. All-timer wrestler, with countless five star matches and great moments. He's also a classy guy with no ego, to boot. Such an asset to any company he has ever worked for, simply just a LEGEND in this sport."
Rating: 10.0
Sentiment: 0.37777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CorpusSkiptotelicumwrote on 03.10.2023:[10.0] "The greatest ever and it's not particularly close. This guy is the best of a generation that includes people like Joe, Nigel, Punk, AJ, Hero and Cena in the states and Tanahashi, Nakamura, Shibata, KENTA, Marufuji and Ishii over in Japan. Not only has he always been better than all of them, he's also the only one in that bunch that's still in his prime. If you consider body of work and versatility, there's nobody even in Bryan's league, the man can truly do it all; epic workrate matches, focused short tv matches, technical exhibitions, bloody brawls, spotfests, tag team, gimmick matches, base for high flyers. He can do the "sports centric" style or the melodramatic wwe style and be effective at both. He can be equally compelling as an underdog babyface or as a diabolical bully heel. He's just the best."
Rating: 10.0
Sentiment: 0.18604166666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Chr1st0phwrote on 27.09.2023:[10.0] "Once Bryan is actually gone, I think we can safely say he is the greatest Wrestler in the world. Like, being the cornerstone of so many promotions, easily the most reliable guy on any roster to make a star. A long history of 3.5/5 star and above matches. It just isn't gonna be the same without him."
Rating: 10.0
Sentiment: 0.3203703703703704
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Hatefwrote on 26.09.2023:[8.0] "Bryan has lots of ultra fans, and I do respect him for everything that he's done. but I'm sorry, he's not my type at all! i mean his wrestling style, is not my cup of tea! yes, I do love a few matches of his career, that I rated so high before, but generally, he's not more than 8 for me, because of what I've just explained."
Rating: 8.0
Sentiment: -0.1342708333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wrestle Fan1122wrote on 17.09.2023:[10.0] "Bryan Danielson is easily among the Best Wrestlers in history (wrestling skill-wise) and has always been at the top of his game either it be at ROH, WWE & AEW. Danielson is a man who has been wrestling for over 20 years and is always among the best moments when it comes to wrestling shows. His striking, technical, aerial and old-school ability allows him to always wrestle a good match no matter what kind of opponent he is against. It is very criminal that his only 5-star matches only happened in AEW because I am very sure he has had tremendous matches in WWE & ROH. His wrestling skill is incredible on any day up to perfect on a good day. He is very adaptive either as a face, heel or a downright tweener since he has played them all to perfection. He displays that character who is passionate about wrestling and winning championships. In his heel run, he even played a character who was concerned with saving the planet from the fans (which I was very skeptical for at first). His promos, however, are weaker than his ability in the character and wrestling skill aspect, but I would say he is much better than most give him credit for. He has that ability to tell such a great story on the mic and can easily get you invested with a single promo. He is one of the most complete wrestlers of all-time and a very rare kind of wrestler so we should be grateful to even be witnessing him performing in the ring. The American Dragon is one of the best things to ever happen to Professional Wrestling."
Rating: 10.0
Sentiment: 0.35710204081632657
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: illiteratewand1wrote on 09.09.2023:[8.0] "Can Bryan Danielson wrestle? Yes! Does he have the look and personality to be a top tier wrestling? Yes! The downside of Bryan Danielson's career is struggling to cut solid promos, and struggling to be a effective heel. Bryan Danielson's career will always be haunted by being injury prone and comparisons to Chris Benoit."
Rating: 8.0
Sentiment: 0.4083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: euchre0wrote on 07.09.2023:[10.0] "He's the best and most complete package I've ever seen. I've seen a ton of Ric Flair and plenty of Shawn Michaels, and I am willing to concede that watching Danielson in real time may create a bias, but I think he's built on what those guys established."
Rating: 10.0
Sentiment: 0.41000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Awes0max13wrote on 06.09.2023:[10.0] "An all-time great of the squared circle. Bryan revolutionized the world of independent wrestling and then set mainstream wrestling on fire with his uncanny skills and undeniable charisma. Classic matches year after year with a plethora all-time greats and the ability to reinvent himself in interesting ways while on the global stage, Danielson is unmatched with how influential he has been in the modern world of pro wrestling. An absolute one of a kind talent who's in-ring ability combined with his mainstream appeal & charisma is probably never going to be seen on such a large scale again."
Rating: 10.0
Sentiment: 0.2680952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: nowayboiwrote on 26.08.2023:[10.0] "The Greatest Professional Wrestler Of All Time. When I think about Bryan Danielson I think about perfection. Seriously, is there something Bryan can't do? He's THE best in ring performer of all time. His matches always make sense and they are always being built perfectly. Dragon understands how he can put his opponents over without losing any credibility and he has put some of the greatest wrestling matches of all time with McGuinness, Morishima, Hangman, Hero and KENTA. As I said, he's THE best in ring performer of all time and probably is the best wrestler to mix in ring-work and promo-work. Every time Bryan talks, whether it is on commenatry or backstage or in ring, he always makes you belive in every word he says. The same as with his in ring work, he has put some of the best promos you can ever listen to. But in realtiy what makes Bryan Danielson so special, is his adaptability to to every wrestling style. He can do slugfest, techincal masterpiece, Puro-style matches, sprints, Hour-Long matches, hardcore, hell, even spotfest. There is way Bryan adapts himself in diffrent situation - position in company, everywhere he's ever been to, he was THE guy. In WWE he was so good that even Vince couldn't bury him. In ROH he is their greatest wrestler ever and in AEW it's only matter of time until he becomes their World Champion (and at this point he's one of their best wrestlers ever). The last thing I'll say is just look how Bryan Danielson changed the landscape of professional wrestling, Dragon inspired some of the best wrestlers that are currently active. Danielson returned from a career-ending injury so if that's not inspiring I honestly have no idea what is. Bryan Danielson is professional wrestling and professional wrestling is Bryan Danielson."
Rating: 10.0
Sentiment: 0.4930641821946169
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DoubleCountoutwrote on 17.08.2023:[10.0] "The greatest professional wrestler of all time. Proficient in every style, equally as entertaining as a babyface or a heel, consistently demonstrates a clearly defined understanding of pacing, timing, tempo, and overall match structure that is practically unparalleled, and capable of adapting to/getting over in any environment he is placed in."
Rating: 10.0
Sentiment: 0.3071428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: moxuresuwrote on 16.08.2023:[10.0] "In my opinion the greatest professional wrestler of all time. Everything he touches turns to gold. He redefined WWE's hiring policy and gives hope to wrestlers that are not 'tall enough'. From his indy days, to WWE and now in AEW he always been putting on absolute masterclasses with exceptional technique and storytelling. I'm still waiting for a proper match with Thatcher, Zack Sabre Jr. and Shibata"
Rating: 10.0
Sentiment: 0.3277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BESTBOUTBOYwrote on 08.08.2023:[10.0] "Danielson is in my opinion the greatest wrestler of all time. Nobody else matches his combination of versatility, longevity and quality. Equally believable as an arrogant, vicious calculating heel or the greatest face of a generation. Danielson combines a fusion of styles from Japan and the u.k to be not only the best technical wrestler of all time but the greatest in ring story teller. For the many years he has been an active wrestler he has been in the conversation as one of if not the best wrestler in the world and his influence is already being felt in many up and comers and will be for many more years."
Rating: 10.0
Sentiment: 0.4547619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Vanstylerwrote on 23.07.2023:[10.0] "As it is, Danielson is amazing at what he does. Whether it is imposing a memorable character in the ring, or having to wrestle for 10 minutes or 1 hour, he will do it in the best possible way because it is what he knows how to do and he does it quite well, there is nothing more to say"
Rating: 10.0
Sentiment: 0.52
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: flipflopdoritoswrote on 23.07.2023:[10.0] "my pick for the greatest worker to ever live. everything, and i mean literally EVERYTHING about danielson's inring work is perfect. the big spots, the technical skill, the high-flying, the stunt jumps, the use of props, etc etc. he is truly a once-in-a-lifetime talent."
Rating: 10.0
Sentiment: 0.3039772727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: s0mbr1tvwrote on 18.07.2023:"Danielson lost that push that he had spent years in WWE but he did not lose his fighting quality, without a doubt it is the measuring stick for several new talents"
Rating: No rating found
Sentiment: 0.012121212121212116
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Neon Aussiewrote on 02.07.2023:[10.0] "Bryan Danielson raised the bar of professional wrestling. Has been putting on absolute clinics for the last ten years. Fan reaction forced him to the top even though the executives of the biggest wrestling company in the world didnt like him. Was on a stage with all-time legends and stole the show by doing absolutely nothing. It's a travesty he hasnt been awarded more 5 star matches by the Observer."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: danzitorockwrote on 20.06.2023:[10.0] "Bryan is the most gifted and talented technical wrestler of all time, his stints were legendary in both ROH, WWE and now AEW, his charisma is off the charts and the connection he generates with the audience is incredible. It is to be admired the passion he has for the sport, very beautiful to see. This guy makes a fight against any opponent good, there's no such thing as a bad match with Bryan Danielson."
Rating: 10.0
Sentiment: 0.45999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: tomatoBhutanwrote on 20.06.2023:[10.0] "To this day, the pound-for-pound, hold-for-hold greatest professional wrestler I have ever seen. In my eyes, Bryan Danielson is greater than Inoki, greater than Misawa, even greater than Karl Gotch. It certainly doesn't hurt that he's also one of the best, perhaps the best, wrestlers when it comes to connecting with his audience, whether as a face or heel. I fully believe there will be wrestlers as good as Bryan Danielson in the future, but I doubt I will ever see a better wrestler."
Rating: 10.0
Sentiment: 0.5467532467532469
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: InsertFunnyNameHerewrote on 19.06.2023:[10.0] "My favorite wrestler of all time and quite possibly the greatest wrestler of all time. Countless classic matches with the likes of McGuinness, Styles, Omega and MJF, countless classic feuds with The Authority, Styles, and Kofi, the greatest technician of all time aside from maybe Lou Thesz. A fantastic mic worker, and ultimately a guy who made it so size doesnt matter as much in WWE. A trailblazer and a man who became the greatest in spit of everything thats ever happened to him."
Rating: 10.0
Sentiment: 0.36944444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Egyptian Dragonwrote on 19.06.2023:[10.0] "My favorite pro wrestler of all time. He is the greatest underdog and technical wrestler in the history of pro wrestling. His power and dynamic energy in the ring and the ability to entertain and put a good match and making his opponents look good. He is a true legend that no one can ever repeat him"
Rating: 10.0
Sentiment: 0.46428571428571436
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: crs285wrote on 18.06.2023:[10.0] "No doubt Danielson is an all-time great. His ability to connect with a crowd is one of a kind in this generation and the yes moment cements him at this level. His in-ring work is top tier and compares well with anyone. On the mic he is great and gets the crowd to feel how he wants him to. Can be a great face or heel. Can't find one negative thing to say."
Rating: 10.0
Sentiment: 0.48571428571428577
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Puro113wrote on 14.06.2023:[10.0] "Bryan Danielson is quickly moving up my list of favourite ever wrestlers, hes just so good at everything. Not very many people can make you feel the way he makes you feel. He is a special talent who is soo good at every aspect of wrestling it's almost unfair. He is versatile as all hell, and can get you to love him or hate him in equal measures. He controls the crowd like a master composer, and always forces them to appreciate him. I love this guy so much man. And to think we almost got robbed of some of the best matches of his career."
Rating: 10.0
Sentiment: 0.23318070818070816
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "I think Bryan Danielson is my overall favorite American wrestler of the last 10 years. Dude has the charisma to carry him and is good on the mic, despite his style being a little too flippy flloppy and kick paddy. He's just fun to watch and gets the crowd involved."
Rating: 8.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dancerwrote on 25.05.2023:[10.0] "Danielson is one of the, if not best of all time. He is really inspiring, given his average height and problems with injury. Connects with the audience super well and is a real good promo. I'm trying to think of something that Danielson lacks. Works well in any style. Can get super-matches out of people ranging from Lesnar to MJF, and makes any character he portrays believable. Gets over wherever he goes. Beloved for a reason."
Rating: 10.0
Sentiment: 0.3404761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CorpritManwrote on 01.05.2023:[10.0] "As long as Danielson has been active in-ring there is an argument to be made that he is the very best in the world. Danielson to me is THE professional wrestler. I would go as far as saying that his style and eventual popularity completely changed main stream western wresting. I dont think we'd see the highs of classic ROH and NXT without him. The day he hangs up his boots for good I will cry my eyes out just like I did in 2015."
Rating: 10.0
Sentiment: 0.21500000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: firewalkwithmewrote on 21.04.2023:"Danielson is easily one of the best wrestlers to have ever stepped foot in a wrestling ring. He has a perfect understanding of nearly every facet of the sport, and most importantly, he loves every facet of it."
Rating: No rating found
Sentiment: 0.5722222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NoTanFightFanwrote on 20.04.2023:"Danielson is the GOAT as far as in ring action. He can install so much drama and action in any match. And he has to be one of the great babyface underdogs of all time. Deserving of being among the top total wrestlers ever."
Rating: No rating found
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Fifth Pillarwrote on 03.04.2023:[10.0] "The best to do it in my 35 years as a fan. Supreme on both sides of the heel/face divide & technically peerless."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Personanowrote on 20.03.2023:[10.0] "One of the all-time greats and a force to be reckoned with in the ring. I'm unfamiliar with a lot of his pre-WWE work in Ring of Honor but I've been trying my best to catch up on some of those must-see matches. His AEW run has been absolutely phenomenal so far and I honestly can't wait to see what else he can manage to do in his time there. Bryan Danielson is a legend."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: misterkayfabewrote on 19.03.2023:[10.0] "One of the best of all time. Athleticism. The look. The skills on the mic. A complete package. Possibly the best technician of all time. Makes wrestling feel and look REAL in a way very few do today. His WWE stuff is not as interesting to me, but everything before and since is Godlike. Would love to see one more title run."
Rating: 10.0
Sentiment: 0.3933333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: mjp28wrote on 17.03.2023:[6.0] "Personally I find him pretty boring, but absolutely respect the guys skill and athleticism. He's also in pretty decent shape and has the appearance of an actual athlete, well atleast for the last 2 years as prior to that be looked like a he'd never touched a weight in his life as with many of his internet darling fat (Kevin Owens) or skinny-fat (CM Punk, Adam Cole, and Sami Zayn) contemporaries. That said at his size he is not a believable world title contender and should be feuding over a second- or third-tier title with smaller guys (not a dig on the man, I'm just a big advocate of weight classes. Weight classes---as with looking like an actual athlete---make wrestling reaslistic). Despite that, his moveset and general ringwork makes wrestling look real, well aside from his silly and contrived yes kicks. I mean how can you have such an impressive and realistic move set but have something as stupid as someone that somehow ends up on their knees mid-match and stays there as they take kick after kick after kick after kick. Keep to your realistic stuff Byran and leave that stupid move to the unrealistic contrived flippy-floppy casual-fan-kryptonite guys."
Rating: 6.0
Sentiment: -0.07901785714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: nizzyhizzywrote on 09.03.2023:[10.0] "The GOAT. An amazing wrestler where it's almost impossible to have a bad match with him. His planet's champion gimmick is probably his best run second to 2006 ROH."
Rating: 10.0
Sentiment: 0.046666666666666724
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: John Brandowrote on 09.03.2023:[10.0] "Bryan Danielson-wohl einer der besten Wrestler der Welt, mindestens in den Top 10 anzusiedeln. Bryan versteht sein Handwerk sowohl technisch als auch im Matwrestling. Dazu schuf er Momente für die Ewigkeit wie das Yes-Movement, wodurch er damals so over war, dass man sich einfach gewünscht hat, er möge gewinnen. Er ist ausserdem herausragend am Mikrofon, kann gut den Heel und den Face spielen, weiß wie er die Leute treffen kann und ist halt dabei unglaublich charismatisch. Bryan ist ein exzellenter Typ und man hat das Gefühl, er hat bei AEW nochmal eine Schippe draufgelegt. Möge man noch den ein oder anderen Showstealer zu sehen bekommen und ich sage jetzt schon einmal:Danke, Daniel Bryan für deinen Beitrag im Wrestling!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ZayTokyowrote on 06.03.2023:[10.0] "the best wrestler of all time. he is legit like playing with a character on max stats for everything because he is great at everything. storytelling, technique, striking, promo, being able to carry others, and having the draw ability. my only flaw for him is his stupid theme right now, but that could be sorted. wwe, aew, roh, or really anywhere, bryan danielson will always be a 10/10 and the best wrestler ever."
Rating: 10.0
Sentiment: 0.3873015873015873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ChrisPrattAsMariowrote on 04.03.2023:[10.0] "Greatest American (USA) born wrestler of all time and definitely a top 10 wrestler of all time. He can play a great heel that we saw with the eco friendly stint and a great face that we saw with the Yes movement. There is so much quality and quantity in his entire career considering the classics he's been in. The fact that he's been able to give out consistent great matches since 2002 is an absolute gift. My favorite match of his is against Takeshi Morishima at Manhattan Mayhem II."
Rating: 10.0
Sentiment: 0.45576923076923076
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Josh313wrote on 02.03.2023:[10.0] "Phenomenal babyface, just as phenomenal as a heel. Makes everything feel real whether he is the underdog you are rooting for or the rotten heel you are rooting against. Anybody that cannot have at least a good match with him should question their choice of profession"
Rating: 10.0
Sentiment: 0.31999999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: greaterdalewrote on 01.03.2023:[10.0] "Bryan Danielson is my absolute favorite wrestler of all time and the main reason I'm a wrestling fan to this day. Watching him get the WWE Title at Wrestlemania 30 made me fall in love with this amazing sport. An absolute wizard in the ring, a completely lovable baby face. Plus he's capable of doing doing the best technical work in the business but can also work a brutal hard hitting style too. Always a treat to watch on any card he blesses our presence on. Thank god he was able to return to the ring again"
Rating: 10.0
Sentiment: 0.2461538461538462
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: kewf1988wrote on 28.02.2023:[10.0] "Daniel Bryan is an amazing wrestler, who is insanely charismatic and also really good on the mic, despite his reputation for bad promos. He is really good at playing a comedic character, as well as a serious character, similar to the likes of Angle, Jericho, and Eddie Guerrero."
Rating: 10.0
Sentiment: 0.20952380952380953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kbnuevewrote on 27.02.2023:[10.0] "The greatest in-ring wrestler of all time. The fact that he's acknowledged by every single wrestler alive at least as one of the 5 best to ever to do this speak volumes about how good he is"
Rating: 10.0
Sentiment: 0.4047619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheLegendaryEricwrote on 27.02.2023:[10.0] "Bryan Danielson is truly one of a kind, as he is just fantastic in almost every aspect of pro-wrestling whether it be his amazing in-ring abilities, his never-say-die babyface attitude or his dasterdly heel attitude. When all is said and done Bryan Danielson/Daniel Bryan will be remembered as one of the GOATs."
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LGL19wrote on 16.02.2023:[10.0] "Genuinely one of the best wrestlers I've ever seen, can cut passionate promos and is a great face to cheer for. Also he is quite good at playing the heel and i feel his heel run in 2019 is quite underrated. "FICKLE! ""
Rating: 10.0
Sentiment: 0.605
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: QueenOfWrestlingwrote on 15.02.2023:[10.0] "Bryan is one of the best wrestlers ever, period. Beloved by 99% of fans, having not a single bad year on his record. He is one of the most consistent, talented and hard working wrestlers we have ever gotten. He is gods gift to wrestling, and it feels like dishonesty to give this man anything but a Ten"
Rating: 10.0
Sentiment: 0.2437830687830688
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WrestlingFan1wrote on 10.02.2023:[10.0] "There are no words to specifically describe Bryan Danielson yet, he is the perfect fighter or the closest to being it, the true GOAT of the USA. The guy with his age and every AEW weekly leaves you with solid fights and even contenders for fights of the year, the guy since 2002 has not had a single fight that has not been in a top of the best of the year and some being the repeatedly better, a guy like this will never be seen again, every match, every story, every promo, every damn thing he does is SPECTACULAR, I highly doubt you can know exactly how good he is, but he is. ABSOLUTE GOAT."
Rating: 10.0
Sentiment: 0.43238095238095237
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SoaKaswrote on 08.02.2023:[10.0] "Could be on the Mount Rushmore of wrestling for any person and nobody could be mad at that or argue otherwise. From a beloved underdog-babyface to veteran to chickenshit-heel to brutal and ruthless heel, this guy can do EVERYTHING. Switching up his moveset while doing so and still seeming believable on the mic even though he has been nearly every wrestling character there is to be. Truly one of a kind and it will be a dark day when he retires from wrestling since Bryan Danielson is one of the best wrestlers/sports entertainers/just entertainers I have ever seen."
Rating: 10.0
Sentiment: 0.025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ZFIELDwrote on 26.01.2023:[10.0] "American Dragon has succeeded in every situation he's been put in. Underdog babyface, obnoxious heel champion, BITW technical wrestler, dumb comedy with Kane. Across a variety of promotions with differing styles and features, Dragon has made the most out of every opportunity gimmick and match. He also happens to be one of the most selfless wrestlers in the world and always focuses on making his opponent look good. The guy has never buried someone he shouldn't have, and he's never missed when it matters. G.O.A.T"
Rating: 10.0
Sentiment: 0.22083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wrasslinfan619wrote on 24.01.2023:[10.0] "Top 5 wrestlers ever argue with A wall. Whether its in ROH as A top tier babyface and amazing dickhead heel, or in WWE as the leader of the yes movement which was god damn incredible, and as planet's champion, or in team hell no, or as the no man he's amazing. And in AEW as once again an amazing face and great dickhead heel, Bryan can do it all. His best matches are with Nigel, Cena, and probably Omega. He's an amazing promo too, his post-return and post-heel turn promos were his 2 best. Not much else to say he's legit the goat he doesn't just look like one."
Rating: 10.0
Sentiment: 0.6363636363636364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TooDarkMarkwrote on 24.01.2023:[10.0] "I was lucky enough to watch many of his matches in NYC in ROH. Morishima, Samoa Joe, Nigel McGuinness, KENTA, Briscoes. I enjoyed his YES era immensely, and have gotten to see him continue his career in AEW, seeing him live against Kenny Omega and Chris Jericho. Of course, there are the myriad of 5-star matches on TV, with Hangman Page, Bandido, Takeshita, Anarchy in the Arena, the four way with Claudio, Jericho and Sammy, and a personal favorite, John Silver. He deserves all the accolades possible. I remember when he was going to hang it all up in 2006, because things just weren't happening for him. I'm so happy he stayed with it, and has become an all-time legend."
Rating: 10.0
Sentiment: 0.276969696969697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MachoHBKwrote on 23.01.2023:[6.0] "The fans sure do love cheering for this Joe Somebody who's always been as exciting to me as grilled cheese. I respect Daniel Bryan or Bryan Danielson or whatever two bland names he stuck together as far as in ring abilities go. But I never was the fan who rooted for the everyman schlub character (see; Dusty Rhodes). That kind of character just doesn't make a big impression on me. When your catchphrase is literally one word, and it ain't even a cussword... well I just want a little more excitement with my grilled cheese I guess."
Rating: 6.0
Sentiment: 0.17458333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GulakBusickwrote on 20.01.2023:[10.0] "I've often changed my mind on who I think is the greatest in ring performer of all time. Flair, Funk, Jumbo, Misawa, Kawada, Kobashi, Tenryu, Negro Casas. Right now I'm going with Bryan Danielson."
Rating: 10.0
Sentiment: 0.6428571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: guysquiteriowrote on 19.01.2023:[10.0] "Like Mr.Regal would say, Bryan Danielson is the perfect wrestler! Probably the best wrestler of all time. 2023"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Daigotsuwrote on 15.01.2023:[10.0] "One of the all-time greats. An amazing in-ring performer, with a ton of innovative offense. He has a masterful grasp of psychology and storytelling in the ring; he's really second to none as far as what goes on between the ropes is concerned. He's also a great promo and is very, very charismatic. Danielson has it all."
Rating: 10.0
Sentiment: 0.5214285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: benh2wrote on 12.01.2023:[9.0] "One of the most gifted of all time. As a pure wrestler, few wrestlers in history could touch him. His pre-WWE work was absolutely magnificent. Can work multiple styles and understands the nuances of how to work a match such as pacing and working the crowd."
Rating: 9.0
Sentiment: 0.28775510204081634
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Bullshark1wrote on 10.01.2023:[9.0] "One of the greatest technical wrestlers of all time. Bryan is perfection in the ring, although his gimmicks could use some work. His runs in WWE and ROH were nothing short of inspiring, and in AEW, he's making tons of major moves. Although I'm not a major fan of technical wrestling, I must give credit where credit is due. This guy is a legend."
Rating: 9.0
Sentiment: 0.17578125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BigVanKaelwrote on 31.12.2022:[10.0] "The greatest of all time, Bryan has few equals as someone who understands wrestling down to its core."
Rating: 10.0
Sentiment: 0.21481481481481482
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Shadow Explosionwrote on 26.12.2022:[10.0] "The Greatest Wrestler of All Time, Bryan Danielson is someone who has consistently been the best part of any promotion he's been apart of. His technical ability is second to none, very rarely does a Bryan Danielson match suck, his ability to put on some of the best matches around is astounding. His character work is fantastic, his WWE run really improved his promo & acting skills. The "New" Daniel Bryan character while a short run was fantastic and full of great promos. And now in AEW he's back to just putting fantastic matches in the name of violence. Bryan Danielson can do and has done it all, hopefully he has 1 more Japan run before he retires because it feels like he hasn't excelled the puroresu scene just yet even 23 years into his career."
Rating: 10.0
Sentiment: 0.3908612440191388
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: fruggmanwrote on 19.12.2022:[10.0] "Danielson is the Bret Hart of the current era. A technical wizard that is incapable of having a bad match, a popularity that is seemingly evergreen and one of the greatest storylines in wrestling history against The Authority in WWE. His current role in AEW of gatekeeper is a bit beneath his drawing power but his desire to put over and build younger talent against possibly the best worker alive says something to his character and skill. A legend."
Rating: 10.0
Sentiment: 0.15555555555555559
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Undertalkerwrote on 14.12.2022:[10.0] "Er ist ein ausgezeichneter Techniker und im Matwrestling herausragend. Gleichzeitig beinhaltet sein Repertoire aber auch spektakuläre Moves, und an ordentlicher Stiffness lässt er es ebenso nicht mangeln. Er ist ein Pro-Wrestler der Extraklasse! 2014 hatte ich geschrieben, dass ich ihm erst die volle Punktzahl gebe, wenn ich den Eindruck habe, dass es mehr Daniel Bryan/Bryan Danielson ist, der für seine Overness verantwortlich ist, als dass es die Yes-Chants sind. Es hat sich für mich längst klar gezeigt, dass es wesentlich mehr sein Charisma war, das ihn so over gebracht hat, und er auch ohne diverse Movements unheimlich gut ankommt. Sein Micwork hat er über die vielen Jahre auch stetig verbessert. Daher gehe ich von 9 auf 10 Punkte hoch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MainEventMasterwrote on 02.12.2022:[10.0] "Might just be the greatest wrestler of all time, this dude has worked in nearly every promotion and my god, he has made it work in all of them."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Enriquepollazzowrote on 27.11.2022:[9.0] "It almost feels like 1-10 isn't enough. There needs to be a stop between 8 and 9 for guys who you respect but aren't your favorites. I appreciate Bryan, but he has never done it for me. But I feel bad giving him the same thing Id give Sammy Guevera! So he has to be a 9."
Rating: 9.0
Sentiment: -0.23333333333333328
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: li0nsaultwrote on 23.11.2022:[9.0] "Other than Yes Movement Bryan, I never felt anything special about him. Yes, as a techniker he's one of the best to ever do it, but that's about it. His mic skills are nothing outstanding, that doesn't really matter because he has natural charisma just by being himself. If I have to rate him based on his prime, I can safely say Yes Movement Bryan is one of the best thing that ever happened. Also, I gotta give him credits for being absolutely selfless, he's "underused" in AEW right now, but he only cares about having matches with young talent."
Rating: 9.0
Sentiment: 0.3431547619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mcbolskywrote on 22.11.2022:[9.0] "His run in WWE from Summerslam 2013 to Wrestlemania 2014 was probably the best face run of all time. Now in AEW he gets booked like shit which sucks but at least we have all of his past highlights to look back on."
Rating: 9.0
Sentiment: -0.008333333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DingDongwrote on 15.11.2022:"danielson is someone that truly can do it all. he's like a machine that just prints out free five star matches no matter who he's in the ring or in a program with. genuinely one of if not the best wrestler out there today imo"
Rating: No rating found
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: whiterice47wrote on 14.11.2022:"10/10 - One of the best all-around wrestlers today. He also seems like a straight up good guy, I appreciate that he hasn't bad-mouthed WWE after leaving, as those types of antics just seem petty."
Rating: No rating found
Sentiment: 0.5249999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: nothingleftinsidewrote on 10.11.2022:[9.0] "I haven't seen the majority of his work, but he's by far my favorite wrestler out there, and he got me to start watching wrestling weekly again after 20 years. The stuff I've seen from him in WWE and ROH has been great. Definitely seems in the lineage of great all time technical workers, like Malenko, Bret, [redacted], Angle. Possibly a 10 once he retires."
Rating: 9.0
Sentiment: 0.31428571428571433
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: YourKingMobwrote on 03.11.2022:[10.0] "A wrestler's wrestler and a GM's wrestler. Probably the best at the most varied aspects of wrestling in the last 50 years. For those who doubt: name another you could stick in a time machine and place him in any organization from the 70s to now and they'd excel. 1980s AAA? Mid 90s RINGS? Late 70s NJPW? Mid 80s World of Sport? He can do it all and look incredible doing it. No one else I can think of could do what I just listed, along with all his work he did in Japan, Stateside and in Europe and be as highly regarded by fans and wrestlers while doing it. Absolutely without flaw in any way that really matters. Superlative in the ring, great on the mic, elevates other wrestlers, is incredible in a faction, regularly turns unbelievably dog-$#! + angles into burnished 24k gold. There will never be another Bryan Danielson."
Rating: 10.0
Sentiment: 0.26150000000000007
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Sick Lebowskiwrote on 31.10.2022:[10.0] "Zugegeben, zuerst konnte ich wenig mit Danielson anfangen. Je mehr ich von ihm sehen durfte, desto mehr hatte er mich jedoch überzeugt - der Mann versteht sein Handwerk absolut, ist im Ring einer der Besten und ständig für Klassiker gut. Man merkt, dass er das Wrestling liebt und bringt dies im Ring auch gut rüber. Am Mikro ist der American Dragon auch ziemlich gut, aber keine absolute Spitze. Aber gut, wenn dein größtes Problem ist, dass du auf deinem Zeugnis bei Promos nur eine 1- bekommst, hast du keine Probleme."
Rating: 10.0
Sentiment: -0.1714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheNomadMagicianwrote on 27.10.2022:[10.0] "Er bringt alles mit was es braucht, Charisma, Promoskill, Wrestlingskill, er hat den Look. Bryan Danielson ist schlicht Maineventmaterial."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: cal9099wrote on 27.10.2022:[7.0] "Without a doubt in my mind one of the most overrated wrestlers of all time. I respect the guy and his work ethic but I just don't see it! Yes I've watched some great matches of his, but people seem to fall over themselves for absolutely anything this guy does. When you compare him to another modern day legend like an Okada I think it's night and day, different stratospheres of wrestling entirely."
Rating: 7.0
Sentiment: 0.30416666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Blankwrote on 18.10.2022:"If there was ever a perfect wrestler, it would be Bryan Danielson. I've never seen a wrestler as versatile as he was. You want him to be a chicken shit heel? He can do that. You want him to play the roll of a bully instead? He can do that too. A sympathetic underdog babyface? No one is better. A violent tweener? A comedy character? A main eventer? A jobber? He can do all of that. His versatility extends to his in ring work too. His match with Suzuki was a hard-hitting brawl, with Nigel Mcguinness he had a series of technical masterpieces, he created comedy gold with Kenny Omega (in their PWG match, not their AEW match), he made Kane watchable in tag and trios settings, he even wrestled whatever genre Bray Wyatt likes to wrestle and was the best at that too. The best part is that he was better in many of those roles than some of the best wrestlers who specialize in them. What more can I say? He is the greatest wrestler of all time."
Rating: No rating found
Sentiment: 0.40444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LTwrote on 11.10.2022:[10.0] "Einer der besten Wrestler aller Zeiten und auch menschlich eine absolute Legende. Kann im Ring nahezu jeden Stil worken und ist dazu auch noch ein guter Schauspieler und Talker. Zudem hat er eine tolle Karriere hingelegt und sich in jeder Company der Welt bewiesen. Weiß nicht wie man hier nicht auf 10 Punkte kommen kann."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kyle135wrote on 09.10.2022:[10.0] "All-around Greatest of All Time. Does everything well and has done it nearly everywhere. Like Regal says "the perfect pro wrestler""
Rating: 10.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "A living legend who we are lucky managed to recover from his injuries to wrestle again on a full-time basis since 2018. Absolutely intense in the ring with a breath-taking style that mixes technical brilliance with great striking ability and fast pace high-flying moves used to tell great and compelling stories, he is also amazing in the character department, able to play as a wide variety of faces and heels with great results. He is very believable on the mic too, so what's not love with him?"
Rating: 10.0
Sentiment: 0.38095238095238104
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Flame233wrote on 22.09.2022:[10.0] "The term GOAT gets a new meaning with this guy (and I'm not talking about the beard). This guy is a living legend, you just have to admire him walking into the ring with the whole arenas shaking and screaming "YES! " chants; this kind of connection to the fans is what makes him a GOAT. On top of that, his charisma and in-ring fighting skills are on the highest levels. I was so connected to Daniel Bryan, that when he left because of his injury, he left me crying. As I am a big crybaby, I was crying again when I heard his music hit when he was appointed as a GM for SmackDown. He was a right pick for Wrestlemania XXX main event winner, and oh boy what a win it was! He is one of the greatest faces in wrestling but he also had amazing heel run with the WWE title, and how he made an "EcoHeel" gimmick work is beyond me. I don't watch AEW so I can't really relate to his career there, but I know he's amazing as always, and hope he is happy there. I can only wish him the best of luck, and also wish that I can see him in WWE again one day."
Rating: 10.0
Sentiment: 0.3546707678286626
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CMX-7wrote on 16.09.2022:[10.0] "American Dragon Bryan Danielson - The most versatile and most technical wrestler of all time, almost all of his matches are great, he tells great stories in the ring. I also want to note his acting skills - it's amazing, he can be a great cute face, a funny comedy hero! and when he is a heel, it is pure gold! He is like Chris Jericho, in any company he can show an amazing exciting match that can become a classic! I also respect his hard work and his work ethic, for which he well done. I wish him good health and all the best! )"
Rating: 10.0
Sentiment: 0.4220568783068783
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: El Gobernablewrote on 12.09.2022:[10.0] "If he's not THE goat he's at the very least the best American wrestler of all time. Best in the world since 2006 he's gotten extremely over in every place he has wrestled, that's something very few people can say."
Rating: 10.0
Sentiment: 0.20416666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GwenCube64wrote on 05.09.2022:[10.0] "Despite sometimes having lackluster promos, he is probably a top 15 talent of all time and it's not even debatable."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FEEBLEwrote on 01.09.2022:[10.0] "THE GREATEST OF ALL TIME! Yes, Bryan Danielson is the GOAT in my opinion. He is probably the only guy that can bring strenght, ability and emotional weight to a wrestling match. Since 2004 in ROH, Danielson has been changing wrestling in it hole form. His 2010-2021 time in WWE has it's highs and lows, but despite the booking having its issues, Bryan always was bringing unbelievable matches, and he earned a thing that no one imagined he could possibly get: the unconditional support of the crowd, either is he heel or baby face. Then, Bryan didn't renewed with WWE and finally went to AEW, where he performes till this day, and in a little more than a year, Danielson already brought CLASSICS with "Hangman" Adam Page, Jon Moxley, Kenny Omega and Daniel Garcia. Danielson is a once in a lifetime wrestler, and we need to give him credit, because this guy is one of the responsables for you be watching professional wrestling in 2022."
Rating: 10.0
Sentiment: 0.12916666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Matthew23clawwrote on 31.08.2022:[10.0] "Not only one of the best in ring workers ever but also one of the most lovable personalities in all of wrestling. In and out of the ring this dude entertained me countless times."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Lakhiarfarhad91wrote on 12.08.2022:[10.0] "The American Dragon Bryan Danielson is undoubtedly one of the greatest to ever step foot inside the ring. A guy who has been consistently great since the start of his career and has a massive catalog of great and classic matches. He could work a good match with the worst wrestler on the planet because of his ring work and ability to construct a match in various ways and make those matches look compelling. He mesh well with any type of pro wrestler. Be it a technical wrestler, high flyer, brawler and a giant powerhouse. Exceptional seller and can have the crowd behind him like no other. He succeeded in both the independents and in the WWE environment, if Bryan Danielson and Daniel Bryan were two different persons, both would be two of the GOATs , that's how great he is."
Rating: 10.0
Sentiment: 0.22532407407407407
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HighFlyDeathcorewrote on 07.08.2022:[10.0] "I know a lot of my ratings are ten but its easy when i review icons like this man! Bryan Danielson is easily on the mount rushmore of technical wrestling and has very few equals..He has had the best matches on nearly every show he is on. His recent match with Garcia is a brutal and incredible match. His match with Chris Sabin at PWGs Threemendous 2 show was also incredible. His WWE send-off was an incredible match also as well as the Mania Triple Threat that had came before it. Omega vs Danielson has been a classic every single time it has occured, which i believe is only twice. The hour long brawl with Hanger was a MOTY for last year. Even The Fiend vs Bryan at the rumble 2020 was pretty good. I have to say Danielson is possibly one of the best ever wrestlers and he is such a great and believable promo cutter too. One of the all time best faces and one of the all time best heels to boot! Easiest 10 i have ever awarded."
Rating: 10.0
Sentiment: 0.3436630036630036
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Inserthere750wrote on 04.08.2022:[10.0] "For the longest time Kenny Omega was my favorite wrestler of all time. But then I decided to check out Bryan Danielson's ROH work, it was love at first sight. Ever since then he has long surpassed Kenny Omega as my favorite wrestler, and is the reason why I love technical wrestling."
Rating: 10.0
Sentiment: 0.31428571428571433
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: chrisalvarezwrote on 01.08.2022:"In my opinion, the greatest wrestler to ever live. 10/10 as a face, and 10/10 as a heel. The match catalog speaks for itself."
Rating: No rating found
Sentiment: 0.5681818181818181
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Klauwiswrote on 31.07.2022:[10.0] "In my humble opinion, Bryan Danielson is one of the few with the legitimate claim to be one of the best in the world. In all aspect of wrestling, this man is completely excellent and I'm always excited to see him in any context. With great character work throughout WWE and AEW and delivering absolute classics with Kenny Omega, Hangman Page, Brock Lesnar, AJ Styles and so on, Bryan Danielson is gonna be remembered for years to come."
Rating: 10.0
Sentiment: 0.4250000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: pwokamalwrote on 29.07.2022:[10.0] "He's one of the if not the greatest active pro wrestler in the world. He's great as heel as well as a babyface. Best in ring, mic skills, connection with audience. Perfect wrestler"
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: sbg2022wrote on 02.07.2022:[10.0] "A rare breed of the great in-ring workers who can get over like crazy. Usually, fans aren't into that "pure" style, but he has a certain air about him when he performs in the ring. He makes you invested in the match that he is in."
Rating: 10.0
Sentiment: 0.11309523809523812
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Liamwrote on 18.06.2022:"Maybe the greatest wrestler of all time in my opinion. Danielson just does everything near perfectly. His current run in AEW has been amazing."
Rating: No rating found
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dkexwrote on 08.06.2022:[10.0] "Was soll man hier schreiben? Bester Wrestler der Welt und mindestens einer der besten Gesamtpakete, je nach Geschmack sogar der Beste insgesamt. Ich glaube dass er seinen absoluten Höhepunkt bei AEW erreichen wird. Wird in Zukunft als einer der Besten aller Zeiten gelten, ohne Zweifel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NeoSwas36wrote on 04.06.2022:[10.0] "Easily the greatest wrestler from the States for me. I've never seen him in a horrific match, even when he's squashing competitors he makes them look good. A great face, even better heel. I can name so many matches of his that have stolen shows."
Rating: 10.0
Sentiment: 0.41904761904761906
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: texasyoshwrote on 30.05.2022:[10.0] "I mean, what can you say that hasn't been said already. Probably the greatest pure wrestler from his generation, and despite being undersized in the eyes of WWE, made a name for himself on the national level. The Washington Machine Never Breaks."
Rating: 10.0
Sentiment: 0.3005952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RockinRobinwrote on 30.05.2022:[10.0] "There is no doubt the Daniel Bryan/Bryan Danielson is one of the greatest wrestlers of the past 20 years. Even after his first retirement, he was already hall of fame worthy thanks to his consistent runs and getting over. In his latest recreation, he's shown a completely new re-invention that brings a physicality that many wrestlers lack in the ring."
Rating: 10.0
Sentiment: 0.32441077441077437
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LaothFriuswrote on 26.05.2022:[10.0] "The most tecnical wrestler of this generation, it's a shame wwe took years of his career away from us, but now he is back doing what he loves."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: thrstynmsrblwrote on 07.05.2022:[10.0] "I don't know what I can say about Bryan Danielson that hasn't already been said a million times. THE best in the world. One of the greatest heels and babyfaces of the past decade or so. Legitimately in the conversation for the best wrestler of all time."
Rating: 10.0
Sentiment: 0.6875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ryanmichael25wrote on 22.04.2022:[10.0] "One of the greatest to ever do it. Not just as a wrestler, a fantastic superstar, sports entertainer, or whatever you wanna call him. Not only is he arguably a top 3 wrestler to ever live, he? s incredible on the mic, one of the best baby faces of all time, he? s also an incredible heel. A transcendent once in a lifetime talent."
Rating: 10.0
Sentiment: 0.6045454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GreatAether531wrote on 08.04.2022:[10.0] "When people look back at the first quarter of this century, it'll be obvious to everyone that Bryan Danielson was the greatest talent of this era. 8 years removed from the YES! movement, Bryan is still somehow the best in the world, having had 2 of the 5 best matches last year, and the majority of the best TV matches as well. Hardly anyone matches the sheer output of incredible matches he has in such a wide range of roles and with such a wide range of opponents, and even fewer balance the intensity and technical perfection in the ring with gripping storytelling and emotion. After having one of his best runs yet last year within a career that has no shortage of all-time great years, I cannot wait to see what's next from the man still at the top his game 20 years into it."
Rating: 10.0
Sentiment: 0.3068840579710145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WrestlingFan892wrote on 06.04.2022:[10.0] "Bryan Danielson is one of the best wrestlers who has ever set foot in a ring, probably the best technician in the opinion of many, a lot of charisma, mic-skills, even helping younger talent has always been his goal, without a doubt the top 5 wrestlers of the history."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ThatsJustElDandywrote on 30.03.2022:[10.0] "As far as I'm concerned Bryan Danielson is the greatest wrestler of this generation. Comp him to Bret Hart, Kurt Angle, Curt Hennig, whoever. Danielson synthesizes so many styles in such a way that it's always believable and never feels gimmicky. Perhaps the most impressive aspect of Danielson's game is that he does all of this while retaining the core elements of professional wrestling: emotion and storytelling. Too often modern wrestlers veer into moves and athleticism that, while no doubt impressive, doesn't stick with you once the match ends. Heel or babyface, main event or opening match, Danielson delivers something logical and memorable. The same way older fans gush about seeing the greats of their time, so too will we who witnessed the career of Bryan Danielson."
Rating: 10.0
Sentiment: 0.31666666666666676
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CTFBwrote on 11.03.2022:[10.0] "When it comes to pure in-ring capabilities and unrestricted intensity in the modern era, no one beats Bryan Danielson. Seeming to get better and better every year, Bryan has shown every company that he's currently in to step up their game. Whether it's ROH, WWE, or AEW, Bryan would always have a good match even with a lacking opponent, and on a true workrate level, makes him one of the greatest of all time. But he's also got excellent mic work and entertaining characters, The New Daniel Bryan for example in his later WWE run was one of his best character works for example. As of now, no one can touch Bryan."
Rating: 10.0
Sentiment: 0.4071892393320965
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Johnny Fletcherwrote on 05.03.2022:[10.0] "I don? t know what else I can say that hasn? t already been said. Easily the best technical wrestler in the world, possibly ever. Nails being a heel and a face, and works the crowd incredibly well."
Rating: 10.0
Sentiment: 0.4666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jorgeisthe1wrote on 22.02.2022:[10.0] "Bryan is my favorite wrestler right now. Yes, Undertaker will always be my all-time favorite, but Danielson is special. His range is impeccable. He can be the ultimate underdog, or he can be a narcissistic heel that thinks he is the best in the world and believes it."
Rating: 10.0
Sentiment: 0.4846938775510204
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: robrob77wrote on 18.02.2022:[9.0] "This guy is so talented, his in-ring skills are fantastic, he is extremely charismatic, he is a great talker... Bryan Danielson is simply amazing. All-time great."
Rating: 9.0
Sentiment: 0.6333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: mjs2212wrote on 12.02.2022:[10.0] "The greatest professional wrestler today. Quite possibly ever. He works great as a face or a heel, his promos are exciting and tell a good story, he has a wide array of holds and moves, his technical abilities are excellent, and he can literally put on a great match with anyone. How can you not admire Bryan Danielson? I appreciate how dedicated this man is to professional wrestling, and it really shows every time he goes out to perform. It was amazing to see him grow such a huge fanbase while he was with WWE and he currently is able to have bangers on AEW with guys I never thought he would wrestle. I've been a lifelong fan of the American Dragon, and I am proud of this."
Rating: 10.0
Sentiment: 0.37368421052631584
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Bryan Danielson is the greatest professional wrestler of all time. He's a technical genius, but underrated in his ability to brawl, strike, and work any style he's asked to perform. His promos are understated and slightly underwhelming, but his physical charisma and ability to tell a story and evoke character in the ring is second to none."
Rating: 10.0
Sentiment: 0.15555555555555559
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WhatIsLooveeewrote on 06.02.2022:[10.0] "Bryan is very good in the ring, he can make convincing speeches, he is not only a strictly technical style wrestler, but he is able to adapt to his opponent's style and show a good match with anyone, he is great both as an underdog face and as an evil heel. An incredibly talented wrestler who deserved all his triumphs. I think he's probably the best wrestler in the world right now."
Rating: 10.0
Sentiment: 0.39961038961038964
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: rishabhwrote on 31.01.2022:[10.0] "Along with CM Punk, Bryan Danielson was the guy who paved the way for indie stars to get big in the WWE. During his yes movement, not one person in the crowd wasn't chanting yes which showed he isn't just some indy darling loved by only internet wrestling fans, but someone everybody in the crowd cares about. He is also someone who can work any kind of match, great technical wrestler but also can do high flying shit. He is still doing some of his best work and hasn't lost a step."
Rating: 10.0
Sentiment: 0.30599999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: eltetechoriwrote on 25.01.2022:[10.0] "Bryan Danielson is one of those fighters that you love because of the way he fights, he also has a charisma that makes many support or hate him, depending on whether he is heel or face, few fighters do what he did not long ago in WWE, I wish him the best in his new facet in another place such as AEW."
Rating: 10.0
Sentiment: 0.14517045454545452
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Bastionwrote on 24.01.2022:[10.0] "Er ist vielleicht der größte Wrestler aller Zeiten. Obwohl er im Ring großartig ist, übersehen die Leute oft, wie großartig er auch als Heel und Babyface ist. Im Moment arbeitet er möglicherweise auf dem höchsten Niveau, das er je hatte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Luna100wrote on 19.01.2022:[10.0] "Truely an all time great, he has had so many great matches and such a high level of success, he also has a high amount of charisma."
Rating: 10.0
Sentiment: 0.38375000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GriffinXwrote on 16.01.2022:[10.0] "Wrestling fans have bad habit of tossing around the term banger or instant classic a lot but Danielson has been in 3 of the best TV matches I've since coming to AEW in Omega and the two Hangman matches. He also had a very good match with Suzuki. The guy remains a master of just about all in the ring."
Rating: 10.0
Sentiment: 0.2753333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PhenomenalGunwrote on 14.01.2022:[8.0] "I mean....I am a fan of his and I was excited to see him return, but he's not really been as good or as interesting as he was pre-retirement. His best work as of late has been his heel work in AEW and if he keeps on the pace he could very well be a contender for the MVP of AEW. Charisma, in-ring skills, connection to the crowd, mic skills that I don't think anyone expected when they first saw him in NXT Season 1. That being said, is he a contender for GOAT' Nah. He's good, great even, but not legendary."
Rating: 8.0
Sentiment: 0.29375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NikoKillbainwrote on 01.01.2022:[10.0] "Versatility incarnate, given the roles Danielson has played, and the company's he's got over in. In 2021 alone, he had one of the greatest WrestleMania main events in years (vs Roman Reigns and Edge), then began a complete second wind on his career in AEW. The Omega, Suzuki and Page matches are legendary, though the Kingston match was overrated in my view. He's become a modern day ironman at 40 years old, without really tempering the reckless abandon of his style."
Rating: 10.0
Sentiment: 0.3458333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wright15wrote on 29.12.2021:[10.0] "The greatest technical wrestler of all time. Bryan Danielson is one of my all-time favorite wrestlers and is one of the best to ever do it. He is pretty much the founder of what he has termed "viscous mat wrestling." He was having five star classics in the mid-2000s, a dark age in terms of match quality outside of ROH and NOAH. His departure from ROH marked the end of the company's golden era. He was so obviously fantastic that not even WWE, with its god-awful ideas about what wrestlers should be, could keep him from the main event, despite their best efforts to bury him. Unfortunately, he was forced to tone down his style WWE, which kept many fans, unfamiliar with his prior work, from seeing the full extent of his abilities. With his resurgence in AEW, he is finally able to show, in front of a national audience, why those ROH fans would drown out venues with chants of "best in the world! ""
Rating: 10.0
Sentiment: 0.2933862433862434
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HarePage98wrote on 28.12.2021:[10.0] "WWE made me forgot what this man is all about. AEW book him as one of the GOAT's of wrestling and he is in that conversation for the new era 100%. Amazing worker and amazing as a cocky heel. He didn't have a bad match since joining AEW and I hope when is all said and done we'll talk about BD as one of GOAT's of this industry!"
Rating: 10.0
Sentiment: 0.05227272727272734
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JonahBlackwrote on 22.12.2021:[10.0] "I would have given him a 10 for his WWE work alone, but seeing him unleashed in AEW has just left me saying "Kenny Who'""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BritishSteelwrote on 21.12.2021:[10.0] "Ich schliesse mich meinen Vorrednern an. Wenn es einen wirklich würdigen Shawn-Michaels-Nachfolger gibt, ist es Bryan Danielson! Ich gehe sogar einen Schritt weiter. Für mich rangiert er in der Hackordnung sogar noch über HBK, denn: Im Gegensatz zu Michaels fehlte es Bryan 1. nie an der richtigen Einstellung, 2. ist er als Typ glaubwürdiger und sein Gimmick sympathischer 3. stand ihm nie sein Ego im weg und 4. hatte er es nie nötig, andere hinter den Kulissen zu bescheissen. Ein absolut großartiger Techniker, der zudem nie stagniert und ständig an sich arbeitet. Ein Alllrounder, der im Ring ALLES kann. Danielson ist einer dieser so selten gewordenen Worker, die von ihrer aufrichtigen Leidenschaft fürs Wrestling getrieben werden. Einer der wenigen im aktuellen Geschäft, die komplett verstehen, worum es im Pro-Wrestling geht und wie es funktioniert. Es muss eine Freude sein, mit ihm zu arbeiten - er kann mit jedem und durch seine Fähigkeiten auch absolut jeden gut aussehen lassen. Seine Matches sind immer Hingucker mit viel Wows und Dramatik - ganz egal ob mit einem Big Man, wie seinem alten Kumpel Kane, einem Powerhouse wie Lesnar oder einem technischen Wrestler seiner Statur. Selling, Storytelling, Promos - ob als Face oder Heel - er ist immer überzeugend und mitreissend. Vince McMahon täte gut daran, Bryan absolut jede Bedingung zu erfüllen um ihn zu halten bzw. nochmal richtig Over zu bringen. Solch ein Genie wird die WWE wohl nicht mehr so schnell bekommen - die Zeit läuft. EDIT 21.12.2021: Bryan Danielson aka "The American Dragon" ist zurück und besser als je zuvor! Bei AEW ist er endlich vom engen Korsett der WWE "Sports Entertainment" Company befreit und kann wieder unbehindert zeigen, was er alles drauf hat. Ungehemmt beweist er nun eindrucksvoll, dass er wahrscheinlich als DER beste aktive Pro-Wrestler der Welt angesehen werden muss."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Divine Departurewrote on 21.12.2021:[10.0] "The finest wrestler working today and top 3 of all time at the very least. Pretty insane that considering he's been going for more than 20 years and has one of the most impressive bodies of work out of anyone ever, I still think that the best is yet to come."
Rating: 10.0
Sentiment: 0.295
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KENTAfanwrote on 20.12.2021:[10.0] "I think it's fairly undeniable at this point that Bryan is one of the greatest ever, and easily a serious contender for THE greatest of all time when it comes to quality of in-ring work alone. He used to be lacking a bit on the character side of things, but ever since he made the move to WWE he quickly came into his own in that regard. I want to be impartial, but I can't really think of anything negative to say about him at all honestly. He's just that good. ---edit--- I already had him down as a 10 given his legendary career, but after a few months into his current run in AEW, I'm blown away. This man has to be superhuman, it is absolutely insane how he went from being forced to retire several years ago to wrestling at the quality he is today. Insane. He was already an all time great in my book several years ago, but now he's on the run of his life in AEW, literally better than he has ever been. Danielson is a fucking legend. What else can I say' Easily in the top 5 wrestlers of all time in my opinion."
Rating: 10.0
Sentiment: 0.1865740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Muggowrote on 18.12.2021:[10.0] "Even if his retirement in 2016 was permanent, he'd still get a 10, but now, it could possibly be an 11. His pre WWE career was the stuff of legends, being the best wrestler of a stacked indy scene in the 2000's. Then he managed to become the most over babyface in the last 15 years in WWE despite being the antithesis of a "WWE Superstar", and his popularity led him to main event 2 Wrestlemanias. Now his AEW stuff is a perfect mix of his godly technical skills he showed on the indies and his brilliant character work he showed in WWE. Only AJ Styles can hold a candle to him on the American scene in the 21st century, and even then Danielson beats him across the board."
Rating: 10.0
Sentiment: 0.3242424242424243
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MoonReikawrote on 17.12.2021:[10.0] "The best in his style and the best in harmonizing with other styles, a wonderful and unique wrestler as well as a man of morality and respect."
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BEER CATwrote on 16.12.2021:[10.0] "If Bryan Danielson quit wresting after his post-RoH World Champion hiatus his myth would forever exist as the best Indy Guy Ever. But he didn't quit - he soldiered on during the era of WWE-developed muscle dudes and John Cena-lead merch movers, became the most over babyface since Steve Austin, and won a World Title in the main event of one of the five best Wrestlemanias ever. Then he had concussion issues and, again, almost left the industry. But he didn't. He honed his biggest weakness and won the WON Award in 2018 for Best On Promos. He took his incredibly inspirational comeback and somehow turned it into one of the most compelling *heel* World Title reigns in the last half-decade. And as of, I don't know, a few hours ago' The man is still churning out Match of the Year Candidates with the same ease as if you or I were doing our laundry. Crowds were chanting "Best In The World" at this man since his bingo hall days in in 2004 - and the sentiment continues to this day. And the list of people who have done what he's done, on either side of the argument, is a very short one. Greatest technical/workrate guys ever' Bryan's recorded output stands damn well against Bret Hart, Ric Flair, Misawa/Kawada/Kobashi, Liger, Michaels, Casas, etc. The reactions he was getting at the peak of his face run are worth considering against Austin, Hogan, Bruno, Inoki, Santo, Crabtree, etc. You add the longevity and versatility of Danielson's career on top of all this and you have a legitimate Greatest of All Time Candidate. Cherish him, you will not see anything else like him."
Rating: 10.0
Sentiment: 0.4245614035087719
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SiofraNCwrote on 16.12.2021:[10.0] "Spent a decade as the best wrestler in Ring of Honor & the American independent circuit. Spent the next decade as the best wrestler in the WWE. Went to AEW and immediately became the best wrestler there, too. Somehow Danielson has managed to be the most believable and beloved underdog, the most despicable & vicious villain, the only person outside of Kurt Angle who can switch between being a comedic midcarder and the biggest star in the world at the drop of a hat. Overall completely peerless in the last 15 years."
Rating: 10.0
Sentiment: 0.22777777777777775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HolaDiegowrote on 09.12.2021:[10.0] "He is simply the best american wrestler of this generation. He even made himself undeniable for the WWE stooges and corporate."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dorjewrote on 05.12.2021:[10.0] "Although his promos are lacking, he is over no matter where he goes. He is at the top of his game and willing to wrestle anyone, anywhere."
Rating: 10.0
Sentiment: 0.11666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LivingLegendwrote on 27.11.2021:[10.0] "Easily one of the greatest ever, if not the greatest. His technical style is immaculate, and is able to get a great match out of the most mediocre of talent. His selling is great too. As a promo he can play a great face and an even better heel. His last run as WWE champ in 2018-2019 was my favourite era of his in terms of character work. One of the best to ever do it."
Rating: 10.0
Sentiment: 0.5256410256410257
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: wewantpunkwrote on 25.11.2021:[10.0] "Er hat das Charisma, er hat das mic work und er ist ein ganz großer im Ring. Bryan Danielson macht immer Spaß. Ob in den Indies, bei seiner WWE Zeit oder nun bei AEW. Die Fanreaktion sind überwältigend. Ob einer der besten allerbesten oder nicht - der Platz in den Geschichtsbüchern ist schon lange drin."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: theJAwwwrote on 13.11.2021:[10.0] "Best in the world. From his legendary ROH run, to his journeyman indies run, to his ceiling-smashing WWE run, to his already-great current AEW run. This dude finds a way to make whatever style match he needs to wrestle live up to our expectations on a consistent basis. Nobody better right now, and only a few as good in the history of the sport. No hyperbole."
Rating: 10.0
Sentiment: 0.36720779220779215
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Chicagotomahawkwrote on 13.11.2021:"Man is the GOAT. A technical wizard. Beloved underdog babyface, and despicable brutal heel. Everything this guy has done has been gold and he's elevated every opponent win or loss. I for one welcome our man bun overlord as he takes AEW to a level that it never would've reached without him. Sky is the limit now that he's out of that company that only caters to one guy."
Rating: No rating found
Sentiment: 0.23750000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FACEElmo295wrote on 11.11.2021:[4.0] "Bryan Danielson is a great wrestler, but his look is bland and isn't a believable main eventer. His charisma is pretty much non-existent, dude has no character expect I wrestle good. Still belongs in the Indy scene in my opinion, he's a great guy and I can see why he has a high rating. I liked his 2012 - 2014 run, but the best bit of that was his stuff he did with Kane. 9 out of 10 Wrestler, 4 out of 10 Look, 3 out of 10 Promo."
Rating: 4.0
Sentiment: 0.45545454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: flightaker321wrote on 09.11.2021:[10.0] "What can't Bryan do' He can put on great matches wherever he is including the WWE and can even be an over-the-top character."
Rating: 10.0
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ameridragonwrote on 07.11.2021:[10.0] "Bryan Danielson, who is in a three way tie for being my favorite wrestler of all time with Eddie Guerrero and Roddy Piper, and my inspiration for my username on here. What is there to say' If there was any doubters because of iffy WWE booking despite never having a bad match, then his recent AEW run where he is putting out amazing match after amazing match should have quelled that. Amazing technical skill that I didn't even know was possible, with great story telling and in ring psychology, and he able to put you through a gauntlet of emotions just through moves alone. His weakest element was promos, and while he'll never be to the level of a Rock or Roddy Piper, he seems to be a natural on the mic after his days as a host on Talking Smack. In my opinion he is and has been the best active wrestler in the world for years now."
Rating: 10.0
Sentiment: 0.29743589743589743
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NoSellwrote on 07.11.2021:[10.0] "He's top 10 all time and probably the best american wrestler ever. His pre WWE run was absolutely tremendous with classics against KENTA, McGuiness, Moreshima, Shingo Takagi, basically everyone. Then, he got to WWE and even restricted by their style he still put up incredible matches against Punk, Cena, Brock, Kofi, Styles, always getting the best out of his opponents. Now in AEW he's back with no restrictions, having incredible matches every single time he's on TV. Insane worker in various styles."
Rating: 10.0
Sentiment: 0.3238095238095239
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dy1789wrote on 31.10.2021:[9.0] "Danielson is one of the unlikely heroes of professional wrestling. One of the most endearing talents ever. He wrestles a nice intense technical style and this makes up for his size discrepancy. He knows how to garner support with his promos. One of the best of his era."
Rating: 9.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mister Cute Facewrote on 31.10.2021:[10.0] "Best in the world right now. He was born with his work boots on. He's not just an artist, but he's amazingly physically gifted."
Rating: 10.0
Sentiment: 0.5714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: notme17wrote on 30.10.2021:[10.0] "Bryan is the best wrestler in the world at the moment. I didn't think anyone would be a better wrestler than Omega this year, but the run Danielson is having us legendary. Every singles match he's had in AEW has been ****1/2 or higher to me. GOAT shit"
Rating: 10.0
Sentiment: 0.51
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: kashonwrote on 30.10.2021:[10.0] "I can comfortably say he's the greatest wrestler of his era, and one of the best of ANY era. He might as well be three entirely different wrestlers. The first is a legendary underdog who can sell his ass off and lead amazing comebacks that would rally any crowd anywhere in the world behind him. The second is a vicious, violent striker that can inflict damage in many ways (especially his stiff kicks and chops) honestly comes off as a badass despite not being a big guy. I can buy into him beating a wrestler of any size. The third is a technical genius that has a firm grasp of psychology and putting things in the perfect place. Anyone who argues that the psychology of the modern era isn't as good, needs to watch more Danielson."
Rating: 10.0
Sentiment: 0.22329192546583848
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MrIslamywrote on 30.10.2021:[10.0] "I think he might be the best in-ring worker right now. All of his post-WWE matches have been great, especially the Suzuki and Omega matches, and now the Eddie Kingston match."
Rating: 10.0
Sentiment: 0.5214285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: EdFatherwrote on 30.10.2021:[10.0] "2021 has showed everyone what everyone already knew - that Bryan Danielson is the man. He's given 110% in every single match, from facing Jey Uso in the WWE Thunderdome to a time limit draw with Kenny Omega in-front of 20k fans, to facing Aaron Solo on Dark. Danielson is truly the best wrestler in the world, bringing out the best of every opponent in the ring - and shows no signs of stopping."
Rating: 10.0
Sentiment: 0.4446428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: IBladeDailywrote on 21.10.2021:[10.0] "As it relates to North America, Bryan Danielson has a very good argument as the best of his generation. He was renowned worldwide long before he signed to WWE. He seemed completely out of place at first and managed to become one of their most over and popular characters, while leading people like John Cena and Triple H to some of the best matches of their careers. After he returned from retirement, he inexplicably turned heel and became the most interesting character in WWE in years. Now that he's in AEW, he's back to his old form, his matches so far have been fantastic. His match with Kenny Omega was possibly the greatest television match I've ever seen. His match with Minoru Suzuki was completely different and incredible. All of his post-WWE matches have been different."
Rating: 10.0
Sentiment: 0.36050000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Residentwrote on 16.10.2021:[10.0] "One of my favorite wrestlers and one of the best technical wrestlers of all-time. I liked him as American Dragon in RoH and enjoyed him as Daniel Bryan in WWE and now better than ever and now as Bryan Danielson in AEW. So over with the crowd as you can still hear the "Yes" chants and full of charisma. But also can wrestle from technical to hard hitting and even some high flying. He has had such amazing matches since he has come to AEW. A classic with Kenmy Omega and a classic with Minoru Suzuki."
Rating: 10.0
Sentiment: 0.2834444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: nwachampionwrote on 15.10.2021:[10.0] "In a previous review, I had allotted the North-American GOAT spot to a certain Shawn Michaels, but the way Danielson's influence on the industry has germinated in recent times, it seems like it won't be much longer until Danielson claims the aforesaid spot, at the very least in my personal list. I had already rated him a 10 previously, but I feel like a review must concomitantly go hand-in-hand with my rating for such a legend of the industry. If anyone thinks he deserves anything less than a 10, they are either not familiar with his RoH work, or they fail to see the influence of his body of work in general. Here's an exercise for the reader-- use Cagematch to sort the 100 highest-rated matches in any given calendar year. Now find the wrestler who has the most number of matches in the "Top 100 matches" list of any given year. Bryan Danielson is the answer for the years 2006, 2007, 2008, and 2009. As a matter of fact, no other wrestler in HISTORY has achieved this feat for 4 calendar years, let alone 4 consecutive ones. I opine that he is the most consistent wrestler of all time. Not only that, he has wrestled in over 35 promotions worldwide, and has had great matches in almost all of them, barring a few when he was still just a rookie. This is a testament to his innovative wrestling style-- a hybrid of 90s AJPW strong style, European grappling, and the classic American style based on storytelling. His hybrid style enabled him to put on clinics with a variety of opponents in a variety of promotions; he can adapt his style to be a high-caliber performer suited to anyone and anywhere. There are many young up-and-coming talents who recognize this advantage of wrestling in a hybrid style like Danielson's, namely the prowess of being as versatile as possible, and as a consequence, we may occasionally hope to savor a plethora of inter-promotional dream matches in the coming years. Not to mention, all of this influence stems from how he revolutionized the American indy wrestling scene during his time in RoH, and then went on to create change in the WWE when it comes to their faith in indy wrestlers as high-caliber talent (at least while it lasted). When it will be all said and done, I am positive that Bryan Danielson will be considered by many wrestling pundits to be the greatest North American wrestler of all time."
Rating: 10.0
Sentiment: 0.12647309833024117
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: kfztkfzt2021wrote on 14.10.2021:[10.0] "IMO, the best technical wrestler we ever had, and one of the best pro wrestlers of all time, if not the very best(probably the best wwe has ever had).His technical skills are truly perfect, not only that, he is well balanced in each and every wrestling area, great striking, great highflying, great selling, great on the mic, charismatic, the crowd loves him etc...Lets not forget the fact that he could have fantastic matches with basically everyone on the roster, 9.9 out of 10 times his matches were excellent.A fantastic wrestler, a true traiblazer."
Rating: 10.0
Sentiment: 0.5617647058823528
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MaskofIo99wrote on 07.10.2021:[10.0] "One of the best wrestlers in America ever. His resume speaks for itself. Classics wherever he went. His series with McGuinness is legendary, Morishima matches are amazing as well."
Rating: 10.0
Sentiment: 0.8666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "The best technical wrestler that I have ever seen, his matches with Nigel McGuiness are the stuff of legend"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Luchagang13wrote on 26.09.2021:"BD is probably one of the best technical wrestlers in the world. His indy career is so impressive it outdoes his and most other wrestlers WWE career. He's been everywhere. He's put on 5 star matches everywhere. Ive watched him since his ROH days and am so glad he got to shine in WWE breaking the moulds in every way and now with his old American dragon gimmick in AEW I cant wait to see his future work, his match against Omega was amazing. Great technician, wide knowledge of submission holds, good on the mic, charisma he's got it all"
Rating: No rating found
Sentiment: 0.3826923076923077
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Awalmarri317wrote on 25.09.2021:"He went back to the best of the way before WWE and his municipalities, waiting for better than he was america dragon ,"
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: stacccwrote on 24.09.2021:[10.0] "When contemplating the best wresters of all time, the name Bryan Danielson must be taken into serious consideration."
Rating: 10.0
Sentiment: 0.33333333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Four Pillars of Hellwrote on 24.09.2021:[10.0] "At worst the second or third best wrestler of all time. Undeniable in his love for pro wrestling and what it should be, Bryan Danielson is the greatest storyteller the wrestling. world has ever seen. A bona fide wrestling genius who has had classic bouts with most of the great independent wrestlers of the 2000s."
Rating: 10.0
Sentiment: 0.2966666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rohit Bijuwrote on 19.09.2021:[10.0] "Bryan Danielson is THE GOAT. He is the best technical wrestler ever in my opinion. He is right up there with guys like Kenta Kobashi, Hiroshi Tanahashi, Mitsuharu Misawa, Bret Hart.....He had so many great matches in WWE but his best in ring performance was from his ROH run from 2002 -2009. Now that he's in AEW I can't wait to see what Danielson has in store for us. 10/10 for the GOAT."
Rating: 10.0
Sentiment: 0.5976190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GoldLigerwrote on 04.09.2021:[10.0] "Bryan is the best. THE best. Ever. There's arguments to be had about who can match him in the ring in terms of pure workrate, but nobody can touch the sheer versatility and variety of his career. He already proved in the 00s that he was a top-level worker that could play a good face/heel role in a match, and on that run alone he could be considered an indie legend. His WWE run however is actually why I think he's the best. He was able to make EVERYTHING he was given work, even downright terrible angles and booking, and inspire career performances out of just about everybody he worked with (Miz, Orton, Cena, HHH, Reigns, Bray, Lesnar, etc. etc. ). He got Team Hell No over, he got being brainwashed by the Wyatts over, he got angles involving Brie over just because she married him. Bryan himself improved as an overall talent too, becoming WAY better on the mic and giving himself a much better look with the beard (that went long or short as his character changed); he was able to play a heel well enough to turn a crowd that was RABID for him in 2014 & early 2018 as a face against him, and that says a lot. I have to mention his run as Smackdown GM too; his character work was so strong during that time and before we knew he was cleared I considered it a perfect way to end his career. Now, having pretty much done everything he could in WWE (multiple world titles, multiple Wrestlemania main events, got to work with almost every modern or part-time main event guy during his run), he's seemingly ready to do a run in AEW and possibly New Japan, which could be truly incredible stuff. If he retired when he vacated the belt in 2014 or when he announced his retirement on Raw, he'd still be a 10/10 and an all-timer due to how often he succeeded in just about every environment against any opponent in any kind of match, but not only did he come back and put on some amazing matches and angles once again, he's entering what could be the start of the third act of his career. He's already the best ever and he's probably going to extend his lead in the coming years. All that said, and he's also just a lovely person outside of wrestling. GOAT among GOATs. I'd give him a 12/10 if I could."
Rating: 10.0
Sentiment: 0.2776558758701616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mutant34wrote on 03.09.2021:[10.0] "Daniel will be debuting at AEW and will have the chance to do another great job. He was present in ROH's best period and starred in epic moments in WWE, from the Nexus to team hell no, moments that show his versatility. If AEW allows him to play NJPW matches he could become one of the most victorious of all time, as he can still make a lot of classics."
Rating: 10.0
Sentiment: 0.4800000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jorhorgewrote on 01.09.2021:[9.0] "One of the best coaches of all time having impeccable style and in-ring skill giving match candidates to match of the year, the only bad thing I see were some of his storylines and his strange promises in his last world reign."
Rating: 9.0
Sentiment: 0.1666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Oregano Jacksonwrote on 31.08.2021:[10.0] "I don't know about greatest of all time because I have yet to fully go through the careers of Funk, Kawada, Flair (and more), but there is no doubt in mind that Bryan Danielson is the best wrestler that I've ever seen and honestly, it's not even close."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: vaventwrote on 23.08.2021:[10.0] "There's really no negatives to be said about Daniel Bryan. He has absolutely everything you could want in a wrestler besides the size, which I would argue isn't that important. One of the best technical wrestlers of all time, capable of having great matches with just about anyone. Also has incredibly strong character work. He somehow managed to go from being the most over babyface in modern WWE, coming out of retirement from a severe injury, to creating one of the best heel characters the company has seen in a long time. That, maybe more than anything, gives him my permanent respect. He could have kept the same character and been over and well-paid for the rest of time, but he wanted to innovate and do new things, and I believe he will continue to do so as he now transitions out of WWE."
Rating: 10.0
Sentiment: 0.34797979797979806
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Forerunnerwrote on 01.08.2021:[10.0] "His career is really remarkable. Looking at it is now and what could be coming next, he may go down as the greatest. We'll see. But he is undoubtedly one of the best ever. The heights he reached in WWE were unbelievable and though he did change his style to fit in there more, he absolutely pushed it forward too."
Rating: 10.0
Sentiment: 0.3827160493827161
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BrayanLaPrewrote on 23.07.2021:[10.0] "There have been a select few wrestlers over the years who have combined storytelling and truly elite technical wrestling. Bryan Danielson is in the same tier as Kurt Angle, Chris Benoit, Eddie Guerrero, and Bret Hart in that regard. Danielson could simply make you believe that what you were watching was the only thing happening on Planet Earth at that given point in time. A versatile competitor who has legitimate classics with sports entertainers such as Bray Wyatt and John Cena, and wrestlers such as CM Punk and Nigel McGuinness. One of the best of his time and any time. 5 star wrestler, 10 out of 10."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: faithOfWrestlingwrote on 08.07.2021:[9.0] "My favorite wrestler of all time, one of the Top 3 best ever from an in ring standpoint in my opinion. The only reasons he did not make it to a 10 is because I felt like they could have done better with Bryans character in his WWE career and his moveset I felt was much more limited during his 1st pre-retirement run from NXT in 2010 until the Yes Movement, compared to his American Dragon ROH career. Regardless I know what he can do though, Bryan is able to work an explosive fast pace match and a calculating methodical one which is what I like about him. A good example of Bryans explosiveness in the ring is his pretty much any match during his 2013 weak link run where he just flew around the ring taking what was then known as the shield out all by himself etc. A good example of Bryans calculation is his ring psychology limb targeting especially the arms he likes to break over his shoulders, he did this both in ROH and WWE which was usually followed up by a back suplex in ROH. I do not think how good Bryan is in the ring needs to be explained any longer, but he gained so much charisma both in ROH and WWE because fans were so invested in both his badass American Dragon character ( considering he was THE GUY in ROH, along with his Final Countdown entrance you could tell ) and his WWE Yes character story about how smaller guys like him can succeed through his incredible work, he got insanely popular during his road to Wrestlemania in the storyline with the authority, definitely a future Hall Of Famer in my opinion and awesome wrestler."
Rating: 9.0
Sentiment: 0.30568783068783073
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: deathlockoctopuswrote on 04.07.2021:[10.0] "Should at least be in the conversation for best of all time. Really excited to see if he does one last out of WWE run and remind everyone just how great he can be."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kid Rockwrote on 06.05.2021:[10.0] "Die Geigenwelt hatte Paganini, die Kunstwelt Van Gogh, die Schauspielwelt Daniel Day Lewis, die Romanwelt Marcel Proust..... und Professional Wrestling hat im Jahr 2021 Daniel Bryan/Bryan Danielson.... Die Welt und besondere das Pro Wrestling Geschäft mag sich in kritischen Zeiten befinden, doch was sich nicht ändert ist, dass Bryan nach wie vor ein Virtuose des Sports ist, ähnlich wie die oben genannten Persönlichkeiten in ihren jeweiligen Kunstformen Virtuosen waren.... Kenny Omega? Nein, Daniel Bryan ist nach wie vor der größte Pro-Wrestling-Künstler unserer Zeit.... der Beweis ist einfach... mit so gut wie jedem Gegner kann er gute bis fantastische Matches haben, er wirkt echt und nachvollziehbar in seinem Charakter und ist unglaublich wandlungsfähig... und das auf sehr überzeugende Weise... wie er als geliebter Underdog-Held nach der Comeback-Story 2018 so plötzlich wie beeindruckend zum allseits verhassten Top-Heel gewechselt und sich nur ein Jahr später bereits wieder zum umjubelten Kämpferherz wandelte, sollte als Beweis genügen, dass dieser Mann in nahezu allem was er in diesem Sport tut absolut großartig ist und es eine Freude ist ihm dabei zuzusehen. Dazu kommt der wahnsinnige menschliche Sympathiefaktor bei ihm, wie ihn nur ein Mick Foley oder Bobby Eaton zu deren Zeit vorweisen konnten.... gerade in den vergangenen Monaten hat Bryan sich eine schöne Abschiedsstory mit dem Monster-Heel Reigns gestalten können und man kann nur hoffen, sollte er tatsächlich noch ein paar Jährchen aktiv sein, bevor er endgültig Schluss macht, dass er es schafft gesund zu bleiben und dass er von den anderen Ligen, sei es New Japan, ROH oder AEW ("sigh") auch entsprechend Wert geschätzt wird. Sollte dies nun Bryans letzter Tango in der WWE gewesen sein, kann man nur sagen: Danke D-Bry, für die fantastischen Momente und tollen Erinnerungen."
Rating: 10.0
Sentiment: 0.11818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The A-Listerwrote on 05.05.2021:[10.0] "One of the best performers in WWE history and currently top 5 in the world. Over as hell when face, doing great job as a heel. Very nice of him to put over the likes of Cesaro and Nakamura, too. Living legend. Hopefully we somehow see him against NJPW star. Okada vs Bryan is my wet dream."
Rating: 10.0
Sentiment: 0.596
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Okaro143wrote on 25.04.2021:[10.0] "Daniel Bryan is one of the best wrestler to ever perform in the WWE ring. Although most fans know him from WWE, his best years were in ROH where he had one of the best feud in professional wrestling with Nigel McGuinness. He is one of those few who are consistently delivering every single time whether in the ring or on the mic. At first I wasn't into him a lot but now I absolutely love him. Whether he is a heel or a face, he consistently gets the crowd invested in whatever he does and he consistently delivers whatever stupid promo they try to pin on him making it his own. He was voted the most OUTSTANDING wrestler of the decade (2000s) and is one of the most outstanding performers in professional wrestling."
Rating: 10.0
Sentiment: 0.35413533834586464
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kungwrote on 23.04.2021:[10.0] "The only time I cried while watching a pro wrestling show was seeing Daniel Bryan, the man who introduced me to independent wrestling, hoist the WWE and World Heavyweight Championships after defeating two WWE mainstays in the main event of WrestleMania. This man is my favorite wrestler of all time and someone who deserves every bit of love and praise he receives."
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: yzarcniogmiwrote on 19.04.2021:[10.0] "Obviously he's incredible in the ring and underrated on the mic as a heel (as a babyface he's pretty bland but if the story's good he can deliver). Recent years he's fallen way off in terms of interest because he's never pushed in any real way, but then he just randomly got inserted into the Mania main event and it's a testament to his reputation and work that no one really minds."
Rating: 10.0
Sentiment: 0.19444444444444442
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Monehmanwrote on 14.04.2021:[7.0] "Great in ring wrestler especially while in ring of honor. Boring as hell on the mic and as a character. If it wasn't for the fact wwe pushed against him so much and got an alright storyline and some great matches he would be the most boring main eventer of the 2010s. People look past how bland he is because they like pretending he represents them or something but if you don't gaf about playing make believe all charisma he has dies. He's a fantastic in ring performer but overall hes just fine."
Rating: 7.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NahuelVerawrote on 07.04.2021:[10.0] "One of the best Technical Wrestlers of all time. I really like Daniel Bryan, he has one of the most inspiring careers i have seen. I lived the yes movement when i was 14 years old, and it really influenced me to be a fan of this great sport. This are probably de last years of his career, and i wish one last run with a world title because he really deserved that and more."
Rating: 10.0
Sentiment: 0.3333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: UnendlichIstwrote on 06.04.2021:[10.0] "Einer der besten, der es je gemacht hat und immer noch ein so großartiger Wrestler, dass es manchmal traurig ist, dass er nicht besser eingesetzt wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GoodGoodSnapwrote on 24.03.2021:[10.0] "Mr. 21st Century - simple as that. From being the ace of the US independent scene for close to a decade, to becoming WWE's most universally beloved babyface in close to twenty years, Bryan Danielson/Daniel Bryan has conquered every goal there is to conquer in this industry."
Rating: 10.0
Sentiment: 0.27499999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JustTapOutwrote on 22.03.2021:[10.0] "Probably the only man who was worthy of being a Hall of Famer prior to their WWE run, the fact he got a pop when he won the US title showed how big he was. I truly believe he will one day be in GOAT discussions with people like Kobashi and Shawn Michaels. Ever since that little WWE Network leak saying "2021 HOF Daniel Bryan", he might be on his way to retirement and before he retires he should main event a WrestleMania and win one more world title, showing he can do anything. Thank you Bryan."
Rating: 10.0
Sentiment: 0.2015625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RheinlandPfalzTierwrote on 03.03.2021:[9.0] "Daniel Bryan is one of the best of all time. He is very well rounded and is great in nearly every category. A loveable babyface and as a heel he absolutely nailed it. Pros : Well rounded Great babyface Very technical Great heel Great promo Cons : N/A"
Rating: 9.0
Sentiment: 0.5222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Gaspardwrote on 31.01.2021:[6.0] "Never understood the hype for Bryan. The whole "YES" movement few years ago was so boring to me. Truly overrated wrestler"
Rating: 6.0
Sentiment: -0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Uweuwesenwrote on 25.01.2021:[10.0] "Daniel Bryan oder Bryan Danielson ist der Welt größte Independent Star der Wrestlinghistorie! Am Mikrofon gut, im Ring mit der Beste aller Zeiten. Als Heel und als Face brilliant"
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: EZPickenswrote on 21.01.2021:[10.0] "Daniel Bryan is my favorite wrestler of all time. His selflessness, connection with the crowd and perseverance is unsurpassed. It is still unbelievable to me is that he had a very successful heel turn almost immediately after returning to the ring from retirement. I cried like a baby when he retired, cried even more when he returned and then was booing the hell out of him as the Planet's Champion within months of his return. I love you Daniel Bryan. I love you so hard."
Rating: 10.0
Sentiment: 0.34761904761904766
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: sanjurowrote on 21.01.2021:[10.0] "The most versatile American wrestler of all time, able to work as a Flair-esque heel or the greatest white-meat babyface since Kenta Kobashi. Not a consistent promo but an absolute star on the mic when it counts, and of course the most innovative, technically crisp worker to come from the early indie era. No other wrestler ever worked so hard to see just how much he could change things up, especially in his 2006 title reign where he regularly risked putting together outright bad matches just to test the boundaries. Whether a worker is a good person or not isn't really material to their quality as a wrestler, but imo it's important that Bryan is the most generous main eventer possibly in the history of the business, a man who approaches every single match from the angle of making his opponent look as good as possible and who is delighted to do the job if it helps another guy get to the next level. Eddie and Jericho may have better character work when push comes to shove but for me Bryan is the best all-rounder of all time."
Rating: 10.0
Sentiment: 0.24970238095238098
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Old ride long linewrote on 18.12.2020:[8.0] "After growing up in the attitude/ruthless aggression era and holding on to it and the possibility of it coming back for a long time, I genuinely hated this guy for what I knew, and what ended up being the direction the company was gonna keep going on his back. He is one of the main reasons I stopped watching wrestling on a regular basis from 2012-2018. And it wasn? t all his fault, it was more or less watching older fans accept the incredibly boring yesyesyesyes! Chant and the type of pg13 Horse shit that was gonna follow it. He was the first guy that made me realize that the stink of the pg era was not going anywhere anytime soon. He gets an 8 because at the end of the day I know I? m just a slaty old hater. he? s had plenty of good matches but in my book matches only account for so much of the entertainment."
Rating: 8.0
Sentiment: -0.010185185185185183
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: medousewrote on 29.10.2020:[8.0] "I don't feel the hype on this guy and I never liked his wrestling style. His matches were rather boring. I could compare him to Zack Sabre Jr. Their wrestling style is just not my thing. However I remember his work from Ring of Honor (I don't like his WWE matches) and many matches were spectacular. He became the biggest WWE star for many years. I think he's a great wrestler but way too overrated"
Rating: 8.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: eleddie2914wrote on 29.10.2020:[8.0] "Bryan definitely deserves a 10 but with his recent work i give him an 8. Daniel just returned from a hiatus and by the looks of it he may form a tag team with Owens and then feud. I would like to see that feud and hope to come back to give him a 10."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LucaGG18wrote on 14.10.2020:[10.0] "One of the best wrestlers on the planet, well deserved. He is charismatic, excellent at the microphone and in the ring, the creator of one of the most famous movements in the world (YES! YES! YES! YES! ), he has countless great matches behind him, he is still excellent whether he is facing or heeling, and surely one of the best wrestlers in the history of the WWE."
Rating: 10.0
Sentiment: 0.6272727272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Legend003wrote on 10.10.2020:[10.0] "Einer der besten Wrestler der Welt. Super im Ring und am Mic. Kann alles und jeder over bringen. Ein Top-Star der WWE und zukünftiger Hall of Famer."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AsukaStan6969wrote on 06.09.2020:[10.0] "He's Daniel f'ing Bryan. Call him overrated or bland or whatever you want, but the fact is he was one of the very few breaths of fresh air in WWE in a time where the company had very little diversity and was very stale. He is versatile in the ring, a natural babyface that didn't need to be force fed to fans (Roman Reigns 2015-2018) in order to get over, a great heel that got fans to genuinely boo him after being the definition of a babyface for most of his time in WWE. He has some really great and innovative offense, his submission game is top notch, and his selling can make any move look like it's devastating. Truly just a fantastic wrestler"
Rating: 10.0
Sentiment: 0.10530555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jansen ferriswrote on 14.08.2020:[10.0] "His 2013-2014 run will never ever be forgotten. The wwe universe that was behind him, the wwe universe that turned its back on legends like batista and rey mysterio just to make sure that bryan gets his road to main event wrestlemania. The standing ovation after he won the world heavyweight champion...... let me tell you something , this was the greatest BOOM of PG era and one of the greatest moments in wwe, or even better, one of the greatest moments in wrestling history. And speaking of him, he is one hell of a technical wrestler. the older he gets, the more talented he gets in the mic. there is nothing bad you can say about him."
Rating: 10.0
Sentiment: 0.34102564102564104
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Looper007wrote on 10.08.2020:[10.0] "A Legend even before he got to WWE, his WWE run just added to his legacy. Great babyface and Great heel, had one of the best Wrestlemania endings and had so many great matches in WWE and ROH. He's a sure fire hall of famer. Also came back from a career ending injury, to produce more great matches and career highlights. Definitely my favourite WWE wrestler since Bret Hart."
Rating: 10.0
Sentiment: 0.5700000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: martizzletaewrote on 22.07.2020:[10.0] "I didnt really catch him in the independent wrestling scene, but I remember that first match with him vs Chris Jericho on NXT and I became a fan. Looking at his old work, hes a brute in submissions and strikes. Seeing him now, he's toned it down for the better and has miles of peronality (look up B-Dazzle and all of him amd Kane if you don't know). Is he the weak link? No. Was he able to turn a premature firing and make it to the elite of pro wresting? Yes!"
Rating: 10.0
Sentiment: 0.14305555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: lehaimkhwrote on 22.07.2020:[10.0] "The American Dragon is a real submission machine. I love his matches. He works out all his techniques perfectly. He has a universal style. He is awesome in the heel, face or twinner character. The best wrestler. My rating is 10 out of 10."
Rating: 10.0
Sentiment: 0.5285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Bomber-JobberRadiowrote on 18.07.2020:[9.0] "I would have rated Daniel Bryan an 8 a couple years ago because I didn't believe he really had the charisma to get to the tippy top level. During his time away from the ring he really improved his mic skills and showed to me that he does indeed have that charisma. His in ring skills have always been top tier and no one can dispute that. The only thing keeping him away from a 10/10 is his look IMO. I don't mean that in a negative way so much, his look just doesn't stack up with other top tier people not all of that is his fault."
Rating: 9.0
Sentiment: 0.13624999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Inokism 4EVERwrote on 13.07.2020:[10.0] "Bryan may vert well be the best American pro wrestler if not the greatest period. What I would consider his greatest strength is versatility. You can put this man in any situation and he excels far and beyond what he was ever meant to be. He? s so good he even tricked the marks into thinking The Miz was actually good."
Rating: 10.0
Sentiment: 0.6428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WoopbidieScoopwrote on 12.07.2020:[10.0] "You simply can't describe this man without calling him a LEGEND. For me, Daniel is an absolute G. O. A. T and my all-time favourite wrestler. He is just so good at everything that he can do. He is an ideal wrestler. Genius in the ring, on the mic, his characters were fantastic every time. Even when he becomes somewhat of a boring babyface, he manages to put out his genius ideas like New Daniel Bryan. Daniel is the best wrestler now in WWE and he was the best ever since day one. Living legend, nothing less."
Rating: 10.0
Sentiment: 0.31696969696969696
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Vaxxewrote on 04.07.2020:[10.0] "10/10 THE best professional wrestler in WWE, or even anywhere else today, Daniel Bryan somehow manages to have literally everything you would want in a wrestler, amazing wrestler, crazy insane charisma thats very versatile heel or face, and a general likeable person away from the ring. He is the very reason I want to become a professional wrestler and is my favorite of all time"
Rating: 10.0
Sentiment: 0.11499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Viniciouswrote on 26.06.2020:[9.0] "Daniel Bryan will always feel like a missed opportunity considering how beloved he was at Wrestlemania 30. Lightning in a bottle doesn't appear to be happening again, but technically speaking, one of the most entertaining technical wrestlers of all time."
Rating: 9.0
Sentiment: 0.33999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: THATSGOTTABEKANEwrote on 12.06.2020:[10.0] "To put it simply, Daniel Bryan is still one of the best wrestlers in the world, top 5 for sure. He's the best wrestler in the WWE right now and only a handful of superstars can be considered with him at the top."
Rating: 10.0
Sentiment: 0.4732142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: shittylittlerasslinwrote on 08.06.2020:[10.0] "For me, he is one of the greatest wrestlers of all time (possibly the best american one ever) and my favourite one. Although rumours say otherwise, I would love him to keep competing (even if it was in a monthly-basis), whether in WWE (vs. Riddle, Thatcher, O'Reilly, etc. ) or in other landscapes. I would pay to see him in a Bloodsport event, for example, or even to make a New Japan return, meshing with their new big names. Despite his peak being far away (wrestling-wise, maybe 2005-2007, and entertainment-wise around 2012-2015), he is still the best in-ring performer in the WWE today and he is still capable of producing stellar matches, despite all the physical limitations. To summarize it, he is a blessing to professional wrestling and we are truly honoured to see him in a squared circle today."
Rating: 10.0
Sentiment: 0.28651515151515144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: VillainClubwrote on 12.05.2020:[10.0] "Einer der besten Technischen Wrestler der Welt. Abgesehen von Zack Sabre Jr kommt da kaum jemand ran. Für mich hatte er allerdings seine beste zeit bei RoH."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Daniel Bryan ist im Ring genial, am Mic hat er sich deutlich entwickelt und auch dort ist er mittlerweile sehr gut und Charisma ist auch absolut vorhanden. In seiner Underdog Story gegen alle um Wrestlemania 30 war er perfekt eingesetzt, sehr schade das viele Verletzungen ihm noch größeres versaut haben, für mich hat sich Daniel Bryan die vollen 10 Punkte verdient."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BastitheBrainwrote on 21.04.2020:[10.0] "Perfektion in Person. Ich tue mich mit kleinen Wrestlern immer etwas schwer. Aber der Mann brauch sich im Ring vor niemanden verstecken, sie Angle oder Shawn Michaels oder Okada."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jomosensualwrote on 05.04.2020:[10.0] "One of the best, if not the best, to ever do this. Obviously his in ring work is insane and that's what put him on the map at first and it's at the point where I think he could take my loser ass and find a way to drag me to 3. 5 stars. But man, all the other aspects of his game are so good too. People somehow still underrate him on the mic. His parody of wrestling promo on John Cena is one of my favorite ever. He also just gets how to do every gimmick he's asked and knows the exactly how to pull them off. As a heel he's think skinned and overly intense on everything single thing and as a face he somehow flips the switch and becomes the most likable and relateable person you'd ever meet even though he's a pretty unique guy IRL. If somehow you're not sold, just remember he came back from a career ending injury and was the most over face in the company and in the span of a year made himself so hated every face he was against got cheered. Then he turned back face and it was like he never turned at all. Just a master of the craft and the day he stops doing this full time will be a very, very sad day."
Rating: 10.0
Sentiment: 0.1360248447204969
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BDDwrote on 02.03.2020:[10.0] "Daniel Bryan is one of the best wrestlers in history, when he was only 18 years old he was already one of the best writers of his time, and the further his career progressed, the more he confirmed it, placing classics in several different companies. Even after being retired for two years, he managed to return, and managed to make several incredible matches. Bryan is also very charismatic, his promos are incredible, and he can be an incredible Underdog, and he can also be a great heel, in short, he is complete, and he is a GOAT, and also one of my favorite wrestlers, and he was a the main responsible for me falling in love with wrestling."
Rating: 10.0
Sentiment: 0.41031746031746036
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: VanguardWhowrote on 29.01.2020:[10.0] "If Bryan was "only" one of the greatest technical wrestlers to ever live, he'd be up in the 9-10 region. If Bryan was "only" one of the most natural, endearing, and genuinely lovable faces of all time, he'd be up in the 9-10 region. If Bryan was "only" one of the most inventive, diverse, nuanced heels of all time, with the ability to do fully comedic, fully serious, fully detestable, fully "cool heel" tweener, or any point in-between, he'd be up in the 9-10 region. Being all of those things simultaneously, on top of having re-invented himself countless times throughout his career, on top of having been involved in some of the most noteworthy matches, moments, feuds, and storylines in the past two decades of wrestling, on top of having seen a level of mainstream success and crossover appeal very rarely enjoyed by American wrestlers post-Attitude era, a level almost unfathomable for an "indie darling", makes him not just special, but transcendent. He's a performer who's been years ahead of his time, perfectly on the zeitgeist of his time, and a throwback to a different time, often somehow all at once. There's a very solid argument for him as the greatest of all time. It's difficult to even make a compelling case AGAINST him being top 5-10 of all time, at a minimum. There's never been another Bryan, and there will never be another Bryan. We're very lucky to have been wrestling fans at the right time to experience his career first-hand."
Rating: 10.0
Sentiment: 0.2846829640947288
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rypopotamuswrote on 13.11.2019:[10.0] "Daniel Bryan has no bad matches. Daniel Bryan has no bad feuds. Even the MITB versus Big Cass is elevated to watchable and enjoyable status by the excellent in ring ability of Daniel Bryan. To come back from retirement and to go on one of the best heel runs in the modern WWE era is a testament to his dedication and skill. If he was allowed full creative control over his heel character I? m sure he? d go down in some history books as one of the greatest to ever turn heel."
Rating: 10.0
Sentiment: 0.4303418803418803
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TylerWhitewrote on 19.10.2019:[10.0] "Bryan Danielson ist für mich einer der besten Wrestler aller Zeiten. Im Ring ist sich denke ich jeder einig, dass er zu den größten aller Zeiten gehört und technisch gibt es wohl kaum einen saubereren Wrestler, doch auch als Gesamtpaket ist er einer der absolut besten überhaupt. Es fängt schon damit an, dass ich kaum einen Wrestler kenne, der besser Heel und Face verkörpern kann. Als Face ist er wirklich sehr stark und hat dieses natürliche Charisma. Besonders in seinem 2013/2014er Run als er sich endgültig als Main Eventer in der WWE durchsetzen konnte, wurde deutlich wie sehr er mit der Crowd connecten kann, weil er die Underdog-Rolle einfach auch beherscht. Allerdings finde ich ihn als Heel noch besser und das, trotz dass er so ein herausragendes Face sein kann. Besonders in seiner Zeit bei ROH war er einfach genial als der perfektionistische Heel, der alles getan hat um selbst oben zu stehen und so geil Heat ziehen konnte. Besonders in der langjährigen Rivalität mit Nigel McGuinness hatte er immer die Heel Rolle und konnte sie so authentisch verkörpern wie kein Zweiter, weil dieses Gimmick auch einfach realistisch war. Auch in der WWE hat er mit seinem 2018/2019er Titelrun als Heel noch hervorragend funktioniert und das mit einem wiederum ganz anderen Gimmick. Am Mic ist er auch unterschätzt und hat so viele hervorragende Promos gehalten. In den Indys war er in den 2000ern wahrscheinlich der größte überhaupt und hatte die besten Matches mit denen er das technische Wrestling revolutioniert hat. Gegen Nigel McGuinness, Samoa Joe, Kenta, Morishima, Roderick Strong, Chris Hero etc. Wahrscheinlich hatte er den besten ROH World Titelrun überhaupt, aber auch bei anderen Promotions konnte er sich durchsetzen und dann sogar in der WWE. Natürlich hat er seitdem nicht in Ansätzen ein so gutes Match abgeliefert (Auch wenn das gegen Punk oder der Main Event von WM 30 sehr gut waren), doch ist er einer von nur sehr wenigen, die in den 2010ern zu festen Main Eventern wurden."
Rating: 10.0
Sentiment: 0.14666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Iceqwrote on 09.10.2019:[10.0] "Einer der besten Wrestler des 21 Jahrhunderts. In den Indys eine absolute Legende, in jeder Promotion besonders in ROH absolut abgeliefert. Als er in die WWE gekommen ist hätte man nie gedacht, dass er zu einer der größten Stars in dieser Dekade wird. Wrestlerisch einer der besten aller Zeiten, funktioniert als Heel sowohl als auch als Face perfekt und auch seine Promos sind super. Gehört zu meinen Top 10 aller Zeiten."
Rating: 10.0
Sentiment: 0.3444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AndoCommandowrote on 12.09.2019:[10.0] "Daniel Bryan is the kind of wrestler any promotion would crave to have on their roster. He may not fit the typical mold or aesthetic look that companies look for in their talent, but his greatest asset lies in his versatility. He can work any match, have chemistry with any wrestler and succeed in any task he's given on the microphone. His matches always have a balance of strikes and grapples, with hard-hitting high-flying manoeuvres sprinkled in. A pioneer of technical wrestling with the accolades to prove it, while also an entertainer; constantly telling a story whenever he steps into the ring. His ring psychology is always present and consistent, but more than that, his ability to connect with the crowd and get an audience invested is practically unmatched today. He's succeeded at both ends of the spectrum, being the white-hot babyface that fans wouldn't stop cheering for, before playing the dastardly heel persona we all love to hate. With Daniel Bryan, you get your money's worth and more. Simply put, he's one of the best performers of his era. When he was forced to retire back in 2016, I would have still called him one of the best of his time and that it was a blessing to watch his journey: from the independent circuit, to his rise in Ring of Honor, to ultimately conquering the land of the giants in WWE. With his return to the ring in early 2018 not only are we further blessed with his explosive fun offense and fantastic character work, but Daniel further solidifies his place in the upper echelon of professional wrestling's greatest. No one doubts this man's passion, for it serves as the crux of his career. No matter what he does, he'll do it with heart."
Rating: 10.0
Sentiment: 0.20977011494252873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: taabr2wrote on 31.08.2019:[10.0] "The best wrestler in WWE today. Amazing technical wrestler who can also do brawling and high flying moves very well. Bryan's best aspect is his storytelling in the ring however,  Bryan can be an amazing as either an underdog babyface or an overconfident heel. Bryan was THE GUY for US independent wrestling in the 2000s and his huge success in WWE is a big reason for WWE currently signing every independent talent they can get their hands on. Bryan is already one of the best of his generation, the only question is if he will end up right on top or near it."
Rating: 10.0
Sentiment: 0.3414285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[9.0] "I was never on the Bryan Danielson bandwagon during his time in ROH. I looked into his matches & always found him to be pretty overrated. But when he came to WWE & found a character to compliment his in ring work is when he won me over. It's too bad his health took away years of his career & it now seems the WWE has lost most interest in him being a top guy. I think there could be a lot more to be done with his character going forward, but even if there's not, he was one of the best of the last decade."
Rating: 9.0
Sentiment: 0.29285714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: luchabruhwrote on 11.07.2019:[10.0] "One of the greatest ever when it? s all said and done. Daniel Bryan can work virtually any match, with any person, and make it something that you want to watch. He is a pioneer for the current style of wrestling that we have nowadays, and has accolade after accolade. When it comes to wrestlers that display their passion and love for what they do, he is very close to the top. His energy shines through in everything that he does, and has a certain brilliance to him when it comes to ring psychology, and ring presence. To see him still wrestling is a blessing."
Rating: 10.0
Sentiment: 0.40238095238095245
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "One of the best. Stiff and technical, great storyteller, good psychology and an awesome connection to the crowd. Whether a face or a heel, he is always efficient. Incredible run in ROH, did good in Japan as well, even in WWE he can find a way to deliver a great match from time to time, even carrying a bland as hell wrestler like Kofi Kingston to a great match. He did the best he could everywhere he has gone."
Rating: 9.0
Sentiment: 0.6099206349206349
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ShibataWreslerwrote on 03.07.2019:[10.0] "Hands down, One of the greatest to ever step into the squared circle. Daniel Bryan is the most technically sound wrestler I have seen after Kurt Angle. Either as a heel or as a face, he knows how to catch the attention of the audience, can make them cheer for himself whenever he wants to, can get the heel heat like no one in WWE now. I'm pretty sure that I have never seen a bad match involving Daniel. He possesses great mic skills and unmatched charisma. Overall, Daniel Bryan is the definition of what a perfect wrestler should be."
Rating: 10.0
Sentiment: 0.344949494949495
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PuroresuLoverwrote on 01.07.2019:[10.0] "This man has a award with his name and it is for a reason. He's the fucking GOAT, he has everything to be a company's top guy, even as a heel. D-Bry's mic skills are excellent, his in-ring skills are absolutely perfect, his heel work is something that is just amazing, and he can portray an awesome underdog too. Like I said, he is perfect."
Rating: 10.0
Sentiment: 0.6428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TechnicalWrasslinwrote on 12.05.2019:[10.0] "Him and Brian Kendrick have A lot if Traits But with Technical Every single match and very diverse moveset moves like regal plex dragon plex Running Knee Buzzsaw lebell lock cattle muttilation and etc great singles wrestler and tag team with kane Kendrick Rowan Punk"
Rating: 10.0
Sentiment: 0.23214285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ErycK24wrote on 08.04.2019:[10.0] "Watching the rise of Daniel Bryan and feeling the energy that he brought to the WWE was unforgettable he was supposed to be the WWE's savior if you really think about it. Instead he is retired due to a bad neck, its crazy how things work out sometimes. Edit: Since his return he? s put on a number of solid/great matches, and has thrived as a heel, truly one of the best in the world still."
Rating: 10.0
Sentiment: 0.09583333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: coolserazwrote on 06.04.2019:[10.0] "Much like HBK, he has had a phenomenal career resurgence. A respected indie veteran, then an incredibly over babyface, and finally a self-righteous heel. Bryan is one of the greatest wrestlers ever and with WWE, he has proved he can handle the character side of things perfectly, heel or face."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AJStylopzwrote on 06.04.2019:[10.0] "Daniel Bryan is imo one of the best wrestlers of the last 20 years or so. He can do it all, but always focuses on havin matches with great drama, selling, targetting the injured body part of his opponents. He is a great babyface and heel, honestly he is one of my favorite wrestlers and I love him to death. He is one of the few who really is capable of guaranteed classics with the likes of AJ Styles or even CM Punk. Truely a master of the sport. Also, can't forget his phenomenal run in ROH, so many amazing matches he had there."
Rating: 10.0
Sentiment: 0.4730769230769231
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SuaveIanDwrote on 26.01.2019:[9.0] "Incredible work, whether it's in the ring, promos and such. His technical skills is beyond the charts. Sure, WWE gave him a shitty gimmick but it's the ringwork that satisfies me."
Rating: 9.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cibswrote on 11.01.2019:[10.0] "One of the best of all time. Bryan is incredible in all aspects (ring work, charisma, promos, adaptability etc. ), a unique talent that has left a mark on all the companies where he has been and whose catalog of matches can be compared only with that of Ric Flair and, perhaps, Misawa."
Rating: 10.0
Sentiment: 0.45499999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Viper99wrote on 01.01.2019:[10.0] "Daniel Bryan zeigt uns gerade im momentanen Run mal wieder wie Göttlich er einfach ist! In den Indys vielleicht den Beste aller Zeiten! Bei der WWE lange sehr sehr Over, manchmal sehr dumm gebooked und dann das Verletzungspech. Er trat als unglaublicher Publikumsliebling an der Spitze seiner Karriere zurück.... Dann das Comeback...... Ich war anfangs sehr enttäuscht. Nicht weil Bryan schwächer war, sondern weil er einfach so miserabel gebooked wurde! Bryan lieferte Woche für Woche tolle Matches gegen die "Neue Elite Wrestler" der WWE und wurde trotzdem in Shitty Segmente gesteckt und sah unglaublich dumm aus. Dann kam die AJ Fehde und Bryan hat sich rehabilitiert! Er ist einfach mit abstand der geilste Heel in der heutigen WWE und setzt mich in die 2008er Phase von ihm als absoluten A*schloch Heel zurück. Bryan Danielson ist einer der smartesten und Technisch versiertesten Worker aller Zeiten und wenn er die Kreative Freiheit erhält, dann ist es einfach nur großartig ihm dabei zuzusehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Amico Leonardwrote on 06.12.2018:[10.0] "Probably the Best pound for pound Wrestler of all times, fantastic on mic and on promos, great with every gimmick , from the "rookie" in NXT, to member of Nexus to "Vegan Heel" to Yes movement and nowdays with "the New Daniel Bryan" stuff. Excellent both as Heel and As Baby-Face, can have a great match with ANYBODY (even Fucking Roman Reings ahahah) , voted "Most outstanding wrestler of the decade" by Dave Meltzer , from 2001-2009... prior his run in WWE and this is fucking amazing! great feuds with anybody ... do I have to say anything yet ? only flaw he retired when he was in the full of his potential... but nowdays is recovering the lost ground... Daniel Bryan is a Gift From the Gods to the fucking World of Professional Wrestling."
Rating: 10.0
Sentiment: 0.34919786096256683
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Stott Onewrote on 28.11.2018:[9.0] "Have a lot of love for Daniel Bryan. One of my favorite stars in WWE right now, he is a wizard in the ring. I was thrilled to hear that he was returning to wrestling and I'm excited for this new heel run. Especially because sometimes his work as a Face is a little run-of-the-mill in terms of mic work."
Rating: 9.0
Sentiment: 0.27619724025974024
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kaswrote on 19.11.2018:[10.0] "Daniel Bryan is in contention for the greatest wrestler of all time. From 2002-2010 he was the indies and was the biggest reason for its initial boom. Whether heel or babyface, Danielson never held back and always performed to the best of his abilities, leading to an outstanding backlog of great matches, with an astounding amount of variety. Since joining WWE he continued having fantastic matches, changing and adapting his style and becoming one of the most popular wrestlers of the modern era. A simply wonderful performer."
Rating: 10.0
Sentiment: 0.5423076923076923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KINGwrote on 09.11.2018:[10.0] "Fantastic babyface, the best of his generation, he's just lovable, everything about him is likable, the perfect underdog story, sad that he could never have a WWE Championship reign but how he overcame his injuries and came back makes him a larger than life wrestler IMO, I love his technical style and he put on some of the best matches I've ever seen, and he's also underrated when it comes to his mic skills, as he was a very good heel in 2012, his return has been good, I don't understand why many criticize it, I understand the WWE for taking their time to see if they wanna push him or not, but the coolest thing is that he loves to wrestle above all, he didn't cry when he had to feud with Big Cass, instead he did his best to entertain us, he is THE wrestler."
Rating: 10.0
Sentiment: 0.441764705882353
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JEK 1991wrote on 06.11.2018:[10.0] "I have all good to say no bad. He is an excellent wrestler especially for his small size and stature. He is like Chris Benoit and can wrestle very well. His submission holds are excellent to see. Babyface or heel he can perform well at them. Outisde of the ring is an excellent human being. Loves his fans. YES! YES! YES!"
Rating: 10.0
Sentiment: 0.4444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Daniel Bryan is one of the best technical wrestlers to ever grace the ring. His peak as a superstar was in WWE, although his peak when it came to match quality was during his pre-WWE days. And his mic work was very underrated. Bryan had the potential to be something special but injuries and the typically wretched WWE booking when it comes to ideas that aren't their own put paid to that."
Rating: 10.0
Sentiment: 0.28435374149659864
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Steamboat2511wrote on 02.10.2018:[9.0] "Daniel Bryan überzeugt als ein herausragendes Gesamtpaket: Technisches Submission-Wrestling, Highflying und ausgewogene Matchführung. Während seiner größten Fehde an der Spitze der WWE bewies er zudem beinahe unendliches Charisma und wirklich gute Mic-Skills. Leider sollte es nicht lange dauern und bevor er eine längere Zeit an der WWE-Spitze stehen konnte, war Schluss mit der Vollzeit-Karriere. Zuvor ist er freilich schon im Intependet-Bereich mit herrlichen Matches und als ganz großer Könner aufgefallen. Hätte ihn sehr gerne länger an der Spitze der WWE gesehen. Mal schauen was noch kommt? !"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Tomlou12wrote on 17.09.2018:[9.0] "Though he's not had many stand out performances in recent times (largely because of who he has been put with) I can't deny that Daniel Bryan is an incredible talent and has had amazing matches, both on the indie scene as Bryan Danielson and in the WWE. He is a majorly influential technically wrestler, and you can see this influence in wrestlers such as Zack Sabre Jr today. Bryan will surely be considered a legend in years to come."
Rating: 9.0
Sentiment: 0.27767857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jon Kingswrote on 05.09.2018:[6.0] "Personally I'm not thrilled by his gimmick or his matches, IMO is one of the most overrated superstar of the werstling."
Rating: 6.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: meatrockit83wrote on 28.08.2018:[10.0] "Bryan Danielson is an all-time great.  Despite his lack of size, Bryan established himself as one of the greatest technical wrestlers of all time.  He became a top guy in spite of a territory not wanting him to be and actively buried him.  He has a different type of charisma, can get the job done on the mic, and his in-ring work speaks for itself."
Rating: 10.0
Sentiment: 0.3611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: nwo4204lifewrote on 25.08.2018:[10.0] "Daniel Bryan changed the game in WWE in a huge way. CM Punk started to break down the doors, years after Y2J had already broken down the walls. The idea was no longer about being too small to be the champion, it had become about credentials; i. e, whether years of international and independent experience meant anything in the WWE. Wrestlemania XXX was justice for Daniel, for the fans who felt cheated so many years, but it also marked a true shift. The Andre the Giant Battle Royal began, Cesaro won but never became a world champion. AJ Lee beat every girl on the roster, and lost to debuting Paige the next night on RAW. Only 3 women from the AJ Lee 14 woman Divas title match remain on the roster. It was truly an emotional roller coaster for WWE fans who support the underdog from 2011 til now. CM Punk winning our hearts only to be unceremoniously jaded and leaving. Daniel Bryan fighting to the top only to be forced into retirement, authority angles and reality TV right when lightning is sealed in the glass bottle. Only to find out 3 years later that he is actually okay to wrestle again! He may not be the same but noone would be. I hope the story ends with a happy ending, noone has ever deserved it more in the sport."
Rating: 10.0
Sentiment: 0.09531549799406942
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: zephyrwrote on 24.08.2018:[6.0] "Used to be one of the greatest technical wrestlers and natural babyfaces but these days he's just an average wrestler who is over because of his history."
Rating: 6.0
Sentiment: 0.23750000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KOR KOMBATwrote on 21.08.2018:[10.0] "One of the best. Absolutely a living legend for both his indie work and WWE stuff. The energy and excitement he brings to matches is like nothing else, just watch his war with Bray at Rumble 2014. He always has the crowd in the palm of his hand, if Bryan's in the match, it's gonna be a hot one. The best part about him though is his dedication to the craft, wrestling is his life blood."
Rating: 10.0
Sentiment: 0.49000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cal Vamwrote on 15.08.2018:[10.0] "A guy you can get fully behind and appreciate his in-ring work no matter your preferences, there will always be at least one match with this guy you will fall in love with. Can work with the crowd as just a few can, he's simply one of the best this bussines has ever produced, if not the best."
Rating: 10.0
Sentiment: 0.2285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jamzell00wrote on 07.08.2018:[10.0] "Legendary indie resume as you could make a case for him being the best wrestler of the 2000s. His wwe run is very up and down with a lot of good/great matches but nothing compared to his other work. I'm somebody who would take heel danielson every day of the week but the way he got almost the entire wwe fanbase behind him is incredible. Him coming back is still one of the happiest things I've ever seen in wrestling and he was instantly the hottest guy in ALL OF WRESTLING. Of course knowing the wwe he was put in a feud with big cass and had a lot of his heat cooled down. Yeah most of us are holding out on this Miz match but his comeback has been handled terribly. Considering how he's been booked his entire career I shouldn't be shocked lol"
Rating: 10.0
Sentiment: 0.10354938271604941
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SGKwrote on 17.06.2018:[10.0] "Insanely good theme song, underrated mic skills, well rounded and versatile set, ability to bring audience in his favour and being an instant main eventer- HE IS THE COMPLETE PACKAGE."
Rating: 10.0
Sentiment: 0.24166666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: InactiveGuruwrote on 31.05.2018:[9.0] "Being completely honest with you his WWE has been boring to me but it is nice to see the best in the World finally be over on the biggest stage wrestling has to offer. One of the best technical wrestlers ever and really worthy of all the praise he get's from fans and coworkers."
Rating: 9.0
Sentiment: 0.3166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Shiza kunwrote on 23.05.2018:[10.0] "Easily my favorite wrestler of the modern era. Daniel Bryan is the man that single-handedly got me invested into WWE again during his epic run starting in the summer of 2013 where he was the hottest wrestler in the company, providing great performances on a night-to-night basis. His in-ring ability is unquestioned, and, to me, he undoubtedly has great charisma as a fiery underdog that anyone can behind. It really is a shame that injuries halted his rise to the top at WM30 and even forced him to retire for 2-years, but I was really hyped to see him back. Typical of WWE though, they have booked his return pretty poorly since 'Mania, and if this doesn't change, I honestly hope he leaves for a second run on the indies or perhaps even NJPW. Luckily there is a great collection of ROH matches he's had I have yet to watch, which I am greatly looking forward to."
Rating: 10.0
Sentiment: 0.24083333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Chrisxyzwrote on 22.05.2018:[10.0] "Technisch Hochbegabt und er elektrisiert die Hallen jedesmal. Nach dem er von den offiziellen grünes Licht bekommen hat, hatte ich Gänsehaut. Ich wünsche mir für ihn in der WWE viele top Matches und den World Championship. Wer weiß... vielleicht bringt er die WWE nochmal zu einem ***** Match"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: lew kazamawrote on 02.05.2018:[9.0] "The most charismatic wrestler of his generation has returned to in-ring action and I truly believe this run will build onto his legacy. I'm just sad we missed out on 2 years of prime Daniel Bryan."
Rating: 9.0
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Oliver95xwrote on 23.03.2018:[10.0] "Ein großartiger Wrestler der immer alles gegeben hat. Habe so gut wie nie ein schlechtes Match von ihm gesehen. Jetzt wo er wieder in den Ring steigen darf, erhoffe ich mir großes."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GallowayFagwrote on 21.03.2018:[10.0] "Probably the most technical wrestler of the Modern Era, and perhaps the most technical wrestler of all time. The name that consolidated the indy scene, a man capable of adapting to any style and one of the most beloved wrestlers of all time. It's good to see you back, D-Bry!"
Rating: 10.0
Sentiment: 0.32999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Makai Clubwrote on 09.03.2018:[10.0] "Without a doubt one of the best technical wrestlers of all time. So many classics, KENTA, Takeshi Morishima, NIgel McGuniness, CM Punk, Chris Hero. Too many to list off. He has had some of my favourite matches of all time and is one of my favourite wrestlers of all time.  The guy's abilty to adapt and change himself and still stay one of the most loved and over wrestlers of all time is uncanny, from American Dragon, to the I have 5 phase, NXT, The Hug it out stuff, YES movement. Danielson/Bryan can and has done it all. His connection with the fans is almost legendary and he will be fondly remembered as a GOAT, like he deserves."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CHN325wrote on 31.01.2018:[9.0] "Likely the best technical wrestler of his generation. Got himself over in WWE despite all the odds being stacked against him. One of the best underdog stories of all time."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Titansrevengerwrote on 15.01.2018:[7.0] "The more I think about the bland vanilla midget which captivated the WWE the more I hate the word yes. It has come to my attention that while Daniel may have been very good technically he was so unspectacular visually. I personally thought the yes chants were obnoxious and the man chanting them equally so. It was another case of an underwhelming performer getting over with a smarky crowd. I really felt no depth to Daniels character and actually wanted to see he the underdog get trampled over. He was a flash in the pan as WWE champion who should never been at the helm in the first place. I could not take him seriously as a main event player."
Rating: 7.0
Sentiment: 0.13
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DaBigDogwrote on 14.12.2017:[10.0] "The Absolute best ever. The American Dragon, Bryan Danielson. That says it all. Hope we will see him in the ring again!"
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jchiofalwrote on 14.11.2017:[10.0] "Bryan is just a fantastic wrestler. He puts on the best matches in the WWE today, with his large versatile moveset. I do love the aggression that Bryan has been showing lately though. Very reminiscent of his time in RoH."
Rating: 10.0
Sentiment: 0.3023809523809523
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Klabauterwrote on 13.11.2017:[5.0] "Daniel Bryan ist ein sehr guter Wrestler mit mäßigem Können am Mikrofon und der Ausstrahlung eines Reissacks.  Meines Erachtens der perfekte Midcard-Wrestler. Eben der Mann, der im RIng gut ist, aber abseits des Ringes langweilig. Das fällt in der Midcard am wenigsten auf. Insofern hoffe ich, dass er bald zurückkommt und eben diese Midcard aufmischt. Aber bitte nicht mehr im Main Event. Dafür ist er - zwar nicht wrestlerisch, aber ansonsten - zu schlecht!  Daher alles in allem 6 Punkte für Daniel Bryan. //Update 13. 11. 2017 // Als General Manager leider ein ziemlich belangloser Act, konnte er Anfangs zu Talking Smack Zeiten noch einigermaßen glänzen (auch wenn da vieles schon Unfug war), so ist er jetzt nur noch der, den man rausschickt, wenn man die Crowd anheizen will, denn selbst der gelangweilteste Fan schafft es "YES! " zu chanten. - 1 Punkt => Fünf Punkte."
Rating: 5.0
Sentiment: 0.13541666666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ianlapierrewrote on 04.11.2017:[7.0] "Daniel Bryan was one of my all time favourite wrestlers. He was fantastic in the ring. Fantastic on the mic. He had the audiences popping like no one else since Austin and The Rock. My big beef with his overall standing is that he did not have career longevity. His career also paralleled a very weak period in wrestling history."
Rating: 7.0
Sentiment: 0.0625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dragon Fighterwrote on 03.11.2017:[10.0] "What can I say more about Daniel bryan ? One of the greatest American wrestlers of all time for sure. He was a key member of ROH during the heydays of the company. Since joining wwe, he continued to rise and became one of the most popular superstar in pg era. Phenomenal in ring work, psychology. Great selling. Have a lot of charisma. Super underrated on the mic as well ( he outperformed cena during the miz tv segment before summerslam 2013 ). He also can make anyone sharing the ring with him look like million bucks. Being over with both hardcore and casual fans. I can understand why someone dislikes the yes chant, but I think that is one of the best things happening recently. I don't want to write anymore. A well-deserved 10."
Rating: 10.0
Sentiment: 0.4025641025641026
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TooSweetPhilwrote on 01.07.2017:[9.0] "Leute beschreiben ihn als overrated?  Bryan weniger als 5 zu geben empfinde ich als riesige Blasphemie. Er ist im Ring einer der Besten Wrestler seiner Zeit, vielleicht sogar aller Zeiten und zeigt das. Er kann mit so gut wie jedem Gegner ein gutes Match aufstellen (wenn man Leute wie Orton zu guten Matches bringt heißt das was). Zwar sind seine ROH Matches teilweise ewige Klassiker, doch auch in der WWE kann er das mitbringen. Ein Meister des Submission Wrestling's und quasi verantwortlich für die "Wrestling Revolution" des Marktführers. Extrem charismatisch, seien es die Yes-Chants oder das Beard-Gimmick. 9 Punkte, ganz knapp abgerundet."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Summerslam Fan 01wrote on 01.07.2017:[8.0] "Es gibt nicht viele Wrestler die so Krass abgefeiert und geliebt wurden wie der Kerl.  Das YES Movement bleibt unvergesslich, bei Wrestlemania den Höhepunkt seiner Karriere (aber im Schatten des Streakende an dem Abend) Im Ring sehr stark und Großartig. Am Mic Solide auf Shawn Micheals Niveau (nicht Perfekt aber Solide am Mic) Trotzdem für mich nicht jemand der an ein Gesamtpaket von einem Cm Punk rankommt. 8 P."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LordGabrielwrote on 05.06.2017:[7.0] "Good technical wrestlers , as I always said but I don't think it is enough that people would consider him one of the best ever. Honestly he's pretty overrated. In his WWE career except his match vs. Triple H at Wrestlemania 30 didn't stand out at all. These days I have seen some of his ROH matches , and yes they are better than those from WWE. He put good matches but something is missing , that entertainment which any good wrestlers should have it."
Rating: 7.0
Sentiment: 0.4055555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PrinceJrwrote on 16.04.2017:[10.0] "Absolut genialer Wrestler. Man muss bedenken, dieser Mann hat 9 Mal den Award für den technisch besten Wrestler bekommen und dieser Award wurde nach ihm benannt. In der WWE absolut klasse gewesen und einer der beliebtesten Wrestler seit Steve Austin und The Rock. Dennoch ist der Daniel Bryan nur ein billige Version von Bryan Danielson aus Ring of Honor. Dieser war ein Magier."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Blood Pumpwrote on 30.03.2017:[10.0] "From the day I first watched his match with KENTA (Glory By Honor) I knew Bryan was a top fiver for me, and hes done nothing but solidified that spot up until his early retirement. I occasionally see some people note that the WWE neutered him a little, on the contrary I think he shined just as brightly when given the opportunity to. His Over the Limit match with Punk and Summerslam match with Cena are two such matches I'd readily put on the same plane as his matches with KENTA, McGuinness, Morishima and Hero. I'd go so far as to say those two WWE matches are underrated in the grand scale of Danielson matches but I'm diverging just a little. Bryan was fantastic in the ring in every way you can think. He could play the good guy or bad guy equally well (a very rare trait), and I think hes made a strong case for being considered the best ever based on his extensive wrestling resume."
Rating: 10.0
Sentiment: 0.2099166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: IsThisWrestlingwrote on 23.03.2017:[10.0] "The greatest American wrestler of the 2000s. Every independent wrestler these days basically owes this guy their career."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: strongstyle77wrote on 09.02.2017:[10.0] "Hier unter 9 Punkten zu geben ist utopisch. Eine Indy Legende & eine WWE Legende. Einer der 10 besten Wrestler aller Zeiten für mich. Musste leider viel zu früh retiren, trotzdem kann man hier nur 10 Punkte geben. Danke Dragon!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Basti2k17wrote on 07.02.2017:[7.0] "Hat mich nie wirklich überzeugt, auch nicht mit der Underdog Story von 2014. Wrestlerisch top, aber man hat ihn oft zu stark gebooked"
Rating: 7.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring: Bei WWE nicht mehr so stark wie in den Indy Ligen aber da ich ihn für den besten Wrestler der 00er Jahre halte, in den indy Ligen gebe ich ihm 10/10 (50%) Punkte.   Promos/Schauspieltalent:Eigentlich ziemlich gut. 9/10 (25%)  Charisma/Statur/Gimmick:Hatte jetzt nie den Superstar Look, und einen grauenhaften Bart der nicht zu ihm passt. 5/10 (25%)  Sind dann insgesamt 8, 5 Punkte für The American Dragon.   = 9 Punkte"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: rjsbx11wrote on 07.01.2017:[10.0] "It's really a shame that neck and concussion robbed him of his prime earning years or we may be talking about a greatest of all time candidate. Nonetheless, Bryan Danielson was a great wrestler. On the indies, Danielson was amazing--a great technician with submission and kicks as a speciality. His cocky prick heel champion was backed up that on any given day he was the best in the ring. Seriously, watch his stuff with McGuinness, Joe, Punk, Omega and etc, he gelled with any style he matched up against. Taking his popularity and fanbase to WWE, Danielson inverted his name to Daniel Bryan and from day one he grew an organic fanbase of hardcore and casual fans. Despite reservations from WWE, Bryan grew immensely popularity through a diverse skill set and marketable image. His use of facial expressions, body language, mannerisms, voice combined that with a style of MMA-inspired strikes, holds, and general recklessness that made his stuff look fairly real, and different from most other wrestlers. He became one of the most relatable and sympathetic figures in all of wrestling up until his retirement which left fans in legitimate tears. It's a shame injuries robbed us of truly great run of Daniel Bryan the main event champion, but he left an indelible impression in pro wrestling."
Rating: 10.0
Sentiment: 0.25515873015873014
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ApexOfEvolutionwrote on 02.01.2017:[10.0] "Wrestlerisch ist Daniel Bryan einfach klare 10 Punkte wert, der mit jedem Gegner ein tolles Match gestalten kann. Selbst Kämpfe mit größeren und schwereren Gegenern wirkten auf mich nie unglaubwürdig. Durch seine natürliche Art kam er als Face einfach immer gut rüber, was ihm zu einer besten Storylines in der WWE der letzten Jahre verholfen hat. Schade, dass er den Hype, den er durch seinen Titelgewinn bei Wrestlemania erzielt hatte, aufgrund seiner Verletzung nicht mehr nutzen konnte. Als On-Air-Autoritätsperson hat er seine Rolle noch nicht ganz gefunden, aber mal sehen wie sich das noch entwickelt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Styles Clashwrote on 13.12.2016:[6.0] "I can understand why fans rate him so highly, but I'm not personally a fan of his work in the ring, but that's just me."
Rating: 6.0
Sentiment: 0.08
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PistolPeteMattywrote on 04.11.2016:[10.0] "One of the most likable people in wrestling history, even as a heel. From his absolutely incredible run as RoH world champion, to his iconic road to Wrestlemania 30, Daniel Bryan/Bryan Danielson is hands down my favorite wrestler of all time."
Rating: 10.0
Sentiment: 0.45740740740740743
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PolishPrideMMAwrote on 26.10.2016:[7.0] "Daniel Bryan ist gut, unterhaltsam und talentiert, aber er gehört für mich nicht in ein Wrestlemania Main Event. Mit ihm als World Champion bin ich einfach nicht warm geworden. Als Midcarder oder im Team mit Kane hat er mir besser gefallen."
Rating: 7.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Squared Circlewrote on 21.10.2016:[5.0] "Hard worker.  Gave everything he had.  Charismatic.  Crowd loved him.  Liked his work with Kane.  That being said, he's from the recent genre of way overrated wrestlers who couldn't possible win a real fight, (see CM Punk for further details).  With a complete lack of character believability, he sits at a 5."
Rating: 5.0
Sentiment: 0.26083333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: croatiantwat1950wrote on 18.09.2016:[10.0] "Argubly the best technical wrestler since Benoit. He started off in ROH with a bit sloppy mic skills, but ever since arriving in WWE, he became better and better on the mic. Yes, i am also one of those who hated fan hijacking every time he didn't win something, but that is not a reason to give such a talent a 0 grade. Hopefully he gets indutced in HoF for a year or two."
Rating: 10.0
Sentiment: 0.18541666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: J Batistawrote on 09.09.2016:[10.0] "YES! YES! YES! Daniel Bryan/Bryan Danielson is one of the greatest wrestlers ever! And, of course, the best technician of the last decade. Too bad for his early retirement."
Rating: 10.0
Sentiment: 0.2800000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Marcoboowrote on 02.09.2016:[6.0] "I am honest when I am saying that DB is not my favourite Worker in history. He get a big hype in his last years with his Yes_movement. Great for him and his career. But for me he was never more than a good midcard-wrestler."
Rating: 6.0
Sentiment: 0.3083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Strezemannwrote on 25.08.2016:[10.0] "Bryan became a serious contender for 'best in the world' extremely quickly, and his output in terms of showstealing matches - in just about any company, in just about any of his runs - was absurd. Since then, the workrate level featured on big-name indie promotions has gone off the chain, but Bryan was far ahead of his time, and even among top-flight talent, he stood out as being the most technical, the most visceral, and the most versatile. Even after drastically changing his style after coming to WWE, he was still the biggest workhorse there, going out of his way to please the crowds. Throughout his career, I think he overdid it; I especially think his post-surgery fixation on "testing his neck", throwing headbutts, etc. is possibly the most foolish, ignorant approach to pro wrestling ever shown by an otherwise intelligent industry veteran. But I think he crammed enough incredibly good performances into his relatively short career to be considered as good an in-ring performer as there ever was. Never in a million years would I have expected him to become a big deal in WWE, but he somehow managed to get the consistently biggest pops of anyone in over a decade, and he had an entire Wrestlemania built around him. That's pretty incredible. On top of that, his understated charisma and very underrated mic work (he was honestly pretty good even as far back as his ROH title reign) humanized him, and made him more than just an incredible wrestling machine."
Rating: 10.0
Sentiment: 0.28030303030303033
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ShooterMcShootwrote on 11.08.2016:[10.0] "Great worker and a really nice guy who just caught on with the crowd thanks to a large ham character. Absolutely deserved to be world champion. Since his unfortunate retirement, he's carved out quite a niche there. Personally, I think he's an outstanding color commentator. Probably the best commentator in the whole company because he comes off honest and authoritative and he sells the action with his sheer enjoyment of wrestling. Absolutely he should be at it more regularly."
Rating: 10.0
Sentiment: 0.28907563025210087
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sonny Blackwrote on 09.08.2016:[6.0] "Zuerst muss ich sagen das ich ihn nur aus der WWE kenne. Und da ist mir leider nicht aufgefallen das er so gut im Ring sein soll wie mir das Internet sagen will. Noch dazu hat mich sein dämliches Yes absolut zu Tode genervt deswegen hab ich ihm auch noch einen Punkt abgezogen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Legendkiller96wrote on 02.08.2016:[8.0] "Er war für mich ein richtig guter Wrestler, jedoch nicht überragend, am Anfang mochte ich den Stil, irgendwann waren es mir einfach zu viele Dropkicks. Am Mic solide bis gut, aber kein Wunder wie Punk, Heyman und co. Trotzdem over und seine Regentschaft war gut gebookt, das liegt aber mehr an der WWE als am Wrestler selbst denke ich, von mir 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Hanscydewrote on 09.07.2016:[10.0] "His accolades speak for himself. A great wrestler for a very long time. Went from being the face of indie wrestling and a founding father of Ring of Honor to headlining Wrestlemania 30 with one of the best performances in 'Mania history and being the most popular wrestler from 2013-2015. It's a shame his career got cut off so early but he'll be remembered for not only his wrestling ability but also changing the way WWE looks for in a star. An all-time great, imo."
Rating: 10.0
Sentiment: 0.41500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AMHTPwrote on 21.06.2016:[8.0] "You gotta love Daniel Bryan.  There's a reason he won Wrestling Observer's award for best technical wrestler so many years running -- Bryan was the real deal, and he was already a superstar during his Ring of Honor days.  It's a pity it took him so long to gain recognition in the WWE, but his victory at WrestleMania 30 was one of the greatest and most emotional moments in the business.  Bryan wasn't the best promo in the world, but his sincerity and heart never failed to shine through, and he was a machine when it came to churning out ****+ matches."
Rating: 8.0
Sentiment: 0.3307692307692308
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Carrot Junkiewrote on 06.06.2016:[10.0] "Yeah.  I'm one of THOSE people.  In pro wrestling's modern "Bodyslams on Ice" world, Daniel Bryan was the rare performer who felt real.  When The American Dragon came to the WWE, he may have had to tone down his moveset, but one thing he never toned down was his fire, his passion, and the in-ring presence that far outstripped his size.  He had an uncanny ability to get the audience to suspend their disbelief and believe in him and his character.  Due to his deft technical skill, great psychology, and perfect sense of timing, his matches felt remarkably like real athletic competitions while also retaining WWE's theatrical quality.  He threw everything he had into them, and unfortunately, it cost him dearly.  The biggest tragedy in all of this was that he never reached his full mainstream crossover potential.  To paraphrase Jim Cornette, "when Daniel Bryan retired, WWE treated him like a real star for the first time in his career".  I wish he had been marketed better, but despite all of that, he's still one of my all-time favorites."
Rating: 10.0
Sentiment: 0.21494708994708997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Berlynwrote on 03.06.2016:[6.0] "Overhyped. Terrible on the microphone and his character resembles that of a toddler who doesn't get their way. How we went from badasses to a little midget screaming "YES" or "NO" is beyond me. Proven to not be a draw and never had a memorable moment. Hell, his WWE title on YouTube has less views than Hogan, Rock, and Austin just standing around and talking. What does that tell you? Overall... He's good, not great."
Rating: 6.0
Sentiment: -0.07916666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Zedwrote on 12.05.2016:[7.0] "Mal ehrlich: Charisma hat er, ja das stimmt. Am Mikro ist er solide, jedoch unspektakulär, und sein Moveset besteht zum großteil aus Kicks. Sein WWE Run wurde seiner Indy Zeit nie gerecht, dort war er wirklich einer dar allergrößten. Ich konnte ihn in der WWE nie so wirklich akzeptieren, da ich seine Independent Zeit kenne und liebe. Meiner Meinung nach in Stamford unter wert verkauft."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TrevPuroFanwrote on 27.04.2016:[10.0] "Greatest wrestler of all time in my book. Bryan had 5 star matches 2 years into his career, and he's been having couple of them every year of his career. Every time he stepped into the ring, he brought the best out of his opponent, regardless of who it was. When wrestlers like Kurt Angle, Chris Benoit, Shawn Michaels, Undertaker, etc. all wanted a match against you in your career, you must be really damn good. Best wrestler ever, and my all time favorite. #ThankYouDanielBryan"
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: killowenskillwrote on 19.04.2016:[10.0] "The man left behind him a great legacy. Who do you think when you mention the Ring of Honor? About him. Who do you think when you mention modern WWE? About him. Who do you think that the PWG mentioned earlier? Again about it. Bryan managed to shine on all the popular indy scenes and to leave a mark there.  In each match, Daniel put his soul, which is why the level of wrestling was just on top. There was disastrous match with his participation. Anyone, even the worst match, can be considered worthy. The most important contribution he made in the WWE. Bryan proved that even a man of his height, his build, can become the face of the company, which is mainly dominated by pitching steroid without special skills. The best, simply the best wrestler in the world, that's what really deserves to wear this sobriquet.  #ThankYouDanielBryan"
Rating: 10.0
Sentiment: 0.21984126984126984
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JordanACEwrote on 01.04.2016:[10.0] "The ultimate underdog.  Bryan is one of those guys that I just can not hate.  A brilliant wrestler and a magnificent human-being.  There's truly something great about Bryan. The lad is a legend."
Rating: 10.0
Sentiment: 0.6199999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jobbswrote on 18.03.2016:[10.0] "This guy can be considered one of if not tbe greatest of all time. Just what I would call the perfect wrestler as he could do it all in the ring. So many classics over the years and was just so fun to watch as well as being the BEST Technical wrestler 8 years in a row. Just a superb individual as well and it sucked when he had to retire as well."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mettstetter619wrote on 12.03.2016:[10.0] "Wenn man ihm keine 10 Punkte gibt, wem dann? Ich hab selten so einen grandiosen Wrestler wie Daniel Bryan bzw Bryan Danielson gesehen. Er ist einer der Besten bzw. zeitweise meiner Meinung nach der Beste im WWE Roster gewesen. Soviel "Passion" wie er für das Wrestling hat, das ist unglaublich. Daran können sich Leute wie z. B. Lesnar ein Beispiel nehmen. Er konnte einfach alles: Wresteln, er war am Mic stark, hatte unglaublich viel Charisma... was braucht man mehr? Mein absoluter Lieblingswrestler. Schade, dass seine Karriere rum ist, aber er sollte es echt lassen, nicht dass sein Hirn noch kaputt geht..."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: James Dean Wrestlingwrote on 09.03.2016:[9.0] "Sad to see him go. King in the indies. And had a great WWE run for what its worth. Did not get to shine and sucks that he didn't live up to his full potential as far has having a lengthy WWE run. But these days, we can factor in a person's entire career so it softens the blow. So many great matches and highlights but to me, Mania 30 will be the career highlight for Dbry and thats a damn good highlight if you ask me.   GodSpeed Daniel Bryan."
Rating: 9.0
Sentiment: 0.24053030303030307
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Longa-46wrote on 02.03.2016:[9.0] "Daniel Bryan ist einer der besten Wrestler für seine Größe. Klar hat er nicht den Körperbau, aber dafür ist er ein super Teckniker und hat eine Klasse Ausstrahlung. Am Mic ist er auch gut, das hat er bei seiner Abschiedspromo nochmal richtig gezeigt. Im Ring echt sehr gut. Ich mochte den Kerl wirklich gerne und Seine Matches waren meistens gut. Mit Bryan geht ein richtig guter Wrestler in den zu frühen Ruhestand was sehr schade ist aber aufgrund seiner gesundheitlichen Lage die richtige Entscheidung ist."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheLoudMouthwrote on 17.02.2016:[10.0] "Diese gottverdammten Verletzungen. Unfassbar schade, dass Danielson seine Karriere in so verhältnismäßig jungen Jahren beenden muss. Einer der besten In-Ring-Worker der letzten 20 Jahre, wenn nicht sogar der Beste. Sein Mic-Work hat er jährlich auch verbessert, vom 08/15-Langweiler zum sympathischen und authentischen Krieger. Auch wenn das Yes-Movement manchmal etwas anstrengend war: Solche Geschichten schreibt neben dem Fußball nur das Wrestling. Danke für all die tollen Matches, egal ob bei wXw, RoH oder WWE. Super Typ."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LabronBenoitwrote on 12.02.2016:[10.0] "Der zurzeit beste Wrestler der Welt. Auch wenn man das in der WWE (noch) nicht sieht, er ist es auf alle Fälle. Hoffentlich hat die WWE noch einiges mit ihm vor und lässt ihn nicht fallen, denn dieser Herr ist wirklich Gold wert und könnte trotz bereits etlicher Erfolge ein noch größerer Wrestler werden, als er ohnehin schon ist! Edit vom 12. 02. 2016: Ich hatte recht behalten. Der Mann war tatsächlich Gold wert, nur wurde aufgrund seiner Verletzungen immer wieder zurückgeworfen und letztendlich hat das dann zu seinem Karriereende geführt. Sehr schade, für mich einer der besten aller Zeiten und ich finde, dass er den Legendenstatus bereits absolut verdient hat vor allem durch sein Mitwirken im Independent-Bereich. Ohne ihn gäbe es vielleicht NXT nicht in der Form, in der wir es jetzt kennen. Danke Daniel, du bist ein Vorbild!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Brainbreakerwrote on 12.02.2016:[10.0] "Er war wohl DER Indy-Wrestler seiner Zeit und hat neuerdings in der WWE endlich an Profil und Mic-Erfahrung gewonnen, dank seines Heel-Turns, während seiner WHC-Regentschaft. Heute ist er überdurchschnittlich bei Promos und (wie gewohnt) eine Augenweide im Ring. Trotz seiner Körperbaus, wird er nicht unglaubwürdig gegen die Bullys im business wirken, denn auch ein Punk und ein Michaels haben bewiesen, dass ein skinnymßiges, athletisches Äußeres nichts mit Authentizität zutun hat. Das bringen Eleganz und Technik im Ring. Wer das immer noch nicht wahrhaben will, soll sich mal das Match von Bryan und Sheamus bei Extreme Rules anschauen und entscheiden, wer dort wen zu gezogen hat. Bryan ist fantastisch und ich freu mich auf die nächsten Jahre mit ihm bei der WWE, denn Kerle wie er sind es, die die ansonsten entertainment-getriebene Branche noch sehenswert machen. EDIT (nach 2012): Nicht einmal drei Jahre waren es noch. Aber was für ein Ritt auf der Walküre war das? Yes-Movement, WWE-Title, WM-Headliner! Unglaublich! Und nun im vierten Jahr folgte der emotionale Rücktritt. Seine Tränen, die er im Schlusssegment von RAW vergoss, sind diejenigen des wohl sympatischsten Gesamtpakets eines Wrestlers, das die Branche je gesehen hat. Sein Arbeitsethos war inspirierend für seine Generation; er glänzte mit der Abwesenheit von Skandalen; seine Technik brachte ihm NEUN mal den Wrestling-Observer-Award; sein Engagement neben dem Wrestling für krebsleidende Kinder ist wohl nur mit Cena zu vergleichen; zukünftig könnte er ein role model für die öffentliche Wahrnehmung von Gehirnerschütterungen im Kontaktsport werden... die Liste könnte ich fortführen. Wir werden ihn im Ring vermissen, aber außerhalb wäre ich froh, wenn wir ihn in der ein oder anderen Form noch sehen würden. Danke, Bryan Danielson!"
Rating: 10.0
Sentiment: -0.24188701923076925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cybermikewrote on 10.02.2016:[9.0] "Keine Frage ein Ausgezeichneter Wrestler aber mit Sicherheit nicht "Best in the World" IMO Stark Überbewertet dennoch sehr Gut! < -- Update am 26. 08. 09: Hab ihn m ittlerweile Live gesehen, da ist er eine Ganz andere Erscheinung auf DVD kann er aber garnicht Überzeugen, mittlerweile find ich ihn Spitzenklasse aber immernoch nicht "Best in the World" trotzdem auf jeden Fall Top 5  10. 02. 2016: Wahnsinn wie ich damals über ihn gedacht habe, absolut krass da er echt einer meiner Lieblingswrestler wurde! :D Man sollte außerdem sein Retirement Datum korrigieren das wurde ja erste am 09. 02. 2016 ausgesprochen :)"
Rating: 9.0
Sentiment: 0.5730519480519481
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NastyYaffawrote on 10.02.2016:[10.0] "During his WWE run, there were times when the commentators would call him "a goat", but for me, this man is the G. O. A. T. The Greatest of All-Time. He is without a doubt in my mind the greatest in-ring worker of all-time, and his match catalog is unbelievable. He had so many great, classic matches throughout his career. And on top of that, he is really charismatic, his promo skills are underrated (as proven in his amazing retirement speech), and perhaps most importantly, he made me believe. He got me invested in everything he did. I have nothing but respect & admiration for this man. I am grateful to have witnessed the best wrestler in the world do his thing for so many years. Thank you Daniel Bryan Danielson. There will never be anyone like you. He is, to put it simply, the best."
Rating: 10.0
Sentiment: 0.5477777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jorymanwrote on 09.02.2016:[10.0] "Daniel Bryan, one of the best wrestlers of modern era, good mov, good charisma, nice mic. He has everything to be one of the greatest of all time. However,  unfortunately he has bad health and yesterday, he said bye to the thing he loves more. Good luck bryan, you are "the man""
Rating: 10.0
Sentiment: 0.41999999999999993
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DanielBryan1986wrote on 09.02.2016:[10.0] "Independent war er sehr stark und kam dadurch auch klar verdient zum Marktführer. Ich finde das diese Bindung nicht gut war für Danielson. Zuerst wird er gekündigt weil er eine zu krasse Aktion vor Kamera machte. Dann kommt er aufgrund der Fans wieder zurück. Er wird WHC und hat eine Fehde mit Big Show, wo er nicht stark dargestellt wurde, nur um dann binnen Sekunden den WHC gegen Sheamus zu verlieren. Nach langer Story gewinnt er bei Wrestlemania 30 den WWE Titel. Danach verletzt er sich und gibt den Titel leider ab, er kommt wieder um Champion zu werden und wird bei WM 31 Intercontinental Champion. Wieder verliert er den Titel ohne ihn groß verteidigt zu haben. Bis jetzt warten wir Fans auf das Comeback. (Hat die WWE noch Mut ihm ins Titelgeschehen zu bringen? wenn er sich kaum darauf stets verletzt? )Edit:Nun ja leider kommt er nur noch zurück um sich zu verabschieden. Erinnert mich von der Dramatik an den Retirement von Edge. Ich wünsche mir generell etwas weniger Shows für deie WWE Wrestler im Jahr."
Rating: 10.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Best Pro Wrestling Fan Everwrote on 09.02.2016:[6.0] "He retired. I felt sorry for him because he is too young to retire. I hope he will be tranier in NXT."
Rating: 6.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kenshin Uesugiwrote on 09.02.2016:[10.0] "Seien wir ehrlich, alle die Bryan Danielson vor seinem WWE Run kannten wußten was für ein einzigartiges Juwel er ist, auch wenn einige immer wieder behauptet haben er sei zu sehr Purist und charismalos als Wrestler für den Mainstream-Bereich. Danielson darf auch mit Stolz von sich sagen überall funktioniert zu haben und das gewisse Etwas zu haben. Aber selbst seine größten Fans hätten wohl nicht gedacht welche Welle er dann in der WWE los treten würde, seine WWE Zeit macht ihn zwar als Wrestler nicht besser, aber seinen Ruhm und Legendenstatus. Er war ein Jahrhundert-Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Delirious434wrote on 09.02.2016:[10.0] "There's nothing wrong with Daniel Bryan, he's maybe THE BEST in-ring worker of the last 10 Years, he has tons of Charisma, really good Mic Skills, he's an excellent human being and the most important, HE LOVES WRESTLING MORE THAT HE LOVES HIMSELF, pretty much the exact definition of Professional Wrestling, guys like him are those that you don't want to see retiring, and that happened just minutes ago, Daniel Bryan AKA Brian Danielson retired from Pro Wrestling due to several concussions at the Age of 34, one of the saddest moments in Wrestling History.  THANK YOU DANIEL BRYAN"
Rating: 10.0
Sentiment: 0.285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BadAssChonowrote on 28.01.2016:[7.0] "Er reist mich einfach nicht mit. Obwohl er technisch sehr stark ist und auch Charisma hat kann ich mit ihm einfach nicht warm werden. Ich weiß nicht ob es an diesen bescheuerten Yes-Chants (für die er zwar nix kann) oder einfach an seinem Look, mit welchem er aussieht wie Heidis Großvater, liegt.   10 Punkte für die Technik, 7 Punkte fürs Micwork aber nur 2 Punkte für die Glaubwürdigkeit als World Champion.   Sollte die WWE ihn jedoch mehr im Midcard bzw im Cruiserweightbereich einsetzen könnte er in meiner Wertung steigen"
Rating: 7.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JeMewrote on 11.01.2016:[10.0] "Bester US-Worker des neuen Jahrtausends. Herausragende Workerate, natürliches Charisma und am Mikrofon glaubwürdig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Harlequinwrote on 11.01.2016:[7.0] "Daniel Bryan's ring work speaks volumes on its own. You don't need to muster that much effort to look up a RoH match of Bryan Danielson wrestling circles around his opponents. Daniel Bryan however is very watered down. He has enough charisma to win over the crowd, but his moveset leaves more to be desired."
Rating: 7.0
Sentiment: 0.3063492063492063
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: carterms354246wrote on 22.12.2015:[10.0] "I, like many others, feel that Bryan Danielson (Daniel Bryan) has a legitimate claim on being the best professional wrestler of his generation. He is among the elite to come from the independents and make it big on the grand stage. I only hope that he is just as remembered for his amazing work on the independents as he is for his work in WWE. Danielson was considered the best in the world all the way back to 2006 when he was ROH World Champion and rightfully so. The guy never has a bad showing in the ring. It was satisfying to see him become the most popular wrestler in WWE knowing that he was one of the true wrestlers to actually deserve it. The guy main evented Wrestlemania 30 and won the WWE Championship while having Randy Orton and Batista job to him. Not to mention, having Triple H job to him earlier in the night. As a Bryan Danielson fan it doesn't get any sweeter than that. *Recommended Matches* vs Nigel McGuinness @ ROH Unified 2006 and ROH Driven 2007, vs CM Punk @ WWE Over the Limit 2012. There are so many matches I could've listed. Just look at the Cagematch matchguide!"
Rating: 10.0
Sentiment: 0.3189814814814815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: wasder20wrote on 09.11.2015:[8.0] "Ist gut im Ring und kommt beim Publikum an. Ich kann ihm leider nicht soviel abgewinnen und fand Ihn als Heel besser."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sascha Legendkillerwrote on 16.10.2015:[6.0] "Im Ernst Leute Daniel Bryan ist gut, als Midcarder (auch mal als United Stades-, Intercontinetal- und Tag Team Champion). , aber er ist keinTopsuperstar."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cojotewrote on 13.10.2015:[10.0] "The best technician wrestler of his generation. A man that is a pleasure see in a ring, and pay for it. His skills are amazing, one of the best submission wrestlers ever. His matches and his pshycology are incredible. His career in independent wrestler is great, with greatest matches in ROH, Japan and México. One of my five favorite wrestlers ever with Bret Hart, Sting, Eddie Guerrero and CM Punk: a dream team, that Neves will happen, to Survivor Series. His gimmick of American Dragon and his Yes Movement are greatest. Thanks for all this years and for your extraordinary career, Bryan Danielson."
Rating: 10.0
Sentiment: 0.611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jacobphillipswrote on 13.09.2015:[9.0] "one of the best workers of modern time. he has the abilty to put on a great match no matter who the opponant is. his moveset in wwe however is very limited compared to his bryan danielson days which makes him even more of an impressive talent than we have seen in wwe"
Rating: 9.0
Sentiment: 0.5678571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mandzukic9wrote on 13.09.2015:[8.0] "Muss zugeben, dass ich im Leben nicht damit gerechnet hätte, dass Danielson eines Tages im Main Event von WM stehen und diesen auch noch gewinnen wird.  WWE (und leider auch die vielen Verletzungen) haben ihn zwar im Ring etwas gebremst, doch sein Auftreten und sein Skill am Mic sind dafür über sich hinaus gewachsen.  Dieser Mann braucht keine Yes-Chants um over zu kommen. Nur schade, dass man ihn trotz seiner "Overness" nicht seriös bookt."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HeadCheesewrote on 12.09.2015:[10.0] ""American Dragon" Bryan Danielson of the awesome wrestler, might end being known as one of the greatest wrestlier soft all time. Full of charisma and wrestling ability's."
Rating: 10.0
Sentiment: 0.49000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Strikerwrote on 03.09.2015:[10.0] "Er kann alles PUNKT Wer ihn nur bei der WWE gesehen hat, sollte sich mal auch seine alten Matches anschauen und erst dann über ihn Urteilen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mizzle Assault Antwrote on 22.08.2015:[10.0] "The best in WWE when he was healthy, and hopefully will be again. Also a true master in his lengthy independent run. A legitimate greatest of all time contender, this man can do it all."
Rating: 10.0
Sentiment: 0.5700000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PWCwrote on 23.06.2015:[8.0] "Daniel Bryan was no doubt a great in-ring performer. However, this guy passed through so many hurdles to get to where he was at, I don't even know where to start. Daniel Bryan was first suspended by the WWE due to him choking Justin Roberts with his tie in 2010 and it took a far cry from the fans to get his job back and make a return appearance at the Summerslam 2010 PPV. He was pushed to the main event status and it took so much BS and name calling with Stephanie McMahon labeling him as a "B+" player that the insults, being made against him, got tiring and it really made you show how the WWE really felt about him. I'm not denying he was great in the ring but, I was being fed up that other wrestlers of his physique (Rey Mysterio for an example) were never treated like that, so why now? A good solid 8 wrestler in my opinion."
Rating: 8.0
Sentiment: 0.2619047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rikishiwrote on 22.06.2015:[8.0] "Daniel Bryan ist schwierig zu bewerten. Im Indie-Bereich als Danielson im Ring mit Sicherheit einer der Besten. Er hat technisch so viel drauf, war aber relativ uncharismatisch und blass zu der Zeit. Ich bewerte jetzt einfach mal den Daniel Bryan in der WWE. Und der hat, was Charisma und Micwork angeht, richtig zugelegt und hier ist mittlerweile durchaus ok. Sein Aussehen ist zwar scheiße und das "Yes"-Gimmick geht mir auf die Nerven, aber sein Charisma und sein Micwork sind wirklich gut mittlerweile. Im Ring gefällt er mir aber in der WWE nicht wirklich. Er wird mMn einfach falsch eingesetzt, da er in der WWE viel zu viele Highflying Moves zeigt. Das ist aber einfach nicht seine Stärke. Seine Stärken im Ring sind wo anders. Er kann mit einem passablen Gegner zwar immer noch gute Matches zeigen, aber über **** ging für mich persönlich bisher kein einziges Daniel Bryan-Match. Nicht das Match gegen Hunter, nicht das Match gegen Wyatt, auch nicht das Match gegen Cena bei Summerslam. Am Besten fand ich bisher tatsächlich sein Match gegen Roman Reigns. Ein paar Matches gegen Ziggler, Rollins und co. bei RAW waren auch ziemlich gut, mir ist aber keins extrem im Gedächtnis geblieben. Ich hoffe wirklich, dass sie Daniel Bryan noch mal mit seinem alten Stil kämpfen lassen (der Bart und die Haare dürften auch gerne gepflegter aussehen), dann geht die Wertung auch wieder nach oben, da das Gesamtpaket wirklich in Ordnung ist. Aber so, wie man Daniel Bryan in der WWE im Ring sieht, würde ich, wenn ich nur WWE gucken würde, nicht verstehen, warum die Internet-Marks den so abfeiern."
Rating: 8.0
Sentiment: 0.1346153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kevin434wrote on 17.06.2015:[10.0] "AN ALLE DIE BEHAUPTEN BRYAN SEIE SCHLECHT: SCHÄMT EUCH! Dieser Mann ist so ein guter Worker, charisma hat der auch und am Mic ist der echt gut geworden, der hat sich 15 Jahre den Arsch aufgerissen, den WWE Title run und den IC Title run hat er sich verdient! Schaut doch mal seine alten ROH matches? Ein 5 star nach dem anderen, oder bryan vs Triple H bei wrestlemania, ... Dann will man mir erzählen sein Moveset wäre schlecht... wie lächerlich! Man braucht nicht immer die besten Moves um der beste zu sein, siehe Shinsuke Nakamura! Der workt klasse Matches und darum geht es. Dann sagen andere er nervt.... oh gott wie dumm muss man sein, FÜR SEIN GIMMICK KANN ER NICHTS! Das bestimmen die booker bzw. Vince! Dieser Mann ist gut, da gibt es nichts dran zu rütteln, YES YES YES!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Richiewrote on 06.06.2015:[5.0] "Ein technisch höchst anspruchsvoller Wrestler, keine Frage. Meiner Meinung nach konnte oder besser gesagt durfte er nie mehr an die großartigen Zeiten bei ROH und danach anknüpfen, in denen er überragende Skills zeigte. Ich muss ihn aber auch als Ikone von Dummbeuteln bewerten, deren Naivität und oberflächliche Hörigkeit für ein Produkt sich in einem Wort zusammenfassen lässt: "YES""
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MusSanwrote on 25.04.2015:[10.0] "Der YES MAN, einfach genial. Was soll man anderes schreiben? Ausser das er genial ist. Im Moment gibt es keinen anderen Superstar der so Over ist wie Daneil Bryan."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Excellence of Executionwrote on 22.04.2015:[10.0] "Bryan Danielson ist zweifelsohne ein Indy-Phänomen. Sowohl in den in den Indies als auch in Japan als auch im kleinen Rahmen der kurzen NXT Matches sah ich nur Gutes von ihm. Er ist ein technisch immens starker Wrestler mit großartiger Körperbeherrschung. Ausstrahlung, Mic Skills und das für beides nötige selbstbewusste Auftreten hat er ebenfalls. Dennoch kann ich mir momentan kaum vorstellen, dass er in der WWE eine Main Event Rolle spielen wird. Ich kann mir beim besten Willen nicht vorstellen, dass die WWE aus ihrem muskolösen Schema ausbricht, nur weil Danielson ein toller Techniker ist. Tolle Technik allein war noch nie (! ) das Kriterium, mit dem man im "WWE Universe" zu höchsten Meriten kommt. Er bringt zwar einen Hintergrund als verdiente Indy Ikone mit. Aber im Moment ist er nur ein glorifizierter Underdog. Der legitime Nachfolger von Chris Benoit? Jener sah aus wie ein Tier! Und wer glaubt, dass das keine Rolle gespielt hat (bezogen auf seinen Erfolg in der WWE), irrt imo gewaltig. Stellt euch doch mal Danielson neben Kane oder dem Undertaker vor. Wie sollte ein Danielson denn einen Cena oder einen Triple H oder einen Undertaker besiegen? Durch Aufgabe? Das sehe ich im Moment absolut nicht im Bereich des Möglichen. Danielson braucht einen Look, der ihn auch mehr nach einem Wrestler aussehen lässt. Das ist das einzige, was ihm im Moment zu deutlich abgeht und in der WWE bedeutet aber gerade dieses Kriterium mehr als alles andere. Und das ist nie anders gewesen. Edit: Meine Fresse, lag ich da falsch. ^^ Gott sei Dank."
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CAIIIAwrote on 20.04.2015:[7.0] "Einer der besten Techniker überhaupt. Aber dennoch "nur" 7 Punkte da ihm meiner Meinung nach leider alles andere zu einer All Time Legende fehlt: Charisma, Mic Skills, Entrance (nur noch nervig, typischer zeitlich begrenzter hype heut zu tage), Coolness, Ausstrahlung, Optische Erscheinung (ja, auch 2015 im Wrestlingbusiness wichtig)... Ich glaube mit einem neuen Heel Charakter irgendwann wird er besser fahren... YES Movement und "I'm the better WRESTLER than you" wird früher oder später die meisten nur noch nerven... Mich nervt es jetzt schon. Meiner Meinung nach also jetzt schon overrated und overhyped."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: eldenaaaaawrote on 14.04.2015:[10.0] "American Dragon, Bryan Danielson, Daniel Bryan, it doesn't matter what you call him. Without a doubt the best mat wrestler and striker of the last 15 years."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Swenson 238wrote on 12.04.2015:[10.0] "DER Mann, durch den ich zu den Indies gekommen bin! Ein absoluter Kämpfer und Techniker, der wie kein Zweiter den klassischen Ringstil mit technischen Submissions und japanischem kicklastigen Shoot-Style verbindet. Ich war im letzten Jahr so begeistert von seinem Wrestlemania-Run und dem Titelgewinn und war dadurch mehr als enttäuscht, als er sich kurz darauf verletzte. Leider ging dadurch eine Menge seines Momentums verloren und jetzt fängt er wieder "unten" an. Die Fans haben ihn jedoch nicht abgeschrieben und ich hoffe, die WWE sieht diese Reaktionen bald wieder ein und er darf erneut ums große Gold kämpfen, anstatt jetzt diverse IC-Titel-Fehden zu absolvieren.  Und gebt dem Mann verflucht nochmal sein Moveset zurück! Wie kann man jemanden wie Daniel Bryan nur auf Corner Kicks, Corner Dropkicks, seine Signature Kicks und den Running Knee-Finisher reduzieren? ! ? Selbst der Lebell Lock kommt gefühlt immer seltener zum Einsatz..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: thenoah1wrote on 12.04.2015:[9.0] "Along with Lesnar, the best worker today. His indie days are excellent, and he created some of the greatest matches this side of 90's All Japan with the likes of McGuinness and Castagnoli, in particular, and a huge bunch of others. While the match quality may have decreased a bit, his WWE days showed him to be an even greater wrestler, manifesting the greatest "underdog" character in history. Incredibly charismatic in the ring and a technician unlike any other"
Rating: 9.0
Sentiment: 0.45833333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RooneyDXwrote on 05.04.2015:[10.0] "Ein starker WRESTLER. Freue mich schon auf zukünftige matches gegen Ziggler, Rollins usw. Er kämpft mit PASSION, SOUL and HEART."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Devil Of Legacywrote on 21.03.2015:[6.0] "Auf die Gefahr hin, gelyncht zu werden: überbewertet. Nicht im Ring, aber am Mikrofon. Er hat für mich null Ausstrahlung und seine Promos sind bestenfalls mittelmäßig (genauso wie sein Bartwuchs). Plus: No No NO!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: test85wrote on 08.03.2015:[8.0] "Der aktuelle WWE Liebling im Netz. Bei mir steht er aber nicht so hoch im Kurs. Am Anfang seiner WWE Zeit wusste er noch mich zu überzeugen. Aktuell ist das nicht so der Fall. Hat aus meiner Sicht ein dermassen nerviges Gimmick(Goat) und die Yes Chants bringen meine Ohren zum bluten. Da schalte ich sofort den Ton ab. Wenn er darf kann er sicher aus (fast) jedem ein min. gutes Match rausholen. Eventuell hat er seinen Höhepunkt bei WM30 (ähnlich Benoit bei 20) erreicht. Lasse mich aber gerne eines besseren belehren."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Navidwrote on 07.03.2015:[8.0] "Er ist ein vorbildlicher Worker und hat etwas an sich das ihn sehr sympatisch erscheinen lässt. Leider hindert das ihn auch daran wirkliche Wandlungsfähigkeit zu zeigen. Vor allem am Mikrofon sehe ich kein weiteres Potenzial mehr, sodass er in gewisser Weise durch den Wrestlemania Mainevent 2014 seinen Karrierehöhepunkt hatte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Valiuswrote on 25.02.2015:[8.0] "würde er ernsthafter dargestellt werden und auf das nervige YES verzichten gäbe es eine noch höhere Note..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mantafahrerwrote on 28.01.2015:[10.0] "So langsam wird's dann, Herrschaften - vielleicht ist es einigen Leuten noch nicht so ganz aufgefallen, aber die Zeiten wo du ein Hüne mit mehr Muckis als Arnie Schwarzenegger ohne notwendige Ahnung von Ring-Performance sein musstest, um es im Wrestling zu schaffen, sind vorbei. Gott sei Dank, denn diese Zeiten haben verdammt vielen Performern das Leben gekostet, der Ultimate Warrior nur der letzte Fall in einer langen Reihe von Opfern. Zwar haben das einige Promoter-Großväter wie Vince McMahon noch nicht ganz verrissen, aber heutzutage geht der Trend stark in Richtung technische Wrestler, die beim Publikum sympathisch rüberkommen, aber es auch schaffen ein langes und hochqualitatives Match zu worken, selbst mit Performern die eher in Richtung Powerhouse aufgebaut sind und daher ein wenig Hilfe dazu benötigen. Daniel Bryan ist jemand, der einer der besten Worker weltweit ist, von seinem Arbeitgeber konsequent benachteiligt wird, aber trotzdem unglaublich over bei den Zuschauern ist. Jemand, der auch dieses Jahr das WM-Main-Event in allen Aspekten verdient hätte, aber aufgrund von Backstage-Politik die nächsten Monate nur noch in der Midcard herumtanzen darf. Wie er aussieht ist mir egal, sein Yes! -Ruf ist zwar manchmal nervig, war aber essentiell dazu, eine Verbindung mit dem Publikum aufzubauen. Er hat etwas genommen, was ihn einen Popularitätseinbruch bescheren sollte, und damit allen gezeigt dass man die Wrestling-Welt mit Leidenschaft und Geduld im Sturm erobern kann. So, jetzt bin ich aber fertig."
Rating: 10.0
Sentiment: -0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mr8541wrote on 27.01.2015:[10.0] "One if the most amazing talents the Wwe has seen in many years.  It's been many years since I have seen a superstar that has such a crowd base behind him. A future hall of famer in my book."
Rating: 10.0
Sentiment: 0.1125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ggultra2764wrote on 27.12.2014:[9.0] "Easily the best in-ring worker the WWE had up to when he left due to needing surgery. His everyman personality allowed fans to easily connect with him and while not up to CM Punk level, he could still cut solid promos that fans could connect with for his character. He's living proof that you don't need to be Vince McMahon's ideal big, muscular type to get over in the WWE."
Rating: 9.0
Sentiment: 0.3302083333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Gad Chablewrote on 24.12.2014:[10.0] "Überragender Techniker - im Ring sucht er weltweit seines Gleichen. Auch was Charisma und Mic-Work angeht, hat er eine enorme Entwicklung hinter sich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HereComesThePainwrote on 20.12.2014:[10.0] "Gibt es nicht 11 Punkte?  Bei ROH war er einfach unfassbar super. Bei WWE immer genial, vom schüchternen Anfänger über Heel bis zum Topface. Bleibt nur die Frage, ob Daniel Bryan einer der besten und unterhaltsamsten aller Zeiten ist. YES! YES! YES!"
Rating: 10.0
Sentiment: 0.6510416666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Heel MaSchwrote on 16.12.2014:[10.0] "Alles andere als zehn Punkte sind hier eigentlich ein schlechter Witz.  Seit Jahren liefert Bryan wrestlerisch die besten Leistungen in Nordamerika ab. Alle die ihm das Charisma absprechen haben die WWE Shows in den letzten Jahren offenbar nicht verfolgt. Bryan zieht Reaktionen die man sonst nur von Steve Austin kannte. Das er mittlerweile so populär und erfolgreich ist gönne ich ihm ungemein.  Bei seinen Titelgewinn im Mainevent von Wrestlemania hatte ich ehrlich Tränen in den Augen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ShawnDravenwrote on 12.12.2014:[10.0] "He is truly the best wrestler in the world, and has been for a long time. If his career is over due to the neck injury, at least he went out on top."
Rating: 10.0
Sentiment: 0.205
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Y2J316wrote on 28.11.2014:[7.0] "Top Wrestler keine Frage, aber sein Gimmick + das Komplette WM30 Märchen fande ich nicht so toll (mag zwar schön für die fans weil face win aber egal). Schade für ihn das er gerade als sein Run als Champ startete sich verletzte. Finde es ganz witzig das er vor den kameras AJ heiraten sollte, aber am ende Phil aka. CM Punk der glückliche war. Auf jeden fall viel Potenzial, Gimmick sollte trotzdem noch einmal überarbeitet werden."
Rating: 7.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Muyo90wrote on 23.11.2014:[7.0] "Seine YES YES Chants gehen mir zwar tierisch auf die Nerven, aber ist aktuell einer der besten Wrestler die die WWE zu bieten hat. Ich denke mit seiner Rückkehr wirds im Main Event wieder wesentlich enger zu gehen. Kann man nur hoffen, dass es bald wieder 2 World Titles geben wird."
Rating: 7.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AwesomeAlbertsenwrote on 23.10.2014:[7.0] "Im Ring echt in Ordnung, hat ein paar Wow-Momente in jedem Match, diese sind jedoch ziemlich repetitiv. Dazu ein grausames Gimmick. Cinderella-Märchen hoch zehn. Alle sind gegen ihn, aber am Ende kann er alles überwinden und gewinnt den Titel. Die Story gab es ja auch erst 10. 000 Mal, da sollte man sie definitiv noch einmal bringen. Bis zum SummerSlam '13 war das ja noch okay, aber dann wurde es echt zuviel. Außerdem scheint er sich schnell zu verletzten, was auch seinem in-Ring-Style anzurechnen ist.  Hoffe mal, dass sich bei seinem Comeback nicht alles wiederholt."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: zackwoowoowooryderwrote on 18.09.2014:[10.0] "Ist für mich aktuell der Beste in der WWE, von den Ring-Skills her kann ihm keiner das Wasser reichen. Sein Gimmick als Fanliebling spielt sehr gut, aber auch sein Heel-Gimmick, welches er 2012 hatte, hat er extrem gut gespielt. Am Mic gehört er (noch) nicht zu den besten, da gibt es einige die dass besser machen als er."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HighlightHEELwrote on 29.08.2014:[10.0] "Noch immer einer der besten Wrestler der Welt. Innerhalb des Seilgevierts kann ihm eigentlich niemand das Wasser reichen. Er ist in der Lage, Wrestler zu Matches zu ziehen, die weit über ihr normales Niveau hinausgehen. Dazu kommt ein mehr als ordentliches Micwork, was nebenbei auch sein wohl größter Schwachpunkt ist. Obwohl sein Bart mir immer noch nicht wirklich gefällt, ist er zu einem Markenzeichen geworden, das wohl dauerhaft sein wird. Noch wichtiger ist natürlich das Yes-Gimmick, das man wohl mitterweile mit Stone Colds "What? " vergleichen kann - das immer noch zeitlos ist. Seine Krönung bei Wrestlemania XXX steht jetzt für immer in den Annalen, und nach seiner Rückkehr dürfte alles andere als Main Eventer für ihn ein Witz sein. Er ist eines der Gesichter, das man - vorausgesetzt, dass er gesund bleibt - in der WWE in den nächsten Jahren weiter an der Spitze sehen dürfte, und das ist auch gut so."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Antimasterwrote on 25.08.2014:[9.0] "Er ist ein herausragender Wrestler, keine Frage! Sein Charisma und seine Mic Skills sind ebenfalls stark überdurchschnittlich, er hat seine Entertainment-Fähigkeiten als Heel und in der Anger Management Story 2012 mehrfach unter Beweis gestellt. Warum also nur 9 Punkte? Erstens muss ich sagen, dass mir sein Look in den letzten Monaten überhaupt nicht zusagt, klar es ist sein Gimmick, das schlecht vermarktbare Goatface zu sein, aber trotzdem gefällt mir sein Wuschelkopf einfach nicht. Zweitens hat er sich in den letzten Monaten in seinem Moveset mehr und mehr eingeschränkt, ich habe das Gefühl, früher war er variabler. Am Ende bleibt zu sagen, dass Bryan eigentlich ein sicherer 10 Punkte Mann ist, aber mich einfach im Moment zu viele kleine Dinge an ihm stören, als dass ich ihm diese auch geben könnte."
Rating: 9.0
Sentiment: -0.44999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Phenomenal91wrote on 03.08.2014:[10.0] "His brilliant work on the independent circuit and Ring of Honor speaks for itself. But his treatment in WWE was disgraceful. They deliberately held him down, on camera and behind the scenes, put him in a series of ridiculous, illogical storylines that made him look foolish, and tried everything in their power to prevent him from making it to the top. But he did anyway. He shined no matter where they put him, he put on great matches against Cena and Orton, men who couldn't outwrestle him on their best day. He succeeded even though the higher ups wanted him so desperately to fail. Part of that was his talent. Another part was the overwhelming fan support. The fans love this guy because he's GOOD, not because he sells "Fruity Pebbles" and kisses Vince and Hunter's respective asses. He's proof that WWE will always be about WRESTLING, whether they want to be or not. Along with CM Punk, this man is one of the last few wrestlers left in mainstream sports entertainment. Hats off to you, Bryan Danielson. I always knew you'd make it."
Rating: 10.0
Sentiment: 0.2094771241830065
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DieOffenbarungwrote on 03.08.2014:[6.0] "Über die Art wie er derzeit bei der WWE eingesetzt wird, will ich eigentlich lieber den Mantel  des Schweigens werfen, weil es einfach traurig ist. Der Mann hat echt Talent und zählt zurecht zu einen der Besten, aber er darf es bei der WWE nicht zeigen. Immer nur die gleichen Moves,  was leider auch wieder an hämische Cena-Kommentare erinnert. Will nicht, dass man Bryan zukünftig 5-Move-Bryan nennt, weil das hat er nicht verdient. Die WWE muss Ihn mal mehr  zeigen lassen und man muss unbedingt seine Matches anderes schreiben, dass war zuletzt ewig das Selbe und zum sterben langweilig. Dieses Super-Bryan Gimmick sollte man auch mal abschaffen, weil er sonst wirklich irgendwann wie ein Cena endet. Auch wenn er nichts dafür kann, ist seine Ring-Leistung derzeit einfach nicht gut, da muss man auch mal so ehrlich sein.  Ich meine, vergleicht man die ROH-Matches mit den WWE-Matches! Klar, andere Liga andere Handhabung, aber es ist sehr enttäuschend wie er eingesetzt wird. Mich freut sein Erfolg, aber doch nicht auf Kosten dessen was man zeigen kann. Am Mic ist er leider auch nicht gut, weswegen die Bewertung nur befriedigend ausfällt. Es tut mir leid, Daniel. :("
Rating: 6.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jack Slaterwrote on 03.08.2014:[5.0] "Ich hatte sehr viel Zeit mir meine Gedanken zum Thema Daniel Bryan zu machen. Ich war ursprünglich mal bei 9 Punkten aufgrund seines wunderbaren Wrestlings und bin immer wieder geneigt gewesen Punkte abzuziehen. Ich konnte mir Segmente mit Bryan einfach nicht mehr antun und war von Anfang an alles andere als ein Fan. Ich habe mich vom Hype um Bryan nicht wirklich mitreißen lassen können - die Zeit nach Team Hell No, in der Bryan dann allein am Mic war haben bewiesen, dass er es einfach nicht kann. Ryback ist besser am Mic als Bryan! Sein Gimmick ist noch schlimmer als das. Der ewige Underdog... ernsthaft? Wie oft sollen wir solche Geschichten noch ertragen müssen? Und im Ring mag er gut sein, aber ich bin auch kein Fan seines Stils. Seit Bryan verletzt ist macht es mir um einiges mehr Spaß WWE zu gucken und das will schon einiges heißen. Ich muss mich sogar dazu überwinden Bryan mehr als 0 Punkte zu geben weil ich ihn einfach nicht mehr sehen will, aber ein wenig Objektivität muss einfach sein. Leider! Ich gebe daher die Hälfte aller Möglichen Punkte da ich weiß, dass er aus gutem Grund so gelobt wird und er technisch gesehen ein guter ist."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Exturnuswrote on 04.07.2014:[10.0] "In my opinion, Daniel Bryan - best wrestler in WWE. "Best of the best". There is no extra comments - look at one of his matches!"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MrJamesssswrote on 05.06.2014:[10.0] "I followed him since he was in ROH, and quickly love his in ring style. He's a total package: great moveset (especially his submission holds), selling, storytelling, charisma and interaction with the crowd. I'm happy with his success in WWE."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: L3NAwrote on 24.05.2014:[10.0] "Impecable worker with an all-around great build-up and interesting back-up story. Will definetly be a deserving Hall of Famer one day."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SRwrote on 12.05.2014:[10.0] "Simply the best at the moment! Mehr muss nicht gesagt werden, steht mit Recht an der Spitze der WWE. Stark am Mic, im Ring sowieso mit das Nonplusultra!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CrIppIL3RTIRiXwrote on 19.04.2014:[9.0] "Chris Benoit 2. 0, Bryan Danielson ist eine wucht im Ring dagegen kann man nichts sagen. Sein Mic Work ist im durchschnittlichen Bereich. Sein Gimmick, obwohl welches? Meiner Meinung nach besitzt Bryan kein Gimmick, dieses "Yes Movement" was mir zur Zeit voll aufm Sack geht ist in meiner Sicht kein Gimmick. Also InRing Top, Mic Durchschnitt, Gimmick welches?  Es gibt noch zu sagen, dass Bryan aus meiner Sicht vom InRing worken nicht an die 10 Punkte herann kommt, weil es zu weinig Abwechslung gibt.  Abschließend, 9 Punkte für den besten InRing wörker in der heutigen WWE."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BangBangwrote on 17.04.2014:[10.0] "Daniel Bryan hat bei Wrestlemania XxX bewiesen, dass er dem Mainevent gerecht werden kann. Bryan ist die Gegenwart und Zukunft von WWE"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Slyderwrote on 16.04.2014:[10.0] "Hat mich in der WWE immer gut unterhalten. Leider kann ich nur die WWE-zeit bewerten, weil ich andere Ligen nicht sehe. Auch, wenn gerade sehr viel negative Kritik da ist, weil er in so nem' Cena-ding "moved" und plötzlich durch Hype - Hate wird, hat er immer sehr gut unterhalten. Er hat seinen Platz einfach verdient, zumindest mehr, als Part-timer, wie The Rock etc.. Mal sehen was noch mit Ihm passiert. YES! YES! YES!"
Rating: 10.0
Sentiment: -0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Yesyesyes98wrote on 12.04.2014:[10.0] "The best superstar in years. Amazing wrestler who is also great on the mic. He deserves everything that he has gotten in the past year.  My personal favorite superstar of all time."
Rating: 10.0
Sentiment: 0.4416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Matzinhowrote on 11.04.2014:[5.0] "Ich bin mit Danielson nie warm geworden. Er ist mir zu nerdig, hat mir zu wenig Ausstrahlung und auch seine Promos sagen mir nicht zu. Mir fehlt da einfach das Charisma, da springt der Funke nicht über. Das wäre alles nicht so schlimm, wenn er wenigstens im Ring gut wäre. Auch da finde ich ihn aber allenfalls passabel. Sein wir ehrlich: jeder durchschnittliche japanische Junior kann bereits mehr als er, von den Topleuten aus Japan ganz zu schweigen. Das Problem bei Danielson ist sicherlich der Hype, der immer um ihn gemacht wurde. Dem konnte er für mich nie gerecht werden. Als reiner Wrestler ist er gut; und doch kenne ich massenweise andere, die mich besser, zum Teil auch deutlich besser unterhalten haben. Was bleibt ist ein ordentlicher Wrestler, der in der WWE gut aufgehoben ist."
Rating: 5.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Titanwrote on 10.04.2014:[10.0] "Daniel Bryan ist einer der wenigen Entertainer, die den Sprung vom Indy-Circuit in die WWE geschafft haben und dort auch erfolgreich sind. Im Ring ist Bryan jedes Mal ein technischer Leckerbissen, ein Feuerwerk an Griffen, Kontern und Spots und ein unterhaltsamer Wrestler. Von seinem Talent können sich so manch andere WWE-Worker ne dicke Scheibe abschneiden. Am Mic weiß er mittlerweile auch zu überzeugen und mit dem Yes Movement hat er nen neuen Trend gesetzt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wizz21wrote on 08.04.2014:[10.0] "Klasse Wrestler, es fehlt ihm meiner Meinung nach nur noch ein wenig an Charisma um auch in der WWE richtig durchstarten zu können. Aber das wird schon noch werden. Vorerst vergeb ich mal "nur" die Note gut, Tendenz ist aber eher steigend.   Edit:  YES! YES! YES! YES! YES! YES!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mathias Rekaschwrote on 07.04.2014:[10.0] "Derzeit, und das muss man bei aller - in meinen Augen ungerechtfertigten Kritik an seinen Mic-Skills - neidlos anerkennen, sicherlich einer der besten, wenn nicht sogar DER beste Wrestler weltweit, da er über ein Reportoire verfügt, welches nahezu grenzenlos erscheint. Man darf bei den Bewertungen auch nicht außer Acht lassen, dass er bei WWE zwar vieles, aber eben nicht alles zeigen darf und kann. Zu der Ausstrahlung und den Mic-Skills sei gesagt, dass er sicherlich nicht der unterhaltenden Schauspieler-Fraktion angehört, die in Stamford weit verbreitet ist, doch seine Ehrlichkeit und die auf einige schlicht wirkende Persönlichkeit macht einen Danielson nunmal aus und ist eben keine Schwäche, sondern einfach ein Mensch, der sich selbst darstellt. UPDATE: Im letzten Dreivierteljahr hat nun wirklich jeder Wrestlingfan merken können, was für eine Ausstrahlung Bryan hat. Dies liegt nicht an irgendwelchen Worten oder Catchphrases, die dies sicherlich untermauern, sondern einzig und allein an seinem Können im Ring und am Mikro. Er ist zu Recht derzeit einer der Top-Stars in der Company und wird sich da hoffentlich langfristig festbeißen, denn WWE braucht neue Stars."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Whitebear710wrote on 03.04.2014:[6.0] "Nichts halbes und nichts ganzes. Er mag ja technisch stark sein, allerdings ist sein Moveset sehr limitiert, sein Micwork ausbaufähig und sein Gimmick nur noch nervig. Auch optisch keine Erleuchtung. Man muss ja kein Bodybuilder sein, aber zumindest ein athletischer Körperbau würde helfen. Stattdessen sieht Bryan aus, als hätte er ein paar Pfunde zu viel un deutlich zu viele Haare. Reicht leider nur für 6 Punkte."
Rating: 6.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Eagle Whiskeywrote on 31.03.2014:[7.0] "Bei Bryan will der Funke einfach nicht so richtig auf mich über springen. Ok er ist zurzeit der beste Wrestler in der WWE, seine Matches sind alle 1a dass muss ich ihm schon anrechnen. Auch sein Mic-Work und seine Mimik/Gestik hat sich in den Jahren verbessert, dennoch ist er kein Punk, HHH, Bray Watt oder S. Michaels. Ich finde Brayn einfach nur zu "brav". Da kommt nichts was sich im Kopf festsetzen würde."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ryerthi1989wrote on 31.03.2014:[10.0] "Bester Wrestler in der WWE zur Zeit und zudem schon über 10 Jahre konstant auf dem gleichen Level, wenn nicht sogar noch besser. 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Shankwrote on 26.03.2014:[5.0] "I can't stand him anymore. He sucks now after becoming a brawler. Is he the best? NO!"
Rating: 5.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: deadfru5wrote on 26.03.2014:[9.0] "Fantastisch im Ring, sehr gut auch außerhalb. Muss nur aufpassen, dass er sich nicht zu sehr auf seine Kicks versteift, sonst wird's schnell zu eintönig. Ich hoffe er bekommt seinen WM-Moment, mir geht Herr Danielson im Gegensatz zu vielen anderen (noch) nicht auf die Nerven."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Steenericowrote on 06.03.2014:[8.0] "Als Bryan Danielson gefiel er mir deutlich besser, was aber natürlich nicht an ihm liegt, sondern an der WWE, wo er nicht mehr annähernd das zeigen darf, was er noch im Indybereich gezeigt hat. Da er mir als Daniel Bryan mit den Yes Chants auch etwas auf die Nerven geht und mir deswegen auch etwas die Ensthaftigkeit bei ihm fehlt, kann ich ihm leider keine bessere Punktezahl als diese hier geben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sokar Drenwrote on 02.03.2014:[5.0] "Daniel Bryan gefiel mir bis Mitte 2013 noch sehr. Doch dann ging dieses Yes-Movement los und dieses ruiniert schon fast jedes Event, da die fanboys es die ganze zeit übertreiben müssen mit den Yes-Chants. Sonst ist Daniel Bryan einer der besten Wrestler überhaupt, aber er sollte besser Heel werden um auch wieder mehr Moves zu zeigen. Denn in letzter Zeit sehen seine Matches immer gleich aus."
Rating: 5.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TakerFanwrote on 01.03.2014:[10.0] "In der Konversation um den besten Wrestler auf der Welt auf jeden Fall dabei, und das schon seit mindestens 8 Jahren. Kann jeden Stil mitgehen und ein Match auf ganz viele unterschiedliche Arten Worken. Hat für mich auch eine tolle Ausstrahlung und seine Arbeit im Ring großartig auf die WWE umgestellt ohne etwas von seiner Klasse zu verlieren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ZenHyenwrote on 01.03.2014:[9.0] "Beste Wrestler der Welt. Super Mic arbeit, gutes Gimmick. Nur der entscheidene Funke ist bei mir noch nicht übergesprungen."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: spesiniwrote on 28.02.2014:[10.0] "Best technical wrestler currently in WWE. Good mic skills and awesome ring skills. His every match is awesome."
Rating: 10.0
Sentiment: 0.6166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AlwaysAngrywrote on 11.02.2014:[10.0] "without a doubt the greatest wrestler of our time."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Angelos81wrote on 07.02.2014:[10.0] "Es ist immer eine freude ihn zu sehen.  Einer der besten dieser Zeit wird mal Zeit dass er für längere Zeit den WWE Titel zuhalten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ratedrkowrote on 01.02.2014:[4.0] "Ich versteh den ganzen Hype um ihn nicht.  Früher war Daniel deutlich attraktiver im Ring, jetzt gibt es jede Woche nur den gleichen Scheiß.  Bedingt durch diese Yes Chants, passt halt nicht zu allen Moves, daher passt er sich an.  Am Mic auch keine große Nummer, im Vergleich zu seinen Konkurrenten sieht er da oft sehr blass aus.  Das einzige was darüber hinwegtäuscht, sind die Fans, die wegen jedem Blödsinn Yes schreien.  Diese dämlichen Yes, Yes, Yes Chants sind auch einfach nur lächerlich.  Damit machen die Fans etliche Promos und Matche zunichte.  Für mich kein Maineventer, weil er einfach zu klein, zu schwach und auch nicht das Charisma besitzt.  Absolut unglaubwürdig, wie er seine Kontrahenten deutlich dominiert, da wird die WWE hoffentlich keinen zweiten Cena kreieren..."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TAWPTierJustinwrote on 29.01.2014:[10.0] "Daniel Bryan busted his ass and made a big name for himself on the indies to the point where he was basically known as the king of the indies before he made it to the WWE. 2 years after Daniel Bryan signs with the WWE, he starts to get really over with the crowd a couple months after he started doing the YES! chants when he was a heel. Now here we are in 2014 and Daniel Bryan has literally become the most over guy since Stone Cold Steve Austin not only cause we all know he delivers and puts on the best performances every time he steps foot in the ring but because people everywhere including myself believe that he should be the face of the WWE. Daniel Bryan is truly so much more than one of a kind talent. I guarantee you that Bryan sell as much merchandise if not more than John Cena and CM Punk if WWE keeps him in the main event picture which they should and WWE needs to finally realize that so they can eventually see for themselves."
Rating: 10.0
Sentiment: 0.19722222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Lord Regalwrote on 27.01.2014:[10.0] "Hat mich vollkommen überzeugt in allen Bereichen. 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: J0KERwrote on 23.01.2014:[10.0] "GOAT - The Greatest of All Time Daniel Bryan! Daniel Bryan eines der besten technischsten Wrestler die es jemals im Wrestling gegeben hat. Seine Matches sehe ich mir gerne an und hat einen effektiven und sehr großen weit ausdehnbaren Move Set wie sonst keiner! Im Ring ist er Spitze unter 10 zu geben wäre eine Frechheit bei Daniel Bryan! Sein Mic Work mag vielleicht nicht besonders gut zu sein trotzdem ist er sehr solide bis gut und kann sich weiter entwickeln was Mikrofon betrifft. Zahlreiche Male Wrestler des Jahres zurecht verdient! Er ist die Zukunft der WWE! Ich wünsche mir das man Bryan weiter eintwickelt und zum "Top Guy in the WWE" macht. Seine Titelregentschaften in der WWE war vielleicht nicht das beste trotzdem sehe ich hell für Bryan was Titel anbelangt. Im Bereich Fehden hat er nicht besonders gute in der WWE in der ROH schon hoffen wir mal das bei Bryan etwas großes erreicht 2014!"
Rating: 10.0
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Grischawrote on 16.01.2014:[5.0] "Wen ich ehelich bin finde ich seinen Kampfstiel eig. gut jedoch finde ich als face is er irgendwie langweilig da seine Kämpfe im prinziep gleich ablaufen und kaum spannend finde das er ein großes Move-Set hat kann ich dahe auch nicht daraus erkenne als heel sind seine Move's viel aggresiver und es ist spannender da er als heel auch nicht fast jeden Kampf gewinnt. Daraus entsteht auch eine recht schlechte Bewertung."
Rating: 5.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HalfCrabwrote on 09.01.2014:[10.0] "Best Wrestler in the World. In the history. How he mastered the execution and adaptation to any style, using that combined with sensational psychology to pull out the most exciting and complex or not matches anywhere in the world, even went to WWE and the best wrestler also turn into the most over... Bryan Danielson/Daniel Bryan is a 10 and few can be compared to him."
Rating: 10.0
Sentiment: 0.4333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JuliTheCage87wrote on 06.01.2014:[10.0] "Danielson. Der wohl beste rein techische Wrestler, den RoH je gesehen und genossen hat. Ein wahnsinniges Talent, dem der Weg in die Mainstreams hoffentlich nicht gelingen wird! Er würde wohl zu sehr in seinem Moveset eingeschränkt werden, da sehe ich ihn lieber vor einer kleineren, besseren Crowd bei RoH. Seine Matches sind ausnahmslos GROßARTIG! Ich bin gespannt, was die Zukunft ihm so bieten wird. EDIT: Meine Befürchtung war wohl falsch, vom NXT-Verlierer zum World Champion! Diesen Push hatte ich, aufgrund von der allseits bekannten WWE-Mentalität und den Parallelen zu Benoit nicht erwartet.  EDIT: Hey Kuma, what the hell is wrong with you? He actually HAS joined them. You're welcome."
Rating: 10.0
Sentiment: 0.10000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sydalutionwrote on 04.01.2014:[9.0] "Momentan einer der besten, die die WWE im Roster hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DER Landvogtwrote on 02.01.2014:[10.0] "Ich hoffe das die WWE weiter an ihn festhält den er ist momentan der overste Wrestler auf diesem Planeten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PGsuckswrote on 26.12.2013:[10.0] "Yes Yes Yes. Er ist für mich der technisch beste Wrestler aktuell in der WWE. Ich hoffe, dass er weiterhin gepusht wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LS Incwrote on 25.12.2013:[10.0] "A good entertainer and probably the best performer of all time.."
Rating: 10.0
Sentiment: 0.85
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FollowTheBuzzardwrote on 24.12.2013:[9.0] "herausragend guter Wrestler mit einem sehr abwechslungsreichen und beeindruckenden Moveset. Mic-Work ist auch nicht schlecht (bis jetzt 10. 0), doch dieses Yes! Yes! Yes! -Gimmick war anfangs recht unterhaltsam aber jetzt total nervig. Dennoch eine 9. 0 tendierend zur 10. 0"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 8BitLegendwrote on 22.12.2013:[7.0] "Der Hype um ihn ist wirklich witzig und ich kann die Fans auch vollkommen verstehen, die ihn Woche für Woche laustark anfeuern. Ich mag Daniel Bryan auch, finde ihn mit seinem Understatement sehr sympathisch und finde ihn im Ring intensiv. Leider ist er aber so gar nicht der Charakter, den ich als Main Event Wrestler anerkennen kann. Da fehlt der Glamour und der Star-Appeal. Wir haben heute eine andere Zeit und bärtige, alternative Typen sind generell sehr gefragt (was ich cool finde), nur Wrestling ist halt eine andere Bühne. Da sehe ich die Shawn Michaels / Undertaker Charaktere an der Spitze. Im heutigen Roster vielleicht einen Dolph Ziggler, aber eben keinen Daniel Bryan. Deshalb eine eher moderate Wertung meinerseits."
Rating: 7.0
Sentiment: 0.1722222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JourneybyTrainwrote on 22.12.2013:[9.0] "Bryan Danielson is the best wrestler of his generation and the best in the world today. He's good at everything he does, has taken part in tons of great matches and sense joining the WWE has proven he's a hell of a promo. It's really nice to see him getting over."
Rating: 9.0
Sentiment: 0.82
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FriarFergusonwrote on 18.12.2013:[7.0] "Man muss dem kleinen Troll eins lassen: Er ist saftig over. Seine Moves haben herbe Impact und er sellt gut. Abzüge gibts am Mic, für einige seiner Moves, denen die Glaubwürdigkeit etwas abgeht und sein Comeback No-Selling in Matches."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: yanuswrote on 17.12.2013:[10.0] "Tremendous in-ring technician, maybe the best US wrestler of the last ten years. Danielson is also underrated in the charisma/presence department, almost no one controls crowds as well as Daniel Bryan. Can be quite good on the mic - like his promos on nxt show. Probably the most "over" wrestler in the wwe post-attitude era."
Rating: 10.0
Sentiment: 0.4222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RJLwrote on 10.12.2013:[9.0] "A young kid that started out as a nobody and became a megastar, Daniel Bryan is truly one of the best men to ever step foot in a wrestling ring!"
Rating: 9.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AriesMarkwrote on 30.11.2013:[10.0] "Absolute perfection in the ring... Need I say more, while watered down from his indie days, he still impresses in the ring"
Rating: 10.0
Sentiment: 0.1361111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dreamforcewrote on 25.11.2013:[9.0] "Daniel Bryan ist der Bret Hart der "Modern Era". Er hat das umfangreichste und spektakulärste Moveset des momentanen WWE Rosters und kann damit durchaus Fans überzeugen und begeistern. Leider war die Storyline mit Kane ein totaler Reinfall, sodass ich mehr als glücklich war, als man ihm den Weg zum WWE Championship geebnet hat, wo er auch hingehört."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BretHart83wrote on 15.11.2013:[10.0] "Für mich zusammen mit CM Punk der Grund momentan WWE anzusehn. Hervorragender Wrestler der im Ring immer alles gibt.  Hoffe allerdings das der Bart bald weg ist, oder zumindest mal gestutzt wird^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Roman Mamedovwrote on 09.11.2013:[10.0] "Best wrestler in WWE now. One of the best submission specialist. Good speed and in-ring ability."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ProRedstonewrote on 02.11.2013:[10.0] "Grandioser Wrestler, der beste in der WWE momentan."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jbable84wrote on 28.10.2013:[9.0] "Daniel Bryan is living the dream. This is a guy who started from wrestling independent shows in bingo halls in front of less then 100 people to main eventing pay-per-views for the largest wrestling company in the world. Sure his promo abilities are slightly off, but that is made up for by the fact tht his gimmick is really over with the fans, he sells his spots well, and is easily the most technically-sound grappler of this generation. He's a hard worker that in no way fits the traditional wrestling look we've been force-fed and shows that anybody can be a success as long as you have passion and drive for what you do."
Rating: 9.0
Sentiment: 0.11875000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WCW Foreverwrote on 19.10.2013:[10.0] "Einfach nur genial der Typ, egal was er darstellt, er macht das einfach Klasse."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jun Kasaiwrote on 06.10.2013:[8.0] "Daniel Bryan ist zweifellos talentiert, aber viele reden ihn größer als er ist. Ein guter Wrestler, der allerdings größere Schwächen im Selling aufweist. Außerdem sagt mir sein jetziger Look überhaupt nicht zu. Am Mic hat er sich aber deutlich verbessert."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: koeddylaemmlewrote on 24.09.2013:[10.0] "The hottest act in wrestling right now is one of the most amazing talents on the market. Even with glaring charisma issues Daniel Bryan has found himself to be the center of WWE in perhaps it's most entertaining period in over a decade."
Rating: 10.0
Sentiment: 0.38095238095238093
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Solertiuswrote on 21.09.2013:[10.0] "Bryan ist einfach endlich zum Aushängeschild der WWE geworden und wird aus dem Mainevent auch in den nächsten Jahren wegzudenken sein. Zeigt absolut fantastische Moves, auch wenn die wegen der Ausrichtung der WWE ab und zu etwas zu sehr imme rnach dem selben Schema ablaufen. Würd mir wünschen, dass man ihm ab und zu erlaubt, seine Matches mit seinen Gegnern selber booken. Rein technisch ist alles, was er ezigt, absolut brilliant... hatte beim letzten RAW ein bombastisches Match gegen Reigns, wo er endlich mal auch in den Weeklies etwas mehr Abwechslung zeigen durfte."
Rating: 10.0
Sentiment: 0.33461538461538465
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Toasterwrote on 19.09.2013:[10.0] "In allen belangen Weltklasse. Aktuell DER Grund WWE zu schauen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Major Tomwrote on 04.09.2013:[10.0] "Not much to say here. Probably the best wrestler of the 2000s. Future hall of famer, for sure."
Rating: 10.0
Sentiment: 0.2925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: UnforgivenSicknesswrote on 03.09.2013:[7.0] "Er ist ein guter, technischer Wrestler und wird ja gerade richtig gepusht. Das Gimmick find ich sowas von scheiße."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Roode66wrote on 30.08.2013:[9.0] "Er ist ein Beleg für einen positiven Wandel der WWE in Sachen Einsatz von ehemaligen Indywrestlern ohne übermäßige Statur. Die WWE des letzten Zahrzehnts hätte ihn niemals annährend oberhalb der Midcard eingesetzt und nun scheint er auf dem guten Weg, bald zu den ganz großen der WWE zu gehören. Hoffentlich zieht man dies durch. Bei der nächsten Mania will ich ihn mit nem World Title um seine Hüften sehen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MultiXerowrote on 30.08.2013:[10.0] "Zurzeit wohl der beste Mann in der WWE. Für mich zumindest. Seine Matche sind wirklich Weltklasse, dazu zeigt er auch immer am Mic tolle Leistung. Ich hoffe, dass sein Push weiter geht, denn von ihn kann man imo einfach nicht genug kriegen. Ne Perfekte 10"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Giftzwergwrote on 30.08.2013:[8.0] "Gefällt mir sehr gut. Super Wrestler. der auch in der Lage zu sein scheint gute Storylines abzuliefern. Was ihm zu den 10 Punkten noch fehlt ist halt die Konstanz. Er ist gerade ganz oben angekommen und hat sicher alle Voraussetzungen, muss aber noch beweisen, daß er das jetzige Level auch ein paar Jahre halten kann."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "Ich finds einfach nur Klasse wie Bryan in den letzten Wochen over ist, hat er sich verdient. Im Ring und am Mic ein hochkaräter. Einer der besten die gerade bei der WWE unter Vertrag stehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[10.0] "Jetzt ist seine Zeit wohl endlich gekommen, nach diversen tollen Matches in der WWE fehdet er nun erneut um das große Gold der Company. Nur der Look ist derzeit fragwürdig, noch vor zwei Jahren sah er zehn Jahre jünger aus. Bryan bringt vorbildliche Leistungen sowohl im Ring als auch am Mikrofon, die Hell No Segmente waren überwiegend köstlich, wenn am Ende auch mit einem faden Beigeschmack."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: svenulreich1893wrote on 26.08.2013:[8.0] "technisch gesehen auf einer stufe mit hbk, am mic inzwischen auch überragend, aber mehr als 8 pkt gibts im moment nicht, da er diesen status, den er gerade in der wwe hat, erst einmal halten muss über jahre hinweg."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FallingStarwrote on 21.08.2013:[10.0] "Simply an amazing wrestler. After Eddie and Benoit the next proof that with the right mix of charisma and skill you don't need to be a big muscle head to reach the top of the WWE."
Rating: 10.0
Sentiment: 0.27714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rated R Punkwrote on 20.08.2013:[10.0] "Mittlerweile wirklich einer der Gründe WWE zu gucken. Von seinen Skills muss man nicht reden, er ist im Ring einer der besten, wenn nicht sogar der beste außerdem ist Daniel Bryan schon fast wirklich der Top Face der WWE er zieht unglaublich viele Pops und wird super stark aufgebaut! Das er John Cena clean besiegen durfte zeigt wohl wie viel die WWE von ihm hält mittlerweile und aus meiner Sicht könnte ich mir vorstellen, dass er die Company irgendwann mal trägt."
Rating: 10.0
Sentiment: 0.22999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LeonAusBOTwrote on 19.08.2013:[10.0] "Alles andere, als die volle Punktzahl wäre nicht angebracht. Einer der besten Wrestler auf unserem Planeten, dazu hat er sich im Entertainment-Bereich sensationell weiterentwickelt. Ein sau-starkes Gesamtpaket!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Palace of Wisdomwrote on 14.08.2013:[10.0] "Der vielleicht beste Techniker den die WWE hat. Daniel Bryan hat eine Gabe wie Chris Jericho. Egal mit wem er im Ring steht, er lässt ihn gut aussehen. Er kann mit schwachen Workern grandiose Matches liefern und begeistern. Am Mic hat er sich drastisch verbessert. Daniel Bryan ist ein symphatischer Mensch, der auch Leute begeistern kann die dem Wrestling nicht viel abgewinnen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NightShadowWarriorwrote on 05.08.2013:[10.0] "Technisch wie auch am Mic sehr gut und Team Hell No ist auch großartig"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GTS Punkwrote on 04.08.2013:[10.0] "Unglaublich charismatisch und dass nur mit einem Wort:YES!  Ich glaub ich muss jetzt hier nicht auschfeifend erklären warum Bryan 10 Punkte verdient.  Von HBK trainiert, seine Ringskills sind unereichbar, mittlerweile ist er wieder im Titelgeschehen, dort wo ich ihn sehen will und wer weiss vielleicht wird er mal das Aushängeschild der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Alex Maedawrote on 31.07.2013:[10.0] "Mittlerweile nicht nur einer der besten Wrestler der Welt, sondern auch in Sachen Mic Skills und Charisma einer der ganz Großen. Selbst mit seinem Comedy Gimmick im Team mit Kane hat er überzeugen können. Abgesehen davon hat er den coolsten Bart im Biz. YES!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HammertonWaywrote on 31.07.2013:[10.0] "Leading up to his WWE debut, I had heard all the stories of Bryan Danielson, on how he was hailed as the "Indy King", and how no one was a better technical or submission wrestler than him. After debuting on NXT, I was pleased to see that Daniel Bryan lived up to all of his expectations. While WWE at first poorly booked him and even fired him for a ridiculous reason, he somehow made a comeback and shocked everyone. But it felt as if every time Bryan had it big, WWE would find some way to ruin the fun. Need I mention Wrestlemania XXVIII. Somehow though, that moment was a blessing in disguise, as his popularity rose because of it. Daniel Bryan is at the peak of his popularity now, and leading up to Summerslam, he must beat John Cena cleanly and become the WWE champion."
Rating: 10.0
Sentiment: 0.09848484848484848
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Chris1201wrote on 28.07.2013:[10.0] "Einer der besten Wrestler der Welt! Mit Punk, Cesaro etc. momentan an der Spitze der Welt! Unglaubliche Matches und sehr viel Charisma!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Phoenix Downwrote on 27.07.2013:[10.0] "Es ist egal wo er wrestlet, wie er wrestlet und wen er wrestlet. Danielson liefert immer absolute Weltklasse Matches ab. Auch wenn er nicht den Look eines WWE Superstars hat, macht er das durch seine einzigartige Klasse im Ring, sein Charisma, seine Leidenschafft mehr als nur wett. Er ist in der Lage einfach alles zu Gold zu verwandeln. Er macht aus einer 18-Sekunden Niederlage bei Wrestlemania die erfolgreichste Catchphrase der letzten Jahre. Er macht aus einen zusammengewürfelten Team mit Kane einen das beste WWE Tag Teams der letzten Jahre. Daniel Bryan ist eine zukünftige Ikone des Wrestlings."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: babakondawrote on 21.07.2013:[4.0] "Daniel Bryan is the most overrated Superstar tha iŽve ever seen. He has zero-charisma and his mic skills are very poor. There are many Superstars in the WWE that deserve a main event push more than him. He looks and acts childish. For me he is not more than a jobbing midcarder."
Rating: 4.0
Sentiment: 0.0995238095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Booker Cwrote on 16.07.2013:[10.0] "Daniel Bryan macht momentan einfach nur Spaß. Bryans Werdegang in der WWE ist so unglaublich faszinierend. Er macht gerade einfach aus allem Gold. Noch dazu stellt Bryan momentan DEN Wrestler dar. Es ist schon längst nicht mehr feierlich was für Ausmaße Bryans Push bisher angenommen hat. Lag ich damals falsch mit meiner Meinung? YES! YES! YES!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RawIsJerichowrote on 15.07.2013:[10.0] "Bryan is nearly perfect as an in-ring performer, his vast technical move set and countering ability is unrivaled. He's also brilliant on the mic, and plays a great character. He puts on great matches regardless of opponent and deserves to be WWE or Heavyweight champion again."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Randy Owrote on 13.07.2013:[10.0] "Also im "INDY" bereich Top aber das hat wenig mit dem Main Stream zu tun. Dort muss er sich erstmal beweißen und mit seinem nicht ausreichendem vorhandenem Charsima wird es schwer. Sein look zu "billig". Im Ring dafür Top und Mic eher Durchschnittlich. Ach ja nicht das jetzt jemand glaubt ich bewerte ihn so weil ich "NXT" geschaut habe. 1. habe ich das nicht geschaut und 2. kenne ich ihn von ROH. EDIT: 9 Punkte. 13. 07 EDIT:10 POINTS! Ich bin Mittlerweile der Meinung das er genug Charisma hat und auch Mic durchaus brauchbar."
Rating: 10.0
Sentiment: 0.4305555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sir Vida Loca IIIwrote on 10.07.2013:[9.0] "Im Ring gehört Daniel Bryan mit zu dem besten dass die WWE aktuell zu bieten hat. Er errinert (zumindest mich) auch stark an Chris Benoit, und dass liegt nicht nur am Finisher. Im Ring macht Bryan niemand etwas vor, und auch am Mic hat er sich seit er in der McMahon Company ist sehr gesteigert. Luft nach oben hat er was Promos betrifft, deshalb 9 Punkte. Wenn er sich dort noch verbessert sind ihm die 10 Punkte sicher"
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Weskerwrote on 09.07.2013:[10.0] "YES! YES! YES (mehr muss man zu Daniel Bryan nicht sagen)!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kyoyowrote on 02.07.2013:[10.0] "Perfekter Wrestler, perfektes Mic-Work. Einfach einer der besten seiner Zeit und wenn er so weitermacht vielleicht einer der besten jemals"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Swarley Stinsonwrote on 28.06.2013:[10.0] "Daniel Bryan ist einfach ein Pitbull. Er ist ein super Wrestler, nur CM Punk ist "besser". Super Techniker und er holt das beste aus jedem Gegner raus. Auch sein aktuelles Gimmick passt sehr gut zu ihm, weak link ;). Er muss früher oder später der WWE Champ sein und das mehrfach."
Rating: 10.0
Sentiment: 0.13541666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DaNiwrote on 25.06.2013:[10.0] "Mit CM Punk ist er der momentane Top Superstar der WWE. Er ist körperlich auf dem Dampfer, sieht natürlich aus und kann seinen Fightstil realistisch und klug einsetzen. Seine Matches sind mesit auf einem sehr hohen Niveau. Ich hoffe er kann seinen bevorstehenden Pusch nutzen um an die Spitze der WWE Nahrungskette zu kommen."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: joshimaniawrote on 23.06.2013:[10.0] "Dainel Bryan is the best wrestler in the world today combining great in-ring work and charisma."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: GabberGizmowrote on 23.06.2013:[8.0] "Daniel Bryan steigert sich immer besser in Matches und Storys ! Klasse als Einzelfighter oder im Team ! Team Hell No zum Beispiel !"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: gerybundy68wrote on 09.06.2013:[10.0] "Hat in den letzten Jahren, nach seiner Zeit im Indy-Wrestlingbereich einen absolute Traumkarriere hingelegt.  Um es kurz auf den Punkt zu bringen: für mich im Moment DAS Highlight im WWE Kader und ein der Grund die TV Shows eizuschalten. Klasse am Mic. , technisch herausragend und mit Charisma ausgestattet - die Nr. 1 bei WWE, trotz Cena, Orton usw."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AdRwrote on 06.06.2013:[9.0] "Daniel Bryan ist einer der besten Wrestler den die WWE im Moment hat. Er ist im Ring gut und hat vor allem viel Charisma und ist auch sonnst gut am Mic. Daher scheue ich mich nicht, ihm 9 Punkte zu geben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Lecterwrote on 05.06.2013:[10.0] "I'd go as far as to say that Dragon is, if not -the- best, then as good as any in-ring worker of any era in wrestling. His body of work in ROH is astounding, constantly churning out flawless performances, and his transition into WWE's US champion saw him consistently putting on the best matches in the company. That he's managed to catch fire the way he has because of his personality and promos is incredible, and combined with the fact that he still steals the show whenever given more than just a few minutes in the ring, it's safe to say that he's the American standout of the new millennium."
Rating: 10.0
Sentiment: 0.42759740259740264
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Robert Taylorwrote on 28.05.2013:[10.0] "Einer der Hauptgründe warum ich Indy-Wrestling jahrelang total abgefeiert habe, da er unzählige richtig starke Matches, teils sogar Klassiker in den Ring gezaubert hat. Hat praktisch nie ein schlechtes Match und kann selbst die größten Nulpen durch ein Match ziehen. Nachdem er in den Indys so viele starke Matches hatte, konnte er sich aber auch relativ schnell in der WWE etablieren und zieht heutzutage oftmals mit die lautesten Pops. Zudem regelmäßiger Lichtblick der (immer mal wieder durchwachsenen) Shows. Danielson kann viele Stile zeigen und ist dabei auch noch verdammt gut. Wieder in den Main Event mit ihm, der Mann ist Gold wert!"
Rating: 10.0
Sentiment: 0.10416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: believeintheshieldwrote on 02.05.2013:[7.0] "Ein guter Wrestler im Ring, allerdings Spielt er eine eher Langweilige Rolle und diese nicht einmal überzeugend, daher 7 Punkte"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: S04TIMwrote on 27.03.2013:[10.0] "Kenne ihn leider nur beschränkt aus seiner Independent-Zeit, also kann ich ihn nur aus der WWE-Zeit bewerten. Aber ich denke das kommt aufs selbe hinaus, denn Daniel Bryan ist einfach genial. Er hat sich super entwickelt, sein Micwork hat sich enorm verbessert. Über seine In-Ring Fähigkeiten brauchen wir gar nicht erst zu reden, denn er gehört zu den wrestlerisch Besten in der WWE zur Zeit! Also vollkommen verdiente 10 Punkte!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: dudemanbearpigwrote on 16.03.2013:[10.0] "An amazing athlete and performer. Always enjoyable to watch."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WhiteHummerDriverwrote on 03.03.2013:[10.0] "Der technisch beste Wrestler des Planeten im Moment. Das ist schon fast eine wissenschaftlich nachgewiesene Tatsache ^^ Seit 2005 hat er den Award für Best Technical Wrestler vom Observer in einem eisernen Klammergriff. Damit hat er in den Augen der Observer Redaktion Benoit sogar schon zu Lebzeiten überholt und wie ich meine zu Recht. Nicht nur ist Bryan der beste Techniker der heutigen Zeit, er bringt auch ein oft verkanntes Charisma in den Ring, das für mich weit über die kühle Konzentration eines Bret Hart, oder die Verbissenheit eines Chris Benoit hinausgeht. Schon in seiner Rolle als Heel-Champ in ROH glänzte er nicht nur durch die wohl qualitativ hochwertigste Titelregentschaft der letzten 10 Jahre (zumindest in den USA), sondern bewies, dass er auch als Charakter unterhaltsam sein kann, sei es durch Promos, oder durch Aktionen während des Matches (Publikumsinteraktion, Mimik und Ähnliches). Daran schloss er dann sogar bei WWE durch sein Veganer- und YES- bzw. NO-Gimmick an. Bryan ist seit 2006 einer meiner absoluten Lieblingswrestler und ich hoffe, dass er in Zukunft wieder etwas mehr im Singles-Bereich benutzt wird, und öfter mal Programme gegen Leute bekommt, gegen die er sein volles Potential ausspielen kann, statt gegen Riesen wie Kane oder Big Show."
Rating: 10.0
Sentiment: 0.24
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AwesomeMizwrote on 23.02.2013:[8.0] "Riesiges Talent! Und bis auf seinen Bart stört mich an ihm sonst nichts! Einer der besten der WWE"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Leonewrote on 19.02.2013:[10.0] "From the home of Grunge comes Daniel Bryan, 1 of the best and most versatile technical wrestlers in the world.  A man who has traveled the world, filled the shoes of the greats with ease, and still have the ability to add his own twist to it.  Sure, he's small by WWE's expectations, but his skill, charisma and cult following have made him the star he is today, and I hope to see much more of him in years to come."
Rating: 10.0
Sentiment: 0.3611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Irri Busenbenderwrote on 14.02.2013:[10.0] "Awesome in allem was er tut. Im Ring und am Mic das beste was er zur Zeit in der WWE gibt.  10 Punkte"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Diggertakerwrote on 13.02.2013:[8.0] "Indie legend, NXT punching bag and Smackdown great superstar. Had good feuds and gimmicks in the indies and averages personas and rivalries in WWE. Bryan is one of the most talented technicians in pro wrestling history. He has a unique talent."
Rating: 8.0
Sentiment: 0.5125000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Diesem Mann gehört die Zukunft in der WWE (wohl mit Dolph Ziggler). Er hat alles was man braucht: Charisma, exzellente In-Ring Fähigkeiten und kann fantastische Promos abhalten. Er blüht momentan bei Team Hell No vollkommen auf und die Fans liegen ihm zurecht zu Füßen. Es ist nur noch eine Frage der Zeit bis er an der Spitze steht. Absolutes Ausnahmetalent"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: cmkanewrote on 01.01.2013:[10.0] "Einer der besten Wreslter der heutigen Zeit.  Im Ring sorgt er immer für gute Matches und auch am Mic sehr unterhaltsam."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: steviecwwrote on 01.01.2013:[10.0] "FLAWLESS! Former and future World Champion, proving to be solid gold in any role the WWE might put him in. He's surely missed in ROH... but he's a real asset to WWE now."
Rating: 10.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Darkiwrote on 19.12.2012:[10.0] "Zurzeit wohl der beste Wrestler auf der Welt. Bin ja eigentlich ein Fan der Big Guys, aber Daniel Bryan hat es mir einfach angetan. Er kann Wrestlen, er hat Ausstrahlung und kann mit jedem Wrestler zusammenarbeiten. Einfach The Best Wrestler in the World!"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Luke1984wrote on 15.12.2012:[10.0] "Eine Indy-Legende durch und durch. Die WWE endeckte auch den Comedy-Charakter in ihm. Sollte man nicht allzu übertreiben da er neben Dolph Ziggler derzeit der beste Worker der WWE ist (und auch bleiben wird)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mar-Twrote on 06.12.2012:[10.0] "Hab ich etwas gesagt CM Punk sei das Beste das die WWE zu bieten hat? Vielleicht muss ich das nochmal überdenken denn Daniel Bryan unterhält mich mindestens genau so gut, wenn nicht sogar besser. Will ich ihn wieder als Singles Wrestler im Main Event sehen? "Yes! Yes! Yes! ""
Rating: 10.0
Sentiment: 0.32552083333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Final Countdownwrote on 28.11.2012:[10.0] "Whether he's called Bryan Danielson or Daniel Bryan, "American Dragon" or "Goat Face", one thing remains the same: he's one of the greatest in-ring performers of all time.  His charisma and interview skills have also come along quite well over the course of his career, making him one of the best all-around talents in the world today."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: apc24wrote on 25.11.2012:[10.0] "This so called "goat" is arguably the best wrestler in the world. His technical ability is second to none and whether he's wrestling for WWE, ROH, Japan or in Europe, he's the best."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: downtown2wrote on 18.11.2012:[10.0] "Wenn man sich ansieht, wie die WWE einen Chris Jericho oder Chris Benoit aufgebaut und zu echten Megastars gemacht hat, braucht man sich bei der Größe Bryan Danielsons eigentlich keine Sorgen zu machen. Das ist dann aber auch schon das einzige Manko dieses Mannes, der für mich in allen Belangen der stärkste Indy Wrestler überhaupt ist. Tolle Intensität, dadurch wahnsinnig glaubwürdige Promos und Ausstrahlung (Jeder WWE-Only Fan sollte sich hier mal seine Promos aus ROH Zeiten ansehen). Wrestlerisch auf dem höchsten nur möglichen Level, das Maß aller Dinge für Pure Wrestling Fans, vielleicht von Kurt Angle abgesehen. Wenn er gesund bleibt, müsste bei ihm alles drin sein, einer der komplettesten Athleten die ich je gesehen habe. EDIT: hat mittlerweile fast den On Air Charakter des frühen Kurt Angle, der zu seinen perfekten In Ring Skills einen unglaublich unterhaltsamen Comedy-Heel spielte und zwischen albernen Einlagen und verbissener Kampfeinstellung schier mühelos hin und her pendeln konnte. Großartige Entwicklung!"
Rating: 10.0
Sentiment: 0.23214285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MrSmackdownwrote on 21.10.2012:[10.0] "Aus der WWE nicht mehr weg zu denken. Endlich ist er da wo er hingehört."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: alewrote on 21.09.2012:[10.0] "Indylegende :) Aber erst seit WM28 auch endgültig in der WWE angekommen, he is the new undertaker everytime he gets buried he comes back more over. Einfach unglaublich was der in letzter Zeit erreicht hat, eigentlich der einzige Grund um sich noch SmackDown oder Raw anzutun (mit Kane natürlich). Mich unterhält er einfach am besten seit The Rock oder Kurt Angle. Hoffentlich auch mal wieder im Main Event Picture zu sehen, im Ring ist er momentan sowieso der beste in der WWE."
Rating: 10.0
Sentiment: 0.1787101787101787
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Lampard4000wrote on 14.09.2012:[10.0] "Was soll man groß sagen? Im Ring meiner Meinung nach mit Abstand der beste Wrestler (zumindest bei der WWE, mit Indy- und anderem Wrestling beschäftige ich mich nicht) und auch am Mic gehört er zu den Top-Leuten. Er zieht Reaktionen wie kaum ein anderer. Momentan der unterhaltsamste Worker der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LM Punkwrote on 30.08.2012:[7.0] "Er ist gut im Ring und am Mikro, aber noch nicht lange genug an der Spitzte um eine gleiche bewertung wie HBK oder der Untertaker zu erhalten."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Undertaker555wrote on 26.08.2012:[10.0] "Yes! Yes! Yes! Hat der Kerl ein Potenzial und was macht die WWE? Lassen ihn den Titel bei WrestleMania in 18 Sekunden(! ) verlieren. Ich meine Daniel Bryan ist sowas von Over, die "Yes" und "No" Chants ziehen so viele Reaktionen wie bei niemand anderem in der WWE momentan. Er zeigt geile Matches , ist momentan ganz klar der beste am Mic und ein klasse Athlet. Gebt dem Kerl endlich die WWE Championship und gut! Macht's einfach WWE oder ihr verliert eines eurer Stallpferde!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Ibanezwrote on 13.08.2012:[10.0] "Einfach der Top-Wrestler zur Zeit in der WWE und daher die volle Punktzahl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Hazzanfallwrote on 12.08.2012:[10.0] "YES! YES! YES! Großartig der Mann, sowas hat die WWE wirklich gebraucht. Tolle Matches, tolle Fehden, Hammer Ausstrahlung. Hätte am Anfang echt nicht gedacht, dass er so groß wird aber es ist geschehen. Bester Mann neben Punk und daher nur Höchstwertung verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Vanniwrote on 12.08.2012:[10.0] "Vom Wrestlerischen her hätte er natürlich die Höchstpunktzahl verdient. Die bekommt bei mir aber nur jemand, der dann auch noch das gewisse Mic-Work besitzt. Daher gibt es für Bryan nur 9 Punkte, auch wenn er mich natürlich noch überzeugen kann und so ganz schnell auch die 10 bekommen kann. Edit: Das ist passiert, daher gibt es auch die 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Nouriwrote on 29.07.2012:[9.0] "Daniel Bryan verfügt über ein Gesamtpaket, das ihn berechtigterweise an die Spitze der Promotion gepusht hat: Im Ring überragend, grandiose Promos und ein gutes Charisma machen ihn zu einem der besten Superstars derzeit bei WWE. Für die volle Punktzahl fehlen ihm allerdings (noch) ein, zwei weitere Titel."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheIronSheikwrote on 16.07.2012:[10.0] "Absolute Elite In-Ring, am Mic ist er sehr überzeugend und charismatisch finde ich den guten auch. Vor allem in Seiner momentanen Rolle gefällt er mir sehr gut. Über einen weiteren Titel Run seinerseits würde ich mich freuen.  -10 Punkte"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Fischy667wrote on 16.07.2012:[10.0] "Einer besten und komplettesten Wrestler im Mainstream."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Bloodywrote on 11.07.2012:[1.0] "Ich kann den Hype nicht verstehen, in seiner Indy Zeit gefiel er mir noch aber seit der bei der WWE gelandet ist kann ich ihm einfach gar nichts mehr abgewinnen. Er ist wohl eher eine Persönlichkeit für die Jüngere Generation von Wrestling Fans aber für mich hat er einfach nichts zu bieten."
Rating: 1.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Y2J3richowrote on 10.07.2012:[4.0] "Relativ gute In Ring skills hat der Kerl, jedoch haut mich Bryan einfach nicht vom Hocker. Ich persönlich finde Bryan war der wohl unrealistischste World Heavyweight Champion seit Rey Mysterio. Sein Körper ist das letzte was irgendwie ernst zunehmend ist an dem Kerl, ich könnte mir einen Titelsieg von ihm gar nicht anders vorstellen als mit dem Money in the Bank Koffer, ich finde seine Matches meist langweilig, und den Hype um den Jungen verstehe ich sowieso nicht, selbst das Yes Yes Yes ist unerträglich geworden, am Anfang war es ja noch amüsant, aber nach einer Zeit lang hatte ich einfach genug davon, sollen die ihm doch so ein Steve Austin Shirt machen "Arrive - YES YES YES - Leave. Sein Mic Work gefällt mir zusätzlich auch nicht, es kommt einfach nicht so gut rüber. Jedoch lieber Bryan als Randy Borton und Super Cena. Der gute Daniel ist in meinen Augen total uninteressant im Ring sowie auch von seinen Promos her, ein klassischer Fall zum Abschalten. Best in the World? ja klar, aber nicht in diesem Leben."
Rating: 4.0
Sentiment: 0.4444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mizisawesomewrote on 09.07.2012:[10.0] "Kurz und knapp: Der beste Wrestler weltweit. Völlig unumstritten. So wie's aussieht, gibt es nichts, was er nicht kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: novacanewrote on 05.07.2012:[9.0] ""Nur" eine 2 für den American Dragon. Technisch erste Sahne, tolles Charisma. Kann jeden Stil mitgehen. Was mir nicht sonderlich gefällt ist sein Selling. Für eine 1 aber noch zu wenig geleistet und, wie ich denke, overrated. Wenn er sich weiter so entwickelt, ein kommender Superstar, sozusagen die Evolution von Benoit & Co. Dann steht auch die 1! - EDIT: So, nun ein Punkt Aufwertung aufgrund seiner tollen Entwicklung. Zehn Punkte haben bei mir Jericho, Bret Hart, Shawn Michaels und Konsorten - auf der Stufe ist er aber noch lange nicht. Aber was nicht ist, kann ja noch werden."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Franziwrote on 03.07.2012:[10.0] "Im Ring einfach grandios. Da macht Wrestling richtig Spaß. Seinen Heel-Gimmick verkörpert er auch perfekt. Hoffentlich macht die WWE ein solches Talent nicht kaputt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LeBelle1wrote on 21.06.2012:[10.0] "Der beste Wrestler, den ich- seit ich Wrestling verfolge -gesehen habe. Dazu auch am Mic wirklich sehr stark. Klasse!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ARIZAwrote on 15.06.2012:[10.0] "Absolut großartiger Techniker, der auch durchaus seine Qualitäten am Mikro hat. Als Heel großartig, ich habe es bei der wXw geliebt ihn zu hassen. Ich muss zugeben, dass ich es nicht erwartet habe, dass er sich bei der WWE so durchsetzen kann, auch wenn ich es ihm natürlich absolut gönne."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 7TheEwrote on 10.06.2012:[10.0] "Ist warscheinlich der beste Wrestler In Ring den ich je gesehen habe und ich hab vieles gesehen, er steht über dem Entertaiment Quatsch, der Mann hat mit Verletzungen gewrestelt, hat sich Schlachten die 60 Minuten und länger gingen geliefert und ist eine absolute Indy-Legende.  Er mag nicht der beste am Mike sein trotzdem kann er da auch mithalten und ist nicht so ein einheitsbrei.  War vielleicht der effektiveste Heel den ROH hervorgebracht hat und auch Rolle gehalten hat, ist trotz Heel Status zu einem der beliebtesten In Ring Akteuren der Liga aufgestiegen.  Nach Sichtung einger WWE und RoH Matches kann ich die 10 nur unterstreichen (würde noch mehr geben)"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Imperatorwrote on 04.06.2012:[10.0] "Sehr guter Mann, der mir durch seine große Entwicklung gefällt. Er hat einen guten Weg gefunden, das Publikum mitzureißen. In seiner aktuellen Rolle liegen wohl noch viele großartige Matches vor uns."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 123 kidwrote on 27.05.2012:[9.0] "Ich kenne ihn erst seit seiner Zeit bei der WWE und grade in der letzten Zeit hat er sich zu einem meiner absoluten Lieblinge entwickelt. Startet natürlich mit vielen Vorschusslorberen in die WWE, denen er voll und ganz gerecht geworden ist. Ich hoffe er wird nicht bald fallengelassen und kann noch lange in den oberen Regionen der WWE mitmischen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jericho is excellencewrote on 22.05.2012:[10.0] "Dass Daniel Bryan im Ring der womöglich beste zeitgenössische amerikanische Wrestler ist, das wussten die Meisten schon vor seiner WWE-Ankunft. Was nicht so deutlich abzusehen war, war das er es auch im Mainstream-Wrestling bis ganz nach oben schaffen würde. Doch seit seinem WWE-Debüt hat Bryan nicht nur zahlreiche starke Matches gezeigt, sondern auch die lautstarken "No-Charisma"-Stimmen seiner Kritiker sehr schnell verstummen lassen. Am Mikrophon konnte er als Face bereits überzeugen, und tut es jetzt als Heel noch viel mehr. Stand heute ist Bryan einer der Hauptgründe WWE zu schauen, und so bleibt mir nur zu sagen: Daniel Bryan hat sich im Mainstream-Wrestling durchgesetzt - zum Glück!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MicCheckwrote on 21.05.2012:[10.0] "Zeit für eine Aufwertung. Der Mann ist derzeit einer der besten Heels der Liga, was er regelmäßig mit tollen Promos und Matches unterstreicht. Mit Sheamus hat er bei ER endlich das lange ausgebliebene Top-Match in der WWE gezeigt, was man von einem so großartigen IN-Ring-Worker wie ihm erwartet. Wenn ich an das anstehende PPV-Match mit Punk denke,  freue ich mir einen Ast ab. D-Bry hat es sogar geschafft seine ROH-Zeit zu übertrumpfen. Wenn man sich sein WWE-Debut anschaut, bei dem er zwar talentiert aber farblos rüberkam und sich ihn jetzt anschaut, stellt man fest, dass er es geschafft hat, sich selbst auf hohem Niveau Mic und Charisma-technisch zu verbessern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Matt Mackswrote on 21.05.2012:[10.0] "Bryan ist zusammen mit CM Punk der für mich mit Abstand interessanteste und beste Wrestler der aktuellen WWE-Generation. Er könnte gegen einen Besen in den Ring steigen und es würde mich noch unterhalten, so gut ist dieser Mann, der zehn Jahre lang in Japan und den Independents (allen voran Ring Of Honor) seine Fähigkeiten entwickelt und geschliffen hatte. Es ist unglaublich befriedigend, ihn auf der größten Wrestlingbühne so erfolgreich zu sehen, so populär, so fantastisch gut. Und doch ist es wie ein Traum, denn niemand, absolut niemand hätte das vor ein paar Jahren ernsthaft gedacht. Bitte, WWE, lass mich eine lange Zeit nicht aufwachen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Franjisewrote on 19.05.2012:[10.0] "Derzeit das abolut Beste, was die WWE zu bieten hat. Sein In-Ring-Fähigkeiten sind über jeden Zweifel erhaben, da wird es auch keine zwei Meinungen geben. Und auch am Mikrofon ist Daniel Bryan unglaublich unterhaltsam, hat er gerade auf der Road to WrestleMania 28 doch viele SmackDown-Ausgaben durch seine Promos alleine getragen. Und im Gegensatz zu vielen anderen bin ich auch der Meinung, dass diese Fähigkeiten von Anfang an vorhanden waren, selbst als er noch Face war. Sein charismatisches Auftreten rundet die ganze Sache dann natürlich ab. Ganz klar, Höchstnote und 10 Punkte für Daniel Bryan!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SWObiwrote on 19.05.2012:[10.0] "Great performer in the ring, and has great mind for the business"
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Hot Rod 86wrote on 03.05.2012:[10.0] "Mann der 100 Submissions, überzeugt mich am Ring und am Mic. Hat mittlerweile auch eine überzeugende charakterliche Entwicklung mitgemacht. Der Top-Mann der WWE!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Smido83wrote on 03.05.2012:[10.0] "Im Ring wohl der Beste der Welt, welcher AUS JEDEM Gegner ein klasse Match herausholen kann! Am Mic durchaus gut. Auch dort weiß er was er macht! Und nun mit Bart stimmt auch die Ausstrahlung und er hebt sich damit vom Durchschnitt ab! Trozdem kann ich ihm NOCH nicht die 10 geben. Dafür muss er den Koffer erfolgreich einlösen und den Titel in einem überdurschschnittlich guten PPV Match einlösen! DANN hat er es geschafft, DANN ist er da wo er hingehört, DANN ist er eine 10! Rein von Können her und den Matches die er weltweit schon geboten hat ist er ne 15, aber um nicht nur bei den S-Marks, sondern auch bei den "Normalen Fans" anerkannt zu werden MUSS er auch in der WWE eine größere Rolle spielen, dann ist er rundum sehr gut und die 10 wert! EDIT: Nun endlich gab ihm die WWE die Zeit in einem 20+ Minuten Match zu zeigen was er wirklich kann. Dazu hat er mit seinem Heel Gimmick auch nochmal einen riesen Sprung in Sachen Mic Work und Charisma gemacht. Nachdem Michaels die WWE verlassen hat und Jericho nur noch sporadisch dabei ist, hoffe ich, dass die WWE Bryan nun als Tweener zwischen ME und Midcard einsetzt, der Talente mit klasse Matches Over bringen kann. Denn genau das wäre die perfekte Rolle für ihn!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Blade Bourdeauxwrote on 22.04.2012:[10.0] "Einer der besten Wrestler derzeit aber ich denke auch, dass er sich auf einer großen Bühne noch durchsetzen und beweisen muss und da ist es egal ob WWE oder TNA. Vom Potential her sollte er es packen, schaun wir mal. Update 2011: Rauf auf 10 Punkte. Der beste Wrestler der WWE, evtl. sogar noch mehr. Ich sehe ihn auch Karrieretechnisch auf Mysterios Spuren. Das bedeutet, dass ein großer Titel mal drin ist und er sich wohl auch oft mal einen Tag Team Titel holen wird können. Leider setzten ihm Statur und Look eine WWE-natürliche Grenze die er, meiner Meinung nach, nicht wird überspringen können. Update 2012: Tja die Grenze die ich meinte hat er zwar nicht übersprungen aber er hat sie wirklich gut umgangen. Der "neue" Bryan versteht es sein Profil zu schärfen und durch seine Art vergessen zu machen, dass er nicht der große Brocken ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Tobinhowrote on 18.04.2012:[10.0] "Von 9 > 10.  YES YES YES!  Zu geil wie over er teilweise gerade ist als Heel. Die Skills waren sowieso schon super und jetzt hat man es auch endlich geschafft ihn over zu bringen. Mic Work ist auch gut, alles in allem jetzt eine 10."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Prodirwrote on 15.04.2012:[10.0] "The Real Best in the World. Das einzige, was man kritisieren könnte, wären seine Anhängerschaft in der WWE: recht minimal und ohne irgendwelche Kenntnisse. Er hat das perfekte Moveset, wobei man mit Finishing Moves bzw. High Impacts von ihm nicht sparsam umgehen sollte und ihm ein oder zwei mehr geben müsste, er hat die ultimativen Mic-Skills um Pops zu ziehen und sein Gimmick ist einfach perfekt auf ihn zugeschnitten. Wer ihm weniger als 10 gibt, findet sich bald in meinem eigens erfundenen Crossed Leg Lock STF wieder. ;D"
Rating: 10.0
Sentiment: 0.3275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BigBob91311wrote on 13.04.2012:[8.0] "I think that Daniel Bryan is one of the best workers I have ever seen, and I have seen a lot of them having been a wrestling fan for almost 50 years. However his promos and mic work leave a lot to be desired. In many respects he reminds me of wrestlers like Jack Brisco, Verne Gagne, and the Bob Backlund who was a babyface WWWF champion for almost 6 years. Great knowledgeable technical wrestlers, excellent shooters, but boringly ineffective personnas for drawing fans."
Rating: 8.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rated R Userwrote on 02.04.2012:[10.0] "Der beste Pure Wrestler der Welt, der sich in den letzten Monaten auch noch zusätzlich mit seiner Heel Performance zu meinem absoluten Fav. nach Edges Rücktritt entwickelt hat. Das hat sich auch nach dieser Demütigung gegen Squashmus (Danke Vince, erst Christian, nun Danielson... ) nicht geändert, jetzt erst recht! YES! YES! YES! YES! YES!"
Rating: 10.0
Sentiment: 0.10714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TeeHaawrote on 26.03.2012:[10.0] "10/10. Matchqualität und promoqualität stimmen - ein gelungener WHC-Run obendrauf... Ich denke diesem Worker gehören die nächsten 10 Jahre."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 1234wrote on 25.02.2012:[10.0] "Für mich die Überraschung derzeit. Seit seinem Heelturn verkauft er sich großartig, im Ring ist er ohnehin über jeden Zweifel erhaben. Mein SmackDown! Highlight 2012."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MeisterSodowrote on 20.02.2012:[10.0] "I've seen a lot of Bryan's matches & promos in ROH. He's perfect, a giant performer that makes you dreaming. I love it, he's my favourite wrestler of all times!"
Rating: 10.0
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cpt Dave Charismawrote on 08.02.2012:[8.0] "Neben den unbestrittenen In-Ring-Skills zeigt er nun endlich auch einmal Charisma! Gefällt mir sehr gut als Heel und auf den Weg mein Lieblings-Heel zu werden!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Fabi89wrote on 06.02.2012:[10.0] "Unglaublich begabter Mann, dem im gesamten Pro-Wrestling Bereich kaum jemand das Wasser reichen kann. Im Ring extrem stark, am Mic fähig und trotz oder gerade wegen seines eher unscheinbaren Äußeren eine wahre Ausnahmeerscheinung im Wrestlinggeschäft. Hat es entgegen meiner Erwartungen tätsichlich an die Spitze der WWE geschafft, was mich unheimlich freut. Schön, dass er inzwischen auch deutlich öfter zeigen darf, wie unglaublich ausgeprägt seine Fähigkeiten sind. Überragender Wrestler."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Boggenauerwrote on 01.02.2012:[6.0] "Man kann nichts sagen Bryan ist wirklich gut im Ring, jedoch finde ich er wird in der WWE falsch aufgebaut, mir gefallen alle gut gespielten Heel Rollen sowie auch die Faces, aber bei Bryan, er gefällt mir einfach nicht von Anfang an in NXT als er diese "Kurzfehde" mit Cole hatte da hat er mir gut gefallen, so als Aggressiveres Leichtgewicht ein "Milchbubi" der auch anders kann. Mittlerweile gefällt er mir einfach gar nicht mehr, ok nach dem World Titel Gewinn dachte ich mir, "ok schauen wir mal wie er sich entwickelt" aber das Gimmick finde ich relativ schlecht der Kerl der alles versucht sein Welt Titel zu behalten, selbst wenn er das ganze Roster gegen sich aufhetzen muss, ist schon ziemlich lahm meiner Meinung nach. Das ganze YES YES YES gedudele geht mir auch mächtig aufn Keks, abgesehen davon ist er ein guter Wrestler "Best in the World" wäre jedoch zu weit hergeholt, sein Mic Work ist in Ordnung aber nicht wirklich soo gut. Von mir deshalb 6 Punkte."
Rating: 6.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheEmpirewrote on 29.01.2012:[10.0] "Neben Punk und Jericho der derzeit beste Wrestler in der WWE. Bryan Fähigkeiten erstaunen mich jedesmal aufs Neue. Es geht nicht nur um seine Atlethischen Fähigkeiten beim Austeilen, sondern auch beim Einstecken. Der Wandel in Richtung Heel hat ihm auch richtig gut getan. Damit ist er für mich auf dem Weg zum eindrucksvollsten Heel-Champion des Jahres 2012 (2011 war dies Henry). Man wird zwar nach dem RR 12 neue Gegner benötigen, aber ich bin zuversichtlich, dass dies gelingt. Ob Orton oder Rhodes: Bryan braucht einen Gegner der technisch mit ihm mithalten kann oder entsprechend over bei den Fans ist. Auch dass man ihm den Titel gegeben hat zeugt von Vertrauen in den Charakter D. B. Weiter so!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Senajwrote on 28.01.2012:[8.0] "Sein In - Ring Fähigkeiten sind sehr gut. An seinem Mic Work muss er noch arbeiten. Als World Champion der WWE taugt er aber meiner Meinung nach nicht viel. Vielleicht liegt es auch daran das ein Mann seiner Statur gegen Leute wie Big Show oder Mark Henry eine ordentlichen Matches auf die Beine stellen kann. Er braucht Gegner aus seiner Gewichtsklasse, sonst wird das nichts."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Yukkowrote on 24.01.2012:[9.0] "Wenn ich das schon lese: "Ein WHC brauch schon ne gewisse Statur um ihn glaubwürdig zu machen" Rey Mysterio war WHC. Ihr wollt mir doch wohl nich erklären das DER dazu geeignet war.  Ich halte persönlich sehr viel von Bryan, da er sehr gute Leistung im Ring bringt. Seine Promos sind jetzt nicht der absolute Hammer aber das liegt auch daran, dass in der momentanen Stoy nich viel Spielraum bleibt für eine gute Promo."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Johnny-Tennerwrote on 23.01.2012:[10.0] "Ich mag Danielson, was er im Ring verbringen kann weiß jeder. Und auch seinen Charakter den er darstellt ist für mich ein absoltutes Highlight, jedes Mal wenn er vor den Bildschirm tritt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mustafawrote on 09.01.2012:[5.0] "Da stimme ich Sascha311 zu! Warum?  Weil er nicht diese gewisse Austrahlung hat und seine Promos sind auch nicht das Gelbe vom Ei.  Seitdem er Champion ist gucke ich kein Smackdown mehr. Warum?  Denn ihm fehlt die Statur zu einem Schwergewichtler, weil ein Wrestler oder generell ein Sportler muss schon einer gewissen Gewichtsklasse angehören oder mindestens so viel kg wiegen um überhaupt Anspruch auf den Titel zu haben sonst würde vielleicht jeder Boxer die Klitschkos herausforden.  Und zu guter Letzt weiß ich auch nicht wie man Daniel Bryan als Champion verkaufen sollte.  Er kann nicht jedes mal z. B. durch Roll Ups oder DQ's gewinnen. Da müssen die WWE Angestellten jeden Tag "grübeln" und Fragen stellen wie man den Jungen richtig einsetzen solle.  Z. B: Gegen Big Show wirds vielleicht SCHWER den Jungen richtig gut zu verkaufen.  Also meiner Meinung nach muss er den Titel abgeben.  Was seine Wrestlerische Fähigkeiten angeht. Nun ja, ...... die sind Gut"
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sascha311wrote on 06.01.2012:[4.0] "Er ist zwar ein guter Wrestler aber überhaupt nicht geeignet für einen Main Event und erst recht nicht für die World Heavyweight Championship"
Rating: 4.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: dragonulteowrote on 06.01.2012:[9.0] "A talented wrestler but Big Show sure will defeat and grab the World HeavyWeight Championship"
Rating: 9.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Crushingwrote on 04.01.2012:[8.0] "Toller In-Ring Peformer, und auch nicht so schlecht am Mic. Bin gespannt wie sein Title Run wird. Um Booker T Zu zitieren: "That's my boy right there, D Bryan"!"
Rating: 8.0
Sentiment: 0.3571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: EnemyOfJusticewrote on 01.01.2012:[10.0] "Ich weiß nicht, ich kenne ihn nur von der WWE, also bitte nicht mich verteufeln, aber für den besten Wrestler der Welt halte ich schon mal nicht. Der Beste ist einfach CM Punk, aber auf jeden Fall hat der Danielson viel Talent und auch eine natürliche Ausstrahlung. Seine Leistungen am Mikrofon überzeugen mich und seine Matches gefallen mir. Doch für eine 10 reichts für mich nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sirius Van Grathwrote on 28.12.2011:[9.0] "Wirklich ein weltklasse Wrestler, aber weil seine Mic-Skills zu wünschen übrig lassen nur 9 Punkte..."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Nguyen2103wrote on 26.12.2011:[9.0] "Er ist nicht der Größte, nicht der Stärkste aber verdammt nochmal er ist einer der besten Technicker der Welt. Und er ist World Heavyweight Champion ! Mir kann es scheis egal sein, was andere Leute über Ihn sagen, er hätte kein Charisma und Dies und Jenes. Das sind Leute die nicht mit Wrestling aufgewachsen sind und keine Ahnung haben was das Wrestling ausmacht. Wenn sie Entertaiment gucken wollen, sollen sie ins Kino gehen oder TV-Serien gucken, da kriegen sie ihre Unterhaltung.  Bryan`The American Dragon`Danielson is the man from Smackdown.  Leute die immer Schlecht über andere reden sind immer neider weil sie nicht imstande sind ihr leben so zu gestalten wie es wollen und deshalb merckern sie einfach nur"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jack Londonwrote on 03.12.2011:[10.0] "Bryan Danielson ist immer noch einer der besten Wrestler der Welt, auch wenn man dies in der WWE naturgemäß nicht so gut wie in den kleineren Ligen zu sehen bekommt. Mir kann auch keiner erzählen, dass Danielson langweilig am Mikrofon wär, denn bei ROH waren seine Promos immer sehr intensiv und wirkte real. Es ist eigentlich kaum möglich, mit Bryan Danielson ein schlechtes Match zu haben, deswegen verdient er sich auch die zehn Punkte!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ShakDragoonwrote on 03.10.2011:[10.0] "Einer der, wenn nicht DER beste Wrestler weltweit... kann viele Stile gehen und zeigt durchweg klasse Matches. Zudem zeigte er durch seine vielen Indie-Auftritte und die Japantouren dass ihm wirklich was am Business liegt. Natürlich konnte er seien Potential in der WWE noch nicht ansatzweise zur Geltung bringen. Wirklich wundern tut mich das allerdings auch nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Orton7wrote on 27.08.2011:[5.0] "Absolut overrated der Typ... Am Mic so gut wie gar nichts und ne Ausstrahlung wie en Apfel und der soll mal Worldchampion werden? ! ... Einzig im Ring hat er ein ganz gute Aktionen, welche ihn vor einer noch schlechteren Bewertung helfen..."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Soopawrote on 14.08.2011:[10.0] "Für mich aktuel neben CM Punk, Kurt Angle und AJ Styles der beste Aktive Wrestler.  10Punkte für In-Ring Skills, 9 Für Mic Skills und 10 für die Ausstrahlung.  Macht meiner Rechnung nach 10 Punkte ;D"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Bananaramawrote on 14.08.2011:[9.0] "Im Ring gehört er sicher zu den besten auf der Welt, da können ihm nur wenige das Wasser reichen. Außerhalb des Rings besteht doch noch Potenzial nach oben, sicher wird er kein Mic Gott werden. Denn als Heel ist er einfach besser aufgehoben, aber trotzdem hat er sein ganzes Potenzial noch nicht ausgeschöpft und ich bin gespannt, wie er sich entwickelt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Nerowrote on 09.08.2011:[10.0] "Im Ring und am Mic hervorragend. Die aktuelle Fehde mit The Miz ist toll aufgebaut und ist schön anzusehen - Entertainment pur."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: treeofworldswrote on 01.08.2011:[9.0] "I'm not gonna BURY Bryan Danielson! Richtig gut in jeder Hinsicht. Ich gebe ihm jetzt mal "nur" 9 Punkte weil ich seine bisherige Großartigkeit in der WWE noch ein bisschen vermissen muss. Ich hab aber nicht die Hoffnung aufgegeben, dass da noch großes kommt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Michael Shawn Hickenbottomwrote on 31.07.2011:[8.0] "Wenn er dabei ist, mache ich sofort den Fernseher an! Jedoch nicht immer der beste, aber immer in verhältnissmäßig guter Form."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wuschl 85wrote on 31.07.2011:[8.0] "Ja.... was wird jetzt wohl mit ihm passieren nachdem er den MITB-Koffer gewonnen hat? Ich wünsche mir, dass er den Koffer lange bahalten wird und so langsam aber sicher(? ) an die Topcard herangeführt wird. Ohne jeden Zweifel ein potenzieller Maineventer, aber sieht dass die WWE auch so."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Charismatic Enigmawrote on 29.07.2011:[9.0] "Auch wenn er in der WWE nicht das zeigen darf, wozu er technisch im Stande wäre bringt Danielson einfach eine gewaltige Portion frischen Wind mit. Seine Matches sind - wenn auch im Rahmen des in der WWE erlaubten - immer ein Garant für innovative Moves und Spots. Ich hoffe, man belohnt das mit einer guten und erfolgreichen "Mr Money in the Bank" Storyline."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Auditorewrote on 28.07.2011:[10.0] "Es macht riesenspaß ihm bei seinen Matches zuzugucken. So viel Technik in einem Körper. Die einzigst verdiente Wertung: 10"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Benji1706wrote on 28.07.2011:[9.0] "Vom Wrestling ist Bryan mit Sicherheit eine glatte 10!  Bei WWE kommt er mir aber einfach eine Nummer zu langweilig rüber. Es fehlt einfach DIE Fehde für ihn, die seine Zukunft in der großen Liga definiert. So kann z. Zt. sein überragendes Potential nicht komplett ausgespielt werden und ich hoffe, dass er seinen Koffer bis Wrestlemania behalten darf, um sich dann spätestens auf der Road nach Miami zum Main-Eventer zu mausern."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: latinoheat4everwrote on 25.07.2011:[10.0] "Viel viel Potenzial! Im Ring zurzeit einer der besten Worker überhaupt, das wird er bei der WWE noch Beweisen. Am Mic weiß das, was ich von ihm bisher gesehen habe auch zu gefallen. Für mich vergleichbar mit einem jungen Chris Jericho, allerdings muss man abwarten, ob sein Charisma ausreicht um so viel zu erreichen wie es Y2J getan hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Play2Xwrote on 19.07.2011:[9.0] "Definitiv ein klasse Wrestler, auch wenn ich ihn erst bei NXT das erste Mal gesehen habe... Nach so einem ersten Match kann man nur von ihm überzeugt sein (vs. Chris Jericho)! Der Beste der NXTler und hoffentlich baldiger Champion!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: al2010exwrote on 19.07.2011:[10.0] "10 Punkte dafür das er zu den besten der Welt gehört und wahrscheinlich technisch der Beste ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: oschihubertwrote on 18.07.2011:[10.0] "BEST IN THE WORLD! Ich hoffe inständig das er nicht der erste MitB-Koffer-Gewinner wird der erfolglos eincasht....."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: VanderVaartwrote on 08.07.2011:[10.0] "Wrestlingneulinge sollten nicht gleich damit anfangen, ROH-Matches von Danielson zu schauen. Sieht einschlafend auch, aber die Liebe (Technik) steckt im Detail. Manchmal haut er dann aber auch kranke Spots raus oder kämpft stiff. Verstehe nicht, wieso er nicht zu den Friedenskorps gegangen ist. Lehrer sein möchte er, wenn überhaupt erst nach seiner Karriere sein. Stattdessen unterschreibt er Jahre später bei der WWE und lässt sich dort unter Wert verkaufen. Und das nur, weil er klein und etwas schmächtig ist. Ganz oben wird es kaum kämpfen dürfen, da er sonst manch einen Main-Eventer blamieren könnte."
Rating: 10.0
Sentiment: -0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LyrixFTWwrote on 08.07.2011:[7.0] "Guter Wrestler, mittelmäßig charismatisch, am Mikrofon nur bedingt aufgehoben, dennoch lieber eine Promo als Backstage Segmente, da kommt er total unglaubwürdig. Sozusagen der gespiegelte Morrsion :) Finde er ist von "Indy-Smarks" zu stark overrated, klar er ist technisch sehr rund usw. aber zum Wrestling gehört nunmal Entertainment, ausserdem gefällt mir sein Ringoutfit überhaupt nicht, er sieht extremst seltsam damit aus (Und das hatter auch vor WWE Zeiten ;)) Dennoch großen Respekt vor seiner technisch guten Skills"
Rating: 7.0
Sentiment: 0.1375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: swaggsonwrote on 29.06.2011:[7.0] "Daniel Bryan schafft es immer - besonders gegen Cody Rhodes - sehr gute Matches zu bestreiten. Mir persönlich fehlt bei ihm aber der Wiedererkennungswert wie zum Beispiel bei John Morrison oder so."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Donald Duckwrote on 23.06.2011:[8.0] "Daniel Bryan ist auf jeden fall ein sehr guter Wrestler. Aber mehr als Midcarder ist er nicht für mich. Jedenfalls traue ich ihm im Moment nicht mehr zu.."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Hirnklopswrote on 03.06.2011:[10.0] "Eigentlich wollte ich null Punkte geben, einfach mal aus Spaß, aber ich kann einfach nicht. "Daniel Bryan" ist für mich einfach eine absolut coole Sau, und aktuell der einzige Grund für mich, WWE zu schauen. Ich habe unlängst ein paar Indy-Auftritte aus seiner WWE - Pause 2010 gesehen, und mir ist da wieder aufgefallen, wie unheimlich cool er ist, und wie die WWE sein durchaus vorhandenes Redetalent eigentlich nicht nutzt. Fakt ist aber, das "Daniel Bryan" das vielleicht größte Talent der Welt ist, dem nur der entsprechende Push fehlt, um das zu sein, was früher mal Ric Flair, Kurt Angle oder Chris Benoit waren. Man kann nicht weniger als 10 Punkte geben - Der Mann ist der Größte. Punkt."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Meanbeastwrote on 02.06.2011:[10.0] "Also zu Bryan Danielson kann man nicht viel Negatives sagen. Er gehört wahrlich zu den technisch versiertesten Wrestlern der Welt, sein Verhalten im Ring ist nahezu fehlerfrei, seine Fähigkeit, einem Match eine Geschichte einzuverleiben, ist grandios!  Bryan Danielson gehört aus meiner Sicht zu den ganz Großen dieses Sports und ich denke bzw. hoffe dass seine Fähigkeiten auch in der WWE eines Tages gewürdigt werden (jemand der mich in einem Match schon nach 3 Minuten ausmarken lässt hat aus meiner Sicht nun mal nichts in der Midcard zu suchen)!  Von mir gibt es glatte 10 Punkte, ohne wenn und aber, fact it is!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Miloswrote on 28.04.2011:[10.0] "He's not really getting by with WWE's sports entertainment booking, but for what he'd done in independent federations he's a best one in the history for me. The existing definition of a complete wrestler."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Carnevalewrote on 25.04.2011:[9.0] "Über jeden Zweifel erhaben, von mir aber nur 9 Punkte da er sich mit dem Wechsel zur WWE selbst geschadet hat. Der Look ohne Bart ist deutlich schlechter, der Ring Name einfach beknackt und er darf mit Abstand nicht das zeigen was er kann - sehr, sehr schade. Zudem darf man trotz herausragender In-Ring Fähigkeit mangelndes Charisma leider nicht ganz vergessen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Dennizwrote on 22.04.2011:[9.0] "Bryan ist im Ring fast nicht zu toppen. Echt spitze was er zeigt. Am Mic ist aber noch ein wenig Luft nach oben."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: antihiphop2002wrote on 18.04.2011:[5.0] "Wir schreiben das Jahr 2005, ein Indy Wrestler der zugegeben ein ganz guter Techniker ist trägt immer die gleiche Badehose aus den 60ern. Der Kerl ist privat auch noch ein netter Kerl und so nimmt das Unheil seinen Lauf. Die Internetfans rasten völlig aus wollen ihn am liebsten anstelle von Cena als Dauerchamp bei der WWE sehen. Wir schreiben jetzt das Jahr 2011 und Daniel Bryan ist immer noch ein sehr guter Wrestler. Aber er hat auch noch die gleiche Badehose an und den gleichen langweiligen Gesichtsausdruck wie vor Jahren im Indybereich. Natürlich kann man jetzt sagen die WWE könnte ihn doch besser einsetzten, aber sie hat ihm doch genug Chancen gegeben das das Publikum die selben Reaktionen zeigt wie z. B. bei einem CM Punk. Er hat sich und seinen Farblosen in Ring Charakter in den letzten 6 Jahren keinen cm weiter entwickelt und hat deshalb in einer Liga wie der WWE nichts verloren. Er ist einfach nur eines, langweilig. Ich kann mich nicht erinnern von ihm mal etwas gesehen zu haben was man auch nur annähernd als Promo bezeichnen darf. Wenn er nicht einen radikalen Schnitt mit seinem Outfit und Charakter macht wird er völlig verdient in einem Jahr wieder für WXW vor 100 Leuten kämpfen. Und die werden dann vermutlich immer noch den großen Star in ihm sehen der er aber nicht ist."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: C0nspiracywrote on 15.04.2011:[6.0] "Sorry spitzenwrestler aber total gäähn langweillig. Ich bewerte zu 99% den WWE Danielson da ich bis auf 5 seiner RoH Matches nichts anderes von ihm kenne. Klar mag er für viele eine Indy Legende sein , aber im Mainstream steht er noch ganz am Anfang und muss erst beweißen das er bei WWE eine solch tragende Rolle wie bei RoH spielen kann."
Rating: 6.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Maxiennewrote on 08.04.2011:[10.0] "Ich denke einer der wenigen Worker die vom WWE Publikum wieder geholt wurden.  Im Ring ganz oben. Am Mic auch gut wobei er das bei der WWE noch nich so zeigen kann.  Und Carisma bewerte ich nich so gerne kann das nich :D Aber auf jedenfall ein futur Main Eventer in der WWE. Ich hoffe bald auf eine Fehde Bryan gegen Morrison oder Edge oder Chericho wenn er wieder kommt was da für Matches entstehen würden traum :O"
Rating: 10.0
Sentiment: 0.4055555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: DJ MaSchwrote on 07.04.2011:[10.0] "Alles andere als die Höchstnote für Bryan ist ein schlechter Witz. Der Mann ist für mich ohne Frage der beste der Welt und das schon seit einigen Jahren. Im Ring sowieso derzeit unereicht und wer ihm Charisma abspricht ist aus meiner Sicht einfach nicht mehr zu helfen. Klar kommt er bisher bei seinen WWE Auftritten nicht wie ein Topstar rüber, aber das ist auch teilweise gimmickbdedingt. Jeder, der seine Heel Promos von ROH kennt, weiss das der Mann auch absoloute weltklasse am Mic ist. Leider scheint die WWE, wie die meisten ihrer Fans, dieses Material nicht zu kennen und lässt ihn als grinsenden Nerd in der unteren Midcard vergammeln, dabei hatte er im vergangen Jahr noch einige wirklich gute Matches hingelegt und das obwohl die WWE ihm 3/4 seines Movesets verboten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: exxterwrote on 07.04.2011:[10.0] "Geil Geil Geil^^ Super Moveset, Charisma top und freu mich das er (jetzt schon einige Zeit) auch mal bei WWE länger ist."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Aquifelwrote on 07.04.2011:[10.0] "Wenn ich hier wieder lese, dass er kein Charisma hat... Leute, Charisma heisst keine aufdringliche Persönlichkeit oder ähnliches. Klar, Bryan ist vom Charisma kein Chris Jericho oder The Rock, aber zu sagen, er hätte keins, da fällt mir nix zu sein. Zumal er mehr Reaktionen hervorbringt (auch beim WWE Publikum! ) als über die Hälfte des restlichen Rosters. Also irgendetwas muss da wohl doch sein. Klar, am Mic ist er nicht perfekt, hat einige Schwächen, das macht er mit seiner Arbeit im Ring wieder wett. In der WWE durfte er bisher zwar nur ab und an zeigen, was er drauf hat, aber das ist nunmal eine ganze Menge. Da stört auch die Statur nicht. Ein Rey Mysterio oder Mistico (Sin Cara) haben auch keine beeindruckende Statur, was sie bei ihrem Stil aber auch nicht brauchen. Ein kleiner, wieselflinker Submission-Spezialist mit Strike-Reportoir ist keineswegs unglaubwürdig. Man muss sich nur mal im MMA Bereich umschauen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MICHAELAundMARKUS4EVERwrote on 07.04.2011:[6.0] "Edit: Guter Wrestler, aber null Charisma. Wird nie über seinen Status als Midcarder hinauskommen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HesBackwrote on 04.04.2011:[7.0] "Sehr sehr guter Wrestler aber in meinen Augen nicht das was die Internet Fanboys in ihm sehen, er wird weder das Wrestling (oder Entertainment) umkrempeln noch eine größe im Mainevent der WWE, er bleibt Midcarder mit vllt kurzzeitigen ME Aufenthalten.  Sorry aber seht es ein, die große Masse der Bevölkerung will keinen 0815 Typen der 2 meter Hünen verkloppt."
Rating: 7.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Zamunerwrote on 31.03.2011:[7.0] "Ich bin kein Wrestling-Purist, vielleicht bekommt er deshalb keine 10. Aber in meinen Augen ist er nicht so überragend wie ihn jeder schreibt. Wenn man in der Internetgemeinde gegen Danielson wettert wird man ja schon verfolgt. Klar ist er unglaublich agil und hat tolle Moves. Er ist auch vielseitig und ich verstehe unter Charisma oder Ausstrahlung auch kein bombastisches Ringoutfit. Aber unter gutem Wrestling verstehe ich keine 20-minütigen Submission-Holds. Und Ausstrahlung hat er auch nicht viel. Er ist eben normal. Man könnte mir vielleicht mal erklären warum er so besonders ist. Ich hab auch ein paar ROH-Matches gesehen und glaube allen, dass er sie fasziniert. Aber wenn sich einer 5 Jahre den Arsch aufreißen muss damit er einen Ruf hat und dieser führt dann zu einer gewissen Ausstrahlung, dann ist er nicht besser als ein Edge oder Chris Jericho, die in die Halle kommen und du spürst etwas besonderes. Ich seh ihn ihm nicht den besten der Welt. Er gehört in der WWE sicherlich zu den besseren, aber es gibt bessere. Dazu ist er am Mic auch nicht herausragend. Vielleicht passt er nur nicht so gut zur WWE, aber ich glaube er ist einfach ein guter Wrestler den viele lieben und der einen guten Ruf hat. Ich würde wetten, dass 80% der Leute, die hier Lobeshymnen schreiben noch keine 3 Matches von ihm bei ROH gesehen haben. Er lebt von seinem Ruf und ist ein typischer Midcarder... Und jetzt verfolgt mich :)"
Rating: 7.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Hu-Manwrote on 28.03.2011:[10.0] "Best in the World! Was soll ich sagen? Der Mann ist unglaublich im Ring. Am Mic muss er noch zulegen und das "Daniel Bryan" Gimmick ist übel, dennoch die 10 Punkte, weil der American Dragon im Ring einfach eine Ausnahmeerscheinung ist."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Deathmatchwrote on 18.03.2011:[10.0] "Toller Wrestler. Er darf bei der WWE meiner Meinung nach leider noch nicht 100% zeigen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LowJomoKiwrote on 06.03.2011:[10.0] "Glatte 10 was der mann am Ring kann ist unglaublich von highflying bis brawlen, Bryan Danielson hat alles drauf und ist der absolute Allrounder. Zudem gefällt mir sein Stil des Submission-Wrestlings enorm und auch am Mic kann er zumindest mich überzeugen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Y2John Cenawrote on 05.03.2011:[7.0] "Im Ring überdurchschnittlich gut, jedoch hat mich sein Mic-Work noch gar nicht überzeugt. Außerdem finde ich, das er ein s****ß Gimmick hat. =>7 Pkt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Raven Ravnoswrote on 05.03.2011:[9.0] "Er hat die Fähigkeiten und das Publikum mag ihn, warum er keinen richtigen Push bekommt ist mir schleierhaft. Vielleicht kommt seine Zeit wenn nach WM27 wieder ein paar Plätze im Main Event frei werden."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Matt4Wrestlingwrote on 19.02.2011:[10.0] "Best in the World voll und ganz! Er hat die Härte, er hat die Technik, so dass im Prinzip nur die Größe fehlt! Es wäre nur schön, wenn jetzt noch einige einsehen würden, DAS ES NICHT AUF DIE GRÖßE ANKOMMT (gell WWE;))!"
Rating: 10.0
Sentiment: 0.65625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sloverwrote on 18.02.2011:[10.0] "Daniel Bryan, einen Wrestler den ich bei WWE NXT als einen charismalose Wrestler warnahm. Dies änderte sich, als er beim Summerslam zurückkehrte. Der Junge hat eine super Ausstrahlung, und dazu noch super Moves drauf. Finde ih einfach genial."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ReVanwrote on 12.02.2011:[10.0] "Einfach super was dieser Mann in der wwe abliefert ^^ Er hat Charisma und gute Kämpfe sind bei ihm an der Tagesordnung ^^ Vor allem seine Kämpfe gegen Ziggler sind mir in Erinnerung geblieben. Hoffentlich sieht man noch mehr von ihm, möglicherweise auch als World-Champ?"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Awezomewrote on 07.02.2011:[8.0] "Seine In-Ring Fähigkeiten sind überragend, am Mic aber total langweilig. Für mich kein Main Eventer, braucht evtl. einen ernsteren Charakter, sonst wird er ewig in der Midcard festsitzen."
Rating: 8.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Yannick009wrote on 21.01.2011:[9.0] "Super In-Ring Fähigkeiten und am Mic durchaus zu ertragen. Wird noch einer der ganz Großen werden!"
Rating: 9.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FGwrote on 08.01.2011:[10.0] "Nicht zu Unrecht wird er als der beste Wrestler der Welt bezeichnet. Ich lernte Bryan wie viele erst bei NXT kennen, und war direkt fasziniert vom dem Charisma( auch wenn viele meinen er habe keins) und auch (oder vor allem) von seinen In-Ring Skills in seinem Match gegen Chris Jericho. Ich habe ihn weiter gebannt verfolgt(und bei jeder seiner bei NXT immer wiederkehrenden Niederlagen auch oft genug geflucht).  Als er dann nach seiner Niederlage bei NXT erst gegen The Miz und dann unter Wade Barrett bei Raw auftauchte, war ich natürlich begeistert, doch genauso angenervt war ich dann, als ich von seinem Rauswurf aus der WWE erfuhr... BIS er beim SS wiederkam und direkt mal zwei Nexus Leute zum Tapout brachte. Danach folgte ein (meiner Meinung nach) verdienter Gewinn des US-Title, den Miz sowieso nicht brauchte, sowie ein paar klasse Matches gegen Dolph Ziggler( gerne mehr davon). Ich find zwar den Mist mit den Bellas im Mom extrem nervig, trotzdem hat sich Bryan die 10 Punkte meiner Meinung nach auf jeden Fall verdient."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CM Edgewrote on 06.01.2011:[8.0] "Daniel Bryan ist wohl der beste Wrestler, den es in der WWE im Moment gibt. Doch warum "nur" 8 Punkte? Er schaut einfach langweilig aus. Seine Mic-Skills sind OK, mehr nicht. Falls er das noch schafft kreigt er auch 10 Punkte"
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Schmidi2121wrote on 26.12.2010:[10.0] "Ich weis nicht groß was ich dazu sagen soll außer WOW!  Den als ich die Matches von ihm bei Ring of Honor gesehen haben, beispielsweise gegen McGuiness oder Morishima, war ich echt Sprachlos. Der Junge ist Wrestlerisch wahrscheinlich echt das beste was es im Moment Aktiv ist."
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Oetzi92wrote on 24.12.2010:[10.0] "Für mich der beste Wrestler zurzeit. Technisch perfekt, glaubhaft und einzigartig im Ring, bei seinen Matches kommt nie Langeweile auf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The-Game91wrote on 05.12.2010:[10.0] "Der Vorzeige Wrestler denen sich alle wünschen. Über sein wrestlerisches Talent muss ich nicht reden. Er ist einfach ein verdammt guter Techniker. Er übberascht jedes Mal mit neuen Moves und zaubert so manche Traummatches hin. Charisma besitzt er auch. Persönlich ist er mir sympathisch und das sagt schon aus ob jemand Charisma besitzt oder nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Necronwrote on 03.12.2010:[7.0] "Bryan zu bewerten fällt mir sehr schwer. Technisch ist er über jeden Zweifel erhaben und auch seine Einbindung in die Nexus-Story war in meinen Augen fantastisch. In Sachen Ausstrahlung und Gimmick-Arbeit fehlt mir persönlich da aber ne ganze Menge, um den Ex-American-Dragon als Top-Wrestler anzusehen. Ich traue Bryan aber durchaus zu, diese Schwächen in Zukunft abzubauen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RhinoRaineswrote on 23.11.2010:[9.0] "Das er ein phantastischer Wrestler ist wusste man vorher aber das er sich so gut bei WWE integriert, hätte ich nicht für möglich gehalten. Er ist, als US Champion, das passende Pendant zum arroganten und überheblichen IC Champion Dolph Ziggler. Bei beiden freue ich mich momentan auf jedes ihrer Matches!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: elcattivo83wrote on 13.11.2010:[10.0] "Der beste Wrestler den es zur Zeit gibt in der WWE. Muss sich nur noch am Mic etwas steigern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Woerpwrote on 12.11.2010:[10.0] "Endlich darf er auf der grossen Bühne und damit der ganzen Welt beweisen, dass er der beste Wrestler der Welt ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheRock 7 Champwrote on 06.11.2010:[10.0] "Ich habe seine ROH Matches gesehen und bin beeindruckt. Er ist jetzt United States Champion und ich denke das er es sehr schnell zum Main Eventer wird. Am Mic braucht er noch ein bisschen Übung."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cheffewrote on 01.11.2010:[9.0] "Bryan ist definitiv einer der besten Wrestler dieser Welt. Was er im Ring abliefert ist einfach nur Toll ! Allein sein Match bei Bragging Rights gegen Dolph Ziggler war definitiv eins der besten WWE Matches des Jahres.  Ich hoffe aber das sein Mic-Work sich noch verbessert, denn da hatt er aufjedenfall noch Nachholbedarf"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MajinSitwrote on 31.10.2010:[10.0] ""Best In the World" fasst das ganze recht gut zusammen. Zumindest was seine Ring-Skills angeht. Am Mikrofon ist er auf jeden Fall solide, wirkt einfach glaubhaft und natürlich.  Natürlich ist er kein typischer WWE-Wrestler, aber trotz allem ist dieser Mann der nächste Headliner. Er muss es einfach werden. Und früher oder später wird das auch passieren, sofern die WWE sich nicht komplett von der Realität distanziert hat.  Die Tatsache dass er recht schnell den US-Title gewonnen hat deutet darauf hin, dass man ihn ihm schon wenigstens das Potential sieht, denn der schnelle Sieg eines World Titles ist trotz allem noch nicht gerechtfertigt: Zum absoluten Top-Star sollte man ihn erst über die Midcard wachsen lassen, denn die Methode "Shooting Star" (siehe Brock Lesnar) kann gut in die Hose gehen. Das wäre dann nicht weniger als eine Absolute Verschwendung."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Cenafan 09wrote on 27.10.2010:[10.0] "Einer der besten Wrestler der Welt. Finde seine Matches unterhaltsam und hat gute In-Ring Skills"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: C van Damwrote on 24.10.2010:[10.0] "Selbst wenn man Danielson jetzt in ein rosa Kleid stecken würde und zur Musik von ABBA zum Ring kommen lassen würde... Selbst dann würde er noch 10 Punkte bekommen. Warum? Weil man einfach weiß was Danielson wirklich kann, was er vor seiner WWE-Zeit geleistet hat und wozu er im Ring fähig ist. Mit 29 auch noch sehr jung und wenn WWE es schafft ihn weiterhin gut einzusetzen haben wir hier einen künftigen World-Champion."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: FrickinWWEfanwrote on 21.10.2010:[10.0] "Einfach ein super Kerl, einer meiner Lieblingswrestler. Kann jetzt auch nichts mehr sagen, was meine Vorredner nicht schon 10. 000mal gesagt hätten ;) Hoffe, er bleibt uns noch lange erhalten."
Rating: 10.0
Sentiment: 0.29166666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Homicide187wrote on 08.10.2010:[10.0] "Best Wrestler in the World! Egal ob in den Indys oder jetzt bei WWE Danielson kann einfach überzeugen. Im Ring ist er einer der besten und am Mic ist er auch nicht schlecht bzw. kann er da durch aus unterhalten. Dazu war er letztes Jahr in der wXw einfach Wahnsinn. Ich hatte die ganze Zeit eine Gänsehaut und meine Freundin meinte der sieht ja aus wie ein griechischer Gott."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Muutzwrote on 01.10.2010:[10.0] "Gefällt mir sehr gut als Face, bin aber gespannt was er als Heel draufhat. Hoffentlich bekommt man noch viel von Ihm bei der WWE zu sehen und hoffentlich stimmt das Booking mit ihm. Btw: 7john7cena7, deine Bewertung ist lächerlich. Wenn man das liest denkt man du gibst ihm 1. 0 Punkte weil du sein Outfit nicht magst. :D. Am Mikro überragend, genauso wie im Ring. Naja jedem seine (wenn für mich auch lachhafte) Meinung"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kitanoyamawrote on 30.09.2010:[10.0] "Sein Comeback hat sehr gut eingeschlagen und er zeigte sich seither noch besser den jeh. Er ist auf gutem Wege an alte RoH-Tage anzuknüpfen sofern die WWE ihn nicht fallen lässt oder sonstwie was dazwischen kommt. Eines Tages ist er sicherlich der Main-Eventer den man sich von ihm erhofft. Er ist in meinen persönlichen Kreis meiner Lieblingswrestler aufgerückt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jerseyhoolwrote on 29.09.2010:[8.0] "Danielsons Karriere ist mit Sicherheit noch nicht im Bereich eines Superstars, soviel steht fest! Natürlich ist er ein toller Wrestler, aber im Indy-Bereich laufen da noch ganz andere Kaliber rum. Wer es im Mainstream schaffen will - denn nur dort wird nunmal das grosse Geld verdient -, muss erstmal erneut die harte Schule durchlaufen & die Massen mit Leistung und/oder Charisma fesseln. Und genau das ist in meinen Augen der Schwachunkt von Bryan: so sehr wir - also die Fans - seine Leistungen anerkennen, "nur" ein guter Wrestler zu sein, reicht nunmal nicht bei WWE! Ob es nun an seinem jungendlichen Aussehen liegt, vermag ich nicht zu sagen. Aber ich bin sicher, dass, wenn er noch ein paar Jahre im McMahon-Land wirkt, wir jezt schon auf einen künftigen Superstar blicken. Und dann gibt es auch die volle Punktezahl! ;)"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Felice-del-mondowrote on 28.09.2010:[7.0] "Daniel Bryan ist ein Internetliebling der Insider Fans. Sicher hat er unheimliches Potenzial und kann ein ganz großer Star werden, doch im Moment ist er meiner Meinung nach noch weit davon entfernt. 10 Punkte sollten etablierte Megastars bekommen, kein Nobody aus der Indy Szene! Noch ist er nicht soweit !"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: El-Chupakneebraywrote on 28.09.2010:[10.0] ""BEST IN WORLD! BEST IN WORLD! " Das ist keine Phrase mit der sich ein wrestler schmückt, das ist so nah an der Wahrheit wie bei kaum jemand anderem. Nicht nur, dass er technisch im Ring brilliant ist, nein er hat sich für das Independent-Wrestling den Hintern aufgerissen wie das sonst wohl nur wenige getan haben. Jetzt also WWE und so viel lieber ich ihn woanders sehen würde: Die große Aufmerksamkeit und das bessere Gehalt hat er sich redlich verdient. Thank You, Bryan!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Ramwrote on 26.09.2010:[8.0] "Also er und Benoit sind für mich die Besten Techniker die ich je gesehen hab. Aber gerade jetzt als Danielson zum Sports Entertainment wechselte wird auch wieder klar was seine schwächen sind. Ich finde am Mic ist er vielleicht noch nicht perfect, aber er hat sich doch deutlich gesteigert. Aber was mir gar nicht an ihm gefällt ist seine Ausstrahlung. Ich finde Chris Benoit hat für mich deutlich mehr ausgestrahlt und er sah auch trotz Zahnlücke besser aus als der Herr Danielson. Bryan hat eine 10 € Frisur und eine Tribute to Cowboy Bob Orton Opahose. Das er mit so einem peinlichen Ausehen vor Millionen tritt ist einfach lächerlich. desswegen nur 8 Punkte."
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Roseswrote on 25.09.2010:[10.0] "Simply the Best! ne OK er ist nicht DER beste aber gehört definitiv zu den besten... und das mit abstand in der WWE muss er natürlich erstmal sich hoch arbeiten doch zählt für mich auch das was er davor geleistet hat und das ist einiges... seit Punk gab es glaube ich keinen so im ring grandiosen und charismatischen Typen... er passt sich seiner rolle an wie kein zweiter und füllt sie ohne wenn und aber aus... Okay ich muss zugeben am Anfang war ich auch sehr kritisch doch ähnlich wie bei Bret Hart habe ich einfach angefangen Matches zu sehn und dann fand ich ihn schon nicht mehr so schlecht doch dann auf der 16 Carat gold DVD von 2008 hat er mich so was von überzeugt. verdient nichts anderes als die best Note^^"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: svenheinrichwrote on 25.09.2010:[10.0] "Der beste Wrestler aus den letzten 10. 12 Jahren! ganz sicher!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MarcTrixwrote on 23.09.2010:[10.0] "Genial im Ring, Ganz gut am Mic, hat auch Charisma also alles in allem ein spitzen Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Unrated Superstarwrote on 23.09.2010:[7.0] "@7john7cena7: Das ist kein Star Wars-Theme, sondern klassische Musik (Walkürenritt von Richard Wagner... wo hat die heutige Jugend nur ihre Bildung? ). Auch ansonsten liegst du falsch. Er hat zwar nicht den Superman-Körper eines John Cenas oder auch kein metrosexuell eingölten Body a'la Randy Orton, aber das braucht er nicht. Solange er gute Matches zeigt (und das tut er) kann er nicht allzu viel falsch machen. An seinem Gimmick muss er zwar noch was feilen, aber da gibt's auch weitaus schlechtere. Und wenn's drauf ankommen würde dann würde Daniel Bryan Cena und Orton im Ring richtig alt aussehen lassen. Ähnlich wie einst William Regal Goldberg."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: taxbaxwrote on 21.09.2010:[6.0] "Natürlich von der technischen Seite her ein fantastischer Wrestler, aber meiner Meinung nach (noch? ) gnadenlos überbewertet. Für einen absoluten Top-Wrestler hat er viel zu wenig Ausstrahlung, und auch das micwork kann sich mit den Besten seiner Zunft bei weitem nicht messen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mick Funkwrote on 21.09.2010:[10.0] "Kurz weg und jetzt richtig stark zurück in der WWE. Momentan der erfrischendste Mann im Roster, der in Sachen Charisma sicherlich noch zulegen kann... selbst wenn nicht, Benoit war auch keine Charismabombe."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Damon Strikerwrote on 21.09.2010:[10.0] "Unglaublicher In-Ring-Performer ohne jegliche Schwächen! Am Mikrofon solide und er strahlt ein natürliches Charisma aus. Sein Aufbau in der WWE war - bis auf die unnötige Pause - ausgezeichnet. Die Zeit wird zeigen, ob sich Bryan in der WWE etablieren kann. Er bringt jedenfalls alles mit, das dazu nötig ist. Jetzt liegt es an den Offiziellen den Weg mit ihm weiter zu gehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Pyromaticwrote on 15.09.2010:[6.0] "Mag ja sein das er einer der besten Wrestler ist, aber ein großer Entertainer wird er vermutlich nicht. In der WWE ist eine lange Zeit als Midcarder vorprogrammiert."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: sebbaewrote on 11.09.2010:[10.0] "In jeder Hinsicht... 10 Punkte wert. Kann alles im Ring"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AmericanDragonwrote on 07.09.2010:[10.0] "Grandioser Techniker, der seine Moves stets sauber und glaubwürdig ausführt. Hat mit Ende 20 schon mehr Klassiker produziert als so mancher Wrestler in seiner gesamten Karriere. Ich hoffe, dass er nach seiner fast schon legendären ROH Karriere seinen Platz bei WWE findet und diesen auch halten kann, da es sehr schade wäre, wenn man sein Potenzial nicht nutzen würde."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Callistowrote on 05.09.2010:[10.0] "Am Mic verbessert, im Ring unter den Top 3 der Welt. Das müssen 10 Punkte sein!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Moyawrote on 02.09.2010:[8.0] "Was ich bisher gesehen habe, hat mir gefallen. Kann auf jeden Fall in die Spitze kommen, wenn man ihn denn machen lässt. Bin gespannt wie sein weiterer Weg aussehen wird!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Double Jwrote on 29.08.2010:[9.0] "Geht jeden Styl mit, ist technisch immer sauber, kommt auch glaubwürdig rüber, aber nicht mehr als glaubwürdig, und für ne 10 muss er perfekt rüberkommen!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Papa Popanzwrote on 28.08.2010:[8.0] "Klasse Wrestler, guter Look, aber was ist am Mic? Lasst ihn mal quasseln, damit er sich noch mehr als Charakter zeigen kann"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: maxiking125wrote on 23.08.2010:[10.0] "Daniel Bryan is einer der besten Wrestler der Welt. Traumeinkauf von WWE"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Zippo83wrote on 21.08.2010:[8.0] "Er ist wohl ein sehr sehr guter Wrestler, aber zehn Punkte bekommt von mir nur jemand, der das Gesamtpaket präsentiert. Dazu hatte er bisher zu wenig Gelegenheit. Optik ist absolut furchtbar, aber er kann ja nichts dafür, wie ihn der Herrgott erschaffen hat. Übrigens find ich diese Cena-Kommentare ziemlich markig, weil Cena nichts für seine Rolle kann. Zudem hat das nichts in einer Danielson-Bewertung zu suchen. Musste ich mal loswerden."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SES-Memberwrote on 20.08.2010:[9.0] "für die Indy Auftritte und siene Fehden gegen CM PUNK und Kenta kriet Er von mir schon 5 Punkte. Dazu kommt noch sein Comeback beim Summerslam das klasse war und sein Move-Set das einfach frisch und spritzig ist. Viel Charisma und keine schlechten Mic-Skills. 9 Punkte weil Er noch nihct den Durchbruch geschafft hat aber das kann ja noch kommen, bin dann auch bereit eine 10 zu geben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Perry Coxwrote on 19.08.2010:[9.0] "Dieser Junge ist unglaublich. Ich muss dazu sagen: Ich kenne den Independent Danielson nicht, nur den Daniel Bryan aus der WWE. Und was er da gezeigt hat, allein seine 2 Minuten Powerattacke beim Summerslam hat mich einfach beeindruckt. Klar, er ist nicht der größte und auch nicht der schwerste, aber wenn er wirklich in den Mainevent der WWE will, sollte er einfach weiter seine In-Ring-Skills zeigen und Optimistisch bleiben, dann schafft er es auch."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Basti1989wrote on 17.08.2010:[10.0] "Hab bisher noch nicht so extrem viel von ihm gesehen, aber das was ich gesehen habe ist weltklasse. Mein Wunsch: Eine lange Fehde gegen Chris Jericho. Dann hat man die aktuell besten Wrestler der Welt im 1 gegen 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Zonenbewohnerwrote on 17.08.2010:[8.0] "Aus aktuellem Anlaß habe ich meine Meinung über Danielson geändert und meine Bewertung korrigiert :-)"
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Diaboluswrote on 17.08.2010:[7.0] "Technisch einwandfreier Wrestler. Konnte jetzt beim Summerslam überzeugen. Hoffentlich lässt sich die WWE ihn nicht durch die Lappen gehen wie schon einige andere Talente vor ihm! Will mehr von ihm sehen und will sehen wie er sich entwickelt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: WrestlingFanDuisburgwrote on 17.08.2010:[10.0] "Im Ring ein Ausnahmekönner. Am Mic kann er auch unterhalten. WWE sollte ihn dringend zurückholen und zwar so schnell wie möglich.  @Rio123: Guck dir mal bei Youtube oder sonst wo seine Matches von Ring of Honor an."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rio123wrote on 16.08.2010:[10.0] "Vielleicht etwas verfrühte Wertung, ich habe ein Match gesehen und bin vollauf begeistert von ihm. Ich habe kaum jemand mit so einer Kraft, Geschwindigkeit und Technik gesehen, grandios!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AVFwrote on 16.08.2010:[10.0] "Klasse Techniker und hat mich mit seinen Moves und Matches immer überzeugt. Freut mich auch das er nun wieder zurück bei der WWE ist"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Exist 2 Inspirewrote on 16.08.2010:[9.0] "Ein Super Woker dem man selbst bei einem 3 Minuten Auftritt (SS) sofort ansieht das er es total drauf hat. Ich hoffe er macht seinen Weg in der WWE, ich würde ihn dort nämlich gerne noch lange und vorallem mal in längeren Matches sehen."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Whole FN Showwrote on 14.08.2010:[10.0] "Best in the World kommt hier nicht von ungefähr. Es tut mir für ihn Leid das seine Große Karriere von der WWE versaut wurde, aber für mich als WRESTLIN Fan ist das natürlich ein Segen das er wieder in den Indys rum tingelt."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Seba09wrote on 05.08.2010:[10.0] "Best in the world... wwe sollte sich was schämen!  Technisch unschlagbar, vereint mma und ringen komibiniert mit high-flying-action."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: milliwrote on 04.08.2010:[10.0] "Ganz klar einer der besten. Der Mann der einen mit ein Paar Headlocks ne halbe Stunde unterhalten kann! Ich kann nur WWE nicht ganz verstehen ihn wegen solchen Kleinigkeiten gehen zu lassen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MaKnowrote on 10.07.2010:[7.0] "Ausgezeichneter Techniker und durchaus annehmbarer Micworker. Einziges Manko - er hat ebenso wenig Ausstrahlung wie der Großteil seiner fanatischen Fangemeinde."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Freitag Nacht Koestlichkeitwrote on 10.07.2010:[10.0] "Ein Wahnsinnskerl. Charisma das einem die Hose platzt, Mic-Skills und im Ring ein Gott. Einfach gigantisch"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Y2J Problemwrote on 03.07.2010:[6.0] "Also ich finde ihn jetzt nicht so toll! Aber es reicht aus um es zu etwas in diesem Sport zu bringen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Marcywrote on 30.06.2010:[10.0] "Der Mann, der die Zukunft der WWE sein kann. Die jetzige Entlassung ist nur ein kleiner Stolperstein, denn wer glaubt ernsthaft daran, dass Bryan nicht wieder zu WWE zurückkehren wird? Man wird mit ihm Geld verdienen und das hat ihm seine Zukunft gesichert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: sign squadwrote on 30.06.2010:[10.0] "Vielleicht kann man ihn in ein paar Jahren einen 2. Ric Flair nennen, er hat bis auf die Promo Skills alles, was einen echten Wrestler ausmacht und das klammert alles aus, was Sportsentertainment nun mal so fordert. Warum die Provokation, lieber Vorposter? Der Mann ist hoffentlich die Zukunft und wenn er dann zum Rumble wieder in der WWE sein wird, wird man ihn pushen und dann können sich die Main Streamer darüber aufregen, dass er ja soooo langweilig sei. Ich freu mich schon drauf. Endlich ein Champion mal wieder zum anfassen."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Medeawrote on 30.06.2010:[2.0] "Leider kann ich ihm gar nichts abgewinnen. Ich erkenne weder seine Ausstrahlung, noch finde ich seinen Ringerstil gut, da ich eher auf andere Arten des Wrestlings stehe. Auch am Mic finde ich andere deutlich besser."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: P92wrote on 29.06.2010:[10.0] "Er hat seine Fähigkeiten vielmals in der Indy-Szene bewiesen. He proved his abilities in the Indy-Scene."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Manu Adamswrote on 21.06.2010:[7.0] "Mich überzeugt Daniel Bryan im Ring vollenst. Seine In Ring Fähigkeiten sind unglaublich und kann so ziemlich mit jedem ein ansehenliches Match abliefern. Dennoch gibt es nur 7 Punkte da mir bei ihm etwas die Mic Skills fehlen, eine sonderlich gute Ausstrahlung legt er auch nicht an den Tag."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Super Dragonwrote on 20.06.2010:[10.0] "Mein Lieblingswrestler, hält den Titel "Best Wrestler" in The World zurecht."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kankurowrote on 02.06.2010:[10.0] "Über seine Ringqualitäten braucht man wohl nicht mehr viel zu sagen. Hoffe aber, dass er sie bald in der WWE mal in einem längeren Match präsentieren darf. In letzter Zeit überzeugt er zudem mit starken Promos. Und wer behauptet, dass er kein Charisma hat, muss da irgendwas an dem Begriff gewaltig falsch verstanden haben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Paddywrote on 01.06.2010:[10.0] "Hätte nicht gedacht das er mich so durch NXT beeindrucken würde. Die Fehde mit The Miz wird immer Besser sowie die Fehde mit Michael Cole. Hoffentlich wird er nicht bei der WWE verrotten und wird mal ordentlich gepusht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ToZeDasCoveswrote on 24.05.2010:[10.0] "HAMMER WRESTLER.....  hoffe dass er jetzt mit seinem richtigem Gimmick (als Bryan Danielson) bei RAW auftaucht um ne fehde mit The Miz zu beginnen..... könnte geil werden xD"
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Erasedwrote on 22.05.2010:[9.0] "Klasse Worker. Hoffen wir, dass er bei der WWE endlich eine Chance bekommt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Jar Jar Binkswrote on 13.05.2010:[10.0] "Epik! Der vermutlich beste Wrestler den es überhaupt gibt. Er verkörpert alles was ein Wrestler braucht, ein kongenialer Mann, der mich immer wieder in seinen Bann zieht. Das Charisma dass ihm abgeschrieben wird, hat er mMn dadurch, dass er einfach nicht übertrieben wirkt und alles trotzdem extrem realistisch und emotional herüber bringt. Immer mehr fällt mir seine Glaubwürdigkeit im Ring auf und ich würde fast behaupten Danielson hat Charisma Ende nie."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Italian Straight Edgewrote on 12.05.2010:[10.0] "Dieser Junge hat's einfach drauf. Nicht umsonst wird er als der "Beste der Welt" bezeichnet. Am Mic ist er, wie ich finde, nicht schlecht und an Charisma mangelt es bei ihm auch nicht (wie einige finden). Bryan hat sehr viele, außergewöhnliche (Submission-)Moves in seinem Repertoire. Er könnte der neue Chris Benoit werden, nur mit mehr Mic-Skills. Dass er bei NXT ausgeschieden ist, ist nicht weiter tragisch (außer dass wir ihn für 'ne Weile nicht mehr im TV sehen können), denn er wird es auch so (locker) in eines der Roster schaffen. Und zum Glück heißt er jetzt wieder Bryan Danielson (aber Daniel Bryan war auch akzeptabel). Die 10 Punkte hat er bei mir und sicher auch bei vielen anderen Smarks hier so gut wie sicher. Ich hoffe, dass der "American Dragon" in Kürze wieder sein Feuer speit - und zwar bei RAW oder SmackDown!"
Rating: 10.0
Sentiment: -0.02211538461538462
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Edge96wrote on 12.05.2010:[9.0] "Technisch sicher einer der besten der Welt. Kann ihm aber keine 10 geben, da es ihm eindeutig an Charisma und Micfähigkeiten mangelt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Reiskartoffelwrote on 05.05.2010:"Ich habe auch Daniel nur ab und zu mal bei NXT gesehen. Und da er da (noch? ) nichts zeigen darf, kann ich ihn auch nicht schlecht bewerten. Wird schon seinen Grund haben, wieso er einer der besten sein soll. Wenn er mal ein längeres Match hat und sein Potenzial ausnutzen darf (wird wahrscheinlich erst in NXT storymäßig zu einem Star gemacht), dann werde ich ihn auch bewerten."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Cripplerwrote on 04.05.2010:[4.0] "Wird total überbewertet. Für mich ist er so gut wie der Durchschnitt, wenn nicht sogar etwas schlechter."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Sandmannwrote on 04.05.2010:[10.0] "Best in the World und das wohl auch zurecht. Ein sehr charimatischer Wrestler der alle Stile mitgehen kann. Man muss allerdings erst mehrere Matches von ihm sehen um sein ganzes können wirklich zu begreifen. Einer der ganz großer in diesen Jahren und ein heftiger Verlust für die Indyszene. Wird aber auch seinen Weg bei WWE gehen."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: UndertakerChriswrote on 02.05.2010:[9.0] "Einer der genialsten Wrestler, die ich je gesehen habe! Im Ring perfekt und am Mikro auch recht gut. Hatte richtig geile Matches bei ROH. Nur jetzt bei diesem bescheuerten NXT Konzept wird er als der Schwächling dargestellt, der noch nie ein Match gewonnen hat. Dann hätten sie ihn vorher aber nicht so bejubeln sollen. Er sollte sich von der WWE losreißen udn wieder zu ROH gehen..."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RickRollwrote on 24.04.2010:[8.0] "Verstand nie den Hype um Danielson. Im Ring stark, definitiv, jedoch NIE der beste Wrestler trotzdem gute In-Ring Skills, sowie gute Psychologie."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Viperwrote on 30.03.2010:[10.0] "Ich war vor der 1. Ausgabe von NXT sehr gespannt und er konnte mich komplett überzeugen. Gibt wohl keinen besseren Mann im Ring als ihn!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Father Nelsonwrote on 23.03.2010:[7.0] "Why WWE? He looks so much out of place there! Even the Miz looks loke he could eat him alive!"
Rating: 7.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: TheRatedRLegendKillerwrote on 15.03.2010:[10.0] "Wer kommt hier denn bitte auf die Idee zu sagen, das ein Danielson kein Charisma hat. Dadurch klingt man vielleicht professionell, aber wer sagt das der NXT Rookie kein Charisma besitzt, der weiß anscheinend nicht was Charisma ist. Bryan ist charismatischer als die meisten seiner WWE-Kollegen und im Ring sowieso das Beste was Nord-Amerika zu bieten hat. 10 Punkte sind hier Pflicht..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Aceonwrote on 11.03.2010:[9.0] "Einfach nur Top der Mann, hab ihn vor kurzem in zwei Matches live gesehen und muss sagen, unglaublich wie man ihn hasst als Heel, aber genau so unglaublich was er im Ring drauf hat. Ist einfach alles in allem ein super Worker. Dieser Titel " Best Wrestler in the World" existiert nicht zu unrecht ;) (auch wenn man den Satz nicht wortwörtlich nehmen sollte)"
Rating: 9.0
Sentiment: 0.44393939393939397
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: shoopdawoopwrote on 10.03.2010:[10.0] "Von 3 Matches bei NXT hat er mich bisher JEDES mal begeistert, wrestlerisch weiß er zu begeistern und as Publikum ist auch bei jeder Aktion gespannt was er als nächstes zaubert. Sehe ihn in ein paar Jahren ganz oben!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: LebendeLeichewrote on 10.03.2010:[7.0] "Er hat auf jeden fall viel drauf aber kann irgendwie mich noch nicht ganz mitreisen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: rv27wrote on 06.03.2010:[10.0] "Bester Wrestler der Welt. Das sagt denk ich mal alles. Und auf ihn triffts nunmal zu. Er kann aus jedem Gegner ein gutes Match ziehen. Freu mich auf jeden Fall in der WWE zu sehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Mountiewrote on 01.03.2010:[10.0] "Im Ring ist Bryan Danielson/Daniel Bryan das Beste, was der westliche Wrestlingkulturkreis zu bieten hat. Punkt. Und zu dem Paket an Fähigkeiten, das ihn dazu macht, gehört auch ausdrücklich ein Charisma, das ihm nur Leute absprechen, die nicht wissen oder wissen wollen, was man unter diesem Begriff eigentlich versteht. Was richtig ist, ist dass Bryan im WWE-Umfeld erst zu einem Star heranwachsen muss. Aber nachdem früh erkennbar geworden ist, dass die WWE den nötigen Push in die Richtung geben will, bin ich vollauf überzeugt, dass es damit auch was wird. Schon klar, Bryan sieht nicht aus, wie man sich den typischen WWE-Star vorstellt, aber das ist kein Hindernis, wenn der Wille da ist, diese vermeintliche Schwäche als Besonderheit zu vermarkten - siehe Foley, siehe Mysterio. Bryan fehlt noch Einiges zur WWE-Spitze? Nein, nur Zeit. Es wird wohl länger dauern, als sich die übereuphorischen Fans es wünschen, die Bryan schon dieses Jahr gern im WrestleMania-Main-Event gesehen hätten, aber Bryans Weg, das Erbe von Chris Benoit anzutreten ist vorgezeichnet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Whopperlewrote on 01.03.2010:[10.0] "Toller Wrestler! Klasse Draw der WWE. Bin durch ihn momentan am meißten gespannt auf NXT und wie die Storyline zwischen ihm und the Miz weitergeht..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Big Daddy Swrote on 01.03.2010:[10.0] "DER Gewinner der ersten NXT Folge. Die Art und Weise wie er Miz kontra gegeben hat war sensationell und zu seinen Ringfähigkeiten muss man ja nicht mehr viel sagen, die sind ja schon fast legendär. Ich geb zu, dass ich erst skeptisch war ob er als Indy-Ikone einen Stich sehen könnte in der WWE, aber nachdem was ich gesehen hab mach ich mir da überhaupt keine Sorgen mehr. Und auch wenn Miz von seinen Fähigkeiten her Bryan unterlegen ist, durch seine "Machtposition" als Mentor, der ihn immer wieder durch "Prüfungen" rasseln lässt, ist dies die vielversprechendste Zusammenstellung der ersten NXT Staffel. Gut gemacht WWE^^"
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Rated R Superstar EDGEwrote on 27.02.2010:[10.0] "Für seine Zeit bei ROH muss ich ihm einfach 10 Punkte geben. Ich glaube nicht das er es bei der WWE zum Maineventer schaffen wird denn dafür fehlt ihm einfach das Charisma die Ausstrahlung und der Look. Seine Größe ist nicht mal das Proplem den ein Rey Mysterio, Eddie Guerrero, Chris Benoit oder auch ein Chris Jericho sind auch nicht viel größer als er Rey und Eddie sind sogar kleiner. Er hat halt einfach zu wenig Muskeln und ist zu blass. Trotzdem solte er es mit seinem Können mindestens zum IC oder US Champion schaffen. Wer weis vileicht nimmt er ja sogar mit einem Partner Miz und Show die Tag Team Titel ab."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Wise Warriorwrote on 26.02.2010:[7.0] "Sorry, kann mir den laufenden Meter mit dem Sechziger-Jahre-Körperbau einfach nicht ernsthaft als Heavy-Weight-Champion vorstellen. Die Show und die Geschichten stehen beim Wrestling im vordergrund - sonst wäre es Kampfsport..."
Rating: 7.0
Sentiment: 0.09999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mukahidowrote on 23.02.2010:[10.0] "Meiner Meinung nach DER Wrestler schlecht hin. Hat alles was man braucht um als Wrestler erfolgreich zu sein: gute Micwork, ein gute Gespür für die Fanreaktion und ein Arsenal an Manövern das einem schwindelig wird. Die einzige Frage die sich mir noch stellt ist ob er fertig bringt ein WWE "Supestar" zu werden. Denn die Frage bleibt ob das Mainstreampublikum ihn auch annimmt , da bei diesen Personen leider zum Teil Charisma und visueller Eindruck wichtiger sind als die Fähigkeiten im Ring"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Switchbladewrote on 22.02.2010:[10.0] "Danielson ist klasse und charismatisch als Heel und als Face, das kann man ihm gar nicht vorwerfen. Kann ich überhaupt nicht verstehen, dass manche meinen er hätte kein Charisma."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rated R Champwrote on 14.02.2010:[10.0] "Trägt den Spitznamen "Best in the World" nicht zu unrecht. Haben bislang noch kein einziges schlechtes Match von ihm gesehen(zugegeben, die Anzahl von Matches die ich von ihm gesehen habe hält sich in Grenzen, es waren aber mittlerweile doch einige, so dass ich mir mal ein Urteil erlaube. )und selbest Top-Leute wie der Undertaker, Triple H und Bret Hart hatten in ihren, zugegeben längeren, Karieren einige Ausfälle. Leider wird er es Aufgrund seiner Körpergröße wohl nie im Spotlight einer der Mainstream Promotion stehen. Aber wenn man mal ein Interview von ihm gelesen hat, weiß man, dass er es darauf auch gar nicht anlegt. Kleiner Anhang: Die WWE will ihn doch jetzt nicht ernsthaft Daniel Bryan nennen? ! ? Bitte nicht!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: KASHwrote on 24.01.2010:[10.0] "BEST IN THE WORLD ! BEST IN THE WORLD ! Den Titel hat er sich wahrhaftig erarbeitet. Zudem hat der Kerl auch noch ziemlich viel Charisma. Bin mal gespannt wie er die Stufe Main Stream aufnimmt. Denke mal er ist Shawn Michales Thronfolger in der WWE was Showstealer Matches betrifft und da er auch nie wirklich Blut benötigt um ein ***** Match zu zeigen passt er da eh hin. Ich gönne ihm das er endlich weltweitem Ruhm und Geld bekommt. WWE wird ihn garantiert nicht fehleinsetzen."
Rating: 10.0
Sentiment: 0.7222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: RoHSupporterwrote on 24.01.2010:[10.0] "Einfach das Beste was die Wrestling der Welt zu bieten hat! Einfach jedes seiner Matches sind ein absoluter Hammer, bleibt nur zu hoffen das ihn die WWE gut einsetzt und ihn nicht IC-Champ sondern WWE Champ werden lässt den besser als ein Sheamus ist er alle mal. Wenn ich 100 Punkte geben könnte würde ich ihm 100 geben aber so sind es NUR 10!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Instant Classicwrote on 29.11.2009:[9.0] "Wirklich einer der besten Wrestler heutzutage und mit einer Menge Charisma gesegnet. Dadurch denke ich, dass er sich doch durchsetzen wird in der WWE, auch wenn ihm der Superstar-Look fehlt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Invaderwrote on 09.11.2009:[10.0] "REally hate that he is going to wwe:( american dragon with a sting:P"
Rating: 10.0
Sentiment: -0.5166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Neuhofwrote on 26.10.2009:[10.0] "Lasst ihn die WWE outwrestlen, er hat das Zeug dazu, weil er einfach alles kann. Wahrlich einer der besten der Welt, ein richtig zäher Hund, ein technisches Genie, und vor allem auch eine Präsenz und eine Glaubwürdigkeit, die man nur selten sieht. Man glaubt ihm einfach, dass er sich für den besten hält. Best Wrestler In The World Today!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: BaptisteZorGwrote on 21.10.2009:[7.0] "Für mich etwas "overrated" und schon allein aufgrund seiner Statur wird es für Ihn nahezu unmöglich werden in der WWE groß rauszukommen. Mich würde es jedenfalls überraschen wenn über einen besseren "Jobber-status" hinauskommt. Glaube die WWE wird Ihn mehr oder weniger verheizen. Es gibt einfach zuviele Dinge die gegen Ihn sprechen, da wäre wie beschrieben die Physis, die für mich farblose Erscheinung und zu wenig Charisma. Und jeder weiß das bei der WWE zuerst die Show und dann irgendwann mal das Wrestling kommt..."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Aesopwrote on 26.09.2009:[10.0] "Bryan Danielson ist der Wohl technisch beste Wrestler den es gibt. Aber in Sachen Charisma und Ausstrahlung, also im Gesammtpaket überzeugen mich Leute wie Chris Jericho noch mehr als Danielson es schon tut. Aber trotzdem komme auch ich nicht drumherum ihm eine 10 zugeben, da seine Leistungen einfach unglaublich faszinierend sind."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Muthmasterwrote on 23.09.2009:"Kein Charisma, aber sowas von kein Charisma. Im Ring auch niemals "Best in the World". Overrated bis zum geht nicht mehr. Dennoch kein schlechter im Ring."
Rating: No rating found
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: homicidal cena michaelswrote on 11.09.2009:[10.0] "Bryan Danielson ist ein Top Wrestler, er kann mit jedem ein sehr gutes Match zaubern. Er müsste sich aber noch an seinen Mic Skills verbessern. Viele Leute freuen sich das er zu WWE geht, aber ich nicht weil 1. Er wird nicht mehr so gute Matches haben und wird gegen Leute wie John Morrison verliren 2. Er wird von HHH untengehalten und muss mit Leuten wie z. B. Dibiasie und Rhodes in den Ring, sie gut aussehen lassen und das wars. 3. Er ist bei einer Liga die nicht mal annährend so gutes Wrestling abliefert wie Roh. Als ich gehört habe das sie Bryan sehr talentiert nennen, musst ich lachen hallo ? Sie nennen den Besten Wrestler auf der Welt und das ist ernst gemeint talentiert da sieht man was WWE denkt. Ich hoffe das er Erfolg haben wird und dann nach ein paar Jahren zu ROH zurückkehrt weil er es nicht aushält bei so einer schlechten Liga zu sein."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rattlesnakewrote on 05.09.2009:[10.0] "Phänomenal gute Inring-Skills. Charisma ist auch gar nicht sooo schlecht wie von einigen hier dargestellt. Wird wohl nie bei der WWE auftreten (ein Tryout hatte er ja schon), und das ist gut so. Er würde nur verheizt werden. Vinnie steht nun mal auf Steroidmonster, da hätte Danielson wohl keine Chance. Sagte ich schon, dass er phänomenal gute Inring-Skills hat? EDIT: Nun ist es doch passiert. Danielson wird bei der WWE antreten. Und ich bin darüber überhaupt nicht amused. Von seinem Repertoire wird er nun künftig eine ganze Ecke nicht mehr zeigen dürfen. Persönlich gönne ich es ihm natürlich, warum sollte einer, der ganz klar zur Weltelite gehört, nicht dahin gehen, wo er vernünftig Geld verdienen kann? Dennoch ist zu befürchten, dass er in der WWE untergeht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Turboladerwrote on 26.08.2009:"Ich verspreche mir einiges von ihm, wenn ich das hier so lese und werde meine Bewertung zu einem späteren Zeitpunkt abgeben *vormerk*"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Marco Ewrote on 12.08.2009:[9.0] "Unglaublich guter Techniker, sicher einer der besten der Welt. Was ihm zu nem wirklichen Topstar fehlt, ist einfach die Ausstrahlung. Die kämpfe die ich bisher von ihm live gesehen habe, haben mich von den Aktionen her, völlig überzeugt, doch trotzdem finde ich ihn als Person ziemlich langweilig im Ring. Kämpfe sind schön anzusehen, aber wirklich mitreißen tun sie mich nicht."
Rating: 9.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Juvicidewrote on 21.07.2009:[10.0] "Wird zurecht als der beste der heutigen Zeit bezeichnet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AxXxelwrote on 03.05.2009:[9.0] "Der einzige Wrestler der wohl irgendwie zugleich under- und overrated ist und ich muss sagen beide Seiten verstehen zu können, tut aber hier nicht zur Sache. Fakt ist, dass Danielson mit jedem Mann ein tolles Match auf die Beine stellen kann und dabei noch nie uninteressant wirkte. Über sein Charisma lässt sich streiten, Alles in Allem ein toller Athlet."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: NickediXXLwrote on 10.04.2009:[10.0] "Er ist einfach der Beste, da fuehrt kein Weg dran vorbei!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Tomkowrote on 03.02.2009:[10.0] "Trägt nicht ohne Grund den Spitznamen "Best Wrestler in the World" !"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Manolowrote on 01.01.2009:[10.0] "Best in the world. Hat in den letzten Jahren auch deutlich an Charisma gewonnen, sodass ich bei ihm keine Schwäche mehr erkennen kann. Mehr gibt es dazu nicht zu sagen."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: 150pwrote on 14.12.2008:[10.0] "Dem American Dragon Charisma abzusprechen ist lächerlich. Man erkennt gerade in diesem Jahr seine Freude, die ihm die Fans bieten und die er am Wrestling hat. Die Leistungen im Ring sind weiterhin großartig, es gibt zur Zeit kaum einen anderen, der so viele Match of the year contests aufstellen kann, bzw. aufgestellt hat, wie er. Bester Wrestler dieser Erde!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Eddiewrote on 28.11.2008:[10.0] "Simply the best in the world. Kaum einer schafft es, das die deutschen Fans es lieben, einen Superstar so zu hassen. Und es macht wirklich Spaß, wenn man bei wXw am Ringrand steht und ihm den Mittelfinger zeigt. Neben diesen Schauspiel Künsten, hat er natürlich noch viel bessere In-Ring Skills, die ihresgleichen suchen. Es bleibt hier einfach nichts anderes übrig als der Jackpot, 10 Punkte."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Chris Herowrote on 26.11.2008:[10.0] "Für mich nur 2nd Best in the World, wie man wohl auch an meinem Nick erkennen kann. Dennoch ein hervorragender Performer!"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Blazewrote on 19.11.2008:[10.0] "Bryan Danielson ist ein echter Ausnahmeathlet, genau wie für mich auch ein Shawn Michaels. Wrestlerisch gesehen führt an ihm eh kein Weg vorbei, egal ob er bei PWG, ROH, Noah oder auch "nur" bei wXw ein Match bestreitet. Früher konnte er mich nicht besonders viel bis gar nicht beeindrucken, seit einiger Zeit sieht das aber ganz anders aus. Was In-Ring Skills angeht ist er für mich eh der Beste (Matchaufbau, Technik, Spannung, Dynamik, Movearsenal usw. ) und an seinen Look und Körperbau kann man sich auch gewöhnen. Es muss nicht jeder gleich eine Statur wie ein Batista oder Brock Lesnar haben, um im Wrestling erfolgreich zu werden - und das ist auch verdammt gut so. Ob er sich im Main Stream beweisen würde denke ich aber auch. Ich hoffe eigentlich nur, dass er nicht zur WWE geht, sondern vielleicht noch ein paar Jahre im Indy Bereich bleibt. Für mich bleibt er ohne jeden Zweifel mein Lieblingswrestler und BEST IN THE WORLD!"
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: adamwrote on 26.10.2008:[10.0] "Für sein Alter erstaunlich weit, könnte schon bald "ganz oben" stehen, obwohl er das ja eigentlich schon indirekt ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: mugel 187wrote on 02.10.2008:[10.0] "Ich mochte ihn früher einfach nicht aber seid er aus Japan zurück ist gefällt mir sein stil und können richtig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Typicalwrote on 18.09.2008:[10.0] "Wer hier weniger als 8Punkte gibt sollte nochmal überdenken, ob Wrestling der richtige Sport für ihn ist..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: JohnnyCashwrote on 11.08.2008:[7.0] "Hat EINIGES drauf, sprech ich ihm gar nicht ab, aber mitreißen kann er mich nicht. Finde er packt einfach zu viele Submission-Moves und zu viel Mat-Wrestling ein. Glaub entweder ist man Fan oder halte nicht. Geb ihm aus Respekt, weil er sein Handwerk versteht, trotzdem 7 Punkte."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: wXw Fanwrote on 22.07.2008:[10.0] "Weltklasse Mann, Charisma, Micwork, In Ring Können, stimmt einfach alles beim American Dragon."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Aaronwrote on 22.07.2008:[10.0] "Danielson betitelt sich selber als besten Wrestler der Welt und ich gebe ihm in dem punkt vollkommen recht! Wer behauptet Danielson habe kein Charisma, der soll sich doch am besten mal Glory By Honor V Night 2 anschauen und danach reden wir nochmal über das Thema! Für mich ist er das Maß aller Dinge!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: e-trom995wrote on 28.06.2008:[9.0] "Grandioser Wrestler. Wer weiß ob er bei der WWE unterschreibt bzw. was dann aus ihm wird... er hat aufjedenfall das Potenzial es in der Liga zu schaffen, trotzdem muss er sich erstmal beweisen!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Nedgewrote on 13.06.2008:[10.0] "Ich mag ihn und seine MAtches einfach. Er ist einfach ein Topwrestler"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ecw foreverwrote on 02.06.2008:[6.0] "Ein genialer Wreslter, nur kann ich seine Matches nicht anschauen da er mich langweilt, er packt mich nicht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Urzawrote on 26.05.2008:[9.0] "Ein ausgezeichneter Wrestler mit tollen Skills (auch mit Charisma), ich seh' ihn gerne, aber bitte nicht in der WWE!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Matt Hardywrote on 12.05.2008:[10.0] "Ohne Zweifel der Best Wrestler in the World. Genauso überragend wie er im Ring ist, überzeugt er auch am Mic, und wer ihm Charisma abspricht hat irgendwie keine Ahnung wovon er redet. Außerdem isses so genial Danielson auszubuhen :)"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Eaterwrote on 11.05.2008:[10.0] "Eindeutig einer der besten technisch versierten Pro Wrestler unserer Zeit. Man muss sich nur anschauen, wie oft sein Name in MOTY-Listen oder ähnlichem erscheint."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Mr Bonewrote on 11.05.2008:[6.0] "Ein Klasse Wrestler aber für mich zählt das Gesamtpaket also Charisma, Micwork, Moveset, Glaubwürdigkeit und noch vieles mehr. Imo bräuchte er mal wieder einen größeren Push und eine darauffolgende Fehde."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Dave Concordiowrote on 06.05.2008:[6.0] "Im Ring gut, auch wenn sein Stil mir zu fad ist. Charisma und Ausstrahlung sucht man bei ihm vergebens."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Griesewrote on 05.05.2008:[10.0] "Nicht zu unrecht "The Best in the World". Einfach großartiger Wrestler."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MemphYwrote on 18.04.2008:[8.0] "Guter Wrestler ja, kann sich aber vor allem gimmiktechnisch steigern und so charismatisch ist er auch nicht !"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Muffiwrote on 13.04.2008:[10.0] "Der beste nordamerikanische Wrestler, mehr gibts da nicht zu sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Urbaner1982wrote on 04.04.2008:[10.0] "Ganz groß. Einer der für mich absolute Ausnahmeathleten. Kann alles, zeigt alles, weiß sich zu präsentiern, Einzelgängertyp... super"
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rob the bobwrote on 04.04.2008:[10.0] "Trägt zurrecht den Spitznamen "the best in the World" Kann alles mitgehen, brawlen, ein Technik feuerwehrk abfeuern oder Mattwrestling. Er kann alles mit gehen."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Schandmaulwrote on 17.03.2008:[6.0] "Guter Wrestler... aber imo 1. nicht sooo gut wie er selbst und seine Fans sich sehen... 2. als Heel gut, als Face imo eher schwach da er immer recht arrogant rüberkommt und das daher als Heel besser wirkt"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Lupus Immortaliswrote on 16.03.2008:[10.0] "Etwas anderes als die Höchstnote für den American Dragon geht nicht. Ich war zunächst skeptisch, da mir die aufgezeichneten Matches, die ich von ihm gesehen habe, nicht wirklich zugesagt haben. Als ich jedoch spürte, was der Mann für eine Live-Präsenz hat, verbunden mit den unglaublichen In-Ring-Fähigkeiten, dämmerte es mir: Dieser Mann ist derzeit der beste Wrestler der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: EvenflowDDTwrote on 26.02.2008:[10.0] "Seine Matches mit KENTA sind der Hammer! Einer der besten Technischen Wrestler!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Amurebkuwrote on 23.02.2008:[10.0] "Dieser Wrestler ist einfach der Hammer! Der American Dragon ist für mich einer der besten Wrestler der Welt. Grandiose Matches hat er schon gezeigt. Bin gespannt was noch alles kommt. Er ist einfach klasse. Auch die Ausstrahlung ist super. Bin gespannt ob sein Weg eines Tages in eine große Liga wie die WWE oder TNAW führt."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Pridewrote on 03.02.2008:[10.0] "Bryan ist in meinen Augen einer der besten Wrestler der Welt. Er hat alles, was ein guter Wrestler haben muss."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Berndwrote on 14.01.2008:[10.0] "The Final Countdown als Theme geht halt gar nicht. Die 10 verhindert es aber auch nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AnFuwrote on 14.01.2008:[8.0] "Die gute alte Ausstrahlung mal wieder, sonst fehlt ihm nix (siehe Kenta Matchserie). Er ist ohne Frage Klasse, aber in der WWE hat ers auch nicht geschafft. 2."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Remootwrote on 05.01.2008:[8.0] "Wrestlerisch sicher einer der absolut topadressen... leider nicht mit der figur ausgestattet die mann für eine grosse Karriere (WWE) braucht. Würde wohl nur zur cruiserweights division reichen bei ihm. Schade denn mitlerweile ist auch sein micwork wirklich stark geworden."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Texas Tornardowrote on 02.01.2008:[8.0] "Edit: Nach den letzten matches die ich gesehen hab gibt es doch eine 2!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: AMMOwrote on 02.01.2008:[10.0] "Für mich, wenn auch nicht alleine, der beste den es momentan gibt. Seine Matches sind iwie immer verchieden, ich weiß nicht, wieso aber so ist es! Technisch natürlich absolut genial! Und auch mit einer ordentlichen Portion Charisma versehen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: jimpanse1980wrote on 01.01.2008:[10.0] "Wer mit JEDEM Gegner laufend 4-5*-Matches zeigen kann, der hat nur die Höchstwertung verdient. Und alle die der Meinung sind, Danielson hätte kein Charisma und kein "echtes" Gimmick, die sollten sich dann doch lieber den Boogeymann angucken. Danielson bietet PUREs Wrestling in seiner reinsten Form und kann aber wirklich jede Gangart mitgehen. Ganz klar einer der Besten, wenn nicht sogar der Beste !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Blue Meaniewrote on 29.12.2007:[10.0] "Zwar wurde im das Charisma wohl nicht in die Kinderwiege gelegt, aber der ist der best fŽn Pure Wrestler auf diesem Planeten!"
Rating: 10.0
Sentiment: 0.4226190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Kathywrote on 27.12.2007:[10.0] "Von Bryan kann man einfach nicht genug bekommen! Da stimmt einfach alles.... bloss wo soll das noch hingehen, der Junge ist gerade mal 26 Jahre jung? Tierisch genial!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rancorwrote on 11.12.2007:[10.0] "Danielson ist ein absoluter Ausnahmekönner. Die Höchstnote ist auf jeden Fall verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: SternessDustOmegawrote on 06.12.2007:[10.0] "Trotz einer Hautfarbe die einem Schweizer Berghüttenkäse vor Neid noch weiter erblassen lässt: Charismatisch bis zum abwinken der Mann. Wrestlerisch muss sich glaub ich nichts mehr sagen... Ansehen und genießen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Baron-Bwrote on 20.11.2007:[10.0] "Wenn man mehrere Dutzend Matches gesehen hat und es ist kein einziges in Erinnerung geblieben, welches schlecht war und man sich zudem an eine ganze Reihe von Matches erinnern kann, die absolut herausragend waren, dann ist dieses Bewertung so und nicht anders gerechtfertigt. Ich hoffe auch nicht, dass man ihm irgendwann einmal in irgend einer Liga eines dieser lächerlich knallbunten Comic-Gimmicks verpasst, wie man es bei Austin Aries oder Jay Lethal für notwendig befunden hat. Bryan Danielson ist gut, weil er es kann, unbunt, pur und technisch herausragend. Alles andere wäre nicht Bryan Danielson."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Benny110106wrote on 17.11.2007:[8.0] "Hat die Klasse im Ring, wie früher nur Leute, wie Harley Race z. B. Er ist einfach der beste Us-Wrestler des Neuen Jahrtausend. Ich hoffe er geht nie zu WWE, da passt er nicht hin. Ich hoffe er wrestelt lange bei RoH."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Babuswrote on 14.11.2007:[8.0] "Wrestlerisch auf jeden Fall einer der besten. Aus irgendeinem Grund fieber ich beim American Dragon zwar nie wirklich mit, aber dennoch bleibt unter dem Strich die Erkenntnis, dass es wohl keine schlechten Danielson-Matches zu geben scheint. Abstriche muss ich, auch wenns einigen bestimmt nicht Recht sein wird, allerdings - wie so viele - beim Charisma machen. Intensität hat er auf jeden Fall, aber das Charisma eines Weltstars kann ich bei ihm dennoch nicht ausmachen. - Auch wenn er gefeiert wird, ist es was anderes das Manhatten Center (mit RoH-Bonus) für sich zu gewinnen oder den Madison Square Guarden zum Ausflippen zu bringen. Nichtsdestotrotz ist Danielson ein Großer."
Rating: 8.0
Sentiment: -0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Don Fkwrote on 29.10.2007:[10.0] "Sehr geiler Wrestler aus dem mal ein ganz großer wird, wenn das noch größer geht ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Burzi1wrote on 26.10.2007:[8.0] "Mochte ihn vor einiger Zeit eigentlich nicht so, aber heute muss ich sagen: er ist einfach ein sehr guter Wrestler."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: CaptainCarnagewrote on 27.09.2007:[10.0] "Viele würden von sich behaupten der beste Wrestler der Welt zu sein, aber nur einer behält dabei recht und das ist nunmal Bryan Danielson."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: caterwrote on 15.09.2007:[10.0] "Hat mir am Anfang gar nicht so besonders gefallen aber mittlerweile seh ich ihn sehr gerne. Begnadeter Techniker, der auch einen Bodyslam gut rüberbringt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Manuelwrote on 06.09.2007:[10.0] "Hab letztens ein Match gegen Kenta gesehen und nach einem Match einer meiner Fav Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Carlito Cenawrote on 05.09.2007:[10.0] "Hervorragender In Ring-Worker, mitunter das beste, was sich derzeit im Wrestling findet. Kann bei seinen Matches hervorragend begeistern und ist nebenbei auch noch ein verdammt harter Hund, enn man sich anschaut, mit welchen Verletzungen er angetreten ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Doriwrote on 11.08.2007:[10.0] "Sry, aber wer da keine 1 gibt, ist für mich fast schon ein Banause. Ich meine klar, manche mögen halt das Spot Wrestling, aber Danielson ist einfach so unglaublich gut, das ist eine 1 mit * und nichts anderes."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: dariawrote on 11.08.2007:[10.0] "just genial - unvergessen YMCA in Steinhude, seine heel-promo bei der GSW in Duisburg, und wrestlen kann er auch noch"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Rob Van Duesenschrauberwrote on 10.08.2007:[10.0] "Nachdem ich ein paar aktuellere Matches gesehen habe, nehm ich mein altes Urteil zurück. Höchstnote."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: shannonmoorewrote on 29.07.2007:[8.0] "Ist villeicht wirklich der beste Wrestler in der Gegenwart aber zu wenig Charisma finde ich."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Parvexwrote on 23.07.2007:[10.0] "Er hat schon nicht ganz unrecht, wenn er sich hinstellt uns sagt "Best Wrestler in the World. ""
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Moonbloodwrote on 28.06.2007:[10.0] "Man kann nur den Hut ziehen. Ich muß zugeben, daß mir technisches Wrestling im Grunde genommen gar nicht so sehr zusagt. Danielson weiß mich dennoch voll und ganz zu überzeugen. Die teilweise ewig-langen Chain-Wrestling-Phasen machen mir zwar nach wie vor gelegentlich zu schaffen, aber gerade die Schlußphasen seiner Kämpfe sind so gut wie immer intensiv, extrem spannend und nahezu "perfekt". Mir fällt gerade kein Match von ihm ein, das nicht mindestens das Prädikat "gut" verdient hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ShaneOwrote on 28.06.2007:[8.0] "Wahrscheinlich der besten reine Wrestler auf Gottes grüner Erder. Leider ziemlich Charismalos und nicht gut am Mic - aber hey, der Mann ist im Ring einfach eine Offenbarung!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: MrFoxwrote on 26.06.2007:[8.0] "Langsam gefällt er mir richtig... guter Wrestler, leider habe ich noch nicht so viele Matches von ihm gesehen!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Grossartig im Ring, Am Mic ein Gott und ein Charisma, weswegen ich fast meine Sexuelle Orientierung geändert hätte. Festzuhalten ist, Der Mann ist ein Gott"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Trevedaswrote on 24.06.2007:[8.0] "Sollte sich beim MicWork enorm steigern, alles andere ist schon Top."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Showstopperwrote on 24.06.2007:[10.0] "Natürlich ist er am Mic kein Chris Jericho oder The Rock, aber er wirkt dennoch glaubhaft und kann dies durch seine Technik auch untermauern. Ein wahrer Mr. Wrestling!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: HubertHuhnwrote on 24.06.2007:[10.0] "Der beste Wrestler auf dem Planeten zur Zeit! Kann der Beste aller Zeiten werden! Seine Heel Attitude mit "the Champ has still 5" usw. ist einfach zu geil."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Wrestlingmashinewrote on 24.06.2007:[10.0] "Für mich der Beste Wrestler der Welt, neben Kurt Angle. Jedoch finde ich den American Dragon noch ein wenig besser. Ich habe Freunde, die sagen, dass seine Match eher langweilig seien, aber ich liebe seine Matches und bin ein großer Fan von ihm! Er kann wirklich jeden Move ausführen und kann so immer was neues bringen! Also von mir volle Punktzahl! Und ich hoffe, dass er nicht zur WWe oder TNA geht, sondern im Indy Bereich bleibt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: El Pargiwrote on 24.06.2007:[4.0] "Meiner Meinung nach kein Charisma. Kein spezielles Gimmick... Overrated halt. Wie Kurt Angle aber besser."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Alex Shelleywrote on 24.06.2007:[10.0] "Mein persönlicher Platz 2 - Wrestler nach Chris Hero. Gerade in 2006 mit Geld nicht zu bezahlen. Danielson ist Mr. ROH!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Knurkselwrote on 24.06.2007:[10.0] "Könnten bitte auch die Leute einen Kommentar abgeben, die hier nicht mit 10 bewertet haben? ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: The Crown Jewelwrote on 24.06.2007:[10.0] "Hier gibs nichts zu begründen! .... einfach der beste Wrestler des Planeten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: suntan superstarwrote on 24.06.2007:[10.0] "der wrestler schlechthin. Eine wwe karriere wird auf Grund seines für ihre Verhältnisse schmächtigen Körperbaus sehr schwer werden. Dennoch wird chris benoit und kurt angle als beste wrestler bald ablösen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Anti-Championwrote on 24.06.2007:[10.0] "Im Lexikon neben dem Wort Wrestling wird in 2 oder 3 Jahren sein Foto zu sehen sein, Danielson ist 100% Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: ValiumSickwrote on 24.06.2007:[10.0] "Bryan Danielson ist einfach nur göttlich. So ein Charisma gibt es nirgendswo anders, keiner zeigt so geile Promo's und im Ring ist er sehr gut! 10 Punkte von mir."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: Marcwrote on 24.06.2007:[4.0] "Interessiert mich eigentlich null. Konnte mich bisher live nicht mitreißen."
Rating: 4.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=86&gimmick=Bryan+Danielson
Comment: aulitwrote on 24.06.2007:[10.0] "Als Face zu Beginn farblos, als Heel weltklasse. Danielson ist einer der besten Wrestler der Welt. He never fucks up..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Keithnelson18wrote on 12.02.2025:[10.0] "One of the best wrestlers WWE has on their roster today. Most of my favorite matches in WWE involve him, he makes a match that seems alright on paper and turns it into an amazing match that makes their opponent look legit. He saved the Intercontinental Championship with his 666 Day reign was putting out banger after banger matches."
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Purgatory753wrote on 12.02.2025:[8.0] "i really dont get why his score is so high. hes great in the ring, good on the mic, has a decent look and moveset, but nothing about him really screams "one of the best in the world." to me"
Rating: 8.0
Sentiment: 0.460952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Ghaith000wrote on 11.02.2025:[10.0] ""Gunther is the best wrestler in the company currently and one of the best wrestlers in the world. He presents pure wrestling, free of clown moves. His wrestling style is considered one of the best styles in the history of the sport.""
Rating: 10.0
Sentiment: 0.6023809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: finbarwrote on 09.02.2025:[10.0] "one of the world's best wrestlers - a joy to watch and perhaps the greatest professional wrestler (not named Bryan Danielson) in the history of WWE. shame his WHC run has been underwhelming thus far, but give him a true David/Goliath match (see Tyler Bate, Ilja Dragunov) and sparks will fly."
Rating: 10.0
Sentiment: 0.5928571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Nickswrote on 06.02.2025:[10.0] "A truly incredible wrestler, who always manages to offer great matches and great performances. In terms of pure wrestling in WWE at the moment he is the best."
Rating: 10.0
Sentiment: 0.7428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: bigredtalk89wrote on 27.01.2025:[8.0] "Gunther is objectively great, which is what makes him so tough to rate. His work rate is among the best in the world. I haven't seen a great promo from him, yet he's presented in such a way that it doesn't really matter. He's more intimidating when he's barely talking. He single-handedly has given the Intercontinental title prestige again, especially with his matches at Clash at the Castle and Wrestlemania. A throwback to a distant era, only bad booking can stop him."
Rating: 8.0
Sentiment: 0.1800925925925926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: driftydeadwrote on 26.01.2025:[10.0] "The best wrestler in the world, if you loved classic AJPW, early NOAH, The Four Pillars of Heaven. You will instantly love Gunther. The presence, the looks, the moves. He's got it all. Gunther would be a top wrestler in any era or timeline in wrestling."
Rating: 10.0
Sentiment: 0.49444444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: UltraMark1wrote on 24.01.2025:[10.0] "Gunther is one of the best Wrestlers in the world but for some reason it's seems like HHH has watered him down and not let him have as good matches as we know he can have in the last year or so - his world title reign has been underwhelming unfortunately compared to his IC title reign - regardless he's still easily a 10/10"
Rating: 10.0
Sentiment: 0.24629629629629626
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MaNemJeffMaddoxwrote on 20.01.2025:"[10.0] This dude is a beast. Old school grit, awesome presence, a true world champion, no matter what promotion he'd be working for. Definitely one of the best in the world today, and would probably be one of the best in the world in any era of of professional wrestling."
Rating: No rating found
Sentiment: 0.5071428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: mj2609wrote on 19.01.2025:[10.0] "An all-time great in-ring worker who would have been a main-event heel in any era of wrestling. His matches with Ilja are some of the best in the company's history and his NXT UK title run is historic. He then had one of the greatest main roster callup in the company's history and was immediately strapped up with the IC title immediately and then went on to have the greatest midcard title reigns in WWE history. Had all-time classics with Sheamus and Drew Mcintrye, and then dropped it to Sami in another WM classic. He then went on to have a killer KOTR tournament which ended with him emerging as the winner. And he is now the World Heavyweight Champion and has now added a lot of personality to his character with his promos with him becoming an overconfident smarky a-hole."
Rating: 10.0
Sentiment: 0.5729166666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: 77mega6wrote on 19.01.2025:[6.0] "Gunther's good, no doubt--he's got solid in-ring skills and a strong presence. But I'm just not sold on him yet. Watching his matches, there's something missing to make him great. And I gotta be real, it raises an eyebrow as to why Triple H is so high on him. Don't get me wrong, I see potential, but for someone to be pushed like this, there has to be that wow factor. Let's see if he can prove me wrong, but for now, I'm not fully convinced. Border line up session from triple H and regal"
Rating: 6.0
Sentiment: 0.10848484848484849
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Jcoo91wrote on 16.01.2025:[3.0] "Very good in-ring wrestler but his world title reign is so boring and underwhelming. I don't see him as a "Main Eventer". His only main event on a PLE was vs. Randy Orton at Germany & Against Cody Rhodes in a champion vs.champion match. He don't add something extra to the World Title. Guy who almost never loses since arriving in WWE but still don't feel like a real main event guy. People don't take him as a Wrestlemania main event eventer even not for night 1. Almost everyone don't even put the World Heavyweight Championship at a Wrestlemania 41 main event even not for Night 1. Gunther is a good TV worker. but most of his PLE matches are not so good if you look back. I give credit to Sheamus for Gunther's hype. Great IC Champions but not a good World Champion. Even Bret Hart said he didn't liked Gunther's style and his countless chops to force a reaction from the crowd. His mic skills are ok but he is very dry. To be honest, I think Ludwig Kaiser is superior wrestler than Gunther and have much better personality and better mic skills. This rating is for Gunther's current World title reign. I think he should lose the title before WrestleMania. I don't see him as a WrestleMania main eventer even if The Rock is not part of the show."
Rating: 3.0
Sentiment: 0.26179487179487176
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Madripoorwrote on 15.01.2025:[10.0] "So, sooo good. One of the best in the world right now and in the near future. It's a shame than he works for a company in which he will always play second fiddle to homegrown talent, Roman above all others. He could be so much more."
Rating: 10.0
Sentiment: 0.32321428571428573
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: justputdanielwrote on 09.01.2025:"My current favorite. Everything he does is insanely believable and they way he controls the pacing of the match is incredible. He can put on a good match with anyone."
Rating: No rating found
Sentiment: 0.5199999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: NoOne2wrote on 08.01.2025:[10.0] "A powerhouse wrestler, a great wrestler and the best wrestler in WWE right now. He knows how a powerhouse should finish his match (often with a submission). He is a wrestler who, when he comes to a promotion where his moves are limited for a powerhouse, can adapt his moves very well according to the style of that promotion and in his career he has always performed wonderfully in all his matches and has always adapted his style and fighting in the ring according to the psychology of pro wrestling."
Rating: 10.0
Sentiment: 0.5357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MEDaminewrote on 04.01.2025:[10.0] "An absolute force of nature in WWE, he's good at everything. His matches are mostly classics or great. His Mic-skills are very good, and they vastly improved since that feud against Miz, and reached its peak in his current WHC run, and also an underrated storyteller. His ability to connect with fans, further cements his status as a standout performer"
Rating: 10.0
Sentiment: 0.38875000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: AJN7wrote on 03.01.2025:[10.0] "The Ring General is the best professional wrestler on planet earth. Not much needs to be said, I absolutely love his old school style, and the gimmik of 'I can beat the shit out of you and there's nothing you can do about it'. Some things don't need to be overcomplicated."
Rating: 10.0
Sentiment: 0.20714285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TripleCrownwrote on 27.12.2024:[9.0] "Awesome wrestler and a real throwback that was needed in this current generation of professional wrestling. The guy can go in-ring and his ability on the mic is really good. Looks so much better now he has lost a lot of weight. Really hated the Gunther name at first, as I had gotten so used to him as WALTER. But it seems like the decision paid off, and I can't really imagine calling him WALTER now. I do feel like he needs the right opponent in-ring, if you put him in there with a below average wrestler then I don't think you'll be getting a good match out of him."
Rating: 9.0
Sentiment: 0.2404761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Its Clobbering Timewrote on 26.12.2024:[10.0] "The Best Wrestler in the world right now and has been for the last five years. Walter/Gunther Style is so amazing, i love his hard hitting style so much and it's so unique nowadays because very few wrestlers have a similar style. It's a much more old school style that is so needed in todays professional wrestling. His chops are deadly they are so vicious but that's not all he has in his move set he's also a very good technical wrestler and submission specialist and who has a plethora of holds and submissions. He also goes up top occasionally and hits a splash. I also love how he doesn't have an primary finisher and can win with any move which just shows how powerful and brutal all of his moves are. Every move he hits it looks like his appointment wont be able to get up. He has also won championships all around the world and has an really decorated career. He really put the indies especially in Europe on the map and made them must see by having some of the best matches ever. WWE thankfully does an great job with him as well making him this unstoppable monster who can't be beaten and is the longest reigning and best NXT UK and Intercontinental Champion of All time. He is Currently World Champion and i am excited to see how good his reign with the belt is gonna be and how much more prestigious it is now that Gunther is holding it. Walter is definitely the hardest hitting wrestler of all time and one of my favorites as well. He is simply the Best"
Rating: 10.0
Sentiment: 0.2820802005012531
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Daniel IWwrote on 03.12.2024:[10.0] "GUNTHER stands as a symbol of dominance and excellence in professional wrestling. As the "Ring General, " he brings an unmatched aura of authority, blending brutal precision with an old-school approach that commands respect. Whether delivering devastating chops or displaying his superior ring psychology, GUNTHER elevates every match hes part of. His reign as Intercontinental Champion showcases his status as one of the most dominant forces in WWE history, redefining what it means to be a champion. With discipline, power, and an undeniable presence, GUNTHER isnt just a wrestlerhes a force to be reckoned with, leaving an indelible mark on wrestlings modern era."
Rating: 10.0
Sentiment: -0.046428571428571444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Fejerskovwrote on 30.11.2024:[10.0] "On his way to being the GOAT. He is one of the best on the microphone his promos "with" Bret "The Hitman" Hart, Damian Priest and Goldberg is some of the best I have seen. "I hope you're a better father than you are a wrestler" Chef kiss. So good, And he is great in the ring. So great I always look forward to see a match with him."
Rating: 10.0
Sentiment: 0.7999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: chachuonlinewrote on 28.11.2024:[4.0] "Gunther is a good wrestler with plenty of critically acclaimed matches to his name. A well respected performer within the industry and by the fans. From the outside looking in - I honestly understand it and I understand his appeal. He's a big man who hits hard and that's rare to come by in today's landscape. What's his biggest strength, in my opinion, is that he's very consistent, he consistently has good matches. I just can't bring myself to emotionally connect with Gunther. His in-ring work is unequivocally strong, replete with power and technical accuracy, but for me, it often feels so monotonous and lacking in variety. His matches generally follow a predictable pattern of slow, methodical domination built around strikes and power moves that, while impactful, don't offer much in terms of unpredictability or excitement. This repetitive approach leaves little room for the dynamic back-and-forth action that can make matches feel emotionally engaging. While his hard-hitting style establishes him as a dominant figure, I find myself disengaged because there's little drama or variation in his performance, making it hard to fully invest in his bouts."
Rating: 4.0
Sentiment: 0.09791666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: AceHagannwrote on 26.11.2024:[7.0] "Gunther/Walter is a solid worker. With an immaculate presence and mic skills. A brilliant heel who always has something to say that will turn any audience against him. His matches are quite solid most of the time. Personally, I am not a big fan of his moveset, but given his size and character, it works well enough."
Rating: 7.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: darkflame4527wrote on 22.11.2024:[10.0] "Gunther is probably the most convincing in-ring worker in pro-wrestling today. His style and technical abilities are second to none. He is literally the Wilt Chamberlain of wrestlers, able to change his in-ring arsenal a seemingly infinite amount of times seamlessly. From a brutal powerhouse to a calculated submission specialist, you'll never be bummed after a Gunther match. In this phase of his career, his promo work has exponentially increased to impressive heights, with his main thing being trolling anyone who he comes across (Bret Hart, Goldberg, Sami Zayn, Cody Rhodes, etc.) His callup to the main roster has produced some of the best matches in (at least) WWE history, at Ricochet on Smackdown, CATC 2022, WM39, WM40, and many more to come. His NXT UK run at this point is arguably more impressive. His 800+ day reign as UK champion was most remembered for the forever iconic Ilja Dragunov matches, as he truly embodied a monster during that time. Before that, his indie scene work with ZSJ, Darby Allin, Will Ospreay, and a plethora more I have no clue about was also goddamn good. The only blemish on his already decorated career was his Gha-Cha-Ping gimmick, which had a really short life but was really disinteresting to view. But that really didn't have any impact on his career or on wrestling minds worldwide, so it doesn't really matter."
Rating: 10.0
Sentiment: 0.30993589743589745
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: LittleMobinowrote on 17.11.2024:[10.0] "The best European wrestler of the last 20 years. He is wonderful in all factors and it can even be said that WWE does not deserve him because Walter deserves much more than just winning a belt and he should own all the belts of Monday night Raw."
Rating: 10.0
Sentiment: 0.42115384615384616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: browntheclownwrote on 05.11.2024:[10.0] "THE RING GENERAL GUNTHER , the greatest wrestler of this generation. His mic work currently is one of the best in the company. He can have a great match with anyone. I also really appreciate his chemistry with kaiser."
Rating: 10.0
Sentiment: 0.5083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Ace00wrote on 04.11.2024:[10.0] "One of the best wrestlers in the world, simple as that. His character work and mic work is meh but his in ring ability covers that. Always reliable when you need a great match"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: nabigoyewrote on 03.11.2024:[10.0] "Der beste "Wrestler-Wrestler" momentan und dies auch schon seit einiger Zeit. Walter/Gunther ist unglaublich legit, zeigt immer großartige Performances und ist einfach das Herz und Blut von diesem Sport. Die Zeit bei wxw und den indies, sowie der nxt uk titelrun sind legendär und seit dem Mainroster callup, ist er mit abstand der Mann mit den besten und konstantesten performances. Matches haben immer ein großes feel und werden nie langweilig. Ich liebe diesen Style, daher ist Gunther ganz ganz wichtig und zurecht da, wo er ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Sweet Fighter Vwrote on 25.10.2024:[10.0] "Simply put, Gunther truly is a master of his craft. About as masterful as it gets, and already one of the greatest of all time. The man has been delivering MOTY contenders every single year since arriving in NXT as WALTER back in 2019, making him a symbol of excellence and the most consistent in-ring worker during that (ongoing) span. When he talks about the ring being sacred, he means it, and he treats it exactly as such (The Ring General is such a perfectly fitting nickname). His ability to bring the very best out of anyone he gets to work with, giving them some of the best matches of their careers, is on a level only a few all-time greats can match (Shawn Michaels, Kurt Angle, Daniel Bryan, AJ Styles etc...). Whether its a PLE match or a TV match, Gunther doesn't play around and delivers just about every time he steps in the ring. His commanding, hard-hitting, methodical, no nonsense style is a treat to watch (those devastating chops and clobbering lariats never fail to leave me flabbergasted). The way he has been booked ever since NXT has been pretty much perfect and a testament to how WWE trusts him, and he never failed them nor the fans; Legendary title reign as NXT UK Champion, legendary reign as Intercontinental Champion, and now World Heavyweight Champion. On top of that, his character work and mic skills keep getting better and better, and as of now, he has become a brilliant heel. The man doesn't have the look of a mega star, but he certainly has the class and the aura of one, and his capability to elevate and bring prestige to any title he holds, is in a class of its own, just like the credibility he brings to the table as that menacing force meant to dominate. The crazy thing is, I believe he's only getting started, and I can only hope that Gunther will rule WWE for years to come and become synonymous with that World Heavyweight Championship. Give the man some high profile feuds with the likes of Roman, Brock (dream match), Seth, Punk, Cody, Bron Breakker (later), Jacob Fatu (later) among others, and I'm sure he'll turn these opportunities into gold and further cement himself as one of the greatest to ever do it."
Rating: 10.0
Sentiment: 0.29238095238095235
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: imperiumgoatwrote on 16.10.2024:"The perfect pro-wrestler. Gunther has always been a credible cornerstone of any event he is booked on. His matches are believable, his selling is tremendous and can evoke emotion in audience from any opponent, even the most unappreciated. He can always make someone while making himself. Looking forward to how he continues to make his mark on history."
Rating: No rating found
Sentiment: 0.5466666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Wrestlingfan0808wrote on 14.10.2024:[10.0] "The best wrestler in the WWE and one of the best wrestlers in the world. The compete package. He can do no wrong in my eyes. Hes very adaptable in who he wrestles, his approach is very serious minded because this sport is so sacred! We need more Gunthers in the business imo. Der Ringgeneral! Guuuuuuuuuuntha!"
Rating: 10.0
Sentiment: 0.44826388888888885
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Bigdaddytrent999wrote on 09.10.2024:[10.0] "Literally allergic to boring matches. Gunther is the total package. His in ring work is an A+, his presentation is phenomenal, his promo work is much improved to the point to where they are a strength of his. His recent promos with Bret Hard and Goldberg are some of the better in recent memory."
Rating: 10.0
Sentiment: -0.011458333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Saladbagelwrote on 02.10.2024:[9.0] "Gunther is one of the most consistent wrestlers in the world when in comes to good matches. His ability to end a match with a simple move, yet make it believable is an extremely rare talent in his favor. The only reason I'm not giving him a 10/10 is because he's nothing special in terms of promo and character work."
Rating: 9.0
Sentiment: 0.32589285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: sharkboy22wrote on 25.09.2024:[9.0] "Gunther checks all the boxes for what a great wrestler is. He has presence, his in-ring work is extremely believable and unlike so many wrestlers today, there's no wasted motion with him. Amazing worker and deserves every bit of success he has achieved in the WWE."
Rating: 9.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: danzitorockwrote on 24.09.2024:[10.0] "There are few wrestlers who are as good at beating the hell out of someone else as Gunther/Walter, this guy is just awesome, he exhales dominance, it's a wrestler made to be protected and dominant all the time, he's super imposing, I love everything about the Ring General, a pure wrestler. Walter is simply a wrestling machine, can make a good match with anyone, and it's pretty underrated as a character, he's very charismatic. His long reigns are awesome, he demolishes people without burying them, and it's a master of psychology. In my humble opinion, this is a wrestler that would thrive in any era at any company, he's just special, a total badass. He grew up idolizing guys like Stan Hansen and Kenta Kobashi, and easily became of the best wrestlers of his generation, a purist of this beautiful sport."
Rating: 10.0
Sentiment: 0.3993734335839599
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Galmondiwrote on 22.09.2024:[10.0] "The best wrestler in the world today. Everything he does is absolutely perfect. Don't see anyone at his level, he's amazing."
Rating: 10.0
Sentiment: 0.8666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: probablylukewrote on 20.09.2024:"I don't think there's been a wrestler that is quite as timeless as Gunther. Not only can he have great, downright hard to watch at times matches with fellow hulking beasts of men like Drew McIntyre or Sheamus. He has the ring IQ to piece together a match with wrestlers that love to fly high like Will Ospreay, Jordan Devlin and Ricochet to name a few. But if you drop him into an All Japan in the mid 80s, you could thoroughly imagine a classic with the likes of Jumbo Tsuruta, Terry Funk or Harley Race. He perfectly knows how to brutalize an opponent in the most overpowering fashions, but I think what works best about him is his dynamic of feeling unbeatable. It lends to being able to have long lengthy title reigns with many different opponents, creating a new feeling of "it may finally change hands" until it just slips away. That pop when he finally does lose? To Sami Zayn, Ilja Dragunov, those moments are career defining. For Gunther? It's just finally means we're moving to something better."
Rating: No rating found
Sentiment: 0.27369834710743807
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: manamimeltzerwrote on 12.09.2024:[6.0] "A technically sound professional wrestler who's got his fundamentals down perfectly. A very good professional wrestler. I personally don't enjoy his work, at least not nearly as much as others seem to do. He hits hard and that's what I like about him, but other than that i just simply don't find his approach or his control segments compelling or interesting. He's very monotonous and has very same-ish matches with almost everybody. He just never clicked with me on an emotional level. His work feels lifeless and a bit hollow to me. Maybe someday I'll come around."
Rating: 6.0
Sentiment: 0.11986928104575162
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jrssscwrote on 12.09.2024:[10.0] "Honestly my favorite wrestler in WWE right now and easily top 3 favorites across all promotions. He is a beautiful call back to wrestling of old mixing in technical wrestling and brawling. He is as entertaining as one can be in the WWE and will have a legendary career for years to come."
Rating: 10.0
Sentiment: 0.4150793650793651
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DXTFwrote on 03.09.2024:[10.0] "WALTER/Gunther is a real throwback to a bygone era in wrestling; his style isn't flashy, there's no ridiculous gymnastics, and you're not going to see him wearing outlandish attires, instead you're getting a big, stern Austrian who has the power to blow out his opponent's pectoral muscle with one of his brutal chops. At the time of writing, he's been a champion in WWE for around 75% of his tenure with the company, which is just insane, and it clearly shows that the company has a lot of faith in him. I must admit that I preferred when he was on the heavier side as he looked more physically imposing but I understand why it's better for him that he's slimmed down in size, and it certainly doesn't appear to have negatively impacted his in-ring work. It's great to see a guy like Gunther around to show that, even in this day and age, the ring is sacred and treats it as such."
Rating: 10.0
Sentiment: -0.023306878306878283
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: nothingleftinsidewrote on 31.08.2024:[9.0] "Does he have bad matches? I certainly haven't seen one if he has. Every one delivers- hard hitting strikes, impressive throws, and sound psychology. A real throwback to the classic eras of wrestling, no-nonsense presentation and approach. Even so, his style melds well with modern wrestling styles, just see matches with Tyler Bate, Will Ospreay, Zack Sabre Jr. Adapted well to modern WWE style as well, just see matches with Sheamus, Drew, Ricochet. The only weak area for him is on the mic, and for a non-native english speaker, he does quite well, but suffers from being a bit of a one-note promo. However, he excels everywhere else so much it's not that big of a deal- when faced off with an opponent who's good on the mic, he rises to the occasion. Also, his long title runs are pretty amazing as well. C on the mic, A in the ring, A gimmick/look."
Rating: 9.0
Sentiment: 0.11127819548872182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: OneSuddenBOOMwrote on 22.08.2024:[10.0] "There isn't a single weakness this man has, his development has been insane and he's easily the best wrestler in the WWE."
Rating: 10.0
Sentiment: 0.09047619047619049
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DSStyleswrote on 22.08.2024:[10.0] "Neben Cesaro der mit weitem Abstand beste Wrestler, den der deutschsprachige Raum jemals herausgebracht hat. Auch wenn Gunther bzw. Walter nicht danach aussieht, aber er kann mit fast jedem ein 5 Sterne Match worken und hat es sich auch verdient, der längste Intercontinental Champion aller Zeiten zu sein."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: wrestlingswiftiewrote on 21.08.2024:[8.0] "Much like everyone else, I really am high on Gunther. From a match and believability standpoint, he's incredible, and I hope WWE doesn't ruin him. He's got the look of a killer, and he's always looked very intimidating. His matches? Even better... They're strong-style, hard hitting masterpieces (with some nice technical action, depending on who he's in there with.) However... His promos aren't exactly the easiest things to get through. Just slap a manager on him, and he'll be fine. Who knows? Maybe if the manager is good enough, we could be seeing the next Heyman/Lesnar pairing."
Rating: 8.0
Sentiment: 0.26678571428571424
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Lukeathonwrote on 20.08.2024:[10.0] "The most believable wrestler of the past 20 years for me. Nobody does it like him. I cant think of much else to say, he's just amazing, his body transformation is amazing and his friendship with Axel Dieter Jr. is amazing."
Rating: 10.0
Sentiment: 0.3928571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Odinohkawrote on 20.08.2024:[10.0] "Gunther is an excellent wrestler, one of the few to make us believe that each of his moves and hits could be the last. His impact, both in terms of his character and his moves, is incredible. He masters his character and has the charisma to carry off his long reigns and his role as ultimate boss. All his matches are wrestling lessons, he doesn't hesitate to give of himself and possesses exceptional strength and stamina. I'm betting heavily on his deserved reign as world champion and wish him stories to match what he's capable of telling in the ring. He can convince everyone of what happen in the ring. A master."
Rating: 10.0
Sentiment: 0.2574074074074074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: RealGrapsThomsenwrote on 18.08.2024:[10.0] "Easily one of, if not the best wrestlers alive right now. He can be technical and extremely hard hitting and stiff, can have a great match with just about anyone, and although he isnt the best promo, he has Kaiser by his side to do it for him. Extremely talented and dominant."
Rating: 10.0
Sentiment: 0.3813095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Luke Cypherwrote on 16.08.2024:[10.0] "Der Ringgeneral is exactly what wrestling needs in this modern era full of glorified gymnasts. No frills in his approach, just technical excellence and utter viciousness.You can count on him for a 5* match any night of the week. The weight loss has done wonders for his presentation, and his promo skills have massively improved now that he can actually express himself. Gunther is set to be a fixture in the main event scene for the next several years, and wrestling as a whole will be much better for it."
Rating: 10.0
Sentiment: 0.1388888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Rassle Fanwrote on 13.08.2024:[9.0] "It's been a couple of years and I'm still not use to calling him Gunther. It's a fine mononym but he was Walter for so long and I was watching him all that time that it's hard to shake. Kind of like seeing Tom Brady in a Bucs uniform. Anyway, he's a throwback wrestler that the current era desperately needs. I do admire the athletic feats of the current generation but when you're seeing a top rope Spanish Fly in every match, it stops being amazing. Walter brings a grounded, literally hard hitting style that is classic wrestling that I think would make Harley Race proud."
Rating: 9.0
Sentiment: 0.1892857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MichaelB137182wrote on 11.08.2024:[10.0] "Probably the best wrestler in the world at this stage? Somehow manages to put on insanely good matches every single time he enters the ring. Has had some of the best regarded matches ever in NXT, and also some classics with the likes of Sheamus (multiple times) and Drew Mcintyre. Also most impressive he managed to take a IC title, a title that was barely preshow worthy in the last few years, and managed to bring so much prestige back to it that it almost feels like a world championship now. Gunther might go down as the GOAT."
Rating: 10.0
Sentiment: 0.31116780045351466
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JacobTheSnakobwrote on 09.08.2024:[10.0] "Probably the best wrestler in the world over the last few years, can put on a great match with almost anyone. Has had some of the best matches in wrestling history. Can cut an amazing heel promo. I love the fact he doesnt have one finisher he uses to end a match, he just hits people until they dont get up. He could hold the WHC for a decade and i wouldnt care, hes just that good."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JulianPera50wrote on 05.08.2024:[10.0] "Superb in-ring performer, an already legend that keeps cementing a legacy as a wrestler. His strikes are something out of this world, if I was a wrestler I would been interested on wrestling someone like Gunther and see how my body ends up after being probably defeated lol. He is an amazing athlete, shows some interesting charisma at times too, he is simply great."
Rating: 10.0
Sentiment: 0.6583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Dimitrisasylumwrote on 04.08.2024:[10.0] "Simply flawless. The most believable wrestler in years. He knows how to hurt and to sell the pain and always has a smug but indimidating aura about him. Absoloutely love him."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ZerKOwrote on 04.08.2024:[10.0] "An outstanding performer who will be considered as one of the all-time greatest pro wrestlers in history in the future. Credibility, intensity, stamina, technique, character work, name it and Gunther has it all."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TrueJugoBetrugoNo1wrote on 04.08.2024:[10.0] "Der Ring General, amtierende King of the Ring sowie neue World Heavyweight Champion, Gunther. Ein wirklich unglaublicher Mann, welcher bewiesen hat, dass mit genügend Leidenschaft sowie Einsatz jedes noch so weit entfernte Ziel erreichbar ist. Egal ob man seine unglaubliche körperliche Transformation erwähnt oder die Tatsache, dass ein Mann, welcher quasi in den europäischen Indies "groß" geworden ist, nun beim Weltmarktführer den Rekord für den längsten Intercontinental Title Run hinlegen durfte, sondern auch auf der Zweitgrößten Veranstaltung des Jahres zum ersten Mal das große Gold gewinnen durfte, und dies lediglich knapp vier Monate nach seinem legendären Intercontinental Title Run. In-Ring wirklich klassisch und sehr, sehr gut. Es macht mir wirklich Spaß, Ihn im Ring zu sehen. Insbesondere seine Agilität und seine Beweglichkeit in Kombination mit seinem großen, massiven Körperbau überraschen mich immer wieder erneut. Er hat alleine in den letzten mit diversen Gegnern Match-of-the-Year-Contender hingelegt. Sein Charakter und seine Ausstrahlung unterstreichen sein Auftreten und sein vorherig größtes Manko, dass Mic-Work, konnte er auch mittlerweile für sich gewinnen, weshalb es auch hier Freude macht, Ihn mit seiner verdient überheblichen Art zu folgen. Insgesamt eine verdiente volle Punktzahl und ein verdienter Titelgewinn. Mit Sicherheit ein zukünftiger Hall of Famer."
Rating: 10.0
Sentiment: 0.05000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Quack7183wrote on 04.08.2024:[10.0] "You did it, Gunther, you did it! I'm so proud of you. That's why you're the Ring General. Amazing. 10/10"
Rating: 10.0
Sentiment: 0.4833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KobashiChopMewrote on 03.08.2024:[10.0] "He is the Ring General for a reason. There is also a reason he has been a champion for... I wanna say its 80% of his WWE run so far. He is one that people should be studying when they are training in the industry, as everything he does is just so good. Certified hall of famer, and he's only just hit his prime."
Rating: 10.0
Sentiment: 0.2125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Cletxawrote on 31.07.2024:[10.0] "He is one of the best wrestlers who is active. If you like Powerhouse style, you should like gunther. Give him the WHC belt and enjoy."
Rating: 10.0
Sentiment: 0.4222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Zak22wrote on 29.07.2024:[8.0] "Gunther is very, very good but if I dare say, ever so, slightly... overrated. Gunther can have an amazing match more often than most wrestlers but some of the matches I see people saying are amazing.... I just don't feel are that good. But look, Gunther is an incredibly talented hard hitting beast of a guy who can be damn amazing and that match in NXT UK was amazing. I've seen Gunther live and he is damn impressive and fun to watch. I'd love a Gunther run in Japan."
Rating: 8.0
Sentiment: 0.47920202020202024
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Willie 19200wrote on 25.07.2024:[10.0] "Gunther is the greatest in-ring competitor in WWE right now. He has proven on multiple occasions how great he truly is. From being the longest reigning NXT UK Champion and longest reigning Intercontinental Champion of all time. His matches with the likes of Sami Zayn and Ilja Dragunov will forever be known as some of the greatest matches in the history of the WWE."
Rating: 10.0
Sentiment: 0.6171428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: namisuzwrote on 25.07.2024:[10.0] "I really think this guy is the best current wrestler in WWE, my opinion is he's one of the best's in pro wrestling history."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Joe907wrote on 21.07.2024:[10.0] "Right now, he might be the best wreslter in the WWE. The old school wrestler with the kings road style. He is very technical and very hard hitting. Great heel and his storytelling is very good. He will bring the best out of anyone."
Rating: 10.0
Sentiment: 0.46456845238095235
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Hazelyzewrote on 20.07.2024:[10.0] "Possibly my favorite big man in the business right now, and a top 5 currently active wrestler. Gunther is the man, I am so happy to see him see so much success. He makes everyone he wrestles have close to their best match, he hits hard, and he is imposing. He's clearly studied in the ways of King's Road, and I would pay an ungodly amount of money to see Gunther vs. a prime Kenta Kobashi in any arena."
Rating: 10.0
Sentiment: 0.3060714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Gaugekelleywrote on 19.07.2024:"Already Amassed A Hall Of Fame Career In WWE: 1x Intercontinental Champion(666 Days, Longest Ever By Over 200 Days) 1x NXT UK Champion(870 Days, Longest Ever By Over 200 Days) 1x King Of The Ring 2-0 WrestleMania Record Wins Over Future Hall Of Famers Like Drew McIntyre, Sheamus, Randy Orton, Rey Mysterio, And Kofi Kingston He Is A Perfect Representation Of Strong Style In America As He Literally Chops You Down To Size Enroute To Pinning You To The Mat"
Rating: No rating found
Sentiment: 0.3155555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JBruce1018wrote on 11.07.2024:[10.0] "Maybe the greatest all-around professional wrestler that Ive ever seen. Absolutely brutal in the ring, fantastic at selling his opponents offense and very good at promos, even with English not being his primary language. The greatest Intercontental Champion ever and Im sure hell do similar for the World Championship whenever he eventually gets his hands on it as well. I did not expect Walter to transform his body and everything else for Gunther, but hes done so brilliantly and really elevated his opponents even with rarely losing."
Rating: 10.0
Sentiment: 0.35964285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: brb75wrote on 07.07.2024:[10.0] "The complete package. Probably the best wrestler in the world today. Maybe not completely as a wrestler, but as an overall performer most definitely. You can definitely see right now that he will be a HOFer. And i'm really glad that HHH gave him that push because he made the IC title most relevant since the Attitude Era."
Rating: 10.0
Sentiment: 0.29415584415584417
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: FraterAssenayowrote on 07.07.2024:[10.0] "The best male wrestler in the business today. Give him the World Heavyweight title and let him run with it, he'll give it the prestige it so sorely lacks."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: XNoWayKemoSabeXwrote on 05.07.2024:[10.0] "His in-ring ability is top tier and his mic work has been excellent. He's never failed to put on an absolute masterpiece every time he's in the ring. Future multi-time world champ!"
Rating: 10.0
Sentiment: 0.39
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: dulonicdaddywrote on 26.06.2024:[7.0] "GUNTHER has been one of the absolute highlights of WWE programming for a while now, his character is such a refreshing presence on that show. In due time I think he will be regarded as one of the greats of this era, but he still has a legacy to pave."
Rating: 7.0
Sentiment: 0.14375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GameBoyAbysswrote on 25.06.2024:[10.0] "GUNTHER can very easily make the argument that he is the best currently performing wrestler in any of the major promotions. Unmatched in the ring, in the last year he made the IC Title seem like the THE title on Raw, if not WWE as a whole. Every match he's thrown in to is practically required viewing, and his reign as the IC Champ made him the true final boss of RAW. If I rated him last year, his score would be closer to a 9, but the last few months have seen him improve leaps and bounds in regards to his mic work, and his now burgeoning arrival on the main event scene makes him one of the most exciting parts of WWE as a whole. Without a doubt, Gunther is a future hall of famer, and I wouldn't be surprised if he'll be looked back on as one of the best active wrestlers of the 2020s - and likely an all-timer of WWE."
Rating: 10.0
Sentiment: 0.15859253065774806
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Porto627wrote on 19.06.2024:[10.0] "As we speak, we're probably dealing with the best wrestler in the world, and even in the last 5 years. The guy has 2 of the most captivating reigns of this era (NXT UK and the Intercontinental Championship). The most dominant wrestler in WWE history, in my memory I've never seen a guy so strong, talented and dominant at the same time. This guy knows how to do everything, in the ring, on the mic, with his character and his aura. A future hall of famer without a doubt."
Rating: 10.0
Sentiment: 0.40370370370370373
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Roode66wrote on 03.06.2024:[8.0] "Gunther ist großartig. Aber ich komme immer noch nicht über den Namenswechsel hinweg. Außerdem hat dieses krasse Pferd mit dem Gewicht auch irgendwie an Charisma abgenommen. Schade."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: pm66wrote on 01.06.2024:"His character work is very well done, definitely a bad guy whose every move is intimidating, but still more than capable of beating down his opponents without any outside assistance. His character's goal of protecting the sanctity of this sport lines up with the work he does in the ring, as I think his matches are the best WWE has seen in a long time, and he certainly restored the prestige of a title that was treated as worthless in recent years. He consistently wrestles with a violent intensity that makes his matches feel like real fights instead of scripted performances. It's not cartoonishly violent or bloody for the sake of being bloody, it's just believable, hard-hitting, fun action that can turn a bad match into a good match and a good match into a MOTY candidate. I also love that he doesn't have a true finisher, because everything in his arsenal is lethal enough to take someone out. Promos used to be his only weakness, but he's gained a lot of confidence and moxie since coming up to the main roster to match his elite in-ring work. All in all, I think he's the best wrestler in the world today, and maybe one of the best to ever do it. Hopefully he can rack up some world title reigns so his kayfabe achievements can match the quality of his work."
Rating: No rating found
Sentiment: 0.07584656084656084
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: arihenrique11wrote on 22.05.2024:[10.0] "At 36 years old, I already consider him one of the best. His ability in the ring has never been questioned, but his evolution on the microphone is remarkable. The guy really has something different from the rest, simply insane."
Rating: 10.0
Sentiment: 0.17500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: blastermertwrote on 14.05.2024:[10.0] "Gunther elevates the product he is in; show, title, etc., putting on great matches independent from who he is wrestling, but when he matches with a guy who is on the same level with him, POOF! We have a truly banger match, one of the all time greatest even. I'm still dissatisfied with his upper midcard run level currently but the management try to cook him slowly I think, that's why we don't see him at the top right now. But he deserves a run and an ultimate domination on the highest titles, I hope we get this in the near future."
Rating: 10.0
Sentiment: 0.1988095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Chad3432wrote on 07.05.2024:[10.0] "Everything about him is incredible. His matches are brutal, hard-hitting, and believable. He has the almost superhuman ability to truly make you believe everything he is doing is real, and he truly sees every match as a real contest. His in-ring psychology and storytelling ability are incredible as he elevates everyone he works with and makes you truly want them to win. His work with the IC title reserved what felt like years of the belt meaning nothing."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MarkMcMarkington2wrote on 02.05.2024:[10.0] "The absolute perfect example of a monster heel. GUNTHER would thrive in literally any era, promotion or country. A cocky German brute that hits like a truck. Love him."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: cerealkillerwrote on 01.05.2024:[9.0] "Incredible old school heel wrestler. Every match feels big. Understands the sport more than most. Stands out in today's wrestling landscape."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jcheng777wrote on 24.04.2024:[10.0] "Gunther represents the pinnacle of pro wrestling in my opinion. Someone who is believable as a physical presence whilst being outstanding in the ring with incredible work-rate, he can easily put on a MOTY contender with anyone at any given time. Been a fan of his for 8 years and I cant wait to see him ascend to a very well deserved place at the top of the card. A highlight of his is the fact that he makes any move look believable as a finisher, especially with his devastating and excruciatingly painful chops."
Rating: 10.0
Sentiment: 0.14757575757575758
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Lesn019wrote on 15.04.2024:[10.0] "Gunther is the epitome of the perfect Powerhouse, he's not just brute force and brutality but he carries with him an arsenal of highly versatile moves that sets him apart from all the names that have ever stepped foot in wrestling. You can never expect him to be down and out in a match, he's capable of overcoming any challenge; he's also reclaimed the value of the Intercontinental title and had the greatest reign of all time with the title, he's not just great in the ring, but he's great for the company as a whole."
Rating: 10.0
Sentiment: 0.5005555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: HugoRoidswrote on 15.04.2024:[10.0] "My favorite wrestler of all time. Every time Gunther is on the screen, he demands your attention. I've never seen someone put on so many classics with as many people in as short of a time. I won't lie, I've only watched his WWE work, but if he was still this good in the indies then it's mental how amazing he is. His stiff, brutal, hard hitting offense is my favorite possible style. His mic work has gotten really good as well. He's simply the best wrestler alive, and one of the best wrestlers of all time. He better be a multi time world champion by the time he hangs up his boots."
Rating: 10.0
Sentiment: 0.26942355889724307
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: cal9099wrote on 07.04.2024:[8.0] "Great upper mid card type guy and I respect his toughness, but never really done it for me. Has had plenty of great matches but just never someone I've been excited to see despite almost always performing. Perhaps a bit one note for me with his offensive style."
Rating: 8.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GhassaneJabriwrote on 07.04.2024:[10.0] "WALTER/Gunther is one of the best wrestlers currently working today. WWE's greatest performer and attraction. The most consistently awesome wrestler who ever had to work under the WWE umbrella, every single move he pulls is incredibly threatening and effective. And it's really awesome that for his entire NXT UK and main roster runs, he has been booked as an ultra protected dominant final boss who will be dethroned by whoever the underdog will be. It worked amazingly with Ilja Dragunov during his NXT UK run, especially during their matchups that were the most eye-watering and intense WWE matches of all time. And despite my usual issues with WWE's booking, I'm confident that his run will be just fine and whoever will dethrone Gunther of his IC title will come out of it more of a star than he'd ever be. Gunther has proved to be the biggest overachiever of the main roster and also a wrestler who is totally in control of his career trajectory."
Rating: 10.0
Sentiment: 0.3967532467532467
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: arisenbywrote on 06.04.2024:[9.0] "[8.9] GUNTHER (or WALTER, depending on your preference) is the definition of a 'big fucking star'. In every promotion he has been in, he immediately feels like the biggest deal there (often so much so that it's to the detriment of whoever happens to be top dog before him.) His moveset is very simple, but extremely effective. It's not controversial to say that he has the best chops in wrestling right now, plus he feels like he can end a match on literally any move. Promos used to be a weak point for him, but he's significantly improved over the past year or two, making him one of the few wrestlers where it's hard to find a single weak point. He's one of the few wrestlers who I could actually stomach holding a title for over a thousand days, and that is saying something."
Rating: 9.0
Sentiment: 0.017923280423280407
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Nudlewrote on 05.04.2024:[10.0] "The current best wrestler in the world in my opinion. He's fantastic at literally everything that is pro-wrestling."
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Zetz77wrote on 05.04.2024:[10.0] "If I were Hunter, I would put the world title on Gunther and let him carry that title for a decade, without irony, that's how good Gunther is, since Gunther appeared as a surprise at NXT UK Takeover Blackpool in 2019 he is the The best wrestler in WWE, he is possibly the only wrestler in the world without a bad match, Gunther's only flaw is that he's not called WALTER anymore, but that's a small difference."
Rating: 10.0
Sentiment: 0.10714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: sarahlicitywrote on 29.03.2024:[10.0] "To borrow an oft-used phrase, Gunther "brings the feeling back" to WWE. Its no surprise that even while the main roster was faltering under McMahon, under Triple Hs supervision of WWE, he became a dependable asset to NXT. Because Gunther is a simple character, when all is said and done: hes a brick shithouse of a man who will chop you back to the stone age if you dont give him the respect he deserves. And he deserves that respect, because he truly is a shining beacon on any card that is lucky to have him. If Triple H is smart enough, he puts the belt around his waist pretty sharpish, because the only thing that will look better than the Intercontinental Championship on him is the WWE Championship."
Rating: 10.0
Sentiment: 0.14642857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Cass93wrote on 26.03.2024:[10.0] "This guy could have made it in any era, he is technically sound, he is a ring general can call everything on the spot, he has underrated promos and segments 10/10"
Rating: 10.0
Sentiment: 0.22500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: CDProsProwrote on 26.03.2024:[10.0] "Zápasník, Mistr, Legenda, Generál True Ring. Intercontinental Championship is prestigious once again special thanks to this man, GUNTHER. His run as the longest NXT UK champion was glory compare his entire run in WXW as WALTER but WXW is forever be his home where he perfected this craft. His chops are the sweet sounds of toughest, his power bombs can knock off the smoothest of contortionists or mixed marital artists. His top rope splash ends reigns in elegant fashion. His facial expressions of class, surreal prowess, ramentum to lift up challengers and lack of remorse for their short comings. He is Gunther and the longest intercontinental champion since Honky Tonk Man way back to 1989. Hail Der Ring General and may his power continue through the RAW landscape like Dvorak intended. When history books is written, documented and told, Gunther will be one of the best pro wrestlers to have existed in 2010-20 hereafter. Surely the greatest intercontinental champion of all time."
Rating: 10.0
Sentiment: 0.2839043309631545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MrLuke25wrote on 19.03.2024:[10.0] "One of the few "brings prestige to [SECONDARY TITLE]" that has genuinely made the title feel more prestigious. Gunther's WWE body of work (including his run as NXT UK Champion) leave no doubt of his position as one of the best pro wrestlers in the world today."
Rating: 10.0
Sentiment: 0.27999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Homerwrote on 16.03.2024:"Rarely defends his championship and even tho his matches are good and fun to watch, his mic skills are upper trash. 3/10"
Rating: No rating found
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Alphajwrote on 09.03.2024:"10.0 My top wrestler of all time. Has all the skills, works hard and hits harder. The only downfall is losing tons of tag matches. I guess it comes with the faction but never getting pinned and not losing in singles should stand out above everything. Amazing technique can fly off the ropes has ground and stand up game plus multiple moves. The real ring general."
Rating: No rating found
Sentiment: 0.12348484848484849
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ultravioletshiroiwrote on 09.03.2024:[10.0] "Gunther is the perfect war machine and exactly what you want in a professional wrestler. He can make even simple strikes, grappling moves and submissions look absolutely brutal, making him one of the most dominating looking heels in the WWE. He's also a very good worker and can make his opponent look really good too when he needs to. I'd say he's easily one of the most exciting wrestlers in WWE today."
Rating: 10.0
Sentiment: 0.3471212121212121
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Dirty Diegowrote on 07.03.2024:[10.0] "I hope this year when wwe goes to Berlin , Gunther wins the big one from either Cody or Roman, Gunther has been the best thing about wwe since triple h taking over creative and in my opinion is the best intercontinental champion of all time, his in ring work is the most believable hard hitting stuff your going to get in pro wrestling today"
Rating: 10.0
Sentiment: 0.3231481481481482
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GuntherHater3000wrote on 29.02.2024:""I've never liked big guys in wrestling. I get so bored of big man slapping each other. Walter's wrestling style is extremely boring to watch for me. He has some charisma and I wouldn't call him a bad wrestler but him being 5th highest rated superstar in history of WWE is ridiculous to me." he never defends his IC Title."
Rating: No rating found
Sentiment: -0.3697916666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: tlaustinwrote on 21.02.2024:[10.0] "One could spend the rest of his life watching WALTER/Gunther matches and still not see everything he's capable of. A man of incredible cardio, power, technique, and storytelling, he is a huge monster heel with a completely sympathetic arcing narrative: he's the "serious" one here to "save wresting." He's even arrived as a great and intense promo as well, carving out a presence that any promotion lucky enough to have him will build their next ten years around. There is almost no one else in the business right now that can make you believe the way he does. It's also just so god-damn refreshing to have some in WWE that feels like anything that he does can be a finisher, instead of the Pavlovian response the typical WWE match normally puts you into."
Rating: 10.0
Sentiment: 0.2512698412698413
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JonathanV93wrote on 18.02.2024:[10.0] "The best wrestler in the world at the current time of this review. Excellent matches, excellent promos, there is nothing this man can do wrong. It's shocking how many PLEs WWE does not feature this man on, you are almost guaranteed an above average match when he wrestles. His moveset is flawless, and he moves with such fluidity, that it is almost impossible for him to have a bad match."
Rating: 10.0
Sentiment: 0.11410256410256414
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ChainsawJediswrote on 16.02.2024:[10.0] "The best wrestler of the modern age, and I am still not sure we have seen what he can do yet. His matches build and build so naturally to a crescendo. He is so within his character and a tactician in the ring."
Rating: 10.0
Sentiment: 0.2625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: SignPlenty44wrote on 14.02.2024:[10.0] "GUNTHER is one the best wrestlers currently. This man has literally everything with entrance, gimmick, wrestling style, promos, everything. THE RING GENERAL is such a final boss type gimmick where nobody can seem to defeat him. GUNTHER is one of my favorite wrestlers to watch on TV."
Rating: 10.0
Sentiment: 0.25833333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Beeebonwrote on 13.02.2024:[9.0] "Having got back into Wrestling only last year a d subscribing to the WWE network I decided to start watching the weekly programming of Raw and Smackdown starting from Jan 2022. When Gunther appeared he felt like a breath of fresh air, nothing very flashy with his style but he is hard hitting and makes his moves count. Also for a big guy he sells very well and shows a lot of in ring intelligence. I have since looked up matches of his on YouTube before he joined the WWE and have enjoyed everything I have seen."
Rating: 9.0
Sentiment: -0.01567599067599068
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: brennyomegawrote on 12.02.2024:[10.0] "When all is said and done, GUNTHER will be up there with Daniel Bryan/Bryan Danielson and Bret Hart as the best workhorse of all time. He's not going to reach Roman/Rock/Austin/Cena levels of popularity, but everyone knows that if GUNTHER is on the card, you're in for a god damned masterwork. He can go against luchadors, cruiserweight, middle weights, heavyweights, etc, and the match will be the best of the card. Just remember all caps when you spell the man's name"
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: mxkamiwrote on 11.02.2024:[10.0] "This generation's perfect wrestler. Size, presence, ability, and people are finally being able to see how great of a promo he can be. He carries himself in a way that portrays strength, discipline, and importance. He has done WONDERS for the WWE Intercontinental Title, and not gonna lie, I hope he challenges for a top strap soon and WINS, becoming a dual-champ. My partner is fairly new to wrestling, and like a lot of people didn't "get" WALTER/Gunther. Then she saw the Sheamus match. Then the Sheamus/Drew match. Then the Gable rivalry. Then the promos on Miz during their short feud. And the past two years' Rumble performances. This, is what makes WALTER/Gunther such a great pro-wrestler. The ability to get over in what he does, even to someone who hasn't been watching wrestling for decades and was a self-proclaimed hater of big-men (she's been swayed since *Bronson Reed mark now, which makes me hella proud*). Der Ring General has been a fave of mine since about 2016 when I got back into wrestling (thanks wrestling Twitter for the GIFs! ) and I still look forward to what's to come when he appears on my screen."
Rating: 10.0
Sentiment: 0.3286096256684492
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Yesgarwrote on 07.02.2024:[10.0] "One of the best wrestlers Ive ever seen. Has solidified him self the greatest Intercontinental champion ever with banger after banger. Is always a contender for Wrestler of the year. It is very rare for Gunther/Walter to have a bad match. Even his worst matches are enjoyable, one the most underrated talkers on the mic. One my favorite things about Gunther/Walter is he makes every move look like it hurts and his versatility he doesnt have a set finisher as used a lariat close line, power-bomb, and a Firemans Carry Sit-out Bodyslam. Cant wait to see whats next hopefully by years end he is worlds champion."
Rating: 10.0
Sentiment: 0.24333333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Jabroniwrote on 06.02.2024:[10.0] "Easiest 10 you can give right now. Best technical wrestler BY FAR, better than any indie talent or anyone in Japan or Mexico. Like it or not, his promos are excellent and believable. He talks the talk and he walks the walk. Every match is a must see."
Rating: 10.0
Sentiment: 0.4232142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TheVoiceOfReasonwrote on 23.01.2024:[10.0] "Gunther is the prime example of "Living up to expectations." He is The Ring General for a fucking reason! His match with Sheamus at Clash at the Castle was incredible. He topped that with Sheamus & Drew McIntyre at Wrestlemania 39. A man who I think could have great matches with the likes of Bryan Danielson, Claudio Castagnoli, Seth Rollins, Brock Lesnar & AJ Styles. He would've fucking had instant classics against Kurt Angle, Arn Anderson, Ricky Steamboat, Chris Benoit, Eddie Guerrero, Chris Candido, Dean Malenko, etc."
Rating: 10.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MichaelDaviswrote on 21.01.2024:[10.0] "The only reason to check in with WWE programming in 2024. GUNTHER is a love letter to guys like Kenta Kobashi and arguably does the style just as well, although he doesn't exude the same level of charisma. The only major issue I have with GUNTHER is, well, I'd rather him be anywhere else! He's in his prime right now and could be having all-timers with guys like Shingo Takagi and Hangman Page to further his case as one of the greats."
Rating: 10.0
Sentiment: 0.12340561224489796
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KittyAlpha2424wrote on 19.01.2024:[10.0] "An excellent wrestler who both embodies and deserves the nickname that he dons on his trunks. His moveset is simple, yet brutally effective. And to add to his outstanding in-ring ability, his desire to "respect the sport" shines in his psychology, always making his matches easy to buy into. His run as Walter was already all-time as is, but his body transformation since getting to the main roster in WWE and changing his name to Gunther has, in my opinion, primed him to be an all-time great in the sport, regardless of the company. Also to note: Dvorak's "From The New World" entrance with the marble pillars is a visually and acoustically beautiful aesthetic."
Rating: 10.0
Sentiment: 0.4486363636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: The Quick Manwrote on 13.01.2024:[9.0] "Frankly, THE reason you tune into WWE's weekly programming. Endlessly talented, smash-mouth, intimidating presence, underrated promos. GUNTHER is the closest WWE has to a perfect wrestler, in my opinion."
Rating: 9.0
Sentiment: 0.6777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DerRingGeneralwrote on 08.01.2024:[10.0] "One of the best giant inring performers even tho they're just in their shining era yet... We should know his price, an active champion in WWE and a guy who just made Intercontinental title get important again. He held two titles in WWE, and both are in history, they both legendary, majestic. WWE and their universe should know his price. One of future G.O.A.T's. Since the day that he became Internet Champion, defeated Will Ospreay, and held the title that Danielson, Omega etc. held, he is a future star. His moveset? Also pretty good. He makes powerbomb look too good, same for Lariat. Attire, mic skills blah blah... He's a 10!"
Rating: 10.0
Sentiment: 0.3560606060606061
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: morgomirwrote on 05.01.2024:[10.0] "This guy is wrestling. A pure talent, with presence and charisma. He is capable of great matches against all kind of opponents. WWE have gold with him. After he will lose the intercontinental championship, I hope he's gonna be world heavyweight champion, or more."
Rating: 10.0
Sentiment: 0.4628571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: RobinsonSpecialwrote on 05.01.2024:[10.0] "I'd say he's the best wrestler in the company---if not, definitely the best champion. From a wrestling standpoint: absolute workhorse and always willing to put effort into bringing quality and elevating wrestlers in every match he does. Other champions would just show clear dominance over the opponents, but he often tries to make them look like they have a chance and that they push him to the limit. I also love how often he tries new moves and new finishes; it feels very fresh. From a character standpoint, he has a menacing presence and sense of delivering honor to the ring that makes sense. Really wish he still had his old Symphony 9 theme; I still think that fit his energy the best. Overall he's definitely brought prestige back to the championship and I'm looking forward to what he does next year and after he eventually loses the belt."
Rating: 10.0
Sentiment: 0.1646837944664032
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TheOneAndOnlyCactuswrote on 31.12.2023:[10.0] "WALTER is an all-time great talent. An amazing powerhouse with great technical prowess, wherever he goes, he brings gold home. A mix of throwback presentation and modern action, he is obviously Austria's greatest ever wrestler."
Rating: 10.0
Sentiment: 0.43750000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: thedman0310wrote on 28.12.2023:[10.0] "What is there to say about Gunther that hasn't already been said? Great look, solid promo, and some of the best matches WWE has ever seen. Long may the Ring General reign!"
Rating: 10.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: HfnHwrote on 26.12.2023:[10.0] "WALTER/GUNTHER has every right to be considered one of the best pro wrestlers not only of his generation but of all time. He managed to make such a simplistic style of wrestling, with body slams, submissions and strikes, look great by giving it his own special touch of brutality, especially in his deadly and iconic chops, and in a world of high-flyers and fast technical wrestlers, WALTER manages to stand out extremely well among the rest, looking like a true old-school wrestler in the modern era. Ever since I first discovered him in 2018, he has made his name known in the wrestling world with countless incredible matches against Tyler Bate, Ilja Dragunov, Pete Dunne, Tommaso Ciampa, A-Kid among others. But just when you thought he would suffer the same dreaded fate of previous NXT Call-Ups (starting with the name change), the only thing the rechristened GUNTHER lost was a ton of weight, putting him in great shape, and managed to retain every last drop of momentum he had from his historical NXT UK Run, by becoming the longest reigning Intercontinental Champion of all time. From there, he ended up putting on some of WWEs greatest matches of the past decade against Sheamus, Drew McIntyre, The Miz, Ricochet and many others as The Ring General soon became a household name in modern wrestling after years of dominating the UK Indy scene. From his commanding aura to his iconic matches to his simply brilliant in-ring prowess, I think its safe to say that GUNTHER has earned his place among the very best in wrestling and the sky is the absolute limit for him."
Rating: 10.0
Sentiment: 0.2784105534105534
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Vanstylerwrote on 21.12.2023:[10.0] "Intimidating wrestling machine. Obviously I've followed in his footsteps through independent companies and Gunther is one of the best at what he does. Every time he appears he commands respect and feels like the arrival of a final boss, a tremendous athlete."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: laddermatchwrote on 21.12.2023:[10.0] "Gunther/WALTER is the greatest big man wrestler in the business today and in my opinion the greatest Intercontinental Champion of all time. I've been on his bandwagon ever since I saw his match at Joey Janela Spring Break with PCO and I had to watch everything this guy did. His work in companies like wXw, Progress, RevPro, and OTT put him on the map. His NXT UK run was absolutely phenomenal and he had many match of the year contenders there, two of them with Ilja Dragunov. The man is simply incapable of having a bad match. He's a throwback in many ways to 1990's AJPW. His chops are very Kenta Kobashi esque. He brought the kings road style to WWE and I love him for that."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Logewrote on 14.12.2023:[9.0] "Awesome (fairly) young talent who got WWE Match of the Year. Several times. And I don't even have to tell you what match he had that was match of the year for 2023, you already know it. His IC reign has made the title matter again, and if I watched him in NXT I might change my rating to a 10. I know its criminal but I haven't seen much other than a few highlights of him as Walter. I love the name Walter tho. Walter dog. Walter Clements I like monster trucks and fire trucks. Walter. I also like Gunther though. I like how Imperium are evolving as well. Probably the best heels in the WWE right now imo, although it's at that point where you do hear people cheering for them since even though they're heels they're undeniably good. Every time I see Gunther backstage he always stays true to his character, whether intentionally or not, and he truly seems to care about the art of the sport even if he doesn't show it outright and seems to not care about the history and only cares about himself."
Rating: 9.0
Sentiment: 0.2675595238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MaelEspina94wrote on 13.12.2023:"Maybe the best Intercontinental Champion of all times and one of the Highlights of Raw, I cannot wait to see him as World Champion."
Rating: No rating found
Sentiment: 0.3846153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Grapefruit Juicewrote on 13.12.2023:[10.0] "The highlight of any Monday Night Raw as of writing this. Gunther is a killer and his reign has added a true sense of Legitimacy to a belt that desperately needed it. Undeniable and incredible talent in the ring, a good promo, and a truly impossible to hate gimmick. Long Reign the Ring General!"
Rating: 10.0
Sentiment: -0.0372150997150997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Dntbamarkwrote on 27.11.2023:[7.0] "Reminds me alot of a bigger version of Chris Benoit/Dynamite Kid. Stiff strikes, tons of suplexes and overall solid in-ring fundamentals. Like i said, he's a big dude whose really come a long way as a performer since he lost a ton of weight. His IC title reign has been solid but that title has been so devalued by the introduction of the WHC and the United States title that it's hard to bring respectability to something that's nothing more than a mid-card title. He's also not the best promo and his charisma leaves something to be desired."
Rating: 7.0
Sentiment: 0.104004329004329
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JediSaiyanMaster1203wrote on 27.11.2023:[10.0] "No matter if he's WALTER or Gunther, he's the man. Always fun to watch in the ring, he's not called "The Ring General" for nothing, can get a good match out of anyone no matter his opponent, has been putting on Match of the year Candidates left and right, whether in NXT or on the main roster, Gunther just doesn't miss. Despite Triple H is doing everything he can from preventing Gunther from stealing the show every night lately, he still goes out and performs great matches. His psychology and storytelling is off the charts, knowing how to get the fans to have hope that he will lose until the end of the match when he goes for the win, no matter who he faces, he knows how to lower you in. Lately, his entire gimmick on the main roster has been perfect, well executed and has been among the best portions of the company. It's nice to see someone be against Sports Entertainment and actually value Professional Wrestling in WWE, and you can tell it's more than a gimmick to Gunther, which makes it even better. He knows how to play the role well, comes off as believable, doesn't make it corny, he has enough charisma to make it work, making it my favorite character in WWE today. Not only that, he's been the best in ring wrestler since his arrival in NXT."
Rating: 10.0
Sentiment: 0.34871031746031744
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: skyesversionwrote on 08.11.2023:[5.0] "I mean, he's good I guess. But people are calling him the best in the world right now and I'm trying to figure out why. He can wrestle, sure, but for me a wrestler needs to be the full package. Mic skills, character, charisma. He just doesn't have those abilities. Plus, his IC title reign isn't nearly as good as people are saying it is. I don't know. Something just doesn't quite click for me. He's the Rhea Ripley of the Men's division but slightly better. Maybe I'll get the hype soon who knows. But if not I'm perfectly okay with that."
Rating: 5.0
Sentiment: 0.3859126984126984
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: theeternalsovereignwrote on 25.10.2023:[7.0] "Gunther hasnt been on the made card but not only is he already making a mark on the collective por wrestling world but hes making a significant impact on my own entertainment preferences. In just a few short years he has set a record for the WWE Intercontinental Championship and put on a hell of a performance at a royal rumble. As far as his attributes he has a very diverse striking and powerhouse style but itsnt afraid to leap off the ropes. He has probably the best chops in pro wrestling history and even with an accemt he gives powerful and well delivered promos. I think only time will tell to see if this is peak Gunther or if he could become even better and I will ammend my rating if he does improve but as of right now he is one of my favorite parts of Monday Night Raw if not WWE in general."
Rating: 7.0
Sentiment: 0.19882029734970907
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Frank Shooterwrote on 19.10.2023:[10.0] "The most legitimate badass in WWE along with Brock Lesnar. I'm so glad that WALTER has found his place in a company like WWE without losing his essence at all. Bringing the Old School European Wrestling style mixed with the classic Puroresu Strong Style of the likes of Kobashi and Misawa into the mainstream with the enough presence to be taken seriously by casual fans. This guy is not only going to break The Honky Tonk Man's IC Title reign record, but he will be the top heel to beat once Roman Reigns loses the Undisputed Championship. EDIT: He already broke the IC Title record, and I can call him without a shadow of a doubt the best wrestler in WWE today and one of my 4 top favorites along with Jay White, PAC and Meiko Satomura."
Rating: 10.0
Sentiment: 0.19333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Jesse Wulfwrote on 17.10.2023:[10.0] "Does anything else really need to be said? The greatest (in ring) active wrestler alive, greatest intercontinental champion of all time, never has a match that isn't at least good quality, and he's just entered his prime as a performer, he could go at least 10 more years like this."
Rating: 10.0
Sentiment: 0.30740740740740746
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: AnthoTheKIDwrote on 15.10.2023:[10.0] "Der Ringgeneral lives up to his name. GUNTHER/WALTER whatever his name is in the wrestling world is an absolute living breathing methodical machine made for destruction. He puts stamps with his chops. The man looks great, the man moves fast for a man of his size and delivers bangers like it's easy peasy, an absolute pleasure to watch him in the ring, doing his work."
Rating: 10.0
Sentiment: 0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Zlatkiiwrote on 14.10.2023:[10.0] "Man is a freaking authoritarian anomaly who puts on banger after banger so consistently. I love his damaging style of professional wrestling warfare. Heavy-hitter, huge thrower, hard grappler, unstoppable powerhouse who is my favourite professional wrestler of all-time."
Rating: 10.0
Sentiment: 0.16166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: WOOPSwrote on 01.10.2023:[7.0] "I don't like how he is just a wrestler and nothing more. Both of his teammates are way more charismatic and are way better than he is on the mic. He should improve but it seems like WWE are fine with him being just a wrestler who puts on good matches and fecks off."
Rating: 7.0
Sentiment: 0.5194444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Lutwiejwrote on 20.09.2023:[10.0] "A great wrestler. The intensity and sheer brutality this guy brings to the table is mind-blowing. With a pretty basic moveset, like chops, lariats and powerbombs this guy produces some of the greatest matches of modern era, just by the ability to keep you at the edge of your seat. Also a great promo, and a good seller. Outstanding."
Rating: 10.0
Sentiment: 0.4722222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: The Undertalkerwrote on 20.09.2023:[9.0] "Er wirkt in seinem gesamten Auftreten ausgesprochen dominant. Im Ring scheint er unüberwindbar zu sein und alles, was er in seinen Matches anstellt, ist sehr glaubwürdig. Gunther hat einen sehr realistischen Wrestling-Stil, der ganz nach meinem Geschmack ist! Er ist im technischen Wrestling stark, aber noch mehr sticht bei ihm wahrscheinlich seine rohe Kraft sowie seine Stiffness hervor. Er führt seine Moves sehr stiff aus, besonders heftig sind natürlich seine knallharten Chops. Am meisten mag ich aber an seiner Arbeit im Ring, dass er ein Wrestlingmatch so aussehen lässt, dass sich er und sein Kontrahent tatsächlich bekämpfen und der eine den anderen wirklich überwinden und besiegen will. Seine Matches wirken nicht so, als ob zwei Worker halt ein paar spektakuläre Moves zusammen zeigen wollen und ein paar ästhetische, komplexe Konter gemeinsam ausführen wollen und irgendwann kommt der Pinfall und das wars. (Daran ist an sich nichts Schlechtes, nur finde ich, sollte das auch realistisch genug wirken.) Bei ihm aber kommt es so rüber, dass er seinen Gegner mit allen erdenklichen Mitteln und allem Ehrgeiz regelrecht niederringen will, wodurch eine hohe Dramatik und Spannung entsteht. Bei Gunther vergesse ich manchmal, dass der Sieger vorher schon feststeht und lasse mich richtig ins Match reinziehen. Unterstrichen wird sein realistischer Wrestling-Stil noch zusätzlich durch das Motto von Imperium: "Die Matte ist heilig". Also bei ihnen zählen die sportlichen Attribute und daher das, was im Ring geschieht. Ich habe allerdings auch einen Kritikpunkt an Gunthers In-Ring-Skills und zwar, dass er die Moves seiner Gegner nicht so gut sellt. Auch nach harten Moves seines Kontrahenten ist er zu schnell wieder auf den Beinen und macht unbeeindruckt weiter. Aber das ist Kritik auf hohem Niveau. Sein Micwork ist in Ordnung, aber man merkt natürlich, dass Englisch nicht seine Muttersprache ist und manches kommt etwas gezwungen daher. Ich denke aber, langfristig wird er sich da noch steigern! Dass er den Rekord vom Hony Tonk Man gebrochen hat, ist völlig verdient! Damit hat seine Intercontinental-Regentschaft auch etwas ganz Besonderes an sich."
Rating: 9.0
Sentiment: -0.2674107142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Chr1st0phwrote on 19.09.2023:[10.0] "It's not hard to do the simple things. But when you're WALTER and the simple things are what make you different, its special. What else is there to say, it's Walter, we all know how good he is. Pure simplicity of power and tyrannical emphasis in matches. THE Wrestler"
Rating: 10.0
Sentiment: 0.2024659863945578
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Omegadriverwrote on 19.09.2023:[10.0] "There's nothing else to say. This man is fucking incredible and you can see he clearly loves doing this. His in ring work, physique, character work and move set fits him very well. And lastly Gunther can put incredible matches against literally anyone."
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: deceivrwrote on 10.09.2023:[10.0] "Walter Hahn is the only wrestler that I believe to be lived up to the hype in most, if not all cases, in professional wrestling fan-sites. It is not just that he is extremely talented as a wrestler, but he is, in a way, a blast from the past type figure; he has adopted his style from the likes of Akira Taue, Kenta Kobashi and Daisuke Sekimoto from Puroresu, and the likes of Steve-William Regal, Dr. Death Steve Williams, and many more of other bygone eras. His style and standard of professional wrestling, as drawn by those influences, has caused him to be a sort of Big Bang affect on the wrestling world and it's wrestlers as a whole; he has completely made people aware and drawn to a style that no one that had initially been a fan had come to fruition to seeing on the big stage. In regards to his abilities, he is one of a kind; his mix of brutish and metallic maneuvering and strikes that make him look like Gojira itself is a complete highlight. His ability to talk on the microphone and develop a character was also one of a kind, even if he had bad names like "Big Daddy Walter" or "Gha-cha-Ping! ". In an overall standard, we must remember Walter Hahn, a.k.a. Big Van Walter, WALTER, GUNTHER, or simply as Der Ringgeneral, to be one of the greatest performers of the 21st century and, perhaps, if we continue to see the run he is on, of all time. Be afraid."
Rating: 10.0
Sentiment: 0.12767857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Wrestling Foreverwrote on 08.09.2023:[9.0] "Gebe Walter 9 Punkte und das nicht weil ich wie er Österreicher ist sondern weil ich ihn einfach Top finde, auch ist er sehr sympathisch. Er wohnt seit Jahren in Deutschland ist aber in Wien geboren worden und er hat immer noch den österreichischen Dialekt in seinem Akzent. Walter ist eine wXw Legende und ein toller Trainer. Kann mich an kein schlechtes Match von ihm erinnern das ich bis jetzt gesehen habe. Edit 06. 04. 2018 WALTER wird immer begehrter, wo er nun überall auftaucht egal ob in England oder in der USA und egal wo er auftaucht er ist beliebt und bei seinen Gegner gefürchtet. Edit 08.09.2023 es ist soweit Gunther hat er den Rekord von Honky gebrochen und auch wenn Honky darauf nicht so ganz begeistert auf Twitter getwittert hat es ist nun halt passiert. Ich beziehe mich jetzt auf Gunther aktuelle Regentschaft."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Malarkianwrote on 05.09.2023:[10.0] "Gunther/WALTER is incredible. And while I think that there are some more spectacular wrestlers in the world, if someone told me that they thought Gunther was the best I wouldn't argue. In a day and age where everyone busts out these spectacular jaw-dropping moves nightly Gunther is throwback to guys like Stan Hansen and Jumbo Tsuruta. There's no fluff or filler and everything he does is credible and believable and serves to move the match forward to it's inevitable end."
Rating: 10.0
Sentiment: 0.5055555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Foxmagic3wrote on 24.08.2023:"10/10. I could give him an eleven if I wanted. The best wrestler currently as is not even close. It might be because of my preference of wrestlers being believable and working a snug, realistic style, but Gunther is the absolute most believable wrestler currently. He has to win the world championship, HE MUST."
Rating: No rating found
Sentiment: 0.40740740740740744
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: FattitudeErawrote on 21.08.2023:"What can be said that hasnt been below already? Arguably the best European of his generation / all time. Long time follower and fan of Walter / Gunthers work and delighted that he is thriving at the level those of us who have known of him pre-WWE always knew he would. Hopeful he breaks the record for longest IC title reign and takes his rightful place in the history books."
Rating: No rating found
Sentiment: 0.4125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Lalo Camposwrote on 16.08.2023:[10.0] "The best Europan wrestler of all time, the greatest Intercontinental Champion of all time and one of the greatest wrestlers in modern history and general. A few wrestlers have his pressence, he will become World Champion in WWE soon, his matches around the world are now legendary."
Rating: 10.0
Sentiment: 0.5785714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: mayebzachwrote on 15.08.2023:[10.0] "An incredible wrestler who would be at the top of any promotion in the world. A man who oozes charisma, toughness, and an aura of danger for his opponents. Has adapted to every style of wrestling as well. I hope we get a period of his career where he travels around the world having great matches after his WWE run is over."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: celticinvaderwrote on 07.08.2023:[8.0] "Didn't think I was going to like Gunther as much as I do given I'm not usually too keen on monster heels but he's proven to be one of the highlights of the current roster. Simple but effective move set, executed to perfection by this huge yet surprisingly athletic beast. It's always a great match when he's in the ring."
Rating: 8.0
Sentiment: 0.353125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jamzell00wrote on 06.08.2023:[10.0] "Back in 2018 Walter had started getting more popular overseas as he was already a big name in germany. I could not imagine in 2023 not only would he be in the wwe but they would let him remain the same exact guy under their brand. Its lead to him being one of the best wrestlers not just in the wwe but the entire world. He's the easiest guy to book in all of wrestling. Have him kill whoever he's facing for most of the match, let them get their hope spots in, and then decide on who wins. It's such a simple match structure but how he goes about it makes him so incredibly fun to watch work. He's lead the charge in the wwe figuring out once again that big dudes hitting each other really fucking hard is the best brand of wrestling ever"
Rating: 10.0
Sentiment: 0.22407407407407406
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ismarizviwrote on 25.07.2023:"one of the most hard hitting person in this business he got power, speed , the ability to wrestle i think he will most likely lose title in next year WrestleMania .he matches against riddle in progress, him vs sheamus, him vs sheamus vs drew all worth watching"
Rating: No rating found
Sentiment: 0.16805555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Gold Fistswrote on 24.07.2023:[10.0] "Gunther is great. It seems like every time I check back here, his rating has gone up a small bit and I completely understand why. I don't need to discuss the brutal chops, just one of the many great components of his matches, which regardless of length he always finds a way to make entertaining as ever. His entire Intercontinental Title run has truly brought The Ring General into the conversation for the title of GOAT, if he wasn't already there all the way back during his epic reign in NXT UK. All being said, I would LOVE to see: Gunther win the 2024 Royal Rumble and win the WHC at WMXL, or maybe even see a pop-up rematch between him and Dragunov for the IC title at SummerSlam if Ilja doesn't beat Hayes at the Great American Bash. Just an all-rounded incredible performer Gunther is."
Rating: 10.0
Sentiment: 0.30694444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Undertaker4everwrote on 08.07.2023:[10.0] "Für mich als Österreicher natürlich ganz klar 10 Punkte! Gunther ist jetzt schon einer der Topheels der WWE und ich hoffe das er den IC Titel Rekord vom Honky Tonk Man bricht! Spätestens nächstes Jahr hoffe ich das es für ihn Richtung Mainevent geht! Ein Österreicher als World Heavyweight Champion oder vielleicht sogar als WWE Champion das hätte ich mir nie zu träumen gewagt in den 30 Jahren wo ich die Liga schon verfolge!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Loghan Morescowrote on 06.07.2023:[10.0] "A Vanguard of pro wrestling alive, the guy is just amazing at every single detail he puts out there, the perfect wrestler and superstar his theme is great his physique is great his moveset is perfect and his finisher fits him perfectly, one of the greatest intercontinental champions of all time and a future main eventer."
Rating: 10.0
Sentiment: 0.5813852813852814
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: devourblastwrote on 03.07.2023:[10.0] "A modern day behemoth. It takes a really special athlete to make long-established moves look absolutely devastating, and GUNTHER is that special athlete. I, like many others, were less than thrilled to put it gently with the initial name change, as WALTER had become a name that was truly iconic to the NXT UK brand. However, he has done more than enough to justify the change in these recent months. He has had an absolutely brutal path of carnage while holding the IC title and is, in my opinion, deserving of becoming the new longest reigning IC champion."
Rating: 10.0
Sentiment: 0.13876368729309907
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Neon Aussiewrote on 02.07.2023:[10.0] "IMO it's a toss-up between Walter (gunther), Kenny Omega, and Will Ospreay for the best wrestler alive today. I hate that WWE has pressured him to lose weight, I like him better with some meat on his bones, but in the ring his physicality is unparalleled. Brings some realism back to the 'sport'. Walter has wrestled some of the best matches this decade has seen."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: RVKwrote on 28.06.2023:"One of the modern-day greats. Always puts on amazing matches and definitely a future WWE Hall of Famer."
Rating: No rating found
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Aylinwrote on 26.06.2023:[10.0] "One of my absolute favorites. What a fantastic heel and wrestler. He just keeps putting on remendous matches."
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: CorpusSkiptotelicumwrote on 23.06.2023:[10.0] "The ultimate evolution of the powerhouse, WALTER (refuse to call him by the other name) excells in all aspects of wrestling. Striking, grappling and selling, but his best attribute is to make everything look ugly and real. He was on the short list for best in the world even when he mainly just wrestled in the euro circuit and had some of the best matches in WWE history when he signed with nxt. Its a real shame that he never had a proper run in njpw or even bjpw, if he did, he'd be in the goat conversation just based on body of work. Its a shame he's on the main roster now, but even then he's having great matches with established E talent and always pulls the best out of them. Glad hes getting paid though, here's hoping he comes back to wrestling outside wwe when hes done building a legacy there."
Rating: 10.0
Sentiment: 0.3171296296296296
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: InsertFunnyNameHerewrote on 23.06.2023:[10.0] "Giving this man anything lower than a 10 would be insulting to professional wrestling. Right now he might be the best wrestler walking the Earth. His offense and moveset are the epitome of the phrase Beauty in simplicity while at the same time giving the image of a lion mauling a gazelle in a Nat Geo doc, his matches with Ilja Dragunov, Tyler Bate and Sheamus are some of the best of all time and thats no exaggeration."
Rating: 10.0
Sentiment: 0.23095238095238094
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Gregorian Goatwrote on 12.06.2023:"My favorite wrestler. No one else comes down the ramp and ensures that I will always have a exciting match."
Rating: No rating found
Sentiment: 0.2148148148148148
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: eliseyshakovwrote on 05.06.2023:[10.0] "the best wrestler in current era, his matches looks very good, and I know that he will be the future world champion. Hope WWE wont loose this talent."
Rating: 10.0
Sentiment: 0.3666153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GBoonewrote on 04.06.2023:[10.0] "Quite simply one of the best wrestlers not just in WWE, but in the world today. What makes this even more impressive with Gunther is with how little he does to get to that point. In a wrestling world where I would argue theres a certain level of overindulgence in terms of moves used, Gunther settles for powerbombs, lariats, and chops, and he makes it work because he does every single move incredibly well. Im very interested to see what future plans for him after he loses the IC Belt, as I would argue he has the POTENTIAL to be a monster heel on the level of Brock Lesnar, a sort of final boss that babyfaces have to overcome. I also appreciate the effort he has put in to ensure hell live his best life in WWE. Look at his physical appearance around NXT UK and then look at it now. Its insane."
Rating: 10.0
Sentiment: 0.20686592818945762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Joshxo1newrote on 30.05.2023:[10.0] "WALTER is awesome. An authoritarian demeanour, ferocious abilities, and an old-school aura creates the greatest professional wrestler of all-time. A beast of brutality, a king of combat, a duke of damage - simply, a freaking boss."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Puro113wrote on 28.05.2023:[10.0] "One of the best big men of all time at this point. Brought legitimacy and respect back to the Intercontinental title after it was treated like a prop for so long. Badass gimmick and demeanour, and always delivers in the ring. Man I love Gunther."
Rating: 10.0
Sentiment: 0.29
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Dancerwrote on 24.05.2023:[10.0] "Gunther is freaking great. His in ring style meshes well with basically anyone he wrestles. He is a phenomenal heel with a really cool gimmick. Always over delivers on PPVs and is a highlight of whatever show he's on. Well deserving of the high rating he's mantained."
Rating: 10.0
Sentiment: 0.48200000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: churmabradawrote on 22.05.2023:"An absolute monster in the ring, he is amazing because he doesn't cheat to win, never takes shortcuts and just brutalises every opponent"
Rating: No rating found
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: CoachWwrote on 17.05.2023:[10.0] "This guy rules. My introduction to him was on NXT UK, and I'm happy to see his continued success. He's done a world of good for the IC Title, and I'm looking forward to his eventual ascent to the main event."
Rating: 10.0
Sentiment: 0.4916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TheLegend27wrote on 13.05.2023:[10.0] "Love his matches, he is a master in a ring, one of my top 10 wrestler right now, hope to see him with a world title again in the future"
Rating: 10.0
Sentiment: 0.3214285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: crs285wrote on 06.05.2023:[10.0] "He is the master at the old-school hard-hitting style. He can get the best out of anyone he works with. He plays a great gimmick of trying to respect the business. Everywhere he has went he has been a star and that will probably continue on WWE's main roster"
Rating: 10.0
Sentiment: 0.6555555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Storyline Guywrote on 21.04.2023:[10.0] "One of the best wrestlers in the world. Arguably the best in WWE with a captivating character/gimmick- A wrestler with all the old school moves and techniques using them to perfection. I never saw Gunther have a bad match (he had a good match even with braun strowman lol). I like how his in ring style supports his gimmick. His every move is so impactful that he can use any of them as a finisher and win a match with any of them and yes he won matches with flowsion, powerbomb, splash, big boot, sleeper hold, lariat and even a CHOP - thus succouring to the character known as THE RING GENERAL. He has everything to become a world champ- the look, the in ring ability, an amazing heel persona, a great character and is the leader of IMPERIUM - one of the best factions in WWE."
Rating: 10.0
Sentiment: 0.5115384615384615
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Midas23wrote on 19.04.2023:[10.0] "He is an amazing wrestler with immaculate presentation. A top talent in the business at this moment, where everything he does is captivating. His lack of flashiness is his flashiness (selling point) and I believe its an act that can be a world champion. He also ensures that his opponents do not look bad in the process and that is something I highly rate."
Rating: 10.0
Sentiment: 0.21200000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Tyler72wrote on 16.04.2023:[6.0] "Gunther's decent in the ring, but his offense is very repetitive. He obviously makes up for it with how strong he hits but it can become boring pretty quickly. He'd be so much better with a mix up of his move set and more variation. So much potential here to be such a better wrestler."
Rating: 6.0
Sentiment: 0.09318181818181817
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Iksuepsilon83mwrote on 14.04.2023:[10.0] "Als ich ihn das allererste Mal gesehen habe bildete er bei GSW mit Pascal Spalter das Team "Die Bomber". Was ein Unterschied zu heute. Er spielt seine Rolle perfekt und liefert ab. Glatte 10!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Flame233wrote on 08.04.2023:[10.0] "Gunther/Walter is an interesting case. I am only recently back to watching wrestling, so this guy is pretty new to me, and I have to say, I was not sure about him being good. Upon research I found out that, on his journey he got really in shape, and while I could not care less for wrestlers looks, this shows his commitment to the cause, and you can only appreciate that. He's SOMEHOW making arguably, the most boring move in wrestling ("The Chop") very entertaining, which is absolutley mindblowing to me. As of writing this comment he is WWE Intercontinental Champion, and I can say with no hesitation that he is carrying that belt proudly, and is bringing back it's prestige. It is always good to see European representation in WWE, and I don't recall having a powerful Austrian like him in the past roasters. Regretably, I cannot say much about his NXT and NXT UK runs, but I've heard only good things about them. The last good thing is having a big boy that is not absolute wood in the ring. Cannot to see more of this guy in WWE. I'm crossing my fingers for Der Ringgeneral, I'm sure that he can be a great WWE Champion one day. Edit: After WM, I can say that this guy is one of the best if not THE BEST wrestler that WWE has under their wings."
Rating: 10.0
Sentiment: 0.26999022482893453
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Okaro143wrote on 07.04.2023:[10.0] "One of the most outstanding and domineering wrestlers on the planet. Orthodox and simple wrestling style but executed with brutality and intensity. Brings a level of physicality and savagery in his matches that you don't normally see."
Rating: 10.0
Sentiment: 0.19
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: enviwrote on 06.04.2023:[10.0] "Rewriting my review because it's been 4 months since my last one and this man just seems to keep getting better as time goes on. In my eyes, GUNTHER is the best wrestler in the world. In his 299 day & counting reign with the Intercontinental Championship, he's singlehandedly brought prestige back to the title when it needed it the most. His desire to keep the mat sacred mixed with his brutal in-ring style and the aura he brings as a whole, really sells him as a man not to be fucked with. We've seen many international giants in the WWE who have followed the same path but none have captivated the audience quite like GUNTHER. His work as WALTER was impeccable and his 870 day reign as NXT UK Champion deserves a 10 in its own right. He's had incredible matches with the likes of Sheamus, Ilja Dragunov, Pete Dunne, Tyler Bate and just recently, Drew McIntyre, and I bet many more names will be added to this list as time passes. I can't wait to see him as a world champion one day."
Rating: 10.0
Sentiment: 0.24803571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: benny5bellyswrote on 04.04.2023:[10.0] "There is a strong argument to be made that Gunther is the best wrestler in the world. He has been at an incredibly high level for at least 8 years now. It pains me that he works for a company I very rarely watch."
Rating: 10.0
Sentiment: 0.3366666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Wright15wrote on 03.04.2023:[10.0] "WALTER / Gunther has been one of the best wrestlers of the past several years, and it is great that so many people now realize why. A modern day equivalent of Don Leo Jonathan with the heaviest chops in the world, this is the kind of wrestler who could be a gigantic star in almost any era or place."
Rating: 10.0
Sentiment: 0.40714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: RC505wrote on 03.04.2023:[10.0] "Truly a Profesional Wrestler with all the passion and skills. A successful pro-wrestler should have the special aura on him, which requires not only his appearance, but his promo skill, his own temperament, his clothes and moves, and his in-ring styles. These type of things make a gimmick persuasive, and Gunther/Walter's is surely persuasive. Gunther's matches are always solid. and look at how many weights this guy lost in 2022-2023 to make a good shape and extend in-ring career, with not harming his match's quality, you will see how much passion he has for prowrestling. Totally best material for wrestling. Glad we can have him in this business."
Rating: 10.0
Sentiment: 0.46428571428571436
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Kamilahclanwrote on 02.04.2023:[7.0] "A very good wrestler that I just don't GET. His work is always solid but way too one dimensional for me and lacks variety, so almost all of his matches fall in that line and don't click with me on that level that I'd like to because he's obviously very good."
Rating: 7.0
Sentiment: 0.6066666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: LutherKingwrote on 01.04.2023:[10.0] "Honestly Gunther is my superstar of the moment. His wrestling, his charisma even his personality attracts even though he speaks very little. The kind of heel you like to enjoy. He mixes old and new. I hope they manage to push him to the top. And sorry for my imperfect English"
Rating: 10.0
Sentiment: 0.17695707070707073
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Eyapapwrote on 26.03.2023:[10.0] "Gunther is certainly the best wrestler of modern times. His matches are extraordinary, like his performance at the Royal Rumble. His gimmick is superb, and handles Imperium to perfection. Can't wait to see him world champion, because his reign as intercontinental champion is great! Even with less good wrestlers he manages to make a good match!"
Rating: 10.0
Sentiment: 0.5728835978835979
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Wrasslinfan619wrote on 15.03.2023:[10.0] "Oh my god is GUNTHER great. He's absolutely in the top 10 best wrestlers of this generation, and perhaps in the convo for top 20 maybe 15 wrestlers ever, he's had so many classics and will continue to do so for years to come. Plus he's never had A bad theme I figured I'd mention that."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Noquaswrote on 11.03.2023:[9.0] "An absolute masterclass. Classic NXT UK Championship reign, classic Intercontinental Championship reign with amazing matches against the likes of Pete Dunne, Ilja Dragunov, Sheamus, Braun Strowman... as well as his former runs in wXw for instance. Also beautiful moves and awesome physical transformation. One of the greatest of the business!"
Rating: 9.0
Sentiment: 0.4425925925925926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: yaboidasleeperwrote on 09.03.2023:[10.0] "To dive into a cliche, if there were any wrestler in the world who could have a match with a broom and have it considered the match of the night, Gunther/Walter is one of them. He is a man who manages to be a generational talent, and yet could've still been considered the same thing in any era of wrestling with his classic old school heel gimmick. He also probably, more than any performer today, knows how to structure a match and understands that while physical impressiveness is key, sometimes less is more. Absolutely phenomenal, and undoubtedly a shout for the best wrestler in the world right now."
Rating: 10.0
Sentiment: 0.2623376623376623
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ZayTokyowrote on 06.03.2023:[10.0] "The wrestler single handedly carrying the wwe on his back right now. His cringe inducing chops and strikes make me cringe in pain while he moves around great as a big man wrestler and can really have a match with just about everyone and make it good (if they are willing to put in the work with him) his matches with ospreay, dragunov, and bate are obvious stand outs but his matches with people like ricochet, riddle, darby all show just how great he is against everyone. easy 10/10."
Rating: 10.0
Sentiment: 0.3088744588744589
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TSwiftywrote on 06.03.2023:[9.0] "WALTER/Gunther is a great wrestler, but I do believe he's been massively overrated. I really don't want to knock that, because the fact that Gunther has gotten over in modern wrestling is truly awesome. We're in the age of spotfests and indie-style matches that prioritize workratel and that's the mainstream. So a guy like Gunther and his simplistic, old-school style is a breath of fresh air. My main issue with Gunther is how tired his match formula is. It's different from almost anyone else, but this is also a problem in it's own way. He lacks variety and creativity. Every match of his is structured very similarly. It was noticeable on the indies, but since coming to WWE his flaws have shown more. Gunther does have beastly strikes and power moves, but at times his offense feels underwhelming and undeserving of it's reputation. I still rate him highly because of his unique aura, look, character, and when he does live up to the hype there's nothing else like it. His matches with Ilja Dragunov are a good example of why I still consider Gunther to be a great wrestler even with the flaws I mentioned. When Gunther's good, he's really good."
Rating: 9.0
Sentiment: 0.32190151515151516
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KSupreme3wrote on 04.03.2023:[10.0] "The Ring General is one of the best wrestlers of these modern times. Almost every wrestler he faced were rewarded with blood clots on their chest, thanks to his insanely brutal chops. When put in a David Vs. Goliath situation, he makes a uphill battle look so devastating. He truly makes you feel bad for his opponent, which adds a bit of extra emotion to the matches. Although I wish he kept his name, I? m starting to get used to GUNTHER. I truly hope he gets to brush shoulders with the main eventers in the WWE, he? s due for a major title run. One of my new favorites. 9/10"
Rating: 10.0
Sentiment: -0.06803613053613054
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Fayzalwrote on 04.03.2023:[9.0] "He can work well with any kind of wrestler He is still imposing as hell He has given us one of the most memorable royal rumble endings of all time Whoever is in the ring with him is elevated, win or lose Amazing throwback wrestler"
Rating: 9.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: greaterdalewrote on 04.03.2023:[10.0] "Walter/Gunther has such an awesome hard hitting style. He's got some of the best chops around. It's been a pleasure seeing him rise up the WWE ranks over the past few years. I'm really hoping he breaks the Honkey Tonk Man's IC title record and then goes onto being a WWE champion. A while ago I would have thought that would be a pipe dream, but since Triple H has taken over WWE Gunther is being pushed mega hard. It's nice to see an awesome wrestler be rewarded for his hard work. Also he seems like a really cool guy too."
Rating: 10.0
Sentiment: 0.2354166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ChrisPrattAsMariowrote on 04.03.2023:[10.0] "Pound for Pound the best in-ring worker in WWE right now. His nickname, the ring general, is definitely something he deserves. He has power, technical skills, and he comes across as an absolute star. Love his chops as they remind me of Kobashi every time. My favorite match of his is against Ilja Dragunov at Takeover 36."
Rating: 10.0
Sentiment: 0.3169642857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: The Sick Lebowskiwrote on 18.02.2023:[10.0] "Absolut starkes Powerhouse und einer der besten Wrestler, vielleicht nicht sogar der Beste, in Europa. Zudem sowohl als Face, besonders aber als Heel gut. Er wäre einer, den ich auch gerne mal in der WWE sehen würde, aber er tendiert meines Wissens ja eher nach Japan, wo er definitiv auch sehr gut aufgehoben ist. Gehört für mich als mehrfacher Carat-Besucher schon fast unzulässig auf eine Euro-Show dazu und ich sehe ihn sehr gerne. Höchstpunktzahl. EDIT: Nun ist er also doch letztendlich in den USA bei WWE gelandet. Respekt dafür. Und auch dafür, dass er so viel abgenommen hat, wird seiner Gesundheit auf lange Zeit gut tun. Aber ich muss leider sagen, dass er mir "fetter" besser gefallen hat. Er wirkt natürlich immer noch absolut bedrohlich, aber mit seiner nun schlanken Statur weitaus nicht mehr so beeindruckend monsterhaft wie noch zu Zeiten, als ich ihn bei wXw live sehen durfte. Ich belasse es zwar bei der vollen 10, aber ein klein wenig Magie ist mittlerweile verloren gegangen."
Rating: 10.0
Sentiment: -0.12597402597402596
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Oswuoldwrote on 16.02.2023:[10.0] "Five stars wrestler. He Is One of the best wrestler in the Planet now with Is NJPW 90' moveset and his capacity to pull up ***1/2+matches from every wrestler he fight against. I don't know what he could be able to do in NJPW. *****"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: SoaKaswrote on 08.02.2023:[10.0] "Could be a world champion in any era and hopefully will become one very soon since he's been stellar in the WWE since his arrival. When it comes to his indie-stuff, I know that he as great if not better. I personally loved him in WCPW/Defiant and I saw a little bit of his wXw run too which also seemed very good. The sky is the limit with this great old-school heel."
Rating: 10.0
Sentiment: 0.4028125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KKeanelwrote on 04.02.2023:[10.0] "One of the greatest european pro-wrestler ever. His abilities always were something special, but after losing weight they are on another level. His mic skill is growing, so future shine in bright colors for him. Future world champion."
Rating: 10.0
Sentiment: 0.3428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: zags7000wrote on 01.02.2023:[10.0] "Consistently one of the best wrestlers in the world both before WWE and then as a member of NXT UK/NXT and now the main roster. His match with Sheamus was an unexpected classic while his series with Dragunov produced some of the greatest matches in WWE history. His match with Tyler Bate was great as well and he's done that within a somewhat short period of time producing classics everywhere he goes. He gets great heat as a foreign heel and plays the role well. Does just enough on the mic and is believable in what he says and his chops are some of the best in wrestling today. He's big but also athletic and that combination has really set him apart, especially in WWE."
Rating: 10.0
Sentiment: 0.36614583333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DangoDaisukiwrote on 29.01.2023:[6.0] "Ich habe mir mehrmals die besten Walter Matches angesehen und ich will sooo gerne ein 5 Sterne Erlebnis haben wie viele es haben, aber ich sehe in diesen Matches einfach nur mittelmäßige Matches und nichts außergewöhnliches. Vielleicht liegt es daran, dass ich viel zu viele stiffe japanische Matches schon gesehen habe, dass es mich einfach nicht mehr beeindruckt. Abseits von den Matches finde ich ihn auch ein wenig farblos."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Brainbreakerwrote on 12.01.2023:[9.0] "Der ehemalige Walter ist für mich gerade unter den top aktiven Wrestlern, gerade auch weil er in seiner Rolle als Ringgeneral, die er erfolgreich von Oberhausen nach Stamford exportiert hat, immer noch brilliert. Intensiv und stiff im Ring ist er, dabei immer glaubwürdig als Big Man unterwegs, und fähig aus jedem ein gutes Match rauszuholen. Nicht umsonst hat er - zusammen mit Gargano - die meisten 5* Matches bei WWE. Momentan schrammt er noch an der 10 vorbei, weil ich noch gerne sehen würde, wie er sich abseits von stereotypen Rollen, abseits von Stables, und ggf. als Face schlägt."
Rating: 9.0
Sentiment: 0.09523809523809523
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: benh2wrote on 11.01.2023:[9.0] "A bit of a throwback and he's consistently been one of the best wrestlers in the world for nearly a decade now. Even as he's dropped weight, he's still big enough to be menacing but he can keep up with guys half his size. He also has a lot of the skills that many of today's wrestlers don't, such as pacing, positioning and feeding."
Rating: 9.0
Sentiment: 0.07592592592592594
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DeDogDavwrote on 05.01.2023:[10.0] "Proving to be one of the best wrestlers in the world today that can do it on any stage in any promotion. His match vs. Sheamus in Cardiff is absolute proof of this. Time for a major title."
Rating: 10.0
Sentiment: 0.42083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Benwerderwrote on 01.01.2023:[10.0] "Einer der besten Wrestler überhaupt! Im mainroster aktuell eine feste Größe. Und seine Banger in denn letzten 10 Jahren sind zahlreich. Durch seine besseren Mic Skills noch knapp vor Castagnoli der beste Europäische Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BigVanKaelwrote on 29.12.2022:[10.0] "Somehow, someway, Gunther/WALTER finds a way to make his relatively limited moveset into one of the most brutal and hard hitting styles i've personally seen (definitely the most within WWE), all his matches have a special aura to them as they often end with a single almost conventional move that puts the opponent down for good. Future world champion."
Rating: 10.0
Sentiment: 0.03455433455433455
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: homunculuswrote on 25.12.2022:[10.0] "Gunther is one of, if not the, hardest hitting wrestlers of all time. Every move he does looks like it could kill the average person. He is a true professional wrestler. A master of his craft. The kind of wrestler rookies and fans will study for years to come."
Rating: 10.0
Sentiment: 0.22499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: CMX-7wrote on 17.12.2022:[10.0] "Gunther is a real Emperor about Pro Wrestling, each of his matches is fantastic, it seems to me that any fan who saw his match to the end says to himself in his thoughts - "This match is the best on the show" or - "WOW this is the best I've seen" , He is a master of his craft and he can raise any of his opponents to the highest level!"
Rating: 10.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Dr Bubatzwrote on 29.11.2022:[10.0] "Meiner Meinung nach ist Walter der beste Big Man der letzten 20 Jahre. Und das obwohl er garnicht so gigantisch ist. Er trägt einfach diese brachiale Aura mit sich. Und ein schlechtes Match hab ich auch nicht nicht gesehen. Props und weiter so. Vielleicht wird er ja den Honky tonk man ablösen als längster IC Champ ? !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GoreMarkwrote on 17.11.2022:[10.0] "I just love Walter in every single way, he's tall, strong and a heavyweight with a lot of agility. Great wrestler in every sense."
Rating: 10.0
Sentiment: 0.4154761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: whiterice47wrote on 14.11.2022:"8/10 Overall, I see a lot of talent and I think he is one of the most compelling wrestlers who doesn't have to say mauch."
Rating: No rating found
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KesagakeOKwrote on 13.11.2022:[10.0] "Everything that a big man wrestler should be. Psychology is enrapturing, work is stiff but safe, and has an aura of intimidation and menace. Everything he does is must watch."
Rating: 10.0
Sentiment: 0.09523809523809523
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Funnynamewrote on 12.11.2022:[10.0] "Gunther is beautiful in his brutality how stiff his matches get may be a turn off for some but for me it's refreshing to see I love a good dive as much as the next guy but seeing two men chop the hell out of each other is so satisfying to watch not to mention his immaculate selling great promos and star power everything put together makes him one of the best in the last 15 years"
Rating: 10.0
Sentiment: 0.3925595238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MainEventMasterwrote on 27.10.2022:[10.0] "WALTER, not this stupid Gunther bullshit, is very much like FTR. Old school wrestler(s) that can be mix with todays suspense and thrill. He has not had a single bad match in his entire career."
Rating: 10.0
Sentiment: -0.2019047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BigVanWalterwrote on 20.10.2022:[10.0] "Probably my favorite wrestler in the world rn. Great look, puts on consistently great matches and is a pretty good promo, especially with his super commanding voice. Hoping he beats the honky tonk mans record."
Rating: 10.0
Sentiment: 0.48333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: CommisarRobewrote on 12.10.2022:[9.0] "Gunther "The Ring General" may be the best performer in Wrestling at the moment. His matches with Sheamus in 2022 have been phenomenal, his brutal style helps create a fantastically intimidating gimmick and his team with IMPERIUM is one of my favourite teams of the modern era. His current reign with the IC title is helping establish that belt as strong and respectable, a few more years like this and he could be a 10.0"
Rating: 9.0
Sentiment: 0.21083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JustAWrestlingFanwrote on 09.10.2022:[10.0] "Truly one of the most terrific men in wrestling today. He has the best chops in wrestling. His power style of wrestling makes him look all the more intimidating and he has main eventer written all over him. Love that he has no set finisher. He can beat you with both powerbombs and lariats. Makes him seem legit, and makes you really pay attention as matches can end at any point."
Rating: 10.0
Sentiment: 0.4095238095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: boraselvi7wrote on 09.10.2022:[10.0] "One of the best chops in the industry. The way he presents himself makes me take him more seriously than most wrestlers. He doesn't look like he's going to wrestle. He looks like he is going to beat the shit out of his opponent."
Rating: 10.0
Sentiment: 0.29333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BAILE3wrote on 09.10.2022:[10.0] "One of the best in ring performers of all time. Amazing hard-hitting powerhouse and one of the best wrestlers to come out of Europe."
Rating: 10.0
Sentiment: 0.8666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Rivermanwrote on 16.09.2022:[10.0] "There's no wrestler on earth that gets me more excited to watch them on a match to match basis. Inside the ring, he's a master of his craft. Beyond that, he has a great character and presence to him and executes that character equally well through matches and promos, never allowing his believability to slip for even a second. Top tier performer"
Rating: 10.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: arrancarwrote on 14.09.2022:[7.0] "I can't deny that Walter is a great wrestler when he has all aspects of his game in check, and he has a fantastic look and aura that allows him to stand out, but the idea that he's one of the best in the world or that he's had multiple 5-star classics feels immensely exaggerated. He's one of those strike-happy wrestlers who can occasionally spark a match up with his immense power, but more often than not he'll fail to truly interest me with the same old strikes and power moves. It also doesn't help that his reputation far precedes him, and now he forever has this "amazing monster destroyer" ideal to live up to, meaning that any slight screwup or underwhelming moment is amplified. I also just hate how almost all his biggest matches HAVE to centre around his arm/leg being worked over. It makes sense of course, since Walter's chops are a good portion of his offence, and weakened legs will immobilise him and lessen the effect of his immense power, but it's boring seeing the same stories being told where Walter gets "chopped down" via his limbs in basically every big match he has. Despite having good long-term selling, I also don't think Walter sells very well in real-time. He comes off as a child who has dramatically caught his finger in a cupboard door, and thus he goes from this intimidating monster to an overly weak-looking figure. And it sucks because this happens in basically every singles match he has, since I guess every opponent he ever faces HAS to put him in serious danger to the point that this weak and skittish selling comes out. This sucks, because if Walter is really this monster then I want it to be rare and feel EARNED when a wrestler manages to inflict serious pain on him to the point that he's crying out in pain, staggering, or even knocked down. His selling should be far more focussed on him getting more annoyed at his opponents' offence as opposed to constantly getting dazed and knocked down, and he should show that the level of pain he's experiencing from those attacks is more equivalent to getting a bad scratch as opposed to constantly vocalising how much pain he's in. This is just because if every single wrestler he faces is able to knock him down or stagger him, cause him to cry out in pain, and then get a bunch of hope spots against him (which especially annoys me when he's up against far lesser opponents who obviously have no chance against him), then it just wears away at Walter's "monstrous" aura. I want it to be special when someone gets anything serious off against Walter, not a customary thing. These negatives aside, I still can't deny that he has some impressive moments and usually makes for a great monster. This also means that he's a very good partner for a pure babyface to play off of. If he could just make his offence a bit more varied, tell some new stories in his big matches, and maybe learn to sell in a way more befitting a 'monster', then I'd match everyone else's hype for him."
Rating: 7.0
Sentiment: 0.09336674436674439
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GwenCube64wrote on 05.09.2022:[10.0] "I purposely avoid watching too much of his matches so every time I watch him, it makes me very happy and reminds me of how much I love this dude. Possibly the best big hunk of meat style wrestler in recent memory."
Rating: 10.0
Sentiment: 0.38571428571428573
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: UltraNano54wrote on 04.09.2022:[10.0] "He has been a 9/10 for me for a few years now but after that Sheamus match, I am now 100% certain that he has earned the full 10/10. Absolutely one of the best working today."
Rating: 10.0
Sentiment: 0.31285714285714283
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KELLANwrote on 30.08.2022:[10.0] "Der beste deutschsprachige Wrestler, verdient beim Marktführer unter Vertrag genommen. Hatte Legendäre NXT UK Matches, inklusive ikonischem UK Title Reign. Gerade ist er als IC Champion bei Smackdown Unterwegs, auch dieser Regentschaft ist bisher unfassbar gut. Potenzial: 3x WWE World/Universal Champion - 350 Tage insgesamt - 3x US / IC Champion - 500 Tage insgesamt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Divine Departurewrote on 21.08.2022:[10.0] "WALTER is one of the best wrestlers in the world. He's equally brutal and technical when he needs to be, with a rock solid grasp on psychology and an incredible aura. It's a crime against humanity that he's signed and currently working as "Gunther" on main roster WWE, but I'm happy that he's earning the pay-check he deserves."
Rating: 10.0
Sentiment: 0.24895833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: WrestlingFan892wrote on 20.08.2022:[10.0] "He is one of the best wrestlers in WWE today, he has a classic and unique wrestling style. His matches are interesting to watch as he has such a variety of classic moves with his height and physique. Dropkicks, moves from the top rope... and his chops have become iconic."
Rating: 10.0
Sentiment: 0.4010416666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: face painted legendwrote on 13.08.2022:[10.0] "Never saw him before the UK NXT and a match he had that people were raving about, and man I was blown away. He is a definite throwback to the days of old pro wrestler for me. He has a great persona. He looks the part. He acts the part. He's believable as all get out. And what I love most about the guy is that when he's in the ring, he doesn't do anything that someone who looks like he does shouldn't do. I don't pay as much attention as I should to his promo work, but everything else that he does so great that it doesn't really matter IMO."
Rating: 10.0
Sentiment: 0.4000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: JoshuaWrestling63wrote on 12.07.2022:[10.0] "Walter meiner Meinung nach "einer" der besten wrestler den die wwe aktuell hat finds nur ein bisschen schade das sie ihn umbenannt haben"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: PokeSlamwrote on 06.07.2022:[10.0] "Gunther/Walter was always a good wrestler. Now that he's gotten in better shape he just seems like he's getting even better. Skys the limit for this guy."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: PhenomenalGunwrote on 27.06.2022:[8.0] "I liked Walter a lot more when he was fatter. It's impressive how he slimmed down, but he looked more imposing before. That aside, Walter has been responsible for some of the best indie matches of the best decade. His sheer excellence in in-ring IQ and knowing how to break down his opponents without making them look weak is to be applauded. Although, I will criticize that he can be kind of repetitive at times and doesn't really give off the presense of a star. Take Ludwig Kaiser away, and this guy will flounder like Cesaro on the main roster, talented in-ring worker but bad on the mic. Good idea keeping Ludwig with him as that guy can work pretty well himself. I don't think Walter is quite a top star yet or that close honestly but he's a great in-ring worker, that's where he excels."
Rating: 8.0
Sentiment: 0.33393719806763283
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: texasyoshwrote on 19.06.2022:[10.0] "Gunther/WALTER is, in my opinion one of the best workers today. Unfortunately, I think he's been watered down as 'Gunther'. Regardless, he has all the tools, and now even the physical standard to become a top guy anywhere."
Rating: 10.0
Sentiment: 0.14074074074074075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: eltetechoriwrote on 14.06.2022:[10.0] "This wrestler is that kind of Powerhouse that you don't expect, maybe he is not a beast of moves, but he really looks like a monster, despite his name change, he still keeps his essence."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Jacob Joneswrote on 13.06.2022:[10.0] "Walter, Gunther, whatever you call him, he is the best wrestler I have ever seen in a ring. Every move he makes has a purpose and an immense amount of impact. His punches are scary, his slams are deadly, and his slaps? They leave your chest as red as a sunburn. He? s no slouch on the mic either and every time you see him, he has the look and presence of a terminator. I expect great things out of him as the new Intercontinental champion and look forward to seeing what he can do going forward."
Rating: 10.0
Sentiment: 0.17662337662337663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: FrenchPredator10wrote on 12.05.2022:[2.0] "Really don't like this guy, look really stiff and haughty in real life. I don't understand hype for this fat guy."
Rating: 2.0
Sentiment: 0.061904761904761914
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Tomas Montoyawrote on 29.04.2022:[10.0] "This guy is a contemporary legend. His fights are excellent and he manages to sell his gimmick perfectly. One of my all-time favorites"
Rating: 10.0
Sentiment: 0.7222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: elryowrote on 13.04.2022:[4.0] "He's good, although very overrated. If you've seen one WALTER match, you've seen them all. He just slaps the shit out of his opponent. Very real, too. Would be more suited to strong style than in WWE but he is where he is. It's a shame he didn't move to the US sooner because that delay has meant his has career stagnated a lot. The fact he's only just moved 'up' to NXT shows how far behind he is."
Rating: 4.0
Sentiment: 0.17703703703703702
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: MorbidAxiswrote on 12.04.2022:[10.0] "I? m writing this review just to make it known that his name is WALTER. I will literally never refer to him as Gunther, and I absolutely cannot understand the name change. You bring a guy up to the main roster, with an already established name and gimmick, who? s over pretty much all over the world, and change everything about him so people don? t even recognize him. He is way too good for WWE and I can? t wait for the day he leaves to wrestle for a promotion that isn? t complete trash."
Rating: 10.0
Sentiment: 0.26944444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: afogarty21wrote on 17.03.2022:[8.0] "Good mover for a big man, I really enjoyed him in NXT UK even though they never did a good job of building up legitimate challengers for him. Being a big man that can move I had high hopes for him in WWE, but now with his name change I can clearly see WWE will probably waste his talents."
Rating: 8.0
Sentiment: 0.24500000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: furkan3614wrote on 01.03.2022:[3.0] "I've never liked big guys in wrestling. I get so bored of big man slapping each other. Walter's wrestling style is extremely boring to watch for me. He has some charisma and I wouldn't call him a bad wrestler but him being 5th highest rated superstar in history of WWE is ridiculous to me."
Rating: 3.0
Sentiment: -0.3697916666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: nWo-Joshi-Guywrote on 24.02.2022:[10.0] "WALTER is like no one else in the business today (or maybe ever). He has the amazing ability to take the style (and gimmick) of wrestling in the past and combine it with modern match structures to create something that both fans of the old and of the new can enjoy. His best matches are truly brutal and his booking in WWE (outside of the ridiculous name change) has been immense. He will no doubt go down as one of the greatest of all time. Leader of a great faction too."
Rating: 10.0
Sentiment: 0.1873196248196248
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: SquilliamFancysonwrote on 11.02.2022:[9.0] "WALTER (fuck Gunther) is a force of nature unseen since the days of stiff monsters like Big Van Vader. He avoids falling into the pitfalls of the "big man" style, and has a technical and psychological prowess matched by few working today."
Rating: 9.0
Sentiment: -0.11632653061224489
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: WhatIsLooveeewrote on 06.02.2022:[10.0] "Person who creates the impression of a "final boss". His wrestling is realistic, he literally has one of the best chops in the industry. He doesn't do a lot of moves, doesn't do flips or anything extraordinary. But that's where he's great. His style is unique and you believe him. He stood out in the NXT UK and, hopefully, will have a similar role in the current NXT."
Rating: 10.0
Sentiment: 0.334375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GriffinXwrote on 06.02.2022:[8.0] "The new name is stupid and no I won't stop complaining about it until WWE changes it or he leaves WWE and become WALTER again. But the man is a great wrestler who has put down some brutal "beatings" in the ring"
Rating: 8.0
Sentiment: -0.17883838383838382
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: danzgalliwagwrote on 04.02.2022:[10.0] "Soon to go down as one of the greatest of all time. Get a few more major titles to his name, and he'll be in the same conversation as guys like Punk, Danielson, Joe, Lesnar, etc. Once he inevitably leaves NXT 2.0, hopefully we'll see WALTER take on even more of the biggest stars of the next generation. I'd sure as hell love to see him chop the shit out of MJF. Dream matches aside, WALTER is one of the very few wrestlers of today's landscape who truly make wrestling feel real. A lot can be said about that, good and bad, but reality is undoubtably an element of wrestling storytelling that often goes overlooked. In my opinion, this is the reason WALTER resonates with so many fans. His matches are so investing and so unique because his wrestling style feels so much more real than any other wrestler going today. Lesnar may have the strength, but he doesn't have the (kayfabe) brutality. Malakai may have the strikes, but he doesn't have the power. WALTER is the best of those two worlds."
Rating: 10.0
Sentiment: 0.22258838383838384
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: WrestlingFan1wrote on 20.01.2022:[10.0] "One of the best powerhouses in history, this wrestler has an incredible ability to sell a legitimate match, his brutality is impressive, the way he tells you a story, his athleticism with his weight, he is perhaps ahead of the stereotypes of heavy wrestlers."
Rating: 10.0
Sentiment: 0.6749999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Rocky7wrote on 19.01.2022:[10.0] "Yes he was once known as Gha-cha-ping, and yes he's about to start life on NXT 2.0 as GUNTHER, but having followed WALTER's career over the last decade from the Big Van Walter days, he's the best big man worker of the last ten years, brutal strikes, fantastic match structures, knows how to elevate an underdog babyface. WALTER had an incredible run of over two years as the NXT UK Champion where he was near unbeatable, yet WWE decided he needed a repackaging. Oh well, at least we had what came before, and hopefully GUNTHER will be just as intimidating and incredible as WALTER was."
Rating: 10.0
Sentiment: 0.17708333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jboyaquarwrote on 04.01.2022:[8.0] "WoW, for a guy w/ 22 matches in the past two years, and for whom hasn't oft been tested against men bigger than himself, a 9.52 rating appears awfully high. Let him become a greater workhorse roster member prior to being ranked the #23 greatest pro-wrestling talent on the entire Cagematch database. (But of course this is a Teutonic tome.) With that being said, his array of exceptionally physical contests in-which he can play the bruising beast is impressive, as was watching him close-up in Ryogoku taking a beating from Hino & especially Okabayashi. But those guys have wrestled hundreds, if not thousands (Sekimoto, ) more matches than him against all types of competitors. I can't yet rate him higher than a..."
Rating: 8.0
Sentiment: 0.25076923076923074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: mjs2212wrote on 14.12.2021:[10.0] "This man is unreal in every way. An absolute throwback, and he throws some of the stiffest chops I have ever seen in my life. An amazing fighting champion with a very traditional moves and look. With opponents like Pete Dunne and Ilja Dragunov, he puts on some hard-hitting matches and is almost always impressive. He would have fit in perfectly with the old school NWA back in the day, maybe even against the likes of Bruno Sammartino. There's not enough words to describe the greatness that is WALTER, he is that good."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TigerDiverwrote on 22.11.2021:[10.0] "Easily my favorite guy to watch right now in modern wrestling. An absolutely incredible piece of specimen that'll fit right in any era of wrestling, no matter what setting it may have. From the old territory days of the distant past, to the cartoonish WWF Golden Era, all the way to the modern era. WALTER is the perfect pro wrestler that won't look lost for one bit no matter which time period or which place he steps into. His chops are amazingly terrifying, his size is massively impressive, and his wrestling ability is pretty much second to none. I could be here all day naming the list of all his epic matches over the decade, but I think stopping my comment right here would be a better idea."
Rating: 10.0
Sentiment: 0.2609022556390977
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ONESTOPwrote on 15.11.2021:[10.0] "I get surprised every time he unfolds in the ring. He has something very special about him. wish he got more tv time on ppv."
Rating: 10.0
Sentiment: 0.3547619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Muggowrote on 03.11.2021:[10.0] "WALTER is the best big man wrestler in the world, and you could argue he's the best in the world currently. He has an aura that very little other wrestlers have, and every single match of his feels like a war."
Rating: 10.0
Sentiment: 0.22283163265306125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: waddicted71wrote on 17.10.2021:[10.0] "The best wrestler in the world right now. Actually, he has been the best for a while. I'm starting to think that it is impossible for him to have a bad match."
Rating: 10.0
Sentiment: 0.13129251700680275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ExcitingProWrestlin3wrote on 10.10.2021:[10.0] "He was for 870 days the greatest champion of the modern era. He is WALTER. The Past, The Present, and A Staple for the next Decade."
Rating: 10.0
Sentiment: 0.19
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: No Onewrote on 04.09.2021:[10.0] "Already one of the greatest in-ring performers of all time. One of the greatest big man wrestlers of all time. One of the greatest & most devastating strikers in pro wrestling history. Has the aura of being "The Final Boss". Outstanding big man seller. Feuds with Ilja Dragunov, David Starr, Jordan Devlin, Zack Sabre Jr, & British Strong Style are some of the best feuds of the last 10 years. Has put on matches that will withstand the "Test of Time". Tag Team partnership with Timothy Thatcher as "Ringkampf" was one of the best tag teams of the 2010's decade. Is extremely realistic in every match. His WWE NXT UK World Title reign is legendary and he held that title for over 870 days, which is virtually unheard of in the modern era of professional wrestling. Gained a massive cult following for his domination of the Independent Wrestling Circuit. Has translated extremely well to the WWE. One of the most protected wrestlers in the world today, for all the right reasons. Pro wrestling's version of Ivan Drago."
Rating: 10.0
Sentiment: 0.3150297619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: LightningCutterwrote on 23.08.2021:[10.0] "Even with the limitations he's put on himself (only wanting to work NXT and primarily in the UK) he stands as one of the best in the world. His unique presence makes him stand out obviously be he completely delivers once the bell rings too."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: brickhitterSamwrote on 20.08.2021:[10.0] "Best wrestler in the world right now in my opinion. I don? t think he? s ever had a bad match. All of his moves look like they hurt like hell."
Rating: 10.0
Sentiment: 0.19523809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BrayanLaPrewrote on 19.08.2021:[10.0] "Adjusting the standard for the average size of wrestlers in each individual era, WALTER is one of the greatest big men to ever wrestle. A technical magician with strikes that could make a barren wasteland cry, the Imperium leader is the gold standard for physical dominance in modern wrestling. Nothing he does is especially flashy, but everything he does is effective. And every match he has feels like a genuine experience. A remarkable wrestler with a truly special presence. A five-star wrestler, 10 out of 10."
Rating: 10.0
Sentiment: 0.1540816326530612
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Baybay29Vwrote on 10.05.2021:[10.0] "The best wrestler in the world right now everything he does seems so legit the dropkick, clothesline, powerbomb , suplex, splash from the top rope and of course the knife edge chop everything look like a gun shot and a believable finisher. Add to that the commanding aura, the entrance, the threatening voice.. From top to bottom the world best"
Rating: 10.0
Sentiment: 0.6309523809523809
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: The A-Listerwrote on 08.05.2021:[10.0] "One of the best wrestlers in the world right now. Convincible, legit and just brutal. Deserves better than being on D show no one cares about."
Rating: 10.0
Sentiment: 0.2276785714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Kungwrote on 20.04.2021:[10.0] "WALTER might very well be the best wrestler on the planet right now. He's a great in-ring talent. He doesn't do anything that seems fake or not in line with his gimmick. Hia matches are visceral and always thrilling. And he's probably the most believable wrestler in the business."
Rating: 10.0
Sentiment: 0.3794642857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jltwrote on 08.04.2021:[10.0] "Absolutely brutal and definitely devastating, WALTER is a man you would not want to face in the real world, considering most of his hits in wrestling are real, especially his chops. He has the ability to look like an absolute monster or a man who is weak but will turn in an instant and finish you. This man isn't the next Brock Lesnar, he is the first WALTER."
Rating: 10.0
Sentiment: -0.11000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GoodGoodSnapwrote on 08.04.2021:[10.0] "WALTER is an anomaly in professional wrestling - not traditionally "in shape", not a high spot machine, he is simply an unkillable monster, a colossus that will beat you and beat you until you cannot stand up any more. Wrestling is best when it is a contrast of characters, and WALTER is so distinct from anyone he's against that they are elevated as a result."
Rating: 10.0
Sentiment: 0.26
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KyleEnjoysWrestlingwrote on 24.03.2021:[9.0] "Currently being booked as one of the most legitimate people involved in wrestling. Because he's being kept special, he feels special -- like a true attraction who you want to pay money to see. He's excellent in the ring & is able to mix modern wrestling with an old school mentality. His matches against the likes of Bate & Dragonov in NXTUK were some of the best wrestling during their times. Because he has, to this point, stayed away from the main roster WWE, there are still heaps of potentially huge matchups for him to have. You just have to hope that he's still treated the same when (or if) Vince ever gets his hands on him."
Rating: 9.0
Sentiment: 0.3793040293040294
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: rainmakerpunkwrote on 12.03.2021:[10.0] "Has to be in the conversation for best big man ever, his matches are so brutal, his strikes are just lethal"
Rating: 10.0
Sentiment: 0.041666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: plaguespreaderwrote on 09.03.2021:[9.0] "literally encompasses every aspect of wrestling to such a comprehensive degree: brutality, technicality, presence, movement, intimidation. like johnny valentine says "I can't make them believe that wrestling is real, but I can make them believe I'm real. " who else is in this category? elite brethren. Samoa Joe, Brock Lesnar, AJ Styles, Okada, Morishima, Terry Funk, Raven, Misawa, just to name a few. Everything WALTER does matters. It makes sense. Whether it be a nefarious set of finishers for any situation (sleeper, powerbomb, golem splash) or a meticulous sequence of punishing holds, WALTER holds the title of Ring General with no weaknesses. During his run in Europe the weak chin arc was masterfully done and allowed weaker opponents such as David Starr to capitalize victories that did not look unrealistic. I'll give him his 10 once he faces Lesnar."
Rating: 9.0
Sentiment: 0.041666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Burninghammercriticwrote on 27.02.2021:[10.0] "Youre not gonna see flashy flips and spins from WALTER. What he offers is something a lot more substantial: methodical strikes, grapples and submissions. Meticulously beautiful matches and terrifyingly, tantalising offense on display. WALTER is inarguably in the top 5 European wrestlers at the moment, and may actually hold that crown. His brute strength and impose are a sight to behold and make him the favourite in any contest. A modern day Hansen with more tricks. WALTER is a living legend."
Rating: 10.0
Sentiment: 0.11499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: mamboKENTAwrote on 23.02.2021:[10.0] "WALTER is this generation's version of Samoa Joe. And if you remember how awesome Joe was in his prime, you'll see this is an awesome compliment."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jchiofalwrote on 29.01.2021:[10.0] "WALTER isn't flashy or pretty. His wrestling looks like it hurts because it probably does, and yet I haven't heard anyone complain about his stuff was, nor have I heard of anyone being injured by him. Everything about his look, and wrestling is simple, but not only is it effective, but he has really great matches. He's a murder baby looking bully, and everything he does in a wrestling ring has a purpose. One of my favorites today. Everything he does looks like it could end a match"
Rating: 10.0
Sentiment: 0.19166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Brett1980wrote on 17.01.2021:[9.0] "Excellent and intimidating presence. Has a great skill where he always looks dominant but leaves enough room to believe he is beatable. Has been lucky however in the sense that in NXT UK he has not been made to change his style that got him over on the indies. Has the most deadly looking chops in the business currently."
Rating: 9.0
Sentiment: 0.3476190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BlakeFR37wrote on 25.09.2020:[9.0] "WALTER is an excellent wrestler, big man with big moves, great leader. Great rivalries. Deserves his rank."
Rating: 9.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: NeilJungwrote on 03.05.2020:[8.0] "A 9 on the independent circuit, a 7 at a push in WWE. Previously the best heavyweight outside of Japan, whose old-fashioned style of slower, methodical power wrestling was a breath of fresh air in the late 2010s. Enjoyable in slugfests with other big men, but he excels as a big bully heel in David vs. Goliath matches with smaller opponents, and knows how to show fallibility without appearing weak or unconvincing as a dominant wrestler. Once one of the hottest free agents in the world, he has stagnated in WWE on the pointless NXT UK brand and was booked terribly in his main roster appearances. Supremely gifted but his lack of a body, throwback style, the proliferation of other large wrestlers, and his not being a native English speaker will lower his ceiling on Raw or Smackdown significantly, and he is completely wasted on NXT UK. Would be better off as a big fish in the smaller indy pond, or trying his luck in Japan."
Rating: 8.0
Sentiment: 0.04551986475063398
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: AndoCommandowrote on 30.03.2020:[8.0] "Fantastic when he's allowed to work his slow methodical style. Great imposing figure in the ring that can garner sympathy for any opponent. Very good long-term selling elevates his matches in the 2nd half. Very rigid, almost limited offense he'll rely on too often, making a lot of his matches feeling very similar. Never put him in Vince's hands. I like the way he chops really hard."
Rating: 8.0
Sentiment: 0.1480238095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Bobbythreesixteenwrote on 06.01.2020:[8.0] "Der Ringgeneral ist auf jeden Fall einer der besten aus dem Europäischen Raum. Trotz seiner Größe und Statur ist er unglaublich beweglich und kann sensationelle Matches worken. Mit Walter ist bei fast jedem Gegner ein super Match vorprogrammiert. Ich habe ihn bei der wXw nur leider ein wenig zu oft gesehen und habe nicht das Gefühl das die WWE ihn großartig anders einsetzen wird und daher hat er für mich nicht mehr den riesigem Reiz wie noch vor 2-3 Jahren deshalb nur 8 Punkte aber dennoch ein wahnsinns Wrestler."
Rating: 8.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: cosmik debriswrote on 25.11.2019:[10.0] "best wrestler under wwe contract today, and among Okada and few others best wrestler in the world period. everything about WALTER works perfectly: his gimmick fits him like a glove (aided by the best and most fitting entrance theme ever), his in ring work is flawless, he's both a powerhouse and a technician and can also do some high spots (even though he doesn't need it at all), his chops have the power of a thousand exploding suns, his face expressions are always believable and for a big strong guy like he is he also knows how to sell pretty damn good. I don't see any major flaw in WALTER and I don't know why wwe doesn't just give him all the fucking belts and never make him lose again ever"
Rating: 10.0
Sentiment: 0.4566145833333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Fan-since-1990wrote on 16.10.2019:[10.0] "Von Kopf bis Fuß ein absoluter Megastar. Unglaubliche Moves im Ring (er hat sogar schon 'nen 619 gezeigt! ), die bei seiner Statur echt phänomenal aussehen. Es passt alles, was er im Ring anpackt. Und WENN er anpackt, dann tut es zudem richtig weh. Seine Handkanten-Schläge sind der Wahnsinn. Als ich live in der Halle erleben durfte, wie er zuhaut, war ich echt schockiert, wie laut es war. Man konnte der Brust des Gegners dabei zusehen, wie sie von einer normalen Hautfarbe zu puterrot wechselte. Darüber hinaus ein 1a-Talker, der es komplett drauf hat, die Massen zu begeistern und dabei authentisch zu klingen. Dass sich die WWE seine Dienste gesichert hat, war ein genialer Schachzug. Und zum Glück nutzen sie ihn ja auch gut und lassen ihn nicht verkommen wie so viele andere großartige Talente."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Ibanezwrote on 27.09.2019:[9.0] "Der Mann der Stunde! Absolut überzeugende Ausstrahlung, Promos großartig und nicht zuletzt, ein sauberer und sicherer Worker! Abseits des Rings sehr sympathisch und immer zu einem kleinen Späßchen aufgelegt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Wrestlefan20wrote on 03.09.2019:[9.0] "He's pretty agile for his size and is also pretty fun to watch. His intimidating look also removed his need to cut promos, which is good."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Jordo09wrote on 02.09.2019:[9.0] "the best big man in wrestling today, he's chop are just brutal and hes matches with Bate and Dunne were some of the best ive seen in years, im glad hes in the WWE even if its NXT UK i hope he makes the jump to raw or smackdown and is pushed as an absolute beast"
Rating: 9.0
Sentiment: 0.22774725274725274
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: taabr2wrote on 31.08.2019:[10.0] "One of the best brawlers in wrestling today. Nearly everything this man does looks like it painful, WALTER is the best monster heel in wrestling today and we need more workers like him. WALTER was until fairly recently the best unsigned talent in the growing European wrestling scene but is now the top guy in NXT's stumbling UK division. The problem has never been with the talent on the division though and more on the execution, if WWE can right the ship I can see WALTER easily becoming the face of the branch."
Rating: 10.0
Sentiment: 0.3863095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Kingtaeyeonwrote on 28.08.2019:[7.0] "Limited move set but has the looks of a powerhouse perfect to dominate the NXT UK scene. He'll falter on the main roster I'm almost certain but on the Indies he shined but his current run on NXT UK brings him slightly down"
Rating: 7.0
Sentiment: 0.19232804232804232
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: CodySquaredwrote on 18.08.2019:[8.0] "One of my favourite Wrestlers right now, but I would love to see him pick up new cooler moves because the slow, sloppy repeating powerbombs and slow methodical chops won? t hold over if he? s to make it to the main roster at all. He was a spectacle on the indies and I? m hoping the magic stays with him being in such a big promotion now."
Rating: 8.0
Sentiment: 0.057207792207792194
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: PuroresuLoverwrote on 13.05.2019:[10.0] "WALTER is the best european wrestler in the world, his chops are brutal as fuck, and his suplexes + big boots are very beautiful. I really wanted to see him wrestle in Japan, like in BJW or NOAH. But he's doing a good job in NXT UK. If you don't know WALTER, please, start watching his matches, 'cause you're gonna love it."
Rating: 10.0
Sentiment: 0.2361111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: AJStylopzwrote on 07.04.2019:[9.0] "WALTER is one of my favorite wrestlers from these days. His monster work is what implaments him as a true Goliath of the business. One of the most destructive and mean motherfuckers you will ever see in the business."
Rating: 9.0
Sentiment: 0.08750000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Oliver95xwrote on 20.03.2019:[10.0] "Walter ist einfach nur der Wahnsinn. Sein auftreten und sein Charisma. Im Ring brutal und wenn Walter auf der Card ist, ist davon auszugehen das er das MOTN zeigt."
Rating: 10.0
Sentiment: -0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Ferdinand Fisawrote on 13.01.2019:[10.0] "Walter ist ein Star und bald not uk champion. Erwartet pure Härte und die beste sportliche Leistung des Abends denn das ist RINGKAMPF"
Rating: 10.0
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Cibswrote on 02.01.2019:[8.0] "A star in process. This guy is really good at what he does, his offense is brutal but he's very good at selling when he has to. He has also shown great ability to adapt to different types of opponents and styles."
Rating: 8.0
Sentiment: 0.307
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: zephyrwrote on 07.12.2018:[8.0] "Old review: Being an intense and talented hoss, WALTER is no doubt on his way to being the next big thing on the indies.  New review: Probably not going to get to beat the hell out of people in WWE and most likely won't be used to his full potential. Oh well."
Rating: 8.0
Sentiment: 0.19863636363636364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: RatingsMachinewrote on 22.09.2018:[7.0] "WALTER delivers some of the stiffest chops in the business, and he's riding that to an unwarranted reputation as a great worker. Take away the chops, and he's still a good worker, but no better than that. Quick; name me a great WALTER match that's not built around those chops. Don't all answer me at once."
Rating: 7.0
Sentiment: 0.4766666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: ohnoeswrote on 17.09.2018:[7.0] "WALTER is one of the most hyped wrestlers outside of the two major promotions, and for good reason: his overwhelming stature and brutal offense (most specifically, his chops) are a sight to see. He can put on consistently good matches with almost anyone as a dominant force, but he's not invincible as he sells well when his opponents evade and counter him. It's true, however, that there are some matches where he becomes too reliant on his chops, and thus his matches become too samey. But there are certainly other matches where he mixes it up well, and the match becomes much more exciting. He doesn't live up to the hype for me, but he's close to doing so, and I do look forward to seeing the matches where he finds the right balance with his offense, with a great dance partner to work with."
Rating: 7.0
Sentiment: 0.28897186147186144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: jan23kidwrote on 21.08.2018:[10.0] "WALTER ist derzeit einer der besten Wrestler überhaupt. Seine Physis und seine Präsenz sind unglaublich und sein sich deutlich vom Gros der aktuellen Kollegen unterscheidendes Wrestling machen jedes Match von ihm sehenswert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: GoldLigerwrote on 21.05.2018:[10.0] "WALTER to me is the best wrestler in the world today. His offense, selling, storytelling, everything, all comes together so seamlessly these days. Ever since the formation of Ringkampf, something awoke in him, and he's been on the run of a lifetime. There's no wrestler out there right now that is more likely to put on a 4 star match on any given night with any given opponent than WALTER. His work in wXw, where storylines are more consistent and the fans are more familiar with his career, has been tremendous during this same timeframe, especially against Ilja Dragunov and David Starr."
Rating: 10.0
Sentiment: 0.3203373015873016
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: WrestlerGewerkschaftwrote on 06.03.2018:[7.0] "Das Im-Ring Können ist ihm definitiv nicht abzusprechen, da rangiert er bei mir klar zwischen 9-10. Charisma würde ich bei ihm jetzt allerdings nicht wie meine Vorredner hoch einreihen. Bei ihm macht es die imposante Erscheinung aus, dass da der halbe Roster der wXw verblasst ist aber keine Kunst. Stellt man den Mann in die WWE, was nun mal der Gradmesser ist, wird er wohl weniger Eindruck schinden. Mic-Work find ich nicht beeindruckend bei ihm, war auch nie gut. Das Ringkampf Gimmick ist ganz nett, aber irgendwann hat man sich da auch satt gesehen. Er ist ganz sicher einer der besten Heavyweights in Europa.  Aber als weltweites Top-Wrestler-Paket zu gelten, da muss dann schon ein wenig mehr her."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KamiyaKojimawrote on 22.02.2018:[6.0] "Eine ganze Weile dachte ich, dass er viel Potenzial hat. Jedoch finde ich ihn irgendwie fast immer noch genauso solide wie vor 5 Jahren. Leider..."
Rating: 6.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: stc13wrote on 20.02.2018:[5.0] "While he's a solid worker, I find his offense and psychology to be fairly limited.  Watching his matches, I just don't feel any level of investment.  There's definitely potential here, but in my eyes he has a lot of room to develop."
Rating: 5.0
Sentiment: -0.023809523809523808
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Makai Clubwrote on 19.02.2018:[10.0] "He is one of the best wrestler of the past decade without doubt. Fantastic in the ring. He has some charisma and an aura of a complete bad ass. He has even shown that he can be quite comedic with his interactions with Thatcher. His single matches are great. His tag matches are great. His offence is brutal yet there is a certain art to it. The best european wrestler not called Zack Sabre Jr for a while. 10"
Rating: 10.0
Sentiment: 0.2014880952380953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Speeblewrote on 19.02.2018:[6.0] "WALTER's chops are the most unnecessarily savage in the business. There's just no need for the level of brutality on display in his matches. Yes, it helps get over his unstoppable badass persona but wrestling is supposed to be about simulating the excitement of combat sports without actually hurting each other. He is a very solid worker but relies far too much on his chops and general ass kicking. It doesn't get me invested in his matches at all, and they often feel like they end far too abruptly. I know the guy is capable of putting on an absolute barnburner, but I haven't seen it yet. It's clear that he would get very over in Japan with his style. I hope when paired up with someone like Okada or Naito he can give me the dramatic epic I'm waiting to see."
Rating: 6.0
Sentiment: 0.041666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Sebastian Vwrote on 27.01.2018:[10.0] "Im Moment in meinen Augen ganz klar einer der besten Wrestler der Welt. Im Ring ist er unantastbar und 10 Punkte reichen da eigentlich gar nicht aus bei der Bewertung. Er ist der beweglichste Big Man überhaupt, er hat gutes Selling, Ringpsychologie, er ist vielseitig und kann eigentlich jeden Stil und jeden Gegner gut aussehen lassen, er hat ein breites Moveset und er hat eine der authentischsten und stiffsten Offensiven der Welt. Zeigt reihenweise Weltklassematches und zeigt generell nie schlechte Matches. Auch ein toller Tag Team Wrestler besonders mit Thatcher. Er ist durch und durch Profi. Charisma verdient bei ihm ebenfalls 10 Punkte. Er ist eine absolut imposante Erscheinung, die die Menschen mitreißt. Micwork ist seine "Schwäche" da würde ich ihm 8 Punkte geben. Hält gute emotionale Promos, ist aber kein extrem kreativer Redner der das Rad neu erfindet. Trotzdem insgesamt 10 Punkte, da der letzte Aspekt sowie er eingesetzt wird und bei dem was er darstellt nicht so ins Gewicht fällt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TheLoudMouthwrote on 04.01.2018:[10.0] "Walter ist in der Form seines Lebens und aktuell wohl das beste Powerhouse der Welt, allein seine Agilität ist nicht von diesem Planeten. Etwas Besseres konnte dem Wrestling in Deutschland und insbesondere der wXw nicht passieren mit diesem Weltklasse-Athleten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Dragon Fighterwrote on 29.11.2017:[10.0] "Ridiculously awesome. Since finding out his work in wxw match with dragunov, he has become one of my favorite wrestlers to watch. His in ring work, psychology are outstanding. His chops are freaking sick- one of the best if not the best in the business right now. He put on a lot of great performances in 2017 so far ( with dragunov, riddle, starr, zsj, etc ). Hope he stays on the indies for a long time and continues to deliver."
Rating: 10.0
Sentiment: 0.44214285714285706
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BigMikewrote on 24.11.2017:[10.0] "For me wrestler of 2017, He's had a few 5 star matches in wxw and with ZSJ. He's only 30 so I hope to see him for a few years to come"
Rating: 10.0
Sentiment: -0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: KingLagartowrote on 05.11.2017:[9.0] "This guy is amazing. Can give a very good match even with his size, wich is very difficult for some wrestler that are smaller than him"
Rating: 9.0
Sentiment: 0.215
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: TooSweetPhilwrote on 25.09.2017:[8.0] "WALTER! Geiler Typ der Österreicher. Früher hatte ich Probleme mich mit ihm anzufreunden, aber seine kürzlichen PROGRESS Matches gegen Matt Riddle haben meine Meinung geändert. Der Typ ist der perfekte Big Man und das zeigt er. Hart as fuck, dazu erbarmungslos, geile Facials, gutes Charisma. Mit Abstand der Beste bei RINGKAMPF und das in jedem Belangen. Hoffe ich kann ihn irgendwann auch live sehen, von mir gibt's hier schon sicher 8/10."
Rating: 8.0
Sentiment: -0.08787878787878789
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Sam ULwrote on 04.09.2017:[10.0] "Legitimer Nachfolger von Otto Wanz. Hat das Zeug auch in den USA zumindest bei den Indies was zu reissen! Wäre interessant, ihn mal in Japan oder bei ROH zu sehen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Mizzle Assault Antwrote on 15.08.2017:[10.0] "Ridiculously good. One of the best in the world at this moment. Just breaking into the US, which he may very well take by storm."
Rating: 10.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Fruchttigerwrote on 25.07.2017:[10.0] "In Europa geht kein Weg an Walter vorbei und auch International zahlt er zu einen gefragten Wrestler und zwar völlig zu recht. Der Ring General ist ein Unikat, es gibt kaum jemanden mit seiner Statur, Technischen Klasse und Härte. Sein authentischer Stil ist Zeitlos. Kein verstellen, kein Showman wie es in Amerika üblich ist auch wenn er mittlerweile auch gute Promos halten kann. Diesen Wrestler kann ich mir immer anschauen."
Rating: 10.0
Sentiment: 0.02500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DerMilanowrote on 11.12.2016:[8.0] "Einer der besten Wrestler im deutschsprachigen Raum. Seine jahrelange Erfahrung und Routine haben ihn zu einem der wichtigsten Männer der wXw gemacht. Ist ein sympathischer Typ, der sich gut um die Academy kümmert."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Viper99wrote on 24.10.2016:[10.0] "WALTER ist für mich wohl momentan mein Liebling bei der WXW. Er repräsentiert genau den Japanischen harten Stil den ich mag und kann diesen gegen jeden Gegner super rüberbringen. Er hat die krasse Statur und ist trotzdem Agil und Technisch begabt. Dazu ist er Charakterlich auch super gut und passt 1A ins momentane Ringkampf Heel Stable."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Deezywrote on 16.04.2016:[10.0] "One of the best heavyweights Europe has produced in a long time. Delivers anywhere on the card, in any role. Always pleasure to watch."
Rating: 10.0
Sentiment: 0.475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: HattuBrandwrote on 23.03.2016:[10.0] "Sehr gut, dass das Profil wieder da ist. Man sollte und darf den paar Idioten gegenüber, die sich hinter einem anonymen Profil verstecken, nicht klein beigeben.   Ich habe Walter 2015 sowohl in Borken als auch in Madgeburg gegen Ilja Dragunov gesehen und allein diese beiden Matches würden eine 10 rechtfertigen. Absolut imposante Erscheinung, technisch überzeugend. Und ich bin mir sicher, dass sein Weg bald wieder in Richtung "Unified World Title" führen wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: DNPwrote on 02.03.2016:[9.0] "Kurz und knapp: in meinen Augen der MVP von westside Xtreme Wrestling; nicht zuletzt, weil er auch ein internationales Prestige genießt, das Bones, Andy, Beck und Konsorten leider fehlt. Zu den Fähigkeiten muss man nicht viel sagen - Walter ist ein absolut kredibiles Monster im Ring und kann mit den Besten mithalten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: BlueDiamondwrote on 21.02.2016:[10.0] "Profil reloaded oder was? Jetzt muss Big Daddy die ganzen Votes nochmal sammeln. Naja, von mir gibt es auf jeden Fall die volle Punktzahl, da Walter im Ring immer unterhaltsam ist, richtig gut brawlen kann, sowohl Face als auch Heelrollen immer erstklassig ausfüllen kann, für die wXw und allgemein das deutsche Wrestling eine Menge geleistet hat und nun mit der Double Duty auf der Tour UND in der Academy auch noch den Nachwuchs für die nächste Generation aufbaut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16807&gimmick=Gunther
Comment: Mandzukic9wrote on 19.02.2016:[7.0] "Da ist sein Profil ja wieder aufgetaucht.  Walter bekommt sieben Punkte dafür, dass er eine der wichtigsten Worker im deutschen Raum ist. Er übernimmt trotz seiner wXw-Rolle als Main Eventer sehr viel Verantwortung, indem er zusätzlich noch in der Academy als Head-Coach tätig ist.  Im Ring ist Walter sehr solide. Wenn er noch ein paar Gramm abnimmt, bekommt er vielleicht noch mehr Kontrolle in seine Matches. Er ist ja auch noch in einem lernfähigen Alter.  Für einen U30-Mann versteht er das Geschäft wirklich schon extrem gut und ist für die wXw immens wichtig."
Rating: 7.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Its Clobbering Timewrote on 15.11.2024:[10.0] "Jushin Thunder Liger is the Man, he just oozes coolness, he's one of the best high flyers of all time and is one of the most important wrestlers ever. A Bunch of moves are still being used today. He's had a bunch of bangers and is an Super iconic look and amazing Wrestler"
Rating: 10.0
Sentiment: 0.4116666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Willie 19200wrote on 10.11.2024:[10.0] "Jushin has to be one of the most recognizable masked wrestlers right behind Rey Mysterio. He has such a cool look, fantastic in-ring skills, and is respected by wrestlers and fans all around the world. I'm also glad that he also knew the right time to retire unlike some other wrestlers. Overall Jushin is a crazy talented wrestler that I really enjoy his old matches."
Rating: 10.0
Sentiment: 0.17642857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Zak22wrote on 20.09.2024:[10.0] "One of the greatest wrestlers of all-time. Jushin "thunder" Liger is one of the most iconic wrestlers ever with his distinctive look, ground-breaking offence and incredible match catalogue. Liger had it all, he obviously was an incredible high-flyer, which was made even better by his super hero look, but his great grappling and striking ability is far to overlooked. I've watch Liger matches from NJPW, WCW, WAR, NOAH, TNA, CWA (Austria/Germany) and All Star Wrestling (UK), and in each promotion I can name at least one extremely good match he had there. Liger was also an ideas man, creating the Super J Cup and the J Crown. His matches with the Great Sasuke (especially at the first ever Super J Cup), with Mark Rocco, with Brian Pillman...they have left a hell of a legacy. Liger defined a generation of Junior Heavyweights and as a result, his appeal is inter-generational and international. One of my GOAT."
Rating: 10.0
Sentiment: 0.4074999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Lukeathonwrote on 20.08.2024:[10.0] "I'd argue he has the most iconic look of any wrestler that is not North American based of all time. He had it all really and is a true legend of wrestling who could still even give believable performances in his later years."
Rating: 10.0
Sentiment: 0.2928571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: TripleCrownwrote on 08.04.2024:[10.0] "Not only is he one of the very best Japanese wrestlers of all time, he's one of the best wrestlers of all time, period. Just like Rey Mysterio, Jushin Liger changed the game for juinor heavyweight wrestlers throughout the world. The guy was just incredible, so damn fun to watch and his ability to "transform" from Jushin Liger to Kishin Liger was really well done and executed. I loved the fact he would wear a different mask and overall attire when wrestling the heavyweight guys too. Putting his wrestling aside for a moment, the guy was just a complete badass in real life. The guy had a brain tumor for crying out loud, he overcame that and still managed to perform at an elite level. Revolutionary wrestler, changed the landscape of professional wrestling forever. One of the greatest of all time."
Rating: 10.0
Sentiment: 0.29411764705882354
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: KEIwrote on 01.02.2024:[10.0] "He was a revolutionary performer, with one of the most memorable gimmicks. A true legend deserves a 10 out of 10 for his tremendous contributions to professional wrestling and in-ring work."
Rating: 10.0
Sentiment: 0.3566666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Deadblowwrote on 17.01.2024:"[10] What can you say? a true Legend, a workhorse, the best Cruiserweight ever, the man who got me into watching Japanese wrestling."
Rating: No rating found
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: The Quick Manwrote on 13.01.2024:[10.0] "Would be a 9.5, but sod it. Nobody is more beloved and respected than Jushin Thunger Liger, and it helped that he chose to retire while still in pretty decent shape and go out a legend rather than do the usual habit of slumming it up in the undercard for years as a New Japan Dad."
Rating: 10.0
Sentiment: 0.26233766233766237
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: JediSaiyanMaster1203wrote on 18.11.2023:[10.0] "A legendary 35 year career of giving us classic matches left and right, one of the best talents to ever get in the ring. Jushin Thunder Liger is one of the most iconic characters in professional wrestling history, his mask is easily recognizable to any fans whether in Japan or America. You could make the argument that he's the most important light heavyweight in professional wrestling history, influences countless wrestlers and many generations from Eddie Guerrero to Rey Mysterio to name a few, he's a true hero to his colleagues and fans alike, a true icon in every sense of the word. Even despite his brain tumor having him being limited to what style he can wrestle, he's found ways to wrestle for as long as he did by mixing it up and going for different in ring styles and remaining relevant for years and years. He's also an innovator who created moves that are still being used to this day (i.e. Shooting Star Press, Liger Bomb, Surfboard Stretch, Liger-plex, etc.), his influence can still be felt to this day. He's had incredible bouts with the likes of Naoki Sano, El Samurai, Koji Kanemoto, Flyin' Brian, The Great Sasuke, etc. Overall, a true legend in professional wrestling, one of the best characters and in ring performers of all time who has stayed relevant in many eras and generations and is influence is still felt to this day."
Rating: 10.0
Sentiment: 0.3510317460317461
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: deceivrwrote on 10.09.2023:[9.0] "Moyase, moyase. Bring out your masks and fans, it's Jyushin Liger. A man whose legacy can be considered by many to be one of the most important to-date. Even when he had been in the same realm as other Lucharesu stars such as Satoru "Tiger Mask" Sayama, Yoshihiro "Ultimo Dragon" Asai and many more, Kei'ichi Yamada, who we all know as Jyushin "Thunder" Liger, had always been a stand-out among the crowd. He has even brought in a similar way to that of the mystical Tiger Mask, wherein he was made to be an advertisement for a show. Yeah, you heard me right. A show! And it was... pretty good? Well, if you can tell based on the comparisons, he definitely did change; in-fact, he looks so vast and unique compared to the original get-up they had for Yamada. One aspect of Liger's that I do have to get out of the way is that his wrestling style, even if it had evolved to make himself safer and more stable before retirement (which he did not want to have young, hence why he retired at the age that he did), he had still made himself recognized in spite of the troubles he had in his body. The Beast God transformed himself from a high-flyer with little cause and big trouble, to a striker and a technician that had built upon the rage that he had stored; a move that his trainers, Kotetsu, Kumicho and Fujinami, would be proud of, indeed. At the midst of his retirement, he had built up a reputation as a workhorse and an undeniable force within the world of Japanese professional wrestling, and for good reason too; like Sayama, Asai and the stars of AJPW and NJPW past, he had been built and transformed into a mystical being, one that would only be seen to be believed that such a person could've truly existed in the time he did. His wrestling ability surely made up for it, too. We shall remember Jyushin Liger for the evolution and processes of progression that made him what he had been ended as; an undeniable figure who truly holds the mantle of the greatest Junior Heavyweight in wrestling history. Keep raging, Liger; we shall remember you fondly."
Rating: 9.0
Sentiment: 0.2464880952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Loghan Morescowrote on 06.07.2023:[10.0] "perhaps the greatest japanese wrestler to ever step foot inside a squared circle, the wrestler with the biggest amount of matches in wrestling history and perfect for his role, A WORKHORSE."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "One of the best Japanese wrestler ever, period. One of the best cruiserweights we had in WCW in the 90's. Wish he could have stuck around longer over here."
Rating: 8.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Frank Shooterwrote on 18.05.2023:[10.0] "In my opinion, the greatest cruiserweight of all time. There wouldn't be a Rey Mysterio without Liger. Innovative, flawless in the ring, a worldwide recognizable mask and the eternal Junior Ace of NJPW. The word "legend" is not enough to describe him."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: ElegantImpactwrote on 17.04.2023:[10.0] "One of the greatest of all time, Liger was a trailblazer for junior heavyweight wrestling. Completely selfless and always giving, I also love him these days on commentary as he's always super excited"
Rating: 10.0
Sentiment: 0.4616666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: TheOneAndOnlyCactuswrote on 30.03.2023:[10.0] "Probably the greatest Junior/Cruiserweight of All-Time, Liger is a man that pushed the boundaries of what Juniors could do in the ring and in the box office, and managed to reinvent himself to keep wrestling day-in and day-out despite suffering from a brain tumor in the middle of his prime. A trailblazer for the current crop of Juniors."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Daigotsuwrote on 16.01.2023:[10.0] "Liger is one of the best to ever do it. He's a phenomenal junior heavyweight and a true titan of the industry."
Rating: 10.0
Sentiment: 0.6166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: benh2wrote on 12.01.2023:[10.0] "The greatest junior ever. Could work many styles and had such a long career that his legacy is unmatched. Incredible innovative offence along with the psychology to make it sensical. Obviously a great unique look that connected with fans through multiple eras. Even Kishin and heel Liger were great in their own right."
Rating: 10.0
Sentiment: 0.4758928571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: MainEventMasterwrote on 02.01.2023:[10.0] "The greatest Junior Heavyweight OF ALL TIME, the legacy that this man has left behind in professional wrestling cannot be denied."
Rating: 10.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: NoSellwrote on 26.10.2022:[10.0] "An inovator, a pioneer and simply the greatest Junior Heavyweight in the history of wrestling. Delivered awesome matches literally up until his final one."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: UWF Rules Enthusiastwrote on 06.05.2022:[10.0] "Jushin Thunder Liger is arguably the greatest junior heavyweight pro wrestler ever. During the 1990s, he played a huge role in the NJPW junior heavyweight division being so popular. Many of his feuds with some of the best junior heavyweights from all over the world are classics. He was involved in some of the best junior heavyweight matches of the 1990s. He had a long career, and even when he was getting older and winding down his career, he still tried to contribute as much as he could to the matches he was involved in."
Rating: 10.0
Sentiment: 0.46611111111111114
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: NeoSwas36wrote on 23.03.2022:"Liger had a super goofy gimmick based off of a forgettable anime and turned it into one of the greatest ones ever. The best Junior of all time, produced some fantastic matches. Wrestled across the world and just about never had a bad match. Absolute legend, easy 10."
Rating: No rating found
Sentiment: 0.29629629629629634
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: GriffinXwrote on 20.01.2022:[10.0] "If you know wrestling how can you not vote Liger a 10' The man took what could of been a goofy gimmick of Superhero comes to wrestling and made it last decades. He was able to go to just about every company ever and have good matches. Also should get a lot of credit for how he rebuilt his style post 96."
Rating: 10.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: IBladeDailywrote on 08.10.2021:[10.0] "One of the all-time greatest ever in any weight division. Jushin Liger first came on to my screen when I was 11 years old in WCW. I was mesmerized. I bought Superbrawl 92 to see Pillman-Liger and was not disappointed. And Liger lost! Further, he made a remarkable transformation from inventive high-flyer to incredible mat wrestler after his cancer surgery. And, without knowing much English, he was able to translate his personality and charm to American and European audiences as easily as he connected with Japanese fans. In my opinion, the greatest junior heavyweight of all-time and one of the best to ever do it anywhere."
Rating: 10.0
Sentiment: 0.43138020833333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: BlakeFR37wrote on 02.06.2021:[10.0] "That's a Ten. 10. Not like Tye Dillinger. But he's also a perfect Ten. A Better Ten. Facts. Face the Facts. Not like Curt Hawkins. But face them."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Kungwrote on 21.03.2021:[10.0] "He's a 10. I know it. You know it. We all know it. Why argue with this fact? It's just true. Thank you for coming to my Ted Talk."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Strong Zero Machinewrote on 14.12.2020:[10.0] "Liger is simply the best! Iconic and Legendary! Best Junior ever, best mask and a really nice guy with fans. Over 35 years in the ring and 30 years with the same gimmick. A true love story with the business, crowd and wrestlers. Thank you Mr Liger/Yamada for this 35 years and more with this commentary career thanks for everything!"
Rating: 10.0
Sentiment: 0.5487179487179487
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: medousewrote on 10.12.2020:[10.0] "The absolute legend of japanese wrestling scene and one of the most unique personas in pro wrestling. Over 30 years in the same gear, mask and with the love of the crowd. Such dedication for this business. Technically skilled, awesome gimmick and he was still in great shape wrestling at 56 years old. Thank You Jushin for Your whole career."
Rating: 10.0
Sentiment: 0.34791666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: rainmakerpunkwrote on 07.11.2020:[10.0] "Based on an anime character he'd become more iconic than Jushin's career is more incredible than it had any right to be, given a strange gimmick, committing and making this character his own, his odd and crazy look drew people in and his incredible talent while eyes were on him turned them to fans, he was in some of the best 90s NJPW matches, he had high level in-ring skill and top tier charisma, he's the most successful super junior ever, his legacy will live forever"
Rating: 10.0
Sentiment: 0.3969849758085052
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Scott Kobayashiwrote on 07.07.2020:[10.0] "There are a few people in the wrestling world who giving anything less then a 10, is straight up disrespectful. Tanahashi and Undertaker for example. Liger is one of those guys. An iconic look and is one of the most revolutionary junior heavyweights ever. His battles with Sano and Sasuke helped pave the way for the likes of Matt Sydal and Ricochet. An easy 10 and the greatest junior heavyweight ever. Sorry Rey, you can be no. 2. Because Liger is king."
Rating: 10.0
Sentiment: 0.22083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: PuroresuLoverwrote on 04.01.2020:[10.0] "Over 30 years of career, and were by far, the best three decades of professional wrestling. Jushin Thunder Liger is simply a legend, he was the best Junior Heavyweight to exist on planet Earth, I'm really sad that he's going to retire and I'm not mentally prepared to watch his last match. Thank you, Liger, you'll be missed."
Rating: 10.0
Sentiment: 0.21875000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: VillainClubwrote on 23.12.2019:[10.0] "Eine Legende, bei dem man nicht unter die Top Bewertung gehen kann. Es gibt wenige, die in dem alter noch auf dem Level abliefern können."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: KyleEnjoysWrestlingwrote on 01.08.2019:[10.0] "One of the most influential wrestlers of all time. Amazing in the ring from day one until now. Could work both smaller man matches & with more main event players. Helped establish WCW's cruiserweight division. Invented the shooting star press. A total legend."
Rating: 10.0
Sentiment: 0.29444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: NEVERoverweightChampionwrote on 05.07.2019:[10.0] "One of, if not THE most iconic junior heavyweight of all time. Delivered many classics with his high flying technical style and still can put amazing matches at 54 years old. An impressive longevity for a huge legend who totally deserves the honor of retiring at the Tokyo Dome. His influence can't be understated."
Rating: 10.0
Sentiment: 0.376
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "The guy has stayed one of the best wrestlers in the world for over 30 years. He has slowed down a little due to age but thats to be expected after 30 years of consistant amazing wrestling without any long breaks. Has become an icon of wrestling."
Rating: 10.0
Sentiment: 0.14027777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: zephyrwrote on 16.03.2019:[10.0] "What can you even say about Liger? He's had one of the longest, most consistently great careers in wrestling history and is still able to put on absolute banger matches at age 54. One of the all time greats."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: LandonRyanWyattwrote on 31.01.2019:[10.0] "A true legend that has stood the test of time. Quite possibly the best Junior heavyweight in the history of the business. Technical high flyer that will always be one of the best."
Rating: 10.0
Sentiment: 0.4183333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Aurtletheturtlewrote on 03.12.2018:[10.0] "Who doesn't love this man? Absolutely can still go at 50+ years and with a reputation and history that long surpasses 99% of other wrestlers, Liger is one of the most universally cherised as well as talented wrestlers in the history of the sport. With a run through the 90s that made him into an undoubtable world class talent to be remembered for decades, Liger has managed to cement his place in the hall of fame of professional wrestling. On top of that he is a delightful person."
Rating: 10.0
Sentiment: 0.3325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: SuperJrFanBoywrote on 17.11.2018:[8.0] "Jushin Liger is one of my all-time favourite wrestlers. His life story is inspiring and he has always managed to be entertraining and provide good matches when push comes to shove. I do have to admit that he is far from being the greatest Junior every as some people hail him to be. Liger has done basically everything he could, including holding titles in NJPW, CMLL, Dragon Gate and WCW not to mention the J-Crown and the fact he has technically also wrestled for WWE.  His ring work is not exactly on par with guys like Sayama, Kanemoto, Fujita or Sasuke in terms of innovation and how exciting they can be, but Liger in his prime could put out a good match against basically anyone. His matches over the IWGP Jr. Heavyweight Championship and the J-Crown stand out, as well as his matches against Brian Pillman for WCW. I am also a huge fan of his match against CIMA for the Open the Dream Gate title, altought admitely it's far from being both men's greatest performance."
Rating: 8.0
Sentiment: 0.38958333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: arrancarwrote on 19.10.2018:[7.0] "Hot take which will probably be excused as a 'newbie'/'attention-seeking' comment: Liger is massively overrated. I know he is a 'legend', but that's mostly just because he got pushed as such. My issue is that he simply never impressed me as much as his contemporaries. Straight up: his offence was painfully average. These days people love to say Liger "looks like he hasn't missed a step! "... but that's more a criticism of his work at his 'peak', because he NEVER looked like a proper athlete. I have honestly yet to see a match from Liger in his 90s that has shown me evidence of his supposed legendary in-ring work. The guy had creative moves, but compared to the likes of Sayama, Otani, Kanemoto, Ultimo Dragon, and Minoru Tanaka, he simply wasn't as acrobatic, intense, flexible, athletic, or energetic. Liger's limbs would flail all over the place when delivering an aerial move, and his body-shape made him look like a flying bag of potatoes. His chemistry also wasn't anything special; I can't remember too many fluidly constructed sequences he was part of. Thus I struggled getting excited for much of Liger's offence, because his movements and attacks didn't look finely polished like so many other 90s juniors. Liger still produced plenty of very good performances, but all of his 'great' matches I would argue were ones he was mostly carried in by his opponent. God, I can only imagine how heretical what I'm saying must sound to like 99% of puro fans lol. Well, let me now mention the positives of Liger: Firstly, I actually enjoy his work in the 2010s WAY more than any other era. He plays the veteran role extremely well, and because he isn't bothering with as many lame aerial attacks he is able to focus more on getting his character's passion across and showing off his power moves (which were always his speciality imo), so he's MUCH more enjoyable to watch in the current day. To my mind, Liger's 2017 match with Taichi was his greatest performance."
Rating: 7.0
Sentiment: 0.31156385281385285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Jushin Liger was the best junior heavyweight/light heavyweight wrestler of the 90s and an unquestionable hall of fame-level talent. Liger was known for his flying, but he could wrestle as well, as shown by how well he adapted to having to tone his flying as the years went by."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Makai Clubwrote on 06.08.2018:[10.0] "Hard to deny his status. Whilst I prefer Kanemoto over him as the great Junior Wrestler at least in the modern time (Post 50's), he is still up there with him. Great innovator,  very adaptable to any situation whether it was him wrestling as a heel, a spot fest, fighting babyface, even comedy. He was excellent in these situations. Even if his heavyweight run is unremarkable and very short, that Muta match is a big highlight which says it all about how great Liger was in the 90's. Legendary wrestler without a doubt."
Rating: 10.0
Sentiment: 0.38257575757575757
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: DaWizWithADwrote on 07.07.2018:[10.0] "I have a bad habit of gushing about Liger all day whenever I talk about him with my friends. If there's one word I'd use to sum him up it's consistent. He's the Jerry Rice of Wrestling, he's always been good ever since he adopted the great Jushin Liger gimmick. The look will go down in history as one of the most iconic. It's hard to appreciate it nowadays, but he truly was one of Wrestling's greatest innovators as well."
Rating: 10.0
Sentiment: 0.2891975308641975
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: TheRealAteszwrote on 10.06.2018:[10.0] "He is the best high flyer that i have ever seen. Legend but not just any legend hes a living legend for all highflyer, cruirserweight wrestler and the numbers of his fans."
Rating: 10.0
Sentiment: 0.58
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: GoldLigerwrote on 21.05.2018:[10.0] "Jushin Thunder Liger is legitimately a personal hero of mine, and I say that having not gotten into pro wrestling until 2013. I actually respect him most for what he's done in his later years: adapting his style to suit his age while maintaining all the charm that only he can bring, helping and supporting Junior Heavyweights of the future, giving his all for professional wrestling. The way he overcame a full-on brain tumor and got right back into the game and adapted to that in the ring is truly inspiring, having known somebody very close that went through brain surgery. His history, his influence, his legendary body of work, his inspirational story, his love of the business, his support for the future, and my personal enjoyment of seeing veterans still have it (he's had good, great, and fantastic matches even after turning 50). Indisputably a Top 25 talent of all time, and Top 10 in Japan, but in my heart he is the #1 GOAT."
Rating: 10.0
Sentiment: 0.2754658385093168
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Paul Allainwrote on 06.02.2018:[10.0] "What an amazing man ! The bedazzling look and entrance are met with prime innovative skills. But the most impressive part is that is career consists of 33 years of solid-to-perfect performances, even after suffering a brain tumor ! Liger is the definition of a living legend."
Rating: 10.0
Sentiment: 0.6875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: taabr2wrote on 10.09.2017:[10.0] "The greatest junior heavyweight in the history of NJPW and the guy can still go even today! Jushin Thunder Liger also played a role in showing American wrestling fans how good cruiserweight wrestling can be with his sporadic appearances in WCW in the 90s."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: PistolPeteMattywrote on 10.06.2017:[10.0] "The greatest Junior Heavyweight of all time, and a true trailblazer of the high flying style. Nowadays, more likely to be wrestling a technically focused match than busting out Shooting Star Presses, but he aged his style well."
Rating: 10.0
Sentiment: 0.2728571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Blood Pumpwrote on 24.04.2017:[10.0] "Ive been catching up on some of the stuff I haven't seen from Liger and Ive gotta say hes a true king of adaption and one of the greatest all rounders in the history of puroresu. He isn't a hard hitter (though his spinning wheel kick can be pretty brutal from time to time), but his technical ability is better then Benoits I'd argue. His aerial game has diminished over the years understandably but hes swapped it out for the sake of better psychology. Hes always had a butt-load of charisma and knows how to adapt better then anyone (for example one of his matches with The Great Sasuke involved Sasuke slipping on the rope and Liger making something out of it). A few days ago I was going to 9 him but it wouldn't have been fair given I hadn't watch too much from him. Now, hes pretty easily a ten out of ten. His latest work hasn't been outstanding but hes in his 50s anyone that old will be worn down."
Rating: 10.0
Sentiment: 0.20555555555555552
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: BerserkGutswrote on 14.04.2017:[10.0] "Nothing more needs to said about Liger that hasn't been said before. Revolutionised junior/cruiserweight wrestling in front of the biggest promotions and is still recognised world wide. At 52 years of age, he is still entertaining fans and is not slowing down any time soon."
Rating: 10.0
Sentiment: 0.18611111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: craigohwrote on 01.02.2017:[10.0] "possibly THE most influential Cruiserweight wrestler to ever grace the ring - a pioneer of so many moves and is STILL putting on good matches across the globe in his Early 50's - this man deserves the Respect he gets in this business and so much more"
Rating: 10.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Chekerwrote on 11.01.2017:[10.0] "What else is there to say about Jushin Liger, really? The man was AND IS an inspiration to so many juniors, he made a campy gimmick work, and he's a great wrestler on top of that. Not to mention he is still very good at 52 years old."
Rating: 10.0
Sentiment: 0.5016666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: NastyYaffawrote on 01.01.2017:[10.0] "Truly a legend, one of the greatest wrestlers of all-time. It's funny how Liger, while in mask, still could (& still can) express so much more emotion than many of the wrestlers without a mask. Incredibly charismatic, amazing in the ring - yep, Liger is amazing."
Rating: 10.0
Sentiment: 0.5642857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Yoyowrote on 11.12.2016:[10.0] "Saying he's the greatest of all Jr. Heavyweights is an understatement; he's one of the best ever regardless of weight class."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Devitciiuwrote on 18.09.2016:[9.0] "Liger never seemed to have a match in North America worth talking about, but his battle with Hayabusa for the JC was amazing. I would consider Liger vs Mutah October 20, 1996 to be the quintessential wrestling match but the wrong guy went over."
Rating: 9.0
Sentiment: 0.1333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Awesome1wrote on 14.05.2016:[10.0] "if you have never watched Japanese Wrestling before you will only know the a couple of them including Jushin Thunder Liger. His image is so well known and he is easily the top 3 cruiserweights of all time"
Rating: 10.0
Sentiment: 0.23333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "All time great, no question. Innovative flier but perhaps even better on the mat, a masterful technician whose influence can be seen tremendously on multiple generations of workers. Still putting out good matches to this day, incredible longevity. Honestly one of the best to ever lace up, just amazing."
Rating: 10.0
Sentiment: 0.6599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: meatrockit83wrote on 17.04.2016:[10.0] "Jushin Thunder Liger is the greatest junior heavyweight to have every lived, and that is not up for debate.  His body of work says it all."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: ApexOfEvolutionwrote on 31.03.2016:[8.0] "Das Manga-Gimmick ist sicherlich unterhaltsam und mit hohen Wiedererkennungswert, dazu hat er auch noch den perfekten Theme. Für mich passt das Ganze aber eher in 90er Jahre und war mir persönlich immer etwas zu übertrieben. Anerkennenswert sind sicherlich auch seine Leistungen für die Cruiserweight-Division. Die Leistungen in den letzten jahren haben altersmäßig nachgelassen, er ist aber immer noch gut in der Lage junge Worker over zu bringen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Sinestrowrote on 21.01.2016:[10.0] "Ein Idol aus meiner Kindheit, der bis heute gute bis sehr gute Matches abliefert. Sein Gimmick und sein Outfit begeistern mich bis heute, einfach richtig cool."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Oddark123wrote on 06.01.2016:[9.0] "Jushin Liger is a legend in the true sense of the word. He deserves the awe that accompanies his name. His influence and personal accomplishments across his career and all the places it has taken him is something to be proud of. If I hear Jushin Liger is wrestling I expect a solid match and it's always delivered. As his health and life changed Jushin changed with it and didn't suffer because of it. This man should always have a place in the wrestling business in some form."
Rating: 9.0
Sentiment: 0.2875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Alo67wrote on 27.12.2015:[10.0] "Ich habe mir schon sehr viele matches von Liger angeschaut um jetzt ihn zu bewerten , also Liger finde ich ist Weltklasse im Ring und bringt sehr viel Charisma von sich jedes mal wenn ich Liger sehe weiß ich dass er ein starken Kampf hinlegen kann . So ein schöner Submission Spezialist . Mir gefällt er sehr gut und ist momentan mein Lieblingswrestler ich kann ihn nur in den Himmel loben einfach klasse was der Mann jedes mal macht . Und deswegen bekommt er die Höchste Punktzahl ;D ."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: KimboSlicewrote on 08.09.2015:[10.0] "eigentlich wurde hier schon alles gesagt. Innovativ, revolutionär, talentiert... sucht es euch aus. Jemand, der Meilensteine für Cruiserweights legte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: New Strategywrote on 24.08.2015:[9.0] "JTL hat mich damals zusammen mit Brian Pillman zur WCW gebracht. Ihr Aufeinandertreffen bei Superbrawl 92 hat mich extrem fasziniert, so dass ich neben der WWE zum ersten Mal eine andere Wrestling-Liga auf Dauer in Augenschein genommen habe. Neben der WCW auch noch New Japan. Ein großartiger Wrestlier."
Rating: 9.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Antimasterwrote on 08.06.2015:[10.0] "Wer mit 50 noch so gut ist, so viele Meilensteine des Junior Wrestlings gesetzt hat und obendrein noch so sympathisch rüberkommt, kann nur die Höchstwertung bekommen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Kevin434wrote on 02.05.2015:[10.0] "Einer der wohl wichtigsten Wrestler aller zeiten, er hat das Highfly-Wrestling revoluzioniert. Auch heute noch workt er trotz seines Alters ordentliche Matches. Er ist einer der besten Wrestler aller Zeiten, es macht immer spaß seine Matches anzusehen. Ein toller Wrestler ohne den Wrestling vielleicht garnicht so wäre wie es jetzt ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Viper99wrote on 02.04.2015:[10.0] "Er gehört absolut verdient unter die besten Light Heavyweights aller zeiten. Was dieser man einfach früher gezeigt hat und selbst heute noch zeigt ist absolut bemerkenswert."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: SapolBlackwrote on 27.03.2015:[10.0] "Wenn man den besten Lightweight Wrestler alles Zeiten bestimmte müsste wäre es, Jushin Thunder Liger. Bei der wXw zum ersten mal Live gesehen und für sein jetztiges Alter immer noch in Top-Form.  Er ist gibt keinen besseren Wrestler in seiner Gewichtsklasse und hab einfach nur größten Respekt vor diesen Mann!"
Rating: 10.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: JayCutlerwrote on 02.03.2015:[10.0] "Bei einigen Wrestlern sollte man die 10 Punkte gar nicht erst erklären müssen. Wir reden hier von Jushin Thunder Liger!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: eldenaaaaawrote on 02.03.2015:[10.0] "Let's be honest, the man was a legend before 2000. Since 2000, he has worked for every major wrestling company in America (outside of WWE) and Japan. Dream matches and accolades galore. Just turning 50, Liger is still going!"
Rating: 10.0
Sentiment: 0.22083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Shentenzawrote on 11.02.2015:[10.0] "Es gibt denke ich keinen japanischen Wrestler der eine größeren Ikone auf der ganzen Welt ist als Jushin Liger. Dazu noch ein überragender Wrestler und Performer. Ikari no juushin LIGER!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Matt4Wrestlingwrote on 18.10.2014:[10.0] "DIE Legende überhaupt aus Japan! Was soll man noch über diesen Mann schreiben! Vor Jahren ein spitzen High-Flyer, jetzt im Alter fliegt er weniger, aber wurde in einer Kombi aus High-Flyer und Techniker ein Super Komplettpaket! TOP!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Phenomenal91wrote on 04.10.2014:[10.0] "It's very appropriate that his character is an anime superhero, because this guy is capable of doing things that no other human could possibly do. What's more, he's been doing this for 30 years and is showing no signs of slowing down. He could still clean up in a major company, and I hope he does soon."
Rating: 10.0
Sentiment: 0.1873456790123457
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Wrestling Foreverwrote on 04.05.2014:[10.0] "Eine absolute Legende aus Japan und einer meiner Lieblings Wrestler aus Japan. Sein Gimmick das ja auf einen Kult Anime/Manga basiert hat er immer im Laufe seiner Karriere neu erfunden. Unmaskiert war er nur als Kishin Liger mit viel Schmicke zu sehen. Trotz seines Alter zeigt er immer noch eine klasse Leistung auch wenn die nicht mehr seine Leistung aus den 90er heranreicht."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Steenericowrote on 03.05.2014:[10.0] "Jushin Thunder Liger ist ein herausragender Wrestler, der nicht umsonst an massig hervorragenden Matches beteiligt war. Und auch mit seinen 49 Jahren zeigt er immer noch gute Leistungen, auch wenn diese natürlich nicht mehr an alte Zeiten herankommen. Klare 10 Punkte von mir."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Matzinhowrote on 09.02.2014:[10.0] "Liger ist Gott. Der Typ kann einfach alles und hat ein verdammt cooles Gimmick, das sowohl als Face als auch als Heel funktioniert. Liger ist einer der wenigen Ü-40er, die es immer noch drauf haben. Er hat zum richtigen Zeitpunkt seinen Stil umgestellt und liefert bis heute gute Matches ab. Klar - wie zur besten Zeit wrestlet er nicht mehr. Aber die Leistungen im Ring sind weiterhin solide und die Aura und der Coolness-Faktor halten die Wertung auf der 10. Hoffentlich macht der noch ein paar Jahre auf dem Level weiter."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: CJ Duskwrote on 09.02.2014:[10.0] "Move for move one of the best wrestlers of all time and maybe the best Jr Heavyweight ever."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: JourneybyTrainwrote on 21.12.2013:[6.0] "Jushin Liger is a good junior heavyweight but I fail to see the brilliance of mediocre mat wrestling for 10 minutes followed by a missile dropkick. Still he's very consistent, versatile and has produced a couple of great matches (vs. Sano and the NJ/NOAH feud)."
Rating: 6.0
Sentiment: 0.16499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Bluminho 93wrote on 03.12.2013:[10.0] "Man muss nur an Junior Heavyweight Wrestling allgemein denken und sieht Liger vor sich. Liger ist einfach der Wahnsinn. Er kann jeden Stil wrestlen und dabei immer tolle Matches zaubern. Da stimmt einfach alles bei ihm. Dass man sogar heute, nach fast 30 Jahren als Wrestler, sich immer noch nicht wünscht, dass Liger nur noch in Tag Matches antreten soll, weil man sich ihn nicht mehr anschauen kann, wie es bei den meisten anderen Legenden heutzutage der Fall ist, sagt eigentlich schon alles. 10 Punkte sind das Minimum für ihn!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Alex Maedawrote on 30.07.2013:[10.0] "Der erste japanische Wrestler außerhalb der WWE, der mich in den Bann gezogen hat. Ist mir jetzt egal, ob ich alle seine Klassiker gesehen habe, allein seine Matches gegen Pegasus Kid/Chris Benoit (shame on me, ich hab Benoit geschrieben) und den Great Muta sowie die Tatsache, dass er die Shooting Star Press erfunden hat, würden mir ausreichen, um ihn 10 Punkte zu geben. Auch heute kann er noch ordentliche bis gute Matches abliefern und ist sich nicht zu schade, für junge Talente den Job zu machen. Einer der ganz großen Ikonen, von dem sich Wrestler weltweit sowohl optisch als auch wrestlerisch beeinflussen lassen."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Play2Xwrote on 11.03.2013:[10.0] "Hat Legendenstatus, aber kann selbst als 50jähriger immernoch vernünftige Matches hinzaubern.  Jedes Mal, wenn er in den Ring steigt, kommt ein Feeling von Nostalgie auf. Muss nur sehen, dass er bald den Absprung kriegt..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Kenshin Uesugiwrote on 22.02.2013:[10.0] "Auch wenn es einige nicht glauben, aber Liger war und ist besser als Tiger Mask und was Legendstatus angeht hat er ihn eigentlich schon überholt. Eines der bekanntesten Aushängeschildern von NJPW und des Puroresu, gepaart mit allem was ein Wrestler brauch, auch wenn seine Größe ihm die Karriere als Heayweight versperrte. Aber gerade das scheint der Ansporn gewesen zu sein Leistungsmäßig Ebene zu ereichen die nun zum guten Standard gehören. Und natürlich denkt man sofort bei ihm an sein Highflying und Technik, das der Kerl aber auch Power Moves und Kraft hat sieht man erst auf den zweiten Blick. Werde nie vergessen wie er Hashimoto mit einer Liger Bomb auf die Matte donnerte. Sicherlich wie jeder Wrestler der über zwanzig Jahre im Geschäft ist nicht mehr frisch und top fit, aber immer nocht gut dabei und was man vor allem besonders hervor heben muss das er nie in seiner ganzen Laufbahn sich über andere stellte, noch heute versucht er alles um andere over zu bringen, ganz wie in der Vergangenheit. Da kann man sich doch nur ganz tief vor DEM Junior Heavyweight verneigen."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: HeelJenniwrote on 05.01.2013:[10.0] "Meiner meinung nach einer der Besten aus Japan, wenn nicht sogar der Beste. Ich bin sehr froh, dass ich ihn 2010 Live erleben durfte."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: FranziiXDwrote on 28.09.2012:[10.0] "Ich finde er ist einer der besten Wrestler.  einfach top!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: ARIZAwrote on 15.06.2012:[10.0] "Was Kobashi, Misawa oder Muto bei den Heavyweights sind, das ist Liger bei den Juniors. Eine absolute Legende und einer der größten des Sports."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: JerriTron 5000wrote on 04.03.2012:[10.0] "Meiner Meinung nach der beste Junior Heavyweight, den es je gab.  Außerdem einer meiner absoluten Lieblinge. Schlicht und einfach eine Legende des Puroresu."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Rated R Champwrote on 05.01.2012:[10.0] "Was soll man zu Liger noch großartig sagen, der Mann ist eine absolute Legende und das nicht nur in Japan. Großartiger Worker, der seit weit mehr als 20 Jahren tolle Matches zeigt (auch wenn er heutzutage natürlich nicht mehr in Bestform ist). Das Gimmick ist dazu einfach nur kultig. Ausserdem hat er uns den Super J Cup gebracht."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: jerseyhoolwrote on 29.10.2011:[10.0] "Der meiner Meinung nach beste Wrestler, den Japan je sah & sehen wird. Nichts gegen Baba, Misawa, KENTA & Co. , aber JTL ist der Beste. Punkt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Sirius Van Grathwrote on 02.10.2011:[9.0] "Mein absoluter Favorit was das japanische Wrestling angeht! Ein richtig guter Wrestler!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Kartmanwrote on 19.08.2011:[10.0] "Jushin "Thunder" Liger is a living legend, pure and simple."
Rating: 10.0
Sentiment: 0.10714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Michael Shawn Hickenbottomwrote on 29.07.2011:[10.0] "Einzigartig. Perfekt. Allein seine Highflying Aktionen sind legendär. Er ist einfach ein Mythos, der Mann hinter der Maske, der die Shooting Star Press 1987 erfunden hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Hans Gruberwrote on 07.07.2011:[10.0] "DER Junior überhaupt. Ach wenn er seinen spektkulären Stil schon länger runter gefahren, und auch ansonsten nicht mehr der "frischeste" ist, an der 10 ändert das gar nichts."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: downtown2wrote on 29.03.2011:[8.0] "Um Liger richtig bewerten zu können, muss man eigentlich die japanische Wrestling-Kultur verstanden haben. Jedenfalls wird er dort aufgrund seiner Technik verehrt und war zudem in der Lage, sich den europäischen, nordamerikanischen und mexikanischen Stilen reibungslos anzupassen. Sein Äußeres ist auf der einen Seite typisch japanisch, dennoch aber sehr individuell, was ihn auch außerhalb des Rings unverwechselbar macht. Was mir hingegen nie zusagte, war die Interaktion mit dem Publikum, ein wichtiger Indikator eines echten Superstars, sowie die Außendarstellung am Mikro. Diese beiden Kritikpunkte sind aber Gesichtspunkte eines Mitteleuropäers, weshalb ich nicht beurteilen kann, ob diese für einen Japaner ebenfalls Gewicht haben. Selbst wenn, stellen sie bei diesem Ausnahme-Könner nur Makulatur da."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Teekaywrote on 22.02.2011:[4.0] "Technisch brilliant, aber seine Aufmachung ist einfach zum abgewöhnen. Wer Show machen will, sollte auch optisch etwas mehr her machen, als nur bunt zu sein..."
Rating: 4.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Damon Strikerwrote on 11.02.2011:[10.0] "Seine Hochzeit habe ich leider gar nicht so bewusst miterlebt und trotzdem gebe ich ihm natürlich die volle Punktzahl. Zum einen, weil seine Glanzleistungen der Vergangenheit unbestritten sind und zum anderen, weil er heute zu meinen Favoriten zählt und immer ein Grund ist, ein Match anzusehen. Im Ring auch nach wie vor überzeugend!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Kitanoyamawrote on 30.01.2011:[9.0] "Viel habe ich nicht von ihm gesehen, aber Wrestler, die im relativ hohen Alter noch soviel Ansehen, Stärke und Erfolge vorweisen können verdienen meinen Respekt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Lakaseywrote on 30.01.2011:[10.0] "Man muss sich vor Augen halten, welch eine Leistung er in seinem Alter noch bringt. Eine echte Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Mick Funkwrote on 17.01.2011:[10.0] "Die Überlegende trotz relativ peinlichem Power-Ranger Outfit. Wird zwar langsam auch mal Zeit aufzuhören, aber so schlimm ist es auch noch nicht, da sind noch einige andere vorher fällig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: chaoswrote on 11.01.2011:[10.0] "Der beste Junior Heavyweight den es jemals gab. Eine absolute Legende."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: El Reywrote on 19.12.2010:[10.0] "Bester Junior Heavyweight aller Zeiten. Unglaubliche Ringübersicht und lässt seine Gegner immer gut aussehen.  Eine lebende Legende und unglaublich freundlich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Necronwrote on 03.12.2010:[9.0] "Yeah! Kenne ihn zwar nur aus der Zeit, in dene japan. Wrestling auf Eurosport lief - war damalas aber mein absoluter Fave!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: yokosbrotherwrote on 15.11.2010:[10.0] "Mein Favorit bei den Japanern. Unglaubliche technische und in-ring Fähigkeiten. Gehört in einem atemzug genannt wie Bret Hart. Tolle Matches egal wo auf der Welt er aufgetreten ist. Tolles Gimmick das auch heute nicht langweilig wirkt im gegensatz zu Hogan. Hat in den 90er das Cruiseweight auch bei der WCW getragen nur fand ich in in Japan konnte er mehr zeigen. Kenne keinen einzigen schwachen Kampf von ihm und für einen der jede Woche wo aufgetreten ist will das was heißen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Finnish Nightmarewrote on 30.10.2010:[10.0] "Absolute Legende, die auch ihren Weg nach Deutschland (Bremen CWA) fand. Als Yamada schon ein Geheimtip in England (WOS)."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: rockysadrianewrote on 10.09.2010:[10.0] "Japans absolute Mittelgewichts-Nummer 1 über sehr viele Jahre."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Technicowrote on 25.07.2010:[7.0] "Kann mit ihm noch nicht so richtig etwas anfangen, könnte aber auch daran liegen das ich noch nicht viel von ihm gesehen habe. Allerdings das WAS ich gesehen habe gefiel mir eigentlich gut. Zb. dieses Video im Youtube mit der Stardust Press. 7 Punkte daher."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: HunterXDwrote on 23.06.2010:[9.0] "ganz klar einer der 5 bekanntesten Wrestler der welt! ein sehr Gutes gimmick und gute in ring fähigkeiten! Durch sein mitlerweile schon hohem alter nicht mehr auf dem höchsten nievau, aber trotzdem immernoch gut und gerne gesehen!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Erasedwrote on 07.06.2010:[10.0] "Verständlich, dass die Ringfähigkeit mit dem Alter sinkt. Dennoch ein erstklassiger Worker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Ywainwrote on 04.06.2010:[8.0] "Ein wirklich guter Wrestler. Aber irgendwie will bei mir persönlich da der Funke nicht überspringen. finde ihn manchmal etwas too much."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: LabronBenoitwrote on 20.05.2010:[10.0] "Meiner Meinung nach eine wahre Legende, aber nicht nur, was das japanische Wrestling betrifft!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Marco Ewrote on 10.02.2010:[10.0] "Liger ist ganz klar eine Legende! Hab ihn zwar jetzt seit längerem nicht gesehen, aber gerade in den 90érn gab es nicht viele, die sich mit ihm Messen konnten. Bin froh ihn mal Live gesehen zu haben. Hat in der CWA 2 unglaubliche Matches gegen Finlay und Schuhmann gehabt und einer meiner Lieblinge bei New Japan, zu der Zeit. Ein ganz großer!"
Rating: 10.0
Sentiment: 0.15340909090909088
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Aquifelwrote on 08.02.2010:[9.0] "In den 90ern DER Jr. Heavyweight Star Japans. High Flying, Mat Wrestling, Dramatik, Präsenz im Ring - alles Weltklasse. Doch die letzten Jahre baute Liger dann doch immer ab. Er ist immer noch besser als andere, aber so langsam ist er auch nur noch "ein Schatten seiner selbst" (klingt härter, als es gemeint ist). Demnach nur noch 9 Punkte und die Hoffnung, dass er bald in Rente geht, damit man sich seiner genialen Matches in den 90ern erinnern kann und nicht immer den schalen Beigeschmack seiner "nur noch" ordentlichen Leistungen in letzter Zeit im Kopf behält."
Rating: 9.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: T-Waynewrote on 10.01.2010:[9.0] "Aus einem Manga entsprungen und zu einem der besten Jr. Heaveyweight's überhaupt geworden. Sollte jedoch langsam ans Aufhören denken, seine Leistungen im letzten Jahr waren nicht mehr so überragend."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: DJ MaSchwrote on 05.01.2010:[10.0] "Die Legende schlecht hin im Junior Heavyweight Bereich und auch heute noch einer der besten seiner Zunft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: MrSmackdownwrote on 02.12.2009:[10.0] "Absolute Legende! immernoch aktiv mit super Match Quallität und doch ziemlich einzigartig! Ich mein der man hat die Shooting Star Press erfunden!"
Rating: 10.0
Sentiment: 0.38541666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Eddiewrote on 12.11.2009:[10.0] "Absolut wahnsinn, und wirklich geile Matches die er sehr oft auf die Matte gezaubert hat (bzw. auch immer noch tut, wenn auch nicht so oft.. ), einfach ein perfekter Wrestler!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Blue Meaniewrote on 24.10.2009:[10.0] "Legendärster japanischer Cruiserweight Wrestler. Zu seiner Prime der Beste, heute aber immer noch top!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Fountain of Misinformationwrote on 14.09.2009:[10.0] "Nachwievor ein unglaublicher Wrestler, der es auch im Alter noch absolut drauf hat, quasi der Finlay von New Japan! Abgesehen davon für einen maskierten Mann, der demnach ohne Gesicht als Leinwand für seine Gefühlsregungen agieren muss, unglaublich gutes und überzeugendes Selling. Lang lebe Liger!"
Rating: 10.0
Sentiment: 0.2130681818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: homicidal cena michaelswrote on 01.07.2009:[10.0] "Jushin ist ein schneller, technischer, sehr innovtiver und sauberer Wrestler. Er zeigte früher immer hammer Matches und heute zeigt er auch noch gute Matches. Er ist einzigartig durch seinen Anzug und seiner Maske wodurch er nicht so schnell vergessen wird. Er ist eine japanische Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: BaptisteZorGwrote on 23.05.2009:[10.0] "Eine Legende, klare 10Pkt. - was anderes wäre abwegig"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Father Nelsonwrote on 01.02.2009:[10.0] "So fast and strong! An japanese enigma! I was so excited when he came to Bremen in the early 90Žs!"
Rating: 10.0
Sentiment: 0.24833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Miteamexicowrote on 30.01.2009:[8.0] "War auch schonmal weit besser, auch wenn er selbst heute noch super geile Leistungen zeigt. Und das in dem Alter."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Blazewrote on 03.01.2009:[10.0] "Eine absolute Legende, die für das Junior Heavyweight Wrestling unersetzbar ist. Dazu hat er mit dem Shooting Star Press den wohl schwierigsten Move im Wrestlingbusiness geschaffen. Verdammt gut. Ende der Achtziger schon sehr innovativ, in den Neunzigern der Hammer und auch heute immer noch sehr fit. Seine Einschränkungen im Stil hat er super gemeistert und wrestlet kein bisschen schlechter. Ein paar Jahre sind sicher noch drin, bevor ein Pionier des Wrestlings abtritt."
Rating: 10.0
Sentiment: 0.3111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: affenmannwrote on 30.11.2008:[9.0] "Der Typ ist die absolute Härte. Vielleicht der beste Junior Heavyweight aller Zeit."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: The Wise Warriorwrote on 16.09.2008:[9.0] "Lebendiger Manga-Superheld! Einig der eindimensionale Charakter verhindert die Zehn."
Rating: 9.0
Sentiment: 0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Fliplippwrote on 24.07.2008:[9.0] "über ihn hatte ich mich mal sehr viel informiert und muss sagen er gefällt mir aussgesprochen gut"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: gerybundy68wrote on 28.06.2008:[8.0] "In Japan absoluter Superstar. Brennt technisch gesehen ein Feuerwerk ab. Leider bei uns nur sehr selten im TV zu bestaunen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Tomkowrote on 19.06.2008:[10.0] "Überragender Wrestler! Alles andere als 10 Punkte wäre für einen so tollen Wrestler eine Beleidigung!  Ausserdem hat er der Wrestlingwelt meinen persönlichen Lieblingsmove gebracht.."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: The Instant Classicwrote on 13.03.2008:[6.0] "Sicherlich eine Legende, dennoch ist seine Zeit mittlerweile abgelaufen und sollte er seine Karriere beenden, ehe er seinen Ruf noch ramponiert."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Riley Mathewswrote on 25.02.2008:[8.0] "Noch nicht so oft gesehen find ihn aber trotzdem cool. Hab gelesen er hat den Shooting Star Press erfunden , eine der besten Aktionen und sein Outfit ist völlig verrückt finde ich aber gut. So etwas gibt es leider nur in Japan."
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Staniwrote on 21.02.2008:[10.0] "Mr. Junior Heavyweight himself. In den 90gern übermenschlich, heute immer noch besser als die Meisten. Alles andere als ne 1 wäre vermessen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Rob Van Duesenschrauberwrote on 08.02.2008:[10.0] "In den 90ern war er fast unmenschlich, heute ist er immernoch verflucht gut. Liger ist vielleicht DIE Jr. Heavyweight Legende schlechthin."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Moshpit-Hooliganwrote on 21.01.2008:[10.0] "Gott of Junior Heavyweight Wrestling. Kommt heute zwar nicht mehr ganz an seine besten Zeiten ran, aber für sein lebenswerk muß er einfach ein "Sehr gut" bekommen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: The Showstopperwrote on 14.01.2008:[10.0] "Mr. Junior Heavyweight persönlich. Mit dem Ultimo Dragon wohl derjenige, der die Jr. Heavyweights etabliert hat, und das nicht nur in Japan."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: EvenflowDDTwrote on 31.12.2007:[10.0] "Liger kriegt von mir die 1. In seinem Alter, genieße ich trotzdem noch jedes Match von ihm. Er und Tiger Mask Sayama ebneten den Weg für die heutige Generation von Wrestlern. Schade bloß das aus dem Match mit Samoa Joe so wenig rauskam."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: AMMOwrote on 20.12.2007:[10.0] "DER Junior Hevyweighter auf der Welt. Hat Grenzen erweitert und den Weg für die zeit nach ihm geebnet. Alles als eine 1 wäre IMO fast eine Beleidigung. Wie nur wenige für mich eine wirklich klare EIns. Das geringfügige Nachlassen sorgt in seinem Alter für keinerlei Abstriche!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Texas Tornardowrote on 09.12.2007:[10.0] "Absolute Japan Legende! Für mich die Kultfigur in sachen Puro !"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: D-Stylewrote on 07.12.2007:[10.0] "DIE Jr. Heavyweight Legende. Über Jahre etliche Topmatches, geniales Selling, superintensiver Wrestler, aus dem Wrestling nicht wegzudenken. Note 1"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: LexLuger4everwrote on 01.12.2007:[10.0] "Totale Legende, vor allem in Japan! Klasse Highlflyer! Hat viele denkwürdige Matches in der WCW gehabt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Excellence of Executionwrote on 31.10.2007:[10.0] "Allein die Erfindung der Shooting Star Press ist schon bald 'ne 1 Wert. Es gibt soviele großartige Japanische Wrestler, die zurecht großes Ansehen genießen. Aber Liger ist der einzige, bei dem ich es wagen würde zu sagen, dass er vielleicht der beste japanische Wrestler ist. Auf jeden Fall absolout legendär!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Steven McWheelerwrote on 31.08.2007:[10.0] "genialer Typ, Kultfigur und Highflying-Legende, Note 1 ohne Frage"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Baszdmegwrote on 17.08.2007:[10.0] "Hat den Weg für etliche Generationen nach ihm geebnet. Einer DER Top Japaner im Wrestling, aber auch in der Welt."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: ecw foreverwrote on 04.08.2007:[10.0] "Vater des Highflying. Heutzutage im Ring alles andere als genial aber der hat schon so eingies gezeigt in seienr Karriere."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Carlito Cenawrote on 24.07.2007:[10.0] "Hat mir während seiner Karriere viele Klassematches gezeigt. Kult."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Obermackerwrote on 24.06.2007:[10.0] "Die Junior-Heavyweight-Legende schlechthin! Faszinierte mich von seinem ersten Match an gegen Ultimo Dragon damals auf Eurosport."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=455&gimmick=Jushin+Thunder+Liger
Comment: Pulpulwrote on 24.06.2007:[10.0] "Neben Tiger Mask I definitiv DER Jr. Heavyweight Japans."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Undertalkerwrote on 10.02.2025:[10.0] "Man nimmt ihn als Vorzeigefigur wahr, und viele, die nach ihm kommen, eifern ihm nach! Shawn Michaels ist in allen Bereichen überdurchschnittlich: Er hat ein ganz natürliches Charisma, das man nicht erlernen kann, sondern es muss einem in die Wiege gelegt worden sein. Er hat einen fantastischen Look, mit dem er ohnehin wie ein richtiger Superstar rüberkommt und sein Micwork ist ebenfalls hervorragend. Ich denke, Shawn Michaels' größte Stärke ist es, einen in allen Bereichen emotional mitzureißen. Nichts, was er macht, ist einem gleichgültig, sondern egal, ob es Promos, ganze Storylines oder Matches sind, man fiebert mit ihm mit. Im Ring war er ein Ausnahmeathlet, wie es ihn nur selten gibt! Er war wohl vorrangig eher ein Highflyer, und zwar ein großartiger, er konnte aber auch problemlos andere Stile mitgehen - womit man ihn, insgesamt gesehen, auch als Allrounder bezeichnen kann. Durch diese Vielschichtigkeit konnte er, wenn es zur Situation passte, auch im Mat-Wrestling beeindrucken und Matches bestreiten, in denen er z. B. ein Körperteil seines Gegners systematisch bearbeitete. Shawns Fähigkeit, einen emotional mitzureißen, spürt man in seinen Matches ganz deutlich: Diese haben ein ausgezeichnetes Storytelling und jede Menge Dramatik, und man geht begeistert mit ihm mit. Trotz dem vielen Positiven, gibt es auch was, das mir nicht so an seiner Arbeit im Ring gefällt: Ich finde, er zeigte in seinen Matches nicht immer so viele unterschiedliche Aktionen - mal hier und da irgendeinen Suplex oder Slam zusätzlich, hätten seinen Auseinandersetzungen nicht schlecht getan! Außerdem war ich nie wirklich mit seiner Schlussoffensive zufrieden. Die Chops samt Atomic Drop wirkten für mich immer zu lasch und der anschließende Scoop Slam vor seinem Top Rope Elbow war auch nicht wuchtig genug ausgeführt; ich fand es nie glaubwürdig, dass er danach bereits einen dicken Elbow vom obersten Seil durchbringen kann. Mit der Sweet Chin Music hat er jedoch einen der schönsten und kultigsten Finisher überhaupt. Andererseits ist das Storytelling in einem Match wichtiger als die Moves an sich und außerdem hat er diese für mich kleineren Mängel, durch die erwähnte Vielschichtigkeit, die er zwischen den Seilen besaß, wieder wettgemacht! Ich muss aber auch ehrlich sagen, dass ich in den Nullerjahren den Eindruck hatte, dass er nicht mehr so entschlossen bei der Sache war wie zuvor. Er hatte einen reduzierten Terminplan - ich vermute mal, das lag daran, dass er in dieser Zeit dann Familie hatte und wohl stärker auf diese konzentriert war. (Was verständlich ist.) Er wog irgendwann einfach einige Kilo zu wenig, fand ich, was seine Glaubwürdigkeit im Ring ein bisschen minderte. Ich habe also auch einige Dinge an ihm zu kritisieren. Das Positive überwiegt bei ihm aber haushoch und er ist einfach einer der größten aller Zeiten! Daher gibt es hier nach wie vor die Höchstpunktzahl!"
Rating: 10.0
Sentiment: 0.25852272727272724
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: kelseywrote on 09.02.2025:[8.0] "Shawn Michaels is an 8 out of 10 promo, 9.5 out of 10 in the ring, Gimmick is a 7 out of 10 for me. Shawn Michaels was not pushed as much compared to his peers but when he did he failed to draw. Shawn Michaels is a legend but he is not in the top 10 of all time or anything like that. I used to enjoy Shawn Michaels but as I have gotten older he is not as good as I thought however he is still great though."
Rating: 8.0
Sentiment: 0.3238095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Havoc Ravewrote on 03.02.2025:[6.0] "I hate Shawn, I don't respect and appreciate him. Yes, he had more than average agility (at that time), yes, perhaps his promos were what people were looking for, it was not good, it is only praised because it was in keeping with the time and agreed with the fans. If I had to define Michaels' career with a single word it would be: overwhelming. A whole roller coaster of which people only highlight the calm moments, and what happens with the sudden turns, violent turns and the unrest that it causes, I can't believe how people overlook everything bad that this piece of shit has done to everything around him. Although it has been vindicated, that does not diminish the importance and insult of all the damage it has caused to Professional Wrestling in general. Good matches, which are usually exaggerated by everything that has happened to him, "look, poor kid, he has hit rock bottom and it's unfortunate, he deserves to be forgiven". Unremarkable character, he is just another insolent person from the Attitude Era crowd/Backstage (let's be clear, I don't mind the insolence character, I just feel that he was always used by third parties, but of course, he was more successful due to the rise of the Attitude Era), the only character I praise is the one from DX 2005-2009, he likes it because it is based more on ridiculous comedy and not on penis or sex jokes. I must admit that the best thing he has done for Professional Wrestling is being Booker, and that is why he deserved. 8.0"
Rating: 6.0
Sentiment: 0.012341269841269846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: dhruboezitwrote on 26.01.2025:[10.0] "The Showstopper. I've never seen a wrestler more charismatic than Shawn Michaels. Natural ability, in-ring work and promo skills - Shawn was the full package. Exactly what a classic wrestler is supposed to be. Shawn proved that you don't need to be big and burly to become the face of the WWE. Among the all time greats and a frequent feature on the Mt. Rushmore."
Rating: 10.0
Sentiment: 0.24583333333333338
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ItsAllAWorkAnywaywrote on 21.01.2025:[9.0] "Shawn Michaels might not have had the size promoters craved in the '80s, but he ultimately developed the look, ring skills, and promo abilities to warrant his place atop of WWE's card through the mid 1990s. It feels like injury issues forced him out of the spotlight at a time when The Attitude Era was at its apex, which sort of hampers his overall "overness" (as well as some of the stories that came out about his behavior during the time, but whether those are warranted or not are debatable.) That said, Michaels returned to action during The Ruthless Aggression era and had a great retirement match with Flair (and a match with Hogan where, frankly, Michaels was well within his right to bump the way he did.) Michaels is now working as a coach for the WWE nowadays and is an invaluable part of NXT."
Rating: 9.0
Sentiment: -0.0017857142857142932
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jmira17wrote on 14.01.2025:[10.0] "If AJ Styles doesn't exist, he's the GOAT. Amazing performer in any aspect, every modern wrestler have Shawn Michaels as a reference, that says it all."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Jesse7Kingwrote on 13.01.2025:[10.0] "Mr. Wrestlemania. What more is there to say? You could cut his career in half and they would both be stand alone hall of fame worthy. Loved as a Rocker, hated as the Heart Break Kid, loved once more as a D-Generate and respected as Showstopper. Shawn was truly born-again and to this day continues to be the humblest bonafide GOAT there ever was."
Rating: 10.0
Sentiment: 0.23809523809523808
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MEDaminewrote on 05.01.2025:[10.0] "Arguably the GOAT of wrestling, he is more than a full package, one of the best in-ring with countless matches that should've been rated 5 stars, fantastic on the mic with many great promos, and very charismatic, he even have a move that has its legacy thanks to him, and his long career is full of memorable moments, and now as a booker he's doing a good job in NXT"
Rating: 10.0
Sentiment: 0.4538461538461539
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Its Clobbering Timewrote on 25.12.2024:[10.0] "My Favorite Professional Wrestler of all time. HBK has it all. He is one of the best in the ring ever he has countless amazing matches, Shawn always put on the match of the night every show he's on, i mean he is the showstopper and Mr. WrestleMania for a reason. Shawn is also amazing on the mic and and has all time promos. But HBK's best attribute is his charisma, Shawn is the most charismatic wrestler of all time. Shawn oozes swagger and has the coolest entrance and theme song of all time. Shawn also made one of the most popular moves in wrestling as famous as it is today the superkick, when Shawn hits it we know it as Sweet Chin Music which is a sick finisher. HBK also has the best attire ever his pants with the broken hearts on them are so iconic and sick. Shawn is also the leader of the most famous Faction in wrestling history in DX. Shawn also has one of the best and most famous heel turns ever when he turned on his tag team partner Marty Jannetty and threw him through the barbershop window, ending the rockers and really shot him into superstardom. Now HBK is helping out the younger talent as he is in charge of NXT. HBK is also decorated he in his 20+ Year Career HBK is an 3x WWF 1x World Heavyweight Champion, 3x Intercontinental Champion which he is also one of the best IC Champs, a 5x Tag Team Champion & a two time Royal Rumble Winner Champion Shawn never needed championships or accomplishments to show how he good he is. HBK is my Goat and will always be the reason why i love Wrestling."
Rating: 10.0
Sentiment: 0.3769642857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ecks516wrote on 12.12.2024:[10.0] "HBK is my all-time favorite wrestler, the charisma, the athleticism, the story telling, the gimmick and of course the in-ring ability. It all works and was believable. He could have a great match with anyone (even that SummerSlam match was great imo)."
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: AceHagannwrote on 26.11.2024:[10.0] "With only exceptions here and there, such as his Saudi Arabia match, HBK had one of the best careers a wrestler could potentially have. With iconic matches at every point. As the cherry on top (Once again, barring Saudi Arabia) is that he had one of, if not the best retirement matches of all time."
Rating: 10.0
Sentiment: 0.42857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: WWFanwrote on 17.11.2024:[10.0] "HBK is not the greatest ever, that's Hulk Hogan but Shawn was most talented all around wrestler I've ever seen for sure."
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Wrestlingfan0808wrote on 04.11.2024:[10.0] "At his peak, he made wrestling look so effortless. When he came back from a near career ending back injury, you could argue this run was even better than his first one pre injury. The showstopper. The amount of sons he had in the business today is insane. Who would have thought Shawn would be giving back the way he has by doing what hes doing with Nxt? One of the greatest wrestlers of all time who for some reason folks try to act like he wasnt all that, when he was. Yall just mad he is better than a lot of your favs. Till this day he has too many matches and moment that continue to stand the rest of time. A true trailblazer of this business and helped played a big part in the perception of how smaller would be looked at when it came to be being marquee wrestlers for the better. Played a pivotal role in every era he wrestled in. Whether it be as a tag guy, as the face of the company, it didnt matter what his role was, whatever they had Shawn do, he hit it out of the park. One of the goats for a reason."
Rating: 10.0
Sentiment: 0.1609375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DixieNormas1980wrote on 20.10.2024:"I was there when HBK won the Royal Rumble in 96, and I have seen many matches in person. He is the greatest of all time"
Rating: No rating found
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheNomadMagicianwrote on 19.10.2024:[9.0] "HBK ist sicherlich einer der beliebtesten und bekanntesten Wrestler of all Time. Auch ich habe ihn gerne gesehen, was mir immer etwas gefehlt hat, weswegen es auch hier nur 9 statt 10 Punkte gibt, ist ein etwas größeres Moveset. Das was er gemacht hat, hat er gut gemacht, guter Seller, high Ring IQ aber ein paar mehr Moves wären schon Top gewesen."
Rating: 9.0
Sentiment: 0.33
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TripleCrownwrote on 14.10.2024:[10.0] "In-terms of wrestling ability along with being a "character" Shawn Michaels is BY FAR the greatest wrestler the WWE has ever had. Whilst people like to say Undertaker is up there with him as the Mount Rushmore of WWE, in my opinion, HBK was just so much better and able to work week in, week out, regardless as to who his opponent was and what day of the week it was. The guy just had it all. His matches and achievements in the industry reflect that too. You could put him in any era, and he'd be a star. Obviously everybody knows his past, but he managed to turn things around and really have a renaissance. The best wrestler WWE has ever had, and probably will ever have. Easy 10/10."
Rating: 10.0
Sentiment: 0.38703703703703707
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dntbamarkwrote on 30.09.2024:[10.0] "Shawn is easily one of the greatest performers I've ever seen, bar none. Shawn vs Bret at WrestleMania XII, Shawn Michaels vs. The Undertaker at WrestleMania XXV, Shawn vs Triple, Shawn vs Triple H vs Chris Benoit. So many classics. Though I wasn't much of a fan of him during his initial run, Shawn really was able to experience a career renascence upon his second return and never seemed to have lost a step with age."
Rating: 10.0
Sentiment: 0.3541666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Zak22wrote on 23.09.2024:[9.0] "I still need to see more of Michaels but from what I've seen, his status as a legend is deserved. Shawn was inventive, athletic, slick and an all round great worker, except I think his over-bumping is a bit shit."
Rating: 9.0
Sentiment: 0.19166666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jsbortswrote on 19.09.2024:[10.0] "I think Shawn is missing the large catalogue of great matches that his other contemporaries do, much like Kurt Angle, but he's undeniably great, had some excellent excellent matches with Bret Hart, and really had some fun character work and promos and also took place in what's probably one of the two best retirement matches (Ric Flair/Sting). Don't think he was a fantastic promo or anyhthing but he was always charismatic on the mic, and boy could he go in the ring. But to say he isn't a 10 as a wrestler is to let his old personality get in the way of good judgement, as he is one of the best to ever lace up a pair of boots"
Rating: 10.0
Sentiment: 0.49308035714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: maven loverwrote on 17.09.2024:[9.0] "Minus a point for the ego issues, everything else a 10/10. One of the best things to happen to WWE, ever. Could sell like crazy, knew how to work believability, psychology & emotion into matches, was uncannily athletic, had incredible longevity, had the best superkick in the business, could do hardcore spots when needed, could do comedic & serious promo work equally well, & who doesn't like D-Generation-X?"
Rating: 9.0
Sentiment: 0.2666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: trickwillywonkawrote on 17.09.2024:"The GOAT of wrestling. S tier in almost every department. What can be said has already been said a million times over. AND he's doing a excellent job as the NXT booker."
Rating: No rating found
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Jayhiggs2kwrote on 11.09.2024:[10.0] "Not only is he The best in ring performer, 8 I don't know if anyone ever sold as great as he did. He could make or break you just by selling. Just ask Hogan from SummerSlam 05"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Enchantiumwrote on 30.08.2024:[9.0] "Shawn Michaels was such a top-notch in-ring performer, he will always be regarded as one of the most known wrestlers of all time. His charisma and enthusiasm were great, and he was a very respected and good worker, especially in his feud with Bret Hart, as it showed his professionalism. However, there were instances where he showed a lack of professionalism with his match with Hulk Hogan, but I can't lie, it was funny af. Now he has moved to the booking side of NXT, and I think he is doing a very good job. He clearly understands the interest that audiences have over specific wrestlers and pushes them to become the next biggest stars. I may have rated him higher, but his return match in Saudi Arabia, which completely murdered his amazing retirement match, is the reason why."
Rating: 9.0
Sentiment: 0.3606666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: wrestlingswiftiewrote on 29.08.2024:[9.0] "Even though his mic skills were average (unless he was shooting from the hip, ) Shawn Michaels is the standard of what modern pro-wrestlers should try to achieve. Yes, he did the big moves that we see today (superkick, moonsault, elbow drop, etc.) But the difference is, he knew WHEN to do them. His in-ring work is brilliant, although I prefer Bret's, but I won't let that take away from the fact that Shawn was a better overall performer. He had extreme charisma and flash, cool enough to be taken seriously in pop culture. The ladies loved him, and the men wanted to be him... Nearly the perfect wrestler."
Rating: 9.0
Sentiment: 0.22440476190476194
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: 12psiwrote on 27.08.2024:[10.0] "Probably the greatest in-ring performer of WWE's major icons, providing some of the greatest moments on the biggest stages with the utmost commitment to his gimmick. Additionally, he's done wonders in helping to reshape WWE in the wake of the head sex-trafficker's departure. Not much else to say, Shawn is it."
Rating: 10.0
Sentiment: 0.490625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Chosen Onewrote on 26.08.2024:[8.0] "Finde ihn ehrlich gesagt etwas overrated. Eine Legende, natürlich, aber außerhalb vom Ring in Sachen Character Work und Promo war er nicht so interessant und bitte steinigt mich nicht, wenn ich das sage, aber sein Theme Song wurde irgendwann auch nur noch alt. Sein Kollege Triple H war in Sachen Charakter deutlich interessanter. Ironischerweise sind die beiden aber beim Booken von Wrestling-Shows umgekehrt: Triple Hs NXT hatte so gut wie keine Storylines und Gimmicks und war daher (für mich) extrem langweilig, während Shawn NXT zu einer phänomenalen Wrestling-Show aufgezogen hat. Ich finde, er ist ein besserer Booker als Triple H und das mit Abstand. In dem Aspekt finde ich ihn lustigerweise underrated!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: D2ashwrote on 26.08.2024:[10.0] "what more can I say, Shawn was always up to the task, never disappointed by this guy, we always waited for his matches but man for me even if HBK was strong in the years 2000/10 his prime for me remains the 90s what a performer, I Love this man so much"
Rating: 10.0
Sentiment: 0.40166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CicconeYouthwrote on 21.08.2024:[10.0] "One of the greatest performers of all time (if not the greatest). Shawn Michaels had it all: Charisma, look, in-ring skills, the it factor. The best there is, the best there was, the best there ever will be..."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: IAmAdamJaywrote on 14.08.2024:[10.0] "One of the greatest in ring performers of all time. Was able to captivate attention into anything he was doing. Could work with anybody in the locker room and a lot of the times guys got better working with Shawn. He could sell a move like nobody else. There is no one from the 90's or early 2000's who compare to Shawn Michaels."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "Had he not come out of retirement to fight for Saudi blood money, I would have rated Shawn a 10/10. But he did, and it really put a damper on the end of his career. Shawn had such the perfect end to his career, but he had to ruin that by fighting because Vince couldn't say no to that blood money... which is so unfortunate considering how good Shawn was in the ring, even towards the end of his full time run."
Rating: 9.0
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fakhruddin Hawariwrote on 01.08.2024:[10.0] "Shawn had two great runs in WWE (before and after his back injury). That alone made him a legend. His rivalry with Bret Hart saved New Generation Era so much. The best wrestler at that era not named Bret Hart. Then, in his second run he had so many legendary matches including two WrestleMania matches against The Undertaker. He's not called Mr. WrestleMania for nothing. He did'nt need many main event matches to prove himself as a top star."
Rating: 10.0
Sentiment: 0.43663911845730036
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: XNoWayKemoSabeXwrote on 24.07.2024:[10.0] "The Heartbreak Kid was a large part of my childhood. Watching DX run wild back in the day was truly something to see. I should probably take a point away because I got in trouble for telling people to "suck-it! ' and doing the crotch chop, but his in-ring work makes up for that."
Rating: 10.0
Sentiment: 0.01607142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: woolyshamblerwrote on 21.07.2024:[3.0] "it's such a sadness that shawn is one of the most influential wrestlers in the USA, because he's the definition of a fake wrestler. his great reputation among wrestling fans today is entirely due to WWE just telling them how good he is over and over. between his love for hokey melodrama and his over-the-top (admittedly very funny) selling, shawn is unable and unwilling to portray a believable and tangible struggle unless his dance partner forces him to do so, or at least works around him. his matches frequently devolve into poorly paced clown shows saved by one or two well-timed spots. he's still had some ace matches despite this, especially with kurt at mania '21, and i have to admit he brings a kind of "Big Match Feel" even if he doesn't end up delivering in the ring."
Rating: 3.0
Sentiment: 0.07777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Joe907wrote on 15.07.2024:[10.0] "The GREATEST WWE preformer of all time. He was ahead of his time in the late 80's - early 90's. Even in the 2000's after his back injury, he wrestled at the highest level and provided incredible matches. His influence to this generation of wrestlers is awesome. His selling was untouchable. Even after his wrestling career was over, he helps on the NXT brand creating the new generation of wrestlers. He is just so legendary."
Rating: 10.0
Sentiment: 0.47954545454545455
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MatnificentMattwrote on 21.06.2024:[10.0] "Shawn was an incredible performer. He has had many matches and moments that will never be forgotten. He was amazing at selling and had an exciting move set. Both his first run and second run were amazing and his style has been emulated by many other wrestlers from different eras."
Rating: 10.0
Sentiment: 0.3525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rassle Fanwrote on 16.05.2024:[7.0] "Shawn Michaels was great at bumping and selling. Two of the most important aspects to being a successful wrestler. Any trainer worth their salt will say the same. His promos were average. Nothing terrible but my hot take that will probably get me killed is that the ones he did in DX were awful. Even in kayfabe it's really sad to watch a 30 something year old man acting like a middle schooler. I actually think some of his better promos were in the AWA when the Rockers were feuding with Doug Somers and Buddy Rose. DX was the weakest point of his career with each iteration of it. 2006 was easily the worst version. If you look at the quality of his matches while being part of DX, none except the Wrestlemania 23 main event with Cena were that good. Nothing on the level of matches he'd have with Kurt Angle and the Undertaker. He's an all time great for sure but in the back of my mind I always hear Rob Van Dam during an old shoot interview where he felt HBK "dripped with insincerity""
Rating: 7.0
Sentiment: 0.11730769230769232
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: texasyoshwrote on 24.04.2024:[8.0] "Michaels bodes a pretty interesting career to look at retrospectively. I think his case is largely hurt by viewing the globality of pro wrestling, as he was touted as one of the best wrestlers in the world during the peak years of his career. But does that hold up? The more you learn about the world of wrestling as a whole, the less you appreciate Shawn Michaels. Shawn's longevity in the WWF despite his numerous controversies and personal demons is legitimately fascinating, but it shows the amount of trust the office had in him to be a future player. WWF really, really tried to make him the future Face of the Company, which simply never, ever worked. Is it a testament to Shawn as a wrestler? Michaels feels incredibly formulaic as a wrestler to me. Maybe in some ways, his heelish charisma and his frantic style makes him a difficult face for me to root for. Shawn feels more at home as a heel, and I think that's where you get the best of his work. Additionally, the best Michaels matches are the ones deliberately not being led by Shawn (see vs. Mankind, vs. Undertaker HIAC). Upon his retirement and return, Michaels embraced the 'epic' style that we now see proliferated today. Sometimes it resonates with me (vs. Cena, vs. Jericho), but mostly it feels overexaggerated. For his legacy, it's genuinely arguable that Shawn has had a net-negative influence on the business as a whole, not only his period on top of the WWF being one of its lowest drawing periods ever, but inspiring a tasteless version of pro wrestling that has been accepted and triumphed by the likes of Johnny Gargano and Adam Cole. Despite that, Michaels had engaging matches at a time period where his life was spiraling out of control. It's a complicated career to look at."
Rating: 8.0
Sentiment: 0.23784893267651894
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SwaggerHammerwrote on 13.04.2024:"One of the greatest of all time no questions asked. Consistently put on great performances. Never was the reason behind a mad match. Always elevated others to put on the kind of match worthy of our fans."
Rating: No rating found
Sentiment: 0.27976190476190477
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bean1985wrote on 11.04.2024:[10.0] "The best in ring performer of all time even if we split his career in two, before and after the back injury. Multiple memorable matches, charismatic at the mic, unique acting as heel (97&DX period and feud vs Hogan are goat material). Not built to hold championships or being a commercial champion, but just to steal the show. I didnt like his second run as babyface, I truly believe that as heel he had way more impact to the show, but that was his decision. Each of the opponents he faced at the biggest stages had their best match career against him. He was always there, elevated 60year old VinMac, 50plus year old Ric Flair getting with both the match of the year award, had technical clinics with great opponents (mixing at the same time amazing technical showcase along with intense, controversial feud, in some cases with unprecenterd dynamics)l, while reducing the distance between the business and real life feuds), put over Stone Cold, Triple H, Benoit and Cena as champions, had multiple matches eligible as best match of history (vs Razor/Ladder, Hitman/Wrestlemania, Angle/Wrestlemania, Undertaker/Wrestlemania25&badblood97, ) plus another dozen standing right in the lower elite tier. Last but not least .he will remain undisputed goat also as innovator for all the special stipulation matches he started over his career. Shawn Michaels did not build this business, but was able to turn an amazing church in a Brunelleschi style basilica. Any word apart GOAT is offensive for him. Not even close. Nobody else ever delivered even a half of what HBK did. And I am being generous with proportions.."
Rating: 10.0
Sentiment: 0.27584485407066056
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: cal9099wrote on 07.04.2024:[9.0] "Obviously a legendary figure with a bunch of classic matches under his belt, but someone that never really did it for me despite his accolades. Talk of him being the greatest of all time is pretty ridiculous to me. While his in-ring was top tier, his promo skills were never stand out."
Rating: 9.0
Sentiment: 0.3547619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BruceMarcos524wrote on 24.03.2024:[10.0] "There is no question that he is the greatest performer of all time. Shawn Michaels truly was ahead of its time, bringing the exciting and flashy spots in WWE from its boring ground and pounds of the past. He is very athletic and knows how to work in the ring very well. He is so good that he could even wrestle a 5-star match with a broomstick. Even with WWE's restricted environment, he can still deliver the best of matches way possible. His first run is nothing but sweet, but it is until his second run that truly provide us iconic matches to be remembered for a long time. Although he is hot-headed and prima donna in the past. Still when he sets himself in the ring, his performance was truly unmatched then. He is also considered as the guinea pig from the stipulations that WWE introduced like the Ladder match, Iron Man match, Hell in a Cell and Elimination Chamber and no doubt delivered on these first-time matches. He had also great rivalries, most notably with Bret Hart, Triple H and Chris Jericho. Some people may say he is the GOAT, as I disagree. But no doubt he belongs to the GOAT list up for debate."
Rating: 10.0
Sentiment: 0.2236842105263158
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fabricio Peter Canezwrote on 13.03.2024:"Without a doubt he was and still is one of the most relevant stars in the history of wrestling. He knew how to adapt to changes in generations, he always sold his fights very well and was always very technical and charismatic in the ring. It definitely deserves a 10! Thank you very much HBK!"
Rating: No rating found
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DanParkeswrote on 12.03.2024:[10.0] "Shawn Michaels is incredible in the ring - selling and performing. He's great when he gets a mic in his hand too. I believe there is a good reason a lot of wrestlers put him as their dream match/favourite/mount Rushmore or consider him the GOAT."
Rating: 10.0
Sentiment: 0.8000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RitsuTa1naka69wrote on 05.03.2024:[3.0] "I think a lot of his early work pre-DX with Diesel is really good. I loved his ladder match with Ramon. But unfortunately a lot of the bad outweighs the good for me as his Attitude Era DX run has never been my favorite, and then going into the 2000s, a lot of his stuff became less and less interesting to me. I will say, the tail end of his career I will always find nostalgia for (09-10) as it was around the time I got into wrestling. But other than that, looking back, Shawn doesn't do it for me. I sadly can't comment on his booking abilities as I hate modern day NXT. His music was pretty neat, and I think his overall presentation was fantastic, especially his WrestleMania 12 entrance. A lot of his personal demons and the way he conducted himself post Montreal Screwjob soured me the most on him."
Rating: 3.0
Sentiment: 0.058712121212121195
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Vanstylerwrote on 22.02.2024:[10.0] "The goat. This guy right here is the reason why I became a wrestling fan in the first place. The super nice entrance with lots of fireworks, kicks to the face, charisma machine all the way, he's the perfect formula to sit your ass in the couch and watch the show all the way. His matches were banger after banger in his best times"
Rating: 10.0
Sentiment: 0.5781746031746032
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SJ Millerwrote on 22.02.2024:"The most influential performer of the '90s, an evergreen into his mid forties. Knew how to get fans worried about his safety as a babyface and have them throwing garbage at him as a heel, would have fit every bit as well into the Attitude era as he did into New Generation and Ruthless Aggression. Unprofessional conduct marred his reputation during his original career run but when he went long during a match, he backed it up with the performance that had everyone talking."
Rating: No rating found
Sentiment: 0.05162337662337663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mizzyshawrote on 21.02.2024:[10.0] "He's perfect. Legendary moveset, legendary feuds, legendary stables, legendary matches WELL into his career...Shawn is just too overwhelmingly good at anything that encompasses professional wrestling."
Rating: 10.0
Sentiment: 0.8285714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Spookylol1wrote on 21.02.2024:[10.0] "The greatest in-ring performer of all time and it's not even close. Shawn also had the best physical storytelling ability of all time. This man could draw you in and make you believe in everything he did like no one else could."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kalinwrote on 19.02.2024:[10.0] "The man who got me into wrestling as a kid. I had the 1995 Royal Rumble on VHS and used to play it and act out every move against these stuffed wrestlers I had, using the couch as the ring and hanging over the side at the end before flipping back over and eliminating the British Bulldog to win it all. He was the perfect all around wrestler. His ring work, charisma, character work, mic skills, his entrance and music, his attire.....he was genuinely the most complete wrestler we have ever had, and I am not sure anyone will ever be able to top him as a total package."
Rating: 10.0
Sentiment: 0.32272727272727275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: esr100000wrote on 08.01.2024:"One of the greatest wrestlers of all time and the most defining of his generation. Opened up so many pathways for 'the smaller guy'. His second run is incredible. You were basically guaranteed an incredible Wrestlemania match for 10 years straight."
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: dulonicdaddywrote on 02.01.2024:[2.0] "I cannot recall a match that Michaels has had where he genuinely conveyed a fight. In his early years, when he was less crisp and redundant, perhaps so. In his older years, this was at least conveyed somewhat in his struggle to leave before his performative prime was gone. Post-smile returning and religion-thumping the dude always wrestled like his anus prolapsed or something - just such a naturally laughable and goofy presence in such a shameful way. Shawnzie always felt more like a circus performer than a legitimate professional wrestler. His timing was phenomenal and blah, blah, blah ... but he has always been intensely hokey. Also, his Playgirl shoot is absolutely mid. Dude didn't have the balls to show balls and that is a serious detractor for the culture."
Rating: 2.0
Sentiment: 0.0715686274509804
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BMWrestling17wrote on 28.12.2023:[10.0] "He could have wrestled against a broom and he would have made the match a modern classic. That's how good HBK was."
Rating: 10.0
Sentiment: 0.35555555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MVCfanwrote on 21.12.2023:[5.0] "When i talk about technique, note my background in being both a National champion in grappling and a 2nd dan in full contact karate. His biggest weakness is how technically is kick looks, i know in most wrestling in th us wresting the on connect hard in safe place ideals.. but talk to any Fighter or even the fight choreographer in film leaning away from your kick makes it look light from what iv have seen of him he does this and all other super kicks presently is this, and it irks me it no end. Thus, i think down his rating for his negative impact on how wrestling looks in terms of realism in striking terms. This one huge issue issues aside, his match has been middling to great, studying his back Catalogue he should be a low 8 t to mid 8. Rating, but loses 3 points for my big irk I have with him. And the wider bad influence on how people work in striking in pro wrestling. People need you watch Chris Adams, the best-looking kick of that style ever in pro wrestling. The fact this gentleman is a coach finds me giggling like an over caffeinated child. Overall 5.2/10"
Rating: 5.0
Sentiment: 0.10483091787439616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: greaterdalewrote on 10.12.2023:[10.0] "During his first run he was huge ass but in ring wise he was one of the best of his era. Not as good as Bret hart but he had tons of classics too. His second run was definitely better and it helps that he chilled out too. I previously subtracted a point for him being an ass and refusing to do the job a lot in his first run (also something about him not letting Vader win the WWE tile which albeit still sucks.) However, between the fact that yeah he's one of the goats and he's become an excellent booker for NXT I figured I'd come back and adjust his review to 10/10 he's definitely earned it and perhaps I was just being a contrarian for trying to find a reason to not rate him 10."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: crs285wrote on 03.12.2023:[9.0] "Shawn was a great wrestler. From his work with the Rockers all the way to his retirement match with the Undertaker he has always been a huge star. His in-ring action was great as was his promos and charisma. He could do comedy or seriousness depending on the situation. He had a bad reputation backstage in his early years with the Kliq. This seems to be something that changed on his return and he now helps the future in NXT."
Rating: 9.0
Sentiment: 0.21428571428571436
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ThomasAPTraceywrote on 28.11.2023:"My GOAT. Maybe not THE flashiest worker of all time, but without a doubt the best. Countless classic matches and moments with a plethora of opponents. No one can compare."
Rating: No rating found
Sentiment: 0.3888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] ""The Heartbreak Kid" Shawn Michaels is easily in the conversation among the best in ring performers of all time. A man who's had a legendary 25 year career, starting in AWA where he started as a singles competitor until he formed the legendary tag team with Marty Jannetty, The Rockers. A tag team that was so good, and over, that the WWF had to sign them, caught the attention of Vince McMahon. Despite they got fired on their first day in WWF due to a bar fight, they got rehired sometime after, wounded up being one of the most popular tag teams in the WWF's history. Then the team split up in iconic fashion where Shawn Michaels turned heel in the infamous Barber Shop Incident, which was the beginning for Shawn Michaels as a solo competitor while the downfall of Marty Jannetty. Shawn Michaels ended up becoming Intercontinental and WWF Champion during this run in the 1990s as singles, competing with the likes of Razor Ramon and Bret Hart over the belts, matches that still feature iconic moments implanted into the brains of professional wrestling fans to this day. Sadly, Shawn Michaels injured his lower back during a casket match with The Undertaker at the Royal Rumble 1998, which lead to him retiring from in ring for awhile. Thankfully, he got his iconic comeback run in the 2000s, where he was better than ever. Shawn Michaels was easily WWE's best performer in the 2000s with not one ounce of doubt, having the match of the night whether he was main eventing or somewhere in the middle of the card, Shawn Michaels always tore the house down facing the likes of Triple H, Shelton Benjamin, Chris Jericho, The Undertaker, Kurt Angle, John Cena, Ric Flair, Jeff Hardy, Randy Orton, Edge, Rey Mysterio, and so many more to name. He ended up retiring in his final match (what do you mean he competed in 2018, that's not true) against The Undertaker at WrestleMania XXVI, ended his career on a high note. Overall, Shawn Michaels is one of the most complete wrestlers to ever step foot in the ring. He's one of the best wrestlers in the ring, was very charismatic, a great worker who could be a heel and face at any given time, really solid on the microphone, he could do anything you'd ask him to do."
Rating: 10.0
Sentiment: 0.32635885885885885
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: skyesversionwrote on 09.11.2023:[4.0] "Maybe if he wasn't a piece of crap in real life then he would have a higher ranking from me. He just always felt like Triple H's lackey. I personally believe that he wasn't really main event material. Mid-card, sure. But main event? Not really. I don't know. He shouldn't be in the discussion for the Greatest of all Time at all. I just don't understand the praise. As a booker, okay. But wrestler? Absolutely not. Like I know I'm just rambling but if you like Shawn Michaels you need a reality check."
Rating: 4.0
Sentiment: 0.1621212121212121
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Gold Fistswrote on 15.10.2023:[8.0] "No arguing that Shawn Michaels is untouchable in terms of in-ring skills, piles of charisma and simply one of the most trailblazing performers in history. But he was so damn annoying backstage in the 90s that I've gotta take a few points off. He's the sole reason that Vader didn't get the WWF push he deserved. However, I am glad that he took care of his problems and had a monumental second run of his career. He also helps his rating by being an absolutely INCREDIBLE booker for NXT lately. The last few PPVs have been outstanding. Also MOST ICONIC THEME SONG OF ALL TIME NO ANDS IFS OR BUTS"
Rating: 8.0
Sentiment: 0.13571428571428573
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: andytuga86wrote on 30.09.2023:[9.0] "My favourite technical wrestler: unpredictable, defiant and great showmanship. His work always seemed quite organic to me, unlike his rival Bret Hart who was more mechanical and methodical. Despite his dubious behaviour outside the ring (sometimes in it as well...), he deserves to be recognized as one of the best performers of all time."
Rating: 9.0
Sentiment: 0.35555555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Teebawrote on 14.09.2023:[10.0] "It's crazy, when you put HBK into a video game he's one of the more boring characters to play as with his moveset being very basic, in real life though he is one of the greatest of all time. He is the perfect example of mastering the craft of selling and storytelling, his 00s run especially was full of match of the year candidates and show stealers."
Rating: 10.0
Sentiment: 0.10499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bockelitowrote on 04.09.2023:[8.0] "In term of In ring talent, shawn is a 10. Everyone knows how good he is, one of the best of his generation and in geenral of all time. But I just cant overlook his backstage antics. Ruining the vader match on purpose, refusing to lose to bret and many others, trying to ruin rocky and so much more."
Rating: 8.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BEER CATwrote on 02.09.2023:[7.0] "I never bought his face schtick. I think his style comes from this weird kind of post-Ricky Morton thing where he'd bump like a babyface regardless of the match and would either cheat or have these big hope spots in lieu of a hot tag (after the Rockers, of course). So Shawn was tailor made for a certain kind of story-heavy, melodramatic main event style that guys like Meltzer ate up and played great with the right booking and a big crowd. The problem was his in-ring style was so babyface and his natural personality was so heel that none of his great performances were entirely cohesive. Not just that, but his influence is NOT a positive one of modern wrestling - a lot of "bad habit" indie main event guys clearly crib from the Michaels book, Adam Cole and the Young Bucks being his most obvious disciples. I think Shawn's overrated, but I'd be a fool to think he's anything other than great. His TV stuff isn't nearly as worthwhile as his big PPV stuff, but it's big PPV stuff that people go back and watch most often. His best matches are all classics, and he was able to consistently create classic matches through three or four different career phases. And the Rockers were awesome, btw, often the best act on bad cards during the WWF's lesser early 90's shows. I don't want to grow up to be Shawn Michaels. But his Best of DVD admittedly smokes about 100 guys I like more than him."
Rating: 7.0
Sentiment: 0.24539911308203993
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Heartbreakkid2003wrote on 13.08.2023:[10.0] "The greatest wrestler that I have ever seen and will probably ever see. Only saw the final 3 years or so of his career but I later on as I got older went back and watched all the classics and just Loved the way he wrestled and the overall entrance. Will never be another like him once in a lifetime talent."
Rating: 10.0
Sentiment: 0.23333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ViolenceBretwrote on 07.08.2023:[10.0] "HBK, the heartbreak kid... What a career. The premier worker of the 1990s, the show stopper, the backstage manipulator that drove people out of the WWF because of his hissy fits. Is Shawn Michaels overrated? Without a doubt, and he really couldn't handle the pressures of being the top champion of the WWE/WWF. Yet with old age comes maturity, and once our lad found Jesus Shawn mellowed out. Sure he could still be a jerk, especially dealing with fellow backstage politician Hulk Hogan. Yet a strong argument could be made that Shawn was the glue holding together the Ruthless Aggression-era. In other words, the star athlete of the 1990s was a 9.7/10. Completely insufferable, annoying, immature, perverted, but also a genius between the ropes. He gave us everything night after night. The heartbreak kid post-Jesus is an easy 10/10, mature, not needing the spotlight, slowed down but still giving high quality matches, and a great storyteller. Thus, for sheer importance and overall impact Michaels is an A+ player. Frustrating at times, but hey, that's human nature."
Rating: 10.0
Sentiment: 0.04453216374269005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Khalid Acewrote on 27.07.2023:[4.0] "Shawn Michaels is possibly one of the most overrated wrestlers ever. A spot monkey with a childish finisher and humorous selling and not a very convincing facial expressions isn't what I am trying to see"
Rating: 4.0
Sentiment: 0.07967032967032968
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Brainbreakerwrote on 22.07.2023:[10.0] "Ohne Kommentar hatte ich hier Shawn Michaels schon im Jahr 2007 die volle Punktzahl gegeben. Sechzehn Jahre später (ich werde alt...) will ich doch noch meinen Senf zu ihm geben: HBK war DER Wrestler, der mich schon als Kind zur damaligen WWF gezogen hat. Im zarten Alter von acht Jahren beobachtete ich im Jahre 1995 seinen Aufstieg, damals noch über TV und WWF-Magazin. Wie unfassbar geflasht ich war, als ich ihn in meiner Heimatstadt Halle zu einem Houseshow-Event live sehen durfte, und wie ich mich gefreut habe, als er bei Wrestlemania 12 den Titel holte. Und dann war da noch die große Enttäuschung als er im Sommer 1997 gegen den Undertaker turnte und auf die dunkle Seite wechselte. Sieben Jahre später - ich hatte nach HBKs Turn keinen Bock mehr auf Wrestling - war ich als Jungedlicher weniger "markig", refletkierter und konnte Wrestling endlich als den Performance-Sport wahrnehmen, der er ist. Michaels war auch wieder da, war jetzt weniger Backstage-Diva und sorgte immer noch für Klassiker: seine WM20-Performence holte mich zurück, sein Klassikel mit Kurt Angle bei WM21 band mich wieder langfristig ans WWE-Produkt. Die Fehden mit Hogan, McMahon, Cena, Jericho, Flair und dem Undertaker, die allesamt legendäre Promos und Matches hervorbrachten, sind für immer in meinem Kopf eingebrannt. Und nun, dreizehn Jahre nach seinem In-Ring Abschied (die Saudi-Show können wir ja mal getrost beiseite schieben ;)), ist er einer der Hauptverantwortlichen, die die neuen Generation von WWE-Stars aufbauen und das auch noch ziemlich erfolgreich, denkt man an Cole, Gargano, Ciampa, oder Waller. Ich könnte mich jetzt in Detail-Diskussionen aufhängen, ob er mehr oder weniger zum Business beigetragen hat als etwas Bret Hart, oder ob seine Titel-Runs für die WWF kommzeriell erfolgreich waren, oder ob seine NXT-Booking annähernd an die alten NXT-Zeiten von Triple H heranreicht, oder was auch immer ... ich könnte aber auch einfach sagen: Michaels ist ganz sicher eines der besten und beständigsten Gesamtpakete, was das Business je gesehen hat und rein subjektiv ist er der Wrestler, dessen Stories und schauspielerische Fährigkeiten fast immer glaubhaft zusammenpassten und auf dessen Matches ich immer hinfiebern konnte, egal wie bescheiden die Card bei einem PPV auch aussah - denn die versprachen immer beste Unterhaltung. Danke für die Erinnerungen!"
Rating: 10.0
Sentiment: 0.3090909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MattHallwrote on 13.07.2023:[10.0] "One of the best in-ring performers ever in wrestling history. Along with John Cena, Undertaker, Stone Cold Steve Austin, The Rock, Mick Foley Triple H, Hulk Hogan, Randy Savage, Ric Flair, and Bret Hart. This guy is truly awesome, and had a very long iconic career"
Rating: 10.0
Sentiment: 0.367
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: flipflopdoritoswrote on 11.07.2023:"the best in-ring performer of his generation and the #3 western in-ring performer of all time. asshole or not, that doesn't affect his rating. one of the best performers to ever grace god's green earth."
Rating: No rating found
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Wrasslinfan619wrote on 07.07.2023:[10.0] "Holy shit I never rated the greatest of all time, where do I start with Shawn Michaels. I'll start by saying, yes he was an asshole but anyone letting that effect their rating is weird because why would you deny that in the 90s he was A talented asshole. The 90s run is so talked about and I'll say this, the survivor series 97 match is better than the WM 12 one and Shawn is better than Bret. Oh also the ladder match with Razor was amazing and the Mankind match is underrated. Now the 2000s run, one of the best wrestlemania runs I've ever seen because he had classic after classic and got out Vince McMahon's best match because HE'S THE GOAT! This run ended with probably my 2 favorite matches ever as well with the Taker series, with the WM 25 match being my favorite match ever. The Flair match was brilliant, the Cena match on RAW is overlooked among all the other classics. HBK had consistency and consistency is key in wrasslin. HBK worked his ass off, he could have A MOTYC with Kurt Angle on WM and then like A month later have A MOTYC on RAW of all shows with Shelton Benjamin, thats why he's the greatest of all god damn time."
Rating: 10.0
Sentiment: 0.36233974358974363
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Conquistador37wrote on 02.07.2023:[10.0] "I first caught Shawn Michaels as one half of the Midnight Rockers so, yah. Point deducted for turning on Marty at the Barber Shop (I'm still not over that ok! ? ). Point deducted for the Vader fiascoes. Point deducted for anything related to Degeneration-X post ring return. Point deducted for reasons I will not mention publicly. A tidal wave of additional bonus points because my gawd, his in ring stuff! I love to watch his career. He even started doing total squash jobs! One of the tippy top all time great in ring worker/performers. Beyond some "ugh", his entire career is very strongly recommended."
Rating: 10.0
Sentiment: 0.2792424242424243
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: duketsao7wrote on 02.07.2023:"The greatest in-ring general, performer, storyteller of the biggest wrestling promotion of all time. I won't talk of the famous GOAT matches, or even something like the infamous 2005 Hogan meta match. But I saw a match of him and Sid vicious from Survivor Series 96 the other day. How can anyone have such a great match with Sid of all people while being booed as a babyface by the Garden crowd. How can anyone *move* in the ring like he did in the 90s. How can anyone sell and emote like he did in the 2000s. Wrestling as we know it peaked with Shawn Michaels and now all one can do is perform flashy and dangeorus choreographed spots and movesets in trying to live this very strange posthumous existence of so called "evolved" prowrestling."
Rating: No rating found
Sentiment: 0.026942148760330586
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Neon Aussiewrote on 02.07.2023:[7.0] "A good talent, very entertaining. Large ego. Manipulated his way to the top. Slightly overrated. Cross-eyed. Had some great matches in the 90's. Wasnt good on the mic, was immature even as a middle aged man, and had a terrible finisher that's supposed to be illegal in wrestling."
Rating: 7.0
Sentiment: 0.16341991341991335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Cyclopz007wrote on 12.05.2023:[3.0] "I will never understand the reverence for this guy. He has too be the most overrated wrestler of all time. His matches are fine but there's no flair or anything that stands out for me at all. His finishing move is literally just a kick to the face, how incredibly lame and uninspired can you get? And what is this gimmick or persona supposed to be? I don't get it. He's annoying on the mic as a heel and much more so as a baby face. He's only famous because he knows how to play the backstage politics and hitch his wagon to much more talented and charismatic superstars. He was also very lucky being at the right place at the right time. He does not deserve to praise and adulation he gets. And by all accounts he's kind of a jerk in real life which as a locker room leader he has no right to be. They're the one's holding him up and he pushes them down. Not a team player, and a poor sport to boot. He really rubs me the wrong way. Possibly my least favourite wrestler of all time."
Rating: 3.0
Sentiment: 0.10559163059163063
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Tomstaralotwrote on 11.04.2023:"Despite always being considered to be a nightmare backstage in his early years, Shawn Michaels exemplifies what WWE's "Sports Entertainment" was and has always been about. A legendary showman and an exceptional wrestler between the ropes, he was the highlight of every show and truly earned his "Mr. WrestleMania" nickname."
Rating: No rating found
Sentiment: 0.5888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Giantfan1980wrote on 09.04.2023:[10.0] "Crappy backstage personality and turning into the Axel Rose of wrestling aside, Michaels was a solid in ring performer from his Rocker days up until his retirement. Can't really think of any matches of his that sucked."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NachoManwrote on 03.04.2023:"The wrestler that made me watch the wwe. I know it's controversial but subjectively the greatest of all time"
Rating: No rating found
Sentiment: 0.775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ratart2455wrote on 31.03.2023:"Greatest in ring performer of all time. Most consistent main eventer and trustworthy for big matches and new stipulations."
Rating: No rating found
Sentiment: 0.3421717171717172
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mansfimwrote on 07.03.2023:"Deserves to be mentioned amongst the all time greats. He had classic matches in the golden, new generation, attitude, ruthless aggression, & PG eras."
Rating: No rating found
Sentiment: -0.09924242424242424
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: John Brandowrote on 04.03.2023:[10.0] "Würde ich gefragt werden, wer auf Platz 1 der besten WWE-Wrestler ist, vor Kurt Angle und vor dem Undertaker, dann würde ich antworten:Shawn Michaels! Ein überragender Performer im Ring, technisch stark, vielseitig, unheimliche SportsEntertainment-Qualitäten und ein Selling, was zwar manchmal übertrieben ist, aber nie schlecht. Am Mikrofon brilliert er ebenfalls (Who's your daddy, Montreal)! Es gibt so viele Klassiker in der WWE-bzw. Wrestlinggeschichte, an denen Michaels beteiligt war, und die ich mir immer wieder gern anschauen kann. In den 90ern kein Musterknabe gewesen, hat er sich in den 2000ern radikal verändert und neu zu sich gefunden. Shawn Michaels ist eines der besten Gesamtpakete die es gab und je geben wird im Wrestling, Feierabend!"
Rating: 10.0
Sentiment: -0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: kewf1988wrote on 26.02.2023:[10.0] "Shawn was an amazing wrestler, who was extremely charismatic and great on the mic. He and Bret helped carry the WWF through the New Generation era."
Rating: 10.0
Sentiment: 0.5090909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LGL19wrote on 22.02.2023:[10.0] "Arguably the greatest wrestler of all time. Barely ever had a boring or bad match and has had some of the most legendary feuds and matches with some of the other greats such as Undertaker, Bret, HHH, Cena, Razor, Jericho and many more. Also a huge influence on the way wrestlers perform today and an inspiration to them."
Rating: 10.0
Sentiment: 0.19318181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ProWrestlingGuy316wrote on 14.02.2023:[10.0] "Kurz gesagt einer der besten Wrestler und Sports Entertainer (im positivsten Sinne) aller Zeiten. Ähnlich wie ein Kurt Angle konnte/ hatte er einfach alles: Face und Heel spielen, Promos halten, Comedy (außer die post-WWF DX), Charisma ohne Ende und in seiner Prime in der Lage, eine Mülltonne zu einem guten Match zu ziehen. Positiv ebenfalls zu erwähnen aus der Sicht seiner Kollegen, dass sich seine Einstellung in den 2000ern massiv gebessert hat. Zwar konnte er gelegentlich alte Züge zum Vorschein bringen, es war jedoch nicht immer schädlich (zum Beispiel konnte ich ihn in seiner Fehde gegen Hogan sehr gut verstehen, dass er nicht allzu erfreut über den Verlauf des Programms war)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rignowrote on 26.01.2023:[6.0] "For someone referred to as the greatest wrestler of all time, I just don't get it. Sure, he has an iconic finisher, but that's about it. Meh on the mic, meh in the ring (other than the career vs streak match)."
Rating: 6.0
Sentiment: 0.46875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: IBladeDailywrote on 24.01.2023:[9.0] "As a worker and storyteller, Shawn is an easy 10. Innumerable classic matches. Some incredible feuds. As a promo, he was a 7 at best, whose best work was generally immature and broke the 4th wall. As a guy who vacated more titles than anyone else I can remember, refusing to put over people who desperately needed the rub, Shawn was a mark for himself who actively set back WWF as a whole in the mid to late 90's. D-Generation X has aged extremely badly, even if his matches during that period were excellent."
Rating: 9.0
Sentiment: 0.21354166666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: benh2wrote on 12.01.2023:[9.0] "One of the most gifted wrestlers we've ever seen. I never really cared for any of Michaels' promo or character work but bell-to-bell he was always captivating, whether it be as a babyface or heel. Quite a rare combination of flashy moves, athleticism and great selling and psychology."
Rating: 9.0
Sentiment: 0.2857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CMFunk007wrote on 07.01.2023:[10.0] "Shawn Michaels is top-tier for me. I remember seeing him starting out in the AWA with Marty Jannetty as the Midnight Rockers back in the '80s. I remember believing Jannetty was the better talent, but after Jannetty tried to escape HBK by diving through the Barber Shop window, it became clear to me he didn't have the guts Shawn did after his act of cowardice. Shawn then embarked on his WWF singles career, which eventually led him to the world title. Shawn was a smaller wrestler and opened so many doors for workhorses to ascend to the top of the car. But he was more than a great worker. He was a great character, had charisma, and always tried to steal the show. His demons almost got the better of him in the late '90s, but he eventually made his way back via the nWo and started feuding with his old Dx mate, Triple H. His feud with Chris Jericho is a top-tier feud for me as well. He was finally retired by The Undertaker at Wrestlemania and has only had one bad showing since. One of the greatest of all-time for sure."
Rating: 10.0
Sentiment: 0.2526315789473685
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: fruggmanwrote on 19.12.2022:[9.0] "Shawn Michaels has had such a massive influence on modern wrestling and is one of the few icons to go out on top before he lost his ability to put on amazing matches. His heel run in the late 90s paved the way for the Attitude era and his in-ring style created future megastars like Chris Jericho, Adam Cole, Seth Rollins and The Elite. Personal failings aside, HBK was a talent that comes around only once a generation."
Rating: 9.0
Sentiment: 0.08
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KENTAfanwrote on 04.12.2022:[10.0] "What can I say about Shawn Michaels that hasn? t already been said? Easily one of the greatest of all time. He had it all. Stunning skill in the ring, legendary charisma and some of the greatest in ring psychology I? ve ever seen. Just a downright legend who could make just about any storyline work against any opponent. A very rare kind performer that was truly once in a lifetime. His list of achievements and classic matches speak for themselves."
Rating: 10.0
Sentiment: 0.63625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MainEventMasterwrote on 02.12.2022:[10.0] "One of the greatest wrestlers ever, he could have worked in any promotion in any era. His pure ability is amazing."
Rating: 10.0
Sentiment: 0.6047619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KSupreme3wrote on 05.11.2022:[10.0] "HBK is one of a kind. I'm not going to talk about his early career before the injury. Let's skip to the second half of his WWE career. The way he was able to pick up the pieces and reinvent himself was insanely inspirational. Rockstar lifestyle didn't benefit him at all, but he turned it around and gave us some insanely iconic moments. Moments that are forever cemented into wrestling history. Summerslam 02. The Wrestlemania matches with Taker. The final Sweet Chin Music to Ric Flair. He provided the blueprint for a lot of next generation wrestlers that are also now very over with the crowds. Definitely one of the greatest to ever do it. 10/10"
Rating: 10.0
Sentiment: 0.27564102564102566
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Sick Lebowskiwrote on 31.10.2022:[10.0] "Ich mag ihn absolut nicht bzw. habe es zumindest sehr lange nicht getan. Bret Hart-Fan und so. Aber er ist unbestritten einer der ganz Großen des Geschäfts. Schon bei den Rockers gehörte er zu meinen Lieblingen, auch wenn ich Marty cooler fand. Als Solo-Wrestler abseits seiner divenhaften Geschichten eigentlich durchgehend erfolgreich gewesen. Und natürlich hat Shawn dabei solche Klassiker wie die Ladder Matches gegen Razor oder die WrestleMania-Kämpfe gegen den Undertaker beschert. Die DX war ebenfalls genial, aber oftmals eine Spur zu albern für meinen Geschmack. "Unglücklicherweise" kann ich nicht anders, dem Heartbreak Kid schuldig im Sinne der Unterhaltung zu der vollen Punktzahl zu sprechen."
Rating: 10.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: li0nsaultwrote on 10.10.2022:[10.0] "I believe Shawn Michaels is THE most complete professional wrestler of all time, at least in the West. His in-ring skill should never be questioned, nor his mic skills. This guy always knew he was better than everyone, maybe that's why he was unbearable as a human being, and I can't blame him. Even after his return, he knew he was too big for a championship and decided not to win any more singles titles. It's hard to talk about the greatness of HBK without ending up speechless. He's simply the greatest of all time, that's all I need to say."
Rating: 10.0
Sentiment: 0.2423611111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: OnlyHalfTheEffinShowwrote on 26.09.2022:[9.0] "An all time great, a genuine megastar and trendsetter who set the American wrestling scene on fire and who's wrestling style and gimmicks are still being ripped off and copied to this day. Michaels reputation backstage in the 1990s as a complete douche brings him down some, but the benefit of his Ruthless Aggression era return helped wipe that slate clean."
Rating: 9.0
Sentiment: 0.07301587301587308
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheOneAndOnlyCactuswrote on 14.09.2022:[10.0] "You know him, you know who he is, what he's done in the ring, how great his character work was, what he's brought to the current generation. It's Shawn fucking Michaels!"
Rating: 10.0
Sentiment: 0.01666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: YourKingMobwrote on 07.09.2022:[6.0] "One of the best workers in the ring, with tremendous charisma, good promo skills and probably the deepest of the carny skillset back in that era. The fact that he could blade himself while being tossed out of the ring without being seen is mind blowing. However, so much of his backstage politicking poisoned wrestling for years and the fact that every single undersized indy wrestler has copied him to various extents is such a huge detriment to wrestling. Considering that only Adam Cole has pulled it off somewhat well despite the countless other failures tells you all you need to know. Even now, CM Punk is pulling a Shawn Michaels and big timing AEW to the detriment of everyone around him."
Rating: 6.0
Sentiment: 0.18745421245421243
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DSStyleswrote on 19.08.2022:[10.0] "Mr. Wrestlemania, The Showstopper, HeartbreakKid Shawn Michaels. Mein absoluter Lieblingswerstler aus der guten, alten Zeit. Bis zu seinem Karriereende 2010 waren sämtliche Matches von Shawn richtige Showstealer. Ich würde für diesen Wrestler am liebsten 20 Punkte vergeben, wenn ich nur könnte <3"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Benwerderwrote on 01.08.2022:[10.0] "Im Ring ein vorreiter der heutigen Generation eines Wrestlers. Damals ein star, aber man stelle sich diesen Weltklasse Wrestler mit heutigen Wrestlern vor. Es gäbe so viele herausragende Matches. 10/10 für Mr Wrestlemania und dem Showstopper"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: zachattack2023wrote on 11.07.2022:[10.0] "I think shawn is one of the best wrestler of all time he has had a lot of instant classic matches and is such a good performer and his wrestlemania matches are really good that is why he is called mr. wrestlemania"
Rating: 10.0
Sentiment: 0.42777777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Aliquickkwrote on 11.07.2022:[10.0] "Not sure where to begin, but this is mostly near consensus: he is the Michael Jordan of in ring wrestling, and is the greatest single wrestler I've ever seen in my life as an avid wrestling fan. This guy had 2 separate HOF worthy careers: his 80's to 90's run and his return in 2002 - 2010. He was put in every new gimmick wrestling match rollout for WWE to showcase it's potential, because he was the most skilled and trusted: the Ladder match, the Hell in a Cell match, and the Elimination Chamber match. He had the greatest WrestleMania library of work, where the most eyeballs are glued (like the Superbowl or NBA Finals), and much like Michael Jordan, remains undefeated in terms of showstopping and wrestling performances of that evening. Modern-day wrestlers model their game off Michaels, from the Young Bucks to Seth Rollins to AJ Styles, and while some of those guys are fantastic, they are not Michaels. Michaels had the most incredible selling ability you'll ever see, the ring psychology that he mastered in his 2nd run, and the athletic ability to perform any spot to enhance the match or make the other wrestler look good. He is greatly missed, forever imitated, but will never be duplicated. The GOAT."
Rating: 10.0
Sentiment: 0.3215121999212909
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ozzywrote on 09.07.2022:[10.0] "Shawn Michaels will in my eyes be the most skilled wrestler in history, he had a good gimmick, he could work in a tag team, stable, or as a singles star, he was willing to do the top rope moves, his few true downfall in my eyes were his substance problems and his more narsasistic nature backstage, for example the Montreal Screwjob is a clear example of what im talking about, but he has worked on that problem in more recent times so ill let it pass freely. Shawn in the Midnight Rockers was great, him and Marty could hold their own in a great way and were one of the tob draw tag teams while surrounded by the other greats of the time such as LOD, Demolition, Rock N Roll Express, and Midnight Express, and of course you have his time in D-Generation X, HHH and Shawn were great in any point with them together, with skill, comedy aspects, mic ability, and even a cool look, Chyna exentuated and filed out the missing parts of the relationship while Rick Rude didnt play as much of a role, but he was still not a bad part of it. Shawn is a multi time WWE champ, Royal Rumble Winner, and Hall of Famer for good reason"
Rating: 10.0
Sentiment: 0.303
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CommisarRobewrote on 06.06.2022:[10.0] "Shawn Michaels is to me undoubtedly the greatest performer in WWE history, a master of high spots and athletic work. Michaels selling is stupendous meaning he can have a high quality match with nearly any Wrestler no matter said Wrestlers skill or experience. His consistency is only outshined by his emoting. Mr Wrestlemania, HBK whatever you want to call him he is a legend whose impact on Wrestling will last an eternity"
Rating: 10.0
Sentiment: 0.23666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NeoSwas36wrote on 04.06.2022:[10.0] "Shawn really picked up after his attitude issues and outside of the ring problems. He's clearly capable of producing fantastic matches...and I really think he has an underrated promo. It's good to see that he's changed as a person too."
Rating: 10.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mrmusicdogsonwrote on 03.06.2022:[10.0] "One of the greatest and most inspirational wrestlers of all time. Great all around talent and had some of the greatest matches in wrestling history."
Rating: 10.0
Sentiment: 0.76
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Tomas Cunhawrote on 22.04.2022:[10.0] "While I don't consider him one of my all-time favorites, there's no question that Shawn Michaels is a 10/10 wrestler. He could do it all out there against any kind of opponent, could draw sympathy as a babyface (especially in his second run), and could piss you off as a heel. Despite some attitude issues that did reflect in some pissy performances in the 90s, and while he never really set the world on fire as champion apart from his run with the WWF Title in 1996, he was a great worker who had countless classics across his "two careers"!"
Rating: 10.0
Sentiment: 0.21666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: WrestlingFan892wrote on 31.03.2022:[10.0] "The best wrestler in history. The idol of many young promises of Wrestling, he has always done very well and has always been very entertaining to watch. In both singles and tag team, he had mic-skills, charisma and a lot of stamina."
Rating: 10.0
Sentiment: 0.49000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Pfefferminzteewrote on 29.03.2022:"Habe Shawn Michaels zuerst als kleines Kind in einem Wrestlingspiel gesehen: 'WWF Wrestlemania: The Arcade Game' und in meiner Erinnerung hatte es mindestens 20 oder mehr spielbare Wrestler im Rosterangebot. Nun es waren scheinbar nur 8. Wie trügerisch die Kindheitserinnerungen doch sein können haha. Jedenfalls wenn Shawn Michaels durchgeprügelt wurde sind Herzen aus ihm herausgefallen. Ich erinnere mich auch noch an Yokozuna, Doink, Undertaker, Lex Luger und Bret Hart. Am coolsten fand ich Shawn Michaels und Bret Hart. Ich hatte bis auf dieses Videospiel keinerlei Berührungspunkte mit Wrestling. Ich spielte es immer bei einem Freund und hätte auch alles andere gespielt, hauptsache gemeinsam was zocken. Das Spiel war durchaus gut, sehr gut sogar, doch der Funke für das Wrestling sprang noch nicht über. Irgendwann ist auch der Spaß an dem Wrestlingspiel verflogen bis 2001 war mein Leben wieder vollkommen wrestlingleer. Dann kam mein Freund wieder mit einem Wrestlingspiel an, dieses mal: 'Smackdown: Just bring it! ' aus dem Jahre 2001. Es war also noch nicht hoffnungslos mit dem Wrestling und mir, denn das Spiel machte erneut Laune. Doch wieder blieb es nur beim Wrestlingzocken. Aber der WWF-Keimling war nun gepflanzt, auch wenn es mir damals noch nicht bewusst war. Es sollten wieder einige wrestlinglose Jahre vergehen, bis ich aus spontanem Nostalgieanfall mal wieder 'Just bring it' rauskramte bei dem selben besagten Freund. Doch die Enttäuschung stellte sich schnell ein, denn die CD hat den Geist aufgegeben. Daher beschloss ich mich kurzerhand einfach ein neues Wrestlingspiel zu kaufen und zwar: 'Smackdown vs Raw 2007'. Das Spiel machte Klick. Ich war baff und begeistert wie feingeschliffen und komplex Wrestlingspiele inzwischen waren. Es hätte der Dauerbrenner werden müssen, denn es war einfach echt gut. Nur leider kam es im Freundskreis überhaupt nicht an. Zu kompliziert oder einfach zu neu und ungewohnt. Doch ich wollte mehr, mehr Wrestling. Nur wie? Genau: WrestlingSCHAUEN. Erst mal nur sporadisch auf Youtube ein paar Matches meiner Lieblingswrestler von früher wie eben Shawn Michaels, Bret Hart, Edge, Lita, Kurt Angle. Ich hatte ja keine Ahnung. Einige Jahre später begann ich dann auch die Klassiker Royale Rumbles zu schauen bis 2000-irgendwas und irgendwann hörte ich auf, denn ich war nun angefixt und wollte die Big Four. Ich begann chronologisch mit den Survivor Series, Summer Slam und Wrestlemania. Der Anfang zog sich, aber Shawn Michaels und Bret Hart enttäuschten nie. Ja und so schließt sich der Kreis, denn wäre Bret Hart und Shawn Michaels (und später Steve Austin) nicht gewesen, dann wüsste ich nicht ob ich drangeblieben wäre. Shawn Michaels hat alles was ein Wrestler braucht: Skills am Mikro, exzellentes Verkaufen der gegnerischen Aktionen, Schnelligkeit und gute Technik. Er verkörpert den Face gut, aber den Heel hervorragend. Der beste Face aller Zeiten bleibt für mich jedoch Bret Hart. Ja, ich freue mich schon auf die Attitüdenära."
Rating: No rating found
Sentiment: 0.04384615384615383
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Shawn was one of the most versatile and awe inspiring workers to ever do it, putting on many of my favorite matches of all time."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: eltetechoriwrote on 05.02.2022:[10.0] "He was, is and will be one of my favorite fighters, his character at the beginning was a bit extravagant for his time and perhaps a man does not attract so much attention, but I think it was ideal to transform a HBK that for so many years was one of the best there was in the WWF / WWE"
Rating: 10.0
Sentiment: 0.62
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: rishabhwrote on 30.01.2022:[10.0] "Ignoring all his attitude problems, I think he's earned it to be called as one of the GOATs. He could carry anyone to great matches and sell his ass off if he wanted to. Although I don't like his promo work and only liked him as a performer. He's not one of my favorites but he's one of the best to ever do it."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GriffinXwrote on 28.01.2022:[10.0] "My favorite WWF wrestler as a kid. Didn't matter what he was doing that was what I was invested in. Had his career truly ended in 98 he was a legend. But then you look at his second run and all he did it was amazing he had a 2nd HOF level career"
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Abo96wrote on 04.01.2022:[10.0] "Unglaublich begnadeter Worker, der sowohl über eine starke Athletik, als auch über hervorragende technische Fähigkeiten und ein großartiges Selling verfügte. Glaubhaftes Babyface, aber in meinen Augen immer besser als arroganter, selbstverliebter Heel. Zwar nicht der Größte, aber dennoch auch mit sehr gutem Look für einen Main Eventer. Verantwortlich für einige der historischsten und kontroversesten Momente der Wrestlinggeschichte. Wer seine Heel-Promo in Montreal oder seine Hogan Parodie nicht kennt, sollte das unbedingt nachholen! 10 Punkte für Mr. Wrestlemania, The Heartbreak Kid Shawn Michaels."
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CaptainCharisma1997wrote on 19.12.2021:[10.0] "My pick for the greatest in ring performer ever. Might be an unpopular opinion but I liked him even better post-God."
Rating: 10.0
Sentiment: 0.7000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: benny5bellyswrote on 25.11.2021:[5.0] "Michaels is the David Bowie of professional wrestling, he was incredibly dull as soon as he got off the gear. Rockers Michaels was fun until he did Marty dirty, coked up HBK was ace and then he lost his smile and went away. While away he found Jesus and decided everything needed to be some sort of forced epic. The only fun thing Jesus Shawn did was oversell for Hogan."
Rating: 5.0
Sentiment: -0.010185185185185193
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Unrightwrote on 13.11.2021:[7.0] "I'm not going to deny that Shawn is charismatic and can put on great matches. But you just can't give a 10/10 score to someone who repeatedly refuses to do jobs or even lose championships."
Rating: 7.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: markoutssjwrote on 06.11.2021:[10.0] "One of the greatest if not the greatest in-ring performer of all time. He wasn't the prototypical WWE build but he ended up being one of the most successful and most protected wrestlers in that company in his time he was active. He had charisma and could work a crowd like the best of them. He also was a good tag team wrestler in his early days, and even in a later run with Triple H as DX. While backstage he had a bad history I think his work speaks for itself and he's one of the GOATs"
Rating: 10.0
Sentiment: 0.4287878787878788
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jltwrote on 21.10.2021:[10.0] "An all-time great. Shawn Michaels has always been an amazing performer, not necessarily outside of the ring, but inside the ring he would always try to put on the best match possible and there may have been a couple of downhill points in his career but he always came back. I personally really enjoyed his second run more and even his last few matches were greats that people will remember. (We're going to pretend he never returned for Saudi)"
Rating: 10.0
Sentiment: 0.29090909090909095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: naturalbornfarmerwrote on 12.10.2021:[10.0] "I don't know what I can say about Shawn that hasn't been said already. He's might be the greatest wrestler ever. Sure his moveset isn't as flashy as more current day wrestlers, but if it weren't for him and Jeff Hardy, I don't think the current American wrestling scene is the way it is now. He was the epitome of the cocky heel champ, and while his return run during the 2000's was amazing, his work in the 90's was some of the best character work I've ever seen from a wrestler. I don't think I have ever seen a wrester be so beloved and be so hated by the crowd, he literally always had them in the palm of his hands. In 97, he's was essentially the perfect wrestler. Charismatic, Great Promo, Amazing worker, good-looking and in great shape. There was literally nothing that could stop this guy apart from himself unfortunately. His run in the 2000's is probably what makes him such a legend to most fans. To be able to come back to wrestling after a bad back injury and four years of not taking bump, and steal the show in your first match back ins unprecedented. His feuds with Chris Jericho and The Undertaker were two of the best wrestling as a whole has ever seen. If there was a legitimate wrestling Mt. Rushmore, he'd definitely be up there."
Rating: 10.0
Sentiment: 0.2661290322580645
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: FACEElmo295wrote on 08.10.2021:[10.0] "The greatest in-ring performer of all time. Shawn was always entertaining in the ring, and people cared for whatever he was doing. After The Rockers split HBK would go on to have two stellar runs in the WWE, the first being his 1992 - 1998 run, this was peak Shawn and he could outperform anybody on the roster. That being said I like his 2002 - 2010 run so much better, his skills may have had a bit of a decline but he was very reliable in the ring and had cleaned himself up thanks to becoming a born-again Christian in 2002. And made his WrestleMania matches must see. Seriously his WrestleMania run from 19 to 26 is pure perfection with all of those matches being 4 stars and above for me. Shawn is great on the microphone and he could make you hate, or love him with ease. The Showstopper, The Icon, The Main Event, Mr. WrestleMania. HBK lives up to all of those nicknames."
Rating: 10.0
Sentiment: 0.24360119047619053
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Jaedynr5wrote on 30.09.2021:[10.0] "this man is an absolute legend of the industry no matter what era of his career you look at, from his run as member of The Midnight Rockers in the AWA, to just being a member of The Rockers in the WWE, to hid amazing first from from 92 to 98, for his retirement and still being able to provide for the business, to his workhorse run in the 2000s, Shawn Michaels has too many classics to mention, too many great promos to name them all, and i can't think of one bad thing to say about him"
Rating: 10.0
Sentiment: 0.33125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Zerowrote on 25.09.2021:[5.0] "One of the most wildly up and down careers I could ever imagine in wrestling, from being one of the greatest tag team wrestlers in the world, to having some of the best and most memorable matches on the biggest stages to even getting a good match out of Sid of all people, to being one of the most irritating and at times just weird promos in all of wrestling before his first retirement. Upon his return I found him to being very good on paper and a welcome return to quickly become an unbelievably insufferable presence on tv for the last 6 years of his career both as a promo and a worker in his various incarnations. Now he was feuding with Triple H and/or Vince for like 70% of that to be fair but it still doesn't completely excuse all the bad. The remnants of someone great are there and it came out for a few great great matches but even then it can't excuse the vast majority of his work that just sucked. On top of it his contributions and influence have to be considered among the worst in all of wrestling, to the point it ruined what once were some highly popular wrestlers in NXT. With someone who you could point to being a 10 or a 0 on any given night in any given role, a 5 seems more than fair."
Rating: 5.0
Sentiment: 0.28711805555555553
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Jorhorgewrote on 19.09.2021:[10.0] "Shawn is like an Angel Garza from the 90s and 2000s. A very complete wrestler has it all, charisma, Rin permofance, Caliber and above all good movements and a great punch. A leyend."
Rating: 10.0
Sentiment: 0.4075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: nwachampionwrote on 18.09.2021:[10.0] "Was he the best at each and every aspect of pro-wrestling? Definitely not. He is probably not even Top 40 technical wrestlers of all time, maybe not even Top 20 among North-American technicians. Not the best aerial/cruiserweight wrestler either. We've had several wrestlers who were far better brawlers, and a handful who were better at promos than he ever was. Why, then, do I consider him to be the greatest North-American pro-wrestler of all time? It's because he could tell a story and put on a good show with damn near everyone in the ring, and people tend to forget that wrestling is, after all, a performance art, and few could surpass Shawn as a pro-wrestler who was a performance artist. When I first got into pro-wrestling (like many kids who turned out to be pro-wrestling fans, I was introduced to the WWF promotion) when I was 7 years old, I looked at it as sports/fights that were scripted, albeit entertaining. It wasn't until I viewed Shawn-Razor at WM-10 that I realized that pro-wrestling can be more; it can be performance art-- beautiful, mesmerizing, and a spectacle. Shawn had a charisma that immediately enamored me. In retrospect, I can fully understand why Shawn has had the same effect on some of my current favorite wrestlers, from Bryan Danielson, who in a recent interview opined that Shawn was the greatest NA wrestler of all time, to Kazuchika Okada, who took stylistic influence from the Jericho-Michaels WM-19 match, to Hiroshi Tanahashi, who considers Shawn as his lifelong inspiration."
Rating: 10.0
Sentiment: 0.37407407407407406
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Harem20wrote on 10.09.2021:[7.0] "He? s a good wrestler and incredible performer but never liked his first run push because of his attitude backstage politics. However, his second run I enjoyed."
Rating: 7.0
Sentiment: 0.3416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Josh Drakewrote on 23.08.2021:[2.0] "While undoubtedly Shawn is a very skilled worker, this does not usurp the fact that he is one of the most unprofessional, childish, and generally unideal workers in the history of the business. This comments towards Jean Pierre Lafitte, telling him that he 'should starve to death for two years' and embarrassing the WWF by getting into an unnecessary scrap with a group of marines at a bar should demonstrate just how much of a detriment he is to the reputation of any wrestling company. He hasn't really changed since his turn to Christianity either according to his former fan Shane Helms."
Rating: 2.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kerplinwrote on 10.08.2021:[10.0] "Probably the greatest in ring performer of all time. And the contribution to the business can't be ignored. When it comes to the newest generation of wrestlers, there are typically 2 people always brought up as inspirations behind them being fans, and pursuing the career, Shawn Michaels and Bret Hart. That has to mean something at this point."
Rating: 10.0
Sentiment: 0.030208333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Utopia95wrote on 07.08.2021:[10.0] "Shawn Michaels ist einer der besten Wrestler den es je gab, hat viele Legendere Matches abgeliefert. Vor allem das Match gegen Ric Flair bei WrestleMania 24 das für mich zu den Emotionalsten Matches gehörte die ich je gesehen habe. Das Match gehen den Undertaker bei WrestleMania 26 war überragend, und hat mir mit seinen Ausgang das Herz gebrochen großen Respekt an Shawn Michaels für diese großartige Zeit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LMC2wrote on 15.07.2021:[10.0] "The Best in ring worker to ever hit WWE. I can? t think of a single bad HBK match (we? ll pretend the one at Crown Jewel never happened) Amazing heel work. His 2002-2010 run was just amazing. Not one bad mania match."
Rating: 10.0
Sentiment: 0.1214285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BrayanLaPrewrote on 12.07.2021:[10.0] "In terms of in-ring contributions to professional wrestling, there are few who even begin to compare to "The Heartbreak Kid" Shawn Michaels. During the 1980s and 1990s, Michaels was raising the bar for athletic feats between the ropes. Between his selling, storytelling, and daredevil tactics, Michaels set a new standard that generations have attempted to reach. In the 2000s, Michaels was older, slower, and more limited by his back injury. Instead of trying to overcompensate and prove he could do the things that the X-Division was proving were possible, he became an even greater storyteller. Perhaps the best we've ever seen. Countless classics against the likes of The Undertaker (x3), Kurt Angle, Mankind, Ric Flair, Bret Hart, Razor Ramon, Chris Jericho, Triple H, John Cena... And the list goes on. A five-star wrestler, 10/10."
Rating: 10.0
Sentiment: 0.17763347763347762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: faithOfWrestlingwrote on 08.07.2021:[10.0] "One of the total packaged GOATS in my opinion, if not Thee. Every single Shawn Michaels match I have ever watched Ive been super entertained, Shawn can really do anything and Charisma just flows from his *just a sexy boy* entrance and entrance music, also one half member of my favorite tag team of all time The Rockers. My 2nd favorite wrestler of all time, people give Shawn Michaels shit for him allegedly being an asshole during the 90s and a drug addict but honestly do you think theres any WWE wrestler who wasnt an an asshole and on drugs back then? Probably not. People also like to give him shit for being arrogant when somebody like Bret Hart was exactly the same way and probably many other wrestlers had big egos. Why not give them shit for it too? As far as I know I have not heard anything about Shawn abusing anyone outside the ring or anything really serious like wrestlers such as Dynamite Kid and Chris Benoit, that is a whole other level of shit people like to act like Shawn was. The show stopper deserves nothing but a 10."
Rating: 10.0
Sentiment: 0.07266313932980598
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: greatmonkeywrote on 08.07.2021:[10.0] "In a far more internationally aware wrestling era of 2021 guys like Omega, Tanahashi, Styles, Ospreay, Daniels etc all have each other to compete with and to keep pushing the limits of what it means to be great in the ring. Michaels had no one except Hart within a WWF constricted North American setting and still managed to reach heights that few can even touch today. There is absolutely no reason why the matches he had in the 90s had to be as good as they turned out to be. Imagine where a talent such as prime Michaels would reach when given top level workers to compete with. After Flair, the single most influential Western wrestler to geneartions after his own day. His problematic personality in the 90s and the WWE's constant marketing of him as their GOAT are the only things going against him. But not enough to not warrant a perfect 10 score."
Rating: 10.0
Sentiment: 0.2343984962406015
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PrezVegetawrote on 30.06.2021:[8.0] "In the argument for the overall best ever. Had technical prowess, high flying abilities, his microphone skills were A+. The only reason why he doesn't get a full 10 rating is because his mental weaknesses which include throwing multiple temper tantrums in the middle of the ring when he didn't get his way and drug issues became a huge detriment to his career."
Rating: 8.0
Sentiment: 0.18099999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: juiceisloosewrote on 15.06.2021:[9.0] "One of the all time greatest. The only thing that bothered me was his stupid dx gimmick where he acted like a straight up dumbass. No bad comments about his in- ring performance, charisma and promos tho."
Rating: 9.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kungwrote on 30.05.2021:[10.0] "Up there with Kurt Angle and Bret Hart as the best all-around talent WWE has ever seen. He could talk, he could wrestle, and he could deliver on the biggest stage better than basically anyone."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LilLandowrote on 25.05.2021:[10.0] "Not the best professional wrestler to ever step in the ring, but in WWE he certainly is. Charisma, hustle, movement, agility, Michaels is a GOAT."
Rating: 10.0
Sentiment: 0.4380952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rodycaz IIwrote on 18.05.2021:[10.0] "The greatest in-ring performer in the history of pro wrestling. Very charismatic and a great promo as well."
Rating: 10.0
Sentiment: 0.8166666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Uweuwesenwrote on 03.05.2021:[10.0] "Shawn Michaels ist über zig Jahre hinweg einer der besten Worker der WWE und mit verantwortlich für eine Vielzahl der besten Matches aller Zeiten! Am Mikrofon über jeden Zweifel erhaben, aber auch im Ring im Stande mehr Dramatik rüber zu bringen als wohl jeder andere Wrestler der Geschichte! Für meinen Geschmack war das vielleicht sogar etwas zu viel Drama, aber das soll hier die Bewertung nicht schmälern"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Razzydawrote on 20.04.2021:[10.0] "One of the greatest wrestlers of all time. He is the one who helped wwe to exist in early 90s because he carried the company in period of WWF vs WCW . His wrestling abilitties , his personna , his gimmick , his promos were the best that could be."
Rating: 10.0
Sentiment: 0.7000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: preppyrichellewrote on 15.04.2021:[10.0] "Many people have a problem with separating Shawn the person and Shawn the performer. You dont have to like the guy personally, but as a wrestler he is one of if not the greatest wrestlers of all time, period. If you ask many of the new and upcoming wrestlers today who their inspiration to even start wrestling was, most of them will say Shawn. His rivalry with Bret Hart is top 5 of all time and his WrestleMania 25 match with The Undertaker is widely regarded as the greatest match ever. He has won more match of the year awards than any wrestler ever, including match of the decade and other huge awards like feud of the decade and most inspirational wrestler of the decade. He is the co-founder of one of the greatest factions of all time, Degenration-X and one the greatest tag teams of all time, The Rockers. He is a two time hall of famer and on the top 5 greatest wrestlers list of not only many fans but his peers. While he was never the biggest draw, you could argue that he did help carry the WWF on his back in 96 when the ratings were going down the drain. I truly believe without him, Taker and Bret Hart, WCW would have beaten them a long time ago."
Rating: 10.0
Sentiment: 0.4176438296003514
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MrJabroniCamelClutchwrote on 12.04.2021:[10.0] "Arguably the greatest athlete in WWF/E history , though his gimmick was pretty homoerotic to some extent and his unprofessional behavior backstage was a big problem , not to mention being involved with the burial of many gifted wrestlers in the business with the cliq with his backstage politics and colluding with Vince in screwing Bret in the infamous Montreal screw job , it can never be denied he shined where it counted , importantly in the ring which is ultimately what matters the most."
Rating: 10.0
Sentiment: 0.29444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Shawn michaels fanwrote on 03.04.2021:[10.0] "The greatest wrestler in wwe history. for shawn we can't say more words. He is best. the hart of wrestling HBK Shawn michaels"
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KingGucciBasswrote on 29.03.2021:[3.0] "Seine Zeit in der DX war wunderbar. DX ist für mich das beste Stable der Wrestling Geschichte. Zweifellos einer der besten aller Zeiten aber einfach zu viel Politik für meinen Geschmack. Ich schaue bis heute seine Matches sehr gerne. Wäre seine Verletzung 1998 nicht dazwischengekommen hätte ich mir vorstellen können dass er der Hogan der WWF geworden wäre und für den Kollaps der Promotion gesorgt hätte."
Rating: 3.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Jaden 101 Kenwrote on 25.03.2021:[10.0] "10 out of 10 for me, my favorite wrestler of all time The GOAT aka HBK, if it was not for him I would not be watching what we call professional wrestling."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: AndoCommandowrote on 18.03.2021:[10.0] "He's really great. Deserves a lot of the praise he gets for both runs, We don't talk about post-2010 Shawn though."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JBoogieRom28wrote on 12.03.2021:[10.0] "I'm going to break down his WWF/WWE career for you here. (1988-1992) The Rockers were one of the most loved tag teams in history. They were just likable because they didn't have many tag teams back then. They also had a lot of energy and a cool theme song. This version of the soon-to-be HBK was probably a 6/10(1992-1995) This era of The Showstopper was probably the 3rd best version. Shawn Michaels. After he turned on Jannetty, he broke the hearts of many of The Rockers fans. This is why he was dubbed, "The Heart-Break Kid". He was a little, egotistical, annoying, and careless guy you loved to hate. He put on an instant Classic with Razor Ramon for the Intercontinental Championship but it was, unfortunately, a losing effort for him. About a month later, he won the Royal Rumble and faced his former bodyguard Diesel at Wrestlemania 1995. He lost to Diesel and took time off. This version of Michaels is a solid 8/10. (1996-1998) This was HBK's best part of his career. He had great matches with a lot of different people. He quit the WWF for a short time but ultimately came back to officiate the match of The Undertaker vs. Bret Hart. He accidentally hit Taker with a steel chair and crowned Bret Hart the champion. During this time, Bret Hart and HBK had a bitter rivalry. HBK then had to face Taker in the first-ever Hell in a Cell Match. The match was rated 5 stars by Dave Meltzer by the way. At Survivor Series 1997, HBK took on Bret Hart. We all know the result of this match as it is one of the most iconic parts of wrestling history. "The Montreal Screwjob. " Vince McMahon made sure HBK won and he screwed Bret Hart. This version of Michaels is definitely a 10/10. One of the best in history. (1998-2002) This was the era when D-X began. Shawn Michaels got injured in a casket match against The Undertaker at the 1998 Royal Rumble. He made sporadic appearances throughout here and was even a special guest referee in a Rock vs. HHH match at the year 2000 Judgement Day. This was his first retirement and I don't count it as an actual wrestling part of the story but it was still apart of his career. so it's a 6/10 for me. (2002-2004) This was Michaels' return to WWF and it was great. He returned to have one of the greatest feuds of all-time with HHH. HBK then went on to have another amazing rivalry with Y2J. He ended this era with a series of matches featuring him and HHH. I will give this version of HBK a 7/10. (2005-2007) One of the best versions of HBK. He and HHH reformed D-X and had a great feud with Legacy. He also had a Legendary feud with Hulk Hogan. D-X then had good matches with The Spirit Squad, The McMahon's, and Rated-RKO. This version is a 7/10. (2007-2010) This would be the last run Michaels had in WWE. Michaels would retire Ric Flair during this run in an emotional match. He had at least 1 match with every star during that time. He, unfortunately, retired after failing to defeat Undertaker. Entire career was a 10/10. I reached th"
Rating: 10.0
Sentiment: 0.24751570767195763
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Elusive12wrote on 09.02.2021:[10.0] "My favorite. He was a fantastic character and wrestler. He has multiple classic matches, most notably in WM which he was appropriately nicknamed Mr. Wrestlemania, and made countless moments. In short, he was my GOAT."
Rating: 10.0
Sentiment: 0.28518518518518515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Brett1980wrote on 25.01.2021:[10.0] "For me the best to ever step foot in a WWE ring. Great all rounder and responsible for some of the greatest matches in WWE history. 1998 retirement was premature and left you wanting more and when he came back in 2002 he did not disappoint. Very rarely had a bad match."
Rating: 10.0
Sentiment: 0.3544444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: sanjurowrote on 24.01.2021:[8.0] "Indisputably a great big match wrestler, possibly the best heel promo in WWF/E history, and one of the most influential workers of all time. He was also a primadonna who left more money on the table than maybe any other worker, messing up potentially lucrative programs with Bret Hart, Vader, Hogan (not entirely his fault) and more while devaluing belts with his constant fake injuries and hobbling numerous careers over backstage politics. It's a shame that his selling style influenced so many because he used bumps solely to call attention to himself rather than put over his opponents. But still, you can't deny his charisma or how many great matches he had, from his innovative work in the Rockers all the way to those definitive Mania matches. Hell, he even managed to drag Triple H's plodding ass to numerous classics."
Rating: 8.0
Sentiment: 0.21785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Residentwrote on 22.11.2020:[10.0] "He is known as Mr. WrestleMania. "The Heartbreak Kid" Shawn Michaels is one of the best wrestlers of all-time. He had the best match at WrestleMania many years in a row. Back in the 90s, at first Ididn't care for him even though I knew he was really good. Had the classic ladder match at WrestleMania against Razor Ramon and later would go on to form DX with HHH and become a mutil time WWE Champion. But I was actually more impressed when he returned in 2002. He was better than ever in the ring and even bled more than other guys did at the time in WWE. He won the Elimination Chamber and went on to win the World Title. Later he would have more classic WrestleMania matches including 2 with the Undertaker, the second of which was supposed to be his last match and I wish he wouldn't have come back for the horrible Saudia Arabia tag team Match. But Shawn is still remember today, his mannerisms and "Sweet Chin Music" Superkick is used all the time. He is listed by many as the greatest of all-time."
Rating: 10.0
Sentiment: 0.34618055555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: medousewrote on 03.11.2020:[10.0] "HBK made a huge impact on professional wrestling. He was one of the first "high-flyers" on TV. He put WWF on completely different level when it comes to wrestling skills. Great gimmick, cool looks, signature moves, the inventor of Superkick, part of D Generation-X, and he was the one who sent Ric Flair on retirement."
Rating: 10.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: eleddie2914wrote on 28.10.2020:[10.0] "Shawn Micheals is so damn talented he is great. Shawn became a legend so early in his career after his first retirement he was considered a legend . When he came won his last world title and with 8 more years wrestling he remained relevant and had great matches . Shawn is one of the greatest if not the greatest of all time."
Rating: 10.0
Sentiment: 0.5549999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: znezaaljwrote on 25.10.2020:[7.0] "Ok, maybe it is just that has never connected with Shawn, but I never liked his in-ring style. Not saying that he was bad, but in my opinion it is not fair to have him in the GOAT conversation. He had great promos, but his backstage behaviour drags my rating a little bit back further."
Rating: 7.0
Sentiment: -0.029687499999999978
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ilovewrestling1995wrote on 23.10.2020:[10.0] "One of the best wrestlers of the world and maybe the best ever. Great moveset , he was a master in ring psychology and his matches were always exciting to watch . Too bad he never was in new japan pro wrestling , he would be way more interesting to watch him over there ."
Rating: 10.0
Sentiment: 0.4420454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dennisiztheman02wrote on 24.09.2020:[9.0] "Shawn Michaels is a legend! He has had great matches with Bret Hart, Undertaker, HHH, John Cena, and others. His in ring skills are fantastic and has amazing charisma. However there are a few problems with Shawn one of them being his ego. Hearing stories about how he screwed great talent like PCO, Shane Douglas, etc. is very hard and him not wanting to drop the world title was ridiculous especially with the Lost Smile promo. His drug addiction nearly killed his career and his life. I will give him credit for wanting to become a better person and he's doing a good job even if some people don't believe him. Shawn Michaels is an amazing wrestler but, has huge flaws backstage and has improved on them."
Rating: 9.0
Sentiment: 0.2848214285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Gathawkwrote on 16.09.2020:[10.0] "Absolute legend and one of the reasons I became a wrestling fan. Awesome in both face and heel roles, part of some of the best matches in the wrestling history to this very day. The only downside is that he should've stayed retired after 2010 but well, he's a WWE guy + money talks."
Rating: 10.0
Sentiment: 0.4800000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jansen ferriswrote on 02.09.2020:[10.0] "Some people here try So Hard To give shawn michaels a low rating, But One Thing They Have To Admit, He Was A Natural Born Talent."
Rating: 10.0
Sentiment: -0.0638888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LockeJVwrote on 18.08.2020:[6.0] "If you're going to rate someone a 9 or 10 the expectation should be the wrestler carried a promotion, sold tickets, got ratings, and was a groundbreaking talent that consistently put on great matches. Shawn Michaels certainly impacted the business with his flamboyance and technical ability, however he never came remotely close to carrying a promotion or selling tickets or getting people to tune in. If you analyze his HW title reigns, he really only had one ('96) and it was awful. Michaels, Bret Hart and the Undertaker (who many for some reason refer to as the 3 GOATS) were all in WWE at the same time - in the prime of their careers - and the promotion went to hell and was crushed by WCW because none of them could sell tickets or draw ratings. It took Austin, the Rock and Mick Foley to bring WWE back to prominence. I'd give Shawn an 8 for his tag run with Jannetty and his ICC run, but his HW title reign and his bad attitude and unwillingness to work with talent like Vader hurt the product and lost viewers. Shawn had all the talent in the world but he squandered it in his prime during his title run, at the expense of WWE. Sure, after he became a part timer, he was allowed to have "great" matches with lots of false finishes at Mania with other part timers like Flair and Undertaker, but the bottom line is Michaels' squandered his opportunity to carry a promotion and his legacy is the personification of overrated. A generous 6/10 for being an incredibly selfish performer and burying talent when he didn't even come remotely close to generating enough revenue to justify his awful behavior."
Rating: 6.0
Sentiment: -0.048035714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Donniewrote on 04.08.2020:[8.0] "92-97 drug addicted cunt Shawn is the best guy. Born again is a super hit and miss asshole, that had 10 killer matches that overshadowed some awful stuff."
Rating: 8.0
Sentiment: -0.016666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Okaro143wrote on 30.07.2020:[10.0] "One of the best in ring performers to ever step in the WWE ring. He had an easy charisma, great looks, was able to tell amazing stories both in ring and in promos, an amazing finisher , etc. Personally a lot of fans hate him due to his behaviour but as a wrestler, he was that damn good. In my opinion, there are only a few performers that were as good as him in WWE history. Daniel Bryan, Aj Styles, Bret Hart, CM Punk. , etc."
Rating: 10.0
Sentiment: 0.3237179487179488
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jchiofalwrote on 30.07.2020:[5.0] "Was he one of the best American wrestlers of all time? Absolutely. His matches are still fantastic. The mediocre rating is reflective more about him as a person. He ruined the likes of Bam B Bigelow, Vader, Dean Douglas, and the future PCO. Shawn Michael's legit kicked Vader in the face after an accident in-ring, and had a temper tantrum. HBL is a legend and among the best, but is an absolute b****, and aside from Bret Hart, he hasn't done much to get the forgiveness of those whose career he destroyed because he's a man child."
Rating: 5.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Divus Rolexuswrote on 16.07.2020:[10.0] "The best performer of all-time for sure. I don't like him in the 90's (because of his backstage behavior) but I love this guy in the 00's."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Nightmare19wrote on 05.07.2020:[10.0] "the best to ever do it. his wrestling is flawless and he? s great at every aspect of pro wrestling. he? s been at the top during multiple eras too and shown he can adapt"
Rating: 10.0
Sentiment: 0.6599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Viniciouswrote on 26.06.2020:[10.0] "NOT the best wrestler of all-time, but I think he slides in third behind Bret Hart and Ric Flair. The nonstop narrative calling him the greatest is annoying but it shouldn't work against him."
Rating: 10.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Khalid Mwrote on 08.06.2020:[7.0] "He was a great in ring worker but the greatest performer of all time? Come on! Extremely OVERRATED & apart from DX his promos were never good. To be fair he was part of one of my favorite feuds "his one with Jericho" but Jericho deserves more credit for that one from me."
Rating: 7.0
Sentiment: 0.4321428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Slickooo7wrote on 26.05.2020:[6.0] "I thought Shawn Michaels was at his best after his back linjury. I thought his character was better before his back injury. Never a top guy like Austin or Hogan but great in the ring and good promo when being a heel."
Rating: 6.0
Sentiment: 0.39285714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JuWFEAEwrote on 14.05.2020:[10.0] "Es gibt nur wenige Wrestler, die so viele 5 Sterne Matches abliefern wie HBK. Seine Promos sind noch immer gut. Er ist Defenitiv einer meiner Lieblingswrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: VillainClubwrote on 12.05.2020:[8.0] "Ein guter Wrestler mit guten Promos. Aber im Grunde hat er den Grundstein für die Heute viel zu viele über dramatischen Matches gelegt. Zudem hat er durch sein Ego vielen das leben zur Hölle gemacht, besonders in seiner ersten Karriere hälfte. Zudem wirkt sein selling oftmals übertrieben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Wrestling Foreverwrote on 03.05.2020:[10.0] "Er ist heute für viele die ihm mit langen Haaren über zig Jahre kennen nicht mehr wieder zuerkennen da er echt eine Glatze hat. Ich muss zu ihm nichts mehr erwähnen. Es ist eine absolute Wrestling Legende. Niemals wird es wieder einen wie ihm im Ring geben, HBK kann man nicht kopieren."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Einer besten Wrestler aller Zeiten und auch leicht Top 10 einer der Besten Wrestler aller Zeiten. Einer der besten Wrestler vom in Ring können her der mit jedem Wrestler ein Top Match auf die Beine stellen kann und mit guten Wrestlern auch immer für absolute Klassiker zu haben, am Mic auch sehr gut und mega viel Charisma und ein perfektes Gimmick für seinen Look sowie sein Charisma. Alles in allem eine absolute Legende die sich die vollen 10 Punkte auch absolut verdient hat."
Rating: 10.0
Sentiment: 0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TNBG2381wrote on 03.04.2020:[10.0] "Shawn Michaels is the greatest American professional wrestler of all-time. What I mean by that is his in-ring ability. He wasn? t the biggest draw, he wasn? t the biggest attraction, and he wasn? t the biggest wrestler, but his in-ring work sure put him at the top of overall match quality. He made the super kick iconic and because of him tons of wrestlers still use that move today. Shawn Michaels will always be known as a pioneer and the perennial athlete in the wrestling business."
Rating: 10.0
Sentiment: 0.29120370370370374
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: AAA3000wrote on 07.03.2020:[10.0] "Er bringt immer seine Leistung. Hat Technik. Hat Präsenz. Kann Mikro. Ja, da gibts wirklich nichts zu mosern. Zehn verdiente Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheMan89wrote on 25.02.2020:[10.0] "Shawn Michaels is hands down the greatest professional wrestler of all time. He put on wrestling match clinics for decades with the likes of Bret Hart, Stone Cold Steve Austin, Mick Foley, The Undertaker, Triple H, and Chris Jericho to name a few wrestlers. He was part of the greatest factions of all time in DX and the NWO and played a huge role in both of those factions during their existences. His retirement match against The Undertaker at WM 26 and even his match at WM 25 with Taker were some of his greatest matches. Even though he looked a little slower in his return match at Saudi teaming with Triple H against Taker and Kane, he still put on the best show he could given how long he has been out of the ring. His role as a coach and producer for NXT is awesome for the business since he has a lot of knowledge and can give advice to all of the talent that work there today. Great talent no doubt!"
Rating: 10.0
Sentiment: 0.4082264957264957
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: magiclikemikewrote on 02.01.2020:[10.0] "He is that damn good. A very strong contender for the greatest there ever was, and maybe even the greatest there ever will be--shoutout Bret Hart. Full send 10."
Rating: 10.0
Sentiment: 0.7226666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Wrestlefan20wrote on 22.11.2019:[9.0] "One of the greatest allrounders in wrestling. He had the mic skills, look, in-ring skills and charisma of a main eventer. Unfortunately, he got himself into a lot of trouble due to his behavior, which caused a lot of fans to dislike him at certain points in his career."
Rating: 9.0
Sentiment: 0.09265873015873016
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Cameron621129wrote on 20.08.2019:[9.0] "One of the best wrestler of all time. Incredible in ring. Superb on mic. Really funny. Enjoyable to watch. Sounds like he is annoying in real life, but he's a once in a generation talent"
Rating: 9.0
Sentiment: 0.43571428571428567
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[10.0] "Several best matches of all time. Emotional storyteller. Pioneer in the ring. I almost feel like the less said on HBK, the better. Simply astonishing in every sense of the word."
Rating: 10.0
Sentiment: 0.3055555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheV2wrote on 19.07.2019:[9.0] "Mr. Wrestlemania Shawn Michaels - one of the greatest in-ring storytellers in the business, if not the best. In the ring he was ahead of his time. He may be not everyone's favorite co-worker. But his personality didn't stop him to give amazing matches."
Rating: 9.0
Sentiment: 0.775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: zephyrwrote on 20.03.2019:[8.0] "Smooth in-ring worker with good charisma. One of the more overrated wrestlers but not bad by any means."
Rating: 8.0
Sentiment: 0.4875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Tomaswrote on 07.03.2019:[10.0] "Excellent performer. In my personal opinion, he was better as a babyface could make an average heel look like a million bucks by selling and running on adrenaline in his unique way. Fantastic in the ring, fantastic storyteller, could cut a serious promo and could do comedy as well. Year after year had classic matches with numerous wrestlers and really is one of the best pro wrestlers of all time."
Rating: 10.0
Sentiment: 0.2965277777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kevin41182wrote on 18.02.2019:[9.0] "Though he was extremely arrogant and unprofessional in his first run in the WWF, Michaels was and still is a great in-ring worker. I do think that he is a tad bit overrated and personally, I believe Brett was better but nonetheless, he was still one of the GOATs."
Rating: 9.0
Sentiment: 0.28500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LandonRyanWyattwrote on 27.01.2019:[10.0] "By far, the standard by which every in-ring performer should be judged. The greatest performer of all time, head and shoulders above everybody else."
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ShireFunPosterwrote on 22.12.2018:[8.0] "Michaels was undoubtedly a great wrestler, but I often found his in-ring style as well as his promos to be overly melodramatic. His run on top was a tough time for the WWF, but he was a part of a few classic programs (inclduing the Jericho fued in 08 which is an all-time great) and I'd have to imagine that an 8/10 rating is about as low as you can go for him."
Rating: 8.0
Sentiment: 0.23968253968253972
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Stott Onewrote on 30.11.2018:[10.0] "There isn't much I can say about HBK that hasn't been said. He's a legend in WWE. He's a lot of people's favorite wrestler of all time. He's a great wrestler, a great entertainer, a great draw. He can pull a good match out of anybody. One of the greatest of all time, hands down."
Rating: 10.0
Sentiment: 0.5805555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Steamboat2511wrote on 28.11.2018:[10.0] "HBK ist auch für mich als Gesamtpaket der beste Wrestler überhaupt. Technisch ist er wirklich immer auf einem hohen Grundniveau. Hinzu kommt: Er hat Charisma (am Anfang der Karriere beinahe zu viel), er hat echte Ringpräsenz, er ist die Nummer 1 in Sachen In-Ring-Entertainment, Ringpsychologie und Matchführung. Im Laufe seiner Karriere haben sich unendlich viele Klassiker angesammelt, die ich alle immer wieder gerne ansehe. Gimmicks konnte er auch in alle Richtungen gut verkaufen (gehasster Heel, arroganter Sunnyboy, geliebter Face, Komödiant bei DX, respektierte Legende) und sein Mic-Work war in der Regel auch von feinster Qualität ("Woh's your Daddy Montreal"). HBK ist also glatte 10 Punkte wert und meine Nummer 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: aREALwrestlingfanwrote on 27.11.2018:[9.0] "If you gave HBK less than a 8 (like some people did on here), then clearly are blind, or just a dummy. HBK, despite all the backstage goings on, is one of the greatest of all time. Fly, wrestle, fight, talk.. whatever it was, HBK could do it. He was just amazing to watch, and entertaining to listen to. Should he have retired and stay gone a long time ago, and not dragged DX back over and over again? Sure. It should've stayed gone, and in the end it hurt the product. Kinda like another epic but way overused Kliq run group, the nWo. But there is no doubt the amount of amazing matches and moments HBK has put on makes him definitely a wrestling Legend, and someone who deserves AT LEAST a 8 rating on here. Some of you raters are bitter and clueless."
Rating: 9.0
Sentiment: 0.2055555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: hello101wrote on 09.11.2018:[10.0] "The greatest North-American wrestler of all time IMO. An all-rounder in every way, he has shown time and time again that he excels at not only utilizing the squared circle to the fullest to elicit sheer passion and emotion in his viewers, but also at bringing out the best of his wrestling opponents/rivals, no matter how average they may seem in the ring otherwise. I think that's what made HBK truly great, adapting to the strengths and weaknesses of his fellow wrestlers with whom he shared the ring. I'll go so far as to claim that even his "coming-of-retirement" match, though not a decent wrestling exhibit by any chance, will still go down in wrestling lore as the only highlight of an event which was a fiasco for the most part. The HBK of 2018 still showed signs of the unparalleled wrestling showman and match-carrier he once was."
Rating: 10.0
Sentiment: 0.2737373737373738
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JEK 1991wrote on 26.10.2018:[10.0] "One of best wrestlers and entertainers ever in wrestling. I always loved this guy. I know he had his flawless but still he is great. I love his entrance theme and the best entrance in WWE history. he was an iconic for the New Generation era and early days of the Attitude era. The back injury made him miss a few years in wrestling but came back. The main event matches he had were incredible. He is now retired and still entertaining fans. This man quit his alcohol problems and became a born again Christian. The Heartbreak Kid. Sexy Boy!"
Rating: 10.0
Sentiment: 0.45459001782531194
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RatingsMachinewrote on 12.10.2018:[8.0] "Shawn Michaels was a great performer who could have some exciting matches, but his style was more flash over substance, and he had plenty of flaws that get overlooked, not all of which are from his notoriously bad behaviour."
Rating: 8.0
Sentiment: 0.22500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GianGwrote on 26.09.2018:[8.0] "One of the best. Unfortunately, not THE best in everyone's book. I idolized the guy as a kid, thought he was a well-rounded athlete with the arrogance and charisma to carry himself throughout matches and boy, did he deliver some great confrontations over the years. However, as I got to know him more, I gained exposure on his overall influence in backstage politics during the 90s. Three things I'll never forgive (not that it should matter) the guy for is his unwillingness to drop the title to Bret, therefore vacating it by "losing his smile, " his way TOO public relationship with Sunny and that one interview, and his mid-match Vader bullying over a miscommunication in the ring, threatening his job position and stating he'd have him fired for not proceeding along accordingly, to which Leon cried over once he went to the back. I know the Shawn Michaels of today is a totally different proposition, but old habits die hard."
Rating: 8.0
Sentiment: 0.3048611111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Makai Clubwrote on 29.08.2018:[8.0] "Great wrestler - at times but I feel there is a disconnect between me and him. The way other people say he is the GOAT or the best ever, perfect wrestler etc I'm always stunned at why they said that. I can just see HBK as this legend of the entire business. His reputation definitely supersedes him. But saying that, he is still very good. Excellent in the role of being thrown around like a rag doll whether it's as a chicken shit heel or a fighting babyface. Perhaps a bit one note - but still great enough to let that slide. His mic skills are eh. Very competent on the mic but no promo of his has every given me a lasting impact, to be perfectly honest. And let's not mention the shitty DX promos that were considered "cool" lol. A top wrestler but is just missing a lot of things to make him an all timer in my opinion."
Rating: 8.0
Sentiment: 0.3834210526315789
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mtavarez727wrote on 29.08.2018:[10.0] "HBK was a one of a kind talent. He was good on the mic, could get over as a babyface or get heat as a heel, was super charismatic, controversial, and most importantly he was the greatest in-ring performer ever. HBK could work any style and could make any wrestler look good. HBK has the best resume in terms of match quality in WWE history. HBK is the greatest of all time in my opinion."
Rating: 10.0
Sentiment: 0.662121212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Gary Johnsonwrote on 18.08.2018:[8.0] "Michaels hatte mir bei den Rockers schon gefallen, ich dachte damals aber nicht dass er es als Solowrestler so weit bringen würde. Sein Werdegang ist völlig nachvollziehbar er wurde nicht unnötig gepusht. Sein Können ist über jeden Zweifel erhaben auch wenn er manchmal gegnerische Moves zu sehr "sellt". Aus menschlicher Sicht war laut vieler seiner Kollegen jedenfalls eine Enttäuschung. In der DX Zeit fand ich ihn witzig. Jede Aussage und Geste saß einfach. Leider muss ich ihm 2 Punkte für sein Backstage Benehmen abziehen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PuntCunisherwrote on 09.08.2018:[6.0] "Good wrestler, but nothing else about him works for me at all. I find almost every single one of his highly touted matches over rated and I found his promos and character in general to be quite boring. Combined with how big of a piece of trash he was for so long, I'm giving him this rating."
Rating: 6.0
Sentiment: -0.030204081632653052
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DaWizWithADwrote on 08.07.2018:[10.0] "One of the greatest all round performers in the history of Wrestling, able to go talk, and, think. His ego overshadows his in-ring talent in a lot of conversations about him but he's pretty much perfect if he's judged purely off in-ring merit."
Rating: 10.0
Sentiment: 0.4607142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RPMX123wrote on 29.06.2018:[10.0] "Masterful storyteller, masterful moveset, masterful talker, charismatic as hell, one of the best wrestlers of all time."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Solidsnake888wrote on 08.06.2018:[10.0] "Shawn Michaels ist ein Weltklasse Mann. Stark im Ring mit tollen Moves und tonnen an Charisma. Was mir an HBK gefällt, ist die tatsache, dass er andere Wrestler stark aussehen lässt ohne das er schwach aussieht(Survivor Series 2003). Er ist verdient in der Hall of Fame und kriegt 10 verdiente Punkte"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: rjsbx11wrote on 11.02.2018:[10.0] "Shawn Michaels might be what professional wrestling is all about. Drama. Personal Troubles. Ego. But also. Storytelling. Psychology. Natural Talent. HBK is one of the greatest performers to ever lace up a pair of boots. He used to be a mess outside of those ropes but when he got in there, there was very very few better than him. His second run in the WWE is one of the best runs anyone has ever had in a wrestling promotion (those Wrestlemania matches, the moments, the heel promo in Canada). He rarely got it wrong. He may be notched off for his pill-popping, hell-raising for some but when the lights were on, few could outshine the Heartbreak Kid,"
Rating: 10.0
Sentiment: 0.14346153846153842
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Oliver95xwrote on 07.02.2018:[10.0] "Shawn Michaels hatte viele spektakuläre und epische Matches und ist einer der besten die es jemals geben wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CHN325wrote on 31.01.2018:[9.0] "One of the best ever inside the ring when it comes to getting you invested in a story, but his attitude and backstage politicking in his career are hard to ignore. Admittedly he redeemed himself later in his career during his final run."
Rating: 9.0
Sentiment: 0.17708333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ianlapierrewrote on 04.11.2017:[10.0] "He is arguably one of the all time greatest. He was a fantastic wrestler. He could draw serious heat. Later in his career he was beloved for his work ethic and humility (allowing best friend Triple H to win all the titles and hog all the limelight). He had a long career that began at the absolute perfect time - right when wrestling entertainment was taking off and PPVs become prevalent. His first Wrestlemania match with Undertaker is arguably the greatest ever. And the second wasn't far off the first one. He retired on top of his game. For me, he ranks right up there with the 5 or 6 best ever."
Rating: 10.0
Sentiment: 0.3994047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: tykechandlerwrote on 19.10.2017:[10.0] "A wonderful performer and showman. He put on consistently great matches for a long period of time. However, he did have a slight tendency to oversell, and he could be somewhat formulaic. But his workrate was phenomenal, and he is certainly one of the best American wrestlers ever."
Rating: 10.0
Sentiment: 0.3664021164021164
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kapuwrote on 04.10.2017:[8.0] "A great wrestler, nobody can deny that, but not the best. While in-ring ability isnŽt everything to make a good wrestler, showmanship isnŽt everything either. Shawn Michaels managed to capture the attention of basically everybody, both at the ring and backstage. HeŽs made a good job both as a face and as a heel and heŽs demonstrated his worth, but for me technically he stops a little short compared to other outstanding wrestlers. You canŽt just compare Shawn Michaels with anyone, and since itŽs top-level weŽre talking, only the best will do."
Rating: 8.0
Sentiment: 0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "Along with the Undertaker, the best wrestler in the history of WWE. Always very histrionic, spectacular and funny to watch, his matches were stories told with body language, athletic moves and an excellent capacity of buying the audience's attention. He retired at the best moment possible, instantly becoming a legend."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Maniacwrote on 22.09.2017:[8.0] "Shawn Michaels is a great wrestler in the ring but not a 10, a ten signifies he was without fault, and we can all remember some less than stellar matches he had during his initial run, he took a while to get great but he managed it, on the mic however wasn't Shawn's strong suit he was passable and had a few exceptional promos besides this he carried himself with a severe attitude problem his entire career which at times ruined great matches, take his summerslam match against Hulk Hogan, everyone likes to point at Hogan for dropping out of a 3 match plan with shawn but shawn didn't do himself or anyone any favors by acting the way he did for that match. One other knock on shawn is he was never a great brawler a good one sure, but not a top level in this regard, as a technician he was good but out shined, what shawn excelled at was two things one psychology and flashiness, in his time period Shawn was one of the flashiest wrestlers ever compare what he did today he'd be considered average there lol. (that isn't a knock on shawn though) Shawn was one of the best in ring psychologists in wrestling period just not a 10."
Rating: 8.0
Sentiment: 0.29325396825396827
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BigMikewrote on 18.09.2017:[10.0] "One of the best wrestlers ever. His matches with Undertaker are ***** worthy. He could play the annoying heel or the perfect babyface. Don't remember the last time he had a bad match"
Rating: 10.0
Sentiment: 0.1388888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: taabr2wrote on 10.09.2017:[10.0] "One of the greatest workers of all time. Shawn Michaels' post injury run from 2002 until his retirement in my favorite run by a wrestler in WWE ever."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Viktor Vaughnwrote on 01.09.2017:[10.0] "Absoluter Top-Performer, einer der allergrößten aller Zeiten. Er hat es immer geschafft, aus jedem Gegner ein mindestens gutes Match heraus zu holen, und er hat es immer geschafft, aus jedem Zuschauer die richtige Emotion heraus zu kitzeln. Egal ob er Heel war oder Face, egal ob am Mikrofon oder im Ring, er wusste immer zu überzeugen, in allem was er gemacht hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: coolserazwrote on 06.08.2017:[9.0] "HB-Shizzle is DA MAN! When it came to wrestling and captivating the audiences, no one was as charismatic and fun to watch. His promo skills and backstage politicking go against him but he could cut a strong promo if he wanted to. Broke down several barriers for smaller wrestlers along with Bret Hart and later on Eddie Guerrero, Chris Benoit and Rey Mysterio."
Rating: 9.0
Sentiment: 0.19722222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: WoLFPaCKnWo1995wrote on 15.07.2017:[10.0] "Ah that's my boy Shawn lol, no seriously the heartbreak kid deserves his place in wrestling history, take notes vanilla midgets, here's a living example on how to be a small wrestler and not suck."
Rating: 10.0
Sentiment: 0.2388888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SrHunterwrote on 04.07.2017:[10.0] "Honestly i'm horrified to the recent low ratings to him, Michaels is one of the best wrestlers in history, at least in america, sure he was an asshole in the 90s, but his ring-work really compensates, tremendous babyface and personally i kinda like his return in 2002 more than his 1990's, busting great matches with almost everyone all the time, great feuds, moments, i think he never pulled a bad match that i remember, anyway one of the icons and inspirations of pro-wrestling."
Rating: 10.0
Sentiment: 0.2871794871794872
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Coltwrote on 25.06.2017:[10.0] "Es ist eigentlich überflüssig noch viel über Michaels als Wrestler und Entertainer zu sagen. Am besten gefiel er mir zweifellos zu Beginn seiner Single-Karriere in Begleitung von Sensational Sherri und mit Diesel als Bodyguard. Also, in der Zeit in die seine ersten beiden IC-Titel und der Gewinn des ersten Tag-Team-Titels fielen. Damals fand ich ihn einfach cool, er war ein Typ der gutes Aussehen, eine gewisse " Leck mich am A.... " -Einstellung, Individualität und Charisma verband. Dazu kamen seine beachtlichen Fähigkeiten im Ring. Er ist der beste Techniker aller Zeiten (sorry, Bret Hart-Fans - ich hab nie gesehen wie Bret einen Hurricanrana oder Moonsault ausführte)! Die DX revolutionierte die WWF, sie machten Sachen die man vorher in dieser Promotion nicht sah und nach der sich die Fans sehnten. Der Montreal Screwjob hatte einen Beigeschmack, aber ohne diese Geschichte und die DX wäre die WWF wohl kaum wieder in die Spur gekommen. Michaels war einer der ganz großen dieses Geschäfts."
Rating: 10.0
Sentiment: 0.13055555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: flashbackwrote on 06.06.2017:[3.0] "In the ring, few if any could compete with Shawn. He was without a doubt one of the most entertaining, incredible workers ever to step into a ring. As a kid, I was absolutely mesmerized and thrilled by his matches, and for a long time I was a huge fan. Now, as an adult, hearing about what he has done in his personal life, I have to detract significant points because he is such a colossal dick, maybe the biggest in the entire business. The amount of guys he has screwed over either directly or indirectly is astounding. One random example off the top of my head is Vader, who could have done amazing business with him, if Shawn hadn't been such a prima donna in the ring. Another is Hurricane Helms - apparently Shawn had a huge problem with him doing the choke slam. And Shawn calls Bret a mark? Who's the mark now HBK? And yes, of course his history with Bret - a guy that Shawn repeatedly refused to job to, and who he refused to wrestle on occasion, instead claiming he "lost his smile" and handing the belt over without actually losing it - the same thing Bret wanted to do in Montreal, but when the shoe was on Bret's foot, well then Shawn had a HUGE problem with it. Talk about hypocritical… oh and speaking of hypocrites, Shawn's "born again" status - isn't THAT convenient. Be a massive dick for decades and then find god and suddenly all is forgiven. What a joke.  Shawn sucks, and he's not deserving of the status usually given to him. Please people - don't believe the religious BS."
Rating: 3.0
Sentiment: 0.16328125000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Arousalswrote on 17.04.2017:[10.0] "The Icon, the Showstopper, the best modern wrestler I had the honor to see perform. Could work any type of match with any opponent and had the MOTN more times than any other performer I can think of. Shawn Michaels will go down in history as truly part of the very cream of crop."
Rating: 10.0
Sentiment: 0.2699074074074074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Lariatooowrote on 05.04.2017:[10.0] "The absolute best wrestler ever. I can't think of any other person who has put an as many amazing matches that has also entertained me for most of his career as much as HBK has. The only other professional wrestler that can even touch HBK is Ric Flair. Yeah, he definitely had attitude problems and was a definite prick a lot of the times in the 90s, however I do believe that he has changed (even if he does let it slip occasionally e. g. SummerSlam 05) but I can easily look past that and just enjoy his matches."
Rating: 10.0
Sentiment: 0.21458333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Blood Pumpwrote on 29.03.2017:[9.0] "Rightfully called the greatest wrestler in america (though my preferences include others like Kurt Angle, Bryan Danielson,  Ric Flair and Steve Williams among others), Shawn never let his personal demons interfere with his in ring work (Well, mostly... His match with Hogan was not very flattering). Oh hes let them run wild backstage but the man had every reason to call himself the best in ring worker in professional wrestling. That he came back in 2002 and had perhaps an even better run then his initial one (very debatable) is just outright impressive."
Rating: 9.0
Sentiment: 0.3583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Summerslam Fan 01wrote on 12.03.2017:[9.0] "Der beste Wrestler aller Zeiten.  Er ist Mr Wrestlemania, nur Top Matches abgeliefert.  Wird aber nie so groß erwähnt werden wie ein Hogan, Stone Cold oder ein Undertaker.  Das liegt auch dran das er außer im Ring nicht der Hit war.  Am Mic Solide, Charisma schon viel."
Rating: 9.0
Sentiment: -0.04999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: R-Dizzlewrote on 03.03.2017:[10.0] "Eindeutig einer der 3 besten Wrestler aller Zeiten und wahrscheinlich der beste WWE-Wrestler aller Zeiten. Ausstrahlung, Charisma, Ringwork und Micskills alles perfekt. Absolut verdient eine 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LordGabrielwrote on 24.02.2017:[10.0] "Great entertainer ! Memorable moments in DX , memorable matches and feuds against Triple H , The Undertaker , etc. One of the best of all times , impossible to hate this guy , and also don't forget HBK was the first to participate in Hell in a cell, Elimination chamber and the contemporary ladder match so we can call him a pioneer of some current things from WWE"
Rating: 10.0
Sentiment: 0.21666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Lardo Parcelwrote on 22.02.2017:[10.0] "Shawn Michaels was a phenomenal wrestler. An innovator, he was pretty much ahead of his time. His ability, his charisma, his looks, his gimmick. Everything about him was top! One of the few wrestlers out there who deserves a rating more than 10. What a Showstopper."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: thebookermickwrote on 21.02.2017:[10.0] "Hbk has revolutionized the wrestling, he was the icon, the showstopper, the main event and always put a lot of psychology in his character. He constantly reinvented himself and has a lot of classical machs. He knew how to fight the big guys as well as the little ones. He could be a brawler but also a great technician."
Rating: 10.0
Sentiment: 0.12986111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hitman84wrote on 20.02.2017:[10.0] "Wow war dieser Bursche talentiert. Hätte ihm in seinen letzten Jahren noch einen ordentlichen World title run gegönnt. Für mich der beste Wrestler der 2000er und zwar mit abstand."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Chekerwrote on 15.02.2017:[10.0] "My first all time favourite wrestler. HBK, to me, at the time, was the perfect worker - great wrestler, great high flier, great seller, pretty good promo, incredibly charismatic, and a cool look to boot! My tastes have changed a little over the years but I still consider him an all time favourite of mine, and he still gets a 10 for it."
Rating: 10.0
Sentiment: 0.5009090909090909
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Changeling45wrote on 09.02.2017:[10.0] "Shawn Michaels is the closest thing to a 'perfect' wrestler that you could come up with.  Outstanding look, radiating charisma, tremendous athlete.  Shawn can adapt to basically any style of wrestling and do it effectively.  He can perform crazy spots and gimmick matches.  He's can portray a slimey heel and scrappy underdog perfectly.   Shawn's best trait, however, is his uncanny psychology and ability to tell a story throughout the course of the match.  No one can move an audience and get them invested in a match like The Heartbreak Kid."
Rating: 10.0
Sentiment: 0.5476190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring:Im Ring einer der besten aller Zeiten mit unzähligen Klassikern. Hat sich in den 00er Jahren sogar noch gesteigert. Vielleicht der beste Wrestler, der den WWE Stil gehen konnte. 10/10 (50%)  Promos/Schauspieltalent: Auch seine Promos gehören zum besten was es in der WWE gab besonders stark als Anführer der DX 10/10 (25%)  Charisma/Statur/Gimmick:Hier seine einzigste schwäche . Fand ihn in den 90er zwar dort besser, aber auch nicht besonders. 07/10 (25%)  Sind dann insgesamt 9, 25 für HBK.  = 9 Punkte"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NastyYaffawrote on 20.01.2017:[10.0] "For every wrestling fan, I am sure that there is one moment/match/thing that they can point out to when people ask them "how did you become a fan? " - Well, for me, the one moment that solidified my fandom of the pro graps was Shawn Michaels kicking Hulk Hogan w/ that Sweet Chin Music of his, in 2005. I had watched wrestling before that for quite a while, but that was the moment when I became a full-on mark for the business. For that, Michaels has a special place, and he remained my childhood hero & favorite wrestler for a long time. I was actually quite scared to do this re-watch project of his work, because my tastes in wrestling have changed throughout the years, and I thought maybe the ol' HBShizzle isn't as great as I once thought... Well, I gotta say that after re-watching many of his matches, and watching some matches of his that I had never seen before, right now I think of him even more highly than before. Is he the G. O. A. T. ? No. He isn't THE greatest, but he is without a doubt, very close to that title. He was incredible. One of my all-time favorites, and one of the greatest professional wrestlers of all-time."
Rating: 10.0
Sentiment: 0.44392857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MarkyMark0wrote on 16.01.2017:[10.0] "Despite what you think of him outside of the ring Shawn Michaels has to be one of the greatest if not THE GREATEST in ring performer of all time. Shawn Michaels was always a guy that if I found out he was in a match I'd have to watch because the match would be very entertaining. He's had so many memorable rivalries such as his rivalry with Bret Hart in 97, rivalry with Steve Austin towards the end of his run in the 90's, his rivalry with Jericho in 08, his rivalry with Triple H in 02-03 and then there are so many more to add. He's put on many many classics as well like the first ever Hell in a Cell match with Taker in 97 and his return match with Triple H in 02. Shawn Michaels has always oozed charisma and could work the ring like no other that just kept your attention all the time. You may have people say he's "overrated" but if they'd actually watch his matches they would know just how great this man truly is."
Rating: 10.0
Sentiment: 0.45083333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JonColwellwrote on 08.01.2017:[10.0] "Mr. WrestleMania, The Poster Boy of Early 90's WWF, Major controversial character with unlimited backstage power, One of the best in-ring workers ever, played a major influence on future legend Chris Jericho and many wrestlers in the business. One of the best, 'nuff said."
Rating: 10.0
Sentiment: 0.409375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Puro Spiritwrote on 01.12.2016:[10.0] "As an in ring performer they where very few who where as good as he was ....  however his reputation as a difficult person to deal with and his reputation of burying talent back in the mid 90s has left alot to be desired .... but his work in the ring was second to none .... had many classic matches with the likes of The Undertaker , Kurt Angle , Scott Hall , HHH and many more ...."
Rating: 10.0
Sentiment: 0.14606060606060603
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Alex Maedawrote on 05.11.2016:[9.0] "Nicht mein Geschmack und meiner Meinung nach leicht überbewertet, war jedoch sicherlich ein Ausnahme-Performer (ich sage bewusst nicht Wrestler, da er aus rein sportlicher Sicht für mich " nur" solide bis gut ist) und konnte seit seinem Abgang nicht ersetzt werden. Und wird das wohl auch nie."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BankStatementwrote on 27.10.2016:[10.0] "Shawn Michaels is a superlative in-ring storyteller who never foundered to captivate the audience when he needed to the most. He's had so many classic matches that we still excessively praise today. He is also very charismatic and could cut good promos. He is easily one of the best wrestlers ever and probably the best American in-ring performer ever."
Rating: 10.0
Sentiment: 0.47000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Justtwrote on 09.10.2016:[10.0] "THE LEGEND. Michaels is one of the icons of the professional wrestling and the inspiration for many of wrestlers today."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rasslin Ruleswrote on 04.10.2016:[10.0] "Genial im Ring (10/10), in Sachen Charisma der beste aller Zeiten (10/10), am Mic grandios (9/10) und dazu ist seine Karriere voll mit prägenden Momenten (Austin's 1. Titelgewinn, Flair Retirement, 1. HiaC Match... ) und großartigen Matches."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TripleHBKwrote on 30.09.2016:[10.0] "Zusammen mit Y2J und Undertaker der wohl beste Wrestler, der jemals zwischen den Seilen bei der WWE stand, aber ich würde ihm den Vorzug geben. InRing Skills sind ne glatte 10 und Charisma auch (Who's your daddy Montreal). Er ist einfach der Hammer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheOneWhoKnockswrote on 14.09.2016:[10.0] "One of THE top 5 American wrestlers of all time, along with Flair, Funk, Angle and Styles, HBK is an icon in every sense of the word. A very long career of two halves, both containing legions of phenomenal matches, like the ladder classics with Razor Ramon at Mania X and Summerslam 95, his series of phenomenal matches in 1996 with opponents such as variable as Diesel, Mankind, Vader and even SID, Vs Bret Hart at Survivor Series 92 (not a fan of their iron man match though) and Vs Kurt Angle in 2005, Chris Jericho in 2003 and 2008, Triple H at Summerslam 02, Cena in 2007, Flair and Batista in 2008 and finally his greatest opponent, The Undertaker, in three of THE greatest matches of all time at Badd Blood 1997, Wrestlemania 25 and Wrestlemania 26. Also an absolute riot as a heel, particularly during his 2005 feud with Hulk Hogan, and yet could also play face brilliantly despite the horror stories of his toxic personality in the 90's. Truly one of the greatest of all time."
Rating: 10.0
Sentiment: 0.4385897435897436
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DevilsSkywrote on 01.09.2016:[10.0] "Like many other wrestling fans, Shawn Michaels is one of my favourite wrestlers of all time. He had it all, the talent, the charisma, the character, the selling, the psychology, it's very hard to knock anything that he really does. Sure, he had his issues in the past, but he's come back from them and still managed to maintain amazing in ring work. He's just a natural in the ring, no other way of putting it."
Rating: 10.0
Sentiment: 0.12083333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Desaster1978wrote on 24.07.2016:[10.0] "LEGENDE. Sehe mir noch heute gerne seine Matches an. Das Leitermatch bei WM 10 ist wohl das beste Match seiner Karriere aber auch die Schlachten gegen den Undertaker sind legendär."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DeMONKEYwrote on 06.07.2016:[10.0] "Was soll man zu Shawn Michaels sagen? Er ist für mich einfach das Optimalbild eines Wrestlers. Wenn man nur seine Leistungen als Worker betrachtet (seinen Charakter in den 90zigern damit ignoriert) dann gibt es vom Gesamtpaket keinen Besseren. Im Ring war er weltklasse. Sowohl was Psychologie, als auch Technik angeht war Michaels einer der besten aller Zeiten. Er war an unglaublich vielen MustSee-Matches beteiligt und hat zudem auch unglaublich sauber bzw. botchfrei geworkt. Das einzige was man evtl. bemängeln könnte ist sein Selling, auch wenn ich dieses eher legendär betrachte. Deswegen komme ich hier nicht an einer 10/10 vorbei. Am Mic. war er auch extrem gut, konnte sowohl in Comedy-Segmenten, als auch in ernsten Promos stets überzeugen. Jede Promo die ich von ihm gesehen habe war mindestens solide, dennoch würde ich ihn nicht als den besten Micworker aller Zeiten betrachten. Zudem war er im Crowdinteracting eine Wucht (siehe die RAW-Episode vom 15. 08. 2005 in Montreal). Ich tendiere hier zu einer 9/10. Außerdem war er einer der charismatischten Wrestler die ich kenne.  Dieser Mann versprüht förmlich Charisma, EGAL wo er ist. Er hat einfach immer eine Wirkung auf den Zuschauer. Selbst wenn man ihn das erste mal sieht. Auch hier komme ich nicht an einer 10/10 vorbei. Einen Extrapunkt gebe ich btw. für sein Gimmickplay. Denn egal ob Heel oder Face... Michaels hat immer abgeliefert. So komme ich insgesamt auf 10 von 10 Punkten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JordanACEwrote on 27.06.2016:[10.0] "The greatest performer of all times? Probably. Shawn's matches are some of the most epic ones ever, and the list goes on and on... From Undertaker to Stone Cold to Chris Jericho... He always puts on a great show!"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CassiusGrimaldiwrote on 26.06.2016:[10.0] "Shawn Michaels is the greatest of all-time. He was the best wrestler bell to bell, one of the greatest ever on the mic, and truly knew how to sell a match/feud as either a face or heel. He made everyone who ever faced him in the ring look better than they ever looked before."
Rating: 10.0
Sentiment: 0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: killowenskillwrote on 25.06.2016:[9.0] "Chief representative of my favorite era in WWE, New Generation Era. Charismatic, speaking, and well, just a set of techniques impressionable. He won the hearts of many, even in the 21st century, when the ring-skill looked at worse levels than other wrestlers. I would like to put Michaels 10, and he deserves it, but I can not. Since he was on a par with the Game, cleaned of unwanted wrestlers, and hands have reached even to the Rock, the good, the more he became interested in Vince McMahon, and they had not been able to " bury" . Maybe even because of this except Michaels nobody was better at the time. You must strive for glory by any means, but not so aggressive. So 9 points. I already wrote that the personal files do not need to intervene when you evaluate this or that person, but in this case it prevented the rest. Who knows, maybe there would be a better wrestler .."
Rating: 9.0
Sentiment: 0.24409090909090908
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KevinZaynwrote on 23.06.2016:[10.0] "Eine der größten Legends im Buisness! Er hat grandioses InRing work vorallem was das selling angeht 10/10 . Außerdem ist er wirklich richtig gut am Mic 9, 5/10. Charisma ist auch massig vorhanden9/10 und die Ausstrahlung ist ebenfalls Wahnsinn 9, 5/10"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rastarazor1970wrote on 13.05.2016:[9.0] "My idea & opinion of a particular wrestler. Good guy or bad guy got to have some swagger, look good body and outfit. Know how to talk smack or shut it down, and of course have some skills, moves and ability.   Outfit: 8   Body build: 8   Swagger: 10     Smack Talker: 9     Ability: 9  Moves: 9    Single: 9   Tag Team: 8     Longevity: 9 *Comment: Big smack talker.. Good wrestler Overall Rating: 9. 7"
Rating: 9.0
Sentiment: 0.1488536155202822
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KingChrizzly619wrote on 16.04.2016:[10.0] "Für mich einer der besten Wrestler schlechthin... Persönliche Ausstrahlung: er lebt die texanische Coolness (9/10 Punkte): Sein Gimmick war perfekt auf ihn zugeschnitten, egal ob als Face oder als Heel, es hat gepasst (10/10). Auch bei den Moves war er einer der besten seiner Zunft, seine Sweet Chin Music bleibt unvergessen (10/10). Selbst beim Micwork kann ich keinen Kritikpunkt finden (10/10). Gibt bei mir einen Gesamtwert von 10/10 Punkten"
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: awesomepunkwrote on 13.04.2016:[10.0] "Wenn man an einen herrausragenden Wrestler denkt, denkt man an HBK. Jedes Match von ihn war absolut ein Highlight. Am Mic war er immer gut und seine Technik im Ring kaum zu überbieten. Seine Superkicks waren immer sehr genial und auch sonst hatte er einige Moves zu bieten. Mit seinem Karriereende ging ein Stück Wrestling verloren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ma Stump Pullerwrote on 06.04.2016:[9.0] "Though infamous for his backstage politics and generally having a very spiteful attitude towards many people, Shawn Michaels has a ability to get a good match out of anyone. Michaels has given us some of the best matches ever in the WWE/WWF with people such as Bret Hart in the legendary hour long iron man match and both of his matches with the Undertaker. Shawn has earned the right to be called " Mr Wrestlemania" and one of the all time greats in the ring. While having a massive ego, Shawn has proved time and time again that he an icon of wrestling and to say he is not is simply ridiculous."
Rating: 9.0
Sentiment: 0.23769841269841271
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ApexOfEvolutionwrote on 28.03.2016:[10.0] "Es gibt tatsächlich was an Shawn Michaels auszusetzen. Seinen Hang zum Overselling und natürlich seine frühen charakterlichen Mängel, die sich im Montreal Screwjob geäußert haben und auch in der Backstage-Arbeit mit der Clique, die wohl anderen Wrestlern ihre Karriere verbaut haben um sich selbst immer wieder zu pushen. Warum ich trotzdem 10 Punkte gebe? All das macht die Legende Shawn Michaels mit all ihren Ecken und Kanten aus. Der Montral Screwjob gehört inzwischen einfach zur Wrestling-Historie, er hat Bret Hart im Nachhinein nicht geschadet und die beiden haben sich ja inzwischen auch versöhnt. Shawn schien sich nach seiner Rückkehr in Wrestlinggeschäft auch privat gewandelt zu haben, weniger Egoismus an den Tag zu legen und die Bereitschaft zu haben auch andere Wrestler over zu bringen. Und sein Overselling beim Summer Slam 2005 gegen Hulk Hogan war einfach großartig und bestens geeignet den alten Superegomanen Hogan eins auszuwischen. Dazu muss man auch einfach den Wrestler Shawn Michaels für seine In Ring-Skills, seine Promos und sein Charisma 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CrackheadMcGeewrote on 17.03.2016:[10.0] "Shawn Michaels is by far one of the best wrestlers of all time, not my favorite, but still one of the best! He's been in tons and tons of matches, including the first ladder match against razor ramon which was one of the best WWF matches of all time."
Rating: 10.0
Sentiment: 0.6416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: richeyedwardswrote on 15.03.2016:[4.0] "The most overrated wrestler ever. He was good but never great, an over the top spot monkey whose best run was as the midnight rockers in the AWA and he was not even the star of the team, somebody who bought into his own hype and became even worse after he returned in 2002, putting on bloated " epics" that are a chore to sit through. He is only thought of so highly because of the wwe marketing machine. to add to all of this he is one of the worst backstage characters ever."
Rating: 4.0
Sentiment: 0.1463636363636364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MAGICIANwrote on 15.03.2016:[10.0] "Shawn Michaels gehört zu den ersten und besten puren Wrestlern. Dazu hat Shawn Michaels alles, was man für einen Status als absoluten Superstar gebraucht hat: Micwork, Charisma, Ausstrahlung. Volle 10!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: James Dean Wrestlingwrote on 09.03.2016:[10.0] "One of my top tier greats. One of the first WWE wrestlers that hooked me in. Always have a spot for HBK. The man is a living legend and a true beast in that ring. Miss seeing him weekly but it is what is is."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mizzle Assault Antwrote on 01.03.2016:[9.0] "I don't really buy HBK as the GREATEST WRESTLER OF ALL TIME. He can be overdramatic and his bumping sometimes borders on ridiculous. His promos can be hit or miss, and his backstage politics and general attitude have been, at certain times, a candidate for the worst of all time. He never drew well as champion, he killed pushes and careers in multiple decades, and he looked kind of weird in old age. BUT, I can't deny that at the end of the day I love a lot of his matches and feuds, so I'll still give him a 9 in spite of everything. But greatest of all time, I really can't get behind it."
Rating: 9.0
Sentiment: 0.09539682539682538
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Longa-46wrote on 15.02.2016:[10.0] "HBK, einer der besten der jemals in einen WWE Ring gestiegen ist. Hatte sehr viel Charisma, lieferte fast immer gute Leistungen ab, sein Mic Work war auch meistens immer gut. Von den Anfangsjahren bis zu seinem Karriereende hat er mir stets immer gut gefallen. Vor seiner Verletzung vielleicht noch ein bisschen besser, dennoch danach immer noch spitze. Allein die 2 WM Matches gegen den Taker waren Weltklasse und ein würdiger Abschied einer wahren Legende. Völlig verdiente 10 Punkte für HBK."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Best Pro Wrestling Fan Everwrote on 08.02.2016:[10.0] "He made me cry after his last wrestlemania match against The Undertaker. Never forgetten. The greatest technical wrestler ever. He is so funny and i'm never bored watching his promos. All of these things make him a great man."
Rating: 10.0
Sentiment: 0.4714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: pingola12wrote on 28.01.2016:[7.0] "Good wrestler, but he is too much oversell, I believe his ego was so huge that he wanted the attention even when was ''receiving'' the move."
Rating: 7.0
Sentiment: 0.4333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HeinrichC75wrote on 20.01.2016:[6.0] "Möchte gerne seine gesamte Karriere beurteilen und nicht nur die Jahre, in denen er voll im Saft stand. Als junger Kerl sicherlich top, doch zum Ende seiner Inring-Karriere hat er mich nur noch genervt, auch wenn sein Abschiedsmatch gegen den Undertaker super war."
Rating: 6.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Zedwrote on 18.01.2016:[10.0] "Einer der allergrößten im Wrestling. Er hat alles im Wrestling erreicht was es zu erreichen gab und steht zurecht in den Top 5 der Meisten Wrestlingfans. Gibt wohl kaum einen der an so vielen denkwürdigen Matches beteiligt war Er hat die Leiter Matches und Ironman Matches berühmt gemacht, hat mit der DX die Attitude Ära eingeleitet und hat vielel Leuten zu Ruhm verholfen. Da ist es egal dass er in seiner ersten Zeit ein ziemliches Backstage-Ekel war.  Außerdem zeigte er dass man auch in einem Alter jeseits der 40er noch gute Matches zeigen kann."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Oddark123wrote on 06.01.2016:[9.0] "The Heart Break Kid, is another man deserving of the title legend. Even when things looked over, he managed to make a comeback and be a huge part of the WWE. It would be disingenuous to ignore all the many things HBK did in his career. But also still not a perfect wrestler in some dimensions. But the man who lost his smile can still deliver a smile to the face of the fans in his retired stance. Shawn Michaels deserves respect that he worked hard to earn."
Rating: 9.0
Sentiment: 0.1869047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GebboWWEwrote on 29.12.2015:[10.0] "Was für ein unfassbarer Wrestler. Für mich einer der größten aller Zeiten. Nach seinem Comeback 2002 geile Matches gegen Triple H, Ric Flair, John Cena, Chris Jericho und vor allen Dingen gegen den Undertaker. Sowohl als Tag Team als auch als Singles Wrestler packte er mich bis zu seinem letzten Match 2010."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DanielBryan1986wrote on 29.11.2015:[10.0] "HBK garant für gute Matches. WM 10 das Hammer Leitermatch, WM 12 das erste Iron Man Match, WM 21 gegen Angle und WM 24 gegen Flair sowie beide WM Matches gegen Taker, würdiger hätte er nicht seine Karriere beenden können. Neben WM Matches hatte er aber eine weitere Reihe guter Matches. Seine Promos waren meist gut.  Er gefiel mir klar besser als er nach 4Jahren zurück kam, aber auch seine Anfangszeit war nicht zu verachten.  HBK ein Superstar und zurecht Legende, wo ich mir nach 5 Jahren immer noch frage, ob einer in seine Fussstapfen steigen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Double Swrote on 29.10.2015:[10.0] "Shawn Michaels hat das Wrestling geliebt. Es war egal welche Rolle er verkörperte, welchen Move er zeigte, was er dem Puplikum gab war Hingabe! . Deshalb war er so glaubwürdig. Zudem vergessen viele das er auch vielen anderen Wrestlern zu großem Ruhm verhalf. Man sehe nur die vielen Niederlagen bei Wrestlemania. Er war, er ist, und wird es immer bleiben der beste Wrestler den es jemals gab. Seine Athletik , seine Moves , sein Charisma, und sein Herz für diesem Sport danke Shawn! ."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Shawn Michaels ist einer der Besten, auch wenn ich ihn wirklich mochte, hat er immer die Show gestohlen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Squared Circlewrote on 14.10.2015:[9.0] "Simply a great career.  He put everything into his character and career.  Outstanding Tag Team wrestler from his early AWA days.  He was excellent on the mic and he could carry a feud for eternity.  Overlooked as an intercontinental champ.  Innovative ring entry, which at the time was important.  He was a little over pushed for the big belt and never really quite fit that part.  All in all though, a hall of fame career."
Rating: 9.0
Sentiment: 0.34125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PWCwrote on 14.09.2015:[8.0] "A great worker that was bogged down by terrible storylines near the end of his run. Anyone remember the McMahons vs. Shawn Michaels and God feud from Backlash 2006? That match was 30 minutes long and the entrances were at least 10 minutes long. It was ridiculous. But HBK was a great entertainer and a great, great wrestler overall despite these faults."
Rating: 8.0
Sentiment: 0.09316239316239318
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mandzukic9wrote on 13.09.2015:[10.0] "Michaels ist einfach ein Musterwrestler. Die perfekte Mischung aus In-Ring-Worker und Entertainer, die mehrere Generationen unterhalten konnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jacobphillipswrote on 13.09.2015:[10.0] "one of the best, if not the best of all time. his matches were unmissable and oozing with quality. he always delievered on the biggest stage of them all and his matches against the undertaker at the grand age of 45 were exceptional. always welcome back to the and would love to see him wrestle again one day"
Rating: 10.0
Sentiment: 0.6380952380952382
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Elm0hwrote on 11.09.2015:[10.0] "Der einzige Superstar der es verdient gehabt hätte die Streak des Undertakers zu beenden.  Shawn Michaels ist eine Art Superstar die der WWE aktuell enorm fehlt, was sie für mich zunehmend langweiliger werden lässt.  Eigentlich muss man zu Shawn nicht viel sagen. Natürlich 10 von 10 Punkten. Eventuell lässt sich noch sagen, dass ich seinem Abschied immernoch hinterher weine :-("
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hokuto in Winterwrote on 04.09.2015:[7.0] "First let me say a once in a lifetime talent, maybe the best ever at getting decent to good matches out of bad performers, great charisma and a body of work to be proud of.  All that said, I believe Shawn Michaels is the most overrated wrestler of all time. He mastered a style which is probably the most simplified psychologically bankrupt overkill form of the art that has ever existed: the modern WWE style. Yes he was the best as what he did, but what he did was not the best. So many, in fact the overwhelming majority of hardcore fans will cite him as the best wrestler of all time, how can he be anything but massively overrated?  Shawn Michaels was a fantastic worker here are a few men and one woman who were better in the ring than him: Jumbo Tsuruta, Toshiaki Kawada, Eddy Guerrero, Akira Hokuto, Negro Casas, El Hijo Del Santo, Terry Funk, Chris Benoit, Randy Savage & Mitsuharu Misawa. That's just ten, I could probably name more. He's one of the all time greats, in the pantheon of artists of wrestling but as long as everyone is saying he's the undisputed greatest who ever lived he's the most overrated."
Rating: 7.0
Sentiment: 0.4346666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: sleviinwrote on 22.07.2015:[10.0] "Einer der besten die es je gab!  Absoluter WWE Superstar.  Hoffe das er irgendwann nochmal ein Comeback gibt, und er hätte es definitiv verdient gehabt undertakers streak zu brechen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DaNiwrote on 06.07.2015:[10.0] "Einer der besten Entertainer aller Zeiten. Sein Leben, seine Karriere und Passion für das Wrestlinggeschäft sind atemberaubend."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ezewrote on 02.06.2015:[10.0] "Shawn Michaels - Mr. Wrestlemania.  Dass dieser Mann die 10 Punkte-Wertung bekommt dürfte niemanden verwundern.  Während seiner aktiven Zeit war er ein grandioser Worker der jedes Match bereichert und das Mainstream Wrestling der 90er revolutioniert hat.  Kleine Eigenheiten wie sein Overselling gehörten in der immerhin 25 Jahre langen Karriere zu den Markenzeichen und sind deshalb völlig in Ordnung.  Ich bin froh, dass seine schwere Rückenverletzung nicht das Ende war und wir ihn noch einige Jahre sehen konnten. Er wird mir immer sympatisch in Erinnerung bleiben, insbesondere weil er wusste wann es Zeit war zu gehen.  Er hat dem Business viel gegeben und das wissen wir Fans zu schätzen.  Danke dafür"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GlitterPrincesswrote on 31.05.2015:[10.0] "Er ist für mich der größte Wrestler aller Zeiten. The Icon ist ein würdiger Spitzname für ihn und ich denke kaum einer könnte diesen Namen tragen. Charisma, In-ring Skills, Mic Skills, alles was ein großartiger Wrestler braucht hatte er und ich freue mich immer, ihn in der WWE als Gast zu sehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: WrestleArtswrote on 14.05.2015:[8.0] "Sehr guter, kompletter Worker (mal vom nervigem Overselling abgesehen) mit gutem Micwork. Aber so gern die WWE ihn auch als einen der Größten bezeichnet (man biegt sich die Geschichte ja gerne mal etwas zu recht, gerade mit Leuten die die WWE nie in Richtung WCW verlassen haben), fehlte HBK immer die Drawing-Power, er war nur in WWE's dunkelsten Stunden on top und seit seinem Comeback 2002 eh nie mehr als eine Special Attraction. Für sämtliche Kayfabe-Brüche im Ring und andere Bitchmoves kann man dann auch noch einen Punkt abziehen."
Rating: 8.0
Sentiment: 0.4285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: spongesam27wrote on 12.05.2015:[10.0] "My FAVVVVORRITTTE wrestlers of alllll timme! He went from the Rockers to DX to Showstopper to Mr. Wrestlemania! He always put on a great match on any type of show! He is one of those worker that nobody else can top. My favorite match of all time that includes him is Shawn Michaels vs Undertaker at Wrestlemania 25. Honorable mentions: vs John Cena at RAW 60 Minutes Iron Man, vs Bret Hart at Wrestlemania also 60 Man Iron Man, vs Chris Jericho Ladder Match at No Mercy, and so on."
Rating: 10.0
Sentiment: 0.4423076923076923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: kaysguywrote on 11.05.2015:[6.0] "A mid-card wrestler with good mike skills, given a series of undeserved pushes, resulting in his holding the WWE belt during the organization's darkest period, while losing the Monday Night wars to WCW."
Rating: 6.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MusSanwrote on 27.04.2015:[10.0] "Einer der besten die , die WWe je hatte. Am geilsten fand ich seinen Finisher den Sweet Ching Music."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Viper99wrote on 21.04.2015:[10.0] "Der Showstopper, der Headliner, the Icon er ist für mich einfach DER beste ALLER ZEITEN! Ich liebe diesen Kerl einfach. Er war selbst als junger bursche im Team mit Jannetty sehr unterhaltsam und hat starke Leistungen gebracht. Über seine Singles Karriere braucht man garnicht zu reden. Einfach einer der besten In-Ring Worker aller zeiten. Er könnte aus einem Sack Reis ein starkes Match rausholen. Zu seinen unglaublichen In Ring Leistungen kommt auch noch das In Unmengen vorhandene Charisma welches er in jedem " Shawn Michaels Charakter" abrufen konnte. Sein Mic Work war auch einfach atemberuabend. Egal ob in ernsten Promos wie zb. Seine Retirement Promo, als Gehasster Heel in der Montreal Promo oder als absoluter Comey Guy in der DX Zeit. Shawn Michaels ist nicht nur Mr. Wrestlemania, er ist Mr. WRESTLING."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RooneyDXwrote on 12.04.2015:[10.0] "Shawn Michaels ist der Beweis dass man selbst wenn man verliert dennoch als Sieger hervorgeht. Mehr habe ich über diese Legende nicht zu sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: delvec19wrote on 03.04.2015:[10.0] "I knew it before he retired.  I knew it after his last match with The Undertaker.  I can safely say that Shawn Michaels is the greatest professional wrestler of all time.  How did I come to this conclusion you ask?  There is a criteria involved.  How good was he on the mic?  How good was he in the ring?  What were his accolades?  How did fans react?  There are probably tons of things to look at, but for the sake of argument, let's look at the meat of the issue.  Mic/Promo Skills Was HBK the greatest ever on the mic?  Nope.  I'd put Ric Flair and The Rock over him any day of the week.  But, Michaels was no slouch.  Watch his work as a cocky, arrogant " boy toy" when he broke free from The Rockers.  It evolved into a confident, underdog babyface when he won his first WWE World Title.  From there, he went back to the arrogant heel, only this time everyone knew when he said something, he would back it up.  Michaels followed that up by turning the WWE around with DX.  Say what you will about Steve Austin starting the " Attitude Era, " but HBK really exemplifies what that era was all about.  After his injury, he came back with a new outlook on life.  He veered away from the vulgarities and double-entendres, but his emotion was always felt.  When you watched a Shawn Michaels' promo, you believed in what he was saying.  Whether you liked it or not, he got you to feel some type of emotion towards him.  In-Ring Skills This one just isn't debatable.  Sorry.  Flair was great, but let's be honest.  He maybe had five or six moves in his repertoire.  Bret Hart?  Excellent.  Not better than Michaels.  Kurt Angle is unbelievable, too.  But Angle's best was when HBK was in the ring across from him.  Chris Benoit may have been the most intense performer in the ring I've ever seen, but even he couldn't tell a story like HBK could.  Take the best attributes of the guys I just mentioned, and you have Shawn Michaels.  HBK had dozens of moves"
Rating: 10.0
Sentiment: 0.3443573667711598
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: eldenaaaaawrote on 19.03.2015:[10.0] "There are not enough superlatives to describe Shawn Michaels. Though a lot of great work happened before 2000, even more great work came out of his last 10 years with the WWE. 1X World Heavyweight Champion, 4X World Tag Team Champion."
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Uap09wrote on 10.03.2015:[10.0] "Für mich persönlich das Maß aller Dinge im Wrestling. Alles andere als die Bestnote wäre zu wenig. Sowohl im Ring, als auch am Mic hervorragend. Dazu noch in der Lage wirklich jeden Gegner zu einem Top Match zu ziehen. Grandios."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: pfuschiwrote on 07.03.2015:[10.0] "Shawn will always be my No. 1, his career was so well done, simply perfect.  He really was the total package to me. Great in the ring, great on the mic, great voice, big charisma, good looks in the 90s, great body. What makes him really special to me are the little things he did like the " IŽm sorry, I love you" against Flair. Many wrestlers could have a good match with Flair but that one scene made it legendary and it was all because of Shawn.  From the start as a Rocker to his first heel run to his superbabyface run to DX to his long break to his return.  He always stood out to me as a very special guy. Every block of his career was special, ment something and was never boring.  It was a great feeling to be live at the Hall of Fame when Shawn went in. As a fan since 89 it ment a lot and for sure was the highlight of the weekend."
Rating: 10.0
Sentiment: 0.4344764610389611
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DNPwrote on 26.02.2015:[10.0] "Wahrscheinlich der beste Wrestler, den es je gab. Im Ring unübertroffen, unglaubliches Charisma und Promos, die einen immer in den Bann zogen. Die Legende schlechthin, für Shawn Michaels kann es nicht weniger als 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: austin1987wrote on 03.02.2015:[10.0] "Ein herausragender Wreslter, war ein sehr guter Techniker. Hatte ein spitzen selling und sein Micwork war Fantastisch.  Am liebsten mochte ich ihn in den 90ern, vor allem als Heel mit der DX er konnte das Puplikum wirklich gegen sich aufbringen, sodass man ihn wirklich nur hassen konnte aber ihn irgendwie auch cool fand. Ich weiß nicht wie ich es beschreiben soll denn auch zur damaligen Heelzeit musste ich ihm irgendwie immer zujubeln ; ).  10 Punkte Top."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kick-Out-At-Twowrote on 10.01.2015:[10.0] "Mhh..  Ich war nie der große Fan von ihm (Vorallem in den 90ern fande ich ihn extrem schmierig und unausstehlich ),  allerdings hat er sich , vorallem in seiner Rolle gegen Ende seine Karriere , nochmal für mich absolut gigantisch Entwickelt. (vorallem der Bart tut ihm gut :D ) Obwohl nicht zur absoluten Technick-spitze gehörend , großartiges Arsenal im Ring und krasse Aktionen , dazu wirklich einen Haufen legendärer Kämpfe. Mit den dazu wirklich guten Mikro-eigenschaften schafft er es bei mir in die 10 Punkte."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TRMBwrote on 26.12.2014:[10.0] "Der beste Wrestler seiner Generation! Er hat genau wie Kurt Angle verstanden jeden Gegner gut aussehen zu lassen. Hatte selbst unglaubliche Austrahlung im Ring und am Mic. Dazu ein technisch perfekter Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sokar Drenwrote on 17.11.2014:[7.0] "Shawn Michaels ist unumstritten eine Legende. Jedoch finde ich, dass seine Fähigkeiten im Ring viel zu überbewertet werden, da ich ihn irgendwie nicht so gut finde. Die DX Zeiten waren aber sowieso der hammer also 7 Punkte!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Saphirwrote on 02.11.2014:[9.0] "Shawn ist gut, aber Marty fand ich besser im Ring zur Tagteam-Zeiten. Bret Hart war ebenfalls der bessere der beiden. Er hat beide ausgespielt und das weiß er auch. Ohne Janetty und Hart wäre es schwierig ein so endlos gutes Match auf die Beine zu stellen. Die zwei Rivalen hat er vergesen gehabt. Sicher hat er gute Match gegen Razor und Kurt Angle gehabt, aber es reicht nicht. Michaels vs Janetty 1993 - Bret vs Michels 1996! Ein guter Worker, den ich seit 1990 verfolgte. Er hat sich einige male Neuerfunden und auch zur Austin Zeit geglänzt.  Das Blöde war das Overacting in den 90ern, aber bei ihm schaut alles gut aus!  9 Punkte"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KASHwrote on 16.10.2014:[10.0] "Shawn Michaels' Karierre ist eine echte 10. Bilderbuchkarierre mit Fahrt von ganz unten bis an die Spitze. Dann der Fall, sprich Wegruf und Rückkehr als Uppercarder/Main Event Legende, der wrestlerisch nochmals eine Schippe rauflegen konnte. Es gibt unzählige Matches von ihm, die ich als Klassiker titulieren würde..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Y2J316wrote on 28.09.2014:[8.0] "Shawn ist ein super Wrestler. Mic-Skills und In-Ring Skills, alles vorhanden. Mit der D-X zur Attitude zeit zwar ein bisschen über dem Limit aber egal. Mag ihn eigentlich sehr und Matches mit Kurt und Taker und vielen anderen waren Super."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Edge and Christianwrote on 27.09.2014:[10.0] "Shawn ist eine absolute Legende!  Gegen Bret Hart eine der besten Fehden aller Zeiten geführt und mit der DX in einem der besten Teams aller Zeiten gestanden! :) Zu ihm muss man nicht viel sagen es reicht sich ein zwei Videos anzugucken und man merkt wie gut er war"
Rating: 10.0
Sentiment: 0.40625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Matzinhowrote on 06.09.2014:[8.0] "Michaels ist durch viel Vitamin B bedingt zum Main Eventer und zur Legende der WWE geworden. Ich fand ihn allerdings nie so stark, wie er dargestellt wurde. Seine Selbstdarstellung hat mir immer gut gefallen, allerdings halte ich ihn für einen durchschnittlichen Promo-Sprecher und im Ring finde ich ihn auch " nur" gut. Alles in allem ein unterhaltsamer Typ, aber für mich keine Legende und auch kein Genie im Ring. Vor allem bis Mitte der 90er Jahre fand ich ihn als reinen Wrestler schwach und enttäuschend. Die vielen hohen Bewertungen seiner Matches kann ich auch nicht nachvollziehen, aber das ist halt so ein Meltzer-Ding."
Rating: 8.0
Sentiment: -0.016666666666666677
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CmNag66wrote on 23.07.2014:[10.0] "HBK ist für mich der Beste Wrestler allerzeiten. Er hat in seiner Karriere alles erreicht und stand immer für starke Matches und gutes Entertainment. Er hat jede Menge großartige Erinnerungswürdige Matches abegeliefert z. b. gegen den Undertaker, Chris Jericho oder Bret Hart. Er stand in 5 Wrestlemania Main Events war 4x WWE Champ und hat regelmäßig die Show gestohlen was will man mehr, klare 10 Punkte."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Whitebear710wrote on 03.04.2014:[10.0] "Man mag von Shawn Michaels als Person halten was man will: Er ist einer der besten Wrestler aller Zeiten. Exzellente Technik, gutes Selling, Miterfinder des modernen Ladder-Matches, tolle Comedy-Segmente als Teil von DX. Ich habe ihn immer sehr gerne gesehen. Leider hat er nicht öfter einen großen Titel halten dürfen. Trotzdem: Verdiente 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: edge4everwrote on 31.03.2014:[10.0] "Einer der besten Wrestler den es gibt und verdient Hall of Famer. Shawn Michaels hat von den Rockers bis hin zu seinem letzten Match gegen den Undertaker eine super entwicklung gemacht."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TakerFanwrote on 01.03.2014:[10.0] "Auf einer Stufe mit dem Undertaker oder sogar noch darüber. Einer der größten Performer in der Geschichte des Wrestlings, der rechtzeitig aufgehört hat und sich schon lange unsterblich ist. Großartig um Ring und am Microfron, in der Lage jeden gut aussehen zu lassen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HongKongPhooeywrote on 22.02.2014:[10.0] "Just another 10 for ole HBK. Pretty much everything you could want in a wrestler. Has put on some of the greatest matches of all time and somehow decided to just keep getting better as he was getting older. Truly in rare air in the wrestling world."
Rating: 10.0
Sentiment: 0.40277777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Andr3wwrote on 07.02.2014:[10.0] "Einer, wenn nicht sogar der Beste Worker in seinem Gebiet. Egal ob Face oder Heel er unterhält mich immer noch"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Lord Regalwrote on 03.02.2014:[8.0] "Eigentlich 10 Punkte, weil alles stimmte aber sein Ego sagt mir Nein! Dazu ^^!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SweetMetalMusicwrote on 01.02.2014:[10.0] "Auch wenn eigentlich Bret Hart mein All Time Favourit ist und ich das widerwärtige Backstage Divagetue aus den 90'er von HBK verabscheue, muss ich diesen Mann als besten Wrestler aller Zeiten anerkennen. Ihn kann man wirklich als " komplett" beszeichnen. Wrestlingskills, Micwork, Charisma, ist bei ihm alles vorhanden bzw. beherrscht er so gut wie kein anderer. Selbst wenn es nie zu seinem Comback 2002 gekommen wäre, hätte er diesen Status auch schon inne gehabt, da er mit den damaligen Wrestlern aus der Zeit, wie z. B. Bret Hart, British Bulldog, Razor Ramon und dem Undertaker, unglaubliches geleistet hat und in die Geschichtbücher einging. Dass er bei seinem Comback mit den Wrestlern aus dieser Zeit, Y2J, Kurt Angle, Triple H, John Cena usw. ebenso grandiose Dinge hervorbrachte, ist natürlich mehr als phänomenal. Wer ihm keine zehn Punkte gibt, hat von Wrestling keine Ahnung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Deception946wrote on 01.02.2014:[10.0] "My Favorite Wrestler of all time, great mic skills, perfect ring skills and perfect looking"
Rating: 10.0
Sentiment: 0.825
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JourneybyTrainwrote on 21.12.2013:[5.0] "Shawn Michaels was pretty charismatic as the cocky 90s heel but his post-retirement babyface run leaves a lot to be desired as a character and I find his offense and facials to be a bit to poor to pull me through most of his epic matches. Still he's produced some good stuff in his career."
Rating: 5.0
Sentiment: 0.20714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LordOfLimitwrote on 11.12.2013:[10.0] "HBK ist für mich einer der wohl beste Wrestler aller Zeiten. Er ist am Mic einfach unschlagbar und im Ring kann er immer gute bis sehr Gute Leistungen vollbringen. Guter Face und noch besserer Heel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kid Rockwrote on 01.12.2013:[10.0] "Shawn Michaels ist und bleibt eine der kontroversesten Figuren im Sport... ebenso wie er zurecht als schlicht einer der besten aller Zeiten in Erinnerung bleiben wird. Menschlich gesehen kann man über seine ausreichend dokumentierten Missetaten als Backstage-Person in den 90ern natürlich kaum hinwegsehen, rein auf seine Fähigkeiten als Performer beschränkt bleibt HBK auch fast 4 Jahre nach seinem Rücktritt immer noch nahezu unerreicht, auch wenn sich Leute wie CM Punk oder Daniel Bryan im aktuellen WWE-Produkt erfolgreich Mühe geben die große Lücke, die Shawn hinterlassen hat zu füllen. In den 90ern, zu seiner Prime, glänzte Michaels durch fantastische Ringleistungen und funktionierte gerade in der New-Generation-Ära als Konterpart zum Saubermann Bret Hart perfekt, ehe er als Heel mit der Gründung von DX das Geschäft nachhaltig prägte. Ich persönlich fand jedoch die Jahre 2002-2010, also nach der sensationellen Rückkehr von der eigentlich karrierebeendenden Verletzung am stärksten, da Shawn gerade dank dem sichtlichen Reifegewinn als " Total Package" einen noch stärkeren Charakter als früher zeigen und auch ohne der akrobatischen Finesse aus seinen jungen Jahren, sowohl am Mic wie auch im Ring dank der Fehden gegen HHH, dem Undertaker, Chris Jericho und John Cena sich ein umfassendes Alterswerk aufbauen konnte. Für dessen Leidenschaft, Hingabe und Einsatz kann man dem Showstopper nur danken."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Giftzwergwrote on 01.12.2013:[10.0] "Alles andere als eine 10 wäre eine Beleidigung für diesen Ausnahmekönner. Ganz starker Techniker. Ganz starker Schauspieler. Hat im Gegensatz zu anderen Wrestlern seine Karriere zum richtigen Zeitpunkt (mit 45) beendet. War über 15 Jahre das Zugpferd der WWF, und konnte dies auch immer glaubhaft rüberbringen. Schade nur, daß ein Wrestler mit ähnlichem Charisma nicht in Sicht ist. Man hat ihn geliebt oder gehasst. Dazwischen gab es nichts, und das war das Faszinierende an diesem Mann. War ein Revolutionär, da er viele Dinge (Leitermatch, Screwjob, Royal Rumble als Startnummer Eins gewinnen, Titelverteidigung Royal Rumble) als Erster und teilweise auch Einziger geschafft hat, gemacht hat oder hat machen müssen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: donkitrk99wrote on 27.11.2013:[10.0] "The very best, in my opinion. I don't know enough about Japan to say so definitively, but I am getting to know enough that I am gaining confidence. His second run is the best prolonged run of Work Rate in major North American history, if not second best to Flair in NWA. Incredible matches with HHH, HHH & Benoit, Flair, Cena (best matches of his career), Angle, Jericho... and his first WM match with Undertaker ranks as my all time greatest match. Kobashi's GHC HW title run is highly regarded as the best - given Michaels' prolonged breaks and lack of championship run comparing the two is a bit like apples and oranges but they both deserve mention in this conversation. And this goes without mentioning earlier career classics against the likes of Razor Ramon and Bret Hart and Mankind."
Rating: 10.0
Sentiment: 0.46078125000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: yanuswrote on 27.11.2013:[9.0] "A little bit overrated by the casual fan. Great, maybe even the best sports entertainer in the history of this business, but not a brilliant wrestler. He always had certain weaknesses - mainly his horrible offense, which looked, like it couldn't hurt anyone and his weird facial expressions. Was much better in the 90's, but event then did some things, that pissed me off, like throwing referees out of the ring or cussing at the cameramen (as a babyface). With that being said I can't ignore the fact, that he always entertained the viewers and at the end this is what wrestling is all about."
Rating: 9.0
Sentiment: 0.0039502164502164564
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: tgwrote on 26.11.2013:[10.0] "Einer der besten Worker, die das US-amerikanische Wrestling jemals gesehen hat. Charismatisch, talentiert im Ring und am Mikrofon."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Silaswrote on 13.11.2013:[8.0] "" Heartbreak Kid" , " Showstopper" , " Mr. WrestleMania" , " The Icon" und mehr brauch man nicht über ihn sagen. Der Typ ist eine Legende. Bekommt von mir aber nur 8 Punkte weil er mich nie so richtig gepackt hat, mit dem was er tat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BestInTheWorld96wrote on 12.11.2013:[10.0] "Einfach nur der beste aller Zeiten. Dem ist nichts hinzuzufügen: 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SoRoNwrote on 11.11.2013:[10.0] "ein unglaublicher performer/entertainer/wrestler! ich vergesse nie seine worte: i will give a show you will never forget - why? because i can! und damit trifft er ins schwarze! er konnte abliefern wie kein zweiter - hatte mit fast jedem gegner ein gutes match! und alleine für die WM25 & WM26 Matches gegen den taker hätte er sich 10 punkte verdient! aber da 10 das maximum sind kann ich " nur" 10 geben!"
Rating: 10.0
Sentiment: 0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Allu kripen wahwrote on 03.11.2013:[10.0] "Very good moveset. Awesome as heel or face. As heel he is very cocky. Great wrestler who had great ending for his career at wrestlemania 26. Very good promos."
Rating: 10.0
Sentiment: 0.6933333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Daneraswrote on 03.11.2013:[10.0] "Wenn ich an seiner Zeit als Heartbreak Kid denke, dann muss ich immer schmunzeln. Er hat soviel Unterhaltungen gegeben, und seine typische Haltungen. Zum Beispiel an der Ecke vom Ring prellen und so akrobatisch aus dem Ring zu fliegen. Die fand ich immer genial!  Die Fehde zwischen Michael und Diesel fand ich super spannend.  Er hat viel darauf, ein richtiger Wrestler!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ProRedstonewrote on 02.11.2013:[10.0] "Für mich die größte Legende des Wrestling ! Er hat mich schon immer überzeugt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PGsuckswrote on 28.10.2013:[10.0] "Er ist einfach der Beste und wird es immer bleiben. Ob als Single-Wrestler oder als Part der D-Generation X. Einfach nur Klasse. Sehr gut am Mic und technisch einer der Besten. Es ist so schade, dass er nicht mehr wrestlet. Ich finde es gut, dass er sich hin und wieder trotzdem in der WWE blicken lässt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hells Guardianwrote on 25.10.2013:[10.0] "Ich bin wirklich froh, dass ich kein Wrestler der WWE war, sondenr immer nur fan und somit HBK niemal backstage getroffen habe. Spätestens seit dem gewissen Screwjob kann man sich denken, dass der gute privat ziemlich hinterrücks sein kann. Bewerten kann und will ich jedoch nur seine on Stage Karriere und die ist ohne jeden Zweifel ihre 10 Punkte Wert. Aber als kleinen Einwand: Ich vergebe die 10 Punkte voraussichtlich nur an 4 Wrestler überhaupt, die mit ihren stärken und schwächen zusammen den perfekten Wrestler ergeben würden, denn DEN ultimativen Wrestler, gibt es für mich nicht. Auch HBK hatte seine tiefen. Meiner Ansicht nach hatte er das einzigartige Talent, jede Flasche von Gegner wie einen Meister aussehen zu lassen (also die matches unglaublich überzeugend zu verkaufen), aber sein Overacting als Heel hat für mich nicht immer das bewirkt was es sollte (also den Hass des Publikums gegen sich gezogen), sondern war zeitwillig vorhersehbar und damit langweillig auf längere Zeit. Aber wie gesagt: Den perfekten Wrestler gibt es nicht und die angesprochene Schwachstelle war kaum wahrnehmbar und eher vor seiner Nackenverletzung, als dannach."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: koeddylaemmlewrote on 18.09.2013:[10.0] "Shawn Michaels is unarguably one of the greatest performers of all time. Due to attitude issues Michaels would not be remembered as fondly had he not returned to the ring in 2002, and became the WWE's most dependable performer through out that decade. This packed on with the rest of his story book career makes it nearly impossible to argue against Shawn Michaels being included in WWE's Top 5 pound-for-pound wrestlers ever."
Rating: 10.0
Sentiment: 0.2416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "Bester Wrestler den es jemals gab, legendäre Matches hat er abgeliefert allein schon das Ladder Match gegen Razor Ramon ist klasse. Dieser Mann ist eine warhaftige 10 wert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[7.0] "Kann nur kritisieren, dass er bis in ein hohes Alter aktiv war, was mir gar nicht zusagt. Mr. WrestleMania konnte mich gegen Benoit & HHH sowie gegen Angle in den Jahren 2004 und 2005 begeistern, hätte dann bloß lieber aufhören sollen. Ab einem gewissen Alter sollte man es einfach lassen, vor allem wenn man sich im Ring dann so komisch bewegt wie er oder ein Ric Flair. Die Jahre gehen halt nicht spurlos an einem vorbei."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: voicelesswrote on 24.08.2013:[10.0] "Ich wünschte man könnte 100 Punkte geben. Im Ring der beste + Am Mic sehr gut = der beste aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: UnforgivenSicknesswrote on 23.08.2013:[10.0] "Der gute, alte Shawn Michaels.... Er hat es einfach nur drauf und kommt beim Publikum gut an. Dann kam noch DX mit Triple H. Als ob die WWF gewusst hätte dass, das Tag Team so großartig rüberkommt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HighlightHEELwrote on 20.08.2013:[10.0] "Einer der absolut besten Wrestler aller Zeiten. Man braucht diverse Hände, um alle seine hervorragenden Matches aufzuzählen, für alle guten fehlt definitiv die Zeit. Über viele Jahre der beste In-Ring-Worker, den die WWE hatte, noch dazu hervorragend am Mic, sowohl als Face als auch als Heel einer der besten (letzteres hat man gegen Ende leider viel zu wenig gesehen, ich liebe seine Montreal-Promo). Er hatte auf jeden Fall auch einen der würdigsten Abgänge, die sich ein Wrestler nur wünschen kann, mit einem Instant Classic und zwei weiteren starken Matches mit emotionalen Momenten bei den letzten drei Wrestlemanias. Zu schade, dass er seinen Rücktritt so ernst nimmt, ich wüsste einige interessante Match-Ups im aktuellen Roster..."
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: That 70s Blokewrote on 16.08.2013:[10.0] "Probably (one of) the best wrestlers that ever lived. People often think about Hulk Hogan when they think about wrestling, but nobody comes close to HBK when it comes to in-ring performing!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Chickenwingfanwrote on 14.08.2013:[10.0] "Wenn er die 10 nicht verdient hat wer dann? Ich könnte eventuell jetzt kleinlich werden und über Screwjobs oder schlechtes Backstageverhalten schreiben und Punkte abzeihen, aber nein! Shawn war einfach über einem langem Zeitraum hinweg der Beste , , Wrestler'' im ganzem WWE Roster, es hatte schon seinen Grund warum Flair sein WWE Abschiedsmatch gegen Michaels hatte. Die WWE wusste ganz genau das Shawn Michaels mit jedem ein gutes Match zaubern kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Palace of Wisdomwrote on 14.08.2013:[9.0] "Eine Legende. Wahnsinns Techniker, toller Micworker und Puplikumsliebling. HBK gehört zu den größten überhaupt und das zu Recht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: test85wrote on 02.08.2013:[10.0] "Einer der größten aller Zeiten. Er braucht dazu keine 16 oder World Titel Runs. Unvergessen seine Fehden und Matches gegen Jericho, Bret Hart, Kurt Angle, Taker usw. . Sogar als großer Bret Hart Fan habe ich ihn den Screwjob allein durch seine Leistung nach seiner Rückkehr vergeben. Mit anfang-mitte 40 noch so agil gewesen. Zwei Dinge finde ich aber schade:1. Ein letzter Titel Run um 09-10 wäre toll gewesen. 2. Drei Matches hätte ich noch gern gesehen. Und zwar gegen Eddie Guerrero, CM Punk und eines der Money Matches und zwar gegen THE ROCK."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: fcwieslawrote on 13.07.2013:[10.0] "Nicht ohne Grund mein absoluter Favorit seit knapp 17 Jahren. Man kann über ihn sagen was man möchte, aber Fakt ist dass er sich ab 2000 von seiner Persönlichkeit her geändert hat und seitdem wahrscheinlich einer der sympatischsten Wrestler in dieser Zeit ist aber das tut eh nichts zur Sache das Private. Von der In-Ring Physiologie und denen Geschichten die er im Ring erzählt gibt es keinen besseren. Am Mikrofon ist er fast perfekt und meiner Meinung nach der beste neben The Rock. Es gab mit ihm unzählige Klassiker die meistens nur durch ihn zu solchen wurden und allgemein brachte er viele heutigen Wrestlern vieles bei. Man siehe Daniel Bryan, und wo steht er nun? Tja. Jedenfalls ist er jetzt bereits eine lebende Legende und der kompletteste Superstar den es gibt, gab und geben wird. Leider gibt es halt noch zu viele Kritiker und einer davon ist die Wwe selbst indem sie HBK bisher seine Leistungen zu wenig honorierten mit z. B. dem Wwe-Titel. Darum ist er von manchen anscheinend ein bisschen unterbewertet. Nichtsdestotrotz - Keiner hat es mehr verdient den Wwe-Titel zu erringen und vorallem keiner hat es mehr verdientin der Hall of Fame zu sein. PS:Wer hier bewertet sollte sich klarmachen: Es geht bei Cagematch darum den Wrestler zu bewerten und wie gut er seinen Job macht und nicht um die private Person! Also nur die Rolle bitte bewerten, denn darum gehts schließlich."
Rating: 10.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sir Vida Loca IIIwrote on 07.07.2013:[10.0] "Seine ganzen Spitznamen hat er sicher nicht umsonst. Shawn Michaels ist gehört zu den besten Wrestlern die jemals einen WWE Ring betreten haben. Natürlich erbrachte er am ende seiner Karriere nicht mehr die selbe Leistung wie in seiner besten Zeit mitte der 90Žer. Trotzdem war er immer noch besser als gefühlt 95% der Rosters."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fastlane86wrote on 02.07.2013:[10.0] "Alles in allem überragend. Ich habe seine arrogante Art geliebt, dass er der ultimative Showman war. Sein Match gegen Kurt Angle bei WM 21 hat mich mit dem Wrestling wieder versöhnt.  Ich bin ja Fan von Powerhouse-Wrestlern, aber mit HBK konnte eben doch kaum jemand mithalten.  Und sein Match gegen Hogan war einfach nur witzig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: joshimaniawrote on 23.06.2013:[6.0] "Michaels was a great tag team wrestler and a very charismatic wrestler in the 80s/90s that unfortunately fell off a cliff during his post-retirement run."
Rating: 6.0
Sentiment: 0.3166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Leonewrote on 25.04.2013:[10.0] "If he isn't the best wrestler in the history of pro wrestling and sports entertainment, then without a shadow of a doubt, he is in the top 10, maybe even the top 5.  Shawn Michaels is the true total package of pro wrestling.  He possesses an undeniable charisma.  He is 1 of the best sellers wrestling has ever had.  He was not only incredibly entertaining, but he could wrestle.  Boy, could he wrestle!  As a normal size man in the Big Man era, he overcame the size disadvantage.  Making even the biggest and slowest of the big men have a great match.  Against wrestlers the same size as him, he put on technical masterpieces of storytelling.  But on top of all of this - Shawn Michaels returned to the ring in 2002 after a career ending back injury, and continued to work like the casket match with the Undertaker didn't exist.  During the second half of his career, Shawn's approach to the business had evidently changed.  Before, he was more interested in holding championships.  But later, he was building up new stars by putting on great matches with them, and then jobbing to them when the time was right.  His return also created numerous dream matches, from Rob Van Dam to Chris Benoit to Chris Jericho to Ric Flair to Rey Mysterio.  He was incredibly reliable, and there was a reason why they called him the Showstopper and Mr Wrestlemania.  Because win or loss, he often stole the show.  He deserves no less than 10 from me."
Rating: 10.0
Sentiment: 0.31943946857739963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Louie Canderelliwrote on 20.04.2013:[10.0] "Dieser Heartbreak Kid! Mittlerweile eine Legende im Geschäft.... trotz seines Mangel an Körpermasse ein fast unbezwingbarer Athlet! Was der Mann einstecken könnte Unfassbar! Keiner konnte so schön durch den Ring fliegen wie Shawn Michaels! Ein grossartiger Techniker und ein Kämpfer ohne Grenzen... selbst als Heel mochten Ihn die Fans weil er einfach alles beherschte was Kampftechniken angeht! Zusammen mit Bret Hart und Curt Henning der Beste Athlet in der WWF.... Als Heel gefiel er mir noch besser da dieses Aufreisser Gimmick gut zu Ihn passte. Egal wie gross und stark sein Gegner war! Er konnte Ihn in die Knie zwingen... Er hatte soviele Fehden das ich gar nicht alle aufzählen kann... am meisten sticht natürlich die Skandal Fehde gegen Hart raus.... aber obwohl das charakterlich von Ihn nicht ok war, passte es doch zu Michaels wie die Faust aufs Auge... Ich war nie Fan von dieser bunten Wrestler Mode aber seine Kleidung hatte immer Stil vor allem seine Hosen mit den gebrochenen Herzen drauf.. einfach klasse :D Hat sich vom kleinen arroganten Mann zum grössten Champ entwickelt.... wenn man seine Karriere mal genau betrachtet dann hat er alles richtig gemacht (bis auf diesen Montreal Screwjob natürlich) ein grossartiger Wrestler den man immer als Main Fighter begrüsst hat!   Fazit: Der beste Wrestler der Neuzeit mit perfektem Auftreten ;)"
Rating: 10.0
Sentiment: 0.3138020833333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: bigbossman288288wrote on 13.04.2013:[10.0] "Einer der Wrestler, der die gesamte WWE geprägt hat!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: the headlinerwrote on 11.04.2013:[10.0] "einfach der beste ! niemand war so beliebt als face und so verhasst (positiv) als heel wie er ! Shawn konnte jeden Gegner mit seiner Technik gut aussehen lassen und hatte unglaubliches Charisma und erzeugte so viele Showstealer !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "What an amazing career this man had. He accomplished so much, and always stole the show, whether on the mic or in the ring. One of the greatest of all time."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Eagle Whiskeywrote on 06.03.2013:[10.0] "Einfach einer der größten in dem Business. Grandios außerhalb sowie innerhalb des Rings. Für mich nach dem Taker und Triple H der beste aller Zeiten. In den letzten 15 Jahren habe ich im TV nie weggeschaltet wenn Michaels einen Auftritt hatte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Titansrevengerwrote on 06.03.2013:[8.0] "There was a time when I hated the word HBK, but that time is gone. Shawn Michaels may have been really insecure about his spot, and he may have been the biggest jerk in wrestling attitude wise. I never found his antics with D-X entirely amusing. The guy is and was the goods in the ring, and was a tremendous talent. I do think that he is overated in alot of ways, because his bumping was a double edged sword. It made others look good, but buy default made him look to beatable at times. He was a great seller but sometimes it was overkill."
Rating: 8.0
Sentiment: 0.21666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Diggertakerwrote on 13.02.2013:[10.0] "Best performer in WWE history. Very remarkable and one of the best ever. He is skilled in virtually everything in pro wrestling. A legend."
Rating: 10.0
Sentiment: 0.86875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Definitv einer der größten Stars im Pro-Wrestling, die es je gegeben hat. Ein unglaublich charismatischer und überzeugender Wrestler, der unzählige brilliante Matches gezeigt hat. Ein Ausnametalent wie kaum ein zweiter"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HBK the gamewrote on 29.01.2013:[10.0] "der für mich größte in ring performer aller zeiten, dieser mann hat bei pay per views fast immer das beste match gezeigt. ein bischen schade das man ihm nach seiner 4 jährigen pause nicht öfters den champion titel gegeben hat. hoffe das man noch ein match von ihm sieht."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CrIppIL3RTIRiXwrote on 22.01.2013:[10.0] "Shawn ist einer der größten die es jemals gab!  Er kann aus jedem Wrestler ein gutes Match zaubern.  Denkt man nur mal an Flair vs. Michaels 2008, denn das war das beste Match was Flair seid 20 Jahren hatte.  Michaels hatte ein super Abschieds Match gegen den Taker.  Die Icon des Wrestlings deshalb die 10 Punkte."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: 8BitLegendwrote on 22.01.2013:[10.0] "War der beste aller Zeiten. Meine Lieblingsmatches, Lieblings-Storylines, Lieblings-Promos... allesamt haben mit HBK zu tun. Unglaubliche Karriere. Hat sich privat und als Charakter immer nachvollziehbar entwickelt. Das Wrestling ist ohne ihn nicht mehr das gleiche."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HeelJenniwrote on 05.01.2013:[10.0] "Er ist einer der ganz ganz großen. Er hatte aus allem immer ein gutes Match gemacht. Es gibt sehr viele unvergessliche Momente, aus seiner Zeit, an die man sich auch noch in vielen Jahren erinnern wird! Für mich einer der Besten aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: krausi001wrote on 30.12.2012:[10.0] "Zurecht steht Shawn Michaels auf Platz 1 der bestbewertesten Wrestler. Er war und wird immer der Beste sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Cobrawrote on 14.12.2012:[8.0] "Love him or hate him. Shawn Michaels is one hell of a wrestler and no one can deny that."
Rating: 8.0
Sentiment: -0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: dantewrote on 12.11.2012:[10.0] "Held meiner Kindheit! Hat immer sein bestes gegeben, dafür werde ich ihn immer bewundern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CMP nwrote on 31.10.2012:[10.0] "Für mich ist Shawn Michael der beste Entertainer in diesem Business. Er hat Charisma, ein Ass am Mic, dass beste Selling etc etc. Auch die wrestlerischen Fähigkeiten sind bzw. waren bei ihm gut bis sehr gut und er hat mit die besten WWE Matches aller Zeiten gezeigt. Für mich verdient Shawn Michaels 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LM Punkwrote on 30.08.2012:[10.0] "Seine Spitznamen sagen schon alles aus. Er ist und bleibt für sehr lange Zeit der Beste Wrestler und Entertainer den die WWE und Wrestlingwelt hervorgebracht hat! Viele der besten Kämpfe gehen aus sein Konto."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: QWNXZwrote on 05.06.2012:[10.0] "Shawn Michaels war einer der besten, wenn nicht der beste, der je ge-wrestlet hat. Er hat Halsbrecherische Stunts gemacht, war ein Ass am Mic, hatte die besten Fehden und hat mit seinen In-Ring Skills überzeugt. Er und HHH waren das beste Tag Team aller Zeiten! Nicht nur, dass sie zwei super Wrestler waren, sie haben auch vieles erreicht."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Eclipsewrote on 22.05.2012:[10.0] "Shawn Michaels ist genau das was er von sich sagt, " The very best Sports Entertainer in the World" ."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NoHomewrote on 02.05.2012:[10.0] "Heartbreak Kid, Showstopper, The Icon, Mr Wrestlemania... was gibt es mehr zusagen? eine Legende"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Alex Riley 4 wwe championwrote on 09.03.2012:[10.0] "Seine " Sweet Chin Music" höre ich mir gerne an! Der beste Superkick in der Geschichte der WWE! Mr. Wrestlemania hat gegen den Undertaker, JBL, HHH, Rick Flair und viele mehr großartiges gezeigt!"
Rating: 10.0
Sentiment: 0.68359375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Man of Warwrote on 22.02.2012:[10.0] "Er war der beste Worker die die WWE je hatte seine Promos waren sehr gut seine In-Ring Skills sowieso, er war ein sicherer Worker und er hat was vom selling verstanden. Er konnte die Masse mitreißen egal wie groß die Halle und wieviele Menschen Zuhause zugesehen haben. Er brauchte keine Gürtel um ein Maineventer zu sein, er hatte das Talent dazu."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Marlowewrote on 19.02.2012:[10.0] "Immer top Matches, immer top Micwork. Einer meiner absoluten Lieblingswrestler."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fabi89wrote on 28.01.2012:[10.0] "Überragender Wrestler, über den alles gesagt ist. Wird zurecht zu den Größen der Wrestlinggeschichte gezählt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Senajwrote on 27.01.2012:[10.0] "Geniale Promos und geniale Matches. Eine der größten Legenden aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Spearmanwrote on 25.01.2012:[10.0] "Shawn Michaels wird für mich immer, der beste Mainstream-Wrestler aller Zeiten sein, auch wenn Leute wie KENTA oder Kobashi besser sind. Er war vom Anfang meiner Wrestlingzeit immer dabei und sein letztes Match gegen den Undertaker war, für mich, eines der schönsten Wrestlingmatches aller Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Clubbiwrote on 09.01.2012:[10.0] "Er war und ist immernoch auch wenn er nicht mich Wrestelt, einer der Besten Ever.. Shawn Thank You for the Great Moments.."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Pius123wrote on 28.11.2011:[10.0] "Der beste Wrestler aller Zeiten. Der Mann hat einen Klassiker nach dem anderen geliefert. Er hat das Business geprägt wie kein zweiter. Danke , HBK"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: OdisVanNeusswrote on 27.11.2011:[10.0] "Was soll ich zu Shawn Sagen . Abgesehn von Seinem PrivatLeben. Im Ring ... Niemand ist wohl besser... Am Microfone Grante! Verdient mehr WHCs als er hat hätte er sie gewollt und das ist das große"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Franchise Playerwrote on 27.11.2011:[10.0] "Wie kann man dem Heartbreak Kid weniger als 10 Punkten geben? Ich weiß nicht. Der Mann ist DER Entertainer des Business. Charismatisch, Mictechnisch, Inring, ... alles tip top. Nicht ohne Grund einer meiner absoluten Lieblingsworker. Thank you Shawn!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Teekaywrote on 27.10.2011:[10.0] "Mr. Wrestlemania. Hat schon vor 15 Jahren Techniken angewandt, die heute als heißeste Sache verkauft werden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Auditorewrote on 16.10.2011:[10.0] "Er war der Revolutionär des Wrestlings. Verdammt unterhaltsam ohne ihn wäre Wrestling nicht halb so interessant geworden wie ich denke."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Big John Studdwrote on 01.10.2011:[10.0] "In meinen Augen der beste Wrestler den es jemals gegeben hat, noch vor Bret Hart, Chris Jericho oder Ric Flair. Er hat mich dadurch inspiriert das ich Wrestler werden wollte. Er kann wirklich mit jedem ein gutes Match bestreiten, selbst wenn er nur gegen ein Stück Brot kämpfen würde. Zudem hat er noch ein verdammt gutes Mic Work und ein sehr starkes Charisma. Für mich der Inbegriff des Wrestlings."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: cktgerwrote on 21.09.2011:[10.0] "Skandalös das hier einige ihm hier 0 oder 2 Punkte geben. Egal ob man ihn mag oder nicht. Er war einer der charismatischsten und besten Wrestler seiner Zeit. Für mich sogar der beste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Raywrote on 13.09.2011:[9.0] "Natürlich ist der Mann eine grandiose Lichtgestalt des Businesses aber fehlte er doch einfach die für mich als Fan wichtigsten 4 Jahre und dieses Manko konnte er für mich nie komplett eliminieren."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rated R Punkwrote on 06.09.2011:[10.0] "Man kann von ihn sagen was man will als Person (obwohl ich fande was News angeht er eigentlich ganz Korrekt zu sein scheint) Er ist eine Ikone, wir verdanken ihn verdammt viel. Michaels könnte denke ich selbst mit einen Toaster mindestens ein 2 Sterne Match schaffen. Er hat einfach eine Lücke hinterlassen seit er weg ist. Ring In Skills sind natürlich gut. Michaels hat immer wieder was neues gezeigt (ich erinnere mich noch an seine Crossface Zeiten) Unterhalten kann er auch wie er zu seinen DX Zeiten gezeigt hat! Charisma hatte er vorallem früher sehr viel von! Also ganz klar 10 Punkte da ich ihn persönlich noch vor Leuten wie Undertaker oder Hulk Hogan sehe ganz einfach für seine Opferung für die WWE und all den Epischen Matches die er gezeigt hat!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Pink and Black Attackwrote on 24.08.2011:[10.0] "schon rocky marciano wusste, wann er abtreten muss, und shawn tat selbiges! eine wahre legende tritt dann ab, wenn alle andern es nicht erwarten, weil er überragend ist! gott gab uns shawn, und er sah, dass es gut war! shawn michales > hulk hogan, steve austin, the rock or anyone else!"
Rating: 10.0
Sentiment: -0.2534505208333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Michael Shawn Hickenbottomwrote on 15.08.2011:[10.0] "Unbestritten. Etwas anderes als eine 10 ist inakzeptabel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Tribbel Eitschwrote on 14.08.2011:[9.0] "HBK ist schlichtweg eine Legende. Über Jahrzehnte hinweg an der Spitze einer Company zu stehen und sowohl als Face als auch als Heel Woche für Woche die Fans zu begeistern - das spricht eigentlich für sich.  Er hat die WWE geprägt, und das nicht nur über einen kurzen Zeitraum, sondern über Jahre hinweg. Selbst nach Verletzungspausen kommt er immer wieder zurück und überzeugt wieder. Die Sweet Chin Music kann er in quasi jeder Situation wie aus dem Nichts treffen und so ein Match beenden. Ein Hoch auf den Showstopper!"
Rating: 9.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bananaramawrote on 14.08.2011:[10.0] "Ich bin kein Shawn Michaels Mark, muss aber anerkennen, dass er einer der prägendsten Gestalten innerhalb des Business ist. Er ist eigentlich das, was ein Komplettpaket ausmacht: Er besitzt Charisma, Mic Work und In-Ring Skills, die ihm selbst mit schwächeren Gegnern großartige Matches ermöglichen. Daher kann es nur eine Wertung für ihn geben: 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: albino17wrote on 29.07.2011:[10.0] "Geniale Matches, überagende Promos, seit seinem Charakterwechsel auch noch die richtige Einstellung und er hat auf dem Höhepunkt aufgehört. Ganz klar, HBK ist einer der größten Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NHJ2102wrote on 11.07.2011:[10.0] "Mr Wrestlemania ... einer der unterhaltsamsten Worker aller Zeiten! Er hat die unglaublichsten Matches geliefert... und er ist glaub ich der einzige Wrestler der wenn er verliert, von den Fans trotzdem als der Gewinner gefeiert wird... unglaubliches charisma ... HBK the enfant terrible ist einfach eine Legende"
Rating: 10.0
Sentiment: -1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: 7TheEwrote on 29.06.2011:[10.0] "Kann immer und aus jedem das beste raushohlen und hat das Wrestlingbuisness lange Zeit total ans limit geführt unbeschreiblich!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Donald Duckwrote on 26.06.2011:[2.0] "Ich hasse Shawn Michaels wie die Pest. Mag sein, dass er gute Matches abgeliefert hat, aber Michaels als privater Mensch ist einfach nur Mist. Allein der Montreal Screwjob disqualifiziert ihn für mich. Der Tag an dem er seine Karriere beendet hat, war ein guter Tag für mich."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Showstopper45wrote on 19.06.2011:[10.0] "Ein sehr guter Worker sowohl am Mic als auch im Ring. Er hat mit seiner perfekter Mimik und Gestik immer wieder klasse Promos. @Tamam Entweder du hast keine Ahnung oder ich weiß auch nicht Shawn ist einer der Besten und zu der Aussage er hat WWE nie aus irgendeiner Misere geholfen kann ich nur lachen als Hogan ging war da Bret Hart und Shawn die die WWE bis zur Attitude Ära gehalten haben. Der Undertaker natürlich auch"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Dennizwrote on 16.06.2011:[10.0] "Für mich klar der beste Wrestler aller Zeiten. Es wird niemanden geben der jemals an HBKŽs Klasse rankommt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Opalawrote on 13.06.2011:[8.0] "Ein toller Wrestler der eigentlich immer gut unterhalten hat, aber mich persönlich hat er nie wirklich angesprochen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Johnny-Tennerwrote on 16.05.2011:[10.0] "Schade das ich seine lange Karriere nie von Anfang an verfolgen konnte aber selbst oder gerade im Alter hat dieser Mann das Wrestling zu lieben Gelernt. Ewig werde ich seine Geilen Matches in erinnerung behalten. Insbesondere Mein persönliches Lieblingsmatch bei meinem ersten Wrestlemania der für mich wie ein magischer Moment war, das Match gegen Kurt Angle bei Wrestlemania 21. Er kann wirklich aus jedem Match das Maximale rausholen und ist damit nicht umsonst der vielleicht beste Wrestler aller Zeiten. Eine großartige Karriere die auch ohne viele Titelgewinne beindruckend ist. Vielleicht macht dies aber seine 4 Titelregentschaften um so bedeutsamer. Im Ring fehlte im einfach nichts sein Charakter war selbst nach 25 Jahren noch intressant und das erlebt man doch eher selten. 10 Punkte für den Wrestler mit den größten Wrestlemania Momenten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Boggenauerwrote on 12.05.2011:[10.0] "Shawn Michaels ist ein Mann der mich Persönlich noch nie wirklich angesprochen hat, dennoch muss ich ihm zugestehen das er ein herausragender Wrestler war sehr gut am Mic war und seine Promos waren nie wirklich schlecht. Michaels ist ein Mann der unglaubliche Matches bestritten hat und in viele hervorragenden Fehden verwickelt war, ein Mann wie ihn wird es so schnell nicht mehr geben, wenn ich es mir so überlege ist es dennoch schade das man ihm nicht das ein oder andere mal noch den WWE Titel halten ließ da er wirklich immer alles gab und unglaubliches Charisma verfügte. Obwohl ich nie ein Fan von ihm war muss ich sagen das der Mann ein Top Wrestler gewesen ist deshalb bekommt er von mir 10 Punkte."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Schiggywrote on 08.05.2011:[10.0] "Für mich ohne jeden Zweifel der beste Wrestler aller Zeiten. Es wurde hier schon alles gesagt, ich muss nicht mehr vel schreiben, ausser das Shawn Michaels DIE Legende ist und ich denke, dass seine Leistungen auf ewige Zeit unerreicht bleiben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Elvis6wrote on 20.04.2011:[9.0] "Da muß ich meinem Vorredner leider widersprechen. Hbk war an ein paar herausragenden Matches beteiligt. Natürlich braucht man dazu 2 Topleute aber nicht von ungefähr war er eben dabei. Und auf die Backstagepolitik zu kommen:Richtige Zeit u richtiger Ort eben. Und zeig mir bitte eine Firma in der man nicht die Ellbogen ausfahren muß um ganz nach oben zu kommen. Aber wenn er auch noch so intregant wäre(wie du ihn hingestellt hast) hätte man ihn ohne Können bestimmt nicht so gepusht wie er es dann wurde. Zurecht Hall of Fame"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NewGuywrote on 20.04.2011:[6.0] "Guter Worker, schöne Matches, hinterhältiger Charakter. Hat es nur durch eine "über-Leichen-gehen"-Strategie geschafft der "Held" aller S-marks zu werden. Ich denke, dass es viele viele Worker gibt, die ähnliche Match-Qualität wie Michaels an den Tag legen, aber keine Hall of Famer sind, weil sie zu ehrlich waren. Das kann keine 10 Punkte geben!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: FriarFergusonwrote on 14.04.2011:[10.0] "Am Ende war es dann doch etwas zu viel des Guten. Michaels war nicht schlecht, hatte auch immer seine starken Matches, aber gegen Ende wurde er einfach zu unglaubwürdig stark dargestellt (siehe Royal Rumble 2010) und die neue Version der DX (mit Hornswoggle) war ebenfalls lächerlich. Die zehn Punkte bleiben trotzdem indisputabel. Sicher, ähnlich wie z. B. Cena geht er bei seinen Matches meist nach Schema F und mit klassischer Offensive vor, doch im Gegensatz zu Cena ist Michaels ein wahrer Athlet, dem Man die Schmerzen und das mühevolle Comeback auch abkauft und der den Zuschauer überrascht."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: exxterwrote on 10.04.2011:[10.0] "Glatte 10. Da er meine Kindheit in den 80/90er bereichert hat xD Und war Teil warum ich überhaupt Wrestling angefangen hab zu gucken. Und bis heute hatte er auch super Matches geliefert Danke Shawn :)"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: dsierwrote on 07.04.2011:[10.0] "Für mich der mit Abstand beste und wichtigste Worker den die WWE/WWF je hatte. So einen wie ihn wird es nie wieder geben davon bin ich überzeugt. Ausserdem hat er sich auch menschlich weiterentwickelt; vom Chaoten, der auch mit Drogenproblemen zu kämpfen hatte, ist garnichts mehr übrig geblieben, stattdessen ist Shawn Michaels jetzt Vater von zwei Kindern und glücklich verheiratet. Er hat nichts anderes als 10 Punkte verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: micha27480wrote on 06.04.2011:[8.0] "ist mir zu arogant. und sein grimmick ist auch nicht so mein fall."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kitanoyamawrote on 03.04.2011:[10.0] "Optisch nicht besonders vielsagend, aber ein absoluter Top-Star in der Geschichte der WWE. Witzig, intelligent und kämpferisch, das ist HBK wie man ihn noch lange in Erinnerung behalten wird."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: C0nspiracywrote on 28.03.2011:[8.0] "Im Ring ist HBK zweifellos einer der allerbesten in der bisherigen Wrestling Geschichte. Über sein können braucht man nicht diskutieren er ist das was Er sagt , der Showstealer. Ich gebe ihm aber "nur" eine 8 da es einen Top Wrestler meiner Ansicht nach auch auszeichnet sich für andere hinzulegen. Dies hat Shawn insbesonders in den 90ern oft verweigert. So bleibt es also mMn nur bei einer 8. Auch wenn Er gerade seit seinen Comeback sich nie zu schade war den "Job" für seine oftmals noch grünen Gegner zu machen. Unterm Strich werde ich HBK dennoch immer als einen der wirklich absolut besten in erinnerung behalten."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Peep316wrote on 09.03.2011:[10.0] "Ehrlich gesagt gibt es hier nichts was noch nicht über Shawn Michaels gesagt wurde. Ich kann nur sagen er ist meiner Meinung einer der besten wenn nicht sogar der beste Wrestler aller Zeiten. Bei ihm kommt alles zusammen was man braucht, einzigartige Mic-Skills, unglaubliches Charisma und er gibt einfach alles was er kann wenn er im Ring steht.  Ein Inovator und Pionier und Shawn wird für immer im Gedächtnis eines wahren Wrestling-Fans bleiben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hu-Manwrote on 24.02.2011:[10.0] "Mr. WrestleMania! The Showstopper! The Heartbreak Kid! Shawn Michaels! Egal, wie sehr er am Anfang seiner Karriere drauf war, er war einer der besten, die das Business je gesehen hat. Einer meiner All Time Favorites."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Charismatic Enigmawrote on 23.02.2011:[10.0] "Nicht nur, dass er jahrelange Erfahrung mitbringt, er ist noch immer in der Lage, sowohl am Mic als auch im Ring jederzeit eine sensationelle Leistung abzurufen. Jüngster Beweis dafür sind die Wrestlemania-Fehden gegen den Undertaker. Seine Hall of Fame Einnführung war ohnehin nur eine Frage der Zeit und ist auch schon jetzt, ein Jahr nach Karriereende, mehr als verdient."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HBK-Xwrote on 21.02.2011:[10.0] "HBK, mein Held seid ich zum 1. mal Wrestling gesehen habe! Immer der Beste, immernoch der Beste! Ob im Ring, an Mic oder backstage! Er kann alles, vom Heel bis zum Face! Super Comedy einlagen, besonders mit DX! Ich hoffe er macht noch weiter, denn er hat es verdient nochmal WWE Champion zu werden! He is still the Showstopper, the head-liner, the main event, the Icon!  NEU: Eigentlich muss man über HBK nichts mehr sagen! Der beste Wrestler aller Zeiten! Der verdiente Hall of Famer! THE ICON!"
Rating: 10.0
Sentiment: 0.5147298177083333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: wolverinewrote on 17.02.2011:[10.0] "Shawn Michaels ist zweifelsohne zu einer DER Ikonen des Wrestlings geworden. Und seinen Beinamen als "Mister Wrestlemania" ist absolut berechtigt, denn ich kann mich an kein Match in den vergangenen Jahren erinnern in denen der "Showstopper" bei der größten Veranstaltung des Sports Entertainment nicht in dem besten Match zu finden war... Sein Karriereende war definitiv ein sehr wehmütiger Moment - ich hoffe darauf, dass Shawn eines Tages noch einmal in einigen bedeutsamen Matches zu finden sein wird ... und sei es nur einmal jährlich, bei seiner namensgebenden Show..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GamePrincewrote on 16.02.2011:[10.0] "Im Ring gibt es glaub niemanden, der an seine Qualität rankommt ... schlicht unschlagbar, wenn es um tolle Matches geht. Da verkommt seine restliche Perfektion fast zur Nebensache ..."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dark Tomekwrote on 28.01.2011:[10.0] "Mein lieblings Wrestler #1. Also ein super Entertainer. Man muss eigentlich nicht mehr sagen, er ist einfach super."
Rating: 10.0
Sentiment: 0.1722222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Neuhofwrote on 24.01.2011:[10.0] "Shawn Michaels ist für mich unbestritten einer der großartigsten Wrestler, die je auf Gottes grüner Erde wandelten. Sein Charisma, sein Selling, seine Psychologie, seine Promo-Fähigkeiten, seine In-Ring-Skills, all das ist überdurchschnittlich gut. Shawn ist einer der ganz großen, der jeden Stil mitgehen konnte, den man im Mainstream braucht. Vor seiner vierjährigen Zwangspause war er ein sehr guter, aber ein extrem umstrittener Wrestler. 2002 kam er nochmal für 8 wundervolle Jahre zurück, in denen er uns noch viele, viele Klassiker schenkte. Sicherlich der Showstopper, sicherlich Mr. Wrestlemania, und gelangweilt werden kann man bei einem HBK-Match eigentlich nicht. Wenn er nicht 10 Punkte bekommt, wer dann?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: thereisonlyonewrote on 16.01.2011:[10.0] "H... B... K... The Heartbreak Kid Shawn Michaels.  Aus meiner und aus der Sicht der WWE-DVD Top 50 Superstars of all time der beste, charismatischste und beliebteste WWE-Superstar aller Zeiten!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Prodirwrote on 14.01.2011:[10.0] "Der Mann, der Wrestling für mich definiert hat und den Technikern und High-Flyern einen großen Schub in Richtung Popularität gegeben hat. HBK ist einfach eine lebende Legende, die das Wrestling berühmt gemacht hat. Er ist nicht nur ein großartiger Entertainer, sondern auch jemand, den man im Ring auch ernst nehmen sollte, was seine Matches bei PPVs ua. gegen den undertaker gezeigt haben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Lampard4000wrote on 11.01.2011:[10.0] "Super Performer, immer unterhaltent, holt aus jedem Gegner ein gutes Match aus, mit guten Gegner ein herausragendes Match (z. B. Undertaker bei WM) und wird zurecht einen Tag vor Wrestlemania in die Hall of Fame eingeführt. Vielleicht tritt er ja mal wieder regelmäßig vor die Kamera, wenn auch nicht als Wrestler."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: al2010exwrote on 03.01.2011:[9.0] "Gute Promos. Konnte gute Matches abgeliefern. Bin aber nicht der größte Fan von ihm."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Matt4Wrestlingwrote on 19.12.2010:[10.0] "Immer wenn man glaubte, er sei platt, die Show sei wirklich gestoppt, immer dieses legendäre wieder auffedern auf die Füße, die extrem langen Matches im verbund der langen Erfahrung mit so gut wie jedem Stil, machten das Gesamtpaket Shawn Michaels aus!  Hinzu kommt immer sein Hang zum Kontroversen (siehe D-X und Montreal Screwjob), wobei er aber immer Glaubwürdig erschien.  Jedenfalls, ein Typ, der in Zeiten eines WWE-Champions the Miz, schmerzlich vermisst wird!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Maxiennewrote on 10.11.2010:[10.0] "Alleine für DX müsste ich ihm schon 10 geben ich liebe dies Gruppierung einfach.  Zudem einer der besten Wrestler aller Zeiten Was kann man sagen einfach ein GOTT"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: UndertakerChriswrote on 10.11.2010:[10.0] "Genau wie der Undertaker ist HBK einer der großartigsten Wrestler alles Zeiten. Es gäbe viel zu viel zu sagen als das ich es hier posten könnte. Natürlich DX, sein Fehden gegen HHH, Undertaker, McMahons... Bret Hart... HBK war einfach ein unglaublicher Wrestler! We miss you Shawn... =("
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Marth99wrote on 01.11.2010:[9.0] "einer besten Wrestler aller Zeiten schade das er das letzte mal einen Titel run vor knapp 8 Jahren hatte"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheRock 7 Champwrote on 28.10.2010:[10.0] "Also HBK überzeugt mich jedes mal im Ring, er ist wirklich der beste Wrestler den ich kenne. Am Mic super, im Ring perfekt sein Tag Team mit Triple H grandios, und auch seine Fehden sind fast immer ein Kracher. Für mich der wirklich aller beste Wrestler den es je gab."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Jar Jar Binkswrote on 28.10.2010:[10.0] "Shawn Michaels war der beste In-Ring Performer der WWE. Er hatte die Fähigkeit gegen jeden noch so schlechten Worker ein ansehnliches Match zu bestreiten. Außerdem war er ein riesen Entertainer. Seine frühere Zeit egal ob als Face oder Heel, seine Zeit mit Triple H als DX, seine letzten Fehden gegen Ric Flair und The Undertaker, er konnte einen fesseln und wirkte dabei unheimlich realistisch. Danke Shawn für die tollen Momente!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DJ MaSchwrote on 13.10.2010:[10.0] "Ohne Frage einer der besten aller Zeiten. War immer ein Garant für weltklasse Matches und das mit jedem Gegner. Ich hoffe, dass er nicht den gleichen Fehler begehen wird, wie z. B. ein Ric Flair und sich zu einem Comeback breitschlagen lässt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Ramwrote on 29.09.2010:[10.0] "Oh hab fast vergessen ihn Meine 10er Wertung zu geben.  The Icon, Showstopper, Mr Wrestlemania was soll man dazu noch großartig sagen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: StevenHLRwrote on 10.09.2010:[10.0] "Am Anfang wo ich Wrestling schaut habe fand ich Shawn nicht so gut! Aber nach den Jahren wo ich sah was dieser Mann alles geleistet hat für die Liga muss ich einfach sagen 10 hat er ganz klar verdient! Ich sehe Shawn neben Hulk Hogan der bekannteste und gleich danach kommt The Undertaker! Shawn ist einfach gut!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: rockysadrianewrote on 10.09.2010:[10.0] "Der Mann wusste ganz genau das er für die WWE unbezahlbar ist und hat es genauso oft ausgenutzt wie unter Beweis gestellt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rock93wrote on 08.09.2010:[10.0] "HBK ist für mich das, was Sports Entertainment bedeutet: Unterhaltung, ob im Ring, am Mic oder bei seinen DX-Scherzen. Jede Rolle, die ich von ihm gesehen habe, war perfekt. und deshalb kann man da nur 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: AmericanDragonwrote on 07.09.2010:[10.0] "HBK is simply the greatest Sports Entertainer in the World. Mehr braucht man zu dieser Ikone eigentlich nicht sagen. Konnte aus jedem x-beliebigen Gegner ein brauchbares Match herrausholen, war in zahlreichen Klassikern vertreten und war am Mic unschlagbar. Sein (wohl) letztes Match bei WM 26 und sein emotionaler Abchied untermauerten noch einmal, wie wir ihn in Erinnerung behalten werden. Nämlich als The Showstopper, The Incon, The Main Event."
Rating: 10.0
Sentiment: 0.3888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Telecinewrote on 26.08.2010:[10.0] "Nach seinem Comeback 2002 wirklich einer der besten Wrestler, Entertainer und Persönlichkeiten, die die WWE jemals hatte. Tolle Fähigkeiten am Mikrofon konnte Shawn Michaels mit der Fähigkeit verbinden, jeden Wrestler zu einem guten Match zu ziehen. Es gab nie wirklich ein schlechtes Match mit ihm. Sein bisher letzter Run in der WWE (vom SummerSlam 09 bis Wrestlemania 26), gestaltete sich für ihn auch sehr erfolgreich, da er mit DX eine gute Fehde mit Legacy hatte und danach die Unified WWE Tag Team Titles gewann. Nach der Trennung von DX, war es auch toll, ihn noch ein wahrscheinlich letztes Mal im Royal Rumble eine tolle Performance abliefern zu sehen und über den Umweg "Elimination Chamber" PPV in eine tolle zweite Fehde gegen den Undertaker einzusteigen, die in einem sehr guten Match auf der größten aller Bühnen endete. Auch wenn sein Abschied sehr emotional war und er dies mit einem Comeback zerstören würde, bin ich doch der Meinung, dass der Showstopper noch ein bisschen Zeit übrig hätte, um noch ein wenig das zu tun, was er am besten kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jerseyhoolwrote on 26.08.2010:[10.0] "Nach dem Karriereende von HBK muss ich meine Meinung über ihn nach oben korrigieren. "The Main Event"hat wahrlich bewiesen, dass er zu Recht "Mr. Wrestlemania" genannt wird! Ein Kampf gegen den Undertaker bei WM 25, der ohne Probleme als eine der Sternstunden des Wrestling bezeichnet werden kann und ein sehr emotionales Ende gegen denselben Mann bei WM 26 in einem ebenfalls sehr guten, aber diesmal leider zu vorhersehbaren Match sind nur 2 der vielen Stationen, bei denen der Showstopper in den letzten Jahren seit meiner Erstbewertung glänzen konnte. Wie auch bei The Rock bin ich hier geneigt zu sagen, dass die Karriere viel zu früh vorbei war, aber bei einem Mann von 45 Jahren sollte man auch bedenken, dass es besser ist, auf den eigenen Füssen aus der Halle zu gehen, denn im Rollstuhl nach aussen geschoben werden zu müssen! Es war uns ein Fest, Mr. Hickenbottom! Thanks for the precious memories, we will miss you!"
Rating: 10.0
Sentiment: 0.3835069444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SES-Memberwrote on 20.08.2010:[10.0] "Der Kerl ist einfach eine Wucht.  Unglaubliches Charisma und das Er in der Lage ist ein gutes Match auf die Beine zu stellen, darüber sind wir uns glaub ich alle einig. Auch nach über 20 Jahren im Buisness weis HBK noch zu unterhalten und es wird nie langweillig. Alleine wenn man mal die Fehden gegen den Taker angugt und die darauf folgenden Matches einfach nur klasse.  Er hat nicht um sonst die ganzen Namen wie Showstopper, Main Eventer u. s. w bekommen. 10 Punkte an Shawn Michaels. Thank you Shawn"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Saschwrote on 19.08.2010:[10.0] "Einer der revultionersten Wrestler der WWE das Leitermatch gegen Hall zb. war damals auf RTL2 wenn ich mich recht Erinnere der Hammer. Ich finde er hat das gewisse Etwas und finde Ihn sehr Unterhaltsam."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kaefigtierwrote on 18.08.2010:[9.0] "War immer ein sehr guter Worker, wenn er in den 90ern auch eine Primadonna backstage war, so konnte er mich im Rig oder am Mic doch meistens überzeugen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Miz 28wrote on 18.08.2010:[10.0] "Der beste Wrestler den es je gab mehr muss ich dazu nicht sagen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ray Robsonwrote on 17.08.2010:[10.0] "Wenn nicht er die zehn Punkte bekommt, wer dann? Das Total Package, von verrückten Bumps über Highflying und Brawling bis zu einem grandiosen overselling verbunden mit einem Charisma, das seinesgleichen sucht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HBK782wrote on 16.08.2010:[10.0] "War klar der beste Wrestler bislang. Eine Wrestling-Welt ohne ihn ist komisch. Seit ich Wrestling gucke (1991) war Shawn Michaels immer da. Ich freue mich für ihn, dass er nach dieser Bilderbuchkarriere ein erfülltes Leben als Familienvater führen kann. Das macht ihn auf ganzer Linie zu einem Idol. Großartiger Mann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: michiswrote on 15.08.2010:[10.0] "Wenn im Matchguide bei den TOp hudnert in den ersten 5 Matches immer der Name Shawn Michaels erscheint, muss man glaube ich nicht mehr sagen, wieso er die 10 Punkte verdient. In den letzten 25 Jahren hat er immer gut unterhalten. Seit seiner Pause war er noch um eingies stärker. Er schaffte es immer wieder ein gutes Match, zu einem sehr guten zu Machen. So einen wie ihn wird es nie wieder geben. Schade natürlich dass er nicht mehr da ist, aber es ist besser, er geht jetzt als humpelt mit 60 noch durch den Ring. So bleibt mir nur zu sagen, Danke Shawn, Danke für die vielen lustigen, spannenden, traurigen oder einfach geilen Momente in der Karriere des HBK. Wird für immer ne Legende bleiben und das zurecht."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LumpiDXwrote on 21.07.2010:[10.0] "Für mich DER beste Wrestler allerzeiten. Am Mic genial, im Ring genial, es gibt einfach keinen besseren. 100%tiges Hall of Fame Mitglied"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: sebiwrote on 18.07.2010:[10.0] "Einer der Besten aller Zeiten. Er hat alles richtig gemacht, immer spannende Matches abgeliefert, teilweise die Besten aller Zeiten, er hat grandiose Promos gehalten und hat auf dem Zenit seiner Karriere aufgehört. So macht man das."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: WrestlingFanDuisburgwrote on 15.07.2010:[10.0] "Absolut Wahnsinn der Mann. Im Ring ein Genie der ein gutes Match nachdem anderen gezeigt hat. Auch am Mic absolut Klasse. Kann nur noch nicht ganz glauben, dass er seine Karriere beendet hat. HBK 4 EVER"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: samuel86wrote on 14.07.2010:[10.0] "Er hat einige der denkwürdigsten Matches aller Zeiten bestriten, nicht nur in ferner, sonder auch in naher Vergangenheit. Am Mic absolute Klasse, seine letzte Fehde mit dem Undertaker wird mir noch sehr lange in Erinnerung bleiben."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HBK1986RKOwrote on 30.06.2010:[10.0] "Unumstritten einer der besten aller Zeiten im Ring und am Mikro."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Shrinxwrote on 30.06.2010:[10.0] "Was hat der in seiner Karriere schon für Matches abgeliefert. Einfach nur genial der Mann.  Und auch wenn das Macht bei WM 26 ein wenig Bedeutung verlieren würde, hoffe ich, dass er irgendwann nochmal zurück kommt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kenshin Uesugiwrote on 24.06.2010:[9.0] "Shawn Michaels hat über Jahre bewiesen das er ein Garant für gutes Wrestling ist und in der WWE so ziemlich jeden zur einen ansehnlichen Match hinkriegen kann. Ich persönlich habe Shawn Michaels zwar nie als die Ikone für den gesamten Wrestling Planeten gesehen, aber wer über Jahre es schafft trotz diverser Verletzungen, an historischen Matches beteiligt zu sein, der so viele Fans begeistern kann, der trotz eines früheren schwierigen Charakter im Alter reife zeigt und wie ein Mann hinter seinen Kollegen und Firma steht, da kann man doch nur den Hut ziehen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Excellence of Executionwrote on 31.05.2010:[10.0] "Auch wenn ich die WWE momentan nur mit einem Auge verfolge, habe ich natürlich (als Hart Fan) den Angle um Hart, Wrestlemania 26 und das phänomenale Career vs Streak Match angeschaut. Und auch das anschließende RAW. Meine anfänglichen Zweifel, ob die Aussprache zwischen Hart und Michaels nichts als bloße Inszenierung war, verflogen während Michaels's (angenehm schlichter) Abschiedsrede, als er mit wenigen aber umso klareren Worten reinen Tisch machte - und sich meinen bedingungslosen Respekt vollends zurück verdient hat. Wenn Bret ihm vergeben konnte, warum soll ich das dann nicht können? ^^ Mit Shawn Michaels geht der letzte Wrestler von der großen WWF (! ) Bühne, der in den 80ern bereits mitgemischt hat und der WWF/E so lange seinen Stempel aufdrücken konnte, wie sonst wohl nur der Undertaker. Er war einer der ganz Großen. Chapeau Shawn, you are my Daddy!"
Rating: 10.0
Sentiment: -0.11538461538461539
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: morph80wrote on 30.05.2010:[10.0] "Jeder der WWE verfolgt hat kennt ihn und seine geniale Performance, also man braucht da nicht viele Worte verlieren. Für ihn müsste man eigentlich 11 Punkte geben..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Rockerwrote on 28.05.2010:[10.0] "Er ist eine lebende Legende. Er ist mein absuluter Lieblings Wrestler. Sein Können im Ring ist sagenhaft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Erasedwrote on 23.05.2010:[10.0] "Shawn Michaels, The Icon, The Heartbreak Kid, The Showstopper. All diese Kosenamen hat er sich doch tatsächlich wirklich verdient. Jedes Jahr lieferte er exzellente Matches und Promos ab, von denen sich heute jeder Wrestler eine Scheibe abschneiden könnte. Hoch anrechnen muss man ihm seine konstante Leistung, die er über 20 Jahre an den Tag legte. Einen weiteren Punkt, den man ihm anrechnen kann: Er wusste, wann genug ist und hat seine Karriere rechtzeitig beendet und wird auch als klasse Entertainer und Technicker den Leuten im Kopf bleiben und nicht als altes Wrack, wie einige seiner Kollegen, die den richtigen Zeitpunkt um Jahrzehnte verpasst haben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mathias Rekaschwrote on 20.05.2010:[10.0] "Shawn Michaels hat mich durch meine Wrestlingfan-Karriere begleitet wie kaum ein anderer. Von den Endzeiten der Rockers Anfang der 90er über den plötzlichen Turn gegen seinen Partner und der Zeit als arroganter, selbstverliebter Beau und den Wandel zum Publikumsliebling, dann zum Degenerierten und schließlich wieder zum Fanmagneten, habe ich seine Karriere ausführlich beobachtet und bin immer schon ein Fan von ihm gewesen. Wie kaum einem Zweiten gelingt es ihm Matches spannend zu gestalten, schwächere Gegner zu tragen und die Fans mit seiner Hingabe zu begeistern. Das er in seinen "wilden Zeiten" das selbst mal nicht so genau genommen hat, tut dieser Top-Bewertung keinen Abbruch. HBK bleibt für mich der beste Performer meiner Fangeneration (1991-2010) und durch sein Karriereende hinterlässt er eine spürbare Lücke bei WWE, die schwer zu stopfen sein wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Golgotawrote on 19.05.2010:[10.0] "Für mich der beste Wrestler aller Zeiten. Hätte auch gegen einen Kachelofen wrestlen können und dabei das Match of the Year abgeliefert. Shawn, ich werde dich vermissen. 10/10"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TeeHaawrote on 18.05.2010:[10.0] "10/10, die Höchstnote. Das war klar, als ich das Fenster öffnete. Die Frage war nur, wie ich das Begründete. Wir können hier die alten Clique, Bret Hart und sonstige Charaktergeschichten öffnen. Wir können über Face-DX-Hornswoggle-Humor reden, der nicht Jedermans Sache war (mein Fall war's übrigens auch nicht) Das Gesamtpacket HBK: War über all die Jahre erstklassig. Was bleibt von ihm in der Endbetrachtung: Welches Attribut trifft es am ehesten: Legendär! 11/10"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Edge96wrote on 11.05.2010:[10.0] "Einer der allerbesten die es jemals gab! Etwas anderes als 10 Punkte kommt nicht in Frage!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Coruuswrote on 10.05.2010:[10.0] "Eine lebende Legende! Einer der größten Wrestler überhaupt! 10 Punkte was anderes kann ich einfach nicht geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: smithy1994wrote on 07.05.2010:[8.0] "Er ist eine richtige Legende der das erreicht hat was er wollte"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sandmannwrote on 04.05.2010:[10.0] "Tja was soll man zum Heartbreak Kid noch sagen. In den letzten 10 Jahren wohl DER Mainstream Wrestler schlechthin. Eigentlich immer große Matches und Fehden. Wirkliche Klassiker gegen den Undertaker, Jericho, Orton, Triple H, Cena usw. Hat mit allen Großen im Ring gestanden und es verstanden der Showstopper zu sein. Das nach seiner wirklich guten Tag Team Zeit mit Jannetty auch ein paar schwarze Flecken auf seiner weißen Weste entstanden sind kann man ihm mittlerweile wohl verzeihen denke ich. Seinen wohl verdienten Ruhestand gönne ich ihm und freue mich wenn er es wirklich schafft nicht mehr zurückzukehren. Einen großen Dank an einen der besten den es je gab, gibt und geben wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Icebreakerwrote on 03.05.2010:"Flaechenbomber Meinungsfreiheit? Bei 0 Punkten für McMahon mit Begründung das er ein alter Sack ist? Erst denken, dann schreiben"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: element-41wrote on 03.05.2010:[10.0] "Was soll man da noch großartig schreiben, der Name sagt eigentlich alles. Er ist eine Legende und ein zukünftiger Hall of Famer. 10 Punkte!  Edit: Icebreaker, du schreibst mir aus der Seele."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RickRollwrote on 30.04.2010:[8.0] "Hat mich nie so wirklich "interessiert", jedoch KANN man ihn nicht seine In-Ring Qualitäten absprechen. Gehört(e) zu den besten, wenn nicht der beste wenn es um die WWE geht, jedoch gibt es (für mich jedenfalls) weit ausbessere. Hat ne dicke Lücke bei der WWE hinterlassen. EDIT: GAMBIT, wie lächerlich ist das denn? Klaust du einfach mein Kommentar von Bret Hart und ersetzt Bret mit Shawn."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Rated R Superstar EDGEwrote on 29.04.2010:[10.0] "Nur 3 gute Matches? Alles klar im Matchguide sind von den Top 100 Matches alleine 19 mit der Beteiligung von Shawn Michaels. Shawn hat 25 Jahre lang immer 110% für uns Fans gegeben und war an so vielen Klassikern beteiligt wie kein anderer. Für diese Leistung hat er auf jeden Fall 10 Punkte verdient."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheUndertakerwrote on 29.04.2010:[10.0] "@TheJohnMorrison Es ist das Gimmick von HBK Mr. Wrestlemania zu sein, bei JEDER Wrestlemania an der er beteiligt war hat er die Show gestohlen und ich sag es auch da kann man nicht ein einziges Match herausgreifen. Nach WM 24 ist es schon schwer zwischen HBK vs Bret und HBK vs Flair zu entscheiden wenn man davon ausgeht das zu dem Zeitpunkt Naitch seine Karriere beendet hat. Zu meiner Wertung, einfach grandios, eine Legende der aus einem Kartoffelsack ein *****-Match herausholen kann.  @GAMBIT: LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOL"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Damon Strikerwrote on 29.04.2010:[10.0] "Auch ohne die Sentimentalität, die einem jetzt nach seinem Abschied zu überkommen droht, ohne Frage 10 Punkte! Hat mich seit meinem ersten Kontakt 1993 begleitet und begeistert (seine Pause war zufällig auch meine Pause vom Wrestling)! Grandios im Ring und am Mikrofon! Charisma für einen ganzen Roster und hat immer alles gegeben! Wenn man mich nach den besten Fehden/Matches im Mainstreamwrestling fragen würde, fallen mir spontan hauptsächlich solche mit Beteilung von HBK ein (u. a. die gegen Ramon, Jericho, Angle, Undertaker, Hogan, ... ). Sein nicht ganz so korrektes Verhalten in den 90er Jahren will ich ihm da einfach mal verzeihen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Reiskartoffelwrote on 29.04.2010:[10.0] "Gnadenlos UNTERbewertet, sosnt hätte er mind. 10 Punkte!  Er war eine moderne Legende. Er hat sich diesen Status hart erarbeitet. Er hatte viele legendäre Matches und es ist schade, dass er jetzt gegangen ist.  Und wenn man schon Shawn schlecht macht, dann braucht man schon eine gescheite Begründung. Weil ich weiß nicht, was man noch mehr von einem Wrestler will."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BlackXwrote on 28.04.2010:[10.0] "Mr. Wrestlemania, The Showstopper, The Icon. Genau das ist das Heartbreak Kid, Shawn Michaels. Der wohl beste In-Ring Worker den die WWF/WWE in meinen Augen je hatte. Sei es als Teil der Rockers, der nWo, D-Generation X oder Solo, HBK wusste immer im Ring und am Mic zu überzeugen. Ob er seinem Namen bei Wrestlemania gerecht wurde oder bei anderen Auftritten das Haus rockte, er lieferte immer eine gute Leistung ab. Das I-Tüpfelchen auf einer Bilderbuch Karriere bildete sein Abschied mit zwei Topfehden gegen den Deadman. Der Showstealer hat mehr als nur die Show, sondern auch die Herzen vieler Wrestlingfans gestohlen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: spankywrote on 20.04.2010:[10.0] "Der beste Wrestler für mich, da er alle wichtigen Kriterien nicht nur erfüllte, sondern bei weitem übertraf und wahrscheinlich nicht nur mir somit jedes Mal eine Wahnsinnsshow lieferte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Aquifelwrote on 20.04.2010:[10.0] "Shawn Michaels ist definitiv einer der Besten aller Zeiten. Auch wenn er Backstage wohl nicht immer der Umgänglichste gewesen sein soll (die Storys mit Bret Hart z. B. kennt ja jeder), im Ring enttäuscht er nie (zumindest, wenn man ihn nicht allzu undankbar bookt). Sein Karriereende bei Wrestlemania war emotional und seiner definitiv würdig. Schade, dass die WWE jetzt einen ihrer besten Worker verloren hat. btw. "Weil ich das Recht habe gebe ich 0 Punkte"? Wie wäre es mal mit einer Begründung? Leute rennen hier rum..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Berndwrote on 19.04.2010:[10.0] "Großartiger Performer, der mich seit Jahren langweilt. (6 Pkt) Edit: So, dann ist es also vorbei. Der beste Abgang eines WWElers aller Zeiten. Hoffentlicht versaut er es sich nicht. Und für die Karriere gibt's dann auch die 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mr Sirwrote on 19.04.2010:[10.0] "Mein ultimativer Lieblingswrestler aller Zeiten und für mich der Beste den das Business je hervorgebracht hat. Kleiner Funfact: Derzeit führt HBK hier auf Cagematch die all time Top 100 Liste der besten Wrestler an, ist an jedem der Top 5 Matches im Matchguide beteiligt gewesen, hält den ersten Platz der besten 100 Fehden mit seiner Fehde gegen Jericho und besetzt mit seiner Abschiedspromo ebenfalls Platz eins der Top 100 der Promos. Was konnte dieser Mann eigentlich NICHT?"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mick Funkwrote on 15.04.2010:[10.0] "Sollte es das tatsächlich gewesen sein mit der Karriere von Michaels, dann hat er den perfekten Moment gewählt abzutreten und am Ende nochmal einen Paukenschlag abgeliefert. Man muss sich eigentlich nur die Top 100 vom Matchguide anschauen um zu sehen wie gut Michaels im Ring war. Am Mic insbesondere als Heel ebenfalls grandios. Unterm Strich der für mich persönlich beste Mainstream Wrestler aller Zeiten und so wie es im Moment beim Nachwuchs aussieht (obwohl er keinesfalls schwach ist), wird das auch für immer so bleiben. Danke Shawn!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PunkZEROwrote on 15.04.2010:[10.0] "Was ein Techniker, was ein Durchhaltevermögen, was für eine bespielhafte Karriere voll Höhen und Tiefen...... was ein Wrestler. THANK YOU SHAWN"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: funkyskullwrote on 13.04.2010:[9.0] "Was soll ich sagen? Einer der Besten. Und trotz einiger Tiefschläge muss man doch sagen, dass das Niveau seiner Matches durchwegs hoch war - eine Legende. Ich werd' ihn vermissen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: coldbeer316wrote on 12.04.2010:[10.0] "Shawn Michaels! The Main Event! The Show Stopper ! Mr. Wrestlemania! Auch wenn er schon mehrere Jahre am überlegen war seine Karriere zu beenden, kam es doch für mich bei Wrestlemania sehr plötzlich! Hoffe nur das er sich nur eine weitere Auszeit nimmt und dann einen letzten großen Run bekommt! Habe ihn vom Anfang an seiner WWE Zeit gesehen und er hat mich immer gut unterhalten! Sollte es wirklich sein endgültiger Abschied gewesen sein dann wünsch ich alles gute bei seinen weiteren Projekten und das er möglichst bald in die Hall of Fame aufgenommen wird ! Danke HBK!"
Rating: 10.0
Sentiment: 0.9934107462565102
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Master of Disasterwrote on 10.04.2010:[10.0] "The Show stopped forever.  Aber der Heartbreak Kid wird für immer unvergessen bleiben!  Sein Charisma, seine In-Ring-Skills haben ihn zum besten gemacht, was es im Wrestling gibt. Eine würdevoller Abgang.  An Icon leaved the building."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GoddeKSCwrote on 08.04.2010:[10.0] "Man kann mit einem schlechten Gewissen auf sein Verhalten in den 90ern zurückblicken, man kann den Screwjob an Bret Hart als unverzeihlich ansehen, aber man kommt nicht umher seine Klasse bei jedem Auftritt aufs Neue zu bewundern.... Ich mag zwar ein HBK-Mark sein, aber ich bin es zurecht, denn es gibt keinen Wrestler, der diesem Mann das Wasser reichen könnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Matt Mackswrote on 06.04.2010:[10.0] "Der beste Beweis dafür, dass man eben nicht Muskeln wie ein Gorilla haben muss, um in der WWE über ein Jahrzehnt an der Spitze mitspielen zu können. Michaels verdankt seinen Erfolg seinem unbestreitbar großem Charisma und seiner noch größeren Leidenschaft, die er in seine Matches legt. Mehr als jeder andere amerikanische Topstar der letzten 20 Jahre war es stets Michaels' Ziel, die Fans in seinen Matches bestmöglich zu unterhalten, was bei seinem Talent bedeutete, dass er mitverantwortlich für ein paar der größten Klassiker der Wrestlinggeschichte auf amerikanischem Boden war. Für mich persönlich gab zwischen 2002 und 2010 keinen besseren Main Event-Wrestler im WWE-Stil und sein Karriereende bei WrestleMania 26 war für mich als Wrestlingfan das Ende einer Ära."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: rey mysterio 104wrote on 05.04.2010:[10.0] "Man kann wirklich nur danke sagen für die vielen tollen Matches. Das er es im Ring drauf hat(te) zeigt das er in den ersten 5! besten Matches bei Cagematch teilgenommen hat. Das spricht für sich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PSYCHQwrote on 05.04.2010:[10.0] "Shawn Michaels! Ich denke das reicht an Bewertung... :)    @HBK: Danke!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Parlaelwrote on 05.04.2010:[10.0] "Einer der besten seines Geschäfts. Klasse am Mic und vor allem super im Ring. Unglaubliche Ausstrahlung. Er ist mMn auch derjenige, der die DX erst so wirklich interessant macht und Hunter vor allem im Ring besser dastehen lässt. Auch und vor allem alleine finde ich ihn unglaublich toll. Man denke nur an das wahnsinns Match gegen den Undertaker bei WM 25. Alles in allem ein perfektes Komplettpaket eines Wrestlers.  Update: Jetzt wo er weg ist, vermiss ich ihn fast schon. Seine Bessesenheit, des Undertakers Streak zu brechen war in den letzten Wochen vor seinem Abschied ein fester Bestandteil von RAW. Das letzte Match gegen den Taker war ein würdiger Abschluss für eine fantastische Karriere. MMn jetzt schon eine Legende. Mal schauen, wann er in der HoF landet."
Rating: 10.0
Sentiment: 0.10085470085470084
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Cenafan 09wrote on 02.04.2010:[10.0] "Er war der beste der jemals im WWE-TV auftrat.  "Ladies and Gentlemen "The Heartbreak Kid" Shawn Michaels has left the building""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Batistawrote on 02.04.2010:[10.0] "Einfach unglaublig dieser Mann! Alles andere als 10 Punkte wären nicht gerechtfertigt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dediwrote on 02.04.2010:[10.0] "Wohl einer der besten Wrestler der Geschichte fast jedes Match ist ein Highlight . Aber nun hat er seine Karriere beendet. Thank You HBK!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Superfichte100wrote on 02.04.2010:[10.0] "Schade das er bei Wrestle Mania nicht gewonnen hat, leider hat nun seine Karriere beendet"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mc FriTzwrote on 02.04.2010:[10.0] "Der erste der großen ist von uns gegangen! Ich glaube auch das in den nächsten Jahren, welche wie The Undertaker oder Batista ihre Karriere beenden werden.   Shawn Michaels ist weiterhin einer der besten Wrestlern die es je geben wird!   Seine Karriere war mit vielen Höhepunkten bestückt.   Ich saß bei Wrestlermania 26 vor dem TV, ich konnte nicht glaub was da geschieh vor meinen Augen!     Shawn Michaels du wirst allen WWE Fans fehlen.     HBK   Mr. Wrestlemania  The Icon  The Showstopper  The Main Event   Has left the Building :(     I will miss you HBK!"
Rating: 10.0
Sentiment: -0.2569444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: chimpwrote on 01.04.2010:[10.0] "Als Wrestler und Entertainer war er sowieso immer über alle Zweifel erhaben, aber da ich ihn hauptsächlich Anfang der 90er gesehen habe, konnte ich ihm lange nicht die Topnote geben, da er mir menschlich und professionell einfach nicht gefallen hat. Nachdem ich ihn jetzt aber auch die letzten paar Jahre verfolgt habe und insbesondere nach seiner Abschiedsrede bei RAW komme ich an der 10 einfach nicht mehr vorbei. Inzwischen ist der Mann wirklich in ALLEN belangen ein Class Act und ich werde ihn vermissen!"
Rating: 10.0
Sentiment: -0.2884615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: judgement daywrote on 01.04.2010:[10.0] "Ohne Zweifel der größte Performer, den man in der WWE bisher gesehen hat. Man muss nur die Matchguide-Datenbank ansehen, an allen fünf höchstbewerteten Matches hat Shawn Michaels teilgenommen, sie zum größten Teil sogar getragen. Nicht nur im Ring ein unglaublicher Wrestler, der technisch auch in hohem Alter noch top war, sondern auch unglaublich charismatisch und mit tollem Mic-Work. Nach seiner Rückkehr 2002 auch unglaublich sympathisch, seinen Abschied einfach hinzunehmen fällt schwer. Thank you, Shawn!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The-Real-Diablowrote on 01.04.2010:[10.0] "Damit ist die Zeit des besten Performer der WWE nun endgültig vorbei. Mir bleibt kaum noch etwas zu sagen. Dieser Mann wird die größte Lücke hinterlassen, die ich mir bis heute vorstellen konnte. Auch wenn ich gehofft hätte, dass er vor seinem Ende den Streak beenden darf, war der Abschied wunderschön und ich denke und hoffe, dass wir alle diesen großartigsten Wrestler der bisherigen WWE-Geschichte (! ) in Erinnerung behalten werden. Vielleicht sehen wir ihn noch einmal als On-Air Charakter (GM? ) wieder. BTW: Ein Titlerun zum Schluss wäre nicht verkehrt gewesen, Vince :/"
Rating: 10.0
Sentiment: -0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rinskywrote on 01.04.2010:[10.0] "So, da es nun wirklich danach aussieht, als wäre es sein endgültiges Ende als In-Ring Performer, ist jetzt auch für mich an der Zeit eine Bewertung über ihn zu verfassen. Was soll man großartiges zu ihm und seiner Karriere sagen? Shawn war mein erster Favorit, als ich 1993 anfing Wrestling zu schauen und blieb es bis zum heutigen Tag. Sein Charisma, seine Athletik, niemand, wirklich niemand vereinte Wrestling und Sports Entertainment so gut wie er. Er war das perfekte Gesamtpaket. Kein anderer (am ehesten noch der Undertaker) schaffte es solch eine Stimmung zu erzeugen, die Marks und Smarks und alt und jung gleichermaßen zu begeistern wusste. Er war mein absoluter Held in der Jugend und ich bin so froh, dass ich erst ein paar Monate vor seinem Rücktritt, seine Biografie las und mir somit erst wieder richtig bewusst wurde, was Shawn Michaels für mich und das ganze Business bedeutet. Er wird eine große Lücke in der WWE hinterlassen. Egal wie schlecht eine Show war, wenn Shawn noch irgendwo in der Uppercard gebookt war, wusste man, dass die Show noch gerettet wird. Er war und ist zurecht der Showstopper, the Icon, the Main Event, Mr. Wrestlemania und zukünftiger Hall of Famer. Bis zur Raw Folge nach Mania bin ich nicht von einem endgültigen Abschied ausgegangen, doch Michaels Worte waren zu eindeutig um noch daran zweifeln zu können. Er macht es richtig, er verabschiedet sich auf der größtmöglichen Bühne, gegen den bestmöglichsten Gegner und das auch noch im Main Event. Danke!"
Rating: 10.0
Sentiment: 0.048076923076923066
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LabronBenoitwrote on 31.03.2010:[10.0] "Leider musste er jetzt doch seine Karriere beenden und ich denke, dass er auch nicht mehr zurückkommt. Das wars, aber für mich bleibt er der beste Wrestler überhaupt, hab in ihm immer ein großes Vorbild gesehen und das wird auch so bleiben! HBK, YOU ARE A GOD!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JohnnyCashwrote on 31.03.2010:[10.0] "1992, im Alter von 7 Jahren, wurde ich mit dem Wrestling-Virus infiziert. Unter anderem durch meine erste Sammelkarte... natürlich von HBK. Shawn Michaels war für mich, neben dem Undertaker, Bret Hart und RVD, Wrestling. Irgendwie ist es bei mir immer noch nicht angekommen, diesen Mann von nun an gar nicht mehr zu sehen. Er war ein Allroundtalent. Unfassbare Promo's (Who's your daddy, Montreal? ) und etliche geniale Matches kennzeichnen seinen Weg. Er hat einiges an Mist gebaut, aber wer nicht? Ich hätte ihm einen letzten World-Title-run so gegönnt. Schade, dass es nicht mehr dazu kommen wird. Noch schlimmer stimmt mich, dass wohl 3-4 großartige Fehden und 5-Sterne-Matches in ihm stecken. Ich werde ihn sehr vermissen... und das kann ich sonst nur von wenigen Wrestlern behaupten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: 123 kidwrote on 31.03.2010:[10.0] "Es kann nur einen Mr. Wrestlemania geben. Das hat Shawn bei WM 26 nochmals bewiesen. Dieses Match war ein krönender Abschluss einer einmaligen Karriere."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Franjisewrote on 31.03.2010:[10.0] "Der beste Wrestler aller Zeiten! Und das ist nicht nur so dahin gesagt. Es gibt kaum jemanden, der ihm Ring so ueberzeugend war wie Shawn Michaels. Er war und ist der beste In-Ring-Performer, und dazu mit schauspielerischem Talent ausgestattet, welches im Wrestlingbusiness seines Gleichen sucht. Keiner verkauft ein Leiden so wie HBK. Ausserdem ist er ein Meister am Mikrofon, verkauft jede Fehde exzellent. Und zu seiner Leistung im Seilgeviert braucht man nicht mehr viel zu sagen. Es ist unglaublich schade, dass er seine Karriere beendet. Ich werde ihn vermissen, the Icon, the Main Event, the Showstopper & MR. WRESTLEMANIA: "Heartbreak Kid" Shawn Michaels. There was never anyone any better!"
Rating: 10.0
Sentiment: 0.3958333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RIKYwrote on 31.03.2010:[10.0] "Ganz klare, unumstrittene und gerechtfertigte 10 Punkte! Meiner Meinung nach wird jede Bewertung unter 10 einfach der Leistung des Heartbreak Kid nicht gerecht. Viele seiner Matches sind Klassiker wurden ausgezeichnet und werden vielen, wenn nicht allen, die sie gesehen haben in Erringerung bleiben. Ohne Zweifel war er ein Enfant Terrible, hat sich quergestellt war ein Egomane, das mag alles sein, ABER er hat sich, besonders nach seinem Comeback auch für Gegner hingelegt um diese over zu bringen. Seine Matches, Promos und Auftreten sprechen Bände. Ich hatte mal das Glück und die Ehre den Heartbreak Kid zu sprechen (September 2008 in Paris). Starallüren hat er keine, ist bodenständig und glaubwürdig. Er spielt den Heartbreak Kid nicht... Er IST der Heartbreak Kid. Man soll auch nicht vergessen dass seine Wrestlingschule auch den einen oder anderen Star hervorgebracht hat, nicht zuletzt Bryan Danielson, oder Daniel Bryan. Man sollte jetzt nicht den Fehler machen und irgendjemandem mit dem Showstopper zu vergleichen, denn er war, ist und wird immer einzigartig bleiben! Ich für meinen Teil werde ihn sehr vermissen. Ich bin "mit ihm aufgewachsen", durch ihn habe ich das Wrestling entdeckt. Mr. Wrestlemania: Live long and prosper!"
Rating: 10.0
Sentiment: -0.3087121212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hulksterwrote on 31.03.2010:[10.0] "Der beste Wrestler aller Zeiten. Ich kann nicht glauben das seine Karriere zuende ist. Ich hoffe dass er noch einmal zürück kommt denn es wird sehr schwer diese Lücke zu füllen. Bei seinem letzten Kampf kamen mir die Tränen den uns verschwindet der beste von der großen Bühne. Thank You Shawn Michaels, The Heart Break Kid, The Showstopper, Mr. Wrestlemania."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: risktakerwrote on 31.03.2010:[10.0] "Einer der besten Wrestler und Entertainer aller Zeiten. 10 Punkte sind für seine Kariere hochverdient. Danke HBK"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: heartbreakwrote on 31.03.2010:[10.0] "Seit 17 Jahren mein Grund um Wrestling zu schauen. Eigentlich muss man über ihn gar nicht mehr verlieren als: Er war und wird wohl auch immer der beste Wrestler aller Zeiten bleiben. Und der Rücktritt auf der Höhe seiner Karriere macht seinen Status als Legend nur noch deutlicher. Die Lücke, die er hinterlässt, ist gigantisch und ich bin mir nicht sicher, ob diese in den nächsten Jahren zu füllen ist. Machs gut Shawn. Danke für alles."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Danicheckwrote on 30.03.2010:[10.0] "Er ist einer der Gründe, warum ich überhaupt angefangen hab, Wrestling anzuschauen. Er hat es verdient, so verabschiedet zu werden. Ganz klarer 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheRatedRLegendKillerwrote on 30.03.2010:[10.0] "Shawn Michaels zu bewerten ist für mich nicht schwer. Alles andere als eine 10 ist hier ganz einfach nicht zu rechtfertigen. Sein In Ring Können ist unübertroffen, egal ob Spot Wrestling, Chain Wrestling oder Mat Wrestling er hat alles drauf. Bei der Matchguide sind die ersten 5 Matches der Top 100 alle von Shawn Michaels. Er ist am Mic der Wahnsinn und einer der charismatischsten Superstars aller Zeiten. Er hat eine Ära geprägt, er war in der Zeit, als die WCW den Monday Night Raw dominierte, der einzige der die WWE noch attraktiv für die Fans machte. Wäre er nicht gewesen, würde es die WWE vielleicht gar nicht mehr geben. Seine Karriere ist der Wahnsinn. Er ist sicherlich der verdienteste Superstar der WWE und mit seinem letzten Match hat er es allen nochmal bewiesen. Es gibt ganz einfach niemanden der jemals an einen Shawn Michaels herankommen wird. Mr. Wrestlemania, the Icon, The Main Event, the Showstopper solche Namen bekommt man nicht, man verdient sie und wenn sie einer verdient hat, dann ist das Shawn Michaels. Jetzt bleibt nur noch zu sagen, Thank you Shawn und Heart Break Kid 4Ever..."
Rating: 10.0
Sentiment: 0.1452991452991453
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LebendeLeichewrote on 30.03.2010:[10.0] "Großartiger Wrestler schon seit einigen Jahren. Ich frag mich nur warum er und HHH als DX nicht so dargestellt werden wie sie eigendlich sind, nämlich Legenden!  EDIT: Ich habe mich bisher sehr zurückgehalten die höste Punktzahl zu geben aber er hat es einfach verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Viperwrote on 30.03.2010:[10.0] "Einer der besten Wrestler überhaupt! Sehr traurig, dass er aufhört, aber ich akzeptier es. Eine lebende Legende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Knurkselwrote on 30.03.2010:[10.0] "Während seiner Karriere eine Legende und nach diesem Ende erst Recht. Ich hoffe nicht, dass er den gleichen Fehler macht wie ein Flair oder Hogan. Thank You Shawn!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Zizouwrote on 30.03.2010:[10.0] "Sehr emotionaler Abschied. Endlich einer, der aufhört, wenn es am Schönsten ist, sprich er noch in der Lage ist ****+ Matches zu zeigen. Solch ein Abgang ist zwar immer auch schade für die Wrestlingwelt, aber die Gründe sind mehr als verständlich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Buddy Hawkswrote on 30.03.2010:[10.0] "Nach Wrestlemania 26 möchte ich nun endlich eine Bewertung zum HBK abgeben. Ich habe damit gewartet weil ich mir denke, dass dies wirklich der letzte große Auftritt von Shawn Michaels gewesen ist. Sicherlich mögen in ihm noch ein paar sehr gute Matches stecken aber man sollte aufhören bevor die Kurve irgendwann wieder nach unten zeigt. Dies hat der HBK hier nun hoffentlich getan, auch wenn mir der Gedanke nicht wirklich gefällt. Neben dem Hitman und dem Undertaker war Shawn Michaels DER Wrestler meiner Kindheit und Jugend und ist es bis Heute geblieben. Die Ausstrahlung, seine Fähigkeiten am Mic und im Ring und seine Leidenschaft für dieses Business waren vorbildlich. Es war eben das Gesamtpaket was einfach stimmte und einen jedes Mal auf's neue begeistern konnte. Einen solchen Menschen nicht mehr aktiv im Ring zu sehen ist traurig, jedoch hat er es sich zu 100% verdient. Wenn es wirklich dabei bleibt und er nach diesem großen Finale nicht auch einer derer wird die wieder zurück kommen, Chapeau! Wer es nicht gesehen hat, sollte sich Wrestlemania 26 und die darauf folgende RAW Sendung ansehen."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kankurowrote on 30.03.2010:[10.0] "In jeder Hinsicht einer der besten und unterhaltsamsten Wrestler aller Zeiten. Eine schier endlose Liste an tollen Matches und Promos machen ihn zu einer echten Legende. Sein Abgang wird eine große Lücke hinterlassen. Thank you, Shawn!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: kerschiwrote on 30.03.2010:[10.0] "Er ist einfach der Größte. Jedes gesagte Wort wäre zu viel. Icon, Main Event, Showstopper ...  Am besten gefällt er mir zwar als Heel, trotzdem bin ich heilfroh, dass Michaels uns noch so viele Jahre nach seinem Comebeck als Face unterhalten hat. Ich habe seinen Rücktritt immernoch nicht so ganz realisiert. Die Lücke, die er hinterlässt wird gigantisch sein. 10 Punkte!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: svenheinrichwrote on 30.03.2010:[10.0] "Was für ein Wrestlemania Match! Schade das er jetzt geht, hoffe aber dass er noch einmal zurück kommt und richtig aufdreht, nochmal World Champion wird und mit der DX nochmal auftrumpft, dass hätter er nach über 20 Jahren auf höchstem Niveau verdient!  Please Come Back!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Marcywrote on 30.03.2010:[10.0] "Nun ist er gegangen und die Lücke ist riesig. Zumindest die in meinem Herzen. 1993, als ich Wrestling zum ersten mal sah, war er dabei und gab 120%. 17 Jahre später war er noch immer bei 120% und hat den Abschied bekommen, den er verdient. Ich kann hier nur die Bestnote geben, für einen Mann, der das beste Gesamtpacket ist und war, was das Sports Entertainment zu bieten hat(te). Thank you Shawn! We'll never forget you!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Papa Popanzwrote on 30.03.2010:[10.0] "Guter Wrestler und Entertainer - zum einen hoffe ich, dass er Wrestlemania nicht verliert, andererseits sollte er auch nicht den Streak in Gefahr bringen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: shoopdawoopwrote on 30.03.2010:[10.0] "Ich schreibe mal etwas ausfürlicher als die 2 Sätze von eben. Shawn Michaels ist für mich wahrscheinlich der kompletteste Wrestler aller Zeiten, der darüber hinaus auch noch weiß wann es Zeit ist aufzuhören. Jemand der als "Mr. Wrestlemania" bezeichnet wird nicht etwa weil er die meisten Matches gewonnen hat sondern weil er sich immer den Allerwertesten für eine super Show aufgerissen hat und dem Main Event eben die Show gestohlen hat, verdient meiner Meinung nach die allerhöchste Hochachtung. Anders als so manch anderer der nicht dazu bereit ist andere over zu bringen (Triple H) oder nur einen Haufen Spots aneinanderhängt erzählt Shawn Michaels im Ring noch Geschichten von Körper und Geist, von Herz und Verstand und von Ehrgeiz und Willen. Dass er nun in einer noch nicht mal miesen körperlichen Verfassung aufhört ist noch einmal besonders hervorzuheben, denn dies ist im Wrestling eher die Ausnahmeerscheinung wenn man sich mal die Resteverwertung drüben bei TNA anschaut. Daher Hut ab für einen Wrestler den man vielleicht nicht unbedingt vergöttern, aber dennoch sehr respektieren sollte für das was er getan und ins Rollen gebracht hat. Und das ist nun mal nichts weniger als die WWE von den frühen 90ern bis zur Attitude Era und danach nochmal für ein komplettes Jahrzehnt."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: antihiphop2002wrote on 29.03.2010:[10.0] "In den 90er Jahren habe ich ihn noch gehasst wie die Pest, weil er für mich seinen damaligen Lebenswandel immer ausgestrahlt hatte und in allem was er tat Arrogant wirkte. Deshalb mochte ich ihn nicht, obwohl er damals schon ein weltklasse Wrestler gewesen ist. Doch seit seinem Comeback wirkt er ob nun im Ring oder in Interviews deutlich erwachsener. Er sieht nicht nur wesentlich Athletischer aus als in den Neunzigern, er ist es auch. Ich denke das sein Privates umdenken auch dazu geführt hat das er trotz seines Alters und der vielen wehwechen die er mit sich rum schleppt noch immer in der Lage ist jederzeit ein Macht of the Year zu bestreiten. Und wenn es das nach Wrestlemania 26 wirklich gewesen ist, dann meinen größten Respekt. Sicherlich ist er noch so gut das er wenn er sich ein bisschen schont noch 3 oder 4 Jahre auf diesem Level weiter machen kann. Aber zum richtigen Zeitpunkt aufzuhören schaffen ja auch nur ganz wenige. Und wenn er doch nur ne Pause einlegt um so besser denn jemandem wie ihm sieht man immer wieder gerne zu."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fortuna1895wrote on 29.03.2010:[10.0] "Alleine heute abend hat Michaels gezeigt was für ein Wrestler er ist. Und das ist einfach nur pefekt gewesen! Die letzten Großen Matches von Shawn waren perfekt, dank ihm. Seine Karriere mag zwar nun vorbei sein, aber sein Name wird für immer in den Büchern der WWE stehen müssen! Hall of Fame 2011, ich glaube der erste steht fest, zumindest wenn er seine Karriere wirklich beendet. Nach dem Abgang habe ich daran aber keine Zweifel!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KingSvenwrote on 27.03.2010:[10.0] "In all seinen Jahren durchweg mehr als überzeugend. Er besitzt außerordentlich viel Charisma, ist ein exellenter Mic-Worker und zeigt sehr gute In-Ring-Leistungen. Auch jetzt, im Spätherbst seiner Karriere immer noch in der Lage auch schwächere Worker zu guten Matches und gegen gute Gegner Showstealer zu zeigen. Auch er zeichnet sich durch Hingabe zum Business aus so das hier 10 Punkte zu geben fast schon ein muss ist"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: 1234wrote on 26.03.2010:[6.0] "Ich fühle mich persönlich nicht sonderlich von Shawn Michaels unterhalten. Er ist zwar ohne Zweifel kein schlechter Wrestler, doch zu viele seiner Matches sind durch sein Overselling geprägt. Zudem sagt mir seine Art am Mikrofon nicht sonderlich zu. Da er aber zweifellos viel geleistet hat und auch schon gute Kämpfe bestritten hat, reicht es für die 3."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Paierowrote on 26.03.2010:[10.0] "Bevor er möglicherweise sein letztes Match seiner Karriere bestreitet, muss ich ihn doch bewertet haben. Wenn man was mit Wrestling verbinden möchte, dann ist immer einer der erstgenannten Shawn Michaels. Ich könnte noch unzählig weitere Dinge aufzählen, warum er sich eine 10. 0 hat, aber das reicht alleine schon aus!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mathonewrote on 22.03.2010:[10.0] "Sehr sehr guter Mann, was er im Moment gegen den Taker zeigt ist mit das beste ich je von ihm gesehen habe, man könnte ihn seine verbissenheit, dass er siegen will, sofort als wahr abkaufen. von daher 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Moyawrote on 15.03.2010:[10.0] "Wer es schafft, auch im fortgeschritten Alter noch spektakuläre, intensive und unterhaltsame Matches zu liefern, hat die volle Punktzahl verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Straight Edge Jerichoholicwrote on 14.03.2010:[10.0] "Ein brillianter Mann mehr kann ich dazu nicht sagen!  Mic-Work = Klasse!  In-Ring Skills = Klasse Das einzige was mich immer bisschen nervt ist das Move Overselling beim Irish Whip aber hey Shawn Michaels hat das erreicht was viele nicht erreichen werden und deshalb 10 Punkte!"
Rating: 10.0
Sentiment: 0.15625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fat Mikewrote on 13.03.2010:[10.0] "In meinen Augen ist Shawn der beste Mainstream-Wrestler aller Zeiten. Charisma und Mikrofonfähigkeiten sind absolut Top und über seine herausragenden Wrestling-Skills braucht man eh kein Wort mehr verlieren. Kurzum: 10 Punkte für den Showstopper!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Galottawrote on 12.03.2010:[10.0] "Einfach ein Dauerbrenner, was soll man da noch groß begründen. Auch dieses Jahr wird er bei Wrestlemania gegen den Undertaker alle anderen in den Schatten stellen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Eazyewrote on 10.03.2010:[9.0] "Shawn Michaels hat eine beeindruckende Karriere hinter sich. Zuerst als Tag Team, dann als immer mehr ernst zu nehmender Einzelwrestler. Sein Ego war Anfangs schlimm, Ende der 90er drohte er endgültig abzustürzen, aber er kehrte 2002 zurück als besserer Mensch. Im Ring einfach eine Bombe, auch ansonsten ein charismatischer Wrestler, der seine Karriere als Legende beenden wird. Aber sein Ego war in den 90ern sehr daneben, weswegen ich ein Punkt abziehen musste, was mir aber nicht leicht fiel, ich aber schlussendlich doch durchziehen musste."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: tnawrestlingfanwrote on 10.03.2010:[5.0] "Ich kann garnichts mit dem Typen anfangen! Ich mag ihn nich, hab ihn nie gemocht.  Ich finde ihn seeehr langweilig! Mag sein das er in guter wrestler ist, aber wenn er immer wieder darüber spricht aufzuhören, dann soll er es auch entlich tun!  Im Endeffekt ist er nur eine Behinderung für aufsteigende Wrestler!"
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MarcTrixwrote on 10.03.2010:[10.0] "Er ist und bleibt der beste Wrestler aller Zeiten. Genial am Mic, jede Promo von ihm ist zu genießen. Hat mit dem Undertaker das beste Wrestlingmatch aller Zeiten gemacht. Alle Matches von ihm der letzten jahre sind einfach nur spitze, Wenn er aufhört hinterlässt er ein großes loch bei wwe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Xemnaswrote on 08.03.2010:[10.0] "Dieser Wrestler ist einfach nur verdammt gut. Ich brauch eigentlich keine Gründe für diese Bewertung geben- Seine Promos, seine Matches, einfach nur Klasse. Natürlich hat er damals den Screwjob mitveranstaltet aber für mich ist es jetzt verjährt. (Für den Hitman wahrscheinlich nicht :) )"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Yannick009wrote on 07.03.2010:[10.0] "Einfach ein unglaublicher Wrestler mit unglaublichen Micwork. Einer der Besten aller Zeiten..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dankowrote on 05.03.2010:[10.0] "Was soll man zu Shawn Michaels schon groß sagen? Alles was man über ihn sagen kann wurde hier schon gesagt. 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DaRkwrote on 04.03.2010:[10.0] "Ein super Wrestler. Es kann schon sein, dass er altersbedingt nicht mehr so beweglich ist, aber dennoch ein super Highflyer und Techniker. Seine Promos sind ebenfalls spannend und auch glaubwürdig. Die 10-Punkte hat er auf jeden Fall verdient."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mucs28wrote on 01.03.2010:[10.0] "Shawn Michaels, HBK, ist und bleibt einfach einer der besten Wrestler, die ich kenne. Auch in seinem hohen Alter ist er im Ring immer noch sehr, sehr gut (siehe WM XXV). Mal sehen was dieses Jahr wird. Durch sein unglaubliches Charisma ist er sehr wertvoll für die WWE. Er kann dem Zuschauer immer mal wieder eine Gänsehaut bringen, vor allem bei seinen Promos im Moment. Es lässt sich nicht bestreiten, er ist einfach mehr als GUT!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Y2Mikewrote on 28.02.2010:[10.0] "Weiß sowohl als Heel, als auch als Face volkommen zu überzeugen. Zählt trotz fortgeschrittenen Alters noch immer zu den besten Performern im gesamten Roster. Schauspielerisches Talent und Charisma ohne Ende.  Seit seinem Comeback auch charakterlich schwer in Ordnung.  Einer DER Legenden im Wrestling!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Acid Dwrote on 27.02.2010:[10.0] "Shawn war, und ist schon immer einer meiner Lieblingswrestler gewesen. Seine Matches haben mich schon damals als Kind begeistert, und sie schaffen es auch heute noch problemlos. Shawn ist einfach ein Gesammtpaket bei dem alles stimmt. In-Ring skills , Charisma, Mic Work, Finisher usw. Neben dem Undertaker, für mich, der inbegriff einer Legende. Ich freue mich auf WM 26."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sharpshooterwrote on 18.02.2010:[6.0] "Ich bin Hitman Fan, aber man kann ihm sein wrestlerisches Können und seine Mic Fahigkeiten nicht aberkennen! Hätte allerdings nach Ž98 nicht wiederkehren sollen. Aufgrund seines Alters wirkt sein Gimmick altbacken und mitleidserregend. "
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Cripplerwrote on 17.02.2010:[9.0] "Er ist eine lebende Legende , er ist schon sehr lange dabei und hat meiner Meinung nach immer etwas dazu gelernt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Evilsmilewrote on 14.02.2010:[10.0] "Der beste Wrestler aller Zeiten, er kann am besten fighten. Für die Arbeit am Micro kann man ihn nur beneiden ! Das Charisma ist spitze und der Showstopper ist ein Meister der Comedy und Witze. Heel oder Face, das ist egal, HBK rockt den Saal. Seine Ausdauer ist sehr groß, im Ring legt die Ikone richtig los.  Für klasse Technik und Highflying bekannt, spielt Michaels jeden an die Wand. Sein Gesamtpacket ist einfach das Beste ! Ach ja... persönlich und backstage natürlich äußerst bösartig, er hat schlimme Sachen angestellt... unangehme Dinge... er hat den Hulkster verspottet... er hat den Hitman betrogen und ebenfalls verspottet... er hat Pat Patterson schöne Augen gemacht oder so, damit er an die Spitze kommt (das schrieb hier jemand in seiner Bewertung)... er hat Marty Jannetty die Karriere versaut... Nächste Projekte : Dem Undertaker Leim in seinen Hut schmieren, erneut den Hitman betrügen, den Nasenhaarentferner von Triple H manipulieren, Big Show vor einem Match Abführmittel ins Essen mischen und CM Punk Juckpulver in den Bart streuen..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Manu Adamswrote on 13.02.2010:[10.0] "Shawn Michaels gehört zu den besten Wrestlern, der mit eigentlich jedem ein ordentliches Match zu Stande bringt. Man sehe sich nur seine Matchguide Liste an. Shawn hat in den letzten 8 Jahren fast 100 Matches bestritten die der Observer mit mindestens ***1/2 Sternen bewertet hat. Wer kann das noch von sich behaupten, bis vielleicht auf Kurt Angle. Ein ganz großer in diesem Sport."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: tobiasthegreatone1wrote on 13.02.2010:[10.0] "War schon immer ein von HBK, muss aber sagen das er tatsächlich einer der besten In-Ring Perfomer ist die es gibt. Als Heel genial, man erinnere sich nur mal an die " Whos your Daddy " Promo. Schon damals klasse im Team mit Marty Jannety. Und er kann auch den lustigen Typen( DX ) spielen. In sachen Entertaining und Mic-work ist er sicherlich einer der größten den die WWE je hatte. Er liefert auch heute noch Top Leistung und zeigt tolle Matches. Ich ziehe ihm einen Punkt ab da mich sein Momentanes DX Gimmick nervt EDIT : Find seinen Drang nach Taker echt gut und interessant es kommt der split von DX immer näher und deshalb gebe ich einen Punkt mehr."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: novacanewrote on 12.02.2010:[10.0] "Wahrscheinlich einer der besten Wrestler aller Zeiten. Respekt vor dem was er in seinem gesetzten Alter noch alles zeigen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: stinger89wrote on 04.02.2010:[10.0] "There is one Mr. WRESTLEMANIA.... einfach einer der komplettesten Wrestler aller Zeiten. Meiner Meinung nach hat er das beste Selling überhaupt..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Vanniwrote on 02.02.2010:[10.0] "HBK ist der erste Wrestler, der von mir die volle Punktzahl bekommt. Warum? Weil er es einfach verdient hat. Er ist im Ring einer der besten in der WWE, wenn nicht sogar der Beste mit all seiner Erfahrung. Dazu kommt, dass er eine verdammt großartige Körpersprache hat und mit Gestik und Mimik zu überzeugen weiß. Und auch am Mic können sich viele Superstars noch etwas vom Showstopper abgucken. Living legend!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GibDirDreggischwrote on 01.02.2010:[10.0] "Shawn Micheals ist wohlmöglich das kompletteste Paket, das je einen WWF/E Ring betreten hat. Ein Performer vor dem Herren in jeder Hinsicht und das seit nunmehr über 2 Jahrzehnten. Ein Mann, der nie deplaziert wirkt in dem, was er tut, der trotz seines nicht gerade furchteinflößenden Körperbaus für jeden einen glaubhaften und unberechenbaren Gegner darstellt. In-Ring-Skillz unverändert top, Charisma en masse, vom Mic-Work her der vielleicht beste Aktive, aber vor allem ist er einer der wenigen in der heutigen Zeit, der es schafft, in jedem Match, das er bestreitet, eine kleine Geschichte zu "erzählen". Das ist eine Kunst, die gar nicht hoch genug bewertet werden kann. 10 pkt nur, weil die Skala nicht höher geht ; -)"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Big Bad Booty Babywrote on 30.01.2010:[10.0] "Er mag vielleicht nicht mehr so beweglich sein wie manches Indy-Talenst, aber er vereint seine technischen Fähigkeiten sowie die als Highflyer mit einem einzigartigen Gefühl für Ringpsychologie. Das ist was ihn so gut macht. Hinzu kommen noch die glaubwürdigen, tollen Promos, sowie göttliche Exemplare wie die gegen Hogan anno 2005. Michaels ist einfach das Beste was man sich im Mainstream wünschen kann."
Rating: 10.0
Sentiment: -0.3499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: asraelwrote on 30.01.2010:[8.0] "Bin bereit mir hier auch negative Bewertungen einzufangen, aber da muss man wohl durch. Objektiv betrachtet ist Shawn Michaels ein toller Wrestler, eine absolute Legende. Schon im Team mit Marty Jannetty war er spitze. Der Turn, die Zeiten als Boy Toy und die Fehden mit Razor Ramon waren klasse. Technisch kann ihm niemand was vormachen und auch am Mic erzeugt er beim Publikum immer heftige Reaktionen, ob es nun Buh-Rufe sind oder frenetische Jubelstürme. Michaels hat immer polarisiert. Eigentlich eine Schande, dass er sich für Hogan hinlegen musste, da er der eindeutig bessere Wrestler etc. zu dieser Zeit noch war. Wie gesagt, eigentlich. Die Geister, des Montreal Screwjobs und seinem Getue, dass er sich für niemanden mehr hinlege, holten ihn hier ein. Und das ist auch gut so! Muss hier einfach den jungen Bret Hart-Fan von damals auspacken! Und die letzten ein oder zwei Jahre ist er auch nur noch mit seinem traurigen Hundeblick unterwegs. Wie weit das mit der Privatperson Hickenbottom und seinem Glauben zu tun hat, kann und will ich nicht beurteilen. Bisschen glücklicher könnte sein Gimmick aber wieder werden. Fazit: ein toller Showman, Mr. Wrestlemania - aber die Survivor Series von einst wird ihn auf meiner Favourite-Liste nie nach oben bringen!"
Rating: 8.0
Sentiment: 0.045312500000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RoHSupporterwrote on 25.01.2010:[10.0] "Shawn Michaels ist einfach der größte Sports Entainer den die Welt zu bieten hat. Er ist ein guter Single Wrestler sowohl auch Tag Team Wrestler. Er kann am Mic mehr überzeugen als so manch anderer *hust* triple h *hust* Im ring kann er jetzt schon sehr lange ohne einen druchhänger die besten Leistungen des Jahres zeigen. HBK ist und bleibt der beste -10-"
Rating: 10.0
Sentiment: -0.07142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: quazogenwrote on 25.01.2010:[10.0] "10 Punkte sind hier Pflicht. Seit vielen vielen Jahren steht Shawn für starke Matches, gutes Micwork und Entertainement der absoluten Weltklasse. Als Heartbreak Kid, Showstopper oder auch in der DX immer solide bis starke Leistungen. Seine vielen MOTY-Candidates (gegen Angle bei WM, Triple Threat WM, Jericho WM und nicht zuletzt sein "Return Street-Fight" gegen Triple H beim Slam 2002) machen schwache Momente mehr als nebensächlich in der Gesamtbewertung. Schwache Momente sind für mich die Fehde gegen JBL oder die 2 leider sehr schwachen Matches gegen Jericho. Schwach auf hohem Niveau.. Mr. Wrestlemania auch schon vor über 15 genial. Ein Geschenk ans Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Unrated Superstarwrote on 13.01.2010:[10.0] ""Buähähä - ich kann ihn nicht leiden" oder "Wuähähä - er hat Bret betrogen". Was sind denn das für Aussagen? Shawn schon lange dabei und kennt sich daher im Business aus. Neben dem Undertaker und Triple H ist er zur Zeit noch der einzige der alten Garde aus den 90ern, die dort bereits im Main Event standen. Außerdem ein hervorragender Worker mit enormem Ring- & Mic-Talent. Kann auch mit Grobmotorikern wie Chris Masters und Batista gute Matches zeigen."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mizisawesomewrote on 10.01.2010:[9.0] "Er hat das Buisseness ganz einfach verstanden: Zeig gute Matches, auch gegen schlechte Wrestler und dir stehen alle Türen offen. Natürlich hat er genau das auch nur zu seinem Vorteil ausgenutzt. Ich gebe 9 Punkte, weil er eine echte Größe ist. Ich ziehe den Punkt zur Zehn nur ab, weil er menschlich ein Arschloch (war), weil er nur noch ein Wrack ist, der keine Ausstrahlung mehr hat. Doch einfach für die großartigen Matches, die er abliefern kann hat er eine hohe Wertung verdient."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Exist 2 Inspirewrote on 09.01.2010:[10.0] "Ein Jahrhundert Wrestler, der wie kaum ein anderer als perfektes Beispiel für einen kompletten Wrestler dient. Tolle Micskills gepaart mit einem außerordentlichem Talent fürs Selling ergeben die perfekte Mischung. Im Ring kann man HBK ebenfalls nichts vormachen, er schafft es beinahe mit jedem Wrestler ein gutes Match auf die Beine zu stellen und ist immer für einen Klassiker gut (zuletzt gegen den Undertaker bei Wrestlemania 25). An den 10 Punkten für HBK führt einfach kein Weg vorbei!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: gunniwrote on 08.01.2010:[10.0] "Wenn er nicht grade als "DX" herumblödelt und sich auf das besinnt was er ist, nämlich "The Showstopper", "Mr. Wrestlemania". Dann kann ihm KEINER das Wasser reichen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RatedRJuliwrote on 07.01.2010:[10.0] "The Icon + Mr. Wrestlemania + The Main Event =10 Punkte"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: hatebreederwrote on 02.01.2010:[10.0] "Der beste WWE-Style Wrestler, den es gibt. Keiner kann mehr Dramatik in ein Match bringen als der Heart Break Kid. Shawn Michaels ist ein Top-Mann und es ist traurig, dass er seit Jahren in keiner ernsten Titelfehde mehr gewesen ist. Zum Abschluss seiner Karriere würde ich es ihm aber gönnen, sich das große Gold noch einmal umzuschnallen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Aesopwrote on 01.01.2010:[10.0] "Shawn Michaels ist einfach eine Legende, als Heel in den Nenzigern feierte er seinen Durchbruch und seine Rivalität mit Hart ist eine der besten aller Zeiten, auch heute kann er noch überzeugen obwohl ich die DX nicht mag und er lieber gegen Triple H fehden sollte, ist alles andere als eine 10 für mich nicht verständlich, im Ring super, am Mic super und bei WM 25 hat er eins der besten Matches seiner Karriere abgeliefert und das will schon was heißen außerdem war seine Fehde mit Jericho im Jahre 2008 die für mich beste in dem vergangenen Jahrzehnt."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: vgw77wrote on 24.12.2009:[10.0] "So oft wie kein anderer hat er die Show gestohlen, alles andere als die klare 10! wäre einfach nicht vorstellbar!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Detrituswrote on 13.12.2009:[9.0] "Wenn er irgendwann mal die Stiefel an den Nagel hängen sollte, wird der Wrestlingwelt durchaus einer der größten und besten Superstars fehlen. Allerdings befürchte ich ebenso, dass er im laufe der Zeit seine Legende zerstören könnte, wenn er nicht rechtzeitig den Absprung schafft. Klar sieht man ihn gern im Ring und seine Promos sind Weltklasse aber leider ist seine Zeit auch abgelaufen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: downtown2wrote on 02.12.2009:[10.0] "Der zweite Karriereabschnitt von Michaels ist für die Bewertung sehr wichtig, denn er ist der Entscheidendere. In der ersten Phase seiner Laufbahn ist Michaels durchaus zu einem Megastar in diesem Geschäft geworden und hielt eine Menge Gold. Jedoch erst die zweite Phase macht ihn zur Legende. Die persönliche Weiterentwicklung und die unzähligen fantastischen Matches die er seit seiner Rückehr noch an seine legendäre Karriere dranhängt, beeindrucken bis zum heutigen Tag. Wenn jemals irgendwo ein schlechter Kampf oder ein schwaches Interview von ihm auftaucht, sollte man es ins Netz stellen, denn derartiges gab es von ihm noch nie zusehen. Für mich der kompletteste Wrestler aller Zeiten und somit auch der Beste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mister MOwrote on 01.12.2009:[10.0] "Der Showstopper hat einfach alles was ein perfekter Wrestler braucht: Charisma, super Micwork, Ausstrahlung, enorm gute InRingskills (vor allem noch in so hohem Alter) und einfach die Fähigkeit die Crowd mizureißen!  Ob als Face oder Heel einfach Weltklasse!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MrSmackdownwrote on 30.11.2009:[10.0] "Shawn Michaels, was soll man zu ihm groß sagen. ^^ Ich wünsche mir so das er zum Ende der Karriere, welche ja nicht mehr soooo weit in der Zukunft liegen wird, noch einmal WWE Champion wird!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Okiawrote on 29.11.2009:[10.0] "Sehr guter Wrestler!  Konnte während seiner Karriere Fehden gegen alle guten WWE/WWF-Superstars führen, was nochmal Pluspunkte gibt, da die meisten Fehden sehr gelungen sind.  Sein Ego ist hoffentlich nach seinem letzten Titelverlust bzw. Anfang der 2000er wirklich gesunken und er ist nicht mehr so ein Arsch wie damals...  Das sollte aber nicht in die Bewertung mit rein..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Larskanonewrote on 23.11.2009:[10.0] "Einer der besten der da ist und der sein wird. Klasse Matches und klasse Fehden. Ein Mann mit dem man einfach viel in Verbindung bringt, wie den zahlreichen Titeln, dem Fensterwurf & dem Screwjob, diese und viele andere Gründe machen ihn zu einer lebenden Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Prince of darknesswrote on 22.11.2009:[10.0] "Ein weiteres Beispiel dafür das man auch im alter noch verdammt gute Matches abliefern kann. Zum beispiel das Wrestlemania Match gegen denn Undertaker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheLoudMouthwrote on 16.11.2009:[10.0] "Wohl der Beste, der je in einem WWE-Ring stand und stehen wird. Einfach nur göttliche In-Ring Skills, gepaart mit haufenweise Charisma und guten Leistungen am Mic. Simply 10 Points."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ultrakaoswrote on 06.11.2009:[10.0] "Der wohl beste Wrestler überhaupt (meine meinung).HBK ist ein Face wie kein anderer.Am Mic zwar keine granate aber einer der Besten Techniker.Die Matches werden immer so brilliant geführt wie bei keinem anderen (außer Chris Jericho).Und auch trotz des Alter ein stabiler Körper."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Last Ridewrote on 04.11.2009:[5.0] "Er zählt zweifelsohne zu den verdientesten aktiven WWElern, sein Körper gibt immer noch einiges her, solide am Mic. Begeistert hat er mich aber nie, was die bewertung zudem runterzieht ist sein Backstageruf. Er gilt dort neben HHH als einer der unbelibtesten Worker, der beispielsweise im Gegensatz zum Undertaker jungen Talenten eher im Weg steht und lieber selbst gut aussehen will. Alles in allem nach Punktabzug wegen der vorhandene Antipathie bekommt er immerhin noch 5 Punkte. By the way, DX geht mir gewaltig auf den Sack."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Remootwrote on 03.11.2009:[10.0] "Der Beste weil Kompletteste Wrestler auf der ganzen Welt.  "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: peiler316wrote on 02.11.2009:[10.0] "Mr. WrestleMania hat es einfach drauf, er kann mit/aus jedem Wrestler das beste rausholen. Er bekommt von mir volle 10 Punkte - sorry Bret. Montreal Scew Job/4 Jahre Pause - alles egal, ein treuer Angestellter der immer 100% gibt. Die HALL OF FAME wartet auf dich Shawn."
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: nWoWolfpacwrote on 30.10.2009:[6.0] "Zeigt gute Matches und ist ein toller Wrestler dafür die 6 Punkte.  Bis er zu gott gefunden hat oder was auch immer er gemacht hat war er aber ein unprofessioneller Volltrtottel backstage und deswegen hier "nur" 6 Punkte"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kurt Winkelwrote on 26.10.2009:[10.0] "Der Allrounder schlechthin. Michaels hält geniale Promos und ist unglaublich gut im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PhenomaneloneMjwrote on 23.10.2009:[8.0] "Ein unglaublicher Wrestler und Performer im Ring was hat er schon alles in der WWE geleistet seine Matches mit Wrestlern wie Kurnt Angle, Bret Hart, Undertaker, Y2J usw. sind echt ganz große klassiker...allerdings kriegt er nur eine 2 wegen seinem backstage verhalten er und HHH nutzen einfahc nur ihren Status aus um junge stars unten zu halten damit sie nicht verdrängt werden..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Perry Coxwrote on 22.10.2009:[10.0] "The Showstopper, the Headliner, The Mainevent, the Icon, nicht umsonst trägt Shawn Michaels diese Namen. Seit Jahren tut er alles, sei es als Heel oder als Face, um seine Fans auf ihre Kosten zu bringen. Tolle Promos, hervorragende Matches, was will man mehr? Wenn man auf seine Karriere zurückblickt, sieht man aber auch so ein bisschen sein Ego. Viele seiner World Titel hat er nicht in normalen Matches verloren, sondern aufgegeben oder sie wurden ihm aberkannt. Oder auch der Montreal Screwjob. Aber alle diesen Sachen werten die wrestlerischen Fähigkeiten eines HBK's ab. Er ist und bleibt für immer, und zwar jetzt schon, eine Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Triple Awrote on 22.10.2009:[10.0] "Shawn Micheals ist für mich der beste Wrestler aller Zeiten, er hat einfach Charisma, beherrscht viele unterschiedliche Moves (Highflying, Mattenwrestling) und hat eine gute Ringpsychologie. Er hat sehr viele Klassiker bestritten (WM 25 gegen Undertaker, WM 24 gegen Ric Flair, WM 23 gegen Cena, WM 10 gegen Razor Ramon, usw. ). Zudem ist es unglaublich wie gut er nach seiner langen Pause (wegen seiner schweren Rückenverletzung) wieder zurück kam. Der Mann hat zudem mehrere Matcharten (z. B. Laddermatch, Hell in a Cell) populär gemacht. Seine Selling-Fähigkeiten sind auch gut, er sieht immer aus als hätte er sehr große Schmerzen, wobei er auch manchmal übertreibt. Auch am Mikrofon hat er als Face als auch als Heel stets durch gute Promos (z. B. "Who's your daddy, Montreal ? " oder auch frühe DX-Promos) unterhalten. Zudem hat er auch nicht so oft den Titel gehalten (wie z. B. Hunter), sondern auch vorallem nach seinen Comeback öfters für Talente gejobbt (z. B. Randy Orton, Mr. Kennedy). Deswegen für mich der beste Wrestler den es bisjetzt gab."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fatewrote on 21.10.2009:[6.0] "Wie manche Leute bei Hogan, Triple H oder Jeff Hardy wegen diverser Backstagesachen Punkte abziehen und HBK trotzdem 10 geben können ist mir ein Rätsel. Michales hat in den 90ern so ziemlich jede Sünde im Wrestling beganngen die es zu begehen gibt. Ja er hat unglaubliches Talent, ja er ist einer der besten Entertainer aller Zeiten, aber er ist auch einer der charakterlosesten Wrestler aller Zeiten und dabei geht es nicht nur um den Screwjob."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Egtoniwrote on 17.10.2009:"Ich finde, das Shawn Michaels einer der populärsten und einflussreichsten Wrestler  überhaupt war. Desweiteren sind seine Matches immer ansehnlich."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: lostywrote on 15.10.2009:[6.0] "Tja, Shawn Michaels... Wo soll man da anfangen? Backstage-Eskapaden? Montreal-Srewjob? Die dauernde Weigerung, sich hinzulegen?   Oder bei seiner Engagement? Seinem Können? Oder bei der Fähigkeit, seit über 20 Jahren immer das MotN zu zeigen?   Ich weiß es nicht..."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: THE GAME 4-EVERwrote on 12.10.2009:[10.0] "Ist mit Abstand der beste WWE Style Wrestler der je gelebt hat. Ist wichtiger für die WWE, als jeder andere Wrestler im Roster, da er nicht nur die Fähigkeit besitzt aus einem Sack Reis ein *** Match herauszuholen sondern, im Gegensatz zu Leuten wie Triple H oder dem Undertaker auch dazu bereit ist neue Talente over zu bringen. Michaels ist selbst mit seiner angeschlagenen Gesundheit ne Klasse besser als der Rest des WWE Rosters. Es gibt Wrestler die brauchen kein Gimmcik bzw kein starkes und stehen trotzdem jahrelang an der Spitze. Michaels Gimmick mag an Glanz verloren haben gefällt mir aber noch besser als gewisse Mystery / Dead Man Gimmicks. Ist seit seinem Comeback der Got-To-Go-Guy wenn es ums Match of the Year geht. Alles andere als 10 Punkte sind ungerechtfertig."
Rating: 10.0
Sentiment: -0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Milowrote on 06.10.2009:[5.0] "Nein,ich kann mich mit HBK einfach nicht anfreunden.  Besonderes die Geschichte mit Bret Hart kann ich ihm einfach nicht verzeihen.  Dazu halte ich seine Wrestlings Skills, ein bisschen für überbewertet.  Fünf Punkte gibt es aber trotzdem von mir.  Da er viel für das Mainstream Wrestling getan hat"
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BoeserLobowrote on 05.10.2009:[9.0] "Ikone der WWE. Genial am Mic. Hat praktisch alles aus seinen Möglichkeiten gemacht. Legendär die Auftritte in der DX. Manko: hat großen Anteil am "Montreal-Screw-Job" gehabt und war/ist lange Zeit sehr egoistisch gewesen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Joschiwrote on 03.10.2009:[10.0] "Für mich neben dem Undertaker die Nummer 1 bei WWE. An die Leistung von ihm kommt im Moment niemand ran und es wird wohl auch in Zukunft niemand schaffen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Edgecutionerwrote on 01.10.2009:[10.0] "Tja, hier gibt es nicht viel zu sagen. Glatte 10 Punkte von mir.  Shawn begeistert mich nun schon seit 1992 mit seinem Wrestling-Stil, seinen Promos und überrascht mich mit seinen Leistungen im Ring heute genau wie damals. Ob bei der größten WrestleMania oder bei irgendwelchen kleinen House-Shows... HBK is simply awesome!  Match des Jahres 2009, 2008... ganz zu schweigen von seiner Zeit als Champion 1996, den vielen amüsanten DX-Runs, und und und. Wenn es nach mir ginge, könnte der HBK gerne nochmal 20 Jahre dranhängen, bis auch das letzte Haar ausgefallen ist ; ) Und da ich das jetzt einfach sagen muss, weil es MEINE MEINUNG ist und ich seit Ewigkeiten immer wieder mit Leuten über dieses Thema diskutiere: Shawn Michaels IST BESSER als Bret Hart. Diskussion beendet."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Genschiwrote on 30.09.2009:[10.0] "Der Beste Wrestler aller Zeiten, keiner hat in über 20 Jahren so begeistert für HBK,   damit meine ich vorallen seine Matches, er holt immer dass beste aus jeden raus, was man auf dieser Seite kann dies auch sehr gut nachvollziehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Titanwrote on 20.09.2009:[10.0] "Michaels ist definitiv die 10 Punkte wert. Er kann nach seinem Karriereende auf eine sehr emotionale Karriere zurückblicken. Aufgrund seiner technischen Beschlagenheit und dem Ansporn immer 100% zu geben, hat er es zurecht zu den Titelgewinnen von heute und damals gebracht. Man kann Hulk Hogan, Bret Hart, The Undertaker und Shawn Michaels durchaus in einem Atemzug nennen. Er heisst schließlich nicht umsonst Mr. WrestleMania, The Showstopper and Mr. Main Event."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Peepheadwrote on 19.09.2009:[10.0] "Er hat ein verdammt gutes Mic. Er hat eine saugute Technik. Er hat Charisma. Er kann ernst sein, er kann fröhlich sein, er kann witzig sein. Das alles kann nur einer: Der Meister des Superkicks. Natürlich Michaels ist sowohl bei Marks, als auch bei Smarks berühmt, so gut wie nur an einem Platz in der Welt haben sie ihn nicht ins Herz geschlossen: Montreal xD"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DHS aka Iceman Unleashedwrote on 17.09.2009:[10.0] "Es gab viele Superstars in der Zeit von 1988 bis 2009 die man als Legenden bezeichnen kann.  Seien es Bret Hart, Hulk Hogan, The Undertaker, Stone Cold, The Rock oder wer auch immer.  Shawn Michaels war immer der Talentierteste von allen im Ring fähig sofort von Anfang an 100 Prozent zu geben und die Show zu stehlen.  Shawn Michaels hat zwar von seiner In Ring Fähigkeit eingebüßt doch er ist immernoch einer der besten Entertainer der WWE und ich wünsche ihm nocheinmal einen Letzten Titelrun."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Basket Casewrote on 15.09.2009:[9.0] "Ohne Zweifel ist Shawn Michaels einer der größten Wreslter und Entertainer aller Zeiten. Wieso also nur 9 Punkte? Da ich eher auf Brets Seite stehe und ich es trotzdem nicht 100% vergessen kann, was für ein egoistischer Sack er früher war."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: polilopwrote on 11.09.2009:[10.0] "Gehört zu meinen absoluten Lieblingswrestlern und das nicht ohne Grund.  10 Punkte sind mehr als verdient. Er ist einfach der Showstopper, da gibt es nichts weiter zu sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Gialikesashleyverymuchwrote on 10.09.2009:[5.0] "Guter Techniker, mir allerdings zu egoman und im Hinblick auf Montreal hat erŽs bei mir gelinde gesagt verschissen. Allerdings habe ich Respekt vor den Leistungen dieses Mannes."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Scotty Westwrote on 05.09.2009:[10.0] "Shawn Micheals, The Showstopper, Mr. Wrestlemania, einer der besten Wrestler die ich je gesehn hab. Sein Gimmick einfach Klasse. Seine Matches immer sehr unterhaltsam, allein wegen einer einzigen Aktion die nur eine Sekunde dauert, die Sweet Chin Music. Allein wegen diesem Move kann sich ein Match total schnell wenden, außerdem kann er die aus fast jeder Position abfeuern. Sehr viele gute Moves und man sieht immer mal wieder was neues. Einfach nur ein witziger Typ mit Carisma, vorallem seine kleinen Ausraster sind sehr lustig. So einem wie ihm kann man nur 10 Punkte geben. Leider auch schon im Fortgeschrittenem Alter und sein Abgang rückt immer näher ... er sollte meiner Meinung nach noch einen World-Title gewinnen dürfen, weil er diesen mehr als nur verdient hat und seine letzte Regentschaft einiges zurückliegt. Er soll mit einem großen Knall seiner Karriere beenden dürfen, am besten noch Ric Flair irgendwie mit einbeziehen, unter dessen Karriere The Heart Break Kid bei Wrestlemania 24 einen Schlussstrich gezogen hat. Übrigens war ein tolles Match ..."
Rating: 10.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Big Crunccawrote on 03.09.2009:[10.0] "Shawn hat es einfach drauf. Selbst in seinem Alter ist er besser als 90% seiner Kollegen und er ist mein persönlicher Held."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: onlyKINGwrote on 30.08.2009:[10.0] "Seit Jahren ein unfassbarer guter Wrestler/Entertainer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Paulinawrote on 30.08.2009:[10.0] "HBK ist neben den Undertaker wohl einer der besten Wrestler zurzeit in der WWE, er gibt/gab immer alles und hat mit Undertaker ein Hammer Match bei WM25 auf die Beine gestellt. Es gibt keinen mehr der nochmal einen World Title verdienen würde als der Showstopper, damals schon als Tag Team Wrestler gerockt und nun gehört er zu den wenigen gründen RAW zu gucken, ich hoffe das er bald mit Randy Orton um den Titel fehdet."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Turboladerwrote on 26.08.2009:[10.0] "Zusammen mit dem Undertaker eine Legende. Ich mag seine Persönlichkeit zwar nicht so, aber da es hier um das Ringkönnen geht, was aufjedenfall überragend ist, sind es alles in allem 10 Punkte. Seine Promos sind auch klasse, vorallem die DX Promos, da musste ich eigentlich immer mindestens schmunzeln."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: teekay86wrote on 26.08.2009:[9.0] "Man kann fragen: was fehl HBK noch damit er 10 Punkte bekommt? Nunja, zum einen ist da Montreal und zum anderen seine Backstagebeziehungen die er (wohl) zusammen mit Triple H flegt. Aber warum fällt er dann bei meiner Wertung nicht genau so weit nach unten wie Hunter? Auf der einen Seite ist er meiner Meinung nach der bessere Wrestler als HHH, was jedoch noch viel schwerer wiegt ist, das er sich im Gegensatz zu seinem Kumpel nicht zu fein dazu ist auch mal den Job zu machen"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Woerpwrote on 12.08.2009:[10.0] "Alle unvergesslichen Momente dieses Mannes hier herein zu schreiben, dafür reichen die Zeichen nicht. Eine lebende Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ryklon Stephenswrote on 11.08.2009:[10.0] "Ob man Shawn mag oder nicht er ist das Gesamtpaket was es so nur ein einziges mal gibt und in der Form nicht wieder geben wird. Er kombiniert das Wrestling mit dem Entertainment in Perfektion. Besser als ein Hogan, ein Undertaker oder ein Bret Hart."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: 108 Sternewrote on 24.07.2009:[7.0] "Shawn Michaels....schwere Bewertung für mich. Ich halte Marty Jannetty für den besseren Wrestler. Aber Shawn ist auch gut, und hat es offensichtlich geschafft über Jahre hinweg populär zu bleiben. Ich fand ihn als Heel gut, aber als Face hat er bei mirnie funktioniert; ich war immer für seinen Gegner.    Auch als Person eher ein zweifelhafter Charakter; seine Rolle beim Montreal Screwjob war erbärmlich, seine Einflussnahme mit der Clique erinnerte an das, was auch bei Hogan & co in der WCW abging, und seine plötzlichen Verletzungen, wenn er einen Titel droppen sollte zeichnen kein gutes Bild von ihm als Worker."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kreuflexwrote on 23.07.2009:[10.0] "Allein das bei den vier besten MAtches (laut Cagematch Meinung) 3 mit Shawn Michaels sind sagt eigentlich alles. Meiner MEinung nach zusammen mit Ric Flair der bester Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DevonMileswrote on 20.07.2009:[10.0] "Ich hoffe auch, dass er nochmal den Titel bekommt. Er hat ihn sich erstens auf jeden Fall verdient und zweitens kann er auch gegen so ziemlich jeden super Matches zeigen. Andere hingegen bekommen ständig Titel, aber deren Matches sind meist nicht mehr so prickelnd. Nochmal ein grosser Titlerun bevor er aufhört..... mehr als verdient."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: chelsea-cenawrote on 19.07.2009:[10.0] "Hoffentlich darf er noch mal den WWE-Title haben! Der Mann kann jeden Wrestler pushen! Würd mich z. Bsp. über eine Fehde zwischen Swagger und HBK um den Titel freuen. Das wären klasse Matches"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: justusjonaswrote on 04.07.2009:[10.0] "Also was habe ich schon für sensationelle Matches von ihm gesehen! Vom Scheitel bis zur Sohle einfach genial der Mann. Man könnte ihm durch seien Backstagepolitik in den 90ern einen Punkt abziehen, aber er kommt nach seiner langen Auszeit geläutert zurück und zeigt bessere Matches denn je. Eindeutig 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: antitofumanwrote on 28.06.2009:[10.0] "10 punkte...was sonst"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Alorionwrote on 24.06.2009:[9.0] "In letzter Zeit gute Fehde und sehr gute Matches,  mochte ihn schon immer und er überzeugt mich immer wieder von neuem."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CMFabewrote on 15.06.2009:[10.0] "Einer der ganz ganz großen. Der zurzeit beste bei der WWE aktive Wrestler. Und den Titel kann ihm seit Jahren keiner mehr stritig machen. Kaum schwache Match und sowohl als Heel als auch als Face absolut unterhaltsam. Obwohl ich ihn ein Tick lieber als Heel sehe. Also eindeutig 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: El Reywrote on 23.05.2009:[8.0] "Ein guter Entertainer der hinter den Kulissen wie ein Politiker agiert und (zumindest damals) nur an sich denkt. Hat bei mir negative Spuren hinterlassen wegen dem was er Bret angetan hat aber glaube er bereut es oder hoffe es für ihn. Denn als wiedergeborener Christ kommt er sonst in die Hölle."
Rating: 8.0
Sentiment: -0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rated R Champwrote on 25.04.2009:[10.0] "Schlicht und einfach einer der Besten, wenn nicht der Beste, aller Zeiten. Das die WWE ihn seit 2002(! ) nicht mehr im Titelgeschehen berücksichtigt ist in meinen Augen schlichtweg ein Verbrechen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Eggywrote on 20.04.2009:[8.0] "Selbst im Alter und mit mehreren Verletzungsproblemen immer noch einer der besten Wrestler heutzutage. Er schafft es immer noch aus jeden Wrestler das beste herauszuholen und ein gutes Match hinzulegen.  Auch beweist er immer wieder in Promos, dass er zu den Besten gehört(jüngstes Beispiel ist die Fehde gegen Chris Jericho). Sein Match gegen den undertaker hat auch wieder gezeigt, dass er einer der besten Worker ist.    Leider muss ich ein paar Punkte abziehen, nachdem ich Bret Hart's Buch gelesen hab und die Schattenseiten des Heartbreak Kids genauer kennenlernte. Seine Technik ist in meinen Augen zwar immernoch einzigartig, aber sein Verhalten in den 90ern hält mich dann leider doch davon ab Shawn Michaels eine 10 oder 9 zu geben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SelfEsteemwrote on 19.04.2009:[10.0] "Mr. Wrestlemania, The Icon, The Showstopper, The Maineventer, HBK... egal wie man ihn nennt, er bleibt einfach eine gottgleiche Gestalt im Wrestling! Etwas anderes als 10 Punkte wären ein Witz. Ich kann auch beim besten Willen nicht verstehhen, wie man diesem Mann auch nur einen eizigen Punkt abzeiehen kann! Was soll ein Wrestler denn noch besser machen?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: heiniwrote on 10.04.2009:[10.0] "Shawn Michaels ist wohl einer der erfolgreichsten Wrestler aller Zeiten. Er hat nicht nur nahezu jeden Titel, den die WWE zu bieten hat, schon gehalten, er hat auch die besondere Fähigkeit aus seinen Gegnern die besten Matches herauszubekommen. Dies hat ihm ja auch Spitznamen wie "The Showstopper" oder "Mr. WrestleMania" eingebracht. HBK wird wohl auch eines Tages die Ehre der WWE "Hall of Fame" bekommen. Bis dahin können wir uns ja noch auf einige besondere "Heartbreak Kid-Momente" freuen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Theron083wrote on 10.04.2009:[10.0] "Einfach eine Legende. Einer der besten Wrestler aller Zeiten im Gesamtpaket."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: manager1977wrote on 07.04.2009:[8.0] "Technischer Überflieger der ersten Kategorie.War bei ihm aber nicht immer sicher was ich von ihm halten soll.Die Trennung der Rockers fand ich damals überzogen gemacht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheAdaawrote on 06.04.2009:[9.0] "HBK, ich muss meine Wertung ein wenig nach oben schrauben. Historisch gesehen war Michaels an (fast) allen wichtigen Ereignissen der WWE beteiligt die für Furore sorgten. Außerdem gibt er im Ring 100% und seine Fehden waren allesamt gut bis sehr gut. Die Fehde letztes Jahr gegen Jericho war der Hammer. Alles in allem verdient HBK 9 Punkte."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: chaoswrote on 05.04.2009:[10.0] "Absolute WWE Legende, zukünftiger Hall of Famer, Mr. Wrestlemania, The Showstopper mehr kann und braucht man über diesen einzigartigen super Wrestler wohl nicht sagen."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Amurebkuwrote on 05.02.2009:[10.0] "HBK ist einfach eine Ikone! Ein toller Wrestler, unterhaltsam am Micro und einer der Typen die immer alles geben! Bin froh, dass die WWE immer noch einen solch Klasse Mann in den Reihen hat! Würde mir wünschen, dass er nochmal einen Run als Champion bekommt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Finlay Thornwrote on 01.02.2009:[7.0] "Shawn hatte es in letzter Zeit wirklich drauf, in die spannendsten Fehden involviert zu sein. Erst die Geschichte mit Ric Flair, dann die Fehde des Jahres 2008 gegen Jericho und nun seine Storyline mit JBL, die ich wirklich gut aufgezogen finde und die neben der Legacy momentan dafür sorgt, dass mir Raw so viel Spaß macht. Es gibt zwar sicherlich einige Leute, die ich lieber mag, als den Showstopper, aber ich habe höchsten Respekt vor dem, was er geleistet hat und noch leistet."
Rating: 7.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The-Game91wrote on 01.02.2009:[10.0] "Für mich ist Shawn Michaels der beste Wrestler überhaupt. Sogar jetzt in seinem hohen Alter beweist er noch das er einiges drauf hat hoffentlich kriegt er noch seinen letzten run als Champion."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RatedRKO84wrote on 31.01.2009:[10.0] "Der beste noch aktive Mann im Wrestling, er ist schon lange eine "lebende Legende""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Brooklyn Brawler 1985wrote on 30.01.2009:[10.0] "Skills, Mic-Work und Charisma sind einfach perfekt - glatte 10 Punkte, keine Frage!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ShakDragoonwrote on 19.01.2009:[9.0] "Legende und zukünftiger Hall Of Famer, der auch heute noch sehr gute Leistungen bringt und einen (letzten) Titelrun mehr als verdient hätte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Peiski Bombwrote on 16.01.2009:[10.0] "HBK for ever!!! Mehr kann und muss man dazu nicht sagen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Reyforever1wrote on 12.01.2009:[10.0] "Mein Lieblingswrestler , der seit Jahren die größte und beste Show macht , die die WWE zu bieten hat . Er hatte die größten Fehden , die besten Matches und das wohl unterhaltsamste Tag Team der Geschichte mit der D-Generation X. Die 10 Punkte sind völlig verdinet"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Atze20wrote on 02.01.2009:[10.0] "Mein absoluter Lieblingswrestler. Selbst wenn er grottig wäre, würde er von mir eine 1 bekommen. Aber HBK ist j auch so, einfach genial. Seine Matches in den 90ern gegen Leute wie Scott Hall, The Undertaker oder Bret Hart gehören zu den grössten Matches aller Zeiten. Im Ring ist er ein Gesamtpaket, an welches kein Wrestler dieser Welt rankommt. Er kann wie kein Zweiter eine Story erzählen und ist technisch begnadet. Am Mic auch mit das Beste, was das Business je hervorgebracht hat. Charismatisch wie kein zweiter, was man auch in der JBL Fehde sieht. EInfach perfekt. Ein Wrestling Gott"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MarcB126wrote on 26.12.2008:[10.0] "Mr. Charisma, egal wann er abtritt, er wird es mit würde, wie Ric Flair, aber bis dahin wird er alles geben und egal in welchem match es ist, alles geben. Ric vs HBK Wrestlemania match of the millenium, weil niemand hat jemals in dem Buisness so viel Herz gezeigt. Weil das ist Wrestling, das ist Entertainmant."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ScrWwe94wrote on 18.12.2008:[10.0] "Toller Mann, der tortz langjähriger Verletzung nicht aufgegeben hat. Sehr überzeugende Mic-Skills.  "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Blazewrote on 04.12.2008:[10.0] "Shawn Michaels - in meinen Augen der beste den es bis jetzt gegeben hat. Ich würde ihn auch noch weit vor The Rock oder Steve Austin stellen, wenn es darum geht, den größten Star von RAW zu ernennen. Sicher kommt er nicht an Hulk Hogan ran, wenn es um die Wichtigkeit für die Company geht, aber wer weiss wo die WWE heute ohne ihn stehen würde. In Zeiten der Montagabendkriege ist er Vince McMahon stets treu gewesen, was ich ihm hoch anrechne. Er war das Aushängeschild der WWF, ganz klar. Die wrestlerischen Fähigkeiten eines Kurt Angles oder Chris Benoits, am Mikro und von der Ausstrahlung die Klasse von The Rock in einer Person zu vereinen ist schon einmalig. Im Ring gefällt mir der HBK von vor zehn Jahren, bis auf wenige Ausnahmen, noch besser. Logisch, dass er seinen Stil im Laufe der Jahre einschränken musste. Dennoch bleibt er bei WWE definitiv weiterhin der beste und ist immer, egal mit welchem Gegner, egal an welcher Show, ein Garant für sehr gute Matches. Persönlich war er früher unterste Schublade, aber der Montreal Screwjob ist auf dem Mist von Bret Hart und Vince gewachsen. Ganz unschuldig ist er auch nicht, aber allein schuld? Definitiv nicht."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: homicidal cena michaelswrote on 04.12.2008:[10.0] "Er ist ein hammer Wrestler am Mic sehr gut und besitzt eine enorme Ausstrahlung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MICHAELAundMARKUS4EVERwrote on 25.11.2008:[6.0] "Kurz und knapp. Hervorragender Athlet und Entertainer, aber Backstage ein arroganter Haufen. Er könnte sich öfters mal beim PPV für die neue Generation hinlegen. Seinem Standing würde dies nicht schaden."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SirJohnsonwrote on 25.11.2008:[10.0] "10 Punkte für eine lange erfolgreiche Karriere für einen der besten Sports Entertainer aller Zeiten. Seine Fehde mit Jericho war grandios!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Ayatollah of RocknRollahwrote on 24.11.2008:[10.0] "Eine der größten Gestalten aller Zeiten, revolutionierte das Wrestling, es gibt nichts über ihn was nicht schon gesagt wurde. Selbst in diesem Alter macht er, wie Mountie bereits schrieb, 90% des Lockerrooms noch was vor und zeigt ihnen wie es geht. Dazu ein begnadeter Heel mit der für mich legendärsten Montreal-Promo."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: michawrestlingfanwrote on 23.11.2008:[10.0] "Einer der besten, wenn nicht so gar DER beste, Entertainer den ich je gesehen habe! Die Fehde gegen Chris Jericho dieses Jahr war wieder einmal der beste Beweis wie wichtig er für die WWE ist!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Eddiewrote on 18.11.2008:[10.0] "Volle Punktzahl, einfach vom Zeitpunkt 0 an immer in Topform, und sehr innovativer Wrestler. Er war einer derjenigen die das Ladder Match weiterbrachte, der erste im Hell in a Cell. Einfach nur genial der Wrestler, da er einfach Technik, Schnelligkeit, Mic Work, Moves und alles perfektioniert, und alles überzeugend macht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Michael Patrickswrote on 16.11.2008:[10.0] "HBK ist einfach einer der Wrestler der auch nach 15-20 Jahren noch immer begeistern kann. Auch wenn die WWE gerade andere pusht darf man ihn nie vergessen. Für mich ist Shawn aktuell der beste Techniker neben Edge in der WWE. Das Match gegen Ric Flair bei WM24 hat bewiesen das Michaels auch noch mit großen Knie und Rückenproblemen einer der besten im Ring ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: GroundBreakingwrote on 12.11.2008:[10.0] "War für mich schon immer und wird für mich auch immer der beste Wrestler aller Zeiten sein. Man mag darüber gerne anderer Meinung sein, doch in diesem Fall interessiert sie mich nicht. HBK hat an etlichen Matches mit Gänsehautfaktor teilgenommen und hat mit den unterschiedlichsten Leuten wahre Klassiker auf die Beine gestellt. Er war es, der Flairs letztes Match mit so besonders gemacht hat. Ich wage es sogar so weit zu gehen zu sagen, dass ich nicht wüsste wer sonst diesen Moment so besonders hätte machen können. Genug des Lobes, den Rest kann man meiner Wertung entnehmen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CLIBwrote on 07.11.2008:[9.0] "''The Heartbreak Kid'' Seine besten zeiten sind natürlich schon vorbei, aber er zeigt immer noch spannende matches & mann merkt garnicht dass er älter wird er zeigt immer noch solche moves wie früher (z.B. Moonsault). Aber ich finde er sollte jetzt noch eine Fhede mit einem Wrestler bekommen der einen Titel hat, meiner meinung wäre es am besten wenn er mit Batista eine Fhede anfangen würde."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: fk00awrote on 06.11.2008:[10.0] "...simply the very best sportsentertainer in the world today^^"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: domi1984wrote on 05.11.2008:[10.0] "The Showstopper,The Headliner,The Heartbreakid,Mr. WrestleMania,The Icon,Shawn Michaels...noch fragen?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Animal360wrote on 22.10.2008:[10.0] "Hat eine enorme Ausstrahlung auf das Publikum das ihn trotz der letzten Rückschläge immer noch liebt. Hat in der Vergangenheit viel geleistet was ihm von mir eine 10 einbringt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MrWrestlingwrote on 17.10.2008:[10.0] "Einer der Charismatischten Wrestler aller Zeiten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: pildaYwrote on 17.10.2008:[10.0] "Bin schon lange ein absoluter Fan ! Montreal hin oder her ! Macht immer Spaß =)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Pinguwrote on 13.10.2008:[10.0] "Wenn ich könnte würde ich hier 20 Punkte vergeben. Lebende Legende, mehr muss man dazu nicht sagen, der heute auch zu seinen Fehlern aus den 90ern steht. Denn immer im Main Event und kein Titelgewinn... großer Respekt für einen großen Mann. Dazu am Mikro unsterblich!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kolliaswrote on 09.10.2008:[10.0] "Für mich der beste Wrestler überhaupt. Ein schlechtes Match mit ihm gibts nicht, jeder noch so schlechte wird durch das Match gezogen, sodass es mindestens befriedigend wird. Die Anzahl der Klassiker mit Shawn Michaels ist kaum mehr festzuhalten, da er auch heute noch in der Lage ist ein ****-Match abzuliefern.  Abgesehen von den überragenden Ringskills hat er natürlich auch am Mikro die nötige Ausstrahlung und ist schauspielerisch definitiv ganz weit vorne dabei, das zeigt nicht zuletzt die geniale Fehde mit Jericho aus dem Jahr.  Das er hinter den Kulissen weniger freundlich war/ist mag einige vielleicht stören, mich kann das aber nicht von einem Spitzenwrestler ablenken."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: StoneColdRevowrote on 07.10.2008:[9.0] "Vor ein paar Monaten gab ich Shawn Michaels eine 3. Nur bekommt er eine 2. Er ist wirklich gut im Ring und seine Promos find ich auch toll. Shawn Michaels vs. Jericho < 3"
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RBoss90wrote on 06.10.2008:[8.0] "Ich mag ihn nicht als Person, aber rein objektiv bewertet ist er im Ring ein guter Entertainer."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Lethal Combinationwrote on 04.10.2008:[10.0] "Wer ihn mit einer Punktzahl jenseits der 5 bewertet,der ist einfach ein Mega Mark oder er hat einfach keine Ahnung.Im Ring unglaublich.Egal wen -er zieht die meisten zu einem mindestens guten Match.In meinen Auger,der beste ,,WWE-ler''"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Scotty 2 Hottywrote on 01.10.2008:[10.0] "Großartig. Mehr braucht man zu Shawn Michaels nicht zu sagen. Wer soviele Klassiker bestritten hat und teilweise immernoch bestreitet, kann nur als Legende bezeichnet werden, die die vollen 10 Punkte verdient. Dazu sehr gut am Mikrofon und auch im fortgeschrittenen Alter eines der Highlights in der WWE!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: D- Xwrote on 30.09.2008:[10.0] "Shawn Michaels is einfach der coolste Wrestler den es jemals gab und im Moment ist! Keiner ist so gut und spaßig drauf als HBK.. Er ist in jeder situation witzig und das macht ihn einfach menschlich und Sympatisch und zudem ist er ein außergewöhnlicher Wrestler!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SirFlubbi42wrote on 29.09.2008:[10.0] "HBK! Inzwischen ist er ja ein gestandener Mann, doch in jeder Sekunde die er auf Sendung ist merkt man wieviel Spaß er hat. Ein hervorragender Wrestler, der sich durch seine Art und teilweises Overselling nicht überall beliebt macht, doch bei mir steht er hoch im Kurs."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: nicojansonwrote on 24.09.2008:[10.0] "Einer der besten aller Zeiten. Der Showstopper hat in seiner Karriere schon so viel erreicht, ohne in den letzten Jahren viele Titel zu halten. Wird mir für immer in Erinnerung bleiben weil er einer der besten ist, ein cooles Theme und Finisher hat und bei WM XX im besten ME aller Zeiten gestanden hat und Ric Flair in den Ruhestand schickte. HBK is the best."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Wise Warriorwrote on 15.09.2008:[10.0] "Wird wie guter Wein immer besser: die Einbußen zu denen ihn sein Körper zwingt macht er durch Glaubwürdigkeit und Intensität wett!"
Rating: 10.0
Sentiment: 0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Niklas1106wrote on 28.08.2008:[10.0] "HBK ist einfach ein Wrestler, der in allen Aspekten überzeugt. Er hat wrestlerisch schon eine Menge auf dem Kasten und lässt sich auch teilweise auf riskante Aktionen ein. Wenn er in den Ring steigt ist eine gute Show so gut wie sicher. Auch storyline-technisch ist er jemand, der viel Potential mit sich bringt. Die aktuelle Fehde mit Y2J ist sehr unterhaltsam und hat noch eine Menge Möglichkeiten für eine Fortführung. Hoffentlich bleibt es spannend. 10Punkte für den Showstopper, Mr Wrestlemania..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Cloverwrote on 24.08.2008:[9.0] "Wurde von Bret Hart ja als Nachmacher ohne eigenes Profil beschimpft.. kann man sehen wie man will. Kontrovers ist er jedenfalls - aber im Ring und am Mic extrem begnadet und ohnehin ein zukünftiger Hall Of Famer. Daher 9. 5 Punkte so oder so!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: nacho83wrote on 17.08.2008:[10.0] "Einer meiner ewigen Favoriten. Ein unverwechselbarer Charakter und ein Ausnahmetalent im Ring, egal ob als Heel oder Face. "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kane15wrote on 14.08.2008:[10.0] "Klasse Wrestler, Super Techniker und eine Legende :)"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: wwegirlwrote on 13.08.2008:[10.0] "Ich liebe diesen Kerl.. Als heel mag er auch faszinieren aber als Face finde ich ihn auch nicht schlecht. Mit der DX war er unschlagbar!  Er ist einfach eine Legende und die WWE soll sich unterstehen HBK durch irgendeine bescheuerte SL schlecht zu machen oder zu versauen!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: sono fagunwrote on 06.08.2008:[10.0] "Absoluter Kracher und der eindeutige Beweis für seine Klasse war das Career-Ending-Match gegen Ric Flair."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: KirKanoswrote on 02.08.2008:[5.0] "Natürlich muss man Montreal pp. mit in die Wertung einbeziehen, auch wenn das einigen Leuten nicht gefällt. Wrestlerisch und mictechnisch sicherlich einer der besten ever im Geschäft und auch eine Legende im Wrestling.(auch wenn sein selling albern wirkt und mir nicht gefällt [Lässt seine gegner schwach erscheinen]).  Aber wie gesagt....seine Eskapaden zeigen auf, was er für einen Charakter hat. Soll sich zwar mittlerweile gebessert haben, aber die Vergangenheit gehört halt zu seinem Leben dazu und muss auch bewertet werden.  "
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Moritz Weigandwrote on 01.08.2008:[10.0] "In allen Belanger einer der besten Wrestler aller Zeiten. Das Sports Entertainment kann froh sein, dass es ihn gibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: squadra3wrote on 29.07.2008:[10.0] "Ego hin oder her - einer der sich immer voll für die Fans reinhaut!  Meiner Meinung nach der beste Wrestler/Entertainer aller zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rated-R Starwrote on 29.07.2008:[10.0] "Mann, was hab ich HBK in den 90ern gehasst. Lag auch daran dass ich absoluter Bret hart fan bin. Doch mittlerweile ist HBK in meinen Augen einer der besten wenn nicht sogar der Beste Wrestler in der WWE. Einfach nur klasse was er immer für Leistungen im Ring bringt. Und seit er 2004 zurückgekehrt war ist er in absoluter Topform. Ich hoffe, wir dürfen ihn noch lange im Ring sehen und hoffe noch viel mehr, dass er irgendwann nochmal Cjmap wird. Verdient hat ers auf jeden Fall.  "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ThaRealnesswrote on 26.07.2008:[10.0] "Ein Wort: Genial. 10/10 auf jeder Ebene. Hoffe das HBK dem Wrestling Business noch lange erhalten bleibt. :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: aulitwrote on 23.07.2008:[10.0] "Ich zitiere hier gerne Mal Tina Turner: "You're simply the best, better than all the rest. Better than anyone, anyone I've ever met. " Das reicht."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Weihnachtsmannwrote on 23.07.2008:[6.0] "Kann wenn er will gute Matches und Promos abliefern. Sein Verhalten war aber oftmals grenzwertig, dafür gibts Abzüge."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: wXw Fanwrote on 22.07.2008:[10.0] "Weltklasse Mann, auch noch im Alter."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Champwrote on 22.07.2008:[6.0] "Sehr guter Wrestler, aber wegen seinem übergroßen Ego und dadurch das er nie clean verlieren kann, gibt es starke Abzüge."
Rating: 6.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sting93wrote on 22.07.2008:[10.0] "Shawn Michaels ist mein absoluter Lieblingswrestler bei der WWE und einer der besten Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: the Rockwrote on 22.07.2008:[10.0] "Shawn Michaels.... was soll man da noch großartig dazu sagen. Die WWE wäre nie da, wo sie jetzt ist, ohne einen HBK, Showstopper oder Mr. WRESTLEMANIA. Er trägt diese Spitznamen zurecht. Eines meiner ersten Matches, dass ich von ihm gesehen habe, war der 60-Min. Iron Man gegen Bret Hart (ein genialer Iron Man, den ich mir immer wieder ansehen könnte). Und durch seine genialen Fehden wie Bret Hart, Kurt Angle, Triple H oder seine aktuelle Fehde mit Y2J. Er schafft es einfach, mich immer wieder mich für ihn zu begeistern. Danke Shawn...^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Peisistratoswrote on 16.07.2008:[9.0] "Sicherlich einer der größten Wrestler unserer Zeit, allerdings gibt es aufgrund eines bestimmten Ereignisses im November 1997 nicht die volle Punktzahl ; )"
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: PhilippPascalUndertakerfanwrote on 11.07.2008:[4.0] "Also Shawn Michales ist cool und neben Undertaker und Triple H noch einer der echt geilen WWF- Zeit Wrestler.  Aber ich finde er wird zu sehr nach oben gedrängt. Momentan jedoch die Fehde mit Jericho und Batista war schon cool. Aber leider von mir nur eine 4 Weil ich ihn als Gegner von Batista und Undertaker nicht mochte ^^.   Sorry Michaels Fans."
Rating: 4.0
Sentiment: 0.06666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ecw foreverwrote on 08.07.2008:[10.0] "Nach Bret Hart einer der beste Wrestter aller Zeiten. Für mich jedenfalls. Er hat aber die Fähigkeit jeden zu einem guten Match zu ziehen. Er gefiel mir als Face am Anfang bei den Rockers. Besonders mochte ich ihn um WM12. Auch heute noch genial. Am Mic einer der besten auch wenn nicht der beste. Seine Gimmicks sind genial und er bringt es immer gut rüber, sowie hat er die Fähigkeit den Superkick schnell auszuführen ganz gut für Segmente!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bandiwrote on 07.07.2008:[10.0] "Topwrestler, bringt immer Leistung und hat Ausstrahlung  mein absoluter Favorit  "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: andrekoenigwrote on 20.06.2008:[10.0] "Der Heartbreak Kid ist, genau wie der Undertaker, ein Mann der auf jeden Fall in die WWE Hall of Fame kommt. HBK ist einfach ein super Techniker. Er trägt den Spitznamen "the Main Event" nicht um sonst. Er ist ein Mann der so ziemlich mit jeden ein gutes Match bestreiten kann und er hat auch den Namen Showstopper mehr als verdient."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Holly23wrote on 16.06.2008:[9.0] "Kliqmitglied  legendäre Matches    muss ich mehr sagen ?"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Beastwrote on 13.06.2008:[10.0] "Er ist einfach einer Ikone! HBK is THE BEST!  "
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bokthersawrote on 05.06.2008:[10.0] "Ein genialer Allrounder, der gegen jede Art von Wrestler in so ziemlich jeder Art von Stil erfolgreich antreten kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DeadHeadwrote on 03.06.2008:[9.0] "Natürlich er mag seine Macken haben und von Montreal wollen wir gar nicht erst reden aber .... Er ist halt einer der besten. Er hat tonnenweise Charisma, im Ring liefert er auch gut Matches ab, also ich denke er ist Top."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JthePwrote on 02.06.2008:[10.0] "Das beste was Wrestling zu bieten hat. Für mich hat er immer noch das beste Gesamtpaket. Überragende Fähigkeiten im Ring und am Mic. Sein Charisma ist unbeschreiblich. Ein Wrestler der Extra-Klasse. Einfach HBK"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Shawnywrote on 28.05.2008:[10.0] "Er ist mein lieblingswrestler auch wenn er schon in die Jahre gekommen ist macht er einen super Job! "
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sockewrote on 24.05.2008:[10.0] "HBK is ne Legende, genial am Mic (ich sag nur DX), genial im Ring, siehe letztes Ric Flair Match bei WM24, einfach klasse halt. Ein Titel könnte man ihn mal wieder geben. Klare 10 Punkte, mehr geht ja nich :("
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Brooklyn Brawlerwrote on 16.05.2008:[10.0] "HBK. Showstopper. Mr. Wrestlemania. Hielt verdient alle Titel, von den Rockers bis heute einfach im Ring und außerhalb die Show in Person. Eine mehr als verdiente 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Haribowrote on 14.05.2008:[10.0] "Charisma, Mic-Work gepaart mit immernoch guten In-Ring-Skills. Einer der ganz großen des Sports Entertainment."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: AngleClockwrote on 12.05.2008:[10.0] "Einer der besten Sports-Entertainer der Welt der wirklich alles für die Fans gibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Frutzwrote on 06.05.2008:[10.0] "Ich habe ihn gehasst, geliebt, verachtet und verehrt. Seine Ringfähigkeiten sind Weltklasse, seine Micfähigkeiten - Weltklasse, er hat Ecken und Kanten in- und ausserhalb des Ringes. 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RllKllOwrote on 06.05.2008:[10.0] "Ich persönlich würde diesen Mann gerne als WWE Champion sehen, anstatt Triple H.  Am Mic stark und im Ring trotz seines Alters einer der besten."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dave Concordiowrote on 06.05.2008:[10.0] "Jeder macht Fehler, HBK hat Rechenschaft abgelegt. Im Ring unglaublich gut gewesen 8okay jetzt abgebaut, aber in seinem Alter wird das wohl drinnen sein) außerdem als Entertainer unerreicht. "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: azirufwrote on 29.04.2008:[10.0] "mein all time favorite! weltklasse am mic, im ring und in den promos, genial bei dx und als heel, etwas schwächer aber immer noch extrem gutes face, da kanns nur eine note geben!"
Rating: 10.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Tomkowrote on 22.04.2008:[10.0] "THE MAINEVENT!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Main Eventwrote on 19.04.2008:[10.0] "Einer der besten Wrestler und Entertainer der Welt! Als Tag Team mit Marty Janetty war er schon mein Favorit. Er hat IMO die richtige Aufteilung zwischen Stärke, Speed und Technik und geniales Micwork. Er ist einfach THE MAIN EVENT."
Rating: 10.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kingpin39wrote on 18.04.2008:[10.0] "Gehört für mich unter die Top 5 der besten Wrestler aller Zeiten!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: xXShawnMichaelsXxwrote on 14.04.2008:[10.0] "Wie man an meinem Namen unschwer erkennen kann ist er mein Lieblingswrestler, vor allem deswegen das HBK es schafft aus (fast) jedem ein gutes Match zu zaubern außerdem macht er nicht immer dasselbe sondern hat unterschiedliche Moves  Und eine out-of-nowwhere Sweet Chin Music ist immer gut anzusehen"
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: nightfallwrote on 10.04.2008:[10.0] "Einer der Besten, obwohl er im RL doch recht schwierig sein soll."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kain Wolfsheadwrote on 09.04.2008:[6.0] "So ziemlich der überbewerteste Wrestler aller Zeiten! Wobei man hier sehen kann, was gute Promotion erreichen (bzw. anrichten) kann. Mr. WrestleMania, Showstopper... Die Rockers wurden von Marty Jannetty getragen, und auch nach dem Ende des Team war er noch lange nicht auf Martys Level. Er kann sich einfach besser in Szene setzen und hatte... ausführliche Unterhaltungen... mit Pat Patterson um die Spitze zu erreichen. OK. Ist ein Gerücht. Aber könnte sich ein Gerücht und Grundlage so lange halten, wenn nicht was dran wäre? Egal. Trotz allem mag ich ihn ganz gerne. Er ist aber weit entfernt davon, der beste zu sein, wie es von vielen gerne kolportiert wird."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Pulpulwrote on 07.04.2008:[10.0] "Gehört ohne Zweifel zu den größten Wrestlern aller Zeiten. Stark im Ring, kann jeden Wrestler gut aussehen lassen und gehört wohl zu den charismatischsten Leuten, die das Sports Entertaiment je gesehen hat."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: BlackPhoenixwrote on 06.04.2008:[10.0] "er weiß einfach wie man die Leute unterhält und ist dabei noch einer der besten wrestler der Welt !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: SeEn2005wrote on 04.04.2008:[10.0] "Er ist einer der denkwürdigsten und atemberaubensten Wrestler, die es gibt, wenn nicht sogar je geben wird. Das Match mit Ric Flair bei Wrestlemania war eines der besten Matches, die Michaels bestritten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MysterioMisticowrote on 03.04.2008:[10.0] "Als Wrestler einfach eine Nummer für sich. Immernoch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TheROCKwrote on 03.04.2008:[10.0] "Er ist der beste Wrestler aller Zeiten. Sogar als großer Bret Hart Fan muss ich zugeben, dass Michaels einfach der Beste Wrestler aller Zeiten ist und vermutlich bleiben wird. Natürlich heißt es bei dem Titel ''Bester aller Zeiten'' immer, naja es gibt auch noch den und den. Natürlich bleibt Hogan bekannter und beliebter. Ric Flair wird erfolgreicher als Shawn Michaels bleiben, aber niemand ist und wird im Ring so lange und auf solchem Niveau wrestlen können, wie Shawn Michaels. Selbst Kurt Angle kann auf lange Sicht gesehen nicht den Standard eines HBK halten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mrkennedy1990wrote on 03.04.2008:[10.0] "Einer der wenigen Wrestler, die wirklich eine 10 verdient haben. Ganz großer Entertainer und ein mindestens genauso guter Wrestler. Kann aus fast jedem ein 4-Sterne-Match zaubern. Hoffentlich noch mindestens 10 Jahre aktiv."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Akkuswrote on 27.03.2008:[6.0] "Ist nicht so mein Fall. Klar er ist ein Superstar in der WWE der sich immer hinlegt für jüngere, aber ich kann mit ihm nichts anfangen, gebe ihn aber ne 3."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ruppiwrote on 27.03.2008:[10.0] "Aufgrund von Montreal und einigen anderen Vorfällen bin ich in Versuchung, ihm eine 0 zu geben. Aber so ist das Business. Ich finde es nicht in Ordnung, was er und Vince damals abgezogen haben, aber ich kann sie (vor allem Vince) verstehen. Und ansonsten ist Michaels einfach ein sehr guter Wrestler mit enormen Fähigkeiten im Ring, am Mic, einem enormen Charisma und einem Gimmick, dass einfach passt. Hoffe für ihn, dass er sich nicht kaputt wrestlet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Wieauchimmerwrote on 24.03.2008:"Fällt mir bei Shawn Michaels schwer eine Bewertung zu finden. Einerseits in der Lage fantastische Matches zu liefern, hat durchaus Charisma und gutes Micwork (allerdings in meinen Augen beides nicht (mehr) so überragend wie es gerne dargestellt wird), andererseits muss man sagen dass Shawn Michaels oftmals sehr unprofessionell arbeitet (siehe Hulk Hogan - dafür gibt es KEINE Entschuldigung), vermutlich auch aufgrund Backstage-Politics bzw. seines Standings auch im Gegensatz zu anderen Wrestlern regelmäßig sein Moverepertoire auspacken darf und eben auch nur gefühlte dreimal im Jahr bei ner Houseshow auftritt, also auch nicht ansatzweise die Belastung anderer Wrestler hat und er eigentlich auch in jeder Storyline (übermäßig) gut dargestellt wird."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ultimate-warrior-xwrote on 23.03.2008:[10.0] "Hat alles erreicht, was will man mehr? Der wohl best Wrestler den die WWE hat. War einer der Gründe warum ich in den 90 angefangen habe Wrestling zu schauen. Ich Hoffen wir sehen den noch viele Jahre und auch mal wieder als Champion. Never Stop this Show!!!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Ric Flair88wrote on 20.03.2008:[10.0] "Ist heute ein ganz anderer als noch vor 10 Jahren. Von der Technik und Ringpsychologie her gesehen mit Ric Flair auf eine Stufe zu stellen. Montreal war zum Großteil nicht seine Schuld. Nach seiner Rückkehr hat er sich ganz in den Dienst der Company gestellt (siehe SummerSlam 2005) und auch kein Problem damit sich gegen aufstrebende Stars wie John Cena hinzulegen. Außerdem ist er mit über 40 noch wesentlich besser als ein Großteil des aktuellen Rosters. Michaels wird als ein ganz großer in die Geschichte des Wrestlings eingehen- vüllig zurecht!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DirtiestPlayerwrote on 18.03.2008:[10.0] "Absoluter Dauerbrenner der WWE! Fand ihn besonders als Heel Anfang der 90er spitze. Für mich damals der beste Intercontinental-Champion aller Zeiten. Auch heute noch mit Top-Matches und jederzeit Mainevent-würdig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: edge-head92wrote on 17.03.2008:[8.0] "Hat in letzter Zeit etwas nachgelassen...trotzdem einer der Besten!!!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DonTwrote on 17.03.2008:[10.0] "Einer der Männer, die WWF/WWE machten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: xXJohnCenaXxwrote on 17.03.2008:[10.0] "Er ist schon seit Jahren in der höchsten Wrestlingleague im Sports Entertainment und liefert schon seit Jahren die geile Matches, was ihn zu meinem absoluten Lieblingswrestler macht "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Instant Classicwrote on 13.03.2008:[10.0] "Einfach der Showstopper und Main Eventer.  Weiß aus jedem, ein gutes Match rauszukitzeln und Segmente mit ihm sind immer ein Highlight. Hoffentlich gönnt WWE ihm irgendwann einen erneuten längeren WWE Title Run."
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Timetoplaythegamewrote on 11.03.2008:[10.0] "Genialer Wrestler. HBK forever"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Desperadowrote on 09.03.2008:[10.0] "Natürlich volle Punktzahl für HBK. Denn Michaels hat einfach alles, was man als Wrestler braucht. Ein grandioses Können im Ring, eine tolle Ausstrahlung und außerdem ist er so unterhaltsam. Einfach der perfekte Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: UltimateCarebearwrote on 06.03.2008:[6.0] "Er mag unzählige Klassiker abgeliert haben im Laufe seiner Karriere aber ich kann ihn einfach nicht mehr sehen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fabbowrote on 03.03.2008:[10.0] "The Showstopper. "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: fzero9wrote on 02.03.2008:[10.0] "HBK ist einfach der beste"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Meanbeastwrote on 25.02.2008:[10.0] "Meiner Meinung nach die perfekte Mischung aus Techniker und Entertainer! Ist schon lange dabei und hat seinen Stellenwert bzw. seine Erfolge redlich verdient! Hut ab!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: caterwrote on 23.02.2008:[10.0] "Man mag über sein (früheres) Backstageverhalten denken, wie man will, aber man muss neidlos anerkennen, dass HBK einer der besten und unterhaltsamsten aktiven Wrestler ist. Charisma bis zum Abwinken und sicherlich kommender Hall of Famer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: NoSoulwrote on 16.02.2008:[10.0] "Er ist einer der wenigen, der sowohl wrestlerisch als auch durch sein Showtalent überzeugt. Seine Glanzzeit in den 90-ern war einfach fantastisch. Auch heute ist er noch gut, müsste aber mal wieder in einer guten Storyline eingebaut werden. Eine letzte Titelregentschaft und danach Karriereende fände ich gut. Er sollte auf jeden Fall den Absprung schaffen, bevor er nicht mehr auf dem hohen Niveau mithalten kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: the original chriswrote on 07.02.2008:[10.0] "legende einfach nur legende dieser mann "
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Fumaryuwrote on 07.02.2008:[8.0] "Technisch gut gerüstet,hatte Anfang der 90er ein klasse Image. Den Motreal-Screewjob fand ich Mist. Sieht heute körperlich etw. kaputt aus. "
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Legionwrote on 29.01.2008:[8.0] "Kontrovers ist er sicherlich, aber dennoch eine Legende und ein zukünftiger Hall of Famer. Seine Matches haben mich größtenteils immer überzeugt und das er schon so lange dabei ist verdient einfach Respekt. Wenn sich seine gesundheitlichen Probleme allerdings nicht bessern, sollte er langsam ans aufhören denken."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Reno Cortavillawrote on 21.01.2008:[10.0] "Mit der Einzige WWE'ler, der mir gefällt und gefallen hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Showstopperwrote on 21.01.2008:[10.0] "Meine absolutes Idol.Er überragt so gut wie jeden,in Kategorien Micwork und In Ring Skillz.Ist der WWE immer treu geblieben.IMO der grösste Wrestler aller Zeiten.Auf zum 5 World Titel"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: AnFuwrote on 14.01.2008:[10.0] "Der Showstopper, eine Legende! Er sollte langsam aber ans Abtreten denken, ist im Ring ein Wrack! Trotzdem ein klasse Wrester und ich vergebe die Bestnote!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Joe710wrote on 08.01.2008:[10.0] "Was kann man denn noch zu HBK sagen. Was anderes als eine 1 könnte ich ihm gar nicht geben. Er hat das Buissnes geprägt wie kein zweiter und selbst durch seine Skandale, hat er sich unsterblich gemacht. Niederlagen schaden seinem Standing jetzt sowieso nicht mehr, deßhalb find ich es cool, dass er in letzter Zeit ziemlich oft gejobbt hat. Und trotzdem kann ihm fast keiner, was seine In Ring Skills und Promos betrifft, dass Wasser reichen. Michaels ist für mich Sports Entertaiment."
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: H B Kwrote on 08.01.2008:[10.0] "Vom Entertainment und Können her gesehen, einer der besten Wrestler der letzten 10/20 Jahre (mindetens)! "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mr sledgehammerwrote on 04.01.2008:[10.0] "Ein brillianter Techniker und einzigartiger Showman. Natürlich darf man Montreal nicht vergessen, aber wen kümmert das schon, in Momenten wenn die ganze Halle bei der Sweet Chin Music brüllt und tausende Stimmen seinen Entrance-Song mitsingen. Michaels ist der geborene Entertainer und wird wohl immer unvergessen bleiben."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Stone Cold Andywrote on 04.01.2008:[10.0] "Eine glatte 1. Viele tolle Matches machen HBK zu einem meiner Favoriten."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "Verdammt war und ist der gut. Shawn Michaels kann mich immer noch sehr gut unterhalten und hat seine Erfolge auch redlich verdient. Schade, dass er und Bret Hart sich nicht verstehen-zwei so brillante Wrestler!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: King of Queenswrote on 02.01.2008:[10.0] "Toller Entertainer, super Wrestler. Gehört zur absoluten Weltspitze und das nach unzähligen Verletzungen, Rückschlägen und recht hohen Alters. Sensationell!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: yogywrote on 01.01.2008:[10.0] "HBK-respekt vor ihm!Hällt sich jetzt auch schon fast 20Jahre an der Spitze und kann immer noch fantastische Matches zeigen.Mitte der 90 war er der beste Entertainer!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: EvenflowDDTwrote on 31.12.2007:[8.0] "Shawn Michaels, immer wieder schön ihm zuzusehen. Egal als ob Teil der DX, Face, Heel oder sonst was. Doch irgendwann hat man genug und ich hoffe das es bald eine Storyline gibt in der Triple H gegen HBK turnt. Diese sollte mit einem "Loser Retires" - Match enden, welches Triple H als Heel gewinnt sodass HBK als Face einen Abschied kriegt denn solangsam sollte Michaels sich (zuletzt auch wegen seines Knies) überlegen aufzuhören."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hanksterwrote on 29.12.2007:[8.0] "Menschlich verachte ich ihn zutiefst. Über seine wrestlerischen Fähigkeiten gibts hingegen nichts zu sagen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MA Excellentwrote on 29.12.2007:[10.0] "Tja, Shawn Michaels, für mich eine kontroverse Figur. Ich sehe ihn in 3 Phasen : 1. Die "AWA/WWF-Rockers"-Phase, in der er im Tag-Wrestling Maßstäbe gesetzt hat; 2. Die erste Singles-Phase, in der er einer der besten IC Champions ever und ein sehr überzeugender WWF Champ war. Menschlich jedoch sehr abstoßend: sehr divenhaft, überheblich und tückisch. Hang u.U. auch mit seinem Drogenkonsum zusammen. 3. Die aktuelle Singles-Phase, nach dem gesundheitlich Supergau und mit nun gefundenem Glauben. Charakterlich völlig überzeugend, jedoch ist wrestlerisch der Zenit etwas überschritten. Ergo: Auch wenn es mir als Bret-Mark schwer fällt, eine 1 für all die Jahre hervorragendes Wrestling und Entertainment."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Y2J Michaelswrote on 27.12.2007:[10.0] ""The Headliner, The Main Event, The Icon, The Heartbreak Kid" ist für mich der beste Performer in der Wrestlinggeschichte. Niemand weiß so gut wie er, wie man das Publikum in seinen Bann zieht und es zum kochen bringt. Für mich  macht das sogar den Montreal Screwjob vergessen, weil das was er für die WWE getan dagegen nur ein kleiner Ausrutscher war. Er ist für mich der beste und wird es auch immer bleiben. Nebenbei wünsche ich mir das HBK einmal wenigstens noch Champion wird. Von mir aus sogar bei Smackdown. Hauptsache er wird es nochmal"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bullit69wrote on 27.12.2007:[10.0] "Aufgrund seiner Verdienste kann man ihm ja nur 10 Punkte geben!!Aber spult schon ein paar Jahre das selbe,immernoch unterhaltsame Programm ab!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Aglaoswrote on 21.12.2007:[10.0] "Ich verbeuge mich vor dem größten Entertainer und Athleten, den die Wrestling-Welt je hervor gebracht hat! Dieser Mann hat mich unterhalten wie niemand sonst, heute noch genauso wie früher. Ich bin auch der Meinung, dass er langsam zurück treten sollte. Nicht deshalb, weil er seine Leistung nicht mehr bringen kann, sondern um zu verhindern, dass er es irgendwann wirklich nicht mehr kann. Ich möchte ihn nicht wie Ric Flair im Ring rumdümpeln sehen. Vorher ist allerdings unbedingt noch ein Rematch gegen Khali fällig. Die Niederlage gegen den wankenden Leuchtturm war IMO eine einzige Frechheit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Comptonwrote on 20.12.2007:[10.0] "Einer der besten WWE-Performer aller Zeiten, sowohl im Ring als auch außerhalb. Stieg vom Jobber zum WWE-Champion auf, revolutionierte die Wrestlingwelt mit der D-Generation X, löste sich von Drogenproblemen und kehrte nach einem vermeintlichem Karriereende vermeintlich zurück - was will man mehr?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Schandmaulwrote on 04.12.2007:[10.0] "Als Face mittlerweile etwas verbraucht. Ein Heel Turn wäre göttlich. Aber auch so. imo einer der besten aller Zeiten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: EGeraldhuebnerwrote on 01.12.2007:"Vorab ... er war (und ist) mir noch nie besonders sympatisch gewesen, also ein sehr guter und ebenso überzeugender Heel (das brauchte er allerdings nicht zu spielen, es ist sein wahres Ego - Montreal Screwjob), gestehe ihm aber zu, ein exzellenter Techniker zu sein (wenn er das zeigen will bzw. darf und vor allem muß) und ein sagenhaftes Durchhaltevermögen wie sonst kein zweiter zu besitzen ... außerdem der Meister des (glaubhaften ! ) Oversellings (z. B. gegen Undertaker ... verkauft deren Gimmiks grandios). Sollte aber langsam dem Business den Rücken kehren und eine Schauspielerkarierre anstreben, denn hier liegen inzwischen - rein altersbedingt - wirklich seine großen Stärken."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: RhinoRaineswrote on 28.11.2007:[10.0] "Er ist einer der besten Wrestler aller Zeiten! Ihm kann auch der MSJ nichts anhaben, er ist und bleibt ein hervorragender Sports-Entertainer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: hoghwartwrote on 26.11.2007:[10.0] "Hat soviele Klassematches abgeliefert in seiner langen Karriere, dafür kann man ihm gar nicht genug danken. Schade, dass er wohl so schnelle keinen Titlerun mehr bekommen wird"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Heatwrote on 25.11.2007:[10.0] "Er ist es wirklich, The Mainevent, The Headliner. Leider layed er in letzter Zeit down for absolutely everybody, was ich angesichts seines immernoch vorhandenen Riesentalents schade finde. Dennoch einer der besten Wrestler der Welt."
Rating: 10.0
Sentiment: 0.022222222222222227
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Sandman16wrote on 22.11.2007:[10.0] "Ein erstklassiger Wrestler, der ein gutes Match nach dem anderen zeigt. Bei Michaels passt alles zusammen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Masterpiecewrote on 20.11.2007:[2.0] "Shawn Michaels hat mir bei den Rockers und bis hin zur Survivor Series 1997 (Montreal Screwjob) am besten gefallen, danach muß ich ganz ehrlich sagen, ist Shawn Michaels für mich ein Hass-Objekt!"
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Koitnreinawrote on 10.11.2007:[10.0] "Shawn Michaels ist einer der besten im Wrestlingbussines und ich hoffe er wird bei den Surviver Series Champ. :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Rated-R-Fanwrote on 29.10.2007:[8.0] "Im Ring natürlich Weltklasse,doch am Mic nie wirklich talentiert."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Benny110106wrote on 28.10.2007:[10.0] "So sehr wie wir ihn in den 90ern gehasst haben so doll lieben wir ihn nun ;-) Michaels schafft es nun seit 20 Jahren den Fans eine reaktion aus den Leib zu prügeln ;-) Früher oftmals Grund für Randale und heute Grund für Nervenzusammenbrüchen bei den Mädels (und dass mit Haarausfall ;-) )HBK ich muss einfach sagen, du bist immernoch Top. Auch wenn wir die Montreal nie verzeihen werden die Note 1 bekommste trotzdem. Sei es einfach für die Dreitigkeit bei diesen Scheiß mitzumachen."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Thomas Carlsonwrote on 28.10.2007:[10.0] "Hätte man damals ihn bewertet wo er backstage sich ziemlich daneben benahm hätte es wohl nur schlechte Noten gegeben. Erst war er Flugkünstler, dann entwickelt er eine Persönlichkeit, zementiert später seinen Status als Maiin Eventer und nach langer Verletzungspause wird er dann endgültig zur Legende. Hat er eigentlich schon mal ein schlechtes Match gehabt? Alles andere außer einer 10 kann ich ihm nicht geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mdbnasewrote on 27.10.2007:[10.0] "Immer kontrovers, aber einer der besten Entertainer und Athleten, die das Wrestling in den letzten 20 Jahren gehabt hat. Ein ganz Großer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jayem187wrote on 26.10.2007:[10.0] "The Showstopper, the Legend, the Icon ... DER Entertainer schlechthin. Montreal Screwjob hin oder her, dieser Mann ist einfach unvergleichlich. Ob am Mic oder im Ring, als Face oder als Heel, Shawn hat mich immer wieder beeindruckt und immer wieder einen draufgesetzt als ich dachte: "Da geht nix mehr! Die Spitze des Eisbergs ist erreicht. " Eigentlich schade das er im Moment wahrscheinlich seinen letzten Run bekommt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: CM Dannywrote on 20.10.2007:[10.0] "Er ging den Wandel im Wrestling immer voll mit. Er hat Charisma. Er ist einer der besten Entertainer am Mikrofon. Er spielt sowohl Face als auch Heel glaubhaft und tritt für das ein woran er glaubt, selbst gegen einen Hulk Hogan oder einen Mr. McMahon. Respekt! Im Ring unvergleichlich und unerreicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: mugel 187wrote on 19.10.2007:[4.0] "er ist mir einfach unsympatisch(aber im ring und am mic machen ihm nur wenige was vor in der wwe)"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Cpt Dave Charismawrote on 17.10.2007:[10.0] "Eines der letzten großen Überbleibsl einer Zeit wo Wrestling noch Wrestling war und doch Entertainment.... He's the company"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Undertaker13wrote on 17.10.2007:[10.0] "Einer der besten die es zur Zeit gibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: snierwrote on 06.10.2007:[10.0] "Einer der...., wenn nicht DER beste Alrounder im Ring. Außerdem ein Klasse Entertainer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Oli10wrote on 01.10.2007:[10.0] "Ist schon seit den 90ern mein absoluter Lieblingswrestler!!! Macht schon immer eine mega geile Show! HBK forever!!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Wuschl 85wrote on 01.10.2007:[10.0] "Ein super Techniker. Heute noch einer der Besten bei der WWE. Er hätte sich einen neuerlichen Titelrun an der Spitze der Promotion verdient. Früher war er noch besser, sein arrogantes und selbstverliebtes Auftreten war einfach total überzeugend und kam bei mir gut an. Ich hoffe er macht noch lang weiter, denn seine Matches waren und sind immer etwas sehenswertes. Und als Teil der DX bleibt er ohnehin immer einer meiner absoluten Lieblinge."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Medeawrote on 29.09.2007:[10.0] "Shawn hat eine abwechslungsreiche Karriere hinter sich und mich dabei stets mit seinem Charisma und seinen guten Moves überzeugt. Sein Ego ist sein Image und macht ihn erst zu der schillernden Persönlichkeit, die er nun einmal ist. Dass er dabei polarisiert, belebt die Szene. Er gehört für mich eindeutig zu den besten und dominantesten Wrestlern seit Mitte der 90er Jahre."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: A-marwrote on 25.09.2007:[10.0] "Hoffentlich ist er schnell wieder zurück. ARE YOU READY TO COME BACK? LETS GET READY TO SUCK IT! DX"
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mr Money in the bankwrote on 25.09.2007:[10.0] "Für mich die Legende schlechthin einfach der beste Wrestler und zwar in allen Belangen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dead-man-walkingwrote on 23.09.2007:[10.0] "Also,ich finde ihn einfach genial!Er hat einen coolen Stil und sieht trotz seinem Alter imme rnoch gut aus!Ausserdem hat er so eine sympathische Art....Auf jeden Fall einer meiner Lieblingswrestler^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Bhanduwrote on 15.09.2007:[10.0] "Einer der besten Wrestler aller Zeiten. Fantastisch im Ring (vor allem, wenn es darum geht, den Gegner gut aussehen zu lassen). Fantastisch am Mic. Kann als Face und als Heel vollkommen überzeugen, macht hunderte kleine Dinge immer wieder richtig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Alan Smitheewrote on 14.09.2007:[10.0] "Durch den Sinneswandels den er hatte nehme ich ihn um einiges ernster als Früher und kann ihm auch die verdienten 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Kennedictwrote on 06.09.2007:[10.0] "Che wrestler!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Manuelwrote on 06.09.2007:[10.0] "HBK war früher einer der besten aber jetzt gefällt er mir nicht mehr. Dieses Jahr gefiel er mir wurde aber von Randy verletzt und fällt somit lange aus."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Obermackerwrote on 09.08.2007:[10.0] "Obwohl er körperlich in den letzten Jahren stark nachgelassen hat, ist er immer noch DER Performer der company, an dem sich alle anderen messen lassen müssen."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TeaspoonHBKwrote on 30.07.2007:[10.0] "Neben Ric Flair die größte Wrestlinglegende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: DrBreswrote on 26.07.2007:[8.0] "Genialer Wrestler, der hoffentlich bald zurückkehrt und seinen letzten verdienten Titel-Run antritt. Kann aber nicht die Note 1 vergeben, dafür gibt es einige Makel: Sein Hang zu Overselling, sein nicht ganz altersgemäßes Gimmick als Heartbreak Kid (der Mann ist über 40 und nennt sich "Kid"), die sich langsam einschleichende Eintönigkeit in seinen Matches. Sehe ihn wirklich gerne, kickt mich aber nicht mehr ganz so sehr."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: FiveStarwrote on 21.07.2007:[10.0] "Der beste "Sports Entertainer" aller Zeiten - herausragende Mischung aus technischer Fähigkeit, Wrestlingkönnen, Wrestlingverstand, Ausstrahlung und Promo-Fähigkeiten.Wenn jeder "Sports Entertainer" so wäre wie der HBK, dann könnte man sich das Produkt gut und gerne regelmäßig ansehen. Ausserdem ein Vorreiter für eine Generation von "Light Heavyweights", die den Sprung in die Main-Event Szene schafften."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: real americanwrote on 12.07.2007:[10.0] "Michaels steckt auch in seinem Alter noch viele jüngere Wrestler in die Tasche. Schon mit Marty Jannety als Rockers und in der Dx hat er mir sehr gut gefalllen. Er ist ein toller Techniker und steht auch im Micwork seinem Kumpel HHH nichts nach. Er kann auch schwache Wrestler zu guten Matches ziehen und sein Backstageverhalten hat sich ebenfalls stark verbessert. Hoffe das er noch mal einen World Title gewinnen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Baldrickwrote on 05.07.2007:[10.0] "I-K-O-N-E ! Ich habe die Rockers geliebt aber ich vergöttere Shawn Michaels! Vollblutentertainer, der mich zu absolut jedem Zeitpunkt seiner Karriere glänzend unterhalten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Blade Bourdeauxwrote on 04.07.2007:[10.0] "Über seine Fähigkeiten braucht man kein Wort zu verlieren, die sind überragend. Daher hebe ich mal hervor, dass er meiner Meinung nach der Worker ist, der es im Laufe seiner Karriere mit am besten verstanden hat sein Profil zu schärfen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Azraelwrote on 04.07.2007:[10.0] "Einer der allergrössten Wrestler aller Zeiten, der kann einfach alles. Ich hoffe sein Knie verheilt gut, damit er in alter Stärke zurückkehren kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Svaniwrote on 30.06.2007:[10.0] "Ich kann mich nicht erinnern irgendwann mal ein schlechtes Match mit Shawn Michaels gesehen zu haben. Er ist klasse am Mic, toller Techniker und als DX-Mitglied zusammen mit Triple H ist der Unterhaltungswert 100%ig abgedeckt! "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: ShaneOwrote on 28.06.2007:[10.0] "Einer der Besten aller Zeiten. Den Screwjob hab ich ihm nie verziehen, aber der Mann macht das mit haufenweise Super Matches wieder weg. "
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Steven McWheelerwrote on 27.06.2007:[10.0] "Ich kenne niemanden,der so spannende Matches gestalten kann...(bis auf Triple H) Shawn Michaels agiert einfach sowohl als Face, als auch als Heel nahezu Perfekt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Shawn Michaelswrote on 25.06.2007:[10.0] "The Heartbreak Kid Shawn Michaels ist einfach der beste Wrestler meiner Meinung nach. Was der schon alles für geile Matches bestritten hat und wie gut der simulieren kann einfach der Hammer der Mann!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Templeton Peckwrote on 24.06.2007:[10.0] "Da ich ein großer Bret Hart Fan bin, hat er bei mir natürlich einen grossen Makel, aber objektiv betracht ist er einer der besten Wrestler der vergangen Jahre. Ich hab auch noch immer die naive Hoffnung, dass sich Michaels und sein Kumpel Levesque vielleicht irgendwann doch mal beim Hitman für Montreal entschuldigen!"
Rating: 10.0
Sentiment: -0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: HHH-Stephwrote on 24.06.2007:[10.0] "Shawn Michaels is einfach der beste Wrestler aller Zeiten. Er steht schon seit über zehn Jahren im Main Event der WWE und hat sich im Ring kaum verschlechtert. Dazu kommt noch ein riesiges Charisma und ein geiler Entrance. Außerdem nach vier Jahren Auszeit wieder so aktiv wie er in den Ring zurückzukehren verdient eine Menge Respekt!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Adrammelechwrote on 24.06.2007:[10.0] "Ich hab sein Image als Heartbrake Kid gehasst, aber er ist einfach einer der besten Wrestler die man im TV gesehn hat. Und das heute noch nach so vielen Jahren"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Lord Loviswrote on 24.06.2007:[10.0] "Neben Triple H und dem Undertaker einer der drei Besten der WWE"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Der Showstopper hat es immer noch drauf, ob im Ring oder am Mic, nur hat er bei mir inzwischen den Ruf eines Finalverlierers inne. Immer dabei, aber stets verliert er! Es wird echt langsam Zeit, dass HBK nochmal den Titel holt! And if you`re not down with that, I got two words for you: suck it!"
Rating: 10.0
Sentiment: 0.09722222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Foerstawrote on 24.06.2007:[10.0] "D-Generation-X. Ich finde das sagt alles. DIe bdien waren zusammen das geilste Stable und für sich alleine ist er wirklich ein HBK. Hoffe er bestreitet noch viele Matches mit Triple H. Sweet-Chin-Music tut im pbrigen jedesmal beim zugucken schon weh."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mr Lovewrote on 24.06.2007:[10.0] "Shawn Michaels ist einfach einer der besten Wrestler allerzeiten, er hat eine Ausstrahlung wie kein zweiter, schafft es fast jeden gegen ihm im Ring gut aussehen zu lassen, verkäuft seine Matches immer gut, ist im Ring einfach super, einer der Wrestler mit den meisten Moves. Man sollte seine Leistung einfach respektieren, vorallem in diesem Jahr, seit Anfang des Jahres hat er ja eine schwere Beinverletzung und wrestlete trotz großer Schmerzen einfach super. Er hat ja noch einen 5 Jahres Vertrag."
Rating: 10.0
Sentiment: 0.2888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Nataljawrote on 24.06.2007:[10.0] "Ich bin ein sehr großer Heartbreak Kid Shawn Michaels Fan. (seit 12 Jahren)Er ist einfach der Beste...... Er macht seine Job einfach toll. "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Trevedaswrote on 24.06.2007:[10.0] "Ausnahmewrestler. In sämtlichen Bereichen absolute Spitze, zudem ein vom Selling her das beste was ich je gesehen habe."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Necronwrote on 24.06.2007:[10.0] "Unglaublicher Entertainer. Früher habe ich immer von einem tag team zwischen HBK und Bret Hart geträumt - erstaunlich, wie die beiden sich entwickelt haben ; ) Bemerkenswert auch sein Wandel vom PRoblemkind hin zur überverlässlichen Säule der Liga."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Elvis33wrote on 24.06.2007:[10.0] "1 letztes mal den Titel und dann könnte er langsam in Rente gehen. Bringt oft nur noch maßlos Übertriebene Aktionen, aber es ist schön das er sich immernoch so für die WWE einsetzt. Weniger als eine 1 kann man diesem Mann nicht geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Angus666wrote on 24.06.2007:[10.0] "Für mich mit der beste Wrestler überhaupt. Seine Matches sind legendär. Ohne  HBK wäre das Wrestling um eine große Persönlichkeit ärmer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: TugayGwrote on 24.06.2007:[10.0] "Gibt es nichst zu sagen. Im Ring gut wie kein zweiter. Mic work auch gut. Charisma auch. Hat viele legendäre Matches bestritten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MrFoxwrote on 24.06.2007:[10.0] "Einer der besten Wrestler die es je gab. Super Moves und auch am Mic super! Sein Match bei WrestleMania 12 gegen Bret Hart ist unvergesslich!"
Rating: 10.0
Sentiment: 0.42708333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Deadman81wrote on 24.06.2007:[8.0] "Punktabzug nur aufgrund des "Montreal Screwjob".Ansonsten WWE Legende !!!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mr Wrestlemaniawrote on 24.06.2007:[10.0] "Nach The Rock der Größte Sportsentertainer den die WWE je gesehen hat"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Smi-48wrote on 24.06.2007:[10.0] "Egoistischer Vollblut-Entertainer. Einer der besten Wrestler aller Zeiten, mit unendlichem Entertainmentfaktor. Prägte eine Ära, öffnete die Main-Event Türen für viele Leichtgewichte, zu Recht Legende genannt. War als Heel noch besser als als Face, ist seit seiner Rückkehr 2002 etwas farblos, war früher noch besser !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: renol2007wrote on 24.06.2007:[10.0] "er ist einer der besten wrestler. DX 4ever"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hit Manwrote on 24.06.2007:[10.0] "Für mich einer der besten Wrestler aller Zeiten.Steht wrestlerisch auf einer Stufe mit Leuten wie Bret Hart oder Curt Hennig.Ein kommender Hall of Famer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: MarkyMarkwrote on 24.06.2007:[10.0] "Damals so wahr wie heute - the very best sports entertainer in the world today."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jupp365wrote on 24.06.2007:[8.0] "Kontrovers, kontroverser, HBK. Dass ich den Typen nach Montreal jemals mögen würde, hätt ich vor 10 Jahren nicht gedacht. Aber er ist ein Muss. Er ist ein genialer Wrestler und Entertainer. Nur der Namen Heartbreak Kid.... naja sollte man in diesem Alter vielleicht überdenken."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: timbo7111wrote on 24.06.2007:[8.0] "Eigentlich müsste ich hier wegen der überragenden Fähigkeiten die Höchstpunktzahl geben, aber der Screwjob und sein egomanisches Verhalten verhindern das.Daher "nur" die zweithöchste Punktzahl."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Absolut begnadeter Mic-Worker...für mich, als eher Späteinsteiger ins Wrestling, schon fast eine Legende..."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Batti-starwrote on 24.06.2007:[10.0] "Für mich DER Inbegriff des Wrestling! Seit Jahrzenten immer an der Spitze der WWF(E) und das völlig zurecht. Geilster Einmarsch! "I`m just a sexy boy!"... nur der Screwjob kratzt an seiner perfekten Kariere."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Groissy12344wrote on 24.06.2007:[10.0] "Genial, Genialer, Shawn MichaelsEiner meiner Top-Wrestler"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Dangerouswrote on 24.06.2007:[10.0] "Seit fast 20 Jahren einer DER Stars im Business. Und er hat es immer wieder geschafft, im Blickpunkt zu stehen (Montreal, Clique, etc.). Das muss erstmal einer toppen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mr perfectwrote on 24.06.2007:[8.0] "Shawn Michaels ist einer der besten wenn nicht sogar der beste in diesem Sport er hat immer alles gegeben und hatte immer gute Fehden so das es spaß gemacht hat ihm zuzuschauen"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Mediwrote on 24.06.2007:[10.0] "Heart brek kid......... ist da was nötig zu schreiben? ^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Shazammmmmmmwrote on 24.06.2007:[10.0] "The best there is, the best there was and the best there ever will be!:)"
Rating: 10.0
Sentiment: 0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Alex Shelleywrote on 24.06.2007:[10.0] "Einer der besten Wrestler aller Zeiten. Heute IMO zwar nicht mehr 24/7 der Showstopper, als der er sich auch noch selbst bezeichnet, aber wenn er mal wieder alles gibt (z. B. große PPV Matches), dann kommt meistens was ganz Großes dabei heraus. Großartiger Performer, wahnsinnige Ausstrahlung und ein wichtiger Teil der WWE Geschichte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: suntan superstarwrote on 24.06.2007:[10.0] "shawn michaels is ohne zwiefel einer der besten wrestler aller zeiten. als heel war er jedoch drauf und dran ein nature boy der neuzeit zu werden. dann kam gott :) und allesänderte sich. im ring macht ihm keiner was vor"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: JBL-just a big Legendwrote on 24.06.2007:[10.0] "Shawn Michaels ist ganz klar erkennbar On The Road to WrestleMania, seit der Verletzung von Triple H erlebt er einen dritten oder vierten Frühling,er ist zur Zeit der beste Workder im Raw Roster,obwohl er die D-X alleine tragen muss oder gerade deshalb.Mister Showstopper scheint noch mal allen beweisen zu wollen,was noch alles in ihm steckt und das tut er gerade beeindruckend.Ich bin mir auch sicher,dass er bei WrestleMania ein gutes Match aus John Cena rausholt und eventuell den Titel bekom"
Rating: 10.0
Sentiment: -0.11538461538461539
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Vimeswrote on 24.06.2007:[10.0] "Zweifelsohne einer der besten Wrestler aller Zeiten. Der einzige in seiner Gewichtsklasse, der es geschafft hat, sich auf Dauer im Mainevent der WWE zu etablieren(zehn Jahre)! Backstage seit seiner Rückkehr 2002 erstaunlich zurückhaltend. Bemerkenswert auch seine Professionalität im Bezug auf den Screwjob. Vor allem bei seinen Auftritten in Kanada, hat er es immer wieder verstanden das Geschehene für das Buisness zu nutzen, ob in Promos oder durch austappen im Sharpshooter bei Backlash 2004."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: jimpanse1980wrote on 24.06.2007:[10.0] "Seit 20 Jahren konstant einer der besten. Bringt fast jeden zu einem guten Match (z. B. Vader). Geniales MicWork, nimmt auch härteste Bumps. Ein absolutes Allroundtalent. Da verzeihen wir ihm auch den ScrewJob und andere kleine Fehltritte"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: shannonmoorewrote on 24.06.2007:[10.0] "Ein grossartiger Entertainer und ein toller Wrestler. Aber bei Gott ist der mir unsympatisch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: Hennewrote on 24.06.2007:[10.0] "Damals mal ein richtig guter. In den letzten 2 Jahren aber mit Ausnahme der Matches gegen Angle nur noch Standardprogramm. Bis zu seiner Verletzungspause 2007 wieder ein Topjahr."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=796&gimmick=Shawn+Michaels
Comment: The Mountiewrote on 24.06.2007:[10.0] "Ein Gottesgeschenk an das Wrestling. Auch mit seinem derzeit verletzungsbedingt stark eingeschränktem Stil noch immer besser als neun Zehntel seiner WWE-Kollegen."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: zacharymahabirwrote on 11.02.2025:[10.0] "I don't think there will ever EVER be another wrestler quite like him. He's got all the tools, can work any type of match and has seen the highest of highs, when it comes to the business."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: volcanowrote on 07.02.2025:"Kenny Omega is the greatest of all time. If you put Kenny Omega versus anyone else with wrestling comprehension it'll be a guaranteed 4*. Kenny Omega moves like no other, sells like no other, and has psychology like no other. I would no doubt give him a 10."
Rating: No rating found
Sentiment: 0.296875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Nickswrote on 06.02.2025:[10.0] "He is the best wrestler in history, all his matches are a guarantee of quality, he is simply incredible."
Rating: 10.0
Sentiment: 0.95
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: comicsans1007wrote on 26.01.2025:[10.0] "it's truthfully hard to think of something wrong with Kenny Omega to me. he is someone who perfectly gets professional wrestling in a way. truly a one of a kind wrestler"
Rating: 10.0
Sentiment: 0.18166666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: dsv the raterwrote on 21.01.2025:[10.0] "for me, easily the best wrestler in history, awesome moveset, awesome entrance, awesome name, the guy is simply the best wrestler who has ever stepped into a professional wrestling ring, something surreal, every match of his is a banger"
Rating: 10.0
Sentiment: 0.6425925925925926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Ghaith000wrote on 20.01.2025:"[10.0] "Kenny Omega is one of the best wrestlers in history, if not the best. His performance in the ring and his charisma as a wrestler are proof that he is a legendary wrestler.""
Rating: No rating found
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: darkflame4527wrote on 20.01.2025:[10.0] "I flip between Angle and Kenny all the time, but over 50% of the time I feel Kenny is the greatest and best in-ring worker of all time. Every match he puts on is fantastic. He has insane strength and insane speed, way ahead of his time. Not many people have both of those attributes and he uses it to the max. His in-ring psychology is brilliant. Nothing more can be said."
Rating: 10.0
Sentiment: 0.19374999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Jona5Holt on Xwrote on 09.01.2025:[10.0] "Truly the greatest to ever do it in my eyes. He brought me so much joy in my teen years with his work in NJPW from 2015-2019, one of the most inspirational wrestlers of all time. No one can compare to this man and there will never be another Kenny Omega. He is 1 of 1."
Rating: 10.0
Sentiment: 0.5599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: smitwrote on 09.01.2025:[10.0] "ive always liked wrestling, ever since i was little, but i never fully loved it. it wasnt until i discovered kenny omega years ago that i truly did. i really feel everything ive learnt about wrestling and everything ive grown to love and admire stems from finding out who kenny omega is. whether its his older works or his current AEW stuff, he is my favourite. the goat!"
Rating: 10.0
Sentiment: 0.28273809523809523
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: supper momentwrote on 08.01.2025:"For me Kenny Omega always is the best, i think he can do everything in that ring and the fact is he actually can.HE IS WRESTLING GOD AND THE UNDISPUTED ONE"
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: gxldenjaywrote on 08.01.2025:[10.0] "HE IS THE GOAT HE IS THE GOD OF WRESTLING HE IS INCREDIBLE HE IS BEST TO EVER DO IT HE IS KENNY FUCKING OMEGA"
Rating: 10.0
Sentiment: 0.4333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: goldendolphenwrote on 08.01.2025:[10.0] "the greatest to ever do it. the greatest that will ever do it. i dont care who you think is this best. they're not kenny omega. singles, tags, trios. grappling, puro, lucha, hardcore. it doesn't matter what kind of match he's having a great one. I LOVEE YOUUU KENNY"
Rating: 10.0
Sentiment: 0.8800000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Ozwernwrote on 05.01.2025:[10.0] "After his performance today, really looking forward to his return (as if there was any doubt). One of the greatest to ever do it. Hope he's being presented as the big deal he is moving forward."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MEDaminewrote on 05.01.2025:[10.0] "A Great wrestler, one of the best in history, with a lot of 5 (or more) stars matches, very great in the ring and very great in the mic too, and incredibly charismatic, no matter what his age is, he's always amazing"
Rating: 10.0
Sentiment: 0.7714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: spacedustnebulawrote on 05.01.2025:[10.0] "At the age of 41, wrestling for nearly a quarter-century, and nearly dying of diverticulitis, Kenny Omega can still preform as one of the best wrestlers to ever step foot between the ropes. Very, very little competition."
Rating: 10.0
Sentiment: 0.23906249999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Heatseekerwrote on 04.01.2025:[10.0] "Omega, along with a couple other of my favorites (most notably Gunther) is the perfect of example of how when it comes to pro wrestling it's not just about what kind of moves you can pull off, but also how you do the moves. I say this because compared to most wrestlers, everything Kenny does in terms of his in-ring movements is incredibly fluid and smooth. Granted, the guy does have a pretty expansive moveset, but I guarantee you if he only had half of that moveset he would probably still be one of my favorites because of how effortless he makes each move look. He's had some absolutely amazing matches in both NJPW and AEW, he's a solid promo, and regardless of what different types of wrestling fans think of him I believe when it's all said and done he will be regarded as a legend."
Rating: 10.0
Sentiment: 0.2898809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dkexwrote on 04.01.2025:[10.0] "Er ist und bleibt ein fantastischer Wrestler, es gibt kaum einen Mann, der mehr MotY-Kanditaten performed hat als er. Dazu konnte er sich bei AEW auch außerhalb des Rings verbessern, was Micwork und Storytelling angeht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: anarchovampwrote on 27.12.2024:[10.0] "Quite simply, The Best Bout Machine lives up to his name, perfectly synthesizing high workrate along with a showman's flair with everything he does. Omega is an incredibly intelligent wrestler as well, seemingly sprinkling details that go unnoticed but highly enhance the actual match itself. Extremely versatile as a character, playing a great babyface as well as an exceptional heel, while also arguably becoming the greatest gaijin in NJPW history. An unmistakable legacy that still has room to grow."
Rating: 10.0
Sentiment: 0.43935897435897436
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Its Clobbering Timewrote on 23.12.2024:[10.0] "Kenny Omega is that Motherfucker, he is the Greatest in ring competitor Ever and it's not close, he has countless 5 star matches and his move set is out of this world, his matches with Okada, Ospreay, Naito, Ibushi, Ishii, Danielson, Young Bucks, Jericho & Tanahashi, are some of the greatest matches of all time. Kenny has the deepest bag of all time. Anytime he's on a card he's its a guarantee that he will have match of the night. Theres a reason why he's called the best bout machine. Kenny's Peak is in New Japan where he was the Leader of the Bullet Club and took Japan by storm and is the main reason why it is so big today. He's won a bunch of titles in all sorts of Promotions like NJPW, AEW, DDT & TNA, and he's been apart of some of the most famous teams/groups in History like Bullet Club, The Elite & Golden Lovers. Kenny is also an founding member of AEW. Love him or Hate him there's no denying the impact that Kenny Omega has had on the wrestling world and that he is one of the Best Professional Wrestlers of All Time. Kenny is one of my favorite wrestlers ever so I Cant wait until he is back on my screen until then Goodbye and Goodnight Bang."
Rating: 10.0
Sentiment: 0.35311942959001774
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Nitrodustwrote on 23.12.2024:[10.0] "Kenny Omega is simply the most electrifying professional wrestler I believe that I have ever witnessed wrestling. His imagination athleticism are unparalleled in the business. While others may surpass him in star ratings. His ability to pull off the extraordinary indeed makes him the Best Bout Machine."
Rating: 10.0
Sentiment: 0.38666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TPGwrote on 05.12.2024:[8.0] "On his best day, Omega puts out a five star classic. The stuff vs Hangman, Okada, Ospreay, his entire AEW Title run, all amazing stuff. He's a great wrestler, just not an amazing one to me. His meta humour is sometimes a little too much, there are numerous occasions where everything gets way too unrealistic and over the top, and that brings him down a bit to me. Still, plenty of good to great matches on his list you can find."
Rating: 8.0
Sentiment: 0.3231150793650794
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AceHagannwrote on 26.11.2024:[10.0] "One of my favorite modern wrestlers, Kenny is great all around. His work on the mic is great, he has a captivating personality, and his in-ring performances are one of the best there are currently."
Rating: 10.0
Sentiment: 0.5428571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ItsAllAWorkAnywaywrote on 13.11.2024:[9.0] "Kenny Omega seems to be the complete package - Good looks, good physique, and the ability to have drawn-out athletic contests. Yet in North America, people value mic skills and if there was one thing to his hindrance, it was that. Not helping things was that injuries became more commonplace after his grueling contests in Japan. That said, the hype is real for those who appreciate his athleticism - Too bad some of the detractors are more focused on comedy stuff instead."
Rating: 9.0
Sentiment: 0.28571428571428575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: skylar00ashleywrote on 09.11.2024:"Kenny Omega is The Greatest of All Time his matches against okada, ibushi , ospreay, and naito are some of the greatest matches of all time. Kenny can be 50 percent healthy and still is a top 3 wrestler in the world. He can work any style you name the style he can do it he has changed wrestling for the better and thats why he is greatest ever."
Rating: No rating found
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: bustopboywrote on 01.11.2024:[10.0] "The greatest pro-wrestler of all-time. Bar none. All four matches with Okada, Any Ibushi match, the Naito G1 Match, Omega vs Ishii, the Tanahashi WK match, GL vs Bucks, him + Hangman vs Bucks, Omega vs Danielson, Omega vs Ospreay, Omega vs PAC, Omega vs Hangman, Omega vs Mox, Elite vs Death Triangle, not even to mention all of his other matches and his character. His storytelling is on another level He's just genuinely the coolest wrestler to ever step foot in a wrestling ring and he hits it out of the park every single time. He's simply the GOAT."
Rating: 10.0
Sentiment: 0.24071428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: maven loverwrote on 29.10.2024:[7.0] "One of the better of the contemporary acrobatic-style wrestlers, whom still knows how to work the psychology aspect & come across serious. Kenny Omega is able to work within the high-flying paradigm & put out consistent, super-fun matches with incredible athleticism. His promos could use some work (he really, really overacts). It's nice to see that he seems to be recovering well from his medical issues, & I hope to see him back in the ring sooner rather than later."
Rating: 7.0
Sentiment: 0.25303030303030305
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JackBurtonsTruckwrote on 21.10.2024:[7.0] "Im not a fan of his character work or mic skills. Some of his in ring moves are cool but theres way too much standing around waiting for people and doing choreographed routines. Gymnastics style wrestling just really isnt for me. He is very skilled at it however so Im giving him a 7. Ive watched quite a few of his matches and at this point hes a channel changer for me. Id give him a 5 as a score, but I cant knock that he is good at his chosen style, even if I think its boring."
Rating: 7.0
Sentiment: 0.12857142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TreyHalowrote on 17.10.2024:[10.0] "In my opinion Kenny is genuinely one of, if not even the best wrestler of all time, that may sound blasphemous to some but at the end of the day it's all opinionated and I truly believe he's top 3 without a doubt, he is largely responsible for popularizing Japanese wrestling in the west, and is overall just a perfect professional wrestler, there's no holes in his game at all, from his adaptation to the styles of his opponents, to his match catalog that legitimately feels like it never ends because of the sheer amount of quality within it. He's maybe the easiest 10/10 I'll give out on here as I seriously didn't even need to think about it for a second..."
Rating: 10.0
Sentiment: 0.2205128205128205
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Uweuwesenwrote on 15.10.2024:[10.0] "Im Ring ist Kenny Omega einer der besten Worker, den ich je gesehen habe! Seine Moves und die Chemie die er so ziemlich mit jedem Worker hat, macht ihn einfach zu einer legendären Personalie. Seine Japan Karriere habe ich nur nachträglich mitbekommen. Ein paar DDT Sachen habe ich gesehen und sie waren ebenfalls hervorragend."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Vinish Singhwrote on 02.10.2024:"Kenny is the wrestler whose matches got me back into Wrestling. I was fed up of the type of wrestling which evolved in WWE in recent times, which had very less 'Actual' wrestling in them and was bored and got disinterested in wrestling. AEW rekindled my love for wrestling and Kenny was one of the prime reasons for it.. Thanks Kenny !"
Rating: No rating found
Sentiment: 0.004761904761904761
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Saladbagelwrote on 02.10.2024:[9.0] "Kenny Omega was a phenomenal wrestler in his prime. Getting a bad match out of him was exceedingly rare. However, his promos were often weak and his gimmicks were often standard and nothing special. Hence, I can't call him a perfect wrestler with a 10/10."
Rating: 9.0
Sentiment: 0.1545918367346939
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: blueryuuwrote on 02.10.2024:[10.0] "A great wrestler that marked his era! It has been good seeing his evolution, from his run as IWGP intercontinental champion to his run in AEW"
Rating: 10.0
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dweeeabwrote on 30.09.2024:[10.0] "One of the greatest of all time. Amazing selling, in ring storytelling & moveset. Has also been part of multiple matches that I consider to be the best of all time"
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jpirtle522wrote on 26.09.2024:[10.0] "If God was a wrestler, hed be Kenny Omega. He is without a doubt the best wrestler of this generation. The matches he had in NJPW and AEW have been peak wrestling. If you wanted to get into Kenny, watch his trilogy against Kazuchika Okada."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Bluecap1998wrote on 24.09.2024:"Decent in the ring and okay on the mic but one of if not the most overrated wrestlers in modern wrestling."
Rating: No rating found
Sentiment: 0.3416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Icekommanderwrote on 09.09.2024:[10.0] "What can you say about Kenny Omega besides being one of the best big match wrestlers of his era? Despite injuries playing a major part of the recent past, he delivers big pay per view matches again and again. We can only hope that he comes back from his most recent health setbacks as great as ever."
Rating: 10.0
Sentiment: 0.19204545454545452
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jsbortswrote on 09.09.2024:[10.0] "If you don't enjoy Kenny Omega then we just have different views on what's good entertainment and what's fun. He's everything you want him to be and brings an intensity that is quite unmatched. If you have pre-existing views of wrestling then I understand that maybe he's not your preferred style, but of every wrestler I've shown people who don't watch wrestling, I'd say the number one guy people enjoy is Kenny. Nevermind that he's a good promo in two different languages, can put together an incredible match in his sleep, has put his body through an insane amount, and is great at every technical aspect of wrestling."
Rating: 10.0
Sentiment: 0.29090909090909095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Cletxawrote on 07.09.2024:[10.0] "I don't like him for no reason. I have no reason, and when I first started watching wrestling, I always supported his opponents. despite this, I still respect him. He's a legend."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: wrestlingswiftiewrote on 28.08.2024:[8.0] "Unlike most, I actually really like Kenny. His matches are incredible and his aura is undeniable. However, he's not a 10 for these three reasons: Lack of promo ability, being... a bit too nerdy. And, hokey stuff like wrestling a little girl. He still gets an 8 from me."
Rating: 8.0
Sentiment: 0.353125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Nudlewrote on 26.08.2024:[10.0] "Outside of some slightly irritating things he does (silly facials and the skip into the run which isn't necessarily bad I just don't care for it), one of the best of all time."
Rating: 10.0
Sentiment: -0.11999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BULLETCLUB4EVERwrote on 19.08.2024:[10.0] "Probably the best wrestler with AJ Styles of the last 24 years. He is the belt collector, his match in NJPW are perfection. With Ibushi one of the coolest tag team ever. Great work with the Bucks and Bullet Club, top star in NJPW and in AEW."
Rating: 10.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SephyAtticuswrote on 18.08.2024:[10.0] "After I stopped watching wrestling for several years and got back into it in 2022, I wasn't used to many of the wrestlers who boomed in popularity since I last watched, however Kenny very early on caught my attention. His charisma is through the roof, having some of the best gimmicks such as the Belt Collector, and not to mention his in ring work is fantastic. For someone with a lot of nicknames, such as The Cleaner and The Best Bout Machine, he has earned them all. I'm excited for the work he'll do when he comes back, and for now will enjoy the years of past work that I can rewatch or experience for the first time."
Rating: 10.0
Sentiment: 0.25366666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Prorasslinanglewrote on 05.08.2024:[10.0] "A ten for me is very, very rare, but Kenny Omega is, to me, the greatest wrestler of all time, so he absolutely gets a 10. Theres not many who can call themselves the best bout machine and back it up. Well, perhaps hes the only one, and back it up he does every time he steps in the ring. God bless Kenny. Hope hes back soon."
Rating: 10.0
Sentiment: 0.23399999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KobashiChopMewrote on 05.08.2024:[9.0] "I like Kenny, I really do. I think he is one of the best things about AEW. But I also think a lot of his in ring work has sort of declined after leaving NJPW. Not to mention how this injuries he's been unfortunately having as of late have done to his career. I hope he only comes back when he is fully healthy and ready to get in the ring, because I do not want to see him on the sidelines again."
Rating: 9.0
Sentiment: 0.13749999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: sunnywrote on 02.08.2024:"[10.0] Personally my favourite wrestler, if you put all the Meltzer stuff he truly is one of the greates to step in a ring. He knows exactly how to get a crowd to feel something while also preforming at an exceptional level. Even with all the punk stuff that happened, kenny showed maturity and mde things right with punk on his part. i think the reason i say he is my favourite comes from his showing with hangman in 2021. Evenu injured he put on one of the best if not the best stories to come out of AEW, he put over Hangman and did his job incredibly well. Some of the things that Jim cornette say i can understand because Kenny's style of wrestling is definately not for everyone however that doesnt mean that he is a terrible wrestler. Not to mention Kenny's is literally one of the sweetest human beings ive ever seen. he has every right to be rude and entitled due to his profession but he is incredibly humble and down to earth. For me he truly is the entire package of what you want in a wrestler and also as a person :)"
Rating: No rating found
Sentiment: 0.16441409897292253
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Aspionwrote on 22.07.2024:[10.0] "(Sorry english is not my firtst language) The God of Wrestling. Im just having fun in all moments of his career"
Rating: 10.0
Sentiment: -0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Joe907wrote on 16.07.2024:[10.0] "Kenny Omega is a generational wrestler. Best bout machine. The Cleaner. He produced some of the greatest matches ever. He can adapt to any style of wrestling, lucha, technical, or strong style. His move set is insanely good. One of the greatest of all time"
Rating: 10.0
Sentiment: 0.688888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Khalid Acewrote on 22.06.2024:[6.0] "To me Kenny Omega is a top 15 in ring performers but he has declined massively since leaving NJPW. He's not giving us these great performances as he used to do. His character work was always lacking. He's not good on the microphone unlike what people keep saying."
Rating: 6.0
Sentiment: 0.23750000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: bfrgwrote on 10.06.2024:"Kenny Omega is the best wrestler of the modern era and one of the best wrestlers of all time also a great person."
Rating: No rating found
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Willie 19200wrote on 02.06.2024:[10.0] ""The Best Bout Machine" Kenny Omega is arguably one of the best wrestlers in the world. I discovered Kenny Omega very late in his career, but looking back on some of his matches, for example his matches with Kazuchika Okada, Will Ospreay, Bryan Danielson, Page, and so many more, I can see the hype in Kenny. he is easily one of the best wrestlers in the world, and personally one of my favorites."
Rating: 10.0
Sentiment: 0.44925925925925925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BuStopBoYwrote on 21.05.2024:"[10.0] The greatest wrestler of the modern era and arguably of all time with his incredible in-ring work and his flashy personality, he truly is one and only best bout machine."
Rating: No rating found
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: shockwrote on 17.05.2024:"Simply the best wrestler in recent years in my opinion. His matches against the likes of Naito, Okada, and Jericho really got me into NJPW. I've never seen a bad Kenny Omega match. He has the perfect blend of the modern, fast-paced style while maintaining the believability of the match through his world class selling and match psychology. I think his promos are also underrated. He has a great moveset with the One Winged Angel being one of my favourite finishers ever. Obviously, it helps that it has been protected so much throughout the years, but the move looks devastating so it's believable that the match is over once he hits it. Kenny gets a perfect 10 rating from me."
Rating: No rating found
Sentiment: 0.24615384615384617
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: louisehelenwrote on 16.05.2024:[10.0] "I'm thinking about who doesn't love Kenny. It's not an exaggeration to say that every match he has is very exciting. When he was in Japan, he was at his peak. As a vice president at AEW, he himself said he was an incompetent vice president, but I can understand that because he really loves wrestling, these power game may not be suitable for him. When he wrestled in Japan before, I watched a few match and really noticed that he was invading TNA. He was too crazy, with a few belts, and later he was injured intermittently. I was thinking that he might retire early. I read the report during this period, he is preparing for surgery, and I don't know how his condition will be after returning. I hope he won't retire early. Retired because I really wanted to watch him compete, but health is the most important thing. Who knows what will happen in the future, or I can see him on other platforms (his favorite games), hahaha, But it's unlikely because I'm not in the United States and we can't see his game competitions here. Watching AEW wrestling takes a day to see, but I still hope he can recover, see a healthy Kenny Omega, and enjoy every match before retiring"
Rating: 10.0
Sentiment: 0.08187499999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: frankiejd88wrote on 15.05.2024:[10.0] "He consistently puts on some of the greatest matches of all time, his in-ring technical skill and understanding of psychology are near unmatched, and he can hit everything from comedy to serious and intense matches with the same level of skill. If you don't think he's one of the best I have no idea what you want out of a wrestler because he can do it all and he does."
Rating: 10.0
Sentiment: 0.27708333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BruceMarcos524wrote on 02.05.2024:[10.0] "He is "The Best Bout Machine" for a reason. Kenny Omega truly upgrades what a solid calibre wrestling match would be in a more brutal and more destructive nature. His matches with Kazuchika Okada are considered the standard of all wrestling matches in my opinion. Omega also has incredible stamina that could go beyond 30 minutes to over an hour and still provide us the best match possible. His move sets are very dangerous and very difficult to perform that only guys like him could only deliver. The One-Winged Angel is one of the best wrestling maneuver I've seen due to its brutality and its difficulty to use. Omega's character is obviously based on Sephiroth from Final Fantasy VII, and they even used their theme as his entrance music. He also has a great in-ring psychology, and he is known for high drama and climactic shots in which he showed excessive emotions in the match. His time in NJPW was the best version of Omega. Omega pulled the best wrestling matches that the entire wrestling would adjust to it. His matches were so good, it broke the Meltzer 5-star scale and the reason of beyond 5-star calibre matches. He was one of the best gaijins NJPW has ever signed. His time in AEW is somehow a mildly light version of NJPW but still deliver countless classic matches, now with better characterization because the company allowed him to customize their own promos and produce segments in which NJPW doesn't normally much do. Omega helped shaped the alternative wrestling world, somehow manage to divert the attention of the fans from the major wrestling company that they used to watched and changed their perspective of wrestling forever. Omega is a revolutionary athlete with solid A+ wrestling skills. He has the entire catalogue of great matches to recommend."
Rating: 10.0
Sentiment: 0.25025462962962963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Oddtalkwrote on 21.04.2024:[10.0] "He's gonna go down in history as one of the best of all time and one of the most important wrestlers in NJPW's history. I don't think it's up for debate."
Rating: 10.0
Sentiment: 0.4361111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MarkMcMarkingtonwrote on 20.04.2024:"Good in the ring, but would I put him on the level of a Kurt Angle, AJ Styles or Bryan Danielson? Not for me. I know hes an IWC favorite but he doesnt really do anything that other guys cant do, and sometimes better. One of those guys that I never got the insane hype for. His promos range from mediocre to bad."
Rating: No rating found
Sentiment: -0.05312499999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Robot3872wrote on 17.04.2024:[10.0] "He has had a very strong impact on the industry and is a major reason why AEW exists today. When he had his match against Chris Jericho at NJPW Wrestle Kingdom 12 it turned enough heads away from the WWE product that alternatives became feasible. As far as in-ring wrestling abilities go, he is near or at the absolute top. He has a prodigious arsenal of moves at his disposal and sells well enough to make his opponents look great as well. I've never seen a bad match with Omega in it even when he worked AEW Dark matches those were still impressive. When he enters for a match it feels like a true final boss of wrestling. It is a shame he has diverticulosis hopefully he can make a full recovery from that."
Rating: 10.0
Sentiment: 0.21172222222222228
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: DonovanBaybay229wrote on 11.04.2024:"A pretty impressive athlete but also someone who's yet to understand at almost 40 that Pro Wrestling is a work and that the point is to invest the crowd into you winning or losing not just having the most impressive physical display . His match are rarely engaging because 9 times out 10 whether he lose or win don't really matter why him and his opponents are fightingdoenst' really matter ( Will Oespreay is an example . The storylines before hand sucks his promo are so cheesy he is just embodies the flaws of his company all forms no substance ."
Rating: No rating found
Sentiment: 0.3375000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TripleCrownwrote on 08.04.2024:[10.0] "One of the very best wrestlers of his generation. He was a little goofy in the beginning, but really transformed into a huge star outside of the WWE bubble. Something which is very, very hard to do. When AJ was kicked out of the Bullet Club, I really thought there was no chance Kenny would be able to be on the same level as AJ. Boy was I wrong, he really took Bullet Club to another level. He's such a special wrestler, his ability on the mic is... ok, at best. He's not that good when talking, but he more than makes up for that the moment the bell rings. Incredible wrestler, has inspired a lot of folks nowadays too."
Rating: 10.0
Sentiment: 0.31002506265664165
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: sarahlicitywrote on 29.03.2024:[10.0] "Theres a reason he calls himself the Best Bout Machine, and its not just him being braggadocious, because hes put on some of the best matches of all time. Just watch his quadrilogy of matches with Okada, some of the greatest matches to ever grace this earth. When it comes time for a big show, whether on PPV or even a special television presentation, you can always count on Kenny to pull out the stops."
Rating: 10.0
Sentiment: 0.6714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Brutish Dandywrote on 28.03.2024:[6.0] "Kenny Omega is probably the most physically gifted wrestler that I just do not like. A lot of his matches just devolve into big move spam with very little rhyme or reason. I could bear this if the man's selling wasn't so goofy. I don't like the way he hits the ropes. I don't like the way he pumps his arms up and down like a cartoon character hyping himself up. I don't like how he turtles his neck and kicks his legs out like he's doing the duck walk whenever he gets punched into a corner. It's all the little things that add to me not buying him as a tangible, serious threat. I think he missed his calling in lucha libre."
Rating: 6.0
Sentiment: 0.07248263888888892
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Pigeon Scratchwrote on 26.03.2024:[10.0] "I can't deny that a part of the reason why he is one of my all time favorites already is his character, and the absolute nerd that he is. Of course I'm going to love the guy who works with Toby Fox and pretends to be the Terminator, and he named his finisher after Final Fantasy. But seriously, I can't think of many wrestlers who are so fucking good in what they do and can make every match hes in legendary, and just be so damn charismatic with the crowd. I can see why people think he's a tad overrated, but that honestly just depends on what you're looking for in your wrestling. Personally? I can't get enough of him."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: josh man 6ixxwrote on 26.03.2024:[8.0] "the cleaner Kenny Omega is one of the best technical wrestlers of all time without a doubt. he is overhyped by a little bit but it would take one hell of a perfect human being to match his hype. His wrestling style is excellent, he has drawn eyes to NJPW and was there to pick up the slack when mainstream wrestling wasn't delivering. he was a leader of Bullet Club and made it cool again after AJ Styles left and was a founding member of AEW. the only reason he isn't a 10 is because he was never really a household name and he was never really the face of any company. his promo's also not up to par with his in-ring finesse. kenny would surely be a 10/10 wrestler if his mic work was better but it's not and because of that I can't give him more than an 8."
Rating: 8.0
Sentiment: 0.31875000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Kyle101104wrote on 20.03.2024:"Simply put, the greatest to ever live - the GOAT. Kenny Omega can and will get a good match out of anybody. Nobody can do it like him."
Rating: No rating found
Sentiment: 0.45909090909090905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: charliefictionwrote on 06.03.2024:[10.0] "It's a shade dramatic to say Kenny Omega brought me back to pro wrestling after a 15-year hiatus, but it's not entirely untrue either. As a wrestler, Omega is the full package: a top-notch in-ring storyteller with an otherworldly moveset. He's a true innovator and a risk-taker. Other wrestlers are his equal (e.g., Ospreay, Danielson) but Omega's big matches hit a different level for me."
Rating: 10.0
Sentiment: 0.11416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Knightflywrote on 05.03.2024:"An absolute marvel of pro wrestling. When I lost interest in wrestling, Omega pulled me back. He is truly the in ring GOAT for me."
Rating: No rating found
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dirty Diegowrote on 03.03.2024:[7.0] "Yes he is a great in ring performer a hero to Dave melt at, has had great matches, but as a top draw like Austin, rock, cena he has no chance of reaching that level, I would not be excited if someone told me Kenny omega is performing tonight, his matches are great in Japan and Aew but sometimes its very unrealistic and kind of overkill with all them crazy moves and kick outs, that happen in his macthes"
Rating: 7.0
Sentiment: 0.22499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BallOfYharnamwrote on 28.02.2024:[10.0] "As Kenny Omega almost certainly enters the twilight of his career, you have to reflect on it as a whole. Personally, I believe Kenny Omega has as good a claim of being the greatest of all time as anyone who has ever laced up a pair of boots. To this day, Kenny Omega is still the best big match wrestler in the world, and that isnt going to change until he officially announces his retirement. His 2016-2018 NJPW run is the stuff of legend. Following such a historic run, Omega made a huge gamble and signed with All Elite Wrestling, where he has been recuperating from his injuries or dealing with medical issues for seemingly most of his tenure. Even still, he has managed to have some of the best matches in company history. His in-ring style, down to the way he moves in the ring has been imitated, but never duplicated. He is a great spokesperson for joshi puroresu. He managed to have the NJPW crowd in the palm of his hand by not only delivering incredible performances, but by learning their language."
Rating: 10.0
Sentiment: 0.36437389770723105
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AmirTheEnforcerwrote on 21.02.2024:[10.0] "There's nothing I dislike about this fine gentleman, one of best to come out of land of maple syrup. Kenny does magic in the squared circle and he always has me glued and invested.I just hope that his health is not jeopardized and he comes back soon better than ever."
Rating: 10.0
Sentiment: 0.4833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: RusherBryan29wrote on 08.02.2024:[10.0] "The Best Bout Machine. As Don Callis used to say "the god of pro wrestling", I think he is. Always put on great matches, even in his lowest performances. The true big match specialist. He has great look, good charisma, and solid mic skill. I also like his moveset, and he has my favorite finisher in pro wrestling."
Rating: 10.0
Sentiment: 0.51875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ModernFamilyCamwrote on 08.02.2024:[10.0] "Kenny Omega is the most-talented wrestler to ever exist. The mix of power and athleticism is one weve rarely seen. When I go back and watch Bret Hart, Ric Flair, Ricky Steamboat, Shawn Michaels, Kurt Angle, and all the greats of yesteryear, I cant help but notice that Kenny took all of their talents and rolled them up into one. The technical prowess of Bret and Flair, the timing and the athleticism of Ricky and Shawn, the intensity and power of Kurt, and the physical charisma of all of them. Kenny is truly the best of all worlds, and has no weakness is in his game. Like many over the past 10-20 years cite Shawn Michaels as their big influence, you will see the next 10-20 years of new wrestlers citing Kenny Omega as their big influence."
Rating: 10.0
Sentiment: 0.10719696969696968
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AK1WAwrote on 23.01.2024:[10.0] "Kenny has a case for being the most complete wrestler ever (Strong-style, American, comedy, hardcore, lucha and tag-team). He's very good in all of these different styles. GOAT level performer. IMO he is the greatest of all-time. He is the greatest big match wrestler of all-time whenever you put him in a singles match on any PPV card it normally will be the best match of the night. Truly a once in a lifetime performer, there will never be another wrestler like him ever again."
Rating: 10.0
Sentiment: 0.466
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: benny5bellyswrote on 22.01.2024:[8.0] "Very few wrestlers have ever hit peaks like Omega did between 2016-2018 but there has been a noticeable drop off since. Some of that is down to not having the quality of opponent he did then. His character work is frustrating, he can't help himself in being goofy, if he held himself like a star he would come across so much better. I still look forward to his big matches but not at the level previously. In my opinion there is no greater trilogy of matches than the ones he had with Okada, every single one a masterpiece of pro wrestling. There are certainly elements of his game you can be critical about but I do find it interesting that lots of people expose their lack of knowledge and understanding of pro wrestling by thinking he does not tell coherent strong stories in his pro wrestling. There is unfortunately an element of new fans who just do not understand story telling in pro wrestling unless everything slows to a crawl and someone starts a monologue in the middle of a match."
Rating: 8.0
Sentiment: 0.032240660573993905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BungeeBombwrote on 20.01.2024:[10.0] "One of the best wrestlers of all time and one of the reasons I got into pro wrestling to begin with, you can pretty much pick any time period on his career and he will be at an elite level, has one of the best match catalogs of all time too. Incredible athleticism with a deep knowledge of pro wrestling as art."
Rating: 10.0
Sentiment: 0.5583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MichaelDaviswrote on 17.01.2024:[10.0] "Kenny Omega is my favourite wrestler of all time. He excels in so many areas and has introduced new philosophies to the sport that have proven frightening to some. There was no better big match wrestler in the second half of the 2010s than Kenny Omega, with iconic bouts against Okada, Naito and Ishii that belong on any best ever list. You know a wrestler is special when even their basic in-ring movements are recognisable."
Rating: 10.0
Sentiment: 0.143349075167257
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GoldenHomieswrote on 17.01.2024:[10.0] "A very special wrestler and one of a kind. One of the most influential modern wrestlers and has an absurdly amazing match catalog."
Rating: 10.0
Sentiment: 0.47285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: bzgameswrote on 13.01.2024:[10.0] "He's probably the best wrestler Canada has ever produced. He wrestles a style that feels universal. Omega could have a match with any one, in any company, and it would have to be talked about in match of the year discussions. His run from 2016-early 2022 is genuinely one of the greatest stretches of wrestling ever produced. He is in the upper echelon with Punk, Okada and Danielson when we talk about the greatest wrestlers of the 2010's. I really can not sympathize with any detractors of his style. His body of work is top to bottom filled with the highest quality matches, feuds, and promos. People say he is just okay on the mic but his work in the Bullet Club was top notch, and when told to do so he can hang on the mic with some of the best in the world. In a world where every star claims they can match the heights of Attitude Era frenzy, he is one of the few who actually can."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: The Quick Manwrote on 13.01.2024:[10.0] "Possibly my favourite wrestler of the 2010s. Sadly the explosive style and main event status took its toll on him, but he is still a fantastic worker and one of the best in the world. Diverticulitis sidelining him recently and indefinitely is one of the biggest tragedies in recent wrestling memory."
Rating: 10.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MOXHAVOCwrote on 10.01.2024:[10.0] "He is known for his remarkable in-ring skills, adaptability, and narrative ability. He has some of the most incredible moves in his moveset.His matches frequently showcase extraordinary athleticism, creativity, and a deep story that we like. And his success in multiple promotions, including New Japan Pro-Wrestling and AEW, validates his status as one of our generation's top wrestlers"
Rating: 10.0
Sentiment: 0.35196969696969693
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: enei200wrote on 01.01.2024:[10.0] "Kenny Omega is considered one of the best wrestlers in the world in the last decade. Starting form his in-ring ability, I have never seen anyone like him. His style is a mix of hard-hitting, fast and amazing moves and strikes, and a cherry on top in the name of One Winged Angel, having a reputation of being the most protected finisher in wrestling. On top of that, having great character work and good mic-skills, Kenny is all-around good worker. But this is not all. Kenny is one of few responsible for bringing the wrestling boom that is happening today. Histime in NJPW and especially his series of matches with Okada is what brought people's attention to wrestling outside of the "Big leagues" and to the japanese wrestling as a whole. His first match with Okada is legendary and is one of the dominos that kick started the creation of AEW. Even besides his work with Okada, he has brought Bullet Club under his wing, managing to maintain it's popularity after AJ Styles left New Japan and some may say even brought more eyes to it. His story with Ibushi and Elite will forever be in my heart. Today, Omega is probably past his prime, but still manages to bring out great matches and moments for us, like his feud with Ospreay which led to two contenders to MOTY, his dream match against Danielson and a good bunch of great singles matches he had in AEW. Whatever people like him or not, there is no doubt that Omega changed wrestling and how it looks today and has left a big impact on the industry. And still, his career is, hopefully, not yet over, he can easily surprise us once again."
Rating: 10.0
Sentiment: 0.33128054740957974
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: polygonfreemanwrote on 28.12.2023:"I hate his style of matches and the way he speaks during promos. I also do not enjoy the cult like fan base he has that automatically is at your throat when you disagree with them."
Rating: No rating found
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CurlyHairMetalPunkwrote on 20.12.2023:[7.0] "Kenny Omega in NJPW was deserving of all the praise he ever got strictly on wrestling matches. However, in AEW to North American viewers at home his weaknesses on the microphone are all too apparent. Furthermore, injuries and age have not been too kind to Kenny Omega. For the wrestling fan that wants to see Kenny Omega at his best get a subscription to NJPW World and watch the series of matches against Kazuchika Okada and Chris Jericho."
Rating: 7.0
Sentiment: 0.4083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: thewrestlinguywrote on 19.12.2023:[10.0] "This man really is the best even if you are not a kenny omega fan you can admit how good he is. whether he is wrestling comedy hardcore lucha libre or strong style it dont matter he can do it all in the ring and he has the ability to make anyone look good. dont even get me started on his natural charisma or story telling abilities. and his runs as the belt collector or as the leader of bullet club are some of the best runs of the past 20 years. he really is the cleaner king of the deathmatch best bout machine and belt collector. my all time fav wrestler"
Rating: 10.0
Sentiment: 0.5083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheDeitywrote on 13.12.2023:[9.0] "Kenny Omega is a fantastic wrestler, yet is meh on the mic. I can't give him a 10/10 since he is missing a bit of the total package in that regard, but there is no denying his skill in the ring. It's a shame he's on the older side now and has a history of injuries, but fans curious of his work can always check out his NJPW or early AEW run."
Rating: 9.0
Sentiment: 0.061111111111111116
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: danzitorockwrote on 06.12.2023:[10.0] "The Best Bout Machine is an incredible wrestler, really one of the greatest of all time. Everything he does sounds very smooth and perfect, and he can work literally every kind of matches. He is almost perfect as a wrestler, does everything well, very complete. Kenny is a very important guy that managed to get a lot of people to watch and be interested in Japanese wrestling, especially at his prime in New Japan, when he was the most interesting thing in the world. Incredibly influential guy, that can do an amazing work both as a face and heel."
Rating: 10.0
Sentiment: 0.542020202020202
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[10.0] "Whenever you put Kenny Omega in the ring, he's always cooking. Seriously, this man is beyond prolific in the ring, he rarely misses. Kenny Omega is easily in an entire category by himself in the ring, this man has a very versatile move set and can work under any style of wrestling you put him in. Able to have 100% bangers in the ring with Kazuchika Okada, Tetsuya Naito, Chris Jericho, Bryan Danielson, The Young Bucks, Adam Page, MJF, Will Ospreay, Kota Ibushi, Tomohiro Ishii, etc. and whoever you can put him in the ring with, one of those special performers who can get great matches out of anyone no matter if they're near Omega's level or not. Kenny Omega's athleticism and movements are out of this world, the way he moves feels unrealistic in the sense that it's insane someone can run and jump like him, how he moves so quickly and how light he is on his feet is breathtaking. Not only that, his other biggest achievement was his involvement in having a hand in creating All Elite Wrestling, the promotion that gave me the shot in the arm to get me back to loving wrestling again, I will forever be grateful for The Elite for making AEW. You could make a strong case that Kenny's the GOAT, being he has arguable contenders for best singles, tag team and trios match, majority of his matches are among the highest rated on this site for a reason, he's that goddamn good! Overall, when Kenny Omega retires, which will be a sad day, he will go down in history as among the all time greats, up there with Flair, Steamboat, Savage, Hart, Michaels, Rock, Austin, Cena, Hogan, Punk. Bryan, etc. Goodbye *kissses hand gun* And Goodnight, BANG!"
Rating: 10.0
Sentiment: 0.18108465608465607
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: stroostwrote on 19.11.2023:"Kenny Omega cannot have a bad match. Its just not possible in any way shape or form. Omega has done more for wrestling than most and it really shows when it matters the most. A generational talent for sure."
Rating: No rating found
Sentiment: 0.21428571428571433
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: nowayboiwrote on 05.11.2023:[10.0] "That motherfucker can't miss! Kenny Omega is an example of "perfect" wrestler. I don't know if he ever underdelivered in one of his matches. What makes Omega so special is the way he adapts to his opponents, to company he's working for, to every single wrestling style. Kenny also makes his opponents look like million bucks and he understands how he should be working to make himself look good and his rival. Do I even have to say anything about Cleaner's catalog of legendary matches? Kenny is in the half of Cagematch's TOP 10 best matches of all time which is fucking ridiculous. He was involved in the greatest match of all time, in the greatest Tag Team match of all time and possibly the greatest Trios match of all time. Alongside the Bucks, he is a foundator of The Elite, one of the best stables of all time. I'm seriously tired of pretending that Kenny isn't one of the greatest wrestlers of all time and I have no idea how you can give him rating below 10. By the end of his career, Kenny Omega might even surpass Bryan Danielson as the GOAT. Just amazing"
Rating: 10.0
Sentiment: 0.5403361344537815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: skyesversionwrote on 02.11.2023:[6.0] "I don't think that Kenny Omega deserves the hype that he gets. Not saying he's bad or anything but why do people hype him up so much? He's just an average wrestler to me. But I digress. I can name like 5 wrestlers who are better than Kenny right now: MJF, Sammy Guevara, Will Ospreay, Kyle Fletcher, and Bryan Danielson. All amazing talents. Kenny on the other hand is just mid. Like he pulls out 5 big moves and all of a sudden he's the Bret Hart of this generation. Like what? People need to get a grip on reality, and fast."
Rating: 6.0
Sentiment: 0.07370129870129873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dntbamarkwrote on 02.11.2023:[8.0] "Kenny Omega is truly a fantastic performer, he's certainly the best out the Elite. My main issue with Omega is that he's reckless and unsafe, his match with Will Osperay at FD 2023 and his match with Konosuke Takeshita at All Out were just 2 examples that I've seen where both performers were dropping eachother on their heads and being needlessly reckless in a match. You can put together a 40 minute match without killing yourself or your opponent, i'm sure there are plenty of performers out there that can do it. With that being said, it's hard to deny Omega is a fantastic performer, definitely deserving of some of the praise he's received."
Rating: 8.0
Sentiment: 0.2765873015873016
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: mchdavwrote on 29.10.2023:[10.0] "I cant pick out a wrestler from the past who reminds me of Kenny Omega. Hes a brutal striker with heavy knee strikes and vicious chops, whilst having an elegance to his movements that, while imitated, hasnt been duplicated. He is deceptively strong, to the point where I was hardly surprised that he nearly got Satnam Singh on his shoulders before being cut off. He is a great comedic worker and is able to engage the crowd in a variety of ways, whether this be the crowd clapping along as Kenny slaps the mat before a Topé or saying goodbye and goodnight, bang! and you cant escape! along with him. Omega is a true original. A progressive visionary for the sport who has helped bring western eyes to joshi puroresu, has been open regarding his bisexuality and has engaged in a years long romantic storyline with Kota Ibushi. Amongst his greatest in-ring achievements, he was the first ever gaijin winner of the G1 Climax, which led to the industry shaking Wrestle Kingdom 11 match against Kazuchika Okada."
Rating: 10.0
Sentiment: 0.10674019607843137
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: wcwfanwrote on 20.10.2023:[10.0] "I love watching Kenny Omega. Unique moves, brutal finisher which I've never seen anywhere else. He's so quick and agile in the ring and the bumps he takes - especially to the neck - are incredible, sometimes even too much but you have to respect the risks he's willing to take in the ring to entertain the fans. To me, Omega is among the best wrestlers of all time and there's no debate. This year alone the guy's had two matches i'd rank among the best I can remember watching in 30 odd years watching wrestling. Up there with Danielson as the guy I like watching most at the moment."
Rating: 10.0
Sentiment: 0.26547619047619053
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: PontiffMJwrote on 18.10.2023:[10.0] "The greatest of wrestler of all time is never going to be a unanimous choice. It depends quite a bit on your preferences regarding wrestling style, storytelling techniques, what promotions they work in, the wrestlers they work with, etc. With all that being said, I think you can generally find much more consensus on a wrestler belonging in the GOAT conversation. For me, Kenny Omega is THE GOAT and I absolutely believe that he belongs in anyone's GOAT conversation. His in-ring ability is second to none, he's got a unique and great looking moveset, he's a top level athlete, his match catalogue is untouchable, he's had all-time matches wrestling many different styles. When it comes time for a big match, there's no one better (although Ospreay is getting very close)."
Rating: 10.0
Sentiment: 0.3557692307692308
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MattKartonnawrote on 11.10.2023:"King of cringe. Cringe kollector. The cringiest of them all. Cringy fingers. Doll fighter. Video games lover. Anime lover. One winged angel screeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeams King of cringe. Cringe kollector. The cringiest of them all. Cringy fingers. Doll fighter. Video games lover. Anime lover. One winged angel screeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeans"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Hatefwrote on 05.10.2023:[10.0] "he's that kinda wrestler, that every wrestling company would love to have, and will try their best to hire him. for me, Kenny is a complete package of a wrestler. a clear and solid 10! this guy has a vast amount of bangers in his career, and he's bigger than some wrestling companies lonely!"
Rating: 10.0
Sentiment: 0.19687500000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: dysboatwrote on 19.09.2023:[8.0] "A shockingly impressive athlete who needs a little bit of guidance in order to be utilized optimally. In the context of an american-style wrestling show, and especially one as freeform as AEW, his weaknesses are a little more apparent. He's not the greatest on interviews, at least not in a way that's super conducive to riling up a crowd in the style of the best promos before him. He also has a proclivity for matches that run a little bit longer than necessary, which isn't always a bad thing but can occasionally make it more difficult to get him or his angles over. He also seems to always go back to the same old melodramatic storytelling ideas, which worked when he was doing the Golden Lovers with Kota Ibushi, but he hasn't really been able to pull off anything similar with the same focus since. Still, he can be a great worker under the right circumstances, given the proper direction and a strong enough vision."
Rating: 8.0
Sentiment: 0.1703407224958949
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: NOIZwrote on 17.09.2023:[9.0] "My absolute favorite wrestler of all time. His pacing is absolutely amazing in every match that is hard to deny. One of (if not) the best knee strike in wrestling today. There is absolutely not one match that Kenny Omega is in thats not a banger and its plain and simple from his rivals."
Rating: 9.0
Sentiment: 0.21175595238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Saikyoprowrote on 12.09.2023:[10.0] "Kenny Omega, one of the greatest wrestler of all time and certainly the greatest of his generation but more importantly, I think when it comes to Kenny Omega, were speaking about the greatest storyteller in the history of this sport. The level of subtlety and storytelling element he puts into his matches across multiple federations and periods are unmatched to this day. Maybe the best wrestler in the world since early 2010 but its not regularly mentioned because he didnt have the famous stars ratings before mid 2010, and some people prefer to listen some haters because he use to do comedy & goofy things in addition to being one of the AEW creators and having a lot of 5+ stars, just by opposition, thats hilarious, thats why you will see so many ratings below 8 or more & some silly comments like « no selling/storytelling » just because he is with the Young Bucks who do flips and are associated with spotfests, ridiculous. That being said, his unbelievable run in AJPW junior heavyweight division + his historical run in DDT, combined to his legendary NJPW run, you add his AEW/US performances where is showing his versatility by having the best matches in every division (single, Tag, Trios, 8-man, 5v5, Hardcore) in weekly and PPV, puting others over and creating stars (Hangman, Ospreay, Takeshita), still being the attraction without being the main eventer guy who putting on 50 minutes single matchs and always around the world title picture, and you have the most complete wrestler who ever existed, an absolute legend, legendary wrestler. Look forward to more because he has always amazing things to say in the ring. Once in a lifetime performer."
Rating: 10.0
Sentiment: 0.3642113095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: siradrian118wrote on 12.09.2023:[10.0] "One of the greatest of all time. Truly one of the all time great in ring performers. The legendary matches he has had with Okada, Ospreay, Danielson, Ishii, Naito, Ibushi, Tanahashi, Jericho and the great tag matches with the Bucks and all the great multiman matches. A man that can wrestle with many styles of wrestling from strong style to lucha to technical wrestling."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: illiteratewand1wrote on 09.09.2023:[7.0] "Kenny doesn't live up to the hype, he doesn't take wrestling outside of Japan seriously, and for many people he has sabotaged his legacy with highly questionable comedy wrestling and associating himself with some of the most toxic personalities in the professional wrestling world. Overpushed."
Rating: 7.0
Sentiment: 0.05757575757575758
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Bockelitowrote on 04.09.2023:[10.0] "In my Opinion, Kenny Omega is the single best Wrestler of All Time, tied with Okada, his greatest Rival. He had probably the best 2 year run in the Ring between jan 4 2017 and January 4 2019. And if you add the 2016 g1, you have in that span alone 10 matches that are, in my opinion, better than most all time greats best match. And in the rest of his career and you have one of the best match collection of all time. But Omega is more than just all time great matches. He had great runs as world champion of two major promotions, he helped build aew from the get go because of his reputation, reputation that he garnered because of his talent which helped popularize new japan in the west, all while being a great team worker. He was voted the second best foreing wrestler in japans history (although recency bias played a large role) and is one of the biggest wrestlers to never be in the wwe. He is also the best wrestler at both single and tags since the days of the four pillars of all japan. In total, he has, in my opinion, a strong argument to be a top 10 greatest wrestler of all time, not in the okada, kobashi, misawa, tanahashi and flair tier, but in the one just beneath. And when it comes to best all time, his stock is even better."
Rating: 10.0
Sentiment: 0.5841450216450217
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Foxmagic37wrote on 04.09.2023:[7.0] "Great athlete and Incredible stamina to have the kind of matches he has. But also incredibly overrated by his fan base. I get it, his matches are very good, some might say even GOAT candidates (which I don't think so). It's the constant no selling and big spot centered that doesn't do it for me. It seems like he's trying to copy AJPW's King's Road style from the 90s. There are people currently who do the same stuff he does as well, which makes the only thing stand out about him is his antics. Also, his promos suck. Overall, He's a great athlete, has had very good matches but to say he's the best in the world right now, in a world where Okada, Danielson or even Gunther are wrestling is preposterous."
Rating: 7.0
Sentiment: 0.3941071428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ViolenceBretwrote on 07.08.2023:[9.0] "Oh Kenny Omega, your work in DDT and tomfoolery with the Young Bucks make it so hard to love you. Omega is a natural, his movements are there, he has plenty of personality, and he can tell a story in the ring. To call him a joke or devoid of talent would be a complete lie. Yet he needs to know when to slow things down and cut to the chase... When he is being serious as the cleaner or getting booed with Don Callis, things just seem right. He's an excellent world champion when paired with the right opponents. As a tag-team specialist, the Golden Lovers were topnotch, essentially taking the WWE Chuck and Billy formula to the next level. Yet when he's with the Young Bucks and playing dress-up... Totally insufferable. Regardless, Omega has had a lot of classic matches and just gives it his all nearly every week. His career is proof you don't need the WWE system to be successful in professional wrestling. The best bout machine? Not really. A natural entertainer and great athlete? Without a doubt. Feeling a 9.4/10 for Omega. Obviously this could change, but where things are, he's proven himself to be a beast in the ring. Along with CM Punk and Bryan Danielson, one of the top-players in AEW."
Rating: 9.0
Sentiment: 0.17830158730158732
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: juiceisloosewrote on 04.08.2023:[4.0] "Looking at his overall rating, I begin to think that I may be the only one to think that he is not the current greatest wrestler in the world. From his work in ROH to his NJPW and AEW stuff, I never got the hype about him at all. Is he a good in ring worker? Depends but mostly pretty good. Not a fan of his selling tho. Is he the best promo? . Never saw him as a promo guy. Too animated and obnoxious for my taste. Even if I excuse his other shortcomings, his character work is the worst of them all and hella cringy. Also, some of the stuff he produced in AEW are questionable and just not good. Just a bizarre dude and while solid in the ring, one of the most overrated of his era."
Rating: 4.0
Sentiment: 0.1578125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MDavis2001wrote on 28.07.2023:[10.0] "(03/01/2023) Called the best bout machine for a reason. From the mid 10s to the present day so many wrestlers have tried and failed to emulate Kenny Omega. From the unabashed honesty of knowing you are the best, to the moves he does and even the way he moves and hits the ropes, Kenny Omega is the peak of modern day professional wrestling. He made himself the most sought after wrestler without the aid of the WWE machine, somehow managed to make NJPW and Bullet Club relatively mainstream and has been one of the premier wrestlers for the company who ended the monopoly WWE had on the business. Kenny is an exceptional wrestler with great technical ability, brutal strikes, impressive strength, a great look and he can work almost any style. He's one of the best of all time, end of story. (19/03/2023) After much deliberation, I've come to the conclusion that Kenny is my 2nd favourite wrestler of all time, only behind Kenta Kobashi."
Rating: 10.0
Sentiment: 0.2853174603174603
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheEnigmatic1wrote on 23.07.2023:[9.0] "I am a huge Jim Cornette fan I will say that so I can say... I actually Like Kenny Omega, maybe because I never watched his DDT stuff and much of his Golden Lover era but I can say, He has such a fun move set and can sell pretty well and his matches are so fast and exciting in Japan and AEW this man has had so many good matches and His story with Hangman was really good and he may not be an amazing english promo I will admit hearing him speak Japanese it's really entertaining and he comes off as a star when in Japan, But the thing that brings him down a point for me mainly is. The Young Bucks, I hate Kenny with the Bucks it's just eh I despise the bucks and Kenny has had good matches with them such as At Revolution but They are not good actors and it can be hard seeing them try to act and have these emotional moments. But Kenny overall is a really entertaining wrestler."
Rating: 9.0
Sentiment: 0.1784979423868313
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: simi99wrote on 11.07.2023:[10.0] "In a very few words... the PERFECT wrestler. The GOAT, the best wrestler of all time. I love his match, i love his personality, i love everything. Kenny Omega is really the best."
Rating: 10.0
Sentiment: 0.555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: John Brandowrote on 06.07.2023:[10.0] "Kenny Omega ist einer der besten Wrestler der Welt. Man denke nur an die Matches in Japan gegen Okada oder gegen Ospreay. In Nordamerika steht er bei AEW auch mit an der Spitze. Seinen Verletzungen hatte er Tribut gezollt. Gut, dass er wieder mit an Bord ist. Vielleicht macht er ja eines Tages doch noch den Schwenk zur WWE. Aber schon jetzt, das ist glaube ich sicher, hat Kenny Omega sich dick eingetragen in das große Geschichtsbuch des Wrestlings. Herzlichen Dank dafür! The Best Bout Machine!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SienaArsenwrote on 02.07.2023:[10.0] "Being the most simple and direct possible with the words, this guy is the best wrestler of all time."
Rating: 10.0
Sentiment: 0.32
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Neon Aussiewrote on 02.07.2023:[10.0] "Absolutely amazing in-ring talent. Omega and Walter have dominated the decade of the 2020's as far as in-ring talent and ability go. Phenomenal performer. Ive never watched his comedy stuff or gay stuff that Cornette talks about and dont intend to, so as far as I'm concerned he's pretty great. He's put on some of the greatest matches Ive ever witnessed. It's a tall order but I think Omega probably fits onto the 20 Greatest Wrestlers of All-Time list. Amazing considering he's never been to WWE."
Rating: 10.0
Sentiment: 0.5366666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: cloutless kamiwrote on 30.06.2023:"Greatest athlete and professional wrestler to ever step in the ring. So versatile in many many styles of wrestling + lengthy prime in japan + longevity up to AEW, he is still capable of putting on insane matches. Produced bangers with Naito, Okada, Ishii, Ospreay, Kota, etc. in Japan. Then continues to impress in AEW with matches with Pac, Danielson, Hangman, and recently Ospreay (7 star banger at FD). Just watch his most recent match with Ospreay at Forbidden Door and you will see why he is the best. Add that on top of his peak athletic performances in NJPW along with his underrated character development love story with Kota, BC, and the Elite, and you've got all the reasons to say he is the best professional wrestler in the world"
Rating: No rating found
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: londonbeenbugginwrote on 19.06.2023:"Good physique, cool look, good athleticism, meh on the mic, but overall he has a good presentation. If he took himself a little more seriously in the ring and on the microphone, I could see the hype about him. If he was reigned in a little bit by booker/promoters, I think he could be a genuine star."
Rating: No rating found
Sentiment: 0.2641666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: InsertFunnyNameHerewrote on 17.06.2023:[8.0] "Ill admit this right here, Ive never gotten the hype behind Kenny Omega, I think hes really good in-ring, but not at the all-time great level like people say he is. I dont think he surpasses Bret Hart, Eddie, GUNTHER, and Danielson, I also think that he doesnt really have much he brings to the table beyond his in-ring. Hes not a physically intimidating specimen, hes not incredibly charismatic and he doesnt really have an amazing gimmick either. Ultimately I think hes probably somewhere around a 7 or 8 in my eyes."
Rating: 8.0
Sentiment: 0.15297619047619046
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: gargoylesmainwrote on 15.06.2023:[10.0] "The reason I got back into wrestling. He can adapt to any style of wrestling and put on an excellent match - lucha, hardcore, technical, doesn't matter, Omega can do it and do it well - and can go at an exceptional level, even now over 20 years into his career. There's a reason why so many guys have their best matches with him. He is unselfish, and always give his opponents plenty of time to shine, even when they're maybe not on his level of stardom. As a babyface, he sells the hell out of his opponents offense, and as a heel he's never afraid to eat shit to get guys like Ishii or Hangman over. Great in-ring, and out-of-ring story teller. He keeps his body in top shape, is charismatic as hell, and deservedly well loved. His obvious weakness is his hit or miss promo, but that's pretty minor in the overall body of work."
Rating: 10.0
Sentiment: 0.3729166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dancerwrote on 01.06.2023:[10.0] "The master of being multifaceted, Omega can play a lot of roles at the top level. Great tag team guy, genuinely funny, believable heel, and lovable face. Omega is who transitioned me into appreciating all aspects of wrestling, not just WWE. Biggest complete package the sport has ever seen. Very lucky to see him compete live."
Rating: 10.0
Sentiment: 0.40246212121212116
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Frank Shooterwrote on 30.05.2023:[10.0] "The Best Bout Machine nickname is not enough to describe how great Kenny Omega is as a performer. Everytime there is a big match, he is going to deliver a one of a kind banger, doesn't matter the opponent. Even when the match is not as important, he is nothing less than good."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SC316wrote on 16.05.2023:[10.0] "Kenny is currently my favourite wrestler active. He is top tier in everything he does. He can be in the brutal visceral matches, the technical 60 min iron man, or even a goofy comedic character. The amount of classics Kenny has produced is unmatched by anyone in history. I haven't seen a single bad let alone bland match from him. He always give it 110% and the fans can tell. Also him and Ibushi have the greatest story ever."
Rating: 10.0
Sentiment: 0.005357142857142882
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Vanstylerwrote on 08.05.2023:[10.0] "Omega is the ultimate athlete, everything he touches turns to gold and everything he attempts within the matches he does in an outstanding way. It's hard to count many wrestlers within Kenny's reach."
Rating: 10.0
Sentiment: 0.17708333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Leo 4 Kingwrote on 08.05.2023:[5.0] "Kenny Omega is a soso wrestler, able to give a good storytelling to his match but he doesn't do it very often, I don't really like that much his moveset and is selling can be good but isn't always at all."
Rating: 5.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MehdiStarkwrote on 02.05.2023:[10.0] "No one in current decade can be better & more complete than Kenny Omega. Real GOD OF PROWRESTLING. He is great at mic, in ring & created super great stories from Golden Lovers & BC civil war to hangman omega vs Bucks & vs Jon Moxley. Seriously I wasn't his fan before AEW but now I have to admit He is the best wrestler I've ever seen during my 8 years watching wrestling. Also he motivated me to watch promotions abroad United States cause I can see real pro wrestlers not just sport entertainers"
Rating: 10.0
Sentiment: 0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MasteroftheMatchGuide99wrote on 02.05.2023:[10.0] "There's a reason Kenny Omega is always billed as a "Best Bout Machine." If he's in the ring with someone who can match his skill, the 5 stars system will need extra stars added to rank it. His 4 battles with Okada are legendary and his Wrestle Kingdom match against Ospreay was definitely in the contender list for MOTY. He also did great with 3 less-known wrestlers who came to AEW and delivered to make the matches far more than passable. I can understand some people don't like him because of his arrogance, but if you pass the attitude and look at the worker, you're seeing a talent that can't be surpassed."
Rating: 10.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Shawderwrote on 01.05.2023:"The Best wrestler in the world in my opinion. Those matches with Okada in NJPW were gold and even after all the injuries and Vertigo, he still puts on wrestling classics."
Rating: No rating found
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: I like wrestling222wrote on 26.04.2023:[10.0] "The best wrestler of all time he was a key part of aew and njpw one of the most athletic wrestler and puts on the best matches"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CMFunk007wrote on 22.04.2023:[9.0] "He's a great wrestler, no doubt. Maybe even the best. But "Twinkle Toes", as Jim Cornette likes to call him, has an aura about him that just rubs me the wrong way. I do enjoy his matches, but even when he's portrayed as a babyface, I want to see him get his ass handed to him. I'll rank him highly, but he's not perfect like Meltzer thinks he is..."
Rating: 9.0
Sentiment: 0.08
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: dinodykewrote on 15.04.2023:[10.0] "There is very little to be said about Kenny Omega that hasn't been said by hundreds of people, already. He's a generational talent in my eyes, and the fact that his style is different from what US fans might expect isn't a barrier to how mindblowingly good he is. He's the king of in-ring psychology and knows how to inject stories into his matches incredibly wellhis tag team title reign, world title reign and accompanying story with Hangman and the Young Bucks remains one of the best-told stories in AEW history. He's not a classic wrestling storyteller and promo-cutterhis character is nuanced and subtle and his promos are more soft-spoken, but it just makes him stand out more. In the ring, he's dynamic and well-paced, and always enjoyable to watch. Also, I have to tip my hat to him to committing whole-cloth to being gay in-kayfabe and taking it seriously the whole time. The storyline with the Golden Lovers is hugely important for many queer wrestling fans, such as myself, and a significant part of it is Kenny's committment and dedication to being an ally."
Rating: 10.0
Sentiment: 0.23146929824561405
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: HumanJerkywrote on 08.04.2023:[9.0] "I take a point for some kinda dumb gimmick matches he was in, but aside from that I very much enjoy Kenny. I do think the comedy kinda undercuts him sometimes, esp when hes wrestling in front of NA audiences, but the man is a great worker in the ring, good on the mic, has a very interesting and unique look and hes incredibly versatile. I enjoy him quite a bit, esp for modern era style guys."
Rating: 9.0
Sentiment: 0.44999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Makoto92wrote on 06.04.2023:[3.0] "Time has passed and I began to think that Kenny is kinda overrated man. Maybe he was the best in New Japan, but it's not hard to be at the top of a promotion where there's no turnover in the main event and the booker is the same overrated person. And when Kenny moves to America, all his disadvantages are apparent: he can't cut a promo like a star, he can't make good matches like a star and he is constantly being pulled by his rivals (Match with Bryan Danielson is the perfect example of this case)."
Rating: 3.0
Sentiment: 0.3698863636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Justtwrote on 02.04.2023:[10.0] "I like Kenny. He did very stupid things in his career, like wrestle the 9-year-old and the s*x doll, but he had great matches too. Kenny had great years and was one of the most outstanding wrestlers back 2016-17, but I feel like he lost some of his magic since the departure from New Japan in 2019. A very controversial wrestler and I can see why people don't like him, but, in my opinion, he was one of the best wrestlers of the past decade."
Rating: 10.0
Sentiment: 0.3364876033057851
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Personanowrote on 20.03.2023:[10.0] "My personal favourite wrestler. It's pretty difficult to put into words just how great Kenny Omega is as a wrestler. He's a guy so good I struggle to bring to mind a single bad match he's ever had with anyone. That's the mark of a fantastic pro wrestler in my opinion, when a great to terrific match can be had with virtually any opponent. A lot of fans don't seem to enjoy his high-octane, somewhat dramatic style of wrestling but that's exactly what I love about him. Each time he steps into a ring you just know you're gonna see some of the fastest, most dramatic yet hard-hitting action on the planet. That breakneck style is what makes him who he is and why he's been my favourite for years at this point. 10/10."
Rating: 10.0
Sentiment: 0.15070028011204484
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: burningflowsionwrote on 15.03.2023:[10.0] "Kenny Omega will go down as arguably the greatest in ring talent to ever live. Personally, my vote on that would be Misawa, but Omega is the closest you could possibly get to taking that spot. There is one thing he has not done, which is go to WWE, and at this point it really doesn't matter is he never goes there, his legacy is cemented for the rest of time. Now he is not my favorite wrestler, but that is another reason these praises should not go unnoticed."
Rating: 10.0
Sentiment: 0.1851010101010101
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KSupreme3wrote on 12.03.2023:[10.0] "Kenny Omega is a one in a lifetime talent that has yet to touch a WWE ring (as of the time of this writing). When it's all said and done...he will be celebrated as one the greatest wrestlers of all time. Without Omega there would be no AEW. The matches he's had in NJPW are of LEGEND, and are must watch if you haven't already. ESPECIALLY the matches he's had with Okada. the OWA is one of the most protected moves in pro wrestling, and besides a couple exceptions, nobody has ever kicked out of it. When Omega is on his maximum level, he puts on quite the spectacle and is always capable of putting on a 5+ star banger at any given moment. His style might not be everybody's cup of tea, but he's a compelling wrestler and is bound to entertain those who allow him to. 10/10, one of the GOATS."
Rating: 10.0
Sentiment: 0.39166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KKeanelwrote on 12.03.2023:[9.0] "I have some issue with his and Bucks view on understanding, managing and organizing wrestling sphere, but from his work perspective - complete genius. Numer of glorious matches with great psychology and story consistent is incredible. We will see what future will deliver, but this could be a case of greatest non-japanese wrestler ever who never stepped foot into WWE ring."
Rating: 9.0
Sentiment: 0.5083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jonsnoewrote on 10.03.2023:[10.0] "One of the best wrestlers I've ever seen. Amazing charisma, amazing move set, incredible work rated. When I saw most of his matches, I can expect to rate at least 8 points on this site."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ZayTokyowrote on 06.03.2023:[10.0] "alright lets be really this is the biggest draw in modern wrestling and has made the scene outside of wwe so popular and well know to a newer audience. Constant bangers constant hits no misses and he is legit someone who both in ring and on the mic rarely ever does wrong. His storytelling is near perfect too and him having some of the best matches ever says it all. easy 10/10"
Rating: 10.0
Sentiment: 0.27777777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ChrisPrattAsMariowrote on 04.03.2023:[10.0] "The main reason I got back into wrestling was because of this man and the great matches he had in NJPW during the mid to late 2010's. In AEW, he hasn't been able to do what he did in NJPW, but it hasn't stopped him from pulling out a classic when given the chance. Also is a great character on tv whether its as a comedy villain as he was in 2020 as world champ or as a lovable babyface as he's been since his return in 2022. My favorite match of his is against Kazuchika Okada at Wrestle Kingdom 11"
Rating: 10.0
Sentiment: 0.31333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Deadmagician33wrote on 28.02.2023:[8.0] "Very overrated in my opinion, but still an amazing wrestler.. Big fan of his work in AEW with Hangman as tag champs."
Rating: 8.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: saads97wrote on 10.02.2023:[10.0] "In my opinion, hes the greatest in ring performer of all time. His matches with Okada, Naito, Tanahashi and many many more are 10/10s. I dont think weve ever seen a competitor this consistently amazing."
Rating: 10.0
Sentiment: 0.62
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ajsmileswrote on 01.02.2023:[9.0] "Amazing in-ring talent. Used to be a Young Bucks-style spotfest wrestler with constant high spots and did goofy comedy matches. However like Will Ospreay he evolved into one of the best in-ring talents of all time. People are saying he had better matches on NJPW but how the hell is he supposed to have 5-star matches every week with TV restrictions? He can do that on PPV and he does. In fact I want to have his last match with Will Ospreay on AEW. I feel like Japanese people don't care enough about them over there, they're primarily used as Westerner bait while Okada and the other Japanese guys are the main attraction for the main fan base. My favorite character of his was the heel 80s action movie villain type gimmick he used while he was AEW champion. Promos in my opinion he was never good with. You can tell he's a shy guy in real life while he's cutting them. But that doesn't take away from his greatness."
Rating: 9.0
Sentiment: 0.09174242424242424
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Aliquickkwrote on 01.02.2023:[9.0] "Has gotten a lot better over the years, but you have to judge the wrestler by their entire body of work, not what's happened in the last few years. Kenny in NJPW is far better than the AEW edition, and it's hard to forget the comedy wrestling he degraded himself with earlier in his career. Is a decent promo, very good performer, one of the hottest wrestlers of the last few years."
Rating: 9.0
Sentiment: 0.12375000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: gijoewrote on 18.01.2023:"Hard to imagine a more consistent big match man than this guy Rather than repeat what has already been said, I'll simply admit that Wherever he wrestles he puts on a helluva show"
Rating: No rating found
Sentiment: 0.09166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: PhenomenalGunwrote on 15.01.2023:[9.0] "[Update from 7 to 9] To be honest, I still dislike him as a person because of how arrogant and self-centered he comes off as, but he really is a stellar in-ring worker all around. He has this explosive style that makes a lot of his matches can't miss. To be honest, I like him better in NJPW than AEW, but I suppose that goes for a lot of wrestlers I follow, just him in particular. He doesn't really need a faction or a team surrounding him to excel, he's actually better off on his own or with Ibushi. I would love to see the old-school Kenny more often rather than the "Elite" Kenny Omega. Kenny's promos aren't the best but they're pretty good, and his character is usually entertaining and surprisingly works most of the time despite various inconsistencies. Overall, he's a fantastic wrestler and the only one like him."
Rating: 9.0
Sentiment: 0.39841269841269844
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: benh2wrote on 13.01.2023:[8.0] "Kenny, Kenny, Kenny. No doubt he is one of the best wrestlers around today, he's shown that plenty of times in Japan. When he's motivated, his work is tremendous: snappy, crisp, smooth, meaningful. But too many times he falls foul of his own obsession with his gimmick or gets too tied up in nonsensical cooperation wrestling. AEW/house show Omega is absolutely dreadful; lazy, half-paced and as a result sloppy. His promos are weak and his cadence is just strange, I can't get on board with it at all. His offence has great variety and impact but again it needs him to be motivated for it to work properly. Big match Kenny is pretty untouchable for sure but unfortunately we don't see it much anymore. If injuries are catching up, he'll need to reinvent himself if he's to continue working weekly TV."
Rating: 8.0
Sentiment: 0.17587719298245616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: kenny jaksonwrote on 08.01.2023:[6.0] "Kenny is a good wrestler but he is better comedian.i dont like his face sell.his face reactions are so so fake.his body sell is so comic.just look at his legs.when he took a big bump he always shake his leg like he have heart attack or something.most of his match is Gymnastics and Trampling.his moves are always the same.he do one move over and over and over.and he is one of those wrestler who is willing to do anything for their followers and make wrestling fake and ridiculous as possible."
Rating: 6.0
Sentiment: 0.0880952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Malarkianwrote on 07.01.2023:[10.0] "NJPW Kenny is an 11/10, world-beater, one-of-the -best-to-ever-do-it. AEW Kenny has fallen off a bit. And by "fallen off" I mean to outstanding from years of frankly incredible. Part of the problem is age, part of it is the injuries, part of it is the production, part of it the Western style, and part of it is just the caliber of talent that he works with now being unable to keep up; e.g., the V-Trigger in NJPW looks like a killshot because the guys taking it know how to take it and sell it, whereas the AEW guys either don't know how, or are unwilling to take it because it's a "stiff" move and it comes off looking kinda weak. (Same problem Ospreay has w/ the Hidden Blade). AEW also kind of presents Kenny as some nerdy, goofy, cartoony, Wile E. Coyote-type villain and it takes away some of the gravitas of his work. Which is not to say that there's no room for that in his work - his moveset is littered with video game references, his whole Cleaner gimmick is goofy AF, but he's still presented as a killer. He's gotten better since he took time off to rest and heal his injuries, and I understand that he can't wrestle every match like it's Wrestle Kingdom and it's more about longevity, but I hope to see a little more NJPW Kenny in his AEW work. All this basically just to say Kenny is getting a 10/10 rating because what the hell else could I give him'"
Rating: 10.0
Sentiment: 0.14133597883597881
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: NoSellwrote on 05.01.2023:[10.0] "He is the greatest wrestler ever. I don't know what really else to say. His run from 16-18 is also the greatest peak of a wrestler ever. If I zoom through the top 20 greatest matches of all time, not just by Cagematch ratings, by my own opinion too, his name probably appears about 10 times. GOAT."
Rating: 10.0
Sentiment: 0.7166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BlueBrandwrote on 05.01.2023:[10.0] "Kenny Omega is known for his work in various promotions around the world, though primarily New Japan Pro-Wrestling and All Elite Wrestling. He is widely considered one of the best wrestlers in the world and has won numerous championships and accolades throughout his career including Best Bout Machine and The Belt Collector Omega is known for his high-energy, athletic style and his ability to put on great matches with a variety of opponents. He is also known for his charisma and his ability to connect with fans. He has been involved in many of the most memorable matches and storylines in wrestling over the past few years, including his rivalries with Kota Ibushi, Kazuchika Okada, Will Ospreay and Hangman Adam Page."
Rating: 10.0
Sentiment: 0.3238636363636363
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: RookieBoy1wrote on 04.01.2023:"Kenny Omega has been one of the most consistently good performers of the last decade, putting up high quality matches back and forth, as well as being an esential main event figure in every promotion he has been. Agile and flashy without being over-the-top, his style perfeclty blends in with all kinds of opponents in all weight categories. He is also an historically important person for his contribution to the creation of AEW, as well as taking New Japan to international stardom in the late 2010s."
Rating: No rating found
Sentiment: 0.09715617715617711
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: comahanwrote on 04.01.2023:[10.0] "One of the very best to ever do it. From his days in ROH and DDT to his rise in NJPW and being the ace of AEW, he is special, not only always putting on incredible matches, but bringing emotion and top level storytelling to almost all of his big rivalries that few can match."
Rating: 10.0
Sentiment: 0.3653061224489796
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: migrationswrote on 23.12.2022:[10.0] "There's a lot of Omega haters now a days, but I still remember him as a wierdo who shaved his forearms so it would get stubble and he could rub them on the opponents face. I saw his rise, and it was great. I saw Wrestle Kingdom 11 live and I'll never forget it. Kenny is objectively a great wrestler. His selling is incredible, he's very fast and he gives it his all. Look at the list of many top matches from 2017 onward and there is a reason why Kenny is in almost all those matches. He is that good."
Rating: 10.0
Sentiment: 0.5745454545454546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SimonMatveevwrote on 05.12.2022:[10.0] "Greatest wrestler of modern generation in my opinion - amazing in-ring work and moveset, bewitching charisma. No matter if it's Golden Lovers era Omega, or BC leader Omega, or AEW Omega - he kills it in every promotion he's in. Also he just seems like a cool guy to hang with, even despite recent All Out mess"
Rating: 10.0
Sentiment: 0.371875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: degaretwrote on 03.12.2022:[6.0] "Klassischer Spot Wrestler. Seine Promos sind in Ordnung, aber nichts besonderes. Ich kann die guten Bewertungen nicht ganz nachvollziehen. Mit 9.5 sollte er von der Bewertung her ein Superstar sein wie The Rock, aber genau das ist er in meinen Augen eben nicht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Enriquepollazzowrote on 02.12.2022:[9.0] "Great wrestler who can have great matches with anyone. A little too goofy sometimes. Hes too good to change anything now. But wonder what he would be like solo in WWE. Just like away from his friends and longtime coworkers. That type of thing doesn't really happen much anymore. Would be interesting. Has had a 10 career when you balance things out. They give guys like Randy Orton 10's and Kenny is way better."
Rating: 9.0
Sentiment: 0.44583333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: amaiwrote on 27.11.2022:[10.0] "one of the best of all time, although i don? t think he? s as good as he used to be you can? t deny that 2016-2019 omega was on top of the world"
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Mcbolskywrote on 22.11.2022:[10.0] "Probably has the best moveset in all of pro-wrestling and is up there with RVD for best moveset of all time. His selling is amazing, his athleticism is off the charts, and he is super strong for someone that isn't 6'6 260. The V-trigger is such a fun move to watch people take and once you see the OWA, you know it's over. Probably the most protected finisher in the history of the business. I personally prefer his matches with Naito rather than his matches with Okada. His run from 2016 up until when he got injured was GOAT worthy. 10/10"
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MainEventMasterwrote on 20.11.2022:[10.0] "Arguably the best wrestler of his generation, he just GETS pro wrestling, believable moves and finishers, masterful storytelling, great character, he truly makes the audience FEEL."
Rating: 10.0
Sentiment: 0.825
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: YourKingMobwrote on 05.11.2022:[7.0] "A sad case of "what ifs" for most fans, for Kenny's best days were before most ever saw him wrestle. Kenny was best while he was in DDT and as a junior in in New Japan, and most fans really started watching him when he was in his heavyweight run in NJPW, which is his worst work IMO, despite what uncle Dave says. As Kenny grew into his role at heavyweight in NJPW, his worst traits ever magnified: the histrionics, the boring knee spam, the illogical match pacing, the clumsiness that made him dangerous to himself and others in the ring. Watch him before he became the leader of The Bullet Club - his best days then were long past."
Rating: 7.0
Sentiment: 0.029090909090909094
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CutterClubwrote on 01.11.2022:[8.0] "One of the best in the ring in this generation. One of the most mediocre on the mic and with character work. He's excellent when he keeps it in the ring, and can be a bit cringey on the mic."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Minimaniawrote on 01.11.2022:[10.0] "To me - the greatest wrestler of all time. He is perfect in every facet that I have evaluated. From an in-ring standpoint, I have seen not one person that not only does an outstanding amount of moves, but does them to perfection; his moveset is like a created wrestler you would make when you were a kid but brought to life. He also adds a little touch to everything he does to make it unique - even the way that he runs the ropes. He has even held the main title in a major promotion from the US (AEW), Japan (NJPW), and even Mexico (AAA). To start, his speed is amazing. He runs the ropes like no other. He also has amazing strength, with feats like picking Evil (around 240 lbs) up for the OWA while he was dead weight. But not only is his athleticism and move execution stellar, but also his ability to tell stories inside and outside of it. Kenny not only has mastered the art of in-ring storytelling, evident by his masterful series of matches with Kazuchika Okada, whose stories almost exclusively took place in the ring, but Kenny is also proficient in creating stories outside of the ring. Even though his feuds with Hangman Page and Kota Ibushi both have great in-ring storytelling, some of the best parts of them took place outside of the ring. Kenny, along with the Young Bucks, has also revolutionized storytelling as a whole in the world of wrestling by creating their vlog, Being The Elite. This helped them greatly on the indie scene, as it allowed them to create overarching storylines no matter what promotion they were in. While Kenny greatly shines in singles competition, he also has been part of some great tag teams throughout his career. Whether teaming with Kota Ibushi as the Golden Lovers, a tag team that blended a real-life bond and high-octane offense, or with his friend Hangman Page, whom Omega found great success with before leaving him and becoming his rival, both are iconic teams that have put on some of the greatest tag matches of all time. While those are some of the best duos Omega's been a part of, he has also been a part of some of history's greatest groups. From joining Bullet Club and rising up the ranks to become of the few people to lead the group, to breaking off and forming The Elite with the Young Bucks and various others, it seems Omega always aligned himself with the best in the business. There is not a single type of match that Omega can't excel in. He has had fantastic normal singles matches (vs Okada, Naito, Ibushi, Tanahashi, Ishii, etc.), tag team matches (Golden Lovers vs Tanahashi and Ospreay, Golden Lovers vs Young Bucks, Omega/Page vs Young Bucks), stipulation matches (deathmatches vs Mox, Ladder match vs Elgin, Stadium Stampede), and even comedy matches (various throughout DDT run). This unparalleled flexibility puts Kenny above the rest when comparing him to others. Overall, with all this combined, I believe that no one comes close to Kenny as the greatest of all time. There are no holes in his game."
Rating: 10.0
Sentiment: 0.3248090745732257
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: mrgosciu213wrote on 28.10.2022:"my favourite wrestler ever. one of the greatest wrestling talents ever with fantastic in-ring abilities and a lot of great matches. good promo skills, great looks and overall good wrestler."
Rating: No rating found
Sentiment: 0.6285714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheNomadMagicianwrote on 27.10.2022:[10.0] "Kenny Omega ist ein absolutes Gesamtpaket, er bringt den Look, die Ausstrahlung, das Können im Ring sowie Charisma und Mic-Skills mit. Habe noch nie ein mittelmäßiges oder gar schlechtes Match von ihm gesehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: texasyoshwrote on 16.10.2022:[9.0] "Kenny Omega is an incredibly influential and important wrestler in modern wrestling history, no matter if you like him or not. Kenny used to be one of the most dynamic athletes in pro wrestling, but today I find him being very same-y in the ring. His work in NJPW is the pinnacle, he had great matches both as a heavyweight and a junior. His work in DDT is also impressive, both in-ring and drawing wise. There are definite flaws with Omega, I think there's very wonky match structure in some of his modern matches, and as a promo he sounds very unnatural. Despite that he's overcome."
Rating: 9.0
Sentiment: 0.3623076923076924
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheStarNovaKanewrote on 11.10.2022:[10.0] "The most well-rounded wrestler of this generation without a doubt. Proves himself with doing all kinds of match types against all styles of opponents & having consistently great matches with everyone. Champion & top guy of many promotions worldwide & never has had an issue with putting others over. Anyone wrestling Omega elevates their own quality due to him making them look great in there & his opponents realizing this is a very important match for them to show off how good they can be. He's the best men's wrestler at telling a story in the ring. His timing is perfect. He's probably the biggest legend of this time period of anyone currently in their prime. The only thing he has close to a flaw is his dedication to great matches being so high that it obviously takes a toll on his body but he's in the best shape he can be in & his cardio is the highest of any wrestler I'm aware of. Maybe the best wrestler of all time? He's definitely a contender. Especially since he's the closest thing to perfection in a well-rounded wrestler as you are going to get."
Rating: 10.0
Sentiment: 0.4684090909090909
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheOneAndOnlyCactuswrote on 29.09.2022:[10.0] "Explosive, Dynamic, with a large arsenal of moves, impressive selling with his bumping and expressiveness. He also has played several characters that I enjoy, with a variety of promo work. Many will accuse him of being only a spot monkey, but I disagree. He is also very capable of telling great stories in the ring, and that makes him excellent"
Rating: 10.0
Sentiment: 0.37493506493506495
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: devwilwrote on 28.09.2022:[10.0] "He's just so explosive and dynamic, and while some of his critics might accuse him of playing things too big... this is pro wrestling, not Swedish arthouse cinema. If that's your problem with him, I hope you said the same stuff about Flair and HBK because they both also played things huge, and they're kind of unanimous legends in the ring. His expressiveness and willingness to be silly are features, not bugs. And his athleticism is pretty undeniable, and he's had all-time great matches. I can understand some quibbles about him (maybe you don't like his promos/character; I can see it), but he's a generational talent and I think refusing to acknowledge that is just willfully ignorant."
Rating: 10.0
Sentiment: 0.19375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Rivermanwrote on 15.09.2022:[8.0] "Never quite understood the hype in terms of him being (one of) the best in the world. However, he's still pretty darn great with a cool moveset and amazing technical skills. Not found that emotional connection to him or his work yet but I'd like to keep trying as it'd no doubt bump this rating."
Rating: 8.0
Sentiment: 0.42857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GonzoAppreciatorwrote on 07.09.2022:[10.0] "One of the greatest wrestlers to ever lace up a pair of boots, not only because of his great work rate, but also because of his masterful ability to tell a story in the ring. Kenny's promos are also really entertaining and he has a great ability to naturally jump from being serious and comedic during his promos. He helped co-found AEW which has revolutionized the wrestling business and has used his position as a top guy in AEW to help get younger wrestlers like Adam Page and Alan Angels over."
Rating: 10.0
Sentiment: 0.43666666666666654
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Adrian Nightwrote on 06.09.2022:[10.0] "The closest thing to a God of Pro Wrestling in the last 5 years. There's no other things to say about him..."
Rating: 10.0
Sentiment: 0.03125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GwenCube64wrote on 05.09.2022:[10.0] "Storytelling master, wrestling master, solid enough promo, an all time talent and can put on a solid match in his sleep."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: humanesquewrote on 28.08.2022:[10.0] "One of the best wrestlers of all time, not because of moves, but because of a thorough understanding of the kind of storytelling that makes the medium so satisfying. Not the best athlete in the world, but since wrestling requires two, put him in there with a fantastic athlete and you'll get absolute magic every time."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JessieTLSwrote on 26.08.2022:[10.0] "Kenny Omega is just a perfect pro wrestler. He has won an embarassing amount of titles all over the world, and he transformed pretty everything he touched in absolute gold. He has probably the most complete and cool moveset in american wrestling, because every single manover in it is memorable. For example, he made freakin' epic the V-Trigger, a simple knee strike. He had literally 19 five-star matches, and he wrestled in the only 7 star match of all times. I saw a lot of people that criticized his acting, but in my opinion it's very entertaining and unique. He's the co-founder of All Elite Wrestling, one of the greatest promotions in the world, and his reign as AEW World Champion was great. He performed in almost every great federation: AEW, Impact, AAA, NJPW, AJPW, NWA, PWG ecc. He was elected the best wrestler of the year four times, by three different magazines. He's a 4 times world champion. He led some of the most important stables in the recent history: the Bullet Club and the Elite. I think that's enough to get a 10, isn't it?"
Rating: 10.0
Sentiment: 0.3522321428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Benwerderwrote on 05.08.2022:[10.0] "Einer der besten der Welt. Kaum einer hat so viele Klassiker, sei es in Japan, aber auch bei AEW. Er kommt wohl bald zurück, hoffe er kann noch ähnlich abliefern"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KELLANwrote on 05.08.2022:[10.0] "Kenny Omega ist ein Zweischneidiges Schwert. Er hat eine unfassbare Ausstrahlung, sieht aus wie ein Athlet und hat mit die besten Matches. Einzig und alleine seine Goofy-Gimmicks finden bei mir nicht immer anklang. Da dies jedoch ziemlich Subjektiv ist, gibt es hier dennoch die 10. Potenzial: 4(+)x AEW World Champion - 1200 Tage + insgesamt. - Main Event"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Inserthere750wrote on 04.08.2022:[10.0] "Kenny omega was my favorite wrestler of all time. The Golden Lovers storyline was the thing that got me into NJPW and other wrestling Promotions outside the WWE."
Rating: 10.0
Sentiment: 0.16875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Tyler72wrote on 29.07.2022:[8.0] "Kenny Omega definitely has one of the better move sets across the board. Always looks like he's going to make a hit. Lots of power he brings with him in the ring. His kicks always look startlingly real."
Rating: 8.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ishimoriAkirawrote on 14.06.2022:[10.0] "the single best professional wrestler of all time. Not only has he, in my opinion, put on the most matches considered for the greatest of all time, but also consistently puts on phenomenal matches. He has a style and attitude that makes him seem like a superstar and makes every match he's in seem incredible. Kenny Omega is the greatest of all time."
Rating: 10.0
Sentiment: 0.5178571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: zags7000wrote on 03.05.2022:[10.0] "I don't understand why he's so polarizing but it seems that he is. To me, he's one of the best of his generation and maybe of all time. When it comes to putting on classic matches in big moments, few seem to be as reliable as Omega. His run in NJPW was one of the best and while is AEW run is slightly below that, it has still be really good. His promos might not be for everyone but I think he's underrated in that department. Maybe not consistent but I do believe he lands more than not. Among the greatest of all time overall."
Rating: 10.0
Sentiment: 0.3522727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Omnisplicerwrote on 02.05.2022:[10.0] "Kenny Omega has been alongside Kazuchika Okada as the face of the professional wrestling business since the mid-to-late 2010's. He is quite possibly the most complete wrestler in the world today, with the most protected finish in the One-Winged Angel."
Rating: 10.0
Sentiment: 0.24
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AntIsSwaggywrote on 26.04.2022:"Omega is talented, maybe not the best with his selling and reactions. However he knows what he? s doing and his ability to stay out of scandals furthers his star power. A guy everyone should want and someone who is definitely always going to give you a show."
Rating: No rating found
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: WrestlingFan892wrote on 15.04.2022:[10.0] "A wrestler who does nothing wrong and who any company wants, wrestles well, has mic-skills, charisma, a good manager, has formed good factions and even something unforgettable that is to continue wrestling for a long time being injured to give people a show. Living legend of Wrestling of course."
Rating: 10.0
Sentiment: 0.3083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GreatAether531wrote on 08.04.2022:[9.0] "When he's at his peak, Kenny Omega is an all-time wrestler. His singles run from 2016-2018 is in the conversation for the greatest ever, he's an athletic freak with incredibly dynamic offense, and he's one of the best tag wrestlers of the past decade as his runs with Adam Page and Kota Ibushi made clear. Too often, though, Kenny Omega gets in his own way. His 'epic' style matches are some of the greatest ever, but his insistence on maintaining this style when the situational doesn't call for it has dragged down much of his more recent run while in AEW. His working through injuries probably hasn't helped either, but his run since winning the world title was where this was more obvious than anything else, outside of the moments of excellence such as in his match with Danielson. It also didn't help that his heel character just didn't feel true to himself. Kenny Omega attempting to come off as the Ric Flair-esque heel who only cares about money and fame always felt insincere, even with how hard him and Callis tried to make it work. He's still a generational talent, but without a more consistently good AEW run, I can't justify giving him the 10."
Rating: 9.0
Sentiment: 0.2887626262626263
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CTFBwrote on 11.03.2022:[10.0] "There's always been an ongoing debate on whether pro wrestling should be treated as a legitimate contest or a form of art, and when it comes to the latter, Kenny Omega is the epitome of that. Combining puroresu stiffness with video game/anime-like storytelling makes him compelling and vastly different in the American wrestling scene, and in the best way. Many people find him hard to take seriously as he did comedy in Japan, but Omega is a big exception as I feel as a worker he's extremely versatile and able to have many different types of matches and play many different types of gimmicks. He can go from a comedy match where he wrestles an inanimate object to putting on a star rating-breaking masterclass with another high-caliber talent, it's honestly crazy how much variety Omega has in his work which leads to not one match feeling samey or similar to another match in his career. Definitely a decorated talent who has gotten the accomplishments he deserved."
Rating: 10.0
Sentiment: 0.1131578947368421
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dendowrote on 21.02.2022:[9.0] "Kenny is a true artist in the ring and has already generated a body of work that puts him in the conversation for greatest in his generation. He falls just short of being an all-time great, and I hate to say it but his natural irrepressible goofiness is a slight detriment to his persona and occasionally his matches. Still, he is absolutely top tier in terms of dazzling offense and pure emotion when it comes to his wrestling style. His status as a leader of the new school is well-earned."
Rating: 9.0
Sentiment: 0.24033189033189037
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: hassan01wrote on 19.02.2022:[9.0] "An incredible wrestler and well known not only in Japan but in the states as well. He has put up some of the best matches in this decade. A very unique move-set which will impress you for sure . After a fantastic career in Japan , wishing him luck to be the top competitor in AEW as well. He has 100 percent potential to do so. EDIT: I understand he had a injury and all but his US transition was highly average. I wont go as far as entitling it as a flop. His character was inconsistent and his mic skills very average. Regardless, there were times he hit a home-run with his character work such as portraying his persona as mentally fractured who was hell bent on proving himself as the best ever on the planet and expected others to give him the same respect. This kinda waned off as he came off as a generic cocky heel playing well below second fiddle to others having a similar role (MJF, Britt, Men of the year, Team Taz and Miro) to name those that clearly outperformed him as a villain when he was the world champion sadly and his matches just never hit the same level they did in Japan except for those against Danielson and Page. He was injured ad I get that but I make the rating on basis of what actually happened rather than what was suspected to occur."
Rating: 9.0
Sentiment: 0.15593750000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: LivingLegendwrote on 14.02.2022:[5.0] "I respect Kenny Omega and what he's accomplished in his career. However, I am not a big fan if him as a wrestler. I will give him credit first, though. He is incredibly athletic. His movements are explosive as well as impactful. That is about all the credit I can give him. While he oozes physical charisma, he has absolutely no charisma as a promo. He comes across as a complete geek and I find it very difficult to take him seriously when he talks like a comedy act every week. He struggles to construe coherent promos that make any sort of sense, and just sounds like a mumbling mess most of the time. His facial expressions are some of the most fake and overly dramatic in the business. His selling is poor. Not Young Bucks level of poor, but definitely not good. Not holding this against him at all, nor will it impact his rating, but he has definitely slowed down in recent years. He had been suffering through a myriad of injuries that clearly held him down. I would say he should maybe do one more run in AEW and then retire, lest he become a parody of himself."
Rating: 5.0
Sentiment: -0.013065843621399176
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Having a place on my personal Mt. Rushmore, the greatness of Kenny Omega is best summarized by his parallels to my personal GOAT Bryan Danielson. All time great in ring workers who have had their promo skills brought into question, Kenny tells gripping stories in the ring, and his heel personas as The Cleaner & Best Bout Machine were must watch characters. He's been the final boss of NJPW & AEW, and all fear The One Winged Angel."
Rating: 10.0
Sentiment: 0.4714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Nulltarifwrote on 08.02.2022:[9.0] "Ich kenne Omega hauptsächlich aus AEW und seinen großen NJPW Matches. Im Ring zählt er zweifelsohne zu einer der besten Wrestler der Welt. Leider gefällt er mir am Mikrophone eher weniger und wirkt dabei meistens eher cringy."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: rishabhwrote on 30.01.2022:[5.0] "I remember when I first heard about Kenny Omega as a great wrestler and wanted to watch his work, but after watching quite a lot of his matches, I've yet to see a 5 star match from him which he is famous for (I've seen his matches with Okada). He is a great athlete but there's more than athleticism to be great at wrestling and that's like the only thing he is good at it. I don't like his in-ring psychology at all and I don't get invested in his work honestly. Neither do I like his goofy selling and him doing 37 V Triggers and 100 Snap dragon in a single match. I don't have change the channel heat with him but he is not someone whom I specially wanna see. His promos also come off as quite boring to me and not something I would expect from someone who is called "one of the all time greats". I'll think but I doubt I will find a more overrated wrestler than Kenny Omega."
Rating: 5.0
Sentiment: 0.3739795918367347
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Wright15wrote on 28.01.2022:[10.0] "Kenny Omega is unlike any other wrestler ever. Instead of finding his inspiration from wrestling history, he incorporates moves, looks, movements, and drama from art outside wrestling. There has probably never been a wrestler who paid so much attention to detail when telling a story within the ring. He makes both taxing power moves and difficult high-speed sequences look effortless. He is charismatic as hell, and his ability to speak off-the-cuff is matched by few others. He has also had a remarkable impact on the business. As evidenced by selling out Budokan in 2012, he and Ibushi took DDT, a company that would scarcely ever draw over 1, 000 fans, to the level of the other top promotions in Japan. In NJPW, his legendary feud with Okada drew attention from the west and will be remembered for decades. His match with Chris Jericho drew record foreign attendance in the Tokyo Dome and convinced Tony Khan that there was a market for another major American promotion. His main event at Wrestle Kingdom 13 against Tanahashi sold out the Tokyo Dome, and the very idea that he would main event MSG in 2019 for New Japan sold out that venue instantly. He has proven to be a tremendous draw in AEW, both before and during his outstanding title reign. Kenny Omega has solidified his status as one of the greatest wrestlers of all time."
Rating: 10.0
Sentiment: 0.21145382395382395
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Ameridragonwrote on 25.01.2022:[10.0] "Kenny Omega is the pure, distilled essence of the best of the high spot, high workrate style of the late 2000's-early 2010's. He does excellent story-telling with his facial expressions and over-the-top mannerisms, and while he does do a lot of high impact moves, they always fit into the story he's trying to tell in the match. I hope that he takes as much time off as he needs to return as good as ever, because I feel that he is still one of the pioneers of the style AEW is trying to have."
Rating: 10.0
Sentiment: 0.26619047619047614
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Shib Viciouswrote on 19.01.2022:[10.0] "In my opinion Kenny Omega is currently the best wrestler in the world. He has great character work, puts on great match after great match, makes everyone he wrestles seem like a million bucks and elevates the promotions he appears in. Then when you consider the incredible past few years he's had, he's had despite being riddled with injuries, he really does stand a class above."
Rating: 10.0
Sentiment: 0.4050000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GriffinXwrote on 16.01.2022:[10.0] "Still the best in the world when you look at what he did the past few years even while dealing with numerous issues physically to still put on the level of matches that he did. The man has also shown an amazing ability to work any type of style. I know his detractors will focus on his comedy stuff but like a great actor Kenny has show range over and over again."
Rating: 10.0
Sentiment: 0.2785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: nWo-Joshi-Guywrote on 10.01.2022:[10.0] "Hell, he has not even been 100% for his amazing AEW title run. One of, if not the, greatest wrestler of all time. Very few people can even compete with the number of mind-blowingly incredible matches this man has had. Perfectly combines slower more traditional pro-wrestling styles with quicker, more modern flair. All his moves look impactful (best knee in the business) and is also great at selling. Thoroughly entertaining as a heel on mic and knows exactly when to use comedy or maintain a serious character. The protection of the One Winged Angel creates mystique and adds to his legendary status. Amazing rivalries and he takes his gimmick from FFVII's Sephiroth too which is cool."
Rating: 10.0
Sentiment: 0.5062745098039216
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: wizardspalacewrote on 09.01.2022:[10.0] "Kenny is arguably the best wrestler of the 21st century. Kenny has shown he can carry companies. He feels like a big deal wherever he goes."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Lucilferwrote on 08.01.2022:[10.0] "Kenny omega is the GOAT to me, his run as the cleaner in 2016-2019 is the greatest run of matches in history period no one can top it, an ability to tell stories like no other in the ring , unmatched explosiveness in the ring, daring and creative, just an absolute joy to watch."
Rating: 10.0
Sentiment: 0.5104166666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: NikoKillbainwrote on 01.01.2022:[10.0] "Whatever people said about Kenny not being his New Japan self is now firmly thrown in the trash. Kenny was always gonna have his moment to pull AEW forward, and 2021 provided that. Fenix, Mox, even Sami Callihan got to be a part of one of the most prestigious runs in Western wrestling in years, and still he was able to field a trememndous storyline performance alongside Hangman Page. A main event star with workhorse ability, Kenny's earned the right to take a lighter schedule going forward."
Rating: 10.0
Sentiment: 0.1983920841063698
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Okaro143wrote on 22.12.2021:[10.0] "Kenny Omega is one of the greatest professional wrestler in history. His four match series with Okada is the greatest series of matches any wrestler could have. All four matches broke Meltzer's 5 star scale ratings and are among my favourite matches in history. He has both the highest Meltzer rated singles (Highest rated Dave Meltzer match in history) and tag team match."
Rating: 10.0
Sentiment: 0.7000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: eltetechoriwrote on 18.12.2021:[10.0] "Kenny is pure wrestling gold, you fall in love with the sport watching him wrestle, plus the great character he can build, he has it all."
Rating: 10.0
Sentiment: 0.5047619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CaptainCharisma1997wrote on 17.12.2021:[7.0] "Great wrestler who is held back by his inability to play a serious character and his goofy unconvincing promo style. Was weird watching AEW this past year and seeing a guy simultaneously being a comedy chickenshit and trying to act like the best wrestler alive at the same time. He's even less believable as a babyface too, sadly."
Rating: 7.0
Sentiment: 0.09583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: kennethtronwrote on 08.12.2021:[10.0] "one of the best in the world and has been champion in multiple continents and for multiple companies, , , record ppv buys as AEW champion, hall of famer, along with being one of the best storytellers ever, , , be it against Ibushi, Okada, Moxley & most recently Adam page, , i mean what are we doing here, , he has played a big part in the success of AEW which will get appreciated more with time"
Rating: 10.0
Sentiment: 0.2897727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: fariashoffmanwrote on 06.12.2021:[10.0] "this man is awesome! I only started following it a final of last year, but it's already one of my favorites!"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: HighFlyDeathcorewrote on 29.11.2021:[10.0] "The greatest wrestler of our era. A man who can get a good match out of anybody in any company. I have followed his work since 2012, i discovered it through Kenny and Generico fighting the Young Bucks. And ever since that match, i have adored his work. Through his matches with Kota to beating up AJ Styles and becoming Bullet Club leader. IWGP Champion, G1 Winner, first ever IWGP US champion and now a former AEW World Heavyweight and tag champ. *hulk hogan wcw voice* I LOVE THIS MAN"
Rating: 10.0
Sentiment: 0.42857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Grechanderwrote on 14.11.2021:[10.0] "My favourite wrestler ever, and the one I consider to be the current Best In The World. His in ring skills speak for themselves, and while some people may criticise his character work, they are clearly blind to the nuances and storytelling quality of both the saga of the Golden Lovers and his multi year long story with Hangman Page. With the current state of The Elite (Post Full Gear 2021), a new amazing story seems to be on the horizon, although I hope he takes a very well deserved break until 2022."
Rating: 10.0
Sentiment: 0.20363636363636367
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: FACEElmo295wrote on 11.11.2021:[6.0] "Very indie-arrific move set, but in NJPW it felt controlled and they used him well. His character work isn't exactly great, just plays a generic arrogant heel and his look isn't exactly drawing new eyes to AEW. Omega is very much unknown out of the hardcore fans, and the people that watch AEW every now and again. Omega needs the right opponent in order for it to work, and whilst his matches with Okada, Naito, Ibushi and Jericho in NJPW were great, his AEW run has been naff. His ring work is exciting, but doesn't have what it takes to be a big draw in America. He lacks psychology, and feels like a spot monkey at times."
Rating: 6.0
Sentiment: 0.23837072018890196
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SL 02 15 02wrote on 10.11.2021:[10.0] "One of the best in ring performers of the last 15 years. His matches are always so fun to watch. One of his more underrated matches that I love is against Chris Jericho at Wrestle Kingdom."
Rating: 10.0
Sentiment: 0.45999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Beneyrieywrote on 04.11.2021:[7.0] "Kenny's style very much defines a modern era of wrestling. Versatile, dramatic, with unique intelligence within the ring. I was always incredibly critical of Kenny before I saw him on AEW. Yes, he's still prone to the odd 'goofy' segment with The Elite, though whenever he steps inside the squared circle he steals the show. I'd quit like to see Kenny step away from The Elite. The Young Bucks are fine being in the group, though Kenny's better off without being a part of any team/group."
Rating: 7.0
Sentiment: 0.17516666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MrIslamywrote on 31.10.2021:[9.0] "I think he is slightly overrated but still up there with the bests, his in-ring work is really good but at times he can be kinda awkward on the mic. I think he would benefit more in AEW if he was more serious."
Rating: 9.0
Sentiment: 0.10000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dy1789wrote on 31.10.2021:[6.0] "One of the most overrated wrestlers of this era. He is good in the ring but severely lacks charisma and is okay at best on the mic. He's had good matches in Japan but internet marks glamourize everything over there. In America his flaws really get exposed cause now promos and character work are important."
Rating: 6.0
Sentiment: 0.5714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Apollomidnighterwrote on 13.10.2021:"Once in forever kind of talent and truly deserving of being in GOAT conversation. A very special and unique guy, I doubt we'll see someone like that in future if ever. Incredible to be able to watch an artist like that perform at that level."
Rating: No rating found
Sentiment: 0.49132653061224485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SrHunterwrote on 11.10.2021:[10.0] "Omega is special, while his long awaited IWGP Title reign wasn't good in therms of character and builds, he never dissapointed in the ring. Every time this guys steps on a ring something special is on the way. To not acknowledge his talent you either should be blind or stupid. Omega is a guy who has literally everything a wrestler could have, look, GREAT ring work, charismatic as hell and a great talker. His comedic acts sometimes are over the top, but i will lie if i say that don't entertain me sometimes, but when it comes to WRESTLING, he is truly one of the best out there and one of my personal all-time favorites, seeing his match live with Okada at WK11 is something i will never forget in my life. Overall he is a stellar wrestler, have an arsenal of fantastic matches, with many classics and will be remembered as one of the greatest of all time, whether you like it or not."
Rating: 10.0
Sentiment: 0.33059163059163066
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: IBladeDailywrote on 07.10.2021:[10.0] "Kenny Omega has redefined what the trajectory for a modern wrestler can be. He has become a worldwide star outside of WWE, has drawn sold out houses on several different continents, and his match series with Kazuchika Okada is the greatest of all time, in my opinion. He has continued to reinvent himself as AEW Champion and has tirelessly dedicated himself to becoming a better character. I have no doubt that Kenny already belongs in the GOAT conversation and have a hard time imagining how he could be any less than #1 by the time he's done in the ring."
Rating: 10.0
Sentiment: 0.18796296296296294
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "One of the greatest wrestlers that I have ever seen, he has legendary matches in DDT, NJPW, AJPW and AEW"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: magicwrote on 28.09.2021:[10.0] "Anyone saying that Omega isn't a top tier talent by now is simply in denial. Time after time he has proven his wrestling prowess and has put on great matches with anyone he's paired up with. His offense is brutal, he can be a bit goofy but the charisma is there and the goofiness in reality doesn't take away anything from the amazing matches he has. he is good to amazing in pretty much every field in the sport, looks like a million bucks, and is the biggest indie draw since Danielson and Styles. Say what you will about his character as I can see why it isn't some people's cup of tea, but anyone who thinks this guy isn't atleast a good worker either hasn't seen any of his matches, or is just trying to be different."
Rating: 10.0
Sentiment: 0.3057692307692308
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Lyno123123wrote on 25.09.2021:[10.0] "(10/10 In 10-15 years people will remember Tyson Smith (A. k. A Kenny Omega) as one of the greatest wrestler in the world today. A LOT of people hated his guts because of some stuff he did in the past, but i could careless about what he did back then. His series of matches against Tanahashi, Okada, Naito, and Ibushi is in the book of "The Best matches in the last 20 Years". His Best Bout Machine "Gimmick" is NOT a gimmick. that is the BEST possible way to describe Kenny. But i gotta say one thing, the only downside of his stuff is that he is not that good of a heel because his in ring skill is overshadowed his character. He is that type of guy who you love because how good he is, and the one you hated the most because how good he is. Kenny omega is an enigma that was never seen before and that is something that A LOT of people can't comprehend. He never needed anyone opinion to tell him how good he is. The only thing he needed to do is to show up, make a series of MOTY matches, and go home. Other than that love him or hate him, He already knew that he is living rent free in your cerebral. EDIT: after watching that danielson match it solidified him as the best wrestler i have seen in the last 20 years since kenta kobashi. Amazing"
Rating: 10.0
Sentiment: 0.26250000000000007
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CaptainCannabiswrote on 24.09.2021:[4.0] "Massivly overrated. He is definetly a good in ring performer for big matches when someone carrys him, but hes lacking any psychology. Outside the ring he has shown that he is incapable of beeing anything but over the top and silly."
Rating: 4.0
Sentiment: 0.13999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: saraiva98wrote on 24.09.2021:[10.0] "He is maybe the best wrestler ever in terms of workrate. What a wrestler! He changed the landscape of pro wrestling with his friends creating All Elite Wrestling."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KENTAfanwrote on 24.09.2021:[9.0] "Kenny is awesome. In terms of sheer workrate, he's one of the greatest of all time. He's had some of the greatest matches ever and has also developed his character enough over the years to tell a compelling story whenever he feels like it His only main downside is his tendency to neglect storytelling and psychology for workrate, often spamming the same moves to the point where it just becomes annoying to watch. When he's at the top of his game though, he's one of the best."
Rating: 9.0
Sentiment: 0.2761904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: hello101wrote on 18.09.2021:[7.0] "His best work has undoubtedly come from his tenure in New Japan, he was a perfect 10 from 2014-2019, and he was excellent in DDT as well. However, his work in AEW and his nascent tenure in PWG have been average to good at best, in my humble opinion. He hasn't sustained a substantial feud in AEW as of yet; although I am hopeful about the culmination of his long-term angle with Adam Page in the future. His work previous to NJPW in the independent scene heavily relied on comedy and comes off as passably good. Although I am not as critical of his comedy gimmick in AEW as some others are, his faction the Elite hasn't really produced any memorable moments of legitimacy, despite them constantly touting how they are the "greatest faction in the world", which is a moniker they abuse solely for heel heat. I like his wrestling style, but since New Japan, he has delivered classic matches only a couple of times on the big stage-- his match vs PAC and the tag match vs the Young Bucks. I wish I could rate him higher, and I hope his inevitable feud with Adam Page and others is of substance, and let's say I am also hopeful there is some fantastic conclusion between Ibushi and him whenever the time permits. But until then, I have to wait and rest my rating at a solid 7."
Rating: 7.0
Sentiment: 0.2804713804713805
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: IFeelLikeAi3wrote on 12.09.2021:[4.0] "Kenny Omega is a mystifying and frustrating worker to see perform. Its unfortunate. He has all the tools to be The Best In The Woorld, but for some reason he wants to be Triple H's idea of NWA heel champion and Manami Toyota at the same time, when in reality he should be trying to be The Next Ricky Steamboat! While I did not like the work he exceled at the babyface role in New Japan Pro Wrestling as The Cleaner, an Austin like presence. Unfortunately, just like Steve Austin himself, when he became heel, he took a down turn. The only difference being the work was still good. He still has all the potential in the world, but G.O.A.T.? I Just dont think so, buddy."
Rating: 4.0
Sentiment: 0.040067340067340064
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GabrielHorsewrote on 08.09.2021:[10.0] "This guy is one of the best wrestlers not only of this century, but in history. He and his mates have really changed the world"
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Ryanmichael25wrote on 06.09.2021:[4.0] "Not as bad as the young bucks, but still just so dang goofy & not in the funny ? haha he? s a heel your getting worked way? like the change the channel annoying way. I hope Danielson or Punk takes the Title off of him."
Rating: 4.0
Sentiment: -0.07499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: No Onewrote on 01.09.2021:[10.0] "One of the greatest pro wrestlers of the 21st Century. One of the greatest in-ring performers of all time. Put on matches that will forever withstand the "Test of Time". Popularized the V-Trigger & The One-Winged Angel. Became a worldwide superstar WITHOUT the WWE. Legendary rivalry with Kazuchika Okada. Along with The Elite, brought a whole new wave of popularity to NJPW. Helped create a brand new North American Mainstream Wrestling promotion (AEW). Is an entertaining & charismatic personality. Tag Team partnership with Kota Ibushi as "The Golden Lovers" is one of the best tag teams of the last 10-15 years. Most likely the greatest Gaijin wrestler in NJPW history. Earned the right to call himself "The Best Bout Machine". Continues to produce great work in AEW."
Rating: 10.0
Sentiment: 0.49254955570745046
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Upgrayeddwrote on 12.08.2021:[5.0] "Oh, how the mighty have fallen. Kenny Omega used to be a tremendous athlete, arguably the best professional wrestler still fighting full time. However, from being an icon, he became a joke. After joining AEW, Omega essentially became a joke of a wrestler. His promos became so annoying Don Callis had to be called in to do the talking for the champ. Like the Young Bucks, he took on this goofy gimmick that can't make me take him seriously whatsoever."
Rating: 5.0
Sentiment: 0.16500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BadHaircutwrote on 06.08.2021:[10.0] "Loving his new character which he's correctly calibrated to actually get boos but he's still having great matches all the same. I guess it is possible to do."
Rating: 10.0
Sentiment: 0.25606060606060604
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: hirsty97wrote on 02.08.2021:[0.0] "This guy along with the Young Bucks represent everything I dislike about modern wrestling and AEW. Goofs like Kenny Omega exist to bastardise and satirise pro wrestling. No interview no promo is believable he churns out matches for an audience of : Dave Meltzer and his sycophants who ascribe value to what some unqualified dilettante says."
Rating: 0.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: voltxtreanwrote on 23.07.2021:[10.0] "Ein wahrer Innovator und zukunftsorientierter Kopf für das Wrestling, der nicht nur die Messlatte für Matches, sondern jetzt auch mit AEW für Promotionen höher gelegt hat. Niemand verbindet Drama und Action besser als er."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Kungwrote on 21.07.2021:[9.0] "Similar to Shinsuke Nakamura, I think Kenny's best days are somewhat behind him. However, when he was at his peak, there was no one who excited me more than "The Cleaner". In time, I might raise his score up to a 10, but his run in AEW hasn't impressed me enough to justify that to me. I still love him, though."
Rating: 9.0
Sentiment: 0.371875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheBigBuwrote on 18.07.2021:[6.0] "Kenny Omega is a welcome part at any main event. He also has a pretty good look with tons of physical charisma. Issues arise when Kenny tries to do anything else. Every match he's a part of becomes an " epic tale". He cannot have anything other than a drama-filled match. While I enjoy drama-filled matches the constant stream of this kind of match gives me burnout. However, my main reason for this rating is his promo ability. For lack of a better term, Kenny's promos are "hippo shit". I believe that Kenny might have the worst promos of any main-event talent. He's one of the only wrestlers that has looked significantly worst after speaking. Honestly, My opinion on Kenny Omega would be much higher If he was mute."
Rating: 6.0
Sentiment: 0.11096491228070175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Z001Awrote on 17.07.2021:[10.0] "Er sticht in einer Zeit heraus, in der es so viele hervorragende Wrestler gibt, das sagt viel über seine Fähigkeiten aus. In AEW macht er gerade einen großartigen Heel-Charakter, der vielleicht die beste Charakterarbeit ist, die er je gemacht hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Tomas Cunhawrote on 16.07.2021:[4.0] "Terrific athlete who can do some insane stuff, but so could Rey Mysterio Jr 20 years ago and he wasn't overrated to the degree Omega ever was. I don't enjoy the psychology in his matches, or the stories he's trying to tell. The execution in his promos are really weird and distract me like The Ultimate Warrior's used to, though both in their own different ways. I'll give him the athletic part, he's spectacular and one of the best, but apart from that I can safely say he's the most overrated wrestler in the entire history of wrestling."
Rating: 4.0
Sentiment: 0.17499999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Hillwrote on 13.07.2021:[10.0] "Without Kenny I wouldn't be watching today. I have fallen off of pro wrestling after Daniel Bryan got injured and when the Shield dissembled and I never thought I would be watching ever again. I t wasn't until I discovered New Japan Pro Wrestling and by extension Kenny Omega that I learned what pro wrestling really is: an art form used to tell stories."
Rating: 10.0
Sentiment: 0.16818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AntiMatterwrote on 03.07.2021:[10.0] "Sein Übergang von NJPW zu AEW war für einige Fans eine Umstellung, aber er ist immer noch ein fantastischer Performer. AEW hat einfach nicht die Leute, die so gehen können wie er, noch haben sie die Zeit, regelmäßig große Epen zu machen. Abgesehen davon genieße ich es zu sehen, wie er mit kürzeren Matches und neuen Gegnern etwas anderes macht. Er ist immer noch erstaunlich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Fayzalwrote on 28.06.2021:[5.0] "He does cool moves and is a great opponent to someone who is actually a ring general and I think his run in AEW has exposed that he isn't as great alot of us thought he was when he was back in NJPW. His promos are really cringe too and what kind of person in kayfabe talks about the amazing matches they have had, AEW on commentary even keeps on bringing up that he is a 7 star match machine when that should only be spoken about outside of a wrestling show. Nothing in his matches aside from interference are able to garner any heat and it has gotten extremely old. I have no idea how people place this guy in the same bracket as Daniel Bryan & AJ Styles when they can actually carry people to great matches. During Kennys time in AEW he has failed at this numerous times with decent opponents such as The Best Friends, Matt Sydal & FTR. Since early last year he hasn't been able to put a match together that comes close to anything he did in New Japan which just goes to show how Okada, Jay White & Tanahashi as ring generals let Kennys strong points shine but now as a face of a company has been exposed as an average guy with cool moves who struggles being a basic heel on a weekly wrestling television show. The pairing with Callis too is overrated as hell while Callis is good on the mic and spears us from having to hear some of the cringe which comes out of Omega's mouth, they have had no memorable moments together aside from Kenny telling Don to 69 him each other which is pretty sad considering there are people comparing this pairing to that of Heyman & Lesnar/Reigns which is a joke. Best thing for him would be to turn face and rely on coolness rather than corny promos and chase a title held by a Heel who can bring the best out of him"
Rating: 5.0
Sentiment: 0.24084766584766581
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: plaguespreaderwrote on 19.06.2021:[8.0] "Corny as hell, has only increased his dweeb persona in the years past The Cleaner character, and I don't think he's anything above average when it comes to mic skills, but he has a great body and his in-ring skills have already been talked about as being in the top tiers (i. e. I agree with the assessments of his workrate and moveset), so I won't go into that. Sorry man, he's not Shingo Takagi, he's not Marufuji, and I probably have enjoyed a wealth of performers more than I have enjoyed Omega (2013 Bray Wyatt, 2009-2011 Davey Richards, Killshot, Mil Muertes, Necro Butcher, MASADA, Toru Yano, etc. etc. etc. ) Still, I won't deny pound for pound he is probably the most all-rounded package if we take away the traditional "coolness" that someone like WALTER or 2016-2017 AJ Styles presents"
Rating: 8.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ExcitingProWrestlin3wrote on 18.06.2021:[8.0] "At his best, he's easily one of the best on the planet. But New Japan had built that story with Okada which is what lead to those amazing bouts. in AEW it's just- not quite the same, even if you love his heel work, AEW's booking makes me scratch my head at Kenny Omega's abilities, his in-ring psychology just seems off, too off for a guy as highly regarded as he is. Hopefully he can bounce back with some more great matches, with proper booking force behind him."
Rating: 8.0
Sentiment: 0.3638228438228438
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Wrestling4Lifeewrote on 31.05.2021:[10.0] "In my opinion, Kenny Omega is the best wrestler in the world today. i mean this man just cant have a bad match. he has had a great range of comedy to very serious and hard hitting matches. he has an awesome move selection that always puts people on the edge of their seat, and his finisher is devastating! Kenny can really do it all holding 3 but technically 4 belts currently. if that doesn't say how great of a wrestler Kenny is, then i dont know what will. i recommend watching his recent work with Moxley and a handful of his G1 matches. we cant forget about his showdowns with Okada of course."
Rating: 10.0
Sentiment: 0.08173076923076925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Daigotsuwrote on 21.05.2021:[10.0] "Kenny's an all-time great. His in-ring ability is absolutely scale-breakingly elite. He has good charisma, although his promo skills are only "ok". But they're good enough to carry a story, and once he gets in the ring there are very, very few who are better."
Rating: 10.0
Sentiment: 0.34888888888888897
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BlakeFR37wrote on 08.05.2021:[10.0] "He's a GOAT in the GOATS. I put him in my Mount Rushmore. AEW and NJPW Hall of Famer in the future. And i will tell you that he was good in the Indy circuit too."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: The A-Listerwrote on 05.05.2021:[10.0] "When he's done, he's gonna be in a GOAT discussions. Incredibly talented wrestler with great characters. His work in NJPW is fantastic and matches against Okada are one of the best ever."
Rating: 10.0
Sentiment: 0.725
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: uziwrote on 30.04.2021:[8.0] "Unlike Tanahashi, Okada, or Miyahara (despite what some might say), his BITW status depends entirely on you connecting with his very specific style of match. If we consider that neutrally and look at the rest of the aspects of his in ring work, he's at the top tier in ring but not in strong contention for the absolute best. And as ridiculous as some of the anti-Omega backlash can be, his commitment to that style can also be considered negatively. It just doesn't work for every match. Beyond work rate, he has some drawbacks. He is charismatic and good on the mic, but not always believable and prone to very over the top mannerisms and facial expressions. And his sense of humor doesn't click for me at all."
Rating: 8.0
Sentiment: 0.2785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: killowenskillwrote on 28.04.2021:[6.0] "I was one of those who first noticed Omega in PWG and sincerely cheered for him in G1 26, wishing for this unlikely, but still happened triumph. He amazed me time and time again, skillfully fitting into any match and arranging a massacre with absolutely everyone. When it came to the main events, his approach worked, the big matches were truly great and some, without shame, could be called the best in modern history, but when it came to the mid-card... The first wake-up call was during a match with Beretta, when he staged a battle with a man who had not even established himself as a single wrestler yet. Later, when he was fighting people like Sabre, Sanada, who needed a special approach, Omega's ignoring their chips and stubbornly pushing his own view of wrestling started to get very annoying. Now that I've been watching him since leaving NJPW, I can see that this has taken it to a new level and has become a problem. Omega is an actor of one role, and in the case of wrestling, a wrestler of one formula. He's only good at big fights, stubbornly refusing to practice anything else. Kenny doesn't care if the opponent is technically gifted, he will not enter his field and will be completely lazy, as was the case with the same Zack. Kenny doesn't care if the wrestler isn't good enough for the "big" fights, he'll still try to get him in there, whether it's the Beretta mentioned above, which will just lead to a weird big match, or whether it's Rich Swann, which will lead to a huge failure when the exhausted wrestler botches and stops selling. Omega is incompetent in his own way, and his incompetence lies in the fact that he overestimates himself too much and doesn't try to be simpler. From Kenny's example, I understand that simplicity is a unique talent, and showing a small but well-rounded match is a very, very underrated ability that Omega simply doesn't possess. He was never my favorite wrestler, but I respected his work, but the current "five stars bites" in matches with anyone greatly spoil the impression of him. Omega has set a new fashion after a really outstanding series of matches, and it is, in all seriousness, hindering the industry. I won't take a negative view of Kenny, because his contribution is still worthy of respect, he was very good in NJPW and made a good story with many wrestlers. The reason for the revision of the rating will be a situation when his storyline with collecting belts goes too far and he will take a swing at the big Japanese promotions (NJPW, DDT, NOAH) in order to push this nonsense there. It's easier for me to bear this nonsense while he's based in North America, but something tells me that it won't be for long."
Rating: 6.0
Sentiment: 0.17706990540323872
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Wrestling Foreverwrote on 25.04.2021:[9.0] "Er hat eine klasse Mischung. Er kann Comedy die sehr unterhaltsam ist, er ist ein klasse Techniker der vielleicht manchmal etwas übertreibt mit den Spots und auch sonst ist er nicht immer ernst bei der Sache. Da spielt er zu sehr mit den Gegner. Doch diese Mischung mach ich an Omega. Auch sehr sympathisch und charismatisch. Ist sehr gut das er nun fest bei NJPW zu sehen sein wird. Edit: Aufwertung von 8 auf 9 Punkte hat sich die Jahre bei NJPW als Heel sehr gemacht ist bei PWG auch nach wie vor genial sein Chainsaw Spot ist so verrückt. Auch ist er großer Street Fighter und Popkultur Fan. Omega rockt. Wenn Kenny als The Cleaner auftritt sieht man sofort die Inspiration zu Albert Wesker und Mario Cobretti aus dem Kult 80er Actionfilm Cobra. Edit 25. 04. 2021 sollte er gegen Rich bei Rebellion 2021 siegen würde er auch Impact World werden."
Rating: 9.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: boraseyhanwrote on 16.04.2021:[9.0] "People criticizing Kenny's promos are unacceptable. Yeah, maybe he's no Rock or anything but some of his promos are absolutely brutal. I don't even need to talk about his in-ring skills."
Rating: 9.0
Sentiment: -0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MrJabroniCamelClutchwrote on 12.04.2021:[5.0] "An ok wrestler , but not the damn second coming of Bret Hart or Shawn Michaels for fucksake , the man his no psychology , no story telling skills , doesn't have any idea how to convey pain or sell any of his opponents offense , yeah impressive athlete as a high flyer , but the guy is utterly fucking goofy with his finger banging and his facial expressions , there's nothing to me that he's serious about wrestling or what he's doing and he's just fucking around like an idiot , sorry but not sold on this guy , the only reason he had those classics with Okada is testament to Okada's talent to carry this jabroni to any great match."
Rating: 5.0
Sentiment: 0.060555555555555585
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: FightForeverwrote on 11.04.2021:[10.0] "Easy to argue hes the best in the world, in fact he's one of the best of all time! He's flawless in the ring, selling, spots, execution, brutality, etc. it's all perfect. His charisma is incredible and his mic skills are great as well! It's actually insane how good Omega is. He has had countless classics, Okada, Goto, Naito, Ibushi, and Tanahashi just to name a few. As the cleaner he was the best in the world in my opinion, and now he's top 5, if this heel character improves then he will be the best in the world"
Rating: 10.0
Sentiment: 0.5952380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Bushidospirit22wrote on 07.04.2021:[5.0] "Omega is an interesting person in wrestling. At his best, especially when he wrestles others that can keep up with him athletically like Naito, Ibushi, and Okada, he can put on amazing matches that are among the best in wrestling history. A good portion of his matches however, especially unimportant matches or matches against wrestlers who aren't all-time great workers, can lean in too much into either comedy or over-dramatization that completely take me out of what I'm watching. Ever since he moved over full-time to the U. S. , Kenny's most glaring flaw by far has been his character work. Although this was visible in Japan, it wasn't necessarily a major negative since more emphasis is placed on what happens in-ring. The need for a more exaggerated character to fit the U. S. style has really shone a light on how weak Kenny is at promos or effective character work, and doesn't work at all for someone who is supposed to be the world champion of a major promotion."
Rating: 5.0
Sentiment: 0.2717391304347826
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: michmoose21wrote on 16.02.2021:[10.0] "Simply the best in the world. Kenny is the best in-ring performer in the world as of now. Kenny can do it all."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Golden Loverwrote on 15.02.2021:[10.0] "One of the best in the world. One of the reasons why I got back into wrestling. Omega is phenomenal."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: StrongStyle2020wrote on 05.02.2021:[10.0] "Love him or hate him, Kenny Omega is a generational talent. One of the top workers in North American history, and greatest gaijins of all time. He was an exciting talent working with and against Kota Ibushi in DDT, amongst some ROH, PWG in his early years, but blew up when he arrived in New Japan and joined Bullet Club. Golden Lovers remain one of the most talented tag teams of all time. His main event run in New Japan is what elevates him to a status of one of the best of all time. 2017/2018 Omega is simply as good as anyone you could compare to - character, work rate, storytelling, athleticism, explosiveness simply exemplary. His series with Kazuchika Okada is as good as any in history, including Misawa vs Kobashi/Kawada. A fantastic talent, who when all is said and done, could be one of the most important wrestlers of our time."
Rating: 10.0
Sentiment: 0.361969696969697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: caleb mullings13wrote on 03.02.2021:[10.0] "Kenny Omega is the greatest wrestler of all time. He puts his full effort into every match and that's what makes him the best bout machine. All the dots connect with Kenny as he has the best long term storytelling of all time, everything has a purpose with him. He also is responsible for the greatest wrestling match ever (vs Okada at dominion)"
Rating: 10.0
Sentiment: 0.6428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Brett1980wrote on 15.01.2021:[10.0] "Quite simply the best in the past 5 or so years everything he does is great. He not only can have excellent matches but I like it when he gets a tiny bit of comedy in (like the deodorant spot vs Jericho in 2018, or the singing Teenage Dream after beating Tanahashi in 2016 and the still selling the leg after jumping) There are other examples but these are the two that stand out. It does not matter if hes wrestling Okada at the Tokyo Dome or a blow up doll in DDT he will always try to put on the best performance possible."
Rating: 10.0
Sentiment: 0.31136363636363634
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AlexLennonPWwrote on 14.01.2021:[10.0] "People who call this man overrated are either trying to be cool or have never actually seen him wrestle. See: Okada vs Omega I, II, III & IV, Omega & Page vs The Bucks, Omega vs Tanahashi. This doesn't even scrape the surface. The man can and did wrestle a 'good' match with a 9 year old girl."
Rating: 10.0
Sentiment: 0.2875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: notme17wrote on 09.01.2021:[10.0] "Kenny Omega is the best wrestler in the world, and has been for about 4 years. He make lack in promo ability, but his natural charisma and wrestling ability make up for it. I think when he is finally finished he will be remembered on the same tier as Jericho, Tanahashi, Okada, and the like"
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: comradevanzwrote on 07.01.2021:[3.0] "Kenny Omega is the most overrated wrestler of the decade. His matches is just spamming V-Triggers 10+ times and doing moves that adds nothing to the story. He is bad on promo. His gimmick is "guys do you remember that I've been good in Japan and wrestle Okada? " Yeah I remember, and now you are slower than ever. He tries to do puro-style matches in USA and it's look like regular cheap spotfests."
Rating: 3.0
Sentiment: 0.13333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Thebossofthegym04wrote on 04.01.2021:[10.0] "One of the best wrestlers in history. And despite the fact that many hate him due to the fact that he does not show the level that he was before, this does not cancel his merits. He can show a good match against almost anyone. You can't count how many good matches he showed. And I'm not talking about his legendary matches with Okada, Ishii, Naito, Tanahashi, Young Baksami and Ibushi. And I'm damn glad that he is back to basics again after a layoff in the command division."
Rating: 10.0
Sentiment: 0.37045454545454537
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: RockinRobinwrote on 31.12.2020:[10.0] "Kenny Omega is one of the greatest if not the greatest active wrestler. He makes wherever he goes feel like he's the star, and his current AEW has established his ability to fight in hardcore matches, tag matches, and more. The collector storyline is just getting started, but he pulls in an audience to places like Impact. Kenny Omega is a decade defining star."
Rating: 10.0
Sentiment: 0.47333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Morningsagewrote on 24.12.2020:[10.0] "Since 2016, Kenny Omega has been Wrestling's Top Star. He delivers in every single match he competes in. Graduating from a Junior Weight to Heavyweight helped him find his stride as he took out competitor after competitor on his way to winning the G1 Climax 2016. His trilogy of matches against Kazuchika Okada will go down as some of the best in the history of professional wrestling. Stepping away from New Japan to a new promotion in All Elite Wrestling, Kenny Omega reasserted his capabilities with a lengthy tag team championship run with Hangman Adam Page followed imminently with claiming the AEW World Championship. Kenny Omega's wrestling matches are immersive spectacles and truly need to be witnessed to be appreciated."
Rating: 10.0
Sentiment: 0.26063812730479397
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: cosmik debriswrote on 23.12.2020:[7.0] "Omega is kind of a hit and miss to me. When he's facing the right opponents or finds himself into good storylines, he's an all-time tier wrestler. Everything he does looks really painful, and what he lacks in psychology (not that he's particularly bad at it, but I've seen better) he compensates with hard hits, crazy dives and an almost unlimited moveset. But I have to be honest and I cannot ignore all the bullshit he's been part of, from the comedy tag team matches with Nakazawa, to the ridiculous hardcore spotfests with Janela and Moxley. And that's just from his AEW run, thankfully I haven't seen much from his previous indie runs, but I doubt I would go crazy about it. He can be great in high-profile matches, and he is, but has proven to be rather mediocre in midcard or less important matches, and sometimes he goes too far for my own taste. Moreover, he's an average heel promo and a terrible babyface promo. The new heel persona he's portraying at the moment I'm writing this is much more interesting than the awkard babyface Kenny we've seen on Dynamite for the last several months, hopefully if he keeps a high level I'll return to appreciate him as much as I did during his NJPW peak"
Rating: 7.0
Sentiment: 0.037025675473951344
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Mhart2021wrote on 13.12.2020:[10.0] "Omega is absolutely at the very top of the wrestling world in terms of in ring ability and has had some of the very best performances in recent history."
Rating: 10.0
Sentiment: 0.4625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Moose Nuggetwrote on 09.12.2020:[4.0] "Kenny Omega is a great athlete who is a really goofy pro wrestler. It's impossible to ignore his goofy facial expressions and his prancing around. With the ring person he can have a good match but with the wrong wrestler it can be horrid. And he's one of the most boring wrestlers on the microphone. His promos are absolutely dreadful."
Rating: 4.0
Sentiment: -0.016666666666666673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Rick1Pwrote on 06.12.2020:[7.0] "Let's be honest, Omega is a good wrestler. However I always found him to be overrated, his background in Japan explains that. Meltzer's permanent outcry with insane ratings helps make Omega look better than it actually is."
Rating: 7.0
Sentiment: 0.15999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Scottishwrestlingfanwrote on 16.11.2020:[6.0] "Not seeing his work in Japan I can only comment on what I have seen on AEW the last year and a half. He is a good worker but also comes across as a total twat. Not a fan of all the pointing and punching the mat before running for a dive. His promos are just strange."
Rating: 6.0
Sentiment: 0.08055555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TekknMikeywrote on 31.10.2020:[10.0] "One of the greatest wrestlers of all time, Kenny Omega spent plenty of time paying his dues in the independent circuit before eventually becoming a major part of the Bullet Club in NJPW, which then spawned a sub-group of sorts known as The (Golden) Elite. The rest, as they say, is history. His matches with Okada became infamous among wrestling fans due to the admittedly obnoxious 6/7 star ratings from one Dave Meltzer, but now a few years on, I can confidently say their phenomenal trilogy consists of some of the best matches the sport has ever seen. With a vast array of moves named after, and even inspired by video games, a calm demeanour which can quickly turn into frantic, unhinged charisma, Omega is a true maverick of the business. Now a core part of upstart promotion AEW, Omega has further spread his unremovable fingerprints on the history of professional wrestling."
Rating: 10.0
Sentiment: 0.22060185185185188
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: medousewrote on 29.10.2020:[10.0] "This guy has the looks, charisma, skills and always does great promos. One of the best foreign wrestlers who ever worked in Japan. His matches in DDT or NJPW are legendary. Too bad he lost momentum after he left New Japan. Even though his best years are behind him, his legacy lives forever."
Rating: 10.0
Sentiment: 0.3012626262626263
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JBoogieRom28wrote on 22.10.2020:[10.0] "Kenny Omega is one of the reasons I watch AEW and as soon as I saw The Cleaner, I was immediately like. "OMG He's AWESOME! " He puts on classics and is the best heel in AEW atm"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: rainmakerpunkwrote on 20.10.2020:[10.0] "He more than lives up to the name of "Best Bout Machine", this guy goes in the ring and has absolutely stunning matches and he can easily exceed even the highest expectations, he has an amazing moveset and he delivers each move with a certain fire and power that is unmatched, his V-Triggers look better than anybody's knee strikes, his finisher is arguably the best move ever, he has the best match ever, the best feud ever, the best tag team match ever, his character of the cleaner is top tier, and he's a VERY underrated mic worker, I like all his promos but his promo after beating Naito at the G1 26 is the 2nd best promo I heard behind only Punk's pipebomb, Omega's the 2nd GOAT behind Okada"
Rating: 10.0
Sentiment: 0.4551378446115288
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ilovewrestling1995wrote on 18.10.2020:[10.0] "He is the best wrestler of the world along with Aj styles, Seth rollins and Okada right now . His moveset is just pure perfection , his selling is out of this world , his matches are always fast pace and full of passion and energy and i dont even remember one bad singles match of kenny omega . They have booked his so bad on aew but i hope this is going to change because its so unfair the best wrestler of the world to be a midcarder . He should be aew world champion ASAP !"
Rating: 10.0
Sentiment: 0.12777777777777782
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Gathawkwrote on 15.09.2020:[10.0] "Full package. Flashy in the ring with great moveset and great promo skills. Suitable to play both babyface and heel. Can't wait to see what AEW has planned for him after All Out."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Shutupwillwrote on 14.08.2020:[10.0] "This man is the whole package. You don? t need me to tell you by now how incredible of a worker Omega is, his classics with Naito and Okada among others in NJPW certainly prove that. But Omega isn? t just knees and head drops, Omega inherits so much natural charisma and the ability to tell a good story, all you have to do is watch the 2018 Bullet Club implosion leading to Omega reforming his old partnership with Kota Ibushi to see that, Omega was one of the stars of some of the best wrestling storytelling we? ve seen in over a decade and he deserves to be credited for that. Omega is now home in the US with All Elite Wrestling and is showing he makes a good TV character too and can have a good match that doesn? t have to go 30+ minutes, he? s proving to be a great tag wrestler with Adam Page (as if he didn? t prove that already with Kota Ibushi) and he continues to be one of the more interesting characters on BTE and has an incredible fan following. Omega is the whole package for a 2020 wrestler. 10/10"
Rating: 10.0
Sentiment: 0.500952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ilke Kurtlutepewrote on 01.08.2020:[10.0] "My all time favourite. The man who made me love this industry. One of the best wrestlers ever. His NJPW career from 2016 to 2019 is so freaking good. I hope he will get a singles push in AEW."
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jboyaquarwrote on 27.07.2020:[9.0] "A remarkable, multi-faceted talent built with a massive internal engine that gives as good as he takes, Kenny should be an alpha. He has three drawbacks that prevent me from elevating him any higher: 1) He's catty - ie. In 2010 he wasn't pleased that fellow NJPW BOSJ competitor Davey Richards (the (supposed) new 'Dynamite') was receiving more attention than him; his interviews were tinged w/ too much believable venom. (Rationally, I was on Kenny's side here, but it was off from what fans typically got during that era from the competitors. ) Also, that shoulder G1 '18 vs Ishii & the post-match... evidence of petulance. 2) He's selfish - No matter how the history between Omega/NJPW plays out, Omega chose opportunity over brand-loyalty. Omega knew that if he were to leave, he would/should lose to his contemporary and brand figurehead, Okada. NJPW took him from DDT, the fringes, and gave him opportunities no gaikokojin were ever given. Kenny's talent/his engine & the tradition and name that is NJPW built his brand, but Kenny abruptly left that company implanting the impression that he used Japan for greener pastures elsewhere. Now, if given the same opportunity, I cannot say I would not do the same exact thing. Circumstances can and have been discussed, but to me these are facts, and in traditional Japanese mores, he was disrespectful. 3) He's juvenile - I don't mean 'Being the Elite' of which I'm mostly a fan (prefer 'baby back ribs' to the Scott Colton sketches, ) but rather his facials and spirit . Sometimes it's in the deepest of waters, sometimes the most shallow, but then, watching Omega's face is akin to watching a too spaztic junior high schooler tearing at his video joystick as he attempts to evade pain-death-etc, It's silly, exaggerated and geeky, not a man. In addition, oddly, Kenny sometimes isn't as good with portraying soul in the squared circle as he is on podcasts, etc. He often comes-off as someone performing a a stylized role he has in mind for himself. It's thoughtful and full-bodied, but not really his emotional essence. Classically, is he in-ring as strong of a babyface as Tanahashi, or was he as detestable as heel Jay White (though after his very-warm sendoff Dominion '16, I still don't know why JW became such a heel... it's cool he is, but why? ) Notwithstanding my criticisms, the wrestling world is much better with Kenny Omega and his array of incredible matches, that I memorably first experienced live at Koukigan against Kai for the AJPW Jr title, than without, though I don't really like his booking of the women's division, unless he was a guiding force in turning the physically undependable, but wily and sassy, Dr. BB heel."
Rating: 9.0
Sentiment: 0.14785690235690238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: lehaimkhwrote on 22.07.2020:[10.0] "When Kenny first entered Bullet Club, I didn't understand his character because of his eccentric play-acting, but I never denied his ringside ability and charisma. After a while, I recognize his creativity. This is one of the best employees in the history of wrestling."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Hypocrisywrote on 18.07.2020:[8.0] "Kenny Omega ist für mich schwer zu bewerten. Omega war schon um die 2010er Jahre in Ring of Honor irgendwie anders. Nirmalerweise hilft das im Wrestling ja weiter aber über ein gewisses Standing kam er dort nie hinaus und das m. E. damals auch zurecht. Bei New Japan ist er zum absoluten Star geworden gesehen davon habe ich mangels Zeit fast nichts von. Bei AEW wrestlet er irgendwie zumeist mit angezogener Handbremse.... Hin und wieder jedoch lässt er sein riesiges Potential aufblitzen.... Ich wünsche mir einen run dort als Champion... Charisma jedoch hat man oder eben nicht. Lernen kann man das nicht und abseits des Rings ist er für mich halt wenig interessant."
Rating: 8.0
Sentiment: 0.11212121212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Kid Rockwrote on 08.07.2020:[7.0] "Kenny Omega ist für mich schwer zu bewerten: Auf der einen Seite ist er ein zweifellos fähiger, hart arbeitender und talentierter Worker, dessen Matches so gut wie nie langweilig, sondern sehr athletisch, explosiv und unterhaltsam zu betrachten sind. Mit den richtigen Gegnern (Okada, Jericho, Tanahashi) kann er auch psychologisch anspruchsvolle und durchaus "epische" Ringschlachten abliefern und sein Moveset ist ebenso interessant wie spektakulär. Auf der anderen Seite finde ich ihn als Charakter und Gimmick schwer zu greifen. Ich weiß nur, dass Omega eine Art exzentrischen, japanophilen und nerdigen Geek darstellen soll, aber das ist sehr oft mein Problem mit seiner Persönlichkeit: Er wirkt einfach ZU nerdig, ZU aufgesetzt und ZU sehr Geek, als dass ich ihn als "echte" Wrestling-Persönlichkeit ernst nehmen könnte. Dazu kommen seine oftmals viel zu übertriebenen Gesten und Mannerismen, wie die albernen Gesichtsausdrücke, das Mit-dem-Finger-Zeigen auf den Gegner, die allgemeine Zappeligkeit und das Rumgehüpfe während seinen Matches..... Omega ist mir einfach zu sehr Schein-als-Sein, dazu kommt, wie gesagt, die fehlende Persönlichkeit und damit die Nicht-Vorhandene emotionale Involvierung während seiner Kämpfe... Das macht für mich auch den Unterschied zwischen einem Kenny Omega und wahre Größen des Sports aus Vergangenheit und Gegenwart, wie bspw. Eddie Guerrero, Mick Foley, CM Punk, Daniel Bryan oder AJ Styles aus... deren Charaktere waren/sind viel ausdefinierter- und greifbarer, weswegen ich auch während ihrer Matches ehrlich mitfiebern kann/konnte. Bei Omega, trotz seiner wahnsinnigen In-Ring-Skills und seiner Athletik, fehlt mir einfach diese emotionale Verbindung und diese Authentizität (warum sieht man ihn bspw. so gut wie nie Promos halten, die seinen Charakter aufbauen könnten? .... mangelnde Skills? ) und aus diesem Grund käme ich auch nicht auf die Idee ihn als besten Wrestler der Welt zu bezeichnen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ShooterMcShootwrote on 02.06.2020:[7.0] "Omega was great in New Japan, but since then, he's declined in my estimation. His main event match with Moxley at Full Gear was overbooked in a bad way, similar to the worst things that ECW would do. Also, if he's the one responsible for the AEW women's division (by far the weakest link in AEW), then his booking/agent work would earn him a 3 at best. He's still very talented in the ring when he's not phoning it in or hamming it up with all the finger pointing and silly faces, but the more he indulges in that kind of stuff, I find the less I like his work. Seems to need a very steady hand to reign in his self-indulgent tendencies."
Rating: 7.0
Sentiment: 0.16331439393939395
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: nettcitywrote on 17.05.2020:[10.0] "He is the guy who got me back into wrestling again. His matches with Okada live up to the hype. I was not bored even in the hour long matches. His mic skills are only above average, but his charisma, look, past characters like the cleaner and ring skills are Elite. His long term story with Ibushi is incredible. He's been pretty good in AEW. The match with Hangman against the Young Bucks was great. He's really helped Page get over. I am waiting for his big run, either as a face or comic book heel it kick in. He is a top 3 active wrestler in the world when he's on his game."
Rating: 10.0
Sentiment: 0.15265151515151518
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: VillainClubwrote on 12.05.2020:[6.0] "Vor zwei Jahren hätte ich ihm wohl noch 9 Punkte geben. Aber seit seinem IWGP Heavyweight Titel gewin, hab ich mich an ihm satt gesehen. Er baut mir in vielen fällen zu viel Comedy ein, allgemein nimmt er für meinen Geschmack viele Sachen nicht ernst genug. Seine Komische Gear zu den letzten beiden WK sind besonders zu den großen Matches unnötig. Edit: Seine Matches sind, im Gegensatz zu den wirklich Fantastischen Wrestlern, beim zweiten oder dritten mal schauen oftmals deutlich schwächer. Oftmals wirken seine Matches zu gewollt "Episch" und aufgesetzt."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Wrestlefan20wrote on 11.05.2020:[8.0] "Omega is a great wrestler. Don't find him that good on the mic. Has some natural charisma. Him wanting to have a competitive match with everybody, including jobbers detracts some of his appeal."
Rating: 8.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: King of Strong Stylewrote on 09.05.2020:[10.0] "Kenny Omega ist aktuell einer der Besten Wrestler der Welt und gehört aktuell in die Top 5 der besten Wrestler und auch Gesamtpakete da er auch am Mic stark ist und Charisma hat. Absolut verdiente 10"
Rating: 10.0
Sentiment: 0.24444444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BastitheBrainwrote on 21.04.2020:[6.0] "Die Zeit bei AEW hat viel kaputt gemacht. Dazu noch die Witzmatches gegen Puppen und Kinder und so weiter. Nicht mein Fall, es geht ja nur um subjektive Einschätzungen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: rschmandt22wrote on 01.04.2020:[10.0] "One of the best wrestlers in the world. Kenny can have a good technical match, a good cruiserweight style match and a good match regardless of the nationality of his opponent. He is great at singles and tag wrestling. I think hes a future AEW World Champ."
Rating: 10.0
Sentiment: 0.557142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Sabu316wrote on 26.03.2020:[10.0] "Vor 12 Jahren hatte ich ihm 8 Punkte gegeben. Heute gehen leider nicht mehr als die bekannten 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Ma Stump Pullerwrote on 05.03.2020:[9.0] "Omega is, simply put, a bout machine. He's a guy who can put on high quality, high stakes matches almost every night and keep going beyond that. His high flying offence mixed with unorthodox strikes makes him quite unique. Granted, when he started off he was basically a very goofy comedy character (hell, the reason he managed to break into the Japanese scene was literally a skit he filmed) and while he had potential, he was never really pushed beyond what he could do, but eventually started to show his talent by holding the IWGP Junior Heavyweight Championship and moving up from there. I'd say his years in New Japan are his peak in terms of how consistently brilliant his matches were. It seems that in AEW they haven't quite pulled the trigger with Omega yet, but he's still having solid matches as a tag team with Hangman. Hopefully he'll eventually get to really show his talent in single competition."
Rating: 9.0
Sentiment: 0.1713290043290043
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Icewrote on 26.01.2020:[5.0] "I feel like he's overrated a lot, as he knows how to do a lot of spots and is very more is more as a wrestler and doesn't really respect the foundation of psychology. Is currently outshined by virtually every other main eventer in AEW."
Rating: 5.0
Sentiment: 0.23194444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Bobbythreesixteenwrote on 06.01.2020:[8.0] "Bei New Japan war er für mich der einzige auf Augenhöhe mit Okada. Seit er bei AEW ist gefällt er mir immer noch sehr gut, in meinen Augen jedoch hat er etwas abgebaut. Dennoch ein einzigartiger Athlet und einer der besten der Welt. Ich bin sehr gespannt was die Zukunft mit ihm noch bringen wird und es ist nur noch eine Frage der Zeit bis er auch bei AEW der Main Eventer wird."
Rating: 8.0
Sentiment: 0.1515151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Carrot Junkiewrote on 05.01.2020:[10.0] "The epitome of modern pro wrestling as a counter culture.  Omega doesn't just venture outside the norm in order to deliver the best he possibly can, he dives headlong out of it while laughing maniacally.  Whether it be naming his moves after fighting game moves, glibly calling out WWE, swiping people with brooms, or doing one-legged moonsaults after his leg has been worked over, , he's completely 100% committed to his strange, off-beat character both in and out of the ring.  Some people find him off-putting... and I'm glad they do, because it's about time wrestling inspired real emotions in people.  Combine this with an incredible amount of raw athletic ability and Omega's maybe the most exciting wrestler outside of WWE."
Rating: 10.0
Sentiment: 0.21565934065934061
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Matt Mackswrote on 05.01.2020:[10.0] "Currently my favourite wrestler in the world. While he always reminds me of Brian Pillman (probably because of the hair), there is no doubt that Kenny Omega is in a league of a very select few pro wrestlers whose matches I am looking forward to every single time. Sadly I missed his rise to stardom and his run on top of the world in New Japan, but for me this only means that I can catch up on half a decade of awesome matches with him against some of the other greatest wrestlers of this era. His run in AEW so far has been a little bit underwhelming, because other wrestlers were thrust into the spotlight, but I am hopeful that 2020 is the year of Omega in North American wrestling."
Rating: 10.0
Sentiment: 0.0975480248917749
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AndoCommandowrote on 03.12.2019:[8.0] "Easily a 10 at his best, but the problem is he needs someone who's able to make his the best opponent and Best Bout Machine, whether it's a hybrid like Okada, a master of pacing and psychology like Naito, or one tough mother***er like Ishii"
Rating: 8.0
Sentiment: 0.5907407407407408
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jackleonewrote on 29.11.2019:[10.0] "I respect Kenny Omega so much! I've seen him in some obscure indie match more than 10 years ago and I remember him for playing a videogamer gimmick and having a Dr. Wily Theme. It's great that even now that he is one of the best wrestlers in the world he still uses videogames music and parodies, because it shows that he is still the same guy but now he is at the top. His career in NJPW was amazing, I hope to see him having great matches in AEW because he is my favorite in their roster and he deserves a lot of good feuds. Well, I don't think he is overrated at all, he had many years to reach the IWGP Championship and he started from the beginning. Omega vs Okada series is legendary."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: alewrote on 07.11.2019:[10.0] "Ganz ehrlich der Kerl is doch genial. Unglaublich wie der einen unterhalten kann, dazu noch richtig stark im Ring eigentlich das 'total package' sowas wird man leider nie im Main Stream der Nordamerikanischen Ligen sehen, vermute ich leider :( Edit: Tja wie man sich doch täuschen kann. :D"
Rating: 10.0
Sentiment: 0.043333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Hippykillerzwrote on 26.10.2019:[8.0] "First saw omega back in 2008 and has improved greatly since then. His work in NJPW is untouchable and his series with okada will go down in history as one of the best ever. That being said, I can't buy him as a guy to carry a company. It might be his look, his promos, his gimmick, something doesn't click for me."
Rating: 8.0
Sentiment: 0.3788888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Same Old Same Oldwrote on 13.10.2019:[8.0] "Omega's work rate is phenomenal, he has charisma and can mix things up in the ring... HOWEVER, something isn't quite clicking for me with him now in the States as art of AEW. I don't know if his style or mannerisms don't automatically translate as well to the west, too much reliance of pop culture references or that the calibre of opponents so far has been a step down, which if that is the case would make the likes of Okada, Ibushi, Jericho and Ishii better workers who carried him to a better performance that true greats shouldn't need having done to them. With that said, I cannot deny his time with NJPW, effectively helping bring more western audiences to the promotions, although my favourite run for him was actually his Junior run, which balanced high-pace and comedy used quite effectively."
Rating: 8.0
Sentiment: 0.252962962962963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: laldilawrote on 13.10.2019:[5.0] "Vastly prefer comedy Omega to the best bout stuff, which really soured me on him as a performer. There's no doubt he's a talented athlete, but its hard for me to get excited for his matches. I'm hoping his brief return to DDT will be a good fun comedy match, especially since he's getting in there with one of the funniest wrestlers in the world Antonio Honda."
Rating: 5.0
Sentiment: 0.2483333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Iceqwrote on 08.10.2019:[10.0] "Ich freue mich für Omega, dass er endlich in Amerika regelmäßig arbeitet doch muss ich ehrlicherweise gestehen, dass er für mich in Japan besser funktioniert als sonst wo. Er ist natürlich noch immer Weltklasse doch ist der Omega aus 2016-2017 kaum wiederzuerkennen. Für mich kann er super Promos halten, geniale Matches zeigen und der einzige Kritikpunkt den ich habe ist sein manchmal zu over-the-top mäßiges Selling. Alles in allem einer der besten Wrestler der Welt."
Rating: 10.0
Sentiment: -0.08333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Leonwrote on 15.09.2019:[10.0] "Neben Ibushi und Okada für mich der beste Wrestler der Welt, vielleicht aller Zeiten. Seine Matchserie mit Okada zweifellos eine der besten die es je gab. Ein absoluter Gott was Storytelling betrifft. Kann ein 5 Star Match mit absolut jedem machen. Mit dem One winged Angel hat er wahrscheinlich den glaubwürdigsten Finishing Move heutzutage. Über seine Inring Skills brauchen wir uns nicht zu unterhalten, der Mann kann alles."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Coop DEtatwrote on 10.09.2019:[8.0] "Kenny Omega is overall pretty good in the ring, but not nearly as good as many label him as. Sure, he looks good when he's powerbombing 150 lb Asian man, but his work isn't as good when he's up against someone that's his size or bigger."
Rating: 8.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheV2wrote on 04.09.2019:[9.0] "Omega is surely one of the best wrestlers in today's world. Very precise and establishes a great chemistry with his opponents. His character work is great, but not at the very top in my opinion, because in my opinion it's quite unfair to compare only today's end-results of free, more independent wrestlers and by the promotion very limited wrestlers. He's very variable and this makes him an ace for every long-term wresting business. His move-set is delightful. The V-Trigger or even more precise the way he treats the V-Trigger makes it one of the best signature moves. It's simply a very precise damage dealer which combines with the rest damage. It kinda gives an early ROH feeling that winning depends more on great strategy rather than hitting the finisher as a game-ending move and makes people ask "Why didn't Big Show knock him out before? "."
Rating: 9.0
Sentiment: 0.43900621118012434
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: taabr2wrote on 31.08.2019:[10.0] "Kenny Omega is the best in the world today in the big match style with big moves, nearfalls and drama. One of the most explosive wrestlers there is, Kenny Omega wrestles at like 180 mph and yet amazingly is able to sustain that pacing for 30 minutes easily, he is the perfect wrestler for this generation who has become more and more desensitized to wrestling moves. Omega is probably the most well known wrestler and biggest draw outside of WWE and he will most likely be the face of the new AEW promotion. The big explosion of NJPW in the west was in large part because of Kenny Omega's run as the top gaijin in the company. Kenny Omega has already reached legend status in wrestling."
Rating: 10.0
Sentiment: 0.36964604023427555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: redekkerwrote on 15.08.2019:[9.0] "A spectacular wrestler who I feel is slightly overrated. Fantastic athleticism and strikes, most of his stuff looks really high impact, he is also entertaining and funny when not completely playing up the gamer stuff.  Others have put it more succinctly than I can, I don't like the "V-Trigger spam" and it feels like he gets his "usual spots" in every match."
Rating: 9.0
Sentiment: 0.24433333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KyleEnjoysWrestlingwrote on 01.08.2019:[9.0] "I don't think he's God's gift to wrestling that so many others see him as today, but I do think Kenny Omega is very great. He picked up the pieces of the Bullet Club when AJ departed & brought that faction to another level. His story with Kota is probably my favorite thing he's been a part of. His stuff under the DDT umbrella certainly was on the silly side, but it's forgivable. I think his matches against Okada are a bit overrated & often felt like they were trying too hard to be the finisher-counter-kickout fest that is Meltzer's wet dream. I think that style of performing leave a lot to be desired. AEW running with him as a top guy is a good place for him & I think he needs to win that company's top title soon because I think he's a better option than Jericho or Page. He's been running as a face for a very long time, but I prefer him as a heel & I'd like to see him revert to that role in AEW sooner than later."
Rating: 9.0
Sentiment: 0.3041156462585034
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: andrewmossighiwrote on 20.07.2019:[10.0] "A once-in-a-generation kind of wrestler who could make a case as the greatest in-ring performer of all time. Damn right I said it! There is a reason why he receives high praise from the Dave Meltzers and the Stone Cold Steve Austins of the world. Kenny Omega has inspired wrestlers coming up today his approach to wrestling. In the ring, he utilizes jaw-dropping athleticism combined with Canadian-style mat wrestling/technique, Lucha-inspired high flying, and Japanese-style hard strikes. Also, his promo ability and charisma is off the charts. As a gaijin, was given a rare opportunity by New Japan to be one of the three musketeers for the brand alongside Okada and Naito, and he used that opportunity to not only catapult himself to the IGWP Championship, but also become the most influential wrestler outside the WWE. The only criticism I have against Kenny would be the comfort in which he has received in his booking. Think about it, if he had decided to join WWE and was put in the same position as someone like Seth Rollins is in a program with an underwhelming wrestler like Baron Corbin or a part-timer like Brock Lesnar, could he deliver results while fulfilling objectives as instructed from an authority figure like Vince McMahon? Yes, he is an extraordinary talent who delivered alongside the best wrestlers anywhere, but he usually has the creative control with his booking or matches. From my perspective, it's not only the matches against the great wrestlers but also the matches against the greener or underwhelming wrestlers in tougher booking situations that make a wrestler great. Other than that, I hope we see him in a Wrestling Classic against Seth Rollins somewhere down the road."
Rating: 10.0
Sentiment: 0.22463684463684463
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "He is kind of a special case. A solid, entertaining guy who was either inexistent or overshadowed by Kota Ibushi during most of his career. It's only when he moved up in NJPW's heavyweight division that he began to show a true top star potential and became bigger than Ibushi. I don't know if he really can carry a company and be THE top star, it will be interesting to follow what he can do with AEW. For now I'm not convinced at all, he doesn't feel like a big deal anymore but some of that is probably due to the fact he has to build a new company. All I know is that in an environment where his potential was the most exploited, where he was in a really exciting roster, he was absolutely one of the best in his own style. An incredible performer with a deep desire to try to have really different matches on the big occasions. (wich is his greatest quality in my opinion) His selling isn't always good and sometimes he has goofy over the top facial expressions but he still improved and dropped a lot of his otaku comedy bullshit. Doesn't mean he stopped but he calmed down on that."
Rating: 9.0
Sentiment: 0.2954682102409375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Jeje05wrote on 29.06.2019:[10.0] "Der beste Wrestler der welt. Was er im Ring leistet sieht man bei keinem zweiten. Jedoch sind seine mich Skills nur ok"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: llqqbbwrote on 28.05.2019:[7.0] "Was ranked a 10, but after double or nothing I can see the real Kenny Omega that just uses high spots with no real story telling or adaptability, during Kenny and Chris' match all I could see was how great Jericho is and how poor Omega is when trying to build. Through new Japan Kenny Omega can be a main event 10/10 but trying to build a company this dude's ability is a mid card champion hoping to be main event. Doesn't care about making anyone else look good as long as he looks ultimate."
Rating: 7.0
Sentiment: 0.13689976689976688
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: My Bloody Doobwrote on 20.05.2019:[10.0] "The level of being a fan of Kenny Omega ranges from worst wrestler ever to all time GOAT. In many ways I can see why you wouldn't like him, and yeah I would say he has some obvious flaws. His character work can be melodramatic, his selling can be spotty, and is more of a "spot" guy sure. But I still can't deny that he is one of my current favorite wrestlers in wrestling. His best quality that I love in wrestling is "energy" if I had to use a word. As soon as he steps into the ring he is constantly attracting your attention for better or for worse. From his career in DDT to New Japan, whenever he is in the ring you knew you were going to see something unique at the least. Even back to his PWG and ROH days you could tell there was something about this dude that you couldn't ignore. You can either take him or leave him, and right now he ticks all my boxes, so I'll continue to tune into him wherever he chooses to wrestle."
Rating: 10.0
Sentiment: 0.12761544011544013
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Cow Manwrote on 19.05.2019:[8.0] "Honestly, I feel that Kenny Omega is slightly overrated. Good in-ring work, but he relies to much on "spots". His selling can also seriously lack, too. But he can talk, and can work great as both a heel or face. Overall, an 8."
Rating: 8.0
Sentiment: 0.20833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: PuroresuLoverwrote on 13.05.2019:[6.0] "Meh, what can I say? He's just boring right now, he was very cool in the beginning, but now, he's just the same old Kenny Omega. He doesn't take wrestling seriously and that's a shame."
Rating: 6.0
Sentiment: -0.08210317460317461
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Garrettwrote on 07.05.2019:[10.0] "Around 2014 I lost interest in wrestling, all I watched was WWE and TNA so I got sick of all their shit and lost my passion for it. It wasn't till a few years later when a coworker told me "you have to check this guy out" watching his matches not only got me into New Japan, but it reminded me why I loved wrestling so much. His move set, his charisma, his mic skills, Kenny is the complete package and whats amazing is that he got so good that he became the biggest thing in wrestling and he didn't even need WWE to help him. Kenny opened my eyes to show me that there is so much better wrestling out there."
Rating: 10.0
Sentiment: 0.15183982683982686
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: blackx18wrote on 02.05.2019:[10.0] "Micwork : (9/10) Wrestling : (10/10) Gimmick : (9/10) Charisma : (10/10) (38/40) = 9, 5. Meinermeinung nach auf einem Level mit Okada und somit teilen sich diese beiden den Platz als Bester Wrestler momentan. Goodbye, and Goodnight. Baam!"
Rating: 10.0
Sentiment: -0.796875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: The Sick Lebowskiwrote on 26.04.2019:[10.0] "In nahezu allen Situationen unterhaltsam und im Ring eine absolute Maschine. Wäre er jetzt nicht einer der Mit-Verantwortlichen für AEW hätte ich fast gesagt, dass er ein Kandidat für WWE wäre."
Rating: 10.0
Sentiment: -0.10476190476190474
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "He really has it all. The charisma, the ring skill and he feels like a star. His one winged angel finisher has been booked great. Kenny has done awesome things and the fact that he managed to make an match with an broom an enjoyable watch speaks for itself. Going to japan has really made him into one of wrestling biggest current stars."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Matuwrote on 07.04.2019:[4.0] "Kenny Omega is in my opinion hugely overrated and his style is a big part of the problem I have with modern wrestling. The style he wrestles is goofy, spot orientated and the "storytelling" is contrived and lacks all believability and subtleness. He has had a few good matches but mostly with opponents who are far better at piecing together a match than what he is. Kenny Omega is still highly athletic capable of things not many are able to do and has made himself a huge star in the industry so I have to give him points and credit for that even though I find him to be pretty bad as a wrestler."
Rating: 4.0
Sentiment: 0.16235294117647062
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: AJStylopzwrote on 06.04.2019:[9.0] "Kenny Omega is truly a mystery. He is the best wrestler in the world, I mean he is the whole package. Awesome talker, awesome in ring work, great athleticism, but sometimes he sells like shit and his facial expressions rarely are on point. I find him to be a very generic babyface as he lacks that fire. I think he works much better as a heel but overall he is fantastic. He's had some incredible bouts, some rlly overrated ones but overall a fantastic wrestler."
Rating: 9.0
Sentiment: 0.37421875000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: zephyrwrote on 19.03.2019:[9.0] "There's a lot of positives to Kenny Omega. He can talk, he has charisma, and man, he can WRESTLE. At least he can if he cares. If he feels like the match he's in isn't that important he'll just come out wearing his merch and give you a 6/10 performance with nothing memorable. But whatever, he's had some of the best matches of all time so you really can't give him a super low rating."
Rating: 9.0
Sentiment: 0.30476190476190473
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: fernando27wrote on 15.03.2019:[10.0] "Sin dudar el mejor wrestler que vi por todo su capacidad su versatilidad su angel su desempeño no guardandose nada , esta echo en y para japon ... si solo japon puede permitirnos ver lo mejor de un luchador como este , la tierra del PURORESU talvez donde se puede ver la mejor expresion del wrestling alli dio sus epicos combates que son clasicos . Ademas se gana el respeto y hara mas grande su leyenda haber rechazado a wwe eso sera iconico ahora solo queda seguir deleitandonos de esta leyenda viviente "THE CLEANER " KENNY OMEGA"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: LIJ369wrote on 19.02.2019:[10.0] "One of the best to ever do it. Athleticism, speed, strength everything you want he? s got. Also one of the smartest and in depth thinking wrestlers in the world as well"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheMagneticDragonwrote on 02.02.2019:[10.0] "Simply one of the greatest wrestlers to ever lace up a pair of boots and is still going strong even as he is about to reach his prime."
Rating: 10.0
Sentiment: 0.4777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Kyle Fisherwrote on 31.01.2019:[6.0] "Kenny Omega is extremely athletically superior to many of his peers. However, Kenny lacks any sense of a character and his goofy expressions damage his in-ring work, which while impressive from an athletic perspective does not tell a story."
Rating: 6.0
Sentiment: 0.515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Saphirwrote on 30.01.2019:[10.0] "Kenny Omega hat eine sehr gute Ausstrahlung und kann im Ring so gut wie alles, was ein Top Wrestler braucht. Vielleicht kickt er ja mal Lesnar o. ä. gepushte Übergrößen mal in gewohnter Manier ins Genick. Bei Omega sind alle Siege und Niederlagen, die ich gesehen habe überzeugend gewesen und bei ihm ist einfach alles möglich, unterhaltsam ist er auch. 10/10 Great Champion, Great Worker, Great Entertainer!"
Rating: 10.0
Sentiment: 0.775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: LunarGrey1wrote on 29.01.2019:[10.0] "One of the greatest wrestlers of all time, devastating finisher (The one winged angel) and devastating V-Trigger , he's changing the face of professional wrestling as we know it! Goodbye and goodnight *BANG*!"
Rating: 10.0
Sentiment: -0.2109375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JEK 1991wrote on 29.01.2019:[10.0] "Excellent wrestler. He is the NJPW champion and is one of the best wrestlers of this modern day. Has so many signature moves. impressive wrestler."
Rating: 10.0
Sentiment: 0.74
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TylerWhitewrote on 13.01.2019:[10.0] "Der vielleicht beste Wrestler aktuell überhaupt. Was er in den letzten Jahren abgeliefert hat ist einfach unglaublich. Seine Matchserie mit Okada steht auf einer ganz anderen Stufe als alle anderen Matchserien jemals und daneben hat er auch so viele großartige Matches geworkt. Er schafft es einfach immer Big Time Feeling zu kreieren, weil er einfach unglaublich charismatisch ist. Auch am Mic ist er großartig und hält großartige Promos, sogar auf japanisch. Im Ring ist er unbestritten einer der größten Wrestler aller Zeiten, der natürlich für NJPW wie gemacht ist und dort einfach welche der besten Matche überhaupt worken konnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Cibswrote on 01.01.2019:[9.0] "One of the best wrestlers in the world without a doubt. Some of his matches are a bit overrated but in general he is an incredible wrestler who has evolved over the years and that's always good.  I do not give him 10 because he needs to solve a particular problem: make the first 20/25 minutes of his long matches not so boring."
Rating: 9.0
Sentiment: 0.2520833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SuperJrFanBoywrote on 17.11.2018:[6.0] "Now, kenny Omega is a great wrestler, and that is undeniable. However, I find him to be extremely overrated. He is great, but not one of the all-time or even current greats. Kenny's Modus Operandi for big matches make them quite repetitive sometimes. He also has a bad knack for overdoing his spots and forgetting the storytelling or even forgetting to sell his knees doing dives and big strikes even when his opponents spend minutes with limb work. Speaking of the knee strikes, he also needs a new "transitional" move because as great as the V-Trigger looks and sounds it is extremely overused in every match and that takes away from the move's "mystique", for a lack of a better term. Placing him above guys like Marufuji, Miyahara, Sugiura, Okada, et al is a mistake. Omega has, however, all the makings of being an all time great and some of his matches are a testament to that. He does need to find something to make him stand out because, right now, as I see it, he is just a good ring worker with good spots, but who normally cannot make them work together in a cohesive way. When compared to more complete guys like Okada or specialists like Tanahashi, he is far from being New Japan's #1 ring worker. Not to mention that I see him as having a bad run with the IWGP Heavyweight Championship mostly due to having Cody meddling with the main events and overall treating the title as an afterthought, altought it is understandable that this is not entirely his fault."
Rating: 6.0
Sentiment: 0.1722262305595639
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KINGwrote on 09.11.2018:[10.0] "What can you say to Kenny Omega? You could see his talent already when he was a top guy in PWG and DDT, he was destined for greatness, but quite frankly I never expected him to get so big, so huge. He debuted in NJPW as the second guy of the Golden Lovers, he was taking the pinfalls for Ibushi and he was at Kota's side when the Golden Star was dominating the Junior division. However, the company saw thur his talent and after Balor left he was given a chance as the Bullet Club's Junior Heavyweight: he dominated the division for the whole 2015 and his feud with Kushida was great, Kenny is one helluva patient man, he left the WWE's developmental and made a name for himself. A real wrestling lover, he saw Kota's greatness and working with Ibushi brought him to Japan, where magic happened. As soon as AJ left as well, NJPW just pushed Kenny, who had a solid IC Title run and won the G1 becoming a top guy in about 5 months, the rest is history, he's the best wrestler in the world right now, capable to be a face and a heel (althrough born to be a babyface but solidified thru his heel run, like the real legends), he's constantly putting on amazing matches and he became the biggest non WWE draw since the good WCW days."
Rating: 10.0
Sentiment: 0.2994047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MogGuywrote on 06.11.2018:[10.0] "I'm sensing by other comments some bandwagon jumping going on here. Let me bring some honesty and bluntness into this. Kenny Omega was nothing before Japan. Nothing. Anyone who claims otherwise is either lying or is not a very good pro wrestling critic. When one of your big breaks in pro wrestling is a viral video of you wrestling a young girl who was like 12 year old or something at the time, that's not cool and unique, its weird and dangerous and she could have gotten seriously hurt. What 12 year old can learn how to correctly take a bump, let alone get an explanation that pro wrestlings not real? Come on now. Next, Kenny and Kota meet in DDT by pure chance. Had they not met, Kenny may very well have been rotting away in DDT to this day because of their tag team not taking off. So Kenny eventually gets to NJPW and gets lucky that he is selected to join Bullet Club, and the rest is history. This mans entire career has been about fate, luck and at one point being a dangerous worker (the 12 year old girl), yet the IWC bows down to him like he is the King of Gaijins or something. This man is not special, this man got lucky long ago, and with that luck he has gained notoriety and has been given tips and tricks by all the Japanese greats to improve his in-ring ability over the years. In closing, Omega is a lucky hack who was never supposed to amount to anything in professional wrestling. That's my view and this is the moment where I reveal that I meant none of what I just said (SWERVE! ) and Kenny Omega is actually one of the greatest professional wrestlers of the modern age and will no doubt go down as one of the greatest of all time when all is said and done. Thanks for taking time out of your day to read and I hope you got a few laughs out of the material I just provided during my unhealthy and completely not recommended spare time. Have a great day!"
Rating: 10.0
Sentiment: 0.05194700194700194
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: RatingsMachinewrote on 15.10.2018:[9.0] "Kenny Omega seems to engender a passionate response from people, whether it's a positive or negative response. Kenny can obviously have some incredible matches, and to suggest it's all or mostly down to the other guy is absurd. Yet Kenny is not without his flaws; he seems to have no sense of excess, of knowing that he's going overboard with certain moves or spots. And his interviews are Rock-like in that they almost always seem so cornball, like they're a caricature of a wrestling interview. Kenny Omega is great, yes, but he's not quite the world class wrestler that a lot of people think he is."
Rating: 9.0
Sentiment: 0.06918208054571692
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Aurtletheturtlewrote on 15.10.2018:[10.0] "The once comedy character of Kenny Omega was never thought to reach the heights that he has today. But in the last few years Omega has managed to transform himself from a undercard comedy wrestler to the pinnacle of professional wrestling today. Using some of the most innovative and brutal offence ever before seen, Omega has built an empire for wrestling outside of the WWE and brought new eyes to companies all around the world. Officially ascending to superstardom off the back of his legendary G1 Climax victory and subsequent Wrestle Kingdom 11 challenge against Kazuchika Okada, Omega has transformed into one of the most popular and beloved wrestlers on the planet and a true defined "draw" by selling out any show he is announced on near instantly. Kenny Omega will continue to grow regardless of the stage he is on and regardless of what his naysayers try and throw against him. The Cleaner has made way for the Best Bout Machine and a new era of Professional Wrestling."
Rating: 10.0
Sentiment: 0.2323863636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: richeyedwardswrote on 11.10.2018:[0.0] "He is really not very good. I will start off with the good stuff, he is one hell of an athlete able to go at very high pace for long periods of time, and that is where the positives end. Everything he does is at a very high pace and he never slows down to give anything room to breathe. His big matches consist of him just throwing out moves when he is not being controlled by a much better talent such as tanahashi. Nothing he does tells me that he is in a wrestling match. It is all just a procession of stuff that means nothing. It can be one hell of a show or spectacle but not ever a great match usually it ends up being boring due to the matches being endless dull crap. Like a highly practiced gymnastics or dance routine not a wrestling match. His comedy is really goofy and works but only when he is not trying to be a top guy at the same time. To me his ceiling is as a undercard comedy wrestler and his progression up the cards is depressing as NJPW moves from top guys of tana, nagata to the dross of omega and okada who are much lower end talents. But people seem to love him and i cannot understand it the same way i cannot understand why people love Shawn Michaels or Kurt angle so much. Probably the worst wrestler i have ever seen along with mid 80s Swede Hanson"
Rating: 0.0
Sentiment: 0.03625089605734767
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MaskedGaijinwrote on 08.10.2018:[8.0] "Ich fand Omega noch vor kurzem eher langweilig... Wie ich mich doch getäuscht habe! Momentan einer der besten der Welt. Egal in welcher Liga. Einfach Top der "Cleaner"."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jamzell00wrote on 18.09.2018:[6.0] "He's fantastic when matched with guys who can layout matches well. His stuff with Naito, Ishii, Tana etc are incredible matches. When he's expected to lead the match however it gets bad. Kenny excels at sprints and when he isn't working them he looks like shit. I want to like him a lot but the guy is a geek in and out of the ring. He can have one of my fav series of matches ever with Naito then put on dogshit performances with Goto, Cody, Page, and even his recent Ishii title match"
Rating: 6.0
Sentiment: 0.05000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Tomlou12wrote on 17.09.2018:[9.0] "One of the best wrestlers in the world today. He always puts on exciting matches each time out, His feud with Okada was excellent, full of emotion and it had me invested. I am excited to see what he will do in years to come."
Rating: 9.0
Sentiment: 0.605
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Oliver95xwrote on 12.09.2018:[10.0] "Einer der besten Wrestler aller Zeiten wie ich finde. Er hat Charisma und im Ring weiß er zu überzeugen. Ein gutes Move Set und er kann mit jedem ein gutes Match hinlegen. Seine Kniestöße sehen einfach nur unglaublich aus."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JessePinkman1998wrote on 02.09.2018:[10.0] "Für mich zurzeit der beste Wrestler überhaupt. Jedes Match ist stark. Er hat einen so Variablen und spannenden In-Ring Stil. Und seine Matches gegen Okada Vorallem Nr. 4 gehören zu den besten Matches die ich je gesehen habe. Und er hat ein unfassbares Charisma. Ganz klar 10 von 10."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Robert Taylorwrote on 29.08.2018:[10.0] "Kenny Omega hat schon ein tolle Geschichte und Entwicklung hinter sich. Gehört aktuell zur absoluten Weltspitze und hat sich vom whacky-Wrestler, der Spots wie "Stop" oder den "Hadouken" zeigte zu einem absolut erntzunehmenden Wrestler entwickelt, der völlig verdient an der Spitze von New Japan angekommen ist. Ich habe ihne das erste Mal bei ROH im Jahr 2008 gesehen und hätte ihm diese Entwicklung damals nicht unbedingt zugetraut. Klar, er war damals schon talentiert und hatte auch gute Matches bei PWG aber er war halt auch ziemlich Indy. Habe ihn dann während seiner Zeit bei DDT leider aus den Augen verloren und erst wieder bei All Japan gesehen, wo er einen echt starken Run als Jr. Heavyweight Champion hingelegt hat. Auch in den Anfängen als Jr. bei New Japan konnte ich noch nicht erahnen, wohin es mal gehen wird aber man merkte dort schon, dass er sich entwickelt hat. Hat mit seinem Sieg im G1, den ich damals fieberhaft verfolgt habe, vermutlich jedem die Augen geöffnet, wie gut er überhaupt ist. Hut ab Kenny, eine tolle Geschichte und ein verdienter Platz an der Spitze des Wrestlings!"
Rating: 10.0
Sentiment: 0.15340909090909088
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SED12345wrote on 23.07.2018:[10.0] "He? s just the best wrestler today. This man is a real wrestling god that will be treasured forever. His promos are incredible, especially when they are immediately after a 5 Star match. This man has had 10 five star (or above) matches from Dave Meltzer from the past two years. 2! He? s had classics with Kazuchika Okada, The Young Bucks, Chris Jericho, Tetsuya Naito, Juice Robinson, Tomohiro Ishii, and plenty more. He is the current IWGP World Heavyweight Champion with one of the best stories going on today with the Bullet Club Civil War. He? s also really good at Street Fighter! What a legend! And here is the scariest part of all: He? s only just begun. Goodbye and goodnight; bang!"
Rating: 10.0
Sentiment: 0.36562500000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: sign squadwrote on 21.07.2018:[10.0] "Oh wie schön, dass er nicht mehr bei DDT mit Puppen und Leitern und irgendwelchen Dödelgimmicks arbeiten muss sondern Geld verdient mit ehrlicher, harter und herausragender Arbeit. Manchmal ist es erstaunlich, was Fans so antreibt. Aber egal, ich lass mich schon wieder von ehemaligen Teammitglieder triggern. Geiler Macker einfach der Typ."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Headlockwrote on 21.07.2018:[4.0] "Kenny Omega ist besser als sein Tag Team Partner, vor NJ in DDT Hätte er 9 Punkte bekommen, In All Japan wäre es ne glatte 10! Selbst als Junior in NJ wären es 7 aber wenn er als Heavyweight seine Komedie mit der Elite zeigt, kommt mir das kotzen, um es mal Diplomatisch auszudrücken, ich bin kein Fan von T-Shirt Omega und das ist leider der Omega der öfter auftritt als der ernste Omega und selbst Big Match Kenny ist ermüdent. Sein Mic Work ist auch absolut grässlich. Ich geh ich auf 4 Punkte, da ich einfach keinen Spaß mehr an Omega hab"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Cameron621129wrote on 18.07.2018:[10.0] "One of the best in the world in ring. Unarguably a superstar wrestler who can do anything and is a great storyteller. Just look at the Okada fued."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Vylkhinwrote on 17.06.2018:[10.0] "The. single. best. wrestler. in. the. fucking. world. Charismatic, amazing in the ring, great mic skills both in japanese AND english, puts on classic over classic, he can do absolutely everything. This man is the definition of wrestling."
Rating: 10.0
Sentiment: 0.2510822510822511
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: jpmoore0416wrote on 16.06.2018:[10.0] "best wrestler/performer i've seen in the 30 years I've watched... Ric Flair and Okada are close but Omega has more Charisma than anybody, unreal athlete, great promo and ring psychology ... He can tell a story in the ring that creates emotion... Heel or Baby his versatility is what really sets him apart from the others... #14 on this list is an insult"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: memebigboiwrote on 15.06.2018:[10.0] "Best fucking wrestler in the world.  If you rate him below 9 I just assume you are cheeto eatin, mountain dew drinking fat fuck who is still crying about HBK vs Taker getting 4. 75 or watching your no name promotions with "excelent" matches."
Rating: 10.0
Sentiment: -0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Makai Clubwrote on 27.05.2018:[7.0] "Edit: My impression of Omega has completely changed over the past year. Maybe that's due to different tastes or Omega just getting worse but Omgea is getting less and less appealing to me by the day. His big matches for the most part of fine but Omega is often the most annoying parts of the match due to his awful facial expressions, along with little nuances that make him frustrated to watch. He tries way too hard to get an epic, so many big moves all the fucking time. The spamming of his V-Trigger, so much fake drama in his matches. It's frustrating at times because he isn't bad and can have great matches but he isn't consistent at those great performances."
Rating: 7.0
Sentiment: -0.06819444444444442
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: lew kazamawrote on 02.05.2018:[9.0] "Kenny Omega is a viciously entertaining worker with a fun moveset and bizarre, villainous persona. His English promos always communicate effectively to the Japanese crowds and he has proven himself to be one of the most consistent workers on the planet today."
Rating: 9.0
Sentiment: 0.31875000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: rjsbx11wrote on 11.02.2018:[10.0] "With some wrestlers, you truly have to watch them on a loop to fully appreciate them. Kenny Omega is one such wrestler. Omega is a perfect blend of silly, goofy, referential while also being having outstanding ring presence, his incredible wrestling ability and his undying love for Japanese culture or wrestling. Something about Omega compels you to pay attention to him, whether it's his unparalleled selling, his ability to build drama for a match or his character work --- Omega is a must-see wrestler.  While many clamor for a WWE run, he is one of those wrestlers whose impact and reach in the industry would do fine without the casual exposure of the WWE."
Rating: 10.0
Sentiment: 0.3015151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Sebastian Vwrote on 06.01.2018:[10.0] "Es ist in meinen Augen unmöglich ihm keine 10 zu geben. Im Ring ganz klar 10/10. Kaum einer hat so viele so außergewöhnlich gute Matches in der Geschichte geworked wie er. Sauberkeit der Moves, Psychologie, Breite des Movesets, Finisher.. es stimmt einfach alles bei ihm. Ausstrahlung auch ganz klar 10/10. Er kann Reaktionen ziehen wie kaum ein zweiter. Micwork würde ich 9/10 sagen, da ich noch nicht so viele Promos von ihm gesehen habe ( weil das nun mal in Japan nicht so bedeutend ist wie anderswo) um ihm 10 Punkte zu geben, aber die die ich gesehen habe wie die nach dem G1 Final waren absolut klasse. Alles in Allem einfach der beste Wrestler, den es im Moment gibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheLoudMouthwrote on 05.01.2018:[10.0] "Das aktuell heißeste Eisen im Wrestling-Business. Bei seinen Top-Leistungen wären alles andere als zehn Punkte tatsächlich pure Blasphemie."
Rating: 10.0
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Rattlesnake3-16wrote on 21.12.2017:[10.0] "Kenny Omega is simply the most famous gaijin nowadays and he deserves it. His character is charismatic, talentious and a little bit enigmatic. Furthermore, his love and respect for Japanese culture (he speaks fluently Japanese), all the references he put on his moves and character show that he is very implicated, maybe more than other gaijin. His in ring is just incredible, mixing a lot a style and influence. He also gives very good promo in his career. So I hope he will continue his ascension and become the best"
Rating: 10.0
Sentiment: 0.30516666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: PrinceJrwrote on 30.11.2017:[10.0] "Sein Match gegen Kazuchika Okada bei Wrestle Kingdom 11 hat mich dazu gebracht mich mehr mit New Japan Pro Wrestling zu befassen. Ich kannte die Promotion zwar vorher schon, aber durch WWE Propaganda habe ich nur WWE geguckt. Dieses Match war wahrscheinlich eines der besten Dinge, die dem Wrestling widerfahren konnte, da ich es so empfinde, dass der Hype für New Japan so groß ist wie schon lange nicht mehr nach diesem Match. Meiner Meinung nach ist Kenny die Stütze, um international durchzubrechen. Überbewertet wird er sowieso nur von den Leuten genannt, die nix anderes außer Raw und SmackDown gucken und sich schon an den Dünnschiss, der ihnen jede Woche vorgesetzt wird, gewöhnt haben. Hoffentlich entscheidet sich Kenny weiterhin noch viele Jahre bei New Japan zu bleiben, wo er auch seinen Ansprüchen eines Topstars gerecht wird."
Rating: 10.0
Sentiment: 0.013053613053613045
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: benYowrote on 21.11.2017:[10.0] "Für mich ist K. Omega ein wahres Wunder an Wrestlingkunst. Jede seiner Aktion sitzt auf den Punkt und er transportiert dabei auch noch so viele Emotionen dass man formlich eingefangen wird von der Story im Ring. Seine Ausstrahlung rund um den Charakter K. Omega ist einfach unglaublich und wird auf der ganzen Welt geliebt. Ich bin mir sicher, dass er mit genügend Freiheiten jede Wrestling-Liga auf ein neues Niveau heben würde. Ich hoffe jedoch das er noch lange bei NJPW bleiben wird. Das einzige was ich noch mehr feiern würde, wäre ein Kampf K. Omega vs. AJ Styles."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Toothless192wrote on 15.11.2017:[10.0] "He is the best wrestler in the business today. He also has three 6 star matches all of them taking place this year and another near 6 star match. The man is unstoppable."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Dragon Fighterwrote on 14.11.2017:[10.0] "A tremendous, fantastic overall performer today. I understand someone dislike him because he is sometimes goofy or does little too much comedy, but I like everything he is doing now. Great in ring work, very good psychology. On mic, he is also phenomenal as well, I love how he put over his opponents so much before or after the match. He is really special, can make anything around him look so important, feel like a big deal. A proven big draw with the western audience and Japanese audience and he definitely has huge impact on the company's western expansion. Hopefully, he will stay in NJPW to become a legend there. To me, he is really a joy, an entertainment to watch. A 10 for sure."
Rating: 10.0
Sentiment: 0.3005898268398269
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheRainmaker28wrote on 25.10.2017:[10.0] "One of the most entertaining wrestlers of this century. I can see why some people hate him, but they just can't deny his amazing talent. Amazing offensive, atletic and a very versatile wrestler. And one of the most impressive things on Kenny, was his facility to adapt his style from a Junior to a Heavyweight, just like AJ. Kenny probably will go down as one of the greatest if he keeps this rhythm over the next years. Amazing talent."
Rating: 10.0
Sentiment: 0.3787037037037037
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Solidsnake888wrote on 10.10.2017:[10.0] "Ich verfolge nicht viel Njpw, aber dieser Kerl ist einfach awesome. Ein absoluter garant für gute Matches. Vielleicht sehen wir ihn mal bei WWE"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "One of the best at the moment, Kenny Omega is charismatic, athletic and entertaining to watch. A bridge between American and Japanese wrestling, Kenny is basically son of two worlds. He can also work a good competitive match and then have a incredibly funny comedy match. It's a shame he hasn't still won the IWGP Heavwyweight Championship."
Rating: 10.0
Sentiment: 0.3277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Yukinoarkwrote on 04.09.2017:[10.0] "Kenny is a genius wrestler, every match he's done never looks boring to me. Though his opponent is an amateur, he knows the advantages of his opponent and he tries to show it so that the opponent has a chance to shine."
Rating: 10.0
Sentiment: -0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Blood Pumpwrote on 01.09.2017:[9.0] "Say what you will about his garbage run in DDT (I whole heartedly agree with Cornette as far as considering Omegas stunt with the blow up doll and little girl not only being unfunny but just plain terrible), the man has improved by leaps and bounds. Since early 2016 Kenny has seemingly made it a point to become one of the best hardest workers, and I believe hes accomplished the feat. Sure he has that DDT blemish on his record and yeah he sometimes goes from spot to spot pretty fast but as far as the latter is concerned I think that speed tends to serve his matches well. While I'm not as high on him now as I once was (hes third behind Naito and Okada in my eyes, fourth if/when Shibata returns), there's no denying his mind for a good spot is above and beyond anyone else's right now. Hes been a direct part of some of the greatest matches in history with both Okada and Naito, and has been a very steady hand otherwise. I only knock a point off because I do feel he could work on his pacing when going from spot to spot. As cool as his explosiveness is I do think he isn't exactly great at letting a big spot breathe, though hes gotten better at that."
Rating: 9.0
Sentiment: 0.17105500821018063
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: tykechandlerwrote on 16.08.2017:[10.0] "He can be off-putting at times with his persona and in-ring histrionics (gesturing, hand movements, etc), but there is absolutely no denying he is one of the greatest wrestlers of all-time. He can do it all, and he does it incredibly well. One of the best ever."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: xPETERxwrote on 14.08.2017:[10.0] "Weniger als 10 Punkte für den aktuellen Omega, der in Regelmäßigkeit 5* Matches raushaut wären wohl Blasphemie. Es gibt einfach zu vieles was gut an ihm ist. Der Bullet Club, The Elite, das Theme, V-Trigger, SnapSuplexes, der Finisher etc. Die Gesichtsausdrücke - selbst bei sowas wie der G1-Pressekonferenz (als Ibushi nach vorne tritt, oder Suzuki an ihm vorbei läuft, oder er EVIL nachäfft). Alles unter 7 sind Hate-Bewertungen, die bloss den Durchschnitt senken sollen."
Rating: 10.0
Sentiment: -1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: arrancarwrote on 14.08.2017:[10.0] "I quite frequently have issues with Omega. As many people have mentioned, his facial expressions, gestures, posture, and general bumps can be very overdramatic to fit his video game inspired character. It can easily come off as cheesy and even laughable, and can detract from matches that are of a high importance level. Yet somehow this guy manages to make it all feel natural by the end of the match. Omega IS the super villain. He's over the top and goofy, yet knows when to tone down his pace and be more methodical and precise with his actions. This creates a character that takes great delight in being dastardly, and is clearly in love with his own ego, but not to the point that it clouds his judgement enough to stop him from properly attempting to obtain his goals. So, while Omega can be goofy, it fits his character perfectly. There's no one else quite like him, and when he goes into serious mode he turns into a FULL-ON killer. This isn't even to mention his incredible athleticism and physicality, pulling off all sorts of crazy high-flying, technical, and power moves, all with perfect timing and technique. During the big finishing stretch of a match it's incredibly hype seeing Omega put on that big cheesy grin as he attempts to kill his opponent and put them down for the 3 count, because he really comes across being as crazy as his ridiculous grin implies. Omega is a madman that's having some of the best matches I've ever seen. One of the best in the world currently."
Rating: 10.0
Sentiment: 0.20728997289972903
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Efanga80wrote on 13.08.2017:[10.0] "Kenny isn't my favourite but he doesn't need to be my favourite for me to know he is one of if not the best pro wrestler right now. Every match is talked about and endless classics"
Rating: 10.0
Sentiment: 0.38690476190476186
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Telecinewrote on 04.08.2017:[9.0] "Ich muss sagen, ich bin echt beeindruckt von Kenny Omega. Als ich ihn vor vielleicht sieben Jahren das erste Mal bei ROH sah, hielt ich ihn für talentiert, aber nicht für jemanden, der das Potenzial hätte, irgendwann einer der Topstars des internationalen Wrestlings zu sein. Doch genau das ist er mittlerweile bei NJPW geworden. Als einer der wenigen hat er es auch geschafft, seiner komödiantischen Herkunft irgendwo treu zu bleiben und sie dennoch zu einem Stück weit hinter sich zu lassen. Mittlerweile beherrscht er ein psychlogisch durchgestyltes Match wie beispielsweise im G1 genauso perfekt wie ein Comedy Match gegen Toru Yano und das alles, ohne aufgesetzt zu wirken. Erstaunlich, was aus ihm über die Jahre geworden ist."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ChristianMB1wrote on 27.07.2017:[10.0] "Excellent blend of athleticism and psychology. Quite possibly the best wrestler of all time, and his brilliance is enhanced by the fact he works for a company that legitimately appreciates his talent and doesn't change him."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: The Phenomenal 1551wrote on 03.07.2017:[10.0] "Meiner Meinung nach das beste Gesamtpaket im Wrestling außerhalb von WWE. Gerade was er in den letzten eineinhalb Jahren im Ring abliefert ist gefühlt oft nicht von diesem Planeten. Vor allem die großen Matches gegen Okada sprechen für sich. Auch beim G1 US Special hat er wieder abgeliefert und ist zurecht erster NJPW US Champion."
Rating: 10.0
Sentiment: 0.4285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Lee Vilenskiwrote on 20.06.2017:[10.0] "I'm not exactly sure how you can rate Kenny badly. Able to work year long, doing incredible matches on que, with phenominal mic skills, and gets over in Japan despite being Canadian.   Legit nice guy who just wants New Japan to be the business. Fantastic Wrestler to boot."
Rating: 10.0
Sentiment: 0.30454545454545456
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ParisTheSpiderwrote on 19.06.2017:[10.0] "Kenny Omega ist momentan der heißeste Star der ProWrestling Szene. Im Ring ist er sehr gut und hat ein tolles Moveset. Bei New japan Pro Wrestling ist er grandios. Habe schon dutzende 5 Sterne + Matches von ihm gesehen. 10 von 10."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: PistolPeteMattywrote on 31.05.2017:[10.0] "Probably the best wrestler in the world today that was born in North America. He's got charisma for days,  impeccable in ring ability, can cut a great promo, and has an excellent look. Omega is amazing."
Rating: 10.0
Sentiment: 0.8300000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: LordGabrielwrote on 28.05.2017:[10.0] "One of the most spectacular wrestlers nowadays. I really enjoyed his matches vs. Tetsuya Naito and Kazuchika Okada (WK 11). He is an attraction for everyone and a great leader for the Bullet Club/"
Rating: 10.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: J Dwrote on 19.05.2017:[10.0] "Der beste Wrestler den es zurzeit gibt. Hat das beste Wrestlingmatch allerzeiten gegen Okada geworkt. Einer meiner absoluten favourite Wrestler und auch der Grund warum ich NJPW so liebe!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Demusawrote on 13.05.2017:[10.0] "Einer der komplettesten Wrestler die ich je gesehen habe. Wenn er keine 10er Bewertung verdient hat, dann hat sie keiner verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Richiewrote on 06.05.2017:[10.0] "Wie er ist, wie er sich gibt, was er macht... er ist das beste, was ich wahrscheinlich jemals gesehen habe! 10 Punkte und besser!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ErycK24wrote on 02.05.2017:[10.0] "Kenny Omega is the bar for wrestlers in the modern era, he is one of the best in the world both in the ring and on the mic."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Cleanerwrote on 28.04.2017:[10.0] "Im letzten Jahr sollten jegliche Zweifel verschwunden sein - Kenny Omega ist nicht nur einer der besten Worker dieses Planeten, sondern "the hottest thing going on", die Boxoffice-Attraction, die die WWE so gerne hätte. Er bringt mich dazu, jedes mal bei NJPW (und natürlich auch regelmäßig bei diversen Indies) einzuschalten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SteveTheBeastwrote on 21.04.2017:[10.0] "Meiner Meinung nach der beste Wrestler außerhalb der WWE Momentan, und vielleicht auch generell. Spätestens ab seinem 6-Sterne (! ) Match bei WK 11 sollte man ihn auf dem Schirm haben. Absolut großartiger Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: hasanakbaba68wrote on 08.04.2017:[9.0] "Einfach nur ein Gott! Hat bis jetzt das Beste match seines Lebens Gehabt gegen Kazuchika Okada (IWGP World Champion) 6Sterne Match Bei Wrestle Kingdom 11 Im Main Event Einfach nur Pures Gold Kann man sich immer Geben"
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TheCleanerwrote on 29.03.2017:[10.0] "Kenny f'n Omega is the man. His Transition from Junior Heavyweight to Heavyweight Division was awesome and he made it worth by giving a great performance against Tanahashi and winning the IC Title. His Match against Elgin was awesome at Dominion and His G1 Performances were what made him a Star after giving breathtaking Performance against Naito and got an outstanding match out of Goto, thats how good he really is. And then The Ultimate match at WK11 vs Okada. MAN OH MAN! WHAT A MATCH! Outstanding performance by Omega and Okada too. I hope he wins the title asap because he has so much momentum and so many fans in his corner and i know he will become THE CHAMPION because he has the IT factor that nobody has."
Rating: 10.0
Sentiment: 0.5357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ezuvguwrote on 25.03.2017:[5.0] "Omega can be good with the right opponent, but his matches tend to go on longer than they need to. When he's actually serious in the ring and the matches are not packed with filler such as gratuitous finisher kickouts, he's every bit as good as the other New Japan heavyweights. When he does the self-indulgent stuff, it gets tiresome very quickly."
Rating: 5.0
Sentiment: 0.0797077922077922
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TooSweetPhilwrote on 09.03.2017:[10.0] "Im Ring einfach Weltklasse, kann wunderbare Matches aufstellen wie gegen Okada/Naito, verfügt über mehrere Stile, High Flying, Stiff und Technical und kann tolle Story's aufziehen. Dazu ein magnifikantes Move Set mit einem der besten Finisher überhaupt.  Sein Charakter gefällt mir auch, zwar kann er zum ultimativen BadAss werden wenn's nötig ist, aber auch zum Comedy Faktor werden, mit bsp. Chainsaws. Obwohl das in PWG schon überspitzt wird, ich meine sein Match gegen Ospreay hat mich zum Wegschmeißen vor'm Lachen gebracht.  Mikrofon ist zwar im Indy Bereich nicht immer gefragt, aber bei ihm definitiv eine besondere Gabe.  Bringt einen insgesamt auf die Höchstpunktzahl. The Legend is about to clean !"
Rating: 10.0
Sentiment: 0.10101190476190477
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Changeling45wrote on 02.03.2017:[10.0] "This guy has all the tools in the world to be something truly special.  He has a great physique and can work way faster than his size should allow due to his awesome intensity and work ethic.  Awesome moveset and willingness to do whatever to put a match over.  Definitely a top performer in the world today."
Rating: 10.0
Sentiment: 0.5886904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Chekerwrote on 23.02.2017:[10.0] "I knew Kenny Omega was money the moment I laid eyes on him, but the rate at which he's improving, even this late into his career, is impressing even me. He casually has the match of the night on any card he's in, regardless of opponent, he mastered simple heel mannerisms completely (you don't see them that much now, I still have in mind his Cleaner character before he became the de facto leader of the BC), and he has a great look (again, I liked his "junior" look better, but still). Absolutely one of the best wrestlers in the world, and he's not showing any signs of stopping anytime soon."
Rating: 10.0
Sentiment: 0.25999999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: One Winged Angelwrote on 10.02.2017:[10.0] "Kenny, Okada and Tanahashi are the top 3 wrestlers on the planet. IMO, he has surpassed both of them in the last 12 months to become the undisputed best wrestler on the planet. Incredible in the ring, great on the mic and charismatic. A fantastic all round pro wrestler."
Rating: 10.0
Sentiment: 0.48750000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: sakuraba3891wrote on 08.02.2017:[10.0] "Best wrestler in the world right now. So happy he stayed with NJPW and didnt go to WWE a promotion that simply has no clue how to book great wrestlers."
Rating: 10.0
Sentiment: 0.5771428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JubileuFishwrote on 07.02.2017:[10.0] "Overral, the best in the world right now. Impecable in the ring, has a lot of charisma, and a really good mic-skill. A ten on everything."
Rating: 10.0
Sentiment: 0.4964285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: csp6713wrote on 23.01.2017:[9.0] "To put it shortly, Omega has IT. Something that's rare in today's wrestling. Wherever he goes, he'll be one of if not the best at what he does. Can't wait to see what happens next."
Rating: 9.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JokeyZockeywrote on 10.01.2017:[10.0] "The Cleaner! Einer der besten Wrestler der Welt aktuell und das vielleicht beste Gesamtpaket ohne Stil oder Region-Beschränkung! Im Ring nach AJ Styles der für mich zweitbeste westliche Worker der Welt, unfassbar charismatisch, so gut wie auf demselben Level wie Nakamura und trotzdem irgendwie besser über den Körper verteilt bzw. er macht mehr draus, am Mic ein Gott, er shootet gegen alles und jeden mit einer unfassbaren Intensität, sowohl auf japanisch als auch auf englisch, was ihm bei NJPW unfassbar hilft, und eine Ausstrahlung, die ihresgleichen sucht, dieser Mann verkörpert sein Gimmick mit Leib und Seele und das merkt man von der ersten Sekunde an, er lebt es förmlich! Zudem kann man sich erstens super mit ihm, der außerhalb des Rings ein ''Nerd'' in Bezug auf Videospiele, Animes, etc. ist, identifizieren und zweitens ist er einfach krass unterhaltsam, die YouTube-Videos auf dem Kanal von The Elite sprechen Bände. Zu guter Letzt hat er nun bei Wrestle Kingdom 11 das beste Wrestling-Match, das ich bisher in meinem Leben sehen durfte, geworkt, wen das nicht überzeugt, dem kann ich auch nicht helfen! Kenny ist ein Mega-Star, das ist ein Fakt!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Titansrevengerwrote on 10.01.2017:[7.0] "Alright, i'll admit Omega is one very talented individual and may very well be ahead of his time. Which is saying a lot because there is a lot of innovation in the wrestling game today. Omega seems very Pillman like with a dash of Lawler. I can't explain it but he is an outlandish character who really self aggrandizes himself. He definitely knows how to get over. I would love to see how he goes over in the States."
Rating: 7.0
Sentiment: 0.20124999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Gloverwrote on 10.01.2017:[10.0] "An incredibly charismatic, affable, and creative professional wrestler that has made the slow climb up through the Japanese scene. From sending in tryout video to DDT from his residence in Canada to becoming one of the company's top foreign stars after forming a rivalry/partnership with Kota Ibushi to branching out to other Japanese companies and western indies like ROH and PWG to joining NJPW full time and becoming the company's top gaijin after the exodus at the beginning of 2016. He's gone from giving Zangief's Ultra Combo to a dummy to main eventing the Tokyo Dome in one of the most highly-lauded matches of this decade. I support Kenny no matter what he does, because he gives it his all."
Rating: 10.0
Sentiment: 0.2509803921568628
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: TrevPuroFanwrote on 07.01.2017:[9.0] "Kenny Omega is a incredible big match performer. When he's serious and wants to deliver, he can put on incredible matches as he's proven against Naito, Goto etc. Only reason I won't give him a 10 is because sometimes he can be goofy and not care about his matches, which leads to him underperforming vs. KUSHIDA, Shelley etc."
Rating: 9.0
Sentiment: 0.3095238095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Brainbreakerwrote on 05.01.2017:[10.0] "Ist laut CM-Datenbank unfassbarerweise schon fast genauso lange dabei wie AJ Styles und gerade einmal 33. War lange Zeit der übersehene Star der Indy-Szene und kam trotz toller Segmente zunächst (siehe the greatest match opening in history) nicht aus dem Schatten von Leuten wie Danielson oder Tyler Black heraus. Nach seinem Sprung nach Japan wendete sich das Blatt langsam. Tollen Matches folgten, und nach dem Rauswurf von AJ Styles aus dem Bullet Club ergriff der Cleaner die Gelegenheit, um zu NJPWs größten Gaijin aufzusteigen. Ihn als talentiert zu bezeichnen wird seine gegenwärtigen Größe nicht gerecht: Er bumpt, mimt, wrestlet wie ein junger Gott. Ist immer präzise, hat eine wahnsinnige psychologische Komponente, die einfach in den Bann zieht und jedem Match eine natürliche Story zu geben scheint. Omega, in der Summe seiner In-Ring-Skills, ist ein Almagam der Stars mit denen er über die Jahre im Ring gestanden ist. Und in ihm findet sich nur das beste dieser Leute wieder. Dabei waren Danielson, Styles, Black, und viele seiner japanischen Kollegen bereits absolute Meister ihrer Zunft, doch hat Omega diese Fertigkeiten aufgesaugt und purifiziert."
Rating: 10.0
Sentiment: 0.21333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ApexOfEvolutionwrote on 05.01.2017:[10.0] "Neben Tetsuya Naito hat er einfach das derzeit beste Heel-Playing der Welt. Egal, ob es seine Austtrahlung, seine Promos oder auch sein Verhalten im Ring betrifft. Dazu ist er technisch einfach perfekt ausgebildet und arbeitet in einer Promotion, in der er sich perfekt entfalten kann. Hoffentlich bleibt er weiterhin bei NJPW und wird nicht irgendwann von der WWE abgeworben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: umarthegreat15wrote on 05.01.2017:[10.0] "If there is one guy who has stepped up his game big time in the last year, it is this guy. What a wrestler he's morphed into. His G1 bout with Naito and now the WK11 match vs Okada speak without needing any further explanation. One of the best around today."
Rating: 10.0
Sentiment: 0.12
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: SamuelElJaxonwrote on 04.12.2016:[10.0] "One of my favourite independent wrestlers right now, and totally deserving of the opportunities he's been given by NJPW."
Rating: 10.0
Sentiment: 0.29523809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Undisputedwrote on 17.11.2016:[9.0] "This is very good wrestler, with nice ring skill, with charisma but he is in NJPW where serious Omega is better Omega. This is not DDT, if he can be IWGP Heavyweight Champion, he must to behave like main event wrestler in NJPW."
Rating: 9.0
Sentiment: 0.36866666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CelticFCwrote on 09.11.2016:[7.0] "He's a reasonably good wrestler. That said, he's done some absolute garbage in his career and I don't get the major omg Kenny Omega is the best thing ever. He's a good wrestler but I find his character a bit cringe worthy especially when a babyface but as a heel his promos are slightly more cringe worthy."
Rating: 7.0
Sentiment: 0.42546296296296293
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KondziuuSRwrote on 30.10.2016:[10.0] "Kenny Omega is without a doubt the best wrestler in the world right now. His in ring skill is just incredible from selling to storytelling. He's also very charismatic and amazing on mic. He might easily become the greatest ever and I hope this is how it will be."
Rating: 10.0
Sentiment: 0.695578231292517
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: 1893wrote on 27.10.2016:[10.0] "Kenny Omega ist ein absolutes Komplettpaket und sicherlich einer der besten Wrestler der Welt. Er haut immer wieder sehr starke Matches raus und ist einer der besten Talker im Geschäft. Es ist nur eine Frage der Zeit bis es endgültig ins Mainevent bei NJPW vordringt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: shosa94wrote on 18.10.2016:[10.0] "At this point, it should be safe to say that Kenny Omega is the best wrestler in the world.  The capability he's shown this year has been hinted at forever, but this year he's made good on his potential.  Best on the mic, top 5 in ring, first gaijin to ever win the G1 and damn well earned it with the two best matches of the year and arguably the best match of all time with Naito.  A sure-fire Hall of Famer right now, even just based on this year's work."
Rating: 10.0
Sentiment: 0.6396103896103896
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: akm0wrote on 17.10.2016:[9.0] "Kenny Omega is one of a kind. He has the look, he has a ton of charisma, he has a freakin' cool moveset, the agility, the selling, the character, the mic skills and he's scary strong. The Cleaner has it all, including the ability to give to the fans 5* matches - his match with Kota Ibushi at DDT Budokan is one of my favourite ever - given him the chance. Since becaming a hvt. in Japan he stepped his game up, showing his incredible selling - moonsault with one leg, powerbomb with one arm just to sell the opponen'ts work - outstanding in-ring psychology and sheningans for ages (just look at the G1 final with Goto). What I honestly think he lacks, is the ability to be a true heel. Kenny is a lovable good guy at his core, he has that mannerism that takes from pop culture (from quoting Bison from the Street Fighter movie, to Terminator 2 references, Final Fantasy inspired finishers and singing Katy Perry) that just makes him impossible to truly hate. He's a cool heel, a bad guy you like to love. I'm waiting for his 3rd match with Kota Ibushi which it could be one of the best matches of the decade given the level of those two right now."
Rating: 9.0
Sentiment: 0.19058956916099773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: CulletBlubwrote on 29.09.2016:[10.0] "Zu Kenny Omega gibt es nicht viel zu sagen. Er hat den Look, ist ein sehr guter Wrestler und er hat auch gutes Micwork und Charisma, dazu kommt ein epischer Entrance, ein starkes Moveset und ich finde es gut, dass er trotz seines Erfolges so auf dem Boden geblieben ist. Außerdem ist er mit 32 Jahren noch nicht so alt und kann sich immer noch verbessern.  Charisma 10/10; In-Ring 10/10; Micwork 9/10, er ist das komplette Paket und zählt für mich zu den besten der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JordanACEwrote on 11.09.2016:[9.0] "The Cleaner, Kenny Omega! He is just too awesome. He can talk, he can wrestle, he can tell a story. What more can you ask from a wrestler? Many people call him a "spot monkey" for some weird reason.. probably his friendship with The Young Bucks (The Elite), but I don't see that. I think that he is simply amazing."
Rating: 9.0
Sentiment: 0.3071428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ThePhenomenal1wrote on 04.09.2016:[10.0] "Der Typ ist richtig gut im Ring und es ist nur eine Frage der Zeit bis er zum Topstar in Japan wird. Seine Moves sind genial und er führt die so präzise aus wie kein anderer, vor allem der croyt's wrath ist mega. Volle Punktzahl"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Jobbswrote on 02.09.2016:[10.0] "This man is currently in the talks of being the Best in the World and for good reason too. His performance in the G1 Climax in 2016 was just amazing and one of the best as well. His psychology and storytelling are on point but what impresses me the most about him is his selling as I love his selling in his matches. Truly going to be destined for greatness going forward."
Rating: 10.0
Sentiment: 0.6142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: DevilsSkywrote on 31.08.2016:[10.0] "One of the better wrestlers of this generation, and the G1 Climax truly showed off his skills. He's got solid charisma, amazing ability and athleticism and very good selling (his leg selling during the G1 was definitely something to admire). As he said himself, he's the type of wrestler who those in NXT should learn from, because he's got a lot to offer to the wrestling business. His character work is occasionally a little inconstant, however, he is a heel, and if people don't like it then it's a pretty good way to get heat. I just can't wait to see his match against Okada at Wrestle Kingdom, no doubt it will steal the show."
Rating: 10.0
Sentiment: 0.3465625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: mrmctommywrote on 23.08.2016:[10.0] "A franchise guy. An endless moveset, unparalleled in-ring storytelling, and a great mix of modern douchey heel and golden age cartoony bad guy."
Rating: 10.0
Sentiment: 0.09500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: KASHwrote on 16.08.2016:[10.0] "Meine letztes 10 Punkte Kommentar zu Omega ist 5 bzw vor Edit 6 1/2 Jahre alt. Wird Zeit einen neuen Text zu ihm zu verfassen. Damals war er noch bei DDT als Semi-Komedieperformer unterwegs und hatte einen ziemlich verpöhnten Ruf unter den Indywrestlern. Heute ist er anerkanntes Heavyweight bei NJPW und sicherlich einer der schillernsten Wrestler, die nicht im Titanenland in Stamford unter Vertrag stehen. Für mich hat Omega schon immer den perfekten Wrestler verkörpert. Er hat eine sehr gesunde Einstellung zum Business, zum Publikum und zu seinen Pflichten gegenüber Fans und Zuschauern. Diese Work ethic hat ihn jetzt an die absolute Spitze von NJPW katapuliert. Er mag nicht der beste Techniker aller Zeiten sein, aber das muss und will er auch gar nicht, eben weil er weiß wie er die Massen unterhalten kann und dies tut er auch aus vollem Herzen auf seine ganz eigene weise. Die Matches, die er im letzten halben Jahr abgeliefert hat, beweisen außerdem das er doch weiß wie man Topmatches zu worken hat. Dazu kommen ausgezeichnete Fähigkeiten am Mic, sowie seine vorbildliche Präsenz in den sozialen Medien oder allgemein in der Öffentlichkeit. Das macht ihn zu einem total package. Ich denke wir werden ihn niemals bei der WWE sehen. Beweisstück Nummer 1 ist für mich seine Siegespromo nach dem Climax Erfolg. Er ist für NJPW das perfekte Bindeglied zwischen Westen und Osten, weil er beide Sprachen und beide Wrestlingfanmentalitäten berühren kann. Seine Karierre wird von hier an in Japan nur noch steiler bergauf gehen. Er liebt Japan, Japan liebt ihn und wir alle lieben Kenny Omega. Er soll weitermachen wie bisher, sein Pfad ist definitiv der richtige."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Viper99wrote on 15.08.2016:[10.0] "Wertung bleibt bei 10 jedoch update ich meinen Kommentar: Omega ist einfach in allem was er macht unglaublich gut. Jahrelanger Junior Wrestler in Japan und Spotmonkey in den Staaten. Dort bot er schon großartige Leistungen. Nun wurde er zum Leader vom Bullet Club gepusht und sollte AJ Styles vertreten. Ich wusste Omega sei großartiger, aber ich hatte dies immer belächelt da ich nie gedacht hätte er wäre so gut wie AJ. Aber im Jahre 2016 bewies er mir das gegenteil. Er ist ohne Probleme von der Junior in die Heavyweight Division aufgestiegen und hat mit seinem Charisma und Charakter einfach so einen frischen wind in die Division gebracht. Dazu hat er ohne Probleme seine großartigen Matches in der Heavyweight Division gezeigt. Es starte mit seinem Cleanen Sieg über Tanahashi, bis er etwas auf der stelle blieb und in einem Großartigen Match seinen Titel an Elgin verlor, bis er im G1 Total auftrat, MVP des Turniers wurde und in innerhalb von 1 Tag 2 5* Matches hatte. Omega beerbt AJ super. Wrestlerisch ist AJ wohl ein ticken stärker, aber Omega macht dies mit seinem Charakter und Crowdwork weg. Einer meiner Absoluten Favorites!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Uliseppwrote on 14.08.2016:[10.0] "Ich bin schon etwas länger Fan von Kenny Omega, aber nun muss ich hier auch mal meine Wertung abgeben und passend dazu gewinnt er parallel dazu den G1 Climax. Das heißt Kenny Omege ist nun endgültig im MainEvent angekommen.  Und das hat er sich auch total verdient. 10 Punkte zu geben ist vollkommen legitim, denn Kenny Omega ist im Ring eine glatte 10, er kann einfach alles im Ring. Dazu hat er ein einzigartiges Charisma, er ist nämlich total unterhaltsam und gleichzeitg eine coole Sau(Was er mit der Position als Leader vom Bullet CLub bestätigt). Omega als Bullet Club Leader passt auch total, denn er ist nicht wie ein AJ oder ein Devitt, sondern er ist auf seine Art ein super Leader für dieses Staple. Zum Mic Work: Also seine Promos sind der absolute Hammer. Er kann singen, er kann japanische Promos halten und dabei trotzdem cooler rüberkommen als manch "Ami" der eine englische Promo hält.  Fazit: Kenny Omega ist ein fantastisches Gesamtpaket(nicht nur im Ring^^). Er kann wrestlen wie ein Gott, er kann Promos halten wie ein Gott und er hat Charisma on Top.  PS: In der WWE sollte eine MainEvent Postion ein MUSS sein, da er einfach dafür der perfekte Wrestler ist. Aber in Japan als MainEventer darf er jetzt erstmal "säubern" zurecht!"
Rating: 10.0
Sentiment: 0.16547619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Hunter Dunnwrote on 14.08.2016:[10.0] "I gave him a 10 a while back and didn't comment but now I need to comment. This man will go down as possibly the greatest in ring performer of all time. His ring work, selling, timing, execution, psychology is all done perfect and makes every match special. After G1 26, if you arr giving this man under an 8 you need to reevaluate your decision to be a wrestling fan. I don't see him as any less than a 10"
Rating: 10.0
Sentiment: 0.290702947845805
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Mathieu Virtuosowrote on 14.08.2016:[10.0] "G1 solidified him as not only one of the best workers in the entire world, but also one of the best story-tellers."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Luv all wrestlingwrote on 07.08.2016:[9.0] "Kenny Omega is very talented and entertaining, he can consistently have great matches, but his character work is too cartoony to warrant the perfect score as it makes it so he will never look like a serious opponet, and this has also hurt bullet clubls value a lot."
Rating: 9.0
Sentiment: 0.5211111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Randomuser12345wrote on 28.06.2016:[8.0] "Kenny Omega might be a bit over the top with his idea of a bad guy, but holy shit can he go in the ring. Incredible athletic, incredible strong, he can put on an excellent match with any style of wrestler in the world. He really is the complete package, and never fails to entertain. He makes wrestling fun, which is what it's all about."
Rating: 8.0
Sentiment: 0.3348484848484849
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Mirajane Strauss Fanwrote on 15.05.2016:[10.0] "Kenny Omega is an eminent entity in modern Professional Wrestling.  After voluntarily cessating his relationship with the World Wrestling Entertainment automaton, Omega made himself known to Millennials around the world with an outrageous Youtube video cum audition for Dramatic Dream Team in Japan.  Since then, 'Omegaman' has corralled the accolades readily: engaging in a fun and acclaimed feud with Kota Ibushi, changing his character radically to dominate the New Japan Pro Wrestling Junior Heavyweight Division and finally besting Shinsuke Nakamura and Hiroshi Tanahashi in a one-way journey to the upper echelon.  With frequent references to video games and even Katy Perry, Omega might seem to be a true-blue comedic performer at face-value.  In reality, he is a wonderful wrestling psychologist and is versatile enough to portray a plethora of roles.  "Bullet Club is 4-4-4-4 Life, except for AJ Styles, " - that proclamation is far from ostentatious thanks to one Kenny Omega."
Rating: 10.0
Sentiment: 0.07878787878787878
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Mizzle Assault Antwrote on 14.05.2016:[6.0] "Omega is very hit or miss for me. Sometimes his weirdness is appealing but sometimes it doesn't come across very well for me. I also find his matches to be a mixed bag. I will give him some credit but I think he is being overrated at the moment by many."
Rating: 6.0
Sentiment: 0.27999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Alex Maedawrote on 01.05.2016:[10.0] "Der schönste aktive Wrestler der Welt ist ein Kanadier! Aber das nur am Rande, Kenny Omega hat sich seinen Spot absolut verdient, er ist sehr charismatisch, weiß mit der Crowd zu spielen und kann gute bis sehr gute Matches abliefern. Er ist also ein gutes Gesamtpaket und hat trotzdem noch Raum zur Weiterentwicklung und mit seinen 30 Jahren hat er sicherlich noch das ein oder andere vor sich. UPDATE: Ganz vergessen, Kenny endlich aufzuwerten. Unglaublich vielseitig im Ring, kann jeden Stil mitgehen, vom Comedy Wrestler bis zum Leader des Top-Heel-Stables in einfach jeder Rolle überzeugend. Für mich neben Shinsuke Nakamura der derzeit charismatischte Worker der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BrentDelivinewrote on 12.03.2016:[10.0] "Spacemountain, if you're comparing Kenny Omega to Tama Tonga, you're doing something very wrong with your life and i advise you to stop it, there are people who love you and wish you'd make some right choices."
Rating: 10.0
Sentiment: 0.04523809523809522
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: PuroFanwrote on 22.02.2016:[8.0] "A more entertainer and comedy wrestler, hope he get a more serious now with the IWGP Intercontinental title."
Rating: 8.0
Sentiment: 0.22222222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Zedwrote on 19.02.2016:[9.0] "Ein Mann der eine ganze Menge kann, nicht nur im Ring. Skills sind vorhanden, Charisma auch. Und seine Comedyeinlagen unterhalten immer gut, aber auch die Ernsthaftigkeit fehlt ihm nicht. Er erinnert mich etwas an einen jüngeren Chris Jericho, der auch sehr Vielseitig zu gebrauchen war. Aufjedenfall wäre Kenny mal in der Zukunft ein guter mann für den US Mainstream."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Antimasterwrote on 16.02.2016:[10.0] "Hat sich mit dem Sieg gegen Tanahashi endgültig zu einem absoluten Top Star und Wachablöse von AJ Styles gemausert, und steht vollkommen zurecht im Main Event. Seine In-Ring Fähigkeiten sind großartig, egal ob High Flying, hammer Suplessen, brachiale Knee Strikes und Chops, verrückte Innovation (Hadouken, Chainsaw), starkes Selling urkomische Comedy (Overselling, Yoshihiko, STone Cold-Rock mit ACH, Matrix Spot mit Bryan Danielson, einfach nur göttlich). Dazu überquellendes Charisma und obendrein ein super sympathsicher und authentischer Typ. Kenny gehört im Moment in meine Top 10 der besten Worker überhaupt, und bekommt die völlig verdiente Höchstwertung."
Rating: 10.0
Sentiment: 0.33199999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: JuliTheCage87wrote on 19.01.2016:[10.0] "Zusammen mit Chuck Taylor und Colt Cabana wohl der größte Comedy-Wrestler aller Zeiten. Er hat den anderen beiden jedoch noch voraus, dass er ein besserer Wrestler mit herausragender Athletik ist. Vor allem in den letzten zwei Jahren hat er mir bei NJPW und PWG sehr gut gefallen und bei ihm muss man zugeben, dass er auch Mainstream-Potenzial hätte. UPDATE: Ein Jahr später, selbe Wertung. Ich kann gar nicht aufhören mit "fanboyen" bei ihm. Auch als ernstzunehmender Heel einer der besten seines Fachs. Wow."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Delirious434wrote on 19.01.2016:[10.0] "Kenny Omega is THE Total Package of New Japan Pro Wrestlling, he's an Awesome Wrestler, very talented, his Charisma is huge, his Mic Skills are amazing, and he's also a fun Face and a great Heel, I hope he wins the Intercontinental Championship, even tho is not against Nakamura which could be a 5 Star Match without a doubt, I still looking forward for him becoming not only the IC Champ, but the new leader of Bullet Club?"
Rating: 10.0
Sentiment: 0.4193939393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: RainmakerF7wrote on 02.10.2015:[9.0] "Kenny is the man! Seriously, this guy is absolutely amazing and probably one of the best Jr. Heavyweights in the world right now."
Rating: 9.0
Sentiment: 0.38809523809523816
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: eldenaaaaawrote on 23.03.2015:[10.0] "Kenny Omega should be honorary Japanese by now. He’s been focused there for nearly six years, and in 2013-14, he has had held the following titles for DDT: KO-D Openweight Championship, DDT Extreme Division Championship, KO-D 6-Man Tag Team Championship, KO-D Tag Team Championship."
Rating: 10.0
Sentiment: -0.006249999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: GoToSleepwrote on 11.01.2015:[8.0] "Ein klasse Entertainer, der sowohl den Heel als auch den Face stark spielen kann. Allerdings finde ich das er manchmal ein bisschen zu viel macht und es dann übertreibt mit seiner Art. Im Ring gehört Omega zu den besten Technikern der Welt, was man vor allem beim PWG BOLA Event sehen konnte. Mal schauen ob er in Japan auch soviel zeigen kann und ob er irgendwann mal in die Heavyweight Division geht. Zu wünschen wäre es ihm."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Balls Balognawrote on 05.12.2014:[10.0] "Possibly the most entertaining wrestler of all time. This guy has it all... And enough personality for any major company's entire roster. Kenny Omega IS WRESTLING!"
Rating: 10.0
Sentiment: 0.17708333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ThySmithywrote on 19.10.2014:[9.0] "First time watching Kenny wrestle was for PWG BOLA 2014 and I can't believe I have never seen this guy before properly! He is an amazing Wrestler and the dude fucking kills it , Also His move Croyt's Wrath is my new favorite move. OMEGA! OMEGA! OMEGA!"
Rating: 9.0
Sentiment: 0.27258522727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: bryan316wrote on 11.10.2014:[10.0] "The dude had a 5 star match with a blow up doll that alone is why Kenny Omega is a brillaint wrestler. He has great charisma, he's entertaining and he can literally have a great match with anyone or anything."
Rating: 10.0
Sentiment: 0.7000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: apc24wrote on 17.12.2013:[9.0] "Very fun to watch and a very explosive wrestler. His time in Japan had made him one of my most favorite Gaijin wrestlers. He can be a little whacky or gimmicky at times though. HADOUKEN!"
Rating: 9.0
Sentiment: 0.19208333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: 3Mendouswrote on 14.07.2013:[10.0] "A true total package: great on the microphone, great in the ring and every crowd around the world loves him."
Rating: 10.0
Sentiment: 0.4875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Erico Moraeswrote on 01.07.2013:[9.0] "Awesome wrestler, sells every move really well and is a great entertainer. I wish he had more chances in the US."
Rating: 9.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Kenshin Uesugiwrote on 07.02.2013:[8.0] "Mir fällt es schwer Omega nicht zu mögen den sein Charakter ist wahrlich unterhaltsam und seine Ausstrahlung überlebensgroß. Beherrscht mehr als man ihm zu traut und ist sogar noch sauberer als sein Kumpel Ibushi, ist aber zum Teil auch selber „Schuld“ das man ihm auf seine Comedy reduziert. Doch wie er bewiesen hat kann er auch anders und ist nicht nur gut darin, sondern begeistert das Publikum damit, siehe sein Run bei AJPW. Sollte man es ihm nun positiv anrechen das er deutlich vielseitiger ist und er „besser“ ist als er sich selbst präsentiert? Oder ist das gerade das Schlimme an ihm das er sich zu fest gefahren hat in seiner Ecke und sie bis zum Nerven töten abspult? Seinen Charme kann man sich schlecht entziehen, daher tendiere ich eher zum ersten Punkt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Alex Riley 4 wwe championwrote on 01.01.2013:[10.0] "Oh, ich hab selten so einen unterhaltsamen und talentierten Performer in der Wrestling Unterhaltung gesehen! Sein Kame-hame-ha ist einfach nur die Krönung eines echt starken Movesets. Ich hoffe er macht weiter, wie bisher. Er ist echt ein Großer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: OmegaIbushiwrote on 29.10.2012:[10.0] "Kenny Omega is a genius.  He has a great technique and all his match are high quality and never boring."
Rating: 10.0
Sentiment: 0.48666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Johnny Divinewrote on 24.01.2012:[9.0] "Au mann, den würde ich ja echt mal gerne in der WWE sehen. Ich weiß zwar nicht wie er sich da schlagen würde, aber ich gönne ihm allein schon, dass er einen fetten Vertrag bekommt. Können und Austrahlung hat er, originell ist er auch. Ich sehe eigentlich gute Chancen für ihn. Vielleicht wird das ja was mit der WWE, mit neunjährigen Kids kann er ja umgehen ;-)"
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ShakDragoonwrote on 04.10.2011:[8.0] "Richtig guter Techniker, der in der USA, wie auch in Japan immer überzeugen konnte. Ich freue mich, dass die internationale Wrestlingwelt dies auch anerkennt und bin gespannt, was bei ihm noch drin ist. Besonders bei NJPW würde ich ihn gern noch häufiger sehen. Gerne auch im Team mit Kota Ibushi."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Sandmannwrote on 26.08.2011:[7.0] "Kenny Omega ist sicherlich recht talentiert im Ring. Für meinen Geschmack hat der gute Kenny aber einen sehr gewöhnungsbedürftigen Stil drauf. Sein High Flying Repertoire kominiert mit den Videospiel-Moves ist irgendwie so gar nicht mein Fall. Aber der Mann ist over und wie gesagt auch nicht wirklich schlecht im Ring. Von daher ist ne gute 3 wohl ok."
Rating: 7.0
Sentiment: 0.33
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Phoenix Downwrote on 18.07.2011:[7.0] "Ganz eigener Wrestling Typ der manchmal mit seinen Hadouken Moves an der Grenze zu Nervtöterei ist mich aber fast immer überzeugt und unterhält. Stark im Team mit Ibushi."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Damon Strikerwrote on 16.11.2010:[9.0] "Hebt sich mit seinem Look und Stil positiv von der Masse ab und ist dabei auch noch ein äußerst talentierter und spektakulärer Wrestler! Einzel als auch im Team mit Ibushi. Wird mal ein ganz Großer!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: MaKnowrote on 21.08.2010:[6.0] "Als ich ihn anfangs bei DDT gesehen habe, hat er mich noch sehr überzeugt. Mittlerweile langweilt er mich allerdings ein wenig und vor allem die Comedyelemente in seinen Kämpfen nerven irgendwann nur noch. Ich werde ihn trotzdem weiter im Auge behalten und bin gespannt, wie er sich noch in den kommenden Jahren entwickelt."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: The Crown Jewelwrote on 11.08.2010:[8.0] "Hat eine Ausstrahlung wie man sie nur selten im Indybereich findet. Im Ring ist er auch mit dem nötigen Talent ausgestattet, so dass man in Zukunft wohl noch viel von ihm hören wird."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: RickRollwrote on 14.04.2010:[8.0] "Extrem Unterhaltsamer Wrestler, von dem man sich eine scheibe abschneiden kann. Manchmal ZU VIEL Comedy in eher nicht sehr comedylastigen Ligen, jedoch auch im Ring gut. Wer weiß, evtl nach den Match gegen YOSHIHIKO wirds hier ne 9 geben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Obermackerwrote on 11.01.2010:[6.0] "Zwar sehr bemüht, erzeugt überhaupt keine Reaktionen beim Publikum."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: downtown2wrote on 16.12.2009:[5.0] "Der Hype um seine Person nimmt Formen an, die ich als nüchterner Betrachter nicht mehr unterstützen kann. Er ist eine besondere Erscheinung im Ring, aber auch sehr klein und wirkt dadurch einfach etwas dürr. Seine Interviews sind oft eher peinlich oder unbeholfen. Da kann noch sehr viel draus werden, aber meine Meinung wird sich vorerst nicht überschlagen."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Mick Funkwrote on 07.12.2009:[6.0] "Zuviel Comedy und zuviel Nonsens. Im Grunde gar nicht mein Fall, objektiv muss man aber sagen, dass er schon einiges drauf hat im Ring und auch die nötige Portion Ausstrahlung für eine Mainstreamkarriere mitbringt. Abwarten..."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: DJ MaSchwrote on 26.11.2009:[7.0] "Omega ist ein Mann mit großen Potenzial. Charima hat er alle mal und auch im Ring ist er kein schlechter, doch der letzte Funke will bei mir noch nicht überspringen. Vielleicht tut er das ja jetzt bei seinem PWG World Title Run."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Eddiewrote on 24.11.2009:[7.0] "Jetzt da er einen "großen" Titel hat, ist es für mich Zeit, Stellung zu beziehen. Er ist einer derjenigen, die bei ROH on HDNet immer überzeugen, und den ich wirklich gerne im Ring sehe, aber ich hab eben leider zu wenig gesehen, bis dato 7 Punkte."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: T-Waynewrote on 14.07.2009:[9.0] "Zeigt vorallem im Team mit Ibushi eine gute bis sehr gute Leistung."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: darksaber999wrote on 07.10.2008:[10.0] "Rüttelt stark an Sitocis Status als mein Lieblingswrestler! Im Ring wirklich gut, toller athletischer Stil. Neigt zum non-sense, was ich aber idR mag. Und außerhalb des Ringes unglaublich sympatisch!"
Rating: 10.0
Sentiment: -0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: A-marwrote on 04.10.2008:[9.0] "Super Wrestler, mit super Techniken. Den Namen King of Fallls......... Trägt er zurecht!"
Rating: 9.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: STRIGGAwrote on 04.10.2008:[8.0] "Kenny Omega hat vieles. Er hat Charisma, er hat Können und er hat das gewisse etwas, was ihn aus der Masse der Independent Wrestler herausragen lässt. Ein Mann, von dem man definitiv noch mehr hören wird."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: Tomkowrote on 04.10.2008:[8.0] "Ich habe ihn gestern schon Live gesehen, wo er schöne Aktionen gebracht hat, aber mich nicht vollkommen überzeugt hat. Die Sachen, die ich bis jetzt auf Videos gesehen habe, waren schon klasse und ich hoffe, dass ich ihn demnächst nochmal live erleben darf!"
Rating: 8.0
Sentiment: 0.15340909090909088
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: ecw foreverwrote on 18.09.2008:[7.0] "Verdammt talentiert, ausserhalb des Rings ein Gott."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2906&gimmick=Kenny+Omega
Comment: BenZenwrote on 17.09.2008:[9.0] "Kenny Omega ist mein neuer Held. Absolut charismatisch, technisch versiert und dazu noch in Matches außerhalb des Rings sowas von unterhaltsam. Der Junge hat noch einiges vor sich und auch seine ersten Auftritte bei Ring Of Honor werden sicherlich nicht die letzten sein. Ich freue mich auf jedes weitere Match mit ihm."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: chachuonlinewrote on 23.01.2025:[6.0] "Lou Thesz is recognized as a pivotal figure in professional wrestling history, an although his in-ring style was very influential, his individual performances to be average compared to todays athletes. A very good and vital worker but boring for my tastes. Ultimately, Theszs contributions transcend his individual performances, making him a foundational figure in the evolution of the sport."
Rating: 6.0
Sentiment: 0.06600000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Anas Kingwrote on 23.01.2025:[4.0] "I think he's an influential figure on the world of pro wrestling at least in his time. However, I just can't look past the fact that he's so behind today's wrestlers when it comes to in ring work, athleticism, and psychology. Today's wrestlers are just in a different league compared to him. He wasn't a bad wrestler by any strech. I'd say he's adequate. His mic skills weren't that good either. I think he did resonate with old classic wrestling fans. But that style just isn't for me. But I'm not gonna give him a bad rating for that because while I do think he wasn't that good, He was good enough for his time."
Rating: 4.0
Sentiment: 0.02692307692307693
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: SZ1989wrote on 02.04.2024:[10.0] "One of the best to ever do it. Lou Thesz was classically trained in catch wrestling and was able to translate those abilities quite well to a pro-wrestling setting. Along with Karl Gotch and Billy Robinson, he had a tremendous impact on the development of Japanese wrestling and his matches with Rikidozan were probably one of the reasons why wrestling in Japan went from focusing on brawls to more technical bouts, which would later inspire the likes of Antonio Inoki. He influenced the American scene in a variety of ways and had matches with Edouard Carpentier that were incredibly influential in how North American wrestling evolved. An all-time great and a real thoroughbred as a wrestler and a person."
Rating: 10.0
Sentiment: 0.32564102564102565
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Wrestling Foreverwrote on 24.01.2024:[10.0] "Eine absolute Legende. Sein Vater war Ringer und brachte ihm schon in jungen Jahre viele Griffe und Würfe bei. Den Rekord als jüngster World Champion müsste er immer noch halten. War auch immer wieder in seiner aktiven Zeit Special Ref. Er gilt auch als Erfinder der Powerbomb die durch einen missglückten Piledriver entstand. Wer ihm die verpasste oder wie das passierte ist mir nicht bekannt. Angeblich war er seine ganze Wrestling Karriere Babyface und selbst im hohen Alter war er noch stark. Habe nun einige Geschichte über ihn erfahren es gibt unzählige über ihn. Ein Mann der so wichtig für das Wrestling war. Wäre schön wenn das mehr Fans zu schätzen wüssten."
Rating: 10.0
Sentiment: 0.11904761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: CDProsProwrote on 17.01.2024:[10.0] "Named at birth, Aloysius Martin Thesz bridged his life into the art of modern technical pro wrestling and with universal rejoice for his career that began in the 1930s in Collinsville, Illinois USA & ended in 1990 officially in Hamamatsu, Shizuoka, Japan. Excellent world champion calibre grappler to becoming a larger than life, hall of famer calibre wrestler!"
Rating: 10.0
Sentiment: 0.27499999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: ScoobyStu82wrote on 02.01.2024:"Quite literally the greatest wrestler of all time. Statistically the greatest wrestler to ever hold a major championship, with 40% of his incredibly long title reign as NWA Champion being taken up by title defences - more than anybody else to hold any major championship (yes, I did actually do the math on this)"
Rating: No rating found
Sentiment: 0.3678571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Ozzywrote on 16.10.2023:[10.0] "I have no clue how I didnt do Lou sooner. The absolute greatest wrestler in history. You can take into consideration everything going on in the world of wrestling during the 70s, 90s, early 2000s, now, even back in the 80s with figures like Bret Hart and HBK getting their starts, Hulk Hogan and Flair bringing new life to the sport, even back with Gorgeous George and Frank Gotch, none of them compare to the level of pure skill, and class of Lou Thesz. This man raised the entire bar of what professional wresting can and should be with a single hand in a way that hasnt been matched since or by any others than the Gold Dust Trio. Absolutely perfect. Thank you Lou."
Rating: 10.0
Sentiment: 0.28160173160173163
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: InsertFunnyNameHerewrote on 21.08.2023:[10.0] "A wrestling machine, an Olympic level shooter and the last man in the history of pro wrestling Id want to mess with (and that includes Lesnar and Haku) Lou Thesz is one of the most influential wrestlers of all time and the greatest technician to ever grace the ring. The guy has provided us so many moves and is a pioneer of Shoot Style."
Rating: 10.0
Sentiment: 0.365
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Khalid Acewrote on 16.07.2023:[7.0] "Lou Thesz is very important figure in professional wrestling and he was good but I believe he's a 7 at best."
Rating: 7.0
Sentiment: 0.58
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Neon Aussiewrote on 02.07.2023:[10.0] "Mount Rushmore of Professional Wrestling-level GOAT. In the top 5 of all-time no doubt. 'Nuff said..."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: TooDarkMarkwrote on 24.01.2023:[10.0] "I only know him from Youtube, VHS, magazines, and his biography. All of which make him one of my favorite wrestlers of all time. I can watch any of his 1950's matches, and just marvel at how smart he was. How well he worked the crowd. How utterly in control he was. He's on my Mount Rushmore certainly."
Rating: 10.0
Sentiment: 0.18571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Conquistador37wrote on 29.11.2022:[10.0] "You can not deny how rad it is seeing him POWERBOMB people in black & white. Lou Thesz was possibly THE most important thing to ever happen to professional wrestling in regards to the bell to bell stuff. While he was 100% a trailblazing, innovative architect of the sport, it might help to give him some somewhat modern comparisons: It's like this crazy Bret Hart/Vader hybrid before color television was even a conversation. WAY ahead of the curve. It's a CRIME that more footage of him doesn't exist. The biggest flaw we have here is almost no one was remotely close to his level, so you get a bulk of "Lou just absolutely destroying the poor guy"."
Rating: 10.0
Sentiment: 0.056410256410256425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: MainEventMasterwrote on 29.11.2022:[10.0] "Revolutionary wrestler, anything you see in pro wrestling nowadays, he has something to do with it, he just GOT the business."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Makai Clubwrote on 29.05.2022:[10.0] "What else is there to say? If there is a Mount Rushmore, I believe that Lou Thesz belongs there. In fact, he'd be the first name on it for me. His legacy as the last hooker, in a career that span from the 30s to the 80s (90s if you want to be anal about it), is legendary. And, unlike most of his peers, it was worth its name in gold. He was a true icon, a fantastic worker by the tons of matches we have in existence and a big draw for decades. So big that he was asked to hold the title while semi-retired. While they tried, the NWA never truly replaced him in terms of what he did for them. His longevity, impact and skill will forever be unmatched"
Rating: 10.0
Sentiment: 0.3111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: No Onewrote on 21.10.2021:[10.0] "The single most important professional wrestler to ever exist. May be the #1 greatest professional wrestler of all time (in contention with Ric Flair). One of the greatest in-ring performers of all time. One of the greatest World Heavyweight Champions in pro wrestling history. Most likely is the greatest NWA World Heavyweight Champion of all time (in contention with Ric Flair). Set many untouchable records. Achieved INSANE career longevity. Innovated moves that are still being used to this very day: The Powerbomb, STF, Backdrop Driver, & the move that bears his own name, The Lou Thesz Press. Was the original "Wrestling Machine" who was well known for wrestling incredibly long matches that was sometimes spanned over 2 hours. Feuds with Buddy Rogers, Rikidozan, Everett Marshall, & "Wild" Bill Longson are legendary. Wrestled and defeated nearly every wrestler that existed between the 1930's-1970's. One of the main guys that helped build Japanese Wrestling into the international sensation that it became and still is to this very day. Was one of the top draws in pro wrestling between the 1930's-1960's. Is universally respected around the world, and his name carries MASSIVE weight. One of the greatest workhorses in pro wrestling history. Had the aura of being the "ACE". He WAS the NWA. Held championships around the world. Is a serious measuring stick for true greatness in professional wrestling. RIP to the legendary Lou Thesz."
Rating: 10.0
Sentiment: 0.32302827380952376
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Jaden 101 Kenwrote on 25.03.2021:[10.0] "10 out of 10 for me, he's a legend started, wrestling in 1932 and retired in 1990, he is one of many icons that have stepped into the ring and I want to thank him."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: rainmakerpunkwrote on 07.11.2020:[10.0] "He's a fantastic wrestler, his matches have actually aged very well, he was easily the best wrestler of his era, in-ring master whose work will always be great, a master mat technician, he was also a great champion and was the face of an era, he's one of the best ever and anything under a 10 would be disrespectful"
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Lunacorvawrote on 20.09.2020:"I'm not putting a rating here because this is solely in response to SchoolgirlQ, rather than a statement of my opinion on the wrestler. But regarding my so-called "Quip", as it were. That was not a Quip, it was a genuine question. Due to the number of people (Yourself NOT included, for the record, I think you gave solid reasons for your rating) giving ratings with zero context or reasoning beyond "He's a legend", or outright saying they hadn't watched him."
Rating: No rating found
Sentiment: 0.09166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Jetlagwrote on 28.08.2020:[7.0] "Legendärer Wrestler, der in vielen Matches jedoch auffällig oft die gleichen Moves abspulte. Allein das alte "Ich dränge meinen Gegner ins Seil und verpasse ihm einen Cheapshot"-Spiel konnte Lou wirklich stundenlang abspielen :) Da gab es damals wirklich aufregendere Wrestler. Dennoch machte Thesz seine Sache mehr als solide und hie und da sprangen auch High-End-Leistungen, etwa ein sehr guter Kampf gegen Inoki in den 70ern heraus."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: LandonRyanWyattwrote on 03.02.2019:[10.0] "A truly iconic figure in the business. Thesz, was a true technician that could go two hours most nights and adapt to anyone else's in ring style. Lou Thesz is in the top 10 all time, anywhere."
Rating: 10.0
Sentiment: 0.4625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: JEK 1991wrote on 30.10.2018:[10.0] "Excellent wrestler! A legend for sure. You wouldn't see a wrestler like him anymore.  His wrestling style and moves were excellent and natural. He influenced many wrestlers over the years. It was impressive of him to wrestle at he age of 74. I wish I could have watch him on TV or live back then."
Rating: 10.0
Sentiment: 0.5295454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: RatingsMachinewrote on 12.10.2018:[10.0] "Lou Thesz is a genuine legend of the business, as nailed on a Hall of Famer as you can possibly get, and there is no credible reason for anyone to give him any rating other than a 10."
Rating: 10.0
Sentiment: 0.018750000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Steamboat2511wrote on 02.10.2018:[8.0] "Lou Thesz kenne ich nur von alten Videos als wahre Legende und berühmten Hooker des Wrestlings. Eine faire Bewertung muss die unterschiedlichen Stile und Anforderungen im Bereich Entertainment zwischen seiner und der Jetzt-Zeit anrechnen. Hierfür hat er bereits, so weit heute noch ersichtlich, in den 70ern bemerkenswerte Matches abgeliefert. Sein Wert für die Geschichte des Wrestlings scheint mir überdies kaum überzubewerten zu sein."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Mantafahrerwrote on 24.04.2016:[10.0] "Heute vor 100 Jahren wurde dieser Mann geboren... und seit 100 Jahren gab es niemanden mehr, der das Grundkonzept des Pro-Wrestlings in so einer Reinheit, Professionalität und Ausdauer verkörperte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Super Mastodonwrote on 06.03.2016:[10.0] "In terms of being just a straight up wrestler, no gimmicks or flashy attires then Lou Thesz would easily be No. 1! Truly the greatest wrestler in his era and is one of the greatest of all time! An innovator at that as well and widely respected by his peers. Today's generation should definitely know more about him, and even for a man who was in his late 50's he could wrestle great and put over the young talents at the time! RIP."
Rating: 10.0
Sentiment: 0.23229166666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: ShooterMcShootwrote on 04.01.2016:[10.0] "How can you rate Lou Thesz any less than a ten? Going back and watching his matches, look at how smooth he moves in the ring and really look at the way he was so good at building drama, especially his matches with Rocca. He was certainly the greatest worker of his time."
Rating: 10.0
Sentiment: 0.2608465608465608
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Basket Casewrote on 28.01.2014:[10.0] "Einer der ganz großen, frühen Legenden dieses Sports. Weniger als die volle Punktzahl geht hier nicht!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Kitanoyamawrote on 05.08.2012:[10.0] "Eine Legende welche im Ring wesentlich dafür mitverantwortlich war, das Wrestling das wurde, was es heute ist. Er war noch ein echter Kämpfer der auch ohne großes Entertaimentaufgeblase was reißen konnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: MaikBaaderwrote on 11.09.2011:[10.0] "Eine unglaubliche Legende, den eigentlich jeder Wrestlingfan kennen MUSS. Ein unglaublicher Kämpfer, dessen Wrestlingmatches Ich mir heute noch in 2011 angucke. Erfinder von wirklich vielen Moves und eine unglaubliche Legende. Etwas als 10 Punkte kommt bei mir gar nicht in die Tüte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Erasedwrote on 30.05.2010:[9.0] "Die wenigen Matches, die es von ihm zu sehen gibt, sind alle wirklich interessant und empfehlenswert! Auch hoch anrechnen muss man ihm, dass er mit Mitte 70 noch ein recht ordentliches Match abgeliefert hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Showstopper45wrote on 20.03.2010:[8.0] "Absolute Legende und wenn ich mir vorstelle wie lange er gewrestlet hat dann verdient er meinen Respekt. Ganz klar einer der ganz Großen Legenden die dieses Buisness je gesehen hat."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: 108 Sternewrote on 25.09.2009:[9.0] "Eine der ganz großen Legenden; und selbst im hohen Alter von 74 Jahren hat er noch ein besseres Match abgeliefert als manch ein anderer mit 50."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Parvexwrote on 05.08.2009:[10.0] "Bester Wrestler aller Zeiten, was ich von ihm gesehen habe war immer topnotch. Auch im Alter hat er noch teils großartige Matches auf die Beine gestellt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Perry Coxwrote on 31.05.2008:[10.0] "Auch wenn ich erst 14 bin (und ihn deshalb nie im Ring gesehen habe), muss ich auf Grund der Titelregentschaften und allen weiteren Infos klare 10 Punkte vergeben!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Brahma Bullwrote on 04.05.2008:[10.0] "Habe ihn natürlich nie im Ring erlebt aber viele bezeichnen ihn als den größten Wrestling Champion überhaupt. Auf Grund dieses Status bekommt er klare 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: LexLuger4everwrote on 24.02.2008:[10.0] "Eine der ersten frühen Legenden dieses Sports und auch wenn es schon ein halbes Jahrhundert her ist, ist Lou Thesz ein Name, den fast jeder kennt, der ein bisschen Ahnung hat! Das sagt eigentlich alles über über ihn aus!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Rated R Champwrote on 12.02.2008:[10.0] "Habe von ihm im Ring nichts mehr miterlebt, aber definitiv eine der größten Legenden des Wrestlings."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: real americanwrote on 27.07.2007:[10.0] "Der beste Wrestler seiner Zeit der das Wrestling prägte und dem das Business heute viel zu verdanken hat. Die Thesz Press gehört praktisch zum Standardarsenal eines Wrestlers."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=930&gimmick=Lou+Thesz
Comment: Nachtfalterwrote on 24.06.2007:[10.0] "Ich kenne Tapes aus den späten 70ern und den 80ern, die seine wahre Klasse zu seiner besten Zeit wohl nicht mal ansatzweise erahnen lassen. Im direkten Gegensatz zu Matt vergebe ich meine Bewertungen aber eben in allererster Linie nach der Bedeutung für das Wrestling und deswegen bekommt das Aushängeschild der NWA natürlich 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: dhruboezitwrote on 26.01.2025:[10.0] "Among the greatest professional wrestlers of all time. If not THE BEST. Prolific amateur wrestler and an Olympic gold medalist - its god given talent. Kurt Angle is an icon and an inspiration."
Rating: 10.0
Sentiment: 0.4625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Big R3d Mach1n3wrote on 19.01.2025:[10.0] "An actual Olympic Gold Medal winner and a great wrestling talent in the Attitude Era. He was great when serious and the best when comedic."
Rating: 10.0
Sentiment: 0.37777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TWBwrote on 08.01.2025:"Kurt usually doesn't get mentioned enough about one of the WWE goats, but this man belongs on the Mt Rushmore of wrestling. He is absolutely one of the best technical wrestlers ever. I feel a lot of fans missed his TNA run because of them being WWE diehards, but Kurt really is the king of the mountain."
Rating: No rating found
Sentiment: 0.19166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MEDaminewrote on 07.01.2025:[10.0] "He was the best wrestler in the world for a long time, and it makes sense thanks to his insane ring skills, other than that, he was also very entertaining with his character work and mic skills, he has a lot of unforgettable moments, he's one of the best ever, it's true, it's damn true"
Rating: 10.0
Sentiment: 0.3175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: AceHagannwrote on 26.11.2024:[10.0] "An amazing performer from day one. Consistently working masterclasses of wrestling. Extremely in tune with crowds. Funny, menacing, Kurt could make it all work. As deserving of gold in professional wrestling as he was in the Olympics."
Rating: 10.0
Sentiment: 0.09642857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: crs285wrote on 24.11.2024:[10.0] "Honestly someone who was just built for pro wrestling. His in ring action in the early 2000s was one of the best we have seen. He could play characters well and always got a crowd to react whether it was cheering, booing or laughing. He could speak on the mic and brought such intensity. Was a star everywhere he wrestled."
Rating: 10.0
Sentiment: 0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: benny5bellyswrote on 28.10.2024:[8.0] "Find me a man who has more good matches while completely and utterly as off their tits as Angle. What a guy. Kurt was cracking, he has got the range to play a whole bunch of different characters while remaining true to himself, he can be slotted anywhere on the card and deliver."
Rating: 8.0
Sentiment: 0.2642857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: wrestlingswiftiewrote on 24.10.2024:[10.0] "Believable background, one of the best when it comes to being technically sound, and very versatile in what he can do with his character. Honestly, I don't know what you can say Kurt Angle is missing"
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wrestlingfan0808wrote on 14.10.2024:[10.0] "One of my goats. I hate that Kurt said he doesnt belong in some of these all time convos because in his words he didnt wrestle long enough for a wrestling company but fuck all that. He is one of wrestlings goats. Point blank period. One the most complete wrestlers ever. A generational talent and then some"
Rating: 10.0
Sentiment: -0.09285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: JackBurtonsTruckwrote on 14.10.2024:[10.0] "Kurt Angle for me is the greatest in ring performer of all time. He was incapable of having a bad match."
Rating: 10.0
Sentiment: 0.15000000000000008
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Zak22wrote on 09.10.2024:[10.0] "Probably the greatest technical wrestler of all time and one of the most intense, work-rate wrestlers ever. Kurt had lots of great matches (although some of his so-called classics don't hit for me at all). Angle after 2009 was very much a story of decline and fading away but it happens. A great wrestler, in my top 10, can see absolutely why some would have him as the GOAT, although he isn't for me."
Rating: 10.0
Sentiment: 0.47333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Nolan Greenwrote on 25.09.2024:[10.0] "The best WWE wrestler. By this I mean wrestlers who made their name in WWE. So someone like Bryan Danielson doesn't count since he came from the indies. Kurt Angle was the total package. He could walk, he could talk, he could grapple, he could carry you to a good match, he could put on a five star classic, he could go from goofy to serious in the blink of an eye, he could do it all. And this is only talking about WWE. Then he went to TNA and became a madman. They didn't call him Perc Angle for nothing. Flipping off the stage onto Abyss, Moonsaulting off a cage and slightly hitting Mr. Anderson, a backstage segment where he was looking for his cloths in his underwear and then came out and put someone in an ankle lock, putting Santa Claus in an ankle lock and making a kid cry, taking 70 pills a day... of. Ok, so his career wasn't perfect and his final match with BARON CORBIN was a dud, but still. He was an amazing talent. And he did everything with a broken neck. I pour a glass of milk and salute you Kurt."
Rating: 10.0
Sentiment: 0.2324404761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: maven loverwrote on 17.09.2024:[10.0] "Bar none one of the best things to ever happen to wrestling. From a prolific background in amateur wrestling, to doing great comedy work in WWE, to working a 40-minute match with Christian & Rhyno in TNA, to working in numerous Japanese promotions, Kurt Angle has probably forgotten more things about wrestling than I'll ever learn. His longevity despite his issues with vices & his seeming ability to face pain head-on are a testament to his insane toughness & commitment to the business. Kurt is bar none one of the most well-accomplished people in the industry, & he deserved better than to be strapped with that trash Corbin match on the way out."
Rating: 10.0
Sentiment: 0.205
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TMay95wrote on 14.09.2024:"Kurt Angle is probably the all-time greatest in-ring technician in the history of the business. His ability to tell a story and have a compelling match with pretty much everybody is truly amazing and how quickly he took to wrestling makes him a once in a generation talent"
Rating: No rating found
Sentiment: 0.44722222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jsbortswrote on 08.09.2024:[10.0] "Kurt Angle is an all time great and an incredibly important performer in North American wrestling history. He's not so much known for all his incredible matches as much as the incredibly high floor he had for each one of his contests. A 6 minute Kurt Angle match was a sight to behold just as much as his Wrestlemania matches. He truly had everything someone could have, but more than anything he had a believability in-ring that translated from his real success as a wrestler, and he was able to create a completely unique style. More than anything though, I've never seen anyone with the intensity during a wrestling match that Kurt was capable of. Truly 1 of 1."
Rating: 10.0
Sentiment: 0.3846428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: OldSchoolFan3098wrote on 06.09.2024:[10.0] "There are stars, there are superstars, and then there are the all-time greats. Kurt Angle is one of the very best to have ever stepped into a squared circle. From the moment he debuted, Angle embodied a rare combination of technical mastery, athleticism, and charisma that separated him from his peers. A legitimate Olympic gold medalist, his transition from amateur wrestling to professional wrestling was seamless, and he quickly became a fixture in main event scenes. What truly makes Kurt Angle special is how he excelled as both a heel and a babyface, often delivering top-tier performances no matter the role he was asked to play. One of Angle's most remarkable traits was his ability to elevate those around him. Whether facing legends like Shawn Michaels, Chris Benoit, or Brock Lesnar, or helping to shape the careers of newer stars like Samoa Joe and AJ Styles in TNA, Angle consistently delivered some of the greatest matches of all time. He didnt just hang with the besthe brought out the best in them. His matches werent just clinics in technical wrestling; they were emotionally charged bouts that left fans on the edge of their seats. Few performers in wrestling history have built a resume of classics spanning multiple eras, styles, and promotions like Angle did. What truly set Kurt apart was his versatility. He could be downright hilarious, famously donning a tiny cowboy hat or singing along with Stone Cold Steve Austin, but when the bell rang, there was no one more intense. His ability to switch between being an entertaining, comedic character and a fierce, no-nonsense competitor made him one of the most well-rounded performers in history. Fans believed in him whether he was an arrogant heel claiming to be the "best in the world" or the underdog babyface fighting against impossible odds. Beyond his natural talent and athleticism, Angle's passion for the business was undeniable. He worked tirelessly to improve, and even after his time in WWE, he carried that same work ethic to TNA, where he elevated the entire company to new heights. His matches with the likes of AJ Styles and Samoa Joe showcased that he still had it, even years into his career. Few wrestlers could maintain that level of performance while adapting to different styles and opponents across two major companies, but Angle did it with ease. Ultimately, Kurt Angle's legacy is one of excellence. Whether he was delivering classic bouts in WWE or redefining his career in TNA, Angle proved time and again that he was one of the greatest to ever do it. From his technical precision to his captivating promos, Kurt Angle was, and always will be, a once-in-a-lifetime performer who transcended the business and left an indelible mark on wrestling history."
Rating: 10.0
Sentiment: 0.22871444032158317
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SourDiesel97wrote on 29.08.2024:[10.0] "The most believable wrestler to ever step in the squared circle. I'm am eternally grateful that I was alive during his peak."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Chosen Onewrote on 28.08.2024:[10.0] "Ein Talent wie dieses erlebt man nur einmal im Leben. Ich meine, wie wahrscheinlich ist es, dass ein Kurt Angle als amerikanischer Ringer mit einem gebrochenen Genick olympisches Gold gewinnt und sich danach auch noch als geborener Pro Wrestler herausstellt? Nicht nur im Ring war er eine absolute Maschine, sondern hatte direkt bei seinem Debüt schon das gewisse Etwas an sich und sich in Rekordzeit einen Charakter aufgezogen, der einfach funktioniert hat. Er war überheblich, ohne es Böse zu meinen und wurde dafür gehasst. Er war auch, wie man auf englisch sagt, ein ziemlicher Dork, also schon irgendwie ein Nerd-/Geek-Typ, aber sobald die Glocke geläutet hat, eine riesige Gefahr. Diese Gegenseitigkeit war mega unterhaltsam. Aber er konnte auch gut den American Hero spielen und zwischen Face und Heel wechseln. Zudem war er sogar als leichter Psycho ziemlich gut - seine Rivalität mit Booker T war creepy aber auch so, so witzig. Kurt Angle konnte wrestlen, konnte reden, konnte interessante Charaktere spielen, konnte einfach alles. Es gibt sehr, sehr viele Legenden im Wrestling; so viele Leute, die alle auf ihre eigene Weise unglaublich waren, und doch möchte ich behaupten, und das so objektiv wie ich nur kann, dass Kurt Angle der größte Wrestler aller Zeiten ist."
Rating: 10.0
Sentiment: -0.09999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: D2ashwrote on 26.08.2024:[10.0] "the most successful guy, the most entertaining, the guy had everything to convince us and this guy proved to me everything I wished for, one of the guys who almost never disappointed me, the best performer, just disappointing for his departure to TNA but this guy remains for me one of the top3 best wrestlers of all time"
Rating: 10.0
Sentiment: 0.503125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Joe907wrote on 25.08.2024:[10.0] "The greatest wrestler on the mat. A super technician wrestling machine. Either the attitude era, Smackdown Six, or his TNA run, he was always entertaining and gave it his all in the ring. Kurt Angle is legendary."
Rating: 10.0
Sentiment: 0.7083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SavageTygerwrote on 20.08.2024:[10.0] "Kurt Angle is the greatest PURE wrestler in the history of professional wrestling obviously due to him winning a Gold Medal (with a broken freakin neck) in wrestling, he clears Bret Hart in charisma and personality, he's a better "sports entertainer" than Shawn Michaels, seamlessly able to fluctuate from face to heel, goofball to maniacal wrestling machine, and an endless list of great matches and classic moments. IMO Kurt Angle is the greatest of all time"
Rating: 10.0
Sentiment: 0.3442460317460318
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: lgccswrote on 12.08.2024:[10.0] "One of the best characters in WWE history, Kurt also had the unmitigated gall to be one of the company's most technically gifted. Hilarious and menacing, the quintessential example of a wrestler you hated as a kid and appreciated more and more as you got older. Iconic catchphrases, excellent moveset, the guy managed to make his supremely basic entrance theme into a spectacle. Generational."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Willie 19200wrote on 12.08.2024:[10.0] "A man who gave 110% in the ring no matter what company he was in and a legitimate Olympic Gold Medalist. He was an awesome wrestlers with great charisma and character work. His gold medal win was also amazing to see due to him also suffering from a broken neck at the time. Overall one of the greatest wrestlers and athletes in the world."
Rating: 10.0
Sentiment: 0.45937500000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: wadexerowrote on 08.08.2024:[10.0] "One of the few Wrestlers ever that deserves a 10. His work from WWE to TNA was always absolute top level and PERC Angle had a next level of craziness to him. From promo's to his fueds with Brock, Benoit, Cena, Styles all amazing pieces of work. Gifted is the only way I can describe not just Kurt but being around to witness his career as it happened."
Rating: 10.0
Sentiment: 0.2285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KobashiChopMewrote on 02.08.2024:[8.0] "Kurt is one of those guys that thrived with whatever he was doing. He was a great babyface. A great heel. He has unbelievable comedic timing and could really do whatever was asked of him. Had he retired a few years earlier, and not wrestled as long as he did I would rate him a 10. But unfortunately he did not, and because of this I cannot give him a 10. If I were to just rate his career from the start till 2009? Absolutely I would rate it a 10/10."
Rating: 8.0
Sentiment: 0.1111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheBigRed259wrote on 31.07.2024:[10.0] "They may call Bret Hart "The Best There Is. The Best There Was. And The Best There Ever Will Be" but as far as I'm concerned, Kurt Angle owns that title. He could do everything. As good a face as he was a heel. He could wrestle, he could brawl and he could go from performing comedy skits one week to being a terrifying psychopath the next."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Danewrote on 28.07.2024:[10.0] "10/10. He can pull off any form of wrestling and make it look good. Absolutely iconic comedic timing and he's also a pretty great wrestler. his TNA run is the best tna run of all time (guess the bar is low) but his WWE run is awesome as well. Easily my goat and top 10 on everyone's list."
Rating: 10.0
Sentiment: 0.575925925925926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: socioroxowrote on 26.07.2024:"Kurt Angle is the best in-ring performer of all time. His Olympic-level technical skills translate into captivating wrestling matches. Angle's versatility is unmatched; he excels as both a heel and a babyface, though his best work was as a heel. His comedic ability and charisma further elevate his status, providing unforgettable moments. For me, Kurt Angle stands out as the best professional wrestler ever, combining athletic excellence with compelling character work like no one else."
Rating: No rating found
Sentiment: 0.5222222222222221
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MatnificentMattwrote on 26.07.2024:[10.0] "Believable and incredible in the ring. On his worst days, he was great on the ring and on his best days, no one could hold a candle to Angle. The man was a machine and a total badass. It didnt matter who angle wrestled, he had fantastic matches with many different wrestlers."
Rating: 10.0
Sentiment: 0.34444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: brb75wrote on 07.07.2024:[10.0] "His background story and the way he plowed through while having the circumstances is nothing short of insane. Plus his technical quality which is unmatched by most people. One of the top 5 ever for me."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: devourblastwrote on 03.07.2024:[10.0] "One of the best all rounders ever. Could wrestle circles around basically everyone else, could talk, could be hysterical, could be intimidating. One of the most complete wrestlers ever. And he did it all with a broken freakin' neck."
Rating: 10.0
Sentiment: 0.039999999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LMCwrote on 23.06.2024:[10.0] "The complete package. Wrestles like a machine. Never had a bad match. Charisma machine! Shame wwe wasted his comeback run with a loss to Corbin at mania in a heatless boring match."
Rating: 10.0
Sentiment: -0.49374999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: blastermertwrote on 14.05.2024:[10.0] "Unmatched in-ring performance, and an absolute artist from his versatile wrestling skills to his top-notch meme quality comedy and Perc run brutality. He is like a russian nested doll, what more can we say? Even his comeback and his run with Ronda was spectacular. I hope he takes where he left off with Chad Gable again."
Rating: 10.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BruceMarcos524wrote on 13.05.2024:[10.0] "Kurt Angle may arguably be considered one of the greatest technical wrestlers in history. A total package of a wrestler and added bonus is being an Olympian. In-ring, he is one of the most refined performers ever, his skills are well-executed, and he is mean spirited in the ring. He has amazing matches with the likes of Brock Lesnar, Chris Benoit, Shawn Michaels, Samoa Joe, AJ Styles, etc. He is the type of guy that even fought the likes of someone bigger than him, you may still think he has a chance on beating them up. His WWE run in 1999-2006 is nothing short but incredible and memorable. His time in TNA showed the more aggressive side of Kurt Angle and willing to take risks like we never able to see him do in WWE. One of the best highlights is the moonsault from the top of the cage, one of the most picture-perfect visuals I've ever seen from Kurt. One of his biggest feats of strength is when he was able to Olympic Slam Big Show and Mark Henry despite their weight, and he could do it with ease. But one of the most unbelievable sides of Kurt especially his time in WWE is his incredible timing of comedy. The way he acted like a dork especially during his alliance with Austin will always be top WWE comedy in my eyes. Also, despite being a trooper and being the butt of the jokes, he remained respectable and reputable as he managed to redeem it when performing in the ring. Overall, a solid A+ performer and a well-rounded athlete that can do strongman, high-flying, brawler and catch-as-can wrestling. WWE's best homegrown talent."
Rating: 10.0
Sentiment: 0.34458333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: 2pt0EcoBoostFusionwrote on 30.04.2024:[10.0] "Kurt Angle is one of the best to ever grace a professional wrestling ring. Chances are, if you were a wrestler and had a bad match with Angle, you most likely weren't a good wrestler because many wrestlers have had their best match with him. Kurt Angle became a pro wrestler following his successful Olympic career and everything went beyond well for him, he made himself a mainstay in WWE's division in the early 2000s, had some good comedic moments within those years, and eventually went to TNA and had a top 5 career there putting on banger matches after banger matches. Kurt Angle returned to WWE in 2017 and was a decent General Manager for some time but eventually, they went the route of having Angle put over Baron Corbin in Angle's retirement match and although I wasn't against it at the time, it turned out to be a joke after a few years. There are many copycat gimmicks of Kurt Angle in wrestling like Chad Gable and Gable Steveson, but they can't ever lace up Kurt Angle's boots even on Kurt's worst day."
Rating: 10.0
Sentiment: 0.2592592592592593
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: JustAWrestlingFanwrote on 22.04.2024:[10.0] "What is there to say that has not already been said? Simply one of the greatest of all time. He is legendary in-ring. He is also extremely versatile, being able to go from a masterful comedy goof one moment, to being a wrestling machine that can main event any show in a matter of seconds."
Rating: 10.0
Sentiment: 0.5059523809523809
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MarkMcMarkingtonwrote on 20.04.2024:"The most versatile performer EVER. Amazing matches? Check. Great promos? Check. Can be a heel or babyface? Check. Can be used as a comedy character but still be taken seriously in the ring? Check. Hes got it all. Kurt is one of the few guys I can think of that is simultaneously one of the greatest in ring guys of all time and one of the greatest promo guys too. Very underrated on the stick. I cant put him over enough. 10/10 wrestler AND entertainer."
Rating: No rating found
Sentiment: 0.39629629629629637
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Zaidwrote on 17.04.2024:[10.0] "One of the greatest wrestlers to ever step foot in the ring. Not only was he the complete package, but he also gave us the best run in TNA history as Perc Angle. Bro was simply a wrestling machine. 10/10"
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TripleCrownwrote on 05.04.2024:[10.0] "Without a doubt one of the greatest wrestlers ever. I feel like he would've been remembered even more fondly if he had stuck around with WWE instead of leaving for TNA in 2006. Some of his best work was over there in TNA and not many fans got to see it (well, of course a lot did but the wider casual audience didn't.) Absolutely in the WWE Mount Rushmore, on his day there was nobody better than Kurt Angle. Perfect in-ring, perfect on the mic, perfect look, incredible charisma, the only downside was his substance abuse problems but I can't hold that against him given his issue with a broken neck. Even when he was slowing down a bit in the mid 2010s he could still 100% go and you knew he'd put on a fantastic match regardless as to who his opponent was. WWE did him so dirty though, the retirement match against Baron Corbin was an absolute joke and was just utterly disrespectful to a legend like Kurt Angle. Aside from that, you couldn't ask for a better wrestler, picked it up so quickly and just grew into an absolute megastar."
Rating: 10.0
Sentiment: 0.3103535353535354
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Dirty Diegowrote on 01.04.2024:[10.0] "Definitely in my top 10 , theirs not anything to critique when it comes to Kurt angle, year 2000 one of the biggest years in the wwf he won every title and the king of the ring in his rookie year, angle is the most legit athlete ever to go into pro wrestling, he picked up every aspect of the Buisness faster than anyone, he with bret hart probably the best in ring worker of all time and thats just one aspect of his many strengths, he is the total package for real sorry lex, he could do it all, he was one of the funniest ever wrestler when it came to promos, his character and charisma were up their with The rock and Stone cold, Kurt in my opinion had more 5 star matches than anyone in the wwe he got classic matches out of The rock, , Stone cold, undertaker and triple h as well as having all time classics against Brock leaner, Shawn Michaels, an styles, Samoa Joe, Benoit, Eddie g, and many others truly a very special talent"
Rating: 10.0
Sentiment: 0.12161172161172162
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: awesomedarkwrote on 30.03.2024:"Greatest of all time in my opinion. I think there are a lot of reasons to back this, but the main one is that he is a hell of an entertainer."
Rating: No rating found
Sentiment: 0.3888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ultravioletshiroiwrote on 22.03.2024:[10.0] "One of the best, if not the best American wrestlers ever. Kurt Angle is or was an elite at both amateur and professional wrestling, and his dedication to the sport of wrestling is almost if not totally unparalleled. A true top card draw who wrestled countless 5 star matches and he can connect with the crowd whether they're shouting "you suck" chants as a heel, or cheering him as a babyface. Kurt Angle is one of the few all time greats and his matches are never boring."
Rating: 10.0
Sentiment: 0.2727272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: mrwfxtremewrote on 16.03.2024:[10.0] "I've always been a huge fan of kurt angle work i had the chance to seen one of his first wwf matches live vs terry Taylor. in may 1999 in baltimore you could see the future star learn his craft angle matches vs chris benoit are so intense to seen angle could have a classic with anyone"
Rating: 10.0
Sentiment: 0.1921717171717172
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BungeeBombwrote on 15.03.2024:[10.0] "One of the goats of professional wrestling, I cant say anything about Kurt Angle that hasn't been said already great in ring and character worker that brought an level of intensity to his matches that few on this sport can do."
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TallNick2wrote on 28.02.2024:[10.0] "One of the greatest to ever grace the squared circle. The man could really do it all, from being the nutjob highflying perc angle or the comedy babyface he was always insanely smooth in ring and on the mic, its a shame people doubted him as he was starting the wwf due to his size, yet was able to prove them wrong."
Rating: 10.0
Sentiment: 0.21071428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: gabriarewrote on 23.02.2024:"It still baffles me how someone can go from comedy hell, to beloved baby face and to absolute monster so smothly and all of that while been one of best in-ring performers of all time."
Rating: No rating found
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Spookylol1wrote on 21.02.2024:[10.0] "Amazing in the ring - Check Amazing on the mic - Check Amazing as both a face and a heel - Check Draws money - Check The most complete package superstar that has ever existed. It's a shame that injuries and addictions robbed us what should have been the undeniable GOAT of wrestling."
Rating: 10.0
Sentiment: 0.4800000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: shilderwrote on 14.01.2024:[10.0] "Kurt is the actualy Greatest of all Time. Remove all bias and just look at wrestlers. Kurt has it all. Gimmick, in ring talent, mic work, looks, if a wrestler needs it then Kurt has it. Kurt Angle is the best there was, the best there is, and the best there ever will be. Better than Bret, better than Shawn, better than every other wrestler that has stepped into the ring."
Rating: 10.0
Sentiment: 0.671875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Madladwrote on 08.01.2024:[10.0] "For me Kurt Angle simply is the greatest wrestler of all time and not just that he's also the best sports entertainer maybe ever? The Rock is close ngl.Kurt had everything he was a dork and one of the most intense and scary wrestlers at the same time. His comedy act was top tier and oh my god how many wrestling classics.one of a kind talent. its amazing that Kurt didn't start pro wrestling until his 30s and yet he got over in every way on WWEs greatest roster"
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: thedman0310wrote on 31.12.2023:[10.0] "The best overall wrestler in history. Peak wrestling ability combined with amazing promo work and character game. Kurt Angle is the best. It's true, it's damn true!"
Rating: 10.0
Sentiment: 0.4267857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Grapefruit Juicewrote on 13.12.2023:[10.0] "The true GOAT of pro wrestling. The look, the charisma, the talent, Kurt Angle has everything. There is no weak points in the mans game, worked at his lowest point like a star. Im glad we still have Kurt and hes doing better, the dude deserves the world."
Rating: 10.0
Sentiment: 0.22749999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Dntbamarkwrote on 10.12.2023:[10.0] "In the ring, easily one of the best performers out there. He brought a sense of legitimacy to the sport with his athletic pedigree and could produce fantastic matches with top guys like The Rock, Triple H, Steve Austin, Brock Lesnar, Undertaker and Shawn Michaels. He also was able to hang with PREMIER workers like Chris Benoit, Eddie Guerrero and Rey Mysterio and produce countless moments and matches with them as well. Drug use, personal issues and injuries hampered him a bit as he stayed in the business longer but he was somehow able to mask that and keep himself on top for years past his shelf life. Great promo too, he was literally the total package."
Rating: 10.0
Sentiment: 0.3652777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheDeitywrote on 07.12.2023:[10.0] "Kurt Angle is a legitimate gold medallist who was very entertaining on the mic and surprisingly excelled as a pro wrestler very early into his career. He's easily one of the best of all time. There will likely never be another Kurt Angle, as other freak athletes have often missed some important wrestling trait by comparison, with the most notable example being Gable Steveson. Most of Kurt's matches (barring his last WWE run where he couldn't move much) still hold up very well today."
Rating: 10.0
Sentiment: 0.3634523809523809
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kellbobwrote on 30.11.2023:[10.0] "The pure boy, loved him in the early years and his intense persona he displayed when he went bald, bless him. Hey ho, he was definitely one of the best of all time and stole the show from the overrated Cena at wrestlemania 21. So sad Cena was pushed when you had a guy who could legit spark the fooooook outta him"
Rating: 10.0
Sentiment: 0.2448979591836735
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: JediSaiyanMaster1203wrote on 19.11.2023:[10.0] "Kurt Angle might just be the best talent WWE has ever cooked in history, only very few can be debated. Here we have a man who actually won an Olympic Gold Medal with a broken freakin' neck, and made it part of his gimmick and ended up being a great heel when he debuted as the "heel who thinks he's a babyface." Kurt Angle was a quick learner as well, because he's that naturally gifted and has unique talents that not everyone can possess. During that time, Kurt Angle mostly did comedic stuff, and it was very funny. Whether he was spraying people with a milk truck, wearing a teeny tiny sombrero, teaching celibacy to kids, etc. he was an amazing entertainer. Kurt Angle was also apart of the "SmackDown Six" back in the day, often having incredible matches with the fellow SmackDown Six members, his tag team match with Chris Benoit against Edge and Rey Mysterio is, arguably, WWE's best tag team match of all time. As the years go on, Kurt Angle shifts to a more serious and more evil heel, from shooting a dart gun at Big Show to shave him bald, handcuff Eddie Guerrero to beat the life out of him, chasing after Sharmell to get back at Booker T, saying the most problematic things in 2006 to make a point that the fans will cheer him no matter what, etc. Kurt Angle has had countless great matches and feuds with the likes of Shawn Michaels, Eddie Guerrero, Brock Lesnar, Chris Benoit, John Cena, AJ Styles, Samoa Joe. and so many more to name, he is one of the best ring generals, one of the best technicians, great on the mic, amazing character work, very charismatic, can be a serious badass and funny goofball with ease. And of course, "Perc Angle" being one of the wildest runs a wrestler could ever have, despite his drug use was bad during that time, Kurt wrestled like he was on a whole different planet during that time, and you could tell. Overall, Kurt Angle is one of my all time favorites, he could do anything you gave him the task to do. Oh It's True, It's DAMN True!"
Rating: 10.0
Sentiment: 0.2973541666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jone2tonewrote on 03.11.2023:[10.0] "Probably the greatest to come out of the Attitude Era, and he continued to show his greatness right up until retirement. In addition to his actual wrestling ability the man could work - he understood how to work the mic, the crowd - and he picked up the pro wrestling side of his work with the kind of skill that only a natural has. Others may have made it bigger, paid a lower price for that fame, and had longer careers, but not many. Kurt's truly in a class by himself."
Rating: 10.0
Sentiment: 0.21696428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: cioranwrote on 04.10.2023:[10.0] "Legendary. Great worker, great on the mic, strong look. Can do character work that ranges from comedic (in parts of his WWE run) to psychopathic group leader (Main event Mafia TNA run). Can wrestle in every style imaginable. Was the face of TNA and got people watching it. Has an utterly insane cagematch with Mr. Anderson (WWE Mr. Kennedy), a feud w/Double J that intermingled his real life divorce and kayfabe feud that was insane and controversial (and produced some great matches with a lot of "Are they shooting? " moments) and highly technical matches w/Benoit and others. Also more acrobatic matches that were out of this world w/HBK, and even tag stuff w/AJ Styles. Probably the most good matches of anyone in the 00s. Pretty much picks up where Hart and Benoit left off as the best worker in the biz."
Rating: 10.0
Sentiment: 0.3277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LGL19wrote on 03.08.2023:[10.0] "I think Kurt Angle is probably top 3 greatest wrestlers of all time in ring, his technical ability, his psychology and his explosive movement is incredible. He was also one of the most charismatic performers ever as well, he could be funny or serious and could always play an awesome heel whether it be the cocky olympic gold medalist or a psychotic wrestling machine and he was a lovable babyface and you could get behind him. He barely if ever had a bad match and had great in ring chemistry with almost everyone and even at his worst with his addiction struggles (Perc Angle) he was insane in the ring. Truly one of the greatest of all time."
Rating: 10.0
Sentiment: 0.1508771929824561
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: lakenotblakewrote on 17.07.2023:"Kurt Angle is my favorite wrestler ever. His style of wrestling is my favorite style of wrestling. His match with HBK is sooooooo good."
Rating: No rating found
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: bigredtalk89wrote on 16.07.2023:[10.0] "There is no wrestler, in the history of the sport, that could play the absolutely most goofy MF'er one moment, but then be taken as a seriously as a legit tough guy in the ring moments later. It would take me all day to list all his greatest moments, while his flaws could fit into a single sentence. And what is his flaw? Well, if you followed TNA during his run, nothing, but I would argue that it's a shame that he didn't get to run his whole career in WWE. They really could have used him through the years of decline they went through. But that's not to say his TNA run was bad, he was just as good as ever, though from what I saw he did lose a bit of his goofy side. Some of the skits they had him doing would have buried most men with a tough guy rep but Kurt was just so damn good at playing the role that it didn't matter."
Rating: 10.0
Sentiment: 0.20734126984126988
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: duketsao7wrote on 02.07.2023:"If not for his neck issues, he might have scaled even greater heights than he had. The total package (sorry, Lex). Some GOAT matches with Benoit, HBK and Lesnar."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Neon Aussiewrote on 02.07.2023:[10.0] "Wrestler of the Decade for 2000-2010. Kurt Angle brought a skillset and pedigree never before seen in WWE and combined it with an intensity and sense of realism that made him of the most entertaining and skilled wrestlers ever to step foot into the squared circle."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: InsertFunnyNameHerewrote on 17.06.2023:[10.0] "Angle is my favorite and quite possibly the greatest wrestler to ever lace up a pair of boots. The ultimately complete package. Nobody could wrestle like him, few could talk like him, and few could do the things he could do. My GOAT."
Rating: 10.0
Sentiment: 0.20000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Ruthless Attitudewrote on 14.06.2023:[10.0] "He just had everything going for him. He was an outstanding wrestler, a top draw performer that could steal the show at any given moment. He was amazing as a heel with thecomedic timing to his promos as well as working an intense style while also not afraid to be the butt of the joke sometimes. He became so respected as an athlete by the fans, that they was strongly behind him as a face too. This was one of those times where WWE struck gold (pun intended) the moment he debuted and they was justified when they pushed him to the title on his rookie year because in time he became the very best talent the WWE had to offer. His ability to not only have amazing matches, and adjust to any given storyline coming his way without ever looking out of character made him one of the best ever."
Rating: 10.0
Sentiment: 0.30833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Giantfan1980wrote on 07.06.2023:[10.0] "Kurt Angle was great the moment he came into the WWFE and he had everything you wanted in a wrestler. The look, the charisma, the talent, and he could even pull off comedy stuff."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ItsToniTime89wrote on 16.05.2023:[10.0] "Einer der besten technischen Wrestler der WWE Geschichte, besser gesagt in der Geschichte des Professional Wrestlings für mich. Er kam als Olympia Sieger rüber zur WWE, wurde am Anfang von allen Seiten belächelt und hat's allen gezeigt. Nicht nur im Ring ist Angle Spitzenklasse, sondern auch am Mikrofon. Wie er regelmäßig mit den Fans geworked hat, egal ob als Face oder als Heel, war meisterhaft. Schade, dass man Angle 2019 nicht das Abschiedsmatch gegeben hat, was ein so toller Performer wie er eigentlich verdient gehabt hätte."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DangoDaisukiwrote on 08.03.2023:[7.0] "Kurt Angle war schon ein guter Wrestler mit seinem Ringer Gimmick und Fähigkeiten. Ich habe in ihn aber nie einen World Champion gesehen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: kewf1988wrote on 26.02.2023:[10.0] "Kurt Angle was a complete package, who got the business extremely quickly during a time when the WWF was at its most popular. Really good in the ring, extremely charismatic, and great on the mic. He also had a great TNA run later in his career, which showed that he wasn't just a product of WWE developmental."
Rating: 10.0
Sentiment: 0.48148148148148145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MilkDDTeawrote on 18.02.2023:[10.0] "On top of being undoubtedly one of the most technically proficient workers in the history of pro wrestling, this man was incredibly well-rounded in all aspects of performing in the ring. He was an intense machine that could dish out barn burners on the weekly, whilst delivering on comedic angles and goofy segments just as well as he did a series of suplexes. Angle excelled at everything thrown at him through his career, and left us with a multitude of classic matches and unforgettable moments."
Rating: 10.0
Sentiment: 0.39629629629629626
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: John Brandowrote on 17.02.2023:[10.0] "Kurz gesagt einer der großartigsten Wrestler überhaupt und technisch auf einem absoluten Top-Niveau. Seine Partie mit Michaels bei WrestleMania 21 war lange Zeit auch mein persönliches "GOAT"-Match. Im Mikrofon immer gut und ausgestattet mit tonnenweise Charisma. Dazu neben Austin einer meiner Lieblinge. 10 hochverdiente Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KKeanelwrote on 12.02.2023:[10.0] "Brilliant indvidual. His run between 2002-2009 in WWE and TNA was great example of him as a entertaining TV persona and technical machine. His last run 2017-2019 as a GM and occasional in-ring appearances wasn't good (especially losing retirment match to Corbin), but overall he has to be consider in all-time best group."
Rating: 10.0
Sentiment: 0.39
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: benh2wrote on 20.01.2023:[10.0] "One of the all-time great wrestlers. Technically so smooth and accomplished but a rarity in that he came from amateur wrestling and picked up all the unique aspects of pro wrestling almost instantly. Developed great psychology, understood how to pace a match, fed superbly for his opponents, knew where to be in the ring for upcoming spots and had a lovely believable moveset. Learned a variety of styles and had quickly evolved from the guy who could only have good technical matches. Character work was shaky to start with but after a couple of years he'd mastered that as well and was both a great babyface and heel, as well as growing into one of the better guys on the mic."
Rating: 10.0
Sentiment: 0.3779411764705883
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: dripwrote on 19.12.2022:[10.0] "IMO one of the most complete wrestlers ever, he's got it all he can talk, sell, and work his ass off in the ring. Definitely top 10 all time"
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MainEventMasterwrote on 02.12.2022:[10.0] "One of the most insane, awesome, and just plain greatest wrestlers ever. This dude just constantly put on amazing matches and his promos were entertaining as shit too. A fucking gem Kurt Angle was."
Rating: 10.0
Sentiment: 0.15857142857142853
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Enriquepollazzowrote on 30.11.2022:[10.0] "Would have been a easy 10 if he never went to TNA. They took the humor out of his character and treated him like a MMA badass and the matches were good but that's not as good for his character. They didn't have the star power though so its not like he had SCSA and Undertaker to play off anymore."
Rating: 10.0
Sentiment: 0.611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jmira17wrote on 27.10.2022:"Amazing wrestler top 5 for sure and his promos are incredible, he can everything, he can do any character, he can perform in every promotion, he can give a 5 star match with anyone..... What a legend!"
Rating: No rating found
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LTwrote on 12.10.2022:[10.0] "Im Ring kann man für Prime Angle einen Case für den GOAT machen und auch der Story character war meistens genial. Er war auch ai von WWE sehr unterhaltsam"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RavenCrow75wrote on 06.10.2022:[7.0] "For the most part I will be basing my Wrestler ratings on five criteria four of which are based on in-ring ability and the last on charisma. I believe these five criteria are pro wrestling's version of Tommy Lasorda's criteria of "five points" in baseball. For pro wrestling those five criteria are power, speed, technical ability, hardcore & charisma. Kurt Angle's scores: Power: 7 Speed: 7 Technical: 10 Hardcore: 6 Charisma: 7 for a total of 37 and an average of 7.4 rounded down to 7."
Rating: 7.0
Sentiment: 0.027777777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "The most complete wrestler I have ever seen. As a serious or comedic character, as a face or a heel, mat-based, hardcore or fast pace action, there is no aspect of wrestling where he isn? t at least good. What a legend."
Rating: 10.0
Sentiment: 0.13809523809523808
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: GM56 Championwrote on 23.09.2022:[10.0] "A true wrestling machine. Sometimes goofy, but mostly a force to be reckoned with, especially back in 2005 - 2006. One of the best to ever do it."
Rating: 10.0
Sentiment: 0.47000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SoomerSloomwrote on 20.09.2022:[10.0] "My all-time favourite wrestler. He was a complete package with minimal training, an incredible worker with a near-perfect legit background, a great character, a fun promo, a despicable heel, a beloved babyface, and the only guy that gets told he sucks as a term of respect and endearment."
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ProWrestlingGuy316wrote on 16.09.2022:[10.0] "Auf den Punkt gebracht einer der Besten aller Zeiten. Er konnte so ziemlich alles: Promos halten, Heel und Face gleich gut spielen, unterhaltsame Comedy und auch ernst sein sowie in seiner Prime in der Lage, selbst eine Mülltonne zu einem soliden Match zu ziehen. Musste seinem Lebensstil und Verletzungen in den letzten Jahren Tribut zollen, hat aber noch rechtzeitig den Absprung geschafft. Er hat es verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KSupreme3wrote on 27.08.2022:[10.0] "Kurt Angle is one of the greatest technical wrestlers to ever do it. He had the greatest rookie run in WWE history. Olympic gold medalist, won many championships in multiple promotions and classic matches worth rewatching. Truly loved him as a heel. He knew how to turn the crazy on. The man knew how to draw heat. 10/10"
Rating: 10.0
Sentiment: 0.3407407407407407
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: face painted legendwrote on 25.08.2022:[10.0] "One of the very best all around performers to ever lace them up. Excellent at every single thing he did. He was a wrestling machine in the ring, he could cut a great promo, he could be as serious as it got, or he could be as funny as it got. He's also one of the elite few who because he won an olympic gold medal with a broken freakin' neck and was a shoot amateur wrestler could have that kinda aforementioned range with his character at the time he had it, and it not get criticized because of what he was capable of doing once the bell rang. I think if it was anyone else they'd get laughed at right out of the building no questions asked. Can't say enough good things about Kurt and how great he was."
Rating: 10.0
Sentiment: 0.28005952380952376
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: nothingleftinsidewrote on 08.08.2022:[10.0] "It's hard for me to find a criticism of Kurt Angle. Almost right from the beginning, he was one of the best in the ring- from workrate, to pacing, to psychology, to execution, to pantomime, to facial expressions, he was among the best in his era. Even when he was strung out on drugs the performances he gave were the envy of most everyone else on the card. His redemption arc, overcoming addiction and neck trauma, working class background, and olympic gold medal only add to the aura of a true american hero and overall amazing person. His promo work is also good. They were worried at WWE what they were going to do with this goofy, bland dork but he was able to take what little personality he had and make it work for him. He's not Steve Austin, but pretty much every talking segment he was ever in holds up today. A great babyface but even better heel, Kurt is the guy you like to boo when he's on the mic but cheer in the ring. He gave over 100% every single time he went out there. A+ worker, A on the mic, A- look. I think he gets overlooked as one of the all time greats but he's got it where it counts- everywhere. Any category, any era, he stands up to the best of them."
Rating: 10.0
Sentiment: 0.33947510822510824
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: zachattack2023wrote on 26.07.2022:[10.0] "I think kurt is one of the best wrestlers ever and he had some instant classic matches. He had a great run in wwe and tna he was just one of the pure wrestlers ever."
Rating: 10.0
Sentiment: 0.43619047619047624
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Muggowrote on 15.07.2022:[10.0] "Prime Kurt Angle is the closest a Wrestler can get to perfection. World Class in-ring skills, a great look, great mic work and Charisma, and an intensity and legitimacy that very few, if anyone has ever had. His only issues was that he was on a timer due to his past injuries, and the drug issues those injuries caused."
Rating: 10.0
Sentiment: 0.16083333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: sbg2022wrote on 11.07.2022:[10.0] "Kurt Angle is a wrestling machine. I mean to win a gold medal with a BROKEN FREAKIN' NECK is extraordinary. His matches in the WWF with Chris Benoit were legendary. His feud with Samoa Joe in TNA was incredible. I mean, Angle at 53 years old, can still IMO put on a quality match."
Rating: 10.0
Sentiment: 0.2635416666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BAILE3wrote on 01.07.2022:[10.0] "The BEST in ring performer of ALL TIME. He was that damn good. Amazing technical wrestler who worked with anyone in any style. One of the rare wrestlers which have barely any bad matches. Inspired the next generation of technical wrestlers due to how good he was. Not to mention how fucking charismatic he is, he can cut any sort of promo and it? s guaranteed to be good. He is one of the funniest wrestlers ever. He? s gotta be in my top 10 simply just for his days in TNA. When he was Perc Angle he was unstoppable."
Rating: 10.0
Sentiment: 0.2816666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Rahul77wrote on 21.05.2022:[10.0] "One of the best wrestler of all time and one the wrestler among my mount Rushmore with AJ Styles, Eddie Guerrero and Shingo Takagi. Pro wrestling's only gold medalist have gained one the overall best performer of all time and will be in everyone's top 10. He is machine in the ring and will goofy outside as well."
Rating: 10.0
Sentiment: 0.42857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Thibaultwrote on 19.05.2022:[6.0] "Kurt Angle was a good storyteller, and a very good technical wrestler, but he didn't have the level of precision, coordination, intensity and style of the greatest wrestlers of his generation, in my opinion."
Rating: 6.0
Sentiment: 0.6525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Maxkappelnwrote on 14.05.2022:[10.0] "Der beste Wrestler des neuen Jahrtausends. Vielseitig einsetzbar. Die Matches sind immer Ein Ereignis. Am Mikrofon top. Selbst als Comedy Act überzeugend. Der letzte Run in WWE zwar nicht Mehr so gut, aber lag an seinen Verletzungen."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Tomas Cunhawrote on 22.04.2022:[10.0] "I don't think I've ever seen anyone able to be such a goofball in backstage segments, and then come across as such a badass in-ring. Angle could elevate many of the guys he worked with, and he's unquestionably one of the greatest ever."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Pertinaxwrote on 11.04.2022:[10.0] "One of the GOATs of not only amateur wrestling but pro wrestling/sports entertainment. Kurt Angle was a real natural for the business and caught on to it almost instantly. He was responsible for some of the matches in WWE/TNA history. 10/10 for just his wrestling ability, but add to that his tremendous charisma and comedic timing and you have the perfect professional wrestler. I don't think there will be another quite like him."
Rating: 10.0
Sentiment: 0.19166666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Conquistador37wrote on 02.03.2022:[10.0] "Of all of the WWF/E main eventers over all of the decades, Kurt Angle is right there with Bret Hart and Shawn Michaels in terms of in ring ability and to me - excels both in watchability. So yah, my favorite WWF/E main eventer of all time. Angle always put in his everything (sometimes to a fault in regards to his body) and made the WWF/E and wrestling altogether a far better place when it came to bell to bell action. Hell of an entertainer as well (with some stuff that really felt like a parody of Bob Backlund) dork ass Kurt Angle is comedy GOLD. One of my all time faves. No true flaws, only some unfortunate injuries and personal decisions that *almost* derailed his career (but didn't! ). Highest of recommendations."
Rating: 10.0
Sentiment: 0.11200396825396829
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: GriffinXwrote on 03.02.2022:[10.0] "Kurt took all the drive and passion he had to be the best athlete in the Olympic wrestling tournament made him one of the best pro wrestlers to ever do it. Guy loved to get in the ring he would have a great match with just about anyone."
Rating: 10.0
Sentiment: 0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BrayanLaPrewrote on 31.01.2022:[10.0] "The absolute epitome of what I love about professional wrestling. In the ring, one of the absolute best in the history of the industry. Technically immaculate, freakishly athletic, and in possession of an unbelievable blend of power and agility. As a storyteller, the same is true. As a character, few have ever been able to flip the switch between face and heel, let alone goofy and serious, like Angle was able to. Throw in iconic matches and feuds with the likes of Shawn Michaels, Chris Benoit, The Undertaker, Brock Lesnar, AJ Styles, Eddie Guerrero, and Triple H, and Angle has as complete a résumé as anyone I have seen. If a discussion about the GOAT is being held, then Angle deserves to at least be mentioned. A five-star, 10 out of 10 professional wrestler."
Rating: 10.0
Sentiment: 0.19259259259259262
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: rishabhwrote on 31.01.2022:[10.0] "The fact that he transitioned from being an olympic athlete to a professional wrestler in a short time is already a big accomplishment. As far as his wrestling is concerned he was an exceptional talent and a really all round performer. He could be given any role and he would be great it. There aren't many who are greater than this man."
Rating: 10.0
Sentiment: 0.2666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Abo96wrote on 04.01.2022:[10.0] "Kann in einem Moment unglaublich witzig sein und im nächsten Moment einer der größten Badasses im Business. Wahnsinnig unterhaltsam zu jeder Phase seiner Karriere, ob am Mikrofon oder im Ring. Hatte fantastische Matches sowohl bei der WWE, als auch bei TNA. Dazu natürlich extrem glaubwürdig durch seine Zeit und Erfolge als Amateuerringer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CaptainCharisma1997wrote on 17.12.2021:[10.0] "One of the most ingenious performers ever; a true wrestling prodigy. Fucking hilarious yet totally believable and serious as both a face and a heel and obviously incredible in the ring. He sucks"
Rating: 10.0
Sentiment: 0.32708333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CoolKylewrote on 23.11.2021:[10.0] "Kurt Angle might actually be the best all around pro wrestler ever to do it when you think about it. That's hyperbole but he's legitimately someone who could do it all. He could be a clown, a world champion wrestling machine, an evil villain, and you always believed it. I"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: FACEElmo295wrote on 06.10.2021:[10.0] "The fact Angle transitioned from freestyle wrestling to professional wrestling with pure ease just shows how good he is. The guy remains for my money the best mat wrestler ever in professional wrestling. Not only that he knew what to do in order to work the crowd, his charisma is second to none and I loved all those comedic segments Angle did. But maybe after that he got even better as his character became more serious, and it worked thanks to how good he is. Also he won a gold medal with a broken freakin' neck!"
Rating: 10.0
Sentiment: 0.27721088435374147
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: No Onewrote on 04.09.2021:[10.0] "One of the greatest built from scratch WWE Wrestlers of all time. The greatest wrestler to ever make the transition from Amateur Wrestling to Professional Wrestling. The most successful first year of any wrestler in WWE history (in contention with Brock Lesnar). One of the greatest in-ring performers of all time. Popularized The Angle Slam & The Ankle Lock. Feuds with Chris Benoit & Brock Lesnar are legendary. Put on matches against Shawn Michaels, Steve Austin, Chris Benoit, Brock Lesnar, Rey Mysterio Jr, & Edge that will always withstand the "Test of Time". Had memorable matches in TNA against AJ Styles, Samoa Joe, Abyss, & Jeff Jarrett, amongst others. Became one of the best Ring Generals of all time. Gave it his all in every match. Gave way too many re-watch worthy instant classic matches in the WWE, TNA, & in NJPW. Held the WWE, TNA, & IWGP World Championships. The rightful 2000's Wrestler of the Decade. Was my favorite wrestler of the 2000's decade. His career in both WWE & TNA are equally legendary. Highly charismatic. Excellent Babyface. Excellent Heel. Excellent promos. Could be a totally hilarious goofball & then turn into a vicious, near psychotic killer. Amateur Wrestling Legend that became a true Professional Wrestling Legend... Oh it's true, it's damn true!"
Rating: 10.0
Sentiment: 0.43124999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Tomatowrote on 27.07.2021:[10.0] "He was one of the best wrestlers of all time. Excellent in the ring, charismatic, great on the mic and had so many great matches. And he won a gold medal with a broken freakin' neck (crazy, right? )."
Rating: 10.0
Sentiment: 0.43174603174603166
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: texasyoshwrote on 18.07.2021:[10.0] "My bitch in a suplex Bitch, hadouken Fifty grand show, mmmm, bitch I'm so stupid Young BasedGod fucked the bitch with handles My swag like Goldust, no homo, ten bitches Swag Steve Austin, call me Kurt Angle Ankle-lock my bitch, she don't wanna pay me Flex a suplex, with the crew neck With a hundred bands, bitch don't disrespect"
Rating: 10.0
Sentiment: -0.15999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Kurt Angle always seemed like one of those guys who could be great at anything he put his mind to, and luckily for us that thing was wrestling. There was no facet of the wrestling business Kurt Angle wasn't elite at. He was an amazing-- amazing-- worker, a phenomenal promo, great character. He was the whole package in a way that almost no wrestler was. He wasn't just good at everything, he was elite at everything. All-time great."
Rating: 10.0
Sentiment: 0.5925925925925927
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kungwrote on 30.05.2021:[10.0] "You can make an argument that Kurt Angle might be the greatest total package of a wrestler who ever lived. He was stellar in the ring, he was absolutely fantastic on the mic, and he had countless legendary moments within WWE that it's genuinely hard to think of what he couldn't do at a high level."
Rating: 10.0
Sentiment: 0.3147916666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Rodycaz IIwrote on 18.05.2021:[10.0] "Truly one of the all-time greats. Greatest technical worker in the history of the business, entertaining gimmick, solid promo; the guy had it all."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Chechblue20wrote on 02.05.2021:[10.0] "One of the very best wrestlers of all time. He was amazing in the ring and was the best wrestler for WWE during the time where they pushed big monsters and did not focus on wrestling much. Will always be a legend, but it is unfortunate his last match was against Boring Corbin. He deserved a much better farewell."
Rating: 10.0
Sentiment: 0.20000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BuddySchultzwrote on 29.03.2021:[10.0] "Whether this cat be drinking milk or wearing silk, he's one of the best to ever do it. He was the best at being a condescending nerd, the best at being an all-round beast, and the best at being our hero. I've worded that as if he's no longer alive. He is, but he's also retired. My granddad, who isn't alive, thought his name was 'Coat Hanger'. Rest in peace dude, and long live Kurt Angle."
Rating: 10.0
Sentiment: 0.5357954545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ExcitingProWrestlin3wrote on 25.03.2021:[10.0] "THE WRESTLING MACHINE. Easily one of the greatest of all time, great technical worker, could entertain, could really fire up a crowd. Very good, nothing more to say."
Rating: 10.0
Sentiment: 0.5490476190476191
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KENTAfanwrote on 14.03.2021:[10.0] "Kurt Angle in his prime is simply the greatest pure wrestler of all time. It? s true, it? s damn true. Nobody moved as well as he could and made moves look as deadly yet casual as he did. On top of that, he? s also one of the greatest talkers of all time, hugely underrated in that regard. He was one of the greatest heels in an era of many all time great heels. I could go on and on, but the truth is anyone who has a functioning brain and had watched a Kurt Angle match (well a pre-2017 match anyways) knows what I? m talking about. He was just a once in a lifetime athlete"
Rating: 10.0
Sentiment: 0.41648351648351645
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Uweuwesenwrote on 26.01.2021:[10.0] "Kurt Angle hat immer 100% gegeben! Als Ringer, als Midcardworker zu Beginn und komplett bis zum Ende als GM. Das war wohl auch sein Verhängnis. Ein Gesamtpaket wie man es nur selten erlebt, in allen Belangen! It? s true, it? s damn true"
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: sanjurowrote on 24.01.2021:[10.0] "It's impressive enough that Kurt transitioned from legit Olympic wrestling to the pro style in no time. That he turned out to be one of the best promos of the modern WWE era is absolutely wild. And for a guy who originally told Vince he couldn't ever lose a match to preserve his reputation, it's amazing that he proved to be so great as a buffoonish character, neck-and-neck with Eddie and Jericho as the funniest worker to ever be a main event-level talent. Too many great matches with too many opponents to name, and only bad timing kept him from being able to have clinics with even more guys who stopped just before him (Bret, Owen) or came just after his prime (Bryan, ZSJ). Helped define the Ruthless Aggression era and then all but singlehandedly elevated TNA before that company's mismanagement dragged him down. Almost all of Dixie-era TNA's great matches outside the X Division and tag scene involve him."
Rating: 10.0
Sentiment: 0.29930555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Old ride long linewrote on 16.12.2020:[10.0] "One of The greatest ? technical? wrestlers of all time. But unlike a lot of guys that were technical wrestlers, Kurt angle could actually deliver on the microphone. Wether he was playing the dopey idiot or Olympic hero. Baby face or heel the guy always entertained. His matches with the undertaker, Brock lesnar, big show, hhh, Austin, and Chris Jericho were all time classics. I truly believe if he stayed with the wwe he might have made his way into the G. O. A. T conversation. I would rank Kurt in the top 15-20 all time and definitely a top 10 personal favorite."
Rating: 10.0
Sentiment: 0.07307692307692307
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: rainmakerpunkwrote on 25.10.2020:[10.0] "Kurt Angle shouldn't be as good as he is, honestly it's mind boggling how good he is, for somebody who didn't spend his whole life training to be a pro wrestler to be this damn good is crazy, Kurt Angle went from being an olympian to just picking up pro wrestling and being one of the best to do it, he quickly mastered the in-ring aspect and what's more surprising is he perfected the entertainment side of wrestling, have more character and mic skills and charisma than just about anyone"
Rating: 10.0
Sentiment: 0.4848484848484848
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: brandon062896wrote on 18.10.2020:[10.0] "Outstanding wrestler and a legitimate tough guy to boot. His matches never disappoint. Being well versed in grappling and submissions, his matches are a technical showcase. Top that off with remarkable endurance and charisma, we have a one of a kind athlete"
Rating: 10.0
Sentiment: 0.3268518518518519
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SSEighty7wrote on 21.09.2020:[10.0] "One of the greatest wrestler to ever step foot in the ring. May be one of the most well-rounded wrestlers of all time. He can be a goofy face, cowardly heel, bad ass face, psychotic heel, and even a lovable authority figure. In the ring, he can adapt to any style, and has put on classics for a number of years. WWE-only fans may not realize this, but his 06-10 career in TNA actually rivals his WWE tenure."
Rating: 10.0
Sentiment: 0.18571428571428575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Donniewrote on 04.08.2020:[8.0] "If you only ever watched his peak WWF/E work, you'd think he's one of the greatest to ever do it. But when you actually watch all of it, you'll find a deranged cripple that had one match type and had to be dragged kicking and screaming by better men (AJ/Joe/Jarrett) into something different. When he was on, he was the man, but man when he off he was trash."
Rating: 8.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: martizzletaewrote on 22.07.2020:[10.0] "One of my personal favorites of all time! The man is a jack of all trades. Starts off as a goofy straight-laced guy, months later wins the world title and becomes a wrestling machine, putting out classic after classic, and could still find the time to be seriously entertaining"
Rating: 10.0
Sentiment: 0.23333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: sabbathbloodysabbathwrote on 09.07.2020:[10.0] "I don't think it's much of a shock that he turned out to be great in the ring, but I don't think anyone could have predicted how entertaining his character would become as well, especially considering his gimmick is "wrestler. " I loved him on the mic almost as much as I loved him in the ring. Angle was one of the best parts of the Attitude Era, and that continued into the Ruthless Aggression era as well. One of the reasons I consider 2000-2004 to be WWE's peak."
Rating: 10.0
Sentiment: 0.36250000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Conorwrote on 16.05.2020:[10.0] "Kurt Angle was one of the greatest ring technicians of all time. Could be a great babyface, but was a far better heel. Had a wonderful sense of comedic timing and great character work. Had great matches with just about anyone; AJ Styles, Brock Lesnar, Chris Benoit, Eddie Guerrero, HBK, Samoa Joe, Steve Austin, Undertaker... etc. One of the greatest of all time and one of my favorites."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wrestlefan20wrote on 11.05.2020:[10.0] "One of the most talented wrestlers of all time. Had plenty of great matches, can play a comedic and serious heel really well and is also very entertaining to watch."
Rating: 10.0
Sentiment: 0.41944444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TNBG2381wrote on 05.04.2020:[10.0] "Kurt Angle is one of the most talented wrestlers to ever step foot in a ring. What proves that is how quick his transition was from amateur wrestling to professional wrestling. His arrogant entitled gimmick made him one of the best heels in the wrestling business and his matches with Chris Benoit, Eddie Guerrero, and Shawn Michaels are legendary."
Rating: 10.0
Sentiment: 0.4604166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: AAA3000wrote on 07.03.2020:[10.0] "Kurt "German Suplex" Angle. Angles Vielseitigkeit habe ich gemocht. Er war technisch gut und hat exzellent Matches geführt. Am Mikro konnte er auch was. War auch mal witzig. Egal ob Heel oder Face. Kurt Angle konnte alles, nur leider keinen richtig würdigen Abschied bekommen von der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheGorgis309wrote on 01.10.2019:[10.0] "Kurt Angle was the best damn wrestler going for about the entirety of the 2000s and leading into the 2010s as well, and I will battle anyone who challenges that notion. The total package, great technical wrestler, excellent mic skills that also get underrated a bit because of his mush mouth style of speaking and off course charismatic as hell, the three things that are key to my enjoyment of a wrestler. He was also a great seller and also had great comedic timing that has lead to so many funny moments through the years. Although his last years as a wrestler weren't that great, don't let that subtract from your enjoyment of the Olympic Hero. Oh it's true. It's damn true."
Rating: 10.0
Sentiment: 0.47666666666666657
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[10.0] "Everyone uses the "fish to water" analogy when talking about Kurt entering the world of pro wrestling & that analogy is right on the money. Kurt could do it all: heel, face, comedy, intensity, in ring work.... he was spectacular in every sense of the word."
Rating: 10.0
Sentiment: 0.44285714285714284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CM Guevarawrote on 24.07.2019:[10.0] "Einer meiner absoluten Lieblingswrestler. Interessant ist bei Kurt Angle, dass er trotz seines sportlichen Hintergrunds zunächst ein Star war, aufgrund seiner schauspielerischen und komödiantischen Talente. Bei seinen Fehden gegen Triple H & Stephanie McMahon sowie gegen Steve Austin war es weniger die wrestlerische Qualität der Matches als die extrem unterhaltsamen Storylines, die die Fans begeisterten. Mit der Erfahrung wurde auch er besser im Ring, sodass er für einige Jahre der technisch beste Wrestler der WWE war. Erinnert sei an Matches gegen Brock Lesnar, Rey Mysterio und Shawn Michaels. Als er sich mit der WWE verkrachte und sich dem Himmelfahrtskommando TNA anschloss, war er noch immer einer der besten Wrestler auf der Welt und so lieferte er auch dort, trotz teils diffuser Stories, hervorragende Leistungen ab gegen Samoa Joe, Mr. Kennedy/Anderson (den er zu seinem wohl besten Match überhaupt zog) oder Sting. Nicht vergessen werden darf natürlich sein ewiger Rivale AJ Styles, die sich über die Jahre in ca. einem Dutzend PPV-Matches gegenüberstanden und nie enttäuschten. Bei seinem zweiten WWE-Run war er dann weit über seinen Zenit hinaus und er wurde nur noch sporadisch eingesetzt, leider wurde ihm auch kein ganz großer Abschied zum Ende der Karriere geschenkt. Ein genialer Wrestler am Mikrofon und im Ring!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wrestling Foreverwrote on 08.04.2019:[10.0] "Er ist eine Wrestling Machine die es schafft auch aus weniger guten Wrestler gute Matches herauszubekommen. Er ist eine WWF/WWE und TNA Legende der Mann hat fast alles gewonnen und so viel erreicht aber er sollte langsam aufhören. Leider ist er süchtig nach Wrestling trotzdem sollte er an seine Familie und seine Kinder denken. Er plagte sich nun auch mit einen gutartigen Tumor durch die Jahre, hat Nackenverletungen und sonstige Probleme am Körper sein Wrestling und seine Schlachten im Ring hinterlassen Spuren an seinem Körper. Er soll dieses Jahr als Aktiver aufhören ich möchte ihn nicht im Rollstuhl sehen. Edit 08. 04. 2019 Wenn das gegen Corbin sein wirklich letztes Match war dann war es richtig jetzt wirklich aufzuhören. Eine Legend ist Kurt längst aber der Körper ist doch längst kaputt darum soll er jetzt echt nicht doch wieder in den Ring steigen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: zephyrwrote on 16.03.2019:[10.0] "My rating for Angle represents his matches and character work pre-2010. The time when he was genuinely the single best mat wrestler in the world and could rock both a comedy gimmick or a serious break-your-body wrestler gimmick. Recent matches are obviously not up to his old quality anymore because he's almost 50 and hasn't been too kind to his own body over the years."
Rating: 10.0
Sentiment: 0.25502645502645505
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Steamboat2511wrote on 05.12.2018:[9.0] "Kurt Angle ist einer der genialsten Wrestler der Geschichte. Technisch kommen da nur sehr wenige heran. Und so gibt es zahlreiche spannende und hochklassige Matches, die dem Fan in Erinnerung bleiben. Persönlichkeit hat er durchaus auch, wenn gleich er nicht sonderlich viele Facetten zeigt. Am meisten überzeuggt hat er mich stets als Heel. Am Mic zeigt er sich zwar solide, gehört hier aber sicher nicht zu den größten Könnern überhaupt. Als Fan des technischen Wrestlings gehört Angle für mich aber ins oberste Regal und in meine Top 10."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Stott Onewrote on 27.11.2018:[10.0] "A man who excels at both the entertainment and wrestling sides of the business, Kurt Angle is one of my favorite wrestlers. His work in both WWE and TNA include amazing match after amazing match. His matches with Brock Lesnar, Triple H, The Rock, AJ Styles, and dozens more are great to re-watch even decades later."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RatingsMachinewrote on 22.09.2018:[7.0] "I've never thought of Kurt Angle as this awesome, all-time great worker. He just had too many issues for me to put him in that top tier of the best workers in the business. These issues included inconsistent selling, over reliance on certain spots, and some of the worst looking punches I've ever seen."
Rating: 7.0
Sentiment: 0.4306122448979592
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Tomlou12wrote on 17.09.2018:[10.0] "Not much to say here, just a legendary wrestler who deserves all the praise I can give. Watch his matches with Benoit and Lesnar and tell me otherwise."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: JEK 1991wrote on 12.09.2018:[10.0] "One of my favorite wrestlers of all time. Very talented in the ring and 1000% gifted. Even though he started his career older, he had the charisma and strength to perform in the ring. He was electrifying the crowds during the attitude era. Excellent feuds with Tazz, Chris Jericho, Steve Austin, Undertaker, Rock, Triple H, Brock Lesnar and Eddie Guerrero, etc.  My favorite time of him was in 2000. I didn't like when Edge shaved his head. Also he is great on the mic and great entertainer. He was always exciting to watch. There were challenges in his career like neck injuries but he overcame them. When left WWE, WWE totally forgot about and blacklisted him for years. He was great in TNA as well. When he came back to WWE because of being inducted in the hall of fame he was no longer blacklisted. Everything changed! It is great that he still wrestles."
Rating: 10.0
Sentiment: 0.5054761904761904
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: pappahousewrote on 04.09.2018:[9.0] "Ein absolut herausragender Wrestler, ein guter Heel, ein guter Face. Kraft, Technik Kurt Angle hatte und hat alles was es braucht, um zu einer absoluten Legende zu werden. Ich hoffe, dass seine Pause als General Manager nun heißt, dass er sich wieder fit für einen Vollzeitjob macht. Einen der besten Moonsaults im Wrestling."
Rating: 9.0
Sentiment: 0.22500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Makai Clubwrote on 01.08.2018:[6.0] "I have an on and off love for Kurt Angle. There are times where he is tremendous, where he can be a technical genius and times where he is very annoying to watch. There are times in his career - like his TNA run for example, where he would just be lazy and has no substances to him. He would just spam suplexes and basically have spot fests every time and it would just leave loads to be desired. I feel his match structure - or lack thereof make his matches suffer. Like his Benoit matches. He does have his great matches like his Austin feud but I'm generally hit and miss unfortunately."
Rating: 6.0
Sentiment: -0.008333333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Alex Maedawrote on 28.07.2018:[10.0] "Kurt Angle bewegt sich nun schon seit Jahren zwischen Genie und Wahnsinn, in jüngerer Vergangenheit war es jedoch meist nur noch Wahnsinn. Angle ist ein absoluter Ausnahmeathlet, das steht außer Frage. Unheimlich stark im Ring, ein guter Redner, der sowohl Comedy als auch den ernsten Stil gehen kann, dazu (ganz wichtig! ) funktioniert er als Heel genauso gut wie als Babyface. Der größte Kritikpunkt, den ich an ihm habe, ist seine Zeit nach der WWE-Karriere. Die ersten Jahre bei TNA mögen noch ordentlich gewesen sein, wobei auch das ein oder andere starke Match herauskam, doch mittlerweile hat Angle deutlich seinen Zenit überschritten. Aber leider gehört Kurt auch zu der Reihe von Wrestlern, die es verpassen, rechtzeitig aufzuhören und wohnur durch gravierende Verletzungen, die ich ihm nicht wünsche, zur Vernunft gebracht werden können. Über das Lebenswerk als Wrestler gesehen, reichen die wirklichen großartigen Leistungen zu Hochzeiten für gute 8 Punkte. UPDATE: Solange das Tag Team-Match mit Ronda sein letzter In Ring-Auftritt war, bleibt die 10 stehen. Ich kann ihm einfach keine Punkte abziehen. Er ist großartig. Oh, er war auch im Greatest Rumble. Egal. Hör jetzt einfach auf und bleib General Manager."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LrockBesnarwrote on 22.04.2018:[10.0] "Yugo, you are probably a little child who is a student of elementary school. The wrestler you call that sloppy is a 1996 Olympic gold medalist. He is a true WRESTLING legend in every way. Not only in Pro wrestlng. (lol).  You probably only watched him at WM34. He's generally funny on microphone and amazing wrestler in the ring. You do not have to love him of course but what you say things about him are not true at all."
Rating: 10.0
Sentiment: 0.18371212121212122
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: test85wrote on 16.04.2018:[9.0] "Für viele ist er der Beste Wrestler aller Zeiten in der WWE und im US Main Stream Bereich. Sicher gehört er zum Kreis Wrestler (u. a. Y2J, Hbk, Hitman, Styles) die sogar mit einem Sack Kartoffel ein gutes Match zeigen können. Aber so ähnlich wie bei Punk will mir bei ihm der Funke nicht ganz zünden. Einer der dieser Typen die sowohl als Heel als auch als Face funktionieren. Update: Aktuell würde ich auf 8 Pkt abrunden. Sein In Ring Comeback gefällt mir momentan überhaupt nicht. Er wirkt irgendwie hölzig. Aber am Ende seiner Karriere wird sicher eine 10 stehen."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Oliver95xwrote on 23.03.2018:[10.0] "Einer der besten Techniker der Wrestlinggeschichte. Kurt Angle hat einige großartige Matches in seiner Karriere abgeliefert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jackleonewrote on 03.03.2018:[10.0] "One of my favorite wrestlers. Great technical skills, amazing character, good mic skills. He had everything to be a top star in the Wrestling Business and he is also charismatic outside the ring. Recommended matches: Wrestlemania match vs Shawn Michaels, everything in the feud Angle vs Benoit, Angle vs Samoa Joe series."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CHN325wrote on 04.02.2018:[9.0] "One of the best pure wrestlers of his generation, Kurt Angle could get a great match out of a broom. Highly athletic, always willing to put his body on the line. Suffered through a ton of injury issues because of this. Good to great mic skills, could do comedy well if need be."
Rating: 9.0
Sentiment: 0.5606122448979592
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TylerWhitewrote on 29.01.2018:[9.0] "Einer der besten Wrestler aller Zeiten. Im Ring ist er grandios gewesen und das in einer Zeit, zu der es generell viele gute Techniker gab von denen er sich trotzdem abheben konnte. Sein Charisma ist auch unglaublich und sein Gimmick war auch immer mega gut und natürlich einfach passend. Am mic ist er auch nie schlecht gewesen und konnte sich auch immer verbessern und einige sehr gute Promos halten. Außerdem hat er mit "You Suck" einen der größten Chants der Wrestlinggeschichte etabliert und in meinen Augen zusammen mit seinem richtig guten Theme Song auch den Besten. Er konnte ziemlich gut die Face-Rolle spielen aber noch besser die Heel Rolle und er war generell einfach ein starkes gesamtpaket. Einer der Besten Wrestler aller Zeiten. 10/10."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ianlapierrewrote on 04.11.2017:[9.0] "Kurt Angle was one of the greatest wrestlers in WWE history before he departed and spent a decade wrestling in TNA. The only knock on Angle (who really was a complete package) was that he spent way too long away from the big leagues. One of the greatest 15 of all time, his legacy will suffer because of this absence."
Rating: 9.0
Sentiment: 0.20374999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: taabr2wrote on 10.09.2017:[10.0] "Another one of my favorites. Kurt Angle was designed to be a wrestler. Angle's debut was in late 1999 but by the end of 2000 Angle was legit one of the best wrestlers in the world. It is amazing to see how he rapidly improved in all the difference aspect in wrestling in terms of character work, mic skills and in-ring ability in such a short time."
Rating: 10.0
Sentiment: 0.26
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: flashbackwrote on 06.06.2017:[10.0] "Phenomenal worker, hilarious on the mic - and very impressive the way he transitioned from amateur to pro wrestling (and apparently in record time, making it even more impressive). Seems like he could be a great comedic actor - the way he played the oblivious / dumb American champion so perfectly was a refreshing twist on how WWE usually portrays patriotic characters (aka the ultimate good guy). I really respect his reasons for going to TNA (a reduced work schedule) - but sadly the stink of that company has tarnished pretty much everyone that ever dropped in, regardless of what they did there. While I hate WWE, it is good to see him back there so hopefully he can either end on a high note, or stick around in a non-wrestling capacity, cause he is still gold on the mic and could be a huge asset to the company."
Rating: 10.0
Sentiment: 0.261875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TrevPuroFanwrote on 04.04.2017:[7.0] "I don't think I agree with my good friend NastyYaffa that Kurt Angle is a totally bad wrestler, but I do agree that he is really overrated. He used to be one of my absolute favorites when I was younger, but as I grew up and my taste in wrestling has changed alot, I don't really see him as an all time great anymore. He has great mat/technical ability, but his psychology in his matches are very hit and miss, and he spammed too much not needed moves into his matches. I can't give him a complete 1, cause I think he has had some good matches, but I think a 7 is the highest I can go. I still have tons of respect for The Olympic Gold Medalist though, and his matches are still fun to watch"
Rating: 7.0
Sentiment: 0.2846153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SuTonwrote on 01.04.2017:[7.0] "Kurt Angle used to be good a long time ago, but even then he had holes in his game that kept him from being called great like selling, not giving spots breathing room to make them meaningful, repetition of moves that diminish their value, awkward transitions, and he could give a lifeless performance at times despite the pace he took. He doesn't have a lot of great matches and got worse after time until he was awful. His matches became the epitome of the epic main event style and what I didn't like about them. At his best, he was a great athlete, had better guys in the ring to accentuate his strengths and hide his flaws, hit some good suplexes, and worked at a fast pace that made for good short matches. Not an all time great like people thought he would be early in his career, but it's true he could be great at times."
Rating: 7.0
Sentiment: 0.29848484848484846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Blood Pumpwrote on 29.03.2017:[10.0] "My favorite professional wrestler. He may not be the best, he may not be what he once was but hes always been at worst good. At his best though? Holy Christ was he amazing! He had so many great matches between 2002 and 2007 (Including my all time favorite with him vs Michaels at WM 21). He was an excellent wrestler, had an undeniable charisma, fantastic sense of humor, a unique look and could flip the switch between goofy and serious at the snap of the fingers. He was the jack of all trades and master at all, save maybe for in ring psychology but in all honesty he made up for that with his intensity (which was second only to Chris Benoits)."
Rating: 10.0
Sentiment: 0.39950980392156865
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Owenwrote on 02.03.2017:[10.0] "Probably the greatest pure wrestler ever. Going over his qualifications seems like beating a dead horse. Simply put, he is awesome."
Rating: 10.0
Sentiment: 0.40285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: coolserazwrote on 13.02.2017:[10.0] "In my mind, the best wrestler ever. Can be goofy, serious, intimidating, likable, detestable. Extremely charismatic, a very good promo and a tremendous athlete. All this did come at a heavy price but I am happy he is clean and at a better place now. A deserving headliner of WWE Hall of Fame in 2017."
Rating: 10.0
Sentiment: 0.4563888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: steviecwwrote on 13.02.2017:[10.0] "One of the greatest of all time from the Olympics, to WWE, to TNA to a brief but very welcome run across the UK independent scene of ICW, RPW and WCPW. His world titles, gold medals, triple crowns, tournament victories and grand slam wins all illustrate a pretty perfect wrestling career. He deserves the WWE HOF and he deserves his legacy."
Rating: 10.0
Sentiment: 0.50625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Changeling45wrote on 09.02.2017:[10.0] "Kurt Angle is god's gift to wrestling.  The fact that he was putting on top tier matches with WWE's main event talent with nothing more than a years worth of wrestling training is mind boggling.  Not long into his career he had already crafted a great character, working everything from funny babyface to cutthroat heel effortlessly.  He's the most gifted athlete in the history of pro-wrestling, a tremendous mat worker, submission specialist and suplex machine.  He is the most intense worker I've ever seen in the ring.  He's willing to do almost anything, all the while actually being able to do almost anything asked of him.  If not for working the majority of his career with lackluster talent in TNA, I don't doubt that he could've had one of the best catalogs of matches ever."
Rating: 10.0
Sentiment: 0.3953125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Titansrevengerwrote on 04.02.2017:[9.0] "Kurt Angle is the best wrestler that I have ever seen. From the very beginning he picked up every aspect of the game. He could talk he could work and was entertaining as hell. Plus he had the Olympic gimmick which was very marketable. I feel that Kurt burned out far to quickly and that the only reason he is not considered the GOAT is because a large portion of his body of work was in TNA land. If Kurt Angle had stayed healthy and wise he would be where John Cena is today and more over then a galaxy."
Rating: 9.0
Sentiment: 0.3206349206349206
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Real Raterwrote on 01.02.2017:[9.0] "Ring: Klar in den 00er Jahren 10 Punkte, aber leider hat er bei TNA einfach etwas abgebaut dehalb 9/10 Punkte. (50%) Promos/Schauspieltalent:Klar gut aber auch nicht so besonders. 7/10 (25%) Charisma/Statur/Gimmick:Konnte super den Olympic Hero rüberbringen 9/10 . (25%) Sind dann insgesamt 8, 5 Punkte für The Wrestling Machine.  = 9 Punkte"
Rating: 9.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: strongstyle77wrote on 17.01.2017:[10.0] "Auf jeden Fall in meiner Top 10 Wrestler of all Time. Einzigartiger Wrestler, das perfekte Gesamtpaket. Freu mich, dass er die HoF Class 2017 Main Eventen darf, hat er sich auf jeden Fall verdient. 10/10."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: rjsbx11wrote on 06.01.2017:[10.0] "The first of his ilk, to make the smooth and seamless transition from the amateur ranks to the professional wrestling. From his debut match in 1999 Survivor Series, you could tell that the mat skills would translate but what about the character. He ran with the initial reactions, and became a white meat, hokey, disingenuous, clean living blowhard and from there Kurt Angle became a staple in the WWF. Angle's rookie year is among some of the best,  and each year he showed evolutions in his character. His work in the ring remained elite, with great bouts against Brock, Benoit, HBK, Triple H, etc. Whether he was the funny over the top dork or the uber intense wrestling machine he would end his WWE tenure on, remaining over in all capacities. Then he began a whole new legacy in TNA, becoming one of their faces a decade with clashes against Joe, Styles and Sting which led to a TNA Hall of Fame induction. Now, enjoying a twilight run which include indy matchups and for some hopeful fans, a return to the WWE. Kurt Angle was one the most complete packages in all of professional wrestling."
Rating: 10.0
Sentiment: 0.28515151515151516
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ApexOfEvolutionwrote on 28.12.2016:[7.0] "Technisch sicherlich einer der besten Wrestler überhaupt. Liefert auch im höheren Alter noch tolle Matches ab, auch wenn er verletzungsbedingt etwas kürzer treten muss. Funktioniert als Heel immer großartig, aber als Face finde ich ihn teilweise zu pathetisch dargestellt, mit diesem "Ein-Mann-muss-tun-was-ein-Mann-tun-muss"-Getue, aber wahrscheinlich kommt das in den USA gut an. Am Mic ist er okay, wenn auch nicht überragend und auch die Ausstrahlung ist durchaus in Ordnung, zieht mich aber nicht in ihren Bann."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SanthoshVNwrote on 09.12.2016:[9.0] "Kurt Angle is one of my favorite all time wrestlers. He is powerful, charismatic, energetic, athletic in the ring. He was of the guy who made me to give a damn about TNA. He is 48 now and still proving in the indies that he is still capable of outwrestle anybody. Looking foward him to end his career in big leagues than small independent scenes"
Rating: 9.0
Sentiment: 0.21875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: WrestlingFan1112wrote on 23.10.2016:[10.0] "Ich sehe bei ihm keine Schwächen. Technisch ist er 1a und egal ob als Heel oder als Face, er macht es immer sehr gut! Und obwohl er nicht mehr der Jüngste ist workt er ein super Match nachdem anderen. Am Mic hat er sicher was drauf, keine Frage! 10 Punkte."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: croatiantwat1950wrote on 18.09.2016:[10.0] "Probably the most complete wrestler of the 21st century. Every feud/promo/match he had in WWE was a must watch. A freaking broken neck and won the gold medal, had masterpieces of matches with Rock, Lesnar, Cena and Taker. He kinda lost his momentum in TNA but hey, he is simply old. From one side he can be silly, fun and charismatic and from the other he can be a machine on a rampage. I hope he returns to WWE as either a wrestler or a manager, doesn't matter, he deserves a gigantic pop if nothing else."
Rating: 10.0
Sentiment: 0.052777777777777764
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DanTalksRasslinwrote on 12.09.2016:[10.0] "Already having had a legendary career as an NCAA and amateur wrestler - culminating with a gold medal win at the 1996 Olympic Games in Atlanta - Angle made as smooth a transition to the world of pro wrestling as you could ever hope for.  Not only was he able to adapt his legitimate wrestling skill to the squared circle in an effective manner, he also developed a strong level of mic skill and character work, and was able to adapt his persona in seemingly any direction called for, whether portraying an elite wrestling machine or a goofy whitebread babyface.  Held nearly every title he was eligible for in both WWE and TNA (as well as a run with the splintered IWGP Heavyweight Title) while putting on consistently strong matches with virtually any opponent, and has already deservedly claimed a spot in the TNA Hall of Fame (inductions to the WWE and Professional Wrestling Halls of Fame will no doubt be forthcoming)."
Rating: 10.0
Sentiment: 0.3726190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Chak95wrote on 19.08.2016:[9.0] "Kurt Angle for me is one of the top 3 greatest in ring performers in WWE history, and the second best technical wrestler, and he was very good on the mic too, i rarely watched him in TNA so i rate him only for his WWE run."
Rating: 9.0
Sentiment: 0.46375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Devitciiuwrote on 30.07.2016:[6.0] "Kurt's mic skills significantly detracted from how I view him as wrestler but that's not my only problem with him. In ring, he could go for sure but while his athleticism was incredible, his story telling always suffered as a result."
Rating: 6.0
Sentiment: 0.44375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ErycK24wrote on 15.07.2016:[10.0] "In my opinion, Kurt Angle is one of the most intense wrestlers in history. Angle can be a great face and even better heal. In the conversation of the greatest wrestlers of all time I feel that Angle should be more in the conversation than he is."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: NHJ2190wrote on 22.06.2016:[10.0] "Für mich der größte Skandal dass die WWE Kurt Angle gehen lassen hat. Der Mann hatte einfach alles. Charisma bis nach Meppen. Im Ring zweifelsohne einer der besten aller Zeiten. Weltklasse Matches am Fließband in denen er häufig durchschnittliche Wrestler zu Topleistungen gezogen hat. War als Face wie auch als Heel absolut erträglich und hat aus jeder seiner Fehden das beste herausgeholt. Ich vermisse ihn immer noch und hoffe inständig dass es nochmals zu einem Mania Match kommt zwischen ihm und The Beast Brock Lesnar."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Sick Lebowskiwrote on 13.06.2016:[10.0] "Gehört für mich zu den ringstärksten Wrestlern des Planeten, vorherige Goldmedaillen-Ringerkarriere sei Dank. Hat auch sehr viel Charisma und wirkt sowohl als arroganter, fieser Heel als auch in Comedy-Skits sehr gut. Top-Mann!"
Rating: 10.0
Sentiment: -0.8928571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Chosen Onewrote on 09.06.2016:[10.0] "Kurt Angle is very good in the ring. He can do really anything. He is a great Technician and brawler. Angle has had some of my favorite matches with Shane McMahon, Brock Lesnar, and many, many more. His gimmick in WWE as a gold medalist was very good and the stable with the Worlds Greatest Tag Team was very good."
Rating: 10.0
Sentiment: 0.673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: EGeraldhuebnerwrote on 30.04.2016:"Kurt Angle - Wrestling Machine ... oder auch "gilt als Ric Flair der Neuzeit, weil er es schafft selbst gegen schwächere Gegner sehenswerte und gegen gute Wrestler fantastische Matches in Serie zu zeigen", - tja, das kann ich nur unterschreiben. Ich wurde aber sogar noch weiter gehen und ihn direkt mit Chris Benoit vergleichen. Beide sind bzw. waren nicht sehr groß, aber durchtrainiert und beide hatten alles, was man für das Wrestling braucht. Damit meine ich aber weniger reines Schowtalent, oder Begabung zum Entertainer, denn hier lag Angle eindeutig immer vor Benoit. Sondern einfach die ringerischen Vorraussetzungen. Wie kleine Terrier verbissen sie sich in ihre jeweiligen Gegner und selbst die "WoW - Momente" dabei waren nie besser oder schwächer. Ich gehe sogar soweit, zu sagen, von beiden habe ich noch nie in ihrer Karriere schlechte Matches gesehen. Man muß dafür allerdings auch die Catcher Variante bevorzugen. Denn nur Posing, viel labern oder Geschichten verkaufen, das können andere bereits genug. Zu Angle ist klar, er hat auch schauspielerische, komödiantische Fähigkeiten. Benoit fehlte das leider sehr. Ich wünsche ihm jedenfalls noch viele Erfolge, denn alles, was er bisher schon erreicht hat, war eindeutig verdient. Und das ist selten der Fall."
Rating: No rating found
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Mean Smark Callouswrote on 16.04.2016:[9.0] "Legit Olympic Gold Medalist. Very exciting performer, saw him do a superplex off the top of a steel cage once to thunderous (for a TNA crowd) HOLY SHIT chants. Makes a much better heel than face IMO. One of the greatest Wrestlers who may never be in the WWE HOF. Not that he doesn't belong of course. But you know how Vince is. I dunno, we will see."
Rating: 9.0
Sentiment: 0.3129166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Zedwrote on 17.03.2016:[10.0] "Technisch wohl einame Spitze gwesen, heutzutage alters und verletzungsbeding nur noch auf Sparflamme unterwegs, aber das ist ok. Charismatisch war er auch, er konnte sogar über sich selbst lachen, nahm sich selbst oft auf den Arm. Eine Ausstrahlung wie kaum ein zweiter, verkaufte Matches, brachte alles gut rüber was er konnte. Einfach ein glaubwürdiger Charakter. SO sollten Wrestler sein, so und nicht anders. Legendärer Mann."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MAGICIANwrote on 29.02.2016:[10.0] "Kurt Angle kann von seriös bis Comedy alles, Kurt Angle kann im Ring alle Stile und hat ein Moveset, mit dem man ein ganzes Roster füllen kann. Dazu charismatisch, sehr gut am Mic und technisch wenn nicht sogar der beste aller Zeiten zu seiner Prime. Unfassbar guter Wrestler, unfassbar guter Superstar. Bitte was kann Kurt Angle nicht?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheLoudMouthwrote on 18.02.2016:[8.0] "Bei Kurt Angle ist eine Bewertung sehr schwierig. Klar gehört er zu den Top-Wrestlern der Welt, und am Mic ist er auch nicht gerade schlecht, aber er hat mich im Ring eher gelangweilt und nie in seinen Bann gezogen. (Bewertung 5. 0 vom 11. 04. 2010) --- UPDATE: Aufstufung auf 8 Punkte. Angle konnte mich zwar weiterhin nicht flashen, aber fünf Punkte sind für einen Top-Performer wie ihn einfach nicht nachvollziehbar."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Mantafahrerwrote on 27.01.2016:[10.0] ""Kurt Angle ist einer der schlechtesten Wrestler aller Zeiten, er hat kein Talent" oh mein Gott, solche Bewertungen sind hoffentlich Satire. Kurt Angle war die Ruthless-Aggression-Era, war und ist nach wie vor ein eiskalter Profi und ist einer der, wenn nicht sogar DER beste Pro-Wrestler aller Zeiten. Wenn der Mann kein Talent hat, dann gibt es keinen talentierten Wrestler auf der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Phenomenal91wrote on 24.12.2015:[10.0] "THE best wrestler to come from an amateur/collegiate background. We had some great amateurs/collegiates that turned pro, but NONE of them were ever as consistently entertaining as Angle. Of course he was a genius in the ring, capable of taking on every wrestler of every style. But he could also be comedic or dramatic with ease. Personality and mic skills were never a problem for Angle. He's done more in one career than most get to do in two or three. It appears as though, after suffering numerous career threatening injuries, he's finally going to finish his career. It's one to be proud of. Wrestler of the Decade? It's true. It's DAMN true."
Rating: 10.0
Sentiment: 0.3805555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Penkerwrote on 19.12.2015:[10.0] "10 Punkte vergebe ich nur selten. Aber bei Kurt Angle bleibt mir nix anderes übrig. Mir fällt eigentlich nicht wirklich jemand ein, der besser ist als er. Sowohl die In-Ring-Fähigkeiten als auch die Mic-Skills lassen kaum Raum zur Kritik. Er hat soviele Top-Matches gezeigt und hatte soviele große Momente in Promos. Ich war nie ausgewiesener Angle-Fan, aber was anderes als 10 Punkte kann ich guten Gewissens nicht geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Y2J316wrote on 16.10.2015:[10.0] "Kurt Angle für mich ist der beste reine Wrestler aller zeiten. Seine Matches waren einfach immer 5-Star. Sein comedy gimmick anfang der 00er war pures gold. Schade das er nicht mehr in der wwe ist. Hoffe es kommt noch zu einem letzten run. Oh its true its damn true. (Alte Wertung vom 28. 09. 14) @Sascha Legendkiller was fürn Armleuchter bist du denn? 2 Punkte mit ner Begründung das er kein Talent hat? Der Typ kann was wenige können, und das ist Matches verkaufen bzw. Spannung aufbauen. Er könnte selbst Hornswoggle zu einem 5 Sterne Match reißen. 2 Punkte zu vergeben lässt darauf schließen das du 1 oder 2 Arschtritte zu viel gekriegt hast...."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sascha Legendkillerwrote on 16.10.2015:[2.0] "Kurt Angle ist einer der schlechtesten Wrestler aller Zeiten und wurde zu sehr überbewertet. Da hilft auch seine Goldmedallie von den olympischen Spielen von 1996 nicht Ich habe zwar auch nie gemocht( unter anderem auch wegen seinem Angriff auf Maria. ), aber das tut nichts zur Sache Kurt Angle hat einfach kein Talent. Etwas Kraft und das war alles."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: mdrecordswrote on 30.08.2015:[10.0] "A legend of the business Kurt Angle is one of, if not the best wrestler ever. Amazing technician who has had so many classic matches. His character has stood the test of time and has always been a great heel or face. Excellent on the mic and with his promos Kurt's passion seaped through his character and transformed him into a superstar of the wrestling world."
Rating: 10.0
Sentiment: 0.6777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ShooterMcShootwrote on 11.08.2015:[10.0] "He really should retire now for the sake of his own health, but Kurt is a great worker who could cut a serious promo or a comedic promo. He was the complete package. He could be a face or a heel. One of the most talented workers of the last 20 years."
Rating: 10.0
Sentiment: 0.32083333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RooneyDXwrote on 30.06.2015:[10.0] "bin kein großer Fan von ihm aber er hats halt drauf und zwar so gut dass er eigentlich die Streak 2006 hätte beenden können so wie Undertaker es wünschte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: reene82wrote on 27.06.2015:[10.0] "Wenn mann seine beste Zeit betrachtet kann mann dem nur ne 10 geben. Ein Tier vor dem Herrn. Ein Kraftpaktet ohne Gleichen. Ich wette der hätte Anfang-Mitte der 2000er aus der Kalten gut 50 Klimmzüge oder mehr schaffen können. Mit dem sportlichen Hintergrund absolut dazu geeignet jeden zu einem gutem Match zu ziehen. Ein Weltklasse Athlet. Am Mic auch völlig in Ordnung, wenn nich sogar überdurchschnittlich. Ich mag den einfach."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: PWCwrote on 21.06.2015:[9.0] "People watch wrestling to see professionals wrestle and not amateurs and Kurt Angle was no amateur. Kurt Angle was great. The crowd chanting "You Suck! " in cue to his theme song was great. I would give him a 10 but, I don't remember him really doing anything of note during his time in TNA. That whole cheating angle between him, Karen Angle and Jeff Jarrett was awful."
Rating: 9.0
Sentiment: 0.22083333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Triple Hwrote on 16.05.2015:[10.0] "Kurt Angle ist einer der besten Wrestler der Welt. Wer das abstreitet hat keine Ahnung vom Wrestlingsport. Durch seine Freistil Ringer Erfahrung vor dem Wrestling natürlich auch irgendwie prädestiniert diesen Sport zu betreiben. Seine Zeit in der WWE war die beste in seiner Karriere und ich bin mir sicher, das er irgendwann auch in die Hall of Fame der WWE eingeführt wird. Besonders in Erinnerung ist mir sein Match mit Brock Lesnar geblieben, welches noch nicht einmal sein bestes war, aber dort konnte man sehen wie perfekt zwei Ringermaschinen im Ring agieren können. Allerdings muss man auch erkennen, das sich seine aktive Zeit dem Ende neigt. Das, was ich in letzter Zeit von ihm im Ring bei TNA sehe, ist ein Kurt Angle, der nur noch auf 50% läuft, bzw. nur noch auf 50% laufen kann, weil er durch seine früheren Verletzungen doch schon stark gelitten hat. Gerade im HWS Bereich musste Angle stark einstecken und er will es auch sicherlich nicht mehr riskieren noch einmal einen Rückschlag zu erleiden. Er sollte mit Würde abtreten, bevor es ein all zu krasses gesundheitliches Ende nimmt. Es würde mich freuen ihn zum Ende seiner Karriere noch mal in der WWE zu sehen, es muss nicht als aktiver sein sondern könnte auch die Rolle als General Manager bei Smackdown oder RAW sein."
Rating: 10.0
Sentiment: -0.14519230769230768
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wazzerwrote on 06.05.2015:[10.0] "Watching him in the ring actually gets me excited, because he's so accurate and precise, it's mesmerizing. His matches have a shoot kind of feel to them, and you just know if he wanted to, he could pin you to the mat no problem, but he's a great worker too. 10 points simply because his in ring skill will never be seen in the business again"
Rating: 10.0
Sentiment: 0.359375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MusSanwrote on 05.05.2015:[10.0] "Der Typ ist und bleibt eine Legende. Seine Zeit bei der WWE fande ich richtig klasse. Bei TNA finde ich ihn auch klasse."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: eldenaaaaawrote on 28.02.2015:[10.0] "Does he really need a summary? Fine. Held every belt in WWE & TNA, former IWGP Third Belt Champion, 5 star matches with some of the biggest names and a technical genius."
Rating: 10.0
Sentiment: 0.12333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Le Wrestling Fanwrote on 11.01.2015:[1.0] "Angle is a great wrestler, or he used to be. Don't get me wrong, I respect the man, but I think his time is up, and the rest's time has come. It's time for a newer generation of younger, hungrier athletes. He looks old now, and after all the injuries, honestly, it's time to retire. We will remember Angle, and I wish him good luck in his possible last year. Again, don't get me wrong."
Rating: 1.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TRMBwrote on 26.12.2014:[10.0] "Einer der besten Wrestler aller Zeiten. Angle wusste immer zu überzeigen ob als nerviger "Ich bin ein Olympia Held"-Heel oder einfach als "Ich bin der Beste, lebt damit"-Heel oder als "American Hero"-Face. Angle versteht es wie kein anderen jeden Gegner stark aussehen zu lassen ohne seine eigene Stärke zu verlieren."
Rating: 10.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Matzinhowrote on 23.10.2014:[10.0] "Das Faszinierende an Angle ist doch, dass er trotz seiner ringerischen Brillianz ein Komplettpaket als Wrestler und Entertainer ist. Dieser Typ ist unterhaltsam, charakterstark, ist in unzählige Rollen geschlüpft, ist kein Genie am Mikro aber doch ausdruckssicher und er hat einen guten, glaubhaften look. Vor allem ist er als reiner Wrestler meines Erachtens ohne Vergleich. Niemand wrestled so realistisch und glaubwürdig wie Angle und hat trotzdem noch die Fähigkeit, ein Match unterhaltsam, dramatisch, episch zu inszenieren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Bloodywrote on 19.10.2014:[10.0] "Kurt Angle ist das beste, was professionelles Wrestling zu bieten hat. Nicht nur seine Technik ist überragend, nein auch seine Fehden beweisen das er der beste ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RavenEffectwrote on 29.07.2014:[10.0] "Kurt Angle is everything pro wrestling should be proud about. The man, who has defined exellence in ring work. The man, who has deserved all success in his career. The, man who is one of definitions of the perfect all-around talent, as Angle could do everything and work with anybody with anykind of style, like high-flying, technical or brawling styles, and could really work both as a heel or face."
Rating: 10.0
Sentiment: 0.41666666666666674
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Man of Steelwrote on 03.07.2014:[10.0] "Eigentlich DAS Gesamtpaket dieser Tage, ich frag mich nur was zwischen ihm und Vince schief gelaufen ist denn bei den Trotteln von TNA ist er einfach nur verschwendet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SimonSoSwrote on 27.05.2014:[10.0] "Kurt Angle ist einer der besten Wrestler aller Zeiten. Jedes seiner Matches ist einzigartig und zeigt, dass er ein kreativer Allrounder ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: superpuroresuwrote on 24.05.2014:[10.0] "One of the greatest workers in American pro wrestling history , his matches with Shawn Michaels , Chris Benoit , Stone Cold Steve Austin , Samoa Joe are classics , his intensity , workrate , consistency is what makes him so special."
Rating: 10.0
Sentiment: 0.18928571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Big Gunzwrote on 15.04.2014:[10.0] "An all around amazing wrestler. Excellent in the ring, great on the mic & is one of the best ever."
Rating: 10.0
Sentiment: 0.68
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Viper99wrote on 04.04.2014:[10.0] "Er ist einer der besten die es jemals gab. Er kann jeden Wrestling Stil und hat dadurch auch 5* Matches gegen Shawn Michaels, Rey Mysterio und Brock Lesnar gezeigt. Ich hoffe er kommt irgendwann in die WWE Hall of Fame denn das hatt er sich einfach verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Jack Slaterwrote on 03.03.2014:[10.0] "Ich schaue kein TNA, daher weiß ich nicht wie gut er noch ist - von dem was ich kenne halte ich es für unmöglich weniger als 9 zu geben. Ich mag einfach die Ex Ringer die auch in diesem Stil wrestlen. Angle ist das Musterbeispiel für einen Top Wrestler. Er kann im Ring alles was man braucht und hat von Natur aus riesiges Charisma. Sein Heel Run und die "U Suck" Rufe haben sich unglaublich in mein Gedächtnis gebrannt und seine Matches mit Lesnar waren ganz ganz großes Kino (da trafen 2 meiner All Time Favorites aufeinander und tja, ich bin auch nur ein Mark :D)"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jay arewrote on 16.02.2014:[10.0] "Kurt has put on some absolutely fantastic matches throughout his career and can even perform at a high level still. I don't think there's any better as far as in ring work goes, he's done it across numerous promotions for a number of years."
Rating: 10.0
Sentiment: 0.23200000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: WrestleArtswrote on 15.12.2013:[10.0] "Einer der besten Wrestler unserer Zeit, ein Total Package. Toll im Ring, kann jeden Style mitgehen, stark am Mic, gute schauspielerische Qualitäten. Auch ein toller Ringer, unglaubliche Kondition und technisch sehr stark. Ist ohne Gewicht abzukochen im Schwergewicht angetreten, und wurde trotz körperlicher Unterlegenheit Weltmeister und gewann die Goldmedaille."
Rating: 10.0
Sentiment: -0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ADoublewrote on 30.11.2013:[10.0] "Without a doubt, Kurt will go down in history as one of the greatest of all time. He's had no end of incredible, classic matches throughout his career, especially the matches he had with Samoa Joe, Chris Benoit, and Shawn  Michaels. He was also extremely entertaining in his WWE run, and was definetely one of the funnier main eventers they ever had who could switch on a dime to a deadly serious killer of an athlete. He appears to be slowing down and is likely beginning to be too beat up and old to keep going much longer, but he's had an incredible career to look back on."
Rating: 10.0
Sentiment: 0.23492063492063495
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Undertalkerwrote on 14.11.2013:[10.0] "Er ist, egal ob bei WWE oder TNA, im Ring einfach spitze und versteht es wie nur wenige, Dramatik und Spannung ins Match zu bringen. Er opfert sich wirklich fürs Wrestling auf, ist perfektionistisch und daher wohl auch äußerst selbstkritisch. Diese Eigenschaften führten bereits dazu, dass er gesundheitlich angeschlagen ist. Bei diesem Ehrgeizling hat man Angst, dass ihm irgendwann mal was Schlimmeres widerfährt. Hoffentlich lernt er es noch, sich auch mal zurückzunehmen, sodass er noch eine Weile in einen Wrestlingring steigen kann, uns weiterhin mit tollen Leistungen erfeut und es ihm auch noch im fortgeschrittenen Alter gutgeht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RawIsJerichowrote on 17.10.2013:[10.0] "The man is a machine, simply one of the best technical wrestlers to ever perform."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HighlightHEELwrote on 19.09.2013:[10.0] "Technisch, auch aufgrund seines Backgrounds, mit der beste Wrestler aller Zeiten. Im Ring kann ihm bis heute kaum jemand was vormachen, einer der wenigen Menschen, wegen dem ich mir einzelne TNA-Matches anschaue (man sieht aber auch, dass er langsam älter wird). Seine großen Matches lassen sich gar nicht alle aufzählen, Auseinandersetzungen mit Michaels, Lesnar und weiteren sind zu nennen. In seiner WWE-Zeit nahezu immer im und um den Main Event zuhause, einfach ob seiner Qualitäten, die sich auch im Unterhaltungsgrad (der Mann konnte wirklich lustig sein! ) niederschlugen. Am Mikro in oberen Gefilden, wenn auch recht weit entfernt von den besten Rednern im Business. War mir immer zutiefst sympathisch, sein Abgang aus der WWE 2006 war etwas, was mich wirklich geärgert hat. Ich habe ja noch immer die leise Hoffnung, dass er irgendwann noch für ein paar Matches zur WWE zurückkehrt, und werde diese wohl erst aufgeben, wenn er wirklich Schluss macht. Einer meiner Lieblinge, oh itŽs true!"
Rating: 10.0
Sentiment: 0.32291666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[9.0] "Einer der Besten überhaupt! Hatte tolle Matches mit Undertaker, Benoit, HBK, Lesnar u. v. m. und ist eines der Lichter am dunklen TNA-Himmel, allerdings derzeit nicht aktiv (Reha o. ä. ). Für TNA und seine "Selbstzerstörung" gibt es Punktabzüge. Niemand ist perfekt, selbst ein Goldmedaillenträger nicht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HammertonWaywrote on 23.08.2013:[10.0] "What needs to be said about this man. Kurt Angle is one of the greatest wrestlers of all time and nothing will ever change that."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: voicelesswrote on 19.08.2013:[10.0] "Seine Ringstil ist eine Augenweide. Ich liebe es diesem Wrestling-Genie zuzusehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sir Vida Loca IIIwrote on 10.07.2013:[7.0] "Kurt Angle war einer der besten Wrestler aller Zeiten! Leider hat er in den letzten jahren abgebaut, was auch sein "geschundener Körper" meiner Meinung nach deutlich zeigt. Am Mic war er durchaus unterhaltsam, kann in dieser belange jedoch nicht an die großen (Y2J, Rock, Punk) heranreichen. Bis vor 2-3 Jahren hätte er trotzdem, allein aufgrund seiner Ringskills 10 Punkte bekommen, da er da aber wie erwähnt nachgelassen hat bekommt er noch 7 (gute) Punkte."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HooliNerdwrote on 10.04.2013:[8.0] "Der echte Ringer der sich in der Wrestlingwelt gefunden hat und dieses Buisness lebt. Egal ob bei der WWE oder bei TNA. Er ist ein Original."
Rating: 8.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sentenzawrote on 02.04.2013:[10.0] "Shoot Kommentare hin oder her, Angle ist auch heute noch einer der Besten technischen Wrestler die es gibt, schafft es aus jedem Gegner das Beste rauszuholen und mir bleiben seine Kämpfe gegen Benoit, HBK, Lesnar, Guerrero oder Samoa Joe in Erinnerung. Ich hoffe wirklich das man ihn irgendwie nochmal in der WWE sehen wird, wenn ich an Matches gegen Bryan, Punk oder Ziggler denke werde ich ganz heiß darauf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Leonewrote on 21.03.2013:[10.0] "He is a shell of his former self, age has caught up with him and the injuries have unfortunately piled up, but he is still an excellent wrestler.  In his prime, he was probably the best technical wrestler in the world, and only a handful of others in the history of pro wrestling could rival him on that.  To go along with his incredible technical skill, he is also very strong for his size, excellent at selling and storytelling, a great risk taker, and on the mic he is brilliant, particularly when he played an over-confident, yet goofy heel who liked to liked to act superior and put down hometown sport teams everywhere he went, it was great!  He is at a stage in his career where he has nothing left to prove - and very few wrestlers who started at 29/30 could say the same thing."
Rating: 10.0
Sentiment: 0.4006565656565657
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: JuliTheCage87wrote on 13.03.2013:[10.0] "Der beste Wrestler aller Zeiten. Vor allem in der WWE erstaunte er das Publikum ein um's andere Mal in FIGHTS gegen Brock Lesnar, Big Show und zahlreiche andere Gegner. Langsam sollte er seine Karriere jedoch beenden, bei TNA baut er zurzeit ganz schön ab...."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: 8BitLegendwrote on 11.03.2013:[8.0] "Kanns immer noch. Aus dem TNA Main Event kaum wegzudenken, auch wenn ich das Comedy Element der frühen WWE-Zeit etwas vermisse. Würde heute aber auch nicht mehr so passen, da sein Real Life einiges an Tragik zu bieten hatte und man ihm den verbissenen Sportler daher mehr abnimmt."
Rating: 8.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: dudemanbearpigwrote on 10.03.2013:[9.0] "Kurt Angle may be a half-crippled steroid freak, but he's a wrestling machine. He really brings the intensity in big matches."
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Bowlenwrote on 27.02.2013:[10.0] "Für mich der wahre "Best in the World", da er nicht nur im Ring fantastisch ist und trotz aller Verletzungen nur leicht abgebaut hat, sondern auch immer funktioniert - ob nun als Face, ernster Schurke oder als Comedy-Heel. Zudem kann man bei ihm auch nicht von einem Ex-WWE'ler sprechen, der sich im etwas unstressigeren Nest TNA niedergelassen hat. Er hat sich immer mit der Company identifiziert und dort geholfen, wo er wie auch immer gebraucht wurde. Ich würde ihn liebend gerne in der TNA HoF sehen, bin ihm aber auch nicht böse, wenn er nach Vertragsende nochmal für einen kurzen Run zur WWE geht und dort eingeführt wird, schließlich hatte er in Stamford sechs gute Jahre, als man das Produkt noch gut schauen konnte. It's true..."
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Diggertakerwrote on 14.02.2013:[10.0] "A wrestling and a submission machine. A legend that wrestling needs."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: downtown2wrote on 14.02.2013:[10.0] "Der kompletteste Wrestler aller Zeiten. Perfekter Techniker, innovativer Highflyer, er funktioniert als ernsthafter Heel und als Comedy Heel, sowie als Face. Er macht jeden Gegner im Ring besser und hat noch nie auch nur einen schlechten Kampf abgeliefert. Selbst am Mikro ist keine Schwäche zu erkennen, wo er ebenfalls annähernd so versiert ist, wie im Ring. Sein Ehrgeiz und seine Entschlossenheit sind kein Schauspiel, sondern immer voller Ernst, ein absoluter Profi. Großes Charisma erschließt sich daraus, allerhöchstens in diesem Punkt noch von Shawn Michaels übertroffen, ansonsten als Gesamtpaket konkurrenzlos. EDIT: Langsam wäre es an der Zeit aufzuhören, bevor die ruhmreiche Karriere Kratzer bekommt, wie bei Flair oder Funk, denn an die Topleistungen vergangener Jahre kommt er mittlerweile nicht mehr ran. Die Knochen werdens ihm danken."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Cobrawrote on 14.12.2012:[10.0] "I have never been a huge fan of the Kurt Angle character. But man can he wrestle. I always look forward to seeing any of his matches as he brings out the best in everyone."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Titanwrote on 04.10.2012:[10.0] "Kurt Angle zählt auf jeden Fall zu den am versiertesten Wrestlern im Wrestling-Zirkus. Im Ring ist er technisch immer ganz fein, am Mic ist er auch unterhaltsam und er hat auch die Gabe, eine Geschichte gut zu erzählen und sie somit zu verkaufen. So etwas findet man nicht alle Tage!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wolkywrote on 20.09.2012:[10.0] "Kurt Angle. Was kann man groß sagen, einer der Besten aller Zeiten. Großartig im Ring, ganz eigener Stil und technisch einfach perfekt. Am Mic gut, toller Schauspieler, charismatisch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Fahqallwrote on 30.08.2012:[10.0] "Es gibt keine positiven Dinge mehr, die hier noch nicht genannt wurden... unbestritten der Beste ever!  Und selbst nach recht langer Überlegung fällt mir kein Kritikpunkt ein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LM Punkwrote on 30.08.2012:[9.0] "Super Techniker, aber um 10 Punkte zu erhalten fehlt irgendwie was."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DaNiwrote on 17.07.2012:[10.0] "Kurt Angle gehört für mich zu den größten Wrestlern aller Zeiten.  Ein technisch herausragender Worker mit genügend Kraft und Masse um bein den Großen mitzuhalten.  Er überzeugt als Face und Heel.  Gerade in den Jahren 2002 und 2003 war er für mich das Aushängeschilder der WWE Company.  Ich würde mir wünschen, ihn wieder bei der WWE zu sehen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Booker Cwrote on 02.06.2012:[8.0] "Der RVD Effekt hat Angle mittlerweile eingeholt. Seine Matches sind zwar immer noch gut, doch sie wiederholen sich ständig. Darum stellt Angle für mich nicht mehr einen der momentan besten Wrestler der Welt dar. Das ist aber auch verständlich, wenn man sich mal sein Alter und seine diversen Verletzungen vor Augen hält."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Rated R means Attitudewrote on 01.06.2012:[10.0] "Seine In Ring Leistungen sind grandios, immerhin war er ja auch Olympiasieger. Die Umstellung von der olympischen Disziplin zum Entertainment war für ihn kein Problem, war er doch nicht lange nach seinem Debut schon WWE Champion. Seine Leistungen haben auch bei TNA nicht nachgelassen und da er auch am Micro überzeugt gibt es 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Eclipsewrote on 22.05.2012:[10.0] "Im Ring wahrlich einer der besten, wenn nicht der Beste aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: VanderVaartwrote on 24.04.2012:[8.0] "Als ehemaliger Olympiasieger schaffte er es schnell in die wichtigsten Kämpfe. Die Umstellung ist ihm nicht anzumerken. Redetalent ist super, egal ob er nun Comedy (Rap) zeigen soll oder es um alles geht. Bei Houseshows scheint er sich aber etwas schonen zu wollen, da er zu viele Comedyelemente einbaut."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DragonSleeperwrote on 21.04.2012:[10.0] "Muss man die 10 Punkte wirklich begründen? Einfach einer der besten Wrestler aller Zeite der noch jetzt nach den vielen jahren geniale Matches aus sich rausholt. Schade dass er nicht zu Olympia kann, das wäre mal interessant gewesen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: alewrote on 14.04.2012:[10.0] "Vieleicht der beste Wrestler aller Zeiten, dazu noch charismatisch und ein extrem guter Heel. Konnte aber auch als Face überzeugen (Invasion Storyline). Bringt also alles für eine 10 mit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: NoHomewrote on 20.03.2012:[9.0] "Zu WWE Zeiten für mich eine absolute Legende. Es hat einfach alles gepasst. Ring In technisch einer der Besten keine Frage.  Mic Skills hervorragend. Und auch sein Hang zur Selbstironie fand ich sehr unterhaltsam.  1 Punkt Abzug muss ich geben da ich ihn bei TNA nicht mehr verfolge"
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kid Rockwrote on 09.03.2012:[9.0] "Der Gimmick-Zusatz "Wrestling Machine" ist bei ihm Programm; Kurt Angle ist ein brandstarker Athlet, der selbst jetzt, nach 12 körperlich enorm fordernden Jahren, zahlreichen Nacken-Verletzungen und nicht mehr ganz jungen 43 Jahren, immer noch wie kein zweiter in der Lage ist absolut mitreißende und enorm intensive Kämpfe auf die Beine zu stellen, egal ob es sich bei seinem Gegner um einen Weltklasse-Athlet oder einem Besenstiel handelt. Neben den unbestreitbaren In-Ring-Fähigkeiten kommen noch eine Menge Charisma und schauspielerisches Talent, die Angle sowohl als harten Hund, wie auch als nerdige Comedy-Figur mit augenzwinkerndem Hang zur Selbstironie absolut glaubhaft rüberkommen lassen dazu. Ein besseres Komplettpaket wird man im amerikanischen Wrestling kaum wo anders finden und ich persönliche habe mich durch Angle immer blendend unterhalten lassen, so dass ich auch gewillt bin, ihm den einen oder anderen realitätsfremden Kommentar aus der Vergangenheit, gerade in Richtung WWE zu verzeihen. Zugleich hoffe ich aber auch, dass der Mann den deutlichen Raubbau an seinem Körper reduzieren kann um nicht eines Tages im Rollstuhl zu landen und stattdessen gesund und glücklich auf eine unvergleichliche Karriere zurückblicken zu können, die in der Tat eine der unterhaltsamsten und abwechslungsreichsten im Pro-Wrestling darstellt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Randy Owrote on 13.02.2012:[10.0] "Für mich gehört er zu den Besten 5 Wrestler auf dieser Welt. Ein jammer das er nicht auf dem Level gekommen ist wie ein Steve Austin oder ein The Rock. Verdient hätte er es auf jeden fall. Das einzigste was mir auch nur teilweise nicht an Kurt gefällt sind seine Gimmicks. Bsw, das im Jahre 2006 bei WWE, das hätte nicht sein müssen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KoZywrote on 07.10.2011:[10.0] "Der meiner Meinung nach beste Wrestler aller Zeiten. Sowohl Face als auch Heel überragend, wobei er als Heel am besten rüberkommt. Am Mic auch sehr gut. Unzählige geniale Matches bestritten. Schade, dass er durch seine Verletzungen so oft gebremst wurde."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: what89wrote on 06.10.2011:[10.0] "Einer der besten Techniker.  Mic-Work genial.  Unzählige unfassbar geile Matches.  Für mich einer der grössten Wrestler überhaupt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sirius Van Grathwrote on 03.10.2011:[10.0] "Ein wirklich großartiger Ringtechniker! Das erste Match, dass ich je sah war das Ironman Match gegen Lesnar und beide haben mich sofort überzeugt. Vorallem Angle, weil er einfach einer der besten Submission- und Technik-Wrestler aller Zeiten ist!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Brainbreakerwrote on 30.09.2011:[10.0] "Wenn es sonst schon wenig Gründe gibt, TNA einzuschalten, dann ist doch wenigstens Kurt Angle einer davon. Sicher könnte ich mich hier auslassen, dass er trotz seines übergroßen Talents nie der ganz große Superstar bei WWE geworden ist. Das ist aber auch egal. Jericho war es auch nie. Stattdessen muss ich sagen, dass Angle mich immer unterhält, wenn er im Ring ist. Ein Garant für starke Matches jedweder Art. TNA weiß ihn immerhin an die Spitze zu setzen, auch wenn mich seine Storys net jucken; bei WWE hatte er jedoch die besseren: Unvergessen die Schlachten gegen Austin, Lesnar, Taker oder Michaels, weil sie doch in der WWE besser eingebettet wurden. Das waren noch Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Bananaramawrote on 09.09.2011:[8.0] "Eins vorneweg, ich finde ihn bei weitem nicht so gut wie er häufig gemacht wird. Er war im Ring sicher ganz ordentlich, hatte einige gute Matches, am Mic war er nicht schlecht, aber ... ich kann ihm nicht so wirklich was abgewinnen. Schon alleine sein In-Ring Stil fand ich ziemlich langweilig."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Rated R Punkwrote on 06.09.2011:[10.0] "Kurt Angle ist wohl einer der Top Superstars der WWE, der aber leider (vorallem 2004 in der Fehde gegen Big Show) zu oft als lächerlich dargestellt worden ist (was denke ich der Grund ist wieso er trotzdem nicht so hoch im Kurse ist wie z. B ein Shawn Michaels) Seine Ring Leistungen sind umstritten ganz klar! Er ist der beste Techniker auf diesen Planten finde ich, und auch in anderen Bereichen kann er überzeugen (z. B als Hardcore Wrestler rund um 2006) am Mic glänzt Kurt durch Perfektion wie ich finde vorallem in Comedy Segments (I make your ankle hurt :D)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Franjisewrote on 17.07.2011:[10.0] "Ehrilch gesagt überrascht es mich, dass Kurt Angle insgesamt hier keine höhere Wertung erhält. Denn Kurt ist ein Wrestler wie er im Buche steht. Über seine In-Ring-Skills kann es gar keine zwei Meinungen geben, Angle ist im Stande, so gut wie jeden Wrestler zu einem guten bis sehr guten Match zu ziehen. Und was den Entertainmen-Faktor angeht, stielt er auch vielen die Show. Der ehemalige (und zukünftige? ) Olympionike verfügt über großartiges schauspielerisches und vor allem komödiantisches Talent und überzeugt am Mikrofon auf ganzer Linie. Keine Frage, Kurt Angle verdient 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: NHJ2102wrote on 11.07.2011:[10.0] "Einer der unglaublichsten Wrestler die es je gab. Unterhaltung Pur ob im Ring oder am Mic einfach erstklassig der Kerl, würd ihn gerne wieder bei der WWE sehen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: WWE4evermaybewrote on 11.07.2011:[10.0] "Tja, was soll man zu ihm noch sagen? Einer der besten Wrestler der Welt. Wahnsinniger Kraftaufwand, na gut, er ist ja ehemaliger Ringer. Sein German Suplex sieht immer fantastisch aus. Der Ankle Lock Kult. Schade, dass er nicht mehr für die WWE wrestlet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: UndertakerChriswrote on 08.07.2011:[9.0] "Es dürfte bekannt sein, dass Angle jeden, sei es der Great Khali, John Cena oder sonst jemand, einfach jeden, der im Ring jetzt nicht der spektakulärste ist, spitzenklasse darstehen lassen kann, was natürlich auch an Angles Ringfähigkeiten liegt. Betrachtet man nun seine WWE und seine TNA Zeit, dann sind es doch zwei große Gegensätze. In der WWE noch lautstark mit "you suck" begleitet, ist er bei TNA mehrfacher World Champ und könnte die Firma mit einer Hand allein anführen (als Wrestler natürlich). Wirklich viel möchte ich hier nciht schreiben, nur, dass dieser Mann verdammt viel Respekt für seine harte Arbeit und seine unglaublich genialen Matches verdient. Leider hat es ihn zu TNA verschlagen... obwohl es in der WWE bestimmt keinen Platz für ihn mehr geben würde, aber das ist ein anderes Thema."
Rating: 9.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Donald Duckwrote on 23.06.2011:[10.0] "Kurt Angle ist einer der besten Wrestler aller Zeiten. Leider zerstört er seine Legende in der TNA mit sinnlosen Storylines."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: trlichwrote on 13.06.2011:[10.0] "Gibt ständig 110%. 10Punkte weil 11 nicht zur Auswahl stehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheRock 7 Champwrote on 08.06.2011:[10.0] "It's True, it's damn true! Kurt Angle ist ein grandioser Athlet mit vielen Fähigkeiten. Ob früher in der WWE/F oder heute bei TNAW, ob am Mic oder im Ring, dieser Kerl überzeugt mich immer und immer wieder! Was er zeigt ist wahres Wrestling und was noch dazu kommt ist seine Goldmedalie. Respekt, nicht jeder schafft das! Er ist ein Grund wieso ich TNAW ein wenig verfolge und wieso die Liga noch nicht ganz zu Grunde gegangen ist."
Rating: 10.0
Sentiment: 0.516796875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kykloswrote on 04.06.2011:[10.0] "Kurt Angle gehört für mich im Ring zu den besten fünf Wrestlern und Micworkern seiner Generation.  Zudem kann er auch in den verschiedensten Rollen völlig überzeugen. Sei es in Comedy-Segmenten, als fixierte "Wrestling Machine", als Führungsfigur eines Stables oder als General Manager. Volle Punktzahl für einen der komplettesten Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.05000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jericho is excellencewrote on 25.04.2011:[10.0] "Angle's schier krankhafter Drang zum Perfektionismus ist so beängstigend, dass man sich immer mehr Sorgen um seine Gesundheit machen muss. Auf der anderen Seite ist es genau dieser Perfektionismus, der Angle zu einem der besten und unterhaltsamsten In-Ring Worker aller Zeiten macht. Angle ist ein Tier, eine Wrestlingmaschine. Seine Ausdauer scheint grenzenlos zu sein und seine Matches sind von einer Intensität geprägt die man sonst nur bei Benoit bewundern durfte. Und genau dies lässt einen bangen, da das Wrestling wie Angle es betreibt wohl auch von ihm einige Jahre seines Lebens genommen haben dürfte. Nichtsdestotrotz ist es jedesmal eine Freude ein Match des Olympisches Goldmedaillisten zu sehen. Ausserhalb des Rings ist Angle auch am Mikrophon ein Genie, das, ähnlich wie Rocky, rumalbern und Witze machen kann, genau so wie intensive hasserfüllte Promos halten. Diese aussergewöhnlichen Fähigkeiten machen Kurt zu einem der komplettesten Worker aller Zeiten, der sowohl als Heel wie als Face immer unterhält. Zurecht mehrfacher World-Champion. Angle hätte meiner Meinung nach die Fähigkeiten gehabt ein neuer Rock zu werden und das neue Aushängeschild der WWE zu werden. Schade dass er zu TNA gegangen ist, auch wenn er mit seinen Leistungen dort immer noch begeistern kann. 10 Punkte für dieses Ausnahmetalent. Müsste ich ihn mit einem Wort beschreiben, wäre es: Intensität. Und genau die vermisse ich heutzutage bei den meisten Workern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MICHAELAundMARKUS4EVERwrote on 07.04.2011:[10.0] "Perfektes Wrestling vereint mit viel Charisma. Angle kann von sich behaupten der beste Pure-Wrestler zu sein. Klare 10!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Johnny-Tennerwrote on 05.04.2011:[9.0] "Für mich keine 10 Punkte mehr! Früher wo er noch in der WWE war hat er Matches geliefert an die ich mich heute noch erinnern kann in der TNA verblasst für mich das Erscheinungsbild vom Olympic Hero. Allein die Abänderung seines Themes hat ihn für mich zu einer Witzfigur mit HipHop Musik gemacht. Kurt Angle ist ein guter Athlet sein Mic-Work ist grandios aber irgendwie hat man seit seinen Debut in der TNA zu viel an seinem Gimmick geändert. Ich ignoriere mal TNA Wrestling und geb ihn 9."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: C0nspiracywrote on 27.03.2011:[10.0] "Kurt Angle ist einer der Sorte "Einer aus einer Million. Er ist im Ring und am Mic sowas von glaubwürdig. Sein Wrestling ist das beste das es gibt. Kein anderer beherscht es so gut in puncto Ring Psychologie und Storytelling wie Kurt Angle. Man muss ihn nichtmal mögen um ihn sich anzusehen, jeder der etwas Verstand besitzt muss ihn zumindest im Ring respektiern. Für mich der beste Ring Wrestler ob aktiv oder inaktiv. Its true..."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Michael Shawn Hickenbottomwrote on 14.03.2011:[10.0] "Nach HBK und Jericho einer der ganz großen im professionellen Wrestlinggeschäft! :D"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Y2J Problemwrote on 13.03.2011:[10.0] "Wie schon unter dem "Wissenswertes" Abschnitt gesagt: "gilt als "Ric Flair der Neuzeit", weil er es schafft selbst gegen schwächere Gegner sehenswerte und gegen gute Wrestler fantastische Matches in Serie zu zeigen " 'nuff said!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Matt4Wrestlingwrote on 27.02.2011:[10.0] "Ein wahrer Top-Athlet, der schon alles erreicht hat, was es zu erreichen gibt. Selbst jetzt, in seinem Alter, könnte es noch einmal zum Titel reichen. Top!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: sebi 201wrote on 03.02.2011:[10.0] "Ein perfekter Techniker . Matches gegen Eddie oder Chris Benoit legendär, Sehe sie heut5 noch gerne . Bei TNA immoment in der Storyline gut, aber wird sonst falsch eingesetzt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Showstopper1wrote on 03.02.2011:[10.0] "Als ich 2005 durch Tele 5 wieder zurück zum Wrestling gekommen bin, ist mir sofort Kurt Angle aufgefallen, der mich mit seinem Charisma und seinen wrestlerischen Fähigkeiten im nu begeistert hat. Mein allererster PPV war dann Wrestlemania und das *****Match gegen Shawn Michaels. Dieser Mann ist für mich das Nonplusultra im Professional Wrestling, it`s true, it`s damn true!"
Rating: 10.0
Sentiment: 0.29583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: GamePrincewrote on 27.01.2011:[10.0] "Ich kenne ihn zwar nur durch seine WWE-Karriere, aber die alleine reicht vollkommen aus um eine Wertung von 10 Punkten zu rechtfertigen.  Seine Matches sind teilweise der Hammer und sein Gimmick ... ach, dieser Typ ist einfach ein Monstrum von einem Wrestler. Besser gehts fast nicht!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: cagefighterwrote on 02.01.2011:[10.0] "Einfach einer der besten und perfektesten ( In Sachen gimmick, style) Wrestler die es gibt, gab und geben wird. Kurt Angle war früher ein Vorzeige Athlet, wenn eine Kritiker mal ein gutes Match sehen will. Konnte man eigentlich nix falsch machen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Schmidi2121wrote on 31.12.2010:[10.0] "Für mich einer der besten Wrestler dieser Zeit.  Er hat echt alles was man braucht.  Und Technisch gesehen ist er wahrscheinlich der beste der je einen TNA oder WWE Ring betreten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Woerpwrote on 21.11.2010:[10.0] "Einer der besten Wrestler aller Zeiten. Wer Wrestling liebt muss Kurt Angle Vergöttern. Punkt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Rated R Champwrote on 06.11.2010:[10.0] "Wrestlerrich sicher der Beste unserer Zeit, sein an Besessenheit grenzender Ehrgeiz in allem was er tut, ist zwar manchmal schon beängstigend, verdient aber dennoch größten Respekt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jjchiofalowrote on 06.11.2010:[10.0] "Kurt Angle is the best wrestler in TNA's history. This Olympic legend brings his experience to TNA to form a man that is possibly the best wrestler in wrestling history. Hands down."
Rating: 10.0
Sentiment: 0.46111111111111114
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: stallownagewrote on 03.11.2010:[10.0] "Der wohl kompletteste Wrestler in Nordamerika to date. Als Face sowie als Heel erstklassig und dabei immer unglaublich charismatisch. Im Ring sowie am Mic ein Gott. Haut selbst mit 41 Jahren noch Match of the Year Candidates raus, wie bspw. gehen Anderson bei Lockdown. Eine andere Wertung als die 10 kann es für diesen Mann nicht geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DeutscheMarkenbutterwrote on 01.11.2010:[10.0] "wahrlich ein genialer techniker! seine mic-skills haben sich stets verbessert und als heel auch top!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Marth99wrote on 01.11.2010:[10.0] "Mein persöhnlicher leiblings Wrestler, weil er selbst aus Leute wie Mark Henry ein gutes Match raus holen kann. und weil er der beste Heel ist den die Menschheit jegesehen hat. Dann noch der unglaubliche Moonsault. Seine unglaublich geilen Angle Lock Konter und natürlich sein Matten Wrestling ist legendär"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: GabberGizmowrote on 28.10.2010:[9.0] "Kurt Angle ist ne reine Kampfmaschine ! Immer vollen Einsatz ! Immer 100 % !"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: struppowrote on 28.10.2010:[10.0] "Der Beste den es jemals gab. Es gibt keinen Kompletteren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Homicide187wrote on 18.10.2010:[10.0] "Egal ob in WWE oder in TNA Kurt Angle zeigt immer und mit jedem tolle Matches! Wie viele schöne Matches hat er uns schon beschert und dazu noch sein Gespür und das ganze drum herum. Er hat für mich das beste Gesamtpacket im Mainstream der letzten 10 Jahre."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Ramwrote on 26.09.2010:[9.0] "Als Angle in der WWE war fand ich ihn einfach nur Spitze, wenn ich nur zurück denke an Michaels vs. Angle bei Wrestlemania 21 dann denke ich weniger als 10 Punkte ist nicht möglich. Am Mic hat der Milchbubie was drauf und er strahlte halt mit seiner Athletischen Figur immer etwas besonderes aus. Nicht zu vergessen seine Goldmedalie die sein Markenzeichen war und eigentlich schon ein großen Teil seines Gimicks ausmachten. In der TNA passt er irgendwie einfach so gut hin wie der FC Bayern in der 3ten Bundesliga."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Pyromaticwrote on 17.09.2010:[10.0] "Einer der besten Wrestler und Entertainer aller Zeiten. Wenn er in den Ring steigt, wird man nie enttäuscht. Er lässt selbst die Schlechten gut aussehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MaKnowrote on 25.08.2010:[9.0] "Vor zehn Jahren hat mich Kurt Angle als jemand begeistert, der sowohl sprachlich, als auch im Ring ein absolutes Naturtalent ist. Heutzutage hat er leider viel von seinem Charisma und seiner herrlich selbstironischen Art verloren - ob das nun am Gimmick oder an der Liga liegt weiß ich nicht, jedenfalls hat sich meiner Ansicht nach bereits seit 2005/2006 in dieser Hinsicht ein Abwärtstrend angedeutet. Seine Kämpfe finde ich im übrigen auch längst nicht mehr so stark wie vor sechs oder sieben Jahren. Alles in allem bleibt Angle nach wie vor ein herausragender Athlet, für die zehn Punkte reicht mir seine Leistung aktuell allerdings nicht."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Jack Londonwrote on 18.08.2010:[10.0] "Über ihn muss eigentlich nichts gesagt werden. Tolle Ausstrahlung, tolle Matches. Einer der besten Wrestler überhaupt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Mountiewrote on 18.08.2010:[10.0] "Die schier unendlich lange Liste an Matchguide-Einträgen spricht für sich, hinzu kommt dass Angle eben nicht nur wrestlen kann, sondern auch in Sachen Charisma und Redetalent herausragt. Angle hat es zwar nie zum unumstrittenen Superstar auf Hogan/Austin/Rock-Niveau gebracht, aber das Schicksal teilt er mit genug anderen. Der Drang zur Perfektion, koste es, was es wolle, ist bei Angle aber so übertrieben ausgeprägt, dass es ihm schon zu Lebzeiten den Anschein einer tragischen Figur gibt, um deren Wohlergehen man sich ernste Sorgen machen muss."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: anglejoewrote on 14.08.2010:[10.0] "Kurt Angle ist der beste Wrestler der Welt und auch einer der erfolgreichsten überhaupt. In der WWE gewann er schon 6 World Title und ist der erste und einzige WWE, WCW, World Heavyweight (WWE) Champion und TNA World Champion überhaupt. Hinzu kommt noch die Goldmedallie. Er zeigte mit Benoit, Owen und Bret wohl die besten Matches in der WWE und zeigt ebenfalls jetzt schon tolle Matches bei TNAW. Nicht nur das er ausgezeichnet wrestlen kann, er hat sogar sehr gute Mic-Skills egal ob Heel oder Face."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheRock902102wrote on 04.08.2010:[10.0] "Unbestritten einer der besten im Ring aller Zeiten, neben leuten wie Shawn Michaels und Bret Heart.  Dazu noch sehr charismatisch, super Promos, seine Fehden waren immer erstklassig.  Er fehlt der WWE wie kaum ein anderer."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: triplealexwrote on 22.07.2010:[10.0] "Kurt Angle ist für mich der beste Wrestler im Mainstream Bereich. Er hatte sowohl bei TNA als auch bei WWE einfach geniale Matches und zeigt fast immer wenn er in den Ring steigt eine sehr gute Leistung."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Carnevalewrote on 18.07.2010:[10.0] "Ich finde einen Vergleich mit Indy Leuten wie Danielson immer schwierig, da diese sich meist komplett auf ihr Match konzentrieren können, im Gegensatz zu "Mainstream" Wrestlern. Konnte Angle anfangs nie viel abgewinnen, aber mittlerweile sind auch mir die Augen geöffnet - technisch vielleicht der Beste überhaupt zu dieser Zeit, kann so gut wie jeden Gegner zu einem klasse Match ziehen und kann auch ganz schön harte Aktionen einstecken (Moonsault vom Steel Cage)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HBK1986RKOwrote on 17.07.2010:[10.0] "Einfach ein Held. Hätte Ich zum Anfang nie gedacht seiner Karriere, dass aus ihm mal so ein Star wird. Als Heel gut aber persönlich gefällt er mir als Face besser. You Suck Kurt. Starke Karriere."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: homicidal cena michaelswrote on 10.07.2010:[8.0] "Für einen Mainstream Wrestler ist Angle der Oberhammer und das Beste was man sich angucken kann, aber er wrestlet auch zu viel mit Headlocks und Standardmoves. Er macht keine schweren Einroller wie ein Bryan und hat auch nicht das größte Moveset. Ein guter Indy Wrestler ist halt mit nichts zu vergleichen und da wirkt sogar ein Kurt Angle langweilig und einfallslos. Aber er versteht ein Match zu leiten und bringt noch recht gute Sachen mit rein und sein Mic Work ist auch gut."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Hans Gruberwrote on 05.07.2010:[10.0] "Ein Total Package. Gut am Mic, überragend im Ring, lässt jeden seiner Gegner gut aussehen. Wird nur leider auch nicht jünger."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Shrinxwrote on 29.06.2010:[10.0] "Wenn ich an die Matches mit Shawn Michaels denke, dann merkt man schnell was die WWE mal war und jetzt ist.  Angle ist einer der besten Wrestler aller Zeiten. Toll dass er wieder da ist bei TNA"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Riley Mathewswrote on 05.06.2010:[10.0] "Ist von einem Weltklasseringer zu einen Weltklassewrestler geworden. Hat ein gutes Mic-Work hat Charisma und im Ring einer der Besten. Klare 10P.."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: El-Chupakneebraywrote on 25.05.2010:[10.0] "Vermutlich ist Kurt Angle tatsächlich der beste Wrestler in der Welt. Einen solchen Output an hochkarätigen Matches haben die wenigsten und dazu hat er wohl alles was man im Mainstream braucht um Erfolg zu haben. Angle kann man gegen einen Sack Kartoffeln wrestlen lassen und ich würde es sehen wollen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Erasedwrote on 22.05.2010:[10.0] "Seine Matches sind immer schön mit anzusehen. Egal, gegen welchen Gegner. Auch heute noch ein hervorragender Technicker, der auch mit dem Mikrophon umgehen kann. Zusammen: Ein perfekter Entertainer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Golgotawrote on 19.05.2010:[10.0] "Für mich wird er immer King-Kurt bleiben. Mochte ihn als Heel in früheren Zeiten lieber. Seine Matches sind aber quasi ausnahmslos in der Königsklasse anzusiedeln. Intensity, Integrity, Intelligence!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: catch34wrote on 16.05.2010:[10.0] "Großartiger Wrestler. Hat sich damals nach seinem Einstieg in die WWE schon nach einem Jahr die Anlagen eines waschechten Main-Eventers angeeignet. Im Ring gibt es bis heute nicht viele, die in der Lage sind, immer konstant gute Matches gegen fast jeden denkbaren Gegner abzuliefern. Am Mic ebenfalls unglaublich stark, wobei er hier aber auch verschiedene Facetten zeigen kann. Mir gefällt der Heel-Douchebag-Comedy-Kurt (bis Ende 2002-Anfang 2003 etwa) aber immernoch am besten. In dieser Version meiner absoluter Lieblingswrestler neben Shawn Michaels. Einer meiner Lieblingsmomente während dieser Phase ist seine Reaktion, als Edge ihm bei Backlash die Haare rasierte :D. Hat aber auch bereits in seiner WWE-Zeit bewiesen, das er als Face funktioniert. Ganz klare 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sandmannwrote on 04.05.2010:[9.0] "Ach der gute Kurt. Im Ring ein wirklich guter Wrestler. Wirklich erstaunlich wie er sich seit seinem Debut gegen Tazz damals entwickelt hat. Charismabombe, wirklich guter Inring Performer und verdienter World Champion bei WWE und TNA. Ich hoffe für ihn das er irgendwann den Absprung schafft und ein wenig mehr an seine Gesundheit denkt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Damon Strikerwrote on 30.04.2010:[9.0] "Im Ring gehört er zu den ganz großen unserer Zeit. Hinzu kommt reichlich Charisma und sein schauspielerisches Talent! Allerdings ist mir der todernste Angle nicht ganz so lieb, wie der Angle, der den schmalen Grad zwischen Ernsthaftigkeit und Comedy einst so gut gemeistert hat! Würde ihn auch lieber woanders als bei TNA sehen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Baldrickwrote on 20.04.2010:[10.0] "Dieser Mann ist eine Maschine. Wrestlet seit über einem Jahrzehnt fast durchgehend auf konsequent hohem Niveau und ist zudem ein hochbegater Wanderer auf der gesamten Entertainment-Skala. Trotz seines nicht enden wollenden Raubbaus am eigenen Körper hoffe ich, dass dieser Mann dem Wrestling noch lange erhalten bleibt."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: NewGuywrote on 17.04.2010:[10.0] "@ Sandmann: Sein Debut gegen Tazz? Er hatte doch sein WWE Debut gegen Shawn Stasiak bei den Series 99 oder?  Was kann man zu Kurt Angle sagen? Eine Goldmedallie bei den Olympischen Spielen bekommt man nicht geschenkt! In-Ring also einfach nur Top! Und was die Mic Skills angeht, da kann er auch noch ordentlich auffahren, weshalb ich ihm gut und gerne 10 Punkte gebe!"
Rating: 10.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Batistawrote on 02.04.2010:[10.0] "Kurt Angle ist klasse! Ich mag ihn, für mich vom wrestlerischem her Top 3 auf der Welt!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: antihiphop2002wrote on 28.03.2010:[8.0] "Im Ring obwohl er meiner meinung nach etwas nachgelassen hat eine wenn nicht die Granate überhaupt. Aber sein Micwork gefällt mir einfach nicht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: 1234wrote on 25.03.2010:[10.0] "Einer der unterhaltsamsten Wrestler, die ich je gesehen habe. Bei ihm stimmt alles, er kann gut wrestlen, bringt interessante Promos und ist zudem noch natürlich charismatisch. Außerdem hat er dasss, was so vielen Leuten fehlt, nämlich das gewisse Etwas."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Mizisawesomewrote on 21.03.2010:[10.0] "Ich sah gerade, dass ich diesen einen meiner Lieblingswrestler noch gar nicht bewertet habe. 10 Punkte natürlich. Bei Kurt Angle kann man gar nicht weniger geben. Seine Mic-Skills sind gut, seine In-Ring-Skills sind ganz einfach mal perfekt und er bringt zudem die Fähigkeit mit alle möglichen Rollen zu spielen in die er "gesteckt" wird. Kurz und knapp: Ein perfekter Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LabronBenoitwrote on 18.03.2010:[10.0] "Ja, er ist einer der besten Wrestler der Welt, wenn nicht sogar der Beste. Gut, ich hab seine Matches hauptsächlich in der WWE verfolgt, da mich TNA nicht so wirklich interessiert, aber ich glaube nicht, dass er arg nachgelassen hat und jemals nachlassen wird. Er hat einen einzigartigen Wrestling-Stil und ich glaube, dass er einer der besten Wrestler aller Zeiten wird!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: element-41wrote on 18.03.2010:[10.0] "Kurt Angle ist meiner Meinung nach der beste Wrestler der Welt. Er wird nicht umsonst als "Greatest Wrestler in the World" angesagt, da ist was Wahres dran. Er ist und bleibt die Nummer 1. Er schafft es selbst schwache Wrestler richtig stark aussehen zu lassen und macht aus Matches mit wenig Erwartungen großartige Spektakel. 10 Punkte!"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Papa Popanzwrote on 18.03.2010:[6.0] "Sehr guter Wrestler... aber als Typ sagt er mir so gar nicht zu"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Schnubbelchen-Exwrote on 16.03.2010:[10.0] "Kurt Angle ist und bleibt mit abstand der beste Wrestler ever. Schade nur das er nach TNA gegangen ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kennedy Olivenwrote on 14.03.2010:[10.0] "Ich kann diesen Typen überhaupt nicht leiden, aber er ist ein so verdammt guter Wrestler das 10 Punkte einfach angebracht sind. Was der aus so manchen anderen für Matches rausgehauen hat. Boaahh. Egal mit wem er hat gute bis fantastische Leistung gezeigt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Eddiewrote on 14.03.2010:[8.0] "In der Neuzeit einer der aller besten, so einfach ist es. Allerdings manchmal irgendwie überheblich im Ring, zumindest wirkt es so wenn er gegen "schwächere" Gegner kämpft, und dass unabhängig vom Gimmick, und mittlerweile sowieso nicht mehr auf der Ebene wie damals bei der WWE, 2003 zum Beispiel.. 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: wotan1985wrote on 09.03.2010:[10.0] "Kurt ist der einzige grund TNA zuschauen mehr muss man gar nicht sagen. Wenn man seine Matches kennt weiss man auch warum."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Rated R Superstar EDGEwrote on 08.03.2010:[10.0] "Kurt Angle ist neben Chris Jericho wohl der kompletteste Wrestler den es gibt. Zu schade das er erst mit 29 angefangen hat. Hätte er 10 Jahre früher angefangen wäre er wohl ein genauso großer Star wie Steve Austin."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: rv27wrote on 07.03.2010:[10.0] "Ich zähle ihn neben Leuten wie Danielson und Quakenbush oder auch Great Muta zu den besten der Welt."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Fat Mikewrote on 04.03.2010:[10.0] "Kurt Angle ist eines der wenigen Komplettpakete im Business. Sowohl im Ring, als auch am Mikrofon gehört er zweifellos zu den besten seiner Zunft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Neubauteneinsturzwrote on 23.02.2010:[10.0] "Er mag seinen Zenith überschritten haben, aber Kurt Angle ist immer noch einer der besten Wrestler auf dem Planeten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The-Real-Diablowrote on 11.02.2010:[10.0] "Für mich ist Kurt einer der besten Wrestler aller Zeiten. Trotz seines geschundenen Körpers bietet er den Fans Woche für Woche das beste vom besten. Er kann so ziemlich jeden Stil mitgehen und sein Matchguide beinhaltet nicht nur ein erinnerungswürdiges Match. Hinzu kommt, dass erauch in Sachen Charisma und Micwork sehr gut ist. Einziges Manko, was man nennen könnte, wäre, dass er nie zu diesem "absoluten" Superstar wie ein The Rock oder wie ein Austin geworden ist. Das ändern aber nichts daran, dass dieser Mann locker die Höchpunktzahl verdient hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: tnawrestlingfanwrote on 09.02.2010:[10.0] "einfach wirklich der beste wrestler der welt! vieleicht nicht am mic, aber im ring umso mehr. er wird gut als heel eingesetzt und als face in der wwe mochte ich ihn auch. 10p"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Aesopwrote on 28.01.2010:[10.0] "Angle ist im Ring großartig und auch seine Promos sind cool, deshalb erlaube ich mir jetzt sein Privatleben und sein Backstageverhalten mal nicht zu berücksichtigen und deshalb bekommt er die 10 Punkte."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheROCKwrote on 22.01.2010:[10.0] "Hätte es jemals das Match Kurt Angle vs. Bret Hart (beide auf Karrierehöhepunkt! ) gegeben, wäre das 10-Punkte System wohl zu klein geworden. Sei's drum. One of The Best There Is, One of The Best There Was & One of The Best There Ever Will Be. Not ''THE BEST'' but ''ONE OF THE BEST''. Danke Kurt für alles und speziell für WrestleMania 21 und No Way Out 2006. Fans wissen was ich meine."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ThePopewrote on 17.01.2010:[10.0] "er ist einfach das perfekte gesamtpaket und er war in der wwe mein absoluter fav und bei tna gefällt er mir genau so gut. er ist meiner meinung nach der beste heel den die wrestlingwelt je gesehen hat. you suck im positiven sinne;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Hu-Manwrote on 17.01.2010:[10.0] "Mein persönlicher Held. Im Gesamtpaket das beste, was das Pro Wrestling zu bieten hat. Unglaublich charismatisch, spielt jede Rolle perfekt (ob Heel, Face oder Comedy), wird am Mic zur Zeit lediglich von Jericho und Foley überboten und hat die perfekten Wrestling Skills. Keiner kann Psychologie, Intensität, Technik und Show so gut kombinieren wie er. Darüber hinaus ist er einer der wenigen, der mit jedem Wrestler gute Matches zeigen kann, egal wie schlecht sein Gegner auch sein mag. Der Flair der heutigen Zeit. It's real! It's damn real!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: KASHwrote on 13.01.2010:[10.0] "Mein all time #2 favourite nach Jericho. Einer der besten Wrestler aller Zeiten, am Mic kam er auch immer super aus meiner Perspektive. Den MUSS man einfach mögen. Der Wechsel von WWE zu TNAW war für alle Angle Fans wohl das beste. Ich finde seitdem er soviel Masse verloren hat passt er super in die X-Division. Heute ist er irgendwie ein richtiger X-Divison Wrestler, der trotzdem noch der beste Techniker ist. Im Prinzip ist er heute besser denje. Er kann wirklich mit Stock und Stein Action zwischen die Seile bringen. Legende..."
Rating: 10.0
Sentiment: 0.25555555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HeartBKwrote on 13.01.2010:[10.0] "Einer meiner absoluten Lieblingswrestler! Wahrscheinlich einer der besten Wrestler von TNA. Technisch Stark, Unterhaltsam, Charismatisch. Er kann aus jedem Wrestlingmatch was rausholen. 10 Punkte!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheRockwrote on 12.01.2010:[10.0] "Lieblingswrestler, technisch einfach hervorragend und auch unterhalten kann er mich!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RatedRJuliwrote on 07.01.2010:[8.0] "Sehr guter Wrestler der jetzt auch in der Fehde gegen Wolfe glänzen kann"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Denzwrote on 04.01.2010:[10.0] "Ganz klar, er hat TNAW auf das nächste Level gebracht, um mit WWE besser konkurrieren zu können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Telecinewrote on 26.12.2009:[9.0] "Einer der besten Wrestler der Welt, der sowohl gutes Mic Work, als auch gutes Wrestling beherrscht. Ab und zu zeigt er mal leichte Schwächen beim Selling und auch er sollte sich überlegen, wie lange man mit einem geschwächten Nacken noch Wrestling machen sollte. Auf der anderen Seite hat er bei TNA natürlich nicht so einen schweren Terminplan, aber Matches gegen Desmond Wolfe können dem Körper schon einiges abverlangen. Wenn er nochmal zu WWE zurückkehren sollte, dann wäre das sicherlich eine große Nummer."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: StefanKwrote on 11.12.2009:[9.0] "starker Wrestler mit genialen Mic-Fähigkeiten. Charismatisch und einfach nur genial"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: brianpillmanwrote on 27.11.2009:[10.0] "Meiner Meinung nach der beste (da kompletteste) aktive Wrestler im Business. 100 % Glaubwürdigkeit im Ring, zudem sehr gut am Mic. Großes schauspielerisches Talent, das er leider nur sehr wenig zeigen darf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Cloverwrote on 25.11.2009:[10.0] "Ich liebe diesen Mann im Ring! Er ist für mich die Ikone schlechthin! Allerdings hasse ich es, wie er mit seinem Körper umgeht.. und seine Gier nach diesem Sport wird ihn körperlich irgendwann noch kaputt machen... dann aber hoffe ich, passiert es in einem WWE-Ring... denn da gehört er hin ;-) ANGLE RULES! and SUCKS gleichzeitig - eben eine zukünftige Legende par excellence! WE WANT ANGLE! WE WANT ANGLE! :-)"
Rating: 10.0
Sentiment: 0.07552083333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Cheffewrote on 19.11.2009:[10.0] "Er ist einfach einer der besten Wrestler die noch Aktiv sind, vielleicht sogar der Beste. Seine Ring Skills und Mic Works sind einfach Fantastisch. Er schafft es mit einem durchschnittlichen Wrestler ein Hammer Match zu machen. Sieht aber immer mehr "kaputt" aus. Vielleicht wirds bald auch mal Zeit schluss zu machen, was ich aber nicht hoffe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Matt Mackswrote on 17.11.2009:[10.0] "Auch zehn Jahre nach seinem Debüt, dem Wechsel zu TNAW und einem zunehmend kaputten Körper bietet Kurt Angle das volle Programm für mich als Wrestlingfan. Er ist ein fantastischer Wrestler mit Allround-Qualitäten, dass er jeden Stil mitgehen kann. Er ist ein sehr guter Micworker, der gleichermaßen in Comedysegmenten und in ernsten Promos eine gute Figur abgibt. Dass er außerhalb des Rings manchmal eine Schraube locker hat, gehört wahrscheinlich dazu -- die Gradwanderung zwischen Genie und Wahnsinn ist schließlich nicht nur bei ihm zu erkennen. Es ist schon irgendwo einzigartig, dass ein Mann praktisch seit seinem Debüt in jedem Jahr an mindestens einem Match Of The Year-Kandidaten beteiligt ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CJodlerwrote on 13.11.2009:[10.0] "Für mich nach wie vor der beste Wrestler den es derzeit gibt. Ist in einem Atemzug mit Bret Hart oder auch Mick Foley zu erwähnen, weil er in jedem Match alles gibt und mit jedem Gegner (mag der auch noch so schlecht sein) eine super Show liefert. Machte bei WM21 gegen Michaels das beste Match, das ich je gesehen habe. Hat körperlich zwar abgebaut, kann aber immernoch sein ganzes Talent im Ring ausschöpfen. Auch Privat wieder alles im Lot. Super Kurt, ich wusste, dass du unschuldig bist!"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Ultrakaoswrote on 06.11.2009:[10.0] "Angle ist nach wie vor eine Klasse für sich. Er hat immernoch Klasse Matches. Er hat immer noch den Matchüberblick wie kein anderer. Angle ist einer meienr große nFavoriten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Theron083wrote on 28.10.2009:[9.0] "Immer noch fantastische Matches. Aber immer auch ein seltsamer Kerl irgendwie. :D"
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kurt Winkelwrote on 20.10.2009:[10.0] "Kurt Angle kann alles, was ein Wrestler können muss. Er ist sehr überzeugend im Ring, gibt hervorragende Promos, und spielt seine Rollen glaubwürdig, ob Heel oder Face."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BoeserLobowrote on 05.10.2009:[10.0] "Der wahrscheinlich beste Wrestler der letzten 10 Jahre. Hat allerdings ausserhalb des Rings immer wieder Schlagzeilen, welche dem Sport und seinem Standing nicht gerade gut tun. Auch am Mic absolut überzeugend. Kann sowohl den Face als auch (noch besser) den Heel geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Edgecutionerwrote on 02.10.2009:[10.0] "Angle steht seit 9 Jahren im Main Event bei WWE und TNA, gewann unzählige Titel und ist technisch nach wie vor absolute Weltklasse... it's true, it's damn true."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Big Bad Booty Babywrote on 25.09.2009:[9.0] "Vor sechs, sieben Jahren war er einer der, wenn nicht der beste Wrestler der Welt. Da er sich jedoch so schwer schindet, lässt er langsam aber sich nach und ich bin mir nicht sicher, wie lange er das noch durchhalten wird. Zwischenzeitlich errinnert er mich an einen kranken, alten Mann. Trotzdem hat er es immernoch drauf und ist besser als alle anderen TNA-Main Eventer (außer vielleicht Styles und Joe, aber der hängt ja mittlerweile wieder in der X-Division rum)."
Rating: 9.0
Sentiment: -0.3499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Orton7wrote on 23.09.2009:[10.0] "Kurt Angle verkörpert den Heel wirklich perfekt und fehlt mir persönlich bei der WWE schon sehr, da ich TNA nicht gucke..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wichtgestaltwrote on 21.09.2009:[10.0] "Auch wenn Kurt Angle seinen Zenit mittlerweile überschritten hat ist er "IMO" immernoch der beste Wrestler in diesem Jahrzehnt. Wenn er wirklich noch der "Rick Flair der Neuzeit" ist, dann freue ich mich auf noch weitere 20 mit ihm in Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Hirnklopswrote on 17.09.2009:[10.0] "Der vielleicht beste Heel, den die WWE nach dem Million Dollar Man hatte. Bei TNA immerhin noch sehr stark, wrestlerisch sowieso über jeden Zweifel erhaben, das er abseits des Ringes ein Freak ist, lassen wir mal so stehen."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ghostwrote on 16.09.2009:[9.0] "Meiner Meinung etwas overrated. Natürlich ist er zurecht Main-Eventer - hat Intensität, Glaubwürdigkeit aber auch Humor zugleich, guter Schauspieler - sehr überzeugender Heel. Dennoch würde ich ihn nicht auf die ganz höchste Stufe der Bewertung setzen, der endgültige Coolness-Faktor fehlt mir einwenig.. ist aber vielleicht auch Geschmackssache/Subjektiv. EDIT: Erhöhe auf 9, da er bei TNA einfach "The Whole F***N Show" ist. haha!"
Rating: 9.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: gharwrote on 15.09.2009:[9.0] "Kurt ist einfach einer der besten Wrestler die es je gab. Leider ist er bei TNA und auch wenn ich TNA ganz super finde und auch wöchentlich verfolge, gehört so ein Top Wrestler einfach in die WWE, wo er auch vor einem entsprechenden Publikum seine Leistungen zeigen kann (z. B. Wrestlemania 25 mit 70. 000+ Zuschauern). Deshalb auch nur 9 Punkte für Sexy Kurt"
Rating: 9.0
Sentiment: 0.4444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Basket Casewrote on 15.09.2009:[10.0] "TNA verfolge ich nicht, aber früher bei der WWE einfach grandios. Am besten fand ich ihn zur Zeit der Invasion an Austins und Vinces Seite. Diese Segmente waren goldwert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: mongowrote on 14.09.2009:[10.0] "Was soll man noch sagen. Kurt Angle IST Pro-Wrestling! Einer der besten Wrestler aller Zeiten, wenn nicht sogar DER beste Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Joeevil123wrote on 11.09.2009:[10.0] "Gehört definitiv in die Top fünf aller Zeiten!  Er verkörpert das Wrestling wie kaum ein anderer. Weltklasse In-Ring Leistung , super am Mic und auch alles andere passt. Wer hier nicht Wertungen im oberen Bereich gibt , hat mit Wrestling nichts am Hut!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Atze19wrote on 29.08.2009:[10.0] "Genial im Ring, ein toller Redner und darüberhinaus bringt er eine Glaubwürdigkeit an den Tag wie sonst niemand. Seine Erfolge kommen sicher nicht von ungefähr. Wahrhaftig eine "Wrestling Machine". Volle Punktzahl"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: teekay86wrote on 25.08.2009:[10.0] "Einer der Besten seiner Zunft. Über seine In-Ring Fähigkeiten müssen wohl keine Worte verloren werden. Genau so Stark schafft er es am Mic und durch sein Charisma im allgemeinen einen Heel zu verkörpern den man wirklich gerne sieht. Und da TNA ein wenig von Total Nonstop Angel abgewichen ist, ist er auch nicht mehr so überpräsent das man alleine deswegen von ihm genervt ist."
Rating: 10.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DJ MaSchwrote on 22.08.2009:[10.0] "Man kann über den Privatmenschen Angle denken wie man will, ich persönlich halte ihn auch für einen egoistischen, eingebildeten, drogenabhängigen Gestörten, aber man bewertet hier den Worker Kurt Angle. Im Ring ist er überagend, was natürlich mit dem Hintergrund kein Wunder ist. Am Mic ist er saustark. Das Gimick passt und auch vor Charisma strotzt er einfach nur so. Für mich ist Angle einer, wenn nicht gar der beste Wrestler der Welt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Ryklon Stephenswrote on 15.08.2009:"Womit soll man bei Kurt Angle anfangen. Auf der einen Seite ist da dieser unglaublich fantastische Wrestler, der in seiner Karriere für sehr viel Aufsehen gesorgt hat. Doch auf der anderen scheint als wäre Angle ein kranker Mensch der dringend Hilfe bräuchte. Jede neue News über ihn bringt den privaten Absturz immer deutlicher ans Licht. Ihm wäre zu wünschen das er einen Weg heraus aus dem Loch findet, bevor es zu spät ist."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: SirJohnsonwrote on 15.08.2009:[8.0] "Leider in den letzten Jahren etwas nachgelassen, was mich aber nicht davon abhält, mir mit Freude seine Matches anzusehen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Lowflyerwrote on 24.07.2009:[10.0] "Angle ist ein großartiger Wrestler und im Gegensatz zu vielen anderen In-Ring Giganten ein unterhaltsamer Micworker der in ernsten und komischen Angles überzeugt. Auch wenn ich kein Fan von ihm bin, muss ich ihm objektiv gesehen die 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Vanniwrote on 11.07.2009:[10.0] "Eigentlich kann und muss man ihn schon als besten Wrestler aller Zeiten bezeichnen. Im Ring unglaublich technisch begabt, am Mic sowohl als Heel als auch als Face überzeugend und einfach nur stark, wobei er als Heel in seiner arroganten Art mehr überzeugen kann. Ansonsten gibt es einfach nicht viele Superstars, die im Gesamtpaket nah an Kurt Angle heran kommen, der im professionellen Wrestling eigentlich schon das Non-Plus-Ultra ist."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TRBM1981wrote on 01.07.2009:[9.0] "Kurt Angle ist der seit Jahren beste technische Wrestler der Welt"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Juvicidewrote on 29.06.2009:[10.0] "Ohne Zweifel ein Top Wrestler, aber wenn er so weitermacht, wird er seine Enkelkinder nicht mehr erleben."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: pain99wrote on 22.06.2009:[10.0] "Wenn man einmal zur Kenntnis nimmt das unter den Top 10 Matches in der WWE mindestens 5 mit seiner Beteiligung waren. Gibt es eigendlich nur eine Punkt Zahl."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: heiniwrote on 17.06.2009:[10.0] "Angle ist einer der besten Techniker aller Zeiten. Bewundernswert ist auch seine Fähigkeit sehr gute Matches zu liefern. Auch ist er einfach der beste Heel den die WWE je hatte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CMFabewrote on 15.06.2009:[10.0] "Ich kann nicht verstehen warum die Wrestling machine soweit hinten in der TOP 100 Reihe ist. Meiner Meinung nach der beste aktive Wrestler unserer Zeit. Es war richtig das er zu TNA gewechselt ist. Aber ich denke trotzdem das er jetzt langsam zurück kommen sollte."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Excellence of Executionwrote on 25.05.2009:[9.0] "Sicherlich auch heute noch einer der besten Wrestler aus nordamerikanischen Gefilden. Allerdings muss er sich imo zu oft mit Gegnern messen, die gar nicht seiner Kragenweite entsprechen, wodurch wirklich erinnerungswürdige Matches selten werden. Auf der anderen Seite weiß Kurt aber selbst Matches gegen weit Talentlosere aufzuwerten. Ich würde eine Rückkehr zur WWE begrüßen, weil er bei TNA schon längst alles erreicht hat. Zudem müsste TNA dann mal andere technisch beschlagene Herren an die Spitze bringen, um diese Lücke zu füllen. Aber ob die in Orlando das auch so sehen ...."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: polilopwrote on 24.05.2009:[10.0] "Wahrscheinlich einer der besten Techniker, den es gibt. Allerdings sollte er mal wieder ein bisschen zulegen, finde ihn momentan etwas zu schmal."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Aquifelwrote on 03.05.2009:[10.0] "Egal ob man ihn und sein Gimmick leiden kann oder nicht, er ist definitiv einer der besten Worker aller Zeiten. Egal ob WWE oder TNA, seine Matches überzeugen einfach und wie er seine Rolle spielt, ist ebenfalls erste Sahne. Wer etwas anderes behauptet hat gelinde gesagt keine Ahnung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The-Game91wrote on 02.02.2009:[10.0] "Einer der besten Techniker überhaupt. In der WWE ein Main Eventer und auch bei TNA ein Zugpferd"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: RatedRKO84wrote on 31.01.2009:[10.0] "Am Mic, im Ring, als Heel einfach glänzend. Was soll man von ihm noch mehr erwarten er macht einen Super Job, er bringt den Heel sehr gut und überzeugend herüber, am Mic zeigt er ebenfalls viel Einsatz und überzeugt mich dort auch. Am besten aber im Ring, seine Technik ist einfach unfassbar, aber was soll man von einem Olympiasieger auch anderes erwarten."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: BaptisteZorGwrote on 27.01.2009:[10.0] "Kurz und bündig - Kurt Angle ist einer der, wenn nicht sogar der Beste Wrestler den ich bisher in aktion sehen durfte. Als Heel am Mic ein absoluter Heat-magnet und über seine InRingskills braucht man glaub ich garnet erst diskutieren. ne glatte 10, alles andere wäre nicht gerecht"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Mick Funkwrote on 26.01.2009:[10.0] "Sehr starker Worker. Der größte Verlust überhaupt für WWE, dass er zur Konkurenz ging. Tolle Technik, 2 super Finisher und auch gute Ausstrahlung."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ShakDragoonwrote on 20.01.2009:[10.0] "Ohne Zweifel einer der besten Wrestler ever! Technik top, Ringpsychologie top und auch Mic-Work top! Bei TNA wird er im Moment ganz gut eingesetzt und ich hoffe, das bleibt so."
Rating: 10.0
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HBK RVD Y2Jwrote on 16.01.2009:[10.0] "Einfach spitzen klasse. Er ist für mich einer der besten technischen Wrestler die es gibt. Sowohl als Face oder als Heel er ist immer super!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: User191wrote on 15.01.2009:[10.0] "Im Ring gehört er zu den Top 10 aller Zeiten und am Mic überzeugt er auch vollkommen (zumindest wenn er ein Heel ist), der es sogar schaffen würde bei seinem Heimatpublikum Heat zu ziehen. Allerdings sollte Angle mehr auf seinen Körper hören und nicht noch einmal über 200 Kämpfe im Jahr bestreiten müssen, da er aufgrund seiner "Besessenheit" vom Wrestling viele Verletzungen mitgeschleppt hat, die normalerweise eine kleine Pause notwendig gemacht hätten (allerdings geht dies nicht in die Bewertung ein, da es nur um den Wrestler Kurt Angle geht und nicht um den Privatmensch)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Blazewrote on 14.01.2009:[10.0] "Absoluter Top Wrestler. Innerhalb kürzester Zeit hat sich er sich bei WWF/WWE nicht nur einfach gut etablieren können, sondern stieg so schnell wie kaum ein anderer in den Main Event auf. Wofür andere Worker ganze Karrieren benötigen, brauchte Angle nur wenige Jahre, was zeigt, dass er einfach eine Ausnahme ist. Im Ring hat er schon den ein oder anderen zu den besten Matches seiner Karriere verholfen und ist auch am Mic sehr weit oben anzusiedeln. Bei ihm vereinen sich wrestlerisches Können, Look und Mic Work auf höchstem Niveau. Bei WWE schon der Hammer, jetzt bei TNA gefällt er mir noch mal ne Ecke besser. Er hat im Ring ein Feuer, was ich bei vielen WWE Main Eventern einfach überhaupt nicht erkennen kann und wrestlet zur Zeit spektakulärer als je zuvor. Kurt Angle schont seinen Körper absolut kein bisschen und spielt daher auf einem Level, was nur extrem wenige Wrestler erreichen. Auch wenn er TNA noch mehr ins Rampenlicht rücken wollte und ihm das noch nicht ganz gelungen ist, hat die Company einen Schritt nach vorne gemacht. Was kann man außer 10 Punkten anders geben? !"
Rating: 10.0
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Tomkowrote on 06.01.2009:[6.0] "War sicherlich einer der besten Wrestler weltweit, doch diese Zeit ist nun schon lange vorbei. Heute ist er nur noch ein Schatten seiner selbst und wie viele nur aufgrund seines Namens TNAW-Main-Eventer!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Smoky63wrote on 05.01.2009:[10.0] "Trotz seiner physischen Blessuren und Verletzungen schafft es der Mann, immer wieder tolle Matches zu zeigen... ich vermisse die Zeiten Angle vs. Benoit"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Atze20wrote on 02.01.2009:[10.0] "Angle ist schlicht und ergreifend überragend. Zwar hat er seinen grossartigen Zenit ein wenig überschritten, weiss aber noch immer zu überzeugen. Am Mic grossartig, charismatisch und glaubwürdig wie sonst Niemand. Darüberhinaus grosse Erfolge. Hat glaube ich alles gewonnen, was man so im Buiz gewinnen kann. Das einzige Total Package, dass ich kenne. Klare 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MarcB126wrote on 26.12.2008:[10.0] "Der beste Performer den das Wrestling je gesehen hat. Jedes seiner Matches waren der Hammer. WE SEE YOU SOON IN WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Felice-del-mondowrote on 26.12.2008:[9.0] "attitude era als comedy face ganz amüsant... gebe nur 9 pkte da er die meiste ziet heel war :P... aber sein commitment für diesen job ist einzigartig!"
Rating: 9.0
Sentiment: 0.9375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Huzerwrote on 18.12.2008:[10.0] "Super toller Wrestler, nicht sogar einer der besten. Ich mag ihn einfach und die Fehden mit ihm sind immer interessant."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Charismatic Enigma4000wrote on 13.12.2008:[7.0] "Im Ring großartig, außerhalb kann ich ihn nicht leiden."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Flame286wrote on 09.12.2008:[5.0] "Schonlange nicht mehr das was er mal war. Nur noch langweilig und die Sache mit der MEM ist auch nicht besonderst."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The System Failedwrote on 14.11.2008:[10.0] "Kurt Angle ist ein grandioser Wrestler, der eine unglaubliche Technik und sehr gutes Mic-Work perfekt vereint. Einer meiner absoluten Lieblings-Wrestler und der einzige Grund, warum ich angefangen habe, TNA zu schauen und zu verfolgen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Akkuswrote on 08.11.2008:[7.0] "Im Ring ganz klar ein Gott, ich konnte mich aber nie so richtig mit ihm anfreunden! Ztrotzdem 7 Punkte weil er halt so geil im Ring ist."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: alkoholiKAwrote on 17.10.2008:[10.0] "Einer der besten aller Zeiten. Über seine In-Ring Qualitäten kann man nicht streiten. Einfach weltklasse. Und auch am Mic absolut spitze. Leider wird er wohl aufgrund seines Ergeizes demnächst einige Abstriche machen müssen. Hoffentlich wird er den Wrestling Fans noch lange erhalten bleiben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MrWrestlingwrote on 05.10.2008:[10.0] "Einer der besten Wrestler. Bei WWE jedoch um Welten besser als bei TNA!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Instant Classicwrote on 05.10.2008:[1.0] "Ziemlich overrated. Hat seinen Höhepunkt schon lange hinter sich und überzeugt nicht mehr - weder im Ring noch am Mikrofon."
Rating: 1.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: StoneColdRevowrote on 29.09.2008:[7.0] "Kurt Angle ist ein wirklich guter Wrestler, keine Frage. Aber ich finde nix an ihn, was mich aufspringen lässt und sagt "Wow, das ist doch mal ein geiler Wrestler. " Aber von mir bekommt er noch 7 Punkte. ^^"
Rating: 7.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Hijo Rudiciowrote on 24.09.2008:[10.0] "Ich kenne niemanden, der augenblicklich besser wäre."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Ric Flair88wrote on 18.09.2008:[10.0] "was soll man über Kurt Angle sagen? Er ist aus meiner Sicht das Idealbild eines Professional Wrestlers. Seine Leistungen im Ring sind atemberaubend wie seine Matches gegen Shawn Michaels, Chris Benoit oder auch Samoa Joe zeigen. Er kann jeden wrestler zu einer vernünftigen Leistung ziehen und bringt auch noch haufenweise Charisma mit. Ein Kurt Angle braucht aber eigtl gar kein Mic denn er erzählt seine Geschichte perfekt IM ring."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Weihnachtsmannwrote on 14.08.2008:[8.0] "Gut im Ring, seine Gimmicks konnten mich aber nie wirklich fesseln. Für seine guten Leistungen im Ring gibt es aber dennoch 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Rated-RKOwrote on 13.08.2008:[10.0] "Ein bewundernswerter Techinker der sein Werk versteht. Für TNAW ist er eine große Bereicherung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Grissomwrote on 12.08.2008:[10.0] "Einer der besten und ehrgeizigsten Wrestler die es gibt und der immer 100% gibt, leider ohne rücksicht auf seine Gesundheit zu nehmen. Ich hoffe noch auf ca. 2-3 gute Jahre für Kurt in denen er vor schlimmeren verletzungen verschont bleibt und dannach wäre der richtige Zeitpunkt aufzuhören."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Edibaswrote on 04.08.2008:[8.0] "Sicherlich einer der besten technischen Wrestler aller Zeiten. Allerdings übertreibt es Angle mit seiner Liebe zum Sport und riskiert dabei seine Gesundheit. Man muss ihm nur einmal in die Augen schauen und muss sich dabei fragen wie weit Angle eigentlich vom hier und jetzt entfernt ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: WerderBremenwrote on 14.07.2008:[10.0] "Ich denke, dass es nicht schwer ist Kurt Angle "You suck" zuzurufen und gleichzietig nur zu staunen, was er uns im Ring bietet. Es ist unglaublich, was er für Feuerweke allein abbrennen kann. Hinzu kommt, dass er am Mikro auch immer einen guten Eintruck macht und seine Fehden (fast) immer interessant sind. Ich persönlich mag Wrestler, die starke Signatures oder starke Holdmoves draufhaben... : Und Kurt Angle hat beides. Sein Angle Lock ist auf jeden Fall mit der härteste Aufgabegriff überhaupt und hat (oftmals leider) schon so einige zum Abklopfen gebracht! Eine Klasse Aktion eines echter Main-Eventers eben! Das Einzige was es auszusetzten gibt: Kurt, was suchst du bei TNA? Komm doch zurück zur WWE! Da wirst du wieder herausstechen und mich beeindrucken!"
Rating: 10.0
Sentiment: 0.48828125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LordTrailerwrote on 16.06.2008:[9.0] "Für mich ein Ric Flair Effekt. Klar, einer der besten Wrestler aller Zeiten und auch am Mic eine Bombe. Aber ich bin mir nicht sicher, ob er sich einen Gefallen tut weiter im Ring zu stehen. Nicht, weil er es nicht mehr drauf hat, sondern weil sein Körper schon arg geschunden ist. Seine Interviews auch im Ring werden zudem immer wirrer. Wenn er zurücktritt kriegt er zur Zeit sicherlich eine 10, so muß ich nochmal leicht abwerten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: John Morrisonwrote on 14.06.2008:[10.0] "Für mich der beste Wrestler aller Zeiten! Unvergesslich sein Match bei WM XI! It's True!"
Rating: 10.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Know Nothingwrote on 13.06.2008:[10.0] "Extrem guter Wrestler und super Micwork! Ich liebte ihn. Achja: Kurt You Suck! You Suck! You Suck!"
Rating: 10.0
Sentiment: 0.8138020833333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: gerybundy68wrote on 08.06.2008:[8.0] "DER Wrestler von TNA. Nervt ab und zu mit seinen Shoots gegen die WWE in Interviews. Hat das nicht nötig."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: JohnnyCashwrote on 28.05.2008:[9.0] "Angle ist für mich DAS Gesamtpaktet. Find ihn am Micro überzeugend & im Ring sensationell. Was er Backstage treibt interessiert mich hier jetzt nicht. Ist allerdings leider nicht mehr so stark wie noch für 3, 4 Jahren aber immer noch über jeden Zweilfel erhaben => 1-"
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MemphYwrote on 17.05.2008:[10.0] "Tja.... man möge sich seine matches anguggen und 10p geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: King of Queenswrote on 15.05.2008:[8.0] "Starker Wrestler. Charismatisch, gut am Mic und bei TNA die letzte Zeit leider völlig überpusht. Mindert zwar seine Leistung nicht, aber ist einfach ein Nervfaktor, der hoffentlich abklingen wird."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DanielBryan1986wrote on 13.05.2008:[8.0] "Ein etwas zu schneller Aufstieg 2000. Beim Hell in a Cell bei Armageddon mit viel Glück als Überlebender. Mit Kämpfen gegen Chris Benoit, Eddie Guerrero und besonders Shawn Michaels Top! Kurt Angle bei TNA einer der Führungspersonen."
Rating: 8.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: xXShawnMichaelsXxwrote on 10.05.2008:[10.0] "Er hat den Namen "Wrestling Machine" zurecht, ich muss zugeben ich bin keiner der TNA regelmäßig verfolgt, aber allein seine Art bei der WWE/WWF hat mich überzeugt ihm 10 Punkte zu geben"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Bekiffskiwrote on 08.05.2008:[9.0] "So, jetzt mal ehrlich. Kurt Angle ist, unumstreitbar, derzeit der beste Techniker neben vielleicht Danielson oder Haas. Aber dennoch nur 9 Punkte, weil er charakterlich einfach nur ein Kotzbrocken ist. Ende."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Desperadowrote on 26.04.2008:[10.0] "Imo ist der Mensch Kurt Angle ein arroganter, von sich selbst eingenommener Mistkerl, aber trotzdem muss man den Wrestler Kurt Angle einfach toll finden. Angle ist für mich einfach der beste Techniker im Main Stream Wrestling, einfach unglaublich der Typ. Außerdem ist er als Face und als Heel gut, kann in jeder Rolle überzeugen und gute Promos halten."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: John of Gauntwrote on 24.04.2008:[9.0] "Einer meiner All-Time-Favourites. Einer der technisch besten Wrestler die es überhaupt gibt, der auch immer wieder für gute und lustige Promos gut ist."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: e-trom995wrote on 21.04.2008:[10.0] "Zum glück hat er sein altes WWE/WWF Gimmick vom "Weichei" aufgegeben. Schade, dass er jetzt bei TNA ist, aus meiner Sicht würde er der WWE gut tun."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Domiwrote on 20.04.2008:[10.0] "meiner Meinung nach hat die WWE einen absoluten TOPMANN gehen lassen denn für mich hat er super Mic Work, klasse Techniker aber naja kein Einzelfall"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ButchIncwrote on 12.04.2008:[10.0] "Weniger als die volle Punktzahl geht hier mal gar nicht. Oh, it's true, it's damn true! Nicht nur ist er einer der besten Pro-Wrestler, die je einen Ring gestiegen sind, auch spielt er seine Rollen perfekt. Heel, Face, Comedy, Ernsthaftigkeit, scheiß egal. Angle hat alles drauf. Mic-Work? Auch das. Ich glaube, es gibt nicht allzuviele Leute, die wirklich eine solche Anzahl an guten Matches gezeigt haben, und das auch noch egal mit welchem Gegner. Ich könnte ihm einen Punkt-Abzug geben, da ich trotzdem kein wirklicher Angle-Fan bin, aber man muss sich seine Leistungen einfach eingestehen, und auch nur objektiv verdient er nicht weniger als 10 Punkte."
Rating: 10.0
Sentiment: 0.39375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Amurebkuwrote on 09.04.2008:[8.0] "Einer der absolut besten Wrestler die es gibt. Seine Matches sind immer unterhaltsam. Auch wenn es mal gegen schwächere Gegner geht, lässt Kurt Angle dieses Match echt gut aussehen. Ich fand ihn trotz allem in der WWE besser aufgehoben. In der TNAW nervt er nur noch. Ob mit seinen Promos oder auch mit seinen privaten Äußerungen. Er macht sich teils mit seinen "Geschichten" selbst lächerlich. Noch zu WWE-Zeiten hätte er eine klare 1 bekommen. Jetzt reicht es nur noch zu einer ganz knappen und schlechten 2."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Joe710wrote on 04.04.2008:[6.0] "Als er zu TNA gewechselt, war es fast als wäre eine Bombe eingeschlagen. Damals dachte ich wirklich, er würde die Promotion viel weiter bringen, als sie heute ist. Bei der WWE stand Angle immer hinter Leuten wie HHH, HBK dem Undertaker usw. Und ich glaube, dies war auch der Grund, warum er jeden Abend, das beste Match bestritt, weil er sich beweisen wollte. Bei TNA bekommt er aber irgendwie alles geschenkt und hat meiner Meinung nach sehr stark nachgelassen. So hart es klingt, ich habe langsam echt genug von ihm. Und das liegt nicht an seinen tollen Heel-Skills, es ist nähmlich so, dass ich TNA gar nicht mehr verfolge. Und jeder der ein Interview von Angle, der letzen paar Monate mitgekriegt hat, wird merken, dass er ein ziemlicher Träumer ist."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Urbaner1982wrote on 26.03.2008:[6.0] "Die 3 begründe ich auch gerne: Zur Zeit einfach "DER" überbewerteste Wrestler überhaupt! Er kam nach TNA... super. Er legte sich mit Joe an... super. Er wurde Champ... auch gut. Aber dann... legte er seinen "Ego Trip" an. Wenn Leute wie Styles oder Tomko ihn nicht geholfen hätten, wäre jemand anderes Champ geworden. Bei Match gegen Kaz hab ich gemerkt, dass er nichts mehr taugt: Kaz zeigt eine Aktion nach der anderen, Angle sellt nur... zeigt zwar gute Near Falls... aber dann... Olympic Slam... Angle Lock... Kaz tappt aus. What? Wer hat den Müll gebookt?"
Rating: 6.0
Sentiment: 0.25555555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Unrated Superstarwrote on 21.03.2008:[6.0] "Wrestlerisch natürlich ein Genie, obwohl ich Chris Benoit und HBK noch um Ecken besser finde. Gimmick-mäßig gleicht er jedoch einer Schlaftablette und am Mic ist er auch nicht so der Bringer. Ist bei TNA jetzt das, wogegen er in Interviews immer wettert: nämlich Mr. Backstage, was Triple H bekanntlich in der WWE ist. Shootet mir in letzter Zeit auch zu sehr gegen die WWE und hypt TNA in den Himmel, obwohl die fast den gleichen Mist bauen. Tja, er macht eben nur seinen Job als TNA-Zugpferd... allerdings hört man von John Cena und HHH nie solche Shoot-Paraden in Richtung TNA."
Rating: 6.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MBLegendwrote on 21.03.2008:[10.0] "Für mich der beste Wrestler aller Zeiten. Gutes Mic Work. Super Techniker. High flying Elemente. Charismatisch. Der Inbegriff des Pro Wrestlers. Er hat in letzter Zeit leider etwas abgebaut, aber noch immer in der Lage gute Matches abzuliefern."
Rating: 10.0
Sentiment: 0.24666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: edgeheadwrote on 20.03.2008:[8.0] "In seiner Blütezeit von 2001-2005 war er ohne Zweifel einer der besten Wrestler bei WWE, hat jedoch seit 2006 und vor allem seit seinem Wechsel zu TNA stark abgebaut. Er zeigt zwar immer noch gute Matches, jedoch nicht mehr auf dem Niveau früherer Zeiten, am Alter liegt das auf keinen Fall (siehe HBK u. a. ). Nervt mich zur Zeit auch nur noch, als TNA Champion und Shooter gegen WWE. Dennoch aufgrund seines definitiv vorhandenen wrestlerischen Könnens im guten Bereich."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: McKnupwrote on 16.03.2008:[4.0] "gefällt mir bei TNA nicht! Eig note 3 aber für diese interviews und shoots gegen HHH und HBK und durch sein backstageverhalten nur ne 4!"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: TheBastion90wrote on 15.03.2008:[2.0] "Ich respektiere ihn für seine Leistung, doch nicht für sein Backstage Verhalten und alles andere... Der Typ geht mir auf die Nerven sobald der nur Ansatzweise im Bild ist. WWE zur Attitude Zeit ok, Angle vs. Brock Lesnar, ok aber dann war Schluss bei mir."
Rating: 2.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: LexLuger4everwrote on 11.03.2008:[10.0] "Zusammen mit Chris Benoit einer der besten In-Ring Performer aller Zeiten! Zudem sowohl als Heel als auch als Face überzeugend, auch sein Mic-Work ist ordentlich! Seit 2005 gefällt er mir zwar nicht mehr ganz so gut, doch aufgrund der überragenden Jahre 2000-2004 muss ich ihm ja fast schon die 10 Punkte geben, egal, was danach kam oder noch kommen wird!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Aaronwrote on 04.03.2008:[6.0] "Früher der beste technische Wrestler, derzeit aber nur noch schwach im Ring und nicht mehr sein früheres ICH! Er kann diesen anspruchsvollen Stil einfach nicht halten! Leider..."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: AnFuwrote on 02.03.2008:[10.0] "Kurt Angle ist ein klasse Wrestler. Sicher hat er nachgelassen, aber sein Match im Tokyo Dome gegen Nagata war klasse und er hat gezeigt, was er noch kann. Cooler Typ, Olympiasieger, Bestnote!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Showstopperwrote on 21.01.2008:[10.0] "Tja... Was soll ich zu Kurt grossartig sagen. Bin froh, dass ich seinen kometenhaften Aufstieg zum Topstar verfolgen durfte. Darf in der TNA endlich längere Zeit die Fackel tragen. Go Kurt. Der beste Worker der letzten 10 Jahre im Pro Wrestling und überhaupt einer der grössten Wrestler ever. The Total Package eben"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Garvinwrote on 15.01.2008:[10.0] "Allein die Tatsache, dass er es geschafft hat, innerhalb von knapp sechs Jahren über 100 sehenswürdige Matches zu liefern, macht ihn erstklassig. Wenn man bedenkt, dass er einer der charismatischsten und unterhaltsamsten ist, dann wäre alles andere als eine 1 nicht richtig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: devilsoldierwrote on 07.01.2008:[8.0] "Früher gefiel er mir richtig gut, aber bei TNA wird er zu sehr zum Star gepuscht, langweilt schon. Konnte Talente so gut hoch bringen aber muss als "Überwrestler" dastehen. 3 Titel gleichzeitig- BITTE wie real!"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Stone Cold Andywrote on 05.01.2008:[8.0] "Hat seit dem Wechsel zu TNA stark nachgelassen. Verdient für seine großartigen Leistungen in der WWF/WWE dennoch eine 2."
Rating: 8.0
Sentiment: -0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: The Yetiwrote on 30.12.2007:[10.0] "Ein Großartiger Wrestler, keine Frage, deshalb auch die Benotung, aber spätestens mit 50 ist der Typ ein körperliches Wrack, wenn er es jetzt denn noch nicht ist. Nach seinem Rücktritt befürchte ich, dass man noch viel über ihn hören wird..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: MA Excellentwrote on 29.12.2007:[10.0] "Bester Wrestler der Gegenwart, in Sachen Mat- bzw- Submission-Wrestling unübertroffen. Sehr anpassungsfähiger Stil und somit kontinuierlich gute Matches, unabhängig vom Stil des Gegners. Auch seine Promos grenzen an Genialität. Was vielleicht ein wenig fehlt ist die Face-Qualität, Heat bekommt er i. d. R. als Heel bzw. Tweener."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Y2J Michaelswrote on 27.12.2007:[8.0] "Super Wrestler keine Frage, nur leider in der falschen Promotion. Die WWE hat ihn besser eingesetzt und so konnte er sein ganzes Talent an den Tag legen. Deshalb "nur" eine 2."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Bullit69wrote on 26.12.2007:[10.0] "Wahrlich einer der besten Wrestler der Welt! Zudem noch richtig lustig(Attitude Era) und unterhaltend! Sollte ja auch in einem WWE Film mitspielen aber naja vllt schafft er es ja auch so! :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: mr sledgehammerwrote on 25.12.2007:[10.0] "Für mich der beste Wrestler den das Business je hervorgebracht hat. Er ist sowohl ein begnadeter Techniker als auch eine kräftige Wrestlingmachine. War immer der überzeugenste, arroganteste Heel der WWE und auch bei TNAW sind seine Matches legendär. 10 PUNKTE FÜR ANGLE!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Pinguwrote on 16.12.2007:[6.0] "Seit dem Verlassen der WWE nur mehr Mittelmaß, außerdem so ehrgeizig, dass es schon übertrieben ist. Das wird er eines Tages durch eine schwere Verletzung oder den Rollstuhl bezahlen!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Comptonwrote on 03.12.2007:[10.0] "Man kann es nicht anders sagen: Kurt Angle sollte mit dem Wrestling aufhören. Jetzt. Sofort. Je früher, desto besser. Denn vom Olympiasieger gab es schon seit Langem keine schönen Backstage-Nachrichten mehr. Er SOLLTE jetzt aufhören, nur um Schlimmeres vorzubeugen. Immerhin hat er in seiner Karriere schon so ziemlich alles erreicht. Und alle, die ihn kennen, brauchen keine 20-World-Title-Gewinne von ihm, um zu sagen, dass Kurt Angle einer der besten Wrestler aller Zeiten ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Pumuckel1980wrote on 26.11.2007:[2.0] "Angle kann meiner Meinung nichts als seine Belly to Belly und German Suplexes, sowie den Angle Slam abgesehen von seinem lächerlichen Moonsault der zu 90 % ins Leere geht, sorry"
Rating: 2.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Haukewrote on 25.11.2007:[6.0] "Technisch sicher brillant. Aber irgendwie nicht mein Fall."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Mr Wrestlemaniawrote on 18.11.2007:[10.0] "Seit Wrestlemania 21 hab ich denn wahren "Wrestling God" bewundert. Aber zurzeit ist der vollig bekloppt. Er nimmt das Wrestling viel zu ernst"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Maxi22wrote on 30.10.2007:[10.0] "Angles Matches waren fast alle großartig und auch sein Micwork ist herausragend. Vielleicht kein Topstar a la Hogan, Rock, Austin, etc. , aber einer meiner Lie"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Benny110106wrote on 28.10.2007:[10.0] "Wohl der beste Wrestler der jeh im Ring stand. Aufgrunddessen eine 1+, aber leider schaffte er es nie eine Liga wie Hogan oder Flair zu tragen, daher nur eine 1 ;-))))"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: FloriGPunktwrote on 24.10.2007:[10.0] "Absolut genialer Submission-Wrestler! Macht am Mike viel Spaß und hatte in der WWE eine super Musik zum Mitsingen.... Gefiel/Gefällt mir als Heel am besten!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Kreuflexwrote on 24.10.2007:[10.0] "Vielleicht der beste Wrestler der Welt... Komm endlich zurück zur WWE"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Winnie The Poohwrote on 24.10.2007:[10.0] "einer meiner absoluten Lieblingswrestler. Seine Matches waren immer sehr ansehlich. Ich fand es immer unglaublich, wie stark er Reaktionen bei den Fans hervorrufen konnte. Und seine Matches... Hammer :-) Schade das er bei WWE weg ist, aber gilt nun bei der TNA als absolutes Zugpferd. Schon geil. Aber will endlich TNA regelmäßig und aktuell im deutschen TV sehen :-)"
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: CM Dannywrote on 20.10.2007:[8.0] "An Kurt gibt es fast nichts auszusetzen. Da ich aber seinen selbstzerstörerische Art nicht unterstütze gibts nur eine 2."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Bhanduwrote on 08.10.2007:[8.0] "Die perfekte Mischaung aus hervorragendem Wrestler und Entertainer. Hat bei WWE alles erreicht, was es zu erreichen gibt. Kennt leider wohl seine Grenzen nicht - da kommt ihm das leichtere Schedule bei TNA sicher entgegen. Macht zuletzt wieder einen fitteren Eindruck. Leidet bei TNA derzeit allerdings unter schlechtem Booking!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Jericho Onewrote on 04.10.2007:[10.0] "Der beste Wrestler den ich im Ring gesehen habe! Sein Micwork finde ich persönlich nicht so ansprechend, er bringt seine "Message" trotzdem rüber. Trotz dieser Einschränkung gebe ich im eine 1, weil er im Ring diese Defizite wieder weg macht!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Oli10wrote on 02.10.2007:[8.0] "Hat mir im Ring immer gut gefallen! Schade das er nicht mehr in der WWE ist!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: dariawrote on 30.09.2007:[10.0] "es fällt schwer, ihm nicht die volle Punktzahl zu geben... er ist schon jetzt eine Legende"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Nick Toxicwrote on 21.09.2007:[10.0] "Hab ihn nur einmal Live im Ring "bestaunen" dürfen. Der Mann ist WRESTLING durch und durch. Ein Topwrestler, wenn nicht sogar der beste Wrestler in den USA. Ansonsten finde ich seine Arbeit in den TV-Shows einfach nur großartig..."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: morpheuswrote on 15.09.2007:[8.0] "Der vielleicht kompletteste Wrestler aller Zeiten Technik , Kraft , Schnelligkeit sind top. Normalerweise müsste er alles dominieren. Sollte aber besser auf sich aufpassen ( gesundheit ) . also keine frage ne glatte 10 fürs können aber nur 6 für die Ausstrahlung macht 8 points."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Alan Smitheewrote on 14.09.2007:[8.0] "Seit ein paar Jahren gehört Angle zu den Leuten den ich nicht im Dunkeln über den Weg laufen möchte aber er ist ein Weltklasse Wrestler, doch für die völlig Wahnsinnige Heel-Version von Angle will ich einfach keine 10er Wertung geben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DannyGeigwrote on 06.09.2007:[10.0] "Genialer Mann als Wrestler unübertreflich was er für Matches auf die Beine gestellt hat, dieser Mann schafft es auch aus einem nicht so begabten Wrestler ein Hammer Match rauszuholen. Und mit sehr begabten Superstars stellt er Match of the Year Kanditaten auf. Kurt Angle einer der besten im Ring"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Manuelwrote on 06.09.2007:[10.0] "Einer der besten Technischen Wrestler vielleicht nicht schon der beste neben Chris Benoit damals."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Obermackerwrote on 03.09.2007:[10.0] "Hat den Sprung vom Amateurringer zum Pro-Wrestler vollzogen wie kein anderer und deckt mittlerweile alle Facetten dieses Sportes hervorragend ab."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: shannonmoorewrote on 07.08.2007:[10.0] "Toller Wrestler aber wenn man so zurück schaut war er trotz alles Erfolge NIE der Topstar einer Liga."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jerseyhoolwrote on 31.07.2007:[10.0] "nur ein wort: fantastisch! dieser mann IST wrestling! und vince mcmahon wird sich wohl auf ewig fuer seinen abgang verfluchen! ich hoffe, dass uns kurt noch lange, lange erhalten bleibt & unterhaelt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: FiveStarwrote on 21.07.2007:[8.0] "Zweifellos einer der besten puren Athleten unseres Sports - seine Zeit als brüllende Wrestling-Machine war eher unvorteilhaft bzw. hat sein vorhandenes Charisma nicht ausgeschöpft, aber in letzter Zeit gefällt er mir als "Mr. Total Nonstop Angle" wieder richtig, richtig gut."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HHH-Stephwrote on 11.07.2007:[10.0] "einer der besten technischen Wrestler der Welt... zeigt unglaubliche Ringleistungen und besitzt auch gutes Micwork und Charisma"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Anti-Championwrote on 07.07.2007:[10.0] "Spitze im Ring und am Micwork. Einer der wenigen Wrestler in Amerika die in der Lage sind 5 Sterne Matches zu zeigen (auch wenn es länger her ist)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: PuroDragonwrote on 04.07.2007:[8.0] "Der Junge ist einfach nur noch Krank, sowohl Körper als auch Geist. Trotzdem sollte man seine früheren Erfolge und Leistungen beachten, deswegen gibts von mir eine Zwei"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Blade Bourdeauxwrote on 01.07.2007:[10.0] "Der Mann ist einfach Spitze, ob es nun in seinen letzten Storylines in der WWE, oder seine Ankunft bei TNA waren. Ob er nun den Durchgeknallten sehr gut spielt, oder ob er es wirklich ist, ich sehe ihn wirlich gerne."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DrBreswrote on 29.06.2007:[10.0] "Sehr unvernünftig seinem Körper gegenüber... aber sonst gibbet nichts zu meckern. Einer der besten Techniker überhaupt, auch seine Mic-Skills und Promos sind genial... legendär... der Rap-Battle mit Cena!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: ShaneOwrote on 28.06.2007:[6.0] "Ich find ihn irgendwie langweilig. Hat für mich nichts besonderes. Mehr als German Suplexes, Angle Slams und Angle Locks zeigt er nicht - für meinen Geschmack nichts besonderes!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Foerstawrote on 24.06.2007:[10.0] "Hat seine beste Zeit hinter sich, doch die scheint noch weit über ihn gen Himmel, denn im Moment ist er ziemlich langweilig geworden und es wirkt so, als ob er nur noch aus Langeweile zu TNA gegangen ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Der Kaschwrote on 24.06.2007:[10.0] "Kurt Angle ist einer der wehnigen allround talentierten Wrestler. Vieleicht ist der Angle Lock nicht der anspruchsvollste Move jedoch passt er zu seinem Gymmik. Sein 1. match gegen Samoa Joe und Michaels waren perfect."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: HCN007wrote on 24.06.2007:[10.0] "Kurt Angle ist DIE LEGENDE des Wrestlings schlechthin. Schade, das er grade bei TNAW ist, denn ei der WWE hat er das Zeug jeden, und damit meine ich jeden zu bezwingen und wie er das mit Henry hingekriegt hat einfach GenialOLYMPIC HERO=WRESTLING MACHINE=THE ONE AND ONLY LEGEND"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Der beste Wrestler aller Zeiten! It's Truth ... It's Truth !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Chris Cagewrote on 24.06.2007:[8.0] "Ich muss mich Deadman81 und anderen anschließen, zwar ist er ein absolut hervorragender Wrestler, doch er nimmt das Wrestling viel zu ernst und wird es nicht mehr weit in diesem Buisness schaffen wenn er so weiter macht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Deadman81wrote on 24.06.2007:[8.0] "Einer der besten Wrestler überhaupt ! Super Techniker, Riesen Performer. Befindet sich ( durch seine Verletzungen) momentan leider auf dem Selbstzerstörungspfad. "
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Hunter2007wrote on 24.06.2007:[8.0] "Ein guter Wrestler , der aus jedem Match ein tolles Match macht , nur manchmal sind die Matches ein bisschen schwächer als man vermutet."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Wrestlingmashinewrote on 24.06.2007:[10.0] "Der Beste Wrestler der Welt und vielleicht aller Zeiten. Bisher auf jeden Fall. Seine Promos gefallen mir auch sehr vor allem die in der Cena Fehde. Als er gerappt hat! Einfach göttlich!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: renol2007wrote on 24.06.2007:[10.0] "Kurt Angle ist einer der besten Wrestler aller Zeiter!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: hostrodwrote on 24.06.2007:[10.0] "Immer auf der Gratwanderung zwischen Genialität und Wahnsinn. Zur absoluten Nummer Eins wird er bei mir aber nie - er nimmt das Geschäft zu ernst, und deshalb empfinde ich ihn als Spaßbremse :o)"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jupp365wrote on 24.06.2007:[10.0] "Spitzen Wrestler, geniale Ausstrahlung, einfach das Rundum-Paket schlechthin. Ich hätte gerne ein Match zwischen ihm und einem Bret Hart in seinen besten Jahren gesehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: timbo7111wrote on 24.06.2007:[10.0] "Hat sich 10 Punkte redlich verdient. Gucke erst seit kurzem wieder Wrestling (habe nach WM XI oder XII aufgehört zu gucken) und hatte Angle vorher nie im Ring gesehen. Selbst mich als absoluten Oldschoolfan hat er total überzeugt. Unglaublich dieser Mann!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: D3adm4nwrote on 24.06.2007:[8.0] "Mag ihn persönlich nicht, muss aber seine herausragenden Leistungen und Verdienste honorieren..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sharkwrote on 24.06.2007:[6.0] "Wrestlerisch nartürlich eine Wucht aber es gibt auch bessere... und seine Gimmicks haben mich persönlich nie so überzeugt...."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Mediwrote on 24.06.2007:[8.0] "Sorry Leute...... seine Techniken und Leistungen sind natürlich vom feinsten, versteht mich da bitte nicht falsch, aber irgendwie konnte er mich nie über all' die Jahre SO überzeugen, dass ich gesagt hätte: "Ja, er ist DER ABSOLUTE oder zumindest richtig unter meinen Top 10 auch nur. ""
Rating: 8.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Carsteinwrote on 24.06.2007:[10.0] "Glaub is bei keinem so leicht die 1 zu geben denn Angle ist einfach das Total Package ohne große Defizite"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: DasMwrote on 24.06.2007:[8.0] "Kontrovers, da eigentlich eine 10 die Mindestwertung sein sollte, eine 1 aber, weil hier der Mensch Kurt Angle zugrunde geht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: mdbnasewrote on 24.06.2007:[10.0] "Technisch genial, und nicht umsonst Goldmedaillengewinner bei den Olympischen Spielen. Seine Leistungen sprechen für sich!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sancezzwrote on 24.06.2007:[10.0] "Einer der besten Wrestler die ich in meinem ganzen Leben gesehen habe. Er kann noch mehr. Einer, der unbedingt einen Push braucht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Steven McWheelerwrote on 24.06.2007:[8.0] "Für mich zwar der beste Wrestler der Welt, also rein kampftechnisch gesehen, und auch mit dem nötigen Charisma etc. ausgestattet, jedoch ist der Typ krankhaft veranlagt, überergeizig und irgendwie komplett durch, deshalb keine Höchstnote"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Sandman16wrote on 24.06.2007:[10.0] "Was anderes als eine 10 kann man nicht geben. Ein erstklassiger Techniker und überhaupt einer der besten Wrestler auf der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Vimeswrote on 24.06.2007:[6.0] "Kurt ist ohne Frage neben Chris Benoit und Shawn Michaels DER In-Ring-Performer der WWE. Allerdings hat er aus meiner Sicht das Charisma eines Backsteins und seine Promos fand ich nie wirklich amüsant(außer in der Fehde gegen Cena). Darüber hinaus ist der Ankle Lock der langweiligste(und technisch anspruchsloseste) Finisher den es gibt(vielleicht abgesehen von dem Sleeper Hold)."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: jimpanse1980wrote on 24.06.2007:[8.0] "In der WWE TOP, bei TNA aber noch nicht wirklich was gerissen außer ein paar gute Matches mit Joe. Hat den Titel noch nicht verdient, wird TNA aber weiter nach oben bringen und das ist auch sein Job. Ein MMA/UFC-Figt gegen Lesnar wäre noch interessant."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Blue Meaniewrote on 24.06.2007:[10.0] "Er erträumte sich der beste Wrestler aller Zeiten zu werden und dieser Traum wurde ihm erfüllt! Er ist der wohl beste Allrounder ever, auch am Mic ist er IMO wirklich gut, denn in der WWE konnte er als "Olympic Hero" mit zahlreichen Promos überzeugen. Als "Wrestling Mashine" passt es ohnehin nicht mehr, dass er lange und gute Promos hält, sowieso hört sich seine Stimme durch diesen Mundschutz jetzt immer so komisch an ^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=540&gimmick=Kurt+Angle
Comment: Thomas Carlsonwrote on 24.06.2007:[10.0] "Wahrscheinlich zerstört er sich weiterhin selbst aber der Kerl hat Talent, Charisma, das Aussehen usw. Alles andere als eine 10 kann ich hier nicht geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: BatteryofSoundwrote on 17.12.2024:[6.0] "Wow, recently there were some opinions that are so close to my heart. I thought everyone thought Satomura-san was a great wrestler. The better than the best like Macho Man said. Well, I don't think so. At the beginning of her career, it was pure imp, angry eyes, this face angry at the world, a sea of emotion. As time passed and Meiko Satomura became... a normal, nonchalant, kind of indifferent, emotionless wrestler that you don't want to worry about. It's like she doesn't care. There's no doubt that her strikes and punches are great, moves are less, but... I'm watching Meiko's matches this year - I know how they're going to end, no matter how hard her opponents try. I just hope Emi Sakura beats her, it's the right thing to do for what she said about Emi. And in her farewell match, she'll probably lose to Chihiro. That's all I have to say about Meiko Satomura."
Rating: 6.0
Sentiment: 0.21369047619047624
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: chachuonlinewrote on 14.12.2024:[6.0] "Meiko Satomura is obviously talented, but, for me, does not reach that "all-time" level with her matches. There's something missing which keeps her from being the legend I believe she should have been. Her in-ring work is strong-powerful strikes and sharp submissions-but it often lacks that spark or those unpredictability moments that makes a match one never forgets. It's hard to not consider "what ifs" of her career: what if she'd taken greater risks and pushed for more earthshaking matches? Instead, she is a wrestler that was at the brink of some big something but never fully broke through into it."
Rating: 6.0
Sentiment: 0.15476190476190474
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: manamimeltzerwrote on 14.12.2024:[6.0] "A legend in the game but I don't think her in-ring output quite matches her reputation, and when it comes to the amount of great matches she has had and her consistency, I think she's a mixed bag for me. A talented performer with a not so impressive catalog unfortunately."
Rating: 6.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Anas Kingwrote on 11.12.2024:[6.0] "I think she's a good wrestler. There are some matches of hers that I LOVE, but for the most part I think she is a one trick ponny. I don't think she has depth. I don't think she has range. Her hard hitting style is good though. But I just think in terms of pure in ring work, she's slightly overrated."
Rating: 6.0
Sentiment: 0.3079931972789116
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: saorifan52wrote on 28.11.2024:"One of, if not the, greatest to ever do it. Very mean in the ring, yet knows how to make every move and moment feel important to every match. The actual "Final boss" and someone who understands what wrestling is supposed to be, to an unreal degree."
Rating: No rating found
Sentiment: 0.19875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Joe907wrote on 19.07.2024:[10.0] "Meiko Satomura is a LEGEND of wrestling. Awesome striker and great technician in the ring. She produced some of the greatest matches of all time. From the late 90's to the 2010's she was always on top. She is an all time great"
Rating: 10.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: StardomIconwrote on 25.05.2024:[10.0] "The original owner of the "Final Boss" moniker, Meiko Satomura is a legend. If you have never watched the documentary Gaea Girls, watch for free on archive.org. The film documents what joshi go through to make it as wrestlers, and also provides insight into a young Meiko Satomura's mindset on her pursuit of greatness. Now, on to why I rate Meiko a 10. She has an intimidating look and intimidating kicks to match. Everything she does look believable and painful. She doesn't perform moves for the sake of doing something flashy. Instead, she looks like she is in a legitimate competition and is trying to win a battle. Meiko is the closest wrestler we'll likely ever see to someone like Bret Hart in terms of execution and believability."
Rating: 10.0
Sentiment: 0.0975
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: JulianPera50wrote on 06.03.2024:[9.0] "Disagree with some of the comments here. Never saw nothing of her before WWE, and the little I watched from her match with Roxanne was amazing. An incredible athlete for her age, amazing strikes and hits that looked legit, bringing the old school style to the modern wrestling. Its such a shame that after losing the NXT UK Women's Championship and wrestling Roxanne, she just dissapeared from WWE television. Wish she would come back for one more run on the main roster."
Rating: 9.0
Sentiment: 0.2879166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Chipy4848wrote on 17.10.2023:"I wont give a rating cause Im very conflicted. She is a great worker. But watching her dropkick her trainees teeth in because the cameras were on her has no place in the sport idc who you are or how skilled you are. Seriously go look up the video, the trainee almost got her face caved in."
Rating: No rating found
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Daley Hwrote on 14.10.2023:[10.0] "Without a doubt, "The Final Boss" Meiko Satomura is a joshi legend in every sense of the word. And she's still going strong, even well into her 40s! Would love to see her go up against the likes of Charlotte Flair, Becky Lynch, or even Asuka in WWE. Any match between one of those 3 and Meiko would most certainly be a dream match!"
Rating: 10.0
Sentiment: 0.3619047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: WrestlingBullwrote on 03.09.2023:[10.0] "Meiko Satomura is the definition of Final Boss for real. One hell of a talented, fast, hard hitting, charismatic and classy woman. Inside the ring, she is a true machine, outside the ring she carries herself very elegantly. Always well dressed. That definitely brings a nice touch to her character. Almost three decades of excellence, I can't say anything else."
Rating: 10.0
Sentiment: 0.25069444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: TheOneAndOnlyCactuswrote on 06.04.2023:[10.0] "What is there to say about her that hasn't been said already? Started in 1995 and is still going strong. Hard-working, intense in the ring, quite tough, great technical wrestler, can get the best out of anyone in the ring, Meiko is a phenomenon."
Rating: 10.0
Sentiment: 0.34074074074074073
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Nissan420wrote on 01.04.2023:"Please do yourselves a favour and watch the GAEA documentary (GAEA Girls) it's on YouTube and other sources, This will show you what Satomura was really like, A disgusting thug and abuser, She shouldn't get the credit she does, She's awful."
Rating: No rating found
Sentiment: -0.385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: JeanneLafont94wrote on 07.03.2023:[8.0] "A legend. Her NXT passage is very cool, we feel that she is the final boss of the game. She is on a good cruising speed. She now helps young people to build themselves."
Rating: 8.0
Sentiment: 0.17099999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: KKeanelwrote on 25.02.2023:[10.0] "Down to earth one of the greatest individual not only of female, but overall of japanese wrestling. Magical fighter."
Rating: 10.0
Sentiment: 0.16805555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: CoolKylewrote on 16.01.2023:[10.0] "She's totally one of the best workers of the 10s. Male and female. One of the absolute best offensive wrestlers ever, and her consistency is almost unmatched (from what I've watched thus far). She doesn't have as many classics as you might expect from someone of her reputation, but the amount of really good matches over a 25+ year period now is colossal. Plus she seems to somehow never get injured."
Rating: 10.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: eltetechoriwrote on 21.11.2022:[10.0] "Undoubtedly, a very good fighter. Watching her fight I realized that the Japanese style is really good, no matter the genre."
Rating: 10.0
Sentiment: 0.5366666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Okaro143wrote on 05.09.2022:[9.0] "Probably the best female in ring worker in NXT UK division and my favourite NXT UK Women champion. A bonfide legend and one of the best female workers in the history."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Stern Jwrote on 02.07.2022:[10.0] "For my money, the greatest Women's wrestler to ever do it, carried on evolving the style she learnt from the mid to late 90s and just got better with age, for me her run from 2012 to current has been THE MOST CONSISTANT i've ever seen somebody perform at her level (along side people like Omega and Okada who are well known for this) also Rock Your Life Away is a banger \m/"
Rating: 10.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: HowardRatnerwrote on 24.06.2022:"Meiko Satomura is an incredible wrestler that never fails to succeed on putting great matches on a regular basis."
Rating: No rating found
Sentiment: 0.4875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: texasyoshwrote on 19.06.2022:[10.0] "Meiko Satomura is nicknamed The Final Boss for a reason. Meiko is still an unbelievable wrestler in her 40s, and has had a fantastic career."
Rating: 10.0
Sentiment: 0.05000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: jamzell00wrote on 11.05.2022:[10.0] "I sometimes forget Meiko is in the wwe and of all places wwe uk. She's a living legend and has consistently put on great matches for the last 20 years. If you see a UK wrestler in the wwe there's a good chance Meiko got the best match of their careers out of them. The Uk wrestling scene kind of took her as one of their own the last few years which is another funny story entirely. I'm interested if theyll ever move her past nxt uk because she's so above that brand but I have 0 faith in her doing well on the main roster"
Rating: 10.0
Sentiment: 0.2976190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: bigbluewrote on 06.05.2022:"Absolutely great! Just what the company needs! Have been starting to lose my faith with WWE over recent, but Meiko really is special, the future is bright for her!"
Rating: No rating found
Sentiment: 0.37202380952380953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: CTFBwrote on 11.03.2022:[10.0] "The perfect example of a talent too good to be working for a company so sub-par, and on top of that, on a show barely anyone watches. Meiko has shown people she's a legend as her decades of excellent work is finally starting to be recognized. It's a shame WWE has ruined WALTER and I feel it's gonna be the same with Meiko in her eventual call up, but as of now, she's one of the best female workers currently going."
Rating: 10.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: demixForeverwrote on 18.08.2021:[10.0] "It's not just the NXT UK connection, but I see her and WALTER in a similar light in that they just give off Final Boss vibes, except Meiko isn't a giant like WALTER, she just has an aura about her that makes her and her matches so intense."
Rating: 10.0
Sentiment: 0.12000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: doxkevwrote on 20.06.2021:[10.0] "Another awesome Japanese lady. I hope wwe doesn't ruin her like they are Asuka. She has already wrestled Asuka in some fantastic matches. One of her matches against Io in Japan is one of the best matches I've ever seen men or women. Her matches with Kay Lee Ray have been very entertaining. She wants to face cf, Sasha, and Io. Would love to see the latter two. cf is too protected and severely overrated and I would be very surprised if they gave her a loss against Meiko"
Rating: 10.0
Sentiment: 0.4311111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Kungwrote on 23.04.2021:[10.0] "What is there to say about Meiko Satomura that hasn't already been said? She's supremely talented in the ring. She's helped cultivate fantastic talents like DASH Chisako and Kagetsu. And she carries herself as the star that she has been for so long. The folks over at NXT UK should thank their lucky star that they have the Living Legend in their ranks."
Rating: 10.0
Sentiment: 0.3458333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Residentwrote on 06.03.2021:[8.0] "I hadn't heard of her until the Mae Young Classic. I enjoy matches of Japanese female wrestlers like Manami Toyota (my favorite), Bull Nakano, and others. But Satomura matches at the Mae Young Classic were just average, except for her match against Toni Storm. But since then, I have seen a few Satomuras matches on YouTube and I liked them. Then I really enjoyed Satomura's match against Kay Lee Ray. My favorite recent female match."
Rating: 8.0
Sentiment: 0.1788888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Jetlagwrote on 02.09.2020:[10.0] "Seit 1998 weltklasse. Danach gab es einige Leistungstiefs, bedingt durch den Niedergang des Damenwrestling in Japan, aber seit ca. 2006 ist sie die beste Frau im Wrestlingring weltweit und hat mitunter die präziseste und härteste Offensive, die es gibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Wrestling Foreverwrote on 08.07.2020:[10.0] "Heute einige Meiko Satomura Matches die ich sehen wollte ergänzt gerade von GAEA Japan wo sie zum Stammroster gehörten. Eine der besten Joshis überhaupt ist immer noch total fit, fast nie verletzt und hat es einfach drauf."
Rating: 10.0
Sentiment: 0.20000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: cuervonegro83wrote on 03.11.2019:[10.0] "I'm not a fan of giving a 10, but when we speak about a living legend like Meiko the only option is to give a 10, she always is going to give tough matches, great impacts and I always love her scorpion rising move. Any match of Meiko is worth watching. Also she is bringing new big stars like Chihiro Hashimoto and Sendai Girls keep the puroresu classic style in their matches."
Rating: 10.0
Sentiment: 0.18926767676767678
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: joyadamswrote on 10.09.2019:[10.0] "The female reference in wrestling. Among her moves, the european uppercut is very well applied and strongly efficient"
Rating: 10.0
Sentiment: 0.15833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: KyleEnjoysWrestlingwrote on 06.08.2019:[9.0] "A magnificent veteran & extremely crisp in the ring. She can hold hew own with just about any style match someone wants to throw her way. More than impressed in the Mae Young Classic."
Rating: 9.0
Sentiment: 0.4240740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: ElPolloLocowrote on 03.06.2019:[9.0] "I'd like to highlight one thing about Meiko Satomura. Despite being close to 40 and having spent over half her life in the wrestling business (! ) she still has amazing work ethics. She will go out even in front of a minuscule crowd and give them their money worth instead of merely pocketing their money and do the absolute bare minimum like she could do. That takes complete dedication and puts a lot of so called legends to shame. These days she doesn't look as good as she used to and age and a long list of injuries are catching up with her but she still goes out there, gives the fans a good match and somehow even manages to make her opponents look good. Io Shirai may be the best lady wrestler I have ever seen in my life, but Meiko is surely one of the hardest working and most dedicated wrestlers, regardless of gender, I have see in my life."
Rating: 9.0
Sentiment: 0.3019607843137255
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: ZestyZuluWarriorwrote on 06.02.2019:[10.0] "A very easy argument could be made that Meiko is the greatest women's wrestler of all time. She's an absolute trail blazer and legend in Japan and, while never really breaking out in the US, has real fame. Her move set is awesome and intense and she's put on some phenomenal matches. Let's not forget that she's nearing 40! And she still moves like she's young!"
Rating: 10.0
Sentiment: 0.4237037037037037
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: LandonRyanWyattwrote on 31.01.2019:[8.0] "Another "good" one who sometimes receives too much credit though. Her moves and matches are tough to watch at times. Good though for pushing 40."
Rating: 8.0
Sentiment: 0.30277777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: RatingsMachinewrote on 15.10.2018:[10.0] "Meiko Satomura is the best female wrestler in the business, and she has been for quite some time. It's great to see her getting exposure in the US as part of the second Mae Young Classic, and I hope that at least one or two fans are excited enough by what they see to check out some of her work in Japan."
Rating: 10.0
Sentiment: 0.23796296296296296
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: CognacConversationwrote on 02.07.2018:[10.0] "She has been the cornerstone of joshi puroresu for nearly 2 decades now. Chigusa Nagayo's top trainee from the super talented original GAEA class of rookies. Her big victory against the legendary Aja Kong in April 1999 was perhaps the moment a star was born. Satomura would continue to hone her craft, delivering great singles matches and many awesome GAEA-style tag team sprints. Her stiff kicks, speed, submissions and amazingly diverse moveset have established her as perhaps the best woman wrestler in the world today (yes, I'd put her above Io Shirai). What's remarkable is that she has not slowed down one bit. The wear and tear of joshi's high impact workrate has left many a great wrestler broken down by their mid to late 30s. But not Satomura, who continues to blaze a path whether it's running her own promotion or training the next generation of rookies in Sendai. In recent years, Meiko has gained increased international recognition with matches in the US and UK, slowly re-establishing joshi's great reputation after a number of rather dark years in the mid 00s."
Rating: 10.0
Sentiment: 0.2763417658730159
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: SNKwrote on 11.08.2017:[10.0] "Doesn't get any better than Big Match Meiko. She's quick, powerful, makes everything look legit and can technical wrestle or strike as good as anyone. Best female worker in the world."
Rating: 10.0
Sentiment: 0.35416666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: rjsbx11wrote on 28.06.2017:[8.0] "Satomura is everything a Joshi wrestler should inspire to be, she has some of the most believable offense with sharp kicks and brutally laced uppercuts. She could've been considered one of the best working a few years ago but she's still a hell of a talent."
Rating: 8.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Luv all wrestlingwrote on 17.09.2016:[10.0] "Satomaru is a veteran in the peak of her career, having multiple motyc in 2015, and 1 or 2 in 2016, not only this but she is also owner of Sendai Girls, a solid Joshi indie fed. Satomaru is a future legend with a very long, respectable and crazy career."
Rating: 10.0
Sentiment: -0.01833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: ErycK24wrote on 15.07.2016:[8.0] "She is one of the best female performers in the world that is for sure. However, I don't think she deserves an 9 or 10 rating."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: ntrlk1wrote on 06.07.2016:[9.0] "The archetype of a joshi wrestler.  Everything she does looks legit.  With that being said, she is equally adept doing "beautiful wrestling" as she is engaging in strong-style strike exchanges.  There's a case to be made that she's the best female wrestler currently working anywhere in the world."
Rating: 9.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Nemoflowwrote on 04.09.2015:[10.0] "Unter den vielen japanischen 5-Sterne Wrestlerinnen ist sie einfach die Königin für mich. 90% ihrer Kämpfe sind eine Offenbarung und ein Dutzend davon, sollten in keinem Lehrfilm fehlen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: CJ Duskwrote on 24.03.2014:[9.0] "Great as a single or tag team wrestler. What she lacks in personality she more then makes up for with her power moves and technical wrestling skills."
Rating: 9.0
Sentiment: 0.30714285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Kings Roadwrote on 25.03.2011:[10.0] "Für mich ist Satomura seit Jahren die ungeschlagene Nr. 1 der japanischen Wrestlerinnen (und dadurch eigentlich auch weltweit). Unvergessen sind für mich die Ringschlachten mit Aja Kong bei GAEA. Gleichzeitig hat sie mit SENDAI wirklich ein tolles Projekt ins Leben gerufen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1944&gimmick=Meiko+Satomura
Comment: Rancorwrote on 13.12.2007:"Müsste eigentlich schon für ihren denkwürdigen Auftritt in der "GAEA Girls" Doku die Höchstpunktzahl bekommen. Hab sie aber nie im Ring gesehen..."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: wrestlingswiftiewrote on 29.01.2025:[10.0] "It's illegal to not have this guy on your Mount Rushmore of managers at this point. He was a fun booker, not the best businessman but I digress. His booking philosophy was great, his promos are AMAZING, even though they could get a little repetitive at times. I like how he always finds a way to reinvent himself while staying the exact same -- how does that happen?"
Rating: 10.0
Sentiment: 0.22361111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Anas Kingwrote on 20.01.2025:[4.0] "Just like my rating for Bobby Heenan, I acknowledge (no pun intended) all the good work he's done in the past, and still doing within the current wwe environment, I just can't give high ratings to the people that I don't think are good human beings. He's one of the most selfish people in the business. I will never forget how bad he was treating Tommy Dreamer. And even in the current day, I hate how bias he is. He's the reason why the bloodline story has not ended yet. He's the reason why people like Solo Sikoa are getting all the push."
Rating: 4.0
Sentiment: -0.01727272727272726
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: maven loverwrote on 16.01.2025:[10.0] "Irrevocably one of the best things that's happened to wrestling, ever. Look no further than the pops this guy is able to elicit from every show he speaks at to get a sense for how utterly loved this guy is in the wrestling community. Was a headlining figure for the legendary ECW, has managed numerous notable names, & every promo that he shoots is super impassioned. His love for the business is clear as day while he still occasionally takes bumps well into his fifties. I don't have enough good things to say about Heyman."
Rating: 10.0
Sentiment: 0.41025641025641024
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: MEDaminewrote on 07.01.2025:[10.0] "Undeniably the greatest manager in pro wrestling history, he's one of the best wrestling personalities in the mic, and is incredibly charismatic, and most of his managerial experiences were great success"
Rating: 10.0
Sentiment: 0.6833333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: GameBoyAbysswrote on 19.12.2024:[8.0] "Within the scripted environment of the WWE, Paul Heyman is far and away the best manager, maybe, ever, and the amount he'd added to The Bloodline's story and to the industry as a whole is laudable. Outside that scripted environment, his antics range from utterly selfish and self-serving (ECW pay disputes) to ridiculously stupid (turning the self immolation of a man into a joke to prop up Roman Reigns). I like Heyman, but it sucks that the man himself is so unlikeable."
Rating: 8.0
Sentiment: -0.04285714285714284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: KKeanelwrote on 21.11.2024:[7.0] "I will stick to my philosophy of rating people on this site, which includes their in-ring and outside the ring influence on the wrestling industry. First part of that holds you back from giving Paul Heyman anything under 10. His talent to carry compelling storylines on his back with credibility in his voice manner is just incredible till this day, ESPECIALLY today when talents are generic and "changingchannelgenic" in this sphere af. His child, ECW (which we know after reebranding from "Eastern" to "Extreme"), changed the wrestling world forever and his contribution to elevate a skill of understanding the wrestling industry throught many generations of wrestlers in undeniable. However, his actions off the spotlight during the time makes me feel uncomfortable when I rarely see him next to the ECW legends. He lied to them about his partership with Vince, he literally BEGGED him to save his company and was far late with the paychecks. His ignorance regarding CTE and other health issues is disgusting when you look up on how many guys from his company are no longer with us. Ambigious case in my eyes - one of the best managers in pro-wrestling history, whose actions on the backstage shouldn't be forgotten."
Rating: 7.0
Sentiment: 0.09473684210526317
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Brando Calrissianwrote on 05.11.2024:[10.0] "Paul Heyman is one of the greatest creative minds and eyes for talent the wrestling world has ever had. Say what you want about his time running ECW and not paying talent, but he clearly was able to constantly find the best talent the world had to offer. Everytime he was brought into WWE or other promotions to run creative and give his ideas, he always focused on the most talented people above anything else. And then Heyman as a manager is perhaps the best in history. An absolute GOD on the microphone who is able to build up every single person he is put with. Whether it be building them up as his client, or building them up against his client. Heyman knows what is best for the wrestling business, and always seems to go towards that."
Rating: 10.0
Sentiment: 0.4564732142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: JackBurtonsTruckwrote on 14.10.2024:[10.0] "For me he is the greatest on the mic. His contributions are endless, his mind for the business is one of the greatest, and he is just so damn likable."
Rating: 10.0
Sentiment: 0.59375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: TripleCrownwrote on 05.10.2024:[10.0] "Without a doubt, Paul Heyman is one of the most important figures in the entire history of wrestling. The man just gets it, he understands everything. Not saying he's perfect, because no booker or backstage personnel is, but it's no coincidence he is loved by many. Many people have stories about him in ECW, sure he did some shady things... I personally don't agree with the bad cheques and whatnot, but he has contributed so much to the business. Whether it be a manager, promoter, commentator, writer, on-screen gm, name it and he has excelled. We will never see another figure like Paul Heyman in the wrestling industry. Truly one of a kind, a master of everything."
Rating: 10.0
Sentiment: 0.3038461538461539
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: AnthoTheKIDwrote on 30.08.2024:[10.0] "Absolutely brilliant. That's all I have to say. From his work in WCW as a part of the Dangerous Alliance handpicking Steve Austin to be part of it to his days with Brock Lesnar and more recently with Roman Reigns, the man is a genius."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Odinohkawrote on 18.08.2024:[10.0] "He can make everyone a star. His work with Roman was insane and make Roman the biggest star he deserved to be. The clan was the best thing that happened to WWE since a long time and Paul made this happened. His acting skills are amazing and his love for wrestling are contagious. What a chance we have him."
Rating: 10.0
Sentiment: 0.17500000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: gilmoregirlswrote on 13.08.2024:[6.0] "His current managerial work with The Bloodline is spectacularly overrated and undynamic. It's the same sh*t week in and week out. All of his promos are the same. He is a drab character now. His managerial/on-screen stuff in the past was very good, but this current stuff is boring AF. You wear the same suit every week and say the same lines. BORING!"
Rating: 6.0
Sentiment: -0.06727272727272729
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rassle Fanwrote on 12.08.2024:[6.0] "He was a great manager in WCW and led the Dangerous Alliance which is a criminally underrated stable. As booker of ECW he opened the door for wrestlers that led to bigger and better things by giving them a proper platform. Mick Foley, Austin, Jericho, et. al. He's also one of the main reasons why ECW went out of business even though he was personally being bankrolled by Vince McMahon. The Forever Hardcore documentary revealed a lot and even the WWE produced Rise and Fall of ECW had some people saying point blank Paul never lied to the fans but he did lie to certain talent. He wouldn't pay the ones he knew couldn't leave. Remember that next time his hall of fame speech is shown when he gives a rah rah speech about ECW never dying. It is dead, in fact. He's a great part of Roman Reigns and the bloodline but that expiration date has long since passed. I think he's deserving of the hall of fame but I could never give him a 10 because he's usually full of shit with bits of truth scattered about."
Rating: 6.0
Sentiment: 0.11005291005291007
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: dulonicdaddywrote on 26.06.2024:[0.0] "I think that this database should have a separate ratings/lists category for wrestlers and managers/personalities. Due to the nature of this site I'll rate Heyman as a wrestler. Goofy AF bump taker, super solid pleading, that's about it I mean cool."
Rating: 0.0
Sentiment: 0.12430555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: doobwrldwrote on 26.05.2024:[10.0] "The wrestling genius. The man who has changed the way many of us fans, and even executives in the business see professional wrestling. Not only was he a great figure behind the scenes, causing a shift and a revolution of professional wrestling in the 90s with ECW that is still reverberated and inspired from today, he was amazing when given the opportunity to showcase his skills and knowledge of wrestling on the camera as well. Nobody has ever been better on the microphone, and nobody has ever been more intelligent than Paul. One of, if not the best thing to happen to professional wrestling."
Rating: 10.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: An Wrestling Guy12wrote on 12.05.2024:[10.0] "A good talker. A good manager A good promoter. A lotta charismatic. Brutally honest. The guy has everything. Nothing wrong with Paul. He got everything. A complete package as a manager. Charisma? 10/10. Mic skills? 98/10. Promoting level? 12/10. Honesty? %100."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: StardomIconwrote on 12.05.2024:[10.0] "Here's a quote from Roman Reigns in case anyone has any confusion about Paul Heyman's mark on the business: "It's difficult to cut a promo about the greatest promo in the history of the business". Not only is Paul Heyman one of the greatest talkers in wrestling history, he also has an eye for talent like no one in the history of the business. To quote Roman again, "The Tribal Chief doesn't happen if I'm not with the Wiseman". Many talented yet struggling wrestlers found a platform to be themselves and explore their definitive gimmick while working for or with Paul Heyman. Here's a short list of wrestlers that either debuted to a larger audience under Heyman or re-invented their gimmick under Heyman: Stone Cold Steve Austin, Shane Douglas, Chris Jericho, Rey Mysterio Jr., Chris Candido, Rhino, The Dudley Boys, Rob Van Dam, Jerry Lynn, Yoshihiro Tajiri, Mick Foley and many others. There's a reason why people still chant "E-C Dub" despite ECW closing its doors over two decades ago. Paul Heyman introduced so much more to the world of North American wrestling than the hardcore style - he introduced North American wrestling fans to lucha libre and Japanese strong style as well. Many of Paul's concepts were stolen by Vince McMahon while many of his talents were stolen by Eric Bischoff. Whatever your opinion of Paul Heyman is, you certainly have an opinion of him, which is the ultimate goal of anybody involved in the wrestling business. As for me, I'm an admitted and unabashed kool aid drinker because Paul Heyman is the reason I went from liking wrestling to loving wrestling."
Rating: 10.0
Sentiment: 0.2673809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ismarizviwrote on 08.05.2024:[10.0] "The man who introduce extreme to wrestling industry.A man who make many stars from his promotion and help them to reach high points.One of the best talkers and managers in the game.And a intresting catchphrase Ladies and gentleman my name is Paul Heyman"
Rating: 10.0
Sentiment: 0.38375000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: chaqudemuswrote on 30.04.2024:[3.0] "His mannerisms are so stupid and exaggerated. His promo's don't do it for me at all. I don't get it; he comes across as someone who would be good at selling salami and noodles at the corner shop but in wrestling he ruins things for me. I dislike the whole bloodline stuff and Hey man is probably the reason. I wish I liked him as much as most people do but he's just grating to me. I once saw a duck in a pond. His face annoys me. It's hard to express why I give him a three but the website makes me do it. Oh lord, remember the time he said Brock Lesnar? The way he stares at Roman like he wants to lick him is too much. He reminds me of a cross between a meatball and Super Mario. What else to say? English isn't my first language so I apologize if I made some mistakes in my comment."
Rating: 3.0
Sentiment: 0.0886904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: bzgameswrote on 12.04.2024:[4.0] "A vastly over rated manager. His gimmick is that of a savvy businessman when he ironically has only been able to sell one product, Brock Lesnar. A solid promo but his work as a manager actively hindered some of the talents he worked with and his run as the "Wise Man" with Roman has been fine but I challenge anyone to find a moment that was truly elevated by his involvement. An inspired booker, but I can't give a man kudos for being strapped to the rocket that is Roman Reigns and was Brock Lesnar."
Rating: 4.0
Sentiment: 0.20238095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Pigeon Scratchwrote on 11.04.2024:[10.0] "Paul Heyman's career isn't perfect, heaven's no, but frankly I don't even really wanna talk about the negatives of this man. He is one of the most important promoters and bookers of 90's professional wrestling, if not the most important promoter and booker of all time. He was able to practically change the rule book on writing a show, with the focus on showcasing strengths, hiding weaknesses, allowing diversity in his roster instead of just pushing the biggest and tallest, and pushing the envelope during a time when the biggest companies didn't even do so until years later. Some of the most important stars of both WCW and WWF/WWE came through ECW. He's also one of the best commentators of all time simply during his time as such in 2001 alone. Frankly I'd rather have Jim Ross and Paul Heyman instead of Lawler. Last but not least, he is one of the best managers of all time, from his days in WCW all the way to his managerial role of the Bloodline, he's always been fantastic as a manager. And of course, he is one of the best promos of all times, and truly and influential artist in his promos. He is simply one of the best."
Rating: 10.0
Sentiment: 0.430952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: 2pt0EcoBoostFusionwrote on 06.04.2024:[10.0] "Paul Heyman really did define what managers should be; Exciting, Charismatic, full of Character, and just every good checkbox you can check off. He is also a genius within the industry in terms of booking and promoting, giving wrestling fans some great works and making ECW into what it was back in the day and making it's influence still felt today. He helped many wrestlers grow into superstars and managed some of the biggest names in the industry. CM Punk, Brock Lesnar, Roman Reigns, you name it. Although I have my criticisms of the WWE Hall Of Fame and there's many names that shouldn't be in there, Paul Heyman is not one of those names and absolutely 100% deserves his induction, very happy for Mr. Heyman. Here's to the legacy and legend of Paul Heyman and hopefully he stays around the business because his contributions to wrestling will never be forgotten."
Rating: 10.0
Sentiment: 0.45909090909090905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: sarahlicitywrote on 29.03.2024:[10.0] "One of the greatest men to pick up a microphone. As a promoter, it was a shame that his self-admitted bad business sense got in the way of his unimpeachable eye for talent, because just look at the ECW alumni that we all love nearly three decades on. As a booker, he brought us the SmackDown Six. As a manager, he elevated so many men, filling in the gaps in his clients promo skills. His entry in the 2024 Hall of Fame is truly well deserved."
Rating: 10.0
Sentiment: 0.28
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: mtorrealba99wrote on 12.03.2024:[10.0] "Paul Heyman is truly a wrestling genius, he's one of the greatest managers of all time, doing amazing work in WCW and also in WWE in recent years with top guys like Brock Lesnar, CM Punk and Roman Reigns. As a booker, he also proved to be pretty effective in ECW, hiding the weaknesses and highlighting the strenghts of his wrestlers. An all-around legend of this business, and a very skilled talker who still gives us great TV."
Rating: 10.0
Sentiment: 0.5111111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: JediSaiyanMaster1203wrote on 20.11.2023:[10.0] "Man, where do I begin with The Wise Man? Paul Heyman is arguably the greatest manager, promos, booker and mind of all time. He has always been a great manager no matter what promotion he was in, whether it's WCW or WWE, he's always been able to do his best to make his guys look good. In WCW, he was doing great as Paul E. Dangerously, managing one of the best factions of all time, The Dangerous Alliance, he even was a commentator during his tenure, teaming with Jim Ross before both commentated together in WWF in 2001. Then he goes to start his own promotion, ECW, which the influence and impact on the promotion can still be felt to this day. While ECW may have moments in it's history that haven't aged well, it's mostly been a great independent promotion that changed North American professional wrestling forever, giving us countless stars and old timers still showing they got it from Rob Van Dam, Taz, Jerry Lynn, The Dudley Boyz, Cactus Jack, Terry Funk, Eddie Guerrero, Rey Mysterio, Chris Jericho, Chris Benoit, and many more, along with one of the greatest commentators of all time in Joey Styles and even having Don Callis as Cyrus. Then he goes to the WWE and becomes the master mind behind the legendary "SmackDown Six, " featuring amazing matches every week on SmackDown between the likes of Chris Benoit, Eddie Guerrero, Chavo Guerrero, Kurt Angle, Edge and Rey Mysterio all having matches against eachother in one way or another, even gracing us with some of the best WWE matches of all time. Thanks to Paul Heyman, most of these guys went on to become stars in WWE and made Vince see their worth. Aside from that, he was also commentating with Jim Ross, and I'd argue that this duo is the best commentary duo in WWE's history if they got to last longer, their natural chemistry and how they argued with eachother over characters and making it sound like they mean it was great, along with all the smartass remarks and insults Paul gave to Jim Ross was so much fun to listen to. Paul Heyman has also managed tons of stars in WWE whether it's Brock Lesnar, Kurt Angle, CM Punk, Roman Reigns, he's always made it work out well (except for guys like RyBack and Curtis Axel, and sadly Cesaro). Overall, Paul Heyman is one of the best figures in professional wrestling who is an undoubtably a legend, easily top 3 managers of all time."
Rating: 10.0
Sentiment: 0.3875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: FattitudeErawrote on 31.10.2023:[10.0] "Quite possibly the greatest mind in the history of pro-wrestling. Additionally, Paul Heyman the character is quite possibly the greatest on screen manager (/advocate /special counsel) of all time. A key part of so many classic and entertaining moments, storylines over a near 4 decade long career."
Rating: 10.0
Sentiment: 0.32166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Logewrote on 30.10.2023:[10.0] "IM A PAUL HEYMAN GUY! YEah. I said it! Hes the best manager ever imo, Mr. ECW, A fun booker, an awesome on screen performer, and also the best member of the Bloodline. I said it! I said it again! I said I said it again! He helped build Brock Lesnar, and helped build Roman Reigns into being a watchable character again. I love his antics when hes by the ring, constantly screaming for Brock or Punk or Roman or whoever the fuck, and recently at house shows ive seen clips of him running at fans trying to fight them, which is fucking awesome. He should do that on TV. I liked his match with CM Skunk, even if it was kinda sad. Paul Heyman is in an exclusive club of only a couple of people who have successfully gotten a three count out of a Cocky Pin. Paul Heyman was able to predict Steve Austin's rise as the top guy all the way back in 1992, which is fucking insane and that alone should immortalize Heyman as someone with an unbeatable eye for talent. Hes a genius, simply put. He has a crystal ball for a brain, and definitely deserves that Wise Man nickname I see on his page. I Admit hes had a couple misses in WWE, such as Ryback, but still. Put some respect on Paul's name, and acknowledge your Tribal Wise Man. I wanna watch some Paul Heyman interviews now, probably has some wise things to say."
Rating: 10.0
Sentiment: 0.29791666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: GeneBlastKyodaiwrote on 07.10.2023:[7.0] "As a Booker and promoter, Paul Heyman is great. His work as ECW promoter is some of the best in professional wrestling, he was also incredibly good as a manager. The issue is that as a manager (especially for Roman Reigns.) he becomes stale easily and rarely receives comeuppance unlike Jimmy Hart and Bobby Heenan. This seems to be a trend with a lot of todays managers and he rarely receives the comeuppance of his client losing. This means that his rating does go down in my eyes from a 10 to a 7."
Rating: 7.0
Sentiment: 0.29777777777777775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Ozzywrote on 20.07.2023:[10.0] "The single greatest manager of all time, plenty of world champs to his name, held the third biggest promotion for a time, and gained an entire cult in a way with the ECW fanbase by his own accord. The greatest on the mic, knows what the people wanted, if he only had the money ECW wouldve easily taken WCW, TNA, and NJPWs spots as the 2nd biggest promotion within their time."
Rating: 10.0
Sentiment: 0.3291005291005291
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: KTG1515wrote on 03.07.2023:[6.0] "Great talker and manager, but a terrible booker, and allegedly isn't the greatest person ever. Heyman is a legend, there is no disputing it, but he's far from perfect."
Rating: 6.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: crs285wrote on 02.07.2023:[10.0] "Ran the biggest indy promotion ever in ECW to insane heights in the 90s and since then has filled multiple non wrestling roles greatly in WWE. Nothing this man cant do backstage. One of the best in terms of mic skills."
Rating: 10.0
Sentiment: 0.24000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ItsToniTime89wrote on 22.06.2023:[10.0] "Legendär, mehr gibts zu Paul Heyman eigentlich nicht zu sagen. Paul ist für mich persönlich einer der besten Producer, Manager im Wrestling Business. Seine Promos muss man einfach genießen, denn er kann mit der Crowd so genial arbeiten, wie selten ein anderer. Hoffentlich bleibt uns Paul noch Jahrzehnte im Business erhalten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: GonzoAppreciatorwrote on 21.06.2023:[5.0] "As an onscreen talent the man is one of the most consistently entertaining talkers in the last 30 years, but behind the scenes the guy is a shameless dirtbag who treated all of the ECW talent like trash and exploited them every chance he got."
Rating: 5.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: danzitorockwrote on 20.06.2023:[10.0] "Simply indisputable, Heyman is one of the greatest and best voices in pro-wrestling of all time. His skill as a promoter is exorbitant, and his mic skill is obviously one of the best in history. A legendary great mind of the industry throughout its history."
Rating: 10.0
Sentiment: 0.6857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Dancerwrote on 24.05.2023:[10.0] "Legendary. He's been cutting the same promo for a decade and he still makes it feel unique. Makes every match feel special. Can't rate him anything lower than a 10."
Rating: 10.0
Sentiment: 0.22642857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Leo 4 Kingwrote on 08.05.2023:[6.0] "I don't understand why everybody say he is a genius, he is a good talker but far from the bests. I often find his work lazy and I rarely find him interesting"
Rating: 6.0
Sentiment: 0.26999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: AidanArcherwrote on 18.04.2023:[10.0] "Amazing manager, promoter, booker, backstage helper, mentor, you name it. He's even got some decent in-ring skills if you can find those hidden gem matches."
Rating: 10.0
Sentiment: 0.20000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Kamilahclanwrote on 02.04.2023:[6.0] "Heyman has been at the every least has always been good but I find his work with Brock and roman to be quite overrated, he has been doing the same thing for years and cutting the same damn promos for years."
Rating: 6.0
Sentiment: -0.04
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: John Brandowrote on 03.03.2023:"Erstmal nur ein Kommentar: Ich bin großer Fan von Paul Heyman und werde es immer bleiben. Er gehört definitiv zu den besten Mic-Workern im Business und ist mein Favourite diesbezüglich. Er weiß wie das Geschäft funktioniert und hat seinen Platz im Wrestling-Olymp sicher. Sein rhetorisches Können sucht seinesgleichen und ich stimme überein, dass er auch eine Karriere in der Politik hätte anstreben können. Als Beistand seiner Klienten immer feierungswürdig und unterhaltsam. Als Wrestler kann man ihn nicht bewerten, ich tue mir auch schwer, jetzt Punkte zu vergeben.Auch abseits ein cooler Typ! In dem Sinne: Ladies and Gentlemen, my Name is Paul Heyman!"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: AlDente01wrote on 16.09.2022:[10.0] "Oratorical genius. Paul is able to portray anyone as a star. He could advertise a sack of potatoes and we would have goosebumps. I doubt there is anything else to say. I can't wait to see who's going to make a star next."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Flame233wrote on 12.09.2022:[10.0] "There is not much to say about this guy. He's great; propably the greatest speaker in WCW/ECW/WWE history. Give this man a mic, and creative freedom and he will make even Nia Jax or James Ellsworh a champion material. Just a wonderful charisma skills; and his expierience certainly helps."
Rating: 10.0
Sentiment: 0.5690476190476191
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: zachattack2023wrote on 26.07.2022:[10.0] "One of the best managers of all time and his mic skill are on a different level. Next to add to it he was the promoter of the great ECW just a legend that wasn't a wrestler."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Leth99wrote on 24.07.2022:[8.0] "Giving him an 8 because despite being an amazing talker, an amazing manager and a great commentator, he was an horrible booker. Someone I would listen to for an hour"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: TheLegendaryEricwrote on 22.05.2022:[10.0] "Arguably the greatest heel manager of all time, whether it be Brock Lesnar, CM Punk or Roman Reigns, Paul Heyman knows exactly how to make them feel like the final boss of their division."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Conquistador37wrote on 16.04.2022:[10.0] "In wrestling, "they" expect someone to be able to make chicken salad from chicken s#it. Paul Heyman could probably make thanksgiving dinner complete with dessert from aforementioned fowl fecal matter. His manager skills were always on point, as far back as the mid/late 80's. His commentary has always been underrated and even the earlier material ages well ("WHAM! "). Has a genius mind for booking and built an empire on his unparalleled ability to hide the negatives and accentuate the positives. Was seemingly born to be in the business. A passion and sincerity rivaled by few. A notable liar though and a terrible finance guy. Also, Paul saved pro wrestling in the 90's and readied it for the turn of the century more than anyone. If ECW was never created, the chances of the WWF ever living long enough to become the WWE is V E R Y debatable. 9.75 rounded up."
Rating: 10.0
Sentiment: -0.05357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: afogarty21wrote on 14.04.2022:[10.0] "Anyone giving this guy anything less than an 8 really needs to evaluate their eyesight and ears. This guy is possibly the greatest manager/on screen guys in the history of the business. Outstanding booker as well, I feel like his talent was wasted on being stuck to Brock Lesnar for the most of his WWE run though. He could've got a lot more people over."
Rating: 10.0
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: WrestlingFan892wrote on 06.04.2022:[10.0] "I cannot speak ill of this person, everything he has come to do has been done well. He has taken wrestlers to a higher level by doing everything, speaking on the mic and stealing the image, there you can see how he has done it with Big Show, Brock Lesnar and now he is trying to make Roman a better champion by doing everything well at the mic and in front of the cameras. Without a doubt I think he is a top 3 manager in WWE history along with Bobby Heenan and Paul Bearer."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: arrancarwrote on 04.04.2022:[3.0] "I haven't seen his ECW work, but having seen Heyman's promos and work as a manager in both old and new WWE, I have to say that he's one of the most melodramatic goofballs I've ever seen, and genuinely a pretty awful on-screen performer as a result.. He tries to make every single facial expression the most overacted thing imaginable, and he must think that doing so enhances whatever he's reacting to, but instead it just makes the entire scenario at hand feel phoney because of how terrible his acting is. I do enjoy how eloquent he can be on the mic whenever he's *not* trying to impersonate a high-school theatre actor, but far too often I remember him most for his absurd facial expressions, his awfully croaky and ear-piercing screams, and his absolutely moronic dialogue. If this guy just had a good amount of SUBTLY then he'd probably be one of the best managers ever, because he has proven that he can be very captivating on the mic when he wants to, but he's always just been too concerned with getting himself over in the cheapest and most obvious ways possible, which has severely held him back and wasted his one talent. His ridiculously over-the-top current work with Roman ("Rise up my Tribal Chief! ") is some of the hokiest acting I've genuinely ever seen in a wrestling. I won't speak for his supposed genius related to his booking and other backstage work, but as a pure performer I can comfortably say he was extremely bad and mostly just highlighted the worst parts of American wrestling."
Rating: 3.0
Sentiment: 0.01758262063140112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: BigDickWrestling69wrote on 31.03.2022:"Paul Heyman is indeed a goofball, but we are watching wrestling after all. An amazing talent on the microphone and as a booker, but should never ever be in charge of anything financial."
Rating: No rating found
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: tbdolicwrote on 24.02.2022:"The best manager that ever was, and possibly ever will be. I highly recommend watching his documentary on Peacock -- it is so enlightening to see how he got to where he is. He has the best natural talent on a mic that I have ever seen."
Rating: No rating found
Sentiment: 0.3657142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: DangoDaisukiwrote on 13.02.2022:[6.0] "Ich mag Paul Heyman nicht, ich finde ihn als Manager auch wirklich nervig und wenn er spricht hat es nie mein Interesse. Ich kann aber seine Arbeit und besonders sein Booking wertschätzen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Quite simply put, the best manager of all time. A wrestling genius who elevates every performer he manages, Paul is a well of charisma."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: jltwrote on 26.09.2021:[8.0] "Heyman is one hell of a talker. He could probably get anyone over if he tried. Also a good booker, just look at ECW and when he took control of RAW in 2019."
Rating: 8.0
Sentiment: 0.2346153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: CoolKylewrote on 11.09.2021:[8.0] "As an on-screen character, he is one of the best on the microphone but also one of the best 'actors'. He just sells everything perfectly. Just don't let him take care of the fucking money."
Rating: 8.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Daigotsuwrote on 19.06.2021:[9.0] "Truly a great manager and personality. Paul Heyman was a treat to watch. He was great at putting over his guys and angles."
Rating: 9.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The A-Listerwrote on 08.05.2021:[9.0] "One of the best managers ever. Did great at ECW, did great with Lesnar, Punk, Reigns. Has some bad work like Ryback but it doesn't matter. He's a great talker too."
Rating: 9.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: StrongStyle2020wrote on 04.05.2021:[10.0] "One of the greatest managers of all time, and best talkers in the business. Could sell ice to an eskimo, so talking fans into the building could be done in his sleep. Fantastic booker and promoter previously with ECW, he had a huge influence on the Attitude Era. More recently, Brock Lesnar's second run simply would not be what it was, without Heyman as the mouthpiece. Absolutely irreplaceable in that role. Quite simply a legend and will be up there in history as one of the top managers and promos the business has ever seen."
Rating: 10.0
Sentiment: 0.3194444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: medousewrote on 09.11.2020:[10.0] "The best new era wrestling manager. Also he was a great booker and he created ECW. His dedication for this business is incredible. I remember when I was watching some old ECW for the first time and Paul E. Dangerously had a backstage promo. First, I thought he was a wrestler. Out of all the guys I saw that night he got most of my attention. There is something about Paul that everything he says and does has a legit credibility. When he says, he's gonna put on a show that's gonna blow your mind - that what's going to happen. He made huge stars out of guys like Brock Lesnar, CM Punk, RVD, Steve Austin, TAZ and many more. He was the best on the mic, in commentary, in ringside. There will never be another guy like Paul Heyman. This dude is a true diamond."
Rating: 10.0
Sentiment: 0.4347402597402597
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Okaro143wrote on 24.09.2020:[9.0] "Paul Heyman is one of the greatest manager of all time. Everytime he speaks, he keeps the fans engage to him and even in ringside, his reactions gives a realistic feeling. He doesn't interfere and that's what I really like about his character. Can't rate him 10 as he isn't exactly a wrestler."
Rating: 9.0
Sentiment: 0.4041666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Bloodshot03wrote on 30.08.2020:[5.0] "I used to really enjoy Paul Heyman as a character but over the last few years he's really become insufferable. I do have to say it's interesting that he's now paired with Roman Reigns, but with WWE's recent storytelling I'm sure that will end in dissapointment."
Rating: 5.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Paul Heyman ist ein absoluter genialer Manager der am Mic absolut genial ist und gerade in Kombination mit Brock Lesnar komplett überzeugen kann. Außerdem ist Heyman auch hinter den Kulissen ein sehr guter. Alles in allem verdient er sich die vollen 10 Punkte."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: TheV2wrote on 30.09.2019:"*Because he's not a wrestler, I don't rate him. * If I had to pick the best talker in the wrestling business, I'd choose Paul Heyman. As a manager/advocate he helped out a lot of wrestlers who needed a voice. Heyman is a very smart and precise talker. With ease he builds up a great structure for the stories he tells and every point has its purpose. Without repetitive stories his promos would almost never disappoint. His real life personality gives his promos just the right amount of real emotions. As a booker he was very open-minded and he was very eager to give newer generations with new styles opportunities and this way a lot of great wrestlers emerged in the mainstream scene. However ECW definitely had its trashy touch, both in a positive, but even in a negative way. I like Heyman as a character more than as a booker, however he still is a great booker."
Rating: No rating found
Sentiment: 0.34105423987776934
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Kritlawrote on 19.08.2019:[7.0] "Auch wenn er nach wie vor seine Schützlinge (derzeit Lesnar) trägt, so sind es leider auch besonders seine catchphrases welche mit der Zeit nur noch anstrengen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: KyleEnjoysWrestlingwrote on 07.08.2019:[8.0] "Paul Heyman is not the savior of wrestling that people like to paint him as. ECW had a lot of good aspects to it, but people often forget all the bad that went with it. And from silly comedy, low brow Jerry Springer-type drama, & mindless brawls; there was plenty of bad. Overall I do think Heyman is great & especially in his older age, he has learned from the road he's traveled & he's a good addition to the Lesnar character."
Rating: 8.0
Sentiment: 0.024242424242424246
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Kevin41182wrote on 19.03.2019:[8.0] "Heyman is somewhat of a rennicance man. Hes a great manager, great booker, but an awful businessman. Heyman has helped many wrestlers really find themselves such as CM Punk, Brock Lesnar and many more."
Rating: 8.0
Sentiment: 0.2875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: RatingsMachinewrote on 12.10.2018:[8.0] "As a manager, Heyman was really good. As a booker, Heyman was great, a genius at getting the most out of the least and being able to camouflage a worker's weaknesses. But as a businessman, the fate of ECW speaks for itself."
Rating: 8.0
Sentiment: 0.44000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Billwrote on 22.08.2018:[10.0] "Paul Heyman is one of the best things to happen to wrestling. He was an excellent promoter and he was an excellent booker. WWE literally get him to manage their top tallent to get them more over. Without Paul Heyman, I know I wouldn't be watching wrestling today, and I'm sure that is the same for many others too."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Excellence of Executionwrote on 21.08.2018:[10.0] "Für mich neben Jim Cornette der beste Mic Worker und Manager aller Zeiten! Wenn auch anders gelagert. Während Jim Cornette es fertig bringt, gleichzeitig eloquent und vulgär und somit unfassbar scharfzüngig zu sein, so ist es bei Heyman die Intensität und sein untrügerisches Gespür für Timing, um seinen Worten Gewicht zu geben. Ein super Redner mit unangetasteten Rampensau Qualitäten. Volle Punktzahl!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Cameron621129wrote on 17.07.2018:[10.0] "One of the smartest wrestling minds. One of the best promos. One of the best managers. One of the best colour commentators. One of the best salesmen. One of the best storytellers. An all time great at whatever he would do."
Rating: 10.0
Sentiment: 0.9666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: CHN325wrote on 31.01.2018:[9.0] "One of the best "advocates" and one of the smartest minds in wrestling when it comes to scouting talent and seeing potential. No one makes something feel bigger and more epic that Paul E. Unfiltered Paul is the be Paul."
Rating: 9.0
Sentiment: 0.32
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Chosen Onewrote on 19.12.2017:[10.0] "Undoubtedly the greatest manager of all time. He can cut a promo like no other. He can get anybody over and he does an exceptional job at being Brock Lesnar's manager."
Rating: 10.0
Sentiment: 0.5763888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Summerslam Fan 01wrote on 15.12.2017:[10.0] "Paul Heyman ist der beste Micworker in der Wrestling Geschichte. Unvergessliche Promos, der Mann kann aus jeder kleinen Promo etwas besonderes rüberbringen. Als Manager von Lesnar Grandios, beide sind Goldwert zusammen, hatte leider auch viele Klienten die scheiterten wie Ryback, Curtis Axel oder Cesaro was aber nicht an ihm sondern am Booking lag, und nicht zu vergessen der Mann der Cm Punk so groß machte. Er ist kein Bobby Heenan aber er ist ohne zweifel ein Zukünftiger Hall of Famer. Danke Paul"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Dragon Fighterwrote on 20.11.2017:[10.0] "Every time heyman cuts a promo, everyone should stop to watch him. Just freaking phenomenal on microphone. He can hype the match, the feud and easily become the best part of any show he takes part in. He knows how to put over his opponents on mic. Just watch his promo on AJ Styles, he just put the phenomenal one to another level for sure. As a booker, he was excellent as well. His booking during 90s in ecw and in Smackdown in 2002-2003 was wonderful. ECW became the hottest brand at that time while Smackdown beat the shit out of Raw and became the best product wwe had with the SD 6. One of the greatest managers of all time easily. A well-deserved 10."
Rating: 10.0
Sentiment: 0.577991452991453
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: taabr2wrote on 10.09.2017:[10.0] "One of the best managers in wrestling history and one of the best wrestling minds, Paul Heyman is responsible for some of the best booking in wrestling history."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Doctoriusefulwrote on 10.08.2017:[10.0] "Paul Heyman kann dir die Bedienungsanleitung von Klopapier vorlesen; und du hängst dabei bei jedem einzelnem seiner Worte an seinen Lippen. Und das kann er immer und immer wieder wiederholen, bis du der Meinung bist Klopapier ist die grandioseste Sache aller Zeiten. So viel zu den Mic-Skills von Paul Heyman. Hinter den Kulissen wohl einer der weniger Leute, die tatsächlich verstanden haben wie Wrestling wirklich funktioniert (im Gegensatz zu Vince z. B. :>). Er hat das Wrestling in den 90ern mit der ECW revolutioniert und damit einen entscheidenden Anteil an der Entstehung der Attitude-Ära gehabt, sowie das Wrestling bis heute nachhaltig geprägt. Der Kerl könnte eigentlich jederzeit in die Politik wechseln, mit seinem Verständniss für Rhetorik und Psychologie, und würde sich im nu etablieren. Alles andere als 10 Punkte wäre ein Witz für Paul Heyman. Der Kerl gehört nicht in die WWE Hall of Fame, sondern in den Wrestlingolymp."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: marexcelwrote on 20.06.2017:[10.0] "Für mich eine der großartigsten On-Air-Autoritätspersonen und Manager aller Zeiten. Als Booker hat er die 90er geprägt. Hat eine brutale Mastermind-Austrahlung und ist wie für’s Wrestling gemacht. Sehr eloquent, aber eben ohne abgehoben zu sein. Lebt natürlich auch von seinem ECW-Vermächtnis, aber hat auch heute so manche Zeit der WWE geprägt.  Seine Rhetorik ist oft genial, auch wenn sich seine Promos hin und wieder wiederholen. Für diese Booking-Einbahnstraßen ist er sicherlich der falsche Ansprechpartner. So ist und bleibt Paul Heyman eine absolut herausragende Figur des Wrestlings seit den 90ern, der hoffentlich in der Zukunft auch mal wieder ein paar Talente statt Lesnar over bringen darf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: IWasTherewrote on 25.04.2017:[6.0] "Paul was one of the cream of the crop in the area of the best talkers of this business, but nowadays his endlessly repeated act as Brock's advocate has grown particularly stale."
Rating: 6.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: SteveTheBeastwrote on 21.04.2017:[8.0] "Er ist einer der besten am Mic die es jemals geben wird. Normalerweise absolut klare 10 Punkte, aber umso mehr ist es schade, dass er momentan nur für den Part-Timer redet und seine Skills dafür benutzt, um einen jungen, guten Heel ins Main Event zu pushen."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The X Factorwrote on 04.02.2017:[6.0] "I like Heyman. I really do. But, he's become very stale lately, basically going from a guy who always seemed to have a plan, a scheme, and a plot going on behind the scenes, to basically being Brock Lesnar's mouthpiece only... and saying exactly the same things every promo."
Rating: 6.0
Sentiment: -0.12857142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Real Raterwrote on 21.01.2017:[10.0] "NewNemo, hat absolut recht, als Wrestler wäre es sehr merkwürdig ihn zu bewerten.  Aber ich gebe ihm trotzdem 10 Punkte als Typ. weil er die Wrestling-Welt mit seinen ECW Storylines revolutionierte und weil er überragende Promos halten kann und seine Klienten zu Top-Heels machen kann. Wahrscheinlich einer der ganz wenigen die eine 10 verdient hat."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: NewNemowrote on 17.01.2017:"[Stand 17. 01. 2017] Ich finde es schwierig das Paul Heyman auf Platz 4 der besten ->Wrestler<- im Cagematch ist. Ich finde als Wrestler kann man ihn einfach nicht beurteilen. Ich finde er ist ein Spitzen Mic-Worker und Promoter. Aber wenn ich die selben Maßstäbe wie bei einem Wrestler anlege wäre seine Bewertung: Entrance: 1/10 ++ Look: 2/10 ++ In-Ring Skills: 0/10 ++ Mic-Work: 10/10 ++ Persönliche Sympathie: 8/10 ++ Gesamt: 4, 2 also 4.  Das wird ihm allerdings nicht gerecht. Daher fände ich es super eine eigene Bewertungskategorie für Promoter/ Valets/ Backstageverantworliche etc. einzuführen. Diese in einem gemeinschaftlichen Kontext zu Bewerten wäre meiner Meinung nach passender.  In dieser Kategorie würde Paul Heyman von mir 9 Punkte erhalten!"
Rating: No rating found
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Speeblewrote on 10.01.2017:[2.0] "Paul Heyman's promos are consistently painful to sit through. Just an absolutely cartoonish level of over-acting, and he spends far too much time screaming his lungs out like he's about to burst. Even without the poor delivery, the content of his promos are nothing to write home about and mostly just consist of generic WWE-speak and catchphrases."
Rating: 2.0
Sentiment: -0.014285714285714266
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rasslin Ruleswrote on 08.01.2017:[8.0] "ECW ist nicht mein Fall, aber revolutionär war er damit damals schon. Allerdings wird er oft so dargestellt als hätte er mit ECW allein das Wrestling revolutioniert. Ein Großteil kam einfach von anderen Ligen und er war nicht allein für die ECW verantwortlich. Als Kommentator gefällt er mir nicht, dafür umso mehr als Booker bei Smackdown. Für mich war das die beste Phase seiner Karriere. Als Manager von Punk und Lesnar find ich ihn am Mic zwar genial aber auf Dauer echt nicht unterhaltsam auch er von sich selber überzeugt ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: rjsbx11wrote on 08.01.2017:[10.0] "As a worker/manager, Heyman is simply one of the best. He's such a natural slimy promoter who can mix ruthlessness and eloquence seamlessly. Outside of Cesaro and Axel, he can really sell his talent and does his best to create symbiotic relationship that can a story his often less then charisma saavy clients can not. As a wrestling mind, Heyman is exceptional at reading the landscape and identifying what the audience he is booking for wants at a given time. He didn't bat 1. 000 as ECW booker, but he knew what the audience would respond to and he booked accordingly. As business, he was pretty shotty, with his payment of star being very infrequent. From a booking standpoint though he's very good. Similarly in 2002, as much as Heyman gets love for Smackdown being a great show for in-ring action, to me his biggest achievement is recognizing how badly WWE needed new stars. The first half of 2002 was an awful period for regression, and a lot of the stars that took things forward for the next five years broke out of the ether under his booking.  He's move away from that role which is keeps him in good graces with the WWE, and anytime the man has a mic he's going to put on a show."
Rating: 10.0
Sentiment: 0.20718787878787878
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: JonColwellwrote on 08.01.2017:[10.0] "I've always had a lot of respect for Paul and what he has done for the business. Taking a company away from the NWA, making it into something special, and getting it mainstream just blows me away. It has been said that there would be no Attitude Era without ECW's Influence, and I believe that to be very much true. He's always been an amazing talker, one of the best to give promos, and a great down-to-earth guy."
Rating: 10.0
Sentiment: 0.6214285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rog Fulacewrote on 17.12.2016:[7.0] "Didn't pay talent, promos tend to devolve into the same thing, and a lot of his earlier stuff is just plain embarrassing to watch."
Rating: 7.0
Sentiment: -0.07142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Steelitowrote on 03.12.2016:[6.0] "His promos are very redundant and he's poor with paying his talent. If he's going to be rated a 9 as a "worker, " we might as well say that his Tuxedo Match with Cornette was a poor display of wrestling ability and was more of a comedy match with Cornette excelling at selling the match."
Rating: 6.0
Sentiment: -0.14
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: AtticusFinchwrote on 25.11.2016:[9.0] "Absolutely one of the best managers/hype men in wrestling history. Lately, his Brock Lesnar shtick is getting a bit old, but whenever he gets out of that, he's fantastic. Great mind for the business too, even if it meant some questionable tactics as a promoter/booker. He helped make a lot of guys realize their potential and become superstars. He's had some flops under his wing such as Cesaro and Curtis Axel, but it's hard to put him at fault when he's not given creative control over that. A great villain, a great mind, and a great promo."
Rating: 9.0
Sentiment: 0.30773809523809526
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: CelticFCwrote on 11.11.2016:[8.0] "Think to give a non-wrestler a 10 under a listing of workers is pretty tough to justify personally. I've seen most of his WWE work so I'm not going to comment on what he did before I was born in WCW or his role as promoter, in ECW. Paul is entertaining, he is engaging, and to quote Jim Cornette "he could turn Genghis Khan babyface. " He's good at that, that being said, so are a lot of guys who actually wrestle. Chris Jericho can get the word it, a clipboard, a list, a scarf, and a pot plant over, all in the space of a year. He can wrestle as well. Paul is great on the microphone but he doesn't wrestle."
Rating: 8.0
Sentiment: 0.30679012345679013
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rattlesnake3-16wrote on 09.11.2016:[9.0] "I like the man, his promo and his very professional attitude ! Sad for him he has to speak for Brock and that is not very interesting, always the same things eat sleep Heyman repeat... Maybe ten when he will change his protégé !"
Rating: 9.0
Sentiment: -0.10596153846153847
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: jackleonewrote on 05.11.2016:[10.0] "There are a lot of reasons why I consider him the best manager of all time (or one of the best). He is always strong in this role in modern age, where managers are not influential as in the '80s. I never saw Heyman fail, in WCW was unbelievably good, in ECW he was the boss, in WWE he always reinvented himself and put over many wrestlers, the most famous is Brock Lesnar and they are a perfect combination (the menacing client and the talkative manager). I can't judge the behind the scenes, but he seems a genuine genious of the Business. I have a lot of respect for Heyman and he inspired me so many times with his speechs."
Rating: 10.0
Sentiment: 0.3452380952380953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: AidenSioniswrote on 31.08.2016:[5.0] "I don't know why I don't like Paul Heyman. I liked him when he was a rival of CM Punk but right now the only thing he does is shouting BROOOOOCK LEEEESNAR. or shouting the Beast or saying thou shalt non intentionally provoke Brock Lesnar.  He is just saying some overused lines."
Rating: 5.0
Sentiment: 0.29523809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Titansrevengerwrote on 28.08.2016:[9.0] "Paul E Heyman is the greatest promoter not named Vince McMahon. His promo skills are just so riveting and he can be so passionate about anything. I bet Heyman could put over Toothpaste to Isaac Yankem. As a villain there is none better then Heyman. I do think he is one of the few managers to turn face and be successful at it, even though he did it maybe twice in his entire career. I loved his interactions with Jim Ross and Missy Hyatt in WCW. Paul Heyman also helped change wrestling's landscape with ECW, even though it was a failure in the sense that it didn't last, it was evolutionary. I would rank Heyman higher but the guy was also a real shyster in real life. So he loses points in that regard."
Rating: 9.0
Sentiment: 0.1622222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: test85wrote on 18.08.2016:[10.0] "In den 90er ein Genie. Sei es seine Darstellung des Paul E. in der WCW oder später mit der ECW. Etliche Ideen umgesetzt die später von den größeren Ligen geklaut wurden. Zudem gab er auch den nicht so großen Charakteren (Y2J, Malenko, Benoit, Guerrero usw. ) oder damals weniger erfolgreichen (Austin, Foley, Raven) eine Chance sich zu beweisen. Auch seine erste Zeit in der WWE war stark. Auch seine Zeit mit Punk & Lesnar sollte nicht unerwähnt bleiben. Am Mic großartig. Doch leider war er auch einer seiner größten Feinde. Er fuhr die ECW geschäftlich gegen die Mauer. Zudem finde ich das er sich am Mic in letzter Zeit immer wieder wiederholt. Die Promos kommen einen immer wieder bekannt vor. Trotzdem ein zukünftiger HoF Kandidat."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Strezemannwrote on 04.08.2016:[9.0] "Heyman's undoubtedly one of the best talkers of all time, and a very influential figure in the business even if separated from that fact. Historically, it's hard to argue against him being a great on-screen presence, having done a more than adequate job whether introducing his client Brock Lesnar to the world, taking part in an ultimately botched invasion, or representing his brand, ECW, whether it be in ECW or WWE. The only thing keeping him from a 10 is booking. He has just had -nothing- to work with for the past several years. To the point that I'm actually having a hard time appreciating just how well he can work a mic. Because, by god, is it ever tiring to hear about how strong and dangerous Brock Lesnar is. I really feel like Heyman's part of that deal has run its course - after the previous Heyman guys were completely overlooked because of how Heyman had to keep harping on his Lesnar connection, I figured they'd eventually move him away so that he could have fun or interesting interactions with other people on the roster, but no. To me, he's just white noise at the moment, so that takes him down a peg."
Rating: 9.0
Sentiment: 0.11300505050505051
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ApexOfEvolutionwrote on 31.07.2016:[10.0] "DAS Mastermind des Wrestlings, das den schmierigen aber -meistens- loyalen Advokaten seiner Klienten grundsätzlich glaubhaft rüberbringt. Seine Promos sind immer wieder weltklasse. War schon einmal eine nur Durchschnitt? Kann mich an keine erinnern. Gerade im Gespann mit Brock Lesnar absolut herausragend. In der Kombi mit CM Punk kam er leider nicht so überragend rüber, aber das lag einfach daran, dass sich zwei hervorragende Redner gegenseitig die Show gestohlen haben. Naja, und über seine Storylines, die er für die ECW entwickelt hat, muss man kein Wort mehr verlieren. Er hat die WWE geradezu in die Attitude Era gezwungen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: sashabanksfanwrote on 26.07.2016:[10.0] "Best manager and microphone in WWE history. I hope he extends his contract and keeps helping Brock Lesnar."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: CrushBanoncawrote on 15.07.2016:[10.0] "The greatest manager of all time. The greatest microphone worker of all time. The greatest booker of all time (as shown through ECW and 2002-03 Smackdown, which may be the best period in WWE history). No one comes close to Paul Heyman in any of these areas. Not even his shoddy business skills can prevent me from giving this legend a 10."
Rating: 10.0
Sentiment: 0.74
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: horseman5wrote on 26.05.2016:[8.0] "he's #1? he's not a wrestler. Not near the manager or color guy Bobby Heenan was. ECW had good matches. But the booking was not that great."
Rating: 8.0
Sentiment: 0.48333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: EGeraldhuebnerwrote on 28.04.2016:"Das erste mal, als ich etwas von Mr. Paul Heyman sah, war, als er sich noch "Paul E. Dangerously" nannte. Dabei dachte ich immer, es war als Manager der Hollywood Blondes (Brian Pillman und Steve Austin ... als er noch Haare hatte ^^) und vor ECW Zeiten. Aber anscheinend bringe ich da gerade etwas durcheinander, denn jene Zeitangaben, wann es dieses Team gab und seine Arbeit bei der ECW stimmen nicht überein. Danach sehr oft in verschiedenen Dokumentationen oder Filmen zum Thema. Wrestler sprachen mit Respekt von ihm, einige sehen in ihm sogar eine Vaterfigur. Auch er selbst kam immer interessant und sympathisch rüber. Das machte natürlich neugierig ... heute weiß ich, was Wrestling ihm alles zu verdanken hat. Als Begleitung von Leuten wie Brock Lesnar natürlich nicht so gut, aber wie andere hier schon sagten, man kann einem Manager nicht die Schuld dafür geben, das man seinen jeweiligen Schützling nicht mag. Lieber verlasse ich mich auf das, was ich sehe, sehen konnte, was andere, die ihn offenbar besser kennen, über ihn sagen ... vor allem, was er geleistet hat. Tja, und das ist Weltklasse."
Rating: No rating found
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Jrod3160wrote on 17.04.2016:[10.0] "Fantastic on the mic and the best manager of all time IMO if you can hype up curtis axel you know your great lol and ECW was great and hes the man who brought it to us and please put this guy on the announce team and in creative because he knows what hes doing"
Rating: 10.0
Sentiment: 0.7166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Mean Smark Callouswrote on 15.04.2016:[10.0] "The ratings don't lie, everybody marks out for this guy. I've been a Paul Heyman guy since he was Pau E Dangerously in WCW (man I'm old) and he excelled at drawing heat from the fans and his broadcast partners. Him and Jim Ross were so funny together it was sometimes hard to tell if their heat was legit or not, which is what good wrestling work does it keeps you guessing. Changed Wrestling forever when he took over ECW, and blew everybody's balls off with hardcore action that The Other Guys weren't doing, and that most Americans didn't know the Japanese had been doing for years. Not to mention all the controversy. I remember the Heatwave incident, being shocked at how vulgar the Dudleys were being. Continued his uncanny gift for gab with WWE following the unfortunate demise of ECW. So good on the mic you're disappointed when he stops talking. I could (and have) listened to him talk about the Biz for hours. Quite possibly the most interesting man in Wrestling."
Rating: 10.0
Sentiment: -0.0331140350877193
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: WrestlingNerdwrote on 29.03.2016:[10.0] "Paul Heyman, einfach ein Mastermind. Alles unter 10 Punkte könnte ich mit meinem Gewissen gar nicht vereinbaren. Hat Wrestling mit der ECW revolutioniert. Einer der besten Booker ever. Dazu am Mic unangefochten die Nummer 1. Er weiß einfach, wie und was man zu sagen hat. Die "Heyman Guys" sind meistens sehr erfolgreich unter ihm. Siehe z. B. Lesnar und CM Punk. Deswegen... 10 Punkte = sehr gut.  Guter Mann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: TheLoudMouthwrote on 17.02.2016:[10.0] "In Bezug auf sein überragendes Mic-Work kann man quasi nicht genug Superlative einbauen. Die Glaubwürdigkeit in Person und eine lebende Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: NoNamewrote on 30.01.2016:[10.0] "Das größte Wrestlingmind der Geschichte! Ich glaube nicht, dass es jemals wieder sojemanden wie Paul Heyman geben wird! Ein booking-Genie, ein großartiger Manager und Charisma wie kaum ein Anderer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: callousedwrote on 28.01.2016:[10.0] "Paul Heyman has one of the best minds in the history of wrestling. Yes, ECW fell apart. That was a case of it getting too big too fast. He is the last great promo in WWE, so cherish him while he is here."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Strikerwrote on 19.01.2016:"Ich kannte ihn ein bisshen aus seiner ECW und Smack Down Zeit und schon da bietete er Großes Kino an. Mittlerweile ist er ja nur als Manager von Brock Lesnar zu sehen und man muss sagen er ist besser denn je. Sein MicWork ist einzigartig. Seine Gesichtszüge und seine Mimick perfekt."
Rating: No rating found
Sentiment: -0.15555555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Harlequinwrote on 11.01.2016:[9.0] "Absolute bastard, step-child of Penn Jillette. This guy is a genius when it comes to wrestling and what it needs. His product ECW set forward the sort of grungy attitude that WWE inevitably picked up for themselves, and found success. He is nothing short of amazing when it comes to his in-ring persona. He could talk circles around every member of the current roster and honestly anyone in this business today. There is something actually wrong with you if you don't like Heyman's work."
Rating: 9.0
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Desaster1978wrote on 13.12.2015:[10.0] "Einer der genialsten Mic-Worker aller Zeiten. Er sollte ein Stable bekommen so wie in den 80ern Bobby Heenan."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Salted85wrote on 02.12.2015:[10.0] "Grandioses Micwork! Ich freue mich über jede Promo von ihm und bin in der heutigen WWE-Zeit dankbar dafür, dass er die Glaubwürdigkeit in den Promos am Leben erhält. Danke auch für die ECW."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: DemiGodwrote on 03.11.2015:[9.0] "Ein unglaublich wortgewandter Micworker. Als Manager hoch unterhaltsam. An der Seite von Brock Lesnar ist er die Sahnehaube auf dem Kuchen und vertritt seinen "Client" am Mic mit einer Ausstrahlung die nur wenige so in diese Grundstimmung lenken könnten. Meiner Meinung nach einer der besten Manager die sich in der WWE tummelten. Auch als Booker hat er mit der ECW Trends und Konzepte nach vorne getrieben, die heute in vielen Ligen als Standart durchgehen und gerne genutzt werden. Ob diese immer die Sinnigsten waren (so hört der Spaß bei einer gewissen menge schierer Gewalt doch auf) lässt sich mit Sicherheit diskutieren. Allerdings scheint auch dies in gewissen dimensionen Leute zu begeistern. Über Meinungen lässt sich generell Streiten, aber so seh ich die Sache."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Klabauterwrote on 13.10.2015:[10.0] "Paul Heyman ist eindeutig der beste Manager aller Zeiten. Am Mikrofon reicht ihm kaum einer das Wasser und als Manager hat er Größen wie CM Punk und Brock Lesnar. Er ist The One behind the One in Twenty One and One! Alles andere als für den besten seiner Zunft die Höchstwertung zu vergeben wäre ungerechtfertigt."
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: WrestleArtswrote on 25.09.2015:[9.0] "Großartiger, revolutionärer Booker und Motivational Speaker, schlechter Geschäftsmann, und guter On-Air Character, am Mic jedoch etwas zu cheesy und "seinfeldish"."
Rating: 9.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: jacobphillipswrote on 13.09.2015:[10.0] "best promoter in pro wrestling history. best manager in pro wrestling history. one of the best talkers on the mic and he can provoke a reaction from the poorest of crowds. this is testament to his his amazing talents especially as a heel"
Rating: 10.0
Sentiment: 0.72
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: austin1987wrote on 03.09.2015:[10.0] "Ich mag den Kerl. Ohne ihn hätte es wahrscheinlich nicht die Attitude Era gegeben, denn hätte es die ECW, welche damals meiner Meinung nach genial war, nicht gegeben wäre die WWF vielleicht nie auf die Idee gekommen so einen Weg einzuschlagen. Außerdem hat er meinen Lieblingswrestler "geformt" denn er war dafür verantwortlich, dass Austin bereits vor der WWF gute promos abgegeben hat, und somit bereits vorher schon den Weg für den Stone Cold Charakter geebnet. Auch Mick Foley konnte sich dort entwickeln immerhin hat man ihn ja aufgrund seines harten Wrestlingstils bei der WCW doch etwas eingeschränkt. In der ECW durfte er sich dann austoben und sich weiterentwickeln - der Rest sollte bekannt sein. Aus diesen Gründen kann ich Heyman nur 10 Punkte geben."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Nigglesojanicwrote on 12.08.2015:[10.0] "WOW... Es gibt wohl keinen, der seine Promos mit solch einem Tempo und solch einer Intensität abhält wie "The Advocat of the Beast Incarnate". Dazu am Mic sicher und fehlerfrei wie sonst nur der Undertaker. Eine eindeutige 10 von mir."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Der Bjoernwrote on 11.08.2015:[8.0] "Einer der wichtigsten Männer im Wrestlingbusiness! Hätte es seine ECW Storylines und Ideen nicht gegeben, würde heutzutage was im Wrestling fehlen, denn mit seinen gut durchdachten Idden revolutionierte er die Wrestling-Welt. Auch die Zeit als SmackDown General Manager wusste absolut zu begeistern. Davon mal abgesehen ist er der perfekte Manager für Brock Lesnar. Er und "The Beast" harmonieren einfach grossartig miteinander! Und am Mikrofon macht ihn keiner was nach. Egal, was er am Mic von sich gibt, du kaufst es ihn zu 100% ab!"
Rating: 8.0
Sentiment: 0.07812500000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ShooterMcShootwrote on 10.08.2015:[10.0] "Great talker and booker. Not a great businessman, but a guy I would look to for advice on how to write wrestling."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Kndheal3wrote on 28.07.2015:[7.0] "Ich finde ihn nicht wirklich besonders. Gut. Seine MicWork ist einer der besten aber sobald der Richtige vor ihm ist wie Beispiel der Undertaker bekommt er ja weiche Knie. Was mir auffällt seit Jahren.... Er geht immer die meiste Zeit Undertaker auf die Nerven. 7 Punkte wegen der MicWork."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: GlitterPrincesswrote on 08.06.2015:[10.0] "Es gibt nichts besseres als Paul Heyman am Mic! Er und das Mikrophone sind ein Traumpaar. Ich freue mich über jede Promo von ihm und er hat in all den Jahren nichts verlernt. Ein toller Manager, wenn nicht sogar der Beste"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Ezewrote on 02.06.2015:[10.0] "Paul E. Dangerously war ein Genie der die Stimmen der Wrestling Fans gehört hat und mit Extreme Championship Wrestling das Spiel seinerzeit neu erfand.  Das die WWE in ihm einen der größten Köpfe des Sports Entertainment verpflichtet hat dürfte kein Zweifel sein.  Zusammen mit Lesnar meiner Meinung nach das beste Worker-Manager Team seit Paul Bearer und dem Undertaker.  Stets ein geniales Mouthpiece, was jede einzelne Promo von ihm beweist."
Rating: 10.0
Sentiment: -0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Movadowrote on 29.05.2015:[8.0] "Heyman ist zweifelsfrei eine der wichtigsten Personen im US-Wrestling der letzten 25 Jahre gewesen. Ein begnadeter Manager und das egal zu welcher Zeit. Er hat es verstanden und versteht es heute noch die Rolle am Ring perfekt zu spielen und ist wahrscheinlich der "overste" Heelmanager aller Zeiten. Aber er war kein guter Geschäftsmann und auch das von vielen so hoch gelobte ECW-Booking war an manchen Stellen nicht so toll wie es viele gerne sehen. Ich gehe sogar soweit zu sagen das man diesem Booking den heutigen UV-Schrott a la IWA-MS oder CZW verdankt, da sein Booking und der Hardcore-Style einzig durch solche Stilmittel gesteigert werden konnten. Als Mann am Rand unantastbar eine 10, aber als Geschäftsmann und Booker maximal eine 6. Alles in allem halte ich eine 8 für vollkommen gerechtfertigt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Wazzerwrote on 06.05.2015:[10.0] "Best promoter of all time. ECW was an absolute masterpiece and he revolutionized the business with it. Best wrestling mind in history in my opinion, just not a great budget planner."
Rating: 10.0
Sentiment: 0.45000000000000007
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Zedwrote on 05.05.2015:[10.0] "Als Kommentator einsame Klasse. Als Manager und Sprachrohr für wenig charismatische Muskelberge einsame Klasse. Als Booker und Revoluzer einsame Klasse. Mur mit dem Geld konnte er zu ECW Zeiten nicht umgehen, aber das ist nur ein kleiner Fehler von ihm. Ansonsten ist Paul E. einer der genialsten Köpfe im Business."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: MusSanwrote on 26.04.2015:[10.0] "Der beste Mannager in der Geschichte der WWE. Es gibt keinen in der WWE der besser am Microphon ist als Paul Heyman. Er hat mehr als 10 Punkte verdient, aber weil 10 Punkte das Maximum sind kriegt er 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: NastyYaffawrote on 20.04.2015:[9.0] "Amazing talent on the microphone. Quite possibly a top-5 mic worker in the history. And I absolutely LOVE his duo w/ Brock Lesnar. My favorite pairing in wrestling."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: JayCutlerwrote on 07.03.2015:[10.0] "Wenn sein Schützling scheiße ist, kann man ihm wenigstens zuschauen. Bester Manager aller Zeiten. Und ich bewerte ihn nur als Manager, da ich die ECW-Zeit nicht miterlebt habe und aus Mangel an Interesse an Hardcore-"Wrestling" auch nie verfolgt habe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: GoToSleepwrote on 07.02.2015:[10.0] "Ladies and gentleman, my name is Paul Heyman" Ach ja, schon der Beginn seiner Promos ist so stark und mittlerweile für mich schon Kult geworden. Paul Heyman ist DER beste Manager den die WWE jemals hatte und er beweist es bei Brock Lesnar auch weiterhin. Und nicht nur Lesnar selbst, sich seine Gegner profitierten enorm von Heyman, da er selbst die gewendet over bringt, obwohl er sie grade in Grund und Boden redet. Ausserdem ist er backstage Rob fantastischer Booker, der vor allem die ECW damals groß gemacht hat"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: hosswrote on 27.01.2015:[10.0] "Dieser Mann ist Wahnsinn. Am Mic ne 10, alsManager ne 10, als Macher von ECW ne 10. Solche Typen braucht das Wrestling. Das einzige Manko ist wohl ds er nicht Geschäftsmann genug ist, sonst hätte man die ECW sicher weiterführen können wenn man einiges da professionalisiert hätte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: DerLandvogwrote on 22.01.2015:[10.0] "Der Typ zieht mich bei jeder seiner Promos in den Bann. Unglaublich stark am MIC und auch als Manager. Jeder, der an seiner Seite arbeitet, darf sich auf viel Erfolg freuen."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Triple Hwrote on 05.01.2015:[10.0] "Man kann diesen Paul Heyman lieben oder hassen er ist und bleibt das Mastermind im Wrestlinggeschäft. Fies, hinterhältig aber dann auch wieder mal sympatisch. Er beherrscht alle Faceten des Sport Entertainment. Als ich ihn zum ersten mal sah habe ich ihn nicht gemocht, aber durch Wrestling Network und die Doku über ihn ist er bei mir in ein ganz anderes Licht gerückt. Ohne Ihn wäre auch ein Brock Lesnar ohne Glanz in der WWE geblieben. Die stärkste Zeit ist und bleibt wohl seine ECW Timeline. Ich hoffe er bleibt dem Sports Entertainment noch lange erhalten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ggultra2764wrote on 27.12.2014:[10.0] "One of the all-time greats as both a manager and booker. The guy is one of the best presently at cutting excellent promos that make him come across as a slimey guy you would want to legitimately beat up. His booking of ECW and the WWE's Smackdown brand for 2003 is stuff that American pro wrestling needs more of instead of the shenanigans that promoters like Dixie Carter and Vince McMahon pull off."
Rating: 10.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: HereComesThePainwrote on 20.12.2014:[10.0] "Muss ich ernsthaft ins Detail gehen? Na eben. Wieso muss ich hier überhaupt 100 Zeichen verwenden..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Sokar Drenwrote on 05.12.2014:[10.0] "Das größte Genie im Wrestling Business! Desweiteren ist Paul Heyman auch ein sehr guter Manager, denn seine Heyman Guys werden durch seine Promos perfekt unterstützt und machen eigentlich jede Show unterhaltsamer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Y2J316wrote on 28.11.2014:[9.0] "Großartiger Manager und auch ein Genie als Besitzer von ECW. Mag ihn als Manager sehr. Vor allem als Manager von Lesnar und Punk pures Gold. Sein Run mit Cesaro war mehr oder weniger ziemlich misserabel. Hoffe das er noch ein weilchen bei WWE bleibt und weitere coole Promos von sich gibt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Mantafahrerwrote on 12.11.2014:[5.0] "Paul Heyman als Booker ist für einige der brilliantesten, aber auch schwachsinnigsten Aktionen in der Geschichte des Wrestling-Business verantwortlich. Hat die ECW groß gemacht, seine Fehlentscheidungen waren meiner Meinung nach aber auch der Untergang der Liga. Generell passend zu seinem Heel-Charakter ein unglaublich unsympathischer Typ, was aber perfekt zu Lesnar passt. Andere Paul Heyman-Guys hatten nicht so ein Glück und ihn als Manager zu haben brachte ihnen gar nichts. Das Einzige, was ich richtig korrekt an Paulie finde, ist sein Mic-Work, welches eines der besten ist das ich je erleben durfte."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: 8BitLegendwrote on 12.11.2014:[6.0] "Leidenschaftlicher, erfahrener aber bzgl. der Intelligenz überschätzter Wrestling-Allrounder. Meister der billigen Heat, kann gut provozieren, ist dabei aber selten wirklich glaubwürdig. Kennt keine geschmacklichen Grenzen und würde auch seine Großmutter verkaufen, wenn der Preis stimmt. Hat einen Teil seiner Kredibilität durch die missglückten Heyman-Guy Geschichten verspielt. Curtis Axel und Ryback hatten genauso wenig davon. Lesnar und Heyman passen aber ganz gut zusammen. In der Rolle kann er gerne bleiben."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: GlobalSportsGamerwrote on 20.10.2014:[10.0] "No one comes close to him on the mic. Amazing. Works the crowd and can make you cheer or boo him on a moments notice. A true legend."
Rating: 10.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: zackwoowoowooryderwrote on 16.10.2014:[10.0] "Das größte Genie im Sport-Entertainment-Bereich. Egal ob als Manager, als GM oder als Besitzer von ECW, Heyman war immer richtig stark. Er kann Superstars egal wie weit unten sie sind immer groß rausbringen. Und reden kann der Mann wie kein zweiter."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Titanwrote on 21.09.2014:[10.0] "Paul Heyman kann man zweifelsohne als Mastermind im Wrestling-Business bezeichnen. Wie er damals ECW auf den Radar gebracht hat und wie sein Einfluss das Business verändert hat ist historisch. Booking-Technisch hat er zwar nicht immer alles richtig gemacht, aber größtenteils schon. Zudem ist er ein unglaublich unterhaltsamer Mic-Worker, der zusammen mit Jericho, Punk und Edge den Olymp der Mic-Worker bildet. An Lesnars Seite und davor an Punks Seite war er sehr gut aufgehoben. Wenn ich könnte würde ich auch mehr als 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Viper99wrote on 17.09.2014:[10.0] "Ich freue mich immer drauf wenn ich ihn bei Raw sehe denn da kann ich mir sicher sein das 10 Minuten Unterhaltung kommt.  Er ist wohl der beste Non Wrestler der letzten (min. ) 7 Jahre!  Und an der Seite von Lesnar perfekt aufgehoben!"
Rating: 10.0
Sentiment: -0.36057692307692313
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Phenomenal91wrote on 06.09.2014:[10.0] "As manager, promoter, commentator, on air official, the man is absolutely without peer. He succeeded in the business by playing by its rules as a manager, and later by breaking just about all of them with ECW. Now, after a near 30 year career in the wrestling business, having raised a mighty empire and brought it down, having guided several young superstars to greatness, all the while being phenomenally entertaining no matter what role they put him in... he's still going full speed ahead. He's not slowing down any time soon, and hopefully, if the WWE is smart, they'll allow him a greater say in what goes on behind the scenes. For the artist formerly known as Paul E. Dangerously, wrestling's not just a business, it's the greatest show on Earth."
Rating: 10.0
Sentiment: 0.1283234126984127
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: HighlightHEELwrote on 03.09.2014:[10.0] "The Best in the World at what he does. Im Moment kann niemand, aber absolut niemand Paul Heyman am Mikro das Wasser reichen, wenn er eine Promo of the Year an die andere reiht. Seine Rolle als Advokat und schmieriger Manager von Lesnar, vorher auch von Punk und anderen, ist die in der heutigen WWE perfekte für ihn, von der auch zumindest Lesnar gewaltig profitiert. Sorgt für Kontroversen, wenn die Smart Marks unter den Fans ihn feiern und die Marks ihn ausbuhen, was zeigt, wie gut er polarisieren kann. Als der Mann hinter ECW hat er auch schon seinen Teil Wrestlinggeschichte geschrieben, als Booker war er auch in der Anfangszeit von SmackDown nach der Trennung der Roster verantwortlich für einige tolle Shows und Momente. Das, für das ich ihn am Wenigsten im Gedächtnis habe, ist seine Zeit als Kommentator, und auch da war er bei weitem nicht schlecht. Eine der prägenden Figuren des Wrestling-Business, und das ist bis heute so."
Rating: 10.0
Sentiment: 0.6071428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Detective Maskwrote on 18.07.2014:[10.0] "Since he was a heel when he became SmackDown GM a decade ago, I didn't like him when I was still a kid. Amazing how things have changed.   As a heel manager, he does a wonderful job at delivering promos on the mic. I'm also impressed at how he can take on topics that would seem to be unrelated to each other and turn it into one amazing promo. In particular, the way he connected CM Punk's real-life firing to his WM 29 loss, then link it further to hype Undertaker vs. Lesnar at WM 30, was just brilliant."
Rating: 10.0
Sentiment: 0.5177083333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Hirnklopswrote on 29.04.2014:[8.0] "Netter Booker, mieser Geschäftsmann. Was er aber kann, und das wirklich wie kein Zweiter, ist Reden. Ich höre diesem Mann einfach gerne zu, er kann so unglaublich, unglaublich geile Reden halten, das ist sowas von... Absolut genial. Ich glaube zwar nicht, das er aus Scheiße Gold machen kann, und er ist auch definitiv nicht der Messiahs, den manche in ihm sehen, aber er ist ein endgeiler Redner und ein Manager aus dem Level von Bobby Heenan."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Jack Slaterwrote on 22.04.2014:[10.0] "Warum habe ich den Kerl nie bewertet? Ich sage nur so viel. "MY CLIENT BROCK LESNAR CONQUERED THE STREAK". Dieses Segment wird mir wohl auf ewig im Kopf bleiben und auch wenn er einfach die ganze Zeit nur das selbe von sich gegeben hat - er hat damit dem Ende der Streak noch einmal einen Stempel aufgedrückt. Die alte ECW, die Wrestler die er gemanaged hat, sein Micwork, seine Arbeit als Kommentator, sein Booking, sein generelles Auftreten, seine Arbeit als General Manager von SD, seine legendären Promos... Paul Heyman ist wohl der beste Non-Wrestler den ich jemals im Wrestling Geschäft gesehen habe und er ist eindeutig der beste Manager aller Zeiten. 10 Punkte."
Rating: 10.0
Sentiment: 0.05000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Blade Bourdeauxwrote on 11.04.2014:[10.0] "My Name is... = die Halle buht! Paul Heyman hat das Erbe von Bobby Heenan wahrhaft angetreten. Man kann ihn in jeder Situation raus schicken, mit seinem Gefühl für die Crowd wird fast immer eine Top Promo heraus kommen."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: TheKingOfSwingwrote on 11.04.2014:[10.0] "I wish i could give an 12 for the greatest manager of all time, but sadly the highest I could give him is a 10. Everything Paul Heyman touches turns to gold, everything he says inches the people to the edge of their seats, everything he produces leads to a great moment in the industry, and its all because of the hard work. Just as an example of his immense skill, was this Monday night on the Raw after Mania, as not only did Heyman get the biggest boos for ending the streak with "The Conquerer, BROCCCKKK LEESSSSNARR", but he also got this biggest pop as the surprise manager for Cesaro. Heyman can do it all."
Rating: 10.0
Sentiment: 0.11108058608058606
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Brainbreakerwrote on 09.04.2014:[10.0] ""My name is Paul Heyman! " Ach Paul... du, der großartigste unter allen Managern... du, der begabteste aller Redner... du, der es wie sonst nur Vince McMahon vermag, Matches allein mit Mimik und Körpersprache vom Ringrand aus Bedeutung zu verleihen... du, der am Kommentatorenpult so ziemlichen jeden ausstach... du, der das mutigste Konkurrenzprodukt zur damaligen WWF aufbaute... du, der einfach die Ahnung und Erfahrung hat, zu bewerten wer es wirklich verdient hat gepusht zu werden... ja Paul, du verdienst irgendwann einen Platz in der Hall of Fame!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Whitebear710wrote on 08.04.2014:[10.0] "Glatte 10. Als Manager der absolut beste, er besticht mit giftigen Promos, die jede Fehde aufpeppen. Seine recht eigene Stimme finde ich persönlich sehr passend. Wenn er ein Mikrofon zur Hand nimmt und anfängt zu sprechen, wünscht man ihm gleich einen Big Boot auf die Zwölf - Ziel erreicht. Keine Frage, volle Punktzahl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Slyderwrote on 18.03.2014:[10.0] "Wohl DER beste Manager aller Zeiten.  Sorry, dass ich die Attitude-era nicht durchlebt hab, sonst wäre meine Wahl sicher schwerer gewesen. :)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Foleysbabytoywrote on 27.02.2014:[10.0] "Großartiger und leidenschaftlicher Promoter. Sehr guter Kommentator. An der Seite von Punk und Lesnar Gold wert. Aus Ryback kann allerdings auch Herr Dangerously nicht viel herausholen."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: AriesMarkwrote on 21.02.2014:[10.0] "Paul Heyman is by far the best heel manager in the business today. I could put an argument in for Zeb Colter, but he's still not on Heyman's level."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: J0KERwrote on 23.01.2014:[10.0] "Paul Heyman aka. Paul E Dangerously! Paul Heyman wohlmöglich der beste Manager die es im Wrestling gegeben. Hat Stars wie CM Punk, Brock Lesnar, Rey Mysterio, Rob Van Dam, Chris Jericho, Chris Benoit und viele mehr hervorgebracht. Seine Promos konnten bei diesem Mann einfach nicht schlecht werden. Im Endeffekt kam jedes mal eine spitzen Promo zu Stande. Im Mikrofon der Beste der Beste der Besten. Keiner schlägt Paul E Dangerously was Mic Work betrifft! Ebenfalls ein Super Booker und Writer. Am Kommentatoren Pult wusste er auch zu überzeugen wie in all seiner Promos. Die Mimik die er hat kann keiner toppen er ist einfach die Stimme des Wrestlings! Am Ende bin ich auch ein Paul Heyman Guy!"
Rating: 10.0
Sentiment: -0.3263888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ShawnDravenwrote on 04.01.2014:[10.0] "Best manager in the history of the business. Also one of the greatest minds."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: davidrh115wrote on 02.01.2014:[10.0] "Dieser Mann ist einfach der Hammer in Sachen Wrestling. Er pusht fast jeden Wrestler an die Spitze !"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Silaswrote on 23.11.2013:[10.0] "Der Mann ist lebende Wrestlinggeschichte. Mit seinen ECW Storylines erfand er, mitte der 90er das Wrestling neu. Dazu ein gutes Auge für Talente ( CM Punk, Lesnar) und ist auch als "on-air"-Manager unglaublich unterhaltsam. Paul Heyman ist Wrestling!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: LatinoheatEGwrote on 20.11.2013:[10.0] "Seine Heel-Arbeit ist unvergleichlich. Die Art in der Paul Heyman die Zuschauer gegen sich und seine "Klienten" aufwiegeln kann ist so gut, dass man 10 Punkte geben muss. Für mich ein baldiger Hall of Famer. Hoffentlich bleibt er noch lange im Geschehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Goldberg82wrote on 15.11.2013:[10.0] "In der WCW hatte Heyman aka Paul E. Dangerously ein 80er Jahre Yuppie-Gimmick und ist immer mit einem für unsere Zeiten riesen Handy rumgerannt. Dieses hat er gerne für seine Schützlinge eingesetzt. Heyman kam damals schon gut als Manager der Dangerous Alliance rüber. Unglaublich was Heyman bei der ECW aufgebaut hat. Mit wenig Geld und sehr guten Workern hat er das moderne Wrestling revolutioniert. Er war mit erwachsenen Storylines, Hardcore-Wrestling vom feinsten und einer sehr guten Cruiserweight-Division einer der Wegbereiter für die Attitude Era in der WWF. Leider ging die ECW nach Streit mit TNN (Verlust des TV-Slots) in der WWE auf. Seit dem ist Paul Heyman dort als General-Manager, als Manager (von Größen wie CM Punk oder Brock Lesnar) tätig und macht dies Großartig. Einer der größten Brains im Wrestling."
Rating: 10.0
Sentiment: -0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Cooliganwrote on 14.10.2013:[10.0] "Lange Zeit gab es keine Manager mehr, die mit ihren Wrestlern an den Ring gegangen sind und sich durch ihre Mithilfe beim Publikum unbeliebt gemacht haben. Paul Heyman macht seinen Job gut und die WWE bräuchte mehr Leute wie ihn."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: koeddylaemmlewrote on 19.09.2013:[10.0] "One of the absolute geniuses of wrestling. Adds something special every time he is involved."
Rating: 10.0
Sentiment: 0.2785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: indyfanwrote on 07.09.2013:[9.0] "Er hätte von mir eine 10 bekommen, wenn ernicht so ein mieser Geschäftsmann wäre. Er ist ein Wrestlinggenie! Er hat es von ganz unten nach ganz oben geschafft (und leider auch wieder zurück). Wer sich The Rise of ECW angesehen hat und zugleich noch die unabhängige Szene des Sports ein bisschen besser kennt, der muss gestehen: Heyman ist genial. Ich selbst kann hier auch nur darauf eingehen, da ich zu Zeiten der original ECW noch kein solcher Wrestlingfan war und somit die Stimmung aus der Zeit auch nicht mitbekommen habe. Das was er jedoch an den Tag legt ist bis heute 1A. Möglicherweise der beste Booker/Writer im US Amerikanischen Raum."
Rating: 9.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Alex Maedawrote on 30.08.2013:[10.0] "Einer der besten Redner aller Zeiten. Hat nicht nur eine jederzeit wiedererkennbare Mimik und Gestik, sondern jede Promo, die er hält, hat einen meist tiefergehenden, teilweise sogar auf private Hintergründe beruhbaren Sinn. Er lebt nicht von Phrasen, Cheap Heat/Pops, kleinen Witzchen oder sonstigen gern verwendeten Stilmitten, sondern von Inhalt. Heyman spricht das aus, was er denkt und überspringt mehrmals die Grenze zwischen On Air-und Privatperson, gerade in der Fehde gegen CM Punk blüht er erneut richtig auf und haut gehaltvolle Promos raus, die von niemand anderes als ihm kommen können. Paul Heyman ist einzigartig und unersetzbar. Das hat die Zeit vor seinem WWE-Comeback gezeigt."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "Klasse Mastermind, und klasse am Mic. Ich bin ein Paul Heyman Guy"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[8.0] "Anfang des Jahrtausends als WWF-Kommentator relativ nervig, aber er schafft es perfekt, den Heel zu verkörpern, ob nun als Manager oder GM. Unausstehlich, genial und unterhaltend. Zudem eine Schlüsselfigur der ECW und somit auch des amerikanischen Wrestlings."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Leonewrote on 12.08.2013:[10.0] "Give Paul Heyman millions of dollars, a wrestling promotion, and somebody who can work on the business side of things for him, and he would be the greatest Wrestling Promoter in the world.  On top of this, he's a fantastic manager and great on the mic.  When a wrestler is taken under the wing of Paul Heyman, 9 times out of 10, they become either a star or a very memorable wrestler."
Rating: 10.0
Sentiment: 0.67
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: MrFisch5wrote on 28.07.2013:[10.0] "Ich weiss echt nicht wie man hier etwas anderes als 10 Punkte geben kann. Der Mann macht in seiner Rolle einfach alles richtig sowohl früher als auch heute. Am Mic ist er ein Gott und als Heel Manger besser als kein anderer. Für mich einer der Gründe die WWE zu verfolgen, THIS MAN IS A GOD."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: KKorppuwrote on 20.07.2013:[10.0] "Best speaker ever to hold a microphone in a ring. Creative genious. When in a role where his weaknesses are not exposed, he is the best there is."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Erico Moraeswrote on 01.07.2013:[10.0] "Just perfect, nobody can do his role as he always did!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Evan Callawaywrote on 21.06.2013:[10.0] "The greatest manager ever. Paul has been doing an awesome job with Brock Lesnar and Curtis Axel."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: TheWALLwrote on 15.05.2013:[10.0] "Wie kann jemand ihm nur 1nen Punkt geben. =/ NUr ein kleines Kind, was nichts von Wrestling versteht und keine Heels mag kann so etwas machen. Er ist der beste am Mikrofon in der Geschichte des Wrestlings er hat alles was man als Perfekter Manager braucht. Ohne ihn gäbe es z. B. keinen CM Punk keinen Brock Lesnar oder RVD. Er ist unverzichtbar in diesem Geschäft. Und JEDER wirklich JEDER Wrestler hätte ihn an seiner Seite, was sogar ein Babyface wie Kofi Kingston Gestern zugegeben hatte. HEYMAN=ERFOLG ERFOLG=EINE NEUE LEGENDE DIESES SPORTS.  #HeymanGuy#"
Rating: 10.0
Sentiment: -0.07500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: believeintheshieldwrote on 02.05.2013:[10.0] "Was er mit ECW geschafft hat muss ihm erstmal einer nachmachen. Ein Hervorragender Booker, Writer und Promoter. Durchdachte Storylines die einen fast immer mitgerissen haben, das verdient 10 Punkte"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: dudemanbearpigwrote on 10.03.2013:[9.0] "An excellent manager, announcer, and booker, but not a good promoter."
Rating: 9.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Golgotawrote on 28.02.2013:[10.0] "Unterhält mit jedem einzelnen Auftritt. Das Business fließt durch sein Blut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Irri Busenbenderwrote on 05.02.2013:[10.0] "Der beste WWE Manager aller Zeiten und der Promogott schlecht hin. Alles andere als 10 Punkte wäre ne Frechheit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: rey mysterio 104wrote on 29.01.2013:[10.0] "Ich kann nichts zu seiner Zeit als Promoter sein, aber als Manager einfach sehr stark in seiner Rolle."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Valerionwrote on 10.10.2012:[10.0] "schmierigster Typ im Business, Promo-Gott und der Schöpfer der alten ECW. DANKE PAUL HEYMAN!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Woerpwrote on 01.10.2012:[7.0] "Ich kenn ihn von seiner ECW Zeit nicht, eigentlich kenn ich nur seine Programme mit Brock Lesnar und als WWE Kommentator. Aber das was ich gesehen habe, ist nicht schlecht."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: BlueDiamondwrote on 11.09.2012:[10.0] "Er ist als Gründer eine glatte eins und als Manager hat er jeder Story und jedem Klienten unglaublich viel gebracht. Der perfekte Widerling in jeder Story."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Hankinswrote on 11.08.2012:[10.0] "Für mich der beste Manager im Wrestling. Schade, dass man ihn nur noch so selten zusehen bekommt. Er hat ein unglaublich gutes Gespür für Situationen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: jchiofalwrote on 07.08.2012:[10.0] "Paul Heyman is a wrestling legend. He ran perhaps the greatest American wrestling promotion, is one of the best managers in pro wrestling history, and is one of the best on the microphone in pro wrestling history. Heyman has made an impact on proessional wrestling which will never be rivalled."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ARIZAwrote on 15.06.2012:[10.0] "Sowohl hinter den Kulissen, wo er aus dem ECW-Roster absolut alles herausgeholt hat, was möglich war, als auch als Manager oder Kommentator richtig gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Franchise Playerwrote on 04.06.2012:[10.0] "Ich habe es noch nie zu einer Person im Wrestling gesagt aber: Ich bewundere diesen Mann! Ich liebe Heymans Arbeit! Genie, Mikrogott und ein unglaublicher Sinn Fürs Wrestling. Nur mit Kohle konnte Paul E. nicht umgehen^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: themuhwrote on 25.05.2012:[10.0] "He has the best speaking ability in wrestling. No doubt about it."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Baldrickwrote on 11.05.2012:[10.0] "Ein Gespür für den richtigen Zeitgeist und das Wrestling allgemein, dass noch immer seinesgleichen sucht.  Zudem glüht jedes Mikro, dass er in die Hand nimmt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Senajwrote on 28.01.2012:[10.0] "Was wäre das Wrestling ohne Paul Heyman? Ohne ihn wäre es auf jeden Fall nicht das Gleiche. Er hat geholfen das Business zu revolutionieren. Schade das er nicht mehr bei der WWE zu sehen ist. Bring him back!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: jerseyhoolwrote on 16.11.2011:[10.0] "Paul Heyman ist ein Fall für das Geschichtsbuch: genialer Booker & grandios am Mic. Aber leider auch unbeholfen, wenn man den betriebswirtschaftlichen Aspekt zu Rate zieht (irgendwie musste die ECW ja pleite gehen)! Als Kommentator mit seiner Stimme, die am Rande des geistigen Wahnsinns schwankte, göttlich, als Manager einer der Besten. Ungeachtet aller Differenzen & Unstimmigkeiten, die seinen Umgang mit anderen & ihn selbst betreffen, ein grosser Verlust für das amerikanische Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Sirius Van Grathwrote on 03.10.2011:[10.0] "Der beste Booker aller Zeiten! Es ist wirklich kein Wunder, dass er in der Mitte der 90'er immer zum besten Booker gewählt wurde. Mit der ECW hat er das Hardcore-Wrestling sowie das Wrestling selber revoluzioniert! Schade, dass er nun nichtmehr im Wrestling-Buisness ist!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: VanderVaartwrote on 18.09.2011:[6.0] "Paul Heyman ist der innovativste Booker aller Zeiten. Schneller, höher, kreativer, spektakulärer und teils zu extrem. So krass war`s. Die ECW konnte deshalb nicht Mainstream und wirtschaftlich erfolgreich sein, weil der WWF oder/ und WCW-Zuschauer sonst einen Herzinfarkt bekommen hätte. Infolgedessen verwehrte er vielen Wrestlern dann die Gage und redete sich "genial" raus.  Das ging solange gut, bis die Liga ihre Pforten schließen musste. Im Knast ging er dafür nie."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Er war ein Master Mind! Seine Ideen waren fast immer Genial und er spricht wirklich allen Wrestlingfans aus der Seele! Einen Punkt Abzug dafür das er jedoch nicht besonders gut mit Finanzen ist."
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: thedominancewrote on 22.08.2011:[10.0] "Paul Heyman ist wirklich ein Mastermind! Also Dixie Carter sollte sich wirklich in den A.... beissen! Mit ihm (da bin ich mir sicher) wäre bei TNA etwas mehr mit Genuss zu geniessen! Über seine Sache in der ECW brauch man sicher nix mehr sagen und auch in der WWE war er gut zu ertragen! Als Booker ist er sowieso ein Gott! ich glaube in seinem Geschäft ist er der beste seiner Art, von daher denke ich das 10 Punkte gerechtfertigt sind!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: devilsoldierwrote on 30.07.2011:[6.0] "MMMMHHHHH schwierig. Alle Welt findet er hat es drauf und versteht das Geschäft und kann alles in Gold verwandeln und ist ja auch der Wrestlingkenner vor dem Herrn. Sicher hat er gute Ideen und hat auch viel im Geschäft bewegt aber eben nicht auf Dauer. Wenn er ja ach so toll ist warum ging dann die ECW kaputt und warum ist OVW unter seine Ideen nicht über den regionalen Sektor aufgestiegen? Sicher kann er was aber ich glaube einfach auf Dauer und im Mainstreambereich bei den richtig großen setzt er sich nicht durch. Heyman funktioniert 2 bis 3 Jahre dann spricht er nur noch Marks an aber nicht die breite Masse. Und die macht eben leider das Geschäft aus. Edit: Ich weiß das OVW als Entwicklungsliga diente, aber die ausverkauften Shows müssen ja nicht von HeymanŽs Ideen kommen sondern könnten auch daher kommen das die Leute wussten das zukünftige WWE Stars dort auftreten, mit Leuten die schon Stars sind und zum Training zurück beordert wurden bzw manchmal sogar bei einigen Shows aktuelle Stars. Erfahren werden wir das wohl nie genau. Ich möchte Herrn Heyman auch nicht sein Talent als Booker kleinmachen aber ich denke eben auf Dauer fährt er sich fest und schafft es nicht den Mainstream zu erobern. Ähnlich ROH die sicher geiles Wrestling bieten (sogar sehr geil) aber nicht für 3 bis 4 Millionen TV Zuschauer auf Dauer und Ratings zählen leider nun mal am Markt."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: y94wrote on 30.07.2011:"An meinen Vorredner: Die OVW diente zu Heymans Zeiten als reine "Farmliga" der WWE. Die WWE will in diesen Ligen junge Talente auf einen Einsatz in den großen TV Shows vorbereiten, bzw. vor einem bewusst klein gehaltenen Publikum deren "Mainstreamtauglichkeit" überprüfen. An einer überregionalen Vermarktung besteht/bestand daher, seitens der WWE, keinerlei Interesse. Unter Heymans Leitung fanden die Veranstaltungen der OVW trotzdem regelmäßig vor ausverkauftem Haus statt. So viel also dazu.  Die ECW fand aus finanziellen Gründen ihr Ende. Der Geschäftsmann Paul Heyman trägt dafür die (Mit) Verantwortung. Der Booker Paul Heyman dagegen setzte mit seinen Shows bis zuletzt Maßstäbe und leitete mit seinen Ideen einen vollständigen Paradigmenwechsel im amerikanischen Wrestling ein. Ohne einen Querdenker wie Heyman wäre die Attitude Ära in ihrer bekannten Form vollkommen undenkbar gewesen."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: 7TheEwrote on 03.07.2011:[10.0] "Das Mastermind der Gott und einfach der beste im Hintergrund von Wrestling!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: C0nspiracywrote on 27.03.2011:[9.0] "Paul Heyman ist eine der Wichtigsten Wrestling Persönlichkeiten. Er ist sehr klug auch wenn er in den Sendungen , vorzugsweise der WWE oftmals als holpriger unaufgeräumter Manager herumtingelte. Er hat die ECW am Leben erhalten und sich eine treue Fangemeinde erarbeitet. Er ist in der Geschichte des Pro WrestlingŽs nicht wegzudenken. Im augenblick scheint er dem Wrestling fernzubleiben aber ich denke wir haben noch nicht das letzte von Paul Heyman gesehen. Er ist so verrückt das sich niemand wundern würde sollte er wieder eine Liga eröffnen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Whole Fucking Showwrote on 02.03.2011:[10.0] "Der Mann, der von diesem Business am meisten versteht."
Rating: 10.0
Sentiment: -0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: LabronBenoitwrote on 14.07.2010:[10.0] "Das Booking-Genie schlechthin. Wäre dieser Mann noch bei der WWE... ach Gott, was hätten wir da wohl für geile Storylines in den letzten Monaten und Jahren gehabt. Immerhin wären die Leute für sowas ja bei der WWE durchaus vorhanden. Bin ja mal gespannt, ob das mit TNA klappt. Wenn ja, werde ich TNA wohl öfter verfolgen, denn zurzeit interessiert mich ja das ganze nicht so sehr. Aber nochmal zu Paul Heyman: Ich hoffe, dass wir ihn alle nochmal irgendwo als Booker sehen können, vielleicht sogar in einer On-Air Rolle, wer weiß, wer weiß ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Kitanoyamawrote on 14.07.2010:[10.0] "Nach allem was ich von ihm gelesen, gesehen und/oder gehört habe ist er einer der absoluten Respektspersonen im Wrestling-Buisness dessen Aktionen allerdings zum Teil wie ein zweischneidiges Schwert sind."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: CM Dannywrote on 10.06.2010:[10.0] "Als Geschäftsmann vielleicht wirklich unbrauchbar, aber als "Mind" absolut unerreichbar. Er hat die Wrestling-Welt verändert und die Big Two fast schon gezwungen, ihren Stil zu ändern. Thank you Paul!"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Erasedwrote on 30.05.2010:[10.0] "Wohl der beste Booker in der Wrestlinggeschichte! Auch als Manager und Color-Kommentator wirkte er ständig gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Lesnarwrote on 08.04.2010:[10.0] "Der für mich beste booker aller zeiten. Der man weiß einfach alles und vorallem was die leute sehen wollen. Schade das er nicht mehr die positionen von damals einnimmt. Würde mir vorallem ein comeback als supporter eines neulings wünschen. wie er damals Lesnar hochgepusht und dargestellt hat war einfach göttlich. Ich erinnere mich noch an das hell in a cell match wo er neben der zelle rumlief und mit seiner unverwechselbaren stimme 30 minuten rumschrie. Eine Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rinskywrote on 04.04.2010:[10.0] "Es gibt glaube ich keinen, der es besser versteht, das zu bieten was die Fans wirklich sehen wollen, als Paul Heyman. Ich hoffe, dass er noch irgendwann einmal die Chance bekommt bzw. wahrnimmt in einer größeren Liga als Headbooker zu arbeiten. Wenn nicht, dann doch zumindest eine Manager oder Authority Figure Rolle, denn auch in diesem Bereich hat er schon oft genug bewiesen, dass Paul E. es einfach drauf hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: BlackXwrote on 02.04.2010:[10.0] "The evil genius. Neben Vince McMahon das größte Mastermind im Wrestlinggeschäft. Was er mit der ECW geschaffen hatte, ist für die Ewigkeit bestimmt. Dazu muss man seinen Einfluss auf die WWE/WWF und WCW in den 90ern hoch anrechnen. Klare volle Punkte für Paul E."
Rating: 10.0
Sentiment: -1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Manu Adamswrote on 02.04.2010:[10.0] "Paul Heyman ist ein Allrounder außerhalb des Ringes. Machte seine arbeiten, die man ihm gab, entweder als Kommentator oder General Manager stets ausgezeichnet. Zudem war er der Chairman der ECW, hat eine außergewöhnliche Stimme die mir gefällt. Dem Mann muss man einfach die verdiente Höchstnote geben. Was dieser für die ECW, WCW & WWE geleistet hatte ist unglaublich."
Rating: 10.0
Sentiment: 0.05000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Eddiewrote on 15.03.2010:[10.0] "Hatte gute Storylines, war ein klasse GM, er ist einfach sehr präsent On-Air. Ich find den Mann klasse."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Carnevalewrote on 11.03.2010:[10.0] "Ach ja, Paul Heyman. Wie schade dass er nicht mehr in einer wichtigen Position ist. Wenn TNA Russo durch ihn ersetzen würde, wäre der Monday Night War wirklich eine gefährliche Geschichte für WWE. Denn Heyman zählt zu den absolut besten Bookern und Writern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Fat Mikewrote on 09.03.2010:[10.0] "Für mich ist Paul Heyman der beste Booker im Business. Seine Storylines waren überwiegend überzeugend und spannend und er wusste immer wie er seine Worker darstellen musste um ihre Schwächen zu verdecken (z. B. Sandman). Doch auch als On-Air Persönlichkeit ist er sehr unterhaltsam. Schade das er sich in der WWE mit seiner Meinung und Einstellung nicht durchsetzen konnte, denn dann wäre das Produkt wohl um einiges besser."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Aquifelwrote on 08.02.2010:[10.0] "Auch wenn ich die ECW für überbewertet halte, Heyman stand vor allem für zwei Dinge: Innovation und Mut zum Unkonventionellen. Sicherlich nicht der größte Geschäftsmann, aber als Booker und von seinen Ideen her einer der größten im Biz. Dazu on-screen sehr stark."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Telecinewrote on 17.01.2010:[9.0] "Was kann dieser Mann nicht? Er hatte gutes Booking drauf, gutes Mic Work und konnte sogar kommentieren, obwohl er den Job angeblich gehasst hat. Dass er zu TNA geht, hat er mehrfach in Interviews abgelehnt und ich denke, solange Russo dort ist, wird das auch so bleiben. Wenn TNA allerdings Russo durch Heyman austauscht, könnte es was werden. Dennoch würde ich es erst glauben, wenn man ihn entweder dort im TV sieht oder es News oder Statements von TNA zu seiner Vetragsunterzeichnung gibt. Alles andere ist in meinen Augen Wunschdenken."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Aesopwrote on 20.12.2009:[10.0] "Heyman hat die ECW gegründet, und die hat gute Matches geliefert. Er hat das Wrestling revolutioniert, ihm können wir Wrestling für ältere verdanken. Vielleicht hat er die WWE auch dazu gebracht härter zu werden. Neben seinen guten Leistungen als Booker war er auch als Kommentator während der Invasionss-Story klasse."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: nwowrote on 11.12.2009:[10.0] "Wurde eigentlich schon alles gesagt. Er hatte das Talent aus Wrestlern, die es in anderen Ligen noch nicht mal als Jobber geschafft hätten, Superstars zu machen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: downtown2wrote on 18.11.2009:[10.0] "Ein großer Geschichtenerzähler und der trickreichste, kreativste Promoter aller Zeiten. Wie er aus einem Zwerg wie Taz eine Kampfmaschine, aus dem Nullapostel Sandman eine Hardcore Legende, aus einem ausstrahlungslosen WCW Undercarder die Galionsfigur Raven oder aus einem Team zweier Moppelchen die Kultformation Public Enemy machte muss man ihm hoch anrechnen. Er hat wirklich aus jedem ihm jemals unterstehenden Wrestler das absolute Maximum herausgeholt, ebenso wie aus seiner Bingohalle. Zudem einer der mutigsten und widerspänstigsten Figuren, die je den Wrestlingzirkus betreten haben."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: mrfantasickwrote on 05.11.2009:[10.0] "Was er bei der ECW abgeliefert hat, war einfach nur fantstisch und genial. Und auch als Manager und Kommentator ein richtig guter und verlässlicher Mann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Basket Casewrote on 15.09.2009:[10.0] "Das Mastermind des Wrestling schlechthin. Ich würde ihn gerne wieder irgendwo als Booker, Manager oder Kommentator sehen. Egal was, egal wo."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: User191wrote on 27.08.2009:[10.0] "Als Promoter und Booker schaffte er es eine kleine Liga zur Messlatte im Hardcore Wrestling zu machen, die selbst heute ein hohes Ansehen bei den alten Fans hat. Als Kommentator, Manager und General Manager konnte er ebenfalls vollkommen überzeugen. Heyman ist einer der wichtigsten Männer in der Wrestlinggeschichte. Er muss niemanden mehr etwas beweisen, allerdings wäre er, in jeder Rolle, eine echte Verstärkung für die entsprechende Liga und daher wäre ein Comeback sehr wünschenswert."
Rating: 10.0
Sentiment: 0.05000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: BaptisteZorGwrote on 24.05.2009:[10.0] "Ob als Kommentator, bei der ECW oder an der Seite von Lesnar - Heyman war stets genial und ein Meister seines Fachs."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The-Game91wrote on 04.02.2009:[10.0] "Ein Gott am Mic. Seine Ausstrahlung ist unglaublich. Es gab keinen besseren Booker als Paul Heyman."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Father Nelsonwrote on 01.02.2009:[10.0] "One of the two greatest minds in the history of Pro-Wrestling!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: domi1984wrote on 20.11.2008:[10.0] "Einfach Weltklasse! Neben Bischof und Vince einer der 3 WrestlingGÖTTER!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Baszdmegwrote on 07.09.2008:[10.0] "Hat ECW zu der Promotion gemacht, die man heute noch liebt. Dazu noch ein fantastischer Kommentator und guter Manager mit großen Comedy-Skills."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Blue Meaniewrote on 17.08.2008:[10.0] "Vater der ECW, klasse am Mic und als Booker spitze. Wäre er kein so miserabler Geschäftsmann, hätte er ECW noch viele Jahre weiter erfolgreich führen können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Marcywrote on 02.08.2008:[10.0] "Eigentlich wurde schon alles gesagt, ein absoluer Meister im Aufbau von Gimmicks und Wrestlern. Mit einem guten Finanzberater würde er wohl jeder Zeit wieder eine konkurenzfähige Liga aufbauen können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: theflo438wrote on 14.07.2008:[10.0] "War wohl DER beste Booker aller Zeiten. Thank you Paul!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Sick Lebowskiwrote on 28.06.2008:[10.0] "Einer der kreativsten Leute in diesem Business. Schade, dass er nicht genau so ein Händchen für die finanzielle Seite des Wrestling wie für das Wrestling selber hat."
Rating: 10.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: dariawrote on 26.05.2008:[9.0] "tja, da fehlt mir wieder die 1, 5 - ganz sicher die volle Punktzahl für die Kreativität und die Leidenschaft, mit der er die ECW zur Legende gemacht hat - Punktabzug allerdings dafür, dass er 's gegen den Baum gesetzt hat und seine Arbeit bei der WWE. Und damit auch hier das alternative Bewertungsprogrammm genutzt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ecw foreverwrote on 24.05.2008:[9.0] "Genialer Promoter der leider Pech hatte in seiner Karriere, eventuell kann er was neues starten, wäre echt cool."
Rating: 9.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Green Arrow Banditwrote on 20.05.2008:[10.0] "Er hat sozusagen aus einem Haufen Schrott eine richtig gute Liga gemacht und die ECW wird ihm noch bis in die Ewigkeiten nachtrauern"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Akkuswrote on 17.05.2008:[10.0] "Er ist ein Gott, er hat die ECW zu dem gemacht was ich liebte! Leider sah man seien Arbeit an der neuen ECW nicht für gut an und warf ihn raus, er ist und bleibt aber ein Gott! Thanks Paul E!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Mr Money in the bankwrote on 19.03.2008:[10.0] "Paul Heyman ist in jeder hinsicht ein recht genialer Mann . Mit der ECW hat er das Wrestling revolutioniert und auch später hat er sich durch seine fantastischen Promos und shoots hervorgetan . Glatte 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Fabbowrote on 03.03.2008:[10.0] "Mastermind des Wrestling in den 90ern. Dazu genialer Kommentator, Manager und Booker. Jede Liga könnte froh sein Heyman in ihren Reihen zu haben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Rated R Champwrote on 13.02.2008:[10.0] "Toller Booker, toller Schauspieler und hatte auch immer gute Ideen(die Vince McMahon ihn leider nicht verwirklichen ließ)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: therockingkingwrote on 10.02.2008:[10.0] "Der beste Booker, den es gibt und vielleicht jemals gegenben hat. Paul Heyman hat mit der ECW etwas für die Ewigkeit geschaffen. Er war mit dieser Promotion immer am Puls der Zeit und manchmal sogar darüber hinaus. Er hat realistische Charaktere und ernsthafte Storys entwickelt (eine Revolution des Wrestlings). Er hat das Hardcore- und das Highflying-Wrestling salonfähig gemacht. Er hat als erster das Internet für seine Promotion entdeckt. Die ECW-Shows waren die ersten auf DVD. Paul Heyman ist ein Booking-Gott, schade nur, dass er von Finanzen keine Ahnung hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Juvicidewrote on 07.02.2008:[10.0] "Paul Heyman: Als Booker einfach nur genial und auch in sonstigen Formen vor der Kamera sehr gut. Einzig seine kurze Zeit als Kommentator bei WWE hat mir nicht so gefallen, aber davon sehe ich bei der Notengebung jetzt mal ab. Schade, dass er von WWECW nicht die Freiheiten bekommen hat, die er gebraucht hätte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: affenmannwrote on 27.01.2008:[10.0] "In einer gerechten Welt wäre er jetzt da, wo McMahon nun ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ghostwrote on 21.12.2007:[10.0] "Mastermind der ECW - ich weiss jetzt nicht genau wieviel damals "von seiner Feder" stammte - aber die original ECW war auf jedenfall Hammer - sehr kreativ, sehr innovativ - Top!"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Matt Mackswrote on 06.12.2007:[10.0] "Als Promoter ständig zwischen Genie und Wahnsinn, womit er die Zulassungsprüfung für die Hall Of Fame der besten Promoter aller Zeiten bestanden hat. Als Manager und Kommentator ebenfalls einer der besten, weil er ein fantastischer Redner gewesen ist und über immenses Hintergrundwissen über das Wrestling verfügt, welches er in seine Promos eingearbeitet hat. Zu schade, dass Leute mit eigener Persönlichkeit in der heutigen nationalen Wrestling-Landschaft nicht mehr gefragt sind."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Robert Taylorwrote on 08.10.2007:[10.0] "Einfach ein Genie - Ein Gott! Hinter den Kulissen der wohl beste Mann den es gibt, allein die ECW spricht für sich. Super Gespür für Talente, der auch weiß wie man bestimmte Leute einsetzt und over bringt!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Cloverwrote on 02.10.2007:[8.0] "Hat eine Wrestlingliga kreiert, die neue Maßstäbe (eben auch für die Fans) gesetzt hat. Dafür werde (sicherlich nicht nur) ich ihm ewig dankbar sein. Aber für seine letzten Jahre gibts Punktabzug: 9 Punkte..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Solid Snakewrote on 22.09.2007:[10.0] "Sein Gespür für Talente ist unheimlich. Ohne ihn würden viele Wrestler, die in der WWE Legenden sind, nicht geben. bzw. nicht in der WWE sein u m überhaupt Legenden werden zu können. Die WWE hat einen Fehler gemacht und ihn entlassen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: nacho83wrote on 13.08.2007:[10.0] "Neben Cornette wohl einer der allerbesten Booker ever."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Steven McWheelerwrote on 18.07.2007:[8.0] "Mastermind und 2. bester Non-Wrestler Heel aller Zeiten (wobei Vince ja Semi ist), aber zur Note 1 fehlt Faceleistung"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Babuswrote on 09.07.2007:[10.0] "Ob vor den Kameras oder hinter den Kulissen, Paul Heyman ist in jedem Fall ein Mastermind. Natürlich kann man auch bei ihm nicht jede Booking-Entscheidung nachvollziehen, aber objektiv betrachtet liegt das Niveau beinahe jeder Show, an der Heyman bookingtechnisch beteiligt ist, deutlich über dem Gewohntem."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: ShaneOwrote on 29.06.2007:[8.0] "Der genialste Booker im Wrestling Business. Leider hat er fürs finanzielle absolut null Gespür. Wenn man es schafft, das Leute einem Balls Mahoney zujubeln, kann man nur genial sein."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Thomas Carlsonwrote on 26.06.2007:[10.0] "Wenn jemand was aus Balls Mahoney und Gary Wolfe macht obwohl beide so talentiert sind wie Viscera dann muss er gut sein. Hat eigentlich aus wenig einiges gemacht. Immer wieder hat er für frischen Wind gesorgt mit kontroversen Angles. Finanziell hatte er leider nur das Talent von Theo Waigel. Das war sein Untergang. Danach sehr gut in allen Rollen in der man ein Mikrofon benötigt und natürlich der endgültige Aufstieg der OVW."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Der wahrscheinlich genialste Kopf im Wrestling Business!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Ganz klar! Das größte Genie im Wrestling Geschäft!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Showstopperwrote on 24.06.2007:[10.0] "Das Evil Genius des Wrestling. Top Booker, top Manager, aber leider ein hundsmiserabler Geschäftsmann. Hat durch seine ECW die Wrestlinggeschichte definitiv beeinflusst."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Dieser Mann ist einfach nur Kult. Als Manager und Booker ein absolutes Genie, der die ECW so groß rausgebracht hat, das viele Leute dieser Zeit immer noch nachtrauern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: matzemuenchwrote on 24.06.2007:[10.0] "The Evil Genius..... für mich ist der Mann einer derbesten überhaupt"
Rating: 10.0
Sentiment: -1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Sancezzwrote on 24.06.2007:[10.0] "Hat die (alte) ECW zu dem gemacht, was sie war. Leider darf er in der neuen ECW nicht arbeiten wie er will und kann. Meiner Meinung nach macht er die besten Storylines der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: Sandman16wrote on 24.06.2007:[10.0] "Er ist für mich das absolut größte Genie des Wrestlings! Was er mit seiner ECW aufgebaut hat, kann man nur als genial bezeichnen und ist wohl nicht wiederholbar. Wenn es die originale ECW heute noch geben würde, wäre sie sicherlich auf einer Stufe mit der WWE. Paul Heyman hat eine der legendärsten Ligen der Welt geformt, der man einfach hinterher trauern muß. Schade, dass es so endete."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: The Mountiewrote on 24.06.2007:[10.0] "Hat aus einer Liga voller nüchtern betrachtet mediokrer Wrestler ein großartiges Gesamtprodukt geformt, dem bis heute nachgetrauert wird. Was für ein anderes Wort als "genial" kann man dafür finden? Obendrein ein exzellentes Sprachrohr."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=664&gimmick=Paul+Heyman
Comment: BenZenwrote on 24.06.2007:[10.0] "Wie kaum ein anderer verstand (bzw. versteht) es Heyman immer wieder durch kontroverse und neuartige Angles die Zuschauer zu fesseln. Seine damaligen Innovationen in der ECW waren zu der Zeit einfach unglaublich und wurden nicht umsonst in unzähliger Form von den großen Ligen kopiert und übernommen. Ein absolutes Mastermind, dass unbedingt wieder eine Promotion unter seiner Kontrolle braucht ..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: wrestlingswiftiewrote on 29.01.2025:[10.0] "No offense Hamza Tufail, I get that we all have our own opinions, but you're out of your goddamn mind. "I think he lacked charisma." Eddie Guerrero? Get the fuck outta here! Eddie had such a great range, much like what I said about Mick Foley earlier today. He could make you laugh. He could definitely make you cry. He could be a beloved babyface, and a dastardly heel... I think you need to do more research. Now, moving on from that, Eddie's matches don't really need to be explained. His bouts against Benoit, Angle, Jericho, Mysterio, and Lesnar are still being talked about today because of how ahead-of-it's-time they are."
Rating: 10.0
Sentiment: 0.2545454545454546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Anas Kingwrote on 20.01.2025:[5.0] "I think he's one of the most popular and influential latino wrestlers of all time. I love him as an in ring performer. He had so many banger matches, and it's a shame that he was taken away from us that early. However, I think he lacked charisma, I also don't think he was any special when it comes to mic work. Though, I'll admit his promo with Brock before No Way Out was incredible. It was very emotional, and apparently it made Brock tear up when he went backstage. But other than that, I've never been the biggest fan of his personality, and mic work."
Rating: 5.0
Sentiment: 0.3382142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Havoc Ravewrote on 18.01.2025:[10.0] "Defining Eddie is difficult, not because he is bad, not because he is an "Indy gem" or whatever. It's difficult because everything that can be said has already been said, extremely complete regardless of the place or the rival, everything can work, in Mic Skills without a doubt legendary, regardless of whether the mood is bussiness, serious or simply informal, a whole example of what a career has to be, one of my favorites, this opinion deserves to end with a phrase to think about (created by me)...Oh Eddie... What would life be like if you were still here."
Rating: 10.0
Sentiment: -0.09166666666666662
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Its Clobbering Timewrote on 06.12.2024:[10.0] "Eddie had it all man, the look, the charisma, amazing in the ring and most importantly connection with the fans. Eddie had an legendary career from tearing up it in WCW Cruiserweight Division and NJPW Junior Heavyweight Division and ECW. Eddie Really became one of the best ever when he signed with WWE. Eddie could play a underdog feel good babyface a guy you wanna root for and an lying cheating & Stealing heel to perfection. Eddie was taken from us to soon but was still able to leave lasting impact on the world. Viva La Raza"
Rating: 10.0
Sentiment: 0.5444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Taibhsewrote on 22.11.2024:[10.0] "Quite simply, Eddie Guerrero is the reason I am a wrestling fan. I was flipping through channels as a 7-year-old on a Saturday morning, and I happened upon Los Guerreros vs The World's Greatest Tag Team from the previous night's SmackDown. I saw Eddie do something I'd never seen before - a combined headscissors and armdrag on both Haas and Benjamin - and I was hooked. In the years after that, his promos and matches continued to bring me laughter and amazement, and he truly had it all - the look, the athleticism, comedy, drama, workrate, etc. etc. He was an all-rounder to a degree that I'm not sure has been equalled since. He was taken from us far too soon and it was a terrible waste. Wrestling has been poorer without him ever since. RIP."
Rating: 10.0
Sentiment: -0.0738095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Wrestlingfan0808wrote on 10.11.2024:[10.0] "He excelled in every role he played. Good guy, bad guy, it didnt matter. One of the blueprints on how the narrative on small wrestlers have changed over the years even tho he was pretty jacked for his size. The impact he made in the industry continues to be felt today. One of a kind"
Rating: 10.0
Sentiment: 0.12000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: JackBurtonsTruckwrote on 14.10.2024:[10.0] "One of the few to have everything. The body, the brains, the charisma, the skill, the athleticism. His highlight reals are a thing of beauty and he is imitated more than most, but never duplicated."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TripleCrownwrote on 06.10.2024:[10.0] "One of the very few wrestlers who could captivate an audience and have the ability to be an incredibly good wrestler. Eddie was an all round perfect wrestler, the only other two like that (from the US) were Shawn Michaels and Kurt Angle. Eddie belongs in that class. Worked his ass off for so long, from teaming with Art Barr in Mexico, being Black Tiger II in NJPW, a little short stint in ECW, making an impact in WCW and finally going to WWE and winning the WWE Championship. Oozed charisma and could back it up in-ring whenever he needed to. You could see he was declining a little during his final year or two, but it didn't stop him from putting on classic matches that are still talked about. One of the greatest to ever do it, and truly paved a way for smaller guys in wrestling. Eddie Guerrero is and will forever be a legend in professional wrestling."
Rating: 10.0
Sentiment: 0.1205263157894737
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Nolan Greenwrote on 25.09.2024:[10.0] "The best member of The Radicalz. He was as good of a wrestler as Chris Benoit and Dean Malenko, but he could actually talk unlike all the other members. His matches with Rey Mysterio were great including their legendary Halloween Havoc 1997 match. In WWE, Eddie was probably the first of the group to get over because of his pairing with Chyna and run as European champion. He was a part of that four way match at No Way Out 2001 and best Test at WrestleMania X7, but that match was not great because Test got caught in the ropes and Eddie actually got kicked in the face. But then he had a run in with the law that forced him to go to the indies and almost ended his life. That's when he became the hero we know him as today as he worked his way back into WWE and won the intercontinental title from Rob Van Dam. This included that ladder match before he went to Smackdown with Benoit and was a part of the Smackdown 6 with nephew Chavo. He also became the first US champion when they revived it. After that he became #1 contender for the WWE champion, Brock Lesnar. The promo he gave about his redemption is his best promo and my eye still get watery every time I watch it. This led to him winning the title and completing his redemption arc. A true legend that made everything he was involved in great. Yes, including taking one of the sickest blade jobs every during his title reign and his feud with Rey in 2005 over Dominik before his death. Eddie could do no wrong."
Rating: 10.0
Sentiment: 0.3723684210526315
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: dangfoolianwrote on 21.09.2024:[10.0] "My all time favorite wrestler. From his classic bouts in ECW against Dean Malenko, being the gold standard of all the cruiserweights in WCW, and carrying that over in WWF, Eddie was almost always must see TV. A legend that we tragically lost too soon, and was, in my opinion, the last truly extraordinary professional wrestler."
Rating: 10.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: jsbortswrote on 08.09.2024:[10.0] "Eddie was good at every single aspect of wrestling and probably had more charisma than anyone in the business who never left for Hollywood. Eddies the reason a lot of people got interested in wrestling, myself included, and is truly one of the greatest to ever do it."
Rating: 10.0
Sentiment: 0.3964285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: CrayJeVwrote on 01.09.2024:"Eddie was a genius in the ring and wrestled with an intensity unlike many before and after him. His match with Brock Lesnar at Unforgiven will always be one of my favorites simply for the pop Eddie got for winning"
Rating: No rating found
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: SCMIV440wrote on 28.08.2024:"For me, Eddie is one of a few wrestlers that is able to evoke such a visceral reaction as not just a babyface but as a heel. While a lot of his career happened when I was quite young, he was very much one of my favorites growing up. Now, as an adult, it's super fun to go back and dissect what he does on the mic and in-ring. Speaking of on the mic, I firmly believe that his addiction promo in the lead up to No Way Out 2003 is the greatest promo of all time. While I do not expect every one to agree with that sentiment I just felt like it deserved a mention"
Rating: No rating found
Sentiment: 0.1993939393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Joe907wrote on 25.08.2024:[10.0] "One of the most talented wreatlers of all time. Great technical wrestler and high flyer. He's very charismatic. His matches with the Smackdown 6 were amazing. All time legend"
Rating: 10.0
Sentiment: 0.48714285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KayfabeZonewrote on 18.08.2024:[10.0] "Very unique talent. Eddie could easily make you cheer or boo him and his work in the ring speaks for itself. It's a shame he was taken from us way too soon. He was still so young and had much more to offer inside the ropes. A legend that should never be forgotten."
Rating: 10.0
Sentiment: 0.38020833333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ITGfromDiscwrote on 09.08.2024:[10.0] "you kidding me? this man is one of the most charismatic wrestlers in the ring, cutting a promo, and can work heel and face with the crowd. His talent is unapparelled, and while his career was cut short by his heart faliure, he is without a doubt a very influential wrestler for many current stars."
Rating: 10.0
Sentiment: 0.15714285714285717
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ceasara63wrote on 04.08.2024:[10.0] "Eddie Guerrero is, in my humble opinion, the perfect wrestler. He is one of the greatest of all time, and as an aspiring wrestler myself, one of my biggest inspirations. He can go toe-to-toe with any wrestler, any era, and hold his own, if not outshine them. He has an abundance of charisma, and a connection with the audience that very few wrestlers have. He can play both sides of the face-heel spectrum and be one of the best you've ever seen at both. In his prime, nobody could match up to him. Just a minute ago when I was ranking Edge, I questioned if there was anyone as well-rounded as he is, and the answer to that question is Eddie Guerrero. He had already built up a massive legacy for himself before his untimely passing in November 2005, and had that not happened, I can't even begin to imagine how much further he could've gone. He is an inspiration, he is a hero, he's one of my favorites of all time, viva la raza."
Rating: 10.0
Sentiment: 0.39249999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: jennegatronwrote on 04.08.2024:[10.0] "1997 Eddie Guerrero could be time traveled to any era of wrestling to this day and his game and his character would shine. How anyone can have that mullet and that facial hair and also be the hottest thing in the world is proof that Eddie radiates a level of charisma you can't teach. His moves are so truly timeless and also ahead of their time, it's an absolute joy to watch him wrestle. His feud with Rey Mysterio Jr & the commentary he did in the lead up to Starrcade vs Dean Malenko in wcw 1997 feel like must watch tv. When he's a coward or a cheater, it's so fun to boo him, and when he strings together an unbelievably beautiful string of moves, culminating in a frog splash it feels like perfection. Rest in peace Eddie"
Rating: 10.0
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KobashiChopMewrote on 03.08.2024:[10.0] "Its unfair how Eddie was taken from us so soon. He was one of the best to ever do it in the WWE, and I don't think you can find anyone that will differ."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BizarroMaskwrote on 02.08.2024:[10.0] "VIVA LA RAZA! One of the greatest of all time , very enjoyable heel , maybe the best character in wrestling world. We miss you Eddie."
Rating: 10.0
Sentiment: 0.8833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Zak22wrote on 19.07.2024:[9.0] "At his peak, Eddie was the best in the world, no question. But what was his peak? Some will say 2002-2005 in WWE but I'd say 1997-1998 in WCW, he was a show stealer, technical and athletic perfection. Look, Eddie was not perfect and some of his matches were mid but to do what he could do, you have to respect it."
Rating: 9.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Open The Vaultwrote on 15.07.2024:[10.0] "It is criminal to give someone like Eddie Guerrero below a 10. Another legendary wrestler who stamped their name into wrestling history books. He's worked CMLL, WCW/NWA, AWA, AAA, NJPW, ECW, WWA, ROH, IWA Mid-South, OVW, & WWA. He traveled the world and got into so many promotions it was no wonder he was so good. Great moveset, Amazing charisma and an ability to get to the hearts of fans if given the chance. His early years were pretty damn good and he seemed like a natural. He was really showcased with ECW and managed to become a rising star in the states. WCW had huge hopes for him, hell he was talked about for a World Title run around 1995 to 1996! They had a lot of trust in him but a lot of politics relegated him to the mid to lower mid card before leaving WCW with the Rascalz to join the WWF/E. There he would create a legacy. Becoming "Latino Heat" and doing the best work of his career! He sadly passed unexpectedly in 2005 which was absolutely tragic to the wrestling world."
Rating: 10.0
Sentiment: 0.26749999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: OldSchoolFan3098wrote on 14.06.2024:[10.0] "Eddie Guerrero, one of the most electrifying performers in the history of professional wrestling, was a true gem who captured the hearts of fans worldwide. What made Eddie special was his unparalleled versatility. He could play any role with such authenticity, whether as a lovable hero or a cunning villain. Eddie had the unique ability to make you laugh one moment and gasp in awe the next. His "Latino Heat" persona was iconic, and his catchphrase "I Lie, I Cheat, I Steal" became a beloved mantra, embodying his cheeky, rule-bending charisma. What really endeared Eddie to us fans was his incredible in-ring ability. Every match he was part of felt like a masterclass in wrestling. He delivered classics against legends like Rey Mysterio, Kurt Angle, and Brock Lesnar, showcasing his technical prowess, high-flying agility, and psychological acumen. His match against Brock Lesnar at No Way Out 2004, where he won the WWE Championship, is etched in the memories of wrestling fans like myself as a true underdog story. Eddie's matches were more than just physical contests; they were stories filled with emotion, drama, and spectacle. Beyond his wrestling skills, Eddie's personal story resonated deeply with fans. His battles with addiction and his journey to redemption were well-known, making his triumphs all the more poignant. Eddie was open about his struggles, which made his fans root for him even harder. We saw a man who fought his demons and emerged victorious, both inside and outside the ring. This vulnerability and honesty made him relatable and even more lovable. When Eddie would connect with the audience, you could feel the genuine bond he had with his fans. In the end, what made Eddie Guerrero truly special was his heart. He poured his soul into every performance, and you could see how much he loved wrestling and his fans. Eddie's infectious energy, his trademark grin, and his sheer passion for the business left a lasting impact on everyone who watched him. Even today, years after his untimely passing, Eddie's legacy lives on, reminding us of the joy he brought and the lasting impression he made on the world of professional wrestling. Eddie Guerrero wasn't just a wrestler; he was a hero, an entertainer, and a beloved figure whose spirit continues to inspire."
Rating: 10.0
Sentiment: 0.26895604395604394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: doobwrldwrote on 26.05.2024:[10.0] "It irritates my soul whenever I watch professional wrestling, and a commentator boldly and almost disrespectfully proclaims a wrestler as the next Eddie Guerrero. While I think for these wrestlers, it is top tier admiration and endearing, there simply put, will NEVER be another Eddie Guerrero. Once in a generation talent, truly one of a kind in every aspect in the ring. Need a good match with another star? Eddie. Need to elevate a new talent? Eddie. Want a great opener to set up for your event? Eddie. Need a good midcard match that doesnt dull out the crowd? Eddie. Need a blockbuster main-event that will be talked about after its all said and done? Eddie. Promo? Eddie. He could really do it all, and his impact not just on professional wrestling, but modern lucha libre will forever be talked about. Its all for good reason. Eddie was not just an amazing talent, but a pure soul who fought so valiantly and desperately to take back his life beyond wrestling. Ultimately, it was all for nothing, as it was way too tragically cut short. Eddie will always be a legend, and he is missed dearly every day by fans, wrestlers, and executives alike. Viva La Raza."
Rating: 10.0
Sentiment: 0.24965072805981903
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Tommysalami21wrote on 16.05.2024:[10.0] "Eddie Guerrero is one of if not the best in the ring. A man who could use any wrestling style whether its grappling or highflying. He is truly one of the goats.RIP"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: crs285wrote on 28.04.2024:[10.0] "Eddie Guerrero was amazing in the ring and was one of the most charismatic wrestlers of his generation. He managed to stand out everywhere he went due to his in ring excellence in every facet of wrestling and his mic skills being great. Lost his life too soon otherwise who knows what he could have accomplished."
Rating: 10.0
Sentiment: 0.4125000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Willie 19200wrote on 27.04.2024:[9.0] "Eddie Guerrero is overall one of the most charismatic and talented wrestlers in all of wrestling, from his many great matches with Chris Benoit, to his high flying classics with Rey Mysterio, to having technical classics with other legends like Kurt Angle. Guerrero is a man who can do it all; Entertainment, Techincal Wrestling, Lucha Libre, and even the look of a world champion. It's safe to say that Eddie Guerrero is one of the best and overall well liked wrestler in this industry."
Rating: 9.0
Sentiment: 0.39499999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ABQMIKEwrote on 25.04.2024:[10.0] "He was wrestling. He could do it all. He concentrated on every action and made everything count. His mannerisms in his heel work were top notch. I personally loved his heel work more than his face work although that was a lot of fun too. His knowing when to put the speed and impact before the point of attack was matched by only a few. He could draw you in just walking to the ring with his cocky, smug look knowing he was going to give you the show of your life no matter the opponent. It was almost a hate me now but once this match is done you'll love me. I adored his early work with Art Barr & as Black Tiger. I knew he sealed his ultimate status once he got into his groove in WCW. 10+"
Rating: 10.0
Sentiment: 0.10256410256410255
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ultravioletshiroiwrote on 13.04.2024:[10.0] "Eddie Guerrero had it all. He could work, he could act, he had charisma, he had the physique, and he could get over in any role creative assigns him. Although he couldn't do a chokeslam or a 450 splash, he obviously didn't need to. He still had a great moveset for a wrestler of his size. Eddie was a major draw on Smackdown and one of the first smaller wrestlers to main event and win the WWE title! Eddie Guerrero helped pave the way for other luchadores aspiring to be main event stars. Eddie was also a great in-ring storyteller and one of the few wrestlers who could get over while making cheating a big part of his gimmick as a babyface."
Rating: 10.0
Sentiment: 0.26314102564102565
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Dirty Diegowrote on 11.03.2024:[10.0] "One of my favourite wrestlers of all time had it all one of the greatest in ring technicians ever, and his charisma and character work was up their with the best the Latino heat gimmick, the lie cheat steal gimmick and his underdog gimmick that helped him win the big one still missed to this day"
Rating: 10.0
Sentiment: 0.44000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Svenlesswrote on 21.02.2024:[10.0] "Eddie hat mich zum Wrestling gebracht durch ihm hab ich das Sports Entertainment lieben gelernt .Es gab für mich kein besseren der sowohl als Heel und Face so großartig Performen konnte wie er. Für mich Persönlich ist Eddie Guerrero GOAT.. Mit ihm verbinde ich meine Wrestling Jugend viele tolle und auch traurige Momente. Viva La Raza Eddie Rest in Power Legenden sterben nie!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: easypacwrote on 17.02.2024:[10.0] "The most charismatic, charming and likable wrestler of all time in my opinion. Eddie had that It factor that just draws people in, rather he was a lovable and funny underdog baby face or a dramatic and paranoid heel. The best undersized wrestler of all time, managing to crack the main event scene in WWE and become the WWE champion at 5 foot 8, in a time where that was unheard of. He could wrestle any style against any opponent, rather it be strong style, lucha, technical or sports entertainment. He brought the best out in everyone and got a lot of peoples best matches during the Ruthless Aggression era, which is one of the best eras in wrestling history. Eddie wrestled in Japan, Mexico and America and mastered the different styles of all of them. He mastered the art of cheating in wrestling matches better than any wrestler ever has or ever will. He could cheat as a baby face and get the crowd to laugh and love him even more, which is a very hard thing to do. He had one of the best physiques of all time in a time where the physiques were insane in the WWE, Steroids definitely played a role but nonetheless there is no magic pill and you cant look like that without a large amount of hard work. Overall there is a reason why people still talk about him to this day and will talk about him for the rest of time, Latino Heat Forever."
Rating: 10.0
Sentiment: 0.25750425170068025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BruceMarcos524wrote on 23.01.2024:[10.0] "Viva La Raza! Eddie Guerrero is one of my favourite wrestlers when I was a kid. No doubt he is one of the all-time great performers in this sport. One of the smoothest wrestlers in the planet and every move he delivered is a thing of beauty. One of the guys who broke barriers on the WWE in terms of size. A much-accomplished star that even makes Shawn Michaels jealous. One of his best moments is when he defeats Brock Lesnar to win the WWE championship, a very emotional celebratory win for Eddie. No doubt his charm and charisma are truly unmatched, and no one can ever duplicate the personality of Eddie. His way of fooling the referees with a steel chair spot to disqualify his opponents is dope and funny to watch up to this day. Promo-wise, he is one of the most passionate talkers on the planet and I remember his promo with Brock Lesnar on how he dealt his demons and how he is addicted to it will always be one of the best promos in Eddie's career. His Three Amigos is well damn smooth, and his Frog Splash is one of the best picture-perfect moves in all of wrestling. Although Eddie is no longer with us, his legacy remains forever. I miss you Eddie every time I think about you!"
Rating: 10.0
Sentiment: 0.5083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TheVoiceOfReasonwrote on 12.12.2023:[10.0] "Special. If I could describe Eddie Guerrero in one word, it would be special. In ring, promos, you name it, he had it all. From teaming with "Love Machine" Art Barr in AAA, (another guy lost too soon) to his match with Chris Benoit in the 1994 J-Cup, Dean Malenko in ECW, or his 1997 Halloween Havoc match with Rey Mysterio. THAT match is a must-see match. Even his stuff in the WWF/E with the Radicalz, the Smackdown Six, his numerous championships. Eddie Guerrero will live on forever. A 10 does not do this man justice."
Rating: 10.0
Sentiment: 0.2701298701298701
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: JediSaiyanMaster1203wrote on 19.11.2023:[10.0] "Eddie Guerrero is one of the all time greatest wrestlers and one of my all time favorites, he truly was the complete package as a wrestler. Even before he developed his personality in WWE, he was a fun cruiserweight to watch in WCW feuding with Rey Mysterio and having one of the all time best matches under 15 minutes at Halloween Havoc 1997, and having great back and fourths with Dean Malenko in ECW, showcasing his in ring prowess, he's in a completely separate class of his own like most of the greats are. Even was one of the og ROH wrestlers when it first got started, even having matches with CM Punk before he came back to WWE. While he did have his first WWE run part of The Radicalz, his WWE run truly starts, in my mind, when he came back in 2002 when he took part in the legendary "SmackDown Six" Era, one of the all time best eras in professional wrestling ever, a truly iconic time period on SmackDown showcasing all 6 wrestlers talents, an impactful run despite only lasting about a year. Then Eddie Guerrero gains more and more steam in 2003, and eventually becomes WWE Champion in 2004 in one of the most iconic moments of all time, the build up being legendary with his iconic "No one is going to ever take away my Latino Heat again" promo (a promo so good, Brock Lesnar cried backstage over Eddie's story). Then 2005 hits, and he turns heel and has an incredible run as a bad guy, cutting amazing promos and having a rather interesting feud with Rey Mysterio. Sadly, this didn't last long since he passed away late that year due to heart failure, it's also unfortunate because there were plans of him winning the World Heavyweight Championship down the line and even having a dream match with Shawn Michaels at the next year's WrestleMania. Overall, Eddie Guerrero is in high reverence for a reason, he was a great wrestler that was highly admired by everyone for who he was as a wrestler and as a person, there's not a single day that passes by that I miss him. R.I.P. Eddie Guerrero"
Rating: 10.0
Sentiment: 0.2597551502870652
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Dntbamarkwrote on 02.11.2023:[9.0] "Eddie was one of the greats. At just 5-8, he was a small man in a big man's game and wasn't about to let that stop him from doing everything he could to reach the very top of the business. Eddie was a true ring general who displayed versatility and character as he could succeed as an underdog babyface or a vindictive and sadistic villian, he could also wrestle any style and use his natural charisma to keep the crowd engaged and invested in his programs. Eddie achieved everything there was to achieve in wrestling before his life was tragically cut short at 38 years old. For years, the business worked Eddie to the bone and Eddie pushed himself to carry the load at the expense of his body and mind. Often times, towards the end of his life, you'd hear stories of Eddie not being able to walk or hunched over from exhaustion. To combat that, Eddie turned to steroids and blew himself up to the point to where his body looked almost too big for his sub-6 foot frame to handle. Eventually all the steroids and exhaustion caused his heart to give out and he became yet another victim of this fucked up carny business that chews performers up and spits them out. At 38 years old, he had his entire life ahead of him and I remember exactly where I was when I found out that he had passed away. As a fan, it was heartbreaking, I miss Eddie to this day and he's one of the one's that I wish would have just quit the business and saved his life, rather than continuing to work himself to death because he felt he had to."
Rating: 9.0
Sentiment: 0.04843750000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DangoDaisukiwrote on 24.10.2023:[7.0] "Ich habe manchmal das Gefühl das der sehr große Hype um Eddie Guerrero erst nach dem viel zu frühen Tod kam. Natürlich ist Eddie ein guter Wrestler mit Charisma, jedoch war er für mich nie einer der ganz großen. Erst recht nicht als er bei WWE angefangen hatte, fand ich ihn sogar des öfteren eher langweilig. Trotzdem viel Respekt für seine Karriere und besonders früher galt er als eines der großen Talente."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: SavageTygerwrote on 04.10.2023:[10.0] "Eddie Guerrero was the total package. He had every tool a professional wrestler could have: charisma, look, promo ability, could play both hero and villain roles, and be exceptional at both. His list of great matches is seemingly endless and spans every promotion from Triple-A, to ECW, WCW, and of course WWF/E. Eddie is one of those guys I know was amazing but every time I watch his matches I am still amazed at how effortless he made everything look."
Rating: 10.0
Sentiment: 0.34027777777777785
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Okaro143wrote on 24.09.2023:[10.0] "The wrestling world lost him too soon. He was insanely charismatic, incredibly gifted in the ring, had one of the best gimmicks in the business and was insanely over with the crowd. There has been a lot of great workers in WWE that have come after Eddie but there has never been another Eddie like figure yet. One of the most beloved Wrestlers in WWE history."
Rating: 10.0
Sentiment: 0.42857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KingLeonardwrote on 02.09.2023:[10.0] "I started watching wrestling in 2007 when I was 6, but I went back and watched a lot of Eddie's matches. I often think about how great it would've been if I had grown up watching Eddie Guerrero. One of the best wrestlers ever both on the mic and in the ring, Rest in Peace Latino Heat."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: JaseonSkahmanwrote on 27.07.2023:[10.0] "Eddie Guerrero was an incredible wrestler who left an indelible mark on the world of professional wrestling. His charisma, skill, and passion made him a fan favourite and a true legend in the ring. When Eddie stepped into the squared circle, you couldn't help but be captivated by his presence. He had a natural charm that drew you in, and once the match started, he would take you on a rollercoaster ride of emotions. Whether he was playing the heel or the beloved face, Eddie always knew how to connect with the audience. In terms of in-ring ability, Eddie was simply phenomenal. He possessed a rare combination of agility, strength, and technical prowess. His high-flying manoeuvres and lightning-fast speed showcased his athleticism, while his powerful moves demonstrated his raw strength. Every match he had was a masterclass in storytelling, with Eddie effortlessly adapting to his opponents and creating memorable moments. But what truly set Eddie apart was his ability to evoke genuine emotions. Whether he was playing the hero fighting against all odds or the cunning villain looking to cheat his way to victory, he had a way of making you feel invested in the outcome. His feuds were intense, and you couldn't help but be emotionally invested in his battles. Sadly, Eddie's life was cut short far too soon, but his legacy lives on. His impact on the wrestling industry cannot be overstated. Eddie Guerrero will forever be remembered as one of the greatest performers to step foot in the ring, a true inspiration to aspiring wrestlers and a beloved figure in the hearts of fans worldwide. 10/10"
Rating: 10.0
Sentiment: 0.26223776223776224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KroKrowrote on 16.07.2023:[10.0] "By far one of greatest pro wrestlers in the history of pro wrestling as either a heel or a face. His time in ECW, WCW, and WWE/F are all legendry, sadly His life and career had seen some dark moments on His 38 years on earth, RIP. 10/10"
Rating: 10.0
Sentiment: 0.11250000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "Eddie was very good in WCW, then after some rehab time, became very great in the WWF but unfortunately, his body gave out in 2005 and just when he was hitting his absolute peak best."
Rating: 8.0
Sentiment: 0.522
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ReedPryorNYwrote on 31.05.2023:[10.0] "Eddies humility in the face of greatness makes him one of the best to ever compete in a wrestling ring. An embarrassed bully against Rey Mysterio, a career rival against Malenko, a mentor to CM Punk, a trailblazer as Latino Heat, the premiere influence to Mercedes Moné, David to Brock Lesnars Goliath, a friend to Jericho, and the man who went toe to toe with Kurt Angle. Guerrero said of one of his peers he worked for the match, not for himself. No one did so better than Eddie; God still watches over him and always will. He lives on in Rey, Dominik, Punk, Angle, Bradshaw, Chavo, and all those who knew and respected him. An embodiment of what it means to grow up in front of everyone, Eddie Guerrero did so with grace and unmatched precision. Never forgotten Viva La Raza."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: cobrenzoswrote on 01.03.2023:[10.0] "He was literally perfect at everything, one of the greatests out there ever, his charisma his ring skill, his mic skill, all were awesome one of the most talented wrestlers ever for sure."
Rating: 10.0
Sentiment: 0.74
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KKeanelwrote on 26.02.2023:[10.0] "How would I define Eddie's whole career with two words? Complete wrestler. He achieved every attribute which helped him to become one of the greatest who ever entered wrestling industry. Definitely gone too soon, but he had enough time to show us his talent."
Rating: 10.0
Sentiment: 0.26
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: kewf1988wrote on 26.02.2023:[10.0] "Eddie was a complete package in that he had amazing in-ring ability, was extremely charismatic, was great on the mic, and had a great look."
Rating: 10.0
Sentiment: 0.5599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: benh2wrote on 12.01.2023:[9.0] "Eddie was a magician in the ring. So unbelievably smooth that he could carry anyone to a watchable match. Was often the recipient of some crazy spots because he could position and feed himself like few others. By the latter stages of his career he also started to show off his charisma with some tremendous promo and character work."
Rating: 9.0
Sentiment: -0.01333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TooDarkMarkwrote on 22.12.2022:[10.0] "My favorite match of all time is a Terry Funk versus Eddie Guerrero match from WCW Saturday Night in 1989. Eddie was a jobber, was advised by his family to not do the match, but Funk gave him a lot of offense, and I became a fan overnight. I didnt even SEE him wrestle again until the 1994 PPV match when he teamed with Art Barr against Octagon and El Hijo Del Santo. Another AMAZING match. Then I watched him in ECW and WCW become a beloved world wide star, and cried the night he died in 2004. He always combined his amazing ability to move with his unmatched charisma in the ring. A true legend of this sport."
Rating: 10.0
Sentiment: 0.44166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "I miss him, he was so good. His wrestling ability was fantastic, and his promo work was generational."
Rating: 9.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: jonsnoewrote on 14.11.2022:[10.0] "LATINO HEAT, LIE CHEAT STEAL. A very entertaining wrestler, with amazing charisma, mic, and move-set. I smile and laugh whenever I watched his creative cheat tactic."
Rating: 10.0
Sentiment: 0.47000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: xnviuswrote on 16.10.2022:[10.0] "lie, cheat & steal. one of the greatest of all time. sadly taken too soon. his legacy has lived on til this day. charismatic, entertaining, and of course, an AMAZING seller. one of a kind."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: RavenCrow75wrote on 06.10.2022:[7.0] "For the most part I will be basing my Wrestler ratings on five criteria four of which are based on in-ring ability and the last on charisma. I believe these five criteria are pro wrestling's version of Tommy Lasorda's criteria of "five points" in baseball. For pro wrestling those five criteria are power, speed, technical ability, hardcore & charisma. Eddie's scores: Power: 6 Speed: 8 Technical: 8 Hardcore: 6 Charisma: 8 for a total of 36 and an average of 7.2 rounded down to 7."
Rating: 7.0
Sentiment: 0.027777777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: nothingleftinsidewrote on 17.09.2022:[10.0] "It's really hard for me to choose between 9 and 10 here. For me, a 10 has to be not only an all time great, but also someone who is historically significant or otherwise had a large impact on the business. Eddie has two things working against him here- he was inconsistent and his career wasn't very long. However, he's had longevity despite being dead. He is often mentioned on wrestling broadcasts to this day and his influence can be felt in contemporary wrestling over 15 years later. Longevity and relevance is what I'm judging here so I think he passes that, and if a 20 year career is good enough for Bret Hart, who I consider a 10, it's good enough or Eddie. This brings us to his other fault- inconsistency. This definitely is hard to measure. It's hard for me to remember the bad matches he was in, bad promos, angles, and how much time off due to substance abuse problems. You always remember the good rather than the bad, and Eddie managed to be notable in every run he had, including CMLL, AAA, New Japan, and ECW. There isn't much that was *memorably* bad, and there are a lot of truly bad workers (like Chyna) Eddie made look great, so I think he passes that test too. If you're reading this, you already know how good the guy was. Although he had a few main-event runs, he was never "main event material" for the time period and he knew it. These days he would have held the wwe universal championship for a year+. His look eventually became his undoing as he bulked up to try and seem like a contender. I hope everyone's glad those days are over, because it cost us a guy like this and countless others. Great promo, in any situation. Off the cuff, in an interview, on the mic in the ring, scripted, unscripted, it didn't matter. Again, he made other people look better just by being involved in a segment with them. His most admirable talent was his body language, pantomime, whatever you want to call it. A lost art that is also hard to teach. Probably the best "in between the moves" guy of his era. A+ promo, A worker, A- look. We lost him right before he would have given us his best work."
Rating: 10.0
Sentiment: 0.12352453102453104
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rahul77wrote on 21.05.2022:[10.0] "One of the best wrestler of all time and one the wrestler among my mount Rushmore with Kurt Angle, AJ Styles and Shingo Takagi. Best overall performer of all time give him mic he will make it gold as he always have made his matches gold. his facial expressions are priceless he have always proved his doubters wrong from Mexico Japan to USA. Latino heat have stolen everyone's heart and is living among us forever."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Thanliswrote on 29.04.2022:[10.0] "Great talker, truly great wrestler who had both technical ability in multiple styles and brilliant storytelling. One of the best to ever do it."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rvlandingwrote on 26.04.2022:[10.0] "Infectious energy on the microphone, and good at adapting to any style in the ring depending on who he was working with. Truly someone who was capable of anything."
Rating: 10.0
Sentiment: 0.44999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BAILE3wrote on 06.04.2022:[10.0] "What is there not to love about Eddie Guerrero? A top 5 in ring performer of all time, incredibly charismatic and an amazing character. Truly gone to soon."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: eltetechoriwrote on 06.04.2022:[10.0] "Eddie is a great man, a great person that I wish he had not left here, he is a fighter that even today is still missed, at least we can remember all his achievements."
Rating: 10.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Conquistador37wrote on 16.02.2022:[10.0] "One of the easiest watches ever, from the humble beginnings to the ECW mat classics to his untimely demise. All things Eddie Guerrero is strongly recommended. One of professional wrestling's true greats."
Rating: 10.0
Sentiment: 0.17083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: SquilliamFancysonwrote on 11.02.2022:[9.0] "Gone far too soon, Eddie was a talent matched by few. His infectious swagger and ability to structure a match made him top tier during his career."
Rating: 9.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: GriffinXwrote on 06.02.2022:[10.0] "One of the very best to ever do it. And the rare type that was a big name in Mexicio, Japan and the USA. So many talents try to do what Eddie do so easily."
Rating: 10.0
Sentiment: 0.44666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: SL 02 15 02wrote on 05.11.2021:[10.0] "One of the best in ring competitors ever. Rest in Peace "Latino Heat" Eddie Guerrero. Eddie vs Kurt at WM in 2004 is an all-time classic."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: FACEElmo295wrote on 31.10.2021:[9.0] "Incredibly entertaining inside and outside of the ring. His match with Rey at Halloween Havoc 97 is the stuff of legend. Once he got to WWE he slowly made the rise to the top. Early Eddie in the WWF was really fun with his Mamacita storyline with Chyna which remains one of the best things ever in WWE. The dude was incredibly good in the ring, and knew what to do in order to make the crowd care. He did lose a step or two in the ring after his car accident, but he still kept going. When Eddie finally won the title it became one of the best feel good moments in WWE. Sadly Eddie passed way before his time, what can I say he lied, he cheated, he stole our hearts. Forever in my heart, R.I.P. Latino Heat."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BrayanLaPrewrote on 09.07.2021:[10.0] "I don't think there has ever been a wrestler who could make you laugh, make you genuinely despise them, and make you unapologetically love them as easily as Eddie Guerrero. For as technically proficient and sublimely athletic as he was, Guerrero's legacy is that he connected with the crowd. He could turn even the most basic of matches into something you'd be talking about for the next 24+ hours. His crab walks to the corner to hug Chyna, his iconic chair tactics, his low rider... The list of unique character traits is endless. The absolute complete package and one of the true GOAT contenders for American wrestling."
Rating: 10.0
Sentiment: 0.22083333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: juiceisloosewrote on 04.07.2021:[10.0] "He was the total package: could work, could talk, had tons of charisma and confidence, was entertaining, had a good attitude from what i've heard. He was very diverse, he could be involved in both comedic angles and also be very intense and serious. It's just sad that he abused his body for so long, didn't take a break from the incredibly unhealthy working conditions and eventually paid the ultimate price."
Rating: 10.0
Sentiment: 0.03766666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: thebigmilkmanwrote on 22.06.2021:[6.0] "This may be one that I'll have to rewrite when I get more familiar with his work but with what I've seen between 1998-2002 he's a solid 6 in my eyes. Which I'd consider 6 to be pretty good"
Rating: 6.0
Sentiment: 0.365
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Eddie truly was a legendary worker. He consistently pulled great matches off and really forced the powers that be to push him up the card. And once there, he became one of the very great characters in the history of the business. An icon in every sense of hte word."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: mjs2212wrote on 22.05.2021:[10.0] "Eddie Guerrero is easily one of the greatest wrestlers to ever lace up a pear of boots. Whether he was a face or a heel, he was able to get the crowd's attention and he always put on great matches with the likes of Rey, Chavo, Benoit, Malenko, etc. Always stood out no matter what angle or gimmick he was working with and he is responsible for some of the best (and funniest) moments in wrestling. I highly recommend any newcomer to wrestling go out of their way to watch any match, segment, or anything involving Latino Heat."
Rating: 10.0
Sentiment: 0.5847619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Ma Stump Pullerwrote on 12.05.2021:[10.0] "Eddie was one of my favourite guys growing up, and it ain't hard to see why. In WCW dude was probably one of the best in ring performers there, smooth highflyer with a mix of great technical work, and then you had his later Fed stuff where he was able to sort out his charisma issues and became one of the BEST performers and wrestlers around, able to wrestle to a elite level while also masterfully grasping how to work as a face or as a heel seamlessly, to the point that he could do heel acts (like winning matches by DQ or cheating) as a face and still get momentous cheers. Solid promo, electrifying in how he could work a crowd with the simplest of things but could also turn the gas on when it mattered. Sadly the latter part of his career is a steep decline as Eddie's issues with the damage he'd done with years of addiction and the effects of being on the road catch up with him hard, and he doesn't have that same spark that he had in previous years. Regardless, Eddie is for me one of the best ever, a perfect combination of charisma, selling, performance, and workrate all thrown together in a combination that few can match, let alone surpass."
Rating: 10.0
Sentiment: 0.3023809523809523
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: AnBwrote on 16.04.2021:[10.0] "I don't know if there's anything to say about Eddie that hasn't already been said a thousand times. Brilliant performer and entertainer. RIP"
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Uweuwesenwrote on 16.02.2021:[10.0] "Eddie wusste zu überzeugen: als cruiserweight, als heavyweight, also Heel, als Face, als Singles und als Tag Team Worker. Sowohl im Ring als auch am Mic über lange Zeit Top Notch! Ein kompletter Wrestler!"
Rating: 10.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Old ride long linewrote on 22.12.2020:[9.0] "Rest In Peace Eddie. I think people like to think of his title run as a token run but I honestly believe he would have more runs with the title if it wasn? t for his untimely death. He could go in the ring and was one of the best ever on the mic he just got cut off before he could get to that all time great status."
Rating: 9.0
Sentiment: 0.4916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Hawksrule996wrote on 03.11.2020:[10.0] "He just had it all great wrestler in the ring with all kinds of different match and just so much personality And charisma in and out of the ring definitely one of the greatest of all time"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: RandySavagePowerwrote on 30.09.2020:[10.0] "Eddie Guerrero ist einer der beispiele neben Leiten wie Daniel Bryan das man auch unter 1, 80 ein Erfolgreicher Wrestler werden kann. Am Mic sehr gut gewesen und im Ring eine Legende. Leider einer von vielen Wrestlern die zu früh starben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Donniewrote on 12.08.2020:[10.0] "Maybe the GOAT when all is said and done. In ring, he was unmatched. On the mic, he was unmatched. He had it all, and very few could even dream of touching him, let alone actually doing it."
Rating: 10.0
Sentiment: 0.08
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: martizzletaewrote on 23.07.2020:[10.0] "The man was amazing! He could make you laugh, cheer him, hate him, and feel for him, whatever Eddie wanted to get out of the crowd, he got it. I miss him"
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Khalid Acewrote on 19.06.2020:[6.0] "I think Eddie was good & he entertained all of us but I never thought he was at the top list of the greatest ever like alot of people claim that he is. I thought he was better in the ring in his time pre WWE but he grew up to be better on the mic in WWE."
Rating: 6.0
Sentiment: 0.64
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Residentwrote on 07.05.2020:[10.0] "One of the best ever. He had amazing charisma and a great personality. Awesome on the mic and also awesome in the ring. On the short list of one of the best ever on the mic as well as one of the best ever in-ring as well. From Mexico to ECW to WCW to WWE he excelled everywhere he went, despite his smaller size and is remembered fondly by everyone."
Rating: 10.0
Sentiment: 0.7111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TNBG2381wrote on 05.04.2020:[10.0] "Eddie Guerrero is the definition of being way ahead of his time! Eddie was excellent in every facet of the wrestling business and his body of work proves just that. He had wonderful charisma and everyone just loved him. His personality was infectious and his death was one of the saddest days in the history of wrestling. Every time I think of Eddie I think of his classic matches with the likes of Kurt Angle, Brock Lesnar, and Rey Mysterio. I think the downfall of Chris Benoit after Guerrero? s death proves how great of a person Eddie was! RIP Eddie Guerrero."
Rating: 10.0
Sentiment: 0.6380952380952382
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Conorwrote on 23.03.2020:[10.0] "In a way it? s a shame that Eddie didn? t get a main event push til a couple years before he died, but in another way, it was the perfect end to an amazing career. I think if he hadn? t passed away, he? d have had at least one or maybe two more World Title runs. To me, Eddie was one of the best of all time. It was a pleasure watching his work rate and storytelling in the ring. And it was his character and mic work that made him one of my favorites. There will never be another Eddie Guerrero."
Rating: 10.0
Sentiment: 0.49444444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: AAA3000wrote on 07.03.2020:[6.0] "Es ist vielleicht nicht fair. Aber ich bewerte Eddie nach meinem subjektiven Empfinden. Alles andere spielt da für mich keine Rolle. Er war ein guter, aber oft einfach nur Midcard. Dean Malenko fand ich technisch wesentlich stärker."
Rating: 6.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: OrangeCrush00wrote on 03.02.2020:[10.0] "Eddie Guerrero was an extremely talented pro wrestler. Eddie was far from overrated, his matches are still among the best in the business to this day. Eddie had great mic skills and also could work face and heel perfect. Another reason why Eddie is so great it the fact of how small he was, but he would work as if he was a big man. He never let his size define him in the ring which is a hard task since he had to wrestle so many giants like Brock Lesnar. Eddie was an inspiration to many wrestlers today which is not a surprise since he was so great. Unfortunately in the end Eddies demons caught up with him but latino heat burns forever. RIP"
Rating: 10.0
Sentiment: 0.3967948717948717
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: AstanaNorwrote on 17.11.2019:[10.0] "Einer, wenn nicht sogar, der Beste/n Wrestler der letzten Jahrzehnte! Die Matches die er abgeliefert hat waren der Hammer. z. B. die Story und die anschließende Fehde mit Rey Mysterio war so gut umgesetzt. Eddie war, ist und wird auch immer eine Legende bleiben! Sein Latino Heat Gimmick und sein 'I lie, I cheat, I steal' wird immer legendär bleben. Und auch deswegen, wegen seiner Leistung im Ring und auch am Mic, seinen Storylines und seinem Gimmick, bekommt er 10 verdiente Punkte! R. I. P. Eddie"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[7.0] "I think his untimely death leads people to look back on him with rosier glasses that what is deserved. I like him & think he was good, but I always found him a far cry from one of the best ever. He always felt like a good midcarder & next to Benoit, he always felt like a step down."
Rating: 7.0
Sentiment: 0.33492063492063495
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: mdkarlwrote on 17.06.2019:[10.0] "eddi probably battled drug demons a lot of his career... and im sure it held him back from some pushes to the top of the card that he deserved when on... he was an amazing performer combinding an intense fire with a great set of high flying spectacular moves and a real ring psychology id put him in the top 20 all time performers ive seen... its just too bad that the drug situation effected him too much and took him too soon"
Rating: 10.0
Sentiment: 0.29666666666666675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: zephyrwrote on 19.03.2019:[9.0] "Innovative and massively talented in the ring; excellent character work, great charisma, big influence on an entire generation of wrestlers."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: LandonRyanWyattwrote on 31.01.2019:[10.0] "One of the greatest wrestlers of his generation, and too many, of all time. Latino Heat could deliver in a lot of ways other guys couldn't, but unfortunately he wrestled more of his own demons than his in ring opponents. But still, nonetheless, was crisp and charismatic every single time he stepped through the ropes."
Rating: 10.0
Sentiment: 0.29484126984126985
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Steamboat2511wrote on 05.12.2018:[9.0] "Latino Heat ist eine einzigartige Mischung, die sowohl mit Personality, als auch Matchqualität überzeugen konnte. Im Ring gehörte er auf jeden Fall zu den großen Könnern, sowohl in Sachen Technik, als auch in Sachen Storytelling. Als Extrazugabe oft mit "Lie, Cheat, Steal" Finish. Durchaus sind dabei einige Klassiker (gegen Kurt Angle u. a. ) entstanden. Leider war er nur kurz Maineventer und ist viel zu früh von uns gegangen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: JEK 1991wrote on 02.11.2018:[10.0] "Loved this guy. He was excellent because of his size and statue he overcame many challenges in the wrestling world. He was a gifted individual from a wrestling family. He is a pioneer of high flying. Guerrero could sellouts main events. He got bigger in muscles as his career went on. Its unfortunate that he died so young. it was a shock. RIP Eddie!"
Rating: 10.0
Sentiment: 0.26516666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: RatingsMachinewrote on 11.10.2018:[9.0] "Eddy Guerrero was a tremendous worker, who never got the push in WCW that his talent deserved, and who only managed to 'get' the performance side of wrestling when his body was starting to break down. Eddy was a proven draw in Mexico and he proved himself to be a major ratings draw in the US during his admittedly soap operish feud with Rey Mysterio."
Rating: 9.0
Sentiment: 0.04805555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Oliver95xwrote on 27.09.2018:[10.0] "Eddie war sehr gut im Ring und hatte Charisma wie kein anderer. Ein perfekter vorzeige Wrestler. Sein Gimmick war einfach nur genial."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: pappahousewrote on 06.09.2018:[9.0] "I lie, I cheat, I steal. Der komplette Entertainer, der komplette Wrestler. Einfach ein Meister seines Fachs. Leider haben der Alkohol und die Steroide sein Herz porös werden lassen, so dass er so jung diese Welt verlassen musste."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DaWizWithADwrote on 07.07.2018:[10.0] "He pretty much has everything you could want from a wrestler. He could work, talk, had a great physique, and by all accounts had a good attitude."
Rating: 10.0
Sentiment: 0.4875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: InactiveGuruwrote on 22.04.2018:[10.0] "Now this a performer, heaps of charisma, confident in the ring and could deliver a great promo. One of the best technical wrestlers while also being one of funniest characters in the WWE during his Mamacita run in WWE. Great all rounder, not many will dispute this 10."
Rating: 10.0
Sentiment: 0.4749999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Viper99wrote on 11.02.2018:[10.0] "Durch seine Körperliche Größe hätte er es eigentlich, in der damaligen Zeit, nie in der WWE zum World Champion bringen können, aber Eddie Guerrero war so ein fantastischer Wrestler und und eine ganz große Persönlichkeit welche so beliebt wie kaum ein anderer , bei den Fans, war und deshalb sich den großen Erfolg hat sichern können. Einer der besten Techniker aller Zeiten, einer der lustigsten Performer aller Zeiten, super Charismatisch, tolle Ausstrahlung und einfach eine super Sympatische Person. R. I. P Eddie."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: CHN325wrote on 01.02.2018:[9.0] "One of the best pure workers in the business, who died way too young. He left a legacy that will never be forgotten as a charismatic cruiserweight that did not look out of place against the big boys, always finding creative ways to get the win."
Rating: 9.0
Sentiment: 0.38928571428571423
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MoongooseMoxwrote on 10.01.2018:[10.0] "You could probably count on one hand the number of wrestlers in the business that are better than Eddie Guerrero. There have been better wrestlers than him as well as better talkers but he is one of the few men in history to have all those qualities and execute them consistently throughout his entire career. Not much i can really say that hasn't already been covered in the comments below. My personal favourite wrestler of all time taken from us far too soon but his legacy remains as an inspiration to present and future generations of performers."
Rating: 10.0
Sentiment: 0.14583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: LatinoHeat93wrote on 04.01.2018:[10.0] "Mein Lieblingswrestler Latino Heat! Durch ihn bin ich Wrestlingfan geworden am Mic einer der besten! Technisch stark Super High Flyer(siehe AAA, WCW) Er war zwar nicht. der Technisch beste Wrstler aber für mich ganz klar einer der Beste Entertainer den die Wrestling Welt je hatte! Leider viel zu früh verstorben  R. I. P Eddie Legenden sterben nie! VIVA LA RAZA"
Rating: 10.0
Sentiment: 0.12777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ianlapierrewrote on 04.11.2017:[7.0] "Eddie Guerrero should have had another 5 to 10 years left in the tank when he died. He was one of my all time favourites in WCW. He had so many fantastic matches and later in his career became entertaining outside the ring."
Rating: 7.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: taabr2wrote on 10.09.2017:[10.0] "Eddie Guerrero is the first wrestler that I called my favorite when I was still a mark. The guy's charisma is ridiculous and I could never help but root for him no matter what nefarious things he did. One of the few wrestlers who was able to keep a consistence level to his in-ring work. No matter what his role he could always play a great character. One of the best."
Rating: 10.0
Sentiment: 0.3595238095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: flashbackwrote on 06.06.2017:[10.0] "Incredible worker with an endearing smile and a huge heart (I mean that sincerely) - you could not NOT like the guy. His smile could win you over instantly, and his work was undeniable. While I appreciate WWE for giving Vicki a job, the way they integrated Eddie into storylines after his death was just a travesty, shameful. Do not believe for a second that it was what "Eddie would have wanted" - the only person that gets to say that is his wife, and unless all those angles were her idea, the WWE NEVER should have dared to go there. One of the more shameful things they have ever done for a guy they claimed to love so much. That company is exactly like Vince - devoid of class and absolutely clueless."
Rating: 10.0
Sentiment: 0.2904411764705883
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Blood Pumpwrote on 30.03.2017:[9.0] "A wrestlers death has ever brought me to tears once. Back in 2005 I was still a big WWE mark despite growing more into the actual wrestling aspect of things, and Eddie was my then favorite behind Kurt Angle. I was seventeen when he passed and it hit me hard. How could a guy who wrestled so well and was only in his late 30s die the way he did? Well, kids, the past has a way of catching up sadly. Anyways with time (and in part due to all the eddiexploitation) Ive cooled on Eddie. He was a fantastic athlete in his time but not really ever the best of his time or company (except maybe ECW, but that was more of a pit stop to WCW then anything (Actually thinking about it he might've been the best in WCW, not that the higher ups like Bischoff would've given you a chance to know)). That being said he was very close to the top."
Rating: 9.0
Sentiment: 0.15833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: One Winged Angelwrote on 10.02.2017:[10.0] "My favorite wrestler of all time, his ability to entertain whether it be in the ring or in the mic in hand is second to none. Fantastic in the ring, amazing on the mic and charisma for days, IMO the perfect wrestler. There will never be another Eddie Guerrero. GOAT."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Real Raterwrote on 21.01.2017:[8.0] "Ring: Im Ring nicht so gut wie er gemacht wird, aber trotzdem ein guter. 8/10 (50%)  Promos/Schauspieltalent:Auch seine Promos waren immer sehr gut. 8/10 (25%)  Charisma/Statur/Gimmick:Fand ihn immer sehr Charismatisch, als Latino Heat. 9/10 (25%)  Sind dann insgesamt 8, 25 für Eddie, finde er wird hier etwas besser gemacht, als er ist, aus verständlichen Gründen, aber das soll nicht der Sinn einer Bewertung sein, aber natürlich auch von mir RIP.  = 8 Punkte"
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MarkyMark0wrote on 16.01.2017:[9.0] "I have very fond memories of Eddie Guerrero as he was one of my favorites when I was younger. Eddie could captivate an audience with his in ring skills and charisma like no other. Many people like to say he wasn't over but I think his run in the early to mid-2000's prove otherwise when he started to do his Lie, Cheat, Steal gimmick. The gimmick was great and it really helped to boost his career to new height. Guerrero had many classics wherever he went from ECW to WCW to the WWE. I recall so many great matches he was in like his last ECW match that he had with Malenko and his great match at Halloween Havoc 97 with Rey Mysterio which really got me into the cruiserweights and of course his match with Brock Lesnar. I know the match itself wasn't the greatest but Eddie played the perfect underdog to Brock's beast and him defeating Brock for the Undisputed Championship was such a feel good moment. I still remember the day that Eddie died as it was a sad day for me as well as many wrestling fans. Eddie was a great man as well as wrestler and will always be remembered as an all time great."
Rating: 9.0
Sentiment: 0.4135847107438017
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: rjsbx11wrote on 07.01.2017:[10.0] "Eddie was one of those guys who was really good at everything. He was a great wrestler. A charismatic promo and personality. He could play a great heel. He could play a great babyface. He did creative things few others would think to do. And people loved him. He was unique. He definitely deserved his run with the WWE title. Even if he wasn't "THE" guy, he was always going to be one of those guys who people would remember fondly for years afterwards. It's hard to compare him to anyone. He was the total package, he could make laugh, cry and most of all, invested in anything he was, including a ladder match for the custody of human child. Dying in your career saints a man, but Eddie Guerrero is deserving of the GOAT labels people shed upon him."
Rating: 10.0
Sentiment: 0.38020833333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Puro Spiritwrote on 11.12.2016:[10.0] "Eddie was such a great performer , the guy had all the qualities to be a huge draw in the business and about to reach his prime before sadly dying from a heart attack from years of drug problems and steroid use , Eddie had it all , a wonderful in ring worker , charisma , charm and most important of all a connection with the fans ..... unforgettable."
Rating: 10.0
Sentiment: 0.42500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Jobbswrote on 07.12.2016:[10.0] "Easily my favorite North American wrestler as the guy had it all. Tremendous in ring psychology and just nailed it down to perfection especially as a heel. Could work either Face or Heel role extremely well and did tremendous limb work when needed and his way of getting the crowd in a match was awesome as well. Viva La Raza! Latino Heat 4Ever!"
Rating: 10.0
Sentiment: 0.23576388888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Mouthwrote on 26.10.2016:[10.0] "Ach Eddie. Hier wurde schon alles über Dich gesagt. Du bist einer der besten ever. Bin immer noch sehr traurig, dass Du nicht mehr unter uns weilst."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "Der erste Wrestler mit dem ich mich jemals identifizieren konnte/wollte. Sein Tod hat mich dazu gebracht, aufzuhören, Wrestling zu schauen. Es war für mich einfach nicht mehr das selbe ohne Eddie. Kaum zu glauben, dass er schon seit fast 11 Jahren tot ist. Seine Comedy-Promos/Segmente waren einfach jedes Mal unterhaltsam. Seine Fehden mit Rey, Angle, Chavo, JBL waren wahnsinnig unterhaltsam. Sein EG-Armband liegt auf meinem Schreibtisch, das "IŽm you Papi"-Shirt trage ich heute noch und Eddie wird ewig in meinen Gedanken sein, wenns ums Wrestling geht.   Viva La Raza!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: NHJ2190wrote on 22.06.2016:[10.0] "Selten einen charismatischeren Wrestler erlebt als Eddie Guerrero. Dazu noch überragende Ringfähigkeiten, ein Typ der ein Gimmick von Vorne bis Hinten komplett ausgefüllt hat. Mochte ihn als Face deutlich lieber als zu seinem Ende als Heel. Die prägenden Erinnerungen bleiben vor allem sein Titelgewinn gegen Brock Lesnar sowie sein Cheat Win mit dem Schuh gegen Kurt Angle bei der Mania XX. In diesem Sinne "Im your Papi" 10 Punkte"
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Sick Lebowskiwrote on 13.06.2016:[10.0] "Einer meiner absoluten Lieblingswrestler. Als Face kann man ihn nur lieben, als Heel nur hassen und in Comedy-Segmenten nur über ihn lachen. Im Ring dazu ebenfalls sehr gut. Einer der größten Verluste der Wrestlingwelt."
Rating: 10.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Luv all wrestlingwrote on 05.06.2016:[9.0] "Latino heat Eddie Guerreo would be a perfect 10, but he came up with the custody of dominik ladder match story citing wrestling should be like a soap opera"
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DB992wrote on 12.05.2016:[10.0] "The best ever hands down. Could cut any kind of promo, could perform well against basically anyone in the ring. Died way too soon and gained way too less as far as championships are concerd, but his will still go down as one of the truly remarkable legacies in the business. VIVA LA RAZA!"
Rating: 10.0
Sentiment: 0.30853174603174605
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: JordanACEwrote on 23.04.2016:[10.0] "Lie, Cheat and Steal. Eddie Guerrero is a true legend. His matches were great, the gimmick was great, and over-all, Eddie is one of my all time favorites. He was just flawless. VIVA LA RAZA!"
Rating: 10.0
Sentiment: 0.7375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Jrod3160wrote on 17.04.2016:[10.0] "This guy was flawless throughout his entire career his character was fantastic charisma off the charts mic skills were good and wrestling was perfect nothing better than eddie RIP VIVA LA RAZA"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: NastyYaffawrote on 15.04.2016:[10.0] "When I was a kid, Eddie was my favorite. And that hasn't changed. Eddie was an absolutely special performer, in every sense of the word. In the ring he was A+, his character work was A+, and he has cut some of my favorite WWE promos of all-time, as well. R. I. P. The legend of Eddie Guerrero will never die!"
Rating: 10.0
Sentiment: 0.49404761904761907
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ApexOfEvolutionwrote on 30.03.2016:[10.0] "Einer der charismatischsten Wrestler aller Zeiten. Der Bart, die Frisur, alles passte perfekt zu seiner Rolle und man hatte das Gefühl, dass er sich nicht sonderlich verstellen musste. Dazu im Ring ein solider Worker und guter Techniker mit spektakulären Momenten. Leider viel zu früh von uns gegangen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Zedwrote on 21.03.2016:[8.0] "Meiner Meinung nach wurde Eddie nach seinem ableben zu sehr verehrt. Als er noch lebte fielen solche Bezeichnungen wie"einer der größten" oder "einer der charismatischten" eher selten. Natürlich gehörte er immer zu den besseren Wrestlern, jedoch gab es auch viel Luft nach oben, gerade am Mikro. Mich hat er nie hundertprozentig überzeugt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: rodberrywrote on 21.02.2016:[10.0] ""He's the greatest wrestler, EVER. He's better than Ric Flair. He's better than Stone Cold. He's better than me", says CM Punk.  What to add to his words? Probably the most outstanding wrestler to ever walk on this Earth. Became one the best technical wrestlers of his generation, one of the best luchadores, one of the best talkers, one of the most charismatic. One of the most hated heels in the 90s in Mexico and the ultimate cool heel in WWE, vanilla technical wrestler in ECW, loose cannon in wCw and then able to literally do whatever he wanted with the public in the latter half of his carreer: hated one day, loved unconditionally the other. Ultimate underdog and vicious psychopath heel. A man who strived to be the best man and worker he could be."
Rating: 10.0
Sentiment: 0.23384173297966399
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Desaster1978wrote on 13.12.2015:[9.0] "Hervorragender Wrestler, auch am Mic Super. Habe Seinen WWE-Titelgewinn live gesehen und abgefeiert. Auch schon in der WCW waren seine Matches jedes Mal ein Highlight. Einzig die Zeit mit der lwo hätte es nicht gebraucht."
Rating: 9.0
Sentiment: 0.23484848484848483
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DarylDixon84wrote on 21.11.2015:[8.0] "Eddie war herrvoragend im Ring! Unterhaltsam Psychologisch einwandfrei und je nach Charakter ein hingucker bzw aufreger. Er hatte Charisma das nur vonm wenigen überboten wurde, sein Micwork bringt es daher bei mir nur auf 8 Punkte, da hatte er defizite bzw eine Art die mich nicht mitreissen konnte. Egal Eddie ist schmerzlich vermisst und einer seines kalibers ist derzeit nicht vorhanden."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DanielBryan1986wrote on 13.11.2015:[10.0] "Seine ECW Zeit fand ich jetzt nicht ganz so toll, außnahme das Match gegen Malenko. WCW guter Start relativ schnell US Champion, gegen Wrestler wie Benoit, Malenko, Jericho, Mysterio und Psychosis immer gut. Mit seinem Wechsel zur WWE begann für mich dann der Spaß Faktor richtig. Sei es mit Chyna oder Chavo. Jedoch so richtig genial fand ich ihn ab der Fehde mit Big Show 2003, 2005 habe ich ihn gehasst wegen der Story mit Rey(war sehr glaubwürdig umgesetzt). Mich erreichte die Nachricht vom Tot damals in der Schule, es war wie ein Schlag hatte ihn wenige Tage vorher noch gegen Mr Kennedy gesehen.  Eddie du fehlst immer noch sehr in der Wrestling Szene. Du wirst niemals vergessen. Viva La Raza"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Cojotewrote on 13.10.2015:[10.0] "One of the best lucha libre wrestlers ever. The most charismatic latin wrestler that ever wrestled in WWE, ECW or WCW. Remembered for his technician skills and his great charisma. His matches in the Cruiserweight division of WCW are the best. His match versus Brock Lesnar for the WWE championship will ever be remembered, a match with a incredible tempo and pshychology. His match with Art Barr (they are Los Grincos Locos) versus El Hijo del Santo and Octagonón are one of the best tag team matches ever. One of my five favorite wrestlers ever with Bret Hart, Sting, CM Punk and Bryan Danielson: a dream team, that never will happen, to Survivor Series. Ever remembered for his great work: Thanks for all this years and for your extraordinary career,  Eddie Guerreo: Viva La Raza!"
Rating: 10.0
Sentiment: 0.6924242424242425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Wrestle fanboywrote on 10.10.2015:[9.0] ""Latino Heat" from El Paso, Texas was a truly the greatest luchador and a wrestler that ever lives in this god's green earth, his cocky personality and agile moves amaze all the fans of this industry and don't forget that he is one of the best ECW World Television champion, his war with "Shooter" Dean Malenko was never ever be forgotten"
Rating: 9.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rikishiwrote on 25.06.2015:[10.0] "Für diese Legende kann es nur die volle Puntzahl geben! Im Ring sehr gut, unglaublich charismatisch und am Mikro auch gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: PWCwrote on 24.06.2015:[10.0] "A wrestler so idiosyncratic that there will never anybody else like Eddie Guerrero. The limousine, the Lie, Cheat and Stealing mannerisms. A perfect 10 when it came to charisma, great matches, and his passing in 2005 was no unexpected, that the fans went from hating him after his Dominik storyline with Rey Mysterio's son in the Summer of that year to all of sudden passing away and well you get the picture. Viva la Eddie Guerrero. One of my favorites and still is."
Rating: 10.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Wrestling Foreverwrote on 12.06.2015:[10.0] "Wie ich Eddie nach wie vor vermisse. Niemand kann ihn in der WWE ersetzen er war einzigartig. Es sind nicht nur seine Matchqualitäten, es sind auch seine Streiche er war berüchtig bei den Kollegen und Freunden für seine Streiche vor und hinter der Kamera. Eine absolute Legende die alles konnte. Viel zu früh verstorben und absolut zu Recht in der WWE Hall of Fame gelandet."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Triple Hwrote on 16.04.2015:[10.0] "Zu Eddie Guerrero muss man eigentlich nicht mehr viel sagen. In seinen besten zeiten hat er gewrestelt wie von einm anderen Stern. Auch sein Cousin Chavo ist gut, aber an Eddie wird er nie heran kommen. Leider einer unter vielen Wrestlern, der viel zu früh aus dem Leben geschieden ist. Er wurde zurecht im Jahr 2006 in die Hall of Fame der WWE aufgenommen. Auch heute noch sind seine Matches auf WWE Network eine Anschauung wert. Ich verfolge zur Zeit die Entwicklung von Lucha Underground auf El Rey Network. Was dort an Athletik und Können gezeigt wird, lässt so manche Show von der WWE in einem blassen Licht erscheinen und trägt sehr die wrestlerische Handschrift eines ihrer besten Söhne. R. I. P. Eddie."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Claudio Herowrote on 03.03.2015:[10.0] "Zu Eddie braucht man eigentlich wirklich nichts mehr sagen, für mich einer der größten aller Zeiten in allen Belangen ... Für mich klare 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Hyperwrote on 25.12.2014:[10.0] "Da brauch ich nicht lange zu überlegen, er war und wird immer meine Nummer 1 sein. Genial am Mic und ne echte Charisma Bombe. Im Ring gibt es fast keinen, der ihm das Wasser reichen kann, er hat alles, was einen guten Westler aus macht.  Es ist so schade, dass er schon so früh verstorben ist und es tut auch jetzt noch, fast 10 Jahre später, noch so extrem weh, das er von uns gegangen ist, aber er wird mir immer in guter Erinnerung bleiben."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Y2J316wrote on 28.11.2014:[10.0] "Auch Eddie ist einer meiner Lieblings Wrestler. Errinner mich immer gerne and seine Fehde mit Rey. Speziell wird mir immer das WM-21 match in errinerung bleiben. Leider ist er schon von uns gegangen. Hätte ihn gerne heute noch gesehen. Auch er ist zurrecht in der Hall of Fame gelandet. Eddie RIP."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Muyo90wrote on 23.11.2014:[10.0] "Eine Legende. Der beste mexikanische Wrestler überhaupt. Hatte enormen Unterhaltungsfaktor und das nicht nur aus Wrestlingsicht. Gab ein wesentlich besseres Bild als Face ab. Legendär bleibt die Geschichte mit dem Schuh gegen Kurt Angle bei WM20. Schade dass er so früh gestorben ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: EG1991wrote on 15.11.2014:[10.0] "Eddie Guerrero... Latino Heat... 9 Jahre ist es nun also her das wohl einer der besten In Ring Worker von uns gegangen ist. Für mich ist und bleibt er einer der besten Wrestler die die WWE je gesehen hat. Seine Cleverniss im Ring und sein können sind schon sehr sehr gut gewesen. Mir hat vor allem sein Gimmick rund um 2000 aber natürlich auch das " I Lie I Cheat I Steal " Gimmick sehr gefallen. Er wusste immer zu Unterhalten egal wer ihm Gegenüberstand. Wäre dieser plötzliche Todesfall nicht gewesen dann wäre Eddie wohl heute noch im Ring. Ich denke das er damals im Jahre 2004 völlig zurecht in den Main Event gepusht wurde und dort auch heute noch zu finden wäre. Gerade das Match gegen Brock Lesnar bei No Way Out 2004 aber auch das Match gegen Kurt Angle bei Wrestlemania XX scheinen Vince und Co aber erst voll von Ihm überzeugt zu haben. Dazu dieses Können am Mikro... Unfassbar gut meiner Meinung nach. Würde er noch Leben dann hätte er wohl noch den ein oder anderen World Title gewonnen. Für mich klare 10 Punkte was anderes kann man Ihm auch nicht geben. Danke für diese tollen Momente Eddie Guerrero... R. I. P"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: hitman18wrote on 12.11.2014:[10.0] "War als ich zum Wrestling gekommen bin WWE Champion und war da sofort mein Lieblings Charakter und blieb dies auch bis zu seinem Ende.  RIP"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: AlwaysAngrywrote on 24.05.2014:[10.0] "Eddie is without a doubt one of the if not the greatest wrestlers in the world as he perfectly combined Japanese. Mexican. American Indy, and American mainstream, to make the almost perfect wrestler."
Rating: 10.0
Sentiment: 0.42857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: sevendaughterswrote on 19.05.2014:[10.0] "How badly WWE could use someone like Eddie right now; star quality, great natural ability to be loved and hated, works a great match and learned to cut good promos. Really miss this guy."
Rating: 10.0
Sentiment: 0.22063492063492063
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: J0KERwrote on 10.05.2014:[10.0] "Ich find die Bewertung etwas überbewertet welches ich vom Tod von Eddie ausgehe. Der Mann war das gesamt Paket der WWE. Keine Ecken und Kanten nichts hat bei ihm gefehlt. Sein In Ring Skill ist sehr gut und sein Gimmick ebenfalls. Am Mikrofon ist er stark aber nicht der beste macht aber immer wieder Spaß ihn zuzuhören weil er dieses Unterhaltungsfaktor hat welches er uns presentierte. Er war eine Charisma Bombe und hat alles erfüllt was ein Main Eventer gebraucht hat. Der WrestleMania XX Moment mit Chris Benoit und Eddie Guerrero wird niemals vergessen einfach ein schönes Moment. Er hätte ruhig noch mehr Championships gewinnen können welches aber nicht zu Stande kam wegen dem früheren Tod von Eddie Guerrero.  Verdienter Hall Of Famer R. I. P"
Rating: 10.0
Sentiment: -0.016666666666666677
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KobashiKentawrote on 23.04.2014:[10.0] "Einer der ganz wenigen, die wirklich alles konnten. Großartiger Techniker, großartiger Highflyer. Überzeugte sowohl in technischeren Matches, konnte Hardcore, selbst in Comedy-Matches hat er mit all seinem Charme, Humor und Charisma immer herausragen können. Wurde für meine Begriffe damals eigentlich sogar viel zu spät in den Mainevent gepusht, umso schöner war dann allerdings sein Titelgewinn 2003 gegen Lesnar und das Match mit Angle/der abschließende Jubel mit Benoit bei WM XX. Eddie hat durch sein viel zu frühes Dahinscheiden leider ein Riesenloch in der Wrestling Welt hinterlassen, vor allem wenn man bedenkt, dass er noch locker 5-10 Jahre auf einem Toplevel performen hätte können. Einer der größten aller Zeiten! 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Undertalkerwrote on 29.03.2014:[10.0] "Er hatte unheimlich viel Charisma, war witzig sowie unterhaltsam und somit ein Entertainer der Extraklasse. Seine In-Ring-Skills waren auch hervorragend, obwohl ich finde, dass es da noch bessere Wrestler gibt. Er überzeugte nicht nur in WWE, sondern auch in vielen anderen Ligen. Obendrein hatte er noch eine außerordentliche Leidenschaft und Liebe für das Business zu eigen. Einen " neuen Eddie Guerrero" wird es niemals geben: Eddie hatte einen derart einzigartigen Charakter, sodass er für das Wrestling-Business einfach nicht ersetzbar ist. Darin zeigt sich seine Großartigkeit!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Lord Regalwrote on 22.01.2014:[10.0] "In allen Bereichen absolut hervorragend. 10 Punkte. RIP"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: JourneybyTrainwrote on 22.12.2013:[7.0] "Eddie's peak performances are great, he cut some of the best promos ever at the tail end of his career and generally looked excellent in the ring. Depth wise his body of work leaves a lot to be desired but his performances are to strong to warrant below a 7."
Rating: 7.0
Sentiment: 0.6638888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Nazirul Takashiwrote on 13.11.2013:[10.0] "It's been 8 years since the last time we saw Eddie inside a Wrestling Ring. Maybe he's no longer with us, but his matches and talent will always be remembered. RIP Eddie. Viva La Raza!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Daneraswrote on 03.11.2013:[9.0] "Er konnte wirklich sehr gut kämpfen, und hatte viel Talent. Seine Gimmicks fand ich leider nicht so spannend, aber ich habe mich immer auf seine Matches gefreut. Seine Todesnachricht kam total unerwartet. So ein guter Wrestler, schade!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Hells Guardianwrote on 25.10.2013:[9.0] "Der einzige für mich, der sogar HBK und Y2J am Mic hätte ausstechen können! Ich habe es förmlich geliebt, ihn zu hassen (wenn ihr versteht was ich meine) und als Face hatte er einen unglaublichen Charme. Ich kann ihn nichtmal für die Teilweise lächerlich übertriebenen Sotrylines nen Punkt abziehen (wie z. B. die Kiste mit Rays Sohn 2005), da er nicht wirklich einfluss darauf gehabt haben dürfte, aber das beste aus der rolle geholt haben dürfte. Den Punkt abzug bekommt er auch nicht für seine Drogenprobleme, da er bewiesen hat, das Menschen sich ändern können und er immer zu seinen Fehlern gestanden hat. Den Punkt abzug, gebe ich dafür, das er im ring nur gegen wirlich gute Gegner voll aus sich raus gehen konnte. Bei unterdurchschnittlichen Wrestlern, schien er mir nichtmal großartig versucht zu haben, was rauszu holen. En HBK oder Undertaker konnte das besser verkaufen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: HighlightHEELwrote on 19.09.2013:[10.0] "Technisch gesehen, das Highflying, die Fähigkeiten, die er als Athlet hatte: im Ring war Eddie das absolute " Total Package" . Am Mikro gut und unterhaltend, das Gimmick machte über eine Zeit lang großen Spaß und alles zusammen führte zu einem großen Moment bei No Way Out 2004 und einem noch größeren bei WM20. Auch im Tag Team mit Neffe Chavo richtig gut. Auch wenn Eddie, trotz Anerkennung aller Fähigkeiten, nie im Kreis meiner absoluten Lieblinge war, ist sein Tod natürlich eines der traurigsten Kapitel der Wrestling-Geschichte, was ich miterleben konnte/musste. Die Ausschlachtung seines Erbes durch die WWE ist etwas, was ich " meiner" Liga auch immer übel genommen habe und übel nehmen werde. Seine Einführung in die Hall of Fame und das dazugehörige Video verursachen bei mir immer noch Gänsehaut und eine gewisse Traurigkeit. Viva la Raza (forever)!"
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: pentiwrote on 15.09.2013:[10.0] "Ein Klasse Wrestler- wahrscheinlich der beste Highflyer und Micworker der Geschichte ich glaube keiner bringt sich so souverän rüber wie er es tat (was auch sein später Turn zum Heel zeigt). Leider ging er viel zu früh von uns"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: bounthykiller1987wrote on 12.09.2013:[10.0] "Leider viel zu früh gestorben. allein seine Fehde gegen JBL .. amazing... La Vida Loca"
Rating: 10.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Alex Maedawrote on 31.07.2013:[10.0] "Wenn ich die zwei Worte " Sports Entertainment" höre, denke ich als erstes an ihn und Chris Jericho. Denn beide waren bzw. sind genau das: sowohl großartige Sportler als auch Entertainer, die ihresgleichen suchen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Sir Vida Loca IIIwrote on 07.07.2013:[10.0] "Meiner Meinung nach einer der besten Wrestler aller Zeiten, wenn nicht gar DER beste ever. Aber dies ist meist Subjektiv. Im Ring machte Eddie niemand etwas vor, er konnte jeden Stiel gehen und aus so gut wie jedem gegner ein gutes Match heraus holen. Am Mic sieht es nicht anders aus, Eddie vermochte es wie kaum ein anderer Emotionen zu vermitteln und mit der Crowd zu spielen. R. I. P. Eddie Guerrero"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BeNerowrote on 07.07.2013:[10.0] "Im Ring einer der besten aller Zeiten mit einem absolut genialem Gimmick dazu. Unglaublich charismatisch und er war überall einsetzbar ob im Main Event, Midcard oder Tag Team Division. Auch wenn er leider viel zu früh verstorben ist, ist er verdient eine Legende, da Guerrero einfach nur einzigartig und unersetzbar war."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Charismatic Enigmawrote on 26.05.2013:[10.0] "Klasse Techniker, Charisma bis oben hin und ein Entertainer aus Leidenschaft. Hab vor Kurzem seine Autobiografie gelesen und seitdem ist mein Respekt vor dem Mann noch mehr gewachsen. Was der durchgemacht hat, ist wirklich Wahnsinn. Trotz aller Dämonen hat er die Kraft gefunden, weiter zu kämpfen, auch wenn er den Kampf letztlich doch verlor. Nur die Besten sterben jung. Rest in Peace!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: christianpecevskiwrote on 22.05.2013:[10.0] "Ein top Wrestler und Entertainer. Seine matches haben immer spaß gemacht und waren sehr nett anzuschauen. Ruhe in Frieden."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BenutzernamenBraucheIchNichtwrote on 05.05.2013:[8.0] "Es werden maximal 1500 Zeichen gespeichert, daher beginne ich gar nicht all die Leistungen, die er erbracht aufzuzählen und befasse mich mit den Dingen, die zu dieser " unterdurchschnittlichen" Bewertung Eddies führten. Ich finde es traurig, dass sein Tod noch so lange danach ausgeschlachtet wurde, egal ob für Chavo, Vickie oder Rey. Zudem - auch wenn er es sich in/nach all den Jahren verdient hat - bin ich kein großer Freund des Hypes vor seinem Tod. Als WWE-Champ wollte ich ihn eig. nie sehen. Latino Heat: He lies, he cheats and steals - super Gimmick für einen, der diverse Midcard-Titel gewinnen und halten konnte. Auch die Los Guerreros waren eines der besten Teams, der letzten 10 Jahre! Alles was jedoch nach WM XX passierte, sagt mir ganz und gar nicht zu und nervte nur noch..."
Rating: 8.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Golgotawrote on 23.03.2013:[8.0] "Toller Mensch, guter Wrestler und Mic-Worker. Den Giganten, den hier viele beschreiben, sehe ich allerdings nicht in ihm."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "My favorite wrestler of all time. An amazing performer all-around, who is definitely missed."
Rating: 10.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Kevin Steenwrote on 15.11.2012:[10.0] "Er ist und wird immer mein Lieblingswrestler bleiben. Egal was Eddie gemacht hat, es hat mir eigentlich immer gefallen. Er konnte die lustigen und ernsten Sachen perfekt spielen und war im Ring auch ein richtig Guter."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: FranziiXDwrote on 28.09.2012:[10.0] "einer der besten und mitreißendsten wrestler ever . richtig gut im ring ."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Kid Rockwrote on 19.09.2012:[10.0] "Eddie Guerrero war und ist heute noch der Wrestler, mit dem ich mich emotional am meisten verbunden fühlte/fühle. Als ich 2003 über Smackdown mit dem Wrestling angefangen habe, war Eddie sofort mein großer Held. Seine Schlitzohrigkeit, sein Humor, sein unglaublich einnehmender Charme; Kaum einer war mir in dem Buisness je sympathischer als Eddie. Er war einer dieser Performer die immer authentisch rüber kamen und es schafften den Zuschauer emotional zu packen und mitzureißen. So auch bei Latino Heat, bei dem ich immer mitgefiebert habe, sei es als er den WWE-Titel gewann, was so ziemlich meinen allerersten Mark-Out überhaupt darstellte, während der brutalen Fehde mit JBL oder mit dem grandiosen Heel-Turn samt anschließender Rivalität gegen Rey Mysterio. Nicht zu unterschätzen die vielen großartigen Matches und Karrieremomente vor seiner Hochzeit 2003/2004 als " Lie, Cheat, Steal" -Rabauke. Eddie war schlicht einer der besten die es je gab. Großartiger Techniker, überaus passabel am Mic und mit viel Charisma gesegnet, hätte Eddie zweifellos noch einiges bewegen können, hätte er sich nicht viel zu früh und völlig unerwartet aus dieser Welt verabschieden müssen. Sein Tod war für mich in der Tat eine große Tragödie und selbst jetzt nach all den Jahren fehlt er mir immer noch sehr. In dem Sinne: Danke für alles Eddie und ruhe in Frieden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: LM Punkwrote on 30.08.2012:[8.0] "Er war schon gut, aber ich war jetzt nie ein grosser Fan von Eddie. In der Zeit als er Champ war, habe ich auch iergendwei das intresse am Wrestlingverloren, das lag jetzt nich an ihm, aber am gesamtpaktet. Vergleicht man ihn mit Leuten wie HBK, Y2J oder dem Undertaker so hat er doch irgendwie nichte deren Legendenstatus. Sein Gimmik war aber total passend für Eddie und er hat das richtig gut rüber gebrach. Im Ring war er auch überzeugend."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: phippowrote on 19.08.2012:[10.0] "Ist für mich einer der besten, wenn nicht der beste Entertainer der WWE. Großartiger Wrestler und auch am Mikrofon sehr stark! Leider aber viel zu früh von uns gegangen! RIP EDDIE GUERRERO"
Rating: 10.0
Sentiment: -0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Kitanoyamawrote on 07.08.2012:[10.0] "Teilweise schließe ich mich der Meinung der meisten User an, das seine Popularität gerade nach seinem leider viel zu frühen Tod in die Höhe schoss, aber dennoch kann und muss ich mit Fug und Recht sagen, das er zu Recht zu den besten seines Fachs zählt. Sein Wrestling als solches war nur unwesentlich besser als die meisten, aber er verstand es, sich, seine Moves, sein ganzes Auftreten, so zu verpacken, das man sich sicher sein konnte, das man unterhalten wird. Das war nicht immer der Fall, aber meistens. Das er auch unter seinen direkten Kollegen sehr geschätzt wie beliebt war, unterstreicht sein Leben, seinen Wandel usw. . Ich denke schon das er mit 10 Punkten angemessen gewürdigt wird, da er, trotz einiger Makel, zu denjenigen gehörte, die am besten was von ihrem Handwerk verstanden. Viva la Raza! R. I. P. Eddie!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: alewrote on 28.06.2012:[10.0] "Ich denke über Eddie Guerrero gibts es nichts zu sagen was nicht schon gesagt wurde. Im Ring war er einer der besten die jemals die Bühne des Mainstream Wrestling betreten und natürlich auch jemand der unglaublich Heat als Heel ziehen konnte. Generell am Mic für einen technisch extrem begabten Wrestler sehr stark (vlt nicht so stark wie Jericho aber trotzdem) daher gibt es wohl nichts anderes als 10 Punkte für Latino Heat.  R. I. P."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Hirnklopswrote on 28.04.2012:[8.0] "Saustarker Wrestler, natürliches Charisma, gute Promos, cooles Gimmick... Er hat sein Leben am Limit gelebt, was man auch an seiner Frisur sieht: Ein absoluter Grenzgang zwischen derbem Ruhrpott-Look und der unerschütterbaren zeitlosen Coolnes eines VoKuHiLa."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: WDE John Masonwrote on 25.04.2012:[10.0] "Eddie Guerrero war einfach das komplett Paket.  Als ich 2004 angefangen habe Wrestling zu gucken hat mich Eddie sofort mit seinem Charisma seiner gesamten Art begeistert und seine Ringskills just awesome einer der besten und diese Wertung hat nichts mit seinem Tod zu tun.  Wer diesem Mann eine schlechte Note gibt hat entweder keine Ahnung vom Wrestling oder ihn nie im Ring gesehen.  Man hat ihm angemerkt das er für das Wrestling gelebt hat und wie viel Leidenschaft er für das Business hatte.  Eddie fehlt einfach in der WWE R. I. P"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Franjisewrote on 31.03.2012:[10.0] "Eddie Guerrero war einer der allerbesten seines Fachs. Im Seilgeviert lieferte er stets großartige Leistungen ab, sowohl technisch als auch in Sachen Ringpsychologie war Eddie einfach großartig. Dazu kamen natürlich sein unglaubliches Charisma und die überragenden Mic-Skills, die, egal ob Face oder Heel, immer zu unterhalten wussten. Keine Frage, mit Eddie Guerrero hat die Wrestling-Welt einen der Allergrößten dieses Sports viel zu früh verloren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Fighter Daronwrote on 02.02.2012:[8.0] "Just like Chris Jericho, great worker, but overrated as hell."
Rating: 8.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Clubbiwrote on 06.01.2012:[10.0] "Eddie Guerrero der für mich Beste Wrestler mit Jericho und 1, 2 andere der letzten Jahre, seine Gimmicks waren einfach nur Geil alleine nur die WWE Gimmicks einfach Göttlich am Mic war er auch immer Gott. Leider blieb auch er nicht von den Drogen verschont die obwohl er seit Jahren Clean war, im Endeffekt das Leben leider gekostet haben. Einfach ein Super Mann mit großen Herz wie man auch auf Der Eddie Guerrero Viva La Raza DVD sieht und auch bei seiner Story DVD. Wir werden wohl auch die nächsten Jahre keinen haben der an seine Stelle tritt. RIP Eddie We Miss You!"
Rating: 10.0
Sentiment: 0.39166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: 7TheEwrote on 20.11.2011:[8.0] "In-Ring, Mikework und Charistmatechnisch eine 10 Punkte angelegenheit.  Die Gründe warum es nur 8 Punkte sind liegt für mich daran, dass ich ihn leider nie dauerhaft On Top gesehen habe und leider auch seinen Wordtitel Run nicht so gut fand.  Ansonsten mag ich seine Frisur nicht!  Und er war auch nicht immer der Drogenfreiste, Drogen im Wrestlingbuisness wirken nie Positiv, siehe Jeff, oder andere.  Deswegen verdiente 8 Punkte für einen der besten Entertainer."
Rating: 8.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: thereisonlyonewrote on 02.11.2011:[10.0] "Eduardo Guerrero, auch er war Einer, der mir das Wreslinggucken zur Freude gemacht hat. Gerade sein Lie, Cheat 'n Steal Gimmick war das amüsanteste seiner Zeit. Dazu hat er die Sunset Flip Powerbomb (zumindest in der WWE) über die Leiter großgemacht und grandioses mit ihr, dem HiLo etc. einiges angestellt. Viva La Raza, Rest in Peace und schönen Tag noch!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: cookie monsterwrote on 27.10.2011:[10.0] "Einer der besten und großartigesten Menschen. Und vorallem Klasse Wrestler besonders technisch und auch Unterhaltung. Ohne ihn fehlt echt etwas bei WWE, da nur Trash Wrestler sind wie NXT"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KoZywrote on 07.10.2011:[10.0] "Mein Lieblingswrestler. Es hat einfach spaß gemacht Eddie zuzuschauen, egal ob im Ring oder am Mikro. Er hat alles immer mit Herz gemacht und das hat man gespürt. Seine Fehden mit Angle und mit Rey fand ich besonders gut. Und egal ob als Face oder als Heel er hat alle Rollen perfekt beherrscht. Und er hat das Publikum einfach an sich gebunden. Das hat man gemerkt, als z. B im Ladder Match gegen Rey das Publikum mit Eddie Chants anfing, obwohl er Heel war...  Einfach nur Schade, dass er so früh gestorben ist. Ein riesiger Verlust der WWE!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Seehundwrote on 14.09.2011:[10.0] "Für mich war und ist Eddie der beste Wrestler aller Zeiten. Ich hatte schon recht früh angefangen Wrestling zu sehen konnte mich jedoch nur an einzelne Szenen mit dem Undertaker erinnern. danach war für mich bestimmt Zehn Jahre lang Schluss mit dem Wrestling, bis ich irgendwann im Jahr 2003 oder 2004 wieder damit anfing es regelmäßig zu schauen und bis heute auch noch tue. Eddie wurde durch sein riesiges Charisma, sein tolles Gimmick, sein unglaubliches Wrestling und natürlich durch sein verschmitztes Lächeln schnell zu meinem Lieblinge. Sein Tod kam auch für mich sehr überraschen und bis heute kommen mir die Tränen wenn ich mal wieder am Schluss der Viva La Razza DVD angekommen bin. Eddie Ruhe in Frieden wir vermissen dich"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Eddie hat bis heute eine Lücke hinterlassen die keiner Füllen konnte! Er konnte Schauspielern und Wrestlen wie kein Zweiter! Sein Mic Work war awesome und auch Charisma hatte Latino Heat im vollen Maßen! Leider wegen seiner Drogengeschichte (von der er Gott sei Dank los kam) ziemlich lange unten gehalten (er wäre bestimmt noch früher WWE Champ geworden) Eddie konnte auch als Face sowie als Heel überzeugen, seine Fehde gegen Rey war seine beste Heel Fehde finde ich! Ich hätte ihn gerne nochmal als Champion gesehen..."
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Fall Out Boywrote on 28.08.2011:[8.0] "Der Kerl konnte schauspielern wie kaum ein anderer und auch im Ring war er großartig. Trotzdem fand ich seine Gimmicks immer ziemlich übertrieben und schnell sehr nervig. Micwork für mich eher mittelmäßig."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: CM Punk und Edgewrote on 26.08.2011:[10.0] "Immer wenn er bei Smackdown auftauchte und die Show noch so schlecht wahr, hatte man doch einen Grund sie zu sehen. Er hatte einfach Charisma pur, und im Ring sowieso einer der besten. Was ich nicht alles geben würde um noch einmal ein Match von ihm zu sehen, er ist einfach klasse. In diesem Sinne volle 10 Punkte für Eddie."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: GTS Punkwrote on 19.08.2011:[10.0] "Ich kann es nicht verstehen für diesen legendären Hall of Famer weniger als 8. 00 Punkte zu vergeben. Er war einer der ganz großen im Wrestling. Tolles Gimmick, spektaküläre Moves! Wie er sich immer aufeinmal hinlegte und Refere irritierte war einfach fantastisch! Er wird immer einer meiner Lieblingswrestler sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Bananaramawrote on 14.08.2011:[10.0] "Gerade als ich wieder anfing Wrestling aktiv zu verfolgen, war er mit einer der interessantesten Charaktere. Er war es, der mich überhaupt wieder aufs Wrestling gebracht. Seine ganze Art, sein Gimmick bleibt unerreicht, dazu ist er einer der wenigen Akteure, die in jeder Rolle überzeugen können und es schaffen innerhalb weniger Wochen das Publikum gegen sich aufbringen zu können. Im Ring gehört er sicherlich zur Elite des Sports, daher kann es für diese Legende nur 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MaikBaaderwrote on 29.07.2011:[10.0] "Ob er überbewertet ist aufgrund seines Todes? Nein. Black Tiger, beziehungsweise Eddie Guerrero hatte alles was man als Mainstreamwrestler brauch: Micwork, sehr, sehr viel Charisma und natürlich die wrestlerischen Fähigkeiten. Er war definitiv einer der besten Performer, der je ein WWE-Ring betreten hat."
Rating: 10.0
Sentiment: -0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: latinoheat4everwrote on 29.07.2011:[10.0] "Eduardo Gory Guerrero Llanes ist für mich persönlich der beste Wrestler aller Zeiten. Immerhin bin ich durch ihn ein Fan dieses Business geworden, welches mir so viele schöne Erinnerungen bereitet hat. In seiner Hochzeit 2004 bin ich zufällig beim Zappen bei Smackdown gelandet und alles was ich dort gesehen habe war ganz nett. Ein Undertaker, den eine beeindruckende Aura umgab, ein Kurt Angle, der ein klasse Athlet war, doch dann kam besagter Eddie Guerrero in den Ring mit einem unwiderstehlichen und ansteckendem Lächeln. Dann begann sein Match und ich war fasziniert von jeder Bewegung, die er vollführte, besonders von den Spielchen die er mit seinen Gegnern trieb. Er zauberte ein Lächeln in das Gesicht eines jeden Fans in der Halle und so erging es mir auch. Hinzu kamen seine unvergleichlichen Fähigkeiten im Ring, er beherrschte alle Wrestlingstile dieser Welt und konnte jeden seiner Gegner besser aussehen lassen, als sie de facto eigentlich waren. Eddie war ein Performer, bei dem man die Leidenschaft, die er für dieses Business empfand, spüren konnte und zwar sogar durch den Fernsehbildschirm hindurch. Es hat einfach Spaß gemacht ihm zuzuschauen. Ich bedauere es wirklich sehr, dass ich nicht einmal 2 volle Jahre sein unvergleichliches Talent genießen durfte, doch ich bin dankbar für jedes Match mit seiner Beteiligung, dass ich noch bestaunen durfte. Danke Eddie!"
Rating: 10.0
Sentiment: -0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Titanwrote on 20.07.2011:[10.0] "Eddie ist für mich eine Legende. Er hatte diese natürliche Ausstrahlung und das Talent die Leute zu unterhalten und mitzureißen, egal ob er als Heel oder Face die Halle betrat. Sein Tod ist ein großer Verlust für die Wrestlingwelt gewesen und bis heute hat es keiner so wirklich geschafft ihn 1:1 zu ersetzen..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: thegreatone388wrote on 17.07.2011:[10.0] "Warum steht hier bei Eddies Karriereende der 11. 11. wo er doch am 13. 11. gestorben ist? !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: LyrixFTWwrote on 08.07.2011:[9.0] ""I lie, I cheat, I steal" Und wie er gestohlen hat, nämlich Millionen gelangweilter Fan's, denn wenn Eddie die Halle betratt kam immer Stimmung auf, Technisch klasse, charismatisch, aber kein erredetes Charisma sondern dieses angeborene etwas das z. B. Jackson hat obwohl der sowohl im Ring als auch am Mic schlecht ist. Wenn er Face war und sich am Mikrofon ins Fäustchen gelacht hat konnte man nur mitgrinsen und als Heel war er glaubwürdig wie es nur wenige schaffen.  Einzig der Akzent(Den ich eigentlich sehr gern mag) hat in Kombination mit den manchmal fast zu emotionalen Promos verhindert hier die 1.  Ein großartiger Wrestler der immer noch im Ring stehen sollte :( RIP"
Rating: 9.0
Sentiment: -0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Donald Duckwrote on 26.06.2011:[7.0] "Eddie Guerrero war ein guter Wrestler, keine Frage.. aber für mich ist er keine wirkliche Legende. Er war schon damals ein ganz normaler Wrestler. Denke dass man ihn heute nur so feiert weil er viel zu früh gestorben ist."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: exxterwrote on 17.04.2011:[10.0] "Grandios im Ring, äußerst unterhaltsam und vor Ausstrahlung nur so strotzend, das Mainstream Wrestling hat uns in den letzten Jahrzehnten beschert hat. Tragisch, dass dieser Mensch viel zu früh gehen musste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: C0nspiracywrote on 28.03.2011:[7.0] "Eine meiner absoluten Faves , abzüge gibts eigendlich nur beim Micwork das mir zu übertrieben war, ansonsten hab ich bei Eddie wirklich nichts auszusetzen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Hu-Manwrote on 24.02.2011:[10.0] "Wer hat ihn nicht geliebt! ? An Charisma ist er wohl unübertroffen. Ein toller Worker mit einem unfassbaren Unterhaltungspotential. R. I. P. Eddie!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Schmidi2121wrote on 31.12.2010:[10.0] "Über ihn braucht man nicht viele Worte zu verlieren.  Einer der Größten die es je gab. Und einer der besten Entertainer die ich je gesehen habe. R. I. P. Eddie"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KazhiusKlaywrote on 19.12.2010:[10.0] "Einer der besten aller Zeiten! Hatte leider nicht lange das Vergnügen ihn zu "erleben", da er wie bekannt viel zu früh verstorben ist. :( Hab aber bis heute fast alle seine Karrierehighlights gesehen und bin so noch ein größerer Fan geworden. Technisch und charismatisch TOP ! R. I. P Eddie"
Rating: 10.0
Sentiment: 0.024999999999999984
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Cheffewrote on 01.11.2010:[10.0] "Dieser Mann war einfach nur Unglaublich. Seine In-Ring Skills, sein Mic-Work, sein Gimmick.. , Alles Fantastisch ! Gehört definitiv zu meinen TOP 5 Wrestlern aller Zeiten.  Ich habe glaube ich noch nie soviel Leid empfunden, bei einem Menschen der außerhalb meines Familienkreises gestorben ist. Bald ist es schon 5 Jahre her...  Thank you, Eddie RIP"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Aesopwrote on 18.10.2010:[10.0] "Eddie war ein genialer Wrestler, der als Face, aber noch viel mehr als Heel überzeugen kann. Im Ring war er einer der besten Highflyer und Techniker den die WWE je hatte. Leider ist er viel zu früh verstorben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: C van Damwrote on 16.10.2010:[10.0] "Im Ring Top, am Mic Top, einfach in allen Belangen Top. Das war Eddie Guerrero. Leider hat seinen verdienten Platz viel zu spät bekommen und ist viel zu früh von uns gegangen um zu zeigen, das er auch dauerhaft ganz oben bei den Großen mitspielen könnte. Wahnnsin dieser Mann!"
Rating: 10.0
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DJ MaSchwrote on 03.10.2010:[8.0] "Ein klasse Wrestler mit massenweise Charisma, der wegen seines viel zu frühen Ablebens IMO ein kleines bisschen overhypt ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: LabronBenoitwrote on 30.09.2010:[10.0] "Hab mir vor kurzem die Eddie Guerrero DVD angeguckt und dort hat man einfach nochmal gesehen, was für ein unglaublicher Wrestler Eddie Guerrero doch war. Für mich einer der Besten aller Zeiten! Und bald sind es schon 5 Jahre ohne ihm... Eddies beste Zeit wäre denk ich noch gekommen. Ruhe in Frieden Eddie, deine Matches bleiben für immer in Erinnerung. VIVA LA RAZA!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Ramwrote on 29.09.2010:[10.0] "Er war der Grund warum ich Wrestling geschaut hab , er war der erste den ich gut fand und er war der erste Wrestler den ich hasste. (aus Mark sicht natürlich) Beste Man am Mic, toller Techniker, hammer Gimmick. Er ist der Beste Mexicanische Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: jupp365wrote on 27.08.2010:[5.0] "Klar er hatte Charisma und konnte wrestlen, aber mich persönlich konnte er im Mainevent nie überzeugen."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Saschwrote on 19.08.2010:[10.0] "10 Punkte als Wrestler Schauspieler und eigenen Ideen (I lie I cheat I steel) Gimmick welches er von seinem Hund ableitete und damit sich selbst neu Erfand und sich meiner Meinung nach in die Herzen der Fans wrestelte! Zur WCW Zeit hatte er tolle Fehden mit Chris Benoit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Mountiewrote on 18.08.2010:[10.0] "Klar, bei Eddie ist die Gefahr, dass man ihn wegen seinem frühen Tod im Nachhinein verklärt, aber auch mit dem Problem im Blick kann ich ihm nur die 1 geben: Toller Wrestler, Charisma-Bombe und für mich immer ein Einschaltgrund."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Aquifelwrote on 17.08.2010:[9.0] "Erstklassiger Wrestler und was das Charisma angeht wohl einer der besten, die je im Wrestling Ring standen (gerade zu WWE Zeiten). Ich denke, man hätte noch mehr Großes von ihm gesehen, wäre er nicht so früh verstorben. Andererseits würden manche ihn dann wohl auch ein bisschen weniger in den Himmel loben (was man ihm ja nicht zum Vorwurf machen kann)."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Jerichoholicwrote on 04.08.2010:[10.0] "Eddie Guerrero war ohne Zweifel einer der größten Worker im Wrestling Business - und dies sage ich nicht, weil er viel zu früh von uns gegangen ist, was gerne dazu führt, das der Betreffende glorifiziert wird. In diesem Fall haben wir es aber mit einem echten Total Package zu tun. Eddie Guerrero verbindet großartiges Wrestling mit unendlich viel Charisma, eine Mischung wie man sie sonst nur bei Leuten wie Chris Jericho oder Shawn Michaels vorfindet. Latino Heat war stets ein Grund zum Einschalten, sei es wegen seiner unvergleichlichen Promos, die er sowohl sehr witzig als auch verdammt intensiv rüberbringen konnte (wie zum Beispiel in seiner brutalen Fehde gegen JBL). Daneben war er immer in der Lage, einen Showstealer auf die Beine zu stellen, egal wie der Gegner heißt. Das macht Eddie Guerrero zu einem Komplettpaktet - einzig sein früher Tod hat vermieden, dass er zu den ganz großen Champions aufsteigen konnte. Denn klar ist, dass er noch den ein oder anderen Titelrun vor sich gehabt hätte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: WrestlingFanDuisburgwrote on 01.08.2010:[10.0] "Ich verstehe nicht wieso es hier Leute gibt die teilweise nur 4 Punkte geben. Im Ring absolut Spitze. Am Mic absolut spitze. Charisma, genug vorhanden gewesen. Eddie Guerrero wusste immer zu unterhalten. Egal ob Japan, WCW oder WWE, dieser Mann war absolute Weltspitze. Ich kann mich bei ihm dennoch nicht entscheiden ob ich 9 oder 10 Punkte geben soll, da er zum Ende seiner Karriere und seines Lebens im Vergleich zu den 90ern enorm an Muskeln zu gelegt, was nicht zu ihm passte. Aber aufgrund so toller Matches die ich schon von Eddie gesehen habe und Top-Promos die ich gehört habe gebe ich ihm die 10 Punkte. Leider wie Chris Benoit, Steve Williams oder Umaga um nur ein paar zu nennen viel zu früh verstorben. RIP EDDIE"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: GibDirDreggischwrote on 19.07.2010:[8.0] "Guter Mann, der jedoch durch seinen frühen Tod ein bißchen mehr glorifiziert wird, als eigentlich nötig wäre. Aber immer ein Grund einzuschalten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Eazyewrote on 19.06.2010:[10.0] "I lie, I cheat, I steal. Eddie Guerrero ist der latinoamerikanische Rock, vom Gimmick her. Klasse Techniker und ausserdem verdammt unterhaltsam. Leider konnte er sich nicht mehr World Titel um die Hüften schnallen.  Das Gesamtpacket stimmte bei Eddie, er konnte alles was man brauchte um ein perfekter Wrestler zu sein.  Leider viel zu früh von uns gegangen. † RIP"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Boggenauerwrote on 31.05.2010:[10.0] "Eddie Guerrero der Kerl war einfach ein must see im Ring, er hatte einfach alles Grandiose in Ring skills und seine Mic-skills waren auch der Hammer, immer wenn er im Ring war hatte man was zu lachen seine Promos waren auch immer Klasse. Als Heel oder als Face einfach einmalig, Eddie war einfach ein Weltweiter Top Worker das ist sowas von wahr, ein Mann der viel zu früh verstarb ich vermisse ihn einfach. Von mir 10 Punkte, für diesen unvergesslichen Kerl."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MarthaHartFanwrote on 29.05.2010:[10.0] "Ging viel zu früh von uns und hat uns immer mit coolen Matches und witzigen Segmenten unterhalten. RIP Edouardo Gory Guerrero!"
Rating: 10.0
Sentiment: -0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Rockerwrote on 27.05.2010:[10.0] "Einer der besten Wrestler den es in der WWE gab. Auch wen er Tod ist finde ich ihn immer noch cool."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Erasedwrote on 22.05.2010:[9.0] "Alleine vom Entertaining her einer der besten in den letzten Jahren. Trotz seinen leichten Mängel im Ring muss man sagen, dass er einfach alles sauber rüberbrachte."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Edge96wrote on 14.05.2010:[10.0] "Einer der besten Wrestler aller Zeiten. Als ich von seinem Tod erfahren habe war ich einfach fassungslos. RIP. Viva la raza !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Sandmannwrote on 04.05.2010:[9.0] "Latino Heat fast mit der vollen Punktzahl. Ein grandioser Techniker wenn er nicht gerade mit seinen persönlichen Problemen zu kämpfen hatte (gerade seine Matches bei ROH waren katastrophal). Ansonsten aber ein wirklich guter Wrestler der mit Lie, Cheat and Steal Gimmick bis ganz nach oben kam und zusammen mit Benoit wohl einen der schönsten Wrestlemania Momente kreierte."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Damon Strikerwrote on 01.05.2010:[10.0] "Einer der schwersten Verluste für das Wrestling überhaupt! Überragende In-Ring- und Mic-Skills und ein Charisma, wie man es nur bei sehr wenigen findet! Dazu ein verdammt anständiger Mensch. Hätte ihm einen zweiten, erfolgreicheren Run als World-Champ wirklich gegönnt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Viperwrote on 30.03.2010:[10.0] "Es hat einfach am meisten Spaß gemacht ihn in und neben dem Ring zuzuschauen. Die Segmente und Matches, in denen er beteiligt war, waren einfach klasse. R. I. P. :("
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Masterpiece22wrote on 20.03.2010:[10.0] "Eddie Guerrero, viele meinen er ist durch seinen Tod etwas überbewertet, doch ich finde er hat sich die 10Punkte verdient. Ein toller Entertainer, ein noch besserer Mensch. RIP Eddie, VIVA LA RAZA!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: tobiasthegreatone1wrote on 20.03.2010:[10.0] "Er ist einer der mich als Heel und als Face beeindruckt hat mit seinem I Lie I cheat I steal gimmick hat er wirklich seine Klasse unter Beweis gestellt. Sein Heel turn gegen Rey war genial gemacht da sieht man das Booker doch was geiles erschaffen können. Er hat mich wrestlerisch jedes mal unterhalten und am Mic hat er so packende Promos gemacht. Er war einer der besten Entertainer der jemals im Ring gestanden ist. Ich habe kein Match von Eddie Guerrero gesehen was grottig war er wusste jedes mal wie er das Publikum nehmen muss und das ist einfach 10 Punkte wert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Blackbirdwrote on 16.03.2010:[8.0] "Wird, glaube ich, wegen seines frühen Todes ziemlich overrated. Von vielen hier. Ich hab mir einige seiner Matches angeschaut (also nicht wenige) und bin der Meinung, dass es für 9 oder 10 Punkte nicht ausreicht, weil's einfach bessere Wrestler gibt. Zum Micwork kann ich nichts sagen, könnte ihn vielleicht noch auf 9 hochziehen, aber im Ring konnte er mich nicht hundertprozentig überzeugen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: the king of kingswrote on 11.03.2010:[10.0] "Er war einer der besten Superstars, die das Buisness hatte, wenn nicht sogar der beste. Er hatte Charisma, gute Moves und sehr gute Fehden und Stables. Er ist für mich der beste!  A Legend never dies!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: rv27wrote on 10.03.2010:[10.0] "Ich glaube auf dieserr Welt gibt es nicht viele die ihn nicht lieben und vermissen. RIP EDDIE"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: wwe cagematchwrote on 06.03.2010:[9.0] "Eddie ist einfach eine legende, ich mochte ihn schon immer und als er den WWE Titel gewann war mir klar er wird Hall of Famer! R. I. P Eddie Guerrero!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TG400wrote on 04.03.2010:[10.0] "Nur wegen ihm habe ich angefangen Wrestling zu gucken. So jemand wird es nie wieder geben. R. I. P. Eddie"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Cripplerwrote on 03.03.2010:[10.0] "Ein kompletter Wrestler.  Er hat alles was einen Wrestler ausmacht.  Viva la Raza!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: tim ist gaywrote on 04.02.2010:[8.0] "Wirklich ein sehr guter Wrestler und charismatischer Micworker. Leider viel zu früh von uns gegangen......es ist einfach zu traurig, dass er passieren musste nachdem er sein Leben so positiv geändert hatte und sich den Drogen losgesagt hatte. Ich bin sicher, dass wenn er noch leben würde, wieder WWE oder WHC geworden wäre. RIP Eddie you will never be forgotten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TheUndertakerwrote on 04.02.2010:[10.0] "Eddie war wohl der Wrestler mit dem besten Gesamtpaket an Charisma und In-Ring Skills. RIP Eddie."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TheROCKwrote on 22.01.2010:[9.0] "Lebte sein Leben lang für dieses Business. Bekam im Jahr 2004 die verdiente Titelregentschaft. Schon vor seinem Tod eine Legende."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: PrideFCwrote on 14.01.2010:[10.0] "Einer der komplettensten Worker. Vom Wrestling zum Micwork, von der Mimik bis zur Ausstrahlung, einfach nur Top."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Schandmaulwrote on 13.01.2010:[8.0] "Wird zwar meiner Meinung nach tatsächlich oft überbewertet, aber das ändert nichts dran das er dennoch sehr gut war. Gut am Mic, sehr gut im Ring, wenn auch bei beidem nicht ganz ander Spitze."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: KASHwrote on 13.01.2010:[10.0] "In eine Reihe mit Jericho und Michaels zu stellen... nen Trifactor Athlet wenn man so will : Ring Skills, Mic Work, Charisma = Entertaiment. Schade das er erst Anfang 2004 als Uppercarder etabliert wurde. Der war gerade erst oben angekommen und hätte bis heute den Main Event und die World Title Historys prägnant geprägt. Da wären bestimmt noch gute Programme gegen Benoit, Cena, Edge, RKO, HHH und co gekommen, aber hätte, wäre, wenn zählt alles nicht. Wir können uns nur an dem erfreuen was er uns hinterlassen hat und das ist ein Bilderbuch-Step-by-Step Aufstieg in den Main Stream Main Event."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Y2J Problemwrote on 04.01.2010:[10.0] "wir werden dich nich nie vergessen! einer der besten worker im Ring sowie am Mikro ist viel viel zu früh uns gegangen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Kane123wrote on 02.01.2010:[10.0] "Unglaublich witztig und super Wrestler, der verdient in der HoF ist ! R. I. P"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Borkwrote on 24.12.2009:[10.0] "In meinen Augen sammeln sich immer noch Tränen, wenn ich an ihn denke. Dann schau ich mir wieder Matches von dem wohl besten Wrestler aller Zeiten an und fühle mich an genau den Tag zurückgesetzt, als ich ihn zum ersten Mal im Fernsehen sah. Von dort an eröffnete Eddie mir die Wrestlingwelt mit all seinen schmutzigen, aber auch großartigen Momenten.   Er weilt nicht mehr unter uns, aber er möge für immer in unseren Herzen sein verschmitztes Lächeln zu einem fiesen Grinsen machen, seinen Gegner mit dem Stuhl umhauen wenn der Ref nicht hinschaut, sich dann auf den Boden werfen, vor Schmerzen krümmen und letztendlich sich den Sieg ercheatet haben.   Viva la raza!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: downtown2wrote on 10.12.2009:[9.0] "Ich werde an dieser Stelle keine Trauer-10-Punkte verteilen, Guerrero hat etwas Besseres verdient, nämlich eine Rückbesinnung auf seine Leistungen zu Lebzeiten. Er war den Großteil seiner Karriere einer der besten Midcard Pure Wrestler auf dieser Erde und entwickelte in den letzten Jahren sogar noch außerordentliches schauspielerisches Talent. Diese Jahre gehören mit zum Besten, was man je bestaunen durfte. Leider hielt er den Druck als Headliner der WWE nicht aus, was ihn dafür bewundernswert menschlich machte. Großer Wrestler und noch größerer Mensch."
Rating: 9.0
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Papa Popanzwrote on 23.11.2009:[10.0] "Genialer Entertainer Toller Wrestler Schade, dass er uns verlassen hat R. I. P."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: lagunswrote on 20.11.2009:[9.0] "Also ich finde ja, das bei den Guerreros leider oft mit zweierlei Maß gemessen wird. Chavo kann machen was er will und wird immer der kleine Möchtegern sein, wärend bei Eddy schon n Splash vom Seil reicht (den konnte sogar der Warrior und das anziehen der Beine ist erstens total sinnlos und sieht zweitens noch bescheuert aus) um ihm ne 10 zu geben.  Naja, trotzdem ist er n super Wrestler und darum kriegt er auch die Punkte."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TheLoudMouthwrote on 16.11.2009:[10.0] "I LIE, I CHEAT, I STEAL! Eddie Guerrero war immer einer meiner Faves, grandios im Ring, stark am Mic und natürlich Charisma ohne Ende."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: asraelwrote on 14.11.2009:[8.0] "Auch wenn ich dafür jetzt viele Minus Bewertungen bekomme: Eddie Guerrero ist so der typische Fall, wie jemand durch seinen Tod richtig verklärt wird. Ich fand Eddie die meiste Zeit grausam langweilig und uninteressant. Erst mit dem Lie Cheat Steal Gimmick fand ich ihn gut, auch seine Fehde mit Chavo war super - aber danach mit der Fehde um Reys Sohn ging man schon wieder in eine Richtung, die grauenhaft schlecht war. Eddie war ein guter Wrestler, der viele miese Gimmicks und Fehden hatte, was dann letztendlich von den relativ guten letzten Jahren überstrahlt wird."
Rating: 8.0
Sentiment: 0.11666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: NewGuywrote on 04.11.2009:[4.0] "Ich kann dem Menschen ebenfalls keine volle Punktzahl geben! Ich schätze mal die meisten 10er Wertungen bekommt er weil sein Tod von der WWE so gepusht wurde! Keine Frage dass er viel zu früh gestorben ist und dass man ihn vermisst, andererseits will man mir wirklich erzählen er ist seit 2002 clean wenn er 2005 an Herzversagen ausgelöst durch Medikamentenmissbrauch starb? Jaja ich weiß, das ist durch den Missbrauch die Jahre zuvor passiert und er hatte damit nichts mehr am Hut aber hier ein großes naaajaaaaa von mir! Das soll man glauben? Hat jahrelang Drogen geschluckt und nichts war und nachdem er 3 Jahre lang clean war soll auf einmal aus heiterem Himmel sowas kommen? Klingt schon recht eigenartig! Außerdem war er soooo besonders auch nicht! Wie schon gesagt ich schätze der Großteil der Punkte gibs hier wegen seinem Tod und das von Leuten die andauernd meckern dass man doch "das wrestlerische" beurteilen soll..."
Rating: 4.0
Sentiment: 0.515625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: gharwrote on 24.10.2009:[10.0] "Leider hab ich seine beste Zeit nicht miterlebt, da ich zu der Zeit kaum Wrestling gesehn habe. Allerdings hab ich mir viele alte Matches und Promos mit Eddie angesehn und es berührt mich immer wieder und die Augen werden feucht. Ein begnadeter Entertainer der uns noch viele tolle Momente beschert hätte ist leider viel zu früh gestorben. R. I. P. Eddie we'll never forget you!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Xtreme94wrote on 21.10.2009:[10.0] "Ist echt zu Schade das er weg ist wäre toll gewesen in mal Live gesehen zu haben.  Er war wirklich ein toller Wrestler denn man eigentlich schon garnicht beschreiben kann er hat gerne Spaß bei seinen Matches gemacht und er ist immernoch ein Liebling der Fans."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Paulinawrote on 28.09.2009:[10.0] "Für mich auf jedenfall einer für den 1 mal World Champ zu wenig war. Er konnte Face und Heel perfekt spielen und konnte das Gimmick auch gut für beide seiten benutzbar machen. Wrestlerisch ganz klar einer der besten, er hatte Geniale Matches gegen Rey (da mehr die in der WCW) Chris Benoit und Kurt Angle, und noch unzählige andere, Hall of Fame war gold richtig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Matt Mackswrote on 12.09.2009:[9.0] "Eddie Guerrero war ein unglaublich charismatischer Wrestler, der zeitweilig (2003) sogar alles in den Schatten stellte, was die WWE sonst aufzubieten hatte. Er wird nach seinem tragischen Tod für meine Begriffe ein wenig zu sehr glorifiziert, weil auch bei Eddie nicht alles Gold war, was glänzt -- doch das ist auch irgendwo verständlich. Eddie sorgte 2004 für die Comeback-Story des Jahres nach seinem Sieg über Brock Lesnar, womit er (zurecht) viele treue Fans hinzugewann."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: 123 kidwrote on 03.09.2009:[10.0] "Er war mit Abstand mein Lieblingswrestler, schon allein deshalb bekommt er von mir 10 Punkte. Er war großartig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Neuhofwrote on 27.08.2009:[10.0] "Absolut nicht überschätzt, sondern einfach nur realistisch: 10 Punkte für einen sehr guten Techniker, Schauspieler, Mic-Worker, der ein super Gimmick super rüberbrachte."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Weihnachtsmannwrote on 20.08.2009:[4.0] "Meiner Meinung nach total überbewertet. War zwar ein guter Techniker, leider habe ich mich aber von ihm nie unterhalten gefühlt. Weder sein Ringstil noch sein Micwork haben mich je angesprochen."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: jokingwrote on 18.08.2009:[10.0] "Eddie war ein super lustiger Typ, sein Gimmick wurde nie langweilig. Außerdem war er ein absoluter Außnahmetechniker im Ring !!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MajinSitwrote on 07.08.2009:[10.0] "Über die Toten nur Gutes heisst es doch so schön. Und bei Eddie gibt es eigentlich nur gutes zu erzählen. 11 von 10 Punkten von mir dafür^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Brainbreakerwrote on 10.07.2009:[9.0] "Eddi fehlte immer das gewisse Etwas in meinen Augen, um einer der wirklich allergrößten der Liga zu sein. Man darf nicht vergessen, dass er bis zu letzt nur bei SD! Erfolg hatte. Allerdings muss man ihm zugute halten, dass gerade seine letzten Heel-Monate überaus genial waren. Außerdem verbindet man schöne Wrestlingmomente mit ihm, ua WM20 oder die Traummatches gegen Rey oder Benoit."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Mick Funkwrote on 24.06.2009:[8.0] "Hat mir nie 100 %ig gefallen obwohl er stark im Ring war und auch sonst alles hatte was man braucht."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: undertaker619wrote on 22.06.2009:[10.0] "Einer der Größten, die es je geben wird in diesem Geschäft!  Eddie hat mich zum Wrestlingfan gemacht, die erste Show, die ich von der WWE am Fernsehn verfolgt habe war 2004 als Eddie beim Judgment Day seinen WWE Titel gegen JBL verteidigt hatte.  Unglaublich Charismatischer Superstar und technisch sowie auch am Mic einer der Besten.  Es ist unglaublich traurig, dass er so früh von uns gehen musste, kaum zu glauben, dass es dieses Jahr schon 4 Jahre her ist!  Ruhe in Frieder Eddie, wir werden dich nie vergessen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Ryklon Stephenswrote on 22.06.2009:[10.0] "Eddie war jemand den man einfach lieben musste. Er war charismatisch wie kaum ein anderer und konnte sowohl als Heel als auch als Face überzeugen. Wenn man sieht wie er nach seinem Tod noch in den Köpfen der Fans weiterlebt ist das schon beeindruckend. RIP Eddie."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TNA Dan Timewrote on 18.06.2009:[10.0] "Auch wenn ich die Mainstream-Produkte nicht mehr verfolge, wird er immer einer meiner Faves bleiben :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: CMFabewrote on 15.06.2009:[10.0] "Einer der besten und mein ewiger Fave. Er hat Charisma wie kein 2ter und wrestler so gut wie kaum einer. Er gehört zur Elite und ist der nicht nur erfolgreichste Mexikanische Wrestler in den USA sondern auch der beste. Einfach nur traurig das er so früh von uns ging. Immer wieder wenn ich Matche aus alten Tagen von ihm anschau bekomme ich Gänsehaut. Einfach nur eine Legende. Eddie, we miss you!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Eddiewrote on 02.06.2009:[9.0] "Es gab Zeiten in denen er mir leider nicht so gut gefiel wie in der WWE mit dem Titel.. Beispiel dafür war die WCW Zeit in der er als Heel unterwegs war, zwar ein cooles, zu ihm passendes Gimmick, aber oft litten die Matches doch unter seinem Böser-Mann Charakter, dafür 1 Punkt abzug, aber 9 ist doch wohl immer nocht sehr gut."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BaptisteZorGwrote on 23.05.2009:[7.0] "Überbewertet durch sein frühes Ableben.  Er war ein solider, meist unterhaltsamer überdurchschnittlicher Midcarder.  Dennoch war er kein Ausnahmetalent des SportsEntertainment und somit gibts gute 7Pkt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Afroman Undertaker 619wrote on 22.05.2009:[10.0] "Eddies Frog Splash ist ein wundervoller Finisher nur schade das er gestorben ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The-Game91wrote on 12.05.2009:[10.0] "Der beste Mexikaner den die WWE jemals verpflichtet hat. Er war ein toller Wrestler und dazu noch Bomben Charisma."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: RIKYwrote on 01.05.2009:[10.0] "Und wenn es eine 100 Punktewertung geben würde dann gäbe es 100 Punkte! Er wird schmerzlichst vermisst."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Masterpiece15wrote on 03.02.2009:[8.0] "Klar, er war nicht schlecht und konnte unterhalten. Jedoch wird er mMn durch seinen zu frühen Tod zu hoch eingestuft."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Father Nelsonwrote on 01.02.2009:[10.0] "He had so much talent! So entertaining. But he couldnŽt fight his demons!"
Rating: 10.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Batista619wrote on 12.01.2009:[10.0] "Eddie ist für mich eine wahre Legende, denn Eddie war der erste Mann den ich beim Wrestling lieb gewonnen habe. Dies geschah auf seine witzige Art und sein gutes Können im Ring.  Einfach viel zu früh verstorben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: CM Dannywrote on 10.01.2009:[9.0] "Eddie ist das Paradebeispiel für das, was bei WWE nicht stimmt. Erst als er deutlich an Muskelmasse zulegte, kam der verdiente Push in den Main Event. Dabei schaffte er es, von Geschwindigkeit und Wendigkeit nicht allzu viel einzubüßen. In Sachen Entertainment natürlich einer der ganz Großen und daher trotz Heel-Aktionen unglaublich beliebt. Eddie bleibt unvergessen."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: hatebreederwrote on 08.01.2009:[10.0] "Eddie war ein Wahnsinnswrestler und ein super Entertainer. Es ist wirklich traurig, dass er damals gestorben ist. Hätte sicher noch den einen oder anderen Worldtitle verdient gehabt. R. i. P. Eddie"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Unrated Superstarwrote on 04.01.2009:[10.0] "Viva la Raza! Gefiel mir sowohl als Face wie auch als Heel sehr gut. Hatte zudem überzeugendes Mic-Work und starke Ring-Fähigkeiten. Wäre er nicht gestorben, wäre er 100pro World Heavyweight-Champion geworden. Eine Frechheit, dass Leute wie Chavo, Vicky und Rey versuche, aus seinem Tod noch Kapital zu schlagen. Seine Matches bei SD! waren es 2005 die mich u. a. endgültig zu einem Wrestling-Fan gemacht haben. PS. : Eddie gewann den WWE-Titel bei "No Way Out '04" und nicht bei Wrestlemania!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Excellence of Executionwrote on 02.01.2009:[9.0] "Hat an vielen Orten und Promotions einiges bis alles erreicht. Als Black Tiger in Japan mehr als sehenswert. Die Krönung seiner Karriere war wohl der Titelgewinn bei Wrestlemania. Er hätte noch lange im Main Event eine Rolle spielen können - da bin ich mir sicher. Doch leider sollte es anders kommen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ScrWwe94wrote on 18.12.2008:[10.0] "Braucht man nichts sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Huzerwrote on 18.12.2008:[10.0] "Super Mann, ich liebe ihn. Der bester Wrestler der gelebt hat. Viva la raza."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Amazing Bluewrote on 06.12.2008:[10.0] "Ich werde mich immer an Eddie erinnern, er hatte Charisma UND Ring-Skills wie kein Zweiter. Rest in Peace Eddie, we all miss you!"
Rating: 10.0
Sentiment: 0.7500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Blazewrote on 05.12.2008:[10.0] "Eine absolute Ikone und der geborene Entertainer. Egal ob in Mexiko, Japan, ECW, WCW oder WWE, dieser Mann hat immer alles bis auf's letzte gegeben. An jeder Show mit, jedem Gegner hat er einfach immer wieder sehr gut überzeugen können. Er ist zwar kleiner als die meisten der WWE Worker gewesen, aber seine Mic Fähigkeiten und unglaubliches Charisma haben ihm neben dem wrestlerischen Können geholfen sich perfekt unter den anderen durchztusetzen. Viele sehen im Ring mit ihren Titeln gut aus oder dabei wenn sie irgendwelche Jobber squashen. Eddie war genau wie ein Benoit einfach die Verkörperung des modernen Wrestling, so wie es sein sollte. Ich hätte mich wirklich riesig gefreut wenn anstatt von einem Triple H, Bill Goldberg oder auch einem Batista öfters jemand wie Eddie im Main Event als World Champ gestanden hätte. Aber WWE ist halt ein Kinderprogramm, wo die großen, schwergewichtigen und monströsen Wrestler das Sagen haben, daran kann man nichts ändern. Schade nur, dass die Zeit mit ihm als Wrestler so kurz war, vor allem wenn man bedenkt, dass er kurz vor dem erneuten World Titlegewinn stand. Eddie Guerrero: Rest In Peace!"
Rating: 10.0
Sentiment: 0.20416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Chris Herowrote on 01.12.2008:[10.0] "Es wurde sicherlich zu viel Hype gemacht nach seinem Tod, bis hin zum Heavyweight-Titel-Gewinn von Rey Mysterio, das war sicherlich übertrieben. Nichts desto trotz, Eddie war immer unterhaltsam, hat immer tolle Matches abgeliefert und war vielleicht der beste Schauspieler, den die WWE je hatte. R. I. P. Eddie, we will never forget you!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DayJay2kwrote on 26.11.2008:[6.0] "Einer von vielen und durch seinen Tot einfach nur überbewertet. Nicht schlecht aber auch nicht eine eins."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: SirJohnsonwrote on 22.11.2008:[6.0] "Fand ihn nicht wirklich gut. Mittlere MIttelmaß für mich. Gegen Mysterio und Angle war er gut besetzt, sonst unnötig..."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DXstarF5wrote on 13.11.2008:[10.0] "Ich möchte nur mall sagen das die Wertung von muecke gelöscht werden solte. Sie weicht sehr stark von den anderen Wertungen ab! . Und zu Eddie Guerrero er war einer der größten Wrestler er war sehr gut im Ring und hatte unglaublich viel Charisma. Er war unglaublich und hat einen mitgerissen sowas habe ich heutzutage bei keinen anderen Wrestler mehr. deswegen 10. P RIP"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: squadra3wrote on 06.11.2008:[9.0] "Ein größer Entertainer (wie man ja jetzt sagen muss) aber die 10 gibt es nur für die größten, und da gehört er nicht ganz dazu. Wird aufgrund seines Ablebens von vielen überqualifiziert!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: stingersplashwrote on 05.11.2008:[7.0] "Er ist natürlich viel zu früh verstorben, aber ich kann dafür keinen bonus geben.  Bei ihm ist der funke zu mir irgendwie (leider) nie so richtig übergesprungen.  Sicherlich ein Top-wrestler und auch am mic sehr stark, aber wie gesagt, ich war nie ein großer fan von ihm. Für seine Fähigkeiten und das für ihn perfekte gimmick gibts aber immernoch eine 2-3."
Rating: 7.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: real americanwrote on 05.11.2008:[9.0] "Ein guter Techniker und vor allem ein Gott am Mic, durch seinen fruehen Tod aber ein bisschen ueberglorifiziert. RIP Eddie Guerrero!"
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Animal360wrote on 22.10.2008:[10.0] "Er lebte dieses Business und spielte seine Rollen immer erstklassig. Seine Art machte ihn Legendär und deshalb kann es nichts anderes als eine 10 geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Adamlewrote on 05.10.2008:[10.0] "Er gehörte wohl zu den beständigsten und besten Heels des Sports Entertainment. Einfach nur ein genialer Wrestler. RIP"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: mugel 187wrote on 04.10.2008:[10.0] "Wrestlerisch war er einer der besten den es im Mainstream Wrestling gab und am Mic einfach perfekt (gerade als Heel)!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MrWrestlingwrote on 30.09.2008:[10.0] "Er ist einer der besten Wrestler aller Zeiten. Ruhe in Frieden"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: doggdropwrote on 19.09.2008:[10.0] "Der Beste Latino-Wrestler der jemals einen wwe Ring betreten hat!!! im Ring war er top, er sprühte nur so mit charisma und am mi war er ein Gott-.  Ruhe In Frieden Eddie Guerrero"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MICHAELAundMARKUS4EVERwrote on 19.09.2008:[10.0] "RIP Eddie. Ein klasse Wrestler und Entertainer der sein Leben in den Griff bekam und deshalb meinen höchsten Respekt genießt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Wise Warriorwrote on 15.09.2008:[8.0] "War gut und charismatisch, aber nicht beliebig einsetztbar."
Rating: 8.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Julezwrote on 07.09.2008:[10.0] "Er zog das Publikum regelrecht in seinen Bann. Sie bejublten ihn egal ob Heel oder Face.  Die Fans liebten ihn einfach. In dem Sinne: Viva la Raza und R.I.P"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: chimpwrote on 03.09.2008:[8.0] "Gut ja, aber doch ueberbewertet. Sein viel zu frueher Tod ist tragisch, hat ihm aber einen Legendenstatus eingebracht, den er sonst sicher nie erreicht haette."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: King of Queenswrote on 27.08.2008:[9.0] "Im Ring klasse, ebenso wie am Mic. Dazu sehr charismatisch und mit guten Gimmicks - egal ob als Heel oder Face. "
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MarcoR3wrote on 23.08.2008:[10.0] "Spitzen Stil, tolle Gimmik. Viva la raza Eddy. RIP"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: nicojansonwrote on 18.08.2008:[10.0] "Super Kerl, viel zu früh von uns gegangen. Hab ihn immer gern gesehen und fand seinen Spruch (bzw. Gimmick) spitzenklasse. Die Fehde gegen Rey war zwar nicht wirklich toll, doch da konnten beide ja nix für. Eddie 4Ever. I lie I cheat I steal, ja man!!!!!!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rated-RKOwrote on 12.08.2008:[10.0] "Er war ein super Mann das Match zwischen ihm und Brock Lesnar wo er sich dann den Titel holen konnte werde ich nie vergessen. Sowohl als Face als auch Heel super er verdient 10 Punkte  R.I.P VIVA LA RAZA"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Reyforever1wrote on 07.08.2008:[10.0] "Klasse Wrestler!!!Leider viel zu früh verstorben. Danke Eddie R.I.P"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Fanthaizawrote on 05.08.2008:[10.0] "Einer der größten Wrestler. Super Technik,super Micwork,klasse Gimmick, super Fehden und auch guter Karriereverlauf. Hat es in fast allen großen Promotions geschafft und einige unvergessliche Momente zurückgelassen! Einer der ganz großen!    RIP  Latino Heat"
Rating: 10.0
Sentiment: 0.3263888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: wXw Fanwrote on 25.07.2008:[9.0] "Sehr gutes Gesamtpaket, aufgrund seines leider viel zu frühen Todes sehr overrated."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Fliplippwrote on 24.07.2008:[8.0] "yeah Latino Style aber leider hat er jam drogen genommen und so     aber trotzdem find ich ihn gut"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: BlackPhoenixwrote on 19.07.2008:[10.0] "Eddie War und Ist der Größte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: StoneColdRevowrote on 18.07.2008:[10.0] "Einfach eine Legende. Ich mochte besonders seine Comedyszenen. Besonders wo er Kurt Angle verarscht hat. Das war genial! Er hatte auch noch richtige Moves, was ja heut nicht mehr so üblich ist. Viel zu früh gestorben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Riley Mathewswrote on 29.06.2008:[10.0] "Er ist und bleibt einer der Besten allerzeiten denn er hatte alles was man in diesem Business braucht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ecw foreverwrote on 22.06.2008:[10.0] "Ein Kompletter Wrestler!! Ich sage das nicht weil er Tod ist sondern weil ich es so meine. Er konnte Richtige Old Shool machen siehe gegen Low Ki(Liga vergessen^^).Er konnte das Lucha Wrestling siehe WCW. Er konnte immer überraschen immer was neues zeigen. Leider durfte er nur selten sein ganzes Potenzial bei WWE ausschöpfen. Er war der geborene Entertainer man muss sich nur die ganzen Segmente anschauen. Sein Gimmick ist auch genial. Dieser typ war wie oben gesagt ein KOMPLETTER Wrestler. Ich vermisse ihn"
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Tomkowrote on 24.05.2008:[8.0] "Ordentlicher Worker.. Nicht mehr und nicht weniger.. "
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: The Beastwrote on 17.05.2008:[10.0] "Latino Heat still burn! "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: homicidal cena michaelswrote on 12.05.2008:[10.0] "Hat mich immer unterhalten , er war ein wirklicher Entertainer, lustig aber auch ein klasse Wrestler. R. I. P."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rated HHHwrote on 17.04.2008:[10.0] "Nahezu Perfekter Wrestler mit allem was man sich als fan wünscht. Viva La Raza !!! We miss you Eddie"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Fran7iCwrote on 12.04.2008:[10.0] "Bester Wrestler den es jemals gab. Seine "I lie, I Cheat, I steal"-Comedy war grandios!  RIP"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: mallberrywrote on 07.04.2008:[10.0] "cheat to win"
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: asdfwrote on 07.04.2008:[10.0] "der beste aller zeiten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ultimate-warrior-xwrote on 03.04.2008:[10.0] "EG war einer der besten Entertainer des Wrestling. Sein Gimmick war eines der besten die es im Wrestling gab. Dazu noch das Charisma von EG und seine Fähigkeiten im Ring und schon hat man den perfekten WWE-Superstar."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Perry Coxwrote on 22.03.2008:[10.0] "Ein sehr guter und beliebter Wrestler, der Tod hat ihn so tragisch getroffen!  R. I. P Eddie"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Latino Heat Fanwrote on 20.03.2008:[10.0] "Du warst der beste du hast alle techniken beherrscht we miss you   R.I.P. Latino Heat"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ZuluBunsenwrote on 19.03.2008:[10.0] "Kaum zu glauben, dass es schon zweieinhalb Jahre her ist. Die Begründung ist wohl klar: Ein Worker, der Zeit seines Lebens alles gegeben hat und mich, seit ich als gaaaanz kleiner Mark die WCW auf DSF gekuckt habe, begeistern konnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DonTwrote on 17.03.2008:[10.0] "Ein Charisma, das seines gleichen sucht, verbunden mit einer wunderbaren Technik. Eddie - we miss you!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Maikwrote on 15.03.2008:[10.0] "Eddie war immer mein Lieblingswrestler... Ich weiß noch als ich in der Schule im Internet war und gelesen hab das er gestorben is, ich hätte fast geheult. Er war im Ring super und sein Gimmick war auch immer klasse, hat mir als heel und auch als face gefallen. Echt schade das es nicht zu einer zweiten World-Titel-Regentschaft gekommen is, er hätte es verdient gehabt..."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: guy whithout a namewrote on 14.03.2008:[10.0] "we miss you legend"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MINOtauruswrote on 10.03.2008:[10.0] "In meinen Augen DAS Zugpferd von SmackDown! von 2004 bis zu seinem viel zu frühen Tod.  Ein wirklicher Allrounder, der einfach alles glaubhaft rüberbringen konnnte; egal ob er Heel war oder Face."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Felice-del-mondowrote on 02.03.2008:[10.0] "Viva La Raza- Promos und Comedy Segmente einfach klasse, Ring-Performance einzigartig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TheMasterpiece87wrote on 21.02.2008:[10.0] "Verdientermaßen ein Hall of Famer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Staniwrote on 21.02.2008:[8.0] "Ein guter Wrester, der leider zu früh ging. Konnte sehr oft überzeugen aber enttäuschte auch sehr oft. Er brauchte sehr lange, um ein für sich im amerikanischen Mainstream passendes Gimmick zu finden."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: wayne666wrote on 01.02.2008:[10.0] "Eddie war die Lie-Cheat-Steal Geschichte quasi auf den leib geschrieben!  keiner kann sowas so geil rüberbringen wie eddie es konnte! RIP Eddie VIVA LA RAZA"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Stone Cold Andywrote on 04.01.2008:[10.0] "Es macht mich immer noch traurig, an ihn zu denken. Ein ganz großer Wrestler, der in meiner Anfangszeit als Wrestlingfan bei SmackDown! die Bude gerockt hat. Mit dem mexikanischen Gauner ein großartiges Gimmick und super Leistungen machen Eddie wirklich unvergesslich!"
Rating: 10.0
Sentiment: -0.16666666666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MA Excellentwrote on 29.12.2007:[8.0] "Eddie Guerrero, viva la Raza... Noch heute bin ich etwas traurig, wenn ich etwas über ihn lese oder noch mal ein Match von ihm sehe. Das erste Mal fiel Eddie mir auf, als auf Eurosport asiatisches Wrestling zu sehen war und er gemeinsam mit Chris Benoit antrat. Ich dachte damals "Wow, warum holen die nicht mal solche Leute zur WWF!". So sollte es ja dann auch kommen. Er gefiel mir in den WCW Zeiten auch sehr gut, die Comedy Phase als Latino-Lover der WWF war genial wie auch die 'lie, cheat, steal' Zeit. Später dann, als man ihn in den Mainevent gepusht hat: HISTORY WAS MADE! Der Sieg gegen Brock Lesnar ist einer der besten Momente ever, genau wie der Wrestlemania Sieg gegen Angle mit dem Abschlussbild zwischen ihm und Chris, da war Wrestling wirklich mal rea"
Rating: 8.0
Sentiment: 0.15625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: AMMOwrote on 20.12.2007:[10.0] "Möchte ich nicht mehr zu sagen. RIP"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Texas Tornardowrote on 17.12.2007:[10.0] "Fand ihn immer gut und lustig.Ein super Wrestler. War sehr traurig als mich die nachricht erreichte."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Alan Smitheewrote on 19.11.2007:[10.0] "Eddie gehörte, zusammen mit dem rest der Radicalz, zu den Ersten Wrestlern die ich allein aufgrund des In-Ring-Talents gerne gesehen habe und in den letzten Jahren seiner Karriere hab ich dann auch den rest seines Total Package lieben gelernt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: xXJohnCenaXxwrote on 06.11.2007:[10.0] "R.I.P Eddie Guerrero - Legenden sterben nie und du warst eine Legende.Wir werden dich nie vergessen. "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: antihiphop2002wrote on 29.10.2007:[10.0] "Ich war ganz schön fertig als ich von seinem Tot erfuhr. Hat mich immer begeistert. Einer der Besten im Ring, Charisma wie kein anderer, am Mic auch super klare note 1."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Rated-R-Fanwrote on 29.10.2007:[8.0] "Er wurde meiner Meinung nach zu lang in der Midcard eingesetzt.Doch nach seinem Titelgewinn gegen Lesnar durfte er endlich seine Klasse unter Beweis stellen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: WCWlerwrote on 26.10.2007:[2.0] "Er hat mich nie unterhalten. Seine Matches waren nicht schlecht aber ich konnte mit ihm nie was anfangen. Weder in der WCW und schon gar nicht mit den sehr schlechten Storylines in der WWE."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Frommeltwrote on 15.10.2007:[10.0] "Ich vermisse ihn. Er war immer einer meiner Lieblinge."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: HHH-Stephwrote on 12.10.2007:[8.0] "Ich muss sagen er war ein sehr guter Worker mit ner Menge Charisma und guten Ringfähigkeiten. Trotzdem muss ich sagen, dass ich es nicht gutheißen kann, dass, als er gestorben ist, auf einmal Jedermanns Lieblingswrestler geworden ist. Trotzdem ein guter Wrestler."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Hunter2007wrote on 04.10.2007:[10.0] "Unterhaltung vom Feinsten! Eddie hat in vielen Matches geschummelt, mal wurde er auch dabei erwischt, aber es war immer unterhaltsam. Das erste Match, dass ich im Wrestling überhaupt geguckt habe, war 2005 ein Match zwischen Rey Mysterio und Eddie. Ich hatte keinerlei Ahnung davon, doch Eddie hat mir sofort im Kampf und am Mic gefallen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Oli10wrote on 03.10.2007:[8.0] "Sehr geil! Coole Show! Latino Heat!!!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Matt Hardywrote on 03.10.2007:[10.0] "Ich galube ich vermisse keinen anderen Wrestler so wie ihn... Er war ein genialer Wrestler, konnte im Mic unterhalten und war einfach unglaublich charismatisch... war... leider... R. I. P. Eddie, nur die besten sterben jung.."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Manuelwrote on 30.09.2007:[10.0] "Er war einer der ganz großen. 2004 war er mein absoluter Fav Wrestler, aber dann die Fehde gegen Rey fand ich nicht so gut. Aber trotzdem gibt es die volle Punktzahl, da er mich immer wieder mit seiner Comedy unterhalten hatte. R.I.P. Eddie"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Scotty 2 Hottywrote on 20.09.2007:[8.0] "Habe Eddie immer sehr gerne gesehen. Lieber als Heel als, als Face. Sein Match und Titelgewinn gegen Brock Lesnar von No Way Out 2004 bleibt jedenfalls unvergessen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: DannyGeigwrote on 06.09.2007:[10.0] "War einer der besten Superstars die es gegeben hat, auch heute kommt noch kein Superstar an Eddies Komik heran, auch sein Micwork und seine Action im Ring war begeisternt. Eddie lebt in den Herzen der Fans weiter und wird denk ich mal auch da immer einen Platz behalten. RIP Eddie Guerrero"
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Berndwrote on 29.08.2007:[10.0] "Einer der besten Wrestler, die ich je gesehen habe. Unschlagbar als Heel, selbst Schwachsinn wie Latino Heat hinderte ihn nicht daran over zu werden und was er im Ring machte ergab einfach einen Sinn. Ich vermisse ihn einfach."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Mirawrote on 28.08.2007:[8.0] "Wirklich wirklich gut, aber dennoch gibts immer noch einige wenige, die für mich persönlich diesen kleinen Kick besser sind oder waren.Und vielleicht ist das jetzt pietätslos, aber Zitat B A Billy Gunn "... naja , Rest in Piece" - LOL, bin fast vom Stuhl gekippt!"
Rating: 8.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: shannonmoorewrote on 17.08.2007:[10.0] "Blühte erst gegen Ende seine Laufbahn auf was Comedy betrifft. Ein großartiger Wrestler und einer der dem immer etwas daher hinkenden Smackdown Brand die Treue hielt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Blue Meaniewrote on 04.08.2007:[10.0] "Sehr guter Worker in jeder Hinsicht. Gimmick, Mic Work, In-Ring Skills, alles an ihm war spitze! Ob er nun durch seinen frühen Tod overrated ist, sei mal dahingestellt. Fakt ist, dass er wirklich gut war in dem was er tat und ich denke, dass kann keiner abstreiten! RIP Eddie Guerrero 1967-2005. I will never forget you and I will always miss you!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Jannikwrote on 27.07.2007:[10.0] "ein außnahme wresler und einer der wenn nich sogar DER beliebteste wrestler aller zeiten...man merkt wie sehr eddie smackdown fehlt(bestes beispiel ----> the great khali ist champion)"
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Blade Bourdeauxwrote on 02.07.2007:[10.0] "Immer wenn ich ihn sah, musste ich sofort lachen. Er war einfach extrem witzig und ein Worker, den man mögen musste. Dazu kamen seine Extraklasse im Ring und das Lügen, das Stehlen und das Betrügen. Ganz klare Note 1"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ShaneOwrote on 28.06.2007:[8.0] "Ich mochte Eddie. Im Ring war er gut, am Micro hat er mich auf gut gefallen. Zweimal gut - ergibt - 2! RIP Eddie"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: HCN007wrote on 24.06.2007:[10.0] "DER GRÖßTE MEXIKANISCHE WRESTLER ALLER ZEITEN-WAR SCHON ZU LEBZEITEN EINE LEGENDE; DIE FÜR SICH SPRACH-SMACKDOWN HAT ZU FRÜH IHREN GRÖßTEN STAR VERLOREN EDDIE- I MISS YOU"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Adrammelechwrote on 24.06.2007:[6.0] "Durch den überraschenden Tod ist er meinre Meinung nach überbewertet! Trotzdem respektabler Sportler."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Keiner hatte so ein Showtalent wie Eddie! Außerdem war sein Gimmick und seine Leidenschaft für das Business einzigartig! Eddie 4 life!!! I lie, I cheat, I steal..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ABOOgeymanwrote on 24.06.2007:[10.0] "Eddie war einener der besten im gesamten Business, egal ob im Ring oder am Mic und sein Gimmick war natürlich auch einfach nur genial!!!R.I.P, vielleicht sieht man sich ja eines Tages ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: TugayGwrote on 24.06.2007:[10.0] "Einer der besten. Charisma volle Punkt Zahl; Mic volle Puntkzahl und Im Ring fast volle Punktzahl. Einer der nach ganz oben gehört und heute wahrscheinlich WHC wäre. Einer der nur das beste verdient. I miss you Eddie :-( "
Rating: 10.0
Sentiment: -0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: wrestler of the worldwrote on 24.06.2007:[10.0] "Er war einfach der beste! Seine Matches habe ich immer gerne angeguckt und sie waren auch sehr lustig, vorallem mit den Latino Heat Style. Schade, dass er so schnell von uns gehen musste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: MrFoxwrote on 24.06.2007:[8.0] "Eddie ist einer meiner Lieblinge. Guter Wrestler & Entertainer. Aber trotzdem glaube ich das er wegen seines Todes oft zu hoch gelobt wird."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Chris Cagewrote on 24.06.2007:[10.0] "Da schließ ich mich an, auch ich habe wegen Eddie im Jahr 2004 angefangen Wrestling zu schauen. Niemand wird jemals Eddie erstetzen können. R.I.P"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Mr Wrestlemaniawrote on 24.06.2007:[10.0] "Viva La Raza!!! wir werden ihn nie vergessen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: hostrodwrote on 24.06.2007:[10.0] "Dieses Schlitzohr war das Beste, was ich im Wrestling je gesehen habe! Mein absoluter Lieblingswrestler, unvergessen sein Titelgewinn bei No Way Out 2004 gegen Brock Lesnar und die Szenen bei Wrestlemania 20 mit einem feiernden Benoit. Das war der letzte große Vorhang für einen Mann, der leider viel zu früh gehen musste. Der Promo-Wallpaper von No Way Out 2004 ("Wanted for: Lying. Cheating. Stealing.") ziert auch heute noch meinen Desktop - so möchte ich ihn in Erinnerung behalten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: timbo7111wrote on 24.06.2007:[8.0] "Super Wrestler, leider habe ich ihn zu WWE-Zeiten nicht erleben dürfen."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Furyawrote on 24.06.2007:[10.0] "Wirklich einer der besten Wrestler, er hatte einfach von allem etwas. Er war stehts witzig und konnte als Hell wie als Face überzeugen. Einfach einer, der viel zu früh von uns gegangen ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: ShakDragoonwrote on 24.06.2007:[10.0] "Super-charismatischer Wrestler, der leider viel zu früh verstarb! R. I. P."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Charismabombe, hervoragender Techniker, fantastisches Gimmick - was will man mehr...Eddie Guerrero Rest in Peace!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Raywrote on 24.06.2007:[8.0] "Für mich hatte er seine beste Zeit als Black Tiger und wurde danach immer schwächer. Sein WWE-Gimmick war wirklich ein sehr Gutes, aber für mich konnte er dann nie wieder an seine Glanzzeiten in Fernost anknüpfen. Trotzdem zu jeder Zeit ein überdurchschnittlicher Wrestler, der von jedem Attribut her in den Main-Event gehörte."
Rating: 8.0
Sentiment: -0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Steven McWheelerwrote on 24.06.2007:[8.0] "War ein Supertyp,doch leider nach seinem viel zu frühen Tot,overrated,was ich auch nicht so toll finde,da man den Styler Eddie so in Erinnerung behalten sollte wie er war...R.I.P"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Bullit69wrote on 24.06.2007:[10.0] "Einer der Top 10 Wrestler aller Zeiten!!Leider zu früh von uns gegangen! R.I.P"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Babuswrote on 24.06.2007:[8.0] "Super Wrestler und guter Entertainer, der leider viel zu früh von uns gegangen ist."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: UltimateCarebearwrote on 24.06.2007:[6.0] "In meinen Augen einfach nur unglaublich überschätzt. Seine Leistungen in Japan waren ohne Zweifel hervorragend doch danach gehörte er für mich immer höchstens zum Durchschnitt und es gab wohl niemanden der mir so wie er auf die Nerven gegangen ist, egal mit welchem seiner Gimmicks."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=497&gimmick=Eddie+Guerrero
Comment: Carlito Cenawrote on 24.06.2007:[10.0] "Der "Mexicaner" schlechthin. Sein Cheat, Lie and Steal-Image konnte er so perfekt verkörpern wie kein anderer. Erstklassiger Wrestler, der leider auf dem Höhepunkt seiner Karriere die Früchte seiner Arbeit nicht mehr wirklich erleben konnte. WeŽll miss you!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: wrestlingswiftiewrote on 29.01.2025:[8.0] "A little overrated, but still very good. I prefer him over The Rock, but that doesn't mean I prefer his half of the Attitude Era over The Rock's. It was repetitive, trash TV. Imagine Jerry Springer with short phony looking punches-and-kicks matches (and DQ finishes.) But back to Stone Cold himself, he was solid. Once again he is a little overrated, but it's mainly by dads who wanna relive the glory days. Pre-Rattlesnake Austin was decent in the ring, but once he went to the WWE, and got that neck injury? His match quality drastically decreased. As far as promos go, he actually was good as his famous Rattlesnake gimmick, it's just that he was just better when he was on the come up instead of when he was the top guy. The Bret match, the raw and authentic promos, I'm talking about that sweet spot from 1996-'97. But when he became the face of the company, he, much like his era, was just too repetitive to be enjoyable."
Rating: 8.0
Sentiment: 0.10033589743589744
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: notanothersmarkwrote on 23.01.2025:[10.0] "Can't put this any other way besides the single GREATEST wrestler to ever walk the face of this planet. He had EVERYTHING you could ask from a wrestler and more, the star power, the intensity, the toughness, the entrance, the aura, the charisma, the in-ring ability. Stone Cold will forever be the GOAT."
Rating: 10.0
Sentiment: 0.14071428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Anas Kingwrote on 20.01.2025:[4.0] "Probably the biggest draw in pro wrestling ever. I believe he's the only wrestler who sold more merchandise than John Cena at their peaks. He wasn't a heel, he wasn't a typical babyface. He was just a badass. There's no one in the history of wrestling that used to get or gets the pops that he got in his time. Having said that, he was an average wrestler. Yes, there were some matches that were very good. But overall, his match catalogue doesn't excite me. Except for his 3:16 and a couple other promos, his mic work was also average."
Rating: 4.0
Sentiment: 0.10229166666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 77mega6wrote on 19.01.2025:[9.0] "Stone Cold Steve Austin is the definition of "badass." The dude had an attitude that shook the entire wrestling world. His rebellious spirit and iconic "Austin 3:16" quotes are timeless. Watching him smash beers and take on the corporate world was like living a rockstar fantasy. He embodies the whole punk vibe of wrestling that resonates with anyone who wants to stick it to the man. An absolute legend in every sense!"
Rating: 9.0
Sentiment: 0.07857142857142858
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Its Clobbering Timewrote on 10.01.2025:[10.0] "The Greatest babyface in the history of professional wrestling. Nobody was able to get the crowd to go crazy quite like Stone Cold. Once that glass shatters the whole place goes nuts and starts freaking out. Stone Cold is the most iconic wrestler of all time, from him pushing Mike Tyson, his feud with Vince & The Rock and of course him chugging beer. He has the most famous segments of all time. The Texas Rattlesnake is also amazing on the mic and in the ring, his Austin 316 promo is one of the greatest promos of all time. He's also had some banger matches with the likes of The Rock, Bret Hart, Triple H & Kurt Angle. Austin is also a 3x Royal Rumble Winner, 4x WrestleMania Main Eventer, 6x WWF Champion, 2x Intercontinental Champion, 3x WCW United States Champion, 4x Tag Team Champion & 1x King of the Ring. Stone Cold Steve Austin is without a doubt on the mount Rushmore of Wrestling. He might even be the Goat."
Rating: 10.0
Sentiment: 0.2111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: limvurawrote on 10.01.2025:[10.0] "The GOAT. The reason that WWE beat WCW. When that glass breaks, it's your ass. More iconic moments have happened involving SCSA than anyone else in the business. It's a shame that Owen botched that pile driver because Austin probably had 3-4 years left in the tank. Austin vs Cena, Batista, Orton, would have all been money."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LJED1983wrote on 26.12.2024:[10.0] "The only wrestler that provided me with the feeling that we were about to see a real fight. The intensity this man had has not been replicated or matched. If only wrestlers today had his kick-ass attitude. The best character ever in wrestling, and a damn good wrestler too. Simply awesome!"
Rating: 10.0
Sentiment: 0.48333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 5GumGuywrote on 02.12.2024:[10.0] "Pound-for-pound, the undisputed greatest wrestler of all time. You want the full package? This is the man right here, because there isnt a damn thing he cant do, and thats the bottom line because Stone Cold said so."
Rating: 10.0
Sentiment: 0.2589285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: AceHagannwrote on 26.11.2024:[10.0] "The undisputable greatest wrestler of his time. His attitude era run isn't filled with highlights, it is a single, immense highlight. Iconic promos, iconic matches, iconic moments, he has it all."
Rating: 10.0
Sentiment: 0.4040816326530612
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ZombieBombwrote on 21.11.2024:[10.0] "Maximum aura, biggest draw in wrestling history, best promo of all time, and a great in ring worker. Stone Cold is the absolute GOAT and it's hard to argue anybody else."
Rating: 10.0
Sentiment: 0.22166666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ItsAllAWorkAnywaywrote on 13.11.2024:[10.0] "Don't get it twisted - The nWo were amazing and a lot of their booking helped resuscitate the wrestling industry when it was in a period of decline. Yet as the WWE were financially on the ropes, they needed to rebuild and needed a superstar. This kid from Texas named "Stunning Steve Austin" shows up after losing his job with WCW because his unrealized talent was seemingly never realized. Yet after embracing the "Stone Cold" persona, both Steve Austin and the WWE would raise themselves up to heights unseen. WWE programming went on an absolute tear in the late '90s and that's because people knew when they heard the sound of breaking glass, they knew Stone Cold was fixin' to kick some ass... And that's the bottom line!"
Rating: 10.0
Sentiment: -0.04999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Conquistador37wrote on 20.10.2024:[10.0] "Original Comment left on March 16th 2022: I remember him from day one in Dallas; when he was still "Steve Williams", so the nostalgia is deeply rooted. With that being said, I honestly tend to fast forward past his Stone Cold "punch brawl stomp middle finger punch brawl, stay outside the ring for 20 minutes of a 24 minute match" stuff. Prior to that - must watch wrestling, especially when he had hair! Especially any match with Bret Hart. Had off the page chemistry with Dustin Rhodes & Ricky Steamboat as well. There is also some in ring gold in 2001. Definite deductions for that whole "WHAT? " garbage though, unforgivable and beyond irritating. However, even though I fast forward through so much of the 'F stuff, and even though "What" is one of the single most WORST things in wrestling HISTORY, I still love the dude. Pre broken neck = phenomenal in ring talent, post broken neck = sports entertainment gaga, he's great at both but personally I only truly love one side of *ahem* Stunning Steve Austin. UPDATE: I deducted points before but why? He even earns bonus points for being a fantastic story teller and became an all around solid human being after he got out of the business for a while. When he was not yet severely injured, his bell to bell material ranks extremely high. I can not express how much his WCW material was/is top tier."
Rating: 10.0
Sentiment: 0.09451680672268908
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MatnificentMattwrote on 24.09.2024:[10.0] "In terms of entertainment, Steve Austin was the best. Whenever he made his entrance, the crowd went ballistic. He could cut the best promo and draw the crowd into everything he did no matter who he was working with. As an in ring performer he was pretty good. Before his neck injury he was a great performer and even after his neck injury, he had a brawling style that really fit the stone cold character. His presence and persona made him one of the best of all time."
Rating: 10.0
Sentiment: 0.5687500000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kyriewrote on 21.09.2024:"One of the greatest wrestlers of all time, but unfortunately massively hampered by injuries during the peak of his career. Despite wrestling in some excellent matches in WCW and WWF, he was never the same in-ring after Owen Hart's botched piledriver. After he became WWF champion, he was de-fanged significantly on the mic, perhaps to fit in with a more goody-goody babyface image. 1996-97 Austin's allegiance was only towards himself, and he would attack anyone he pleased, face or heel. From 98 onwards however, it felt like he only went after the specific heels that wronged him - he would never go after Triple H's D-X for example, because of their babyface status. He had some iconic catchphrases, but they were all created before he became champion, outside of the obnoxious WHAT? catchphrase - compared to The Rock, who kept inventing new things month after month, year after year, it felt like Austin stagnated significantly and it's no surprise that after his surgery and return they really had no real use for Austin, as they had much better wrestlers like The Rock and Kurt Angle."
Rating: No rating found
Sentiment: 0.257177033492823
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jsbortswrote on 19.09.2024:[9.0] "So Stone Cold Steve Austin is the best character that's ever been on american wrestling TV... Great promo, but as soon as he hit his peak as a character his body started breaking down, and he doesnt have the catalogue of matches to justify a very high ranking. People who enjoyed wrestling TV in the 90's will undoubtedly think of him as the greatest, and his natural charisma is off the freaking charts. His peak wasn't actually that long, and his best matches are probably in WCW against pillman and steamboat..."
Rating: 9.0
Sentiment: 0.3168703703703704
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: SourDiesel97wrote on 29.08.2024:[9.0] "One of the greatest to ever set foot in the WWF/E . He may not of been the greatest in the ring (manly after the broken neck) but he made up for it with his charisma. If I had to rate him it would be a solid 9."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Chosen Onewrote on 26.08.2024:[9.0] "Er war schon gut als Stunning Steve Austin, wurde richtig interessant bei ECW und nach einer zähen Eingewöhnungszeit hat er bei der WWF endlich seinen großen Durchbruch geschafft. Selbst der Nackenbruch konnte ihn nicht stoppen, als er hoch auf der Welle geritten ist. Am beliebtesten war er während der Fehde mit Vince McMahon, aber ehrlich gesagt, fand ich ihn davor sogar etwas interessanter, als er noch wirklich "Stone Cold" war. Sein Gimmick sollte ihn so creepy wie einen Serienkiller machen und das war er. Trotzdem wurde er schnell zum Fan-Favoriten - so ist Wrestling eben. Sein erneuter Heel-Turn im Jahre 2001 gilt allgemeinhin als Fehlschlag, aber den Run fand ich auch gut. Er hat zwar mit dem bisherigen Verlauf von Storylines wenig Sinn ergeben (besonders seine Beziehung zu Triple H - von bitteren Feinden bis zu Tag Team Champions), war an sich aber auf einem handwerklichen Level extrem gut und auch wieder näher am ursprünglichen Konzept des Stone Cold-Gimmicks. Mir hat dieser Heel-Run tatsächlich sehr gut gefallen und das obwohl ich im Voraus bereits davon gehört hatte, wie schlecht er doch angeblich sei. Stone Cold war im Jahr 2001 sehr phsychotisch und aggressiv, selbst zu seinen Verbündeten und das hat ihn wieder interessant gemacht, und sein ständiges Einschüchtern anderer Leute mit "What? " war unglaublich witzig. Der wahre "Downfall" Austins kam erst im Nachhinein, als er wieder Face geturnt ist und eine langweilige Fehde mit Ric Flair hatte. Sein Charakter ist einfach stagniert; ein Bier trinkender Redneck zu sein ist eben nichts, was für immer interessant sein kann. Austin beendete seine Karriere nicht nur zu früh, sondern auch auf einem Tiefpunkt und deshalb kann ich ihm keine 10 geben."
Rating: 9.0
Sentiment: -0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: tyotewrote on 16.08.2024:[10.0] "Steve Austin's impact on the business could never be overstated. In terms of notoriety, impact on the wrestling business, pop culture crossover during his peak, and putting butts in seats, it's hard to argue against Austin being the greatest professional wrestler of all time - all other considerations are fighting for the tie, but there is no clear superior, and likely never will be. And, uh, that's the bottom line."
Rating: 10.0
Sentiment: 0.19047619047619044
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Willie 19200wrote on 28.07.2024:[10.0] "A man who in my opinion, saved the wrestling business in the United States. He would put on must see television and make everything he was apart of feel important. Plus his in-ring work is underrated, sure not all of his matches are technical masterpieces but he still put on great matches with the likes of Bret Hart, The Rock, Shawn Michaels, Ect. Also the fact that he was so over with the crowd just made him so much fun to watch and I always enjoy Stone Cold."
Rating: 10.0
Sentiment: 0.2571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: BizarroMaskwrote on 27.07.2024:[6.0] "A bit overrated but a good fella who makes very entertaining moments and his character makes him very lovable. But on in ring quality it in the lower average , great finisher but sometimes botched. He is like a cool version of the sandman , maybe a more hardcore side could have been intressting back in the day."
Rating: 6.0
Sentiment: 0.43750000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: crs285wrote on 04.07.2024:[9.0] "Stone Cold is one of the most charismatic wrestlers pro wrestling has ever seen. His feud with Mr McMahon defined an era in professional wrestling history. In the ring he was a great brawler and he had abilities to go with just about anyone and make it good. His WCW run proves the problem that WCW had with young talent."
Rating: 9.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: twinkertonwrote on 24.06.2024:[10.0] "Easily the greatest "sports entertainment" style wrestler in history. His storylines with McMahon and the Rock were two of the best in the history of the medium. Easy 10."
Rating: 10.0
Sentiment: 0.7166666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Big R3d Mach1n3wrote on 17.06.2024:[10.0] "This man single-handedly changed the trajectory of how successful the WWF was going to be, I'd argue there'd be no WWE without Stone Cold Steve Austin which made me so disappointed when he didn't show up at WrestleMania XL."
Rating: 10.0
Sentiment: -0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: RealGrapsThomsenwrote on 26.05.2024:[10.0] "Stone Cold Steve Austin is honestly one of the all times greats in the industry. His in ring ability can range from brawling to wrestling an all time classic. He was one of the most over wrestlers in his time and still is. His character defined a whole era in wrestling."
Rating: 10.0
Sentiment: 0.17333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ultravioletshiroiwrote on 17.04.2024:[10.0] "One of the most over wrestlers in WWE history and for a good reason. When his music would hit in the late 90s the man would get a pop like no one else. Stone Cold matched his in-ring intensity with excellent mic work and charisma. Unfortunately he had to retire early due to an awesome injury he sustained to his spinal cord."
Rating: 10.0
Sentiment: 0.19722222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 2pt0EcoBoostFusionwrote on 16.04.2024:[10.0] "I don't think there's any reason to rate Steve Austin lower than a 10. Like many other wrestlers who I have given a 10, Austin is definitely deserving of getting such honor. He has always played his characters well, was a great wrestler, especially before the tragic piledriver injury he suffered in 1997, and always got a crowd behind him. I view him as the KING of the Attitude Era, I remember a few years ago watching his Attitude Era clips on YouTube, he definitely ruled that era. He also sells a lot of merch and is always a top seller every year, talk about influence! His promos were great to listen to as well. It's a shame his career was cut short as he definitely was coming into his own league before the piledriver injury mentioned previously. He definitely is a worthy Hall Of Famer and deserves this 10 rating for defining an era, inspiring generations of wrestlers, and being the face of Pro Wrestling historically and today."
Rating: 10.0
Sentiment: 0.1824074074074074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DonovanBaybay229wrote on 15.04.2024:[10.0] "A self explenatory 10 he is the most popular wrestler and hottest act in the history of the business ."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Bean1985wrote on 11.04.2024:[7.0] "Goat level charisma shown with his Stone Cold character. Mic skills quite good, unquestionably one of the best to ever do it. In ring not bad, but way below the excellence of other guys. Career was great but very short, I feel like it lacks consistency to consider him in the elite. I like technical wrestling and entertainment, Stone Cold gave me only the latter. Respect, but not my guy."
Rating: 7.0
Sentiment: 0.13863636363636364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: BruceMarcos524wrote on 07.04.2024:[9.0] "In my opinion, the biggest megastar in all of wrestling. People would say, Hulk Hogan is the most popular WWE superstar. For me, it's Stone Cold Steve Austin. One of the pillars of the WWE's best era, the Attitude Era. One of the major guys who put the pro-wrestling on mainstream. No other wrestler can have as much drawing power as Austin. He still is the biggest merchandise seller in history. His biggest asset is his mic skills. The way he trashes talks and threatens his opponents is brutal yet cool to hear. Pre-injury he was a solid in-ring worker. After the infamous neck injury at Summerslam 1997, he relies more on his promos as his move sets are limited. Still, a pretty good brawler and the way he brawls looks like a freaking badass. Austin ushers the edgier version of WWE and became one of the most watchable shows on cable network history. One of his biggest rivalries is his fellow contemporary, The Rock. Austin and Rock in my opinion, are the biggest rivalry in the history of WWE. There are lot of copycats like Trish vs Lita, Cena vs Orton, Tanahashi vs Nakamura, but no one would match the box office rivalry of Austin vs Rock. Their rivalry truly put the Attitude Era on the map. And their matches followed-up of the call by Jim Ross and Jerry Lawler, they became iconic. Nowadays, I just don't like how they used Austin in WWE. He is just there if he wants to promote something or for cheap nostalgia but when his music or shattered glass SFX hits even after many years, the crowd will still pop out of it. An above average wrestler with solid fundamentals but A+ for charisma and promos."
Rating: 9.0
Sentiment: 0.17896825396825392
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Dntbamarkwrote on 01.04.2024:[10.0] "Without a doubt, besides The Rock, Hulk Hogan, Bruno and Andre the Giant, one of the greatest in-ring-performers out there. He and his rivalry with Vince McMahon defined the attitude era and without a doubt, changed the wrestling landscape forever."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TripleCrownwrote on 03.03.2024:[10.0] ""Stone Cold" Steve Austin is without a doubt a member of the mount rushmore of professional wrestling. Without him, who knows what the landscape of professional wrestling would look like today. Whilst Hulk Hogan helped take professional wrestling mainstream, it was Austin who took it even further and made wrestling appeal to all demographics. Great wrestler, one of the best ever on the mic, great character, the word "average" or "bad" doesn't exist when you're talking about Stone Cold."
Rating: 10.0
Sentiment: 0.07727272727272728
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MasteroftheMatchGuide99wrote on 09.02.2024:[10.0] "Where do I start with this crazy man? He had it all: muscles, comedy, pain-tolerance, toughness, creativity, and could go from a beer-guzzling hell raiser to ass-kissing Vinnie boy at the drop of a hat. He also had a rivalry with Vince that catapulted WWF to an insurmountable level during the Monday Night Wars. Every week, you were asking "Who's he gonna stun this time? " His constant interference in segments were great too like interrupting William Regal's narration of Hamlet, dousing the Alliance in a can of whoop-ass, dousing the Corporation in beer, and even stunned Chyna in an unseen backstage segment in 1999. He also had great acts that did involve him like kicking Booker T's tail in a supermarket of all places, helped Mick Foley with medical bills on Day 1 as CEO, made WWE get a beer budget and oh so much more. Austin could work, could kick butt, take a butt-kicking, and work the mic on the same level as Rocky, not to mention be hilarious like when he serenaded Vince and gave Kurt a kid's cowboy hat. HOF, WON, Stanley Weston award; he's deserved it all."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: RusherBryan29wrote on 08.02.2024:[10.0] "The peak of pro wrestler. Mix of great character and great in ring. Always entertains me in any matches or segments of him. I also enjoy his wcw work. He is one of the most important wrestler in history."
Rating: 10.0
Sentiment: 0.58
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Scottielstamperwrote on 21.01.2024:"10 the highest bar in my opinion. Austin had great entertaining matches and promos. He brought in fans that never would have otherwise watched. His appeal with the fans made for great crowd reactions and interactions. In the days of the Monday Night Wars Steve was the the one I wanted to see getting even with Mr.Mcmahon.That whole fighting the system and evil bosse and raising hell show was one of the greatest stories in wrestling. His runs with Bret Hart Shawn Michaels the Undertaker Mick Foley and others of the time were always good but the emotional connection that was brought in with the Mr McMahon stuff was TV gold. In my opinion Stone Cold Steve Austin is one of the greatest if not the GOAT"
Rating: No rating found
Sentiment: 0.33999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Dirty Diegowrote on 12.01.2024:"Steve Austin number 1 because I can relate so much about a guy who stands up to authority and wins the stuff he did to Vince made my joystick get hard , if I had a boss I would do a lot worse to them in real life if they tried to oppress me but thats another topic all together thats on SFS Austin had the full package in my opinion he was very believable and hilarious on the microphone and was a great technician some people think he was just a brawler with limited moves which actually made him more believable in the ring I got a buzz off him stomping a mud hole and walk it dry , but as his fans know he was one of the best technical wrestler in the early mid 80, s especially in wcw and even when he was at the top in wwf he had great technical matches with Kurt angle, Chris Benoit and triple Plus Austin and Vince rivalry made the Buisness as hot as it had ever been"
Rating: No rating found
Sentiment: 0.21750992063492067
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: kewf1988wrote on 24.12.2023:[10.0] "Steve Austin was a very good wrestler, as in WCW he was more technical than the brawler he was as Stone Cold, which is a testament to his talent, as doing submission holds as "Stone Cold" would have been awful and not fit his gimmick whatsoever. Despite the change in styles, he remained an amazing storyteller in the ring and was an amazing mic worker and extremely charismatic, which led the WWF to eventually take the lead over WCW."
Rating: 10.0
Sentiment: 0.07100000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ismarizviwrote on 12.12.2023:[10.0] "He is one of main reason that wwe what is today his rivalry with Bret, Rock, Vince mcmahon were all great.But in the start of his run he has to suffer with a very bad injury on his head and he had to change his style from technician to brawler.His Wcw run was good but let be honest if he stay then he will be midcarder for life.I would suggest to watch his wcw stable dangerous alliance war games match, His three matches with rock at wm.His return fight ko is also very entertaining"
Rating: 10.0
Sentiment: 0.10111111111111114
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: JediSaiyanMaster1203wrote on 19.11.2023:[10.0] ""Stone Cold" Steve Austin is, arguably, the biggest icon in professional wrestling history, he did so much for the business in such a short period of time that not many could make claim to, his "Austin 3:16" shirt is still worn and sold to millions to this day after all these years later. Steve Austin has always had the "IT" factor no matter what company he competed in, even if they held him back and gave him a glass ceiling. He was amazing in the Hollywood Blonds with Brian Pillman in WCW, despite Eric Bischoff didn't want them to get over, which ultimately didn't sit well with everyone in the office and the bigger names at the time. He also was part of one of the best factions of all time, The Dangerous Alliance, having an involvement in the best WarGames match to ever take place. Steve got fired via FedEx while he was injured, thankfully, Paul Heyman hired him in ECW where he let him straight up say whatever he wanted, most of them being disses to WCW and calling out how shady Eric Bischoff was, all of it was amazing and hard to believe all happened during a time when kayfabe was alive and well. He eventually leaves ECW to go compete in WWF, where he started out as the Ring master who is managed by Ted DiBiase, which wasn't a good gimmick. Steve Austin did find his true self in 1996/1997 when he unleashed the "Stone Cold" persona and cut the legendary "Austin 3:16" promo, and truly became a star after WrestleMania 13 in his match with Bret Hart, which I consider to be the best WWE match of all time. Steve Austin then gets injured by Owen Hart by accident, has to limit his style in the ring, but still remains at the top and goes on to become WWF Champion multiple times, having classics with the likes of The Rock, Triple H, The Undertaker, Mick Foley to name a few. Sadly, his time was cut short due to the neck injury he sustained in 1997. While his time at the top wasn't the longest, his impact can still be felt to this day. Overall, Steve Austin is one of the all time best professional wrestlers to ever pick up a microphone and hit the Stone Cold Stunner on anyone (one of the best finishers as well), And That's The Bottom Line, Because Stone Cold Said So!"
Rating: 10.0
Sentiment: 0.14956140350877192
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Hatefwrote on 13.10.2023:[10.0] "the definition of an ICON! I'm not that old to remember watching him on TV, because I was born in 1999. but when I watched lots of his historic moments, matches, promos, I gotta say that this man, literally changed the whole business! his merchandises are still in the top 10 in the WWE and he's been retired since 2003 ( I mean active presence )! Vince should thank god everyday because of this man, because he literally saved the company. is there any other record that this man hasn't broken? he's always on the top 10 clips in the attitude era. his ring skills were okay in my opinion but one thing that amazed me was that, he always had the crowd on his palms! it breaks my heart when I see that his career at the top, was only 5 years! his injuries forced him to, and I think this was the price that we had to pay, to witness the iconic legend, the one and only, Steve Austin!"
Rating: 10.0
Sentiment: 0.09192708333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LegoStar97wrote on 13.10.2023:[10.0] "One of the best wrestlers in history. Imagine an alternate reality where Austin was never fired from WCW. Not only did he become a big star in the WWF, but he saved the WWF from bankruptcy. King of the Ring 1996 and WrestleMania 13 was the rise of 3:16 Austin. He gets a Hell Yeah! /10 for me."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Excellence of Executionwrote on 05.10.2023:[9.0] "Wohl die Galeonsfigur der Attitude Era schlechthin und insofern ein bedeutender Mann für die WWF/WWE. Sein Stone Cold Gimmick war sehr gut, weil er darin einfach unglaublich glaubwürdig war. Seinen Brawler-Stil hat er durch Intensität und Dreistigkeit gut rüber gebracht. Wenn der Hype gestimmt hat (was eigentlich immer der Fall war) und der richtige Gegner zur Stelle war (was leider nicht immer der Fall war), dann gab's auch gute Matches. Was mich jedoch von der Höchstbewertung für Stone Cold abhält, ist die Tatsache, dass er im Ring einfach etwas zu einseitig war, was allerdings nach seiner krassen Verletzung kaum ein Vorwurf sein kann. Er war von da an halt gezwungen, seinen Stil, der ehedem durchaus auch recht technisch war, anzupassen."
Rating: 9.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: elninowrote on 02.10.2023:[10.0] "An extremely easy 10. One of the greatest pro-wrestlers of all time, around during maybe the most popular time in pro-wrestling and he was a large reason for that popularity. Killed it as a heel in early days WWF before going on the greatest face run of all time, was incredible in the ring before he got his serious injury, despite that he still managed to adjust his style and put on amazing matches that will live on in wrestling memory."
Rating: 10.0
Sentiment: 0.4125541125541126
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Okaro143wrote on 24.09.2023:[9.0] "Due to the many injuries he suffered, Austin didn't have a long career and his in ring work could be a bit sloppy at times but yet he was able to consistently put on some of the best matches in WWE. His match against Bret Hart at WM 13, HHH in 3 Stages Of Hell and Rock at WM 17 were some of the best matches of the Attitude Era. His character as a beer drinking , redneck, authority defying SOB got so over and he took professional wrestling to its peak. I would never say that he is the best professional wrestler of all time but he was in my opinion the biggest name in professional wrestling. Rock, Cena, Hogan, Bruno Sammartino, etc. could definitely claim to be but imo Stone Cold Steve Austin just had a little bit of an edge over them."
Rating: 9.0
Sentiment: 0.2113888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Teebawrote on 15.09.2023:[10.0] "He changed what it meant to be a babyface, gone were the squeaky clean smiley faces and here was a no-nonsense ass kicker. It's baffling that WWE went back to the old ways when trying to make stars because all you need is a bit of heel in you to be over with the crowd, and no one did it better than Stone Cold. He was awesome in the ring too especially in his younger WCW days, those matches with Steamboat are worth anyone's time."
Rating: 10.0
Sentiment: 0.1851851851851852
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Undertaker4everwrote on 15.07.2023:[10.0] "Der Star der Attitude Ära ohne seine 3:16 Promo wäre das alles nie so gekommen! Seine Rivalitäten mit Vince McMahon und The Rock haben das Wrestling all für alle mal verändert!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: bigredtalk89wrote on 14.07.2023:[10.0] "No one was hotter than him in history, from 98-01 he was unstoppable. Anything lower than a 9 is disingenuous, even if you didn't like him much what he was able to do with the industry in such a short amount of time is mind-blowing. As a character, no one was better, and while he was semi-limited in the ring post breaking his neck, he still put on plenty of classics till he ended his career in 2003."
Rating: 10.0
Sentiment: 0.24
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Ruthless Attitudewrote on 26.06.2023:[10.0] "Without a doubt my favourite WWE megastar and I became a wrestling fan Austin leading the Attitude Era. My favourite persona in wrestling and one of the best trash talkers ever on the mic. I think only The Rock hangs with him in that department. The sad thing is that Austin was a superstar after his broken neck, and he had to retire early in his career. Before his career shortening injury against Owen Hart, he was actually a really good technical wrestler and some of favourite matches happened around 96-97 when he was just getting popular. His Wrestlemania clash with Bret Hart is among the best Mania matches in history and brutal at a time when it was less frequent making the bloodied Austin passing out to the sharpshooter all the more impactful. I've seen some of the matches he had in WCW and while they was good, he really started to shine in his short stay in ECW cutting the kind of promos that would make him a star now. His heel turn in 2001 was ill-advised because of the poor timing, but he did still have possibly have the best year of his in-ring career with his brutal match with the Rock as well has his legendary feud with Kurt Angle just as Angle was at his peak. It's sad to know that in really, at the height of his popularity his career was always on borrowed time and who knows how things could have gone without his neck break. He is the most charismatic wrestler ever and even today it is always fascinating to listen to him telling different backstage stories in podcasts and interviews. He's an icon that completely changed the business to standards that would never be reached again."
Rating: 10.0
Sentiment: 0.1349462365591398
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: texasyoshwrote on 18.06.2023:[10.0] "It's strange to think how truly short Austin's career was compared to his contemporaries, but in 13 years, he had a pretty stellar career. Pretty much did all a wrestler would want to do, have an excellent list of matches, working in numerous countries and companies, but also become a unanimous top guy, who legitimately changed the business for one of the biggest boom periods in American wrestling history."
Rating: 10.0
Sentiment: 0.24
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "Austin was a great wrestler in WCW in the earl 90's. The WWF let him ratchet up his character and he became an intense main eventer, but unfortunately, things in life don't go the way we want and that botched piledriver by Owen severly hampered his ring work going forward."
Rating: 8.0
Sentiment: 0.16666666666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Dancerwrote on 31.05.2023:[10.0] "Legendary promo. No other wrestler held the live crowd in the palm of his hand quite like Austin ever will. A product of his time and had his issues, but I cannot help but smile during every promo I rewatch. Great in ring brawler who inspired a generation. If I ever see him live, I will gladly give him a Hell Yeah if he asks for one."
Rating: 10.0
Sentiment: 0.4193181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Gold Fistswrote on 18.05.2023:[4.0] "I honestly see him as overrated. His mic skills especially, they were decent but definitely not best of all time like everyone says they are. The "what" catchphrase/chant never should have seen the light of day. The stunner doesn't look all that believable unless you've got Rock taking it. His in-ring was alright but nothing to go crazy about, his brawling usually sucked. He wouldn't put people over either. He ended Kane's title reign a DAY AFTER HE WON IT. The heel turn at WMX7 is grossly overrated. Basically the entirety of the Austin 3:16 garba-I mean speech, is complete mockery of Christianity. It doesn't matter what religion you are, you can't argue how wrong it is to say stuff like that just to get fame and fortune. Judging by that and the fact that he assaulted his wife, he doesn't seem like that good of a person outside of the ring either."
Rating: 4.0
Sentiment: 0.02172619047619046
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: danzitorockwrote on 08.04.2023:[10.0] "Stone Cold is undoubtedly one of the greatest of all time, his run at the Attitude Era is absolutely legendary and he was the biggest draw of the company at it's prime, everything about him is great, his charisma is unmatched."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: John Brandowrote on 17.02.2023:[10.0] "Endlich kann ich auch etwas zu Stone Cold schreiben. Er ist klar einer der größten Wrestler in der Geschichte der Company ohne den die WWE wohl nie die Quotenschlacht mit der WCW hätte gewinnen können. Im Ring war er nicht der Allerbeste, sein Brawling-Style passte jedoch perfekt zu ihm und der Ära. Steve bestritt viele Klassiker gegen The Rock, Bret Hart oder Triple H. Am Mikrofon haut er mich immer vom Hocker und nimmt jeden in der Halle mit. Der gute Steve ist einer meiner absoluten Lieblinge, ich bin ein großer Fan und vergebe 10 Punkte, die wohl selten eindeutiger waren. "And that's the bottom line, 'cause Stone Cold said so! ""
Rating: 10.0
Sentiment: -0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ajsmileswrote on 31.01.2023:[10.0] "Smarks can say he wasn't that good in the ring. He was completely adequate in the ring, he was even better before Owen Hart broke his neck. Watch his match with Ricky Steamboat from WCW if you want a good Stunning Steve Austin match. But the guy proved 5 star matches don't sell. Characters and angles sell. And he was a master of building a character. I still think the Stone Cold character is one of the best wrestling personas, period. He saved the WWF from getting destroyed by WCW, cut amazing promos, was part of the best segments on Raw, sold merch like hotcakes, drew ratings, drew PPV buys, put asses in seats. The pops when he came out were insane. What else do you need? "Stone Cold" Steve Austin is my favorite professional wrestler, ever. If only that heel turn didn't happen at Wrestlemania 17, I think he could've go on a little bit longer but what are you gonna do? He was still great."
Rating: 10.0
Sentiment: 0.24206259426847662
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LivingLegendwrote on 23.01.2023:[10.0] "Too many DQ finishes hurt his output? What does that even mean? Anyways Steve Austin is one of wrestling's most defining stars that lead the way alongside The Rock during one of, if not the biggest wrestling boom ever. He was over as all hell. Back in his early he was a pretty solid wrestler but had very minimal character or personality. While his injuries slowed him down in the ring, his character work improved drastically and he became one of the most popular wrestlers ever. While he may have not had consistent 5 star classics, that's not what his era of wrestling was about. It was about drawing fans into what you were doing and making money for himself and his employer. And Steve Austin did both of those things during his surprisingly short wrestling career. It's difficult to not give Austin a perfect score for these reasons. One of the best for sure."
Rating: 10.0
Sentiment: 0.2412908496732026
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: KKeanelwrote on 11.01.2023:[10.0] "The man who defined the Attitude Era. Brawling style of his matches after a serious injury and after underrated career in Japan or WCW meant that, along with a ton of charisma, he created one of the most distinctive gimmicks. Huge respect for him."
Rating: 10.0
Sentiment: 0.18888888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MainEventMasterwrote on 02.12.2022:[8.0] "As a wrestler, he was ok to good, but all-around, he is a twice in a generation spectacle that we will never see again, the second one being The Rock."
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Mcbolskywrote on 22.11.2022:[10.0] "The GOAT. The reason that WWE beat WCW. When that glass breaks, it's your ass. More iconic moments have happened involving SCSA than anyone else in the business. It's a shame that Owen botched that pile driver because Austin probably had 3-4 years left in the tank. Austin vs Cena, Batista, Orton, would have all been money."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: CommisarRobewrote on 12.10.2022:[10.0] "Stone Cold Steve Austin is possibly the most important wrestler of the modern era. His feud with Vince defined the attitude era and brought down WcW, his matches against The Rock are all time classics. The Stone Cold gimmick is possibly the greatest face gimmick in modern wrestling and the stunner an incredible finisher."
Rating: 10.0
Sentiment: 0.16767676767676767
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: RavenCrow75wrote on 06.10.2022:[7.0] "For the most part I will be basing my Wrestler ratings on five criteria four of which are based on in-ring ability and the last on charisma. I believe these five criteria are pro wrestling's version of Tommy Lasorda's criteria of "five points" in baseball. For pro wrestling those five criteria are power, speed, technical ability, hardcore & charisma. Steve Austin's scores: Power: 7 Speed: 5 Technical: 7 Hardcore: 9 Charisma: 7 for a total of 35 and an average of 7."
Rating: 7.0
Sentiment: 0.05833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheOneAndOnlyCactuswrote on 29.09.2022:[10.0] "As Stone Cold, he was an amazing character with good wrestling acumen before his neck injury where he turned into a Brawler. A good brawler, but one with a repetitive style during the Attitude Era. As Stunning Steve Austin, he was a very good in-ring worker, but kind of bland as a character. As Superstar Steve Austin, he was very entertaining as a character, but barely did anything in the ring. But by and large, Steve Austin managed to adapt and grow as a character and wrestler. He has done pretty much everything"
Rating: 10.0
Sentiment: 0.3112585034013605
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: tiger7wrote on 05.09.2022:"One of the greatest wrestlers of all time. Having a legendary legacy that was solidified in a crucial point of the wrestling industry, the franchise player in the biggest war of Vince's company, an incredible connection with an entire generation, being a very good worker that left behind him so many awesome stories in the ring, we can easily say that Stone Cold is one of the main pillons of professional wrestling and he deserve the 10 rating."
Rating: No rating found
Sentiment: 0.35785714285714293
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jonsnoewrote on 22.08.2022:[10.0] "The icon of WWF Attitude Era. He is the one who carries WWF to compete with WCW, without him, WWF will not be able to beat WCW in rating during the Monday Night Wars."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Leth99wrote on 24.07.2022:[8.0] "In WCW he had the in-ring work but was bad at talking. In ECW he was amazing in the ring and a great talker. In the WWF he was an amazing talker and bad in the ring for his injury. A big what if, because I wanted him to continue throughrout the ruthless aggression era"
Rating: 8.0
Sentiment: -0.057142857142857086
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Ozzywrote on 08.07.2022:[10.0] "Stone Cold Steve Austin pushed the boundres of what wrestling was able to be in the 90s giving way with Brian Pillman to bring us the Attitude Era, Steve is a 6 time WWE champ for a reason, and though he may not have had as long of a career due to an injury caused by a botched piledriver, he still did a lot within his career. Steve was a decent wrestler back in the USWA during the early 90s when he was Stunning Steve for the early parts of his career, bringing it to WCW he could hold his own greatly or better with Pillman as the Hollywood Blondes, it wasnt until Paul Heyman and ECW let him be who he wanted to be though that he bacame who many fans remember as the greatest to ever do it, the man known as Stone Cold was born through that promotion until Vinnie Mac swooped him up and made him into the ringmaster, that gimmick didnt work with Steve, and felt like it shouldve been a Mr Perfect replacement, but wasnt, Steve luckily had the oppertunity to change that gimmick giving us what would later be the Attitude Era with Stone Cold for the first time, and followed by the infamous Austin 3:16 promo that set him over the edge. Stone Cold is the reason for many of us fans got into wrestling, meyself included with the Booker T and Stone Cold scene in the supermarket, and thats the reason why i will allways consider him my favorite wrestler to date"
Rating: 10.0
Sentiment: 0.11979166666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: mikeyisgoatedwrote on 29.05.2022:[10.0] "Best on promos, great look, great gimmick, great wrestler, great champion, great as heel & face, great feuds, what more can you ask for? One of the best wrestlers of all time."
Rating: 10.0
Sentiment: 0.8111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: CLUCKwrote on 15.05.2022:[10.0] "he is a reason why i'm wrestling fan, my first match is him vs kurt angle in sumerslam 2001. he introduce me to wrestling and he is always be GOAT for me"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: flightaker321wrote on 29.04.2022:[10.0] "Up until when Owen Hart dropped him on his neck at Summerslam Austin was actually a very good technical wrestler, did not work the brawling style that he started working afterward. He adjusted his style to perfectly fit the Stone Cold character and still delivered classics. He also produced plenty of iconic segments, which was one of the main reasons the attitude era succeeded."
Rating: 10.0
Sentiment: 0.22944444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: NiceRaterwrote on 12.04.2022:[10.0] "I recently started watching back on WWF in 1997. To my shock, all of the legends I thought were the best are all slow and quite boring in the ring. Vader, The Undertaker, Mankind, Bret Hart. Almost everyone is just a step below what I remembered, and maybe this is just specifically a bad time for everyone but it's not anywhere near the level I thought. All except one. Stone Cold Steve Austin absolutely runs the show, and I mean before he's literally on top. Even just in upper card feuds, he has a passion and ability that makes him stand out from all the legends around him. He's so capable in the ring, and even more so on the mic. He knows who his character is and doesn't let others push him away from it. Then obviously, he becomes the biggest name in pro wrestling. While he might not be the best of all time on the mic, his dedication to the character and confidence to speak makes him the greatest professional wrestler in history."
Rating: 10.0
Sentiment: 0.09375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Real Godzillawrote on 11.04.2022:[10.0] "Legendary wrestler and probably the in-ring performer who single-handedly decided the "Monday Night Wars". Already amazing as a young up-and-comer in 80s/90s USWA and 90s WCW he became the biggest name of the Attitude era and without the doubt the biggest star of the last 25 years. Had incredible intensity and matches and there will never be another wrestler like Steve Austin ever again."
Rating: 10.0
Sentiment: 0.46666666666666673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: wewantpunkwrote on 07.04.2022:[10.0] "Stone Cold Steve Austin ist Sports Entertainment. Das meine ich nicht negativ. Er hat eine Ära geprägt und ist ein Wrestler wie man ihn nur einmal erlebt. Einer der größten innerhalb der WWE und er hat für legendäre Momente gesorgt. Im Ring fand ich ihn nie sehr gut, aber sein restliches können gleicht das locker aus. Am Mic ein Gott und wenn man das Glass springen hört, bekommt jeder Wrestlingfan Gänsehaut. Wie groß die Marke und der Name Stone Cold Steve Austin ist, hat der WrestleMania Main Event in diesem Jahr gezeigt. Eine ganz große Persönlichkeit."
Rating: 10.0
Sentiment: -0.3444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: CMX-7wrote on 06.04.2022:[10.0] "Icon of the Attitude Era) The man who surpassed Hulk Hogan and Bret Hart in popularity in Pop culture! Lots of iconic matches, Lots of historic moments and segments! It's all Stone Cold Steve Austin! It was nice to see him) His return for the Match against KO after 19 years... It was great! I want to say to Steve Austin Thank you for everything! and wish him good health!"
Rating: 10.0
Sentiment: 0.37083333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "It's hard to say anything that hasn't been said already about Steve. So much has been said about him being a great promo, and it's true, but he was also an amazing in-ring brawler. Great character work, great in-ring work, and when push comes to shove an absolute legend."
Rating: 10.0
Sentiment: 0.43229166666666674
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: OnlyHalfTheEffinShowwrote on 01.02.2022:[10.0] "A true GOAT. Steve Austin was attitude before the Attitude Era even began. Don't believe me' Check his promos in ECW as Superstar Steve or his work with Bret Hart in 1996. The entire WWF more or less managed to spring back from the doldrums of the fading New Generation on Steve's back. While he was admittedly not too much of a worker post-neck injury, Austin nonetheless managed to add so much intrigue to his matches through a combination of sheer charisma and old school psychology; Steve didn't have too many moves at this point in his career but he didn't need them.Regardless, Steve's true attractions was as a character. A 100% perma-pissed-off, beer chugging redneck who'd lay out beatings on anyone at a moments notice. Even after his retirement at Wrestlemania 19, Steve managed to stick around as a kayfabe sheriff, enforcer and other non-wrestling roles and his appearance always guarantees a pop. One of the greatest WWF Champions of all time, and a bonafide legend."
Rating: 10.0
Sentiment: 0.20297979797979798
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: rishabhwrote on 31.01.2022:[10.0] "When the WWF was struggling a lot with ratings and WCW were kicking their ass, they needed someone who would become a larger than life character and they invested in Steve Austin and the man repaid the faith by becoming one of the biggest wrestling draws in the history of wrestling. Great in the ring, exceptional on the microphone. His character is so simple yet one of my favorite of all time. He didn't do shitloads of MOVES in his WWF career but still no one can say his matches lacked anything. The legacy he has created is like none other and there can never be someone again like STONE COLD STEVE AUSTIN. OH HELL YEAHHHHH"
Rating: 10.0
Sentiment: 0.2114583333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: eltetechoriwrote on 10.01.2022:[10.0] "Stone Cold Steve Austin is proof that a fighter can do whatever he wants in a company, as long as you play your cards well, how great Stone Cold was with his rebelliousness, that character was the best."
Rating: 10.0
Sentiment: 0.12500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Abo96wrote on 04.01.2022:[10.0] "Der größte Draw der Wrestlinghistorie, ein absoluter Megastar. Schon in seinen jungen Jahren bei WCW als Stunning Steve ein herausragender Worker mit großem Potenzial. Dort leider immer verkannt. Bei ECW fand er dann seinen inneren Stone Cold. Legendäre Fehden und Matches gegen Bret Hart, The Rock, Mick Foley und Triple H folgten. Hauptverantwortlich für den Sieg der WWF in den Monday Night Wars durch die Fehde mit dem bösen Boss Vince. Alles andere als eine 10 wäre schwer zu vermitteln."
Rating: 10.0
Sentiment: -0.04999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: CaptainCharisma1997wrote on 19.12.2021:[10.0] "My pick for the GOAT of the wrestling industry at this time. One of the absolute best characters ever and the symbol of the AE. Deceptively great as a wrestler and incredible on the stick."
Rating: 10.0
Sentiment: 0.725
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: benny5bellyswrote on 03.12.2021:[10.0] "How can you not love Stone Cold' The reason so many people fell in love with this dumb sport. I am also really fond of his work in WCW."
Rating: 10.0
Sentiment: -0.004166666666666661
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: supergenwrote on 29.11.2021:[10.0] "Probably one of the greatest to do it. Before his neck injury he was one hell of a technical wrestler. But more than his wrestling, his promos, his characters were amazing."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TigerDiverwrote on 10.10.2021:[10.0] "There's nothing to say that haven't been said about Stone Cold Steve Austin already. The face of the Attitude Era. The man who took wrestling to arguably its highest peak. One of the single greatest wrestlers of all time. Perfect in every aspect."
Rating: 10.0
Sentiment: 0.3321428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: FACEElmo295wrote on 06.10.2021:[10.0] "My favourite wrestler of all time. Steve Austin started out as just another midcarder in WCW, which then led to his firing since Eric Bischoff didn't think he could draw. Little did Eric know that Austin would become the biggest money draw in pro-wrestling ever. His ECW promos are gold, when he got to WWF it felt like they didn't know what to do with him until he dropped that line at King of the Ring 1996. Austin 3:16 became one of the most iconic wrestling catchphrases, and with his new badass look Stone Cold Steve Austin was born. Austin spent 1997 establishing himself as WWF's top guy, and then the Austin Era began in 1998 which kicked off Austin vs. McMahon that would help WWF in the Monday Night Wars. His rivalry with The Rock is pure gold, and he had so many classic segments and the dude is one of the best talkers in wrestling history. Am I going to give Stone Cold Steve Austin a perfect rating? OH HELL YEAH!"
Rating: 10.0
Sentiment: 0.23306277056277055
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ringmaster2000wrote on 04.10.2021:[10.0] "What can I say? It'd be dumb to say he's' good on the mic. I mean, every word he said was always believable, and his character was the most badass of all. He was someone the fans and the everyman could connect with. In the ring, his storytelling was second to none. He performed moves with meaning and believability."
Rating: 10.0
Sentiment: 0.16874999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Frompartsunknownwrote on 01.10.2021:[10.0] "Vermutlich der Hauptgrund warum hin und wieder ein wenig nervig sein kann, wenn man in den späten Neunzigern geboren wurde. Stone Cold Steve Austin ist eine absolute Legende in allen Belangen."
Rating: 10.0
Sentiment: -0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Rodycaz IIwrote on 19.09.2021:[10.0] "Struck gold with the "Stone Cold" gimmick. Went from journeyman to mainstream star; not only in pro wrestling, but in entertainment in general. Hard to believe someone will ever be as over with the audience as he was."
Rating: 10.0
Sentiment: -0.21041666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Pete Gallowswrote on 03.09.2021:[10.0] "The absolute best in my book. Stunning Steve Austin was my most favourite wrestler when I was a kid, he was so incredibly fluid in the ring, his selling, his mannerisms. Summerslam 1997 changed everything, when it comes to his ring style, which is a shame, but he worked around his injury as much as he could. But prior to that injury, he was an amazing wrestler. Great talker, great and very unique look at that time (Stone Cold look) looked legitimate, like he could actually beat you up."
Rating: 10.0
Sentiment: 0.34519230769230774
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: BrayanLaPrewrote on 06.07.2021:[10.0] "What a career. Before he was the iconic "Stone Cold" character, Steve Austin was regarded by many as one of the best in-ring performers in the industry. He could trade submissions, brawl with the best, and adapt his style to almost anyone. Once the injury struck and Austin had to adapt, he did that in an unprecedented way. Austin became one of the biggest stars in the history of the industry, if not No. 1. And he still continued to produce classics in the ring, even if he was limited somewhat. A master storyteller who could make you believe in truly unique ways."
Rating: 10.0
Sentiment: 0.41294642857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: faithOfWrestlingwrote on 06.07.2021:[9.0] "I would say Stone Cold Steve Austin is the most iconic badass character persona known in wrestling, everything about his gimmick and natural ability to roast people on the mic oozed charisma. Also one of the biggest wrestling names of all time along with John Cena, Hulk Hogan etc. His only weakness if you could call it that was his in ring work which is why I could not give him a 10, he is definitely steps down from comparing to wrestlers like Shawn Michaels and Kurt Angle in that department but he was not bad either, I would actually say very underrated and far better in the ring than The Rock was. His spine buster and stun gun are on of my favorite moves and of course the Stone Cold Stunner, Stone Cold is a legend."
Rating: 9.0
Sentiment: 0.05296296296296296
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Stone Cold is a true legend, an absolute megastar. He reached a height of popularity I'm not sure I've ever seen from a wrestler, before or since. And he could work, too-- great charisma, great matches, great character. An icon of wrestling in every way."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Nick Owrote on 15.06.2021:[10.0] "Steve Austin is my favorite of all time. His mic skills and charisma were legendary. His popularity was off the charts. His feud with McMahon and HHH in the Attitude Era were legendary and that was the best time in wrestling IMO. I love Stone Cold Steve Austin abd he will forever be my favorite 10/10 wrestler."
Rating: 10.0
Sentiment: 0.5571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Hillwrote on 13.06.2021:[10.0] "What more can I say that hasn't been said already? The biggest draw in the history of professional wrestling which is even more impressive given the fact that he was not on top for as long as Hogan, Bret, Shawn, or Cena. Even in his WCW days you could see his potential in his matches with Ricky Steamboat and his tag team run with Brian Pillman. When he made it to WWE he changed the future of the business with his historic rivalry against Vince McMahon . Even if he had to adapt to a brawler style due to neck injuries he still put on clinics in his epic rivalries with The Rock, Triple H, Kurt Angle, Undertaker, and Bret Hart. All of them were must watch in the late 90's Attitude Era."
Rating: 10.0
Sentiment: 0.1854166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kungwrote on 19.04.2021:[10.0] "The greatest professional wrestler to ever compete in the WWE. There wouldn't even BE a WWE if it wasn't for this guy."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: AnBwrote on 17.04.2021:[10.0] "The face of the Attitude Era, no-one had the charisma Stone Cold had (has). While his brawling style might not be the most interesting, he still had some of the most memorable matches in history, and he's always going to represent what I miss in the modern WWE."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MrJabroniCamelClutchwrote on 08.04.2021:[10.0] "The biggest star in the history of wrestling in my opinion , was the face of the Attitude Era , had all the components for the face of any company in wrestling , the look , his promos , excellent in the ring , no one in history of wrestling has ever been as important to the mainstream appeal of wrestling in the 90s than Stone Cold Steve Austin ...."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Airkainewrote on 22.03.2021:[10.0] "My favorite wrestler of all time, the GOAT ! He is the reason why I want to become a Wrestler, he is my model, he is everything to me. Thank you Austin, I love you !"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Canadian117wrote on 11.03.2021:[10.0] "This man right here is the wrestling GOAT. Still is and I think always will be. He changed the wrestling business forever. Yes he absolutely had some help along the way and it takes 2 to make a match but god damn there is noone in the world quite like Stone Cold Steve Austin and I don't think there ever will be again."
Rating: 10.0
Sentiment: -0.03809523809523809
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Takerfan99wrote on 03.03.2021:[9.0] "Great gimmick and Talker. Decent in the ring and the stunner is a great finsher. One of the few to get away with a lot of vulgar language and actions as well"
Rating: 9.0
Sentiment: 0.17333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: shittylittlerasslinwrote on 21.02.2021:[7.0] "INCREDIBLE as an entertainer, the face of, arguably, the best era of WWE, alongside The Rock, but with limited ring skills throughout the years, even after having a rock solid WCW career inside the ring. Nonetheless, he could hide those weaknesses better than most of his colleagues at the time."
Rating: 7.0
Sentiment: 0.47142857142857136
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Burninghammercriticwrote on 01.02.2021:[7.0] "He is a very popular wrestler and a promo god. His in ring skills were good but not the best. I put him over many others and he is just an awesome guy, but I cant put him above a 7 because it was more about the attitude than the actual skill. Great entertainer."
Rating: 7.0
Sentiment: 0.5866666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Uweuwesenwrote on 25.01.2021:[10.0] "Austin hat eine komplette Ära geprägt, wahrscheinlich wie kein anderer Wrestler in der Geschichte! Austin war ein wichtiger Teil einer Vielzahl der wichtigsten Matches der WWE Geschichte und war auch in allen wichtigen Bereichen mindestens richtig gut!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Icon is the bestwrote on 09.01.2021:[10.0] "Well first, let me talk, Steve Austin has great proms and he has very high charisma, but in his in-ring performance, for me, he's one of the best performers in history. Who says that Austin has underperformed after injury? See what Austin did after injury, his match against The Rock at WrestleMania 17, his match with Triple H, his matches against Jericho and Chris Benoit, maybe also the reason why The Rock is so famous as an in-ring performer, and it's also the reason why WWE is among us now."
Rating: 10.0
Sentiment: 0.5516
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ManiaMan93wrote on 04.01.2021:[10.0] "The Attitude Era GOAT! How I loved the days with Monday Night RAW is War and Austin back in days. Man I would love if I could relive these days. Austin was my favourite in WWF Attitude Era days. The best thing was when he gived Vince und The Rock a Stunner."
Rating: 10.0
Sentiment: 0.39384615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Talisonpulidowrote on 04.12.2020:[7.0] "Great performer before the injuries. Good charisma. Once he got on top he always felt stale and repetitive to me."
Rating: 7.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: medousewrote on 04.11.2020:[10.0] "The Texas Rattlesnake Stone Cold Steve Austin. One of the most badass gimmicks in history of pro wrestling. His promos, his post match drinking beer, his famous Stunner, his famous 3:16 and that epic entrance music. I don't think there was ever a guy who electrified the crowd the way he did. Some people loved him, other hated, but everybody was reacting one way or another. This guy caught our attention the moment you saw him. Long live Stone Cold! Gimme Hell Yeah!"
Rating: 10.0
Sentiment: -0.01601239669421489
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Dennisiztheman02wrote on 02.11.2020:[10.0] "This man made pro wrestling popular in the late 90s and is a legend! Steve Austin is a great talker and great in the ring. Some of his noteworthy matches include his encounters with Bret Hart at Wrestlemania 13 and Survivor Series 1996, The Rock at Mania's 17 and 19, and the Undertaker at Summerslam '98. He is a great wrestler who has been over with every crowd and it would be difficult for WWE to recreate the magic."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Wrestling Foreverwrote on 02.10.2020:[10.0] "Steve Austin ist eine Wrestling-Legende und hat damals im Monday Night WAR die WWF gerettet. Den durch unter anderem Austin waren die Hallen ausverkauft und sein Austin 3:16 T-Shirt ist eins der meistverkaufesten T-Shirts überhaupt. Er hat auch selbst behauptet er sein kein Techniker. Er ist einfach ein Wrestler der ging raus und unterhielt die Fans auf seine Art. Bevor er zur WWF kam war er kurz in der ECW wo er so geniale Segments sagte und sich all seinen Zorn und Frust über die WCW, Dusty, Hogan, Bischoff ausredete. Zuvor lange in der WCW wo es auch viele Erfolge gab. Als Steve zur WWF als Ringmaster kam war das Gimmick ein total Flop. Man schlug ihm neue Namen vor wo manche Namen dabei waren die so bescheuert klingen. Zu dem Namen Stone Cold ist er durch seine Frau Jeannie Clark müsste es gewesen sein gekommen. Sie brachte ihm Tee und nannte den Namen Stone Cold. Was dann kam war Geschichte. Stone Cold Steve Austin und einer der beliebtesten Wrestler war geboren. Edit: 02. 10. 2020 Was für ein Unsinn er hat nicht den Namen Steve Austin geklaut. Es war damals so das es bei WCW schon Dr. Death Steve Williams gab, und er seinen Namen umbenennen musste. Darum hat er Austin gewählt seinen Heimatstadt."
Rating: 10.0
Sentiment: -0.44000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ALFwrote on 02.10.2020:[4.0] "Charismatisch ja, aber ich konnte den Hype um den Typen nie nachvollziehen .... Bevor jetz einige "WHAT? " brüllen, möchte ich in Erinnerung rufen, dass Eric Bischoff ihn als "unvermarktbar " deklarierte. Vor seiner Stone-Cold-Zeit sah er für mich aus wie eine Mischung aus Nailz (Kevin Kelly) & Dan Spivey. Nichts besonderes, er war halt da. Matches meist nur Durchschnitt. Name auch nur geklaut vom Ein-Colt für alle Fälle-Mann Lee Majors. Der Ultimate Warrior konnte zwar auch nicht wrestlerisch überzeugen, war dafür aber ein Vorbild in der WWF/E für Kinder u. Jugendliche. Kann man das von "Stone Cold" Steve Austin sagen, dessen Vorbild für das Gimmick real ja der Serienkiller Richard Kucklinski war? Ich denke: Nein. Bin aber auch kein Fan der "Attitude Ära". Gab zuviele Schimpfworte da u. schlechte Storylines da, Katie Vick lässt grüßen. Pro Wrestling finde ich nur dann gut, wenn es echt Vorbilder erschafft. That's the Bottom Line!"
Rating: 4.0
Sentiment: -0.11666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jansen ferriswrote on 09.09.2020:[2.0] "Everything about him screams "awesome promo cutter", another way to say he was a great talker. They say his in-ring skills declined after his neck injury in 1997 but for me, austin has been a mediocre in-ring worker since the beginning of his career. His charisma will always overshadow the fact that he was one hell of a gravedigger who refused to put someone over. He was booked as a fearless badass but when the camera goes off, it's a different story. One of the biggest coward in wrestling history."
Rating: 2.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: S0L1D SNA3K3wrote on 06.09.2020:[10.0] ""Stone Cold" Steve Austin was and still is one of the most over wrestlers of all time and it is hard not to see why. From his charisma to his brilliant psychology, Austin is an easy 10 on this list. Regardless of the fact that his neck injury severely limited him in the ring, the aforementioned qualities elevated him to being one of the best of all time."
Rating: 10.0
Sentiment: 0.2337797619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: martizzletaewrote on 22.07.2020:[10.0] "What more could be said. If you were watching wrestling in the late 90s - early 2000s, you know this is the Man."
Rating: 10.0
Sentiment: 0.10000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: sabbathbloodysabbathwrote on 09.07.2020:[10.0] "Remember kids, just because he wasn't a flashy technical wrestler during most of his "Stone Cold" days, it doesn't mean he wasn't consistently putting on good matches. He was one of the most entertaining brawlers in the business, with excellent ring psychology and one of the best finishers in wrestling history. And we don't even need to talk about his charisma and "bad ass" persona, since even non-wrestling fans recognize how great he was in that regard. And that glass-shattering entrance is legendary. The WWE will never be able to recreate what they had with Austin."
Rating: 10.0
Sentiment: 0.3091666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Ma Stump Pullerwrote on 05.07.2020:[9.0] "Austin's promo work and psychology are legendary, and for good reason: he's likely the biggest star WWE has ever had in terms of overall success. Granted, his actual ring work went well down after nearly being paralysed, but I have to respect the guy for getting himself over and reinventing as more of a roughhouse brawler than the technical wrestler he actually was, and getting out of the business before he did some significant damage to himself. If discussing before his injuries, Austin was arguably the total package in terms of a great wrestler: great promo skills, strong workrate capable of going with even the best at the time (like Bret) good look, and solid appeal to audiences. Few get to that level, and few ever will in future. Even through people can wrestle better than him, they will never have his popularity, or his buying power."
Rating: 9.0
Sentiment: 0.28553240740740743
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: King of Strong Stylewrote on 14.06.2020:[10.0] "Der größte Star der Attitude Era und einer der größten Gründe warum die WWF den War gewinnen konnte. Sein Gimmick und Charisma als Bad Ass war absolut genial, genauso sein Mic Work auch im Ring war er sehr gut und hat in großen Matches meistens überzeugen können. Für einen der größten Draws und eines der besten Gesamtpakete aller Zeiten die vollen 10 Punkte. And that's the bottom line, 'cause Stone Cold said so!"
Rating: 10.0
Sentiment: -0.33888888888888885
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Conorwrote on 26.03.2020:[10.0] "Definitely the most popular wrestler of his era; maybe ever. Incredible mic skills. Worked a crowd better than just about anyone. His ring skills deteriorated quite a bit after he broke his neck in 1997, but before then was actually quite good. Even after the injury he was still a master storyteller and a tough bastard. Tapped into the zeitgeist of the young blue collar generation in the 1990s and ran with it. Has an argument for being the greatest of all time."
Rating: 10.0
Sentiment: 0.35555555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: AAA3000wrote on 07.03.2020:[10.0] "The Rattlesnake! Er hat die WWE wieder zu Ruhm verholfen. Bestes Gimmick nach einer langen langen Durststrecke. Seine Performance auch außerhalb des Ringes, damals einzigartig. Nur The Rock (später) kam ihm gleich, für lange Zeit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: OrangeCrush00wrote on 03.02.2020:[10.0] "One of the greatest on the mic, there will never be another Stone Cold Steve Austin. He did not have many moves in his arsenal but he made up for it with his mic skills."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: OyunDeltawrote on 27.11.2019:[10.0] "He is one of the greatest icon of wrestling and true legend. He has talent, microphone skills, promo skills, good shape, good look and of course charisma. And his gimmick was awesome. His fights and feuds with Vince Mc. Mahon are really creative and successful; and that made Attitude Era great. I am not interesting in his other gimmicks in WCW but I also love his Ringmaster gimmick in WWF. I like his Ringmaster theme song and Stone Cold Steve Austin theme song. Unfortunately he had a neck injury in 1997 which caused his ring career end early. I believe that if Rattle Snake's neck didn't injure,  he could still wrestle in todays. But it's not matter, he had an awesome ring career and his career will live forever in our hearts. AND THAT'S THE BOTTOMLINE 'CAUSE STONE COLD SAID SO!"
Rating: 10.0
Sentiment: 0.3124331550802139
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Wrestlefan20wrote on 15.08.2019:[10.0] "One of the most important wrestlers in WWE history. He had the looks, charisma, gimmick and promo skills of a main eventer. Unfortunately, after his neck injury in 1997, his match quality decreased, but he was still able to put on a great match once in a while."
Rating: 10.0
Sentiment: 0.20952380952380953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: KyleEnjoysWrestlingwrote on 13.08.2019:[10.0] "When you're rating someone who's such a no-brainer top tier talent, there's not much more you can add to the conversation. One of the most influential and fun-to-watch wrestlers of all time."
Rating: 10.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheFrenchDisasterwrote on 28.07.2019:[10.0] "One of the greatest of all time, certainly the most important figure in WWE. His mic-skill was damn good, and he were a part of certains great rivalries. He just needed a sound of broken glass, two fingers raised in the air, two catchphrases and a move to leave his mark in the business's history. No offense to The Rock but, for me, Stone Cold Steve Austin is the most charismatic man in all of sports entertainment."
Rating: 10.0
Sentiment: 0.36493506493506495
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TooSweetPhilwrote on 18.07.2019:[10.0] "Nicht viel zum Rattlesnake zu sagen. Eine absolute Legende. Vielleicht der größte Badass und das Wichtigste Draw der WWE Geschichte. Das Gesicht der Attitude Ära und neben zahllosen großen Matches & Fehden stehen das gegen Hart von WM13 und das gegen Rock von WM17 als 2 der besten WWE Matches aller Zeiten hervor."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Sick Lebowskiwrote on 21.05.2019:[10.0] "Guter Wrestler, welcher mir in nahezu all seinen Karrierephasen gefallen hat. Schon im Team mit Pillman genial, danach als Singles Wrestler auch sehr ansehnlich. Sein Stone Cold-Gimmick ist ebenfalls saustark."
Rating: 10.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TylerWhitewrote on 25.03.2019:[9.0] "Für mich eine der Größten Legenden im Wrestling überhaupt. Er ist einfach das Gesicht der WWE aus der Attitude Era, der mit genialem Gimmick, genialem Micwork, soliden Matches und großartigen Fehden überzeugen konnte.  Eines der besten Gesamtpakete aller Zeiten und einer, der im Gegensatz zu The Rock gemerkt hat, wann man seine Karriere beenden sollte, was seine Karriere für mich zu einer der besten aller Zeiten macht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: zephyrwrote on 19.03.2019:[8.0] "Austin is obviously one of the most important figures in the history of wrestling as a whole. He was a damn good promo and his gimmick just suited him perfectly so everything worked well. His in-ring work wasn't quite up to par but it really didn't need to be world class because he more than made up for it and it obviously worked out pretty well."
Rating: 8.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 20SaiDa19wrote on 16.03.2019:[10.0] "It's difficult to put anyone in WWE history above Austin in terms of importance, as without him the WWF likely would have gone out of business. Austin had unparalleled levels of charisma and very few have held themselves better than he did. He was also a good in-ring talent earlier in his career, although his neck injury led to his limited in-ring style more people are aware of."
Rating: 10.0
Sentiment: 0.11185714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Der Commanderwrote on 11.03.2019:[10.0] "Einer meiner Top 5 Lieblingswrestler und das Gesicht der Attitude Era. Bei ihm hat alles gestimmt, Gimmick, sein Finisher (Stone Cold Stunner bester Finisher aller Zeiten ^^), seine Redeart, Micskills. Alles weniger als 10 Punkte ist ungerecht. Wenn seine Musik ertönte hat die Halle gebebt. Keiner (außer Hogan) hat die Massen so bewegt wie Austin. Seine legendären Fehden gegen Vince McMahon, HBK, The Undertaker, Mick Foley und The Rock haben letzenendes mit dazu geführt dass die WCW den Monday Night War verloren hat. "And thats the bottom line, cause Stone Cold said so! ""
Rating: 10.0
Sentiment: -0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LandonRyanWyattwrote on 31.01.2019:[10.0] "He was in the right place at the right time and was the right guy for the job. This guy took sports entertainment and professional wrestling to a whole new level. He revolutionized an entire business. He became the most popular star the business had ever seen."
Rating: 10.0
Sentiment: 0.26594516594516593
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: AsterDaviswrote on 25.01.2019:[10.0] "The greatest of all time! I can't really think of anything to else to say except that but just how it is. Hell Yeah!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: JEK 1991wrote on 23.12.2018:[10.0] "He got me into wrestling. Growing up he was popular. Great at his moves. WCW he was starting to look great. In WWE he changed and went popular. He is the first one to give the middle finger and drink beer in the ring. He was also the first to say "I'm gonna kick your ass! " and a guy that could talk tough."
Rating: 10.0
Sentiment: 0.33040123456790127
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DanTalksRasslinwrote on 21.12.2018:[10.0] "Regarded as one of the all-time greats for good reason.  Prior to his neck injury, Austin was a great in-ring mechanic, and after the injury - and as his character evolved - he was able to seamlessly transition into a rugged brawling style that suited him well.  He was also an all-time great promo and was able to capture the fans' imagination with his beer-swilling, profanity-using everyman gimmick, and turned his feud with Vince McMahon - a basic story of blue collar vs. the corporate - into one of the top money draws of all time.  Unquestionably belongs, along with Bruno Sammartino and Hulk Hogan, on the Mt. Rushmore of WWE."
Rating: 10.0
Sentiment: 0.35454545454545455
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Steamboat2511wrote on 29.11.2018:[10.0] "Steve Austin ist für mich der Inbegriff einer Wrestlinglegende. Er gehörte mit Sicherheit nie zu den technisch besten im Ring, wenn gleich er doch meist mithalten konnte. Das Gesamtpaket als Wrestling-Entertainer ist aber so dermaßen stimmig und überzeugend, dass mich dieser Umstand ausnahmsweise kaum stört. Als Top Player der legendären Attitude-Era gehört er zu den beliebtesten Superstars allerzeiten. Seine Persönlichkeit stellt wohl alles in den Schatten was sich sonst im Ring bewegt (neben Rocky vielleicht) und trotz dem er nicht der größte Wrestler aller Zeiten war, fallen mir zahllose legendäre Matches mit ihm ein, nicht nur die Klassiker gegen The Rock. Am Mic ebenfalls einer der ganz großen und sozusagen die Stimme der Attitude-Era. Austin jede Woche zu erleben war das höchste der Gefühle für jeden Wrestlingfan, deshalb unter dem Strich: Top 5."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Marky Whipwreckwrote on 15.11.2018:[10.0] "Simply put, he's the greatest performer of all time. He was perfect in every aspect, perfect in the ring, perfect on the mic and perfect from a charisma standpoint. I've never witnessed a better all-around performer."
Rating: 10.0
Sentiment: 0.7125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: RatingsMachinewrote on 12.10.2018:[10.0] "What more can be said about the biggest money draw in US wrestling history? (Hogan drew for longer, but Austin's peak was so much bigger than Hogan's) Austin always worked hard, and he was a good worker who could be great, even post-injury. His interviews were great and usually entertaining as well."
Rating: 10.0
Sentiment: 0.42976190476190473
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Makai Clubwrote on 23.09.2018:[10.0] "One of the all time greats. Awesome wrestler who could be intense, emotional and sympathetic at the same time. Had tremendous amounts of charisma through his facial and body language. Not a big fan of his promos. They are pretty samey but he does them very well. He can be very comedic as well. No matter what he was asked to do, he was great at it. Even his failed heel run, he was a great heel even though the fans didn't want to boo him. Is one part of the best WWE match of all time IMO. Has loads of great/classic matches under his belt both in WWE and before. And oh, he is one of the greatest draws ever."
Rating: 10.0
Sentiment: 0.3614583333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kaswrote on 14.09.2018:[10.0] "One of the greatest wrestlers to ever lace up a pair of boots. Was a fantastic technician before his neck injury, and completely changed his style to a fast-paced, aggressive brawler. Gave his absolute all whatever match he was in, I can't recall a single match where he didn't give 100%. On top of all this was a huge draw, due to his entertaining as all hell character, and unmatched mic ability, only The Rock and Roddy Piper hold up to him in that regard in my opinion. A once in a generation talent."
Rating: 10.0
Sentiment: 0.29035714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: pappahousewrote on 02.09.2018:[7.0] "Ich weiß, dass ich relativ alleine dastehe, wenn ich sage, die 9, 47 Gesamtwertung aktuell, ist völlig überbewertet. Die Catchphrases, das Mic-Work sind mehr als brillant, dass Charisma ebenfalls, aber der allerbeste Wrestler war er mit Sicherheit nicht. Die langandauernde Fehde gegen Vince McMahon war irgendwann übertrieben. Natürlich ist er ein guter Wrestler und die Lou-Thesz-Press und der Stunner waren absolut super, aber mehr als sieben Punkte kann ich nicht geben."
Rating: 7.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheRealAteszwrote on 11.06.2018:[10.0] "GIVE ME A HELL YEAH The king of the Attitude Era and the WWE. The most carismatic wrestler that i have ever seen and he is really like a beer in the real life and at the shows. In 1996 after the King of the Ring his speech is awesome "Austin 3:16 says I just whipped your ass! " that was awesome. AND THAT'S THE BOTTOM LINE, 'CAUSE STONE COLD SAID SO."
Rating: 10.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: AJStylopzwrote on 13.05.2018:[10.0] "Fucking Stone Cold man. One of the best wrestlers of all time. He was simply the man in the Attitude Era, he could talk a lot, have great matches, he was a badass with always great things to give us the fans"
Rating: 10.0
Sentiment: 0.23333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Dragon Fighterwrote on 02.03.2018:[10.0] "Oh yeah, stone cold fucking steve Austin the GOAT for sure. The icon of the attitude era. Phenomenal mic skill, charisma. Really great in the ring especially before his neck injury. The rivalry with vince and rock are remembered forever. Also one of the greatest draws of all time."
Rating: 10.0
Sentiment: 0.2285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Titansrevengerwrote on 07.02.2018:[9.0] "To me the character and attitude of the Stone Cold persona of Steve Austin transends the man himself. I started watching Steve Austin as a rookie and was a mark for him day one. Steve Austin could wrestle and hang with guys like Rick Steamboat (and did just that), and make it look easy. His star was quick to burn bright and maybe even quicker to die out. I say this because when Austins star burnt at its brightest it outshown everyone, yes even Hogan. However, with all of Austins charisma, attitude and intensity, his in ring performance wasn't the same as it was when he first started out as a humble workhorse. That being said Steve Austin as the flag berrer of the WWF mother ship during the attitude era was there greatest champion to date. The closest wrestlers on par with Steve Austin as WWF champion are few and far between;maybe Hogan and the Rock his chief rival. I just rank Austin the wrestler at around an 8. 5, which can be easily rounded to a 9 given the platform and circumstances. Steve Austin had a great run, one which ironically ended far to suddenly."
Rating: 9.0
Sentiment: 0.15666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: CHN325wrote on 31.01.2018:[10.0] "The Stone Cold character is the best character in wrestling history. Kick ass, take no prisoners guy who will go down as one of the biggest draws of all time. Even after his injury, when his style and ring worked slowed, no one was better at telling the story."
Rating: 10.0
Sentiment: 0.18611111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: taabr2wrote on 10.09.2017:[10.0] "Steve Austin used to be my favorite wrestler. His Stone Cold gimmick was absolutely brilliant and his feud with Mr. McMahon is one of my favorite rivalries in wrestling. Austin was also a very good in-ring worker and a great wrestling mind."
Rating: 10.0
Sentiment: 0.5016666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: coolserazwrote on 22.07.2017:[10.0] "The toughest SOB to ever lace up a pair of boots. Great wrestler before an unfortunate neck injury and a very good brawler after that. Excellent promo and top class persona. Austin was THE MAN in the Attitude Era."
Rating: 10.0
Sentiment: 0.542
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: SrHunterwrote on 21.06.2017:[10.0] "I don't know how someone can say this guy is overrated, this sounds more like a personal view on the guy , to put it simple he just SAVED WWF and was stellar draw,  aside from that there's not much i can say about him because everyone knows who he is and what did he do for WWE, great character, i also consider him a great wrestler, his catalogue of great matches don't deny it, great mic, great catchphrases, just one of the best and a influence to many."
Rating: 10.0
Sentiment: 0.5125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Lucubangetwrote on 21.06.2017:[10.0] "This fucking guy. Steve doesn't do a lot of flashy moves and always keep it simple, but what he lacked in the skill department, he projects his persona into every Televisions and compelled the world with his impeccable charisma. There will be no other."
Rating: 10.0
Sentiment: -0.057500000000000016
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: PathosLogosEthoswrote on 07.06.2017:[3.0] "OVERRATED *clap clap clapclapclap* OVERRATED *clap clap clapclapclap*  I've never been impressed by his in ring skill. His moveset is pretty boring, he's a mediocre seller, and nothing he does is that great. I really don't understand why he explode so much. His promo work was never that impressive to me either. He's really very cheesy on the mic. Yeah, I just don't understand why everyone liked him so much."
Rating: 3.0
Sentiment: 0.19090909090909092
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: PrinceJrwrote on 16.04.2017:[10.0] "Einfach zum Heulen, dass man die Zeit dieser Ikone nicht mitbekommen hat, weil man zu jung war. Eine der besten Figuren, wenn nicht die Beste, der Wrestlinggeschichte. Der Megastar schlechthin in der besten Zeit der WWF. Seine Fehde mit Vince McMahon hat alles im Wrestling verändert. Sicher eine der Top 3 Legenden der WWE-Geschichte. Heutzutage fehlen solche charismatischen Wrestler."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Blood Pumpwrote on 06.04.2017:[9.0] "Had it not been for the broken neck incident I have no doubt in my mind Steve Austin would have been a ten. Hell hes pretty damn close to it as is! Despite the bad neck the rattlesnake was still able to work a hell of a match, as proven in his WM X-7 match against The Rock or his work with Triple H. His heel run post X-7 doesn't do him any favors, and the what chants are a point of annoyance I can blame him for but at this point I'm nitpicking. Steve Austin is amazing, and arguably the single most popular wrestler of all time."
Rating: 9.0
Sentiment: 0.14900793650793653
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Changeling45wrote on 09.02.2017:[10.0] "This guy is one of the greatest ever.  THE top guy in THE hottest era of professional wrestling, ever.  One of the best promo workers to ever pick up a mic, completely lived his gimmick.  One of the most underrated in-ring competitors ever because he wasn't flashy and couldn't do acrobatics.  Austin told some of the best stories and has such a high wrestling IQ and knack for psychology that I feel goes completely unnoticed to most people."
Rating: 10.0
Sentiment: 0.3466666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring: Einer der besten Brawler allerzeiten, auch Technisch stark, aber nicht so stark das 10 Punkte gerecht wären. 9/10 (50%)  Promos/Schauspieltalent:Konnte super den letzten Outlaw/Redneck rüberbringen, legendär seine 3:16 Promo. 10/10 (25%)  Charisma/Statur/Gimmick:Klar hatte er Charisma und ein Super Gimmick, aber im Ring, wirkte er nie bedrohlich , für den Gegner deshalb nur 9/10 Punkte. (25%)  Sind dann insgesamt 9, 25 Punkte für die Rattlesnake.  = 9 Punkte"
Rating: 9.0
Sentiment: 0.09333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: NastyYaffawrote on 01.01.2017:[10.0] "One of the greatest wrestlers of all-time; Stone Cold is mostly known for being the man of the hottest era in wrestling - his charisma & mic skills during that era were just outstanding, and then we get to his in ring skills, which are very underrated by some. He is one of the greatest wrestlers of all-time, in ring only. Such a smart worker, gave his all, solid as a babyface, amazing as a heel."
Rating: 10.0
Sentiment: 0.3103896103896104
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: zenciaowrote on 18.12.2016:[10.0] "I concede a perfect 10 rating for Steve Austin.   Paul Heyman once spotted a young Steve Austin hitting the ropes especially hard on the indies. Even then, Austin stood out. He was the right man, at the right place, at the right time. It was his eyes, his walk to the ring, the magnetism in his movements where each act was a deliberate attempt to harm the other individual in the quickest and least elaborate way possible. The improvised promos, and carefully plotted storylines in the Attitude Era exploited these talents. Bell to bell, there was also no playing to the crowd, as seen today in a lot of modern wrestling's landscape (and the Attitude Era certainly. ) As a quick aside, whenever the "Who better? " argument between Austin, and The Rock comes up, I always side with Austin, with caveats -- Austin was the better wrestler, and more influential of the two, but The Rock was the better athlete (at the time. )  Steve Austin added credibility, and a feeling of reality to everything he touched. This feature cannot be overstated enough when you are working in an industry short on credibility, and high on skepticism. Every match felt like a real dogfight, every promo felt like it came from a real place. Kevin Nash explained this component in an interview one time. I have never heard it better explained than this: "There's two kinds of guys in this world, guys that get into a fight, and once they knock the other guy on the ground -- they show mercy, and stop. The other -- he keeps kicking while the other guy's given up on the ground. That last guy, that's your superstar. ""
Rating: 10.0
Sentiment: 0.1631122448979592
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Puro Spiritwrote on 11.12.2016:[10.0] "The man that was the face of the Attitude era , the man that saved WWF/E from being extinct , one of if not the biggest draw in the history of US pro wrestling , it's the Texas rattle snake Stone Cold Steve Austin .... the man was the total fucking package , great worker , very good on the mic , had a great connection with the fans ..... this man was truly the franchise of the WWF at its biggest boom period in it's history ....."
Rating: 10.0
Sentiment: 0.12999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "Eine lebende Legende. Seine Promos, seine Art sich zu bewegen, seine Matches. Bei Stone Cold hat alles gestimmt. Schade, dass er zu seiner Anfangszeit so verschwendet wurde, aber er war für die Attitude Era genau der richtige Mann.  Darauf ein Bier und ein Hell Yeah!"
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: SlickDevilSWPwrote on 06.10.2016:[10.0] "From his days as Stunning Steve Austin, I was always a fan of his. I always felt as a member of the Dangerous Alliance he was a future WCW World Champion in the making. Sadly he never got that opportunity but once he entered the WWF and became Stone Cold, he became one of the best of all time. His work from 1996-97 rank among the best work of any performer in history, and as a heel the only one who surpassed him all time was Roddy Piper. He could deliver a hell of a match too, even at the end of his career. A fantastic all-time great for sure."
Rating: 10.0
Sentiment: 0.2041666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: croatiantwat1950wrote on 22.08.2016:[9.0] "Yes, i love his Attitude era golden days and the very making of it. Yes, i love his feud with Vince, it is more than legendary. Yes, i love his feud with Dwayne, it is just as legendary as the one with Vince. Yes, he had the best gimmick in decades and amazing promo skills. But realistically, he is an average wrestler and mostly got carried by others in bouts. But hey. Memories are memories."
Rating: 9.0
Sentiment: 0.5375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: SweetestThing2wrote on 11.08.2016:[9.0] "What to say about Stone Cold Steve Austin that has not been said. He is the reason WWE won the Monday Night Wars and saved the wwe in the late 90's. His mic skills are beyond most wrestlers capabilities. Austin was a guy that oozed charisma and you could believe that the character and the man were not far off from each other. He was fascinating to watch and to this day i have never seen a crowd reaction like he got. Steve Austin was excitement personified and the black tights and black boots while simple was perfect and made so much sense with the character. Also no one really talks about his in ring ability which did take a dive when he became a star but go back and watch him in WCW he had the wrestling ability. The McMahon/Austin feud is still the greatest feud of all time and Austin was lucky enough to have the greatest heel opposite of him being the maniacal boss Mr. McMahon. Steve Austin was Batman (Albeit the batman from The Dark Knight Returns) and Mr. McMahon was the Joker and it was must see TV every Week. Stone Cold Steve Austin was the greatest money maker wwe ever had and was the best beer swilling, Fingering Gesturing, Ass kicking S. O. B that the WWE has ever seen."
Rating: 9.0
Sentiment: 0.21704545454545457
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: THE SINISTER JESTERwrote on 10.08.2016:[10.0] "The Reason WWE Won the Monday Nighy Wars, His Feud with McMahon Turned the Ratings Scale Because Nobody can Beat Steve Austin AND THATS THE BOTTOM LINE, CAUSE STONE COLD SAID SO"
Rating: 10.0
Sentiment: -0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Devitciiuwrote on 30.07.2016:[6.0] "I never got Austin. He was ok in the ring... until he wasn't anymore. I watched the whole attitude era unfold and just did not get the fan reaction."
Rating: 6.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Alessiowrote on 24.07.2016:[7.0] "He certainly was a huge draw but I don't enjoy watching him as others seem to. I think he's good but not great."
Rating: 7.0
Sentiment: 0.2628571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: JordanACEwrote on 18.06.2016:[10.0] "Austin 3:16 says I just whipped your ass! The Rattlesnake is so amazing, he was the Attitude Era. He was so good both in the ring and on the mic it's unbelieveable!"
Rating: 10.0
Sentiment: 0.7375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Chosen Onewrote on 11.06.2016:[10.0] ""Stone Cold" Steve Austin is the greatest wrestler in WWE history. He started off in WCW and had a great tag team with Brian Pillman that I really enjoyed. In the WWE he won some of the greatest championships and is the only person to ever win the Royal Rumble match three times. He has had some of the most memorable feuds, catchphrases, moments, and matches in history."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: HeadCheesewrote on 20.05.2016:[7.0] "Steve Austin is good, my one problem is that is WWE matches are to similar with each other and when he is not wrestling a top guy he does have them look good. But, he is very charismatic and was good in WCW/ECW."
Rating: 7.0
Sentiment: 0.44642857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Dennis-J-Millerwrote on 15.05.2016:[10.0] "He ushered a new era... and probably the most healthy one at that! He revolutionized characters and gimmicks... and "you can't teach that"! Honestly... saying Austin is a game changer would be a big understatement. He was the pro wrestling in the second half of the 90s, and one shouldn't be surprised when the average american fan will say that he misses "those Stone Cold days". WHAT? I said "those Stone Cold days"! WHAT? ! The days when Stone Cold was on TV... WHAT? ! When Stone Cold was signed... WHAT? ! Oh... you got the general idea!"
Rating: 10.0
Sentiment: -0.09837831439393938
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Zedwrote on 12.05.2016:[10.0] "Die WWE hat zur Attitude Era Geld gescheffelt wie niemals zuvor und danach. Wieso? Wegen Stone Cold Steve Austin. Als man 1996 den Quotenkampf gegen die WCW verlor kreierte man ein Gimmick, welches die WWE wieder vorran brachte. Welches? Stone Cold Steve Austin. Er war einfach der großartigste Wrestler aller Zeiten. Sämtliche Fehden, ob gegen Hart, Michaels, McMahon, Rock oder Angle waren die besten Fehden der dazugehörenden Jahre. Er stand in den meisten Main Events Ende der 90er und er bekam als Face die besten Publikumsreaktionen, mehr sogar als Hogan, obwohl er öfters als Heel agierte. Mit Austin hat man einen Jahrtausendcoup gelandet, der unerreicht bleibt."
Rating: 10.0
Sentiment: -0.3444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Coltwrote on 05.04.2016:[10.0] "Ich möchte jetzt nicht übertreiben, aber ich kann mich wirklich an kein Face erinnern das die Massen so elektrisierte wie Austin. Er ist DER Anti-Held der 90er und völlig zurecht das Gesicht der erfolgreichsten Ära der Geschichte. Sein Charisma und sein Micwork waren bzw. sind erstklassig. Über seine wrestlerischen Fähigkeiten kann es keine 2 Meinungen geben. Eine der größten Legenden aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Blake Cockstawrote on 29.03.2016:[10.0] "Es müsste eine 10+ Wertung geben. Nur wenige können sich diesen Status erarbeiten wie ein Stone Cold Steve Austin. Er war der Mann der Stunde. In diesem Sinne.... , cause Stooooone Cooold (wackelnder Kopf) said so! Ich liebe ihn <3"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Residentwrote on 15.03.2016:[10.0] "Stone Cold Steve Austin is one of the best wrestlers of all-time and the biggest draw ever. If I had to pick one wrestler, I'd say he was the best ever. He was a great brawler during the Attitide Era, but many people didn't realize he was also a great technical wrestler too which was shown during his time in WCW and when he first started in the WWF. His submission match with Bret Hart was, in my opinion, the best Wrestlemanka match ever. His feud with Mr. McMahon I'd say is the biggest feud ever. He and The Rock headlined 3 Wrestlemanias. He was a King of the Ring winner, 3 time Royal Rumble winner, and a 6 time WWF World Champion. Even 16 years after the Attitude Era and 13 years after he retired, people still talk about Austin all the time and I still sometimes see Austin 3:16 shirts."
Rating: 10.0
Sentiment: 0.5277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MAGICIANwrote on 15.03.2016:[10.0] "Stone Cold Steve Austin kann nichts anderes als 10 Punkte bekommen. Und warum? Cuz Stone Cold said so! Der wohl wichtigste Mann in der Geschichte für die WWE."
Rating: 10.0
Sentiment: -0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: James Dean Wrestlingwrote on 09.03.2016:[10.0] "Easy, easy 10 here. Alongside Rock, he was the guy to watch in the AE era. But above that he was a great worker in WCW and entertaining as hell in ECW. But back to the WWF character we all come to love, how can you NOT love this mans work. Stone Cold just personifies bad ass and was a staple of the 90s. Another top tier WWE great of mine.   All hail Stone Cold Steve Austin!"
Rating: 10.0
Sentiment: 0.12820512820512822
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheLoudMouthwrote on 17.02.2016:[9.0] "Genauso wie The Rock ein unfassbar starker Entertainer mit einem traumhaften Micwork. Austin war einer der charismatischsten Worker überhaupt und auch im Ring grundsolide. Hat zudem eine ganze Ära geprägt, von der man heute nur noch träumen kann."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DarylDixon84wrote on 16.02.2016:[10.0] "Es ist Stone Fu. king Cold Steve Austin... Muss man da irgendetwas dazu schreiben wenn man nicht völlig verblendet/blödet ist? Nö! Because Stone Cold said so!"
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Phenomenal91wrote on 11.02.2016:[10.0] "Quite possibly the most important wrestler of all time. Even bigger than Hogan. Certainly a better wrestler than Hogan. But he lived many lives before he was Stone Cold. Stunning. Ringmaster. Host of "Monday NyQuil" on ECW. His career was cut short due to a piledriver injury. But the WWF (not E) will always be synonymous with this man. Oh hell yeah."
Rating: 10.0
Sentiment: 0.16749999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Interceptorwrote on 11.01.2016:[10.0] "Es ist alles geschrieben worden! Schade nur, das mir persönlich aktuell so eine vergleichbare Größe fehlt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MatiasClubwrote on 16.12.2015:[10.0] "Stone Cold Steve Austin, creator of catchphrases like "ThatŽs the bottom line cause Stone Cold saido so" or "What? " or the most important "Austin 3:16". He probably was not the best wrestler in the world, but he was the most charismatic wrestler. I could compare him with Hulk Hogan, but I think he was better than the "Hulkster". When his music sounds at all the arena, the people celebrate his appearence, because he has the talent to be an entertainer. I donŽt have words that describe this guy, but he save the company, and the company is the most popular in the world thanks to him."
Rating: 10.0
Sentiment: 0.31818181818181823
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: gerybundy68wrote on 27.10.2015:[10.0] "Sicherlich nicht der beste Wrestler aller Zeiten, hatte Steve Austin seine Stärken eindeutig in anderen Bereichen, wenn auch nicht unterschlagen werden sollte, dass er einige der denkwürdigsten Matches der Geschichte abgeliefert hat.  Seine Ausstrahlung heute so schön Charisma genannt und sein einzigartiges Mic-Work sind es, was ihn eindeutig über die Masse der Anderen heraushebt. DAS Aushängeschild der Attitude Ära bleibt einfach in bester Erinnerung mit seinen diversen Fehden, Matches und Aktionen rund um den Ring.   Trotz seine limitierten in-Ring- Fähigkeiten verdient sich Stone Cold als der Mann der die Fahne der WWE in den 90ern hoch gehalten hat, meiner Meinung nach die Pole Position unter allen Wrestling-Stars."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Mandzukic9wrote on 21.10.2015:[9.0] "Eine unfassbar geile Mic-Work, Charisma ohne Ende, eine wahnsinns Ausstrahlung und total anständiges Wrestling für seine Zeit - zumindest vor seiner Verletzung. Wenn ihm etwas gefehlt hat, war das wirklich eine außergewöhnliche Gabe im Ring und ein paar Techniken mehr auf der Matte.  Trotzdem reden wir hier von einer prägenden Figur im Pro Wrestling."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Einer meiner Lieblingslegenden, wegen seinen krassen Aktionen und seiner Einstellung. Der Beste seiner Zeit und gehört zu den Besten, der Besten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Squared Circlewrote on 14.10.2015:[6.0] "A fantastic interview, who energized the fans like no one since Hogan.  His in ring work was sloppy, rushed and unbelievable.  His title run, while successful, had the drawback of killing the ring work itself.  Wrestling became all about the interview and the match was just an afterthought.  In fact, the matches became a stepping stone to the next series of interviews.  This really took away from wrestling as a whole, and to an extent it has not yet fully recovered.  In popularity, he's an unquestionable ten.  His impact on the actual wrestling though, drags his rating down."
Rating: 6.0
Sentiment: 0.07277777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: WWEReignsRuleswrote on 27.09.2015:[10.0] "Einer der Charismatischen Wrestler den ich je gesehen habe, die Fehden mit The Rock oder auch mit Vince McMahon sind einfach nur der Hammer gewesen und die Attitude Era einfach die geilste Zeit in der WWF.  Für mich der größte Wrestler! HELL YEAAAH!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: WWEfan802wrote on 21.09.2015:[10.0] "This man right here is a big part of my childhood, so I have no choice but to give him a biased 10 out of 10, If this was a honest review I would give him a 9 because his in ring skills was average at best, but his ability to get a crowd worked up was unbeatable, no one in today or earlier can work a crowd like this guy."
Rating: 10.0
Sentiment: 0.2892857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jacobphillipswrote on 13.09.2015:[9.0] "excellent on the mic and possibly the best character in wrestling history second only to maybe the undertaker. a real legend who defined the attitude era. the only thing preventing him from a 10 is his ring skills. still very good but many people possess better"
Rating: 9.0
Sentiment: 0.41100000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Yoyowrote on 09.09.2015:[10.0] "Pretty good in the ring, great on the mic and quite possibly the biggest wrestling character of all time, and one of the most memorable."
Rating: 10.0
Sentiment: 0.4583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ShooterMcShootwrote on 10.08.2015:[10.0] "He was the guy in the Attitude Era. Amazing performer when he was younger, but when he got older and became Stone Cold, he took it to a level that hasn't been seen since. Austin was great."
Rating: 10.0
Sentiment: 0.19333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Viper99wrote on 13.07.2015:[10.0] "Einer der besten Aller Zeiten und das absolute Aushängeschild während der Monday Night War zeit. Außerdem ist er einer der Gesichter der WWE allerzeiten. Er ist vielleicht kein Shawn Michaels im Ring, aber er war unglaublich Charismatisch, gut am Mic und gut im Ring!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MusSanwrote on 27.04.2015:[10.0] "Damals mein Lieblings Wrestler. Hoffentlich bestreitet er sein Comeback. Am besten gegen The Rock, das haette was."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: bigdaddy1wrote on 20.01.2015:[9.0] "The change from Stunning Steve to Stone Cold really propelled his career.  Good in ring skills and unmatched on the mic.  What can you say about the biggest draw of the 90's when the Monday Night Wars were at their peak.    If he'd had made the change earlier in his career we would be talking about him along the like of Ric Flair.  On the flip side if not for that character change he'd have a 5 or 6 rating."
Rating: 9.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Y2J316wrote on 28.11.2014:[10.0] "WHAT! WHAT! , Stone Cold ist einfach WWF für mich. Er half die WCW zu besiegen und seine Fehden mit The Rock, hhh, Taker und Vince waren einfach pures gold. Im ring ok aber seine Knie waren ja auch am ende und auch sein Nacken war hin. Mic skills waren auch super. Einer meiner Favs deswegen auch 10 pkte."
Rating: 10.0
Sentiment: 0.016666666666666677
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ApexOfEvolutionwrote on 21.11.2014:[5.0] "Es ist wohl kaum eine Person so ambivalent zu bewerten wie Steve Austin. Als Wrestler hat er ein Super-Gimmick als unangepasster Redneck mit einer legendären Fehde gegen Vince McMahon. Nur leider ist dies wohl nicht nur ein Gimmick, sondern entspricht auch der Privatperson. Gewalttätiger Ehemann und passionierter Jäger sind charakterlich eher zweifelhafte Eigenschaften. Wrestler: 10Punkte; Privatmann: 0Punkte."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: austin1987wrote on 04.11.2014:[10.0] "Also ich finde diesen Mann einfach Top. Ich finde er war auch ein guter Techniker bevor er mit seinem Knie Probleme bekam, danach ein fantastischer Brawler. Super Selling, geniale Micwork. Fand ihn auch als Heel gegen Bret Hart toll. Diese Fehde ebnete meiner Meinung nach den Weg für die Attitude Era - denn ein Rücksichtloser Typ wurde Trotz seinen "unsauberen" Aktionen und Handlungen immer beliebter - das Heißt doch was. Und somit war alles nichts mehr wie früher, wo die Faces alle nur sauber kämpften und die Heels immer nur die "Bumänner" waren.  Er hatte einfach klasse Fehden und einen der besten Finischer. Für mich hat bei ihm einfach das Gesamtpaket gestimmt."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LowJomoKiwrote on 15.07.2014:[10.0] "Bei Stone Cold kommen in meinen Augen nur 10 Punkte in Frage... Er war DER Star der Attitude Ära, er ist neben Foley und Rock, für mich der beste Mic Worker aller Zeiten. Im Ring war auch er ähnlich wie Rock kein Technik-Gott aber aufgrund des Gimmicks war das auch nicht zu erwarten. Sein Kampfstil passte wie die Faust aufs Auge und mal ehrlich: Niemand macht so coole Elbow Drops wie Stone Cold, mal davon abgesehen, dass ich den Stunner genial finde... 10 Punkte, fertig."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DanielBryan1986wrote on 31.03.2014:[10.0] "In der WCW lange Zeit ein guter Uppercard zusammen mit Flyian Brian. Hammer Match gegen Ricky Steamboart 1994. Fall Brawl 1994 gegen Jim Duggan eine Farce. In der ECW einer der ersten Shoot Aussagen gegen Hogan die mal stimmte. In der WWF/E dann anfangs ein Midcarder der gegen Bret Hart und Shawn Michaels zum Main Eventer wurde. Ganz klar die Fehde gegen Mr. McMahon und The Rock waren die Klassiker in der Attitude Era. Steve Austin war einer der besten Wrestler aller Zeiten und zu recht Hall of Famer"
Rating: 10.0
Sentiment: -0.11666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: EvilPriestwrote on 10.03.2014:[6.0] "One of the best entertainer of all times, he's very charismatic and was a great heel but his in ring was poor."
Rating: 6.0
Sentiment: 0.5125000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: J0KERwrote on 23.01.2014:[10.0] "The Rattlesnake Stone Cold Steve Austin! Die Ikone der Attitude Era! Jeder Fan der Wrestling schaut muss diesen Typen gesehen haben. Steve Austin ist ein Brawler und für mich eines der besten Brawler die je in den Ring gestiegen sind!  Hervorragende Fehden gegen Rock, HHH, Mankind, Taker, Hart, HBK hatte dieser Mann. In seiner Zeit wohlmöglich der beste Mic Worker die es gegeben hat. Austin lieferte jedes mal eine gute Promo ab. Hatte ebenfalls zahlreiche WrestleMania Moments und prägte die Attitude Era! Austin hatte ebenfalls den Charisma den mann als Champion gebraucht hat.  Für mich eines der Superstars die uns am meisten und am besten unterhalten hat. Einer der Ikone des Wrestlings! 3:16"
Rating: 10.0
Sentiment: -1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Elitemasterwrote on 14.01.2014:[2.0] "I really dislike this guy, he did beat up his wife, and thos fa**ots of the Attitude Era defend him like fanboys."
Rating: 2.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheUnderTakerwrote on 23.12.2013:[9.0] "Keine Frage, das Gesicht der Attitude Era. Im Ring nicht der größte, aber am Mic mit Jericho, Rock, Punk, usw. in meiner  Top 10."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 8BitLegendwrote on 22.12.2013:[7.0] "Von allen Top-Faces ihrer Zeit (Sammartino, Hogan, Shawn, Cena etc. ) finde ich Austin am farblosesten. Dieser Action Hero One-Liner Style ist eigentlich recht witzig und hat zahlreiche denkwürdige Promos hervorgebracht, aber ich konnte Austin im Ring gar nichts abgewinnen. Und es fehlte an Ebenen im Charakter. Leute wie Cena, Shawn oder Bret hatten ihre dramatischen Momente, während Austin einfach straight sein Ding durchzog ohne große Ups & Downs zu erleben, wenn man mal vom ein oder anderen Beatdown etc. absieht. Ich möchte ihn in der WWE-Geschichte nicht missen, aber zu den ganz großen zählt er in meiner Wahrnehmung nicht."
Rating: 7.0
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kenwrote on 25.11.2013:[10.0] "Mr. McMahon and Ric Flair have called him the greatest; there's nothing left to say."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Undertalkerwrote on 15.11.2013:[8.0] "Egal ob im Ring oder am Mikro, war ihm stets eine unheimlich hohe Intensität zu eigen. Er war unangefochten mit The Rock das Gesicht der Attitude Era. Ich denke, sein Gimmick spiegelte auch viel von seinem wirklichen Charakter wieder, und wenn jemand sich selbst spielen darf, ist er nach meiner Meinung immer am besten (vgl. CM Punk). Auch wenn er einen sehr intensiven Wrestlingstil pflegte, ist er für meinen Geschmack im Ring doch zu abwechslungslos und ich sah ihn nie wirklich gerne wrestlen. Das mag zwar auch etwas an seiner Nackenverletzung gelegen haben, aber wrestlerisch wirklich ansprechend fand ich ihn, soweit ich mich noch erinnern kann, auch davor nicht. Da ich ein Fan von anspruchsvollem Wrestling bin, zählt er nicht zu meinen Favoriten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Daneraswrote on 03.11.2013:[8.0] "Er ist knallhart, und extrem. Das war für mich zu übertrieben. Doch seine Kämpfe sind genial! Man kann deutlich viel "spüren" wie hart er zupackt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Chris1201wrote on 02.11.2013:[1.0] "Er hat mich genauso sehr unterhalten, wie meine Schreibtischlampe. Enough said."
Rating: 1.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ProRedstonewrote on 02.11.2013:[7.0] "Naja ich finde ihn eigentlich unterhaltsam, aber es gibt ganz klar bessere."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Alex Maedawrote on 05.10.2013:[10.0] "Es gibt meines Wissens kaum ein besseres Beispiel für eine perfekte Umstellung des Ringstils aufgrund schwerwiegender Verletzungen als Steve Austin. Okay, Kenta Kobashis oder Keiji Mutos Matches unterscheiden sich auch deutlich von ihren alten Klassiker, aber bei ihnen war es eher eine Reduzierung bzw. Modifikation (weniger Highflying, größerer Fokus auf Brawling/Matwrestling), Steve Austin wandelte sich vom wortkargen Techniker zum verbissenen Brawler mit Großfresse und einem Gimmick, über das man noch viele Jahrzehnte diskutieren wird. Zusammen mit Foley mein Lieblingsstar der Attitude Era und ein Mann, der meinen vollen Respekt verdient hat."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: koeddylaemmlewrote on 29.09.2013:[10.0] "Simply put, the baddest man in wrestling history. Stone Cold took WWE to new heights never seen and we've never been back. Austin makes a solid argument for GOAT."
Rating: 10.0
Sentiment: -0.09272727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kuzo Pilewrote on 13.09.2013:[10.0] "Probaly one of the greatest in-ring workers ever. He's the peak of the Attitude Era"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: BenutzernamenBraucheIchNichtwrote on 28.08.2013:[8.0] "Wenn man ihm heute nur nicht immer so viel Zeit zum Bier verpütschern gäbe..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "Das Aushängeschild der Attitude Era. im Ring gut bis sehr gut am Mic, der einzig wahre Gott, was er alles mit der Crowd anstellen konnte war unglaublich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: HighlightHEELwrote on 24.08.2013:[10.0] "Die Definition der Attitude-Ära. Ohne seinen Charakter wäre diese niemals das gewesen, was man heute als größte Zeit des Mainstream-Wrestlings kennt. Im Ring ziemlich stark, sein Stunner ist natürlich ebenso legendär wie sein Micwork. Der absolute Badass-Charakter, nicht zu vergleichen mit irgendjemand anders. Austin ist ein Kandidat für den größten Wrestler aller Zeiten und streitet sich vermutlich mit Hulk Hogan um diese Ehre. Für mich ist es klar Austin. Er hat eine Ära geprägt und sich dabei den Arsch aufgerissen und den Nacken irgendwie für 5, 6 Jahre zusammengehalten, bis dieser nicht mehr mitmachte. Seine Fehden gegen McMahon und Company, Rock, HHH sind mit das beste, was die WWE/F je geboten hat. Kaum jemand hatte es so schwer, in seiner Zeit als Heel auch als solcher anzukommen. Es ist ihm nie komplett gelungen, was aber nicht unbedingt ein Minuspunkt ist, weil es von seiner totalen Popularität kündet, bei der ihm nur Rock gefährlich nahe kommen konnte. Austin war für eine Zeit lang die WWE/F, und diese war Austin. And thatŽs the bottom line, cause Stone Cold said so."
Rating: 10.0
Sentiment: -0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DaNiwrote on 05.08.2013:[5.0] "Klar, Austin hat die WWE revolutioniert, seine Anti-Hero-Haltung war Grundstein für viele Wrestler, auch sein ganzes Auftreten war spitze.  Im Ring hat er mir allerdings nie gut gefallen. Bis auf seinen Stunner hatte er meiner Meinung nach absolut keine Ausstrahlung innerhalb des Rings. Seine Moves sind an einer Hand abzuzählen und nicht besonders gut.  Er ist ein Beispiel dafür, wie man auch ohne großes Wrestling einfach weit kommen kann, dafür hat er großen Respekt verdient."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Leonewrote on 02.08.2013:[10.0] "An excellent technical wrestler in his early days and an excellent brawler when his body started to limit itself through injuries.  Few wrestlers have had as significant an impact on pro wrestling within such a short space of time (13 years) like Steve Austin.  In his prime, he was 1 of the best workers you could ever hope to find.  A great seller with well polished and stylised offence, and great mic skills to go along with it.  Long before CM Punk's rebellious streak in 2011, was this 1996 King Of The Ring winner beginning to take shape as the wrestler who did everything the average american man wanted to do.  Somebody who oppressed and tormented his evil boss to breaking point.  It was 1 of the best feuds to this day, and an enormous mark on the business as a whole."
Rating: 10.0
Sentiment: 0.2708333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Sir Vida Loca IIIwrote on 09.07.2013:[10.0] "Der größte Wrestler allerzeiten. Da stehen selbst Ric Flair und Hulk Hogan hinten an. Flair selbst sagt bei dessen eigenen Hall of Fame einführung dass er es leid sei, immer zu hören dass Hogan der größte Wrestler allerzeiten sei, denn dies ist Stone Cold Steve Austin. Die WWE bezeichnet ihre Worker gerne als Superstars, was aber nur auf die wenigsten zutrifft. Auf Steve Austin trifft dies mehr zu als auf jeden anderen. Am Mic war er immer überzeuend, und auch im Ring war er ein solider Wrestler. Nach seiner Nackenverletzung durch Owen Hart konnte er natürlich nicht mehr an alte Leistungen anknüpfen, was verständlich ist. Steve Austin ist mittlerweile verdient in der Hall of Fame und hat sich seinen platz in der Geschichte mehr als verdient."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Eagle Whiskeywrote on 05.07.2013:[9.0] "Kein guter Wrestler! Aber sein Gimmick traf absolut den Nerv der Zeit und wurde von Austin perfekt gespielt und verkörpert. Ganz großes Kino außerhalb des Rings und einer meiner Lieblingscharaktere."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: christianpecevskiwrote on 22.05.2013:[10.0] "Gehört zu den besten Wrestlern der Welt meiner Meinung nach. Er hat die Wrestlingwelt geprägt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: razer2195wrote on 06.05.2013:[10.0] "ich finde einfach das stone cold steve austin einer besten wrester war überhaupt seine fehden waren einfach super"
Rating: 10.0
Sentiment: -0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: believeintheshieldwrote on 02.05.2013:[10.0] "Einer der besten, wenn nicht sogar der beste Wreszler allerzeiten. Er hat seine Rolle richtig überzeugend gespielt und hatte Hervorragende In-Ring Fähigkeiten. Daher 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: HooliNerdwrote on 10.04.2013:[10.0] "Der Mann lebt sein Gimmick und ist für mich der "Badass" überhaupt, der jemals einen Ring betreten hat. Immer geniale Fehden und machte stets eine gute Figur."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "One of the true greats. The man who defined the Attitude Era and enabled WWE to finally overtake WCW in the Monday Night Wars. Excellent on the mic and in-ring. A true legend."
Rating: 10.0
Sentiment: 0.42500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Diggertakerwrote on 13.02.2013:[10.0] "A violent, fearless and rude redneck with freedom of expression, Stone Cold Steve Austin, the most notable of the Attitude Era — the greatest era that WWE ever had. With an amazing fitting finisher, a monstrous persona and a glass-shattering charisma, Stone Cold is the face of attitude. He inherited this attitude to CM Punk, who makes a good profit with it."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Wohl DAS Gesicht der Attitude-Ära und ausschlaggebend für den Erfolg dieser: Mit seinem Stone-Cold Gimmick hat man alles richtig gemacht und es gibt wohl kaum einen wichtigsten Moment in der Attitude-Ära, an welchem Stone Cold nicht beteiligt war. Im Ring war er immer sehr nett anzusehen und konnte geniale Promos abhalten. Definitiv zurecht in der Hall of Fame und einer der größten im Pro-Wrestling"
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LM Punkwrote on 30.08.2012:[10.0] "Was soll man sagen? The Man! Leider auch viel zu früh von einer schlimmen Verletzung ausgebremst."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Chris Silverwrote on 28.07.2012:[10.0] "Er ist der BESTE ! Er ist einfache der beste im Ring und sonst."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Alex Riley 4 wwe championwrote on 09.03.2012:[10.0] "Zu ihm muss man nicht mehr viel sagen. Er hat Tough Enough ein Gesicht gegeben und sein Stunner übertrifft fast alle anderen Finisher in der WWE. Überragend!"
Rating: 10.0
Sentiment: -0.0462962962962963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: loCCawrote on 24.02.2012:[10.0] "Der größte Star im Wrestling aller Zeiten!  Hulk Hogen? EGAL. Wie es auch scon Ric Flair sagte: Ich bin es leid immer zu hören das Hulk Hogan der größte aller Zeiten sei, denn dass ist Stone Cold Steve Austin (bei Flairs aufnahme in die Hall of Fame) Austin war am Mic sehr gut und auch im Ring wusste er zu überzeugen. Nach seiner Nackenverletzung war er im Ring natürlich nicht mehr so gut wie früher. Davor jedoch in der lage (als beispiele) Randy Orton, Cena, Barett und co alt aussehen zu lassen."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Senajwrote on 28.01.2012:[10.0] "Man wird sich noch lange an Steve Austin erinnern. Seine Fehden beispielsweise gegen McMahon oder The Rock sprechen für sich. Einfach nur genial. Vielleicht ist er kein Technikgenie, dafür aber ein ausgezeichneter Brawler und hervorragend am Mic. Die Fans rasten ja immer noch aus wenn seine Musik gespielt wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Baszdmegwrote on 09.12.2011:[10.0] "Was kann man über Steve Austin sagen? Er ist für die Attitude Era das, was Hogan für seine Ära war und Cena wohl oder über für seine Ära ist. In Sachen Micwork und Crowd Interaction können ihm sehr wenige das Wasser reichen und insbesondere Anfang/Mitte der 90er hatte er im Ring mehr Talent als die meisten WCW oder WWF Wrestler. Einziges Makel vielleicht, dass er als Stone Cold nie ein wirklich überzeugender Heel sein konnte, aber wenn man es jemandem verzeihen kann, dann wohl ihm. :P"
Rating: 10.0
Sentiment: 0.07500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Kitanoyamawrote on 22.11.2011:[9.0] "Wrestlerisch gesehen eigentlich nicht viel besser als jeder andere gute Wrestler auch. Dies gleicht er aber durch eine hervorragende Präsenz, Showarbeit und Darstellung aus. Er hat genau die richtigen Fehden geführt und war einer der prägensten Figuren in der WWE/F der späten 90er und frühen 2000er. Der Attitude-Ära sei dank und das dank wiederum Austin."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Franchise Playerwrote on 07.11.2011:[8.0] "Austin oder Cena? Dan doch eher Austin. Steve war kontrovers und das hat ihn berühmt gemacht. Er, der große Gegenspieler von Vinnie Mac. Man darf aber nicht vergessen das er vor seiner schlimmen Nackenverletzung ein ganz guter Techniker im Ring war. Später musste er zwar mehr und mehr brawlen aber das macht bei ihm relativ weniger, weil auch irgendwie zum Gimmick passt. Austin ist nicht ohne Grund einer der größten Stars in der Geschichte der Promotion aus Stamford und damit 8 Punkte an Steve Austin caused The Franchise said so."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 7TheEwrote on 07.11.2011:[8.0] "Tja Steve Austin warscheinlich von den meisten In-Ring unterschätzt war aber vor der Nackenverletzung (danke Owen R. I. P. ) auch ein guter Technischer Wrestler, am Mike hat er immer nur Phrases gedroschen genau wie Rocky, also dafür eher Minuspunkte, aber war wohl der Wrestler und das Gimmick das den Monday Night War fast im alleingang entschieden hat.  Alles im allen viel geiler als Rocky sein Dauerrivale! AND THAT'S THE BOTTOM LINE CAUSE E SAID SO!"
Rating: 8.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: hhhwrote on 13.10.2011:[10.0] "Die Verkörperung der Attitude Era... Was für ein Gimmick... 10/10 Punkten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Rated R Punkwrote on 06.09.2011:[10.0] "Stone Cold ist eins der Aushänge Schilder für die WWE, er schaffte es vom langeweilligen Ringmaster zum wohl coolsten Gimmick der WWF. Als Ringmaster bewies er durchaus auch Ring Skills, Schauspielerisch hat er vorallem als Rattle Snake überzeugt und auch am Mic ist er eine coole Sau. Seine Storys waren eigentlich wirklich alle fast ausnahmelos gut."
Rating: 10.0
Sentiment: -0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Cybermikewrote on 04.09.2011:[10.0] "Hat der WWE das meiste Geld bisher eingebracht, prägte die Attitude-Ära und zeigte herausragende Matches und das alles ohne einen Anabolika-Körper, und auf dem CAGEMATCH. de Bild hat er ja sein Smoking Skull-Belt und nicht so ein Sch**** Spinner Belt ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TAWPTierJustinwrote on 29.08.2011:[10.0] "Stone Cold Steve Austin, hands down, is the greatest wrestling superstar of all time. Ric Flair said what I'm about to say right now and I agree with him 100% on this. I'm so tired of everybody saying that Hulk Hogan is the greatest superstar of all time cause clearly it's Steve Austin. Yes, Hulk Hogan was the guy that put wrestling on the map but Stone Cold put wrestling on an even bigger map and put wrestling on a whole another level. Around the late 90's and the early 2000's when Stone Cold was on top of the world, wrestling had such a big buzz and everybody was into watching wrestling and there were so many people at the time that wanted to get into the business. Not only that, but you had programs like Tough Enough and you had wrestlers appearing on TV shows a lot like Fear Factor and all them shows. I mean yeah there's always been wrestlers appearing on TV shows but nowadays and back in the Hulk Hogan days, you didn't have much of that. But anyway need I say more? It's still a no-brainer that Stone Cold Steve Austin is the greatest superstar of all time!"
Rating: 10.0
Sentiment: 0.0549526862026862
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: GTS Punkwrote on 19.08.2011:[10.0] "Steve Austin ist eine Ikone und zurecht ein Hall of Famer. Die legendären Aufeinandertreffen mit The Rock und seine Catchphrases machten ihn zum Star der er geworden und immer noch ist. HELL YEAH sag ich nur."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Fall Out Boywrote on 19.08.2011:[8.0] "Sein Gimmick ist eines der besten aller Zeiten. Im Ring nur ein guter Brawler, ansonsten Durchschnitt. Für die Attitude Era war das aber genau richtig. Bei seinen Promos kam es gerne zu Versprechern und generell gehört er am Mic nicht zur Elite."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: VanderVaartwrote on 14.08.2011:[9.0] "Dieser Wrestler hat sich nach seiner Herkunft benannt. Das war das Ergebnis einer unkreativen und zu kurzen Namensfindung. Sein legendärer Spruch: Austin 3:16 ist intelligent, da er sich damit gegen die Kirche auflehnt. Die Zuschauer lieben ihn dafür. Danach legt er sich mit seinem Chef mal so richtig an. Nach dem Motto: Arbeitnehmerrechte müssen erkämpft werden. Beim Wrestling zählen halt nicht nur Argumente. Das Bier hätte der Nicht-Veganer mMn nicht gebraucht. Nicht ganz so schlimm, wenn auch irgendwann nervig, ist die Phrase "What? ". Seine Matches sind häufig stark, da sein Move-Reportoire zu seinem aggressiven Gimmick passt. Die Sportler-Karriere musste er abrupt, durch einen Piledriver von Owen Hart, beenden. Danach feiert er noch ein paar Comebacks als GM und noch ganz wenige In-Ring Comebacks. Die sind aber schon viele Jahre her und in diesem Alter muss er eh seinen Nacken schonen."
Rating: 9.0
Sentiment: 0.15833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Bananaramawrote on 14.08.2011:[10.0] "Kaum ein Superstar hat eine gesamte Ära so geprägt wie er. Allgemein war er derjenige, der die Attitude Ära überhaupt eingeläutet hat durch sein Gimmick. Im Ring war er sicherlich besser vor seiner Nackenverletzung durch Owen Hart, aber dennoch war er im Ring einer der besseren, war zu recht einer der Superstars überhaupt und prägt Crowds noch heute durch seine "What? " Chants."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: WWE4evermaybewrote on 12.08.2011:[10.0] "Dieser Mann ist und bleibt Kult. Ok, er ist nicht der Beste im Ring, aber sein Auftreten ist immer ein Augenschmaus. Er war Mitbegründer des Wrestlings, wie wir es noch heute kennen."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: StoneColdStunnerwrote on 04.08.2011:[10.0] "So ziemlich der größte Wrestler aller Zeiten, dazu gibt es nur eins zu sagen: Fuck Fear, Drink Beer!"
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: latinoheat4everwrote on 25.07.2011:[8.0] "Die Attitude-Ära ist praktisch ein Synonym für den Rattlesnake mit seinem unvergleichlichen Gimmick und seinem Mic Skills. Allerdings hat StoneCold im Ring zu viele Mankos meiner Meinung nach, um mehr als 8 Punkte zu bekommen, obwohl er sicherlich einer der größten Superstars aller Zeiten ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Tamamwrote on 13.07.2011:[10.0] "Zusammen mit The Rock der retter der WWE und daher wahrscheinlich auch der größte aller Zeiten ! Spektakuläre Matches, große Promos und jede Menge denkwürdige Momente !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: NHJ2102wrote on 11.07.2011:[8.0] "war ein unglaublicher Gewinn für die WWE und jeden Wrestlingfan... unglaublicher Mic Worker guter Wrestler er hatte alles was ein Topstar brauchte war mit The Rock der King der Company anfang des Jahrzehnts"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LyrixFTWwrote on 08.07.2011:[10.0] "Der meiner Meinung größte Star im Wrestlingbusiness, er hatte die besten Storylines und das meiste Charisma, sicherlich, im Ring war er nur mittelmäßig aber das hat bei Rock der mMn noch mal ein Stückchen schlechter im Ring ist auch niemanden gestört. Und dann gibt's da ja nch Terry...  Ausserdem ist er der WWE immer treu geblieben und war immer wieder mal zu sehen :) Das Genie's wie Heyman und Punk Fan's bzw. Bewunderer Austin's sind zeigt nur wie genial der Mann ist. Absolute Legende und der größte Sportsentertainer aller Zeiten."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Play2Xwrote on 30.06.2011:[10.0] "Der ist cool... What? Der ist cool... What? usw. ^^ Stonecold ist einfach einer der unterhaltendsten Wrestler, die dieser Sport hervorgebracht hat! Man kann ihm nur 10 Punkte geben!"
Rating: 10.0
Sentiment: 0.4484375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Donald Duckwrote on 26.06.2011:[7.0] "Ich war noch nie ein wirklicher Fan von Stone Cold Steve Austin, konnte nie verstehen was die Leute an ihm haben. Nichtsdestotrotz respektiere ich das was er erreicht hat und der WWF/WWE eingebracht hat. The Rock fand ich immer meilenweit besser."
Rating: 7.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Dennizwrote on 16.06.2011:[10.0] "Steve Austin ist für mich ohne Zweifel mit HBK und Rocky zusammen die Spitze der WWE !  Austin ist super unterhaltsam und nie langweilig...."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: FriarFergusonwrote on 08.05.2011:[10.0] "Sehr gute Mic Skills und wer ihn aus seinen alten Ringmaster zeiten kennt, weiß, dass er auch im Ring ordentlich was zu bieten hat. Ist bis heute einer der beliebtesten, erfolgreichsten und am meisten bejubelsten Charaktere im Wrestling, was auch nicht von ungefähr kommt. Ich habe selten einen Wrestler, egal ob heel oder face, mit so viel Zugkraft gesehen wie Stone Cold. Zudem hat er vielen großen Namen etwas voraus: Austin hat das Wrestling nachhaltig verändert. Seine Rolle hätten meiner Meinung nach nicht viele andere spielen können, anders als bei Hogan und Cena hatte diese nämlich ihre Ecken und Kanten, war wie auf Austin zugeschnitten und er löste damit Ungeahntes aus."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: HesBackwrote on 29.03.2011:[10.0] "Kann nicht weniger als 10 Punkte geben, ohne ihn und Vince wär es möglich gewesen dases die WWE anstatt der WCW erwischt hätte. Und tut mir leid diesen Affenstall WCW braucht keine Sau"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: C0nspiracywrote on 27.03.2011:[9.0] "DER Mann der 90er und frühen 2000er. Er hat die Attitude Ärä geprägt wie kein anderer, ausserdem war er vor seiner verletzung insbesonders im Team mit Pillman ein wirklich sehr guter Wrestler. Sein wert für WWE hat ihm einen Platz in der liste der Wichtigsten Wrestler aller zeiten gesichert. Eine 10 kriegt er nicht weil Er verglichen mit einen Ric Flair zB. "nur" über 5 Jahre an der Spitze war."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jupp365wrote on 29.01.2011:[10.0] "Eine Charismagranate aller erster Güte. Meiner Meinung nach glaubhafter als The Rock. Musste seine Karriere leider viel zu früh beenden. Seine Filme gefallen mir auch sehr gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: NaGoyahwrote on 23.01.2011:[10.0] "Bester Enternainer den es je gab für mich, zwar nicht der allerbeste wrestler aber das machte er mit micwork weg, jedesmal gänsehaut feeling wenn die Scheibe klirte^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ksoldier83wrote on 16.12.2010:[9.0] "Was kann man noch über Stone Cold sagen? Eigentlich nix mehr und ich hatte nur zwischen 9 oder doch 10 geschwankt, mich dann aber doch für 9 entschieden, weil seine Matches dann doch nicht in dauerhafter Erinnerung geblieben sind, außer vielleicht das bei Wrestlemania gegen Bret Hart."
Rating: 9.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: cagefighterwrote on 30.11.2010:[10.0] "Austin! Austin! Für mich DER Mann der WWE. Zwar könnte man jetzt sagen er war Wrestlerisch limitiert( wozu ich sagen muss, seit seiner Nackenverletzung hat er einen anderen Stil gefahren, der aber vollkommen ok war und zu ihm passte), trotz allem hat er das wrestling und die wwe sehr geprägt allein durch sein vollkommen überzeugendes gimmick. ich liebte das glass splittern, denn jetzt kam Austin und alles konnte passieren! Austin! Austin!"
Rating: 10.0
Sentiment: 0.9765625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LabronBenoitwrote on 17.11.2010:[10.0] "Jemand, der das Wrestling und das dazugehörige Entertainment von Grund auf verändert hat. Ohne Stone Cold wäre es wahrscheinlich nie zu einer Attitude-Ära gekommen! Neben The Rock der größte seiner Zeit."
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Marth99wrote on 01.11.2010:[10.0] "Der wohl wichtigste Wrestler der WWEaller Zeiten deshalb 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: CM Dannywrote on 13.10.2010:[10.0] "Vince McMahon hat ihn als den größten Superstar aller Zeiten bezeichnet und wenn nicht Vince, wer soll das dann schon beurteilen können. Ich habe Austin zum ersten Mal in der WCW als Teil der Hollywood Blondes gesehen. Damals hatte ich noch gedacht, dass die beiden nur als Team Erfolg haben können. Damit lag ich falsch. Austin 3:16 sollte schon bald die Welt übernehmen. Was habe ich ihn beneidet, als er sich mit seinem Boss anlegen durfte und dadurch auch noch Champion wurde. Austin war genau das richtige Werkzeug gegen die Übermacht der WCW und Austin selbst dürfte es gefallen haben, sich in dieser Form an Bischoff zu rächen. Austin ist zum Symbol für eine bessere Zeit bei WWE geworden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Rated R Champwrote on 19.09.2010:[10.0] "Steve Austin ist einfach ein Phänomen für sich. Der Mann verhielt sich, vom Face-typischen Kampfgeist mal abgesehen, die meiste Zeit wie der personifizierte Heel und dennoch lagen ihm die Fans über Jahre buchstäblich zu Füßen (und das zu einer Zeit, in der Kayfabe noch einen anderen Stellenwert hatte). Ich kann nicht mal genau sagen was es war, aber Austin hatte einfach etwas, was ihn zum Inbegriff des Tweeners machte. Er konnte die Fans stets in seinen Bann ziehen und lieferte selbst mit seinen späteren Nackenproblemen noch ganz ansehnliche Leistungen im Ring ab. Definitiv einer der drei größten Namen im US Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: rockysadrianewrote on 10.09.2010:[10.0] "Der größte Goldesel der WRestlinggeschichte. Weder Hulkamania noch der Merchandising-Wahn um den weissen Rapper der dann zum Soldaten mit Turnschuhen wurde könne da mithalten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Rock93wrote on 06.09.2010:[10.0] "Was gibt es da zu sagen? Dieser Mann hat das Wrestling als Entertainment revolutioniert, durch tolles Charisma, geiles Mic-Work und eine Hammer Story! Ohne ihn hätte der Monday Night War vielleicht bis heute angedauert!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: P92wrote on 28.08.2010:[10.0] "Einfach nur Kult! Einer, der das Wrestling-Business nie vergessen wird! Einer, den die Fans nie vergessen werden! Er lässt sich bei einigen Shows auch mal blicken! Raw 2010 kurz vo Wrestlemania... Er ist einfach Kult... und er ist dankbar gegenüber seinen Fans...  Treue! And thatŽs the Bottom line... cause STONE COLD said so!"
Rating: 10.0
Sentiment: -0.5192307692307693
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: royalonewrote on 18.08.2010:[10.0] "Hat der WWE sehr viel geld gebracht und wie er am micgearbeitet und mit dem publikum gespielt hat war meisterlich.  weniger als ne 10 geht nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Titanwrote on 21.06.2010:[10.0] "Man muss an dieser Stelle einfach volle Punktzahl geben. Steve Austin ist eine lebende Legende im Wrestling-Biz und sorgte mit seinen Matches, Promos und Fehden immer wieder für Furore in der Attitude Ära. Ein klasse Gimmick, welches man heute so nicht mehr finden wird!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Weltywrote on 02.06.2010:[10.0] "Steve Austin ist einfach der Größte für mich, durch seine doch sehr normale Kleidung ist aus diesem Gimmick des Stone cold einfach eine lange und überzeugende Karriere geworden."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: morph80wrote on 30.05.2010:[10.0] "Lebende Legende, Hall of Fame Mitglied, Raw Superstar Of The Decade, hat einige der besten Fehden abgeliefert, am Mic einer der Besten und im Ring immer sehenswert."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Golgotawrote on 23.05.2010:[10.0] "Allein für den besten Finisher aller Zeiten bekommt er von mir die 10. Gimme a hell yeah!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Erasedwrote on 22.05.2010:[9.0] "Stone Cold Steve Austin, eine wahre Legende und Kultfigur der WWF/WWE. Seine Reden waren immer packend, spektakulär und unterhaltsam. Einer der größten Wrestler überhaupt"
Rating: 9.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Edge96wrote on 14.05.2010:[10.0] "Einer meiner absoluten Lieblingswrestler. OK, im Ring sicher nicht der beste, aber es gibt auch deutlich schlechtere. Dafür sein Gimmick, Charisma und Micwork umso besser. War sicher einer der Hauptgründe warum die WWE die Monday Night Wars gewonnen hat. Sein Stinkefinger und seine Sprüche sind einfach legendär. 10 Punkte!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: RockerDropperwrote on 12.05.2010:[6.0] "Hui, der Flächenbomber sorgt für Zündstoff! :) Okay, dann meine Meinung: Austin überbewertet, seine Wirkung nostalgisch verklärt? Definitiv. Es stimmt, das die ersten 1, 2 Jahre nWo sicher weit innovativer waren/mehr bewegt haben als ein Austin, der sich ellenlange Wortgefechte mit McMahon lieferte. Beliebt war er trotzdem, besonders in den USA; in einem Land, in dem Flüche mit einem Piepston versehen wurden kam es einfach an, das sich jemand wie ein Asi benimmt, flucht, den Stinkefinger zeigt und Bier säuft, alles zur besten Sendezeit. Nicht niveauvoll, sondern ein gezielter Tabubruch, den die WWF damals als Mittel gegen WCW einsetzte; und Austin war der beste, den sie für den Job hatten. Wie Bishoff sagte: er war der große Fisch in einem damals eher kleinen Teich. Wrestlerisch ist Austin zu WWE-Zeiten eher schwach gewesen; er war schon vorher kein Ass, aber die Verletzungen haben ihn noch weiter runtergezogen, ausgereicht hat es aber für sein Gimmick allemal. Auch wenn ich das Spiel mit der Obszönität nicht schätze, kann ich seine Wirkung nicht völlig leugnen. Wir bewerten nicht die rein technischen Fähigkeiten, sondern das Gesamtpaket; und Showtalent gehört halt seit jeher zum Pro-Wrestling, deshalb gebe ich Austin zumindest 6 Punkte."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Sandmannwrote on 04.05.2010:[7.0] "Ich war nie ein großer Austin Fan. WEnn dann noch eher zu seiner Zeit mit Pillman als Hollywood Blondes. Im Ring sicherlich nicht mehr als durschnittlich aber er hat es einfach verstanden ein Gimmick zu finden das wirklich zu ihm passte und das er gut verkaufen konnte. Von daher ist er auch zu Recht der beliebteste Wrestler aller Zeiten geworden."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Damon Strikerwrote on 01.05.2010:[9.0] "Sein "Stone Cold"-Charakter mag zwar einer der Hauptgründe für den Erfolg der Attidude Ära sein, mich sprach er aber nicht so sehr an. Erinnere mich ehrlich gesagt lieber an seine Zeit in der WCW als Stunning Steve Austin. Insgesamt natürlich ein großartiger Mic-Worker und auch im Ring ganz gut. Trotzdem reicht es bei mir nicht für die volle Punktzahl!"
Rating: 9.0
Sentiment: 0.012500000000000011
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Mizisawesomewrote on 25.04.2010:"@Der Flaechenbomber: Du nennst hier schon Gründe die mindestens eine 6 im Punktesystem rechtfertigen würden (der Teil mit Gesicht der Attitude-Ära usw. ) und doch gibst du ihm nur 3 Punkte weil seine In-Ring-Skills nicht so toll waren. Klar war Austin ne Sandman-Kopie. Aber er hat seine Rolle immer gut gespielt, er wusste immer zu unterhalten und wie auch du schon sagtest: Ein Cena is auch nicht anders. Schon allein, der Punkt das diese beiden Worker beim Publikum ziemlich over sind zeigt doch, dass du nicht ganz verstanden hast was nen guten Wrestler am Ende wirklich ausmacht."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Matt Mackswrote on 06.04.2010:[10.0] "Steve Austin ist einer der größten Stars des Wrestlings überhaupt und der Superstar der 90er Jahre. Sicherlich profitierte er davon, dass er das richtige Gimmick und den richtigen Widersacher zur richtigen Zeit hatte, aber manche Menschen vergessen gerne, dass man nur aus den richtigen Zutaten noch lange kein Meistergericht zusammenkochen kann. Austins Qualitäten am Mikro, seine Intensität als Charakter und im Ring, sein fühlbarer Willen, immer 100% zu geben -- all das spielte eine ebenso große Rolle wie das Gimmick. Sein Karriereende auf Grund der Nackenverletzung war eigentlich schade, aber das erlaubte es ihm auch, mehr oder weniger auf dem Höhepunkt seiner Karriere abzutreten (wie auch Langzeitrivale und Freund The Rock), so dass sich die Fans immer an seine Hochzeit erinnern werden, wenn sie an ihn denken."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Cloverwrote on 06.04.2010:[9.0] "Geniales Gimmick, wrestlerisch aber nur Mittelmaß. Dennoch ein idealer Verkäufer seiner Rolle - aber wer wäre das nicht, wenn man sich zu fast 100% selbst darstellen darf ;-) .. so WHAT? ! 9 Punkte (minus 1 wegen Ringskills)"
Rating: 9.0
Sentiment: 0.13749999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: KingSvenwrote on 27.03.2010:[9.0] "Eigentlich schwierig zu bewerten. Natürlich genialer Mic-Worker der die heutige WWE quasi im damaligen War überleben ließ und die Attitude-Ära begründete. Mit wahnsinnigen Charisma ausgestattet, die Fans liegen ihm auch heute noch zu Füßen. Ebenfalls eine absolute Legende im Ring und er wusste auch wann es Zeit ist aufzuhören. Eigentlich klare 10 Punkte, jedoch überzeugten mich seine In-Ring Leistungen nicht wirklich. Zwar nicht schlecht aber auch nicht weltklasse so dass hier 9 Punkte für mich angebracht sind."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: element-41wrote on 18.03.2010:[10.0] "Ich machs mal kurz: Hammer Charisma, Hammer Mic Work. Im Ring auch gut. 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Papa Popanzwrote on 18.03.2010:[10.0] "10 points and thatŽs the bottom line - cuz Stone Cold said so"
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Straight Edge Jerichoholicwrote on 16.03.2010:[10.0] "Stone Cold 3:16 says 10 Points for a Damn Legend! Hell Yeah!"
Rating: 10.0
Sentiment: -0.36875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Moyawrote on 15.03.2010:[10.0] "Konnte die Massen begeistern und hinter sich ziehen wie kaum ein Zweiter. Wahnsinn welche Reaktionen er hervorgerufen hat. Seine Kämpfe waren immer intensiv, und seinen Finisher finde ich einfach klasse. Schade das er "relativ früh" seine Karriere beendet hat. Gehört ganz sicher zu den Großen des Geschäfts!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: rv27wrote on 10.03.2010:[10.0] "Er ist das Gesicht der Attitude Ära und einfach ein Großartiger Entertainer und Wrestler. MIt ihm wurde damals jede RAW Sendung zu etwas ganz besonderen. Schade das er nicht mehr da ist. Könnte mir in gut als RAW GM Vorstellen oder sowas in der Art."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MJ Goldbergwrote on 09.03.2010:[10.0] "Mit Ihm und seinem letzten Gimmick wäre die WCW niemals gestorben, schade das man sein Potenzial nicht erkannt hat! Respekt an die WWE!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: VanZan82wrote on 07.03.2010:[9.0] "habe grad WM17 gegen the rock geguckt.... muss miene bewertung einfach ändern! ... hammer match!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Charismatic Enigmawrote on 25.02.2010:[10.0] "Wahrlich "the toughest a**hole being in the WWE" und dank brilliantem Auftreten der Star der Attitude Ära. Kam im Vergleich zu The Rock einfach noch ne Spur intensiver rüber, was wohl auch am Gimmick lag. Aber wie Matt Macks schon sagte, muss man auch einen Typen haben, der dieses auch rüber bringt. Steve Austin - eine Legende, die die Zeiten überdauert, und von der man auch noch in x Jahren reden wird, auch wenn er nicht ständig irgendwo auftaucht, wie so mancher "Brother" - Hell Yeah!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: SweetMetalMusicwrote on 21.02.2010:[10.0] "Der Mann, der dem Business die erfolgreichste Zeit bescherte und den Monday Night War entschied. Wrestlerisch war er vor seiner Nackenverletzung ein feiner Techniker danach war er mehr ein Brawler, allerdings war er trotzdem noch zu hervorragenden Matches fähig, wie z. B. gegen The Rock, Kurt Angle, Triple H oder Mick Foley. Am Mic ist wohl nur The Rock besser als er sonst keiner. Seine Fehden waren alle grandios, ebenso wie seine Catchphrases. Wenn er die Höchstwertung nicht verdient hätte, dann hätte sie niemand verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: WrestlingFanDuisburgwrote on 20.02.2010:[9.0] "Steve Austin ist eine Legende und nicht zu Unrecht in der HoF. Jedoch kann ich ihm keine zehn Punkte geben, da er seinen Wrestlingstil im Laufe der Karriere ins negative entwickelt hat. Fand ihn zu Beginn seiner Ära mit dem KotR Gewinn am besten. Hat damals technisch sehr überzeugt. Natürlich am Mic total genial aber trotzdem reicht es für die Legende nicht zu zehn Punkten."
Rating: 9.0
Sentiment: -0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Aquifelwrote on 08.02.2010:[9.0] "Früher hat er bewiesen, dass er ein ein guter Wrestler war. Als er dann so richtig in Fahrt gekommen war, gerade in Sachen Gimmick und Ringpräsenz, war er leider etwas eingeschränkter. Deshalb reicht es auch nur für 9 Punkte, denn so legendär vieles war, so repitativ war es oft auch."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Exist 2 Inspirewrote on 07.02.2010:[10.0] "Zu Steve Austin ist mittlerweile wohl alles gesagt. Der vielleicht größte Wrestling Star aller Zeiten. Da kann man nur 10 Punkte geben!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Super Dragonwrote on 28.01.2010:[10.0] "Stone Cold ist eine Legende er war der wichtigste begründer der Attitude Era, seine fehnde mit Vinnie Mac ist unvergesslich sowohl auch die Fehnde mit The Rock von diesem Mann wierd man noch in Hundert Jahren noch sprechen und er ist zurecht in der HOF, and thats the bottom line couse Stone Cold said so."
Rating: 10.0
Sentiment: -0.2888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Rated R Superstar EDGEwrote on 23.01.2010:[10.0] "Ich kann ihn auch nicht so richtig leiden erkenne aber trotzdem seine Klasse. Er hat ein sehr gutes Mic-work und zumindest durchschnitliche in ring Leistungen und vorallem hat er unglaublich viel für die WWF/E getahen und das gehört gewürdigt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheROCKwrote on 22.01.2010:[10.0] "Stone Cold war natürlich zur richtigen Zeit am richtigen Ort. Ließ sich von schlimmsten Verletzungen nicht beirren und riss sich den Ar*** so auf, dass er der größte Superstar der Attitude-Ära wurde. Für mich einer der größten Überhaupt."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: KASHwrote on 13.01.2010:[10.0] "10 Punkte: Aber in einem anderen Sinne wie für alle üblichen 10 Punkte Leute. Finde bescheuert wenn Leute hier meckern das Austin zu einseitig war mit seinem Brawlen. Euch ist schon bewusst das er durchaus ein guter Techniker war (1996 und davor) ? Euch ist dann auch noch bewusst das es ab 1997 nicht mehr um Technik ging. Der Mann hat mit dem Brawlen das Wrestling revolutioniert und verändert wie Hogan es getan hat. Er hat das US TV binnen kurzer Zeit umgestellt und durch seine Charakterausrichtung, die er perfekt rübergebracht hat, die WWE gerettet. Das alles ging fast von einem Mann und dem Programm um ihn herrum aus. Mal ehrlich ? ! Zu der Zeit mochte doch jeder miteinmal Brawls. Das war wie ein aufleben von Bud Spencer und Terrence Hill mit bösen Wörtern :D.... > Entertaiment im Begriffssinn."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DJ MaSchwrote on 03.01.2010:[10.0] "Klar Austin war technisch kein Benoit, aber trotzdem im Stande gegen naheuzu jeden Gegner ein gutes Match rauszuholen. Er verstand es wie kein anderer sein Gimmick zu verkaufen und war einer der besten Mic-Worker aller Zeiten. Er ist der wohl grösste Star in der Geschichte von Sports Entertainment und gewann den Monday Night War für die WWF praktisch im Alleingang."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: PhilippPascalUndertakerfanwrote on 03.01.2010:[9.0] "Ich kann meine Vorredner die nur einen oder zwei Punkte vergeben haben, nicht verstehen. Gut Stone Cold ist vieleicht wie Heute Triple H oder John Cena. Aber er hat wenigstens sein Gimmick gut verkauft, es ist eingeschlagen. Und es hatte einfach was. Stone Cold hatte vieleicht im Ring nicht so viel drauf wie Benoit, oder Bret Hart. Aber er hat mit den Moves die er konnte, sehr sehr sehr geile Matches auf die Reihe gebracht. Ob er es gegen Undertaker machte, oder The Rock, oder wen auch immer. Stone Cold hat zum Ende, mit schweren Problemen zu kämpfen gehabt und selbst dann noch einer der besten Matches mit The Rock zu stande gebracht, was für die meisten Fans immer eines der besten bleiben wird. Zu der Zeit wo Stone Cold und The Rock noch im Ring standen... konnte man WWE noch American Pro Wrestling nennen! Heute ist es so leid es mir tut Pus*y Kinder Mist. Jedes Match ist so langweilig wie das andere.. aber naja good old times eben.."
Rating: 9.0
Sentiment: -0.22857142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Hulksterwrote on 12.12.2009:[10.0] "Im Ring war er zwar nie der Größte, dennoch machte er es mit seinem überdurschnittlichen Mic Work wieder weg. Seine Matches hatten immer eine Intensität die aus meiner Sicht nur er und The Rock hatte. Er war genauso wie Rocky das Aushängeschild der Ättitude Ära. Seine Fehde mit Vinnie ist Legänder. Schade das er verletzungsbedingt wohl nicht mehr in den Ring steigen wird zu wünschen wäre es aber HELL YEAH."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: downtown2wrote on 07.12.2009:[10.0] "Das Besondere an Steve Austin ist die Trendwende die er in diesem Sport herbeiführte. Er konnte noch so bösartig auftreten, die Massen jubelten ihm zu, keiner wollte mehr angepasste Saubermänner als Helden im Ring sehen. Er war der richtige Mann zur richtigen Zeit am richtigen Ort. Diese hole Frase hat vielleicht noch nie so sehr gepasst wie bei ihm. Ringerisch war er schon immer recht versiert und auch im Team mit Pillman damals Kult. Aber erst das Stone Cold Gimmick sprengte jegliche Dimension. Jedenfalls der wertvollste Wrestler für ein Unternehmen, den es je gegeben hat und somit zurecht in einem sehr erlauchten Kreis der Besten aller Zeiten, ob man da jetzt Fan ist oder nicht."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MrSmackdownwrote on 30.11.2009:[10.0] "Austin vs The Rock! Steve Austin ist eine Legende, mehr muss man nicht sagen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: chaoswrote on 23.11.2009:[10.0] "In meinen Augen der absolut beste Wrestler und Performer den es in der WWE jemals gab, gibt und geben wird AND THAT`S THE BOTTOM LINE CAUSE STONE COLD SAID SO !"
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Turboladerwrote on 15.11.2009:[10.0] "Einer der wohl meist bejubelten Bad Guys, grandiose Fehden mit The Rock und Vince."
Rating: 10.0
Sentiment: -0.6999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: peiler316wrote on 15.11.2009:[10.0] "Der Leader der SAU COOLEN Attitude Zeit. Perfektes Gimmick für Steve Austin. Wer wollte nicht so sein wie er - Rebell, Einzelgänger, WWF Champion und , ach ja, ab und zu den Boss verprügeln! Meiner Meinung nach hätte man ihm damals zu WCW zeiten ( Ende 1994) gegen Hogan endgültig schon zum top Main Eventer machen sollen. 2003 (WM XIX) sein letztes Match gegen The Rock, kommt mir vor als ob es gestern war :-( Schade, das traurige, verletzungsbedingte Karriereende. AUSTIN 3:16 wir werden dich nie Vergessen! Danke für die vielen coolen PPVŽs und RAW ShowŽs ..."
Rating: 10.0
Sentiment: -0.12540064102564102
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Salidwrote on 13.11.2009:[10.0] "Einer von zwei Wrestlern, die meiner Meinung nach bis heute nicht zu ersetzen waren. Mit The Rock zusammen gerade zu der damaligen Zeit das absolute Non Plus Ultra! Ich wär gern dabei gewesen! Würden aber wahrscheinlich in der heutigen Zeit aufgrund der momentanen Firmenpolitik der WWE nicht mehr so gut funktionieren. Deshalb vielleicht sogar gut, daß ihre Zeit vorbei ist!"
Rating: 10.0
Sentiment: 0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Orton7wrote on 29.10.2009:[2.0] "Für Austin konnte ich mich nie begeistern. Wie einer meiner Vorredner schon geschrieben hat, war er im Ring absolut langweilig (so, wie Cena heute) und auch sein Mic-Work fand ich nie besonders gut..."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheBrainwrote on 30.09.2009:[10.0] "Neben Rock das Beste was Wrestling zu bieten hatte. Beide wussten, aus welchen Gründen auch immer, wann man sich aus dem Wrestling zurück ziehen sollte. Und das macht Superstars zu -> Legenden. Auch wenn es schade ist Sie nicht mehr zu sehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: starfuckerwrote on 29.09.2009:[10.0] "Charisma, Mic-Work-besser gehtŽs nicht. Zog in den 90ér Massen vor den Fernseher. ( damals noch auf Tele 5)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Woerpwrote on 23.08.2009:[10.0] "Der Beste von Allen. Er hat das Wrestling revolutioniert. Ich war damals ziemlich genervt von den fantasymäßigen Gimmicks, die es noch vermehrt gab. Ich war kaum noch interessiert an der WWF, ausgenommen an solchen Leuten wie HBK und den Hart Brothers. Da kam auf einmal ein Austin (nur kurz als Ringmaster) raus und stunnte Jeden, der ihm im Weg stand; und auch Jeden, der es nicht tat. Dieser Mann hat uns allen unvergessliche Matches, Promos, Fehden und Momente geliefert, dass er zu recht als grösster Wrestler der Neuzeit (bei mir aller Zeiten) angesehen wird. And ThatŽs the bottom line, Žcause The Woerp said so."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Zizouwrote on 14.08.2009:[6.0] "Rückblickend ein wirklich bescheidenes Gimmick, das in der Zeit aber voll eingeschlagen hat. Nicht mein Fall."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: 108 Sternewrote on 24.07.2009:[6.0] "Überschätzter Wrestler; ich glaube offengesagt noch nichtmal, daß seine Endlosfehde mit McMahon der WWF so viel Kohle eingebracht hat; da war die nWo zumindest in der Anfangsphase um Längen besser und vor allem wichtiger für die Entwicklung des Wrestling. Sein Charisma beruht größtenteils auf der bis dahin im US-TV als tabu betrachteten ordinären Flucherei, die ihn als Charakter irgendwie "edgy" erscheinen ließen. Objektiv betrachtet wars aber über Jahre nur immer dasselbe. Wrestlerisch nicht übel, aber sicher kein "Ringmaster". Sein Glück war im Grunde genommen der Personalmangel der WWF dank der zahllosen Abgänge zur WCW; nur so konnte aus einem Midcarder wie ihm ein Main Eventer werden."
Rating: 6.0
Sentiment: -0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Brainbreakerwrote on 10.07.2009:[10.0] "Es ist halt Stone Cold... er hat eine Ära geprägt, er hat die Massen bewegt, er hat die meisten Merchandising-Artikel verkauft. Es ist geradzu zynisch, dass er all das geschafft hat, nachdem er seine Nacken-OP hatte, die ihn sichtlich eingeschränkter hat wrestlen lassen. Zuvor war er auch im Geviert ein echter Meister. Alles in allem... hey, es ist halt Stone Cold!"
Rating: 10.0
Sentiment: -0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: homicidal cena michaelswrote on 01.07.2009:[6.0] "Er wurde nur durch die Fehde mit Vince und seinem Gimmik ein so großer Star. Steve war kein toller Wrestler er istzu langweilig im Ring und schlägt nur bis auf ein paar andere Moves. Er hielt immer sehr gute Promos zeigte jedem den Finger und trank Bier. Meiner Meinung nach ist Steve überbewertet da er kein toller Wrestler war und da drum geht es ja ums Wrestling und nicht um irgendwelche Promos."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: stinger89wrote on 17.06.2009:[10.0] "10 Points.... and that's the bottom line, cause Stonecold said so!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Eddiewrote on 02.06.2009:[10.0] "Ich mach es kurz, in der Attitude-Ära DER Star, dank ihm bekam die WWE sehr viel Geld, unter anderem auch von mir, 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Blazewrote on 14.05.2009:[6.0] "War zusammen mit The Rock einer der ganz großen Stars der Attitude Ära und genau wie bei The Rock haben ihn die Storylines um seinen Charakter zu dem Star gemacht, der er ist. Im Ring war er ganz gut und konnte mit dem richtigen Gegner auch noch einiges mehr herausholen (Bret Hart, Kurt Angle usw. ), aber war da nichts Besonderes. Charisma hatte er mehr als genug, denn das war zusammen mit seinen Fähigkeiten am Mic einzigartig. Kaum jemand hält so gute Promos wie er oder The Rock gehalten haben. Letztendlich war er zwar für die WWE zu Zeiten des Monday Night War von großer Bedeutung, das waren aber auch noch andere wie HBK, Bret Hart, HHH und auch Vince McMahon, ohne den sein Charakter weitaus weniger im Rampenlicht gestanden hätte."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Theron083wrote on 18.04.2009:[8.0] "Ganz ehrlich: Ich kann diesen unglaublichen Hype um ihn zu seiner Zeit nicht ganz nachvollziehen. Seine Skills sind ok aber nicht gut. Er hat Charisma, aber für mich war The Rock doppelt so charismatisch. Er war zu Recht ein Main Eventer und einer der beliebtesten, aber für mich persönlich reicht es nicht mit Bier um sich zu werfen und Stinkefinger zu verteilen. Ich find ihn wirklich gut! Aber eben auch nicht mehr. Wie er selbst gesagt hat: Er ist kein Wrestler der durch die Luft fliegt, er ist ein Kerl in schwarzen Schuhen, schwarzer Hose und schwarzer Weste und tritt seinen Gegner in den Arsch. :D"
Rating: 8.0
Sentiment: 0.5694444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: nightfallwrote on 16.04.2009:[10.0] "Neben The Rock derjenige der die WWE während der Attitude-Ära getragen hat. Nicht der beste Wrestler, aber eine extrem starke Persönlichkeit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Mick Funkwrote on 13.04.2009:[8.0] "Hatte das Zeug für gute Matches und ist natürlich DER Superstar der WWE neben Hogan. Trotzdem nur 8 Punkte weil er mich persönlich nie umgehauen hat und im Ring technisch doch sehr limitiert ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Father Nelsonwrote on 01.02.2009:[10.0] "The biggest Star Sports Entertainment has ever seen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The-Game91wrote on 01.02.2009:[10.0] "Stone Cold war das Aushängeschild der Attitude Ära. Seine Fehde mit Vince war einer der besten die es gab."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Elitecoachwrote on 16.01.2009:[10.0] "Brillantes Gimmick, großartige Dynamik, sehr gut am Mikrophon und auch - oft verkannt - ein hervorragender Performer! Der beste "Alles in allem"-Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Unrated Superstarwrote on 15.01.2009:[9.0] "Zwar kein Wrestling-Gott, aber ein verdammt gutes Gimmick mit tollem Mic-Work und Entertainment-Talent. Einfach eine coole Sau und der King der Attitude-Ära. Matches mit ihm und einem guten Gegner (z. B. The Rock, Bret Hart, Triple H) machen einfach immer Spaß!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ScrWwe94wrote on 17.12.2008:[10.0] "Man musste sich nur den Jubel anhörn bei Cyber Sunday als er Referee war und sein Entrance begann. Einer der Besten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Phenomwrote on 10.12.2008:[9.0] "Klasse Micwork, Klasse Wrestler. Jedoch fehlt noch was zur 10."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Smi-48wrote on 08.12.2008:[10.0] "Zur richtigen Zeit am richtigen Ort - just als das Face/Heel-Gerüst Mitte der 90er durch DX und NWO ins wanken gerat, traf seine Art den Nerv der Zeit. Zusammen mit Rock und Foley brachte er zeitlos geniale Promos. War ein wahnsinnig talentierter Wrestler, was nach seiner schweren Nackenverletzung durch Owen's Piledriver in intensives Brawlen überging, jedoch konnte er auf beide Arten ein Match unheimlich gut 'erzählen'. Dass er zur Wrestling-Boomphase Millionen an Merchandise-Erlösen einbrachte, gepaart mit der Tatsache, dass die WWF-Booker damals herausragende Storylines für ihn kreierten, lässt ihn retrospektivisch für die Bedeutung des Business auf einer Stufe mit Hogan stehen. In der Tat bleibt Austin zu Recht bis heute der größte Draw aller Zeiten ... 10 Pkt. !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: kutziwrote on 28.11.2008:[10.0] "Der größte Star den das Wrestling je hatte. Im Ring sowie am Mic ein Gott."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Perry Coxwrote on 23.11.2008:[10.0] "Der Mann ist einfach nur hammer! Eine Legende! And thats the Bottom Line, cause Stone Cold 3:16 whipped you ass (vermixt)!"
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: hostrodwrote on 11.11.2008:[9.0] "siehe Undertaker - legendär und revolutionär, aber auf Grund seiner spärlich gesäten Auftritte mittlerweile nicht mehr wirklich interessant. Betritt Austin die Bühne, gibts ein "Hell Yeah", Dosenbrot und einen Stunner. Nichts, was mich vor Jubel in die Höhe schnellen ließe. Am Mikro aber nach wie vor unersetzlich, deshalb einen Punkt mehr als der Deadman."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Animal360wrote on 22.10.2008:[10.0] "Kaum ein Wrestler wird bei seinem Entrance so gefeiert wie er. Das Publikum liebt Austin zudem war er gut als Wrestler unterwegs. Resultat: 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DirtiestPlayerwrote on 20.10.2008:[10.0] "Super Gimmick und klasse Mic-Work. Note 1, ganz klar."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Roennewrote on 15.10.2008:[10.0] "Einer der besten im Geschäft. Am Mic große Klasse und auch im Ring konnte er mich immer überzeugen. Der Mann ist einfach große Klasse und das Vorbild meiner Jugend. WHAT?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Wise Warriorwrote on 15.09.2008:[10.0] "Mann muss es einfach haben oder nicht - sowas kann man nicht lernen. Stone Cold hat es einfach."
Rating: 10.0
Sentiment: 0.04999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: StoneColdRevowrote on 29.08.2008:[10.0] "Einer meiner Lieblingswrestler. Super im Ring und am Mic. Austin 3:16 says I just whipped your ass!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: RIKYwrote on 21.08.2008:[10.0] "Man sieht ja wie sehr er polarisiert... mal ne 10 andere geben ne 0 eines kann und darf man aber nicht außer Acht laßen, er hat die WWE ze dem gemacht was sie heute ist, mit verschiedenen Anderen. Ohne ihn und sein Charisma wären der WWE viele Fans weggeblieben. Manche haßen ihn (habe ihn auch gehaßt), andere lieben Ihn. Schade daß er nicht mehr in Aktion zu sehen ist. Arrive, raise hell, leave! And that's the bottom line 'cause Stone Cold sais so!"
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: NJackwrote on 18.08.2008:[6.0] "Klar, der Mann hat das Wrestling revolutioniert und war der Retter der WWE/F. Er wurde von allen geliebt und hatte ein völlig untypisches Face-Gimmick für die damalige Zeit. Aber: Heute meckern alle, dass Cena im Ring nix leistet... Habt ihr mal Matches von AUstin gesehen? Der macht auch immer nur die selbe Scheiße. Und sobald man den Stunner sieht hat er gewonnen. Und wo wir schon beim Stunner sind... das ist imho der Finisher, der mir am meisten auf den Sack geht. Wo immer Austin auftaucht, was immer er gerade tut: Stunner hier, Stunner da. Sicher, er ist eine der schillerndsten Figuren des Wrestlings. Doch mir hat er schon als Mark damals irgendwann nicht mehr gefallen. Ich geb ihm ne 3..."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: nacho83wrote on 17.08.2008:[9.0] "Seine späteren Gastauftritte waren nicht einmal mehr unnötig, ansonsten wohl einer der legendärsten Wrestler der damaligen WWF. Was er technisch nicht drauf hatte machte er dafür mit seiner Attitüde wieder wett."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Jar Jar Binkswrote on 08.08.2008:[10.0] "The Texas Rattlesnake!  Sehr amüsiant!  Sein Fuck Fear und 3:16 "Gimmick" ist auch genial!  Außerdem ist der Stone Cold Stunner auch legendär."
Rating: 10.0
Sentiment: -0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Desperadowrote on 04.08.2008:[10.0] ""One of the greatest of alle time", wie JBL sagen würde. Im Ring zwar nur überdurchschnittlich, aber mit der genialste Micworker, den es gab. Jedes mal, wenn Austin bei einer Show aufkreuzt muss man sich einfach freuen bevor er überhaupt etwas gezeigt hat."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: sono fagunwrote on 23.07.2008:[10.0] "War '97 bis '00 mein absoluter Lieblingswrestler, unglaublich charismatisch einfach."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Weihnachtsmannwrote on 23.07.2008:[4.0] "War zu seiner Zeit wahnsinnig beliebt, hab nie ganz verstanden warum. Ich fand sein Gimmick nie besser als solide, seine Fähigkeiten im Ring haben mich auch nie vom Hocker gerissen und bei seinen Promos ist der Funke auf mich nie so richtig übergesprungen.... ok er hat mich gelangweilt. That`s it."
Rating: 4.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: WerderBremenwrote on 17.07.2008:[10.0] "Wenn man etwas zerspringen hört, eine Klapperschlange auf dem Titatron erscheint und eine dumpfe Musik gespielt wird, kommt sofort eine Stimmung und eine Ehrfurcht auf, die einmalig ist in diesem Geschäft. Sein rauher, rüppeliger Gimmick war das Zugpferd das die WWE zu dieser Zeit doch so anzog. Wann immer mal wieder jemand langweilig etwas schwätzte, platzte mit dem Zerspringen der Scheibe in seinem Theme auch die pure Freude und Emoition aus einem selbst heraus, denn man wusste, dass jetzt gleich wieder alles auf dem Kopf steht. Was ihn für mich also wirklich ausmacht ist die ultimative Ausstrahlung, die auf diese Art und Weise keiner, in diesem Ausmaß nur wenige haben. Er war auch für jede beliebige Story der WWE einsetzbar und machte was daraus. Ich gebe zu, dass ich mich jetzt schon auf den Tag freue bei dem während der Hall of Fame Feier wieder der Klang des zerspringenden Glases zu hören ist und zwei Finger von ihm (hoffentlich) in die Luft gestreckt werden... !"
Rating: 10.0
Sentiment: 0.26785714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: andrekoenigwrote on 08.06.2008:[10.0] "Sone Cold Steve Austin ist für mich, genau wie The Rock, einer der besten und charismatischsten Wrestler der Attitude Ära. Ich mag seine gesetzlose Art und seinen, wenn man das so nennen kann, Kampfstil. Er prügelte zwar größten Teils einfach nur auf seine Gegner ein, aber er hat es trotzdem immer wieder mit seinen paar Aktionen geschafft gute Matches hervorzurufen. Wenn man Steve Austin sieht und die Fans schreien hört muss man einfach mit jubel. Die Texanische Klapperschlange bekommt von mir die volle Punkzahl, weil er einfach unterhaltsam und charismatisch ist und weil er die Attitude Ära geprägt hat wie kein andere."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Rob Van Duesenschrauberwrote on 20.05.2008:[9.0] "Die personifizierte Attitude Ära. Unglaublich stark am Mic, im Ring im oberen Drittel."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Frutzwrote on 15.05.2008:[10.0] "Wahrscheinlich der Tweener schlechthin. Prügelte den Boss, soff sich kaputt, stunnte absolut jeden und war wohl neben "The Rock" das beliebteste, was die Attitude-Ära zu bieten hatte. Seine In-Ring-Fähigkeiten waren befriedigent, seine Mic-Fähigkeiten überragend, von den Fehden gegen McMahon ganz zu schweigen. Er verdient die 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Brooklyn Brawlerwrote on 15.05.2008:[10.0] "Ein Brawler in allen Belangen: Im Ring, im Aussehen und im Mic-Work - und gerade deshalb als Anti-Held SO over wie kaum jemals ein anderer Wrestler. Warum die 1? Because Stone Cold said so :)"
Rating: 10.0
Sentiment: -0.04999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: e-trom995wrote on 21.04.2008:[8.0] "Stone Cold ist sehr angagiert. Dafür gibt es meinen Respekt und 8!"
Rating: 8.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Die Gurkewrote on 21.04.2008:[10.0] "Unglaublich was dieser Man für eine Ausstrahlung hat, wenn Austin die Halle betritt brennt die sprichwörtliche Luft. Ich lese hier auch die Kommentare über seine nicht vorhandenen Inring-skills, aber hat Austin denn jemals schlechte Matches gezeigt? Austin ist eben ein Brawler, und das setzte er im Ring auch gut um. Deshalb ist dieser Mann imo auch so populär, weil bei ihm das Gimmick, der Wrestlingstil, das Micwork und die Promos alles wie aus einem Guß wirkt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Alpheronwrote on 17.04.2008:[4.0] "Ein reiner Haudegen, keine technik... Aber allein der Name Stone Cold Steve Austin od. 3:16 steht für sich. also 4 PKTE"
Rating: 4.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Amurebkuwrote on 16.04.2008:[10.0] "Kultfigur der WWE und immer unterhaltsam. Klasse Entertainer und guter Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: AnFuwrote on 12.04.2008:[7.0] "Mitreißen kann er, dass ist aber auch mit das einzige. Trotzdem starke Matches und eine Legende, aber keine Bestnote!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: FameAsserwrote on 04.04.2008:[10.0] "Ein unerreichter Entertainer!  Zurecht "Superstar of the decade"!  Ich hoffe ja immer noch auf ein comeback-egal ob im oder ausserhalb des Rings."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: sebiwrote on 30.03.2008:[10.0] "Wrestlingtechnisch nicht der Beste aber ein großartiger Entertainer"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Ruppiwrote on 27.03.2008:[6.0] "Sein Gimmick und sein dazupassendes Mic-Work sind genial und er hat sicherlich enorm viel zur Entwicklung der WWE beigetragen, dennoch war ich nie ein Großer Fan von ihm. Da ich ihn auch im Ring nicht wirklich gut finde, bekommt er zwei Noten Abzug."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Schandmaulwrote on 20.03.2008:[4.0] "Im Ring und am Mic für mich ausreichend. Mit dem Stone Cold Gimmik konnt ich nie was anfangen. Und die zahllosen Auftritte nach dem Karriere-Ende hätte man sich auch sparen können, da hierbei immer nur das selbe Muster abgespielt wurde."
Rating: 4.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: DonTwrote on 17.03.2008:[10.0] "Schade, dass seine Karriere so schnell vorbei gehen musste - er war einer der alles konnte - geiles Micwork und ein fantastischer Brawler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ecw foreverwrote on 17.03.2008:[10.0] "Ich gebe die vollle Punktzahl da Austin wohl einer der einprägendsten Gimicks hatte bzw hat. Okay mann kann auch wie bei Hogan sagen, das er um die richtige Zeit am richtigen Ort war und dies ausnutzte. Nun Austin ist bei aller Austin Fanatik nie ein grosser im Ring gewesen. Ich meine viel hat er nicht gezeigt. Einzige was man ihn zusprechen muss ist das können Moves zu verkaufen. Naja seine Matches gefallen mir zwar aber mehr als eins Pro Tag muss ich echt nicht sehen. Sein Mic Work sehe ich ganz weit. Es gibt wirklich nur wenige die für mich besser am Mic waren wie Eddie oder Jericho. Ich finde er gehört zu den Mic Workern überhaupt. 3:16"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Instant Classicwrote on 14.03.2008:[4.0] "Die SL's mit Vince McMahon und Taker waren sehr stark, aber ansonsten konnte ich nie wirklich was mit Austin anfangen. Für mich hoffnungslos overrated."
Rating: 4.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Hardcoremaniacwrote on 16.02.2008:[10.0] "Genialer Typ, und wiedereinmal ein Beweis dass man kein Supertechniker sein muss um weltklasse Matches zu bestreiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jimpanse1980wrote on 23.01.2008:[10.0] "Sicherlich kein Gott im Ring, aber es gibt kaum einen zweiten, der so die Massen begeistert hat wie er. Zudem kam er jederzeit glaubwürdiger rüber als Hogan, der auch nur wenige Moves in petto hatte. Egal wo, egal wie - Ihm wurde immer zugejubelt. Un auch wenn sein Gimmick ein wenig an den Sandman erinnert, sag ich lieber gut geklaut als schlecht selbst gemacht. Er hatte unvergessenen Matches und bestritt die meisten MainEvents. Das sollte alles sagen. In einer Sammlung mit den erinnerungswürdigsten RAW-Momenten, würde sein Name/Bild sehr häufig vorkommen. Alles andere als 10 Punkte wäre gelogen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: mr sledgehammerwrote on 04.01.2008:[10.0] "Ein absoluter Top-Wrestler. Seine Fehde gegen McMahon war eine der besten der Geschichte. Legendär! And thatŽs the Bottom Line"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Stone Cold Andywrote on 04.01.2008:[10.0] "Zusammen mit Rocky der beste Wrestler überhaupt. Er hatte im Ring was drauf, war unglaublich unterhaltsam und schuf viele tolle Momente, die das Wrestling und natürlich die Attitude Era prägten. Vor allem die Fehde mit Vince McMahon ist eine Perle im Wrestling. Note: 1+"
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Brahma Bullwrote on 03.01.2008:[10.0] ""That's the bottom line, cause stone cold said so"!"
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Yetiwrote on 30.12.2007:[8.0] "Der Grund, weshalb ich einem der besten Mic-Worker aller Zeiten und einemden Buisness bis heute prägenden Wrestler nur acht Punkte gebe, ist, dass er mich vom technischen immer nur zufrieden gestellt hat. Mit seinen wrestlerischen Fähigkeiten hat mich Austin nie vom Hocker gerissen. Trotzdem natürlich ein sehr wichtiger Mann für die WWE. Ich würde ihn heute auch gerne wieder öfters sehen, z. B. als GM. And that's the bottom line(s)."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: MA Excellentwrote on 29.12.2007:[10.0] "Steve Austin fiel mir zu Beginn der 90er zu seiner WCW Zeit erstmalig auf. Ich war etwas irritiert, er schien mir zu gut für diese Liga zu sein; Dann ging es weiter als Ringmaster usw. , was auch nicht schlecht war, speziell die Fehde mit Bret Hart. Dann der Wandel zur Rattlesnake (Austin 3:16 said I just whipped your ass! ), womit er zum Megastar wurde. So over war wohl bisher kaum Jemand, außer in dunklen Vorzeiten mal Hogan oder der Warrior. Geiles Theme, tolle Intenität, starker Finisher und häufige Überraschungs-Momente, das war Austin auf dem Zenit. Im Ring würde ich ihn sogar über The Rock und auch Triple H sehen, er war einfach Jemand, der seine Skills im Ring in den von ihm so genannten Busch-Ligen aufgebaut hat. Man kann bemängeln, dass sein Charakte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Supertechwrote on 26.12.2007:[8.0] "Stellt einen problematischen Charakter (Alkohol im Ring, Stinkefinger, Auflehnen gegen die "Vorgesetzten", ständige Verbalinjurien) hervorragend dar, hat sehr viel Ausstrahlung. Wrestlerisch hätte es allerdings doch etwas mehr sein dürfen. Der Stunner ist aber einer meiner Lieblings-finishing moves."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Wuschl 85wrote on 15.12.2007:[8.0] "Im Zuge der Attitude-Ära ganz groß und ein toller Charakter. Seine wrestlerischen Fähigkeiten empfinde ich dann doch als eher begrenzt. Und mittlerweile finde ich seine Bierbashes nur noch doof und einfach unpassend. Seine Matches gegen The Rock sihd dennoch legendär und sein SmokingSkull Championgürtel fand ich echt klasse. Auch sein Finisher ist einer der Besten und immer wieder gern gesehen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: EGeraldhuebnerwrote on 01.12.2007:"Im Ring (also nur als Wrestler) eher limitierte Fähigkeiten und Begabung, dafür natürlich ein großartigen Entertainer vor dem Herrn mit unglaublichen Durchsetzungsvermögen ... das sein Gimmick / Image als total respektloser, biertrinkender Proll mehr schlecht als recht beim Sandman abgekupfert wurde, wollen wir hier mal außen vor lassen. Konnte mir vor kurzen wieder ein paar alte Maches von ihm (damals noch als "Stunning" unterwegs) aus WCW, ECW und den frühen Anfangen in der WWF unter Ted "Million $ Man" Dibiase ansehen, da machte er absolut keine gute Figur ... sollte also heutzutage bei Einflußnahmen nicht vergessen, das auch er mal klein angefangen hat."
Rating: No rating found
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: TheAdaawrote on 18.11.2007:[10.0] "Der Star der Attitude Ära innerhalb der WWF / WWE. 3:16; What? , Bier ohne Ende, Mittelfinger und That's the bottom line sind Kult. Er prägte das Wrestling in dieser Zeit zusammen mit The Rock wie kein Anderer. Er ist der Bad Guy des Wrestling und das mit Recht. Wrestlerisch nicht so überragend, aber das macht er mit anderen Qualitäten wieder wett."
Rating: 10.0
Sentiment: -0.6999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Comptonwrote on 18.11.2007:[10.0] "Einer DER Wrestling-Superstars aller Zeiten. Einziger klitzekleiner Kritikpunkt: Wrestlerisch nicht wirklich überragend. Das stört jedoch nichts an einer vollen Punktzahl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Rated-R-Fanwrote on 29.10.2007:[10.0] "In der Attitudezeit der wohl beste Wrestler. Auch seine Kurzzeit-Comebacks sind immer noch 1A. Schade das er nicht mehr Fulltime in den Ring steigen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Benny110106wrote on 28.10.2007:[10.0] "Er holte die WWF zusammen mit Vince aus der Krise. Austin ist der Hogan der späten 90er. Ende der 90er beliebter wie Hogan. Er ist einfach einer der besten WWEler aller Zeiten. Schade, dass er seine Karriere so früh beenden musste. Trotzdem 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ghostwrote on 18.10.2007:[10.0] "Einer der grossartigsten Wrestler aller Zeiten.. nebst Hogan und The Rock wohl der berühmteste. Austin 3:16 says "i just whipped your ass! ". Ein Wrestling-Phänomen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Peisistratoswrote on 04.10.2007:[10.0] "Steve Austin hab ich immer gerne gesehen und freue mich auch heute noch über seine kurzen Auftritte. Immer wieder lustig im zuzusehen und vor allem zuzuhören, daher eine Eins."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Oli10wrote on 01.10.2007:[10.0] "Genial! Was anderes fällt mir zu ihm nicht ein! Einer der besten 5 Wrestler aller Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: dariawrote on 30.09.2007:[10.0] "... unterhaltsam wie kaum jemand sonst, egal ob als SCSA oder auch bei den Hollywood Blondes oder als Ringmaster, dazu ein Supertechniker"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ShakDragoonwrote on 19.09.2007:[10.0] "Eine absolute Legende, ohne den die WWE nie so erfolgreich wäre, wie sie heute ist! Er ist DER herausragende Wrestler der Attitude-Ära und war an den spektakulärsten Fehden der Wrestling-Geschichte beteiligt... da spielt es auch keine Rolle, dass es bessere Worker im Ring gibt als ihn."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Bullit69wrote on 16.09.2007:[10.0] "Eine Ausnahmeerscheinung mit nem klasse Gimmick(obwohl er einfach nur er selbst war)und wollte zurecht immer der Beste sein!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: etstoanawrote on 11.09.2007:[10.0] "Für mich der beste WWE Champion aller Zeiten. Die besten Interviews, geniale Backstageaction und immer ein Bier auf den Sieg."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Lord Loviswrote on 08.09.2007:[8.0] "Steve Austin war/ist vom Micwork nahezu eimalig. Das beherrscht die Texas Rattlesnake einfach bestens und das hat ihn auch zur Größe verholfen. Aber Steve Austin hat einfach kleine Mäkel, die man nicht übersehen darf. Da sind eimal seine In Ring Skills, die nich gerade sehr berauschend sind und ja sein hoganähnliches Primadonnenverhalten, welches ich einfach nicht abkann. Was ist denn so schlimm dabei, gegen jüngere aufstrebende Superstars zu jobben, um sie over zu bringen ... Hier kann ich einfach nicht die volle Punktzahl vergeben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Manuelwrote on 06.09.2007:[10.0] "Hell Yeah! Wenn ich den Name WWF höre kommt mir gleich der Name Bret Hart, The Rock und natürlich Steve Austin. Er ist eine WWF Legende mehr kann man zu ihm nicht sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Baldrickwrote on 02.09.2007:[8.0] "War in der WCW der deutlich bessere Wrestler. Wird aber auch noch in 5 Jahren die Leute aus den Sitzen reissen, wenn die das Glas zerspringen hören. Teil einer Revolution und nach Rocky und Hogan die wahrscheinlich grösste Drawing-Power aller Zeiten. Dazu natürlich unfassbar charismatisch!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: mdbnasewrote on 27.08.2007:[2.0] "Für mich einfach ein Unsymphat. Um die Objektivität nicht ganz zu verlieren: 2 Pünktchen für seine Mic-Skills. Ansonsten hat er geschätzte 3 Wrestling-Moves, kein selling und ist total überheblich. Zudem kann Austin nicht mal "trinken" ohne sich den Latz voll zu sabbern. Wer so mit "Bier"umgeht (auch wenn's nur Ami-Plörre is), hat keine höhere Punktzahl verdient - Prost!"
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Alan Smitheewrote on 26.08.2007:[10.0] "Eine der ganz großen Legenden auch wenn er meiner meinung nach etwas zu sehr von sich selbst überzeugt ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Austin 316wrote on 26.08.2007:[10.0] "der größte wrestler der 90er und einer der besten aller zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Aglaoswrote on 20.08.2007:[8.0] "Natürlich einer der ganz Großen. Trotzdem, irgendetwas hat mir immer gefehlt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Obermackerwrote on 09.08.2007:[10.0] "Mit Hulk Hogan und the Rock in den Top 3 aller Zeiten!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: shannonmoorewrote on 28.07.2007:[10.0] "Nie ein guter Wrestler aber einfach jemand wegen dem man ein Ticket bucht um sich ne Wrestlingshow anzukucken. Brachte ne Revolution in diesem Geschäft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: real americanwrote on 23.07.2007:[10.0] "Der größte Superstar der Neuzeit, er hat das Wrestling in den 90ern revolutioniert seine MAtches gegen den Hitman Bei WM 12 und Rocky bei WM 17 sind absolute Klassiker die jeder Fan gesehen haben muss. Seine Promos und Catchphrasess habe ich immer geliebt und seine Fehde mit Vince Hat die WWE gerettet und die WCW zerstört. Auch seine Hollywood Blondes Zeit mit Pillman hat mir gefallen. And that's the bottom line, 'cause Stone Cold said so!"
Rating: 10.0
Sentiment: -0.11666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Blade Bourdeauxwrote on 02.07.2007:[10.0] "Wenn man ihn als Teil der Hollywood Blondes gesehen hat, kam man relativ schnell zu der Überzeugung, dass aus dem was wird. Mit seiner unkonventionellen Art hat er das Business revolutioniert und sich selbst eine Legende erschaffen, wie es nur ganz wenigen sonst gelungen ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: blakewrote on 30.06.2007:[10.0] "Also ich kann nur sagen volle 10 punkte oder wenns gehen würde noch viel höher . Mein absoluter fave in der Attitude-Era. gott was hab ich ihn vergöttert. ich bin und bleibe ein Austin 3:16 groupie xD. Wenn ich ihn sehe steigt bei mir mein Adrenalin. Sein Gimmick war erstklassig. Nich umsonst hatte die WWF/WWE die erfolgreichste Storyline allerzeiten. Aggressiv, skrupellos, hatte seine eigenen Gesetzte und zugleich erfolgreich ob Heel oder Face. Der Mann war und is Goldwert. Auch wenn sein Film gefloppt is. Aber das lag einfach ma an der Produktion und der Regie. UNLEASH HELL"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: ShaneOwrote on 28.06.2007:[10.0] "Absoluter Superstar während der geilsten Zeit des Wrestlings. Alles andere als eine zehn für diesen Mann ist Uthopie."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Steven McWheelerwrote on 27.06.2007:[10.0] "OHJA, Stone Cold hat dem Boss in den Arsch getreten und das alleine ist 10 Punkte wert! Mal ersnthaft, sein MicWork finde ich hervorragend und er macht jeden Müll mit und ist der geborene Bösewicht und trotzdem rechtschaffend! Er hat nie seine Authorität verloren in der WWE! Hochachtung"
Rating: 10.0
Sentiment: -1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Das Aushängeschild der Attitude Era! Berühmt geworden durch die legendäre Fehde mit der Hart Foundation und Vinnie Mac! Sowohl als Face als auch als Heel ein Ass! Wenn das keine 10 Punkte gibt, weiß ich es auch nicht mehr... Austin 3:16 says I just whooped your ass"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Trevedaswrote on 24.06.2007:[10.0] "Als Wrestler mittelmäßig, als Entertainer unübertroffen. Hatt die geilste Fehde aller Zeiten und zudem mit viel Charisma ausgestattet. Legendär seine Beer Bashes, Legendäer seine Stunner und jeder hatte sie verdient. Hell Yeah!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Elvis33wrote on 24.06.2007:[6.0] "Cooler Typ aber leicht übertriebene Art. Warum hat er z. B. Donald Trump bei WM23 noch einen mitgegeben? ! Seinem Auftreten hat er seinen Ruf zu verdanken. Als Wrestler eher mittelmäßig."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Angus666wrote on 24.06.2007:[10.0] "Volle Punktzahl. Austin war einer der ganz großen in der Endphase der Neunziger. Die Matches gegen The Rock waren einfach Weltklasse. Neben dem Gimmick des Taker wohl das beste überhaupt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: The Showstopperwrote on 24.06.2007:[10.0] "Bis zum Stone Cold Gimmick auch ein guter Techniker, seitdem ein guter Brawler. Charismatisch und top am Mic. Eins der wenigen Total Packages im Business."
Rating: 10.0
Sentiment: -0.033333333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: raven1610wrote on 24.06.2007:[6.0] "Zu unrecht wird er als einer der Besten aller Zeiten bezeichnet. Seinen Erfolg kann man seinem Gimmick zusprechen , das einfach den Nerv der Zeit traf und deshalb wie eine Bombe einschlug. Wrestling Skillz waren auch nie wirklich überragend."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Deadman81wrote on 24.06.2007:[8.0] "Im Ring gibt es dutzende von besseren Wrestlern, aber am Mic unübertroffen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Mr Wrestlemaniawrote on 24.06.2007:[10.0] "Ich als The Rock Fan denke da nur an Wrestlemania 17! So eine Fehde wird es nie wieder geben"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: mrssonic2000wrote on 24.06.2007:[10.0] "Das beste was das Wrestling jemals hervorgebracht hat. Genial am Mic, genial im Ring, genial backstage. 3:16 forever!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Zwar auch kein super Techniker, aber sehr starkes Mic-Work, überzeugendes Selling und der Mann, der den Monday Night War gewann."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Sharkwrote on 24.06.2007:[4.0] "Okay als Brawler aber sonst nichts... am Mic in ordnung aber nicht befriedigend"
Rating: 4.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: jerseyhoolwrote on 24.06.2007:[10.0] "Einer der ganz wenigen, dessen Gimmick sogar Leuten bekannt ist, die im Regelfall mit Wrestling gar nichts am Hut haben. Der richtige Mann zur richtigen Zeit am richtigen Ort. Legendäres "I quit" Match gegen Bret Hart, das ewige Enfant Terrible der Wrestlingszene. Nicht der grosse Techniker, aber dafür einer der charismatischsten Worker aller Zeiten."
Rating: 10.0
Sentiment: -1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=635&gimmick=Steve+Austin
Comment: Sabu316wrote on 24.06.2007:[10.0] "War schon in der WCW genial. Nach seinem Wechsel zur damaligen WWF hat es zwar etwas gedauert aber danach kam dann der Megaerfolg. Micwork perfekt, gute Matches und ein Grund warum die WWE den Monday Night War gewann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: wtfantekwrote on 10.02.2025:[10.0] "Pro wrestler of the highest order. At her best, her combination of intensity, fluidity & technicality is unparalleled. Moonsault, suicide dive or any move she does, she is the gold standard in that, even her moonstomp! Which she popularized when she was rising as the phenom of Joshi puroresu in 2010s. A very focused & resilient woman. Known to be a quick learner, who doesn't hesitate to push the limits if allowed to while keeping a check on safety of others. A true genius. WWE style is different & safer generally, but given opportunity, it becomes quite evident how incredible she is & she has only improved in different ways like her timing & charisma. From showing various faces as the Ace of Stardom to being the dominant NXT heel (despite tempo of NXT being slower at that time, which means she couldn't show her full potential, also saving moves for big matches on the main roster), to being the cute main roster heel to again being dominant, than babyface while keeping the elements of the previous self exploring the grey area, her diverse character work is art, just like her gears. Her promos, specially the Japanese once are so cool! Her broken ankle in 2022 added another layer of restriction on her but it's amazing how she has adjusted her in-ring work to it. Even Satomura san said she got chills while wrestling with IYO after several years during 2024 WWE Japan tour, maybe she got a flashback of their legendary matches, either way it shows how highly she is regarded even by legends from an era when Joshi pro wrestling was considered even more physical. She continues to influence & inspire many people, including many of her peers over the years from WWE, Stardom & around the world. The legend of 'Io Shirai' is the one to be remembered for ages best of the best"
Rating: 10.0
Sentiment: 0.2854306722689075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Sky227wrote on 07.02.2025:"Iyo is one of the best womens wrestlers in the ring - it's almost impossible to have a bad match with her. She is energetic & very fun to watch. Since English isn't her native language, promos are one of her weaknesses but with the right booking you can hide that"
Rating: No rating found
Sentiment: 0.11557823129251703
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: camilashiraiwrote on 07.02.2025:"Iyo Sky is a beast in the ring and there is no denying her incredible skill and potential as a wrestler. She is an incredible athlete and has showcased tremendous talent and dedication. With her passion and resilience, there is no doubt that she deserves to be WWE's Women's World Champion once again."
Rating: No rating found
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Sheriff611wrote on 05.02.2025:"Iyo is fantastic to watch and has you invested in every move she does. She oozes charisma and is very easy on the eye."
Rating: No rating found
Sentiment: 0.2544444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Its Clobbering Timewrote on 04.02.2025:[10.0] "The Best Female Wrestler in the world and top 3 favorite for me. Everything Iyo does is perfect and she is just super sick and cool."
Rating: 10.0
Sentiment: 0.3711309523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: RobMentalitywrote on 31.01.2025:[10.0] "Iyo Sky is the best women's Wrestler in the world right now IMO. My Goat as well she just been killing it all 2024/25 she is just so smooth, dynamic, and Cool asf she is Over as well she should win the rumble she earned it."
Rating: 10.0
Sentiment: 0.47261904761904755
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: wrestlingswiftiewrote on 27.01.2025:[8.0] "IYO has always been very good. She's the best women's wrestler in WWE right now, even though that exact same company is holding back her style."
Rating: 8.0
Sentiment: 0.4076190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: jesuissashawrote on 21.01.2025:[10.0] "Probably the best female wrestler in the 2010s and one of the best wrestlers ever (w+m). What she showed in Stardom is fantastic and unparalleled. Since moving to WWE, even with a cut down move set, she hasn't been lost and remains one of the brightest performers on the roster."
Rating: 10.0
Sentiment: 0.4488888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: zacharymahabirwrote on 11.01.2025:[10.0] "The prototypical women's wrestler exists and IT IS IO SHIRAI, IYO SKY, EVERY ITERATION OF HER DICTATES WHAT DEFINES GREATNESS IN THE INDUSTRY. Even without being given clear creative direction in certain parts of her WWE run, at every agent of her career thus far, Io has been a top 10 caliber worker. It's the Kurt Angle effect. The reality. There, simply, are no bad Io matches."
Rating: 10.0
Sentiment: 0.2520408163265306
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: arvind0wrote on 04.01.2025:[10.0] "Pro wrestler of the highest order. At her best, her combination of intensity, fluidity & technicality is unparalleled. Moonsault, suicide dive or any move she does, she is the gold standard in that, even her moonstomp! Which she popularized when she was rising as the phenom of Joshi puroresu in 2010s. A very focused & resilient woman. Known to be a quick learner, who doesn't hesitate to push the limits if allowed to while keeping a check on safety of others. A true genius. WWE style is different & safer generally, but given opportunity, it becomes quite evident how incredible she is & she has only improved in different ways like her timing & charisma. From showing various faces as the Ace of Stardom to being the dominant NXT heel (despite tempo of NXT being slower at that time, which means she couldn't show her full potential, also saving moves for big matches on the main roster), to being the cute main roster heel to again being dominant, than babyface while keeping the elements of the previous self exploring the grey area, her diverse character work is art, just like her gears. Her promos, specially the Japanese once are so cool! Her broken ankle in 2022 added another layer of restriction on her but it's amazing how she has adjusted her in-ring work to it. Even Satomura san said she got chills while wrestling with IYO after several years during 2024 WWE Japan tour, maybe she got a flashback of their legendary matches, either way it shows how highly she is regarded even by legends from an era when Joshi pro wrestling was considered even more physical. She continues to influence & inspire many people, including many of her peers over the years from WWE, Stardom & around the world. The legend of 'Io Shirai' is the one to be remembered for ages."
Rating: 10.0
Sentiment: 0.24077008928571425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: MEDaminewrote on 04.01.2025:[10.0] "The best Women wrestler in WWE currently, and one of the best in the world. If a wrestler doesn't have a good match with her then it's their fault. And Her ability to connect with the audience, whether through her daring aerial assaults or her resilient spirit, is a testament to her star power."
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Rosyawrote on 04.01.2025:[7.0] "It's hard to see the charisma that everyone sees in her. As for me, Asuka was much more interesting, at least because she had a streak of wins. Iyo Sky was really average from the start. She just showed good wrestling. She often botches, although I have nothing against it, because absolutely everyone botches, one way or another, but people often turn a blind eye to her mistakes, but they get really angry with Nia Jax and Damian Priest make them. Unfortunately, she's bad on the microphone. If you speak Japanese, even shout, then this can hardly be called charisma. Opening your mouth and eyes widely in surprise is also not exactly charisma. And even if her wrestling is good, it is almost always built according to one scenario. If she can't successfully perform a Moonsault, then she will probably lose. I don't see a star in her that could be rated at 10 points. It's probably worth giving the highest score to someone who is not only good in the ring and on the microphone, but also able to attract a new audience, which is something that not everyone can do these days, and Iyo Sky even more so. She reminds me of Justin Gabriel, who also had good wrestling, but for some reason he was considered boring, but Iyo Sky, for some reason, is the embodiment of charisma. Perhaps the entrance plays a big role, but this is the merit of def rebel and other guys from the same field, who are used to being condemned for the simplicity and unrecognizability of songs"
Rating: 7.0
Sentiment: 0.06562173458725183
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: FutureWrestlerCelebwrote on 29.12.2024:[10.0] "She's good at acrobatic, flips and tricks, I don't know but she needs another title reign like the one she reigned in NXT."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Wrestling Foreverwrote on 28.12.2024:[10.0] "Eine der besten Joshis der Neuzeit und überhaupt. Sie schont sich nie die Frau ist erst 27 und hatte und hat schon einige Probleme bei ihren Körper ihr Stil fordert Tribute. Stiff und unglaublich hart schon gut das sie nun wieder bei Stardom und generell Japan ist. Ganz, ganz starke Joshi. Edit 09. 11. 2019 in ihrer aktuellen Heel Rolle bei NXT auch sehr stark. Edit 28.12.2024 Längst eine der Top Stars in den WWE Main Shows. Klar möchte ich das sie besser eingesetzt wird. Nach dem sie den Title an Bayley verlor konnte sie 2024 nichts mehr gewinnen. Ich bin gespannt wie es bei IYO 2025 ausschaut."
Rating: 10.0
Sentiment: 0.0630952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Thadjurwrote on 28.12.2024:[10.0] "Iyo is the icing on the cake in RAWs already great women's division. She is never boring to watch inside and outside the ting despite her lack of skills in English. She has the skill to recover well from a botched move and she is super creative and charismatic!"
Rating: 10.0
Sentiment: 0.39404761904761904
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Bapesta956wrote on 24.12.2024:[10.0] "The best women's wrestler on the planet currently, her arsenal is second to none compared to other women. Her suicide drive is so beautiful to watch. People like to say her lack on English prevents her from being the Ace in WWE but i disagree. Everything from her appearance to ring gear and wrestling just screams mainevent."
Rating: 10.0
Sentiment: 0.28750000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: StardomIconwrote on 17.12.2024:[10.0] "Iyo is as good of an in-ring worker that I have ever seen in my life - female or male. She is very creative but also makes talent around her better with her awesome selling. She also deserves credit for being able to work and get over in the sports entertainment style of wrestling, something very few non-native English speakers are able to do (e.g. luchadores very rarely make it in WWE despite having awesome ability). She proved she can still wrestle with the best when taking on Utami Hayashishita this past summer in Marigold."
Rating: 10.0
Sentiment: 0.4092857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Anas Kingwrote on 11.12.2024:[10.0] "Best women's wrestler in the world, imo. She has skill, she has charisma, she is also a proven draw. I just hope wwe doesn't nerf her anymore."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: AceHagannwrote on 27.11.2024:[8.0] "Io is very good. A great in ring performer. I'm not that strong on her mic skills, but as some others, she makes up for it in presence and charisma."
Rating: 8.0
Sentiment: 0.7144444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: comicsfanwrote on 20.11.2024:[9.0] "Iyo is one of the best and most impressive workers out there. She's phenomenal at 97% of what she does, and her moveset and facial expressions are super engaging. Her punches/uppercuts are unfortunately so bad that it takes me out of the match whenever she throws one, but I try to ignore that because everything else about her work in a match is masterful from her aerials and kicks to her charisma, pace, and in-ring storytelling."
Rating: 9.0
Sentiment: 0.44814814814814813
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: maily chgwrote on 17.11.2024:[6.0] "Iyo Sky is a great wrestler, but her acting skills are really bad in my opinion. We can never tell when she's heel or face, she cant do promos, her "crazy" gimmick isnt very showing etc... I believe she has one of the best in ring but that's the only good point."
Rating: 6.0
Sentiment: 0.17500000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Sheokowrote on 10.11.2024:[8.0] "Iyo is great, but needs to grow a little bit more in my opinion. She's insane in terms of abilities in the ring, but it sometimes don't match the opponents she's facing enough in my eyes, plus she needs to work on her promos a little bit more... could have given a 8, but she has a bright future in front of her, and this rating will go up for sure."
Rating: 8.0
Sentiment: 0.1625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Ace00wrote on 08.11.2024:[10.0] "Best women's wrestler in the company simple as that. Triple H also needs to let her cut some more promos, even if it's in Japanese."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: tion24wrote on 03.11.2024:[9.0] "Such an entertaining wrestler. Hands down one of the best women wrestlers there is or ever has been. Amazing moveset, extremely charismatic and knows how to work the crowd. She also has one of the best theme songs going and is in a good spot being a member of Damage Control."
Rating: 9.0
Sentiment: 0.5180555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Brando Calrissianwrote on 02.11.2024:[10.0] "Iyo Sky is one of the greatest women's wrestlers...scratch that... best wrestlers on the entire planet. While I enjoy her being in WWE, it often times feels like she is forgotten about or not used to her highest potential. She puts on great matches every time she is in the ring, but doesn't get to do it too often. I am hoping that Iyo is given a long title run sometime soon, or even something like winning the Royal Rumble to go and main event Mania."
Rating: 10.0
Sentiment: 0.4240740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: SoaKaswrote on 15.10.2024:[10.0] "Manami Toyota, Mayu Iwatani, Io Shirai. I don't care who your fourth woman on the Mount Rushmore is (AZM after she's finished, Sareee, Utami, ...) but those three pretty much have to take up three spots. A complete legend and she's still only 34."
Rating: 10.0
Sentiment: 0.11000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: JackBurtonsTruckwrote on 14.10.2024:[10.0] "Iyo is one of the greatest female wrestlers of all time. Even though I dont speak the same language as her, she is able to use her natural charisma and in ring personality to get herself over with me. Her athleticism allows her to perform her signature moves at the highest level. Her matches are always must sees. Iyo deserves one more dominant run as champion, I believe she elevated the womens belt to a height it had not previously seen."
Rating: 10.0
Sentiment: 0.31190476190476196
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: dizziedwrote on 29.09.2024:[10.0] "Io is one of the greatest wrestlers ever (man or woman). The only weakness I see in her is her lack of English but she makes up for it with her connection to the audience.. Her recent match with Utami Hayashishita at the Marigold event shows she still is a top level performer and the WWE hasn't taken her skill level down a few notches. Similar to a lot of the other joshi wrestlers (Asuka, Kairi Sane, Hikaru Shida, etc) she has toned down her style a bit to help not show a huge gap with a lot of the other wrestlers in the American promotions. This also adds to her rating. She is able to make her less skilled opponents look better Although we are unable to use percentage points, I would say she is 9.8 (only deduction is the English). Also, I hope they give her back the Io Shirai name. In my opinion, it sounds much better than Iyo Sky."
Rating: 10.0
Sentiment: 0.11237373737373738
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Samarimuswrote on 23.09.2024:[10.0] "In-ring skills: best in the world, if theres anything shes not as strong in, its probably live promo skills, but her insane level of charisma in the ring makes up the difference, and she constantly has some of the best matches on the roster, with just about anyone. Ive only seen her WWE work, and hearing that shes holding a ton back makes me interested to see more from her."
Rating: 10.0
Sentiment: 0.231969696969697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Bigbagwrote on 23.09.2024:[10.0] "IYO is on a run right now she is my Women's wrestler of the year this year and my GOAT she is just amazing and so smooth and snappy in the ring"
Rating: 10.0
Sentiment: 0.4285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Galmondiwrote on 22.09.2024:[10.0] "She's the best, she's just amazing. Every matches she blows my mind, her match against Utami was my favorite match of 2024. When it comes to pure in ring skill she's the best in WWE by a lot. She's also very funny, just the best."
Rating: 10.0
Sentiment: 0.6627551020408163
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Breakdawallzwrote on 20.09.2024:[10.0] "This is my GOAT male or female. Every match from IYO i feel like I'm just watching perfection. In stardom she proved that she was the best wrestler in the world and the switch to WWE she just keeps proving that she is."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Spirealwrote on 17.09.2024:[10.0] "I have rarely seen a wrestler, male or female, who has such mastery of their body. Every move Iyo does, and how she does it, feels clean and purposeful. She pulls off the unhinged gimmick very well (while I miss her NXT aura) and got infectious charisma."
Rating: 10.0
Sentiment: 0.14444444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: sKiaWeVwrote on 14.09.2024:[9.0] "Incredibly talented in every area of pro wrestling. Can connect with any crowd no matter the time and place."
Rating: 9.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Cletxawrote on 27.08.2024:[10.0] "One of the best female wrestlers in history. it is impossible not to admire after watching her. Icon."
Rating: 10.0
Sentiment: 0.11111111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Nudlewrote on 26.08.2024:[10.0] "About as great a worker as women's wrestling has seen, she can do it all and work with anyone. An all-time great."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Odinohkawrote on 19.08.2024:[9.0] "Iyo Sky is impressive and capable of producing explosive, creative and entertaining matches against almost any opponent. She masters her attacks, knows how to sell blows and possesses exceptional speed and reaction capability. Her promos in Japanese and her few words in English work well, and her outfits are cool - what more could you ask for? Just a little more presence. Asuka's presence and charisma alone are impressive, not to mention her screams in Japanese; Kairi Sane is light, funny, original and impactful; Iyo is excellent, but could do with a little more character development or a finisher more exciting than her moonsault. In short, she's still excellent, it's just a question of finding something. Little bonus: she's one of the last REAL NXT champions, along with Raquel Gonzalez."
Rating: 9.0
Sentiment: 0.3325617283950617
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Willie 19200wrote on 12.08.2024:[10.0] "IYO is probably the best women's wrestler in the WWE right now. She's always putting on great matches, was an awesome Women's Champion, and has had great feuds between he WWE and NXT career. Overall an amazing performer with unmatched talent."
Rating: 10.0
Sentiment: 0.6408163265306123
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Sal1314wrote on 05.08.2024:[10.0] "Iyo will probably go down as one of the greatest, if not the greatest, female wrestlers of all time. Her latest classic with Utami is just another masterpiece in her long list of great matches. This woman can have a great match in her sleep."
Rating: 10.0
Sentiment: 0.45123456790123456
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Joe907wrote on 01.08.2024:[10.0] "IYO is one of the most talented wrestlers ever. Genius of the sky, she has one of the best moonsaults ever. She was the top wrestler for Stardom and helped put them on the map. She elavated the womens division for WWE. The recent work she's been doing with Damage Control has been amazing. Fast, technical, hard hitting, high flying, good selling. All the tools to be a top tier wrestler in the world"
Rating: 10.0
Sentiment: 0.3806944444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: SevenLegwrote on 14.07.2024:[9.0] "IYO SKY is one of the best current women's wrestlers in the world. I haven't seen much of her work pre-WWE, but her work since she arrived in North America is some of the greatest I've seen from a foreign wrestler. Unlike some of her japanese counterparts, she manages to be over with the WWE audience solely based on her charisma.Although it's becoming stale, Damage CTRL was a fun stable thanks to IYO SKY and I'm excited for a future singles run."
Rating: 9.0
Sentiment: 0.2416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Orchardwrote on 07.07.2024:[10.0] "just saw her live in Toronto she is by far the best worker of the women's division and was a pleasure to watch"
Rating: 10.0
Sentiment: 0.4121212121212121
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Dy1789wrote on 19.05.2024:[7.0] "IYO is a very good wrestler. She has charisma and makes it work despite the lack of English. However, her lack of promos made her feel more like a supporting cast even when she was champion. Despite that she always performs well in the ring and puts on entertaining matches."
Rating: 7.0
Sentiment: 0.43200000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: The Undertalkerwrote on 18.05.2024:[9.0] "Im Ring ist sie einfach nur atemberaubend und sie zählt zu meinen Lieblingswrestlerinnen in WWE! IYO ist eine begnadetete High-Flyerin und beeindruckt mit vielen sehenswerten, spektakulären Moves - kann aber auch problemlos andere Wrestlingstile mitgehen. Ihre schwierigen Moves oder Move-Abfolgen sind dabei aber keinesfalls schlampig, sondern sie führt diese sehr sauber und fehlerfrei aus, und alles wirkt bei ihr sehr sicher. Außerdem hat sie ein gutes Timing, daher passen ihre Aktionen zum jeweiligen Zeitpunkt und ihre Offensiven wirken sehr flüssig. Dazu punktet sie noch mit einem klasse Look sowie jeder Menge natürlichem Charisma. Es ist nur etwas schwierig eine/n Wrestler/in komplett bewerten zu können, wenn diese/r die entsprechende Sprache nicht sehr gut beherrscht. Ich kann ihr Micwork nicht gut einschätzen - da müsste ich vielleicht mal eine längere Promo von ihr auf Japanisch mit Untertiteln hören, um dieses besser beurteilen zu können. Das Micwork gehört nunmal auch zum Charisma eines Workers und von daher hätte ich jetzt kein gutes Gefühl, wenn ich ihr die vollen 10 Punkte geben würde, obwohl sie für mich schon sehr nah an der Höchstpunktzahl dran ist. Aber vielleicht gibt es ja da noch eine Entwicklung und sie lernt besser Englisch, sodass man sie am Mikro realistisch bewerten kann."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Sigi Reuvenwrote on 15.05.2024:[10.0] "Genius of The Sky. Joshi queen. Very very good performer. Stardom made a lot of great talents. Io Shirai/Sky is the one of them. Her in-ring artistry and charisma are unmatched. I'm eagerly awaiting her clashes with other WWE japanese wrestlers from Stardom. Future Hall of Famer,"
Rating: 10.0
Sentiment: 0.317
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: iyogoatskywrote on 08.05.2024:[10.0] "most talented women in wrestling, the G.O.A.T., the joshi queen. She's my fav, every match of her is a must see. She can do absolutely anything in a ring. "Genius of the Sky" is there a more accurate nickname to describe someone ?"
Rating: 10.0
Sentiment: 0.45999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: jcheng777wrote on 25.04.2024:[10.0] "The best womens wrestler on the planet. The ace of stardom and now arguably the ace of the WWE womens division. Flawless and irreproachable in the ring. Personally would love to see her bring back the diving moonsault stomp."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: IoIyowrote on 20.04.2024:[10.0] "My favourite wrestler in the world, she has absolutely 0 weaknesses in the ring and is an incredible watch. The best moonsault of all time for my money"
Rating: 10.0
Sentiment: 0.7000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: 5hadowCroftwrote on 19.04.2024:[10.0] "Die talentierteste Frau im Geschäft. Meine absolute Favoriten Wrestlerin. Sie ist so talentiert und kann alles im Ring. Ein großartiges Moveset und unglaubliche Highflyer Aktionen, machen mich zu einen riesen Fan. Sie hat es in Japan und bei der WWE bewiesen. In meine Augen hat Sie es verdient Titel zu tragen. Das Genie des Himmels"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Pandawan22wrote on 14.04.2024:[10.0] "The BEST Woman in WWE, we sadly can't see her real level but i'm sure the fact she lost the title will make her come back."
Rating: 10.0
Sentiment: 0.24
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: mxkamiwrote on 25.03.2024:[10.0] "In my opinion, probably the most talented joshi of all time. Truly a prodigy, and has gifts that many other wrestlers would kill for just a fraction of. I get it, if you mention other Joshi superstars through history over Io. But man. She can mat wrestle (it's on record from both Shayna and Nattie that they've worked technical with her outside of TV, and that Io is truly great at groundwork and never needs to be shown anything twice), she can be intense, she can be comedic, and of course what she's best known for, her high flying. Has been a top talent in the US since appearing in WWE, and is of legendary status in Japan. If you've never seen her outside of WWE, seek out her match with Kairi Hojo (Kairi Sane/KAIRI) from Stardom Fifth Anniversary for the World of Stardom title. Io does some truly insane and magical things in that match, and continues that trend even today."
Rating: 10.0
Sentiment: 0.288125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: jjcharg77wrote on 12.03.2024:[9.0] "10/10 wrestler than can outwrestle anyone with just a days notice. incredibly smooth in ring and charismatic, she's a blessing to wrestling. her short promos are always effective with getting her point across and making he look like a bad ass so I can't complain"
Rating: 9.0
Sentiment: 0.16000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: DanParkeswrote on 12.03.2024:[10.0] "Iyo Sky / Io Shirai is easily one of the best wrestlers in the world! I have recently gone back and watched her run in Stardom, and I have plenty more to watch... her run in WWE NXT was amazing, she is so smooth and fluid with her moves and at times it seems like she is boneless with her flexibility and finesse. I am excited to see how far she goes in WWE and her career in general, she has all the potential in the world (as long as WWE do allow her to continue to present herself, and don't fall into old habits of pushing old favorites instead) She is so fun to watch, her promos transcend any language barriers - she is walking charisma. She is one of the reasons why I love wrestling so much!"
Rating: 10.0
Sentiment: 0.2451754385964912
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ChocoboSagewrote on 11.02.2024:[10.0] "What more can be said The Ace of Stardom, The Genius of the Sky. One of the best to ever do it in Japan, Mexico and the US. Been watching her wrestle since 2015 and she's not lost a step, if anything she's just got better and now gaining a multitude of new fans with her charisma and ring work. Long may she reign"
Rating: 10.0
Sentiment: 0.4172727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: deeterm04wrote on 15.01.2024:[10.0] "One of the best all around talents ever. Can work any style and make any opponent look good. Conquered Japan and is now conquering the US."
Rating: 10.0
Sentiment: 0.85
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ivxnb15wrote on 08.01.2024:[10.0] "The greatest high flyer womens wrestler they dont call her the "genius of the sky" for nothing. Iyo can literally have a great match with anyone her reign has champ with damage ctrl has been solid so far she has had some great matches im looking forward for more for iyo"
Rating: 10.0
Sentiment: 0.48000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[9.0] ""Genius of the Sky" is among the very best women in WWE today, so nice to see her as champion, loving that she's paired with Kairi Sane and Asuka. Great wrestler, nice high flying moves, good mechanic, charismatic, easily one of the best workers in WWE today."
Rating: 9.0
Sentiment: 0.6393333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: FrightfulSayakawrote on 24.10.2023:"Io Shirai is my favorite female wrestler. In my opinion, she has the best wrestle technique in WWE female groups. Her 619 is better than Zelina and Dominik. First saw her in NXT takeover 2021, the match between she and Raquel, which shocked me. Hoping her champion keep long."
Rating: No rating found
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: shilderwrote on 13.10.2023:[9.0] "Iyo Sky is incredible. She deserves her flowers, her world title reign, and any good bookings they throw at her. She is beloved in the pro wrestling community. She has so much talent and offers us so much as fans. She's a once in a lifetime talent, I hope the fans know what we have while shes around and we continue to shower her with flowers. Genius in the Sky!"
Rating: 9.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: celticinvaderwrote on 11.10.2023:[9.0] "A truly great talent with the best moonsault in the business. Her execution of moves is near perfection, and she can sell great too. Was annoyed at WWE relegating her to Damage CTRL but as current title holder I cannot wait to see what else she does."
Rating: 9.0
Sentiment: 0.38333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Eduardo23wrote on 11.09.2023:[10.0] "She's the best female wrestler in the world right now! She has it all, TBE, The Best Ever! Ultra-talented inside the ring, her aura and charisma are off the charts and on top of that, she's the most beautiful woman in all of wrestling! I can't wait to see what's next for her!"
Rating: 10.0
Sentiment: 0.5446428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: zeropercentwrote on 11.09.2023:[10.0] "I'll never get sick of watching Io. She's a stunner in every sense of the word, and her balance of aggression and grace make her compelling. Her style is unique and eye-catching as well. Currently, I have no faith that WWE won't feed her to Charlotte, but I did cry over her recent title win regardless."
Rating: 10.0
Sentiment: 0.12678571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Lalo Camposwrote on 16.08.2023:[10.0] "The greatest female wrestler in the 21th century and one of the best ever. Her charisma is off the charts and she is a natural babyface in every single promotion that she steps in. Champion in Stardom and WWE shows the greatness of Shirai and, in WWE, she is getiing started."
Rating: 10.0
Sentiment: 0.4057142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Ozzywrote on 08.08.2023:[9.0] "Earned it. Earned her NXT Womens title, earned the Money in The Bank, Earned the womans title. One of the best that WWE has ever had for the women's devision. The only reason im giving her a nine is because she isnt quite a ten due to charisma, but its a 9.5 rounded down to make it an even 100 9 votes. Sorry Iyo, the power of OCD compells me."
Rating: 9.0
Sentiment: 0.03657407407407407
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Kingertywrote on 08.08.2023:[9.0] "Iyo is great. Almost on Lita's tier and I'm so happy that she is being recognized by WWE and given a shot with the title, she hasn't done much since NXT. But I feel we haven't truly seen her peek yet. I wish I could have seen her in Stardom but hopefully she gets as much of a chance to shine as WWE has given Bianca."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ViolenceBretwrote on 07.08.2023:[10.0] "The greatest woman to ever step foot in the squared circle this side of Mildred Burke? Most likely all things considered... Stardom more or less owes everything to Space Galaxy Warrior Io and she's conquered all of Japan. Whereas most individuals in the field of Joshi have this pop idol charm, Ms. Shairai has this underlining sense of rebellion that is hard to explain. In the ropes she's the second coming of prime Rey Mysterio Jr. with a surprisingly brutal German suplex. A natural showstopper if ever there was one. Coming to the US things seemed a bit rocky given the language barrier, but she's brought a lot of a sophistication to NXT and now WWE. And by the looks of things, she'll be the Ace of WWE in no time. Io's promos in Japanese are the stuff of legend, with her distinct voice sliding in profanity on US television often going unnoticed. The greatest women's wrestler of all time? Easily. The greatest wrestler currently working today? Sure, why not."
Rating: 10.0
Sentiment: 0.2263157894736842
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: GeneBlastKyodaiwrote on 06.08.2023:[10.0] "I will say this with my hand on my heart. Io is one of the greatest womens wrestlers of all time. Shes a banger factory and while shes been relegated to a lackey in damage Ctrl, she still stands out as one of the best in the world for her work in NXT and Stardom. Edit (06/08/23): Okay. Shes the womens wrestling goat now. In my eyes its inarguable."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: bigredtalk89wrote on 16.07.2023:[8.0] "She's a good hand in the ring and very likable. I will admit, I've only seen her in her WWE career so hence why it's slightly lower than other's rankings, but I don't want to judge a part of her career I haven't seen. I'm sure she's capable of more than I've seen, and that's saying something."
Rating: 8.0
Sentiment: 0.28229166666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: InsertFunnyNameHerewrote on 05.07.2023:[10.0] "Ive been a massive fan of Io since seeing her in NXT. Im glad she is Miss Money in the Bank and she will do great things with it, shes gonna be a champion."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: devourblastwrote on 03.07.2023:[10.0] "Mainly familiar with her work in NXT and WWE but I am absolutely blown away every time. Her switch from semi-generic face into her more unhinged, darker character was absolutely welcome and remains consistently entertaining. Her aerial move set is simply flawless and she has a really solid ground game as well. Her Japanese promos with Asuka are also really enjoyable and shows that non native English speakers can be charismatic on the mic in WWE."
Rating: 10.0
Sentiment: 0.33125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: crs285wrote on 02.07.2023:[9.0] "Iyo has proven herself as a star wherever she goes. She had a great run in Stardom before coming to NXT which was good but not as elite as Stardom. Her main roster run has been very good so far. I liked Damage Ctrl but admit it has not had great booking. The break up angle being run has heavily focused on Iyo after her great match with Bianca which will help her. MITB makes it even more apparent that she will be a major player in WWE moving forward."
Rating: 9.0
Sentiment: 0.4407638888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Neon Aussiewrote on 02.07.2023:[6.0] "An OK talent. Very good in the exhibition of holds, if you will, but lacks in size which effects realism and believability. Isnt used well by the fed, isnt super exciting."
Rating: 6.0
Sentiment: 0.5108333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Frank Shooterwrote on 02.06.2023:[8.0] "While she is a tremendous worker and possess decent charisma, she's being held back a lot in WWE. She may be the best female wrestler today, but she isn't able to show all her potential."
Rating: 8.0
Sentiment: 0.2857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Smackchadwrote on 08.05.2023:[10.0] "Iyo Sky has what it takes to be an international superstar in a big way. Iconic look, instant babyface energy with any crowd. Her offense and selling is world class. The best Japanese women's wrestler in the world right now and arguably one of the top 10 wrestlers in the world period."
Rating: 10.0
Sentiment: 0.2857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Ciscwrote on 27.04.2023:"[10.0]"An unsung revolutionary who showed women can beat the men when it comes to wrestling. Sadly, she has been booked badly in the wwe that many fans who have not watched anything outside raw and sd may have a bad 1st impression of her. Seeing the negative reviews that uses "promo" as a reason here are an example of wwe main roster audiences giving their knowledge (or lack there of) which is based off the main roster booking. She can do promos, just watch her nxt promos against flair, dakota kai, knox, toni storm, and many more.. also her stardom promos. She shows a lot of character and high acting quality in her mic skills. She can go mysterious as shown in her time at Lucha Underground, dark when she turned heel in nxt, underdoggish as her feud with meiko in japan, violent etc.. she has shown multiple forms of character personas and the ones i read here who have claimed ahe has no charisma are nasing things off the main roster booking, in where she isnt even allowed to do many of her moves including her 619.""
Rating: No rating found
Sentiment: -0.03793522267206475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ZayTokyowrote on 06.03.2023:[10.0] "My favorite womens wrestler of all time. She had the best wrestling trilogy ever (imo) with iwatani, amazing matches with people such as candice lerae in nxt, and even today her matches with bianca on raw have been great. Such a great wrestler that can realistically do anything she wants and succeed. I really hope she leaves damage ctrl soon and challenges for the title but either way she will shine easily. 10/10"
Rating: 10.0
Sentiment: 0.39114219114219123
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: KENTAfanwrote on 21.02.2023:[10.0] "I dont think anyone disputes the fact that Io is amazing. Outside of WWE, she was a legend and quickly became considered the best female wrestler on the planet, an opinion I held at the time as well. Since coming to the WWE though, she hasnt quite managed to get to that same level. Admittedly, after stagnating for a little bit, her run as champion in NXT was one of the best of all time and she produced countless high quality matches, but just not on the same level as her prior work. After losing the title she floundered for awhile before moving to the main roster. Whether or not she will be able to truly breakout or not remains to be seen. I still view her as one of the best in the world, but shes just struggled a little integrating to WWEs style. Hopefully shell be given a lengthy run as champion at some point."
Rating: 10.0
Sentiment: 0.2740625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Albertcleanwrote on 20.02.2023:[10.0] "Simply the best wrestler EVER, she's fantastic and she's charismatic and cool, there're people that watch only Raw or Smackdown thinks that she's boring but it's because she's a Bailey's lackey now and she has no character but when she will has a solo run and her NXT character back, that haters will enjoys her work because her character is great and she's a truly star. Her Stardom and NXT run were unmatched, and ME will be the same, I'm sure of this."
Rating: 10.0
Sentiment: 0.19326923076923075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Rignowrote on 09.02.2023:[3.0] ""B-But she's the best womens wrestler of all time" In the ring? maybe. She's god awful at literally everything else. Wrestling isn't just what happens in the ring, it's about making someone actually want to see the storyline, and every week iyo sky comes on my screen and I'm immediately bored out of my mind."
Rating: 3.0
Sentiment: -0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Damianwrote on 08.02.2023:[6.0] "Io Shirai is the type of one-trick-pony that appeals to the majority of internet wrestling fans because she wrestles well. I get it. And she truly wrestles well, I won't deny that. But wrestling is much more than that. She is tiny and can't be considered a main event threat in a company like WWE. Her promos are terrible. It's not that she is not fluent in English, cause neither is Asuka but Asuka is a charismatic person. Io is just a gal. No character, no charisma. Nothing. A fine hand for the midcard but nothing more."
Rating: 6.0
Sentiment: 0.13541666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Narfmonsterwrote on 31.01.2023:[9.0] "When given the opportunity, IYO SKY can put on absolutely phenomenal matches. She carries herself in such a unique way, so it's hard to compare her to anyone else. IYO is deserving of a singles push on the main roster, instead of being relegated to being Bayley's lackey"
Rating: 9.0
Sentiment: 0.22499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Roberto789wrote on 30.01.2023:[10.0] "Iyo is the best wrestler ever, she's the upgraded version of Manami Toyota. I hope this year she has her solo career, with a good character and win the Raw's Women's Championship."
Rating: 10.0
Sentiment: 0.5673076923076923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: TobiGeldner81wrote on 16.01.2023:[7.0] "Gute Athletin wenn auch nicht immer fehlerfrei. Am Mic finde ich sie nicht besonders und hat nicht wirklich ein Gimmick. Finde sie insgesamt OK"
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: LtW4Rwrote on 23.12.2022:"As f 2022/12/23 WWE is using Io to hold Dakota's hand right now on the main rosters. It is doing nothing but holding her back.(unless she gets a better partner & the women's tag division actually becomes a thing since its next to non-existent in terms of there being only 2 legit teams combined from both rosters and not makeshift bs) She needs a good solo run for a title but with how WWE works she wont hold it long or at all since they pick their extended champions based on marketable acceptance in PR /promotion tours. Unless she gets " demoted " to NXT where single title reigns dont hold as much significance as they do on their other two shows. WWE took literally the greatest female Japanese wrestler of this era, with multiple trophies, top record holdings, Stardom's first Grand Slam Champion, & so many more accolades and turned her into a borderline joke (why does she speak broken English on Raw but 4 years ago she spoke perfectly audible English) & a baby sitter."
Rating: No rating found
Sentiment: 0.209007326007326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: TheOneAndOnlyCactuswrote on 28.11.2022:[10.0] "The Genius of the Sky is already one of the greatest Joshis of all time, and in my opinion, the best wrestler in NXT history, male or female. An exceptional high-flyer and technician, I do hope though that she can separate herself from Damage CTRL and shine on her own on the main roster, just like she has been able to show in STARDOM and on NXT, amongst other places."
Rating: 10.0
Sentiment: 0.4231481481481481
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: jmira17wrote on 25.10.2022:[10.0] "She's the best female wrestler ever, I'm fan of her since I was 15 ( 2015) when she was in Stardom. If you think the best match of the best female wrestlers of this generation Mayu, Kairi, Meiko Satomura, , Sasha Banks, Candice LeRae, Shayna Baszler, Toni Storm, Rhea Ripley.....), your first answer is "with Iyo" or think that one of the best was with Iyo. She's everything in the ring, she's highflyer, technician, strong, fast, agile, her selling is one of the best ever, her strikes is great, great in ring storytelling.... she can everything and she's really good in all aspects. When she arrived to WWE, they took away part of his moveset, because in WWE they protect their wrestlers more and prefer to reduce the number of movements and make movements that they completely dominate so that there is less risk of a wrong movement going out and endangering her rival and her , this is why I enjoyed more her Stardom matches and this Io Shirai ( 2013-2018) no one wrestler ever reach her level performance, but in WWE still the best in the world, in 2019-2020 a lot of her matches was 4 stars matches, and her reign as NXT women champion was amazing, was the best reign of this title or you can debate with Asuka and Shayna reign but the best was Io's reign because her matches were incredible, she had the best opponents, even Shotzi she wasn't a elite wrestler but she loooks incredible when she wrestle with Iyo, her character was great and in terms of promos, the company knew how to manage it very well with promotional videos, some promotional videos were epic with fantastic Iyo's promos.She always plays her character very well heel, babyface or tweener and she has a natural charisma, wrrestling fans loves her and the proof is that she was an ace of Stardom and one of the most important stars in NXT and the most important with Adam Cole in 2020. Now her character isn't the best because she's Bayley's lackey, although in recent weeks her character has become more interesting since she has changed her behavior and is becoming more aggressive and serious, I hope her character continues to evolve, Damage Control is being successful like Threedom was at the time ( the best trio ever) when she was in Stardom. She had an incredible carrer with many titles and epic reigns and she's only 33, I'm excited to see continues her incredible career on the main roster, she had many injuries in 2021 and 2022 but now she has more confidence and and she is returning to her great level, her las performance was amzing, I hope she continues like this and surprises us all as it has always done."
Rating: 10.0
Sentiment: 0.5129464285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: VinnyEmpirewrote on 15.10.2022:"I don't know if she's still recovering from her injury or has been told to take it back a notch, IYO SKY right now doesn't look like the Io Shirai that I enjoyed back in her NXT days. Nevertheless, she's still one of my favorites in the WWE."
Rating: No rating found
Sentiment: 0.19642857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: MCSPICYwrote on 04.10.2022:[7.0] "Don't understand this rating. Haven't seen anything that has blown me away. Solid worker tho, great in the ring."
Rating: 7.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: xnviuswrote on 30.09.2022:[10.0] "one of the greatest women's wrestlers of all time. her work in STARDOM alone gives her a 10. hoping for one more run in Japan before her time is up."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: fictionwrote on 25.08.2022:[9.0] "This is only a 9 rather than a 10 because since NXT 2.0, Shirai's role has been diminished in the company, pushed in favour of significantly weaker wrestlers, and placed in tag matches so she can't outshine whoever they decide to push. That looks like it's about to change, thankfully, but in that time period several women have reached her previous heights and I'm not sure if she's capable of that."
Rating: 9.0
Sentiment: 0.026388888888888892
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Penta Suzukiwrote on 31.07.2022:[10.0] "The greatest women's wrestler of all-time and, for several years now, my favourite wrestler. Unbelievable and unmatched in-ring, unlimited charisma, a special aura, one of the best entrance themes, great gear and looks amazing, she's a true top-tier star. Yes, her English language promos aren't amazing, but when everything else is so good, that doesn't matter, plus, her ranting and raving in Japanese in NXT was a great gimmick, I often remember her doing it while following Rhea Ripley up the ramp and rhea in total exasperation just telling her to "shut up". After NXT went to shit, Io remained there and was one of the few reasons to keep tuning in, even with a reduced role she would still steal the show even in a quick 60 second cameo, she was just so awesome. All of that said and what prompted me to make this rating now, is the bad news I heard last night that I've dreaded for a long time, that being, that after being out injured for 3+ months amidst speculation her WWE contract was expiring and she was on the way out, the worst case scenario happened...she must have re-signed and has now been moved off the only WWE show I still watch, she's had her name butchered and been placed in a stable where she will likely play second fiddle to Bayley. I always assumed that when she got called up, my viewership of her would be over, but now it's actually happened, I'm not sure. From what I gather, she'll be on Raw, Vince supposedly being gone helps, but can I really sit through a potentially awful 3 hour show with very few wrestlers I have any time for, no main champion, no tag team champions, a secondary title held by charisma vacuum Lashley and a women's title held by a woman that was absolutely no good when I last saw her in NXT, who Io will probably be jobbing to as a lackey for Bayley, is my fandom of Io really that strong? I just don't know."
Rating: 10.0
Sentiment: 0.08728434065934065
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: UWF Rules Enthusiastwrote on 06.05.2022:[10.0] "Io Shirai is one of the greatest female wrestlers ever. She has been in countless excellent and great matches. Her great work was a big reason for STARDOM starting to rise to the top in the 2010s. Her moveset is exciting, and her athleticism is amazing."
Rating: 10.0
Sentiment: 0.45454545454545453
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Okaro143wrote on 22.04.2022:[10.0] "One of The best female Wrestlers on the planet. Io Shirai does the little things very well and her showmanship and her athletism and in ring ability is excellent."
Rating: 10.0
Sentiment: 0.4025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Zaubernmannwrote on 18.03.2022:[6.0] "Sie hat in den letzten Jahren alles verloren, was sie besonders gemacht hat. Hält sich an ihre Formel und das war's. Traurig zu sehen, dass sie nur ein weiteres Produkt wird."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: nWo-Joshi-Guywrote on 23.02.2022:[10.0] "A simply amazing performer with the most violent looking Moonsault in wrestling. Everything she does looks deadly yet elegant. She has amazing gear, gimmicks and looks as well; both in Stardom's QQ and as her dark, brooding self in NXT. I love her presentation in NXT as well; amazing entrance, music and character. Great title run and matches as NXT women's champion too. Even as NXT 2.0 transitions into something resembling the main roster she has somehow remained well-booked and presented. Disgusting that WWE have kept her in 'developmental' for so long. I cannot wait for her to leave even if I do still enjoy seeing her on NXT."
Rating: 10.0
Sentiment: 0.1761904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: NoSellwrote on 12.01.2022:[10.0] "One of the best female wrestlers or simply wrestlers ever and I pray everyday for her to leave WWE and finish her career back in Japan. She's beyond incredible."
Rating: 10.0
Sentiment: 0.2833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: HopelessHelenawrote on 07.01.2022:[10.0] "What a talent! A standout inside the ring, has developed a strong character and sense of self, if used to the best of her abilities the sky truly is the limit."
Rating: 10.0
Sentiment: 0.5111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: WeWantEvolutionMYCwrote on 26.10.2021:[10.0] "Io Shirai is one of the best wrestlers period, she has amazing skills her evolution trough the years has make me love her even more and more everytime."
Rating: 10.0
Sentiment: 0.62
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: kfztkfzt2021wrote on 13.10.2021:[10.0] "Io Shirai is the Perfect wrestler, she was born to be in the ring, breathtaking.She is the perfect allrounder, her highflying skills are perfect and she is well balanced in the other areas, has tons of charisma, and has no weak links with promo skills or character portray. Perfect."
Rating: 10.0
Sentiment: 0.6770833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: No Onewrote on 09.09.2021:[10.0] "The best female all-rounder in-ring performer in the world. The best acrobatic female wrestler in the world. Already is one of the greatest in-ring performers of all time, men & women combined. Can draw a lot of comparisons to the legendary Manami Toyota during her 1990's prime. Elevates every match that she is a part of. One of the best female Ring Generals in the world. Excellent Babyface. Excellent Heel. Awesome character work. The legendary ACE of Stardom. The greatest Stardom wrestler of all time. The first ever Stardom Grand Slam Champion. Outstanding tag team partnership with fellow "Daughter of Stardom" Mayu Iwatani, as they were the best female tag team in the world during their run together, known as "Thunder Rock". She betrayed Mayu, which set off an amazing feud between them. The founder of Queen's Quest. Set records in Stardom that still stand to this very day. Was untouchable in Stardom. Had a memorable Intergender match with the highly popular Pentagon Jr. for the cult favorite promotion, Lucha Underground. Has transitioned to the WWE and became an NXT Legend. One of the greatest WWE NXT Women's Champions of all time. Amazing & memorable feud with Candice LeRae. One of only 3 women to have held the WWE NXT Women's Singles Championship & WWE NXT Women's Tag Team Championship. Is a very strong candidate for 2010's Women's Wrestler of the Decade (in contention with Kana/Asuka). Is already a candidate for being the best women's wrestler of the 2020's decade. One of the most accomplished women's wrestlers in the world who is still in her prime."
Rating: 10.0
Sentiment: 0.6133333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Kungwrote on 09.07.2021:[10.0] "To put it simply, Io Shirai is one of the world's best wrestlers working today and has been for quite some time now. She has an undeniable presence, she can connect with a crowd better than most, and she has the best moonsault in the business. As far as I'm concerning, she's got it all."
Rating: 10.0
Sentiment: 0.5166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: TigerDiverwrote on 29.06.2021:[10.0] "Possibly the best female wrestler in the world today. Despite not being able to speak English fluently, Io carry herself well with great charisma. Her in ring work is second to none, and her heel run in 2019 might be the best of any female wrestler ever."
Rating: 10.0
Sentiment: 0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: zags7000wrote on 23.06.2021:[10.0] "Her run in Stardom showed her as the best or one of the best wrestlers in the world. While she hasn't had as many classic matches in NXT, she's had plenty well above average and even great matches. She's one of the more entertaining and charismatic wrestlers as well with a great move set. Very unique look as well. All around a great superstar who I think can thrive anywhere."
Rating: 10.0
Sentiment: 0.5310897435897435
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Vernious39wrote on 22.06.2021:[5.0] "She's wrestled about 3 matches in the past year and appears to be moving in half speed compared to what she did 7 years ago. She has no claim to being one of the best in the world when people like Suzu, Utami, and even Mei Suruga are having great matches every single week. She hasn't had a serious MOTYC in about 5 years so its clear she's only rated so highly based on name value and reputation."
Rating: 5.0
Sentiment: 0.13761904761904764
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: The A-Listerwrote on 08.05.2021:[6.0] "She is a great wrestler, don't get me wrong. She had many great matches, and she had long reign, but both reign and she were boring, just boring. Didn't care about her at all. I don't know if she doesn't have a character or WWE failed to utilize it, but from what I've seen she is just an overrated joshi. Hopefully she goes to SmackDown now."
Rating: 6.0
Sentiment: -0.11875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: jltwrote on 08.04.2021:[9.0] "One of the best female wrestlers in WWE/NXT and she has the in-ring skills to back it up, although she just lost the NXT Women's Championship, I believe she can either comeback or go to the main roster and have a good run there - but I'm scared because of Vince and his problem with those who can't speak English very well. I think she should stay in NXT, develop her promo skills and continue to pull off amazing matches."
Rating: 9.0
Sentiment: 0.33333333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: shootingstarzeuswrote on 27.03.2021:[10.0] "Io Shirai is my favourite wrestler, she has proven that the can be the 'ace' anywhere from Stardom to NXT. I really like her wrestling style which has flashy arial moves that are supported by strong technical ability, in matches it is fun to watch and it also makes her very versatile when facing different opponents. Other than that, she has a commanding presence and exudes cool from her gear to her facial expressions. I'm always excited to see whatever she is involved in."
Rating: 10.0
Sentiment: 0.11212121212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: pierreMinnewrote on 27.03.2021:[10.0] "Io Shirai is one of the bests female workers in the history. She can do everything she wants in the ring, can carry everyone. In Stardom like in NXT, she is always the very best where she works. Incredible."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: texasyoshwrote on 19.03.2021:[9.0] "Despite being only 30, Io has proved that she is one of the best in the world, and one of the best women's wrestlers of all time."
Rating: 9.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Prophet-of-Omegawrote on 14.03.2021:[5.0] "She literally just jumps off of things lmao. No psychology spot monkey who is wildly overrated both in nxt as well as beforehand in Japan. It takes more than flips to be a compelling wrestler. Like just watch actual gymnastics. It's infinitely more intricate and impressive than a botchy backflip."
Rating: 5.0
Sentiment: 0.36875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: FightForeverwrote on 06.03.2021:[10.0] "My favorite wrestler in the world right now and my favorite womens wrestler of all time! She has AMAZING charisma and mic skills, is one of the best in-ring, genuinely every match she has is at least good, most times more so. Amazing in STARDOM, amazing in NXT as a face, then godly after her heel turn. Brilliant"
Rating: 10.0
Sentiment: 0.5315934065934067
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Cedar Tigerwrote on 17.02.2021:[10.0] "She's the GOAT because she has in ring skill, charisma, talent, promo skills like I have never seen before She isn't a human she is a alien or some kind of Ninja that has a rare talent nobody will ever have again and I believe she is from outer space that just comes down to wrestle for our entertainment Her in ring matches are unmatched in my eyes Truly the greatest wrestler to ever live Thank you for being my savior and the Greatest Of All Time GOAT, GCOAT, GOTS IO SHIRAI"
Rating: 10.0
Sentiment: 0.3288510101010101
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Burninghammercriticwrote on 15.02.2021:[10.0] "The best female in WWE atm. No doubt, she is good at everything absolutely flawless. But that is how they are trained in Japan these days. Genius of the sky!"
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: SammyMayawrote on 26.01.2021:[10.0] "Simply unbelievable talent. Was Stardom's cornerstone during the Threedom years. Showed her emerging brilliance during her Triple Tails days with Mio and Kana. Simply superior to everyone on the NXT roster as well as the main Raw & Smackdown rosters. Can lay claim to being (arguably) the best active female wrestler in the world; her Thunder Rock-mate Mayu Iwatani caught up with her! I am not sure what the next step is for her since she outclasses everyone else. Her matches against Meiko, Kairi, Mayu, and others are the standard bearers for present-day joshi."
Rating: 10.0
Sentiment: 0.10025641025641026
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: medousewrote on 10.12.2020:[10.0] "Currently, one of the most popular japanese female wrestlers. I absolutely loved her work in Stardom. Her matches were always the best. Since she went to US, she doesn't perform as good as she used to, but she is still phenomenal. My rating is based on her whole career, not just the last years in NXT."
Rating: 10.0
Sentiment: 0.38181818181818183
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Legend003wrote on 03.12.2020:[9.0] "Eine der besten Frauen derzeit in der Wrestling Welt. Athletisch, charismatisch, kann unglaublich intensive Matches worken. Alles sehr sehr stark."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: AlexLikesJoshiwrote on 30.11.2020:[8.0] "Io Shirai was and is a very, very good professional wrestler. Her work before joining Stardom was pretty good and when she got to wrestle Satomura, Iwatani, or Hojo she could deliver great matches but I don't think she quite hits the level of an all-time great for me which is why I think an 8 is fair. A talented woman just not a legend."
Rating: 8.0
Sentiment: 0.62
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: JackLeRae1991wrote on 18.11.2020:[9.0] "One of the best women in the World, the Joshi Judas is the future of the World Wrestling Entertainment!"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: JBoogieRom28wrote on 21.10.2020:[7.0] "I don't hate Shirai but I think she is a great performer and has had some BEAUTIFUL matches. But I think it is the same issue Ricochet has. He is a great performer but I don't see any promo ability. Even in Japan, I didn't get interested in her promos. I think Shirai should stay in NXT for about 2 more years and then move her up to Smackdown because she still needs work but is no doubt the future of WWE."
Rating: 7.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Mizzle Assault Antwrote on 03.07.2020:[10.0] "Certainly one of the best wrestlers in the world over the past 5 years. Io Shirai is simply an incredible talent."
Rating: 10.0
Sentiment: 0.4660714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: catfights4wrestlingwrote on 30.06.2020:[10.0] "Her brutal defeat of Xia Brookside in the Mae Young Classic is the best Womens' match that I have ever seen!"
Rating: 10.0
Sentiment: 0.09791666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: THATSGOTTABEKANEwrote on 12.06.2020:[10.0] "Definitely in my Top 10 not just in women's or joshi but in general right now. She is scary good right now. It's frightning to think she will soon eventually be in the main roster but she's perfect and great at NXT right now."
Rating: 10.0
Sentiment: 0.35738095238095235
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Dovka25wrote on 10.06.2020:[10.0] "Io Shirai is one of the best joshi wrestler in the world at this moment. As a face she was good but as heel even better. Every match with her is worth watching. She already on top and have plenty of time to remain there. I would love to say GOAT but she has plenty of time to achieve that status."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: BDDwrote on 09.04.2020:[10.0] "The best female wrestler of today, Io is very charismatic, and can do an incredible job with her character, she can also interpret the role of heel / face very well, and her matches are always very good."
Rating: 10.0
Sentiment: 0.61
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Mowerwrote on 05.03.2020:[10.0] "That heel role she's into nowadays does not work because of her nice moveset (even it is watered down at the current promotion she's in(thank yellow brand it's not that pussified as much as the main 2 brands do) plus she is a talented eye candy so blame the creative for not giving her a ripoff of the judas effect. Her double knees to face (handstand) improved, barely botches, if I can remember her last botch was in her first few days at MYC when performing a moonsault, then nothing much ever since. If her entire arsenal is allowed she will be billed as a hybrid rather than a geniusofthesky. Doesn't need a deathmatch to be a great wrestler, cuts decent promos on that joshi brand and never loses backflippin skills since 2008"
Rating: 10.0
Sentiment: 0.19043209876543207
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: LexiconExpressiconwrote on 17.02.2020:[5.0] "As of the date of writing, Io is ranked higher than Chris Hero, Bret Hart, Kurt Angle, Asuka and Shinsuke Nakamura, just to name a few. Io comes nowhere close to that level of talent: Her character work was lacking as a face (because she had no character) and is still lacking as a heel (because she gets no heat, even against complete babyfaces such as Candice LeRae). Perhaps this lack of character work can be put on her difficulties speaking English, but Andrade 'Cien' Almas had the same problem when he was in NXT and he was given a manager and became one of the best NXT Champions in recent memory while steadily improving his own English, meanwhile Io has few promos and those that she has are poor. Nothing I've seen from her has blown me away, at least not to the extent that this rating would suggest, and people tend to only bang on about her moonsault, which she botched the first few times in WWE and generally doesn't look that good. In a division filled with great characters and workers, Io just isn't on the same level. I would rank her lower but her entrance is really fucking cool."
Rating: 5.0
Sentiment: 0.10694444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: IAmTheGlazedwrote on 15.02.2020:[10.0] "She is my favourite wrestler for a reason. She is the best womens wrestler in the world, screw it, one of the best wrestlers in the world. Her in ring ability is something that I have not seen before, her style just oozes badassery with every move she hits having and feeling brutal. But her moves are also just beautiful. When she busts out a big move, it looks flawless and what else can be said about her moonsault. It's the best moonsault in wrestling. Her character work as well is so good, theres a reason she is as over as she is in NXT, her character just oozes charisma and as a heel, her work is great, she does make you hate her at some points. Io Shirai gets a 10"
Rating: 10.0
Sentiment: 0.35624999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: VillainClubwrote on 23.12.2019:[10.0] "Fantatische Wrestlerin, wohl eine der besten der Welt. Schade das sie nun bei der WWE ist, hoffen wir das beste für sie."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ooomegooowrote on 30.11.2019:[9.0] "She had no minuses. Oh no, wait! For this moment, miss Shirai, (not Io-san), had only one minus - promotion where she signed. She has a lot of charisma, passion and soul, but when she start to talk on English, all this components just vanish. When she talks in Japanese, she's very good, I don't know what she say, but I can feel what she gonna say. And then, she try to say something in English, and you just see another women. She becomes like school girl that forget her homework, and try to use a cheat sheet.  In another components, Io just one the best."
Rating: 9.0
Sentiment: 0.25857142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ZestyZuluWarriorwrote on 15.10.2019:[10.0] "Easily the best female wrestler on the planet. She has proven she can do it all from face to heel from women's wrestling to intergender wrestling. She has wrestled in many different promotions with different styles and been a standout in all of them. Simply the best."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Tiernanwellsbwrote on 30.09.2019:[10.0] "She oozes talent her recent heel role fits her like a glove she plays it so well, her move set is absolutely flawless there is no doubt she is one of the best in the world"
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Coop DEtatwrote on 09.09.2019:[9.0] "As far as athleticism and realism, there's no woman that is better. Her promo skills are okay, and they're even better when she is a heel."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: TwistedBlisswrote on 02.09.2019:[10.0] "Io Shirai ist eine fantastische Athletin. Sie als Heel zu pushen kam sehr unerwartet aber diese Seite gefällt mir sehr gut. Es bleibt abzuwarten, ob sie an die klasse Leistung vom letzten Takeover mit Candace LeRae anknüpfen kann.  Für mich gibt es eine klare 10!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: cuervonegro83wrote on 27.08.2019:[10.0] "I know her for a long time, specially in her time in STARDOM but I also watched some of her matches as Triple Tails (with her sister Mio and Kana), she has been always a great wrestler or to be right she is the most complete wrestler in the world, she is a great technician, she can fly, hit and she is so strong that she can choose any move she wants to do.  Io is also a clasic wrestler, she doesn't need hardcore matches, street fights and nothing like that to do amazing matches, and she has some experience with this kind of matches but there are some wrestlers that need this matches to look better and others not, and Io doesn't need this matches.  The only thing I feel sad is people thinks they know how good she is only because the match she had in Lucha Underground and they think the new Heel Io is that same gimnick, and is not, Io was a heel on STARDOM who left her partners Mayu and Kairi to be the best, in that moment Queen Quest born and STARDOM starts building the stables they have in this days (Oedo Tai was the first stable)."
Rating: 10.0
Sentiment: 0.3414797323888233
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: KyleEnjoysWrestlingwrote on 30.07.2019:[9.0] "So excited that Io just turned heel because I think she's born to play that role. She is a badass in the ring & her having the demeanor to match will do wonders for her. Not to mention that she looks phenomenal in black. She was part of my favorite intergender match of all time when she popped up in Lucha Underground against Pentagon. She showed she can more than take some nasty abuse & I am still in awe every time I see her hit that cross body out of the balcony. During her time in Stardom she did amazing work to help legitimize that company as the #1 place to go for sound women's wrestling."
Rating: 9.0
Sentiment: 0.18981481481481483
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "An impressive athlete with a good presence and a good look. She can do a lot of things. She works well as an underdog but even better as a more agressive and disrespectful wrestler. Unfortunately, like every japanese wrestlers, she doesn't fit at all in WWE. I hope she succeed but I don't see her go really far because she doesn't have a lot of charisma unlike Asuka or Kairi Sane, so she has even less chances of success. Sadly she will be viewed as another overrated japanese wrestlers by people who never watched her in her element, she will probably just be only a girl they pick to make her opponent look as good as possible. But I will not forget what she did in Stardom. Even in her last year there, where she was in autopilot mode she was still above almost everyone in the joshi scene. And she is still so young it's scary."
Rating: 9.0
Sentiment: 0.16666666666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: BadAssTranslateTradingwrote on 22.06.2019:[9.0] "In Japan she ruled, in WWE she just doesnt fit. Amazing worker and a great babyface in Stardom but the WWE style just doesnt suit her moveset and reckless match type at all."
Rating: 9.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Fab96wrote on 17.04.2019:[6.0] "Io Shirai might be the most talented woman wrestler in the world, in Japan was the best for sure. In NXT the story is different, maybe because she still has to fit in the WWE and the US, and she doesn't speak english. She is great in the ring, don't get me wrong, but she lacks of charisma, I've seen her botch a few times. She didn't impress me at all."
Rating: 6.0
Sentiment: 0.32
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: AJStylopzwrote on 09.04.2019:[10.0] "You can say she is the ace of Stardom like Tanahashi is or atm was the ace of NJPW. Io is one of the best wrestlers in the world for sure. She can wrestle with guys and she can make anyone look like a million bucks after the match. She has such a perfect technique that blows me away everytime I watch one of her matches. Her selling is also one of the best sells in the business. SHE IS THE BEST FEMALE WRESTLER IN THE WORLD"
Rating: 10.0
Sentiment: 0.6428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ErycK24wrote on 08.04.2019:[8.0] "IO is obviously great in the ring and very entertaining to watch but being as I am a major WWE fan and only tend to watch WWE and ROH I haven? t seen enough of her to give her a 9 or a 10 yet."
Rating: 8.0
Sentiment: 0.30250000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: zephyrwrote on 16.03.2019:[10.0] "Shirai is probably my single favourite joshi performer ever. She's incredibly entertaining to watch and probably my biggest inspiration to train to get into wrestling myself."
Rating: 10.0
Sentiment: 0.2142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Klabauterwrote on 04.03.2019:[10.0] "Ich erinnere mich noch an Zeiten, da wurde diskutiert, ob sie überhaupt die bessere der beiden Shirai Schwestern ist. Heute wird entweder sie, oder Meiko Satomura genannt, wenn es darum geht, wer die beste Wrestlerin der Welt ist. Bin sehr gespannt, wo ihre Karriere bei WWE hinführen wird. Moment fährt sie ja zweigleisig. Einerseits als mögliche Herausforderin von Shayna Baszler andererseits im Sky Pirate Tag Team mit Kairi Sane."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Makai Clubwrote on 23.02.2019:[8.0] "Obviously a great women's wrestler when she was consistent but honestly, Io had her off days or her not so great days more than not. She could get the best out of mediocre wrestlers, sure but when with the top talent, ah something is missing. Maybe it's the lay out her matches have or they almost always revolve around her. It's something that it takes her down a peg. She is a great gateway into joshi but best in the world? Nah, there are far better women out there, even in Stardom."
Rating: 8.0
Sentiment: 0.4329629629629629
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: BuzzardBolieverwrote on 25.12.2018:[10.0] "easily the greatest women's wrestler in the world for the last few years. nobody is near her level of in ring performances"
Rating: 10.0
Sentiment: 0.2666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: RatingsMachinewrote on 10.12.2018:[8.0] "Shirai is a great worker and she is a great babyface as well, although I don't think she's being utilized to her fullest at the moment."
Rating: 8.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: My Bloody Doobwrote on 14.09.2018:[10.0] "The best active women's wrestler today in my opinion. You can only count on one hand the amount of Joshi wrestlers who are on Io Shirai's level. Her charisma, starpower and trademark athleticism easily make her stand out as a once in a lifetime talent. It's hard to even say there are many male wrestlers out there with her levels of talent. I might lower her score some time down the road since she is now in WWE, but I hope I won't have to."
Rating: 10.0
Sentiment: 0.06141975308641975
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Riggswrote on 29.07.2018:[10.0] "Probably the greatest technical female wrestler active today. I have never seen her in a bad match. She can wrestle any style. She strikes hard, knows most holds and moves, can do submission, and can fly with speed. Her character is really good too as she is aloof and acts like she is better than everyone else. She only gives people the time of day if they are willing to strive to be the best and give everything they have. Not really a heel, but not a face either; Just one who knows she is the best and will take on any and all challengers."
Rating: 10.0
Sentiment: 0.3016666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Sohamwrote on 19.07.2018:[10.0] "Easily the best female wrestler (and top 5 overall) in terms of ring work,  her in ring work is a thing of beauty. Never in the history of pro wrestling we have seen a performer as versatile as IO Shirai. She is a superb striker, can perform incredible jaw dropping aerial manoeuvres, and is a swift & gifted technical wrestler. Keep up the good work."
Rating: 10.0
Sentiment: 0.5033333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: jamzell00wrote on 29.04.2018:[10.0] "Could make a case for her being the best damn wrestler alive regardless of gender. She plays the cocky ace so goddamn well it's insulting. Her intensity and natural God given ability make for some incredible matches as well. I know many prefer Mayu but Shirai is just on another level"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Dragon Fighterwrote on 15.03.2018:[10.0] "Without a doubt, she is the best female wrestler in the world right now. Phenomenal in ring work, great selling, bumping. Her moveset is absolutely fantastic. She is also great at carrying job. She can have good matches with anyone. A total package. Just a treasure to watch for sure."
Rating: 10.0
Sentiment: 0.49857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ThreeCountwrote on 04.11.2017:[9.0] "Io Shirai has that special thing about her, she makes you instantly intrigued in her work by how Unique she is, bringing something different in each and every match she's in it just reels you into how good she truly is, one of my favorite Joshi wrestlers of all time continues to improve her work each and every time she competes, falling into much more of a gatekeeper roll at the moment she's still producing some top tier matches."
Rating: 9.0
Sentiment: 0.3665178571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: NastyYaffawrote on 12.09.2017:[10.0] "Best women's wrestler in the world right now & a contender for the best wrestler in the world, in general. Amazing on the offense, great seller & can wrestle so well both on top & from underneath. Io Shirai is definitely one of my favorites going."
Rating: 10.0
Sentiment: 0.5294642857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: rjsbx11wrote on 28.06.2017:[10.0] "Io is one of the best, if not the best female wrestler in the world. Her aerial offense is crisp, her ability to work different styles is superb and she's an exceptional seller with unmatched charisma in her sphere. As neck injury from wear and tear will delay her move to WWE a little bit, when she's ready she should provide a great crossover appeal that can make her a mega-star."
Rating: 10.0
Sentiment: 0.4729166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: koblandwrote on 24.04.2017:[10.0] "The singular best female wrestler in the world, and possibly in the top 10 overall workers period. Watch any of her recent matches against Hojo or Iwatani, they speak for themselves as to how good she is."
Rating: 10.0
Sentiment: 0.31428571428571433
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: TheOneWhoKnockswrote on 21.04.2017:[10.0] "Best female wrestler in the world, with her matches opposite Kajiro Hoto and Mayu Iwatami particularly standing out. Also highly charismatic and stunningly beautiful. Io Shirai is a 10 in every department."
Rating: 10.0
Sentiment: 0.41944444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: PistolPeteMattywrote on 10.02.2017:[10.0] "Hands down the best female wrestler around today. At only 26 she's had countless incredible matches, and just keeps adding to that list over time."
Rating: 10.0
Sentiment: 0.29074074074074074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Evolve3891wrote on 22.01.2017:[10.0] "The best female wrestler on the planet. Io has the skill to succeed in any promotion she desires and is also blessed with great looks. Her match at the 2016 year end climax showed that she can also out wrestle most men on the planet and the match was given a 4. 50 by Dave Meltzer of The Wrestling Observer."
Rating: 10.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: indyreviewswrote on 06.12.2016:[10.0] "One of the top wrestlers in the industry right now (female or otherwise). I would type out a long and wordy review but honestly, just watch one of her matches. Her in-ring work speaks for itself."
Rating: 10.0
Sentiment: 0.2671428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: DubsMcTFwrote on 18.08.2016:[10.0] "Io is one of the few true Aces of a promotion.  Io consistently has top level main events and can have great matches with anyone."
Rating: 10.0
Sentiment: 0.3111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Luv all wrestlingwrote on 05.06.2016:[10.0] "The ACE of STARDOM, has so many great matches, can work face/heel, diff styles, my only complaint is that there is no STARDOM wrestler left for her to face"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: ntrlk1wrote on 28.04.2016:[10.0] "Possibly the most athletic female wrestler of all time. Combines a high-flying gymnastic style with an array of power moves and stiff strikes to create an in-ring style that is unique."
Rating: 10.0
Sentiment: 0.13214285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: paijowrote on 23.05.2015:[2.0] "Good wrestler, very good performance, good looking, & full total package, but i STILL hate her in the past (if you know what i mean). never forgiven until today. i prefer look her older Sister Mio than this. just waiting comment from this. haters gonna hate! yep that's all i say and i speak the truth.. right on my chest"
Rating: 2.0
Sentiment: 0.06817099567099565
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: 1goldcoinwrote on 19.03.2015:[9.0] "She is as attractive as her sister Mio and just as good in the ring. Not a lot of power but has great speed and technique. Really sells the show and is fun to watch."
Rating: 9.0
Sentiment: 0.5599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9555&gimmick=IYO+SKY
Comment: Matzinhowrote on 13.02.2014:[8.0] "Die jüngere der 'Sexy Purple Thunder Sisters'. Auch Io ist im Ring gut unterwegs. Sie hat gemeinsam mit ihrer Schwester mit dem Wrestling-Training begonnen und dennoch bestehen unterschiede bei deren Ausstrahlung. Typisch für eine größere Schwester wirkt Mio reifer und präsenter. Io fehlt noch die Superstar-Aura, die ihre Schwester verkörpert."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MEDaminewrote on 05.01.2025:[10.0] "He is really phenomenal, the nickname describes, wherever he wrestled, he always produced memorable moments, one of the best in-ring wrestlers, with versatile ring skills, he is also solid in the mic, and he is so charismatic and would succeed in any role he's given, even at the age of 46/47, he still had great matches with Cody Rhodes and Randy Orton, one of the best wrestlers of all time"
Rating: 10.0
Sentiment: 0.6142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Samirwrote on 27.12.2024:[10.0] "His nickname perfectly describe his class. Styles is truly a phenomenal wrestler. His transition from High-flyer to technician is also really commendable. In his early career AJ Styles was known for his aerial maneuvers and high-risk moves like. As his career progressed, Styles began to incorporate more technical wrestling into his repertoire."
Rating: 10.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Tonostrawrote on 08.12.2024:[9.0] "Everything has already been said about AJ, so what could I add more ? Nothing. One of the GOATs for a reason."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Jeamuswrote on 07.12.2024:[9.0] "AJ Styles earns a 9.0 from me because hes one of the most well-rounded wrestlers in the business. His in-ring ability is second to nonewhether its high-flying, technical wrestling, or hard-hitting styles, he can adapt to any opponent and always delivers a great match. His storytelling in the ring is phenomenal, making every move and sequence feel meaningful. On the mic, hes solid, and while not the flashiest talker, hes believable and connects with the audience. His versatility has kept him relevant across different eras, promotions, and opponents, from TNA to NJPW to WWE. The only reason Im not giving him a perfect 10 is that his recent booking hasnt always showcased his full potential, and some storylines have felt lackluster. But as a wrestler, AJ consistently proves why hes called the Phenomenal One. Hes a legend whos truly earned his spot in the top tier of wrestling."
Rating: 9.0
Sentiment: 0.32499999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: In famous TongaLao 1wrote on 01.12.2024:"The greatest in-ring wrestler of all time can't debate with AJ.He has no flaws in his game all of his matches AJ will leave you in shock from his time in TNA to New Japan to WWE all of his matches are bangers and he has the resume to back it up as the GOAT of all wrestlers he can perform with any one his matches with John Cena where amazing to watch his feud with Randy Orton was also great He can work with anyone and make a great match and storyline out of it.He also has one of the best nickname of all time and he has a limitless bag of moves he will always pull something we have never seen or something we have seen used in awhile he also has multiple signature moves to finish off his match he can do it in mid air with his forearm or 450.He can also finish a match by making tap out with his calf crusher or on the ground with his styles clash he has the greatest bag in wrestling period and is the GOAT for a reason."
Rating: No rating found
Sentiment: 0.45303030303030306
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AceHagannwrote on 26.11.2024:[10.0] "A brilliant performer all around. Great off-ring performances across the board. But AJ shines the brightest in the ring. A great moveset, great awareness as to how to enhance the intensity of a match, and the ability to get a great match out of pretty much anyone."
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: XNoWayKemoSabeXwrote on 25.11.2024:[8.0] "Seeing The Phenomenal AJ Styles back in TNA was a true pleasure. The triple threat match with The Fallen Angel Christopher Daniels and The Samoan Submission Machine Samoa Joe is still one of my favorite matches of all time."
Rating: 8.0
Sentiment: 0.3375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: nils1997pbwrote on 23.11.2024:[10.0] "Mit ihm bin ich groß geworden. Seine Art zu Wrestlen ist grandios. Technisch einer der besten aller Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: wrestlingswiftiewrote on 18.11.2024:[10.0] "I always talk about him in modern-day GOAT conversations, but I wouldn't be surprised if you counted him in all time. He's phenomenal, no pun intended."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ItsAllAWorkAnywaywrote on 13.11.2024:[9.0] "The biggest injustice of AJ Styles's career is that he joined the WWE about 10 years too late, even if you consider how his success in NJPW got Bullet Club over and opened the door for AEW to exist. He was TNA's most loyal soldier and also most decorated champion. Yet TNA's mismanagement of his contract situation saw him leave to New Japan/Ring of Honor (and saw TNA eventually sold off to Anthem Entertainment.) He got himself over, he finally realized his dream of going to the WWE, and then he beat John Cena. Regardless of what he does next, Styles's career will always be considered exceptional because he was phenomenal."
Rating: 9.0
Sentiment: 0.2636363636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MysticAgentwrote on 12.11.2024:[10.0] "AJ is in my top 5 favorite wrestlers of all time. AJ is the most complete wrestler of all time. He can play a underdog babyface to perfection and a little Wiesel cheating heel amazing. AJ is also one of the best in ring wrestlers of all time, his matches against Shinsuke Nakamura, John Cena, Samoa Joe, Christopher Daniels, Kurt Angle, Hiroshi Tananhashi, Kota Ibushi & Daniel Bryan are some of the best matches of all time. His move set is nuts he has one of the deepest bags ever. He also can cut a really good promo as well. Everywhere AJ's been whether it was TNA, ROH, NJPW, the indies or WWE he has been a top guy and has been champion. AJ's Accolades speak for themselves he is an 2x WWE Champion, 3x United States Champion, 1x Intercontinental Champion, 1x WWE tag team champion, WWE Grand Slam and Triple Crown Champion, 2x TNA World Champion, 3x NWA World Champion, 6x X Division Champion, 2x TNA & 4x NWA Tag Team Champion, he's a 2x IGWP Heavyweight Champion and 1x ROH Pure and 1x ROH Tag Team Champion, and a bunch of indies titles all around the world. AJ's theme song and attire are also super sick. He was also the leader of Bullet club and really made it worldwide. Through AJ's 25+ Year Career i think we can all say he is truly Phenomenal."
Rating: 10.0
Sentiment: 0.39036458333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wrestlingfan0808wrote on 31.10.2024:[10.0] "The amount of sons he has in wrestling today is crazy. One of the most influential wrestlers ever and one of the greatest to lace up a pair of boots. It doesnt get talked about enough how he has adjusted from being a super high flyer to one of the more technical sound wrestlers to ever do it. One of my goats for a reason. The phenomenal one. A. J. STYLES!"
Rating: 10.0
Sentiment: 0.29183333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Its Clobbering Timewrote on 19.10.2024:[10.0] "AJ Styles is in my top 5 favorite wrestlers of all time. AJ is the most complete wrestler of all time. He can play a underdog babyface to perfection and a little Wiesel cheating heel amazing. AJ is also one of the best in ring wrestlers of all time, his matches against Shinsuke Nakamura, John Cena, Samoa Joe, Christopher Daniels, Kurt Angle, Hiroshi Tananhashi, Kota Ibushi & Daniel Bryan are some of the best matches of all time. His move set is nuts he has one of the deepest bags ever. He also can cut a really good promo as well. Everywhere AJ's been whether it was TNA, ROH, NJPW, the indies or WWE he has been a top guy and has been champion. AJ's Accolades speak for themselves he is an 2x WWE Champion, 3x United States Champion, 1x Intercontinental Champion, 1x WWE tag team champion, WWE Grand Slam and Triple Crown Champion, 2x TNA World Champion, 3x NWA World Champion, 6x X Division Champion, 2x TNA & 4x NWA Tag Team Champion, he's a 2x IGWP Heavyweight Champion and 1x ROH Pure and 1x ROH Tag Team Champion, and a bunch of indies titles all around the world. AJ's theme song and attire are also super sick. He was also the leader of Bullet club and really made it worldwide. Through AJ's 25+ Year Career i think we can all say he is truly Phenomenal."
Rating: 10.0
Sentiment: 0.39036458333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TreyHalowrote on 18.10.2024:[10.0] "If you told me that you believe AJ Styles is the greatest to ever do it, I wouldn't bat an eye man, he's that good at every aspect of the game, deep catalog, makes everyone he steps in the ring with look stellar, and just has no flaws whatsoever, and is STILL going at a high rate despite pushing 50 years old man, one of the GOATs and an easy 10/10..."
Rating: 10.0
Sentiment: 0.28041666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KENTAfanwrote on 14.10.2024:[10.0] "Still an incredible performer and undoubtedly an all time great, Styles arrived in the WWE fairly late in his career. Despite being past his prime, he still put on some amazing matches as well as managing to have the best character/mic work of his entire career, which has only gotten better as his time in WWE has elapsed. Unfortunately, his age has really started manifesting itself over the last few years, and despite still being a great wrestler, he doesn? t seem capable of wrestling the way he did back in 2016-18 any longer. Despite that, he is still one of the most entertaining wrestlers in the entire company, even though he hasn? t been featured as prominently in recent years. [2024 EDIT: 3 yrs later] Ok, I stand corrected, back in 2021 it seemed like Styles was really starting to slow down, but since then he's done a phenomenal (pun intended) job of revitalizing his career. He might not be in his prime anymore, but he can still have incredible matches, and some aspects of his game like psychology have even gotten better."
Rating: 10.0
Sentiment: 0.21917562724014336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Venwrote on 14.10.2024:[10.0] "Before his arrival he was already a TNA and NJPW legend and when he arrived in his 38 he managed to be a WWE legend just in 2 years with his phenomenal heel run. When he retires he will be remembered as one of the best to do this sport"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Hazelyzewrote on 05.10.2024:[10.0] "One of the greatest of all time. He's a great all-rounder, he can have a brawl, he can fly like hell, he can make you submit. Age has only heightened his mental game as his physical game starts to wane, this current "can I still go" story will be interesting to follow. This is the house that AJ Styles built."
Rating: 10.0
Sentiment: 0.22000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: danzitorockwrote on 24.09.2024:[9.0] "AJ Styles is a legend, who made history in every company he went through, whether ROH, TNA, NJPW or WWE, he had an excellent contribution, which makes him one of the greatest in the history of wrestling in North America with all certainty. With unparalleled in-ring ability, he deserves all the praise and recognition he gets. He is indeed the phenomenal one."
Rating: 9.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Galmondiwrote on 21.09.2024:[10.0] "One of the best of all time, at the very top of the list to be the best. He was the best everywhere and he's still very good to this day."
Rating: 10.0
Sentiment: 0.9119999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ismarizviwrote on 21.09.2024:[10.0] "The person who make impact what it is today and most of the most best workhorse wrestler of all time wherever he go whether in wwe, roh, njpw, tna/impact this man is a legend"
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Saladbagelwrote on 09.09.2024:[9.0] "AJ Styles truly phenomenal in the sense of being a fantastic wrestler. His promo game is forgettable, so I can't rate him as a perfect 10/10, but he's still an excellent wrestler as shown throughout his TNA, NJPW, and WWE career. Even in his old age, there aren't many wrestlers capable of lacing up his boots. If you haven't seen him in his prime, you ought to."
Rating: 9.0
Sentiment: 0.3111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Chosen Onewrote on 31.08.2024:[10.0] "Ich glaube, Leute unterschätzen, was für ein Eckpfeiler von TNA er war. In etwa wie Sting für WCW oder Undertaker für WWF/E. Immer da und verlässlich und auch sehr bliebt und gut ansehnlich. Erst richtig legendär wurde seine Karriere ironischerweise, als TNA ihn gefumbled hat und er zu NJPW ging, um den amerikanischen Heel und neuen Leader von Bullet Club zu spielen. Danach hatte er 2016 endlich sein großes WWE-Debüt und einige großartige Matches. Besonders die Fehde mit John Cena hat mich abgeholt. Bei Styles hat zu der Zeit auch alles gepasst für mich... Mega gut im Ring, fähig am Mic (wo ich sogar finde, dass er etwas unterschätzt wird), toller Look und Ausstrahlung... The Club/The OC war auch ein cooles Stable, bevor irgendwann der Lack ab war. Niemand hat damals erwartet, dass er in WWE so verdammt erfolgreich sein würde, aber er hat es geschafft und das spricht für sein unglaubliches Talent. Zugegeben, ich fand sein Booking dennoch nicht immer perfekt und er ist nicht mehr so heiß wie noch um 2016-18 herum, aber immer noch ein Top Performer und jetzt schon, für mich, eine lebende Legende des Wrestlings."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ITGfromDiscwrote on 23.08.2024:[10.0] "AJ. Styles. Need i say more? the man has had more great runs than 10 average wrestlers combined. He never had a terrible gimmick, He always put on at least a top 2 match of the night, and his legacy is widespread through wrestling in ROH, TNA, NJPW, and WWE."
Rating: 10.0
Sentiment: 0.12142857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Odinohkawrote on 21.08.2024:[9.0] "AJ Styles is one of the best wrestlers in the world, hyper-technical and hyper-precise. AJ never misses and always hits the point. In the ring, he's virtually unbeatable, knowing how to do everything with exceptional fluidity. He more than makes up for his slight lack of charisma with an undeniable presence, convincing us within seconds with his wrestling. He's the boss. On the other hand, he still has trouble with mic promos and it's maybe what private him to be champ now in the WWE."
Rating: 9.0
Sentiment: 0.271875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Xtremeberry17wrote on 20.08.2024:"I think A.J. Styles is one of the most gifted performers of all time & for him to still move in the ring the way he does is quite phenomenal!"
Rating: No rating found
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Obird122wrote on 15.08.2024:[10.0] "The reason I got into wrestling when I was young. I was around 8 years old when my friend showed me a tape he had of an AJ Styles match from a couple years prior and I saw Christopher Daniels vs. AJ Styles vs. Samoa Joe for the first time. I had seen WWE matches before, and I liked it but never really cared for it too much, but something about AJ was different than anything I had seen. I later got more into WWE, but AJ was not only the best in ring wrestler I had ever seen, but he had a way of making the matches feel like he really was fighting for a championship. If someone doesn't understand wrestling, show them AJ Styles."
Rating: 10.0
Sentiment: 0.21923076923076928
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "AJ has had a career resurgence as of late. After he lost the WWE title and started forming random teams I thought that he was gonna have a... less than stellar end to a phenomenal (no pun intended) career. Then he started putting in the WORK again. He says he'll retire when he feels like he can't give 100% anymore, and I hope that isn't any time soon because he has been one to watch as of late. I hope he gets one last world title run before he hangs them up."
Rating: 9.0
Sentiment: -0.0738095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Fakhruddin Hawariwrote on 01.08.2024:[10.0] "One of if not the best wrestler in this generation. He can wrestle in many styles no pun intended. AJ managed to have success in many promotions with the biggest 3 are TNA, NJPW, and WWE. He can have good matches every single time that when people say the match is dissapointing, that's not because the match is bad but simply because AJ is too good."
Rating: 10.0
Sentiment: 0.3253968253968254
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: namisuzwrote on 30.07.2024:[10.0] "AJ Styles is phenomenal in every sense. His unmatched in-ring ability, versatility, and charisma make him one of the greatest wrestlers of all time. Whether he's performing high-flying maneuvers, technical grappling, or hard-hitting strikes, Styles delivers top-tier matches every time. His consistency and passion for wrestling shine through, making every match hes in a must-watch. AJ Styles truly embodies what it means to be a phenomenal performer."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Bloodshot03wrote on 29.07.2024:[10.0] "AJ Styles has been a favorite of mine since the beginning of TNA Wrestling. One of my favorite matches of his was Lax vs Styles and Daniels for the NWA tag team titles at Bound for Glory 2006. Also, there are quite a few classics in WWE, but my personal favorite is Styles vs Roman Reigns at Extreme Rules. AJ Styles definitely has a place on my wrestling Mt Rushmore."
Rating: 10.0
Sentiment: 0.16785714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JakeTheSnakewrote on 27.07.2024:"He is one of the most talented wrestlers of all time. He is already a legend and continues to entertain us for many years to come. I'm so glad he's in the WWE."
Rating: No rating found
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MatnificentMattwrote on 26.07.2024:[10.0] "Absolutely phenomenal wrestler. Easily one of the best wrestlers if not the best wrestler of this era. Styles has had numerous amazing matches all of the world and has many accolades as well."
Rating: 10.0
Sentiment: 0.5761904761904761
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ZINAN10wrote on 18.07.2024:"One of the most talented wrestlers of all time if not the most popular in every company he went to a real legend 10/10"
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Joe907wrote on 18.07.2024:[10.0] "He is one of the greatest wrestlers of all time. He's been on top of every major company he worked for. Great at high flying and good technical game in the ring. He's Been putting on bangers since the early 2000's, and still competing at the highest level. Phenomenal."
Rating: 10.0
Sentiment: 0.34225000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cletxawrote on 15.07.2024:[10.0] "TNA, NJPW, ROH and WWE... It's a great career. He's a perfect wrestler. I only give 10 points to Icons. AJ Styles, one of the greats of professional wrestling."
Rating: 10.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Mauiwrote on 07.07.2024:[10.0] "My favourite wrestler, in-ring wise and as a person. He sparked my interest again, when I first watched a TNA show in 2009. I can rely to him very easily by being not gifted with the most impressive height and/or physique, growing up poor and always being misused by your surroundings. But still AJ managed to do something out of his life and career and is truthfully regarded as one if not the best in-ring performer of all time. He was and is always a team-player and improved alot as a character and on the mic thanks to his time in WWE which eventually will probably tie his time in TNA. Surely the real awakening happened in Japan in NJPW where he not even took the torch to lead Bullet Club into their most glorius days, but he probably is the reason, why BC still exists today. He and his pals made it cool. I don't care if he's not the best talker, because since I really transitioned from a casual entertainment fan to a real wrestling sports fan due to watching alot of Puroresu, I cannot pick another guy. He is the full package, like Tanahashi, like KENTA used to be, like Kenta Kobashi and his glorious generation."
Rating: 10.0
Sentiment: 0.33691666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: igskillfartwrote on 07.07.2024:[10.0] "One of the greatest wrestlers of this generation, from TNA to NJPW, hes done it all around the world and accomplished almost everything you could in professional wrestling. hes one of my top 10 wrestlers to have ever exist in this universe, undoubtly one of the greatest to have put on a pair of wrestling boots."
Rating: 10.0
Sentiment: 0.5599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Johanwrote on 30.06.2024:[10.0] "Amazing wrestler, one of the greatest of all time and has been an elite performer for 20+ years now, easily capable of still putting WWE MOTY contenders and I can't wait for his match with Marufuji!"
Rating: 10.0
Sentiment: 0.6166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: darkflame4527wrote on 30.06.2024:[10.0] "Washed? This man is 47 in the best shape of his life and put on 2 MOTY contenders in 2 months. Now he's wrestling in Japan as well again? This guy seems to just be getting better somehow. One of the most legendary careers as a 5-Star technician and a 5-Star talker. This guy is almost unmatchable."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Stanley Elite 55wrote on 26.06.2024:"What more can I say after all that has been said about him? My favorite wrestler of all time. AJ has impeccable in ring style, one of the most underrated mic skills and with a great ease when it comes to being face or heel. One of the best of all time."
Rating: No rating found
Sentiment: 0.6749999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GuidoRissowrote on 20.06.2024:"Extraordinary wrestler, when he was in TNA he was already showing his potential. Unfortunately, TNA didn't see much of him until his first World Championship reign. He had an interesting run in ROH as PURE Champion around 2004 before the Feinstein incident. Great bouts in IWGP and ROH, outshining even names like Hiroshi Tanahashi, Kazuchika Okada and Shinshuke Nakamura. Not only making an impact in Japan, he also wrestled in AAA with good matches such as against El Mesias. The last few years in WWE from 2018 to today, didn't fascinate at all like before, however his 2016-2017 run were great."
Rating: No rating found
Sentiment: 0.22125850340136052
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: twinkertonwrote on 17.06.2024:[10.0] "One of the best professional wrestlers in the history of the art, there's not much that can be said about AJ that hasn't already been said. His athleticism, storytelling, charisma, and understanding of what makes a good match are second to none. He was the cornerstone of TNA, had an outstanding run on top of NJPW, and he's now had a great WWE career as well. He's only gotten better as his career has gone on as well."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rewritewrote on 16.06.2024:[10.0] "One of the Best Wrestlers in history and one of my favorites, in TNA he was solid with many fights such as Aj Styles vs Samoa Joe in 2005 and his great time in NJPW with excellent matches even in AAA. In WWE he arrived as a mega star, although Currently he is a little lost, he is still one of the best and still has a lot of quality in the ring"
Rating: 10.0
Sentiment: 0.5140625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MingROHGuywrote on 16.06.2024:[8.0] "Fantastischer Wrestler, doch in letzter Wrestler etwas eingerostet in meinen Augen. In seiner Prime bei NJPW eine klare 11/10!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Taper1994wrote on 01.06.2024:[10.0] "After a pretty solid run in TNA, AJ Styles became a 10/10 wrestler for me when he went to NJPW in 2014. There he was able to mix it up the best wrestlers in the world like Kazuchika Okada, Hiroshi Tanahashi & Shinuske Nakamura. And not only was AJ able to keep up with them but he was able to outshine them as well. Then he moved onto to WWE in 2016 where he mained that level for about 1 year. Around 2017, AJ Styles started to slow down, his last truly great match in my book being against John Cena at the 2017 Royal Rumble. Still 3 years of being the best in the world combined with a great career otherwise is good enough for full marks from me."
Rating: 10.0
Sentiment: 0.3715277777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ultravioletshiroiwrote on 14.05.2024:[10.0] "His stuff in TNA during the mid 2000s is some of the most impressive wrestling I've ever seen, especially his matches with Samoa Joe, Christopher Daniels etc. His athleticism and psychology is off the charts, and he's got some good chops in the power, striking and submission departments as well. He also has tremendous charisma and had one of my favorite entrances of all time."
Rating: 10.0
Sentiment: 0.4416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Willie 19200wrote on 10.05.2024:[9.0] "AJ Styles has been going at it for 25 years and has proven to still be considered one of the greatest. His TNA and NJPW is some of the best stuff I've gotten the privilege to watch. His WWE stuff was pretty good from 2016-2019, and even early 2020 was good when he got his first Wrestlemania main event against Undertaker at WM 36. It wasn't until 2021 where the Omos stuff happened, 2022 he didn't do like anything, and 2023 he was apart of the World Heavyweight Title Tournament as the runner up had a great feud with LA Knight and now put on another 5 star classic with Cody Rhodes, easily one of the best in the Business."
Rating: 9.0
Sentiment: 0.5472222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rassle Fanwrote on 09.05.2024:[10.0] "A pioneer of the modern style of wrestling that includes high flying and technical. He's the blueprint for what wrestlers like Will Ospreay would become. He was the flag bearer for TNA for 11 years and excelled there. My favorite period of AJ's career is definitely his NJPW and ROH run in 2014-15. That's when he was really solidified as one of the greats. Credit to New Japan too for having him win the IWGP title in his first match. His personality in the Bullet Club was very different from what he did before. It was a complete reinvention."
Rating: 10.0
Sentiment: 0.21330578512396692
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Aimbot2023wrote on 28.04.2024:[10.0] "AJ Styles, this name represents everything. He is an absolute superstar in every company. He is a legend. He represents excellence. He has become one of the symbols of wrestling."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CoRdelwrote on 25.04.2024:[10.0] "Do not be afraid to say that AJ Styles is one of the greatest wrestler that ever existed on planet Earth. He is absolutely perfect in every category, his charisma and aura is really something else, especially with a title around his waist. Travelled the globe, respected by everyone everywhere. Btw I really enjoy Ospreay using Styles Clash as a tribute to him. True legend."
Rating: 10.0
Sentiment: 0.33571428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jcheng777wrote on 25.04.2024:[10.0] "In my opinion a top 10 wrestler of all time. Possesses a varied and entertaining in ring repertoire and definitely one of the best high flyers in the business. Has gotten over everywhere hes been. Easily a top 10 in ring worker too."
Rating: 10.0
Sentiment: 0.44333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: StringsRollinswrote on 22.04.2024:[10.0] "My favorite wrestler working. He's in the twilight of his career and not capable of what he used to in-ring but he's still very reliable to have a good midcard match with pretty much anyone. His prior body of work is absolutely, well, phenomenal. The three way match with Christopher Daniels and Samoa Joe at TNA Unbreakable 2005 is still one of my very favorite matches ever. Just an awesome wrestler even if he's winding down."
Rating: 10.0
Sentiment: 0.32870370370370366
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: lukatesa21wrote on 21.04.2024:[10.0] "Artist in the ring, really hope that he will have a final WWE title run before he retires but he needs to change his theme back to the Phenomenal one"
Rating: 10.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MarkMcMarkingtonwrote on 20.04.2024:"One of the best in ring workers of all time. Also incredibly safe and never seems to get injured, which is very impressive for a guy that wrestles like he does. His promos and character work for a large chunk of his career were mediocre at best but he more than made up for it. The AJ in WWE doesnt quite have the bangers that he had in TNA, but he evolved as a complete sports entertainer and managed to become WWE champion in his first year, having great matches with Cena, Reigns, and Ambrose. AJ Styles makes my top 10 of all time for sure. Simply PHENOMENAL."
Rating: No rating found
Sentiment: 0.4895604395604396
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TripleCrownwrote on 05.04.2024:[10.0] "Best American wrestler of his generation. Whilst he wasn't ever on the superstar level of a John Cena or Batista, he was far better than they could ever be in-ring. He grew from being an excellent in-ring performer into an absolute star during the end of his TNA run and beginning of NJPW run, became even bigger once he joined WWE. He could wrestle 99.99% of the wrestlers and have a perfect match, he's just that damn good. Still going strong even at the age of 46, will be a sad day when he retires."
Rating: 10.0
Sentiment: 0.40303030303030307
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BruceMarcos524wrote on 24.03.2024:[10.0] "I couldn't think of any other guy that whatever promotion that he's in, he attained the medium to high level of success whether it is ROH, TNA, NJPW and WWE. Simply phenomenal for a reason. AJ Styles truly is once in a generation talent that make his contemporaries like John Cena, Randy Orton and Batista jealous in terms of in-ring quality. His skills showed that he always be a human highlight reel. Many of its peers and fans sees AJ Styles as the "indie Shawn Michaels" but I disagree. AJ has this unique aura that is enough to establish himself as an all-time great without comparing to other greats before him. His TNA run is obviously the most definite time of his career as it establishes AJ Styles as a main attraction star. Upon shifting to NJPW, AJ Styles quickly adapts to the Strong Style environment, honed his craft, fought the likes of Minoru Suzuki, Hiroshi Tanahashi and Kazuchika Okada and produced MOTY-like matches. His time in WWE solidified himself as one of the all-time greats and also had great matches, but with better exposure due to the wider reach of the product. Surely wherever AJ goes, he is truly an asset to the company. Although one of his struggles is his promo abilities, this however outshined by his wrestling abilities and his skill alone was truly enough to call himself the best pound for pound wrestler in history."
Rating: 10.0
Sentiment: 0.28231884057971013
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: thedman0310wrote on 12.03.2024:[10.0] "There's really nothing I can say that hasn't already been said, AJ Styles is just that good. He has wrestled the same high-impact aerial style for over twenty years now, and he hasn't lost a damn step. Without AJ, TNA would not be the same. Hell, TNA probably wouldn't be in business today without AJ's work in the Aughts."
Rating: 10.0
Sentiment: 0.22499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Zak22wrote on 08.03.2024:[10.0] "He might be the greatest of all time. AJ Styles has a massive catalogue of 5 star classic matches across TNA, ROH, NJPW and WWE, his output is almost unmatched over the last 25 years. AJ Styles is one of the most exciting wrestlers of all time, his fast, high flying style is so damn captivating but don't be fooled, AJ can grapple with the best of them as well. AJ Styles legacy as Mr TNA is underrated, at a time when wrestling needed a hero outside of WWE, AJ was one of the few who stood up to the challenge. Styles has also adapted his style over time to fit his ability with age and to fit the environment (for example he is very different in WWE compared to NJPW), and that is something to be apricated. On the mic, AJ is good but not really an all timer but who cares, once the bell goes, it'll be a clinic."
Rating: 10.0
Sentiment: 0.295686274509804
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: mxkamiwrote on 01.03.2024:[9.0] "One of the most influential wrestlers of all time when it comes to in-ring. Suck it, it's true. His early run is insane to watch. 2005 TNA is full of insanity involving AJ Styles and he was MONEY any time you put him in a match with stakes. Bumped like a freak, extremely athletic, over as hell, and a legendary look that had teenage boys wearing hoodies to look like him. But, Christ on a f****** bike, this man... cannot talk. I legitimately burst out laughing hysterically anytime he turns on a mic and starts a promo. No, it's not his accent, as I myself am a Texan. His delivery is just absolutely hilarious to me. Personal favorites for me are "Dixie Carter's daddy, bought her uh wrastlin' compenny! " and where he just snaps at Stone Cold by saying "Why don't you shut up, Steve? " Like... My god. I am laughing while typing this now, actually. He's a generational in-ring talent, but I do take a point due to just how bad he is on the stick."
Rating: 9.0
Sentiment: -0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: 2pt0EcoBoostFusionwrote on 23.02.2024:[9.0] "AJ Styles one of my favorite wrestlers of all time, and he was one of the reasons I got back into watching Pro Wrestling in the late 2010s. I got to see him wrestle in a dark match during a 2018 Tampa Smackdown taping, and it was a really great match. His move-set is (no pun intended) PHENOMENAL! his Microphone skills are (no pun intended) PHENOMENAL! Just about everything about him is (you get it, no pun intended) PHENOMENAL! His booking in WWE has been a little iffy at times but he is still entertaining despite being in his 40s at this time in his career."
Rating: 9.0
Sentiment: 0.30375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Chosen1EJB05wrote on 11.01.2024:"10.0 He's one of the greatest, if not the greatest professional wrestler of all time. He thrived in every single wrestling company he's been apart of. He's obviously getting older and running out of time, but his legacy on the sport will never be forgotten,"
Rating: No rating found
Sentiment: 0.36587301587301585
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: dulonicdaddywrote on 02.01.2024:[6.0] "Seriously, dude has been involved in some TERRIBLE television. I don't care if he has been a very good worker in a bunch of different companies, he has always thrived during some of the worst times in the history of each. Character-wise Styles has also lacked a boldness in aura that his greatest opponents (Joe, Angle, etc.) had a seemingly endless abundance of."
Rating: 6.0
Sentiment: -0.07833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KKeanelwrote on 17.12.2023:[10.0] "Maybe it is a hot take, but my view on him is justified - AJ Styles is the greatest professional wrestler of all time. Definition of success - remarkable title reigns in many different wrestling promotions around the world, catchy gimmicks, talented to cut a promo, fantastic in-ring performer. Complete guy. Living legend."
Rating: 10.0
Sentiment: 0.4090909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: theelevatedonewrote on 02.12.2023:[10.0] "AJ Styles will always be one of my favourite wrestlers of all time. I started watching WWE in 2011 and really started watching other promotions in 2013 when I started watching WCW and 2000s TNA, where of course AJ was one of the standout performers, perhaps the greatest TNA star of all time (Kurt Angle and Josh Alexander give him a run for his money though). His ringwork and confidence enamoured him to me immediately, with all the bangers he had in both the Heavyweight and X Divisions. However, it was his NJPW run between 2014-2016 that truly made me fall in love. I started watching New Japan around the time he first won the IWGP Heavyweight title and during that period I thought he was the coolest person on earth (with the hoodie-leather jacket combo and the short hair) and that Bullet Club was THE greatest stable of all time, they were just perfect at appealing to my 13 year old self. His matches against Okada, Ibushi, Tanahashi and Nakamura are all must watch classics. He also had a nice little run in RevPro (my favourite indie promotion) where I got to see him beat Marty Scrull for the British Heavyweight Title in person at Summer Sizzler 2015 (still one my favourite shows I saw in person, and it was on the day before my birthday! ). Had a few great title defences there before dropping it ZSJ (which I was at in person again, big up the York Hall), which turned out to be his final non-WWE match as he would debut in the Royal Rumble just 8 days later. To say I lost my shit would be an understatement (even if Kevin Dunne fucked it up). While I was scared he would be used poorly in WWE, he turned out to have a nice little run, winning the WWE championship twice and having decent reigns with them, having perhaps John Cena's best ever feud (from an in-ring perspective) and generally being a credible presence. Do I wish he would cut his stupid hair and be booked as a big deal again? Yes, but we've got so much amazing work to look back on that I'm contempt with his current position in WWE. Thank you for the memories AJ, you will forever be awesome. Also he's never had a bad theme song. They're all bangers."
Rating: 10.0
Sentiment: 0.1892710892710892
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kellbobwrote on 30.11.2023:[10.0] "Bless him, he's arguably one the best of all time and needed so much more recognition in TNA. He should've held the belt for 400 days plus but hey ho, we know how it is. Can't argue cause Angle was one of the faces and he's truly Goated but I'm glad he got a good run in WWE despite dropping the big en to the shizen Eminem Cena boi."
Rating: 10.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Bar786788wrote on 29.11.2023:[9.0] "I really want to give AJ Styles a 10 because of how great he was from 2004-2010. But I have to admit that his WWE run has been disappointing to me and that Ive never found him to be very convincing on the mic. While a incredible athlete who has given a lot to the business, I do think that his flimsy character work and lack of clear personality has to dock him a point- could overlook it if his WWE booking was solid enough to hide those flaws but its been rather mediocre somewhat unsurprisingly."
Rating: 9.0
Sentiment: 0.17222222222222225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] "For over a decade, AJ Styles was a consistent top 5 performer in the professional wrestling landscape, earning his "Phenomenal One" nickname. Here you have a guy who could have a great match with, literally, anyone you put him in the ring with no matter what shape and size they came in, he'll make anyone look good. First exposure was in the dying days of WCW, which some have forgotten that he started in Atlanta under the Air Styles name (LOL! ). Then WCW died and got bought out by WWF in 2001, AJ Styles even competed in WWF briefly, which is so funny to think about. AJ Styles would mostly spend his early career in competing in other promotions back to back, whether it was Ring of Honor, TNA or IWA Mid-South, he was practically in a good spot getting booked everywhere showcasing his talents. Mostly sticking with ROH and TNA where he was having amazing matches with the likes of American Dragon, Jerry Lynn, Low-Ki, D-Lo Brown, Sean Waltman, Christopher Daniels, Samoa Joe, Abyss, CM Punk, the list goes on and on and on. While still doing Indy bookings and even doing trips to Japan, he was mostly a TNA guy during the 2000s often being their best wrestler that didn't come from "The Fed" as the cool kids call it these days. He ended up leaving TNA due to money problems, and went to work for New Japan Pro Wrestling, Ring of Honor and what have you, his run in NJPW truly elevated his legacy to legend status, being one of the best gaijin wrestlers having clinics with the likes of Kazuchika Okada, Hiroshi Tanahashi, Minoru Suzuki, Shinsuke Nakamura, Tetsuya Naito, etc. one of the all time best runs in any wrestlers career. Then he returns to the WWE in the 2016 Royal Rumble match, receiving one of the loudest pops in WWE's history, a moment no one ever thought would happen. His first year in WWE is among his best work he's ever had, being a great WWE Champion, running SmackDown during a great era for the brand, amazing feud with John Cena, etc. (just forget James Ellsworth). While I feel his run after 2016 in WWE is disappointing, he's still able to give us great matches every once in awhile whenever given the task to tear the house down. Overall, AJ Styles is one of the best high flyers of all time, one of the best movesets ever, even has showcased he can be a good promo when he's given the right material, a true veteran in this profession."
Rating: 10.0
Sentiment: 0.41805865968656675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: theeternalsovereignwrote on 25.10.2023:[8.0] "Easily one of the most gifted on the modern roster and possibly of the all time roster. From his high energy but very diverse wrestling to his ability to cut excellent promos and flourish in every card level AJ is probably top 5 of the last 2 decades for WWE wrestlers. The only reason he doesnt get a perfect 10 rating is because I feel he moves can become a little routine and I feel like if his gimmick was switched from his country badass character that he may not do it as well but hes been able to be heel and face to perfection so who knows."
Rating: 8.0
Sentiment: 0.34327380952380954
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: compomwrote on 11.10.2023:"AJ Styles is great. He's in his mid 40s and is still a better wrestler than much of the WWE locker room. While I sadly didn't get to see AJ in his prime, he still is one of the best, even during his twilight of his career. While his mic work work isn't great, everything else about him is, well, phenomenal."
Rating: No rating found
Sentiment: 0.4125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: juiceisloosewrote on 08.10.2023:[10.0] "My, oh my... Straightforward: He's a 10. Doesn't have the best mic skills but idgaf. While he doesn't have the charisma of a Rock or an Austin, he has a special something about him that makes him charismatic in his own way. In the ring there have been very few people in the history of wrestling who can come close to him. I feel emotions I can't fathom during this man's matches. He is doing art in the ring and somehow I fall under his spell everytime. He is the only person that can be a 10 considering only his in ring work withouth including his mic skills or character work. Truly one of a kind."
Rating: 10.0
Sentiment: 0.35246031746031753
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Teebawrote on 21.09.2023:[10.0] "Truly one of the GOATS of professional wrestling. AJ in the 00s was THE MAN and incredibly influential on today's product. No-one had the flair in their moves like Styles did and as he's gotten older he's still kicking ass, I can't do a springboard 450 now let alone when I'm nearing my 50s. He's called phenomenal for a reason."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ViolenceBretwrote on 07.08.2023:[10.0] "Imagine everything that made HBK fantastic, but without any of the ego or backstage politics. Why yes, an argument could be made that AJ Styles is the greatest wrestler of all time. His work in Japan was great, he's already conquered WWE having won the top prize, and TNA/Impact was built upon this man's shoulders. Despite not being a literal giant in height, Styles more than makes up for this in athleticism. Even your Grandma will stop in amazement as this guy hits the Styles Clash, one of the craziest moves ever performed. True his promos are a bit simple, but AJ can get his points across without much flowery language. "Beat up John Cena" was so simple, yet it worked remarkably well as a fun dumb chant. Bringing things back to TNA, Styles was truly the breakout star. Moreover, he is one of the few foreigners to really fit in with New Japan's style which is remarkable in itself. What hasn't big dimes AJ done in professional wrestling? He's one of the greatest of all time and a total ace wherever he goes."
Rating: 10.0
Sentiment: 0.3005165289256198
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Gold Fistswrote on 25.07.2023:[10.0] "AJ Styles and Gunther are without a doubt tied for the two best wrestlers in WWE at the moment. Styles was a great performer with a great moveset long before stepping foot in WWE, but he reached his best point when he became the face of SmackDown Live in 2016-17. Not to mention, he is essentially responsible for saving James Ellsworth from being paralyzed or even death. It's very hard for Styles to have a bad match."
Rating: 10.0
Sentiment: 0.31191077441077447
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: bigredtalk89wrote on 24.07.2023:[9.0] "Only thing preventing him from being a 10 is Triple H seems to think he's a lesser star than Vince did. Still an elite guy everywhere he's been, and still at his age can put on classics, he's kind of stuck in a gatekeeper role currently. Which is a shame, as he's a bona fide main eventer."
Rating: 9.0
Sentiment: 0.15333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Loghan Morescowrote on 13.07.2023:[10.0] "Aj styles is in his own merits an phenomenal athlete won dozens upon dozens of titles and world titles in his career and amazing human outside the ring, his in ring work is just perfect alongside his facials and can really fit in any prormotion, an one in a hundred kind of guy that even at his current age still moves smoothly and looks younger that he is."
Rating: 10.0
Sentiment: 0.3727272727272728
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KTG1515wrote on 03.07.2023:[10.0] "It was AJ Styles who got me hooked on wrestling. I was long aware of WWE, and while some of the in-ring work in the company was good at the time, most of it was not what I was looking for. I discovered NJPW through AJ Styles when I first became aware of his work with the bullet club. The Bullet Club was what I had been looking for in wrestling, and AJ was the defacto leader, and the best wrestler in the group. He's conquered every mountain in wrestling since then, had good runs in TNA, WWE, and Japan, but nothing comes close the AJ's time in the Bullet Club."
Rating: 10.0
Sentiment: 0.44999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Neon Aussiewrote on 02.07.2023:[10.0] "AJ Styles is a man who has conquered every mountain. The phenomenal one has been a show stealer since his first years in the business. It is an absolute crime he hasnt been awarded more 5 star matches by Meltzer."
Rating: 10.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "Probably in the top 3 American wrestlers of the last 20 years or so. A guy you could easily build the promotion around."
Rating: 8.0
Sentiment: 0.23333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: nothingleftinsidewrote on 31.05.2023:[8.0] "Among the greatest of all time, but not in any top 10 or 20 discussions. His legacy is that he was the vanguard of a company for so many years, and either defined or at least personified the growth of American wrestling styles in his era, which would have been 2000s and 2010s. Not a great talker but decent enough for it to not really matter. Has at least one great match with anyone who mattered in that time period, including a bunch of guys in Japan and ROH. I think he was the best in ring-performer of his era, at least among US wrestlers, not only because of his innovation and style, but because of his longevity- he delivered consistently good, impressive stuff for a long time *in TNA* for god's sake. As much as we rag on Impact, it got guys like this on mainstream American TV every week. If he had been stuck in ROH and indies no one would know who he was. First ballot hall of fame for sure, with a huge back catalog of matches worth rewatching. He's probably got a couple years left in him but will probably turn to a different role soon. He would probably do well in NXT either on screen or off. I hate his finisher though. A+ in ring, C look, C+ talker."
Rating: 8.0
Sentiment: 0.18765432098765433
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CoachWwrote on 17.05.2023:[10.0] "One of my all-time favorites. My first introduction to him was back in TNA's X Division when he was mixing it up with Christopher Daniels and Samoa Joe. He was really good then but has solidified himself as an all-time great in the time since. The end of his career is likely closer than I want it to be, but I'm hoping we can get one last run from the Phenomenal one."
Rating: 10.0
Sentiment: 0.32142857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Storyline Guywrote on 30.04.2023:[10.0] "One of the greatest to ever do it. His in ring skills are insane and he possesses great charisma that makes him look like a star no matter the company he is in, the guy he is feuding with, the match he is competing in or the title he is fighting for. One of the very few wrestlers who found success in every big promotion in the world and won every big championship there is to win. AJ Styles achieved legendary status in TNA, ROH, NJPW, WWE...truly a phenomenal career"
Rating: 10.0
Sentiment: 0.314
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: crs285wrote on 04.04.2023:[8.0] "AJ Styles is an amazing talent who carried TNA during his time there. He got put in horrible storylines but even when that happened he still managed to put on good matches even if you did not care because of the bad story. Was great in NJPW and early in his WWE run might have been his peak. In WWE he was a top star for a while but his star power has seemed to go down as he aged. Still great on the mic and can fill an upper mid card role."
Rating: 8.0
Sentiment: 0.12870370370370374
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: greaterdalewrote on 03.03.2023:[10.0] "One of the best of his era! and let's be honest his era has been a long ass time! He's wrestled in WCW, TNA, NJPW and WWE and had absolute bangers in most of them (Maybe in WCW too? I'm not too familiar with his work there) The Styles clash is an awesome finisher and I like the phenomenal forearm too. It sucks that he might be a flat earther, I really hope that isn't the case(he says he isn't but that he sees some "interesting theories in it" oof) I guess it's proof that being one of the best wrestlers in the world doesn't necessarily mean your the smartest, but man can that dude wrestle."
Rating: 10.0
Sentiment: 0.3696428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Deadmagician33wrote on 28.02.2023:[10.0] "Greatest Professional wrestler of all time. Great in every aspect and can put on a classic match with anyone."
Rating: 10.0
Sentiment: 0.5166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: kewf1988wrote on 26.02.2023:[9.0] "AJ Styles is a really good wrestler, and an example of changing his style as he got older. In TNA, he was an amazing high flyer and the cornerstone of the X Division, and in his later career he's changed his style to be more technical, while keeping all his signature moves. Also improved his mic skills significantly during the Russo TNA era, as he was given the mic often despite not being great on the mic when he was younger."
Rating: 9.0
Sentiment: 0.33016666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DecentLingonberrywrote on 23.02.2023:"Greatest of his generation, I've followed him from ROH to TNA (Impact) to NJPW to WWE and he hasn't lost a step into his mid-40s. Plug and play can fit in anywhere face/heel, goofy/serious."
Rating: No rating found
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LGL19wrote on 14.02.2023:[10.0] "One of the greatest to ever do it no doubt about it. He's in some of the best matches I've ever seen"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: benh2wrote on 12.01.2023:[9.0] "Through the entire period he's been wrestling, not many others could hold a candle to AJ Styles. He was the backbone of TNA for years and was involved in some of the best matches of that generation. His NJPW was short but brilliant, the last great leader of BULLET CLUB. Finally made it to WWE 15 years after turning down a developmental deal. Immediately hit the ground running and although he's starting to slow down the last few years, he will still turn it on when he needs to."
Rating: 9.0
Sentiment: 0.11706349206349208
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JBoogieRom28wrote on 25.12.2022:[10.0] "AJ Styles is my favorite wrestler of all time. He put on some of the best matches I have ever seen, is a phenomenal character Worker (get it? ), can really make you cheer for him even as a heel, and is just amazing. Possibly the only wrestler in history to say that it is possible for them to be in 3 separate promotions as A Hall of Famer(WWE, TNA, and NJPW). He really redefined the high-flyer role and made it really special. He can make a good feud/match out of anyone because he is just that good."
Rating: 10.0
Sentiment: 0.3964285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: fgpfriendswrote on 23.12.2022:[10.0] "AJ Styles is a total beast when it comes to the wrestling, he's just killing it, potentialy one of the best ever wrestlers of all time, his career is brilliant, and this year I really got to think like this, so I'm giving well deserved 10"
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: fruggmanwrote on 19.12.2022:[9.0] "AJ Styles is every promoter's dream. A veteran who can carry anybody to a good match, who can work any style and add credibility to any card. He carried TNA for years, became a worldwide star with his work in New Japan before cementing his legacy as a 2-time world champion in WWE. Styles is the ultimate main event gatekeeper at the current stage of his career, and seems to have a few years left in him."
Rating: 9.0
Sentiment: 0.10037878787878787
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MainEventMasterwrote on 02.12.2022:[10.0] "One of the greatest of all time, his matches in New Japan were especially great, but even outside of there, he always has fit the definition of a pro wrestler."
Rating: 10.0
Sentiment: 0.5072727272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Enriquepollazzowrote on 28.11.2022:[9.0] "Great wrestler who has had so many matches it just depends on which ones you've seen as far as where you rate him 8, 9, or 10. Ive seen moreof the average part of his career than most. Due to TNA and a bad royal rumble 19 match I thought would be awesome vs bryan. I bet he was consistently best in Japan."
Rating: 9.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ROCKETMANwrote on 18.11.2022:[10.0] "Aj Styles is one of the best matchs and entertainers in this business today i only can imagine him on WWE."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: eltetechoriwrote on 12.11.2022:[10.0] "I love AJ Styles, he's probably one of the best wrestlers WWE currently has. He's very agile, he's mic'd up and could be put to good use for his later years of his career doing storylines that also don't require much more than putting him to wrestle new people or worthwhile talent."
Rating: 10.0
Sentiment: 0.4429292929292929
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: li0nsaultwrote on 07.11.2022:[9.0] "Man... I agree that Styles is one of the best to ever do it. He had it all. But I think he has failed to reinvent himself, and I say it because now I feel he has become stale with the "Phenomenal" gimmick. Maybe it's WWE's bad booking fault, but I can't say I'm enjoying his current run with his OC friends."
Rating: 9.0
Sentiment: 0.04285714285714288
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SiriusBlackwrote on 30.10.2022:[10.0] "AJ styles is the phenomenal wrestler in the past year he has been booked to lose more often than not, however his in ring ability and talent is amazing, and I enjoy all his matches."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jmira17wrote on 27.10.2022:[10.0] "THE GOAT. He's truly the best ever, he's the most complete performer in the ring and he shows that in every companies and countries. He's so good on the mic and his character is great, face or heel it doesn't matter..... I enjoy every match, every promo that he does because I don't know when he decides to retire, I hope it will be for a long time."
Rating: 10.0
Sentiment: 0.4928571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ANGELINHO18wrote on 19.10.2022:[10.0] "He is going to go down as one of the greatest to ever do it. He overcame all odds and became truly great in everything he does, lets just hope he can give us a couple more years of The Phenomenal One."
Rating: 10.0
Sentiment: 0.5288888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: danzgalliwagwrote on 02.10.2022:[7.0] "I can take or leave AJ Styles at this point. His best work was probably in New Japan, and of course he was incredible inTNA, but those years are far behind him. Back then was an era when a guy with his in-ring abilities was hard to find. He had something special. But these days he's merely one guy among hundreds with his kind of workrate. Since joining the Fed, every year he's felt less important. I'm disapppinted to say that I don't remember much from his year-long world title run, except how bad Nakamura got fucked over, and that's not his fault, but I don't even remember many matches. Maybe he's on the verge of a comeback, but after teaming with Omos I just can't take him seriously."
Rating: 7.0
Sentiment: 0.07069646040234277
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: xnviuswrote on 28.09.2022:[10.0] "no matter where he goes, he's a star. TNA, ROH, NJPW, WWE. undeniably one of the goats when its all said and done."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BAILE3wrote on 28.09.2022:[10.0] "One of the best in ring performers of all time. Killed it everywhere he went. TNA, WWE, NJPW, etc. the guy is undeniably gonna be considered one of the goats when he career is said and done."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "No matter the role you give him, he shines brightly. He can do practically anything in the ring and out, outside of being a monster powerhouse. Over the years he has gotten more charismatic and now has a commanding presence each time he steps foot in an arena. An all-time legend."
Rating: 10.0
Sentiment: 0.42500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GwenCube64wrote on 06.09.2022:[10.0] "A fantastic in ring talent for his entire career, a must watch wrestler on any card who deserves even more than he already gets. even if his promos can be a bit off at times, his wrestling and attires still keep him in the goat conversation."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Matthew23clawwrote on 31.08.2022:[10.0] "This guy as a wrestler rules so fucking much man. As someone who started watching in the 2010s it's hard not to say he's my favorite wrestler of all time. He was the guy I grew towards going from a kid to a teenager after getting sick of John Cena. Never been bored watching one of his matches. Everywhere he went he ran that shit. Really loved the evolution of his character as well AJ is such a good in ring worker he's become quite underrated character wise over time from The heart of high flying indie wrestling, to hell even Fortune four and Ric flair, to the leader of bullet club in Japan, to the face that runs the place he's always been able to reinvent himself while maintaining the best in ring wrestling skills in the world."
Rating: 10.0
Sentiment: 0.19671768707482992
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KGPlaywrote on 28.08.2022:[10.0] "AJ Styles is just phenomenal. One of the best wrestler in the world. I really enjoyed his run as WWE Champion in 2016 and his feud with Dean Ambrose."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ElJasonwrote on 24.08.2022:[10.0] "The Phenomenal one, so nennt man ihn gerne und dessen wird er auch seit 20 Jahren gerecht. Auch mit über 40 liefert AJ Styles noch 5 Sterne Matches ab und ich hoffe, dass er das noch lange so hinbekommt. Es ist immer eine Freude dem Kerl zuzusehen"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Tyler72wrote on 12.08.2022:[8.0] "AJ Styles is a surprisingly effective high flying professional wrestler. A favourite of mine since I've seen him on IMPACT! when it was Total Nonstop Action Wrestling in 2009 and 2010. Against the right wrestler, he has tremendous chain wrestling skills and an impressive move set that compliments his wrestling character."
Rating: 8.0
Sentiment: 0.32550595238095237
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: face painted legendwrote on 11.08.2022:[10.0] "A guy you build a company around. I know that sounds cliche since one of his taglines is "this is the house AJ Styles built", but it is the absolute truth. A.J. always wears his heart on his sleeve. He's a locker room leader. He's a guy who what you see is what you get. He never pretends to be someone that he's not. He never has a bad match...like ever. He's a guy whose versatile enough that you can put him with pretty much anyone on any roster and they come out looking better than they did when they walked in because they shared the ring with him. One of the best in ring performers of all time. Great promo work especially when he's involved in stories that he's emotionally invested in. Great fire as a babyface. Can sell his ass off. I can go on and on, but the guy is a once in a generation talent. PHENOMENAL!"
Rating: 10.0
Sentiment: 0.30624999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KELLANwrote on 05.08.2022:[10.0] "AJ Styles ist einer der besten Wrestler der Welt (und auch bestimmt Aller-Zeiten). Schade, dass ihm das Trash-Booking seitens WWE nicht gut tut und trotzdem in der Mid-Card rumschwimmt. Dieser Mann ist Main-Eventer, kein Midcarder. Potenzial: 3x WWE Universal / World Champion - 600 Tage insgesamt - 6x WWE IC / US Champion - 500 Tage insgesamt - Main Event"
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Prince DY8wrote on 25.07.2022:[10.0] "AJ Styles is the greatest wrestler in this generetion and maybe greatest ever be. AJ is unique talent. Such a phenomenal wrestler"
Rating: 10.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: hoangminecraft6969wrote on 21.07.2022:[10.0] "The Phenomenal One, easily one of the best American wrestlers ever in terms of ring skills. It's insane that this guy has achieved everything in almost every big promotion: TNA, ROH, NJPW and even WWE, there's a very few wrestlers have such a huge and respectable legacy. Have countless legendary matches with big names like Samoa Joe, Christopher Daniels, Kurt Angle, Okada, Suzuki, Nakamura, Cena, Roman, Dean Ambrose, Seth Rollins, Lesnar, Bryan Danielson... but the extraordinary thing is he still can have a bunch of great matches with terrible performers such as Corbin or Mahal, and make super boring characters like Omos somehow become interesting as tag team partner. Truly the King Midas of Professional Wrestling."
Rating: 10.0
Sentiment: 0.12571428571428575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JoshuaWrestling63wrote on 14.07.2022:[10.0] "AJ styles ist einfach einer der besten Wrestler.. Er kann mit wirklich jedem ein gutes Match worken.. Das Match gegen nakamura bei njpw war eins der besten matches die ich je gesehen habe.."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CutterClubwrote on 24.06.2022:[10.0] "The best in the ring of all time. Can work any style even into his late forties. Quit reading this comment and go watch him wrestle in any decade he's been active."
Rating: 10.0
Sentiment: 0.18888888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: PhenomenalGunwrote on 15.06.2022:[10.0] "AJ Styles, half of the namesake of my username is my favorite pro wrestler and in my opinion, the greatest professional wrestler of all time. Let's rewind a bit. In the fledgling TNA they built an entire division around him in the X-division, later the top guy of the heavyweight division, even in the tag division for a while, until he became the face of TNA and earned the moniker of Mr. TNA for several years. All the time killing it on the independent circuit until he reached NJPW in what was, in my opinion, the best run of his career from 2014-2016 for both him and Bullet Club. Finally, after 18 phenomenal years wrestling around the world he reached WWE and had what was quite possibly the best debut year possible. He had an instant classic series with John Cena, led Smackdown during its best year in recent memory, became WWE champion, had a great and memorable feud with Dean Ambrose, and most importantly, solidified himself as a GOAT. Throughout the next few years he continued to impress, whether with the OC, as the top face holding the WWE Championship for over a year. AJ Styles has proven himself in every major promotion he's stepped foot into, from WWE to TNA to NJPW to even ROH. His incredible athleticism, simple and straightforward yet never gets old character, phenomenal look, amazing well-rounded moveset, and underrated mic skills make him the complete package. I've seen him bring a great match out of everyone, from someone of his caliber like Hiroshi Tanahashi to wrestlers with completely different styles like Minoru Suzuki. AJ Styles, is simply, the greatest professional wrestler of all time, and in a word, phenomenal!"
Rating: 10.0
Sentiment: 0.33156250000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CommisarRobewrote on 08.06.2022:[9.0] "One of the best, one of the very best in the business currently, throughout various promotions and eras Styles has proved himself to be a highly energetic, highly skilled performer in the ring, in 2022 he still is as exciting as ever."
Rating: 9.0
Sentiment: 0.4714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BigVan JimmyWangYangwrote on 08.06.2022:[10.0] "One of the greatest in ring talents of all time and has dramatically improved in his mic work as well throughout his career. Undeniably a top 5 wrestler of his generation and a man that has managed to work his way to the top of the card wherever he has been."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NeoSwas36wrote on 04.06.2022:[10.0] "Easily one of the greatest American wrestlers to walk this planet. I can name countless matches from his time in TNA, NJPW, and WWE that I've loved. A great wrestler who plays both a good face and heel and a solid figure on the microphone. A legend in the business that should be an example of professional wrestling done right."
Rating: 10.0
Sentiment: 0.401904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rahul77wrote on 21.05.2022:[10.0] "One of the best wrestler of all time and one the wrestler among my mount Rushmore with Kurt Angle, Eddie Guerrero and Shingo Takagi. Most the wrestlers will be naming him as their dream opponent is for a reason. World champion were ever he have gone. Nothing but he is just phenomenal."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Ryanmichael25wrote on 23.04.2022:[10.0] "Just like Daniel Bryan, not just a great wrestler. Very entertaining, great on the mic, charismatic. Great as a sports entertainer or pro wrestler. Overall he? s just amazing at everything he does. Him & Bryan are probably the 2 best all around talents maybe ever."
Rating: 10.0
Sentiment: 0.64375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: WrestlingFan892wrote on 01.04.2022:[10.0] "23 years of experience well spent, a very complete wrestler both in the indies and in WWE. He has mic-skills, a lot of variety of moves, charisma. He also combines wres5tling styles as well as a technician and a high-flyer at the same time, not to forget how well he does also when he fights as a tag team, a living legend."
Rating: 10.0
Sentiment: 0.01
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: EJB2005wrote on 28.02.2022:"[10.0] One of the greatest wrestlers of all time. AJ Styles is one of the two best wrestlers to ever perform in the WWE with Daniel Bryan . His run in NJPW and TNA was phenomenal."
Rating: No rating found
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: nWo-Joshi-Guywrote on 24.02.2022:[10.0] "Simply phenomenal! One of the greatest wrestlers of all time. Even at 44; AJ can do almost everything in the ring and has had one of, if not the, best move-sets in the history of the business. Charismatic too. As an 'outsider' even Vince McMahon values AJ Styles (to some extent at least); that shows just how good he is."
Rating: 10.0
Sentiment: 0.5875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: majorasmask12wrote on 18.02.2022:[10.0] "10 out of 10, 100 out of 100. It's unbelievable how he is still one of the best performers at 44. Not the best one with microphone but he's exceptionally charistmatic and definitely one of top 5 in-ring performers of all time."
Rating: 10.0
Sentiment: 0.4861111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GriffinXwrote on 12.02.2022:[8.0] "AJ put on so many classics in TNA and ROH at one point. Then went onto have a good run in New Japan. Still though he's at that point where he should wrap up as the slide down has been going on for a while"
Rating: 8.0
Sentiment: 0.29520202020202024
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Vliegpvwrote on 09.02.2022:"AJ Styles is one of the greatest of all time. His ring psychology and Precise technical, High flying skills are second to none. He can make any wrestler look good in the ring. He's a guy you can build a company around, and has had just that happen. Even in his older years he is still Phenomenal."
Rating: No rating found
Sentiment: 0.3658333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: scorpionking23wrote on 07.02.2022:"One of the greatest to ever do it. AJ Styles may no longer be getting pushed like the GOAT that he is, but the dude has been a winner everywhere he has gone. Easily one of the most impressive resumes out there."
Rating: No rating found
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Garmonboziawrote on 06.02.2022:[10.0] "My absolute favourite wrestler from 2013 to 2017. I still have a soft spot for him even though I haven't seen all of his WWE run. From what I have seen of his TNA run, I think he deserves the title "Mr. TNA"."
Rating: 10.0
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Shail32wrote on 05.02.2022:"10 , For me he is complete package. all promotions like Roh, Tna , iwgp , Rev pro , Wwe , i can say he belt taker where he go."
Rating: No rating found
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: vinnyv91wrote on 02.02.2022:[10.0] "Not many people can say they were NWA, TNA, NJPW, & PWG champions, while also appearing in AAA, WCW, ROH, and more. One of the all timers without a doubt"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: rishabhwrote on 31.01.2022:[10.0] "He joined the WWE at an age where a lot of wrestlers degrade in wrestling ability and can't work great matches but AJ Styles still proved himself as one of the best wrestlers in the world. It's usually hard for me to choose the best out of anything but I can say from all wrestling I have watched over the years, AJ Styles is THE best wrestler of the modern generation. He got such a loud pop in his debut, showing his popularity and I can't remember another guy who came from the indies and had never worked for the WWE to get such a huge pop. You can put him with anyone and it'll be a dream match and he will always deliver. He is 44 but still he isn't someone the other wrestler has to carry, he can still carry others to great matches. He is a great striker, great high flyer and then he also has submission moves in his arsenal. There is nothing he cannot do. One of the all time greats, he is truly phenomenal."
Rating: 10.0
Sentiment: 0.44645833333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Roodolphwrote on 16.01.2022:[10.0] "Despite his age, he's still the best in the world. he's my favorite wrestler, but it's objective that he's great at everything. He would make a good match even against a pencil."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Minorsmile09wrote on 29.12.2021:[10.0] "This generation's Shawn Michaels. Absolute jack of all trades who I've never seen a bad match from. My only, ONLY criticism of this guy is that his promos were a bit weak for a while, but I never really cared. He's had countless five star matches everywhere he's went, he's a generational talent."
Rating: 10.0
Sentiment: -0.13928571428571426
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: WrestlingFan1wrote on 28.12.2021:[10.0] "The best professional wrestler that I have ever seen, leader of his generation and a career full of prestige, multiple fights, rivalries and titles on more than 3 continents, dominated each company that stepped becoming an icon of the indie territory and triumph in the Mainstream in just 8 months, but WWE has been in charge of staining it by giving it mediocre years full of poor and meaningless stories and still the guy takes advantage to show off and be TRULY PHENOMENAL."
Rating: 10.0
Sentiment: 0.1541666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JonahBlackwrote on 22.12.2021:[10.0] "We're on the cusp of 2022. AJ Styles is making noises about this being his last run and hanging up his boots. And yet, he's still so far above most of his contemporaries that he's on most people's list of the Best Wrestlers currently working. Truly Phenomenal."
Rating: 10.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Muggowrote on 22.12.2021:[10.0] "Whilst AJ hasn't done much of note in the past few years, It makes no Impact on his rating. AJ managed to be the guy in TNA, due to his outstanding ring skill, Then he went to NJPW and won the IWGP Title in his first match. Then he went to WWE, and he was given the WWE title in his first year, despite WWE being well known to be petty towards non WWE created stars. The fact AJ can go anywhere and is put in the Main Event picture almost instantly (and it having very little to do with draw power) should speak volumes on how good he is. He is truly Phenomenal."
Rating: 10.0
Sentiment: 0.1456597222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Luna100wrote on 21.12.2021:[10.0] "An absolutely amazing wrestler who has managed to main event in all of the major companies he has wrestled in since 2002, ."
Rating: 10.0
Sentiment: 0.2763888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LivingLegendwrote on 14.12.2021:[10.0] "One of the best of all time, AJ Styles is a phenomenal wrestler and athlete. He is a perfect mix of high flying and grounded wrestling, he works great as both a face and a heel, and he's a very solid promo as well. A total package in my book, which is why he gets a 10 from me."
Rating: 10.0
Sentiment: 0.4942857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Phenomenal Nightmarewrote on 10.12.2021:[10.0] "The Phenomenal one, AJ Styles, one of my favorite free wrestlers, one of the best in the world, with great talent, agility, experience and great matches, He is a TNA legend and future WWE legend He has won almost everything in the companies where he was"
Rating: 10.0
Sentiment: 0.5625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Mister Cute Facewrote on 05.11.2021:[7.0] "He's really good and talented, I just don't get what everyone sees in him. I get that I'm the outlier here, but he's just not for me."
Rating: 7.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: gj07czoswrote on 22.10.2021:[10.0] "AJ Styles might very be the best in-ring performer of all time. He paved the way for so many others before him, and did it at every possible level. One of the most influential, skilled and game-changing to ever do it. The legacy AJ Styles has left behind in every promotion he's ever worked for is a testament to just how good he is."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Lalo Camposwrote on 22.10.2021:[10.0] "The best wrestler of the 21th century, he has do it all: WWE, ROH, PWG, RevPro, NJPW and, of course, he is the Ace of TNA"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jltwrote on 21.10.2021:[10.0] "AJ truly is the man who's done it all. He's wrestled all over the world, faced many legends (and up-and-comers), won so many titles and is loved by almost all wrestling fans worldwide. He could've probably left TNA earlier than he did but he's still got a few years left. It'll be interesting to see where WWE Creative will take him, especially since he's going to be stuck in the tag division for the next few months with Omos."
Rating: 10.0
Sentiment: 0.19166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: kfztkfzt2021wrote on 14.10.2021:[10.0] "One of the greatest of all time, well balanced in each and every wrestling style: amazing technical skills, great striking, fantastic highflying skills(one of the best ever), pretty good powerhouse moves, perfect selling and bumping, tons of charisma and GREAT on the mic.There is no area where he lacks, he has conquered the wrestling world, from NJPW to WWE.the best wrestler on wwe current roster, one of the best of all time, fantastic."
Rating: 10.0
Sentiment: 0.6300000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ecwfan197wrote on 06.10.2021:[10.0] "AJ is on of the greatest of all time in almost every way imaginable. He's tied for my #1 favorite wrestler with Jeff Hardy & Sami Callihan!"
Rating: 10.0
Sentiment: 0.8125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: RickyHendowrote on 05.10.2021:[10.0] "My all time favourite, has been a saving grace during the lackluster last 5 years of main roster WWE. Excellent matches with just about everyone he's faced, I just wish he'd gone to WWE a lot earlier than he did"
Rating: 10.0
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: No Onewrote on 03.09.2021:[10.0] "One of the greatest professional wrestlers of the 21st Century. One of the greatest in-ring performers of all time. Was the ACE of TNA from 2002-2013. Greatest TNA "homegrown" wrestler of all time. Has the aura of being the ACE of any wrestling promotion that he is a part of. Feuds with Christopher Daniels & Samoa Joe are legendary. One of the best all-rounder wrestlers ever. Can hit any move in the book. One of the best Ring Generals of all time. Can have a great match with a wooden stick. Extremely loyal to wrestling promotions. His era as the leader of BULLET CLUB was most likely the best era in the history of that faction's existence. Outstanding tag team partnership with rival Christopher Daniels in 2006, and they had a memorable feud with the original LAX. The only wrestler to have held the NWA, TNA, IWGP, & WWE World Championships. First ever ROH Pure Champion. Has held over 50+ career championships. Put on way too many re-watch worthy instant classic matches in TNA, all over the Indies, in ROH, in NJPW, & in the WWE. Won the WWE World Title in his first year with the promotion. One of the greatest under 6 foot tall wrestlers of all time. Popularized the Styles Clash. Is a measuring stick for high quality in-ring performance. Is now one of the top in-ring performers over the age of 40. Earned the right to call himself "The Phenomenal One". A Living Legend."
Rating: 10.0
Sentiment: 0.4756111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: vaventwrote on 23.08.2021:[9.0] "Great in the ring and good on the mic, though I wouldn't rank him among the very best in history for either category. His time in Japan and WWE allowed him to develop the character skills he was sometimes missing in TNA. Can work a solid match with almost anyone and a great match with other talented people, though sometimes he has weird chemistry issues with other wrestlers such as Kevin Owens and Nakamura (in WWE only)."
Rating: 9.0
Sentiment: 0.17307692307692307
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TommyEndMalakaiFanwrote on 16.08.2021:[8.0] "Amazing in the ring. Really my only issue is currently I don't care for him. He is a great singles competitor but for some reason, they teamed him with a generic giant. He could have made a great tag team with anyone but they give him Omos, at that point might as well just keep him singles."
Rating: 8.0
Sentiment: 0.31428571428571433
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CHECKONETWOwrote on 29.07.2021:[10.0] "One of the greatest of all time. Can do pretty much anything at any spot on the card. Definitely works best as a heel though. Best run was in New Japan, but his success in WWE was nice to see. His time in TNA seems unfortunately forgotten but if fans go back they'll see him at his physical peak, though he did get better in NJPW."
Rating: 10.0
Sentiment: 0.3451048951048951
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: voltxtreanwrote on 23.07.2021:[10.0] "Lass dich nicht von seinem jüngsten WWE-Aufenthalt täuschen, AJ ist immer noch ein Top-Wrestler der Welt und würde in das Main Event jeder Firma passen. Sein Erfolg in der WWE übersteigt das, was sich viele für ihn vorgestellt haben, aber er ist ein Beweis für sein Talent."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Enchantiumwrote on 20.07.2021:[9.0] "AJ Styles, an absolute mastermind when it comes down to anything in the squared circle, despite the age getting to him now he is still one of the most safest workers, greatest workers and still puts on fantastic matches for the crowd/audience. He has achieved loads in multiple different companies such as WWE, TNA, ROH and other familiar/unfamiliar Indy shows. A proper legend when it comes to the basics of professional wrestling, he can work with literally anyone as he can adapt and work with any move style and always allows his opposition to get some offence during matches allowing the crowd to engage more with him and whoever his opponents are and the match. Another great thing about AJ Styles would simply be the fact he puts over younger talent often, showing that he is an unselfish worker, and wants to benefit others in the long run before potential retirement in the future. AJ Styles has many other achievements -- facing The Undertaker at Wrestlemania & being a grand-slam champion and winning loads of titles during his fantastic career."
Rating: 9.0
Sentiment: 0.2019323671497585
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Suzukigunwrote on 19.07.2021:[10.0] "One of the all-time greats. He's fantastic at everything. Heel, face doesn't matter. He's great in the ring in every sense, has great in-ring psychology to go with high-flying ability, can wrestle a grounded style when needed, is good on the mic, and makes his opponents look like a million bucks consistently."
Rating: 10.0
Sentiment: 0.5900000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BrayanLaPrewrote on 09.07.2021:[10.0] "AJ Styles has the unique combination of brilliance individually and influence across a generation. Just listen to contemporary stars such as Kenny Omega, Ricochet, and Will Ospreay speak about how important Styles was to their careers. Just look at the ring attire of wrestlers throughout the industry and see how similar it is to Styles. Look at how the X-Division built upon the standard that WCW's Cruiserweight Division and NJPW's Junior Heavyweights, and how Styles was the face of it. Combine that with his numerous classics, his generational athleticism, his vastly improved technical wrestling ability, and his rare adaptability, and Styles is an all-time great. 10/10, and arguably on the Mount Rushmore for both the 2000s and the 2010s."
Rating: 10.0
Sentiment: 0.17013888888888892
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: thebigmilkmanwrote on 28.06.2021:[3.0] "This one goes up and down for me a lot so I may revisit this review. But as of rght now he's just kinda bland and isn't really that good to me. I also missed a big part of his TNA run so I'm bassing this off of 1999 WIldside & 2010-2021 AJ"
Rating: 3.0
Sentiment: 0.11555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Daigotsuwrote on 19.06.2021:[9.0] "One of the best wrestlers I've ever seen-- can consistently put on an incredible match with just about anybody. Promo and character work left something to be desired, but very few can do what AJ Styles can do in the ring."
Rating: 9.0
Sentiment: 0.378
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: autopsy12wrote on 13.06.2021:[9.0] "Dude is almost 45 and he's still the best wrestler in the world. His promos are okay at best but his ability and presence more than make up for that."
Rating: 9.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: zags7000wrote on 28.05.2021:[10.0] "Everywhere he has been he has produced classic matches and moments that are rank at the top. ROH to Impact to New Japan to WWE, he has been remarkable everywhere. He is great on the mic and in the ring. This generations greatest in my opinion. He is able to get the crowd on his side as a babyface and boo him as a heel and get the desired reaction to anything he does. I admit, I was a little skeptical of him going to WWE. I felt someway, they would manage to screw it up somehow but Styles is just too good. He's great at putting other guys over while doing so in a believable way as to never damage his legacy. His storytelling and ability in matches is great as he makes bad matches watchable, good matches great and great matches classics. Like I said, best of his generation."
Rating: 10.0
Sentiment: 0.3820265151515151
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kungwrote on 12.05.2021:[9.0] "The Phenomenal One has long been an absolutely tremendous performer inside the ring. The only thing that forces me to give him a 9 instead of a 10 is that I've always had difficulty with his promo work. He's not a bad talker, it's just he's not the kind of guy who'd talk me into buying a pay-per-view."
Rating: 9.0
Sentiment: 0.2888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The A-Listerwrote on 06.05.2021:[9.0] "He's great. Charismatic and fantastic in the ring. Did well in TNA, NJPW and WWE. One more title run, please."
Rating: 9.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CTFBwrote on 15.03.2021:[10.0] "As an overall performer, AJ is one of the most gifted and one of the most versatile. Going from a high-flyer that knew no limits, putting the X in the X-Division, to a more grounded worker in the modern day that can put on a 5 star match without really thinking about it. He has wrestled all over the world for almost every major promotion, and he would grow way more from just being a normal flippy-dippy guy to a full on bonafide star. I consider him to be in my top 10 of all time, and for good reasons."
Rating: 10.0
Sentiment: 0.3586538461538462
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: HYDROMAN93wrote on 06.03.2021:[10.0] "This man is simply the best wrestler in the world, nobody can touch him in that ring even at his age he? s still putting on quality matches. I? d say Kenny Omega is a close second behind him as best in the world. Truth be told he? s handcuffed in wwe to what he can truly do in the ring. He? s gonna go down as one of the best to ever step in the ring. It? s to bad we never get to see him wrestle Eddie Guerrero that would have been a match everyone talked about to this day. He should have beaten Brock Lesnar at survivor series I truly believe that would have put him in a class of his own at this stage of his career. He would have been viewed as a legend if he? d beaten Brock Lesnar on that night that? s the one big win he should have got that would have established him in WWE. Also the only wrestler in the world to win the WWE, TNA, IWGP, and NWA World Championships. A champion everywhere he goes even Vince couldn? t deny this guys talent. Best in the world period!"
Rating: 10.0
Sentiment: 0.3531746031746032
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: pierreMinnewrote on 28.01.2021:[10.0] "Fantastic wrestler that simply can't have a bad match. He delivers great matches against very bad workers. A thing that only a true wrestling God can do. And more, he has fantastic mic skills and is perfect as heel and as babyface !"
Rating: 10.0
Sentiment: 0.18400000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Shadow Explosionwrote on 26.01.2021:[10.0] "I could go on and on about how The Phenomenal AJ Styles is one of the greatest workers of all time having a hybrid style that is unmatched by nearly every wrestler on the planet, or how his matches have a grandiose combination have high spots and storytelling. Nowadays he's definitely past his prime but he can still work a great match, because he's still Phenomenal."
Rating: 10.0
Sentiment: 0.4014285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Brett1980wrote on 26.01.2021:[10.0] "Possibly the best wrestler in TNA history. Would never quite be their top guy but was loyal. In 2013 that changed when he went to NJPW and shown the world how amazing he really is. Had excellent match after excellent match there. Left for WWE in 2016 and was able to maintain that momentum. He can still have great matches now. Truly one of the best ever."
Rating: 10.0
Sentiment: 0.5777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Sick Lebowskiwrote on 03.01.2021:[10.0] "Für mich vor allem eines der Gesichter der frühen TNA-Historie und lange Zeit ein Augenschmaus. Was habe ich seine Three Ways gegen Samoa Joe und Christopher Daniels geliebt. Hat mit der Zeit aber leider für meinen Geschmack etwas nachgelassen. Ist zwar immer noch stark, aber mittlerweile recht wenig spektakulär. Daher schwanke ich zwischen 9 und 10 Punkten, gebe aber ganz knapp die höhere Note."
Rating: 10.0
Sentiment: -0.4571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Old ride long linewrote on 19.12.2020:[9.0] "Good name, good look, and good in ring style. I wish this dude came to the wwe 10 years before he did. However he seems to have a lot more in the tank and another 4 or 5 years of high quality matches I? ll put him up to a 10. One of the many guys today that I would have loved to have seen in a different era. The one knock for him is he isn? t that great on the mic but I don? t know how much of that is his fault or if it is the lack of passion he has for the script he? s repeating, so I try not to knock anybody from the current era who doesn? t make me want to change channels immediately."
Rating: 9.0
Sentiment: 0.3853846153846154
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Ma Stump Pullerwrote on 09.12.2020:[9.0] "I think the term "workhorse" gets overused a lot, but Styles definitely fits the bill for that concept: the guy gets over wherever he goes with a extremely solid workrate and reliability. Styles used to be pretty good in the ring during his younger TNA and ROH years: not fantastic as some would say, a strong athletic style and amazing highflying but his pacing was always sorta off for me. He focused a lot on spots and less so on general match elements and storytelling. His later work in companies like NJPW and WWE showed a completely evolved Styles who could work technical but also bust out the high flying when it made sense, guy was a lot more charismatic and could actually talk on a mic half decent. Regardless of the evolution of his wrestling, Styles has always been a solid guy regardless of the style or place, a true international champion in the sense that he's basically done it all. The only thing that ultimately keeps him away from the perfect 10 is that, well, I've never considered him a true main event draw: he's good as the side champion, the guy who works with aces, but I don't think he's ever been really considered as the top draw, and he's never drew like one either, which is still the top essentiality for a wrestler."
Rating: 9.0
Sentiment: 0.21591397849462368
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: plaguespreaderwrote on 29.11.2020:[10.0] "I normally rate wrestlers on a balanced level, incorporating presence, mic skills, work rate, believability, and marketability, but the sheer ring generalship and psychology of AJ Styles simply engulfs his pretty "above-average" mic skills. His 2016-2017 run going flawlessly from New Japan to WWE facing everyone from Okada to Brock Lesnar has to be seen to be believed. He has done it all. The world was his oyster. One of the pillars of modern western indie wrestling and deserves the moniker of Phenomenal. Loved him in TNA, ROH, PWG, NJPW, and WWE."
Rating: 10.0
Sentiment: 0.26694214876033057
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: FlyingCowswrote on 11.11.2020:[10.0] "Phenomenal wrestler overall. Amazing in the ring and on the mic, both in serious and comedic situations."
Rating: 10.0
Sentiment: 0.1916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: eleddie2914wrote on 28.10.2020:[10.0] "Aj Styles is truly phenomenal he is just so good at what he does. AJ is a natural when it comes to wrestling he can have a great match with anyone. Styles cam to the wwe and made a huge impact winning the wwe title in his first year his second coming in 2017 where he held the title for over a year. Styles has had a short run in wwe but a meaningful one."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ilovewrestling1995wrote on 27.10.2020:[10.0] "Possibly the best wrestler in the world right now along with okada , rollins and omega . He is one of the best in-ring performer ever and his mic skills are decent. I hope he is going to wrestle for 10 more years."
Rating: 10.0
Sentiment: 0.49206349206349204
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Narfmonsterwrote on 15.10.2020:[10.0] "For my money, AJ Styles is one of, if not the best wrestler of all time. Ever since his days in TNA and even his brief stint in ROH, AJ has done nothing but deliver classic match after classic match. From his bouts with Christopher Daniels and Samoa Joe in TNA, to his Wrestle Kingdom 10 classic against Shinsuke Nakamura, and even to his classic WWE matches with Brock Lesnar, Shane McMahon, John Cena, and others, AJ has truly cemented his position as one of the most entertaining wrestlers of the last 20 years."
Rating: 10.0
Sentiment: 0.29629629629629634
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Legend003wrote on 07.10.2020:[10.0] "Was will man über AJ noch sagen. Überall wo er auftrat, zeigte er das er einer der besten Wrestler der Welt ist. Im Ring eine Bombe und auch am Mic bzw. bei den Promos geht er ab. Eine zukünftige Wrestling Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: qveenovhellwrote on 28.09.2020:[6.0] "I am forever at a loss when it comes to figuring out the enduring popularity of AJ Styles. Sure he's plenty capable in the ring but he's an absolute charisma vaccuum. His promos are dull and lifeless and he never comes across as convincing whether he's scripted or not. I want to like him for his ring work but it's difficult when he has no character other than his real life persona, which is not particularly likeable."
Rating: 6.0
Sentiment: 0.06666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BlakeFR37wrote on 26.09.2020:[10.0] "I'm not a huge fan but the fact is that he deserves his 10. Every promotion, every title, every match. He's one of the GOAT."
Rating: 10.0
Sentiment: -0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SSEighty7wrote on 21.09.2020:[10.0] "AJ Styles has always been a great wrestler, but it wasn't until from 2013 and on the he became a totally well rounded wrestler from a charisma/talking standpoint. He became the complete package, capable of putting on awesome matches, carrying subpar wrestlers to standout matches, and cutting amazing promos. AJ Styles is a modern legend and deserves very high marks."
Rating: 10.0
Sentiment: 0.27866666666666673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wrestling Foreverwrote on 02.09.2020:[10.0] "Ja zu AJ muss ich nichts großes posten das meiste weiß man schon und es ist in den anderen Kommentaren genug über ihn geschrieben worden. AJ ist ein Titelsammler egal in welcher Liga er mal wrestlet fast überall holt er sich Titelgold. AJ ist eine Wrestling Legend (IWA Mid-South, NJPW, PWG, ROH, TNA und so weiter) bei NJPW hat er seinen zweiten Frühling gefunden und seitdem blüht er auf und zeigt einen Kracher nach den anderen egal wo er wrestlet. Edit 12. 04. 2016. So nun ist AJ doch in der WWE und auch dort gefällt er mir sehr. Er hatte auch einen Grund warum er NJPW verlassen hat. Es ging um seine Familie er wollte wieder näher bei ihnen sein. Edit. 02. 09. 2020 AJ ist schon einige Jahre bei der WWE und längst einer der Top Stars."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Yumichi95wrote on 01.08.2020:[10.0] "Top 5 des meilleur catcheur au monde peut Etre un peu de manque d acting dans ses match trop de in ring mais c le PHENOMAL pour toujours ."
Rating: 10.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: martizzletaewrote on 22.07.2020:[10.0] "The first match I ever watched in TNA was with AJ Styles and I was instantly hooked. The smoothest wrestler and with time, turned his high-flying hybrid style and evolve into a truly unique all around performer. He has gotten a lot better on the mic too! Simply phenomenal"
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Ratewrestlewrote on 12.07.2020:[9.0] "The Man has been a stand out talent for atleast the last 15 years. His work in NJPW, TNA and now WWE has been unrivalled"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Vaxxewrote on 04.07.2020:[9.0] "AJ Styles is an incredible performer, top 5 in the world for sure. From TNA to NJPW to WWE AJ has never failed to impress me, and he is one of the best ever in-ring. The only thing I believe that prevents him from being a 10/10 is that sometimes he can be less than perfect on the mic, but still nonetheless he is still perfectly fine and sometimes cuts great promos. AJ is definitely someone that deserves his spot on the main event card, and I'm going to be sad when he retires."
Rating: 9.0
Sentiment: 0.3743589743589744
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Viniciouswrote on 26.06.2020:[9.0] "For such a long time AJ has been the best wrestler in the world. Not the most charismatic guy, but crisp and acrobatic moves. Top guy."
Rating: 9.0
Sentiment: 0.38571428571428573
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wrestling Nerd BTC6wrote on 05.05.2020:[10.0] "Pros: Phenomenal in-ring competitor with an amazing move set and some really good spots Amazing promo with some really good comedy chops that can generate a few laughs Always feels like a legit superstar when he makes an entrance Cons: Through no fault of his own, his recent feuds have always been overshadowed by other rivalries and storylines. Overall: Definite main eventer."
Rating: 10.0
Sentiment: 0.2951388888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Eggi1304wrote on 11.04.2020:[10.0] "Ich verfolge AJ schon seit seiner Anfangszeit 2000 in der WCW und war von Anfang an ein riesen Fan von ihm. Sein In Ring Talent hat mich sofort begeistert. Dann bei TNA der absolute Durchbruch. Wenn der Name TNA fällt, dann muss man sofort an AJ Styles denken. Über eine erfolgreiche Zeit in Japan ging es dann tatsächlich doch nochmal zur WWE, wo er auch zweimal den prestigeträchtigsten Titel des Wrestling Business erringen durfte. Dieser Kerl ist in meinen Augen einfach die Perfektion im Ring. Klar, mittlerweile bei WWE workt er eher etwas mehr auf Sparflamme (was auch zum Teil durch die Ausrichtung der WWE kommt), aber trotzdem ist er damit immer noch einer der Besten in der WWE. Auch am Mic finde ich ihn mehr als solide. Da gibt es sicherlich bessere, aber trotzdem ist das alles in allem mehr als anständig. Für mich steht es hier außer Frage 10/10 Punkten zu vergeben."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Residentwrote on 04.03.2020:[10.0] "The best American wrestler in-ring today. Skilled wrestler who can get a great match out of just about anyone."
Rating: 10.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DrewHLMWwrote on 25.02.2020:[10.0] "to put it simply he is one of the best wrestlers the industry has ever seen. he lives up to his moniker as the phenomenal one in every way."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Okaro143wrote on 29.01.2020:[10.0] "One of the best wrestler of all time. Aj Styles in my opinion is one of the two best wrestlers to ever perform in the WWE ring along with Daniel Bryan. His run in NJPW was phenomenal."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Bobbythreesixteenwrote on 06.01.2020:[9.0] "Für mich der beste aller Zeiten. Immer gute Leistungen gezeigt, egal ob bei Impact, New Japan oder in der WWE. So langsam merkt man zwar das er älter wird aber bei diesem Niveau was er seit knapp 20 Jahren zeigt kein Wunder und daher auch vollkommen in Ordnung. Deswegen gebe ich meine 9 Punkte. Vor 2 Jahren hätte ich ihm sogar 10 gegeben."
Rating: 9.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: VillainClubwrote on 24.12.2019:[10.0] "Phenomenal AJ Styles. Überall wo er aufgetreten ist, war er der Mann. Sei es als Top Guy bei TNA oder RoH. Zweifacher IWGP Heavyweight Champion bei New Japan und zwei facher WWE Champion. Seine Matches sind zwar nicht mehr so stark wie bei New Japan, aber ist immer noch gut."
Rating: 10.0
Sentiment: 0.21454545454545454
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Uweuwesenwrote on 28.11.2019:[10.0] "Größter Champion der TNA-Historie! A. J. Styles hat sogar grauenhafte Storylines mit Leistung gefüllt. Bei der WWE dann tadellos, nur halt nicht immer gut eingesetzt..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Psykotikjobwrote on 12.11.2019:[9.0] "AJ Styles is definitely one of the best talent in the business right now. He has some pretty cool moves that can be considered as "flashy", yet still very impactful and believable, unlike most other modern big-time wrestlers. His work on the mic is very soulful and energetic. He can draw both love and heat from the audience with equal fervour. His run with the WWE championship which lasted over a year, saw him and most of his opponents put up great matches."
Rating: 9.0
Sentiment: 0.30357142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Iceqwrote on 08.10.2019:[10.0] "Unfassbar das Styles jetzt schon seit fast 4 Jahren bei der WWE ist. Ich kann mich noch genau an sein WWE Debut erinnern und damals hätte ich mir seine WWE-Laufbahn nicht besser vorstellen können. Natürlich ist er nicht nur in der WWE ein Topguy sondern auch bei Promotions wie TNA und NJPW war einer der größten Stars. Wrestlerisch extrem konstant, auch wenn er nicht in der WWE so viele Klassiker gezeigt hat, jedoch kann auch ein Styles so viele verschiedene Matches mit allen möglichen Wrestlern zeigen. Für mich ist AJs Karriere die Definition von einer perfekten Wrestler-Laufbahn."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AndoCommandowrote on 12.09.2019:[10.0] "May very well be the greatest example of a journeyman wrestler. An excellent worker in every promotion he's been a part of, who has succeeded as a star in every major promotion he's ever signed with: WWE, TNA, NJPW and ROH. One of the most innovative wrestlers to ever grace the ring. Beautiful offensive manoeuvres, coupled with consistently great selling and use of psychology, making him one of the most complete packages you can find in a pro wrestler. His weaknesses (promo ability, pacing) overtime have only become strengths. Sometimes we forget how great a wrestler is, and when they're able to remind us why they're great on a consistent basis, it can only be a testament to their greatness."
Rating: 10.0
Sentiment: 0.49140624999999993
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: taabr2wrote on 31.08.2019:[10.0] "AJ Styles is a wrestling genius, someone who always adapts his work to fit the environment he is in. Take his younger days in TNA where AJ Styles' best aspect was his amazing high flying moves to now in his WWE run where he focuses more on storytelling doing less dangerous moves. One of the best in-ring wrestlers no doubt. It's also amazing how quickly AJ Styles was able to shoot right to the top of the WWE roster after he signed with them in 2016 becoming one of the company's biggest merchandise draws. AJ Styles has definitely had one of the more interesting careers in his generation being a top guy for TNA, NJPW and WWE."
Rating: 10.0
Sentiment: 0.3717042606516291
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Matt Mackswrote on 22.08.2019:[10.0] "While I have followed his career mostly from afar, I have seen him perform in spots throughout the last 20 years. I am truly impressed by the fact that he has been one of the most athletic, fluent and exciting performers to step into a wrestling ring for all of these years. In the beginning, he lacked experience and in the " entertainment" aspect, but he was already exciting to watch. Nowadays, after rising to the top in TNA, NJPW, WWE and basically anywhere else he ever wrestled, I can say with confidence that AJ Styles is the complete package. One of the greatest wrestlers and most reliable performers of all time in my opinion."
Rating: 10.0
Sentiment: 0.4699999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JOEvsISHIIwrote on 13.08.2019:[10.0] "One of the greatest in ring workers of all time. Great high flyer, technician and seller. Can play heel or face. Mic skills could improve but good enough for me to give him a 10"
Rating: 10.0
Sentiment: 0.532
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JEK 1991wrote on 28.07.2019:[10.0] "The best modern day high flyer in the ring. Exciting in TNA and now WWE. His kicks are powerful than words."
Rating: 10.0
Sentiment: 0.392
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[10.0] "I remember seeing one of TNA's first promo packages when that company was still in its infancy & seeing this AJ Styles fellow doing all sorts of things that completely left me in awe. Ever since then, I have been glued to his work. I'm not sure where TNA would have made it to if it wasn't for the work of AJ. After TNA he reinvented himself a number of times & is still working at the highest level possible."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheV2wrote on 20.07.2019:[10.0] "Once I thought a move to WWE for AJ Styles would be destructive for both sides. I was wrong! The indies', TNA's and New Japan's Demi-God, the Phenomenal, AJ Styles! From his character work to especially his in-ring work he has never stopped developing further and it's difficult to not care about how passionate he is. Nothing is perfect, but AJ's precision and uniqueness in the ring is near perfection. If I had to pick the greatest overall wrestler, it might be AJ. He might have more potential, but he is treated better in the WWE than most of us expected."
Rating: 10.0
Sentiment: 0.1462566844919786
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NEVERoverweightChampionwrote on 12.07.2019:[9.0] "He succeeded almost everywhere, always left a good impression. I think that for most of his career he was a very good wrestler but lacked charisma and personality, until he went to NJPW. Being the new Bullet Club leader who won the most prestigious title in the world on his first try, on his first match in New Japan really gave him a great boost. While the Japanese audience wasn't very hot for him at the beginning, he ended up convincing them, he simply showed that he was worth the title he held and when he left, Japanese fans loved him. His work in New Japan was excellent, he could show the best of his technical and athletic abilities while gaining confidence and becoming a charismatic leader of a hot faction. It changed his career and he went in WWE with a lot of hype. Even there he can have some good to great matches sometimes. His first year in WWE was good. Then he slowed down but that's understandable. Anyway he had a brillant career."
Rating: 9.0
Sentiment: 0.3818882372108178
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AlexLikesJoshiwrote on 04.06.2019:[7.0] "AJ Styles at his peak was probably the best wrestler in North America and could do cskmw insanely good stuff.  His WWE run has been really overrated and filled with too many average-bad matches for me to consider him an all time great.  His promo ability is also very hit or miss which makes a big difference when wrestling for the like of WWE and TNA"
Rating: 7.0
Sentiment: 0.475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cow Manwrote on 31.05.2019:[10.0] "A. J. Styles' new "soccer mom" gimmick sells his accomplishments short. He has been WCW, TNA, ROH,  NJPW, ect, ect... He truly has done it all. He has great in-ring and promo skills. He may not be the absolute greatest of all time, but he would certainly rank in the top 10. A 10."
Rating: 10.0
Sentiment: 0.21287878787878786
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Fab96wrote on 11.05.2019:[10.0] "10/10 isn't enough for "this guy from Atlanta". What can I say about AJ? Technique out of the world, show stealer all over the world, charismatic inside and outdside the ring, could make a 5 star match with a doll. How many titles did he win? I lost the count, and we talk about primary titles, champion in TNA, NJPW, ROH, WWE.. This guy has done it all."
Rating: 10.0
Sentiment: 0.44000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Darth Vaderwrote on 06.05.2019:[10.0] "The 'soccer mom' style has nothing on the embarrassment caused by AJ's record against one James Ellsworth.  On the 11 October, 18 October and 22 November episodes of SmackDown, Ellsworth picked up three separate victories over one of wrestling's best performers. The first happened due to Dean Ambrose being special guest ref, and the second was via disqualification. The third, a Ladder Match, also happened because of Dean's interference.  Still, the history books show that Jimmy holds a trio of wins over AJ, and Styles can only point to one return victory over Ellsworth on the 20 December 2016 edition of SmackDown. That means the record between AJ and Ellsworth stands at 3-1 in favour of the chinless underdog character.  To put that into perspective, AJ lost only once in three pay-per-view matches against John Cena. Yes, James Ellsworth has more televised triumphs over Styles than Cena does.  Sometimes, I really wish WCW won...."
Rating: 10.0
Sentiment: 0.22564935064935068
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: blackx18wrote on 01.05.2019:[9.0] "Micwork : (9/10) In-Ring : (10/10) Gimmick : (9/10) Charisma : (8/10) (35/40) = 8, 75. Immer noch sehr guter Wrestler und der vielleicht beste Wrestler in WWE der trotz deinem vorgestrichenem Alter noch gute Leistungen abliefert."
Rating: 9.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "By far one of the best of all time in terms of ring skill. He has had amazing runs everywhere in the world he has went and has had succsessfull runs in TNA , NJPW and now currently WWE. He can play both an heel and a face quite well."
Rating: 10.0
Sentiment: 0.42500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ZestyZuluWarriorwrote on 23.04.2019:[10.0] "What AJ lacks in mic skills he more then makes up for with his in-ring work. He is easily one of the greatest wrestlers of this generation and has been at the forefront of any company he has stepped into which is not a coincidence. He is 41 and still moves like he's in his 20s"
Rating: 10.0
Sentiment: 0.6444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ErycK24wrote on 08.04.2019:[10.0] "AJ is possibly the best performer in the world today. He's in an elite class with guys like Seth Rollins, Shinsuke, Kevin Owens, Sami Zayn, and Y2J guys like that. He's very deserving of a 10 rating. Edit 2019: I? m changing AJ? s rating from a 10 to a 9 because I feel that most of his matches are too slow paced these days and I haven? t really seen a great match from AJ in a while. 10 for a career easily, 9 as of right now so ehhh I? ll keep it a 10."
Rating: 10.0
Sentiment: 0.40821428571428575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AJStylopzwrote on 03.04.2019:[10.0] "In my opinion, AJ Styles is the Michael Jordan of Professional Wrestling. He is without a doubt, the best wrestler in the world these days, whether people like it or not, he is a goddamn full package when it comes to in ring work. Incredible bumper and seller, fantastic looking offense, outstanding athleticism, great power, knows how to have a great match, he has improved also tremendously on the mic and keeps contantly delivering badass and deep promos. This man is probably my favorite pro wrestler of all time and it's going to a damn sad day when he retires."
Rating: 10.0
Sentiment: 0.4319444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GBoonewrote on 27.03.2019:[10.0] "Styles is by far of the best wrestlers in WWE and in the world today. This has been the case for a while too, as from TNA to NJPW to WWE,  he has put on classic after classic after classic. Even as he approaches 40 and beyond, I have no doubt that he will continue to put on absolutely great matches. His promos have improved in WWE as well, so we have a much more complete Styles to look forward to as well."
Rating: 10.0
Sentiment: 0.37500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kevin41182wrote on 19.03.2019:[10.0] "Simply the best in the world. AJ before coming to WWE was phenomenal. A multi time TNA World Champion, NWA World Champion, IWGP Heavyweight Champion, the list goes on. Now in WWE, a multi time WWE Champion he is simply legendary."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: zephyrwrote on 16.03.2019:[10.0] "The old TNA short hair AJ Styles was a tremendously talented young guy who seemed to be lacking in charisma. Then he grew out his hair and somehow became one of the best wrestlers this side of the millennium."
Rating: 10.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: furkan3614wrote on 11.02.2019:[10.0] "My favourite wrestler.  Great in ring skills, expecily for his age. He is a really genius man, he once turned a botch into a comedy angle called "I hate lucha ropes! ", He saved James Elsworth's life etc. His mic skils are also pretty good if we compare with his NJPW and TNA times."
Rating: 10.0
Sentiment: 0.19
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: 20SaiDa19wrote on 10.02.2019:[10.0] "The past 18 months have been poor by his standards, but prior to that his career has been great. Whether in TNA, ROH, NJPW or WWE, AJ has been one of, if not the best in-ring talent signed to that particular company. His mic work has improved considerably since joining WWE and even though he is still by no means a great promo, he can now more than hold his own on the mic."
Rating: 10.0
Sentiment: 0.33166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: foolishtravelswrote on 25.01.2019:[7.0] "Over rated - very good performer but inconsistent story lines and his interviews are fairly boring.  His in-ring mic work is much better than when interviewed."
Rating: 7.0
Sentiment: 0.13666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cibswrote on 04.01.2019:[10.0] "One of the most consistent wrestlers of the last 15 years and the best on the planet right now. Incredible in the ring, good promos and a lot of charisma; In addition, he can adapt to practically any style and it is very difficult to see a bad match from him."
Rating: 10.0
Sentiment: 0.25396825396825395
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheManiacwrote on 03.01.2019:[10.0] "Einfach ein unglaublicher Worker. Extrem stark und technisch wahrscheinlich mit das beste was die Wrestlingwelt zu bieten hat. Bei TNA damals schon die tragende Säule, später auch bei ROH und NJPW. Bei der WWE auch der Star unter den Workern, an den nur wenige herankommen. Deshalb 10 Punkte, weil AJ Styles einfach on Top ist."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: EnesTR32wrote on 22.12.2018:[10.0] "Real best in the world: AJ STYLES! . He my favorite wrestler. Because -Amazing Ring Skill -Not Bad Promo - He charismatic And more...  Point:10"
Rating: 10.0
Sentiment: 0.5750000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Steamboat2511wrote on 05.12.2018:[9.0] "AJ Styles gehört zweifelsohne zu den größten und besten Wrestlern aller Zeiten. Seine Fähigkeiten in Sachen Technik, Matchführung, Psychologie und In-Ring-Entertainment sind herausragend. Lange Zeit schien er einfach keine Fehler zu machen und immer perfekt zu worken. Inzwischen schleichen sich immer mal Unsauberkeiten ein. Aus (fast) jedem Gegner kann er noch ein anständiges Match herausholen. Personality und Charisma sind zweifellos vorhanden, finde ich aber nicht ganz so stark wie viele hier. Stark ist auch, dass er sich als einer der wenigen Indy- und u. a. TNA-Stars wirklich in der WWE durchsetzen konnte. In der WWE fehlt bisher bei sehr guten Matches oft noch das kleine bisschen Extra. Momentan abgerundete 9 Punkte."
Rating: 9.0
Sentiment: -0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Stott Onewrote on 27.11.2018:[9.0] "An amazing in-ring performer. One of the main reasons I kept watching TNA. I was very excited when he came to WWE and he hasn't disappointed. His mic skills aren't always top-notch but he can be extremely entertaining. Put the man against anyone, and you're looking at a good time."
Rating: 9.0
Sentiment: 0.3863095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Amico Leonardwrote on 21.11.2018:[9.0] "Probably the best performer in WWE today compared only to Seth Rollins and Daniel Bryan in the main Roster. Aj styles has proven to be championship material and has proven to be able to do great also in WWE. His ? non-WWE carrear has been excellent. He was the heart and soul of TNA the greatest Non WWE company since Monday Night WAr in North America, his matches with Samoa Joe or Christopher Daniels back in 2005 were excellent (go and watch the triple threat match they had at Unbreakeble 2005) also his bouts with Kurt Angle were excellent and all his evolution as character in TNA was excellent (I loved his dark persona back in 2013 against Aces&eights) . His Period also in NJPW will go out in history as one of the best non japanese icons of New Japan pro wrestling ever as a team leader in Bullet Club.  As a WWE point of view he arrived no loger a young man but it was necessary becouse if he shoul had debuted in Vince Headquarters back in 2002 he would have been a jobber with no capacity to show his talent. His carrear before wwe was necessary to make himself a name . His debut at Royal Rumble 2016 will go on in history as one of the best ever (only the Y2J one in1999 was better) , his matches and feuds with John Cena , Chris Jericho, Shane Mcmhaon or Finn Balor will be considered some of the best matches ever. I don? t give him 10/10 becouse as entertainment and not in ring performance point of view he is not the best ever, his promos aren? t good as his ring work and also his 371 days title reing (longest in smackdown history) was sometimes something monotonous and flat. The first half of it was great after WrestleMania 34 it seemed to go on as inertia with the Samoa Joe feud (that gave us some great matches but not excellent). To longer and with a bad finish, it? s not his fault but that? s the way it is. Besides that Aj styles is one of the best ever, in the top 10 greatest in ring performers in history for sure, stealing the show in every company he went..."
Rating: 9.0
Sentiment: 0.4450358851674642
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KINGwrote on 09.11.2018:[9.0] "The best professional wrestler of his generation. Sad how TNA didn't give him like 10 world championship and guys like Jeff Hardy, RVD and Kennedy won the title while he was there but now in WWE he monopolized SmackDown, but c'est la vie I guess, he never surrendered and like wine he kept improving, becoming a badass heel in Japan and in WWE. I find him bland as babyface but I don't blame him as it's easy to be bland as a good guy in WWE, his performances tho are always amazing even if 2018 wasn't a lucky year for him, but he's still 41 and dealt with several crap match finishes, I just want him to get rid of the title and start a new chapter but he deserves his success."
Rating: 9.0
Sentiment: 0.17283549783549784
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MogGuywrote on 06.11.2018:[10.0] "I'm not going to give a thorough and detailed comment, i'd be here all day. Bottom line: Can have a great match with ANYONE (truly), mic skills have gotten gradually better over the years and since he's been in WWE he's one of the best talkers in the industry now, his in-ring work is so smooth and crisp it's uncanny. Highlight of his career: Signing with WWE (the best thing he's ever done in his entire life, and he would agree outside his wife and children). Lowlight of his career: The abysmal Claire Lynch storyline in TNA. What an absolutely stupid idea by TNA at the time. Major respect AJ."
Rating: 10.0
Sentiment: 0.3284090909090909
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TylerWhitewrote on 01.11.2018:[10.0] "Technisch gesehen absolutes Top-Niveau und einer der besten Wrestler aller Zeiten. Nahezu jedes Match mit ihm ist sehenswert und alles was er macht sieht so gekonnt und perfektioniert aus, wie es kein anderer Wrestler hinbekommt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: RatingsMachinewrote on 12.10.2018:[9.0] "AJ Styles is an exciting performer, and he's versatile enough to have dramatically athletic matches, bridging the gap between performing and working."
Rating: 9.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Hazemwrote on 02.09.2018:[10.0] "Forget how great he is in the ring because that is obviously a given, AJ Styles could be the only guy who was a top guy in such different big-time promotions. His run with TNA was great and he was rightfully called Mr. TNA and then he took a huge bet and went to NJPW where he was a big deal and fit right in even the high standards there and then went to WWE where most people thought he was going to be a midcarder but he quickly became a main eventer and a two time WWE Champion. He was made to look very competitive against Reigns and he beat Cena clean. Hell, he was even the only one made to look strong against Lesnar during his Universal title reign. He has been WWE Champion for almost a year now. He has done it all and on top of that, he? s the best wrestler (in-ring wise) of his generation."
Rating: 10.0
Sentiment: 0.32807453416149074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JokeyZockeywrote on 30.08.2018:[10.0] "Bis 2016 wahrscheinlich der beste westliche Wrestler des 21. Jahrhunderts. Unfassbar hohe In-Ring-Qualitäten, starkes Mic-Work, viel Charisma und einfach die passende ''Star-Aura'', die ihn immer umgibt. Vor allem während seiner NJPW-Zeit hat es einfach Spaß gemacht, seine Matches zu schauen, er gab dem Produkt in gewisser Weise das, was mittlerweile Kenny Omega verkörpert. Einige Klassiker, unter anderem gegen Okada, Suzuki und natürlich Nakamura entstammen diesen knapp 2 Jahren, welche wohl einen der besten ''Promotion-Runs'' aller Zeiten ergeben. Als Styles dann zur WWE ging (was vor einigen Jahren noch undenkbar schien) schaffte er es als einer der wirklich ganz wenigen Indy-Stars, sich auch in der WWE in den passenden Card-Regionen zu etablieren, er ist zu einem der größten WWE-Stars geworden, und das kann man ihm einfach nur gönnen. Auch wenn seine Leistungen trotzdem unter dem WWE-Stil leiden mussten, ist er vermutlich immer noch einer der, wenn nicht der Beste im Roster. Mich persönlich kann er zwar gerade dadurch nicht mehr wirklich begeistern/mitreißen, aber objektiv betrachtet ist er einfach was er ist: The Phenomenal One! 10 Punkte für einen der Größten dieser Zeit!"
Rating: 10.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: nwo4204lifewrote on 25.08.2018:[10.0] "One of the only guys left from WCW, AJ Styles is not a young man. He has evolved his game, and grown into a once in a lifetime talent. His ability to be a serious Main Event contender anywhere in the world in spite of his size and age and questionable microphone abilities is a true testament to how phenomenal AJ is at this great art of wrestling. AJ Styles is at his best in high pressure situations, he can go toe to toe with any wrestler in the world of any style. During the reign of Brock Lesnar, when Brock would not defend the belt against anybody, AJ really took it to the ogre in the Survivor Series WWE Champ vs Universal Champ match. I expect more big things from AJ Styles for as long as he wants to keep working."
Rating: 10.0
Sentiment: 0.1412962962962963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MaskerRaid144wrote on 19.08.2018:[10.0] "AJ Styles is easily the best wrestler alive today! Sorry Okada and Omega but Styles is just too phenomenal! P. S. Omega is very good but is highly overrated by Dave Meltzer's ratings, those ratings are just Meltzer's opinion... The guy isn't the personification of wrestling standards"
Rating: 10.0
Sentiment: 0.39333333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: M7Wrestlingwrote on 13.08.2018:[10.0] "AJ Styles is the greatest wrestler of all time in my opinion, he is just perfect and also i've met him in real life"
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Starfruitwrote on 01.08.2018:[8.0] "I don't find him a compelling babyface, but maybe that's because I know too much about his shoot personality. He is a blisteringly talented wrestler, though. Many wrestlers have had the best match of their career against AJ Styles."
Rating: 8.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cameron621129wrote on 17.07.2018:[10.0] "Best in ring talent of this generation in my opinion. He could put on a great match with anyone. He has a great look and is a superb seller. His weakness is on the mic but he more than makes up for that in the ring with his incredible moves. Truly one of the great service."
Rating: 10.0
Sentiment: 0.8285714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jamzell00wrote on 29.06.2018:[8.0] "Boy he has taken a nosedive in 2018. 2014-2017 he had one of my favorite runs of the modern era but this year he hasn't been close to what his nickname indicates. He is still one of my favorite wrestlers ever without a doubt but I haven't enjoyed anything from him since his Brock match."
Rating: 8.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: RPMX123wrote on 28.06.2018:[10.0] "One of the best movesets, one of the best looks, one of the most athletic, one of the best storytellers, just one of the best in the WWE, maybe even THE best."
Rating: 10.0
Sentiment: 0.9166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Chrisxyzwrote on 22.05.2018:[10.0] "Für mich das Face der WWE. Seine gesamte Wrestling Laufbahn schon beweist er warum er der Ž Phenomenal One Ž ist. Ein Prototyp Highflyer und Techniker im Ring"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rudi der Fetzenwrote on 12.05.2018:[10.0] "Mein absoluter Lieblingswrestler. Seine Bewegungsabläufe sind alle perfekt aufeinander abgestimmt und es wirkt alles so unglaublich flüssig. Die Szene die mich am meisten beeindruckt hat, war der Styles Clash gegen James Ellsworth, wo er den Move mitten in der Ausführung noch angepasst hat, damit Ellsowrth's Nacken nicht in tausend Stücke sprang."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: InactiveGuruwrote on 05.05.2018:[10.0] "Simply Phenomenal. Superb in the ring, almost untouchable. He really did come into his own with his mic work after his stint in New Japan. Finally he made it to the WWE and he is indeed one of the best ever."
Rating: 10.0
Sentiment: 0.49090909090909085
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: lew kazamawrote on 02.05.2018:[10.0] "At 40 years old, Styles continues to work himself to death every week and has become the central pillar of Smackdown. Even without considering his storied past around the world, he is one of the smoothest and most exciting workers today. In his short time in the WWE he has become a top face and the most repected talent on the roster."
Rating: 10.0
Sentiment: 0.20625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Headlockwrote on 28.04.2018:[4.0] "Einer der überbewertetsten Wrestler dieses Planeten. Meine Hunde schlafen ja schon ein nur wenn ich von AJ Styles rede. Seine Matches sind oft ziemlich ähnlich, dazu wrestlet er auch ziemlich unsauber, wie man an denn neckbreaking Styles Clash und dem Moonsault DDT sieht dehn er gefüllt jedes mal verhaut. Charisma und Mic Work ist auch nicht gerade endlos vorhanden. Alles im allen "ausreichend""
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: mopouwa75wrote on 17.04.2018:[10.0] "He is just phenomenal. Always liked his looks, unique ring ability, athleticism and passion for wrestling. AJ Styles can make a solid match out of nothing. One of the best wrestlers in history, in my opinion"
Rating: 10.0
Sentiment: 0.495
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LrockBesnarwrote on 15.04.2018:[10.0] "He is always emotionally dominant in all his matches. I think this is the most important thing in the pro wrestling. AJ was always perfect and full packed. In ROH, PWG, TNA and now WWE. He is really a perfect wrestler and the in place he deserves."
Rating: 10.0
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kid Rockwrote on 19.02.2018:[10.0] "Der derzeit beste Wrestler im WWE-Kader und zweifellos einer der bester Wrestler auf der Welt aktuell. Styles ist ein fantastischer Techniker, Highflyer und Brawler, dessen größte Stärke aber seine Vielseitigkeit und Anpassungsfähigkeit im Ring darstellt, dazu kommt ein starkes Gespür für Matchpsychologie, Selling und der notwendigen Stiffness um seine Kämpfe, trotz aller Athletik authentisch und wie richtige "Fights" aussehen zu lassen. Seine Körpersprache, sein nicht abzusprechendes Charisma und seine Geschmeidigkeit im Ring tun ihr übriges um festzuhalten, ja, dieser Mann ist der Shawn Michaels der aktuellen Generation als unschlagbar bester Performer der heutigen Zeit. Während er im Ring Top ist, sollte man auch seine Promo-Fähigkeiten nicht außer acht lassen, hier hat Styles oft genug, sowohl als Heel wie auch als Babyface gezeigt, dass er fähig ist einen authentischen, nachvollziehbaren Charakter natürlich und glaubwürdig darzustellen. Wobei ich behaupten würde, dass Styles als Face noch besser funktioniert, da er, kennt man vor allem seine persönliche Geschichte, einfach ein natürlicher Sympathieträger ist, dem man gerne zujubelt, was auch seine Overness bei der WWE erklärt. Wurde er vor zwei Jahren als Ersatz für die Lücke, die Top-Worker wie CM Punk und Daniel Bryan hinterlassen haben engagiert, hat er durch seine Main-Event Runs gezeigt, dass er absolut an die Spitze gehört und, was Anfangs kaum vorstellbar gewesen wäre, mittlerweile zur wichtigsten Konstante in der WWE herangewachsen ist. Dass er mit 40 immer noch Wahnsinnsleistungen im Ring abliefert, lässt seine Außergewöhnlichkeit noch deutlicher hervortreten. Sorry an JBL, aber Styles ist tatsächlich einfach nur ein Wrestling-Gott."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: coolserazwrote on 11.02.2018:[10.0] "One of the greatest wrestlers ever.  Amazing moves, has a healthy balance between athleticism and power moves, sells very well. He has also significantly upped his mic game and does well as a cocky heel and a confident babyface. Truly the champ that runs the (Smackdown Live) camp."
Rating: 10.0
Sentiment: 0.3012626262626263
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Oliver95xwrote on 07.02.2018:[10.0] "AJ Styles ist einer der besten die es jemals geben wird. Seine Matches machen einfach Spaß und er gibt immer alles. Steckte über die Jahre viele harte und spektakuläre Bumps ein, was ich sehr respektiere."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jcb9wrote on 31.01.2018:[10.0] "What can be said about AJ Styles that hasn't already been said? He's the best wrestler in the world. He was always a fantastic worker, going back to his cup of coffee in the dying days of WCW, when he was tag teaming with Air Paris in the ill-fated Cruiserweight Tag Title tournament. But that's all he was. Over the years, he's developed into a complete package as a wrestler ? not just a worker but an excellent all-around WRESTLER. Great in the ring, very good on the mic, can work as a face, can work as a heel. Just fantastic."
Rating: 10.0
Sentiment: 0.4910000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CHN325wrote on 31.01.2018:[10.0] "The best professional wrestler in the business today. His mic skills and size were the only things holding him back, but his mic skills have improved infinitely since he left TNA. The fact that a man of his size and build turned Vince McMahon into a fan should tell you all you need to know."
Rating: 10.0
Sentiment: 0.22000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: mrwwewrote on 18.01.2018:[10.0] "The best wrestler in the world. He can do it all. His moveset is awsome, his mic skills are phenomenal and he is my favorite wrestler of all time alongside Kenny Omega."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Alex Maedawrote on 17.01.2018:[8.0] "Im Ring meist sehr gut bis großartig, zu seinen TNA-Zeiten habe ich wirklich gerne gesehen. Ihm mangelt es aber abseits davon an Charisma und Mic Skills, gerade wenn er einen Heel abgeben soll."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Dragon Fighterwrote on 31.12.2017:[10.0] "There is no doubt that AJ Styles is a world class wrestler. One of the best in ring workers of his generation. Excellent in ring work. He is top star in TNA, NJPW, various indy companies now in WWE. He killed it at any promotions he wrestled for. However, when it comes to the best in the world, it is hard for me to put him in that position because many wrestlers are as good as he is. Whatever, a 10 for sure."
Rating: 10.0
Sentiment: 0.4708333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Makai Clubwrote on 26.12.2017:[9.0] "He was very good a few years ago, he has dropped in standards since joining WWE though.  He was no doubt the best in the world but has since been over took by many and I feel his fans just constantly overrate his matches, just because it's AJ Styles.  I enjoyed his TNA run greatly, even though he wasn't a constant main eventer, he should've been. His NJPW run is legendary and that's the run, I will always remember him fondly."
Rating: 9.0
Sentiment: 0.46766666666666656
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Adaskerrwrote on 21.12.2017:[10.0] "Living legend and a wrestling genius. WWE's biggest Ace, he can do it all. Well deserved perfect ten."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: HHH Pedigreewrote on 23.11.2017:[10.0] "AJ is one of the greatest wrestlers alive. Incredible wrestling skills, charisma, promo... he has everything to be the new Shawn Michaels."
Rating: 10.0
Sentiment: 0.5340909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: benYowrote on 21.11.2017:[10.0] "AJ Styles spricht für sich. Er macht alles und Jeden im Ring besser. Man hat es gerade erst gesehen das selbst Brock Lesnar mit ihm zusammen wunderbar geworkt hat. Der Brock Lesnar, der sonst für seine eintönigen Matches kritisiert wird. AJ Styles hebt das Niveau in der WWE merklich nach oben, obwohl da noch viele gute Talente dabei sind. Ich hoffe inständig das er noch viele Zeit den Top-Spot bekommt und eine Story, die seiner würdig ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheRainmaker28wrote on 25.10.2017:[10.0] "Amazing bumper, seller, great psychology, facials and can build & carry a match like no one. Aside from that, he has proved his quality pretty much in every corner of the world. AJ is one of the all-time greats of this century and possibly in the discussion for the best american wrestler that has ever existed."
Rating: 10.0
Sentiment: 0.40714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "The Shawn Michaels of the new age, or the american Tanahashi, if you prefer. A one in a century talent, a master of pro-wrestling, one of the best ever without a doubt. He is at the same time a fine techincian, an incredible high-flyer, an in-ring psychologist and he even got better on the mic in recent years. He has been a thing everywhere he went, and I doubt anyone will ever be as relevant as he has been in so many important federation."
Rating: 10.0
Sentiment: 0.3271561771561772
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: El Generico Apodowrote on 01.10.2017:[10.0] "Aj Styles is my favorite wrestler right now. He's not just a great worker, but a PHENOMENAL Superstar. His reign as WWE Champion was awesome and his feud against John Cena was the best storyline in recent WWE history. His style is a hybrid of Technical and Highflyer, wich gives very impressive matches against everyone. In less than 2 years he did became a true star in WWE, but give his work in NJPW, TNA and ROH, this is not suprisse. I'm waiting to see him face Nakamura on Wrestlemania in a rematch of his Wrestle Kingdom bout (which was pretty great). The Face That Runs the Place."
Rating: 10.0
Sentiment: 0.486080586080586
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jcleaguewrote on 29.09.2017:[10.0] "AJ Styles is one of the best wrestlers on the planet today. Great look, unbelievable moveset, and many, many amazing matches on his resume"
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Viktor Vaughnwrote on 30.08.2017:[10.0] "Einer der besten Wrestler unserer Zeit. Konnte er am Anfang seiner Karriere besonders durch seine Arbeit im Ring überzeugen, stimmt inzwischen einfach alles bei ihm. Wie es sich weltweit verhält kann ich nicht beurteilen, aber innerhalb des aktuellen WWE-Rosters gibt es derzeit niemand besseren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LincTheSinc22wrote on 28.08.2017:[10.0] "I cannot stress how truly amazing this man is in the ring. He's been my favorite since 2002. Only WWE Shop shirts I own are AJ Styles shirts. The man could get into the WWE HOF on his curent résumé. One of the all time greats in professional wrestling history."
Rating: 10.0
Sentiment: 0.36000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: rschmandt22wrote on 28.08.2017:[10.0] "I cannot say enough amazing things about AJ Styles. I have followed him for years. Seen him live on the indies, seen him live for WWE as well and he has never put on a bad match that I've seen. He's one of the best in the business, and one of the nicest, most polit guys outside the business as well because I've never heard a bad word said about him."
Rating: 10.0
Sentiment: 0.10808080808080811
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ThotSlayerwrote on 16.08.2017:[7.0] "Great but Overrated as fuck... Best in the world? Maybe top 50 like Shawn Michaels in his day.  It has 50 fucking characters you retards stop showing me the "not accepted not enough characters" BS"
Rating: 7.0
Sentiment: 0.05714285714285711
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ChristianMB1wrote on 27.07.2017:[9.0] "Top-notch wrestling ability, especially when taking to the air. He doesn't have the predictibility of most workers, as I've been following his career since his days in ROH but still find myself wowed by some of his moves I never know he had the ability to pull off. His incredible athleticism means that he can work as a face or heel seamlessly. The thing that makes me hesitate from giving out a 10 is his mic work, though. in the indies as well as Japan it wasn't an issue because all the stories are expected to be told in the ring. IT did, however, come up as an issue in TNA and is really standing out in WWE. His original lines are mediocore at best and cringeworthy at worst, and the lines that I can tell are fed to him are delivered poorly.   Still, one of if not the greatest in-ring worker(s) of all time."
Rating: 9.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: marmar2200wrote on 26.07.2017:[10.0] "AJ Styles ist im wahrsten Sinne der Bezeichnung "phänomenal". Vom Wrestlerischen her ist wahrscheinlich der Beste zurzeit in der WWE. Kaum gibt es ein mittelmäßiges, nie ein schlechtes Match von ihm und immer wieder sind die Matches packend. Selbst wenn er wie jüngst nicht im Main Event steht, dreht sich letztendlich trotzdem fast alles um seine Fehde. Inzwischen hat er in 1, 5 Jahren in der WWE schon den WWE Titel und zweimal den US Title gewonnen und ist weierhin eigentlich das Highlight bei Smackdown. Styles wird sicherlich noch einige Jahre auf diesem Niveu performen können und somit für eine krasse Qualitätssteigerung sorgen können. 10 Punkte sollte man nicht einfach so verteilen, aber hier kann man fast nicht anders."
Rating: 10.0
Sentiment: 0.18888888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rattlesnake3-16wrote on 11.07.2017:[10.0] "A huge draw everywhere he performed in his life, an always perfectly executed moveset and a good charisma : this is AJ Styles ! Even if he can not do all his stuff like in the past such as the spinal tap, he remains very talented and knows how to give credit to the titles (see his run as wwe champion ) and put other wrestlers over ( see his match against Shane o'mac at Wrestlemania). Really like him, and hope a match against The Cleaner in the future !"
Rating: 10.0
Sentiment: 0.33444444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ParisTheSpiderwrote on 01.07.2017:[10.0] "Für mich ist AJ Styles zweifellos einer der besten Pro-Wrestler aller Zeiten! Mehr gibt es von mir nicht zu sagen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: metallicasmith05wrote on 29.06.2017:[10.0] "Absolutely awesome. I screamed my head off when he debuted. He made and impact in his first 4 months"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TooSweetPhilwrote on 24.06.2017:[10.0] "Er ist einfach der Beste den es gibt. Er ist zwar seit gut ein Paar Monaten nicht mehr mein Lieblings-Wrestler (Okada ist einfach auf einem anderen Level) doch trotzdem gibt es quasi niemanden, der AJ das Wasser reichen kann. Der Hype um ihn ist 100% gerechtfertigt. Im Ring unfassbar stark und kann mit JEDEM ein ordentliches Match haben. Move-Set, Mimik, Psychologie und und und kann er alles. Am Mic sehr gut und dazu noch eine Charisma Bombe. 10 von 10, weniger wäre untertrieben."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: test85wrote on 23.06.2017:[10.0] "War einer der Gründe warum ich Tna zu verfolgen begann. Seine Matches waren meistens das Highlight. Auch im Ring gehört er noch zu den Besten auf diesen Planeten. Musste auch so einiges an Schwachsinn mitmachen nach der Ankunft Hogans bei TNA (Claire Story, Little Naitch Gimmick) Konnte aber dann in Japan wieder beweisen warum er zu den besten seiner Zunft gehört. Zudem momentan der beste Worker im WWE Roster. Zeigt eigentlich wenn er auf der Card ist, immer das MotN. Hoffentlich bleibt er noch einige Zeit im SD Roster."
Rating: 10.0
Sentiment: -0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Unknown warriorwrote on 30.05.2017:[10.0] "Who would the guy wrestling the Hurricane in 2001 would end up being so good. What else is there to say about the phenomenal one? Started following him around 2008 where his match with Kurt Angle made me an instant fan, went back to 2007 where he was still a heel alongside Christian Cage and he never failed to make me laugh with his childish personality and of course the famous triple threat with Christopher Danials and Samoa Joe still remains one of the top triple threat matches I've ever seen. Was sad to see him leave in 2013 but what was TNAs loss was NJPWs gain. Having great match after great match definitely proved that he wasn't just an overhyped indy darling and then as The Rock would say "Finally! " he would come to the WWE where he's already a former WWE Champion and already has a handful of great matches and above to his name with the likes of Roman Reigns, John Cena (all three of them) dean anbrose TLC, Cena and Bray Wyatt, Dolph Zigglar and even Shane Mchmon and heres a lil sentence on his singles PPV matches: His match with Chris Jericho at Wrestlemania 32 despite that being one of the top three matches of the PPV was his weakest match (Still a very good match but his other matches were better) easily the best wrestler on Smackdown and the entire company (Still patiently waiting for the AJ Styles vs Seth Rollins match)"
Rating: 10.0
Sentiment: 0.28030864197530864
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: PartyPnyxwrote on 22.05.2017:[10.0] "Er ist und bleibt einesr der fünft größten Wrestler der Welt. Es gibt wenige, die mit ihm im Ring mithalten können, jedoch kann er aus jedem Gegner, wenn dieser nicht so talentiert ist, etwas herauskitzeln und immer gute Matches abliefern. Auch am Mic kann er total überzeugen und ich höre sehr gerne zu, was er zu sagen hat. Für mich persönlich mein liebster Wrestler, zumindest von den Aktiven."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Werbearwrote on 09.05.2017:[10.0] "Wenn man als Wrestler zeigen will was man alles kann dann sollte man gegen AJ Styles wresteln! Nicht nur das er eine gute Show abzieht, er lässt auch seine Gegner richtig gut aussehen. Seine Matches gegen Luke Harper und Shane McMahon waren die besten die ich bis jetzt von beiden gesehen hab!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LSEstrelawrote on 07.05.2017:[10.0] "Quite simply, the best wrestler in the world today. No one matches the athleticism, the in-ring psychology, the character work, the promo skills, the connection with the audience, and a genuine passion for the bussiness the AJ has."
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Fessinhowrote on 28.04.2017:[10.0] "AJ Styles ist aktuell sicher der beste Wrestler in Roster der WWE. Im Ring technisch nahezu perfekt, seine Gegner profitieren enorm von seinem Können und die Matches sind in der Regel extrem hochwertig. Am Mic wirklich, wirklich klasse und über sein Charisma muss man kaum ein Wort verlieren. Insgesamt: aktuell klar der MVP von Smackdown und meiner Meinung auch der gesamten WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Klabauterwrote on 24.04.2017:[10.0] "[Bewertung vom 30. 05. 2016:] AJ Styles ist ein sehr guter Wrestler. Er liefert immer ab, am Mikrofon, im Ring , egal wo. Auch wenn mir sein bisheriger WWE Run eher mäßig gefällt und er meines Erachtens auch mal einen klaren Finisher braucht, mit dem er dann mal wirklich jemanden finisht ist er alles in allem einer der besten Wrestler des Rosters, der klare 9 Punkte verdient.  [Bewertung vom 24. 04. 2017:] Fast 1 Jahr später ist AJ Styles klar jmd. den ich mit 10 bewerten muss. Die Finisher-Problematik ist gelöst und AJ Styles hat sich zum MVP von SmackDown entwickelt."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SteveTheBeastwrote on 21.04.2017:[10.0] "Meiner Meinung nach der beste Wrestler der WWE zu Zeit. Und auch die erste Neuverpflichtung seit der Verpflichtungswelle die es in den Main Event geschafft hat. Bis auf die Roman Reigns Fehde auch sehr gut eingesetzt. 10/10"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: PrinceJrwrote on 15.04.2017:[10.0] "Wenn jemand Wrestling verkörpert, dann ganz klar AJ Styles. Meiner Meinung nach der Weltbeste seit vielen Jahren und endlich ist er auch in der WWE angekommen. Egal mit wem AJ im Ring steht, derjenige profitiert immens mit der Zusammenarbeit mit AJ. Es ist nicht verwunderlich, warum er das Vertrauen von jeder Promotion bekommt und als Topstar eingesetzt wird. "The Face that runs the Place", "The Phenomenal". Absolut verdient."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ThatWrestlingGuywrote on 13.04.2017:[10.0] "AJ Styles is truly amongst the "best in the world" when it comes to pro wrestling. Never went to WWE until recently, and was by far one of the best that hadn't yet stepped foot inside a WWE ring (excluding that short stint he had before he joined NWA/TNA). A former IWGP, NWA, PWG, TNA, and WWE Champion - he's done it all. Travelled all over the world to make a name for himself, had incredible matches against top dogs like Kurt Angle, Nakamura, etc, and is still going strong today. Want proof that age is just a number? Look at AJ Styles. He truly is "Phenomenal" and will only get better as he ages. I definitely see him being a holder of the WWE title multiple times before he hangs his boots up."
Rating: 10.0
Sentiment: 0.3523809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: John Brandowrote on 12.04.2017:[10.0] "Ich bin wirklich von Fan von AJ Styles. Er ist ein Komplettpaket, natürlich sind seine In-Ring-Fähigkeiten herauszuheben, die zu den besten der Welt gehören. Er liefert großartige Matches ab und das trotz seines Alters von fast 40 Jahren.  Er ist völlig zurecht WWE-Champion und , auch wenn es noch ein bisschen früh ist, für mich der Superstar 2016 in der WWE.  Neufassung der Kritik: Schande über mich, dass ich ihm beim ersten Mal nicht die Höchstwertung gab. Jetzt tue ich es. Phänomenal!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Excellence of Executionwrote on 10.04.2017:[10.0] "Guter Mann und ein TNA Star der ersten Stunde. Seither außerdem in Japan erfolgreich gewesen und nun in der WWE als dekorierter Main Eventer unterwegs. Nun ist es amtlich: AJ Styles hat der Wrestling Welt eindeutig seinen Stempel aufgedrückt. Für jemanden, der solange im Business ist und einen agilen, explosiven Stil wie er an den Tag legt, ist er noch sehr gut in Schuss. Seine Athletik ist nach wie vor hervorragend. Und dass er diesen Sunny Boy Appeal abgelegt hat, der ihn bei TNA lange ausgemacht hat, war definitiv zu seinem besten. Bedenkt man, dass er mal als Rookie bei der dahinsiechenden WCW angefangen hat und schaut, was er seither alles erreichen konnte (zu Recht! ), kann man nur den Hut ziehen! Sieht so aus, als ob AJ Styles im Herbst seiner Karriere auf dem Zenit angekommen ist. Hoffentlich kann er noch ein paar Jahre die Aussicht genießen!"
Rating: 10.0
Sentiment: 0.32552083333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SrHunterwrote on 09.04.2017:[10.0] "If there is one guy in the whole roster you can trust to make a good match, this guy is AJ Styles, the guy do an ***+ match with a door, he is the best in the WWE, and definitely in top 5 best wrestlers in the world right now, AJ can have a good match with everyone, even with Shane, who have some ankward punches and isn't a wrestler at all, he bust good matches regularly, and even in TV-shows ! .  Not the best mic skills, until he came to WWE and turned heel, his mic work lately is being fantastic, really top-notch. He is doing a great work in the E, and WWE already see him as a top player, which is GREAT, because his WWE carrer is being GREAT so far."
Rating: 10.0
Sentiment: 0.565873015873016
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: hasanakbaba68wrote on 08.04.2017:[10.0] "The Face That Runs The Place ! Wer bei diesem Wrestler keine 10 Punkte Abgibt Soll sich Schämen Ist schon Mit Kenny Omega auf dem gleichem Level Dieser Typ Ist Nix Anderes als PHENOMENAL ! Wohl einer der besten Wrestler der welt wenn nicht der Beste"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NastyYaffawrote on 07.04.2017:[10.0] "There are times when I think that some of the hype & talk he gets aren't 100% earned, but honestly, he really is one of my all-time favorites & he truly is a part of the elite when it comes to pro wrestling. Excellent selling, amazing bumping, fantastic looking offense, great storyteller. Phenomenal, indeed."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Blood Pumpwrote on 07.04.2017:[9.0] ""The Face that runs the place" has had a, pun intended' phenomenal run in WWE and NJPW. Before his jump to New Japan I kind of thought he was something of an overrated talent. Good in the ring but lacking of charisma. Sometime in New Japan Styles evolved. He became a much better worker, gained psychology and charisma and even learned how to use a mic! Its often said Styles is the Shawn Michaels of this era, and I kind of think that's a little unfair to AJ. Hes the AJ Styles of this era and has already had a HoF worthy run in the WWE that'll only grow with accolades in the years to come."
Rating: 9.0
Sentiment: 0.2675964187327824
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jtsilver101wrote on 06.04.2017:[9.0] "Styles has come into his own in WWE. The current WWE Champion, deserves this run. His mic skills have improved, he never misses a beat when in the ring, and has been the #1 most interesting character/superstar/wrestler of 2016. Taking the long road to WWE was the best thing AJ ever did, he will without a doubt go down in history as one of the greatest Wrestlers ever."
Rating: 9.0
Sentiment: 0.42430555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Original Copywrote on 04.04.2017:[10.0] "AJ Styles is without doubt the best wrestler of the world , he can do anything , he do high-flying , Technical , striking , and AJ has good matches against all . This Man is Just PHENOMENAL!"
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheWrestlingFanwrote on 12.03.2017:[10.0] "Simply the best modern wrestler in current era. He can work any kind of wrestling style, he has put so many instant classics. He has also been improving his promo skills, too, since being in Japan. He truly deserves to be a main event guy in any company he works for."
Rating: 10.0
Sentiment: 0.3083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Changeling45wrote on 21.02.2017:[10.0] "I rank AJ Styles as the top competitor and worker of the past 10 years.  He proved time and time again in his early years that he has the ability to put on wrestling clinics and exhibit jawdropping athleticism, but what put him over the edge for me was his evolution into a fundamentally flawless worker after he adapted to the NJPW style and changed his approach due to his body having a lot of miles on it.  At this point he can basically work any type of match with any type of competitor, with the cherry on top being the fact that no one can make someone look better than AJ Styles does.  He's top notch at selling, never takes naps in the ring, portrays every encounter as a real competition and is good or great at basically every trait necessary to be a good competitor."
Rating: 10.0
Sentiment: 0.30892857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KASHwrote on 13.02.2017:[10.0] "Zeit für eine Neuformulierung meiner 10 Punkte Bewertung. Auch vor WWE war er schon einer der besten der Welt. Jetzt ist er schon mehr als 1 Jahr bei WWE und er überraschte mich immernoch: Er ist tatsächlich noch besser als je erwartet. Er ist ein Chamäleon des Wrestlings. Egal in welcher Liga, er passt sich an die Umgebung und den dort herrschenden Stil perfekt an und kann mit jedem ein gutes Match zaubern. Dazu hat er sich über die Jahre unheimlich in seinem Auftreten und seiner Ausdrucksweise verbessert. Der perfekte Sports Entertainer, egal ob Face oder Heel, Gimmick Match oder Irrwitzige Stipulation, Highflying oder Puroreso. AJ kann alle Disziplin. Alles andere als 10 wäre falsch. Zudem hat ihn WWE scheinbar als neuen Shawn Michaels für sich entdeckt. Alles was er anfasst wird zu gold und er scheint jetzt schon diesen besonderen Main Eventer Status erreicht zu haben, wie ihn Michaels damals inne hatte. Keine Niederlage schadet ihm, weil er auf unfassbar hohem Niveau stets abliefert. Der beste aktive Sports Entertainer der Welt."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Chekerwrote on 12.02.2017:[9.0] "I've been watching AJ Styles for a few years now and I knew he was a top 10 wrestler in the world the moment I saw him, even back then, but he honestly got better after that. I think he peaked in NJPW - great wrestler, great look, great charisma, acceptable promo. He's my other favourite, tied with Nakamura, and the reason Styles doesn't get a 10 is the same reason I didn't give Nakamura a 10 - WWE."
Rating: 9.0
Sentiment: 0.3675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Argylexwrote on 10.02.2017:[10.0] "Amazing overall wrestler and character, in the same category as Michaels, Jericho, Punk etc.  Let's just hope that he ages well in the following years"
Rating: 10.0
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rllywrote on 07.02.2017:[9.0] "Mic-Skills: Manchmal ist er am Mic sogar sehr gut. Aber manchmal ist es einfach richtig lächerlich. Er leistet am Mic insgesamt gute Leistung. Ich finde es auch nett wie herablassend er manche Sachen sagt. 8/10 Ring-Skills: Muss man nicht viel sagen. Sein Moveset ist an Vielfalt nicht zu überbieten und er ist einer der talentiertesten momentan. 10/10 Gimmick: Finde ich eigentlich ziemlich gut, jedoch fand ich wurde Aj Styles in TNA besser dargestellt wenn es um den Punkt Gimmick geht. 9/10  =9"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: 450Splashwrote on 04.02.2017:[10.0] "The Total Package, he is incredible. He is in WWE for now 1 year and it seems like he has always been here, he has done awesome matches and he is actually one of the best wrestler in the world."
Rating: 10.0
Sentiment: 0.58
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Real Raterwrote on 21.01.2017:[8.0] "Ring: Im Ring sehr stark aber auch kein Über Performer. 9/10 (50%) Punkte   Promos/Schauspieltalent:Leider nir durschnitt. 6/10 (25%)  Charisma/Statur/Gimmick:Auch hier nur durschnittlich. 6/10 (25%)  Sind dann insgesamt 7, 5 Punkte für The Phenomenal.   = 8 Punkte"
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JordanACEwrote on 19.01.2017:[10.0] "AJ is every bit as good if not better than Shawn Michaels. No one can touch him in the ring, very solid on the mic, the nickname "The Phenomenal" couldn't be more accurate."
Rating: 10.0
Sentiment: 0.30833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MarkyMark0wrote on 16.01.2017:[10.0] "AJ Styles is a wrestler that when mentioned gets the word "overrated" thrown into the conversation every once in a while and do I believe that he's overrated, no, not one bit, and he proves it with his in ring work. AJ Styles is one of the greatest wrestlers of all time and forever will be. Since he started about 17 years ago he was great in the ring and now at the age of 39 he's still performing just as good, maybe even better. You can argue about his mic work which is fine, but what you can't argue over is how great he is."
Rating: 10.0
Sentiment: 0.6452380952380953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Speeblewrote on 10.01.2017:[6.0] "Aside from his WK 10 match against Nakamura, my only exposure to Styles is through his WWE work, and I have to say I've not been impressed so far. I can't think of a single match he's had in WWE that sticks out to me, the closest I can think is his MITB match with Cena, but that was only because I enjoyed the story of Styles out-wrestling Cena. It was hardly edge-of-your seat material. Overall, I find him to be a consistent, solid but completely unmemorable wrestler that I genuinely believe is one of the most overrated wrestlers I have ever watched."
Rating: 6.0
Sentiment: 0.19130036630036631
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: PaulY2Jwrote on 08.01.2017:[10.0] "He is one of the best wrestlers of our generation, delivers great matches with regularity, maybe not the best 'Big match' wrestler today like Okada/Omega. Puts great psychology with his ability in-ring and has a great moveset that allow him to not use the same moves match after match."
Rating: 10.0
Sentiment: 0.6285714285714284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: styles82wrote on 08.01.2017:[10.0] "Er ist für mich vielleicht der beste Wrestler der Welt aber auf jeden Fall der beste in der WWE. Er ist von der Technik unglaublich stark ist schnell und kann glaube ich mit einem Haufen Mist ein gutes Match abliefern. In nicht mal einem Jahr WWE Champ geworden und für mich der Wrestler 2016 . Er wird auch mit dem Mic Immer besser. Hoffe er bleibt noch lange bei WWE und holt noch oft den WWE Gürtel"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: rjsbx11wrote on 06.01.2017:[10.0] "Once lauded as the "best wrestler to never have stepped in the WWE. " A. J. Styles was the face of TNA, through all of its faces from an ultra athletic risk taker to a polished veteran who became a great singles and tag wrestler before leaving the company, because he was taken for granted. The indie and NJPW run that followed helped establish A. J. Styles as a generational great. Styles' clashes with Suzuki, Okada and Naka backed up this claim.  Styles by leaving TNA, seemingly became more intense, free and proved his worth company to company. When Styles arrived in WWE, many felt he would just become a midcard fodder, as some result for anti-TNA resentment from Vince and co. However, cream always rises to the top. Styles is bar none a top 3 wrestler in the world, his athleticism, mat skills, aerial ability, selling, bumping and psychology are elite, and he has really proved critics wrong by becoming entertaining on the mic. He became WWE's best hand in 2016, and 2017 should be no different. Will Styles wind up being the GOAT, time will tell. But the fact remains, he is simply phenomenal."
Rating: 10.0
Sentiment: 0.40263157894736845
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Joeytheboywrote on 06.01.2017:[10.0] "Has carried wwe for the past year and has been consistently been putting on great performances since coming to the company. So glad he is champion right now because there is no one better on smackdown or in the company."
Rating: 10.0
Sentiment: 0.34761904761904766
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: molemaster43wrote on 05.01.2017:[10.0] "One of the greatest wrestlers of all time continues to build his legacy through consistently great performances in his WWE run, and dominates on the microphone and in the ring each week. My favorite wrestler currently working probably."
Rating: 10.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Spartak87wrote on 01.01.2017:[10.0] "Amazing wrestler. He seems to get better with age. One of the best ever. There is no doubt. TNA, ROH, NJPW, WWE, he has been a champion everywhere he goes. Top 5 all time in my opinion."
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: WWE Fan 16wrote on 26.12.2016:[8.0] "Eigentlich gibt es nicht viel, was man gegen ihn einwenden könnte. Technisch auf jeden Fall einer der Besten der Welt. Als Publikumsliebling kam er gut an, als Heel gefällt er mir persönlich nicht so sehr, da er dann - gerade bei WWE - doch eher bejubelt, denn ausgebuht wird. Auch sein Charisma lässt ein wenig zu wünschen übrig, wenn er sich für Siege gegen einen James Ellsworth vom Publikum feiern lässt, obwohl er es eigentlich beleidigen sollte. Allerdings habe ich die Hoffnung, ihn schon bald wieder als Face zu sehen. Insgesamt komme ich daher auf folgende Bewertung: 10/10 Technik 07/10 Mic-Work 07/10 Charisma 09/10 Face-Work 07/10 Heel-Work = 8, 00 => 8 Punkte (gut)"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: marexcelwrote on 23.12.2016:[10.0] "DER Star bei TNA, Star in den Indys, Star in Japan und nun ist sein erstes Jahr in der WWE bald herum. Mega Pop beim Debüt und es folgte ein sichtlich nervöser Beginn mit durchwachsenen Stories und einer Niederlage bei Mania. Er ist im Ring so eindrucksvoll, dass er wie Owens & Co in bester Bullet Club-Manier als Heel gefeiert wird, während seine Face-Gegner einen schweren Stand haben. Wurde in seinem ersten Jahr WWE World Champ und durfte in herausragenden Matches Cena besiegen. Ich hätte mir gewünscht, dass die The Club-Geschichte zum Erfolg beiträgt, aber letztendlich war sie eher Hemmschuh als Sprungbrett. Seine Promos sitzen, im Ring ist er wohl DER Performer zurzeit. AJ Styles hat (fast) alles und kann (fast) alles. Look, In-Ring-Skills und Charisma im 9er-10er-Bereich, da fallen seine etwas überhasteten Mic-Skills nicht ins Gewicht. Fand ihn bei ROH und TNA gut, seit seiner WWE-Ära bin ich Fan."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: hrikygwrote on 23.12.2016:[10.0] "No doubt he is the best overall wrestler in the world at the moment. His run in NJPW, TNA, ROH and now finally in WWE is great. No more words... 10 outta 10."
Rating: 10.0
Sentiment: 0.31
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheMan89wrote on 22.12.2016:[10.0] "AJ Styles is the best in ring talent in the WWE today and wrestling in general. Every time I see him in the ring he always is the best match on the card it seems like. The WWE has used him well making him the WWE Champion which he deserves after so many hard earned years on the independent circuit, Japan, and TNA. He was the face of TNA but TNA did not use him all the way which confuses me to this day. He can cut really good promos as a heel but his wrestling ability is what it is all about. He is the Shawn Michaels of this generation in my opinion because of his great in ring psychology and talent. All of his programs so far in the WWE have been really good to say the least - Jericho, Reigns, Cena, and Ambrose. I wish he would of came to the WWE sooner but the WWE may have not used him properly if he did not work around the world so many years to hone his craft."
Rating: 10.0
Sentiment: 0.366025641025641
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Jobbswrote on 07.12.2016:[10.0] "I still consider this guy to be one of my favorites but his run from May to now has been quite lackluster as his matches with Cena just disappointed me and the TLC match with Ambrose was meh. Had a few classics with Roman but otherwise the WWE run for Styles has been mostly entertaining though I greatly loved his work outside of WWE."
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: arrancarwrote on 06.12.2016:[8.0] "AJ Styles is a great wrestler. His style is very unique and he's definitely been very innovative in the wrestling scene since the early 2000s. He's wrestled all over the world and proven himself to be a fantastic draw. He's done a great job playing both heel and face characters while also remaining incredibly over under both alignments. The thing that has held AJ back for me from considering him one of the greatest in the world is that he has had very few matches that I've seen that have been what I consider beyond great. He's had an extraordinary number of great matches, but I haven't found him to have very many matches that go beyond my expectations and really grab my attention as matches that I will remember for many years to come. From what I've seen of his early ROH days he perhaps had his best matches back then. His NJPW run from 2014/2015 was pretty great and arguably his best performances according to popular opinion, but none of the matches he's had from then (that I've seen) were ones that really made me think "this guy is one of the best wrestlers in the world". His WWE run is fun so far, and with better characterisation, but the match quality hasn't been nearly as good as the NJPW stuff. Occasionally his pacing feels a bit off, and his chemistry with many wrestlers seems to suffer every now and then, which is maybe why his performances don't grab me so strongly. AJ performs all the wrestling basics perfectly. He just misses a few key proponents to being one of the world's best."
Rating: 8.0
Sentiment: 0.4714639639639639
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SamuelElJaxonwrote on 04.12.2016:[10.0] "One of the best wrestlers in the world. You don't just hand a guy the WWE championship after nine months. His current gimmick is a little sad because it feels like he's playing second fiddle to Kevin Owens, but he's good in any situation you put him in."
Rating: 10.0
Sentiment: 0.16874999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: indyreviewswrote on 03.12.2016:[10.0] "AJ Styles in one of the best wrestlers in the world right now, and he is quite possibly the greatest wrestler of all time. His in-ring work is phenomenal. I personally have never been endeared to his mic work as much as I have been to someone like Kevin Steen, but don't get me wrong - he's ten times better on the mic than the majority of wrestlers right now. However, what really sets him apart is his natural charisma - there's something about AJ Styles that makes you want to root for him even if you know he's supposed to be drawing major heat. His finishing move is interesting to watch and is always a joy to watch. He plays the arrogant heel extremely well, but is versatile to pull off astounding face work with just as much ease. AJ Styles is one of the greatest wrestlers right now, and his current run in WWE has been amazing."
Rating: 10.0
Sentiment: 0.32585403726708073
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MAGICIANwrote on 26.11.2016:[10.0] "Ich fasse es einfach mal kurz, er ist 2016 nun ohne jeglichen Zweifel der beste Wrestler der Welt. Der HBK unserer Generation. Jeder der mit ihm geworkt hat, wurde besser und sah grandios aus. Eine sehr seltene Fähigkeit. In 2 Jahren wird er im Olymp mit Misawa, Kobashi, HBK & Tanahashi sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AtticusFinchwrote on 25.11.2016:[10.0] "There's no doubt in my mind that AJ Styles is the very best in the WWE (and maybe even the world). He's nearly 40 and still pulling off insane bumps. A guy who helped put a lot of indie companies on the map and potentially helped make New Japan a bit more appealing to Westerners/non-fans who weren't familiar with the product. TNA really dropped the ball with him and it felt like just when they seemed to understand the greatness in front of them, they let it slip. AJ took a risk on himself and it paid off. His face work can be hit or miss at times, but when it's time to play the arrogant heel, he's excellent. It even feels like his recent heel work in the WWE has been his best. Never thought I'd see AJ Styles as a WWE Champion, but the dude deserves it and has proven his worth. He can make anyone look like a star while still looking like one himself."
Rating: 10.0
Sentiment: 0.2936688311688312
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: mdbnasewrote on 20.11.2016:[9.0] "Einer der großartigsten und unterhaltsamsten Indy-Wrestler. Super Techniker und immer für 'ne Überraschung gut! Hart im nehmen und ein prima Worker! 10 pts. - ach ja, seine botches bringen mich auch immer wieder zum schmunzeln... gehört bei dem Stil einfach dazu!    Anmerkung 2016: Nun ist er also in der WWE angekommen. Im Ring immer noch klasse & die Botches der Anfangszeit (v. a. bei TNA) sind fast vergessen. Am Mic hat er dafür etwas nachgelassen, wie ich finde. Seine Matches sind aber weiterhin meist überragend."
Rating: 9.0
Sentiment: 0.42552083333333324
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Segri98wrote on 12.11.2016:[10.0] "Zu AJ Styles muss man nicht viel sagen. Technisch beinahe Perfekt, liefert mit jedem Gegner top Matches ab und ist schlicht der beste Wrestler der Welt. Wenn irgendjemand 10 Punkte verdient hat ist es AJ Styles"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kasper Faulwrote on 08.11.2016:[10.0] "Ganz klar mein Lieblingswrestler der Neuzeit. Unfassbar auch wie er sich außerhalb des Rings gemacht hat.  Kann mit jedem Wrestler ein MOTYC hinlegen. Unglaubliches Gesamtpaket"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: gmstyleswrote on 02.11.2016:[10.0] "A living legend. This guy has been the face of TNA for 8 years, he has been main eventing NJPW for 2 years and ROH, he signed for WWE in January 2016 and in 9 months he became WWE Champion. 9 months. This guy was signed by WWE and they thought he should have been a midcarder; well AJ proved everybody wrong again and he established as a main eventer even in a tough place like WWE. He is probably the only guy i would like to see beating the CM Punk record as WWE Champ (434 days)."
Rating: 10.0
Sentiment: -0.11111111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Justtwrote on 01.11.2016:[10.0] "The best wrestler in the world right now, with no doubt. He is an incredible wrestler and a great person. I love his run in Japan as the member of the Bullet Club and he had a lot of good matches there."
Rating: 10.0
Sentiment: 0.6976190476190477
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Squared Circlewrote on 20.10.2016:[5.0] "Career minor leaguer.  Dreadfully over pushed.  Good on the mic.  Has a decent move set.  Way undersized to be remotely believable.  Works his tail off to perform.  Would likely receive a CM Punk level beat down in a real fight."
Rating: 5.0
Sentiment: 0.045138888888888874
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheChinThatGotTheWinwrote on 19.10.2016:[10.0] "AJ Styles is phenomenal! He's accomplished everything there's to accomplish in wrestling, he's won championships in every company all over the world and now he's the WWE champ. Great in the ring, can adapt to any wrestling style and good on the mic."
Rating: 10.0
Sentiment: 0.58125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "Schon zu TNA-Zeiten einfach überragend. Sobald AJ den Ring betritt weiß man einfach jedes Mal, dass gleich etwas geschehen wird. Selbst im "soften" WWE-Style immer wieder atemberaubend. Ich hoffe, dass er uns noch lange erhalten bleibt.   PS. Am Mic als Heel deutlich unterhaltsamer als als Face."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Snedgewrote on 16.10.2016:[10.0] "Ja, das ist in der Tat einfach nur phänomenal, wie ein 40-jähriger doch sogar beim Marktführer die Nummer 1 ist! Und dass obwohl Vince McMahon natürlich wie immer versucht hat, den TNA-Guy unten zu halten, indem er sein Momentum gleich erstmal mit einem völlig verfrühten Heel-Turn (trotz rekordverdächtigen Merchandise-Sells und einem grottigen Theme) und einer Wrestlemania-Niederlage gegen den noch älteren oftmals nur teilzeit-wrestlenden Jericho zu stoppen. Irgendwie hat sich Qualität dann doch durchgesetzt (zumindest noch, ich ahne da irgendwie noch Ungutes von Vince, um den "little twerp" abzusägen ... ). Er war in allen heutigen Top-Ligen ganz oben. Sein Moveset ist awesome. Trotz fast 100 kg kann er mit 70-80 kg leichten 20-jährigen Highflyern mithalten. Da kann man trotz ausbaufähigem Mic-Work einfach nur 10 Punkte geben! Wer mir heutzutage jemand Beeindruckenderen zeigen kann, soll das bitte tun. Aber ich wüsste keinen."
Rating: 10.0
Sentiment: 0.3541666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheOneWhoKnockswrote on 11.10.2016:[10.0] "With his current run in WWE, which has surpassed everyone's expectations and where he has finally developed some great microphone skills, something he was always lacking in, and where he has had some wonderful matches with Roman Reigns, John Cena and Dean Ambrose, wrestlers who, in all honesty, don't have half the talent he does, AJ has finally proved to all the doubters that he is indeed one of the greatest of all time, and the greatest performer in American wrestling today. Even if he hadn't come to WWE, he would have been remembered for his astonishing run in NJPW from 2014-16, finally showing just how much talent TNA had surpressed (despite always SAYING he was the face of their company, they never fully got behind him), putting on several instant classics with the likes of Minoru Suzuki, Hiroshi Tanahashi, Kota Ibushi, Kazuchika Okada and Shinsuke Nakamura, and if not that, he would have been remembered as the best and most undervalued performer TNA had, remembered half for all the awful bullshit they put him through such as making him a comedy sidekick to Christian Cage, Ric Flair Jr and a 1997-97 Sting ripoff and putting him in the infamous Claire Lynch storyline but also for never phoning it in and producing quality match after quality match with his amazing high flying and technical skills across the years, in particular his bouts with Kurt Angle, Samoa Joe and Christopher Daniels. AJ is not only "phenomenal", he's one of the greatest of all time and the greatest in American wrestling today."
Rating: 10.0
Sentiment: 0.2352688172043011
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Luv all wrestlingwrote on 09.10.2016:[10.0] "AJ Styles is a legend, he has had a long career as a main eventer in TNA, ROH, NJPW and the indies, and is now tearing it up in WWE as the champ that runs the camp."
Rating: 10.0
Sentiment: 0.05833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JimSRwrote on 02.10.2016:[10.0] "One of the best wrestlers ever lived. AJ Styles is one of the wrestlers that will never be forgotten. His matches with Kurt Angle, Kazuchica Okada, Chistopher Daniels, Samoa Joe and CM Punk were great. What an amazing wrestler!"
Rating: 10.0
Sentiment: 0.8500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Zeocrymerwrote on 30.09.2016:[10.0] "It would not surprise me if in 10 years, AJ Styles (along with Bryan Danielson) will be seen as the standard bearers for western wrestling. One could make the argument that as of his WWE Heavyweight championship win that AJ is the most accomplished western wrestler of the 21st century; the fact that his accolades include main titles in NWA, TNA, NJPW, WWE and Ring of Honor (though admittedly it was a second primary title that was absorbed into the main) adds credence to this. But beyond the accolades, AJ Styles is a tramendous in ring worker, working everything from brawling, to grappling, to high flying. In many of his interviews, Styles puts emphasis on the space in between the moves, the small flourishes that can turn a good match into a great match; and AJ has a lot of great matches under his belt. I tried to go this entire review without mentioning the word, but honestly, AJ Styles has done more than enough to truly own up to the word "Phenomenal"."
Rating: 10.0
Sentiment: 0.31013888888888885
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Buu2020wrote on 30.09.2016:[10.0] "One of the greatest of all time! Has one countless championships across TNA, WWE And NJPW for a reason. Consistently puts on 5 star matches. Some of his best include his matches against Shinsuke at WK10, Cena at SS, Osprey at HS, the list goes on and on.  He truly is this generations Shawn Micheals"
Rating: 10.0
Sentiment: 0.5625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: umarthegreat15wrote on 22.09.2016:[10.0] "He is the absolute best at the moment, in the world for me. He is killing it. Every match of his, is great. And the character he is rolling with on SDLive nowadays is so good. Just my favorite rn, period. I mean, recently at Backlash, he gave Ambrose probably the best match of his career and easily the best of the year. He BEAT John Cena.. twice. He is THE WWE Champion. P1."
Rating: 10.0
Sentiment: 0.5320833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NYC weak stylewrote on 20.09.2016:[10.0] "Arguably the greatest pro wrestler over the past 10 years. Earlier in his career he was the most innovative and jaw dropping high flyer in the US. Nearing 40 years of age, hes slowed down a little, but now he incorporates more technical & brawling elements along with the occasional high flying move. Hes finally getting the mainstream exposure that he deserves and I couldn't be more proud of him, although I do feel bad for the younger WWE fans who have never watched this guy's work previous to WWE."
Rating: 10.0
Sentiment: 0.12027777777777779
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Professorwrote on 19.09.2016:[10.0] "AJ Styles, lange als farbloses, wenngleich technisch hervorragendes TNA Eigengewächs belächelt, befindet sich momentan sicherlich auf dem Höhepunkt seiner Karriere. Ein deutlich verbessertes Micwork und Charisma hat er sich seit seinem Abgang von TNA zugelegt und ganz zu Recht steht er im Moment an der Spitze des Smackdown Rosters. 2015 bei NJPW schon meiner Meinung nach der kompletteste Wrestler der Welt im Moment, 2016 bei WWE mindestens genau so gut. Ich wünsche ihm noch eine sehr lange, erfolgreiche und verletzungsfreie Karriere. Und uns Fans noch viele gute Matches mit ihm."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Titansrevengerwrote on 18.09.2016:[8.0] "I agree with most that AJ is a great wrestler. He has defied the odds and worked hard and has been successful in three major promotions. He can get over as a heel or face and puts on ... well phenomenal matches. What else is there to say?"
Rating: 8.0
Sentiment: 0.38680555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Y2Mikewrote on 15.09.2016:[10.0] "The Phenomenal AJ Styles ist im Ring absolut genial. Jedoch fehlt ihm das gewisse Etwas, um zum absoluten Superstar zu werden. Mit Ric Flair an seiner Seite wirkt er auch charismatischer und meiner Meinung nach macht er sich seit seinem Heelturn auch besser am Mic.  Update 15. 09. 2016: THE FACE THAT RUNS THE PLACE - 10 Punkte für den zurzeit besten Wrestler der Welt. Die Zeit in Japan hat ihm mehr als gut getan. Nun hat er den IT-Factor, den ich damals bei ihm noch vermisst hatte."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Nigglesojanicwrote on 13.09.2016:[10.0] "Ich hatte bis zum Royal Rumble kein Match von ihm gesehen, da ich mich ehrlich gesagt nicht für Wrestling außerhalb der WWE interessiere, aber das was er seitdem abgeliefert hat ist Gold wert. Durfte am Mikro noch nicht so richtig ran, aber das macht ja auch nichts, da er im Ring PHENOMENAL ist. Freue mich schon auf zukünftige Matches und Fehden mit oder gegen seine ehemaligen Kumpanen und andere. Seinen Haarschnitt finde ich allerdings komisch. :D :D Edit 23. 05. 2016: Rauf auf 10 Punkte. Wahnsinn, was er in seinen 2 Matches gegen Reigns gezeigt hat. Nach kurzer Zeit schon einer meiner absoluten Lieblingswrestler. Hätte den Gürtel definitiv verdient gehabt. Edit 13. 05. 2016: als Heel saustark und endlich Champion. WAHNSINN!"
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Brainbreakerwrote on 12.09.2016:[10.0] "(1/2016) Was will man über Styles noch sagen, was noch nicht gesagt wurde? Er hat bei TNA die XDivision groß gemacht, dort für dutzende Match- und Fehdenklassiker gesorgt, mit Leuten wie Angle, Abyss, Daniels oder Joe. Er hat sein Gimmick mehrfach mit unterschiedlichem Erfolg angepasst. In dieser Hinsicht konnte er aber vor allem ab 2014 in NJPW als Bullet Clubber herausstechen. Matches gegen die Maineventer im Puroresu-Ring wurden mindestens geil und oft episch. Inzwischen ist er so weit geformt, dass ich keinerlei Zweifel hege, dass ein absehbarer Run bei WWE im Mainevent münden muss. EDIT (9/2016): Nicht einmal ein 3/4 Jahr später ist Styles nicht nur im ME angekommen, sondern auch der dominierende Heel in der WWE. Er ist cocky und expressiv im Ring und Mic wie ein DX-HBK zu seiner besten Zeit, wird aber gleichzeitig dominant dargestellt, was seine Glaubwürdigkeit durch die Decke drückt. Truly the face that runs the place."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MusSanwrote on 12.09.2016:[10.0] "Ein guter Worker. Bei TNA hielt ich nicht von ihm, aber bei NJPW war er einfach grandios. Endlich ist er WWE Champion, nachdem Booking am Anfang, hatte ich (fast) jegliche Hoffnung verloren. Er ist verdient WWE Champion. Ich verstehe nicht, wieso ihn die WWE nicht früher verplichtete."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Axel Cagewrote on 12.09.2016:[10.0] "What can I say that hasn't been said already, AJ Styles isn't just phenomenal, he IS the definition of phenomenal. I've seen him all the way back to 2009, and I've been entertained all the way through. He's soaring as a heel right now, but I prefer him as a face, he's just to talented and likeable to be hated, he's one of the nicest guys you'll see in your life. For winning the biggest title in all of the promotions he's been in, and just winning titles period, for constantly putting on MOTY candidates every year, it's safe to say that AJ Styles is the best wrestler in the world right now."
Rating: 10.0
Sentiment: 0.3226190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ApexOfEvolutionwrote on 10.09.2016:[10.0] "Der beste tna-Wrestler aller Zeiten. Okay, das klingt jetzt erstmal nicht wie ein Kompliment, ist aber so gemeint. Man hatte auch nie die Sorge als er zu NJPW ging, dass er da irgendwie überfordert sein könnte und seine Matches gegen Tanahashi und Okada haben das natürlich auch bestätigt. Nun ist er bei der WWE und wird dort zu meiner Überraschung richtig gut eingesetzt. Seine InRing-Skills und seine Ausstrahlung sind klare 10 Punkte wert und auch wnn ich für das MicWork nur 9 Punkte geben kann, liegt das Gesamtergebnis bei klaren 10 Punkten."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Phenomenal 1551wrote on 09.09.2016:[10.0] "AJ Styles, mit der Grund, warum ich derzeit noch WWE verfolge. Habe ihn 2005 das erste mal in der X-Division gesehen und immer auf den Tag gewartet, dass er zur WWE kommt. Hat seinen Charakter am Ende seiner TNA-Zeit und bei New Japan noch einmal weiter entwickelt. Im Ring meiner Meinung nach mit der beste der Welt, auch wenn sein mittlerweile "fortgeschrittenes" Alter und evtl auch die WWE ihn nicht mehr alles zeigen lassen. Dennoch bleibt er, egal ob als Heel oder Face, phenomenal!"
Rating: 10.0
Sentiment: 0.4204545454545454
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SpursFanwrote on 04.09.2016:[10.0] "He's not a wrestler, he's THE wrestler. Amazing performer, he constantly developed his skills and capabilities during his career and now I think there's nobody like him in any part of the world. Simply perfect."
Rating: 10.0
Sentiment: 0.5666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KO Maniacwrote on 23.08.2016:[9.0] "AJ.. Eins meiner lieblinge. Im Ring ist er der beste. also 10 Punkte. Am Mic nicht so gut, 8 Punkte. Charisma besteht, 9 Punkte. So kommt er glatt auf 9 Punkte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: croatiantwat1950wrote on 22.08.2016:[10.0] "I love AJ. Probably a guy worthy of Top 3 wrestlers in 21st century list. As sloppy as he can be on the mic, he sure backs it up as a heel. His feuds with Y2J and Cena have been great and it's just the beginning. Hopefully he will win the WWE title by Royal Rumble because he is by far the best all-round guy on Smackdown."
Rating: 10.0
Sentiment: 0.41166666666666674
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Doshin92wrote on 14.08.2016:[10.0] "Aj Styles ist für mich und vielen anderen der zur Zeit beste InRing Wrestler der Welt. Er überzeugte bei jeder Liga für die er angetreten ist von ROH oder TNA bis hin zu NJPW und jetzt WWE. Ein Wrestler der im Stande ist mit jeden anderen Performer ein gutes Match zu liefern. Ich freue mich schon auf folgende WWE Rivalitäten und hoffe er wird dort auch weiterhin gewürdigt und in den richtigen Card Regionen eingesetzt. Seine Catchphrase "I Am Phenomenal" ist nicht nur ein Spruch sonder auch eine Tatsache die AJ mehr als einmal bewiesen hat."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DustinGrimes1995wrote on 08.08.2016:[10.0] "AJ Styles is the very best wrestler in the world today. Watched him since the early days of TNA, Japan, and now finally WWE. Love the Styles-Cena feud."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: kochiwrote on 06.08.2016:[10.0] "The best wrestler in the world today. In the 2000's he was the best high flyer in the world and since then he's slowed his match pace down and evolved into a more complete wrestler. His psychology is absolutely amazing and he's got a charisma that hooks you immediately. This guy deserves a WWE title run and should go down as one of the best wrestlers of all time."
Rating: 10.0
Sentiment: 0.4498765432098766
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NHJ2190wrote on 04.08.2016:[7.0] "Im Ring wirklich einer der besten der Welt und das auch auf alle Zeiten. Als Face guck ich ihn mir ebenfalls sehr gerne an. Damit wäre er ohne weiteres bei 9 Punkten gelandet. Was mich allerdings extrem stört ist AJ Styles als Heel. Er ist mMn so unfassbar unglaubwürdig als Heel und hat dann noch seine 2 Mann Security dabei, die mich an die Security von Kurt Angle damals erinnert in Form von Luther Reigns und Mark Jindrak... einfach nur schrecklich. Er hat seinen Skills zu verdanken dass ich ihm momentan noch 7 Punkte gebe, ansonsten wären es auch gut und gerne 5 geworden. UPDATE: Ohne seine beiden Wachmänner ist er als Heel noch deutlich schwächer."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GeekLogicwrote on 25.07.2016:[9.0] "Here is a guy I wish more people knew about 14 years ago. His matches in NJPW and ROH are legendary and still set the mark for matches to come. While I didn't hate him in the Bullet Club he never won me over the way Devitt had. While I have never been a fan of TNA, I did tune in to watch his matches. Eventually I was watching just to see AJ. Once he moved to ROH and NJPW I followed him. He literally introduced me into an entire world of Wresting I knew nothing about.   He is also incredibly nice to his fans and children."
Rating: 9.0
Sentiment: 0.25999999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cavaniwrote on 19.07.2016:[10.0] "Es würde zu lang dauern, all seine Verdienste aufzuzählen. Bei TNA überzeugte er als grandioser Worker, der in manchen Stables auch außerhalb der reinen In-Ring-Arbeit gute Leistungen zeigte. Zum Ende seines TNA-Runs sowie als Anführer des Bullet Club entwickelte seinen Charakter weiter. Er funktionierte als Face zu Beginn seiner Zeit in der WWE. Als Heel ist er im Moment aber göttlich. Zusammen mit Anderson und Gallows reißt er Witze, über die nur sie lachen. Genau wie es bei Heels sein sollte. Sie ergänzen sich in ihre Blödeleien gut und gehen dann aber auch stiff gegen Cena u. a. vor. Im Ring ist Styles in meinen Augen aktuell der beste Aktive in der WWE und auch weltweit unter den Top5."
Rating: 10.0
Sentiment: -0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Damion83wrote on 17.07.2016:[10.0] "AJ ist meines Erachtens nach einer der besten. Super Ausstrahlung, perfekt für's Gimmick. Gut am Mic, auch wenn da noch Luft nach oben ist. Und im Ring phänomenal... Kann auch mit eher "schwächeren" Performern gute Matches zeigen. Für mich derzeit die klare Nummer 1 der WWE.  Edit 16. 07. 2016: Das Booking für ihn ist leider unter allem. Muss sich immer wieder fast schon albern schwach darstellen, erst gegen Kingston und dann gegen Amore... Echt traurig wie die WWE ihn derzeit mit seiner "Security" darstellt. Dennoch bleibt die Wertung bei 10, schließlich hapert es ja nicht bei ihm..."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CrushBanoncawrote on 15.07.2016:[10.0] "AJ Styles will go down as one of the greatest wrestlers of all time. He was already the greatest high flyer in the world throughout the early to mid 2000's, and always remained one of TNA's mos popular stars despite constant misuse and bad booking. And in his run in New Japan he evolved into a brilliant technical wrestler and showed himself to truly be the best wrestler on the planet as of now with his phenomenal (no pun intended) matches with guys like Tanahashi, Okada, Anderson, Nakamura, Naito, Ibushi and so on, and was outstanding in his role as NJPW's top heel. His recent run with WWE has also been excellent so far, working great programs with Chris Jericho, Roman Reigns and John Cena. AJ truly is the phenomenal one, and the best in the world today."
Rating: 10.0
Sentiment: 0.4064003673094582
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ECW444lifewrote on 14.07.2016:[10.0] "aj styles is great now since he has turned heel he is the best in the world with his in ring ability he mic skills and the charisma he has he is the best point blank"
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ThePhenomenal1wrote on 05.07.2016:[7.0] "Bei TNA und New Japan Pro Wrestling war er Weltklasse. Er hat so gute Matches abgeliefert und so viele verschiedene Moves gezeigt. Als er zur WWE kam dachte ich, dass es für ihn dort genau so laufen wird. Aber was jetzt aus ihm geworden ist ist traurig. Die Anfangsfehde gegen Jericho fand ich noch richtig gut auch das AJ bei WrestleMania gegen Jericho verloren hat hat mich nicht wirklich gestört. Aber dann kamen die Titelmatches gegen Roman Reigns. 2 Matches 2 Niederlagen. wie kann die WWE so dumm sein und AJ Styles gegen Roman Reigns 2 mal verlieren lassen? Das ist einfach traurig auch. Wie die WWE Gallows und Anderson einsetzt ist ebenfalls sehr sehr armselig. Die müssen die ganze Zeit bei ihm sein und ihn jetzt vor John Cena beschützen. Wirklich WWE? Vor John Cena? Auch das er das Match gegen Cena nur mit Hilfe gewonnen ist ist einfach nur dumm. Er hat Matches gegen Stars der WWE wir Kevin Owens und Seth Rollins verdient, genau so wie in Japan gegen Nakamura und Okada. Sein moveset in der WWE ist ebenfalls sehr beschränkt was sehr sehr schade ist. Deshalb gibt es nur 7 Punkte obwohl er eigentlich 10 verdient hat."
Rating: 7.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Randomuser12345wrote on 03.07.2016:[9.0] "He's just so fucking good. AJ Styles established himself as the greatest wrestler in the world today following an immense 2015; a year in which he seemingly could do no wrong. MOTY candidates left right and centre. You'd think at the age of 39 he might have slowed down on the crazy bumps he took back in his rise to TNA stardom but nope, he damn near killed himself in a world class performance against Roman at extreme rules 2016. He is pretty much incapable of having a bad match at this stage, you'll always see something clever from him. A world class wrestler who deserves every bit of success he gets in WWE."
Rating: 9.0
Sentiment: 0.08176807760141097
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AmbroseAsylum12wrote on 30.06.2016:[10.0] "Man, oh man. AJ Styles is simply phenomenal. He's great in the ring and since he turned heel he has showed that he can be awesome on the mic. He's having the time of his life at the moment, he's had some great matches in the WWE and his booking has been good. Hopefully he will win the WWE title in the next few years."
Rating: 10.0
Sentiment: 0.5499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AMHTPwrote on 22.06.2016:[9.0] "I don't think there's doubt left in anyone's mind that AJ Styles is an elite wrestler.  He's always been a superior athlete, and it's for that reason he was the heart of TNA's X-Division.  But in NJPW he proved that he's capable of working any (pun not intentional) style, and that he can portray a menacing heel as well as a high-flying babyface.  He's fantastic on the mat, he's gotten leagues better on the microphone, and WWE has done well to book him as a main-eventer.  Anything less would be selling short one of the best wrestlers currently active.  I can't say I respect the man; I've never been able to get past his homophobic beliefs.  But nobody can deny that he's a world-class talent."
Rating: 9.0
Sentiment: 0.14583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: sXe27wrote on 20.06.2016:[9.0] "Ich hätte nie gedacht, dass ich noch Fan von ihm werde. Zu seiner TNA-Zeit zwar ein absoluter Ausnahmekönner im Ring, hat er mich abseits des Seilgevierts ziemlich gelangweilt. Unterdurchschnittlich am Mikro, kein richtiges, oder interessantes Gimmick erkennbar, nur einen Hauch Charisma umgab ihn. Hat sich aber insbesondere in seiner Japan-Zeit noch extrem gemausert, bzw. sein Wrestlingprofil vollkommen gemacht. Der Veteranenstatus und der Indy-Legendenstatus in Verbindung mit seiner Japan-Erfahrung werten sein Gimmick enorm auf. Mittlerweile auch am Mic durchaus anhörbar und im Ring hat er nichts von seinem Können verloren. Kein Wunder, dass er tatsächlich als Independent-Wrestler bei der WWE sofort oben im Main Roster mitmischen durfte. Ein World Title Run sollte daher nur eine Frage der Zeit sein."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: svw1899wrote on 16.06.2016:[9.0] "AJ ist einfach phänomenal! Er hat ein relativ breites Moveset, eine überragende Technik und Charisma. Einer meiner Lieblingswrestler aktuell in der WWE.  Einen Punkt ziehe ich ihm ab für sein Können am Mic. Da kann er noch üben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Veyron22wrote on 15.06.2016:[6.0] "Zu überbewertet und überhaupt nicht mein Fall. 10 Punkte ist er meines Erachtens niemals wert, aber da er so gehypet wird kann er nicht so schlecht sein wie ich empfinde. Ich gebe ihm 6 Punkte für seine bisherige Leistung in der WWE (alles andere ausgenommen, da ich ihn erst seit seinen WWE Zeiten kenne. ) Sollte er sich bessern bzw wenn es an der WWE liegt sie ihn besser darstellen, werde ich meine Wertung natürlich erhöhen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Chosen Onewrote on 09.06.2016:[10.0] "AJ Styles is a great wrestler. His finisher the Styles Clash, Calf Killer, and Phenomenal Forearm are great. I am loving his current feud with John Cena. He is doing great alongside Karl Anderson and Luke Gallows as The Club. He is so talented and agile. Overall he is a true legend 10/10."
Rating: 10.0
Sentiment: 0.505
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cleanerwrote on 05.06.2016:[10.0] "Einer der Besten den die Welt je gesehen hat, da muss man nicht drüber diskutieren. Wrestling, Promos, Charisma - alles Weltklasse"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: nitrop199wrote on 03.05.2016:[10.0] "AJ Styles might be the best in-ring performer in the world today.  The way he can add subtility to every match, the way he can make a great match out of any opponent truly makes him the best in the world for me.  He still has a lot to offer to the wrestling industry, he is in his prime and will be remembered as a legend of the sport without any doubt.  He has been wrestling everywhere in the world, has been wrestling any style, has been wrestling in front of 50 people or 100 000 just by passion. Yet he is still humble.  If i had to choose a role model in wrestling, that would be him."
Rating: 10.0
Sentiment: 0.6499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TrevPuroFanwrote on 01.05.2016:[10.0] "AJ Styles is one of the greatest Pro Wrestlers ever. From making his debut in 1998 for the NWA Wildside, to climbing his ways up to the early days of ROH, to becoming one of TNA's biggest stars ever. Ever since leaving TNA in 2013 and making his NJPW debut, he's been putting on the best matches of his career at the age of 38. He can fly, he can brawl, he can go to the mat. Former NWA Heavyweight Champ, former TNA World Champ, ROH Pure Champ, IWGP Heayweight Champ etc. AJ is fantastic."
Rating: 10.0
Sentiment: 0.44047619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: awesomepunkwrote on 20.04.2016:[10.0] "AJ Styles ist einer der besten Wrestler der Welt. Im Ring einfach nur klasse. Es gibt nur wenige, denen ich genauso gerne zuguck. Schon bei TNA und in Japan einer der ganz großen und er hat die Chance, in der WWE ein ganz großer zu werden. Ich denke AJ Styles ist eine Bereicherung für die WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KingChrizzly619wrote on 16.04.2016:[9.0] "Absoluter Top Wrestler, tolle persönliche Ausstrahlung (10/10 Punkte), momentan super aktuelles Gimmick, hoffentlich wird er er nicht von der WWE verheizt (10/10) sehr schnelle, einige top Highflyer-Moves (10/10 Punkte), einzig allein am Mic gefällt er mir noch nicht so, da ist noch Luft nach oben (7/10). Gibt bei mir einen Gesamtwert von 9/10 Punkten"
Rating: 9.0
Sentiment: 0.4444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Hilljimmy Billwrote on 14.04.2016:[5.0] "Guter Wrestler, aber den Hype um ihn kann ich überhaupt nicht verstehen. Seine Matches fand ich zwar immer irgendwie okay, aber meistens auch etwas langweilig, so wirklich mitgerissen hat er mich nie. Sympathisch ist er mir auch kein bisschen."
Rating: 5.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: WrestlingNerdwrote on 05.04.2016:[9.0] "AJ Styles, ist ein Könner im Ring. Habe ihn damals schon bei TNA abgefeiert, bei New Japan etc. hab ich ihn nun nicht gesehen, weswegen ich diese Veranstaltung mal ausklammer. Also bis auf Kingdom anfang des Jahres gegen Nakamura, was aber gut war. Bei der WWE gefällt er mir auch bisher gut, auch wenn er überwiegend bisher nur gegen Y2J gewrestlet hat. Aber AJ weiß im Ring zu begeistern und tolle Moves zu zeigen. Außerdem kann er noch mit fast 40 ein gutes Tempo gehen. Aber für die 10 Punkte fehlt mir noch was, jedoch muss ich leider feststellen, dass ich selbst noch nicht genau weiß, was es ist. Vielleicht die bisher fehlenden Promos um ein Mic Work wirklich benoten zu könne. Aber allein Wrestlerisch, 9 Punkte!"
Rating: 9.0
Sentiment: 0.19318181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Jack Slaterwrote on 05.04.2016:[4.0] "Also nach all dem Hype um diesen Kerl verstehe ich jetzt irgendwie die Welt nicht mehr. Wahrscheinlich wird man wieder erzählen, dass die WWE ihn ruiniert blabla. Aber der Typ hat mit Jericho geworked.. wenn du da als Babyface nix reißt, dann ist das deine Schuld. Im Ring ist er gut, keine Frage. Aber wirklich so viel besser als die andern im Roster? Besser als Zayn, Cesaro, Owens, Y2J, Seth F'n Rollins ? Glaub ich irgendwie nicht. Charismatisch ist er auf jeden Fall nicht und am Mic is auch nix zu holen. Ich mag ihn nicht will aber nicht allzu unfair sein und ihm hier 0 Punkte geben, auch wenn ichs gern würde."
Rating: 4.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kaderuswrote on 25.03.2016:[10.0] "AJ Styles ist einer der absolut besten!  Hoffentlich darf er bald auch in der WWE mal alles zeigen was er so drauf hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Davor Megacidalwrote on 21.03.2016:[9.0] "The Phenomenal One, One of my favorites in the world right now. The guy is incredible in the ring, has a hell of an arsenal and his technique is unique. His 5 star match is the only 5 star match in TNA history, this guy put that company on the map, had full success in NJPW in a short time (2 years), and is now on the WWE to show what is he made of and why people talk about him around the world. The only low point I can give to him is his lack of charisma when delivering some promos, let's see how he manages this fact when given the golden chance and he botches quite a few times, but hey, nobody is perfect."
Rating: 9.0
Sentiment: 0.2931318681318681
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Laetlaeywrote on 26.02.2016:[9.0] "War schon top in anderen Ligen und sein Start in der WWE auch schon mal beeindruckend. Mit Ihm ist in nächster Zeit 100% zu rechnen . Ich hoffe aber nicht , dass man Ihn nun auf längere Zeit mit Y2J im Team wrestlen lässt auch wenn sie bisher gut miteinander harmonieren... Sehe ihn dann doch eher als Einzelwrestler.. Würde bestimmt eine gute Fehde mit KO abgeben.. Hoffe da tut sich in nächster Zeit was.."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheLoudMouthwrote on 18.02.2016:[10.0] "Ein großartiger Worker, der bei TNA schon absolut brillant war und sich in Japan nochmals auf sämtlichen Ebenen gesteigert hat. Einer der aktuell besten Wrestler überhaupt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DanielBryan1986wrote on 16.02.2016:[10.0] "Er gefiel mir bereits bei TNA sehr gut, Klassiker gegen Joe, Jarrett und Angle kann man sich immer wieder anschauen. Ihn würde ich mit Daniel Bryan, CM Punk, Shawn Michaels und Chris Jericho auf eine Stufe stellen, leider das er mindestens 7Jahre zu spät da ist. Denn einige Klassiker bleiben uns verwehrt. Nach einem Programm mit Chris Jericho würde ich mir Dean Ambrose als Gegner wünschen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Deception649wrote on 14.02.2016:[10.0] "A Great Wrestler who have everything right, the Move-Set, Gimmik, Apperance, Talent... he have it all"
Rating: 10.0
Sentiment: 0.5428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GOERNAIRwrote on 11.02.2016:[9.0] "In der kurzen Zeit bei WWE hat er bereits ne sehr große Aura die ihn umgiebt. Und das mit wenigen Worten. Sein bloßes Auftreten macht Bock auf alles was da noch kommt. Freu mich auf sein erstes großes Match!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wrestlingfan96wrote on 11.02.2016:[10.0] "etwas anderes als eine 10 kann man dem Typen meiner Meinung nach einfach nicht geben. Er ist ein perfekter Wrestler mit gutem Mic-Work. Alle Moves von ihm sind ein Highlight"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: SapolBlackwrote on 03.02.2016:[10.0] "30 Minuten im Rumble, ein Sieg gegen Jericho. Ein besseren Start könnte man nicht haben in der WWE. Umfassbar das er in seinem Alter noch auf die Biggest Stage of them all erscheint.  Nach 16 Jahren da sein, erreicht er sein Ziel. Hoffe wir das er ein große Bereicherung, wird für den Main Event bei der WWE und das er auch Wrestlemania Headlined!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NoNamewrote on 30.01.2016:[10.0] "Einer der besten Wrestler der Welt, ich persönlich finde es einerseits Schade, dass er bei der WWE ist, da ich denke, er wird dort ziemlich limitiert werden, andererseits finde ich hat er es verdient mal in der größten Company der Welt zu sein!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: craigohwrote on 28.01.2016:[9.0] "by far one of the best talents which only recently got the chance to be in WWE, his New Japan run was phenomenal (no pun intended) 5 star matches with Okada, Tanahashi and Nakamura plus being part of one of the most influential stables in Pro Wrestling's recent history with the Bullet Club, a great worker (though the Styles Clash does have it's risks and flaws I admit) and has great ring psychology too. has got better on the mic over the last few years as well (he was not very good before but now he's actually a decent speaker - and compared to some WWE guys *cough cough Reigns, The Uso's, cough cough* nowadays he's great). an amazing talent and I hope he get's a fair shot to be a star in WWE like he was in New Japan and TNA."
Rating: 9.0
Sentiment: 0.3300085879033247
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: iLoehrsiewrote on 28.01.2016:[10.0] "Wie dieser Mann 3x 0. 0 & 2x 2. 0 haben kann ist mir unklar. Styles ist definitiv einer der besten Wrestler, die es heutzutage gibt. Vom Auftritt her einfach mega charismatisch und über seine Moves brauchen wir glaube ich gar nicht zu reden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Naruedyohwrote on 28.01.2016:[10.0] "One of the best wrestler in active. Excellent moves, with great skills to sell them and to innovate and manage the risks. He can make losing hell of entertaining, he got the looks of a champion and excellent mic skills. Hope WWE give him a title shot.   THE GAY COMMUNITY"
Rating: 10.0
Sentiment: 0.6547619047619049
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KC Tabuuwrote on 27.01.2016:[10.0] "Fuckin unbelievably talented guy here. He knows exactly what to do and when to do it every time he steps in the ring. Every time I see him in the ring, he looks like he has a fire inside to wreak havoc over his opponent. His moves are delivered with such intensity, ESPECIALLY his forearm smash. If Vince gets behind him, he WILL run roughshod all over the WWE."
Rating: 10.0
Sentiment: 0.10999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Florian Izumiwrote on 15.01.2016:[10.0] "In seiner besten Form. Mit der beste Wrestler der jemals im Ring stand, sein Attitude und die Charakterrolle sind absolut fantastisch. Meiner Meinung nach, jedoch völlig objektiv bewertet, mit Ambrose, Nakamura und Okada der beste zurzeit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: thielssss8691wrote on 14.01.2016:[10.0] "AJ Style - The Phenomenal, einer der von mir beliebtesten Wrestler, der sich bereits an vielen Orten auf dieser Welt eine Menge an Hype eingeholt hat. Allein durch sein Auftreten im Ring ist er mir so sympathisch geworden!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: HammertonWaywrote on 06.01.2016:[10.0] "It's a shame to see him leave New Japan. His past two years there have made him an even bigger name than he was before already while in TNA. We can only hope that WWE will treat him with respect. At least they won't be able to change his name. After all, there isn't a wrestling fan out there who doesn't know the Phenomenal AJ Styles!"
Rating: 10.0
Sentiment: 0.10162337662337663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kevin434wrote on 03.01.2016:[10.0] "Dieser Mann ist aktuell der drittbeste Wrestler der Welt (nach Nakamura & Tanahashi). Er kann sprichwörtlich mit jedem ein geiles Match worken und beherrscht sowohl den technischen, als auch den High-Flying Wrestling Stil. Er ist zwar keine Charismabombe, aber das ist auch nicht wichtig. Am mic ist er ok. Im Ring macht dieser Mann so verdammt viel Spaß. Er besitzt eine richtig gute In-Ring Psychologie."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MoonsaultsEdgecutionwrote on 28.11.2015:[10.0] "Gleichauf mit Roderick Strong für mich mit weitem Abstand der "Best in the World" 2015, PERIOD~! :-)"
Rating: 10.0
Sentiment: 0.6444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Frompartsunknownwrote on 13.09.2015:[10.0] "AJ Styles. Mein absoluter Fav. in den Indys und nach Seth Rollins 2. Lieblingswrestler. Er hat alles. Er ist im Ring der absolute Wahnsinn, Charismatisch und, auch wenn er selten redet, kann er es auch gut. Ich feier ihn einfach ungemein."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Iam betterthanwrote on 05.09.2015:[10.0] "One of the Best Wrestler today.. Aj Styles is doing a great work in New Japan (Like he have done in TNA) but this year Aj Styles Come off as a new phenomenal one, his every matches are damn Very good.. One of the best."
Rating: 10.0
Sentiment: 0.6403896103896104
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Matt4Wrestlingwrote on 03.09.2015:[8.0] "Durchaus ein guter Allrounder, nur schießt er damit oft übers Ziel hinaus und scheint dann zu sehr von seinem Ego getrieben zu sein. Er sollte sich auf frühere Stärken besinnen und sich mehr auf Bodentechniken besinnen, in sein Alter in das er jetzt kommt das Beste was er tun kann!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Josh76wrote on 10.08.2015:[10.0] "Probably the best pro wrestler in the world! AJ Stlyes pulls off the best moves at ease. Always love to see his matches."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Hunter Dunnwrote on 28.07.2015:[10.0] "As of 2015 he is the greatest thing in professional wrestling today. He is a PHENOMENAL (lol) performer. He is very fluent in the ring with a great moveset. Excellent storytelling and has chemistry with damn near everybody. Hard to find a bad match and has taken over wrestling with the Bullet Club. Hottest act there is right now"
Rating: 10.0
Sentiment: 0.3449134199134199
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ScheuerFutzwrote on 19.07.2015:[8.0] "ein guter bis sehr guter wrestler, natürlich nicht in allem Perfekt aber er workt solide und unterhält in 85% seiner matches, seh ihn gerne."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kenshin Uesugiwrote on 10.07.2015:[8.0] "Sicherlich er kann guten wrestlen bzw sehr gut, zwar nicht regelmäßig aber nun bei NJPW wieder öfter wo er aufblüht. Aber sonst ist er immer noch der gleiche AJ-Style wie zu seiner TNA-Glanzzeit, der zwar stark im Ring ist, bei weiten aber nicht auf dem Level auf den er und viele Fans ihn sehen. In allen anderen wichtigen Bereichen kommt er über ein ordentlich nicht hinaus. Styles hat weder die Ausstrahlung, noch das Charisma und die Persönlichkeit um sich wirklich ganz und gar in die Reihe der heutigen größten Stars und Wrestler zu stellen. Gerade bei NJPW sehe ich das ganz deutlich wenn er da mit Tanahashi, Nakamura und Suzuki arbeitet, bei ihm wirkt es für mich so angestrengt und gewollt aus. Er versucht es ja und hat auch gelernt wie man sich unteranderem als Star zu verhalten hat oder zumindest die "Technik" dafür, aber bei den anderen genannten quellt es förmlich raus und wirkt real. Er ist halt was das angeht nur "normal" und weder im Ring so "phenomenal", noch hat er andere Eigenschaften die das vergessen machen oder überflügeln lassen. Das wirkt sich dann natürlich auch auf seine Arbeit im und außerhalb des Rings aus. Im Grund ist er ein deutlich besserer Shelton Benjamin und viele Fans sehen in ihm etwas, wie bei Christian etwa, was er meiner Meinung nach nicht ist."
Rating: 8.0
Sentiment: 0.13
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DanTalksRasslinwrote on 28.06.2015:[10.0] "True to his nickname, Styles is a truly phenomenal athlete who has only gotten better as time has gone on.  Has matured into a fine technical and chain wrestler, who can still pull out the jaw-dropping spots that made his name in his youth and has also developed into a strong mic worker.  After leaving TNA after accomplishing virtually everything possible in that company, he has experienced a career renaissance as a top name in New Japan while simultaneously maintaining a regular presence stateside in ROH and as one of the most in-demand indy names."
Rating: 10.0
Sentiment: 0.3025974025974026
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Maxicazal5wrote on 20.06.2015:[10.0] "Simply the best in the world, have a charisma that no one have and wrestle like no one.  -- THE PHENOMENAL ONE --"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Viper99wrote on 16.04.2015:[10.0] "GANZ KLARE 10!  Er ist einfach wie es seine Spitzname sagt Phänomenal!  In TNA super Champion in großartigen Matches gegen Daniels oder Angle. In RoH super.  Und in einem Meiner Lieblings Stables:Dem Bullet Club! In New Japan blüht er auch wirklich wieder auf und zeigt ein gutes Match nach dem anderen!"
Rating: 10.0
Sentiment: 0.3068181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: eldenaaaaawrote on 26.03.2015:[10.0] "The benchmark of Independent Wrestling, and maybe Pro Wrestling as a whole. After spending 12 years with TNA, 2014 was Styles' year. His work in New Japan, ROH and the Indies was incomparable. 2X IWGP World Heavyweight Champion, 2X TNA World Heavyweight Champion, 6X X-Division Champion, PWG World Champion, ROH World Tag Team Champion."
Rating: 10.0
Sentiment: 0.18409090909090908
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: zackwoowoowooryderwrote on 24.03.2015:[9.0] "Was ihm vielleicht ein wenig an Charisma fehlt macht er aber durch mehr als sehr gute Leistungen im Ring wieder wet. AJ kann mit eigenltich jedem Wrestler auf der Welt gute Matches worken, was auch für seine Qualitäten spricht."
Rating: 9.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BASStyleswrote on 11.03.2015:[10.0] "er ist und bleibt immer noch einer der besten Wrestler die ich gesehen hab. Hoffe er Wechselt endlich in die WWE und rettet diese am Boden liegende Liga."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ProGraps2018wrote on 17.02.2015:[10.0] "I've been saying it for years, he was the best professional wrestler around, and TNA didn't even know half of the time. He proved that point in everything he did in 2014, and what he continues to do in the first couple of months in 2015. He's at the top of the list, with a handful of wrestlers."
Rating: 10.0
Sentiment: 0.3366666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GoToSleepwrote on 05.02.2015:[9.0] "Im Ring einer der besten Wrestler der Welt! Dank seiner Entwicklung von Highflyer zum vielleicht kompletten Techniker aktuell auf der Welt darf man das ohne Probleme sagen. Ebenso hat er eine Ausstrahlung, die nicht wirklich zu beschreiben ist. Wenn er im den Ring kommt habe ich einfach das Gefühl das muss ein Topstar sein. Das einzige Manko ist sein nicht ganz überragend Micwork, das natürlich nicht schlecht ist aber eben"nur" ordentlich."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: llboxingwrote on 14.01.2015:[8.0] "He has been dazzling wrestling fans for over a decade with his outworldly athleticism.  Has developed into an excellent ring psychologist over the years.  He seems to be a great fit in New Japan, effectively replacing Prince Devitt as leader of the Bullet Club and is very adept at playing the heel.  He still struggles with his promos unfortunately."
Rating: 8.0
Sentiment: 0.45181818181818184
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Matzinhowrote on 09.01.2015:[10.0] "Styles ist meiner Meinung nach momentan so gut wie nie zuvor und ganz nah dran, der beste Wrestler der Welt zu sein, stünde ihm da nicht der überragende Shinsuke Nakamura im Weg. Er hat Grundzüge der charakterlichen Facetten, die ihn zuletzt auch bei TNA auszeichneten, mit in den BULLET Club genommen und sich dort zu einem markanten, glaubhaften Main Event-Heel entwickelt, der den radikalen Push, den er erhalten hat, mit starken Leistungen und einem der besten IWGP Title Runs zurückgezahlt hat, den ich in den 30 Jahren, in denen ich das Produkt verfolge, erlebt habe. Ich bin davon überzeugt, dass wir gerade den Höhepunkt der Karriere von AJ Styles erleben und ich lehne mich lächelnd zurück und freue mich auf das, was jetzt in den nächsten Monaten noch kommt."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TRMBwrote on 26.12.2014:[9.0] "Für den späten Herbst der Karriere blüht Styles seit seinem Weggang von TNA wieder richtig auf. Er hat sich wirklich selbst wieder entdeckt und scheint auch seinen Spass am Business wieder gefunden zu haben, den er nach den langen und schlimmen TNA Jahren wohl verloren hatte. Was gibt es zu Styles zu sagen, was nicht schon gesagt wurde? Einer der talentiertesten Wrestler aller Zeiten, früher ein klasse Highflyer und mit dem Alter hat er sich von einem "normalen Highflyer" zu einem Maineventler entwickelt (ähnlich wie Tanahashi immer noch Highflying-Moves, aber halt auch starkes kontrolliertes Wrestling)."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ROHfan99wrote on 06.12.2014:[10.0] "Ich feiere diesen Mann abgrundtief! Ich schaue ihm so gerne im Ring zu, ich mag einfach seine Art zu catchen. Er ist so langsam und ruhig im Ring, aber haut Sachen und Moves raus die dich jedes mal vom Hocker hauen. Er ist ein klasse Worker, hat viel Charisma. TNA wusste leider nicht, wie sie es mit ihm am besten anstellen. Schön ihn wieder bei ROH zu sehen. Definitiv einer der besten der Welt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Bedderwrote on 25.10.2014:[9.0] "What Styles may lack in charisma he more than makes up for in in-ring talent.  Manages to be hard-hitting and high-flying, he can have a good match with almost anyone.  At 36, he shows no sign of slowing down and still takes sick bumps, shows incredible speed and work-rate in his matches."
Rating: 9.0
Sentiment: 0.246031746031746
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: robrosellwrote on 08.10.2014:[10.0] "Easily the best wrestler now a days, get out of TNA was the best for him business, greatest matches in New Japan Pro Wrestling, ROH and more indys, great year for my favorite wrestler in TNA, sad for the company but the wrestlers also needs money and styles was no afraid to earn more. Respect him."
Rating: 10.0
Sentiment: 0.515426997245179
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: 8BitLegendwrote on 22.09.2014:[8.0] "Hat sich im Spätsommer seiner Karriere bei NJPW neu erfunden. Wirkt dort wie ausgewechselt. Der letzte TNA-Run half jedoch den Charakter zu formen, den er jetzt darstellt. AJ Styles gehört mittlerweile zu den großen Namen des Business und ist der heisseste Import aus dem Westen in Japan. Glückwunsch dafür."
Rating: 8.0
Sentiment: -0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: mrjoshdudewrote on 20.09.2014:[10.0] "He has owned the Indies, he has owned TNA, and now he owns Japan. For anyone that thinks he's past his prime, go watch the 2014 G1 Climax. He is one of the greatest of all time."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AlwaysAngrywrote on 14.09.2014:[10.0] "Aj Styles ties with Daniel Bryan for being the greatest working wrestler Today, he has an expansive move set, and can adapt to any kind of match and his recent stint with NJPW has proved that even late in his career the kid still has it."
Rating: 10.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Phenomenal91wrote on 02.09.2014:[10.0] "This man was, is, and always will be Mr. Total Nonstop Action Wrestling. He represented everything the once-promising promotion stood for. He's athletic, daring, fearless, and exciting. He's without peer among high flyers. He's also an underrated mat wrestler (check out his work defending the ROH Pure Wrestling championship for proof. ) His feud with Dixie Carter allowed him to improve his mic skills, something he had always been lacking before. He's still capable at performing at a high level. He never needed Vince McMahon and the WWE machine to build his legacy. He's currently bringing his abilities to the audiences of New Japan Pro Wrestling. Maybe Global Force Wrestling too? I hope so."
Rating: 10.0
Sentiment: 0.12706493506493505
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kitanoyamawrote on 24.07.2014:[9.0] "Er bringt eine außergewöhnliche Mischung aus Kompaktheit, Robustheit und technischem Können wie es sonst nur sehr wenige Worker aufbieten. Jede Company die ihn unter Vertrag hat kann sich glücklich schätzen ihn zu haben. Ihm fehlt zwar die Ausstrahlung der ganz großem im Geschäft, aber trotzdem wird er zu Recht zu den besten seines Fachs gezählt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Outlawwrote on 22.06.2014:[10.0] "Styles is in my opinion the greatest wrestler in TNA history, he has held every male NWA and TNA title the company has had to offer, multiple time triple crown and grand slam champion. I would have loved to have seen him stay with TNA, but since leaving his in ring work has gotten better and he is IWGP Heavyweight Champion as a member of the Bullet Club now."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GreatDWwrote on 08.05.2014:[10.0] "Großartiger wrestler und großartige moves, im ring hat er viel zu zeigen und kann viele moves kombinieren. Am mic ist er wirklich super und Ausstrahlung hat er auch viel. Diesem Typen kann man glauben das er Wrestling liebt"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Undertalkerwrote on 19.02.2014:[9.0] "Ich mochte ihn schon immer und er ist nach Kurt Angle mein Zweitlieblingswrestler von TNA. Seine In-Ring-Skills sind natürlich einfach nur phänomenal! Er verkörpert die richtige Mischung aus Highflying und Technik. Am Mikro ist AJ eher nur oberer Durchschnitt, aber das fällt bei ihm nicht so stark ins Gewicht, da er diesen Mangel durch sein Charisma teils wieder wettmacht. Auch seine Treue zu TNA und seine Beständigkeit als Wrestler sind positiv hervorzuheben. Er gibt einfach einen sehr sympatischen Worker ab, der sicher auch privat kein Unfreundlicher ist."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: WrestleArtswrote on 17.02.2014:[10.0] "Im Ring war AJ schon immer gut, hat sich in den Jahren jedoch vom spektakulären Highflyer zu einen tollen, kompletten Worker entwickelt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DudeLove177wrote on 06.02.2014:[10.0] "Hoffe er wird eines Tages bei der WWE auftauchen! Find ihn super!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ShawnDravenwrote on 05.01.2014:[10.0] "The heart and soul of TNA. He is to that company what the Undertaker is to WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LS Incwrote on 29.12.2013:[10.0] "The best wrestler that ever wrestle in TNA and one of the most complete wrestlers in the world."
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: FollowTheBuzzardwrote on 24.12.2013:[9.0] "sehr guter Wrestler mit im Vergleich zu anderen großer in-Ring Erfahrung, seine Highflying-moves sitzen auch meistens sehr punktgenau, doch leider lässt sein Mic-Work zu wünschen übrig ansonsten, hat er echt ein riesen Talent und erfüllt jeden Kritikpunkt mit Bravur, bis halt auf sein Mic-Work. Erster Triple-Crown TNA Champion aller Zeiten, Note ist dennoch 9. 0 aber tendierend zur 10. 0"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ProRedstonewrote on 02.11.2013:[9.0] "Einer der besten TNA Worker aller zeiten ... aber irgendwie nicht ganz perfekt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Leonewrote on 23.09.2013:[10.0] "Even though he wrestled 3 low-key matches for them at the beginning of his career, AJ Styles could potentially be described (at the moment, anyway) as the Sting of this generation.  He is 1 of the best American wrestlers to not go to the WWE.  His in-ring quality has not only been high, but consistent.  He rarely has a bad match.  His technical skill is excellent, along with his aerial assault.  In the ring, he is incredibly well polished, and he has shown (as a heel) that he can also be fun on the mic.  Possibly TNA's most reliable worker, this former world heavyweight champion has reached legend status while still in prime shape.  10."
Rating: 10.0
Sentiment: 0.24733333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[9.0] "Also ich sehe schon Parallelen von 'Styles & TNA' zu 'Sting & WCW', mal sehen, ob sich das in Kürze ändern wird, falls es zu keiner Einigung bei Styles' Vertragsverhandlung kommt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Boris The Menacewrote on 20.07.2013:[9.0] "In 20 years from today people will realize that Styles was one of the very best this sport had to offer."
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ThatGuywrote on 27.06.2013:[7.0] "Wohl der einzige Wrestler der mit 35 Jahren und 14 davon als aktiver Wrestler als junges Talent bezeichnet wird.   Aber einer von vielen TNA-Wrestlern die wahrscheinlich aus Angst vor dem Farm-System Ihre Karriere bei TNA geparkt haben und dort nun verstauben. Schade wenn man bedenkt dass AJ Styles ein Top Wrestler ist mit einem guten Maß an Ausstrahlung und Leidenschaft für Wrestling.   Ab und zu bringt er sogar ein gute Promo zustande und scheint sich für nichts zu schade zu sein, letzteres hat ihm aber in seiner Karriere auch geschadet.   Er hätte mehrfach zur WWE wechseln und sein Talent gegen Kollegen wie CM Punk, Dolph Ziggler, Christian, Chris Jericho und andere unter beweis stellen können doch anstatt dessen kümmerte er sich in TNA um Crack-Babies, wurde zum Quasi-Sting in der Aces & 0. 8s Storyline und arbeitet seit 10 Jahren mit den gleichen Leuten.   Stagnation by definition...   Sehr schade"
Rating: 7.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: alsdncjswo34wrote on 19.06.2013:[10.0] "The Phenomenal One A. J. Styles, he is very perfect wrestler of all time in this wrestling business."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Christian Classic Cagewrote on 07.06.2013:[9.0] "AJ Styles ist TNA's Top-Pferd.  Gerade als Tweener zwischen den Fronten weiß er unglaublich zu überzeugen, ausserdem kaschiert das Gimmick super seine Schwächen am Mic.  Im Ring kann ihm sowieso kaum einer das Wasser reichen."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: PercyWatsonwrote on 03.06.2013:[10.0] "Einer meiner TNA Lieblingswrestler. Unglaublicher High-Flyer aber auch Technisch gut. Sollte eigentlich längst das TNA-Gesicht sein. Vielleicht schafft er dies nun durch seine Charakterentwicklung dazu."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JuliTheCage87wrote on 02.06.2013:[10.0] "Erstmal @Adler, du hast mir grade nen Lachflash mit deinem guten Deutsch verpasst, made my day! :) Nun zu AJ, der seit einem Jahrzehnt die tragende Figur bei TNA darstellt und der Liga in jeder Zeit treu geblieben ist (ausgenommen ein paar Auftritte bei RoH), dafür schon mal nen Bonuspunkt. Technisch sehr stark und unheimlich variabel und ein großartiger High-Flyer, vermutlich einer der besten seiner Art und ein großes Vorbild für Nachkömmlinge. Er hat einen eigenen Stil geschaffen, den er perfekt rüberbringt. Nahezu jede Story um ihn ist interessant, seien es die Fehden mit Angle, Daniels oder wie jetzt zwischen den Fronten von TNA und Aces&Boring als Tweener. Er schafft es einfach sofort, einen mitzureisen, und besitzt wie zum Beispiel ein William Regal eine große Ringintelligenz. Einfach nur der Wahnsinn, 10 Punkte sind hier absolut gerechtfertigt."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Adlerwrote on 02.06.2013:[10.0] "Vielleicht der besten Athlet in diesen Sport, die ich jemals gesehen habe. Nicht nur beim sportlichen Fähigkeiten enden seine Vorzüge, doch. Auch Charakter und Anwesenheit bilden seine Eigenschaften und Erfahrung als einer der wertvollsten Athleten in heutigen Tagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: christianpecevskiwrote on 31.05.2013:[10.0] "Ein super Wrestler. Er hat eine sehr gute Technik. Seine Matches sind immer gut anzuschauen."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: alewrote on 15.05.2013:[10.0] "Jeder Wrestler der eine eigene ''Top 100 Moves List'' auf Youtube hat , hat schon 10 Punkte verdient. Ansonsten kann man zu AJ Styles wenig sagen, außer vielleicht, dass er zu den besten Wrestlern gehört die die Vereinigten Staaten jemals hervorgebracht haben!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Ryback2013wrote on 19.04.2013:[10.0] "Sehr guter Wrestler! Leider oft in schlechten Storylinen verheißt! Hoffe Tna wird in wieder in würde Matche stecken und in um Titel kämpfen lassen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Sentenzawrote on 30.03.2013:[9.0] "Unglaublich viel Talent und Fähigkeiten, die er auch schon so oft gezeigt hat, hat auch eine Menge Charisma und müsste eigentlich an der Spitze von TNA stehen! Doch bei TNA wirkt er eigentlich immer nur als Beiwerk, was ich nicht verstehen kann, eben TNA."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: NightShadowWarriorwrote on 16.03.2013:[10.0] "Einfach Großartiges Wrestling was er zeigt leider verbookt TNA viel zu viel"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Flying Dragonwrote on 07.03.2013:[9.0] "AJ Styles ist DAS Gesicht von TNA - gewesen. Mittlerweile ist er es leider nicht mehr. Obwohl er im Ring definitiv einer der besten überhaupt ist. Ich liebe seinen Wrestling-Stil und hoffe, dass er bald wieder in Richtung World Title gepuscht wird. Er hätte es sich verdient, auch für seine Loyalität TNA gegenüber."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Bowlenwrote on 27.02.2013:[10.0] "Simply phenomenal! Genialer Wrestler, der mir sowohl als babyfaciger "Mr. TNA" als auch als Comedy-Heel immer gefallen hat. Seine Arbeit am Mikrophon ist sicherlich nicht immer brilliant, da er seinen Redneck-Stammbaum nicht wirklich verheimlichen kann, aber mich stört das nicht. Ich hoffe, dass man ihn nach seiner Storyline-Pause ein wenig auffrischen kann, damit er wieder seine Position an der Spitze TNAs einnehmen kann - hoffentlich noch für einige Jahre."
Rating: 10.0
Sentiment: 0.7625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cobrawrote on 14.12.2012:[10.0] "Just like Kurt Angel with his ability to lift any match and make it incredible. But where Angle brings the best technical matches AJ brings the best high flying matches."
Rating: 10.0
Sentiment: 0.612
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: wolfwood2wrote on 07.12.2012:[10.0] "AJ Styles, is one of the few superstars I can say will have a good match. With his skills AJ Styles steals the show no matter the oponent. However in recent weeks AJ Styles has had a series of loses. Despite the recent string of loses, I still beleve that AJ Styles will bounce back better than ever."
Rating: 10.0
Sentiment: 0.049999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Roode66wrote on 05.11.2012:[10.0] "Mr. TNA. Insgesamt ist sein Einsatz bei TNA eine Schande, wenn man bedenkt, wer schon alles Spitzenpositionen in dieser Liga einnehmen durfte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wolkywrote on 20.09.2012:[10.0] "Meiner Meinung nach der beste Inringperformer aller Zeiten. Kann einfach Alles im Ring. Jedes Tempo, jeden Stil. Man kann 10 AJ Matches schauen und keines ist gleich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KKorppuwrote on 15.09.2012:[10.0] "Great all-around guy with no significant weaknesses. Delivers high quality matches day in and day out. Overall #1 guy in TNA right now."
Rating: 10.0
Sentiment: 0.20970238095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: goofy1991wrote on 02.08.2012:[9.0] "Im Ring gefällt er mir äusserst gut, gerade da ich auch High-Flyer Aktionen sehr gerne sehe. Am Mic ist er zwar nur oberes Mittelmaß, aber ich halte ihn dennoch für durchaus charismatisch."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: 7TheEwrote on 12.06.2012:[9.0] "Das Gesicht von TNA und auch der größte Star.  Überzeugt seit Tag 1 und hat sich auch immer gut weiter entwickelt, bringt selbst heute noch eine Topleistung und stellt damit alle in den Schatten.  Workt nicht dauerhaft on Top, deswegen nur 9 Punkte."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Franjisewrote on 19.05.2012:[10.0] "AJ Styles ist das Gesicht von TNA. Zumindest wird er immer so bezeichnet. Das er es effektiv nicht ist, liegt einzig und allein am Booking der Carter-Promotion. AJ ist ein TNA-Eigengemächs, welches über die Jahre besonders durch tolle Leistungen im Seilgeviert geglänzt hat und für unzähligen TNA-Momente verantwortlich ist. Dazu kommen seine nicht zu verachtenden Mic-Skills und das durchaus vorhandene Charisma. Es ist sehr, sehr schade, dass es TNA über die Jahre nicht geschafft hat, ihn als Top-Face der Company zu etablieren. Verdient hätte er es allemal."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Jack Londonwrote on 23.04.2012:[5.0] "Mr. Overrated himself. Im Ring zu Beginn sehr spektakulär, was sich aber sehr schnell abnutzt. Sein Selling ist meistens nicht vorhanden, bearbeitete Beine werden Kota-Ibushi-Style verkauft und sein letztes wirklich sehr gutes Match ist mittlerweile schon Jahre her. Außerhalb von TNA häufig extrem unmotiviert und den Eindruck erweckend, dass er gerne wo anders wäre."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Robert Taylorwrote on 22.02.2012:[10.0] "AJ Styles sollte für TNA eigentlich das sein, was John Cena für die WWE ist, nämlich der Top Star der Liga. AJ Styles besitzt im Ring einen Style mit dem er er die Massen fesseln kann, außerdem kann er Top Matches in Serie zeigen. Er steht zwar nicht auf einer Stufe mit anderen Stars wie CM Punk oder Triple H, was das Mic-Work angeht, trotzdem ist Styles ein sehr gutes Gesamtpaket. Sein größte Stärke sind meiner Meinung nach aber die Fähigkeiten im Ring, zusammen mit seinem Auftreten. Ich hoffe, dass er schnellstens wieder in den Main Event und/oder in die Hauptfehden geschrieben wird. Befindet sich derzeit in einem kleinen Formtief aber ich denke, dass er dort in absehbarer Zeit wieder rauskommt."
Rating: 10.0
Sentiment: 0.3888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rated R Champwrote on 29.01.2012:[10.0] "AJ Styles ist einer meiner Lieblingsworker. Er kann im Ring immer überzeugen und oft wirklich begeistern. Am Mikro ist AJ zwar nicht erste Liga, aber es ist auch nicht so, dass er keine Promos halten könnte. Was mich bei AJ aber einfach begeistert ist, dass er einer der Leute ist, die für 100% Leidenschaft für das Geschäft stehen. Bei TNA eine der wenigen Konstanten die für Qualität steht (auch wenn er einiges an miesem Booking überstehen musste)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: KoZywrote on 07.10.2011:[8.0] "Hat definitiv einiges drauf, aber er hat keine Ausstrahlung. Und des gehört einfach dazu. Bei TNA ist er wohl gut aufgehoben, doch bei der WWE hätte er keine Chance. Womöglich hat er deswegen damals das Angebot abgelehnt?"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Taariwrote on 17.09.2011:[10.0] "Einer der wenigen Gründe, warum ich mir TNA bzw. Wrestling allgemein noch anschaue.  AJ ist einfach klasse und für mich persönlich der beste Wrestler aller Zeiten.  Daher auch die volle 10. Detaillierte Bewertung ist mir zu anstrengend jetzt^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Mal ernsthaft AJ Styles ist Mr. TNA! Er ist schon sehr lange in der Company und war ihr immer treu. Seine In-Ring Skills sind natürlich sehr gut, auch am Mic macht er sich mittlerweile wenns auch noch ein bisschen hapert, Charisma bekommt der Junge auch so langsam, also ich hoffe echt das TNA in Zukunft mal mehr auf AJ wieder setzt und ihn wirklich mal auf dauer im Championrennen lässt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Michael Shawn Hickenbottomwrote on 09.08.2011:[10.0] "Mehr als super kann man nicht sagen. Super charismatisch, am Mic zu ertragen und im Ring spitzenklasse. !"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Pius123wrote on 08.08.2011:[10.0] "War schon immer einer der besten. Hat im Jahr 2010 so eine Wahnsinnsentwicklung hingelegt. Ist derderzeit beste Wrestler der Welt. Und am Mic ist er auch grandios."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ChristianHwrote on 17.07.2011:[10.0] "Einer der besten wrestler der Welt, dass Gesicht von TNA und auch am Mikrofon nicht schlecht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: FNShowwrote on 13.07.2011:[10.0] "Das beste Eigengewächs was TNA zu bieten hat. Vince wird sich bestimmt immer noch in den Hintern beisen, dass er ihn 2001 nicht verpflichtet hat. Steht seit Jahren bei Vinnie ganz oben auf der Wunschliste, ist jedoch als loyaler Worker bekannt. Ob Vince ihn jemals kriegen wird möchte ich bezweifeln. Einer der wenigen TNA-Wrestler der den US-Indy-Fans sehr beliebt ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Tobinhowrote on 24.06.2011:[8.0] "Sehr guter Wrestler und auch Charisma ist bis zu einem gewissen Grad vorhanden. Aber auch er gehört zu den Leuten, die bei mir nicht so richtig gut ankommen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Y2J Problemwrote on 18.06.2011:[10.0] "AJ Styles ist einfach der beste pure Wrestler dieser Welt. Wenn er auch am Mic vielleicht nicht der beste sein mag, macht er das durch seine unglaublichen Ringleistungen wieder wet. Zudem halte ich ihn für einen äußerst schlauen Mann, der weiß, wann genug ist, ähnlich wie ein Shawn Michaels!"
Rating: 10.0
Sentiment: 0.04464285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GamePrincewrote on 22.05.2011:[10.0] "Ich bin kein TNA-Fan und schau es auch so gut wie nie. Aber auf AJ-Styles bin ich irgendwie mal irgendwann aufmerksam geworden. Irgendwie hat mich der Kerl fasziniert, obwohl ich ihn gar nicht kannte ... also hab ich mal bei youtube nachgeschaut. Und ich muss schon sagen, der Typ ist absolute Spitze. Was er an Moves zeigt, ist schlicht der Hammer. Da können selbst Talente wie John Morrison oder Daniel Bryan einpacken. Ein unglaublicher Wrestler ... einen Punkt zieh ich aber ab, weil ich seine Mic-Skills nicht kenne. Aber im Ring ist er auf jeden Fall eine absolute harte Granate! UPDATE: Einfach Phenomenal ... da MUSS man 10 Punkte geben!"
Rating: 10.0
Sentiment: 0.35833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: exxterwrote on 09.04.2011:[10.0] "DER Superstar der TNA mit aufgebaut hat, und super techniker! bin eigentlich froh das er nicht bei WWE ist, da er bestimmt falsch eingesetzt werden könnte. Und das er 2002 als Jobber für WWF gewrestlelt hat fand ich total überflüssig, sowas hat er echt nicht nötig."
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: dsierwrote on 20.03.2011:[9.0] "im ring eine klasse für sich und ausstrahlung hat er auch (als face). nur am mikro muss er sich noch ein wenig verbessern."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: xXxwrote on 16.03.2011:[10.0] "AJ zu Flair:" Oh yeah, and you are in TNA, the house that i built. " So wahr, jede Company hat seine Eckpfeiler an Stars und AJ ist ein massiver Eckpfeiler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: deuss00wrote on 25.02.2011:[10.0] "Einer der besten Wrestler die es zurzeit gibt und vieleicht geben wird. Sehr guter highflyer aber auch super Technicker. Am mic zwar nicht so gut hat sich aber sehr verbessert. Wird leider nicht so gepusht wie er es verdient hätte!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Hu-Manwrote on 22.02.2011:[9.0] "Wrestlerisch 10 Punkte und damit einer der besten, die es momentan gibt. Leider wurde für ihn nie ein vernünftiger Charakter entwickelt. Ständig darf er die dämlichen Sitekicks von Angle, Christian oder Flair spielen. Ich hoffe, dass TNA es bald schafft AJ als ernsten Charakter aufzubauen und ihm einen dominanten Run gibt. Als Mitglied von Fourtune gefällt er mir momentan zeimlich gut... weiter so."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TAWPTierJustinwrote on 12.01.2011:[10.0] "AJ Styles is without any doubt whatsoever, one of the top 5 best superstars in TNA and even in it's entire history and in my opinion and I'm sure everybody else who is a big fan of his like I am would so agree with me on this is that he so needs to have multiple world title reigns in TNA cause AJ is so talented and so captivating and like I said, he is one of the best that TNA has on their roster and it's entire history and his matches are always great to watch. He's the no. 1 TNA original no doubt. When you think TNA, who do you think of right off the bat? AJ Styles! Why he isn't getting multiple TNA world heavyweight championship title reigns is just beyond me. I truly mean no disrespect to Mr. Anderson who is the world champion right now and is also my favorite superstar in TNA but god, when are we going to see AJ get another world title reign? ! Seriously! I know having the TV title is always great and all but god dammit, he deserves WAY more than what he's getting. At least he's the longest reigning TNA world heavyweight champion. That helps a lot but still."
Rating: 10.0
Sentiment: 0.32922335600907027
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: wrestler of the worldwrote on 24.12.2010:[10.0] "Einer der besten Wrestler der Welt. Man wird noch viel von ihm hören, da bin ich mir sicher"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The-Game91wrote on 05.12.2010:[6.0] "Selfmade TNA Material. Früher hat er mir viel besser gefallen so wie die Company selbst. Es ist wie als wäre er das Herz von TNA. Wenn TNA den bach runter geht tut er es auch."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jjchiofalowrote on 06.11.2010:[10.0] "I may not be the biggest fan of AJ, but I must say that he is one of the best wrestlers in the world today and one of the three best in TNA. His wrestling ability is perfection, and it makes up forhis weak mic skills, and his mediocre gimmick. AJ is TNA's bigest prospect, even if he isn't their best wrestler."
Rating: 10.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Whopperlewrote on 01.11.2010:[10.0] "Top-Mann! Einer der besten Wrestler die es aktuell gibt und verdient PWI500 #1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: dnstoniewrote on 24.10.2010:[8.0] "AJ hat uberragendes Talent und kann ein ganz großer werden. Leider wurde er bisher nie konsequent genug gepusht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Aesopwrote on 18.10.2010:[8.0] "AJ ist ein guter Worker keine Frage, doch auf Dauer wird er lanweilig und in letzter Zeit gefällt er mir auch nicht mehr so, bei ROH war er tatsächlich Phenomenal doch bei TNA ist er inzwischen alles andere als Phenomenal."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Homicide187wrote on 10.10.2010:[10.0] "Styles ist großartig. Früher in der Independent Scene fand ich ihn schon super und mittlerweile hat er sich auch bei TNA sehr gut entwickelt. Ich sehe ihn sogar als Star an, was TNA nicht mit vielen geschafft hat. Dazu kommen seine super InRing Leistung."
Rating: 10.0
Sentiment: 0.2222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Manu Adamswrote on 07.10.2010:[8.0] "Styles ist ohne Frage "Phenomenal". Er liefert herrvoragende Matches ab, zeigt desöfteren dass er auch am Mikrophon ordentlich ist und gilt bereits jetzt schon als TNA Legende. Hat fast alles erreicht was man bei TNA erreichen kann, finde allerdings genauso wie "Grobrhetoriker", dass er einen WWE Run in Kauf nehmen sollte."
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Marco2911wrote on 04.09.2010:[10.0] "Ein sehr guter Wrestler. Styles hat hat gute In Ring Skills, gutes Mic Work und die nötige Ausstrahlung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TheAdaawrote on 19.08.2010:[8.0] "AJ Styles könnte das für TNA sein, was Shawn Michaels für die WWE war. Doch TNA versemmelt es sich in allen Punkten. Styles hat die nötigen In Ring Skills, das richtige Mic Work und die nötige Ausstrahlung. Leider hat man das bei TNA nicht erkannt. Styles wird unter Wert verkauft, was sein eher misslungener Run als Champion mehr als deutlich zeigt. Ich frage mich wann man Styles richtig aufbauen wird und wirklich zu Mr. TNA macht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Fall Out Boywrote on 19.08.2010:[10.0] "Der insgesamt erst zweite Wrestler dem ich die 10 Punkte gebe. AJ Styles hat für mich einfach alles und ist der wohl beste Highflyer des Main Stream Wrestlings. Die Face-Rolle passt perfekt zu ihm, sein aktuelles Heel-Gimmick ist deswegen eine Herausforderung, die er bisher aber perfekt meistert."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Navidwrote on 18.08.2010:[9.0] "Ist AJ der beste Wrestler seiner Generation? Schwer zu sagen! Fakt ist, dass er mit seiner ehrlichen Leidenschaft für das was er tut die Fans mitreissen kann. Auch wenn seine Promos nie etwas besonderes sind entscheidet am Ende für mich immer das was im Ring geschieht. Und da ist er für aktuell der beste im Amerikanischen Pro Wrestling."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: nwowrote on 18.08.2010:[9.0] "Sehr guter Wrestler. Hat seinen Erfolg bei TNA wirklich verdient. Aber ich finde ihn unglaublich langweilig. Ich fand ihn schon als Heel langweilig aber als Babyface, ... na ja. EDIT: Hoppla, das muss ich dringend mal nach oben korrigieren. Mit Flair an seiner Seite mind. 9 Punkte. Leider wird er aktuell sehr schlecht eingesetzt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Finlay Thornwrote on 10.08.2010:[10.0] "Mit seinen großartigen Matches gegen Kurt Angle Anfang des Jahres hat mich AJ dazu gebracht, überhaupt erst mal TNA-Fan zu werden. Seitdem habe ich unzählige weitere Matches von ihm angeschaut und will mal behaupten, er ist der beste Wrestler, den ich je gesehen habe. Er ist seit Monaten meine absolute Nummer 1, gefällt mir auch am Mic (egal ob in der Heel- oder Face-Rolle, wobei ihm arrogante Heel-Promos imo etwas mehr liegen) und außerhalb des Business habe ich bislang auch nur Gutes über ihn gehört. Also absolut top!"
Rating: 10.0
Sentiment: 0.4125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Invaderwrote on 30.07.2010:[9.0] "Top worker but he came to a point of his career where he should change either his gimmick or the promotion. There is nothing left for him in TNA"
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Carnevalewrote on 18.07.2010:[10.0] "Ohne wenn und aber einer der absoluten besten Wrestler überhaupt. In seinem Heel Gimmick hat er sein Mic Work zudem noch sehr verbessert, ganz klare 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: bigdaniel1992wrote on 13.07.2010:[10.0] "Hab mir jetzt denke ich gut 30, 40 Matches von ihm angesehen und bin wirklich überzeugt von ihm. Gute In-Ring Leistungen und stets gute Ausstrahlung bei seinen Kämpfen. Am Mic überzeugt er mich auch. Ich mag es besonders wenn er seine Gegner provoziert. xD Insgesamt hat er mich sehr überzeugt und ist für mich das Aushängeschild für TNA. Als ich noch nicht TNA angesehen hab kannte ich nur 3, 4 Wrestler bei TNA. Er war einer davon. 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Sandmannwrote on 04.05.2010:[8.0] "Das Aushängeschild von TNA. Eigentlich ein sehr guter Wrestler der aber für mich manchmal etwas zu, sagen wir mal, übermotiviert wirkt. Kenne ihn aus seinen ROH Zeiten und dort fand ich ihn immer ok. Hatte lange Zeit ein wirklich interessantes Repertoire an Moves die sonst keiner zeigte. Charismatisch sicherlich nicht in der Liga der Besten aber noch ganz ok."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: homicidal cena michaelswrote on 03.05.2010:[8.0] "Er zeigt oft gute Matches, und es ist jedes Match sehr actionreich. Aber er ist wrestlerisch weit unter einem Hero oder Bryan und sein derzeitiges Gimmik geht ja mal gar nicht. Er wirkt wie ein zweitet Flair und das er den gleichen Move wie Flair macht wirkt auch nicht wie der originale Styles. Da sieht man wie Mainstream Ligen Leute zerstören. Er soll wieder in den Indy Bereich wie Daniels kommen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Denzwrote on 01.05.2010:[10.0] "Der Wrestler, der seit Tag 1 bei TNA Wrestling auftritt. Er ist sehr gut als Techniker und High-Flyer. Er strahlt im Ring zwar Charisma aus, aber seine Mic-Skills sind nur durchschnitt. Der Vertabreaker, den er Styles-Clash nennt passt als Finishing Move zu ihm. Ich weiß, dass er noch eine großartige Zukunft vor sich haben wird.  10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Damon Strikerwrote on 30.04.2010:[10.0] "Was er im Ring zeigt, gehört mit zum besten, was es momentan zu sehen gibt! Sicher gibt es Wrestler mit mehr Charisma und besseren Mic-Skills aber er macht sich und bewegt sich im oberen Mittelfeld. Ausserdem kann man sagen, was man will aber aus jeder neuen Charakterausrichtung kann er mehr oder weniger was machen - egal wie gut oder schlecht die Idee ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: RickRollwrote on 18.04.2010:[8.0] "Ein KLEIN wenig überbewertet, dennoch ist AJ ein guter Wrestler, der mich in TNA, aber auch im Indy Bereich mit seinen innovativen Spots, so wie gute technische Moves beeindrucken kann"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Eddiewrote on 13.04.2010:[10.0] "2002 bei TNA, ROH und auch 2003 noch unglaublich und "Phenomenal" weil er Sachen machte, die es so noch nicht gegeben hat, aber irgendwie ist es doch immer das selbe Programm, zumindest mittlerweile, damals 10, heute "nur" noch 8 Punkte. Vielleicht hilft ihm ja ein hoffentlich baldiger World Title Run weiter. Edit: Mittlerweile wieder eine Aufwertung auf die vollen 10. Er zeigt nicht nur Standartprogramm sondern workt seine Matches wieder geil und erzählt nette Geschichten!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Jar Jar Binkswrote on 07.04.2010:[9.0] "Unglaubicher Wrestler!  Ich würde mich, selbst wenn ich selten TNA schaue, als AJ Fan bezeichnen. Diese Technik und trotzdem so eine Härte im Ring, das ist richtig Stark. Genialer Mann!"
Rating: 9.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: 3durch16wrote on 14.03.2010:[4.0] "Wrestlerisch top, gehört eindeutig zu den besten. Aber sein derzeitiges Gimmick ist ja echt peinlich. Micwork auch nur durchschnitt"
Rating: 4.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: El-Chupakneebraywrote on 08.03.2010:[7.0] "[-3] In vergangenen Tagen war ich ja ein großer Styles Fan. Er hat mich in vielen seiner Matches außerordentlich gut unterhalten. 2002 die Matches um den X-Division Titel mit Jerry Lynn und Low-Ki waren klasse. 2006 gegen Matt Sydal bei ROH war groß, die Fehde 2005/2006 bei TNA mit Joe und Daniels um den X-Division Titel war episch und auch 2005 im Steel-Cage Match gegen Abyss konnte er mehr als überzeugen. In den letzten Jahren kamen großartige Matches aber leider seltener als damals vor. Wo früher der Name AJ Styles für hervorragende Matches stand ist heute nur noch durchschnittskost angesagt. 2008/2009 gab es Top-Matches eigentlich nur noch gegen Angle und in der Neuauflage der Fehde mit Joe und Daniels. Im Jahre 2010 wirkt er als Champion neben Ric Flair wie nutzloses Beiwerk und auch die Matchqualität hat durch seine Heel-Ausrichtung stark nachgelassen. AJ Styles kann mich momentan nicht mehr begeistern."
Rating: 7.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Rated R Superstar EDGEwrote on 03.03.2010:[9.0] "AJ Styles ist im Ring mit Ausnahme von Kurt Angle der beste bei TNAW. Am Mic ist er Solide und eine Superstar Ausstrahlung besitzt er in abgeschwächter Form auch. Zu dem ist er einer der loyalsten Worker die ich kenne. Außerdem ist er ein TNAW Eigengewäcks. Wäre er am Mic besser würde ich klar die 10 geben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Cruchkorpwrote on 26.02.2010:[8.0] "Ein guter Wrestler, vor allem wenn man auf akrobatische, schnelle Aktionen steht. Look ist ok und sein Finisher der Styles Clash gefällt mir sehr gut, da er aus verschiedensten Situation heraus kommen kann. AJ war aber die letzten Jahre trotzden großer Beliebtheit nie in der Lage wirklich einen Charakter zu verkörpern, der sich im Mainevent halten kann. Ob das mit Ric Flair an seiner Seite besser wird steht noch ein wenig in den Sternen, vieles daran gefällt mir, vieles finde ich aber auch nur zum heulen. Zumindest ist es spannend diese Entwicklung zu verfolgen."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Fat Mikewrote on 24.02.2010:[8.0] "Am Liebsten würde ich AJ die volle Punktzahl geben, da seine Matches eigentlich immer überzeugen und er im Ring extrem unterhaltsam ist. Aber da liegt der Knackpunkt! Außerhalb des Rings sieht es da ganz anders aus. Die Ausstrahlung ist zwar vorhanden aber am Mikro wirkt alles einfach zu sehr aufgesetzt. Sorry, AJ!"
Rating: 8.0
Sentiment: -0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Switchbladewrote on 22.02.2010:[8.0] "Er hat sich im Ring verbessert und auch am Mic, ist zwar noch nicht überragend aber schon ganz gut."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Mick Funkwrote on 16.02.2010:[8.0] "Richtig genial im Ring, aber mMn mangelt es doch an Ausstrahlung und Top Star Qualitäten. Das neue Flair Gimmick ist sicherlich umstritten, gefällt mir aber sehr gut. Auch am Mic ist Styles an der Seite von Flair ziemlich unterhaltsam. Endlich ein richtiger Champ."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: tnawrestlingfanwrote on 09.02.2010:[9.0] "Er ist ein toller Wrestler für den sich IMPACT gucken lohnt und ich verstehe nicht, dass Hogan ihn dafür mit verantwortlich macht das IMPACT so schlechte Ratings hat. Ich hoffe wirklich, dass sich weder sein style, noch Gimmick oder sein name ändert."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Fountain of Misinformationwrote on 23.01.2010:[8.0] "Toller und begeisternder Wrestler, kommt aber rüber wie ein 08/15-Indyworker (durchschnittlicher Körperbau, lahmes Gear, der ganze Auftritt usw. ) und hat daher kaum eine "Superstar-Ausstrahlung", etwas was er sich im fahlen Licht der TNA-Spotlights wohl auch nicht mehr aneignen wird. Man kann nur hoffen, dass er TNA nicht auf alle Zeit loyal und treu bleibt und das hohe Risiko eines WWE-Runs in Kauf nimmt."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DragonSleeperwrote on 18.01.2010:[10.0] "Fürchte mich etwas vor seinem angebahnten Heel Turn, aber trotzdem bleibt er ein super Wrestler."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Unrated Superstarwrote on 18.01.2010:[9.0] "Genau der Mann den TNA momentan braucht und keine ausgedienten Opas wie die Nastys oder Ex-WWE'ler wie Hardy. Styles ist ein echtes TNA-Urgestein und steht für die Liga wie kaum ein anderer. Sicher, er hat noch nicht die Staraura eines HBK's oder Randy Ortons, aber das kann noch werden. Dafür kann er aber mit 1A-In Ring Skills punkten von denen ein Jeff Hardy nur träumen kann. Leider baumt TNA derzeit NUR auf ihn und vernachlässigt seine Kollegen Joe und Daniels."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ThePopewrote on 16.01.2010:[9.0] "von mir gibts 9 punkte aus dem einfachen grund das er meiner meinung nach zwar die besten in ring fähigkeiten hat, allerdings finde ich seine leistungen am mic ziemlich mau."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: HeartBKwrote on 13.01.2010:[9.0] "Er hat mich überzeugt! Super Techniker und sehr Charismaticher Typ. Ich denke, er ist auf einem guten Weg ein Topstar im Wrestlingbusiness zu werden! Ausserdem ist er ein Aushängeschild und Gesicht von TNA! Weiter So!"
Rating: 9.0
Sentiment: 0.6510416666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: element-41wrote on 12.01.2010:[10.0] "Phänomenaler Techniker und High Flyer! Seine In-Ring Fähigkeiten sind um es so zu sagen einfach der Hammer. Er hat den Push ins Main Event und den folgenden Gewinn des TNA Heavyweight Titels 100 prozentig verdient. Er liefert geniale Matches, wie zuletzt gegen Angle, Joe oder Daniels. Meiner Meinung nach ist er das Gesicht von TNA und hat das Zeug zur Legende! 10 Punkte!"
Rating: 10.0
Sentiment: 0.23020833333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Scotty 2 Hottywrote on 08.01.2010:[6.0] "Ähnlich wie es bei Samoa Joe der Fall ist, kann ich mich für AJ Styles nicht so begeistern, wie ich es gerne würde. Im Ring ist er ohne Frage stark, aber irgendwie werde ich mit ihm nicht wirklich warm."
Rating: 6.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Mathias Rekaschwrote on 04.01.2010:[8.0] "Styles ist ein fast schon herausragender Wrestler mit der richtigen Einstellung zum Business und der absoluten Aufopferung in seinen Matches. Doch in meinem Augen fehlt ihm dass, was schon anderen Leuten wie Malenko oder Benoit zum Verhängnis geworden ist - das Charisma, die Besonderheit. Alle seine Runs an der Spitze der Company haben deutlich gezeigt, dass er als Champion nicht so glänzen kann wie die Angles, Stings oder Cenas, denen er wrestlerisch gleichzusetzen ist oder sie sogar übertrumpft. Aktuell ist sicherlich auch der Hype um Hogan ein Problem, doch als Ausrede reicht dies einfach nicht."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: TNA Fan14wrote on 02.01.2010:[10.0] "AJ ist ein klasse Wrestler mit guten in-Ring skills"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: downtown2wrote on 15.12.2009:[9.0] "Noch nie habe ich eine solch physische Kontrolle gesehen wie bei diesem Wrestler, die Einlagen im Ring und die Übersicht machen ihn außergewöhnlich und unverwechselbar. Da kommt fast niemand hin, man kommt in der Regel aus dem Staunen nicht mehr raus. Und das ohne den Mattenkampf zu vernachlässigen, toll. Für meine Begriffe der wahre Mr. TNA, der Inbegriff der X Division und auch ein wenig Fähigkeiten am Mikro. AJ Styles hat auch irgendwie Ausstrahlung, nur auf eine sehr herkömmliche Art. Er wirkt wie ein Bursche aus der Bauerndisko, sehr gewöhnlich. Das muss seiner Karriere keinen Abbruch tun, im Gegenteil, auf lange Sicht ist ein durchschaubarer Charakter bei den Zuschauern beliebter."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Killerswitchwrote on 22.11.2009:[10.0] "AJ überzeugt im Ring und auch ausserhalb. Allein das Micwork könnte er verbessern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Theron083wrote on 28.10.2009:[8.0] "Ist schon sehr gut im Ring, aber ich find ihn als Charakter irgendwie nicht sooo interessant. Mic Work ist Durchschnitt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Telecinewrote on 25.10.2009:[8.0] "Ein fantastischer Wrestler. Früher war er einfach ein Highflyer wie er im Buch steht und hat mit seinen atemberaubenden Aktionen die Fans begeistert. Ich finde es aber auch durchaus gut, dass er nun ein bisschen zurückschaltet und sich mehr auf technisches Wrestling und Ringpsychologie konzentriert, denn das macht seine Matches wesentlich interessanter und das ist es auch, was vielen Highflyern und Spotmonkeys in der Wrestling-Welt fehlt. Ein Match wird nicht zum guten Match, indem man tausende halsbrecherische Aktionen aneinander reiht (obwohl das natürlich auch helfen kann^^). Am Mic gefällt mir AJ nichts soo gut, aber schlecht ist er trotzdem nicht, daher die 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kurt Winkelwrote on 20.10.2009:[9.0] "AJ Styles ist hervorragend im Ring, daran besteht kein Zweifel. Leider überzeugt er mich einfach nicht, wenn er am Mic ist, was vermutlich zuletzt daran liegt, dass er dort immer einen recht "bübischen" Eindruck macht. Ich hoffe, er entwickelt sich noch weiter, was das angeht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BoeserLobowrote on 05.10.2009:[10.0] "Wrestler mit sehr guten High-Flying-Fähigkeiten. Innovativ mit neuen Moves. Sehr guter Mic-Worker. Hatte die X-Devision zum absoluten Highlight innerhalb der TNA geführt. Sehr gute Storylines."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Big Bad Booty Babywrote on 26.09.2009:[9.0] "Ohne Zweifel ist Styles einer der spektakulärsten Wrestler bei TNA. Zudem ist er einer der charimatischsten Flummis die ich kenne. Auch seine Promos sind mehr als durchschnittlich. Obwohl ich ein großer Fan von ihm bin, war und ist er für mich kein richtiger Main Eventer. Irgendetwas scheint bei ihm zu fehlen, ihm fehlt einfach etwas Einzigartiges, was seinen Platz im ME rechtfertigt. Er hat alles, um im ME stehen zu können, aber mir fällt nichts ein, warum er es muss. Trotzdem hat er den Titel verdient wie kein anderer und ich lasse mich gerne vom Gegenteil überzeugen. Go, AJ!"
Rating: 9.0
Sentiment: -0.16388888888888883
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wizz21wrote on 25.09.2009:[10.0] "Vergesst Jeff Jarrett , AJ ist der einzig wahre Mr. TNA! Was hab ich mich gefreut als er bei No Surrender endlich wieder World Champion geworden ist. Hatte schon sehr lange keinen derartigen Mark-Out mehr ^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: batze22wrote on 23.09.2009:[10.0] "Einfach nur Phenomenal. Gott sei dank hat TNA entlich eingesehen das AJ der perfekte wrestler ist um den titel zu halten."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Miteamexicowrote on 22.09.2009:[9.0] "Er ist einfach die Zukunft von TNA und von ihm sieht man immer Top Leistung, würde mich aber sehr freuen wenn er mal zu WWE kommt und da seinen weg geht."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Samoain Joewrote on 22.09.2009:[10.0] "Er vereint alles in einer Person. Er ist ein guter Techniker, hat alles an Basis- und Mattenwrestling drauf was man braucht und ist mit Abstand der inovativste Highflyer, den ich bisher gesehen habe. Am Mikrofon hat er noch gewisse Defizite, die jedoch auch mit jedem Jahr immer geringer werden. Kein Wrestler hat mich in den letzten so sehr im Ring begeistert wie AJ Styles."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: stinger89wrote on 22.09.2009:[10.0] "Der Garant für Spitzenmatches bei TNA neben Joe und Angle. Am Mic solide im Ring einfach "phänomenal" ;-) Ich hoffe er geht nicht zur WWE Edit: Endlcih Champ und ich hoffe er schickt den Stinger bei BfG in den wohlverdienten Ruhestand. Einen besseren Gegner für sein Abschlussmatch kann der Stinger wohl kaum kriegen!  Ich hoffe bei TNA bricht jetzt die Zeit der "Eigengewächse" an...."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Wichtgestaltwrote on 21.09.2009:[9.0] "Tja, was soll ich sagen... AJ ist mir im Laufe der Zeit immer mehr ans Herz gewachsen und für mich der Grund, mir weiterhin TNA anzuschauen. Ich hoffe, dass er mit diesem Run endlich, zusammen mit Samoa Joe, Hernandez, Christpher Daniels, Eric Young und Suicide, zum neuen Aushängeschild von TNA wird und es somit schafft eine neue belebende Konkurrenz zur WWE zur schaffen."
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: mongowrote on 17.09.2009:[10.0] "Einfach phänomenal! Einer der größten Techniker und High Flyer im Ring, jede Menge Charisma und grandios am Mic. AJ ist die perfekte Kombination."
Rating: 10.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: DJ MaSchwrote on 12.09.2009:[10.0] "Simply phenomenal! Im Ring eine Granate. Am Mic nicht so schlecht wie er oft gemacht wird und das er die Aura eines Stars hat sollte man mittlerweile auch bei TNA bemerkt haben, die ja erfolglos mit aller Gewalt versucht haben ihn unten zu halten."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: billygunnwrote on 03.09.2009:[10.0] "Zeigt sehr schöne Matches (z. B. AJ vs. Lynn vs. Low-Ki vs. Psychosis), hat sich super entwickelt seitdem er bei TNAW ist und ist verständlich sehr beliebt."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: teekay86wrote on 25.08.2009:[9.0] "Einer jener Worker auf die TNA unbedings bauen sollte. Anstatt Steiner, Foley, Booker T und Kevin Nash die alle ihre besten Jahre hinter sich haben sollten Samoa Joe, AJ Styles, Hernandez und Matt Morgan im Fokus der Shows stehen. Stattdessen ist Styles meistens ganz nah dran am ME, schafft es jedoch nicht dauerhaft sich dort zu etablieren. Hoffen wir das TNA die Andeutung wahr macht und Styles als glaubhaften nachfolger von Sting als Top-Face präsentiert"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Atze19wrote on 12.08.2009:[10.0] "Mr. TNA, Simply Phenomenal. Der vierte World Titelgewinn ist nur noch eine Frage der Zeit. 10 Punkte"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: T-Waynewrote on 04.08.2009:[9.0] "Super charimatisch und wrestlerisch auch stark. Einer der Besten bei TNA."
Rating: 9.0
Sentiment: 0.06666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Aquifelwrote on 14.07.2009:[10.0] "Am Mic sicherlich nicht perfekt, aber im Ring atemberaubend. Zwar wirkt es ab und an mal so, als ob er von seinen Trademarks und Highflying Aktionen lebt, aber er hat oft genug bewiesen, dass er es auch technisch drauf hat. Schade, dass die TNA ihm irgendwie nicht so wirklich eine CHance gibt, trotz der entsprechenden Leistung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Vanniwrote on 11.07.2009:[8.0] "Sehr stark im Ring, am Mic auch ziemlich gewitzt. Macht immer wieder Spaß ihn zu sehen. Leider wird er bei TNA oft hinter die älteren, aber lange etablierten Superstars gestellt."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: wweinspectorwrote on 15.06.2009:[10.0] "Einer der Gründe warum ich ab und zu TNA gucke. Ein toller Wrestler!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Mountiewrote on 27.04.2009:[8.0] "Das Duracell-Männchen von TNA Wrestling: Läuft und läuft und läuft und ist aus der Liga nicht wegzudenken. Aber dort der 1b-Main-Eventer fürs Leben zu sein, der alle sechs Monate mal in einem großen Multi-Man-Match aus acht Meter Höhe auf alle anderen herunterspringt, ist wohl sein Schicksal. Wobei es keine himmelsschreiende Ungerechtigkeit ist: Abseits seiner athletischen Begabung fehlt AJ einfach das letzte Quäntchen Etwas, das AJ als unumschränkten Top Dog wirklich langfristig interessant machen würde. Es hat ihm unheimlich gut getan, als abgedrehter Nerd-Heel zwischenzeitlich mal eine andere Seite von sich zu zeigen, jetzt ist er leider wieder genau in den White-Meat-Charakter zurückgefallen, der sich zuvor so totgelaufen hat. Es drängt sich wirklich ein bisschen die Frage auf, was er bei TNA noch erreichen mag? Von einem Wechsel zur WWE würde ich dennoch dringend abraten. Die Aktie AJ hätte bei diesem Makler bei weitem nicht den Wert, den sie bei ihrem aktuellen hat."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: CM Punk Mitbwinnerwrote on 15.04.2009:[9.0] "Guter Techniker, wenn er so weiter macht könnte er in die WWE und müsste sich vor Leuten wie Evan Bourne und Jack Swagger nicht verstecken."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: BaptisteZorGwrote on 29.01.2009:[9.0] "Neben Joe der beste Wrestler der von anfang an bei TNA war. Am Mic hat er sicherlich noch einige schwächen, aber seine InRingSkills sind immer wieder aufs neue beeindruckend. 9 punkte"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ShakDragoonwrote on 20.01.2009:[9.0] "Sehr guter Techniker und Highflyer, der auch durchaus gut mit Brawlern arbeiten kann... AJ Styles kann noch einiges erreichen, obwohl er bei TNA zuletzt etwas in der Luft hing. Naja als Tag Team Champion gemeinsam mit Tomko war er Gold wert. Im Moment bin ich sehr froh, dass er sich als Anführer der Front Line im Main Event festbeißen konnte. Weiter so!"
Rating: 9.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: GR81wrote on 16.01.2009:[10.0] "Hab letztens bei Impact ein Plakat gesehen, mit der Aufschrift "On the 8th day God created AJ Styles! " Dem kann ich mich nur anschließen! AJ Styles ist in allen Belangen absolut weltklasse!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Eaterwrote on 11.12.2008:[10.0] "TNA-Urgestein, das früher überwiegend durch seine Aufsehen erregenden Leistungen im Ring auffiel, mittlerweile allerdings noch dazu ein facettenreiches charismatisches Gimmick entwickeln konnte. Dies war ein nötiger Schritt auf dem Weg zum Topstar und AJ Styles gehört zweifellos zu den ganz großen Hoffnungsträgern im US-Mainstreambereich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: King of Queenswrote on 03.12.2008:[9.0] "Phänomenaler Techniker, großartiger Highflyer. AJ Styles verkörpert beide Styles sehr gut und hält im Ring mit den großen des Sports mit. Ich bin gespannt, wie er sich, falls er denn zur WWE kommen würde, in Vinnies Promotion machen würde..."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Instant Classicwrote on 26.11.2008:[8.0] "Hat sich zu einem wirklich guten Micworker entwickelt, im Ring jedoch sehr spotlastig."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: rv27wrote on 16.11.2008:[10.0] "Zu ihm fällt mir leider nur ein Wort ein ATEMBERAUBEND!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Babuswrote on 06.11.2008:[10.0] "Auch wenn das ganze Styles-Gebashe vielleicht smart wirken mag, aber Fakt ist, dass fast jedes seiner Matches mindestens sehenswert ist. Fakt ist auch, dass Styles over wie sau ist und damit wohl auch ein gewisses Mindestmaß an Charisma überschreiten dürfte. Und vor allem ist Fakt, dass kein Wrestler TNA so verkörpert wie AJ Styles."
Rating: 10.0
Sentiment: 0.20714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: domi1984wrote on 05.11.2008:[10.0] "AJ Styles ist ein toller Worker. Er hat In Ring skills, einen tollen Finisher und verfügt über Mic Work. Ich hoffe, das er bald an der Spitze der Liga steht, denn das Zeug dazu hat er allemal!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Akkuswrote on 05.11.2008:[9.0] "Ein Grund warum ich erst TNA geguckt habe, im Ring hat er verdammt viel drauf und auch so überzeugt er!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Die Gurkewrote on 03.11.2008:[9.0] "Ist mit Sicherheit einer der Gründe warum TNA so weit gekommen ist. Wrestlerisch Top, seine Ring of Honor Matches sind einfach nur phenomenal :)"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Baldrickwrote on 01.11.2008:[10.0] "Hat mich überhaupt erst dazu gebracht, mich für TNA zu interissieren. Kann Alles, will Alles, IST Alles für TNA! Wird spätestens in 4-5 Jahren seinem spektakulären Stil Tribut zollen müssen, besitzt aber mehr als genug Ringintelligenz um das sauber wett zu machen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Blazewrote on 26.10.2008:[9.0] "AJ ist nicht nur ein guter Techniker und klasse Highflyer, er ist prägend für die gesamte X Division gewesen wie kaum ein anderer. Bei TNA ist er ja schon weit oben, aber hoffentlich schafft er es dauerhaft an die Spitze von TNA und verdrängt zusammen mit Joe die alten WWE Urgesteine etwas aus dem Titelrennen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: alkoholiKAwrote on 17.10.2008:[10.0] ""The Phenomenal One" verdient auf jeden fall die 10. im Ring sowohl technisch stark als auch unglaublig unterhaltsam. einer großartiger High-Flyer. habe leider die anfänglichen Zeiten von TNA nicht verfolgt allerdings wird AJ nun endlich wieder richtig eingesetzt, anstatt wie zuletzt nur als trotteligen Idioten darzustellen."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Marcywrote on 18.09.2008:[9.0] "Hat gute In-Ring Skills und ist am Mikrofon auch besser geworden, aber irgendwie wiederholt er sich nur noch in seinen Matches. Hab mich ein wenig an ihm sattgesehen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Tomkowrote on 13.09.2008:[10.0] "Für mich der beste TNA-Worker, da seine Technik unglaublich ist. Ich persönlich habe noch nie so innovative Moves in einer Mainstream-Liga gesehen. Seine Akrobatik zeigt mir warum ich Wrestling so liebe. Seine Match-Folgen mit dem Fallen Angel und Samoa Joe sind legendär, seine X-Division-Schlachten unglaublich und seine jetzige Fehde mit Kurt Angle einfach nur unglaublich. In einem Wort: Er ist "PHENOMENAL" !  Keine 10 Punkte für ihn? ! ? Für wen den sonst? ! ?"
Rating: 10.0
Sentiment: 0.73828125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: smokiewrote on 01.09.2008:[9.0] "Früher war er einfach ein grandioser In Ring Performer aber seit seiner Zeit als Heel hat er auch noch an Austrahlung Mic-Work und Gimmick enorm verbessert und brauch sich vor keinem mehr verstecken. Außerdem hat er sich im Ring zu einem ernst zu nehmendem Heavyweight Wrestler entwickelt und keiner kann mehr behaupten er sei ein Spot Monckey. Ein Traum wäre ein BFG Main Event Match um den World Titel gegen Samoa Joe in 1-2 Jahren"
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Rey2004wrote on 24.08.2008:[9.0] "Was Sting für die WCW und Shane Douglas für die ECW waren, ist AJ Styles für die TNA. Ein ganz großer in diesem Sport."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Joeevil123wrote on 03.08.2008:[10.0] "Er hat einfach alles was ein Wrestler braucht!  Seine Wrestlerrischen Qualitäten sind ohne Frage grandios. Charisma besitzt er und am Mic ist er auch solide. TOP!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MacDanielwrote on 18.07.2008:[10.0] "Einer meiner Top 3 Wrestler. Hat für mich die besten In Ring Skills und begeistert mich bei jedem Match neu. Am Mic sicherlich kein Gott, aber meiner Meinung nach reicht das ganze völlig aus und mit seinem Charisma und seinen Ringskills macht er dieses kleine Defizit hundertprozentig wieder wett."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: gerybundy68wrote on 16.07.2008:[10.0] "Er hat allles was man braucht um an der Spitze zu stehen. Gutes Mic-Work, Charisma und eine grandiose Technik. Ich denke er kommt als Face besser rüber. Klasse Fehde mit Kurt Angle. Hier kann es noch zu einigen denkwürdigen Mastches kommen. Als TNA Urgestein eines der Aushängeschilder der Liga. Auch wenn man mit solchen Aussagen vorsichtig sein sollte - für mich im Moment der beste Techniker im Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Desperadowrote on 12.07.2008:[9.0] "Sehr guter Highflyer mit Charisma und auch gutem Mic-Work. Seine Fehde gegen Angle gefällt mir gut, AJ sollte auf alle Fälle Face bleiben. Leider denke ich, dass er über seinen derzeitigen Status nicht hinauskommen wird, weil er einfach etwas zu klein ist und die Main Event Heavyweights meistens doch bevorzugt werden. Aber vielleicht täusche ich mich ja. Sonst kann man nur sagen, dass er dadurch, dass er auch sehr gut Submission Style mitgehen kann "simply phenomenal" ist."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LordTrailerwrote on 10.07.2008:[8.0] "Styles ist natürlich eine Bombe im Ring und auch wenn es recht spotlastig ist, kann er auch anders. Als echtes TNA Urgestein hat er in der Liga schon alles mitgemacht. Leider fehlt im trotz Christian Cage (noch) etwas Charisma. Wenn er das weiter steigert, wie zuletzt ist er endlich komplett."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Sandman16wrote on 04.07.2008:[9.0] "Im Ring hat er so gut wie alles drauf und auch außerhalb dessen, hat er sich in den letzten Jahren verbessert. Gern seh ich in sowieso, aber irgendwie macht es jetzt noch mehr Spaß ihm zu zu schauen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MBLegendwrote on 21.06.2008:[10.0] "Er ist ein absoluter Weltklassemann. Durch seinen ringerischen Hintergrund weiß er auch technisch zu überzeugen. Als Highflyer sehe ich ihn als einen der Besten überhaupt. Was er in der Anfangszeit von TNA und in der Fehde gegen Joe and Daniels gezeigt hat, rechfertigt eine sehr gute Bewertung. Am Mic hat er allerdings noch Potenzial."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Shikawrote on 20.06.2008:[9.0] "Einer meiner absoluten Favs. Im Ring wohl einer der besten. Am Mic fehlt zwar noch ein wenig aber seit Anfang der Christian Coalition wird es immer besser"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Stalker1987wrote on 13.06.2008:[10.0] "Ganz klar Mr. TNA ... seit dem 1. monatlichen PPV hat er jede Großveranstaltung mitgemacht. AJ Styles ist für TNA was Sting für die WCW war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: The Champwrote on 11.06.2008:[10.0] "Mein absoluter lieblings TNA-Wrestler. Ein grund um überhaupt TNA zu schauen. Genialer Wrestler, klasse Mic-Worker. Verdient der "Prince of Phenomenal"!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: JohnnyCashwrote on 28.05.2008:[8.0] "AJ fehlt es einfach noch an Mic-skills. Allerdings sehe ich hier wenigstens eine Verbesserung. Was mich viel mehr stört ist die Leidenschaft. Diese fehlt nämlich mitlerweile. Trotz allem einer meiner Favoriten deshalb die gute 2. Hoffe er zwingt mich irgendwann durch Leistung sie zu ändern."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ThePrinceOfPunkwrote on 05.05.2008:[10.0] "AJ Styles ist wohl der beste und spektakulärste wrestler den ich je gesehen habe nurnoch übertroffen durch bret hart und"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Muffiwrote on 17.04.2008:[8.0] "Früher mal der Mann bei TNA, sehe ihn mir zwar noch gerne an, aber hat schon ein wenig abgebaut."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Buygymakewrote on 13.04.2008:[10.0] "Ist ein Aushängeschild von TNA neben Samoa Joe, auch wenn ich zugeben muss das er im Moment auch durch sein Gimmick nicht das abrufen kann / tut was er eigentlich drauf hat, ist er ein genialer Wrestler. Man muss sich nur die X Divsion Matches von ihm ansehen genial. Und am mic hat er sich sehr weiter entwickelt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kaffoe 666wrote on 26.03.2008:[2.0] "Unsympatisch & uninteressant... nervt mich tierisch. In Multiman Matches und Fights gegen die passenden Gegner noch so erträglich..."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Urbaner1982wrote on 26.03.2008:[10.0] "Ganz, ganz groß! Da ich den gesamten Karrierelauf vom Styles kenne (gut, ich kann ihn jetzt natürlich nicht komplett abrufen :-)) kann ich nur ne 1 geben. DAS ist TNA! Wir sind Wrestling! Ja, mit den Styles ist das auch der Fall. Genau der Mann macht zusammen mit sämtlichen X-divison Stars, TNA aus. Zusammen mit Tomko ein sehr gutes Team (wenn sie sich verstehen). Auch das neue "Prince of Phenomenal" Gimmick mit dieser genialen Krone, ist göttlich. AJ Styles: Vom Trailerpark-Assi zum Prince TNA, Prince of Romantic, Prince of Technik" Wow!"
Rating: 10.0
Sentiment: 0.3515625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Aaronwrote on 10.03.2008:[6.0] "Ich finde ihn absolut nicht mehr berauschend und sein Highflying ist absolut abgenutzt!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Amurebkuwrote on 17.02.2008:[10.0] "TNAW hat einen so tollen Wrestler, einen solchen Star und nutzt dieses voll nicht aus. AJ Styles gefällt mir als Wrestler. Er ist klasse im Ring. Toller Techniker. Ich finde er gehört zu dem besten was TNAW derzeit zu bieten hat. Aber die setzen lieber auf alternde Stars und geben den jungen zu wenig Chancen. Sein Mic-Work ist nicht ganz so beeindruckend aber überzeugt momentan viel mehr als vorher."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Joe710wrote on 01.02.2008:[10.0] "AJ Styles ist wahrlich ein Phänomen. 2004/2005 war es dieser innovative und verrückte Wrestler, der diese unglaublichen Aktionen gezeigt hat und sich alle fragten, "Wie hat er das denn gemacht". Heute unterstellen ihm viele er hätte nachgelassen. Ich bin der Meinung, er hat sich nur weiterentwickelt, was man nicht von allen Wrestlern seiner Gattung behaupten kann. Er hat von seiner Heel Zeit unglaublich profitiert und wirkt zurzeit auch viel interessanter und nicht mehr so eintönig. Ich bin der festen Überzeugung, dass da noch viel Luft nach oben vorhanden ist. Ich glaube in Zukunft wird man noch einiges von ihm hören."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: AnFuwrote on 04.01.2008:[8.0] "Ein klasse Highflyer und im Ring einer der besten Wrestler von TNA. Das Aushängeschild der X-Division, hat aber irgendwann aufgehört sich zu entwickeln, neben den namenhaften Stars bei TNA jetzt auch ohne Chancen. Gerade noch die 2!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ghostwrote on 03.01.2008:[6.0] "Was er im Ring macht is PHÄNOMENAL! :) Aber am Mic bzw. von der Show-Seite her gesehen eher mittelmässig.. Mir gefällt auch sein TNA-On-Air als ängstlicher, harmonie-süchtiger Character nicht besonders gut - würde ihn lieber in einer arroganteren, selbstbewussteren Rolle sehen."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: jimpanse1980wrote on 30.12.2007:[10.0] "Auch wenn mir sein aktuelles Nerd-Gimmik nicht gefällt, so ist er doch einer der Wenigen, der keinen Titel braucht um ganz oben zu stehen. Zudem ist er in der Lage sich weiter zu entwickeln und seine Leistungen stagnieren nicht. Braucht aber mal wieder anständige Gegner/Fehden ohne Tomko und sollte nicht weiter hinter den alten WWElern stehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MA Excellentwrote on 30.12.2007:[8.0] "AJ ist wirklich extrem talentiert! Mir fällt in Sachen "Technical Wrestling" kein besserer Mann ein. Auch seine Auftritte als Christians nerdiger Sidekick und Tomkos schräger Tag-Partner rulen. Es kommen also alle positiven Eigenschaften zusammen, die ein Top-Wrestler braucht. Da ist nur ein Problem, ihm (und Joe) stehen die Altstars vor der Nase. Um seinen Status zu verbessern, müsste TNA ihm (und Joe) irgendwann mal cleane Siege über Angle, Cage, Booker, JJ & Co. geben. Dann gibt es auch von mir die 1."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Texas Tornardowrote on 16.12.2007:[6.0] "Bei ROH hat er gefallen, bei TNAW hat er sehr abgebaut!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Neowrote on 09.12.2007:[6.0] "schon nen echt guter Wrestler, hat aber vergessen sich weiter zu entwickeln. Mittlerweile auch nicht mehr so farblos wie damals."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: donnerwrote on 21.11.2007:[8.0] "War früher mal ein Top-Wrestler aber er wurde schon von vielen anderen überholt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Hennewrote on 14.11.2007:[8.0] "Von mir gibts nur ne 2, weil er mich bei seinem Auftritt bei der ersten PWG Show in Essen mal überhaupt gar nicht überzeugt hat. Klar, war das "nur" eine von vielen Indy Shows und bei ROH oder TNA PPVs zeigt er deutlich mehr, aber ich bin doch enttäuscht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: darksaber999wrote on 29.10.2007:[4.0] "Kennt das Wort "Fanfreundlichkeit" nicht! Im Ring leider nur noch 0815, und Live ein ziemliches Arschloch!"
Rating: 4.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Benny110106wrote on 28.10.2007:[10.0] "Eigentlich passt alles wie bei Daniels, aber A. J. ist jederzeit dafür gut World Champ zu werden und der erfolgreichste Wrestler in der TNA-Geschichte, daher die 1 ! Ich hoffe er wird bald wieder Champ !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Thomas Carlsonwrote on 28.10.2007:[8.0] "Es gibt anscheinend 2 AJ Styles. Einmal derjenige der in seinen Matches überzeugt und der andere der nur Standard Zeug bringt. Gut das ich nur den einen gesehen habe. Ist ein großes Risiko eingegangen als er den Development Vertrag abgelehnt hat. Inzwischen braucht er die WWE wohl auch nicht mehr. Wird er wohl eh kaum machen wegen dem Tourstress. Ist mir als Heel lieber. Als Face wirkt er immer etwas farblos."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Blue Meaniewrote on 08.10.2007:[10.0] "Wenn ich hier lese, dass AJ Styles overrated sein soll, frage ich mich ernsthaft, ob es Leute gibt, die alle Main-Stream Wrestler für overrated halten ... AJ ist einfach genial! Kann mich sowohl technisch, als auch Highflying mäßig meist überzeugen. Am Mic ist er dann aber doch eher nicht so toll und als Heel geht er mal gar nicht! Finde es zudem schade, dass er mittlerweile nur noch ein Midcarder ist, wo er doch von Anfang an, neben Jeff Jarrett, DAS TNA Aushängeschild war. Hoffe mal, dass er bald wieder Face turnen darf und dann mal besser gebookt wird, Uppercard ist da schon das Minimum!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: WCWlerwrote on 23.09.2007:[10.0] "Ein fantastischer Wrestler. Hat sehr gute Aktionen drauf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Nick Toxicwrote on 22.09.2007:[10.0] "Un-freakinŽ-believable! Der Mann weis jedesmal zu überraschen. Als Face der Mann überhaupt und als (Comedy-)Heel echt zum schreien komisch. Glatte 10, was anderes geht hier garnicht!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Alex Shelleywrote on 18.09.2007:[6.0] "Zuletzt mit leichten Tendenzen nach oben. Dennoch: Weit weg vom AJ Styles 2002-2004! Aber wenigstens hat man es geschafft, seine wirkliche Überheblichkeit auch vor der Kamera in Szene zu setzen. Kommt sogar an *g*."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: caterwrote on 29.08.2007:[10.0] "Einfach ... phänomenal. Einer der ganz wenigen, die Aktionen sehr flüßig und sauber ausführen können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Baszdmegwrote on 18.08.2007:[4.0] "Viel zu overrated. Gibt Deathmatch-Wrestler mit mehr Technikskills als ihn und besser als irgendein anderer Highflyer ist er auch nicht. Charisma ungenügend, dennoch recht erfolgreich."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: shannonmoorewrote on 07.08.2007:[10.0] "Ob AJ Styles hier so schlechte Bewertungen bekommt weil er als einer der wenigen es immer mal wieder aus der X-Division schafft ? Da scheint wohl auch Neid im Spiel zu sein. Charisma stimmt gibt es gar keins aber in Sachen Wrestling ne glatte 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ecw foreverwrote on 04.08.2007:[8.0] "Im Ring sehr gut und am Mic auch. Also muss man hier doch einfach eine 10 geben oder? Klar es gibt bessere im Ring und auch am Mic kein Gott aber Charisma und halt das ganze drum und dran was man braucht. Ich gebe hier aber nur 8 da er noch sein mic verbessern muss."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: MGStylezwrote on 27.07.2007:[10.0] "Er ist TNA! Neben Samoa Joe, der absoulute Mr. TNA. Genial im Ring und am Mic. Schade das TNA ihn als Heel verwendet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Undertaker13wrote on 04.07.2007:[6.0] "Nicht schlecht aber nicht für den Main Event. Das ist meine Meinung."
Rating: 6.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Blade Bourdeauxwrote on 01.07.2007:[6.0] "Der Typ ist im Ring gut, verdammt gut. Aber das alleine reicht im TV-Wrestling nicht, um die Leute vor die Kiste zu locken und somit zur Spitze der Promotions. Aber, er ist ja auch noch nichtmal 30."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ShaneOwrote on 29.06.2007:[8.0] "AJ rockt das Hause als Heel! Im Ring total geil anzusehen - am MicWork kann er ja noch arbeiten - ansonsten Top."
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Nach wie vor einer der Eckpfeiler bei TNA! Im Ring verzaubert er uns alle mit seinen Aktionen! Und auch an Charisma mangelt es ihm nicht! AJ hat eigentlich alles, was es braucht, um die Zukunft im Business werden zu können!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Foerstawrote on 24.06.2007:[8.0] "Im Vergelich zu einigen anderen wrsetlern ist er durchaus ein guter. Allerdings nervt mich sein ewiges "rumgehopse" im Ring. Deswegen keine 1, die er wegen seiner führenden Rolle bei TNA durchaus verdient hätte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Trevedaswrote on 24.06.2007:[6.0] "Ausnahmekönner im Ring mit dem Aussehen und Charisma eines sehr sehr langweiligen Mannes."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Necronwrote on 24.06.2007:[6.0] "Toller Cruiserwheigtler mit dem typischen, neuartigen Indy-Style. Ob er jemals der ganz große Headliner wird, bleibt abzuwarten. Solte es CM Punk in der WWE schaffen, sollte das auch die Türen für AJ öffnen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: ABoyenswrote on 24.06.2007:[10.0] "Einer der besten jungen Wrestler der Welt - sowohl technisch wie auch am Microphon - seine bisherige Titelsammlung steht für sich. Einer der Mega-Stars von Morgen..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Kruemelwrote on 24.06.2007:[4.0] "Unmotivierte Flachzange. 2002 hätt er noch 8 oder 10 Punkte von mir bekommen."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: PuroDragonwrote on 24.06.2007:[4.0] "Der Typ ist Overrated ohne Ende. Er ist nur ein Spotwrestler, der maximal für Ultimate X Matches zu gebrauchen ist"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Knurkselwrote on 24.06.2007:[4.0] "Bestenfalls durchschnitt, aber leider absolut overhyped."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: suntan superstarwrote on 24.06.2007:[8.0] "-hat die x-division geprägt-erster tna triple crown champion-wurde von bret hart als bester wrestler bezeichnet"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Steven McWheelerwrote on 24.06.2007:[8.0] "Einer der besten Wrestler der Welt, jedoch finde ich ihn als Heel unglaubwürdig und eindeutig verbesserungwürdig, deshalb nur 8 punkte"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: therockingkingwrote on 24.06.2007:[10.0] "Ein fantastischer Worker. Im Ring ohne Frage über allem Erhaben. Dazu am Mic längst nicht so schlecht, wie von oftmals behauptet. Mal sehen, wie lange er seinen Stil noch beibehalten kann. Schließlich wird er auch nicht jünger und agiler. Fest steht aber jetzt schon, dass er mit seinen Leistungen geholfen hat, TNA einen Namen zu machen. Just phenomenal..."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=801&gimmick=AJ+Styles
Comment: Sabu316wrote on 24.06.2007:[8.0] "Guter Wrestler welcher bei TNA auch für seine Leistungen belohnt wurde. Leider sind seine Matches außerhalb von TNA mittlerweile eher 08/15 Programm."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Anas Kingwrote on 23.01.2025:[2.0] "I don't like him at all. One of the most overrated, overyhyped, over-acting referees of all time. Obviously there were some good stuff about him, bjut everyone has some good points. In his case, the bad outweight the good. He did a good job against heel wrestlers tho, so I do give him credit for that. There were many times he felt completely out of place.He use to miss spots frequently. He was slow. But his overacting was the worst thing about him, for me. I just cring everytime I see him react the way he does."
Rating: 2.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: BEER CATwrote on 11.07.2024:[6.0] "He really blew a lot of calls during NJPW's big 2010's "peak". Couldn't bump, couldn't sell the schmozz, was frequently out of position for distraction bits and all that. I respect his tenure and his work, but most of the time I noticed him in a match I wish I didn't."
Rating: 6.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: JediSaiyanMaster1203wrote on 05.06.2024:[10.0] "Might just be the most entertaining referee of all time, a man not afraid to get serious and comedic. Red Shoes is a very solid contender for the greatest referee of all time, a man who isn't afraid to tell the Bullet Club to suck it and will call the action no matter who he pisses off, and even isn't afraid to flip the bird at people (LOL! ). A perfect example of giving a referee personality and enhancing the match, someone who doesn't take away the spotlight on the performers and can even make the match more compelling. Overall, New Japan's best referee, full of life and energy, calls the action down the middle, doesn't make dumb decisions (as far as I remember), makes sure the match doesn't end unsafe (again, as I remember), etc. Deserves all the praise in the world."
Rating: 10.0
Sentiment: 0.22176978114478108
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: MainEventMasterwrote on 02.01.2023:[10.0] "Greatest referee ever, hes not a nobody, he has an actual personality, and he is beloved by literally every fan there is."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: The Wrestling Otakuwrote on 02.09.2021:[5.0] "Honestly Red Shoes is an occasional guilty pleasure of mine. While I enjoy it when he refuses to count the pin fall for the cheating heels that's pretty much the only great thing he does His over the top reactions can be hit or miss and the general officiating he and other njpw referees conduct annoys me a great deal especially when it comes to tag team matches. Anyway I like him but he is overrated by the current generation of fans"
Rating: 5.0
Sentiment: 0.16964285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Lyno123123wrote on 03.06.2021:[10.0] "(10/10) What can i say bout Red Shoes that havent been said already? he officiate ALL of the best matches i have ever watch. He is one of the few referee that can ENHANCED a match because of his signature move "False finishes roll" (dont believe me? see every false finishes is new japan, every time he stop the 3 counts suddenly. he always rolls over). And the best part he NEVER took anything away from a match. and also, one of the most respected person in NJPW"
Rating: 10.0
Sentiment: 0.1818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: BlakeFR37wrote on 02.06.2021:[10.0] "Best Referee Ever. Red Shoes is a legend of this game. Nowadays, he has 33 years of active refereeing and that's a reference."
Rating: 10.0
Sentiment: 0.11666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Zaidwrote on 02.05.2021:[10.0] "Red Shoes is the best referee that I've ever seen, he's really engaging, and is just a legend as a whole."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Kungwrote on 21.03.2021:[10.0] "I know I'm preaching to the choir when I say this, but Red Shoes is the best referee I've ever seen in my life."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Burninghammercriticwrote on 04.03.2021:[10.0] "the best referee in all of wrestling. No other ref is so versatile and on point as Red shoes, the guys in such great shape he could probably be a wrestler himself. Behind every NJPW classic, is Unno."
Rating: 10.0
Sentiment: 0.23273809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: znezaaljwrote on 06.12.2020:[10.0] "Red Shoes is undoubtly the greatest referee ever, his facial expressions, how he waves his hands, his 3 exact seconds count... And I could go on and on saying all the things he does well, even if he does not enforce the rules sometimes; this man is the GOAT."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: ElPolloLocowrote on 20.10.2019:[7.0] "I'd love to rate Unno higher because he knows how to do his job, and do it well, but on the other side he often seems like he's had way too much caffeine before the match. He cannot stay still for a second and it makes me nervous to watch him gesticulate wildly and jump around the way he often does. I understand wanting to add some colour to the match but Hunno sometimes ends up being just irritating."
Rating: 7.0
Sentiment: 0.07499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: NEVERoverweightChampionwrote on 12.07.2019:[10.0] "My favorite referee, a legend. He's always a good addition to the top matches, he can add drama sometimes. For example at New Beginning In Sapporo 2018, when Suzuki was torturing Tanahashi, mainly with some legwork. The Ace was so hurt that you could see Red Shoes almost begging Tanahashi to stop this and give up. It's just an example out of many things he's doing very well. I'll be sad when he'll retire."
Rating: 10.0
Sentiment: 0.2447811447811448
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: PuroresuLoverwrote on 13.05.2019:[10.0] "His mannerisms and facial expressions are something else. He is, without a doubt, the best referee in the history of pro wrestling."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: LandonRyanWyattwrote on 31.01.2019:[6.0] "He's good at being a ref, but always seems to make the matches about himself. A lot of the focus goes to him because of HIM, which is an insult and slap in the face to the guys delivering in the ring."
Rating: 6.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: KOR KOMBATwrote on 24.08.2018:[10.0] "My favorite ref besides lil Naitch, always adds to the match he's involved in instead of detracting from it. If you watch a lot of new NJPW classics, you're probably gonna see this guy as the ref. Red Shoes is a beloved figure in the IWC and it's kinda easy to see why."
Rating: 10.0
Sentiment: 0.35393939393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Robert Taylorwrote on 17.08.2018:[10.0] "Einfach der coolste Referee in Japan! Wie er die Moves und Matches immer mitgeht und abfeiert ist einzigartig, genau wie seine Mimik und Gestik, die ein Match durchaus aufwerten kann. Oder wenn er Bad Luck Fale mal wieder den Mittelfinger zeigt, einfach herrlich. Außerdem darf nur er solche roten Schuhe tragen! Erfüllt davon abgesehen immer genau die Rolle, die er erfüllen soll."
Rating: 10.0
Sentiment: -0.8749999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Dragon Fighterwrote on 02.12.2017:[10.0] "LOL at the guy who gave 4. Just laughable to take seriously. Red shoes is an awesome referee. One of the most impressive and spectacular referee I have ever seen. I bet at least 80% NJPW classics in this modern era involve him. His emotion and facial expressions during the match are freaking great. He also adds a lot to the storytelling in the ring. A 10 for sure."
Rating: 10.0
Sentiment: 0.38333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: arrancarwrote on 14.11.2017:[10.0] "Incredibly underappreciated for his work which is easily unnoticed but actually extremely important to the matches he officiates. The referee can be the unsung hero of a great match, and that's absolutely the case with Red Shoes. The way he has to fly around the ring in order to make sure he makes pin-fall counts in time and the way he twists and turns when halting his hand from making the 3 count just as a wrestler manages to kick out of a pin attempt is amazing. It adds so much drama to see someone billed as an official who has been in the business for so long essentially reacting just like a normal excited fan, since it shows that even a professional can be astounded by the wrestlers in front of him.  He also makes sure to never go over the top in his acting. He never draws attention to himself and instead only emphasises the importance of the match and of the moments produced by the wrestlers themselves. I am certain that in at least 50% or more of NJPW's great matches of the 2010s Red Shoes' officiating played a significant role in building up and paying off drama. Very few non-wrestlers deserve to be as highly regarded in wrestling as Red Shoes. He's a legend in his own right."
Rating: 10.0
Sentiment: 0.27166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Hunter Dunnwrote on 22.07.2016:[10.0] "Red Shoes is one of the best refs ever. It's his mannerisms and facial express that can make a match. It seems crazy but he actually adds to the match so much. If he's reffing, than the match has the wrestlers and him putting in the work to make it great"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: NastyYaffawrote on 15.04.2016:[7.0] "Red Shoes is an awesome referee. His facial expressions & general mannerisms are pretty great. Without a doubt the most recognizable referee in Japan."
Rating: 7.0
Sentiment: 0.35625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Mizzle Assault Antwrote on 01.03.2016:[4.0] "The rating seems kind of ridiculous, but that's not the reason I'm putting him at a 4. Honestly, I kind of don't like the guy, he often seems to be wildly gesticulating even when nobody is doing anything even remotely illegal, and he sometimes draws attention to himself when he shouldn't. I don't hate him but I don't really consider him to be one of the better referees I've seen. The fact that he is seemingly omnipresent in New Japan seems to be the only reason he is notable, but simply standing near a good product is not a reason to love someone."
Rating: 4.0
Sentiment: 0.15353535353535352
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Antimasterwrote on 23.10.2015:[10.0] "Ich liebe diesen Mann. Wenn er unauffällig sein soll ist er das, wenn er bumpen soll macht er das super, wenn er Comedy macht ist die komisch. Er erfüllt seine Aufgabe einfach perfekt. Red Shoes ist der beste Ringrichter überhaupt."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Kenshin Uesugiwrote on 05.09.2013:[10.0] "Er ist immer der " dritte " Mann im Ring.  Der überstrahlt sogar Hattori und Wada und das ist verdammt schwer, da können andere Promotions nur neidisch gucken."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: The Woerpwrote on 24.06.2013:"Einer der besten Refs dieses Planeten. Sein Agieren im Ring lässt jedes Match spannender, hochwertiger, bedeutender wirken."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: MaikBaaderwrote on 22.09.2011:[10.0] "Kenshin Uesugi hat alles gesagt. Nicht nur Wrestler machen ein Match gut, nein. Wenn ein Ringrichter einen unglaublich langsamen count hat, gar nicht reagiert was im Ring abläuft ist er einfach nur schlecht. Unno bringt aber alles mit, dramatik, gute Gestik, schöner Count. Einfach grandios"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: hatebreederwrote on 26.12.2009:[10.0] "Der beste Referee, den ich je gesehen habe. Hat zu Recht unzählige Big Matches geleitet bisher. Seine Gestiken sind erste Sahne."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Rancorwrote on 23.11.2009:[10.0] "Grandioser Referee, der mit seinen Gestiken Matches unglaublich bereichert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7522&gimmick=Hiroyuki+Unno
Comment: Fountain of Misinformationwrote on 17.04.2009:[10.0] "Alles andere als zehn Punkte wäre ein Frevel an diesem Mann, nachwievor unglaublich gut und bisher sind keinerlei Abnutzungserscheinungen zu erkennen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Rassle Fanwrote on 07.02.2025:[10.0] "Greatest manager and color commentator of all time. Many, many announcers and manager or "advocates" have been inspired by Heenan's portrayal. Overly demanding boss one minute then coward begging for mercy the next. He could be hilarious on commentary but also worked hard to really put over the cruiserweights in WCW. The wrestling world is worse by Bobby Heenan no longer being in it."
Rating: 10.0
Sentiment: 0.2510416666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Anas Kingwrote on 16.01.2025:[2.0] "First of all, I do think he was a good manager. But I just can't vote high for a racist, misogynist. I don't know why he always had something against foreign talents. His comments on the mexican wrestlers were absurd. He's like Hogan for me. I acknowledge their impact, but at the same time, I just hate them as persons. It's also quite shocking how Hogan gets all the heat, but Bobby gets away with it. I've not seen many people talk about all the horrendous stuff he has said about not just international wrestlers, but their overall cultures. But hey, a lot of people. And honestly, I'm sick and tired of this "He's a heel. He's playing his part" BS. Just because you are a heel doesn't mean you have a right to talk racist and stereotypical things about other people."
Rating: 2.0
Sentiment: -0.14339285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: dizziedwrote on 12.01.2025:[10.0] "The greatest wrestling manager of ALL time. No one was as good as Bobby. He was so big in the 80's and 90's where he would sometimes overshadow the wrestlers. Managers typically didnt get as much of a pop as he did. Some of the greatest moments in wrestling history were created by Bobby The Brain Heenan. Watching his biography made me admire him even more and the real Bobby, who was a great personality and natural heel. It was heartbreaking to see how his health had declined when he was inducted into the HOF. RIP Bobby Heenan, you will long be remembered as one of the greatest ever."
Rating: 10.0
Sentiment: 0.44027777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: DangoDaisukiwrote on 30.11.2024:[5.0] "Bobby Heenan ist eine Legende, aver für mich ist er es eben nicht zurecht. Er war zur richtigen Zeit am richtigen Ort und hat eine für damals gesehen gute Arbeit geleistet. Jedoch war er zum einen kein so guter Wrestler und zum anderen fand ich ihn persönlich als Manager eher irrelevant. Ich habe noch nie seine Popularität verstanden, ich finde weder seine Stimme angenehm, seine Reden besonders gut, noch das over bringen als Manager hatte für mich auch nicht funktioniert. 5 Punkte sind gerechtfertigt für einen Manager der okay für mich ist."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Nolan Greenwrote on 21.11.2024:[10.0] "I go back and forth on whether he or Paul Heyman is the best manager. Heenan was a true weasel that made everyone except The Red Rooster look like they meant something. If he wasn't in the Hogan era, one of his guys except Andre for 2 minutes would have been champion for a short time to get real heat and the place would explode when the Babyface beats his man. And then we go to commentary. He was one of best heel commentator since he was great at destroying everyone and his hatred for Hulk Hogan has aged like fine wine. Don't believe me, watch the 1992 Royal Rumble. That man sings a 5 star album when Flair comes out. He's probably the guy I have the least bad things to say about him since he did everything perfectly. One of the best."
Rating: 10.0
Sentiment: 0.2977777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Saladbagelwrote on 13.09.2024:[10.0] "There's a reason why Paul Heyman is often compared to Bobby Heenan. The latter is easily the best manager in the wrestling business, and he's also been a solid (if underrated) wrestler who also happened to be a good commentator. He and Gorilla Monsoon had excellent chemistry, to say nothing short of the good work that Bobby Heenan did on numerous WWE shows whenever he was handed a microphone. Some people say he was too good for the wrestling business with his wit, and I would be inclined to agree."
Rating: 10.0
Sentiment: 0.4533333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: allstar506wrote on 23.06.2024:[10.0] "Greatest Manager of all time. Made everyone he stood next to meaningful. Underrated WCW run on commentary as well."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: S0L1D SNA3K3wrote on 20.01.2024:[10.0] "Possibly the greatest manager in Pro Wrestling as well as the best color commentator in WWE history."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: All Cops Are Bossmanwrote on 20.01.2024:[2.0] "I know it was stock in trade for heel announcers, but the lazy racist, sexist, not giving a shit about the WCW luchadores schtick already felt old in the 1990s and has aged incredibly poorly now. Was "ha ha Japanese people like cameras! " funny to anyone?"
Rating: 2.0
Sentiment: -0.08571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: face painted legendwrote on 15.12.2023:[10.0] "Arguably the greatest all around performer to ever be in pro wrestling. The phycology that Bobby brought to wrestling was so far ahead of it's time that it's almost unreal. As a wrestler, he forgot everything he knew about in ring wrestling, and worked as if he were a manager who had never stepped foot inside of a ring, or taken a real bump in his life. He would cower from the babyfaces, he would pick his spots on when to get his small bit of offense in, he would take shortcuts to gain an advantage during a match, so on, and so forth. As a manager, he managed as if he were the world heavyweight champion, and a world class worker. It didn't matter who the guy was in the ring or how talented of a wrestler he was or lack there of the match that particular client was enhanced just by Bobby being out there ringside. His selling, his facials. his movements, everything he did was top tier, and he drew the fans watching at home or watching live more in to the match than whoever his guy was in the ring most of the time. So much that the argument could stand up that he was a better worker than probably all but maybe a count on one hand list of guys that he managed. When he was on the commentary, aside from being a broadcast journalist, his wittiness, comedic timing, and sharp tongue made him always fun to listen to regardless of who he was working with whether it was Monsoon (especially monsoon), Vince, or even Tony Schiavone to a degree. There will never be another Bobby "The Brain" Heenan."
Rating: 10.0
Sentiment: 0.29520202020202024
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] "The Greatest Manager Of All Time, hands down! This man was such a natural at being a heel, he could make any wrestler hated just by being managed by Bobby, no matter who it was. Not only that, Bobby Heenan was also a great talker on the mic, he was always compelling to listen to listening to, especially when he was trying to be funny, man was very naturally funny that he could have totally been a legendary stand up comedian. His commentary work is also great, one of the funniest duos ever being him and Gorilla Monsoon, they were a joy to listen to together. Not only that, his managing resume is pretty impressive, he's managed tons of legends like Ric Flair, Andre The Giant, Nick Bockwinkel, Rick Rude, Mr. Perfect, The Brain Busters, Harley Race, even CM Punk, he's got quite the list. There's this quote that Kevin Nash said about Bobby Heenan, it was from Wrestling's Most Awesome Managers, it went around the lines of "Curt didn't need anybody, but when you put him with Bobby... It's like John Lennon didn't need Paul McCartney, but together... Heenan totally enhanced it." Something like that, and he's definitely on the mark. Heenan truly understood his roles of toning himself down or amplifying his personality depending on who he managed, the man could do no wrong. Overall, Bobby "The Brain" Heenan is one of the greatest entertainers in the professional wrestling business who's legacy is still felt to this day, the best manager and one of the best commentators of all time. R.I.P. Bobby Heenan."
Rating: 10.0
Sentiment: 0.3390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Ozzywrote on 20.07.2023:[8.0] "Man was great at his job dont get me wrong, but he is still the most over rated manager of all time. He had 3 true success stories in history, Nick Bockwinkel, Andre The Giant, and Ric Flair. He did ok with Rude, Perfect, Orndorf, and The Brain Busters, but other than that his people were practically jobbers and he is somehow rated the best? He could generate heat sure, but he wasnt the best in history on the mic either. still great though,"
Rating: 8.0
Sentiment: 0.4160714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: ItsToniTime89wrote on 06.07.2023:[10.0] "Für mich neben Paul Heyman der beste Heel Manager im Wrestling Business ever. Als Kommentator ebenfalls eine absolute Legende"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: crs285wrote on 18.06.2023:[10.0] "Very best manager. Perfect heel foil to guys like Hogan. Had the crowd doing whatever he wanted, cheering, booing or laughing. As a commentator he could improve a match with his smart thinking."
Rating: 10.0
Sentiment: 0.7380952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: mizzyshawrote on 14.06.2023:[10.0] "The only personality in the sport of professional wrestling that never fails to make me genuinely laugh. And he was right about Hogan."
Rating: 10.0
Sentiment: 0.1871428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Giantfan1980wrote on 10.04.2023:[10.0] "What, are you serious? We are just talking about the greatest heel manager of all time, the greatest heel commentator of all time and the greatest comedy sketch heel of all time! Bobby did it all!"
Rating: 10.0
Sentiment: 0.6666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Kamilahclanwrote on 02.04.2023:[6.0] "A hit or miss character for me. I've gone back and watched old stuff and I am almost always very in the middle when it comes to his work wether as a manager or commentator."
Rating: 6.0
Sentiment: 0.07500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: greaterdalewrote on 03.03.2023:[10.0] "Without a doubt in mind he was the greatest announcer of all time. The kind of heel you loved to hate but also couldn't help but laugh at his clever wit. Also a true heat magnet as a manag. Like I said about Mauro Ranallo I've watched some pretty dreadful weekly tv with Bobby Heenan on it that was worth it just to hear him talk. There will never be another Bobby Heenan that's for sure."
Rating: 10.0
Sentiment: 0.21515151515151512
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: damiendemento1wrote on 03.02.2023:[10.0] "Best manager that ever climbed into a ring. Best commentator also. And he had the wrestling skills to back it up when he needed to. Thats a combo you dont see often. And some of the comments he made might be crossing the line today. But things change. His biography is a must read."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Leth99wrote on 22.07.2022:[10.0] "An amazing manager and he was even a former wrestler. He was badly injured by the Ultimate Warrior, but before that he was really willing to bump for the other wrestlers, something not every manager was willing to do. An amazing commentator as well. He was a funny heel commentator, something guys like Graves or Lawler needed to learn to do"
Rating: 10.0
Sentiment: 0.12500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: MorbidAxiswrote on 08.04.2022:[6.0] "I know a lot of people love Heenan. I never saw the appeal. He was decent as a manager, but he's one of my least favorite commentators of all time. He's obviously quite knowledgeable, I just can't stand listening to the man speak."
Rating: 6.0
Sentiment: 0.17333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Attitude Aggressionwrote on 05.04.2022:[9.0] "I have to admit, I did not see a lot of the "In-Ring" active wrestler Bobby Heenan. But as a manager and commentator he is one of the best. His back and forth with Vince, and Gorilla Monsoon, with his pro-heel color commentary is worth watching. Sometimes his humor seemed a little forced, and his initial transition to WCW was a little rough, but these are minor issues that do not detract from the overall package. The humor is a little dated, but on some early RAW matches, his kayfabe disinterest in face/face matches by "clicking" through channels on his monitor while aggravating Vince, was gold then."
Rating: 9.0
Sentiment: 0.0016712454212454272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Conquistador37wrote on 19.03.2022:[9.0] "As much as I love his 80's material, points docked because around 1992 he fell way WAY off as a color commentator and from there on he got notably worse. Thing is, he was never a really great commentator to begin with; buried too many, recycled the same jokes etc. In WCW he was borderline straight up awful at times and I'm not really sure who was to blame. So I think it's safe to say I did not care for him much in that role. Before his downfall though, he was incredible. Primetime Wrestling is one of my favorite television shows ever, his chemistry with Gorilla Monsoon was tremendous. I can never get enough of that stuff, from Miss Betty to Lance Wilshire and every "face buried in cake" in between. When a wrestler he was a bumping maniac/machine who would turn himself inside out and upside at the drop of a dime. He had insane leaping ability and could coast over the top rope to run from someone like The Ultimate Warrior. Is/was probably the most athletically inclined chicken shit heel ever. As a manager he had a fatal flaw though: more often than not he would over shadow his family member. While I am really not a fan of his 90's work, before that he was just too amazing to deny. 8.75 rounded up"
Rating: 9.0
Sentiment: 0.07753623188405796
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: jboyaquarwrote on 16.02.2022:[10.0] "What distinguishes Heenan, from all of the other great talkers & managers in pro-wrestling history, was that year-after-year he would bump for the faces. Heyman can't, Cornette wore-his-body-out after a few years, Hart's in-ring contributions ended after an infamous '75 plane crash, & Albano wasn't an every-night contributor. As a trained wrestler, he knew how to fling his rather unathletic physique & it cost-him many neck issues prior to the litany of health matters that would eventually take his life. As a child my parents wouldn't allow me to watch much wrestling, but because of Heenan, I would sneak-down every Monday night from '86-'91, 1 to 3 am, to watch the re-run of 'Prime Time Wrestling' mostly to revel in the comforts of the Monsoon-Heenan chemistry. I can't think of another talent who managed over fifty competitors & was equally successful in longstanding Main-Event roles in two major American promotions. Although I didn't think much of his individual matches, he was a one-of-a-kind pro-wrestling entertainer deserving of his top-spot on the Cagematch all-time top list."
Rating: 10.0
Sentiment: 0.21916666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: GriffinXwrote on 06.02.2022:[10.0] "The greatest manager I ever saw. His ability to make you care all that much more in any level. So many heel color guys have tried to be Heenan over the years. I loved how he managed like he was pain every time his guy took a hit. And a very underrated wrestler in his own right"
Rating: 10.0
Sentiment: 0.5408163265306123
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Muggowrote on 07.01.2022:[10.0] "The greatest manager ever. One of the greatest commentators ever. No one is a better non-wrestler than The Brain."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Pete Gallowswrote on 03.09.2021:[10.0] "The greatest commentator ever, the funniest ever. Many times I only watched matches to hear him talk. I have not seen many of his matches when he still wrestled, but I will always remember him for his jokes. My top 5 wrestling personality of all, no doubt."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: CoolKylewrote on 28.08.2021:[10.0] "Bobby Heenan legitimately could've been a successful actor if he wanted too. He was brilliantly witty, clever, dramatic, and could do it quickly in a single take. He was a gift to pro-wrestling and the likes of him will never be seen again. He's pro-wrestling's Robin Williams."
Rating: 10.0
Sentiment: 0.1823809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: TigerDiverwrote on 04.08.2021:[10.0] "One of the greatest who ever lived. This man could make me laugh all day long with his hilarious line on commentary. He was also an absolutely spectacular manager and was just GOLD on the mic. Incomparable contribution to the business. Rest well, Brain."
Rating: 10.0
Sentiment: 0.4583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Daigotsuwrote on 19.06.2021:[10.0] "One of the greatest non-wrestlers ever in the industry. Great talker and a very witty commentator who could put over a story with the best of them."
Rating: 10.0
Sentiment: 0.8625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Tomas Cunhawrote on 07.06.2021:[10.0] "Simply perfect. A brilliant manager and the funniest character in the entire history of wrestling, could even crack up the cameraman and the producers in the back on Prime Time Wrestling alongside Gorilla Monsoon. He had ace chemistry with pretty much everyone he worked with. Brilliant delivery as well, and could play a chickenshit heel manager like no one else. Heenan was a joy to watch, no exceptions, and a true legend whose work will never be forgotten."
Rating: 10.0
Sentiment: 0.4888888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: TheFrenchDisasterwrote on 19.04.2021:[10.0] "Very charismatic and funny, his duo with Gorilla Monsoon is legendary, and his duo with Okerlund is memorable as well. He will certainly be remembered as one of the best managers of all time, if not the best."
Rating: 10.0
Sentiment: 0.6591836734693877
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Brett1980wrote on 23.01.2021:[10.0] "The funniest wrestling personality of all time either as a manager or commentator. Had excellent timing in both physical and verbal comedy. Could get whipped around the ring bouncing from corner to corner when needed. His chemistry with both Gene Okerlund and Gorilla Monsoon was tremendous."
Rating: 10.0
Sentiment: 0.4444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: marexcelwrote on 29.05.2020:[10.0] "Richtig viele Möglichkeiten, das Schaffen von Heenan zu konsumieren, hatte ich noch nicht, aber alles, was ich sehen konnte, sei es als Manager oder Color-Kommentator war überragend und für mich ein Inbegriff von Wrestling, wie ich ihn mir vorstelle. Charisma, Charakter, Wiedererkennungswert und ein irrer Unterhaltungsfaktor. Legende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Keksteurwrote on 12.04.2020:[10.0] "The greatest manager of all time, one of the best promo, great commentator and also a very very good wrestler, Bobby "The Brain" Heenan is a true legend."
Rating: 10.0
Sentiment: 0.8119999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[10.0] "Best manager of all time. Immensely talented at the announce desk. Quick witter and sharp tongued. When it comes to the best of all time, sometimes you don't have to say much to make your point."
Rating: 10.0
Sentiment: 0.5180555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: JEK 1991wrote on 09.12.2018:[10.0] "Great heel manager. The greatest family ever the Heenan family. Helped and managed so many heel wrestlers in his career. Funny as well. As an announcer he was funny with Gorilla Monsoon. In WCW he was not so great in my opinion."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: RatingsMachinewrote on 21.09.2018:[7.0] "As a manager, Heenan was great, in so many ways. But as a commentator, Heenan was somewhat overrated. He could definitely be great at times, but Heenan had a tendency to try and throw in comedy, which was hit-and-miss,  that didn't add to the match at all, and often detracted from it."
Rating: 7.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: pappahousewrote on 21.08.2018:[9.0] "Ich habe ihn geliebt. Tolle Gags, herrlich blöde Promos, tolles Mic-Work. Es stimmt mich so so traurig, wenn ich sehe, wie lange er gekämpft und gelitten und am Ende verloren hat. Bei der Aufnahme in die Hall of Fame musste ich seinerzeit schon schlucken. Ein toller Mensch, ein toller Manager."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Cameron621129wrote on 18.07.2018:[10.0] "Top 3 manager. In my opinion the number 1 colour commentator. A heat magnet. One of the most memorable of his Era with thousands of iconic lines."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: DaWizWithADwrote on 07.07.2018:[10.0] "The greatest manager of all time and one of the greatest commentators of all time. Few can really match the genuine amount of wit he has and he always understood his job was to get others over."
Rating: 10.0
Sentiment: 0.48
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Gauntlet84wrote on 21.04.2018:[9.0] "Along with Jimmy Hart, he as the best heel manager of all-time. Great commentator and great manager despite me never once cheering for him."
Rating: 9.0
Sentiment: 0.8666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: stc13wrote on 08.02.2018:[10.0] "The Brain excelled in any role he was put in.  As a manager, he was able to get over both his own clients and their opponents, and was the perfect comedy foil.  Possibly the best color guy ever, and his quick wit made even the least interesting match entertaining.  He was great at making you hate heels and getting the viewer riled up in support of babyfaces. Listen to how loud the Weasel chants were during Nitros, even as he was at the tail end of his career."
Rating: 10.0
Sentiment: 0.3527777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: CHN325wrote on 31.01.2018:[10.0] "The greatest manager and one of the greatest commentators of all time. A lot of his mic work was comedy gold."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: jcleaguewrote on 30.09.2017:[10.0] "The best manager of all time. One of the funniest personalities in all of wrestling. His contributions to the sport will never be forgotten. RIP"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: SomeDudeOnTheInternetwrote on 05.03.2017:[10.0] "Einer der Besten nicht-Wrestler im Wrestling Business. Ich habe seine Zeit bei WWEs PrimeTime Wrestling und bei den Monday Night Wars nicht live erleben können, da ich wohl eher zu den "jüngeren" Wrestlingfans gehöre die mit Stone Cold bis Eddie Guerrero aufgewachsen sind. Nichtsdestotrotz gibt es ettliche Videos auf Youtube und WWE Network die seine absolut geniale Arbeit als Manager, Kommentator und Host beweisen. Auch wenn die Zeiten sich geändert haben und das heutige Wrestling anders ist, ist und bleibt Bobby The Brain Heenan der Lustigste den ich je in einer Wrestling Promotion gesehen habe! Seine Arbeit als Manager für seine Heenan Family war famos, war er mit seinem ungewollten "Neben"-Gimmick The Weasel absolut witzig, sein Mundwerk mit den ganzen Comeback-Einzeiler-Konter sind unglaublich passend. Als Kommentator und Host gehört er definitiv zu den Besten bis heute! Die Konstellation mit Monsoon waren unterhaltend und gelten heute für viele (berrechtigt) als unerreicht. Dann wird das ganze nochmal lustiger mit Roddy Piper als zusätzlicher Co-Host. Im Vergleich zum heutigen Wrestling fehlt mir so eine Art Unterhaltung.. Kurz: Das beste nicht-Wrestler Gesamtpacket und auch seine HoF Rede war sehr genial. Wem Bobby Heenan fremd vorkommt sollte unbedingt seine Arbeit auf Youtube oder dem WWE Network nachholen, es wird sich mehr als lohnen!"
Rating: 10.0
Sentiment: -0.4318181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Owenwrote on 01.03.2017:[9.0] "A generous and unselfish man, he never minded making himself look like a fool to put the other guy over."
Rating: 9.0
Sentiment: -0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: styles82wrote on 09.01.2017:[10.0] "The Brain war in einer Zeit wo es viele Manager gab der beste. Er ist der beste aller Zeiten und das mit Abstand. Wie er das Sprachrohr für seine leute war war einfach einzigartig oder wie sich Henning und er sich die Bälle zu spielten war großes Kino.  Im Ring konnte er viele Siege für seine Family auf sein Konto verbuchen. Aber auch als kommentator war er ein Genie. Bei ihm glaubt man wirklich er ist als Heel geboren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Squared Circlewrote on 12.10.2016:[10.0] "Simply fantastic, a loud mouth villain who would take tremendous beatings to the AWA's top heroes who morphed into a fantastic manager and commentator.  He was a rare blend of insight and humor who could generate a lot of heat.  He clearly was a mainstay, prime time villain during Hulkamania.  Hulkamania managed to overshadow everything, but the brain carved out a corner and was a huge success."
Rating: 10.0
Sentiment: 0.31481481481481477
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: ApexOfEvolutionwrote on 31.07.2016:[9.0] "Der Mann, der versucht hat die nwo kaputt zu machen, bevor sie überhaupt gegründet war ;-) Ein sehr lustiger Fauxpas, wenn man bedenkt, dass er in den 80ern mit seinen Klienten King Kong Bundy, Andre the Giant etc. meistens erfolglos versucht hat Hulk Hogan das Leben schwer zu machen. Diese Fehden wurden durch ihn eigentlich erst so richtig interessant. Er hielt einfach immer großartige Promos und war auch als Kommentator über jeden Zweifel erhaben."
Rating: 9.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Summerslam Fan 01wrote on 31.07.2016:[10.0] "Selbst Paul Heyman kann the Brain nicht das Wasser reichen,  Bobby Heenan ist und wird für immer der beste Manager bleiben Er ist einfach ein Gott, geborener Heel Großartiger Kommentator mit Gorrila Moonson als Dou unschlagbar"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Wrestling Foreverwrote on 25.06.2016:[10.0] "Einer der besten Manager und Kommentartoren aller Zeiten. Heute leider stark durch seine Operationen gezeichnet ist auch sehr dünn und wird sicher nie mehr so sprechen können wie frührer.  Hat aber seinen Humor nicht verloren. Absolut zu Recht in die WWE Hall of Fame aufgekommen worden. Edit: 25. 06. 2016 Im Internet hab ich von ihm aktuelle Fotos gesehen. Nach wie vor ist er sehr dünn, er trägt einen Schnauz und trotz seiner Krankheit schaut er gut aus und hat nie seinen Humor verloren."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Seven77wrote on 25.06.2016:[6.0] "A good, old school manager and commentator. No idea why he suddenly rose this high in the cagematch rankings in a couple of weeks, though. Ehr... Maybe some fan is trying to let him reach the top spot or somethin' and is flooding his page with 10s?"
Rating: 6.0
Sentiment: 0.4119999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: The Sick Lebowskiwrote on 14.06.2016:[10.0] "Grandioser Manager, grandioser Kommentator. Ihm hat man das Quasseln anscheinen in die Wiege gelegt. Spielt seine Rolle als "Weasel"-Manager auch absolut stark. Zu Recht eine der Manager-Legenden des Wrestlings."
Rating: 10.0
Sentiment: -0.4571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: EGeraldhuebnerwrote on 28.04.2016:"Bobby Heenan ... Markenzeichen: kennt und läßt keinen, auch noch so schmutzigen Trick aus, um das Kampfergebnis zu manipulieren, ob nun allein oder gar gleich noch mit etlichen Helfershelfern (ein Meister der Intrigen und Ränkespiele). Einfach ein extrem loyaler Manager, der alles, aber auch wirklich alles für seinen jeweiligen Schützling getan hätte ... und dies eben auch viel zu oft getan hat (ich erinnere hier nur mal an Mr. Perfect vs. Bret Hart - Intercontinental Champion Title), daher als Heel einer der besten. Wenn nicht bereits jeder Mark wissen dürfte, das es Fake ist, könnte man ernsthaft vermuten, durch ihn waren so manche Siege erst möglich geworden. Hat seine Sache immer sehr gut gemacht."
Rating: No rating found
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Mean Smark Callouswrote on 13.04.2016:"An all-time legend, the greatest manager in the history of the sport, the greatest color guy in the sport, one of the quickest wits I've ever seen, Heenan ALWAYS had a comeback for everything, and it was always funny. As others pointed out, he deserves nothing less than a 10."
Rating: No rating found
Sentiment: 0.35416666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: jcb9wrote on 10.04.2016:[10.0] "An absolute legend. Untouchable. Best color commentator ever, by a HUGE margin. Probably the greatest manager ever, too. For anyone to give The Brain any rating other than 10 is an absolute farce."
Rating: 10.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: oscargeorge1wrote on 23.03.2016:[10.0] "Simply the best colour commentator in Wrestling history, especially when paired with Gorilla Monsoon."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Super Mastodonwrote on 19.03.2016:[10.0] "As JR said Bobby Heenan is the greatest entertainer in the business! He did it all: wrestle, manage, and commentate and he did well in all of those aspects! While Paul Heyman is great, I still think Bobby Heenan is the greatest manager of all time and one of the best heels in the business! It sucks that he is unable to speak now but his sense of humor and fighting spirit is still there! There is only one Bobby "The Brain" Heenan."
Rating: 10.0
Sentiment: 0.40104166666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: NoNamewrote on 10.02.2016:[8.0] "Er war ein guter Manager aber für mich nicht mehr, er kommt für mich einfach nicht an einen Paul Heyman ran, deswegen gibt es hier von mir mal "nur" 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: ShooterMcShootwrote on 13.11.2015:[10.0] "Bobby Heenan is simply the greatest manager in the history of the business to me. Also, his work as a color commentator was hilarious, especially his chemistry with Gorilla Monsoon. I would like to add as well that when I was a little kid, it was Bobby Heenan that made me want to get involved in wrestling. He was funny and I wanted very much to be just like him."
Rating: 10.0
Sentiment: 0.26035714285714284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Mizzle Assault Antwrote on 22.09.2015:[10.0] "Arguably the greatest performer in wrestling history. His wit and humor is utterly legendary, his devotion to character impeccable, his slavish desire to always put over the other man by playing the fool is unmatchable. The greatest manager, the greatest commentator, and secretly a pretty good wrestler too, especially when it comes to bumping. There will never be another like him, I sincerely hope his health improves."
Rating: 10.0
Sentiment: 0.6075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Zedwrote on 14.07.2015:[10.0] "So sehr ich Paul Bearer und Paul Heyman liebe, aber dem "Weasel"konnten selbst die beiden nicht das Wasser reichen. Er hatte eine Ausstrahlung für einen Manager, man hasste ihn einfach mit Leib und Seele, sowas schaffen nicht viele Manager. Und als Kommentator hat er nochmals eine Schippe draufgelegt. Mit Monsoon im Gespann einfach nur Legendär, und als WCW Kommentator trug er auch viel für den Goldberg Hype bei. Um so trauriger werd ich wenn man Bobby heute sieht und weiß dass dieser mann seine größte Gabe verloren hat, seine Stimme."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Viper99wrote on 30.04.2015:[10.0] "Ich kann einfach nicht mehr sagen als das er einer der besten Manager und Kommentatoren aller Zeiten ist! Seine Duelle gegen Monsoon bleiben unvergessen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: DanTalksRasslinwrote on 23.04.2015:[10.0] "Simply the greatest manager of all time.  On the mic, he could make you laugh or make you mad, while putting over his charges perfectly.  He was also a fantastic color commentator with so many great one-liners over the years; he and Gorilla Monsoon being my all-time favorite broadcast team.  Even when not really trying on commentary, such as on the WOW Unleashed PPV, he still made with the funny enough to be enjoyable.  His time as a regular wrestler was a bit before my time, but when he was managing, if a situation called for him to get in the ring, he always did well and made sure the opponent came out of it looking good.  Probably my single favorite wrestling personality ever."
Rating: 10.0
Sentiment: 0.3126785714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Taker77wrote on 09.03.2015:[10.0] "Simply the greatest manager of all time, the Brain had such a brilliant mind for the business.  Oh I miss these days a lot. When Bobby was gone in 93 WWF was never the same."
Rating: 10.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: zackwoowoowooryderwrote on 28.12.2014:[10.0] "Ein genialer Manager und auch ein großartiger Kommentator. Als Heel einfach nur göttlich und für seine verbalen Auseinandersetzungen mit Gorilla Monsoon gilt selbiges."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: downtown2wrote on 20.11.2014:[9.0] "Als Manager und Kommentator eine Ausnahmeerscheinung, vielleicht der Beste den es je gab. Außerhalb des Rings macht er schon mal einen recht käuflichen, bzw. hinterhältigen Eindruck, beispielsweise wie er über den Warrior auf der Desdruction-DVD hergezogen ist. Nicht die feine Art, welche über ihn als Privatperson Bände spricht, dieses sollte seine Wertung als On-Air Charakter jedoch nicht beeinflussen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Shentenzawrote on 07.10.2014:[10.0] "Kann man Bobby Heenan nicht mögen? Einer der besten, wenn nicht sogar der Beste Heel Manager überhaupt. Am Mikro großartig und als Kommentator göttlich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Phenomenal91wrote on 05.08.2014:[10.0] "The greatest color commentator of all time. You loved to hate him. Heck, I cheered for Flair alongside Heenan every time Flair went up against Hogan, because I didn't like Hogan either! But seriously though, this guy is great and any announcer should listen to him if they want to know how to liven up a wrestling show the right way."
Rating: 10.0
Sentiment: 0.2420634920634921
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: bugsy mcgrawwrote on 30.03.2014:[10.0] "Heenan was one of the greatest managers of all time and was a great color commentator as well."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: RepoManwrote on 07.01.2014:[10.0] "Als Manager sowie als Kommentator herrausragend, einer der besten seiner Zunft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: CLPSKYLINERwrote on 12.11.2013:[8.0] "Legendärer Manager. Bobby The Brain Heenan ist mit der größte"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Alex Maedawrote on 05.09.2013:[8.0] "Einer der besten Manager aller Zeiten, hat Stars zum Legendenstatus verholfen und Rohdiamanten den letzten Schliff verpasst. Neigte leider zur Repetation von vielen altbewährten Sprüchen, Methoden ect.  Das, was er machte, war nicht immer innovativ, aber unheimlich konsequent und effektiv."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: TheIbarwrote on 22.07.2013:[10.0] "Bobby "The Brain" Heenan is the greatest manager in professional wrestling history. Period. The most entertaining person ever to perform in front of a wrestling crowd and audience. Bobby managed so many amazing athletes and it's an honor to be managed by The Brain. And, of course, Bobby and his best partner Gorilla Monsoon were just the funniest duo on commentary and outside the ring. Thank you for every moment! God bless you!"
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: test85wrote on 16.06.2013:[10.0] "Neben Paul Heyman der Manager schlechthin. Charismatisch und seine Promos haben mir auch gut gefallen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Fountain of Misinformationwrote on 10.03.2013:[10.0] "Schlichtweg großartig, als Manager und vor allem als Kommentator. Mit dem Mundwerk, diesen Sprüchen, dieser Spontanität usw. usf. hätte er auch in vielen anderen Bereichen außerhalb des Wrestling Business problemlos Karriere machen können. Ihn zusammen mit Gorilla Monsoon zu hören ist immer wieder ein Highlight für mich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Titansrevengerwrote on 06.03.2013:[10.0] "There isn't to much to not like about Bobby Heenan. In my estimation Heenan is wrestling's greatest entertainer;he was a good wrestler, manager, commentaor, and overall personality. For me it was actually Heenan that kept me involved with wrestling for a number of years. His interactions with Monsoon were hilarious and thats kind of an understatment. There were so many moments of greatness throughout Heenans tenure in the WWF;from his time as a manager in the Heenan Family, to over hyping Ric Flair, to making fun of Boss Mans mother, everything Heenan touched turned to gold."
Rating: 10.0
Sentiment: 0.4222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: LM Punkwrote on 30.08.2012:[7.0] "Ich berwerte Heenan nur als Manager, da ich ihn nich haber wrestlen sehen. Aber als Manager einfach überzeugend und auch nervig, was ja auch seine Aufgabe war."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: what89wrote on 13.10.2011:[9.0] "Für mich der beste Manager, als Kommentator auch gut. Wrestling braucht auch genau diese Typen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: devilsoldierwrote on 10.10.2011:[10.0] "Ich lege mich fest und sage mal der beste Manager der Wrestlingwelt und ein grandioser Kommentator. Herrlich wie oft hat er mich unterhalten und zum lachen gebracht allein nur mit einem Gesichtsausdruck, einem Satz oder völlig banalen Dingen die er getan hat und ich auf dem Sofa halb zusammengebrochen bin. Einfach herrlich ihm bei seiner Hall of Fame Rede zu hören, dass ist Entertainment pur. Einfach eine Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: C0nspiracywrote on 28.03.2011:[6.0] "Eine echte Manager Legende der alles gesehen hat. Abzüge gibts beim Charisma den mehr als das Standartprogramm als fießer Manager/Kommentator hatte er jetzt auch nicht gerade."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: jjchiofalowrote on 05.01.2011:[10.0] "Heenan is perhaps the greatest man to ever go on screen in pro wrestling. He is funny, witty, clean, and knows how to announce. He knows how to get a crowd going (as a face or a heel). Heenan is the epitome of what a commentator could and should be."
Rating: 10.0
Sentiment: 0.5291666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Schandmaulwrote on 06.10.2010:[10.0] "Tja, was bleibt mir anders zu sagen. 10 Punkte für einen der besten Manager aller Zeiten. Perfekter Heelmanager. Besser gehts einfach nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Double Jwrote on 16.09.2010:[10.0] "DER manager, herausragend, einfach nur heruasragend. Da kommt kein einziger manager aller zeiten ran, nicht mal Topmänner wie jim cornette oder Freddie Blassie."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Eddiewrote on 16.03.2010:[10.0] "Heenan war wohl einer der besten Manager aller Zeiten. Aber nicht nur das, er war auch ein geiler Kommentator. Ich erinnere mich nur an seinen Auftritt bei WM IX. Köstlich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Fat Mikewrote on 01.03.2010:[10.0] "Eine der unterhaltsamsten Persönlichkeiten und der wahrscheinlich beste Manager den das Wrestling hervorgebracht hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Aquifelwrote on 07.01.2010:[10.0] "Als Manager erstklassig, als Kommentator einfach nur der Wahnsinn. Neben Jesse Ventura wohl der beste Heel-Kommentator auf dieser Erde. "That's not fair to Flair". Einfach nur sensationell wie er ein "ganz gutes" Rumble Match durch seinen Kommentar zum absoluten Must See macht."
Rating: 10.0
Sentiment: -0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Rene DeVitowrote on 21.11.2009:[10.0] "Ich fand Heenan schon immer einen sehr talentierten, TV tauglichen Heel Valent. Vor allem seine Fehde gegen Hulk Hogan war schon cool, Entertainment und auch stets lustig."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Scotty 2 Hottywrote on 14.10.2009:[10.0] "Genialer Manager und auch ein großartiger Kommentator. Als Heel einfach nur göttlich und für seine verbalen Auseinandersetzungen mit Gorilla Monsoon gilt selbiges. Klare 10 Punkte für "The Brain"!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Basket Casewrote on 14.09.2009:[10.0] "Grandioser Manager und Color-Kommentator. Einer der Besten ever."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: LashLerouxwrote on 14.09.2009:[10.0] "Wird am Mic wohl immer unerreicht bleiben. Wohl einer der größten Legenden, die es im Wrestling gibt. Aber als ich ihn bei der HOF-Zeremonie gesehen hab, sind mir die Tränen gekommen-scheiß Krebs."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: 108 Sternewrote on 24.07.2009:[10.0] "Bobby Heenan.... einfach ein klasse Manager und Color Kommentator!  Wohl noch eine Spur kultiger als Jimmy Hart und Jerry Lawler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Matt Mackswrote on 22.07.2009:[10.0] "Für meine Begriffe einer der besten, wenn nicht gar der beste Heel-Manager und Color Kommentator der Wrestlinggeschichte. Sein Kommentar machte selbst manche WCW-Shows erträglich. Sein Team mit Gorilla Monsoon Anfang der 90er war fantastisch. Ein großartiger, sehr lustiger Mann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Excellence of Executionwrote on 01.07.2009:[10.0] "Als Heel Kommentator war er ausgezeichnet und ist dort (in meiner persönlichen "Rangliste") knapp hinter dem Spitzenreiter Jesse Ventura und auf Augenhöhe mit dem alten Heel Kommentator (! ) Jerry Lawler. Hinzu kommt die Tatsache, dass Heenan auch heute noch mit Leichtigkeit als Blaupause für den perfekten Heel Manager gelten kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Mick Funkwrote on 24.06.2009:[10.0] "Der beste Manager aller Zeiten. Schade, dass es sowas wie ihn in der WWE heute so gut wie gar nicht mehr gibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: jerseyhoolwrote on 13.06.2009:[10.0] "Ich verehre & vergöttere Heenan - nie wieder habe ich einen derart charismatischen, witzigen & vor allen Dingen rhetorisch bewanderten Manager im Wrestlingbusiness gesehen. Seine Leistungen als Kommentator sind auch heute noch mehr als einen Lacher wert - manch einer der heutigen Announcer könnte sich da eine Scheibe abschneiden. Natürlich genial im Duo mit Gorilla Monsoon, leider reichte er in der WCW nie wieder an die Glanzzeiten der WWF heran. Mit ihm ist einer der ganz, ganz Grossen aus dem Geschehen ausgeschieden, nie wieder werde ich seinemWortwitz lauschen können (es sei denn, man erbarmt sich meiner & nimmt Heenan wieder unter Vertrag - was bei seiner Krebserkrankung wohl eher ausgeschlossen sein dürfte! ). Dabei würde ich zu gerne hören, was er über die aktuelle Generation der Wrestler zu lästern hätte... ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: The-Game91wrote on 20.05.2009:[10.0] "Grandioser Heel Manager und noch viel besser am Kommentatoren Pult. Hab ihn immer gerne zugehört."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Father Nelsonwrote on 01.02.2009:[10.0] "You will never again find a Heel-Manager, who has THAT kind of charisma and THAT kind of humor."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: LordTrailerwrote on 27.07.2008:[10.0] "Eine Manager- und Kommentatorenlegende, die diesen Titel auch verdient. Heenan hat es geschafft, dass man ihn als Heel gehaßt hat. Dabei hat er seine Schützlinge over gebracht, was ja auch die Aufgabe eines Managers ist. Großes Kino!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: affenmannwrote on 13.07.2008:[10.0] "Der mit Abstand(! ) beste Manager aller Zeiten. Selbst relativ konturlose Midcarder wie z. B. Haku bekamen ordentlich Heat, wenn sie vom Brain gemanaged wurden. Als Kommentator würde ich ihn ebenfalls in die All-Time-Top-5 setzen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: ecw foreverwrote on 22.06.2008:[10.0] "Also wer hier keine 10 gibt muss was an der Backe haben, so seh ich das:D. Ne ernsthaft der Mann hatte es drauf. Als Manager genial und er lief sogar 2 bis 3 mal bei WM raus. Als Kommi noch genialer. Man muss nur all seine Sprüche ansehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Frutzwrote on 25.05.2008:[10.0] "Ein genialer Heel-Manager, ein genialer Heel-Kommentator, wobei seine Aussagen oft mehr Wahrheit hatten, als die der 'guten' Face-Kommentatoren. Ausserdem hat man ihm die Liebe zum Wrestling immer abgenommen und er hatte mit der Heenan-Family den Heel-Stable der 80iger und fruehen 90iger."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: DonTwrote on 17.03.2008:[10.0] "Einer der besten und fiesesten, aber auch intelligentesten Manager aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: ghostwrote on 21.12.2007:[10.0] "The Brain! Hat das Gehirn am richtigen Fleck! :) Super als Manager, Super als Kommentator, einfach alles super - eine wichtige, schillernde Wrestling-Persönlichkeit!"
Rating: 10.0
Sentiment: 0.39583333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Sandman16wrote on 20.10.2007:[10.0] "Der bekannteste und beste Manager überhaupt. Bei ihm hat einfach alles gepasst und er war für dieses Business einfach wie gemacht. Auch als Kommentator konnte er voll überzeugen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: darksaber999wrote on 30.09.2007:[10.0] "Der beste Color-Kommentator aller Zeiten, zudem ein genialer Heel-Manager! LEGENDE!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: H-Scorpiowrote on 11.09.2007:[10.0] "Als Kommentator war er cool, unterhaltsam und nervig zugleich. Dennoch war er damals ein würdiger Nachfolger von Jesse Ventura. Vielleicht die Manager-Legende überhaupt. besonders die Szene als Mr. Perfect dem winselnden Heenan Wasser über den Kopf geschüttet hat, ist mir in freudiger Erinnerung geblieben."
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Zombrerowrote on 04.09.2007:[10.0] "Eine herrliche Ulknudel. Ich bewerte ihn nicht als Manager, sondern als Kommentator."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Blade Bourdeauxwrote on 02.07.2007:[10.0] "Das Weasel, eine immerwährende Quelle guter und treffsicherer Spürche. Hätte es ihn nicht gegeben, müsste man ihn erfinden. Ob als cleverer und feiger Manager oder als Color-Kommentator der Mann hat es einfach drauf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Eines der besten Manager, obwohl er als Kommentator auch nicht so schlecht war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Ein irre lustiger Typ, dieser Bobby! Und eine Manager Ikone obendrein! War über wie viele Jahrzehnte lang Heel und es war trotzdem immer wieder erfrischend! Auch als Kommentator versteht er sein Handwerk, das kann nur 10 Punkte geben!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: WCWlerwrote on 24.06.2007:[10.0] "Einer der besten Manager und ein verdammt guter Redner."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: MrPerfectwrote on 24.06.2007:[10.0] "Einer der besten Kommentatoten aller Zeiten, bei dem was dieser Mann alles geleistet hat verzeihe ich ihm auch seinen Fauxpas beim BatB 1996. "On whos side is he on"."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: jollietwrote on 24.06.2007:[10.0] "Als Manager immer unterhaltsam (z. B. mit immaginärer Bulldoge in der Fehde mit den British Bulldogs... )"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Hypocrisywrote on 24.06.2007:[8.0] "Legendär finde ich seinen "Einmarsch" bei Wrestlemania 9 im Caesar's Palace."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: ABoyenswrote on 24.06.2007:[10.0] "Wohl einer der bekanntesten und geachtetsten Nicht-Wrestler des Business. Ob als Manager oder als Kommentator - Heenan liefert immer ganz großes Kino. Daumen hoch!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: mdbnasewrote on 24.06.2007:[10.0] "Einer der Besten! ... vielleicht nicht als Wrestler, aber als Manager und Kommentator ungeschlagen! Immer lustig, sarkastisch und wortgewand mit absolut genialem Micwork! Sehr unterhaltsam seine Shows mir Gorilla Monsoon (Rip) - Eine Legende!Hat mich wirklich schockiert, als ich in beim WWE Draft kaum noch erkannt habe, weil der Krebs ihn wohl schon so zerfresen hat, sehr Schade!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Giant2wrote on 24.06.2007:[10.0] "Was soll man zu Heenan groß sagen außer: Der vielleicht beste Heel-Manager aller Zeiten, sowie einer der unterhaltsamsten Color-Kommentartoren überhaupt. Volle Punktzahl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=770&gimmick=Bobby+Heenan
Comment: Hennewrote on 24.06.2007:[10.0] "The Brain. Genialer Manager, genialer Color Commentator. 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Zak22wrote on 09.02.2025:[9.0] "I've only seen a bit of Aja Kong's prime in the 90s and early 2000s but just about enough to have an opinion. Kong was the perfect monster heel and stood out in that era of joshi wrestling for her extremely strong style and surprisingly high work rate for her size. Kong had some of the greatest women's matches ever and has a match catalogue that not many can match. Kong was surprisingly smooth with her moves and had a great piledriver. Her matches with Toyota and Kudo really stand out. She reminds me of Vader in All Japan, with her stiff as hell, monster heel status."
Rating: 9.0
Sentiment: 0.3024206349206349
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: wrestlingswiftiewrote on 30.01.2025:[10.0] "BEAST of a wrestler, and despite being a female, she could probably beat the twinks we have on the roster today in a shoot fight. What is there not to like about Aja Kong? She's never had a bad match, she's got the look of someone you'd wanna see, and she somehow has a style that blends between chaotic and methodical. I'd say she's the female Vader, but better (although Vader himself wasn't bad, he was also good)"
Rating: 10.0
Sentiment: -0.03333333333333329
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Anas Kingwrote on 20.01.2025:[4.0] "Ok, I 'm aware she is popular and I know she's a monster, so this probably going to be a hot take. She is not as good as people make her out to be. Yeah, she's powerful and has a strong style, but we're talking about being best in the world. She falls short in that category. She doesn't have the agility that people like Manami and Io have, she doesn't have the selling art of Mayu. I think people overrate her because she's a legend and they give her big ratings just out of respect. That's not me. I'm going to keep it real."
Rating: 4.0
Sentiment: 0.38484848484848483
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: aurarockwrote on 17.12.2024:[9.0] "greatest japanese monster that western promotions would have died to have, yet their use of them was lacklustre but it was quickly made up by her japanese promotion history"
Rating: 9.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: yumin76wrote on 08.12.2024:[9.0] "Aja Kong is a name synonymous with power, charisma, and an unwavering presence in the world of womens professional wrestling. Hailing from Japan, Aja Kong (born Erika Shishido on September 25, 1970) is one of the most influential and celebrated figures in the history of women's wrestling. Her career has spanned over three decades, and during that time, she has built a reputation as one of the most feared and respected wrestlers, male or female, to ever step into the ring. From her dominance in Japan to her international appeal, Aja Kong's impact on the wrestling world is undeniable."
Rating: 9.0
Sentiment: 0.20714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: PrimeDirectivewrote on 07.09.2024:"I'm strongly convinced that Aja Kong is the greatest African wrestler of all time, on top of being the best woman to ever lace up a pair of boots. Her matches were incredibly violent no matter who she wass working, with the 2000 battle against KAORU on February 13th being an all time slug fest. She changed the way I look at women's wrestling, perhaps in a not so good way -- my expectations are incredibly high and there is no way that any easily accessible women's wrestling in America can touch what she was able to accomplish with her contemporaries during the 90's and early 2000's. She's the embodiment of an 11 out of 10 pro wrestler and one of the greatest of all time, bar none."
Rating: No rating found
Sentiment: 0.3821794871794872
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Gabiwrote on 25.07.2024:[10.0] "Aja Kong is everything you want in a monster heel. Violent powerhouse you do not want to mess with. Legend"
Rating: 10.0
Sentiment: -0.48750000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: woolyshamblerwrote on 21.07.2024:[10.0] "greatest joshi of all time, greatest monster heel of all time, aja is a spectacle. i'll never forget those fork spots in her cage match with bull."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: jcheng777wrote on 24.04.2024:[10.0] "Easily one of the greatest female wrestlers of all time. Absolute legend and her hard hitting and powerhouse style will perpetually be over."
Rating: 10.0
Sentiment: 0.21527777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: thedman0310wrote on 20.03.2024:[10.0] "A strong contender for the greatest Joshi wrestler of all time, Aja Kong is the real deal. Everything she does in the ring looks like it hurts like hell, and she knows it. Kong always has an aura of danger in her matches, like she's always one moment away from sending her opponent to intensive care. She is also a phenomenal seller, especially in her amazing match against KAORU from Gaia Japan in 2000. Her screams after she gets her arm cut with a piece of table are chilling. Also, she comes out to the best Judas Priest song, so that definitely helps."
Rating: 10.0
Sentiment: 0.3592592592592593
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: mxkamiwrote on 11.02.2024:[7.0] "Absolute legend, but Aja Kong hasn't been able to move well for a while now, and it's starting to hurt the legacy for me. At the absolute highest, I'd rate her an 8. "Why not 10? " Look... I am not very squeamish. I grew up the kid of a firefighter, so I saw some real world horrors even as a child. But my god... When the finish is "I'm gonna shoot backfist you AS HARD AS I CAN AND BREAK HALF THE BONES AROUND YOUR EYE", as a blonde mustachioed hot dog once said: "That doesn't work for me, brother." I get it. I do. And I like strong-style wrestling. KENTA, Murder Grandpa, Kana, Bull Nakano, Manami Toyota... I really do get it, y'all. But if I wanted to see stuff like this, I'd watch MMA. I also am not a fan of her selling either. Arm is bloody, screaming bloody murder at the top of her lungs which is taking me out of the match... Oh look, backfist. Scream scream scream... Armbar. Scream some more, followed by another backfist. Again, an absolute legend and Japanese staple who changed the game. Just not for me."
Rating: 7.0
Sentiment: 0.010648148148148141
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: CorpusSkiptotelicumwrote on 16.01.2024:[10.0] "Women's wrestling goat. There's no one in wrestling history, male of female that delivers better better beatdowns than Aja. An absolute dominant monster in everything she did, never holding back on strikes or power moves. She's also an excellent seller, a very necessary component in the best david vs goliath matches. She was also good for very long... she's cooked now of course, but that doesnt negate her work in the past."
Rating: 10.0
Sentiment: 0.29875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Bar786788wrote on 29.11.2023:[10.0] "The ultimate monster heel and one of the greatest of all time. There is no understating how much of a legend this woman is and how important she is to Japanese womens wrestling"
Rating: 10.0
Sentiment: 0.32
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Mugendaiwrote on 24.08.2023:[10.0] "Current day Aja Kong is nearly unwatchable due to her deterioration. That is where my criticism of Aja ends. Aja was a top tier performer for at least two, possibly three decades, a run that is nearly impossible to beat. There are so many good matches from her tenures in AJW, Arsion, GAEA, and freelancing up until the last few years that practically anything involving Aja is bound to be at least watchable, if not entertaining. If she is coasting through the twilight of her career and getting nostalgia bookings, then more power to her! She should make millions of dollars for the work she put in throughout her career. She certainly deserves it."
Rating: 10.0
Sentiment: 0.05317460317460317
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Giantfan1980wrote on 07.06.2023:[6.0] "Saw a few of her matches back in 1995-1996 and she was like the female Vader. Basically murdering girls with power moves and she was good at it."
Rating: 6.0
Sentiment: 0.12499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: ActualHumanWillwrote on 28.09.2021:[10.0] "A legendary, important figure in the world of Joshi. Her offense is believable, devastating, and incredibly fun to watch. She's what every big woman wrestler should aspire to."
Rating: 10.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Fusionmanwrote on 09.09.2021:[10.0] "Aja Kong is one of the most important women in wrestling and so many of the greats follow directly in her footsteps."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Ma Stump Pullerwrote on 18.07.2021:[10.0] "Easily one of the greatest monsters in wrestling, regardless of gender. In the world of 90's AJW, where workrate and fast paced bouts were the accepted norm, Kong was the critical outlier in that lot: a bullish, aggressive brawler that brought the old chaotic style of the days of Crush Gals and modernised it into a more ruthless standard. I don't think we've seen a wrestler look so legitimate in beating the snot out of her opponents, just brutalising them with stiff strikes and the BEST backhand in wrestling history. I could go into her many bloody feuds with babyfaces not only in the 90's, but all the way up to even 2020 today but there would legitimately be too much to cover. Either in tags or in singles, heels or faces, straight wrestling or hardcore, Kong brought the standard of these matches above and beyond with her antics, squeezing every last bit of intensity out of her opponents while knowing exactly when to sell and be the one dominated in turn. If you love old man Tenryu beating the shit out of the next generation of talent, you'll also love her doing the same. One of the best in the world in her prime and still a force today regardless of age."
Rating: 10.0
Sentiment: 0.1641941391941392
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: axebombertsurutawrote on 18.04.2021:[10.0] "Aja Kong is a legend not just to Joshi but to pro wrestling in general. Wrestled in so many eras but I love her work with Bull Nakano the most. All time great"
Rating: 10.0
Sentiment: 0.47000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Kungwrote on 10.04.2021:[10.0] "I don't know if I need to explain why Aja Kong is a 10. She is to Joshi wrestling as Michael Jordan is to basketball."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: TENzuwrote on 22.02.2021:[10.0] "Even at her age and limited mobility she still is one of the top wrestlers, it's honestly incredible. She is a legend, no doubt."
Rating: 10.0
Sentiment: 0.4428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: sanjurowrote on 21.01.2021:[10.0] "Neck-and-neck with Manami Toyota as the best women's wrestler of all time and likely one of the top 10 regardless of gender. Up there with Vader as the definitive monster heel, an absolute terror in the ring but also incredibly generous to her opponents and one of the best sellers in the business. I don't think she gets the credit she deserves as a true ring general, as amazing at leading in-ring storytelling in both singles and tag matches as she is a lumbering brawler. How she's still going and still putting on quality matches, including ****+ affairs with the likes of Meiko Satomura, is beyond me when you see the punishment she put herself through in the '90s."
Rating: 10.0
Sentiment: 0.5111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Khalid Acewrote on 29.12.2020:[7.0] "Aja Kong is a legend. Just last year I've rated her a 8 even at an old age but I didn't like any match she had this year."
Rating: 7.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: BlueVinsmoke2323wrote on 26.11.2020:[10.0] "One of the best big men/women of all time. Really terrifying and legit wrestler, always can played the role of the monster excellent but also can sold the well. She? s also very athletic for her size. Truly a legend."
Rating: 10.0
Sentiment: 0.24
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: qbortwrote on 01.05.2020:[10.0] "My favorite Joshi wrestler. No one can stop the Kong! She is merciless to her opponents. Many pile drivers. And cool face paint, which Jerry Lawler once said "looks like a bowling shoe"."
Rating: 10.0
Sentiment: 0.19375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: JEK 1991wrote on 05.03.2020:[10.0] "Another superheavyweight that was excellent in the ring. She was an excellent heel! She had some exposure in North America."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[8.0] "Aja Kong plays the monster woman role well. Her match against Shida where Kong got her nose busted & still continued to go was especially impressive."
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Klabauterwrote on 09.07.2019:[8.0] "Ich kann hier nur 8 Punkte vergeben. Eigtl. hätte Aja Kong mehr verdient für das was sie zur Hoch-Zeit ihrer Karriere abgeliefert hat. Wie so viele lebende Legenden vor ihr hat sie aber leider den richtigen Zeitpunkt für das Karriere-Ende verpasst. Dadurch, dass sie auch jetzt noch ziemlich solide abliefert, zieht sie diese Endphase ihrer Karriere nicht soweit hinunter, wie das bei anderen Wrestlern der Fall ist und sie bleibt dann eben bei 8 Punkten! Außerdem finde ich es positiv, dass sie neben den ganzen Joshi-Ligen, in denen sie antritt auch für so Dinge wie EVE Wrestle Queendom oder AEW Double Or Nothing ihren Namen hergibt. Denn ihr Name hat halt immer noch Gewicht und klingt auf einer Card gleichmal besser, als wenn ein Neuling von ähnlichen oder gar besseren Skills aber ohne Name Value antreten würde. Dass sie ihren Name Value zum Push solcher Events nutzt rechne ich ihr hoch an."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: RatingsMachinewrote on 12.10.2018:[10.0] "One of the stalwarts of All Japan Women, Aja Kong was a fantastic heel and a tremendous brawler. Aja had an aura about her that few heels, male or female, possessed."
Rating: 10.0
Sentiment: 0.10666666666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Luv all wrestlingwrote on 09.10.2016:[10.0] "Aja Kong is probably one of the best monster heels of all time. Unlike most of her AJW brethern, she still performs at a pretty high level."
Rating: 10.0
Sentiment: 0.4775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: rustybridgewrote on 10.08.2016:[9.0] "Definitely a beast in the ring and one of the best women and best heels I have ever seen, not just in Japan but anywhere. Not afraid to take on the dudes either who would be making a mistake if they take her lightly. I was also amazed at the number of titles she has won (27) but not surprised. Heard she had a brief run in WWE that was not all that impressive but would like to see her get another chance in the U. S. either with WWE or in TNA."
Rating: 9.0
Sentiment: 0.45625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "Perhaps the best female wrestler ever, Aja Kong is truly something else. Her incredible offense and amazing toughness are absolutely remarkable."
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: La Trinawrote on 12.11.2015:[10.0] "Aja Kong is one of my personal favorites. Her outstanding look and her tremendous work mark her as one of the best of all time. Her iconic theme song represents most of what she's appreciated for."
Rating: 10.0
Sentiment: 0.4333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Matzinhowrote on 18.09.2015:[9.0] "Joshilegende, die an Matches beteiligt war, zu denen ein Hogan oder Warrior nie in der Lage waren - Klassikern. Kann ihren Stil immer noch fast wie vor 20 Jahren gehen und ist das Prototyp-Powerhouse unter weiblichen Pro-Wrestlern."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: dantethescrubwrote on 10.03.2015:[10.0] "Perfect, Sort of a hero of mine, as weird as that sounds. She was the MONSTER that Joshi needed also she did break some sort of ground as being a Black/Japanese wrestler to be a star in Japan"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: joshimaniawrote on 23.06.2013:[10.0] "Simply the absolute best at what she does, joshi legend."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Mick Funkwrote on 12.10.2009:[10.0] "Ultra glaubwürdiges Monster mit diversen hochwertigen Schlachten auf dem Konto. Die Zeit bei der WWF ist alles andere als eine gute Grundlage für eine Bewertung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: RiotMorawawrote on 16.04.2009:[9.0] "Ich kann mich hatethetalkmaster nur anschließen.... Die Gute hats einfach drauf.... is halt ne ziemliche Brecherin^^"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Obermackerwrote on 10.07.2008:[8.0] "Nach Bull Nakano das nächste Japan-Ladies-Monster. Brutales spinning backfist finish!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: SternessDustOmegawrote on 06.12.2007:[8.0] "Mit das bösartigste und beste was jemals in einem Ring stand. Gehört zu meinen Lieblingen im Bereich Joshi."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=828&gimmick=Aja+Kong
Comment: Masterpiecewrote on 09.07.2007:[2.0] "Muss man nicht viel zu sagen ... hatte in der WWF nichts zu bieten ... in Japan mag das vielleicht anders sein! Ich bewerte nur die WWF Zeit!"
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: TripleCrownwrote on 29.12.2024:[10.0] "Iconic. The guy was just absolutely perfect in his role, there hasn't been anybody who comes even remotely close to being the interviewer he was. Was great at playing alongside the wrestlers and questioning what they would say in interviews. Not much else can be said, he was just perfect and a legend in professional wrestling."
Rating: 10.0
Sentiment: 0.4571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: crs285wrote on 29.09.2024:[10.0] "The interview guy everyone tries to emulate even to this day. Gene was honestly great and fit perfect in Golden Era WWF. He knew how to interact with the wrestler without being too much and his facial expressions were top notch."
Rating: 10.0
Sentiment: 0.3875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Wrestling Foreverwrote on 10.08.2024:[10.0] "ich kann mich nie erinnern ihn mal als Heel gesehen zu haben. Dazu hat er auch jeden Quatsch mitgemacht aber immer sah es so professionell aus. Mene Gene war einer der wenigen die das schafften. Als Interviewer einfach nur großartig. Man kannte ihn auch in vielen Indy Ligen. Er war einfach eine Legende. Leider nicht zu ersetzen wie Bobby The Brain Heenan mit dem er auch bis zu dessen Tod befreundet war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Neon Aussiewrote on 07.03.2024:[10.0] "The quintessential interview guy. When it comes to the best wrestler, or the best commentator, or the best manager, etc there is always some debate about who was best. When it comes to the interview man, or backstage interview man, I dont believe there is ANY debate, Mean Gene is the best there ever was, and the best there ever will be. Great guy, funny, charming personality. One of the people most identified with professional Wrestling of the 1980's."
Rating: 10.0
Sentiment: 0.6697916666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: JediSaiyanMaster1203wrote on 25.11.2023:[10.0] "You know how Howard Finkel is seen as the undisputed best ring announcer, no matter who has came after him? "Mean" Gene Okerlund is in that same category when it comes to backstage interviewers. Literally, no one has ever came close to "Mean" Gene's level, never before or after. Many would argue that he played a key role in the "Hulkamania" era as a backstage interview, finding ways to get good promos out of almost everyone he was interviewing, finding interesting questions to get really good responses out of them from the likes of Randy Savage. Some of the all time best promos in WWF's history in the 1980s have "Mean" Gene involved in them asking questions, because he was that good of an interviewer. He was also a very good commentator, whenever he got in the booth, always calling the action and letting the audience know what was going on, he had a natural voice for broadcasting. Overall, "Mean" Gene Okerlund is the benchmark for how to be a backstage interviewer in professional wrestling, there will never be another. R.I.P. "Mean" Gene Okerlund."
Rating: 10.0
Sentiment: 0.24986842105263155
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "Mean Gene deserves high marks for having to be the backstage interview guy and NOT lose his poker face when many of the guys were going off on their coked out ramblings."
Rating: 8.0
Sentiment: 0.11583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: face painted legendwrote on 18.10.2022:[10.0] "Knew his role and excelled at it. If someone stumbled in an interview, fumbled over words, or got lost in the direction of where things needed to go, he was always there to get them back on track. The way he would get the one liners in, the back handed compliments, sell the comments of the talent with his facials, and knowing what to say/when to say it always made the interviews that much better/ entertaining. Also when the WWF at the time started going global Gene, being as featured on television as he was, started becoming just as popular if not more popular than a lot wrestlers at the time. As evidence when him and Hulk wrestled Mr Fuji and George The Animal Steele. With any other none wrestler, that wouldn't have worked, but Gene was over to the point that he made it work. A very irreplacable part to the early years of WWF, also WCW during his time there. There will never be another Gene Okerlund."
Rating: 10.0
Sentiment: 0.18958333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Conquistador37wrote on 10.09.2022:[10.0] "His timing, facial expressions and body language were mastered to perfection. One of my favorite anythings in all of wrestling was the absurd sexual tension Woman would practically suffocate him in, hilarious. On freakin fire chemistry with Randy Savage. Was an integral part of Vince McMahon Jr's success and the WWF almost didn't recover from losing him. Iconic."
Rating: 10.0
Sentiment: 0.2571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: weredet43wrote on 20.08.2022:[10.0] "A brilliant worker, the best at what he does. A man who is associated with backstage interviews. His voice, charisma, image, will forever be associated with the 80s and 90s. It would seem that he's just a man holding a microphone and asking questions of wrestlers, but "Mean" Gean was able to do it in his own way, felicitously. Without this man, I believe the era of Hulkomania, Hulk Hogan, Randy Savage and many other wrestlers wouldn't be as cool as they are now. Without him, a lot of the interviews lost the charm they have now. And that phrase " Well, let me tell you something Mean Gene...." will forever be one of the favourite and memorable phrases in the history of this business."
Rating: 10.0
Sentiment: 0.3909090909090909
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: WhatIsLooveeewrote on 01.05.2022:[10.0] "Mean Gene was the voice of the Golden Era and one of its personifications. A gifted interviewer with a great memorable voice and unique charisma, who forever inscribed his name in the history of professional wrestling."
Rating: 10.0
Sentiment: 0.32321428571428573
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: GriffinXwrote on 06.02.2022:[10.0] "Gene is the classic example of someone who was a ten at what did. People didn't buy tickets to see Mean Gene but he helped a lot of other people sell tickets. Guy was so good you never saw how good he truly was until you saw a bad interviewer in comparison"
Rating: 10.0
Sentiment: 0.0613095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Abo96wrote on 04.01.2022:[10.0] "Mean Gene ist einfach eine Wrestlinglegende, die ihresgleichen sucht. Als Interviewer eine der großen Stimmen des Wrestlings. Er strahlte immer so viel Seriosität aus und war zugleich sehr unterhaltsam. Jemanden wie ihn wird es leider nie wieder geben."
Rating: 10.0
Sentiment: -0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Daigotsuwrote on 20.06.2021:[9.0] "Mean Gene was a fantastic interviewer and excellent character. He did a lot more than just hold a microphone for somebody; he actually was worked into a lot of segments and proved that he had better mic skills than almost any of the wrestlers he interviewed. His kind of skill has become a lost art in the business."
Rating: 9.0
Sentiment: 0.38392857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: BritishSteelwrote on 17.05.2021:[10.0] "Pro-Wrestling ohne "Mean Gene" ist einfach nicht denkbar. Promos, Storylines, Interviews, Backstage-Segmente - das ganze Drumherum hätte ohne jemanden wie ihn nicht funktioniert. Er war immer der Fels in der Brandung und der seriöse Gegenpart, egal mit welchen Weirdos er es auch zu tun hatte. Genau dieser krasse Widerspruch ließ die Charaktere erst richtig gut aussehen. Mean Gene war mit seiner einmaligen Stimme immer furztrocken, stoisch und eloquent. Auf diese Art hat er auch den größten Gimmick-Psychos die Meinung gegeigt. In diesen Situationen hatte man dann immer ein wenig Angst um ihn. "Your a sick man, Jake Roberts. " Genial. WWE ohne Gene Okerlund ist wie die Muppet Show ohne Kermit - (eigentlich) unmöglich. Ach, manche sollten einfach nicht sterben..."
Rating: 10.0
Sentiment: -0.44642857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: medousewrote on 14.05.2021:[10.0] "One of the most important personas of WWF when we talk about the "outside the ring" activity. The greatest interviewer, announcer and a guest commentator. All time greatest promos are with Gene holding the microphone, while Hulk Hogan, Ric Flair, Paul Orndorff and many many more did their thing. Many funny and unplanned spots during these promos. I have a good memories when I recall the good-old Vintage Collection. I used to watch the broadcast late evening on TV, with Gene Okerlund as a host and I getting to know the amazing history of this business. Also, I'm sure every wrestling fan recalls the famous: "Well, let me tell you something Mean Gene... "."
Rating: 10.0
Sentiment: 0.42734375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: AnBwrote on 04.05.2021:[10.0] "Mean Gene was the real deal. It'd be difficult to find someone having a bad interview with Gene Okerlund, because he made literally everyone look good. Never missed a beat and had an excellent voice."
Rating: 10.0
Sentiment: 0.06458333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Uweuwesenwrote on 02.02.2021:[10.0] "Mean Gene Okerlund ist eine absolute Legende! Das jemals ein Interviewer so eine Status erreichen wird, hätte ich nie erwartet. Nur Craig Sager in der NBA war in ähnlichen Sphären"
Rating: 10.0
Sentiment: -0.03125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Der Commanderwrote on 21.01.2021:[10.0] "Alles unter 10 Punkte ist ne Beleidigung für Mean Gene. Die Interviews mit Hogan, Andre, Macho Man in der WWF, oder in der WCW sind mit die legendärsten Momente in Wrestlinggeschichte. R. I:P Gene!"
Rating: 10.0
Sentiment: -0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Ma Stump Pullerwrote on 28.09.2020:[10.0] "The best interviewer by far. Gene was a complete professional and could make guys who were good promo cutters but at points hard to understand and managed to condense their rambling down to comprehensible talking points that the general audience could understand: a lot of Hogan's best stuff comes from Gene interviews, and for good reason. Gene was also a solid backstage guy as well and kept things under control if talent flubbed or forgot their lines (which is something underrated, especially on live TV programs where a LOT can go wrong) but he was mostly known for turning crap into gold, even with some of the worst talkers around."
Rating: 10.0
Sentiment: 0.12797088532382647
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Cameron621129wrote on 20.08.2019:[10.0] "Nobody will ever be able to match him. Quick witted, great at getting talent over and making even the worst segments passable. If wrestlers were ranked based on how much better they were than others in their role, Okerlund would have vineyard to himself."
Rating: 10.0
Sentiment: 0.22666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[10.0] "Simply said, there has been no one before him & there's been no one after him to do what Mean Gene has done as an interviewer."
Rating: 10.0
Sentiment: -0.15625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: ApexOfEvolutionwrote on 05.01.2017:[8.0] "Er begleitet mich schon seitdem ich mich für Wrestling interessiere. Ließ die Wrestler bei Interviews immer im Mittelpunkt stehen und brachte immer eine nüchterne, zurückhaltende Note ins Ego-Business des Pro Wrestlings."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: The Sick Lebowskiwrote on 13.06.2016:[10.0] "Lange Zeit einer der besten Interviewer, Moderatoren und Kommentatoren seiner Zeit. Er strahlte Sicherheit, Souveränität und Wissen aus, was für seine Rolle perfekt war. Volle Punktzahl!"
Rating: 10.0
Sentiment: -0.8928571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Y2J316wrote on 28.11.2014:[10.0] "Let me tell you something Mean Gene. Was Finkel als Ansager war, das war gene als Tnterviewer. Tolles Charisma und er konnte egal mit wem ein interresantes Interview führen, welches einen heiß auf das folgende match machte."
Rating: 10.0
Sentiment: -0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Phenomenal91wrote on 01.09.2014:[10.0] "Probably the picture perfect definition of a "backstage interviewer. " Gene always went at the job with gusto and a hard nosed determination to get the facts and set the story straight. He asked all the right questions, and helped engage the viewer in the discussion. He also had a lot of character and personality, but didn't let that overshadow the wrestlers. All in all, THE best interviewer in all of wrestling history."
Rating: 10.0
Sentiment: 0.43880952380952376
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Basket Casewrote on 28.01.2014:[10.0] "Wohl der beste Interviewer aller Zeiten, dazu auch noch ein sehr guter Kommentator. Mit ihm verbindet man viele tolle Momente aus längst vergangenen Tagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: TheUnderTakerwrote on 23.12.2013:[10.0] ""Well let me tell ya something Mean Gene... " Wertet ein Interview allein schon durch seine Präsenz auf. Eine unbezweifelte Legende."
Rating: 10.0
Sentiment: -0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Johnny-Tennerwrote on 20.12.2012:"Okay war nicht meine Zeit, aber immer wenn ich ihn sehe denke ich an einen grandiosen Interviewer der ziemlich viel Ausstrahlung besitzt und einfach nur geil ist."
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Excellence of Executionwrote on 15.10.2011:[10.0] "Mean Gene ist das absolute Eichmaß dafür, was einen formvollendeten Interviewer ausmacht. Und wer das nicht einsieht ..... der kann doch echt nach Hause gehen."
Rating: 10.0
Sentiment: -0.056249999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Boogerman84wrote on 27.09.2011:[10.0] ""Mean" Gene ist ohne jeden Zweifel der Beste seines Faches, den es gibt, gab und geben wird, insbesondere im Zusammenspiel mit Bobby Heenan und Hulk Hogan konnte er zahlreiche grandiose Interview-Momente erzeugen, doch auch darüber hinaus hat er unzählige Interviewsegmente mitgestaltet, die heute als legendär gelten (David Shultz, Ken Patera ... ). Neben der außerordentlichen Redebegabung und der absoluten Souveränität am Mic versteht er es wie kein Zweiter, die erwünschten Emotionen zu transportieren (man denke nur an die Gründung der nWo) und dabei aber immer glaubwürdig zu wirken. Nicht zuletzt hat er seine große Popularität auch dem einzigartigen (stimmlichen wie optischen) Wiedererkennungswert zu verdanken und ist zudem mit einer ordentlichen Portion Charisma ausgestattet. Nach diesem überschwänglichen Plädoyer erscheint es beinahe unnötig, noch zu erwähnen, dass er völlig zurecht Mitglied der WWE-HoF ist und Legendenstatus genießt."
Rating: 10.0
Sentiment: -0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Hirnklopswrote on 18.09.2011:[10.0] "Konnte aus jeder Gurke ein passables Interview quetschen, quasi sowas wie ein Ric Flair am Mikro. Leute wie ihn vermisse ich heute... Ein großer Redner, eine unverwechselbare Stimme, ein immer sicheres Auftreten, egal ob er jetzt eingeschüchtert, verärgert oder lustig sein soll... Der Mann konnte es."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Elvis6wrote on 08.04.2011:[9.0] "Also dieser Typ hat mich meine ganze Kindheit begleitet. Allein deshalb schon ne 9. Der richtige Mann zur rechten Zeit. Später hätte er nicht mehr ins Konzept gepaßt aber in den 80 u frühen 90ern genau der richtige Typ für die damalige Ausrichtung . Danke fürs begleiten durch meine ersten Wrestlingjahre"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Addy1982wrote on 12.03.2011:[10.0] "In seiner Funtion als Interviewer war er der beste ! Gute alte WWF / WCW Zeiten !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: The-Game91wrote on 29.05.2010:[10.0] "Einer der besten Interviewer und Kommentatoren überhaupt. Seine Stimme bohrt sich in die Köpfe der Fans und macht ihn zu etwas besonderem."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: shoopdawoopwrote on 10.03.2010:[10.0] "Was soll man da noch sagen? Mean Gene in einem Segment = es ist garantiert besser als der Durchschnitt."
Rating: 10.0
Sentiment: -0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Aglaoswrote on 11.09.2009:[10.0] "U know something Meeean Geeene... Ach ja, da gerät man ins Schwärmen. Einfach nur Kult der Mann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Nachtfalterwrote on 09.09.2009:[10.0] "Schlicht und ergreifend der beste Interviewer aller Zeiten in diesem Geschäft. Mit weitem Abstand."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: MattBornewrote on 06.09.2009:[10.0] "Der Beste indem was er gemacht hat. War immer überzeugend, die Art wie er Gespräche geführt hat, haben mich sehr angesprochen. Das war damals so, das ist auch heute noch so, wenn ich mir alte Tapes anschaue. TOP!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Mick Funkwrote on 06.05.2009:[10.0] "Das was J. R. als Kommentator ist, ist er als Interviewer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Father Nelsonwrote on 18.01.2009:[10.0] "One of the first names that come to mind when I talk about wrestling!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Edibaswrote on 04.08.2008:[10.0] "Der Interviewer schlechthin. Völlig zurecht in der Hall of Fame."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: ecw foreverwrote on 22.06.2008:[10.0] "Einer der besten Ansager der Geschichte, hinzu ein wirklich treuer WWE angestellter, nachdem er AWA verliess, war er bei WWE und nur WWE, und wenn er mal wieder einen WM ME oder ne HOF ansagt, dann bin ich immer wieder froh, er hat diese charakterliche Stimme."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Mr Money in the bankwrote on 19.03.2008:[10.0] "Ich fand Meang Gene immer klasse , er war lustig wenn es angebracht war und er konnte auch mal einen anderen Ton anschlagen wie z. b in einem interview mit den Natural born thrillers. Auch fand ich das Interview klasse in dem Mean Gene die fähigkeiten von El Dandy anzweifelt . Für mich ist er in seiner Position auf jeden fall unerreicht."
Rating: 10.0
Sentiment: -0.10625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: flakkiwrote on 14.02.2008:[10.0] "Legendär, seine Interviews mit dem Hulkster, einfach ein Unikum!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Bullit69wrote on 13.01.2008:[10.0] "Mean Gene! Einfach toll der Mann! Bekommt Pluspunkte, weil er so auf Burger und Pizzen steht wie ich! ^^"
Rating: 10.0
Sentiment: -0.6103515625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Masterpiecewrote on 10.10.2007:[10.0] "Genial, vor allem wenn er Ric Flair am Mic hatte! "Meeeeeeeeeeeeeean! WOOOOOOOOOOOOOOOOOOOOO ... Gene! ""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Carlito Cenawrote on 06.09.2007:[10.0] "Mean Gene - ob in der WWF oder WWE oder WCW, mich hat er immer am Mic erfreut. Kult!"
Rating: 10.0
Sentiment: -0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: yogywrote on 01.09.2007:[8.0] "Der mann ist einfach kult! Ich mochte ihn schon immer."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: BigVanVaderwrote on 22.07.2007:[10.0] "Der beste Interviewer aller Zeiten! Mean Gene ist Kult."
Rating: 10.0
Sentiment: -0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Sandman16wrote on 17.07.2007:[10.0] "Eine echte Legende. Für mich der beste Interviewer den es je gab."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: Steven McWheelerwrote on 03.07.2007:[10.0] "Einfach eine Legende! Sein Name gehört zum Wrestling wie die Ringseile;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1383&gimmick=Gene+Okerlund
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Die Legende am Mic! Seit Ewigkeiten dabei und zu Recht in der Hall of Fame! Es gab dutzende von denkwürdigen Momenten mit Gene Okerlund - das gibt eine 1 !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: RealWrestlingFactswrote on 02.02.2025:"Just wanted to come here and say I heard what you said Hamza Tufail, you realise Rey Mysterio got his 619 from a move called Tiger Feint and Satoru Sayama learned that move probably from other Luchadors, never say Tiger Mask is a bad seller and Luchador right"
Rating: No rating found
Sentiment: -0.1797619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Anas Kingwrote on 20.01.2025:[2.0] "Probably one of the more influential figures in wrestling that inspired countless people. Having said that, just because you are influential doesn't mean you are a great wrestler too. I think he's very overrated. He was not a consistent worker. He botched a lot. I'm willing to forgive you if you do it 2 or 3 times, but he has done that countless times. I also don't like how little selling he used to do. I don't think he is masterful when it comes to in ring story-telling and in ring psychology. His matches were sometimes good, but sometimes very meh. I don't like how people go out of their way to give high ratings to older wrestlers just because of their nostalgia factor. I can name so many luchadoors that were or are way better than him. Just look at Rey Mysterio. That man also does a lot of high flying moves, but he does them so smoothly. AND he's a much better seller."
Rating: 2.0
Sentiment: 0.2848245614035088
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: TigetMask15wrote on 18.01.2025:[10.0] "One of the greatest wrestlers ever lived one of the best in everything I miss him so much man my favorite of all time"
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: JackBurtonsTruckwrote on 14.10.2024:[9.0] "The definition of innovation. Tiger Mask not only had the athleticism, and the looks, but he also had the mind. His highlight real is unparalleled."
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Zak22wrote on 27.05.2024:[10.0] "One of the most revolutionary talents of all time. He was a high-flying, quick moving genius. His work in NJPW stands above that of his peers."
Rating: 10.0
Sentiment: 0.27777777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: YourKingMobwrote on 29.03.2024:[10.0] "The David Bowie of wrestling. By that I mean, much like with David Bowie, imitators made entire careers out of copying just a single element of what Sayama was doing. Deserving of that 10, but I can see a 9 just because his career was cut short by simply being pushed out of wrestling by Inoki's hate for cruiser/junior weights, literally fighting with the other wrestlers who went on to form shootstyle and shooting (which he did as well) and his hate of wrestling after all the backstage politics. On the other hand: don't read into homeboy's politics outside the ring, and also the fact that he was TOO CRUEL for Karl Gotch to be named his successor? Makes Ultimate Warrior seem like a bleeding heart liberal."
Rating: 10.0
Sentiment: -0.17385204081632652
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: laddermatchwrote on 18.12.2023:[10.0] "Satoru Sayama aka the original Tiger Mask was perhaps one of the greatest pioneers and innovators professional wrestling has ever seen. Satoru took a popular manga/anime character in Japan at the time in Tiger Mask and brought him to life. His jaw dropping aerial maneuvers mixed with his martial arts background made him the most unique talent in the business at the time. His matches with Dynamite Kid were legendary and every fan of wrestling should watch those. He paved the way for the junior heavyweight style in NJPW as well as Japan in general. He was way ahead of his time too as most wrestlers weren't doing what he was doing at the time. His UWF work was absolutely sensational as well. Many Tiger Mask's came after him, including the late great Mitsuharu Misawa, but nobody could quite do justice to the mask like he did. Misawa's best work was after he had dropped the Tiger Mask persona anyways so I don't identify the mask with him as much as I do with Sayama."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: benh2wrote on 11.01.2023:[9.0] "His initial NJPW and UWF run was really his entire career so it's not super long but he was absolutely ahead of his time. The run from 81-84 is arguably a good a three year stretch as anyone has ever had. Inspired a whole generation."
Rating: 9.0
Sentiment: 0.13541666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Ma Stump Pullerwrote on 25.10.2022:[10.0] "There are few I actually give a full rating for, but Tiger Mask for me is one of my personal favourites: someone who just was such a natural master at what he did that even today people are struggling to keep up, with a unique blend of kickboxing, wrestling, lucha, British catch, and Japanese Gotch shoot-style. No one since has been able to capture the grace and agility of Sayama at his very best, and even when he was much fatter, barely wrestling and in his 40's he could still completely astound crowds with his spots despite far younger spot-monkeys being around at the same time; they lacked his showmanship, his charisma, but also his ability to make his spots seem natural and seamless: never looking convoluted or overtly fake, but also immensely crisp and fast. The truly amazing fact is that Sayama only actually wrestled full time for about 9 years (7 if you just include NJPW work, and he leaves early in 1983, and you can also exclude his unseen Young Lion years as well) before leaving to do Shooto: less of a decade was all he needed to establish himself as one of the greatest of all time, and that's not including his matches post-return in 1995 which he went on to actually have a lot of good to outright fantastic showings. How many performers have that accolade? Very few from what I can see. He's one of the few guys you could take completely from his era in his prime, make no changes whatsoever and he'd still be as over now as he was then, he was that good. I implore people to check out his UWF and later work as well: despite it being mostly shaken off it massively benefits his case with the sheer amount of quality he has despite the less than stellar conditions. He works a good part-time ace in RJPW for a good long while until his retirement as well. Easily one of the best in wrestling and someone that always delights in his matches regardless of the era."
Rating: 10.0
Sentiment: 0.20438775510204082
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: texasyoshwrote on 29.04.2022:[10.0] "Masterful at his craft. Incredibly influential and well regarded wherever he went. Legend, icon, whatever you want to call him, Tiger Mask was all of that."
Rating: 10.0
Sentiment: 0.95
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: NeoSwas36wrote on 23.03.2022:"Satoru knew how to wrestle, it was clear. Man killed it in so many matches and pioneered the Tiger Mask trend in wrestling. He was a clean wrestler, and I think that's because he also had some remarkable trainers. Awesome wrestler."
Rating: No rating found
Sentiment: 0.41944444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: GriffinXwrote on 22.01.2022:[10.0] "You go back and watch what this guy was doing in the 80's its like watching a modern match with how amazing he was. He was just so ahead of the curve. Reason why after him many more Tiger Masks and Tiger Mask like gimmicks followed because he was so good he made it work and people wanted more"
Rating: 10.0
Sentiment: 0.42857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: arrancarwrote on 22.01.2022:[10.0] "It is absolutely incredible how outstanding of a wrestler Sayama was. He was performing moves and spots back in the 80s which would shock and wow people even today. His agility, speed, flexibility, sharp striking, and precise grappling were all absolutely perfect. While the majority of US wrestlers in the 80s were messy-brawling and lumbering around the ring, Sayama was effortlessly flying and dancing around like wrestling was as natural to him as breathing. Sayama was always best when booked against a really dirty heel because he could then embarrass them with his flashy moves and bravado. His speed really cannot be understated. Plenty of times I've had to rewind some of his sequences because I would swear that his movement could only have been so quick with the use of video editing. How could he spin around someone with perfect technique and at such a drastic pace' The answer was that he was simply one of the most creative and exciting wrestlers ever to grace the art. Very few people are able to wrestle such a dazzling style without coming off as superficial like a total exhibition performer, but Sayama found a way to have extremely compelling match stories all while putting on a world-class in-ring display. He always made his opponents' own offence feel important (even if his selling was sometimes suspect), but he was simply so spectacular that he always overshadowed them nonetheless. Definitely a pioneer for the high-flying wrestling style. I usually only reserve 10/10 ratings for wrestlers who have had multiple world-class (****1/2+) matches, but for people as immensely skilled in their era and as influential for the entire art of pro-wrestling as Sayama was, I can't deny that the man deserves a 10/10. If he wasn't treated as so much of a pure "attraction" then he could have had many great matches throughout the 80s and 90s, but I have no issue judging/presuming from his incredible individual performances that it wouldn't have been hard for bookers to have him put on some truly world-class matches if they so wished. It's a shame that he is often overshadowed by the far inferior Liger when it comes to popular consensus on the best and most influential high-flyers and junior-style wrestlers of all time, but I have no doubt that Tiger Mask/Sayama is one of the greatest ever."
Rating: 10.0
Sentiment: 0.3110840932117528
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Kungwrote on 22.05.2021:[10.0] "The First Tiger Mask is one of the most legendary junior heavyweights to ever live. His matches with Dynamite Kid and Yoshiaki Fujiwara are as legendary in the Puro world as any matches in the subgenre."
Rating: 10.0
Sentiment: 0.5772727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: CyberVolteswrote on 31.08.2020:[10.0] "Satoru Sayama was not only one of the greatest wrestlers of all time, but also one of the most influential. Whether a wrestler establishes himself as a technician, a high-flyer, a shoot-styled wrestler or a combination of any of those, it's more than likely he owes something to Sayama's work, even if he's not aware of it. After a bumpy start in his career, Sayama received proeminece as the first (and, to this day, the most praised) incarnation of the character Tiger Mask, based on the homonymous manga. Under this new persona, Sayama took part in a series of game-changing matches (most notably, against Dynamite Kid), gaining universal acclaim for his intense in-ring work, which included top-level agility, crispy moves and an impressive aerial offense. After his retirement as Tiger Mask and taking his interest in proper martial arts to the next level (Sayama had been formally training in sambo and kickboxing by that time), he would be on of the pivotal wrestlers to kickstart the shoot-craze. Under either his real name or the purple and grey Super Tiger gimmick (Misawa was the new Tiger Mask by that time), he'd go on to have a different kind of unique matches in prime UWF, with a more realistic approach, heavy on kickboxing strikes (the latter being met with much disgrain of fellow pivotal shootwrestler Akira Maeda). After retiring from pro wrestling altogether, he would go on to create Shooto, dedicate himself exclusively to martial arts and help to introduce Vale Tudo in Japan, ultimately becoming a key figure in paving the ground to what would become MMA. Eventually, he would return to pro wrestling, helping to put over younger talent (including his protegé Tiger Mask IV), taking part into matches with other aging legendary wrestlers from his era and, at last, creating his own promotion, Real Japan Pro Wrestling, with a mix of pro wrestling and martial arts showcases. As for some constant revisionist criticism, such as calling him sloppy or saying he didn't have psychology in the ring, those have been played up a lot by the naysayers. Not only Sayama was pioneering styles of wrestling in an era when both the audience and critics had a different mindset regarding what a good match was, but most of his matches have, in fact, aged gracefully. He would occasionally botch some of his moves, but that never really took too much from his matches, specially because he was polished in mostly everything. All in all, Sayama has made his mark both in the ring and also behind-the-scenes, earning his status a legend."
Rating: 10.0
Sentiment: 0.22200376783710116
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Jetlagwrote on 27.08.2020:[7.0] "Von einem athletischen Standpunkt aus war Tiger Mask I über jeden Zweifel erhaben, ganz klare Sache. Allerdings war er an Dingen wie Selling oder Matchstruktur nur mäßig interessiert. Dies zog sich auch durch seine 90er-Kämpfe. Zwar konnte er reihenweise schöne Moves auspacken, aber an wirklich mitreißenden Matches, welche das Publikum auch psychologisch aufpeitschten, war Sayama nur selten beteiligt. So gesehen könnte man Sayama als frühen Spotmonkey einordnen, ein paar starke Kämpfe in der UWF ziehen die Wertung aber noch nach oben."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: SZ1989wrote on 22.07.2019:[10.0] "Everything about Sayama's contributions to professional wrestling has already been said, but it should be noted that he was one of the founding fathers of shoot-style, which speaks volumes about his overall ability as a wrestler and innovator."
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: ElPolloLocowrote on 21.06.2019:[9.0] "Let's get one thing out of the door: I will be forever indebted to Satoru Sayama for introducing me to pro-wrestling. As Tiger Mask he was so ahead of his time, so innovative and so exciting he managed to get me hooked pretty much right away. His matches with technically gifted luchadores like Fishman and Ultraman introduced me to the good side of lucha libre: Tiger Mask had tremendous matches with these great wrestlers. However Satoru Sayama also has a dark side: he's an extremely bad seller. I don't know if this is a choice, a quirk or just the way Inoki trained him but even my young impressionable self kept on wondering on why Tiger Mask kept on shrugging off Fishman's mat work aimed at neutralizing his kicks by working on the legs. Thanks for everything Tiger-sama, but that awful selling costs you one point!"
Rating: 9.0
Sentiment: 0.16300366300366306
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: JEK 1991wrote on 31.12.2018:[10.0] "A pioneer as a cruiserweight and high flying. In 1982 he wrestled in the WWF as the Junior Heavyweight champion and bought in many things to North America such as smaller wrestler and high flyers."
Rating: 10.0
Sentiment: 0.164
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: RatingsMachinewrote on 11.10.2018:[10.0] "Satoru Sayama was a great worker, and revolutionary for his time; his impact on wrestling cannot be overstated. A lot of his moves and matches still hold up today, but even if they didn't, to hold that against him is to completely miss the point of a wrestling match."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Makai Clubwrote on 23.03.2018:[9.0] "Highly influential, innovative. When you watch clips of Sayama, you see just how quick and smooth he was. Sure, there are far better technical wrestlers theses days but none of them could probably do the moves Sayama did at the speed he did it. So quick. His kicks were lethal and pinpoint. Very underrated in his ground game. Sayama often doesn't get the credit he deserves in the shoot style and what lead to. Whilst his preference of kicks lead to UWF going out of business, they were so important later in the future."
Rating: 9.0
Sentiment: 0.21619047619047624
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: singaporecanewrote on 16.06.2016:[10.0] "It's impossible to understate the influence of Sayama/Tiger Mask on junior heavyweight wrestling. Without him, there would be no Jushin Ligers, no Rey Mysterios, and certainly no CM Punks or Daniel Bryans. While he wasn't the first guy to wrestle shoot style or use high flying techniques, his melding of the two is what helped to create the style that would push smaller wrestlers into the mainstream. All of this while not even including the fact he's one of the most important figures in MMA history with his formation of the Shooto organization in the mid 80s. There's a reason so many people cite Sayama as an influence on modern day wrestling; because he was an amazing wrestler. EDIT: Also, to the people saying he was "sloppy" based off of one clip/gif they saw; go watch TM vs Bret Hart, or his match with Akira Maeda. Even his stuff in World of Sport is very clean."
Rating: 10.0
Sentiment: 0.14586080586080588
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: mdkarlwrote on 06.06.2016:[10.0] "trust me i was there when this guy was doing his thing... it was like watching the first star wars movie then or now... seeing black and white tv then or now...   wrestling in a work between 2 guys... your opponent needs to do his job to let you do yours.  tiger mask was revolutionary and very few guys were trained to work with him.  he was doing his matches for the first time... not copying proven routines with 20 years of track record.   if todays youtube crowd want to judge him anything less than a 10 with their 30 years of sunday morning quarterbacking... they are wrong"
Rating: 10.0
Sentiment: -0.08476190476190475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Mizzle Assault Antwrote on 02.05.2016:[7.0] "He is credited as both a great high flyer and the first high flyer, but I'm not sure either are quite warranted. Some of his matches with Dynamite Kid hold up and some don't, but his case outside those matches is very thing. He can be entertaining but also very sloppy, and I think his influence is somewhat overrated. Still a notable talent but not quite so much as he gets credit for."
Rating: 7.0
Sentiment: 0.1798484848484848
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: PuroFanwrote on 04.03.2016:[10.0] "The man that opened the way for high-flyers in Japan, he could both mat-wrestler an high-flyer, but always keeping his quality"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Hirnklopswrote on 12.05.2014:[10.0] "Was kann man hier Anderes vergeben als 10? Als Wrestler top, als MMA-Fighter top, Shooto top, Alles top. Super-Super. Sollte die Bayern trainieren."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: yanuswrote on 04.01.2014:[8.0] "Innovative worker, but Sayama also botched a lot of his moves. Very often lacked any psychology or selling (I haven't seen his more recent stuff). I admire the fact, that his matches with Dynamite Kid inspired so many wrestlers, but to be honest, I thought that DKid carried Sayama more that the other way around. So, overall a good wrestler, but not someone, who was a complete package in the squared circle like Tsuruta, Misawa or Flair."
Rating: 8.0
Sentiment: 0.3159090909090909
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Kenshin Uesugiwrote on 28.02.2013:[8.0] "Ist zwar heute mehr ein Garfield als ein Tiger, aber so ist das eben mit dem Alter. Natürlich ein Pionier und wegweisender Wrestler desen Gimick ja immer noch sehr wertvoll ist, siehe die nachfolgenden Tiger-Mask-Wrestler. Sein Matches gegen Dynamit Kid sind immer noch wieder gern gesehene Klassiker, aber auch die leider etwas vergessene Fehde mit Tiger Hunter Kobayashi zeigen das da mehr war als“nur „Technik und Highflying. Aber genau wie Inoki einer der meinte gewisse Shoot-Fighter wären bessere Wrestler, dennoch eine Legende."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Leonewrote on 04.02.2013:[10.0] "Satoru Sayama is a legend in pro wrestling, and not just in Japan, but in general.  When he debuted as Tiger Mask in 1981 and feuded with the Dynamite Kid for 2 years, history was made.  Their matches were fast, exciting, explosive, full of risks, and containing spots that were way before their time.  Their last singles match together received the 1st 5-star match from Dave Meltzer.  In his prime, I feel he would still hold up well in today's industry, even though " the game" has evolved so much.  Sayama was also 1 of the 1st wrestlers in Japan to suggest a more realistic approach to wrestling matches, which lead to him (very temporarily) joining Akira Maeda's UWF promotion, which eventually helped the evolution of what is now known as Mixed Martial Arts.  The mark that Sayama has left is a large one.  One that opened many doors for both cruiserweights and stiffness in wrestling."
Rating: 10.0
Sentiment: 0.15206349206349207
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Pius123wrote on 08.08.2011:[8.0] "Japanische Legende. Einer der ganz großen und er zeigt selbst im Alter noch gute Matches."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Technicowrote on 24.07.2010:[9.0] "Der hat doch auch den Tiger Feint Kick (auch bekannt als 619) erfunden, wenn ich mich nicht täusche. Kann das jemand bestätigen?"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Wolfhartwrote on 19.04.2010:[10.0] "Zu den Verdiensten dieses genialen Mannes in der Vergangenheit ist schon alles gesagt, aber darüber hinaus kann man sich den Mann auch heute noch angucken - Respekt! Wrestlet heute noch deutlich besser als Ric Flair mit dreißig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: RickRollwrote on 17.04.2010:[10.0] "Zu sagen das Dynamite Kid ihn durch die Matches ziehte grenzt schon fast an einer Frechheit wirklich. Mr. Sayama ist ganz ganz große Klasse. ER war es der die Jr. Heavyweightszene revolutionierte und er war immer cool mit seinen coolen Karate Kicks."
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Rated R Champwrote on 13.04.2010:[10.0] "Der erste Tiger Mask ist wohl eine der legendärsten Figuren des japanischen Wrestlings und setzte zu seinen besten Zeiten in Punkto Technik und High Flying Standards. Man muss sich nur seine Matches mit Dynamite Kid anschauen (unter anderem das erste ***** Match von Meltzer) um zu sehen wie fantastisch der Mann auf seinem Höhepunkt war. Kenne nicht viel Aktuelles von ihm, aber seine vergangenen Leistungen sind mir die 10 wert."
Rating: 10.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Raywrote on 01.04.2010:"Seine Einflüsse spürt man heute noch bei Juniors. Er, seine Maske und sein Stil sind heute noch legendär."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Fountain of Misinformationwrote on 30.03.2010:[7.0] "Sicherlich zwischen 9-10 Punkte für die guten Jahre und wegweisenden Matches als Junior Heavyweight wie auch als Shootstyle-Wrestler. Heute kriegt er zwar seine Trademark-Spots trotz Übergewicht und hohem Alter noch erstaunlich gut hin, hat aber jegliches "Feuer" verloren und ist allenfalls für die damalige Generation junger Wrestling-Fans für einen Nostalgie-Effekt gut. Abgesehen davon hat er durch seine damalige Abkehr vom Pro Wrestling, den damaligen Äußerungen und seiner darauf folgenden Rückkehr zum Wrestling zumindest bei mir keine Pluspunkte gesammelt, was jedoch nicht in meine Wertung einfließt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Aquifelwrote on 08.02.2010:[10.0] "Wohl eine der bedeutendsten Figuren im Jr. Heavyweight Bereich. Legendäre Matches gab es zu Genüge und in den 80ern hat er Sachen gemacht, die seiner Zeit vorraus waren und auch heute noch mithalten können und zum Staunen bringen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Eddiewrote on 06.12.2009:[10.0] "Absolut geile Matches die er gegen Dynamite Kid und Steve Wright auf die Matte gezaubert hatte. Auch sonst einfach ein großartiger Wrestler, der es zwar vielleicht übertreibt mit der aktiven Zeit, aber das ist für mich bei ihm kein Abzug wert, da man sich die Kämpfe schon noch ansehen kann, und nicht wie bei anderen in Langeweile ausarten, 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: T-Waynewrote on 14.09.2009:[10.0] "Eine Klasse für sich, damals. Sollte jedoch aufhören mit seinen Teilzeitaktivitäten, den heutzutage ist er nun wirklich nicht mehr der Beste. Aber trotzdem 10 Punkte, allein wegen seiner Matcheserie gegen Dynamite Kid."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Juvicidewrote on 18.06.2009:[10.0] "Absolute Legende im Wrestling. Seine Matches mit Dynamite Kid muss man gesehen haben."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Father Nelsonwrote on 01.02.2009:[10.0] "Watch Sayamas matches with Dynamite in the late 70s to early 80s! They where way ahead of their time!"
Rating: 10.0
Sentiment: -0.071875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Smoothwrote on 12.11.2008:[10.0] "Der beste Asiate, war seiner Zeit weit vorraus und konnte mit sseiner schnallligkeit wie seiner technik und neuen Wrestling Moves überzeugen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: EvenflowDDTwrote on 31.07.2008:"wenn man bedenkt das Hogan bei WM 3 weltweit begeistern konnte mit einem powerslam, aber zu der Zeit Tiger Mask in Japan schon seinen Highflyer Stil gezeigt hat. Dann frag ich mich wirklich wie ungerecht das Geschäft sein kann. War seiner Zeit wirklich um Jahre vorraus, so wie es die Japaner immer sein werden."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: suntan superstarwrote on 26.06.2008:[10.0] "Tiger Mask ist das Paradebeispiels eines Highflyers. Im Ring unheimlich wendig und in seinem Vorgehen nachvollziehbar bestizt er auch ein großes Arsenal an Moves."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: felixwrote on 28.03.2008:[10.0] "Es ist schwer in objektiv zu bewerten, da jeder von seinen legendären Matches gegen Dynamite Kid gehört hat. Wer sich wirklich intensiv mit ihm und seiner Geschichte beschäftigt weiß, dass er seiner Zeit mindestens 15 bis 20 Jahre voraús war. Er hat Standards gesetzt und Mauern eingerissen, ohne die das heutige Wrestling nicht so wäre wie es ist. Absolut und ohne Frage ist er einer der legendärsten Puroreso-Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: mdbnasewrote on 13.01.2008:[10.0] "Allein die Matches gegen Dynamite Kid rechtfertigen die 10 pts!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Rob Van Duesenschrauberwrote on 24.07.2007:[10.0] "Ohne ihm und dem Dynamite Kid würde Junior Heavyweight Wrestling ganz anders aussehen, er war seiner Zeit um Jahre voraus."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Pulpulwrote on 24.07.2007:[10.0] "Vorreiter der Junior Heavyweights in Japan. Die unumstrittene Nummer 1. Tiger Mask's Stil war einfach einzigartig und bleibt für immer unerreicht. Alleine die Matches gegen Dynamite Kid rechtfertigen die Bestnote."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=130&gimmick=Tiger+Mask+
Comment: Diawrote on 21.07.2007:[10.0] "Der Typ ist der Beste Wrestler für mich den es gab. Seine MAtches sind Legendär, schade das er aufgehört hat ..... wer immer noch einer der die Massen Begeistern kann und vieleicht wird mal eine der anderen Tiger Masks ran kommen an ihn!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: kelseywrote on 09.02.2025:[7.0] "Bret Hart is a 2.5 on the microphone, a 10 in the ring, 9 for gimmick. Bret was the best in ring wrestler on the WWE roster in the 90s. The reason I am giving Bret a 7 is because he had bad mic skills and he could not draw. Bret Hart has had many classic matches and he is perfect in the ring but he lacked in other areas."
Rating: 7.0
Sentiment: 0.30694444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Moosehead13wrote on 08.02.2025:"I'm not sure anyone has ever had better ring psychology than Bret Hart. He's absolutely elevated the standard every time he was in the ring, and should have been rewarded better for it. I think today a lot of people think of him as the hitter dude that hates Goldberg. But Bret really loved professional wrestling, and having had it taken from him a few different ways over the years and you really get why."
Rating: No rating found
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wrestling Foreverwrote on 24.01.2025:[10.0] "Moment, ich habe Bret noch nicht bewertet und kommentiert. Nun wenn ich den 90er schon als Kind WWF geschaut hätte dann wäre er so schnell einer meiner Lieblinge geworden. Man könnte so viel über Bret schreiben. Einer der besten Wrestler die es je gab, gibt und geben wird."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TripleCrownwrote on 30.12.2024:[10.0] "Best Canadian wrestler of all time and one of the all time greats in professional wrestling. You couldn't make a Mount Rushmore of wrestlers without including Bret Hart. You'd think his promo skills would be bad given how mellow he is, but he was fantastic on the mic and had lots of charisma. His in-ring work speaks for itself, was a pioneer in professional wrestling and still influences folks to this very day. Had a huge impact on professional wrestling and was somebody you could put all your trust into when it comes to going out there and having a good match. If anybody doubts how good Bret was, just see his match against Bulldog at the SummerSlam 92 PPV. Bret carried him to a great and memorable match, the guy was able to do everything and more. It's a shame that the tail end of his career was blighted by the whole Survivor Series incident and Goldberg legitimately ending his career. Was such a sad end to what was an incredible wrestler."
Rating: 10.0
Sentiment: 0.3277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KayfabeTheatrewrote on 25.12.2024:[10.0] "The best there is, best there was, and the best there ever will be. Brets matches always had just this realism that is on another level of other wrestlers. His selling is top notch, one of the best to do it. You could tell he was in a fight for his life every match. Ringwork top notch. Promos started weak in the beginning but turning heel and reaching top level status, he improved and again the realism to his promos, he believes everything he says. The biggest crime is Bill Goldberg kicking him in the head and we never got to see what a Shawn Michaels like return 2002-2010 run would have looked like."
Rating: 10.0
Sentiment: 0.5555555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ItsAllAWorkAnywaywrote on 10.12.2024:[9.0] ""The Excellence of Execution" was Hart's most deserving title, as his in-ring work was crisp and only got better with age. He was a reliable worker, too, and could make the best out of any situation as either a champion, midcarder, or tag wrestler. A regrettable in-ring injury lead to a career-ending concussion, and he was faltering for "the other guys" as the promotion he carried during its darkest time finally reached new heights, but Bret's one of the best there is, best there was, and best there ever will be for good reason."
Rating: 9.0
Sentiment: 0.5047202797202798
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Pompeyrobwrote on 03.12.2024:[10.0] "One of the very best of all time and my personal all time favourite! In the cartoony environment of 80s and 90s WWF he made everything he dud look so believable and realistic. The first wrestler in mainstream Aerican wrestling that really wowed mecwith technical skills when I was a kid and his matches still hold up! He's influenced so many who have followed him and I wonder how many five star matches he would have if he'd come along in a later period or berm based somewhere like Japan in his prime. The fact that he still has do many mat classics to his name when wrestling in 90s WWF speaks to his skills when technical ringwork was usually not the promotions priority back then."
Rating: 10.0
Sentiment: 0.26726190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: AceHagannwrote on 26.11.2024:[9.0] "A great part of what made wrestling so great in his time. Brilliant performer, always able to get the attention of the crowd. Lots of his matches are gems, it's not too hard to find a good Bret Hart match."
Rating: 9.0
Sentiment: 0.5680555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: mostlyflotsamwrote on 22.11.2024:[10.0] "His catchphrase wasn't a gimmick, he really was the best there is, the best there was, and the best there ever will be."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: WWFanwrote on 17.11.2024:[10.0] "The first Wrestling show I ever went to was Wrestlemania 13 it sucked until Bret Hart saved the day. Bret was the master, a real general in that ring. He had that crowd in the palm of his hand. I know lots of people don't like his promos but I do. He was never a goofball like the rest of them. He meant business, I like that."
Rating: 10.0
Sentiment: 0.1625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JeffreyJayKanewrote on 13.11.2024:[10.0] "One of the best to ever do it. In-ring there are only a few that can compare. Sad that his career was shortened by other wrestler's lack of skill."
Rating: 10.0
Sentiment: 0.03500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wrestlingfan0808wrote on 10.11.2024:[10.0] "The best there is , the best there was, and the best there ever will be. A true artist, excelled in all the little things. His psychology was top tier. Was very adaptable with whoever he wrestled. Threw one of the best punches in the history of wrestling, a true lost art in wrestling today. Everything Bret did looked believable and real. Was so reliable that you could count on him for almost everything. He could have a good match with a broomstick because of how good he was. Does not get the credit he deserves for the role he played in the attitude era when it took off the way it did after he left the WWE in 97. His feuds with Steve Austin and Shawn Michaels is one of the best feuds of all time for an American wrestling promotion. Wrestling today would be better if more people try to follow what Bret did in the ring."
Rating: 10.0
Sentiment: 0.5173611111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: wrestlingswiftiewrote on 31.10.2024:[9.0] "Clean, technical, well-executed style. His selling was great, and his matches felt like movies. The only thing holding him back from a 10 is his lack of promo ability."
Rating: 9.0
Sentiment: 0.23333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: punkybrewster96wrote on 27.10.2024:[10.0] "If I could rate higher than 10 I would. Bret is, in my opinion, the best ring technician ever, and his promos were actually underrated. Made wrestling so credible and made everyone emotionally invested in him, regardless of their opinion of him. Career cut short due to sloppy Bill Oldberg. Wish we could've gotten Bret-Angle dream match."
Rating: 10.0
Sentiment: 0.13854166666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JackBurtonsTruckwrote on 14.10.2024:[10.0] "The blue print for what being all around excellent is. He may not have had the highest number of all time great matches like Angle or Michaels, but he never gave less than 100% and forever will be known as one of the most consistent and safest workers there ever was."
Rating: 10.0
Sentiment: 0.3972222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TFforeverwrote on 01.10.2024:"One of the greatest professional wrestlers to ever live, his matches alone will captivate you, the technical skill and realism of his strikes and holds absolutely transcend the sport. Rockstar look, amazing as a face or heel, mic skills could've been better, but his wrestling was so good it's not even a factor."
Rating: No rating found
Sentiment: 0.40454545454545454
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Nolan Greenwrote on 01.10.2024:[10.0] "The best there was, the best there is, and the best there ever will be. That may not be true anymore, but for a time, it was. He was great in the ring and could carry almost everyone to a good match. (The one exception is Goldberg for obvious reasons). He wasn't great on the mic, but he improved overtime. Even with his garbage 2010 return, I still give him a perfect score. He was, quite simply, excellent."
Rating: 10.0
Sentiment: 0.765
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Zak22wrote on 25.09.2024:[9.0] "A technical god but.... He was also capable of having a boring, lifeless stinker. Bret was exceptional but he wasn't the best there ever will be."
Rating: 9.0
Sentiment: 0.061111111111111095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: dangfoolianwrote on 21.09.2024:[10.0] "I mean, what can I say about Bret that hasn't already been said by everyone else. A technical god and a master of in ring psychology. Could get a good match out of nearly anyone, even Will Sasso. A career ended far too soon. An all time great."
Rating: 10.0
Sentiment: 0.23124999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jsbortswrote on 19.09.2024:[10.0] "Bret is fantastic even if he's only had like 5 good months of mic work. Bret could make an 8 minute match as great looking of an athletic contest as a 25 minute match and a 60 minute match, and could work all three with entirely different approaches depending on the opponent. I think what Bret did perhaps better than anyone was bending his style and the match dynamic depending on the situation and opponent, and he was incredibly technically gifted. One of the few people who deserves the high opinion they have of themselves."
Rating: 10.0
Sentiment: 0.28600000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: StrongLocks2wrote on 03.09.2024:"Bret Hart is widely celebrated as one of the greatest professional wrestlers of all time, known for his technical brilliance and exceptional in-ring skill. Often referred to as "The Excellence of Execution, " Bret's matches are a masterclass in wrestling technique, characterized by his precise execution of holds, counters, and high-impact maneuvers. His ability to tell a compelling story through his matches, combined with his commitment to wrestling authenticity, has earned him immense respect from fans and peers alike. Bret's charisma, coupled with his dedication to perfecting his craft, has solidified his legacy as a true legend in the world of professional wrestling."
Rating: No rating found
Sentiment: 0.32666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: sbprodwrote on 28.08.2024:[10.0] "The best there is, the best there was, the best there ever will be. Brett Hart is a top 10 wrestler of all time, he had it all."
Rating: 10.0
Sentiment: 0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Chosen Onewrote on 26.08.2024:[9.0] "Es ist Bret Hart. Ich kann aber keine 10 vergeben, weil die Promos nicht oft genug ein hohes Niveau erreicht haben - meiner Ansicht nach. Gerade in 1997 hat er starke Promos abgeliefert dank seinem erfrischtem Charakter und der Rivalität mit Stone Cold Steve Austin. Die meiste Zeit war er aber so la la."
Rating: 9.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Nudlewrote on 26.08.2024:[10.0] "The excellence of execution, the best there is, the best there was, and the best there ever will be. May be the single best worker of all-time."
Rating: 10.0
Sentiment: 0.7857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ChocoboSagewrote on 08.08.2024:[10.0] "The wrestler that got me into wrestling, in an era of giants and odd characters, there was Bret Hart. Who was doing things no-one else could come close to at the time, with a couple of exceptions (Perfect, and Owen). He had everything, the look, the style and the work rate. His promo work is always mentioned to be his weakest side, but it's honestly not bad. He just couldn't compare to the greats of his day, like Flair, Roddy, Macho and then Stone Cold. He'll always be the best there is, the best there was, and the best there ever will be."
Rating: 10.0
Sentiment: 0.511904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KayfabeZonewrote on 08.08.2024:[10.0] "Not only was Bret a tremendous wrestler, but his impact on the business is undeniable. After the controversy surrounding the steroid trial, Bret was the perfect guy to carry the WWE flag going forward. He delivered excellent performances inside the ring while also being the perfect role model that captivated audiences back then. He could wrestle against any type of wrestler and he truly perfected the technical style. He made everyone who he stepped in the ring with look as credible as possible, no matter what the outcome was going to be. When it comes to his promos, he was never the greatest in that department, but his 1997 heel promos were truly a work of art. Bret left a lasting impact that is still being felt today. He proved that you didn't need to be jacked to the gills to be a main eventer in WWE, and he helped restore the company's reputation after what could've been a huge disaster."
Rating: 10.0
Sentiment: 0.37857142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wrest lingaddictionwrote on 05.08.2024:[10.0] "The greatest in-ring performer of all time. Couldn't cut a promo for the life of him but when you're that good in the ring it doesn't matter. Bret was so good he could make something as simple as a leg drop look painful. People often overlook him as the best technical wrestler in favour of Danielson but for my money, Bret was and still is the best there is, the best there was, and the best there ever will be."
Rating: 10.0
Sentiment: 0.5700000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "I love Bret. Bret and Owen are two of my favourite wrestlers when it comes to the technical style. Bret really is The Best there is, The Best there was, and the best there ever will be."
Rating: 9.0
Sentiment: 0.6166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sal1314wrote on 31.07.2024:[10.0] "We often see wrestlers in modern times do so many flashy maneuvers and rely on their athlectic ability, which at times makes the matches feel more like stunt work than a realistic contest.  Bret Hart was a true embodiment of what a pro wrestler should be during the 80's and 90's. excellent storyteller inside the ring, great in-ring psychology, and a top-tier technician with realistic selling ability. Character wise Bret Hitman, despite not being a great promo cutter, worked for the new generation era, especially post-hulk hogan. He was a natural babyface that both adults and kids loved and respected. His babyface run became stalled after The Ringmaster turned Stone Cold Steve Austin. The Heel turn in 1997 was shockingly great; his promos during that period were the best of his career. For new wrestling fans who didn't see any of Bret's matches, I recommend his matches against the likes of Mr. Perfect, Owen Hart, Steve Austin, the British Bulldog, Kevin Nash, 123 Kid, Shawn Michaels, and Chris Benoit."
Rating: 10.0
Sentiment: 0.37886002886002884
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JBruce1018wrote on 11.07.2024:[10.0] "A miserable, bitter old man? Yes. The best there is, the best there was and the best there ever will be? Hell yes. Everything he did in the ring had a reason and was realistic, he carried so many opponents to their best performances that it just says how great he was. I wish his career wasnt cut short, but what we got was brilliant. Always improving on the mic throughout his career and he was wise to not doubt El Dandy. Also, any vote for him below an 8 (besides a 4/10) is just wrong."
Rating: 10.0
Sentiment: 0.39761904761904765
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rassle Fanwrote on 07.07.2024:[10.0] "For me he's the greatest wrestler who ever lived. Everything he did was crisp, smooth, and made sense. His promos were his only weakness but they weren't that bad and his work in 1997-98 was his best. He deserved a better end to his career than what he got but all ancient history now."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Johanwrote on 30.06.2024:[10.0] "The greatest wrestler of all time in my eyes, so flawless in the ring, the greatest in ring storyteller there ever was, up there with the best technician there ever was, top three american sellers at the worst and a criminally underrated brawler, even an all time great there, his match volume and quality speaks for itself in the short run he had as a singles star"
Rating: 10.0
Sentiment: 0.39
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: doobwrldwrote on 26.05.2024:[10.0] "Not many people realize the proclaimed moniker of Excellence of Execution. In the grand scheme of professional wrestling, the goal is to present an authentic, and appealing style that progresses forth the notion that the mat is sacred. I see professional wrestled as artists, in the sense that every wrestler has their own unique style, work for their own niche benefits, and can portray so many emotions and feelings just through the mat. There has been no better artists in the context of professional wrestling than The Hitman himself. He is never going to be overrated, and his ability in the ring is never going to go out of style, because he is the basis for what every professional wrestler should be. Brilliant, effective, and respectful. Its easy to give him so many superlatives on his performances, but it will never be enough to describe the true contributions and impact he has had. An icon of professional wrestling, and a surefire contender for greatest of all-time."
Rating: 10.0
Sentiment: 0.3416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Dntbamarkwrote on 14.05.2024:"I go back and forth on Bret. On one hand, he's one of the absolute greatest to ever step between the ropes and into the ring. His intelligence, in-ring psychology and dedication were unmatched. He, along with Shawn Michaels were easily the face of the mid 90s new generational shift in talent. He wasn't as flashy or charismatic as Michaels was but Bret was a style very much in his own. On the other hand, Bret was never the big time draw on the levels of a Hulk Hogan or a Macho Man, his promos or personality were never the greatest unless he was complaining about being screwed by someone. His WCW run in the late 90s ended his career on a sour note and he spent the years between that and his HOF induction in 2005 bitter that he got worked over in Montreal. He always came across to me as an entitled mark-for-himself prick who only wanted things to work his way or no way at all. That being said, Bret's one of the absolute greatest to ever to do it."
Rating: No rating found
Sentiment: 0.2027348484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: StardomIconwrote on 12.05.2024:[10.0] "When he's not trashing Bill Goldberg, Bret hart gives excellent insights on what modern day pro wrestling is missing and what wrestlers need to succeed. Bret claims wrestlers need to check off the following three boxes: look, promo skill, and in-ring ability. Using Bret's system to rate the Hitman himself, it's clear Bret's promo skills weren't the best. He wasn't bad, but I can't recall any Bret Hart promos bringing out emotion like some of the other greats of his era. Fortunately, he had great monikers, like "The Excellence of Execution" and "The best there is, the best there was, the best there ever will be". When it came to look however, Bret stood out from the rest of his peers. The pink and black tights complemented by hearts, skulls, and sunglasses were all top-tier 90s aesthetic. As far as his in-ring ability goes, he was unmatched. Like a good novel where every word has meaning, every action in a Bret Hart match had a purpose. He mastered the fundamentals - just look at the way he locked up with opponents, ran the ropes, or threw punches. His matches were paced well and told stories, where it truly seemed like he was trying to beat his opponent rather than coordinate with them. Taking all three categories into consideration, Bret was able to elicit a wide range of emotions and passion from wrestling audiences. Just watch the crowd's reaction during Bret's match against Mr. Perfect for the Intercontinental Championship at SummerSlam '91 - it's the perfect example of everything professional wrestling should strive to be."
Rating: 10.0
Sentiment: 0.37427536231884057
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MatnificentMattwrote on 10.05.2024:[10.0] "Bret was amazing and he had one of the most legendary careers in wrestling history. His in ring psychology, selling, and technical abilities are unmatched. Everyone who wrestled Bret always came out better whether they won or they lost. He has had some of the best matches and moments in wrestling history and his work is timeless. Bret Hart truly is The Best There Is, The Best There Was, and The Best There Ever Will Be"
Rating: 10.0
Sentiment: 0.7333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MarkMcMarkington2wrote on 02.05.2024:[10.0] "Bret made wrestling look more real and believable than anyone besides maybe Angle or Benoit. Its a shame he spend his career at mid 90s WWF with often terrible wrestling and then left for WCW. He was a man way before his time."
Rating: 10.0
Sentiment: 0.033333333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jeremyeyorkwrote on 21.04.2024:[10.0] "Almost from the day I became a wrestling fan, Bret was my favorite wrestler. Even as a heel he was. His matches were top-notch. You were rarely ever saw a bad match come out of him. When I go through the list of some of the greatest matches from the 1990's, he in most of them. SummerSlam 1991, 1992, WrestleMania X, WrestleMania 12, King Of The Ring 1993, just great great matches that had set the standard for many of the next generation's wrestlers."
Rating: 10.0
Sentiment: 0.4272727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BMWrestling17wrote on 17.04.2024:[10.0] "Why are you reading reviews here? Better watch his classic matches and you will realize he's the best there is, the best there was, the best there ever will be. Greatest canadian wrestler of all time. No matter what."
Rating: 10.0
Sentiment: 0.7777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Perc Anglewrote on 12.04.2024:[9.0] "Bret Hart is known as one of the greatest of all time but still remains underrated. If you like guys like Daniel Bryan or anyone else of that caliber then you should at least appreciate The Hitman. Without him there is no little guy as champ in WWE. He could make a broom look like a star and still will be overlooked."
Rating: 9.0
Sentiment: 0.26458333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Bean1985wrote on 11.04.2024:[9.0] "Hitman is a great one, his only limit was himself and his personality. In ring definitely in the upper tier of excellence. Great career, consistent and with a considerable peak. Mic skills not so great, but to be honest Ive always enjoyed watching him, even when he turned heel. Totally dislike his personality, he kept in his post career his sharp and cutting characters. To me, probably one of the most relevant Gods of this business"
Rating: 9.0
Sentiment: 0.26833333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: nothingleftinsidewrote on 27.03.2024:[10.0] "Truly the best there ever was. Hard to find a bad match, though they do exist. He could have been better on the mic, but he had the it factor enough to hold down that top babyface spot for many years, and worked quite well as a heel. He was the face of the company during its darkest times, and to a lot of people that's a detriment, but he kept the ship afloat when it was sinking the hardest. His career could have been longer, but he was at his peak when he went out, so there's no embarrassing late career stuff to tarnish his legacy (well almost none of that, considering the awful 2010 comeback matches). His WCW run is disappointing, but there are some high points, some good matches with [redacted], Booker T, Flair, DDP. Aside from that, there isn't much left to criticize. His tag team run is some great shit and he has many of the best technical performances ever. He could even work a good brawling style. I guess you could call his matches repetitive and he was the original "moves of doom" wrestler but I think that's a common complaint people have of wrestlers they've seen lots of matches from. From a kayfabe standpoint, it would make sense to have a "bag" of stuff that worked to pull from. A+ worker, B- talker, A gimmick/look. It's definitely worth watching his greatest hits."
Rating: 10.0
Sentiment: 0.14584362139917695
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Cass93wrote on 26.03.2024:[10.0] "I always come back and watch Bret Hart's matches, he is the most entertaining in-ring wrestler for me. I will give him a 10, even if he doesn't deserve due to his promo skills."
Rating: 10.0
Sentiment: 0.21875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BruceMarcos524wrote on 24.03.2024:[9.0] "Arguably one of the best professional wrestlers of all time. Bret Hart has certainly cemented his own legacy by performing an elite match that only few of the people could ever pull. One of the best technical wrestlers in history and one of the guys that prefer storytelling over athletics, in which it's a forgotten element in wrestling nowadays. He had great rivalries with Owen Hart, Stone Cold Steve Austin, Jerry Lawler and most notably, Shawn Michaels. He has a great sense of psychology in performing a move and every move he delivered tells a story. Bret is one of the guys who even made the most boring wrestling style the most entertaining one whenever he's in the match. Bret knows which move he should perform to keep the crowd from investing and being entertained. He is also a gamechanger in terms of the political nature of the company, as he is first of the guys who doesn't need the size and muscles like Hulk Hogan and Ultimate Warrior and rely solely on skills to be the top attraction star of the company. He is incorruptible, as proven by his numerous backstage stories like how he is against HBK's politicking and putting over Rocky Maivia in contrast from suggestion by HBK's then-lapdog, Triple H. He is almost a near-10/10 wrestler, but his promo abilities derailed him from getting that perfect score and I cannot simply overlook it because one of the importance of his character is the way he talks to the crowd. As his promos and his in-ring abilities are needed together for him to build a great characterization of himself. Unlike AJ Styles and Kazuchika Okada who doesn't need to cut promos as the action speaks for itself. One of most notable as he needed his promo power was during his 1997 heel run, as his arsenal of moves still garner a good reaction from the crowd and he cannot complement it with his heel persona. Although less charismatic, still Bret has a certain connection to the crowd, and he's mostly appeal to the kids as they see Bret as the most relatable hero in WWF/E."
Rating: 9.0
Sentiment: 0.3308862433862434
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: GoldLigerwrote on 24.03.2024:[10.0] "Bret Hart I think might be the GOAT contender with the most What Ifs. This is a man who had a career of less than 22 years, of which the part that actually built his legacy was only about a decade at best, all of that run being in Hulkamania & New Generation WWF which was basically allergic to proper professional wrestling much of the time. Bret was an incredible technician, an underrated brawler, a believable promo, excellent face or heel (being part of the best double turn in wrestling history), had one hell of a look in his main event WWF run with the hot pink shades, and was known to be one of those guys who never got a bad match out of a situation where a good match was possible. You could even argue that Bret is the reason the Attitude Era even exists due to making that WM13 match so perfectly built around getting the crowd to love Austin. To think that because of disrespect and mistreatment he left for WCW who fumbled his push and put him several awful angles until he got a career-ending concussion in only the year 2000, and he STILL is Top 10/5/3/1 to so many people says leaps and bounds about his abilities. That's why he's so full of What Ifs. A non-concussed Bret Hart that rode out his WCW contract and refused to work with McMahon or Russo working NOAH or ROH in the early-mid 2000s could've had the run of a lifetime, a 00s on par with a Danielson while having his solid 80s work and excellent 90s work behind him, and yet he doesn't need to have had that run to receive the praise he has. Since retiring Bret's also pretty much been a straight shooter, he's got a good head on his shoulders and everybody he still has a grudge on honestly earned his ire one way or another (plus I love how little he cares about talking shit about Russo or Goldberg or whoever). No matter who screwed Bret, he's one of the best ever."
Rating: 10.0
Sentiment: 0.2589015151515151
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SchenzenJohnwrote on 06.03.2024:[10.0] "Bret Hart ist DER Wrestler. Jeder seiner Moves gehört in ein Wrestling Bilderbuch. Dieser Mann hat Wrestling geatmet. Leute wie Moxley sollten sich paar Matches von ihm anschauen um zu verstehen wie gutes Wrestling funktioniert. Sein Selling was vor allem in Submission Matches gut sichtbar ist , ist verdammt glaubwürdig und konsistent. Er hat selbst semi gute Wrestler gecarried und aus vermeidlich schlechten Matches noch das Beste gemacht. Es gibt Aufzeichnungen wo er selbst den Kameramännern Zeichen gab von wo sie filmen sollen. Seine Mic Work war spätestens bei der WCW gut auch wenn er hierbei nicht mit einem The Rock / Flair oder ähnlichen mithalten hätte können. Zudem war es ihm auch wichtig ein Save Worker zu sein, was ihm auch überragend gelungen ist, er hatte meines Wissen nach keinen einzigen Wrestler in seiner Karriere verletzt. Bret Hart ist 5 Sterne Wrestling. Um hier nicht zu lang zu werden möchte ich nur noch sagen wie schade ich es finde , dass wir bestimmt noch 10 gute Wrestling Jahre hätten sehen können hätte es diese personifizierte Beleidigung des Wrestlings namens Goldberg nicht gegeben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Dirty Diegowrote on 23.02.2024:[10.0] "The best is the best there was and the best they ever will be , definitely in my all time top 10 wrestles of all time, , the safest worker of all time, best at timing his move he could make a suplex or a backbreaker look good, had so many great matches back in stampede in the 80, s to classics with his brother Owen , mr perfect, Shawn Michaels and stone cold Steve Austin, to bad wcw didnt do nothing with him but still had a legendary long time career"
Rating: 10.0
Sentiment: 0.409375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SJ Millerwrote on 22.02.2024:"Arguably the greatest mat worker of all-time, to him every match was a story and every move should mean something. By his own admission not a naturally great talker but could cut a very believable promo when he had a genuine axe to grind, especially as a heel. The first truly international main event attraction after Vince's national expansion, his popularity in Europe was immense."
Rating: No rating found
Sentiment: 0.2140151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Scottielstamperwrote on 06.02.2024:[10.0] "To me a top guy in so many ways if we only seen Bret from the territory day to his intercontinental title run he would still rank high. When he got that world title run from Ric Flair things were history Yokozuna Stone Cold and so many great matches. Bret could work single or tagteam heel or face Bret was great at working a match with anyone just about."
Rating: 10.0
Sentiment: 0.17885714285714288
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CommisarRobewrote on 01.02.2024:[10.0] "His nickname says it all. Bret is one of the most believable and realistic Wrestlers of all time. His selling was stellar his understanding of in ring psychology was always of top standard and contributed to telling great stories during the course of his matches. Finally Bret was also a legitimate star maker very willing to put over people and build them up in feuds with probably the best example of this being Stone Cold Steve Austin."
Rating: 10.0
Sentiment: 0.3128787878787879
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: tlaustinwrote on 08.01.2024:[10.0] "Smart, safe, cerebral, multi-talented artist that changed the game and made wrestling better because of it. I will never say no to a Bret Hart match. If there's a real critique to be had of the man, it's that he wasn't always great on the mic, and it's that much of a testament to how much he "gets" wrestling that he was -that- captivating of a figure without being able to cut the best promos. I doubt anyone looking here is really shocked to see a 10 on a rating of him, but if you have somehow made it to cage match and haven't seen a Bret match, just... look at the match guide and start. Really. Do it. There is a very, very high chance that the wrestling you like begins with something he did."
Rating: 10.0
Sentiment: 0.28016326530612246
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JediSaiyanMaster1203wrote on 19.11.2023:[10.0] "For my money, Bret Hart is the absolute best in ring performer of all time, he's a prime example of less is more. Bret Hart is the perfect in ring wrestler, with countless submission holds, realistic selling, perfect execution, legendary storytelling all made him an elite wrestler in the ring. Even in terms of character and charisma, Bret Hart was actually not bad at it. Sure, he never had the wild personality that a Hulk Hogan had, but his persona in 1997 as a heel is nothing short of genius, showcasing he can cut promos and have personality. Bret Hart has always been a joy to watch, no matter in tag teaming or singles competition. The Hart Foundation is, arguably, the greatest tag team in WWF history, having classic matches with The Rockers, Demolition, The British Bulldogs to name a few, everyone considered Bret Hart their favorite out of the members, he was always bound to be a star no matter what. Then he breaks off and does his solo run, winning the Intercontinental Championship from Mr. Perfect in one of the best matches in WWF history, having a great run that eventually ends, but then recaptures it after beating Roddy Piper in a classic match at WrestleMania VIII, a match that anyone can easily understand the storytelling and appreciate it. He eventually goes on to become a main eventer and even becomes a 5 time WWF Champion, back when that statistic meant something, having great matches with The 1-2-3-Kid, Shawn Michaels, The Undertaker, Owen Hart, Diesel, Razor Ramon, The British Bulldog, etc. Then 1997 arrives, he's having a generational feud with Steve Austin, even makes Steve into the star he became (Steve has said it himself), turns heel and does the Anti-America/Pro-Canada gimmick, along with starting The Hart Foundation faction, some of the best stuff in WWF during the time. Sadly, Bret Hart got screwed out of the company on his last day in the company and ended up wrestling in WCW... *sigh* at least he had amazing matches with guys like Ric Flair and Chris Benoit. Overall, Bret Hart is one of my all time favorite wrestlers, he was amazing in almost every way, shape or form. "...The Best There Is, The Best There Was, And The Best There Ever Will Be! And if you don't like it, tough shit! ""
Rating: 10.0
Sentiment: 0.3963824289405684
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MagCat81wrote on 17.10.2023:[10.0] "My favourite wrestler since I started watching in the early 90s. Bret gets some criticism for his mic skills/promos, but one of the reasons he appealed to me so much (and I think a lot of other fans worldwide) is that he came across as a serious athlete surrounded by larger than life characters and so he was someone we could relate with and root for. He was equally realistic and believable in the ring; everything he did made sense and had logic behind it and his offensive moves always looked as if they were connecting and having an impact, although they were also very safe and he famously never caused any serious injuries. His selling made a particularly big impression on me as a child - I used to think he had really hurt himself, because he would sell exactly as you would if the move actually did hurt. Technically he was nearly flawless and his matches had excellent psychology and storytelling too. Plus he had a great look, with iconic ring attire - and even his weaker point, the mic skills, had improved a lot by the late 90s as he settled into his own promo style. As for people who call him bitter, I think we would all be bitter if we had suffered even half of what he suffered in the space of a few years. He was the greatest ever in my opinion and always will be."
Rating: 10.0
Sentiment: 0.17253086419753086
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: andytuga86wrote on 25.09.2023:[6.0] "Always found him overrated and even boring in the ring sometimes. He may had some refined technical skills but his promos were insipid. He's not the "Best there ever will be" that's for sure. Later on he became an angry old bitter man, burying everything and everyone in interviews."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Chris Marshallwrote on 17.08.2023:[9.0] "Bret Hart made the wrestlers that shared the ring with him look better, and that is a true complement for a person in this business. His promos could come off a bit robotic & lacking some of the flair some of the other greats possess, but in ring there are few that can hold a candle to Bret. His work is crisp and has a well thought out feel to it. He came in with a game plan to beat his opponent and move by move he would allow the audience to draw themselves into the story and live out the joy of victory and the heart break of defeat."
Rating: 9.0
Sentiment: 0.1345959595959596
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BigPoppaSmurfwrote on 16.08.2023:[10.0] "He's the best. A '10' rating should be extremely rare, but in Bret's case it's fully justified. He was the best bell-to-bell worker ever, he was over, he had a great look, he's underrated as a talker, and he has a body of work of great matches with widely different wrestlers from Shawn Michaels to Yokozuna to Hulk Hogan to The Undertaker."
Rating: 10.0
Sentiment: 0.6142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: mpichwrote on 11.08.2023:[10.0] "Technisch einer der besten Wrestler aller Zeiten, zudem auch - insbesondere für mich selbst - eines der wichtigsten Aushängeschilder der WWE der frühen 90er. Er ist sozusagen der Knotenpunkt zwischen klassischer 80er-Jahre-WWF und der späteren Attitude-Ära. Sonderlich charismatisch oder charmant war Bret Hart eigentlich gar nicht, wenn man es im Nachhinein genau betrachtet, aber irgendwie dann doch, alleine durch seine Präsenz, Power und emotionale Abgebrühtheit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ViolenceBretwrote on 08.08.2023:[10.0] "Arguably the greatest technician to ever step-foot in the ring and a total professional by all accounts. Bret Hart was the antithesis of Hulk Hogan, and that was completely okay by the early 1990s. Coming from Canada and trained by his legendary father Stu, Bret first established himself as a tag team dynamo. Once he moved up the ranks and became WWE champion, everything just seemed to fall into place as a new generation was solidifying itself. There was always a certain sophistication to Bret that was absent in most American wrestlers. As a "good guy, " he carried himself like a star athlete and not some super hero. His promos were never over-the-top, yet once the landscape changed Bret started showing a lot of raw emotions. Thus one could argue his speaking ability was actually better than most people claim. Moreover, in terms of look the glasses and leather jacket combo just worked. Things in WCW could have been better, but Bret managed to win nearly all the top-titles at some point. Even after a career ending injury, his return to WWE was a cathartic experience and proper farewell. Sure he did nothing with the US title, but it's Bret so who cares. Watching him beat Vince with a chair for an awkward prolong period of time just seemed right. God bless the Hit Man. 10/10"
Rating: 10.0
Sentiment: 0.3099553224553224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MrRaider959wrote on 26.07.2023:[10.0] "Bret is a wrestling legend. He has had amazing stints in WWF and a kickstart in Stampede Wrestling. His rivalries with Steve Austin & HBK are classics and enjoyable to this day. I don't agree with his Bill Goldberg opinions. I believe Hart had a 5-star career and it was time to move on."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: bigredtalk89wrote on 21.07.2023:[8.0] "Call me a hater, but I think his in ring work is criminally overrated. He's great, but a step below the greatest in ring workers IMO. His selling was just decent, and most of his moves(while competently executed) lack any sort of flare. His promo skills were hit and miss, but he was capable of great work."
Rating: 8.0
Sentiment: 0.4458333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Jman8600wrote on 16.07.2023:[10.0] "Hart was technically sound in the ring and could make anyone look as sound in the ring as him. He wasn't the greatest on the mic, but his technical skill was so great that what he was lacking on the mic didn't really matter. He was also capable of carrying Vince McMahon's company as he did during the New Generation Era. Overall, Hart can definitely say that he is the best there is, the best there was, and the best there ever will be."
Rating: 10.0
Sentiment: 0.47202797202797203
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MattHallwrote on 13.07.2023:[10.0] "Awesome Technician in the ring, Squash Matches or PPV matches, this guy can make anyone look like a million bucks. Never too flashy and never too boring in the ring."
Rating: 10.0
Sentiment: -0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Undertaker4everwrote on 08.07.2023:[10.0] "Einfach der Topstar der frühen 90er und Golden Ära der WWF! War einer meiner absoluten Lieblinge damals! Der Montreal Screwjob war dann leider das Ende seiner WWE Karriere! Seine WCW Zeiten hab ich nicht sol verfolgt aber leider ist er dort dann ziemlich untergangen! Leider musste er dann seine Karriere dann doch früher als gedacht beenden!"
Rating: 10.0
Sentiment: 0.91552734375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KTG1515wrote on 03.07.2023:[6.0] "I'm certainly too young to have any kind of nostalgia for Bret Hart, and I've only gone back and watched a handful of his work. His matches with Owen Hart and Stone Cold are fantastic, but he also owns a plethora of boring work in WCW, and possibly the most boring match of all time in his ironman match with Shawn Micheals. He was ahead of his time but doesn't really hold up to me today."
Rating: 6.0
Sentiment: -0.0488095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: danzitorockwrote on 20.06.2023:[10.0] "An absolute legend who has inspired countless wrestlers throughout the ages, Bret "The Hitman" Hart is one of the most spectacular wrestlers in the ring, with impeccable technique. His skill is incredible, he is the definition of being a perfect wrestler, with all the necessary attributes, he is a kind of ultimate wrestler, of the highest caliber."
Rating: 10.0
Sentiment: 0.45499999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Talisonpulidowrote on 19.06.2023:[10.0] "My all-time favorite wrestler. From when I started watching wrestling around 86 to today. Currently rewatching all of WWF 1997 for his epic heel run."
Rating: 10.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: crs285wrote on 19.06.2023:[10.0] "In the ring Bret is one of the greatest of all times. Backstage politics hurt his career in WWE and WCW. On the mic he was good but not phenomenal. Bret's in ring work was so great he forced McMahon's hand in giving him a push that he normally would have given to a bigger guy. Inspired multiple generations of wrestlers."
Rating: 10.0
Sentiment: 0.2625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: InsertFunnyNameHerewrote on 17.06.2023:[10.0] "Quite possibly the greatest wrestler who ever lived. He made everything he did look real, and even if he wasnt the best promo himself, his best promos felt real. Overall one word I would use to summarize Bret is real"
Rating: 10.0
Sentiment: 0.48571428571428577
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Giantfan1980wrote on 07.06.2023:[10.0] "Come on, seriously! Bret was an automatic 10 from pretty much the time he arrived in the WWF until, unfortunately, when Owen died. Bret admitted he stopped caring by 1999 as the idiots in WCW did NOTHING with the opportunity they were given. You didn't miss much of his WCW days but it doesn't hurt his overall career performance."
Rating: 10.0
Sentiment: -0.15238095238095237
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: arminaminwrote on 30.05.2023:[10.0] "My personal favorite wrestler of all time.He is one of the main reasons why wrestlers like Stone Cold and Shawn Michaels are a big thing now."
Rating: 10.0
Sentiment: 0.01333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MasteroftheMatchGuide99wrote on 14.05.2023:[8.0] "I will admit that Bret Hart was a good worker and made his opponents look legit at all times, but my only nitpick is that I personally found him kinda boring. He seemed to have a diving crossbody and Sharpshooter as his 2 main things. I'm not saying that's a bad thing, but it did sometimes make me wonder if he had anything else he could use if those 2 didn't get the job done. His wrestling was phenomenal most of the time and he could work anybody no matter the size, including Yokozuna, but I just think his style was a bit one-dimensional at times."
Rating: 8.0
Sentiment: 0.020833333333333343
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: eenfish69wrote on 09.04.2023:[10.0] "Despite his reputation as a "technical" wrestler, he had supreme versatility. His best comparison would be to Mitsuhara Misawa - a man who also deeply cared about the business and how he was viewed when discussing bookings, someone who also was willing to throw it all away when he felt agrieved, and someone who believed in a level of realism that many others around didn't. Realism not in the sense of making every hit look like it connects, but realism in story and feeling, making people feel that Bret really was out there putting his body on the line and not allowing things he did distract people from the fact this was supposed to be a fight. People talk about wrestling not being "real" - but just like movies aren't real they still work to engross us so that we believe all that we see on screen and measure it by how believable and sensical it is - and in this way Bret always worked to make wrestling feel real. Like Misawa, he was the character that he played - some guy from Calgary who was the son of a hard nosed grappler and promoted who trained him on a cement floor in a frozen basement and taught him to be tough but honourable. And as wrestling changed in the mid 90s and Bret's character was no longer congruent with what wrestling was becoming, the finest heel turns occurred puncuated by one of the finest matches of all time. During WWF's darkest period, Bret elevated the in ring quality of all he shared the mat with and insisted on a level of quality that was sparse at best in the company. His matches with Piper, Perfect, Michaels, Austin, and Smith are amongst the finest in company - and wrestling - history, and there is genuine argument to say his feud with Owen is the greatest ever. Like Misawa, his understated and stoic presence and character would allow others to elevate and shine, which fit perfectly when surrounded by larger than life characters like at the start of his career and when facing the evil heels as a pristine baby face. Some might call it boring, but for the larger than life to feel larger than life, there needs to be the realistic life. Bret Hart is life. Bret Hart is wrestling. Bret Hart was the best and his work is timeless."
Rating: 10.0
Sentiment: 0.25133744855967083
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KKeanelwrote on 18.03.2023:[9.0] "I appreciate Owen little bit more than Bret as a whole wrestling persona, but no one can deny his contributions to professional wrestling. Technical god with many charismatic highlights from his career."
Rating: 9.0
Sentiment: 0.23035714285714284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: John Brandowrote on 14.03.2023:[10.0] "Bret Hart ist einer der besten und wichtigsten Wrestler der WWF in den 90er Jahren. Was die In-Ring-Qualität angeht in den Top 3 der WWE-Geschichte. Alles andere war auch nicht so schlecht, seine Rivalität mit Michaels ist ikonisch. Bret Hart würde ich in meiner persönlichen WWE-Liste auf Platz 5 stellen, Michaels sehe ich insgesamt noch ein bisschen besser vom Ganzen her betrachtet. Da ich Fan von beiden bin, sage ich: Danke für alles, was ihr für die WWE getan habt! Period!"
Rating: 10.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: kewf1988wrote on 11.03.2023:[10.0] "Bret Hart was one of the best technical wrestlers ever, and while he never had the strongest personality, he had excellent in-ring charisma, and his mic skills weren't as bad as people say, especially when you watch his heel run in 1997."
Rating: 10.0
Sentiment: 0.26000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: DangoDaisukiwrote on 08.03.2023:[6.0] "Hmm, ich fand Owen Hart schon immer den eindeutig besseren Wrestler. Die Matches von Bret waren für mich nie mehr als Durchschnitt, charismatisch fand ich ihn auch nie. Aber direkt schlecht ist er ja definitiv auch nicht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Makai Clubwrote on 05.03.2023:[10.0] "One of the greatest wrestlers ever. Most people that market themselves as "geniueses" aren't really that but Bret genuinely is. His blend of style and story is really unmatched on the States side. He could do anything, with anyone, for anything. His team with the Hart Foundation, while known for being one of the better teams, is a low point in his career for me as Neidhart is a big weight to carry. But him as an indivual was always undeniable and seemed destined to be pushed, going back to the 80s. And then he got his chance. And while he is unimpressive as a drawing figure and I can point to hundreds of actual draws without tripping over myself pretending Bret was in the US (he was a draw overseas though), his work is everything. And he's one of the few wrestlers where fans actually agree and still see him as this hero and legend. I can run through his work but do I need to?"
Rating: 10.0
Sentiment: 0.21666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: greaterdalewrote on 02.03.2023:[10.0] "Bret Hart is truly one of a kind. Back when he wrestled in WWF good in ring work wasn't always in high abundance but if Bret Hart was on the card, you knew you were going to get a banger. King of the RIng 1993 for example is absolute classic and that had a large part in due to Bret hart wrestling 3 awesome matches. (Seriously watch that PPV if you haven't before it's one of my favorite Bret Hart showcases for sure. Bret even had a fun match with Skinner of all wrestlers, and no ill will toward Skinner but that was mostly because of Bret Hart. The excellence of execution could carry like no other, and when faced against someone who was actually good as well it usually became something special."
Rating: 10.0
Sentiment: 0.28959273182957385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MilkDDTeawrote on 18.02.2023:[10.0] "Bret revolutionized pro-wrestling, and impacted the industry in a way that few people ever have. His in-ring techniques brought a sort of legitimacy to this art, and ushered in a new standard for what we consider good wrestling. It's hard to understate his influence given the countless number of wrestlers after Bret's time in the ring that have taken inspiration from him and have tried to replicate the realism he contributed. His classics with Owen, Shawn, Stone Cold and others will forever stand the test of time. You could watch any of his matches and immediately understand why he is so great."
Rating: 10.0
Sentiment: 0.06808712121212121
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: GrapsDownUnderwrote on 09.02.2023:[10.0] "The people who have rated him low are objectively wrong to be honest. There is in no way shape of form any explanation to convince me Bret isnt one of the best pure wrestlers of all time. If not THE best"
Rating: 10.0
Sentiment: 0.3857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wrasslinfan619wrote on 09.02.2023:[10.0] "If you wanna know how great Bret is, I think he is severely overrated yet still A 9. He is one of the best maybe, NOT THE BEST like some argue. HBK is better, but that being said he has some of the best matches ever with Owen Hart and others so there's that. EDIT: Nothing on my opinion has changed, just giving him A 10 real quick even if I think he's overrated, he's still A 10."
Rating: 10.0
Sentiment: 0.7999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Puro113wrote on 02.02.2023:[10.0] "My favourite wrestler of all time. Growing up in the 1990s, Bret was the absolute man. He had insane amounts of talent in the ring, he could pull a great match out of literally anyone. Some may have surpassed him in terms of match quality, but Bret set the standard for what was to follow, and he is rightly an inspiration to many wrestlers today."
Rating: 10.0
Sentiment: 0.13095238095238096
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Aliquickkwrote on 01.02.2023:[9.0] "Work doesn't hold up as well after seeing Kurt Angle take the best mat wrestler ever mantle. Still an all time great but I dock him for mic skills and also one for his wrestling not being as fantastic as I remembered. Missing an aerial game. Still one of the best ever all things considered, but overrated relative to GOAT peers."
Rating: 9.0
Sentiment: 0.37142857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Abo96wrote on 21.01.2023:[10.0] "Ohne Frage einer der besten Wrestler aller Zeiten, im Ring vielleicht sogar der beste. Technisch und von der Ringpsychologie her eine Klasse für sich. Jedes kleine Detail gibt bei ihm Sinn. Selling außergewöhnlich realistisch. Hat die WWF über Jahre als Face der Company, vor allem in Europa und natürlich Kanada getragen. Als Face fühlte er sich zwar immer wesentlich wohler, jedoch war für mich persönlich seine beste Karrierephase die Fehde gegen Austin und seine Heel-Rolle als Anführer der Hart Foundation. Bei WCW konnte man ihn nie richtig einsetzen, allerdings hat der Screwjob ihm auch viel seiner Passion für das Wrestling geraubt. Trotzdem hatte er auch dort noch seine Highlights. Vor allem gegen Benoit und Flair waren seine Matches immer noch sehr gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: benh2wrote on 13.01.2023:[9.0] "Bret was a fantastic worker. He grasped the basics better than almost anyone and all his matches were flawless in terms of how he paced the match, how smooth he was, how he sold and how he fed and positioned himself for his opponents. His offence was fairly run of the mill but it was always crisp and meant something in the context of that match. He had a good look and wasn't completely devoid of charisma but bar his tweener run in 1997 his promos were never much to write home about. Unlike other superstars of his generation, Bret's main selling point to the fans was the match itself and although he was capable of absolute greatness when he was truly motivated, he coasted a lot more than one might have hoped."
Rating: 9.0
Sentiment: 0.3351190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MainEventMasterwrote on 02.12.2022:[10.0] "The legacy of Bret Hart in pro wrestler will be looked back upon forever, one of the greatest workers ever, I simply cannot describe what this man means to pro wrestling."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Mcbolskywrote on 22.11.2022:[6.0] "I just can't get behind Bret Hart as a person or a wrestler. He took himself too seriously outside the ring and was pretty boring inside the ring. Natalya and Owen are more entertaining than Bret."
Rating: 6.0
Sentiment: -0.024999999999999984
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CurlyHairMetalPunkwrote on 22.10.2022:[8.0] "From a strictly wrestling ability stand point, Bret Hart was what he proclaimed himself as in the best there was, best there is, and best that there ever will be. For years, the microphone skills of the Hitman were adequate but unmemorable. Come 1997, the Hitman was good (while not great) on the microphone. You will not find a better professional wrestler when it comes to the list of timeless classic matches that have stood the test of time. Professional wrestling fans that started watching during the Attitude Era and after need to do themselves a favor and watch the many battles the Hitman had with the likes of Mr. Perfect, the British Bulldog, Owen Hart, Diesel, Shawn Michaels, and the Undertaker."
Rating: 8.0
Sentiment: 0.46153846153846145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: benny5bellyswrote on 11.10.2022:[10.0] "Very few childhood favourites are still loved when you grow up and become such a bore you obsessively rate things on here but Bret does. If only he was in WCW when he was in WWF and WWF when he was in WCW. The Stone Cold feud and everything associated with it is only second to Austin/Vince in best feud in company history."
Rating: 10.0
Sentiment: 0.105
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: RavenCrow75wrote on 06.10.2022:[7.0] "For the most part I will be basing my Wrestler ratings on five criteria four of which are based on in-ring ability and the last on charisma. I believe these five criteria are pro wrestling's version of Tommy Lasorda's criteria of "five points" in baseball. For pro wrestling those five criteria are power, speed, technical ability, hardcore & charisma. Bret Hart's scores: Power: 6 Speed: 6 Technical: 9 Hardcore: 7 Charisma: 7 for a total of 35 and an average of 7."
Rating: 7.0
Sentiment: 0.05833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: kcharles520wrote on 29.09.2022:[7.0] "Possibly the most overrated wrestler in the history of the business. Bret Hart was one of those wrestlers who could consistently have good, solid matches, but rarely amazing ones. His technical skill allowed him to coast his way to ***1/2 type matches time and time again, but rarely beyond that. Only when he was paired with a wrestler with true intensity (like Austin) did he ever put on true classics. His style in and of itself was technically solid but bland, and he needed a more physical opponent to truly bring the best out of him. Yes, Bret Hart deserves a place in wrestling history but he was far from 'the best there is, the best there was, the best there ever will be.'"
Rating: 7.0
Sentiment: 0.37416666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheOneAndOnlyCactuswrote on 13.09.2022:[10.0] "Setting a new standard in technical prowess in the west and showing that main eventers could be more than beefy dudes in the land of the giants, Hart s fingerprints on wrestling can still be felt in modern wrestling, especially in the workrate-based AEW. A lot has been said about how awful he has been in terms of promos but really, I just think when he was being himself, he was great. He could bring some realism to the product. There is so much to say about him, but let s just say that I still believe he is Canada s greatest wrestler."
Rating: 10.0
Sentiment: 0.18484848484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jonsnoewrote on 18.08.2022:[10.0] "The best there is, the best there was, and the best there ever will be. This enough to say about Bret Hart. If I rated wrestler according to Bret's rating, it should be 10/10 Looks 10/10 Promo 10/10 In ring One of the best professional wrestler of all time."
Rating: 10.0
Sentiment: 0.6833333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Ozzywrote on 07.08.2022:[10.0] "Greatest Technical Wrestler Of All Time, Best There Is, Best There Was, Best There Ever Will Be.10/10 is the only answer i can give the man, hes a beloved god when it comes to his in ring performance, and its easy to see why. Shame his career was cut short by Goldberg, and that he left WWF after the screwjob, but understandably why. Bret was will always be regarded as one of the greatest to ever do it for a reason, everything had a reason, everything made sense, and he could make anyone look good. Bret deserves some more light on his name now a days, with people like Bryan Danielson given the greatest technical wrestler name, Bret is one of those wrestlers who has earned that moniker for everything he puts into that ring. Best choice for WWF champ back in the New Gen Era with HBK for a reason, 2 of the all time greats."
Rating: 10.0
Sentiment: 0.519457735247209
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: milos1605wrote on 25.07.2022:[10.0] "Greatest wrestler of 90s. It's not easy to change from tag team wrestler to main event talent, but Bret did just that. He could perform every wrestling move perfectly. If his match with Mr.Perfect was longer, it would probably be first WWE 5 star match. He had one of most underrated rivalries ever with Piper. When Intercontinental title is more valuable than WWE championship, you know it's in right hands. He wrestled main event of SummerSlam alone and put British Bulldog over in middle of UK. Had acceptable match with Yokozuna. Wrestled three good matches in one night, even with Bam Bam Bigelow and became most legit King of the Ring ever, just to prove that he is better than Hulk Hogan and Yokozuna. Unfortunately, Hogan refused to have best match in his career just because he had to lose. I know that everybody considers WrestleMania 13 match his best, but his match with Owen at WM 10 was one of most beautiful things you will see in wrestling. Just like rematch at SummerSlam and entire feud. They had to do rematch at WrestleMania XI, but I Quit match with Backlund was acceptable. Only Bret Hart saved Diesel' s WWE title reign from being a failure. Iron man match at WM 12 was historic, but too long, if it was 30 minutes it would be far better. Feud with Stone Cold was outstanding and simply legendary. Trilogy of matches with Stone Cold is iconic, WM match isn't better than Taker/HBK, but deserves 5 stars and defines a double turn. Hart Foundation stable was fantastic. Sometimes I thought he meant every word he said in that time. Montreal Screwjob is unfortunately most memorable moment of his career. One of Vince's biggest mistakes. Only memorable things from his WCW run were matches with Sting and Ric Flair. His last run wasn' t that bad. What you can expect from 53 year old man? But his promos during that period were great. Squashing Vince was probably one of greatest moments of his life. Man who really deserved to introduce AEW World title. He was generic babyface and fantastic, realistic heel. Promos were great if he had good story. Best in-ring psychology ever. Once in a lifetime ability. He put over so many legends and did so many classics in relatively short singles career. One of real wrestling GOATs."
Rating: 10.0
Sentiment: 0.3204144620811288
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Leth99wrote on 22.07.2022:[10.0] "Not my favourite, but objectively the greatest of all time. Amazing psychology. Amazing technic. Impressive in-ring and promo ability. He could carry SO MANY wrestlers to amazing matches (for example Kevin Nash, Hakushi, British Bulldog, Goldberg, Bob Backlund and the list goes on). Sadly, the '97 screwjob destroyed his career. In WCW he was in a way too toxic environment to get the respect he deserved. Disrespect he also received on Starcade '99, with Goldberg. I wonder if he would ever come back to the WWF, I guess he could in 2001 because Shawn wasn't on the roster anymore. I can't imagine the amazing matches he could've had, but the ones we still have are amazing"
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: winstonwrote on 07.07.2022:[10.0] "The most believable and compelling storyteller I've ever witnessed in the ring. Everything he did made sense and/or had a purpose, and he could make even the worst opponent look like a superstar. For those reasons I can't imagine a better in-ring performer and, whilst not the best on the mic, he managed to create memorable moments outside of the ring too."
Rating: 10.0
Sentiment: 0.2875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Throwbackjoewrote on 20.05.2022:"The perfect blend of in-ring technicality and gritty realism. It really doesn't get any better than the Hitman."
Rating: No rating found
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jamzell00wrote on 03.05.2022:[10.0] "Everyone knows he's an all timer in the ring. The thing that gets me is people swearing he either wasnt charismatic or wasnt good on the mic because that alone shows they never watched him. His babyface promos were fine and did the job very well. But a pissed off prideful Canadian Hart is one of the greatest and most interesting promos in all of wrestling. Dude was so up front about everything and didnt give a single fuck how americans saw him. IDK if its the michaels love or wwe propoganda in full motion but he's honestly one of their best all around talents ever"
Rating: 10.0
Sentiment: 0.4457875457875457
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: wewantpunkwrote on 07.04.2022:[10.0] "Er bekommt für mich noch zu wenig Anerkennung, denn Bret Hart ist eine der prägendsten Figuren überhaupt. Im Ring ist er großartig gewesen und sein Charisma einfach nur riesig. Sicherlich hatte er seine Schwächen am Mic, aber mit dem Theme/Charisma und der Ringleistung kann man das gerne kompensieren. Die Höchstwertung ist da völlig fair, denn bei seinem Einfluss und Lebenswerk ist Erbsen zählen einfach respektlos."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Capital Ratingswrote on 04.04.2022:"10/10. When I was a kid, Steve Austin was my favorite wrestler. When I was a teenager, Chris Benoit was my favorite wrestler. As an adult, Bret Hart is my favorite wrestler. Bret Hart is unparalleled in crisp realism, match quality consistency, story telling, and he is seemingly able to get something good out of anyone he encounters. When you get a good, long match out of Diesel of all people, you know you're dealing with someone special. While Bret's matches with Shawn are overrated, Bret's promos are underrated, and 1997 may be his best overall year as a character. Key matches: Owen Hart (WrestleMania), the Fatal Four Way match (IYH 1997), Steve Austin (WrestleMania), and Hakushi (IYH 1995)."
Rating: No rating found
Sentiment: 0.389010989010989
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Real Godzillawrote on 01.04.2022:[10.0] "10 out of 10. Isn't it obvious? The most important wrestler of the 90s world-wide. With a huge following everywhere, except the United States (where he only had a large following). An in-ring marvel and the king of ring-psychology. Also got way better on the mic as time went on. Would probably been regarded as the best ever, if he didn't have to go to WCW and had 3 uneventful years there, followed by a career-ending injury. Best there is, best there was, best there ever will be."
Rating: 10.0
Sentiment: 0.44387755102040816
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MercDVisualwrote on 11.03.2022:[10.0] "Technically flawless, realistic but never reckless, equal parts graceful and rugged: THE maestro. What I admire most about him, however, is his devotion and respect for the craft and the business. One and only, for all time, always."
Rating: 10.0
Sentiment: 0.33333333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Scottwrote on 26.02.2022:"Für mich einer der besten Wrestler aller Zeiten. Eigentlich DER Beste. Seine Heel-Zeit kurz nach dem Wechsel in die WCW war für mich der Höhepunkt seiner Karriere. Aber wohl eher aus persönlichen Gründen. Technisch einwandfrei, konnte Gegner over bringen, hat nie jemanden verletzt und mit dem Sharpshooter eine hocheffektiven Move kreiert. Seine Mic-Skills waren Durchschnitt, aber fallen bei mir nicht ins Gewicht, weil er nicht solche langen Schnarchreden wie Hogan hielt. Die Matches vs Mr. Perfect, Shawn Michaels, seinen Bruder Owen und andere waren spitze. Von mir volle Punktzahl. Auf meiner Alltime-Card ist er vertreten."
Rating: No rating found
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SquilliamFancysonwrote on 11.02.2022:[9.0] "Bret Hart's greatness is impressive even in spite of the fact that he was a charisma black hole on the mic. His technical prowess surpassed all others of his era, and his psychological genius stands toe to toe with even the best modern workers."
Rating: 9.0
Sentiment: 0.33888888888888896
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TigerDiverwrote on 31.01.2022:[10.0] "I mean, at this point, what is there to say about him that hasn't been said before already. One of the best in-ring workers of all time, one of the greatest sellers in the world, one of the smartest people in the business... I could go on and on all day long. His run in the 1990s is legitimately one of the greatest runs a single wrestler could've ever dreamed of having. He can make anyone he stepped in the ring with look like a million bucks, if not more. He's not even my all-time favorite or anything, but to give him anything less than a 10 is just illogical in my view."
Rating: 10.0
Sentiment: 0.2943783068783069
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: rishabhwrote on 30.01.2022:[10.0] "One of my personal favorites of all time. His in-ring work is amazing and he never missed a single move. His moves looked so real yet they never hurt. The biggest art in professional wrestling according to me is to make your stuff look real but at the same time make sure your opponent is alright and Bret was a master in that. He could carry anyone to a great match, ANY FUCKING ONE! Everything that Bret did in the ring made total sense and no one can touch him psychologically. People criticize him for his promos and while I don't think he was very good at it he was not bad either. In fact I would say at that time when there were a lot of over the top characters, Bret Hart being a simple guy helped as the people could relate properly to him. Further down his career in 1997, he was awesome even in the promo department. One of the all time GOATS!"
Rating: 10.0
Sentiment: 0.20915079365079364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: GriffinXwrote on 27.01.2022:[10.0] "There is reason why so many wrestlers name Bret Hart as there favorite wrestler or why vets urge younger talents to study his work. The man was just so good at everything he did. He wasn't happy if something didn't look right or fake in his matches. He thought about wrestling in a different way but he was always proud to be that a wrestler."
Rating: 10.0
Sentiment: 0.3428571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ExcitingProWrestlin3wrote on 13.01.2022:[10.0] "The Best there Is, The Best there Was, and The Best there Ever Will Be. In his prime he was the top babyface, the ace of the company, was beloved all around the world. Added onto this was his tremendous pure wrestling skills, in ring psychology, and storytelling ability, what he lacked in character he made up for near the end of his WWF Run and career, with some great promo work in '97 and beyond. I'd venture to say that his nickname isn't farfetch'd and you could legitimately make a case for this man as being the greatest pro wrestler in history."
Rating: 10.0
Sentiment: 0.6647619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Muggowrote on 07.01.2022:[10.0] "For some people, you don't need to explain the rating, and Bret Hart is one of those people. He is the most technically sound wrestler ever, could have a decent match with anyone he is one of the best storytellers ever, and could cut a pretty good promo too."
Rating: 10.0
Sentiment: 0.5027777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CanuckGrapswrote on 29.11.2021:[10.0] "What more needs to be said about how incredible a wrestler Bret Hart is' He's one of the greatest wrestlers of all time, he worked all around the world, and faced nearly all of the other great wrestlers of his time."
Rating: 10.0
Sentiment: 0.5291666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SZ1989wrote on 19.11.2021:[10.0] "Bret Hart, along with Blue Panther, is someone who made me fall in love with wrestling as a kid. Bret is probably the greatest to ever do it. He excelled in every category you would want from a modern North American worker. Technical skills, promo skills, selling, psychology, storytelling, the ability to work any type of match...you name it. He is the ultimate example of a ring general, someone who could command the ring and make anyone look good while doing so. Over the years, people have given him a hard time for being "bitter" but as CM Punk said recently, Bret Hart is right. He is truly the best there is, the best there was, and the best there ever will be."
Rating: 10.0
Sentiment: 0.3340029761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Pentadustwrote on 16.11.2021:[9.0] "bret hart i think was the wrestler who began an era for wrestlers who didnt need to be bodybuilders to be stars. he was a technical artist with his wrestling style that amazed the fans of the new generation. in my opinion he was more selfless and modest then other main eventers like hogan, michaels and nash, but for some reason that seemed to lead to him getting disliked by some people. but to wrat it all up i think he was excellent"
Rating: 9.0
Sentiment: 0.19725378787878786
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CMX-7wrote on 04.11.2021:[10.0] "Living Legend) The great technical wrestler is just a master of his craft! it's very sad that Bill Goldberg ruined everything, and now we will never see the real final match in the career of the great Bret Hart.."
Rating: 10.0
Sentiment: 0.19
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: FACEElmo295wrote on 31.10.2021:[10.0] "The Best There Is. The Best There Was. The Best There Ever Will Be! Bret Hart is the GOAT when it comes to his work inside the ring in my opinion, Hart's psychology was second to none and every move he did actually meant something. Bret may not have had the best mic skills, but I like his mic skills since he never changed his tone and felt like he was speaking his mind. WCW wasted him so badly but he had some good moments there, but his 1991 - 1997 run with the WWF contained so many classics. He's a Canadian Hero. And the picture of Bret Hart in double white denim, branded tank top and Hitman boots in front of a lake should be on Canadian currency."
Rating: 10.0
Sentiment: 0.3692307692307692
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: OnlyHalfTheEffinShowwrote on 25.10.2021:[10.0] "*The* all time greatest technical wrestler of all time. No one could make you believe in pro wrestling as a sport like Bret Hart could in his day. The Hitman could work a good match with just about everyone, and always gave his 100% for every match. He helped carry the WWF through some of their worst years business wise during the New Generation with his feuds with the likes of his brother Owen (a highly gifted athlete in his own right), Bob Backlund, Jerry Lawler and many others while his work with Steve Austin and Shawn Michaels as part of the 1997 Hart Foundation (my favorite incarnation of Bret's character) helped to lay the foundation of the Attitude Era. The only real blemish on Bret's career is that it ended for too early. From every chest-first Irish whip into the turnbuckle, every sharpshooter, dropkick and piledriver given, Bret made it all look excellent and earned his title of the Best there is, best there was, and best there ever will be."
Rating: 10.0
Sentiment: 0.43274094326725904
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Conquistador37wrote on 18.10.2021:[10.0] "he needs to calm down with the auto fellatio, and his fans outta get offa their knees and go outside from time to time. but he's still a legitimate 10."
Rating: 10.0
Sentiment: 0.04814814814814816
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: IBladeDailywrote on 08.10.2021:[10.0] "In my opinion, Bret is the greatest of all-time. People have criticized his promos but I think if you go back and compare them to modern WWE promos he comes across great. His in-ring work was top notch but beyond his athleticism, his ability to tell a story in the ring was unparalleled. There was so much subtlety to his character that many missed it in an age of over-the-top cartoon characters. His rivalries with Mr. Perfect, Shawn Michaels, Diesel, Owen Hart and Stone Cold Steve Austin were classics that still hold up. In 1997 Bret hit his absolute peak and became one of the best talkers in the business. It's my favorite run of his career up through the Montreal Screwjob. There's so much more I could say but ultimately, I've never seen a wrestler as skilled at getting both themselves and their opponent over as The Hitman."
Rating: 10.0
Sentiment: 0.36250000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ALFwrote on 26.09.2021:[7.0] "Tito Santana hat Bret mal in seinem Buch "Tales from the Ring" als durchschnittlich bezeichnet und als jemand der sich immer darüber beschwerte, so wenig zu verdienen, dass er kaum seine Steuern bezahlen konnte. Dazu muß man wissen, bevor glaube ich Bret als "Hitman" zum WWF/E-Champion gepusht wurde, gab es ein stundenlanges Meeting im Titan-Tower wer zum WWF/E-Champion gepusht werden sollte: Tito Santana oder Bret Hart. Man entschied sich letztlich für Bret. Wrestlerisch war er schon top, am Mic naja, aber was war denn Bret vor seiner Zeit bevor er in hotpink auftrat? Einen Cowboy wollte man aus ihm machen und erst als er auf die Idee (aus lauter Verzweiflung weil die Liga nichts mit ihm anfing) kam mit Jim "The Anvil" Neidhart die" Hart Foundation" zu gründen ging es aufwärts. Erst als man ihn "Hitman" nannte und er gut eingeölt seine rosa Brillen an Kids im Publikum verschenkte wurde er zum beliebten Wrestling-Rockstar einer ganzen Generation. Davor war er ein Edeljobber/Under-bzw. Midcarder. Mehr nicht, sorry. Hat tolle Matches (1986 vs. Ricky Steamboat) abgeliefert - ohne Frage - aber das ändert nichts daran, dass er etwas überbewertet ist. Sein Verdienst u. a. : Leitermatches in WWF/E gebracht."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: nwachampionwrote on 19.09.2021:[10.0] "Few nicknames truly live up to the essence of the wrestlers that own them; "Excellence of Execution" is certainly one of them. Bret Hart's offense, his methodical wrestling was innovative and had such flawless execution that his genius as a pro-wrestler was immediately obvious when I first viewed him in a squared circle. As a ring-general and ring-psychologist, he truly made stars out of his opponents, by giving "character" to their in-ring style-- be it Steve Austin, Owen, Davey Boy, Sean Waltman, Shawn Michaels, or anybody else. Too bad his in-ring career was cut short unsatisfactorily, otherwise he would be in my pantheon of contention for one of the greatest North-American pro-wrestlers of all time. I will point out that my understanding of pro-wrestling has increased manifold over the years as a result of contrasting his philosophy of pro-wrestling with that of Shawn Michaels', for I believe the two are the flagbearers for the two most important schools of pro-wrestling philosophies-- the technician vs the performer, the sportsman vs the showman, the auteur vs the thespian. Some people claim that pro-wrestling would be far better if prospective pro-wrestlers followed in Bret's footsteps more than Shawn's-- while I would not completely agree with that sentiment, let me mention that pro-wrestling needs a balance of both philosophies, like the yin and yang, because it is the contrasting nature of wrestling styles that make pro-wrestling so great as an art form. Hence, I do agree that more up-and-comers should take inspiration from Bret, to balance it out, because Bret Hart is too much of a pioneer to be forgotten."
Rating: 10.0
Sentiment: 0.2976499690785405
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Pete Gallowswrote on 05.09.2021:[10.0] "10, without a question. One of the absolute very best wrestlers ever. Believable, his moves made sense, he made his matches look like a fight, his offence looked real, his selling like he was really struggling. He takes himself seriously as he should. I was glad when he came to WCW, because WCW was always my favourite, but boy, they dropped the ball on him big time, which is a real shame. I have nothing but respect for him."
Rating: 10.0
Sentiment: 0.2740740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: No Onewrote on 01.09.2021:[10.0] "Was my favorite 1990's childhood wrestler. One of the greatest in-ring performers of all time. One of the best Ring Generals of all time. One of the best technical wrestlers of all time. Master of psychology. Master seller. Had the natural charm to be a likable Babyface. One of the greatest Babyfaces in pro wrestling history. His 1997 Heel run is legendary. Had the aura of being the coolest guy on planet Earth. Innovated the "Ring Post Figure Four". Popularized The Sharpshooter. Feuds with Steve Austin, Owen Hart, & Shawn Michaels are legendary. Came up through the ranks the "Old School" way in both Stampede Wrestling & the WWE: Tag Team Champion, Midcard Champion, & finally the World Champion. His Stampede Wrestling feud with Dynamite Kid is also legendary. Was 1/2 of one of the greatest tag teams of all time, "The Hart Foundation" with Jim "The Anvil" Neidhart. Their rivalry with The British Bulldogs is considered one of the best tag team rivalries of the 1980's, as the 1980's was considered the Golden Age of Tag Team Wrestling in North America. May be the greatest Canadian born pro wrestler of all time. His 1993 King of the Ring performance throughout the entire show was masterful & highly memorable. Gave way too many re-watch worthy instant classics. Was the victim of one of the most infamous events in pro wrestling history: The Montreal Screwjob. Unfortunately, was horribly misused in WCW, and they did nothing to make his legacy look good at all. Freak injury brought his legendary career to an end way too soon."
Rating: 10.0
Sentiment: 0.4502688172043011
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: greatmonkeywrote on 08.07.2021:[9.0] "A great PG era world champion, a Canadian national treasure. Would have been remembered as the greatest of his era if Shawn Michaels didn't exist. His 97 heel run was entertaining but doesn't compare with someone with the longevity of Flair. Tied with Kurt Angle and right behind Flair and Michaels as an all time great top level North American wrestler/champion of the modern era."
Rating: 9.0
Sentiment: 0.40952380952380957
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BrayanLaPrewrote on 06.07.2021:[10.0] "Bret Hart is one of the most important, influential, and tremendous wrestlers to ever do it. Whether he was in a tag team setting or a singles competitor, Hart told a remarkable story in the ring while proving to be years ahead of his time from a technical perspective. Every single thing that The Excellence of Execution did had a purpose and he always found a way to get you to buy into the story. I wish we could've seen him stick around in WWF for the Attitude Era, but alas. Still got some great WCW matches amidst the chaos."
Rating: 10.0
Sentiment: 0.2889880952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: faithOfWrestlingwrote on 06.07.2021:[6.0] "While I am too young have seen Bret Harts work in his prime, going back and watching videos of his matches, I do not get it. Bret is praised like some wrestling God for his ring work and technical ability, but looking back he seemed to be very limited to only working a sluggish methodical pace and nothing else varied, plus for him being nicknamed ( Excellence Of Execution ) I dont see anything special from that standpoint allegedly more spectacular than your average wrestlers ring execution. There are tons of wrestlers I think are way better than Bret Hart in the ring from my personal standpoint at least, such are Chris Benoit, Kurt Angle, Daniel Bryan/Bryan Danielson, Dean Malenko, Dynamite Kid, Eddie Guerrero and more, I even prefer his brother Owen. Bret also came off as a constant crybaby most of the time as he does irl as well, this makes me want to dislike him even more besides the fact I genuinely dont see what everyone else does with him in the ring, very overrated in my opinion."
Rating: 6.0
Sentiment: 0.18071428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Tomas Cunhawrote on 30.06.2021:[10.0] "Bret is one of the best technical wrestlers in the entire history of pro wrestling, but also my personal favourite in-ring storyteller of all time. The way he was able to sell and tell a different story and come up with different finishes, being able to adapt to the different styles and/or sizes of his various opponents was fantastic. There are so many classic matches - Mr. Perfect, Roddy Piper, British Bulldog, Owen Hart, Diesel, Stone Cold, list goes on and on - and each one told a completely different yet equally awesome story. A true dedicated wrestler and personally one of the very best who have ever lived."
Rating: 10.0
Sentiment: 0.276984126984127
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: PrezVegetawrote on 30.06.2021:[10.0] "Bret Hart is likely the greatest wrestler that has ever lived. His in ring storytelling was second to none. His promo ability was straight to the point and a breath of fresh air in the era of over the top, chemically fueled cartoonish interviews. Nearly everyone he's ever worked with credits him for having their best match. Simply wonderful and timeless wrestler."
Rating: 10.0
Sentiment: 0.4555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Incredible athleticism and one of the best in-ring storytellers that I've ever seen. Brett Hart was a masterful worker, one of the all-time greats. He had enough charisma to make his angles work, and when it came to wrestling psychology, Hart was elite."
Rating: 10.0
Sentiment: 0.725
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: medousewrote on 12.05.2021:[10.0] ""The best there is, the best there was and the best there ever will be" - there are many reasons to support this statement. Bret Hart is one of the best and most popular wrestlers of the 80-90s. There is a lot of controversy about him and his accomplishments and stories he had with WWF. The Montreal Screwjob is probably the most famous of them all. I always loved his style, his gimmick, his looks and in-ring skills. He was a "total package", a guy who could work in every environment - the highflyer, grappler, technician. I don't think I could ever rate this guy lower than a highest score 10/10."
Rating: 10.0
Sentiment: 0.6636363636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Zaidwrote on 03.05.2021:[10.0] "One of the greatest to ever step foot in the ring. He was an incredible wrestler, and his feuds with Steve Austin, Shawn Michaels, and Owen hart were exceptional. He was mediocre on the mic, but his work rate as well as his ability to play a cocky heel or a beloved face covered up for his lack of promo skills, all in all a great worker."
Rating: 10.0
Sentiment: 0.4809523809523809
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: AnBwrote on 20.04.2021:[10.0] "The highlight of the WWF before he left for WCW, not a huge fan of his entrance to the new promotion though. I always found his mic skills to be mediocre, felt forced and fake, but he had some moments where he shone. Either way, he was incredible in the ring and provided some of the best matches in wrestling history."
Rating: 10.0
Sentiment: 0.06704545454545453
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MrJabroniCamelClutchwrote on 08.04.2021:[10.0] "Simply put , the very best wrestler to come from Canada , was unforgettable in the WWF in the early to mid late 90s , had unforgettable matches with Stone Cold Steve Austin , The British Bulldog , Mr Perfect and of course his brother Owen Hart , truly the best there is , the best there was , and the best there ever will be."
Rating: 10.0
Sentiment: 0.44615384615384623
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Takerfan99wrote on 03.03.2021:[7.0] "Great wrestler. Horrible talker. A tragic career ending injury as well. Though i respect Bret Hart, his bitterness and ego are what stop me from rating him higher"
Rating: 7.0
Sentiment: -0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: StrongStyle2020wrote on 05.02.2021:[10.0] "One of the best of all time, Bret Hart by 1997 was one of the most complete and well rounded wrestlers in history. Promos had improved to such an extent, he was one of the best promos in USA at that point, and the best worker. Numerous classic matches, his feuds with Owen Hart, Shawn Michaels, Steve Austin amongst the best ever, and matches vs Mr Perfect, Chris Benoit, British Bulldog of legendary status. A great storyteller and seller, Bret Hart stood out as a great even during a poorly booked product during 1993-96. Sadly Bret Hart's reputation and status has been stained from ulterior motives, but looking at it without blinkers on, Bret Hart is one of the all time great workers in the industry."
Rating: 10.0
Sentiment: 0.4862745098039216
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Uweuwesenwrote on 25.01.2021:[9.0] "Einer der besten Techniker der Wrestling Geschichte! Der Hitman ist eine sagenumwobene Figur, die nur eine Schwäche hatte: das Mic Work, denn das war maximal durchschnittlich"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Brett1980wrote on 23.01.2021:[9.0] "Problem was he was in a tag team for too long. Showed in 1987 in match on SNME with Savage that he could be a good singles star. If you watch any WWF pay per view between Summerslam 91 and Survivor Series 97 that he is on he was always in the top 3 on that night. Yes he did do the same moves every match but he performed them to perfection. He did stand out in the 90s because when the WWF was cartoonish he was a Wrestler from Canada who's Gimmick was he was going to try and put you in the sharpshooter. If he was in NJPW or AJPW at the same time would his technical ability have stood out? His later WCW stuff was pretty unremarkable and although he blames this on booking he never seemed enthusiastic either. His 97 feud with Austin and his heel turn are amongst my favourite things ever in wrestling."
Rating: 9.0
Sentiment: 0.2222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Ma Stump Pullerwrote on 14.12.2020:[8.0] "The best quality about Bret was his consistency: you could put him in the same match with the same guy 7 days a week and he'd find a way to make each of those matches at least somewhat entertaining while also keeping the other guy safe as anything. The guy had a eye for ring psychology and being able to organise and bump around guys who mostly had bad matches (Nash etc) and get them to a far more presentable level, even if that meant going through things piece by piece (such as with Bulldog). Great worker also in the sense that he would actually sell for the opponent: he could make even some of the weaker looking guys on the roster seem pretty legitimate and his little nuances and tells depending on the body part being worked on really helped to make the match just that bit more better. Ofc the usual negatives: Bret was a pretty bad worker outside of the ring and his promos (unless he was talking about something that he was actually legit mad about) were decent at best and quite bad at worst. Like Shawn Michaels and Nash in the same era he wasn't a good draw for the business either: comparing him to Hogan in that aspect is no contest. His later career is mostly forgettable outside of some decent matches with Benoit, which is probably why I don't view him as a nine or ten. Hart was a great workhorse but that's really it for me as he was the WWF champion during a era where the company was at the worst it has ever or will ever be so it's not easy to judge him at the top."
Rating: 8.0
Sentiment: 0.07926587301587304
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: milliondollarajwrote on 24.11.2020:[10.0] "Midcard workhorse? No problem. Main event world champion? Can do. Tag? Singles? Stable leader? Done, done and done. Face or heel? Sure! Face AND heel? Why not? Bret Hart really could do it all, perhaps unsurprising given his background and heritage but nonetheless, few pro wrestlers have worked harder their character and in-ring performance as the Hitman, perhaps to the point that it consumed Bret after the infamous Montreal Screwjob. Whatever era I watch of his work, he's always great and must be in any discussion as the greatest of all time."
Rating: 10.0
Sentiment: 0.24895833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: rainmakerpunkwrote on 25.10.2020:[10.0] "Bret Hart is the safest wrestler I've ever seen, the most professional too, everything he did seemd absolutely real and painful even though it wasn't, not many can do that, he could also play both face and heel perfectly, his 97 heel run was magic, he was the best ace WWF/E ever had"
Rating: 10.0
Sentiment: 0.29375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: taabr2wrote on 05.09.2020:[10.0] "Bret Hart's run as the top guy in WWE is sandwiched between Hulk Hogan and Steve Austin which is a very tough spot to be in and yet Bret Hart did about as well as you could reasonably say. Bret Hart was a different kind of top guy in WWE, he wasn't overly charismatic or a brilliant talker but he was an amazing storyteller in that ring and that was enough to make him a solid draw and star. His legacy is definitely all the classic bouts he had in his career and it's underrated how Bret actually helped bring about the next big era in WWF even though he was never apart of it."
Rating: 10.0
Sentiment: 0.21631944444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Khalid Acewrote on 29.06.2020:[6.0] "I think what happened in Montreal turned out to be a good thing for him because he's now to most people one of the G. O. A. Ts when he wasn't. He's good but most of his matches look the same & I know to the Canadian people he was like a hero but I feel any other good Canadian wrestler would've fit that rule perfectly."
Rating: 6.0
Sentiment: 0.4861111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JuWFEAEwrote on 18.05.2020:[10.0] "Bret Hart ist eine Legende. In Ring war er immer gut und seine Promos sind noch immer ginial. Durch sein Hart Gimmick hat er auch viel Ausstrahlung bekommen. Dieser Mann hat den Sharpshooter auserdem berühmt gemacht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Unknown Challengerwrote on 02.05.2020:[7.0] "Bret Hart is one of the most key figures in wrestling industry of late 1980s and 1990s. When it comes to creating wrestling matches, he is definitely the best there is, the best there was, and the best there ever will be. He had one of the best arsenal of moves and great understanding of in-ring psychology. When it comes to cutting promos he always delivered them decent enough to carry himself with his natural charisma and true feelings. However, if you compare him with several other top stars of that period, and including a state of the business in North America, he was never a drawing power of industry. After several main WWF stars with their large look and 'bigger-than-life' semi-cartoon characters left in early 1990s, he became the main star of the company. Unfortunately he couldn't bring just as much size of audience as they could due his non-roided look and his character being bland in comparison with the predecessors. When it comes to his gimmick, he was either a generic good guy or typical anti-USA heel with a pride for Canada. In addition, the refusal of Hulk Hogan to get him over in 1993 and being put in the shadow in WCW didn't make his situation better. Although his backstage rivals (Kevin Nash and Shawn Michaels) couldn't draw either. Despite of taking wrestling and kayfabe way too seriously sometimes, he was always considered a good family man and more humble guy in backstage compared to others with their ego power trip (for example, Kliq members in both promotions). In spite of his several dificulties, he is still recognized as one of the most influential, memorable and recognizable in-ring performers in pro wrestling history."
Rating: 7.0
Sentiment: 0.20744047619047618
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: qbortwrote on 01.05.2020:[8.0] "My favorite underrated Bret match is the one he had with Jean Pierre Lafitte back in 1995. And the matches with Hakushi back then are just amazing to watch."
Rating: 8.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Der Commanderwrote on 26.04.2020:[9.0] "Der Hitman ist und bleibt einer der besten aller Zeiten. Nur am Mic war er nie der beste. Trotzdem 9 Punkte!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TNBG2381wrote on 23.04.2020:[10.0] "Bret Hart was a ring perfectionist. When I think of the safest wrestlers to ever step foot in the ring Bret Hart always comes to mind. He never seemed to botch and his matches always seemed perfect great or not. It took him a while to get good on promos but he eventually came around and delivered good enough work. But it was his wrestling that made him so loved and that? s all Bret Hart truly cared about. He was done so dirty and I feel his career should have lasted longer than it did but unsafe WCW working conditions wouldn? t allow him to do that. His best matches were his battles against his brother Owen, his tainted rivalry with Shawn Michaels, and his classic five star match with Stone Cold Steve Austin. But Bret will always be known as ? The best there is, the best there was, and the best there ever will be. ?"
Rating: 10.0
Sentiment: 0.5282051282051282
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Fabi89wrote on 19.04.2020:[10.0] "Wer möchte, kann bei Bret Hart definitiv Kritikpunkte finden. Zu nennen ist hier insbesondere das bestenfalls durchschnittliche Micwork. Trotzdem bleibt Bret für mich für immer einer der besten Wrestler, der einen WWE-Ring betreten hat. Technisch war er sowieso über jeden Zweifel erhaben. Das, was Bret für mich aber zu einer einzigartigen Erscheinung gemacht hat, war seine Fähigkeit, im Ring wunderbare Geschichten zu erzählen. Schmerz, Enttäuschung und Wut, aber dann immer wieder auch ganz große Comebacks - das konnte kaum jemand ohne Worte so gut und mitreißend darstellen wie Bret Hart. Dass sein Privatleben dann ebenfalls unzählige Schicksalsschläge für ihn bereithalten sollte, tut mir als Fan weh. Es ist Bret zu wünschen, dass er dauerhaft seinen Frieden mit allem schließen kann, was ihm wiederfahren ist. Und dass er noch so manchen Legendenauftritt feiern kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: AAA3000wrote on 07.03.2020:[6.0] "Bret Hart ist meiner Meinung nach überbewertet. Er ist quasi wie Faarooq. Ganz gut im Ring aber mehr auch nicht. Wo Faarooq noch die guten Gimmicks hat und das meiste macht aber dann am Mic nicht gut ist das ist Bret Hart vielleicht nicht ganz so scheiße am Mic aber ansonsten fehlts halt umso mehr an Ausstrahlung."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: FrankSiverowrote on 04.02.2020:[10.0] "Für mich ist Bret Hart der beste Techniker aller Zeiten. Er hat eine großartige Karriere hinter sich. Zu Beginn im Team mit dem Powerhouse Jim Neidhart grandios. Die beiden passten zusammen wie die Faust aufs Auge. Später als Einzelwrestler und Top Star der Liga das absolute Gesamtpaket. Lieferte sowohl im Tag Team als auch später im Singles Bereich unzählige zeitlose Klassiker die man sich immer wieder ansehen kann und nie langweilig werden. Im Bereich Micwork ebenfalls jemand der mit den besten mithalten konnte. Einer der absolut größten aller Zeiten. "The Best There Is, The Best There Was And The Best There Ever Will Be"."
Rating: 10.0
Sentiment: 0.74
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TomasCunhawrote on 24.08.2019:[10.0] "Even though he wasn't very good on the mic (with the exception of his heel promos in 97), there has never been an in-ring storyteller like Bret Hart. Take his feud with Owen as an example, it had everything to fail. Owen was the younger brother "in the shadow" of his older brother. Had it been someone else in Bret's role, the fans could've easily sided with Owen. But it didn't happen, cause Bret knew how to tell a story in that ring like very few people EVER in the history of wrestling. Plus, he had a unique look and was one of the greatest technical wrestlers ever, with realistic selling and an endless list of really good (and even all time classic) matches. Truly one of the greatest wrestlers I've ever seen do it."
Rating: 10.0
Sentiment: 0.28809523809523807
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MuchoMundowrote on 17.08.2019:[10.0] "A crossover star and Canadian icon, truly. Still synonymous with other Canadian sports heroes despite the facet that wrestling had been looked at increasingly derisively and cartoonishly by the mainstream since his heyday. No matter how good Kenny Omega, Sami Zayn, Kevin Owens, (and yes, they are so so good) or other Canadians are or become, they will never reach the same iconic status as Bret; yes, the times are different, but he was also pivotal in making Canada a wrestling player on the world stage, and somehow, he's still underrated. It's easy to chalk him up as a bitter vet now, but I'd be bitter too if even a quarter of the things that happened to him happened to me. Bret provided the high workrate and athletic performances to North America that much of the wrestling fanbase clamors for today, and he deserves to be mentioned in the top tier of wrestling stars for his innovation, ability, and influence, along with becoming a cultural and sporting icon in his home country and making Canada a bonafide wrestling market."
Rating: 10.0
Sentiment: 0.23708333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[10.0] "What more can really be said? The way he threw punches is forever burned in my brain -- amazing looking. Innovative, crisp, passionate... an inspiration to so many."
Rating: 10.0
Sentiment: 0.35714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheGoat1255wrote on 13.05.2019:[10.0] "Bret Hart should be on the top of any serious 'greatest of' list.  One of the most gifted, versatile and dedicated workers ever.  A master of ring psychology, Bret could make any match feel special.  His matches against Steve Austin, Owen, and Bulldog are works of art.  Bret's peak occurred during the 90's wrestling recession, which means he might be slightly overlooked, yet his impact and influence are unquestioned."
Rating: 10.0
Sentiment: 0.3367346938775511
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: AJStylopzwrote on 10.05.2019:[10.0] "He is one of the best wrestler of all time. Whether you like it or not this man could do it all. One of the technicians, sellers, brawlers, he had a really unique intensity in the ring. Definetely WWF fucked up when they let this man go away because they chose to give a lazy Michaels on that time the title. Bret is the man!"
Rating: 10.0
Sentiment: 0.115625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: zephyrwrote on 16.03.2019:[10.0] "Bret Hart is a classic example of someone who pushed mainstream wrestling into a completely new direction with his style. A true innovator and amazing performer."
Rating: 10.0
Sentiment: 0.31325757575757573
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wynnebagwrote on 19.12.2018:[10.0] "Still the best there ever will be!  Bret Hart made wrestling feel real even when most people knew it was just a scripted show. Watching his many memorable feuds and matches cement him as the best or among the best to ever enter the squared circle. Above all else, Bret is the best in ring story teller in the business.  He was also the best at putting guys over yet making them still popular because of it. Watch his famous match with 1-2-3 Kid for an excellent example of this.  Also, Bret is almost solely (indirectly) responsible for ushering the modern pro wrestling business. The Montreal Screwjob was upsetting, yet led to a industry wide change in the way PW is done. It's almost impossible to overestimate Bret's value in the business, and he is and remains the best there is, the best there was, and the best there ever will be."
Rating: 10.0
Sentiment: 0.5716666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Steamboat2511wrote on 05.12.2018:[10.0] "Technisch gesehen der vielleicht beste Wrestler aller Zeiten. Bret Hart steht für pure Matchqualität, der alle Gegner mindestens zu einer gewissen Qualität führen konnte. In meiner Liste der besten Wrestlingmatches taucht sein Name verdächtig häufig auf, auch im *****-Bereich. Dazu ist der Hitman durchaus charismatisch, wenn auch anders als es etwas später SCSA oder Rocky waren. Sein Mic-Work bewegte sich eigentlich durchgängig im oberen, wenn auch nicht im allerhöchsten Level. Leider hat er sich lange zu sehr über den Screwjob definiert. Gar nicht nötig für einen Wrestler, der im Ring seines gleichen sucht und deshalb in meine Top 5 gehört."
Rating: 10.0
Sentiment: 0.35714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheHitmanRuizwrote on 04.12.2018:[10.0] "Like he said, he is the best there is, the best there was and the best that ever will be, nobody was greater than him, I'm a fan of stone cold but before him it was bret, the excelence on the execution, bret was the greatest in ring worker, he tried that everyone looked good even if they weren't good"
Rating: 10.0
Sentiment: 0.6625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: RatingsMachinewrote on 11.10.2018:[9.0] "Bret was an excellent wrestler, with a flair for creating some very dramatic matches. He didn't have an outgoing personality, but there was a certain realism to the way Bret carried himself. And Bret was a good talker, sometimes a great one if given a subject that could find himself believing."
Rating: 9.0
Sentiment: 0.3307142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: thehitman613wrote on 27.05.2018:[10.0] "There wasn't anyone better than Bret Hart to carry the WWF title during 1992-1995. He was a great worker that could top any wrestler out there and put together great matches no matter the wrestling style of his opponents. Bret Hart wasn't predictable and he didn't had a routine for his matches. Every match of his was a beautiful story and he could have done a lot more for the Federation if it wasn't for their stubbornness in giving the title to poor wrestlers such as Yokozuna, Diesel or even Hogan, just because they were tall and big. Bret Hart had amazing matches during his years with the Hart Foundation, when he had incredible tag team matches, and he was also one of the best Intercontinental champions we had to date!"
Rating: 10.0
Sentiment: 0.45000000000000007
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Gauntlet84wrote on 21.04.2018:[9.0] "A great face and a great heel and an absolute legend of wrestling. He was huge in the transition away from the 80s icons of Hogan, Warrior, Piper, Roberts, etc. and helped pave the way with a new era with Michaels, Razor Ramon, Diesel, Yokozuna etc."
Rating: 9.0
Sentiment: 0.4672727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Weltmonarchwrote on 27.02.2018:[10.0] "Ich meiner persönlichen Top 10 All Time-Liste... von daher komm ich um 10 Punkte nicht drumherum. In Ring/Charisma/Promos... alles vorhanden."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: stc13wrote on 16.02.2018:[10.0] "The best there is, the best there was, and the best there ever will be?  Maybe not.  But Hart put together a body of work that few can rival.  He was an amazing in ring, and could work with workers who wrestled a wide variety of styles and put together an excellent match.  His matches were consistently clean, crisp, and varied.  His matches always told a *different* story, and the ringwork behind them was rarely predictable or rote.  His work on the mic was underrated.  While he wasn't the most charismatic talker compared to others in the era, he drove home the storyline and made you believe what he said.  His ascent from longtime tag team worker to singles wrestler to face of the WWF is paved with fantastic matches."
Rating: 10.0
Sentiment: 0.38111111111111107
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: coolserazwrote on 11.02.2018:[9.0] "One of the greatest wrestlers ever with great moves and amazing, realistic selling. He could also, much like Ric Flair, make a broomstick look good in the ring. Extremely over with the crowd because of his ability to play the babyface but he was a very good heel too. An average mic worker but cut some good promos as an anti-hero/heel. Sad end to his career but what a great career it was."
Rating: 9.0
Sentiment: 0.4251388888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Viper99wrote on 01.02.2018:[8.0] "Vorab sage ich ganz klar das Bret Hart eine Legende und einer der stärksten Puren In Ring Performer aller Zeiten war. Trotzdem kriegt er von mir nicht die Höchstpunktzahl, da ich immer ein großes Problem hatte. Dieses Problem wurde immer wieder deutlich wenn er gegen Michaels gefehdet ist. Bret Hart hat einfach nicht sehr viele Charisma und hält nicht die aller Besten Promos. Ich war schon immer der HBK Guy in dieser Rivalität! War Bret Hart der bessere Pure In Ring Worker von beiden? Wahrscheinlich. War er besser am Mic oder Charismatischer? Ganz Klares Nein! Bret Hart kannst du mit jedem in den Ring stellen und er hat ein gutes Match, aber muss er Promos halten oder mit seinem Gesicht eine Story erzählen ist er nicht besser wie Solide. Er ist eine Legende und insgesamt gesehen Gut, aber für mich Persönlich einer der Überbewertesten Wrestler aller Zeiten."
Rating: 8.0
Sentiment: 0.26785714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CHN325wrote on 01.02.2018:[9.0] "Probably the best in ring performer of all time. A technical genius who could carry anyone through a good match. Doesn't quite get the 10/10 due to his average mic work and a bit of an ego."
Rating: 9.0
Sentiment: 0.28500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Big Gunzwrote on 02.01.2018:[10.0] "One of the best ever. He was always one of my favorites all the way back to when I was a kid. Everything from his entrance to the way he wrestled was just special."
Rating: 10.0
Sentiment: 0.3392857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: st1299wrote on 07.12.2017:[1.0] "The one wrestler who I (unfortunatly) will never be able to enjoy watching. Any old Event I watch that he is on gets automatically fast forwarded to the next match. hes's good, but he really isn't the best, not even close. Owen was a 10x better competitor than Bret, I think this is pretty much public knowledge"
Rating: 1.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Dragon Fighterwrote on 24.11.2017:[10.0] "Truly deserved the nick name" THe excellence of execution ". In the ring, he is a technical machine and he is so smooth. He understands the psychology, the storytelling and how to make his opponents look better. I apprecicate that he wrestled in an era with many mediocre talents and he had to carry them to good matches. On mic, he was quite eh until 1997 when he turned heel. Definitely the best member of the Hart family. Being bitter aside, you can't deny what he contributed to the business. And the matches with owen at mania 10 and austin at mania 13 are still 2 of 5 best wwe matches in my opinion."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ianlapierrewrote on 04.11.2017:[10.0] "Bret Hart is arguably the greatest wrestler of all time. I believe his later career work to be vastly underrated. He was at his very prime at the time of the Screwjob. He still had a good 5 or 6 years left in the tank when he defected to WCW. His career came to screeching halt when Goldberg kicked him in the head. Hitman as a Canadian hero heel was Hitman at his best. And he was every bit as good as Shawn Michaels."
Rating: 10.0
Sentiment: 0.44999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Jericho86wrote on 16.09.2017:[9.0] "Bret Hart is one of the greatest of all time. Not only he had great technique, but he was a great storyteller and his ability to tell a story with his psychology made him a legend, and also he was an innovator. He invented a lot a moves, he invented the Ladder Match, he always tried to be different. Maybe his mic skill wasn't perfect but in time is improved. He was a very good seller too. His match and his feud against Roddy Piper, Owen Hart, Mr. Perfect, Shawn Michaels, The British Bulldog, Steve Austin are a must see."
Rating: 9.0
Sentiment: 0.6122222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Blood Pumpwrote on 29.03.2017:[10.0] "Very much on the line between a 10 and a 9. Bret was capable of carrying just about anyone to a good match. Hell he carried a very out of it British Bulldog to a classic, and its that ability that makes him one of the best. He might be a bit more 'boring' then Shawn Michaels but he knew how to make a match feel more legitimate and made up for his lack of mic ability with his sheer skills in the ring. His biggest issues lie outside of the ring. He holds grudges like bad judges and could be argued as a precursor to Punk as far as his attitude is concerned. Hell if we're gonna compare they were both screwed by Vince in some way. In any event putting aside past drama Bret Hart is worth the weight his catchphrase holds."
Rating: 10.0
Sentiment: 0.12354166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Titansrevengerwrote on 26.02.2017:[9.0] "Bret Hart is easily the templet of a complete wrestler. He had it all, the look, the mic work and could deliver in the ring. Now his look is by no means comparable to lets say the Rock or Triple H, but it was solid. I also think his mic work has always been unerated, he was a promo man of sound quality. I think it was his understatedness that makes people think he wasn't the greatest talker. I think he knew how to talk well and delivered them with punctuation. The greatest quality that Hart had was his in ring capabilities. I think he could match up well with almost anybody and give a great performance. He enhanced other wrestlers performances, without overselling or overdoing it. His methodology was simple and effective, if not obvious, he was telling a wrestling story. The wrestling story is sold inside the wrestling ring, nothing more and nothing less. Bret Hart was pure and simple a wreslters wrestler."
Rating: 9.0
Sentiment: 0.31706349206349205
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hitman84wrote on 20.02.2017:[10.0] "Mein Lieblingswrestler bis heute. Kenne bis heute keinen der sich so kontrolliert und elegant im Ring bewegt wie er. Das die WWE auch immer wieder auf gute Techniker als Champions setzt(HBK, Rey, Edge, Jeff Hardy, Kurt Angle) ist in erster Linie sein Verdienst. Auch seine Arbeit am Microfon finde ich bei weitem nicht so schlecht wie oft behauptet wird. Ganz im Gegenteil. ŽŽThe best there is, the best there was and the best there ever will be. Absolutely! ``"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Coltwrote on 05.02.2017:[8.0] "Der Hitman war neben Shawn Michaels der Star der New Generation-Ära! Kein anderer Wrestler dieser Zeit prägte den Begriff des "Fighting Champion" so wie Bret Hart. Als Anführer der Hart Foundation zeigte er zudem, dass er auch die Rolle des Heel gut beherrscht - übrigens zu Beginn der Attitude-Ära. Obwohl ihm die Rolle als starker, stiller Held stets auf den Leib geschneidert war. Selbst gegen deutlich schwächere Gegner konnte er noch erstklassige Matches zeigen. Im Ring war er stets einer der besten und sowohl für technisch anspruchsvolle Matches als auch für Brawls gut. Lediglich ein Mangel an Charisma und mäßiges Micwork verhindern eine bessere Bewertung."
Rating: 8.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TylerWhitewrote on 31.01.2017:[10.0] "Einer der wahrscheinlich besten und ikonischsten Wrestler der Geschichte.  Im Ring war er seiner Zeit richtig krass voraus und ist einer der besten Techniker aller Zeiten.  Am Mic war er okay, wobei das Micwork definitiv seine schwäche ist.  Allerdings ist er unglaublich charismatisch und war verdient mitte der 90er das Topface der WWE und das nicht nur weil er zu der Zeit nicht die größte Konkurrenz hatte. Einer der größten Wrestling-Legenden. 10/10."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: NastyYaffawrote on 31.01.2017:[10.0] "Truly the "Excellence of Execution" inside that squared circle - everything he did, he did to perfection. His run in the WWF was great, and he had some good stuff in WCW too. One of the greatest wrestlers of all-time."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JEK 1991wrote on 27.01.2017:[10.0] "One of the best wrestlers in the world. And the best Canadian wrestler ever. He was excellent in the ring. Too bad he had to go though a lot of crap in his career ex. the Montreal Screwjob and death of Owen"
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring: Würde heute nur 9 Punkte geben aber in den 90er einer der besten Technischen Wrestler in der Welt, der sogar gut Brawlen konnte dehalb 10/10 (50%) Punkte   Promos/Schauspieltalent:Klar seine größte Schwäche, aber auch nicht so schlecht wie von vielen gemacht wird. 7/10 (25%)  Charisma/Statur/Gimmick:Einfach nur Super. 10/10 (25%)  Sind dann insgesamt 9, 25 Punkte für den Hitman.   = 9 Punkte"
Rating: 9.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: styles82wrote on 10.01.2017:[10.0] "Also für mich war bret mein Held aus der Kindheit. Ich habe jedesmal mit gefiebert wenn er gekämpft hat und war traurig wenn er verloren hat. Auch im nach hinein war er der perfekte wrestler mit der besten Technik ausgestattet. Erst mit the anvil im Tag Team schon bärenstark und auch Tag Team Champ. Dann der Durchbruch als einzelwrestler mit dem IC Gürtel und dem WWF Champion Gürtel. Er hatte unglaubliche matches gegen petfect michaels austin oder auch Diesel oder dem bulldog. Dann in der wcw nicht mehr so gut eingesetzt aber auch da mit vielen Titeln und auch mit klasse matches wie zum Beispiel gegen benoit. Und auch am mic war er gut wie die Zeit mit der Heel hart Foundation zeigt. Und auch super sauber beim kämpfen da er nie einen Gegner verletzt hat. Einfach der beste den es gibt gab und geben wird."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: rjsbx11wrote on 07.01.2017:[10.0] "His skill in the ring speaks for itself. He could put on great matches with anyone, from Kevin Nash to Shawn Michaels. He could wrestle technically like no other, and he could have a dirty brawl, whatever best told the story of the match. He was also an accomplished tag wrestler. Anyone who stepped into the ring with Bret came out looking great. Contrary to popular belief, Bret had charisma in buckets. He looked like a rock star with his hair, leather jacket, shades, and his self confident swagger. He didn't have the catch phrases, but he didn't need to. The Hitman character let his wrestling ability speak for him. When it came time for him to be the bad guy, he did it perfectly. When the Hart Foundation were heels, the heat he was able to get was immense. He went from being the number one good guy to the number one bad guy, not something everyone could have done. He was the reliable go to guy for Vince post Hogan pre Austin whenever his experiments failed. He may not have been as big as either of the above but he and Shawn really kept company afloat and it gets understated sometimes. Bret Hart was truly excellence of execution."
Rating: 10.0
Sentiment: 0.19312500000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hitmanfann1981wrote on 16.12.2016:[10.0] "Possibly the greatest ever when it comes right down to it. Could do anything in the ring, pulled great matches out of Jean Pierre Lafitte and Isaac Yankem. Held any championship he won with dignity and honor. Hated his career ended on so many sour notes but everything else is absolutely impeccable."
Rating: 10.0
Sentiment: 0.23668430335097002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Residentwrote on 08.11.2016:[10.0] "One of the best wrestlers of all-time. When I first starting really getting into wrestling he was my favorite. He could have a good match with anyone and was such a great technical wrestler. WCW never used him right. I heard he never wanted to leave WWE, but Vince kind of forced him out. Wish he could have stayed in WWE a few years longer. His WrestleMania match with Austin is my favorite Mania match ever and his match with Piper at Mania and with Bulldog at SummerSlam are also two of my favorite matches ever."
Rating: 10.0
Sentiment: 0.3223809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SlickDevilSWPwrote on 19.09.2016:[10.0] "His moniker says it best: The best there is, the best there was, and the best there ever will be. Will always be my favorite all-time wrestler."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ApexOfEvolutionwrote on 06.09.2016:[8.0] "Einer der besten Techniker überhaupt und für mich neben Chris Jericho der Mann, den man am ehesten mit den Intercontinental Title in Verbindung bringt. Die Fehde mit seinem Bruder Owen ist wohl eine der besten in der Geschichte der WWF/WWE. Ich gebe ihn jedoch nicht die volle Punktzahl, da er trotz pinker Klamotten immer etwas farblos wirkte und auch keine Promo wirklich langfristig in Erinnerung geblieben ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Summerslam Fan 01wrote on 27.08.2016:[7.0] "Werde nie verstehen was man an den Mann so toll finden kann.  Außer das er einer der besten im Ring hat er meiner Meinung nach nix.  Am Mic hat er mich noch nie vom Hocker gerissen, Ausstrahlung naja.  Wenn er Heut zu tage mal ein Auftritt hat wirkt er so als ob, er noch nie am Mic stand und zeigt null Charisma.  Dazu noch das ich ihn Privat langsam immer schlimmer finde, wie er über andere redet und seine äußerungen werden auch immer lächerlicher.  Er überschätzt sich selbst leider immer zu sehr in dem er denkt das er so toll im Ring war und noch nie was falsch gemacht hat, deshalb bin ich kein Fan von dem Kerl.  Aber als Wrestler 7 Punkte"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: notbobsagetwrote on 24.08.2016:[3.0] "Bret Hart only wrestled one good match his entire career. Sure, he did so a billion times, but Yokozuna wrestled the same match a billion times, too, and at least Yoko had a look. Bret couldn't cut a promo for his life, either, at least not without digging into his whiniest and most embarrassing real life qualities."
Rating: 3.0
Sentiment: 0.14444444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Luv all wrestlingwrote on 11.08.2016:[10.0] "Bret Hart is an amazing wrestler in all regards of the word, could wrestle, talk and look like a bad ass doing it, one of my all time favourites"
Rating: 10.0
Sentiment: -0.04999999999999988
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KevinZaynwrote on 16.07.2016:[4.0] "Ich weiß nicht warum, aber ich mag den Hitman überhaupt nicht. Finde ihn sehr extrem Overrated, Im Ring ist er für mich nur solide, für damalige Verhältnisse vielleicht noch gut. 6, 5/10 Am Mic nervt er mich nur 3/10 Charisma ist nicht vorhanden 2, 5/10 Ausstrahlung ist bestenfalls eine 5/10 . Ich mag den Werten Bret Hart nicht, sorry."
Rating: 4.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hartfoundationkidwrote on 29.06.2016:[10.0] "Der beste den es gibt gab und jemals geben wird an alle die in nicht leiden können die haben keine ahnung von Wrestling ich habe ihn live gesehen ganz einfach ich hoffe Bret du besiegst den Krebs den du bist der beste."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Protomanwrote on 29.06.2016:[10.0] "Easily the best wrestler that ever lived.   Some say his promos were weak, but when he went heel, it was some of his best stuff."
Rating: 10.0
Sentiment: 0.5145833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Mizzle Assault Antwrote on 11.06.2016:[9.0] "Bret is undoubtedly one of the best of all time. Well over a decade of high quality profile work, and on multiple occasions was the clear top star in the WWF, drawing a big international audience at a time when guys like HBK and even the nWo struggled to do so. He elevated many of those he worked with and too tremendous pride in working smart and safe while remaining entertaining. He is not flawless but he has far more positives than drawbacks. It's a shame he became somewhat bitter later in life due to professional setbacks and personal tragedies, but that hardly registers in the grand scheme when talking about his actual career. So many great matches and feuds, the man clearly earned all he got even in the face of politics and restrictions of the time."
Rating: 9.0
Sentiment: 0.20734432234432232
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Chosen Onewrote on 11.06.2016:[0.0] "Bret Hart never really appealed to me in the ring or on the mic. Not only is he not that good in the ring but he is a total douche bag in real life. He is always criticizing wrestlers, WWE, and more recently Seth Rollins. Bret really should be more respectful to alot of people because they could probably kill him. Overall horrible wrestler. Oh and yes, Bret Screwed Bret."
Rating: 0.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Sick Lebowskiwrote on 31.05.2016:[10.0] "Mein All Time-Favourite. Egal ob bei der Hart Foundation mit Neidhart oder seine spätere Singles-Karriere, ich fand ihn immer sehr gut. Viele halten ihn für uncharismatisch, aber auch da finde ich ihn zumindest stark in Ordnung, er hat seine Rolle als Canadian Hero immer sehr gut verkörpert. Im Ring für mich einer der Besten, wenn nicht sogar der Allerbeste. Daumen ganz dick nach oben."
Rating: 10.0
Sentiment: -0.4571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wrestlinglexikonwrote on 23.05.2016:[9.0] "Für die Zeit in der er aktiv war ein Garant für hervorragend Kämpfe. Er konnte aus so ziemlich jedem was brauchbares herausholen und war dabei in der Ausführung einzigartig sauber. Ein gimmick hatte er ja im eigentlichen Sinne nicht-Hart war Hart. Und das reichte vollends. Viele unvergessene, lange Fehden gegen etliche Größen im Wrestling machen Bret Hart zu einem sehr guten Gesamtpacket. Allerdings fande ich ihn am mic doch etwas schwach-bei weitem noch im grünen Bereich aber man muss da schon Abstriche machen. Gegen Ende der 90er hat ihn dann die Zeit eingeholt und er wirkte wie ein Relikt ( in der WCW). Trotzdem gebe ich für viele unvergessene Momente und Ringschlachten 9 Punkte. :)"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Alex Maedawrote on 23.05.2016:"Man kann ihm nur wünschen, dass er den Krebs besiegt. Ich habe ihn weder als Wrestler noch als Person gemocht, jedoch wünscht man niemanden solche Krankheiten."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: EGeraldhuebnerwrote on 06.05.2016:"Ups, jetzt bin ich schon so viele Jahre hier, habe schon zu allen möglichen Gegnern, Storylines, Fehden bzw. Verwandten des "Hitman" etwas geschrieben und in der ganzen Zeit ausgerechnet Bret Hart vergessen. Schande über mich. ^^ Naja, egal, - gebe ich ihm halt Eintrag Nr. 100, passt auch zu ihm (den wollte ich mir zwar für jemand ganz schlechten aufheben, nun bekommt ihn dafür eben jemand sehr gutes). Natürlich "the best there is, the best there was and the best there ever will be" ... abgesehen vom Montreal Screwjob ... in seinen über 2 Jahrzehnten im Ring selber nie einen anderen Wrestler verletzt zu haben, dabei fast konstant überragende Matches abgeliefert sowie die Massen begeistert zu haben, spricht bereits für sich. Was ihm in seiner Karriere passiert ist, war eines der miesesten Dinge, die in diesem Business überhaupt möglich sind. Und die Umstände, wie er sie beenden mußte, tragisch. Einzig der Privatperson halte ich vor, das er die Zeichen seiner Zeit einfach nicht erkennen wollte. Mit anderen Worten, wäre es nur nach ihm gegangen, hätte Wrestling sich nicht weiter entwickelt. Ich idealisiere ihn auch nicht so dermaßen, um zu behaupten, er beging keine Fehler (denn dann wäre er ja kein Mensch ... und das ist er, was ihn nebenbei trotzdem sympathisch macht). Vor allem, stimme ich ihm nicht in allen seinen Ansichten zu, denn er sieht vieles leider zu einseitig. Bret Hart hat schon vieles richtig gemacht und für manches was nun einmal geschehen ist konnte er auch nichts. Es war sicher nicht so toll, wie sich alles entwickelt hat. Aber als Fazit der Geschichte sehe ich 50 / 50 % (Profit, Verlust ... und zwar, für alle Beteiligten bzw. uns als Fans)."
Rating: No rating found
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: blackmileswrote on 02.05.2016:[10.0] "Der Hitman war seiner Zeit der Beste. Als mitte der Neunziger die WWE auf einem Tiefpunkt war, gab es mit ihm einer der wenigen Lichtblicke. Schade das dieser dämliche Screwjob passiert ist. Eine wahre Legende und das war mMn der erste der WWF der es wirklich verdient hatte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MAGICIANwrote on 24.04.2016:[10.0] "Bret Hart gehört zu meinen absoluten Lieblingswrestlern und war auch einer der besten, die es jemals gegeben hat. Seiner Zeit war er im Ring weit voraus und seine sehr vielversprechende WWE Karriere musste leider durch den dämlichen Screwjob beendet werden. Diese wäre ohne den Screwjob nämlich noch vermutlich ein knappes Jahrzehnt weitergegangen, da Goldberg ihn so frühestens erst 2003 die Karriere kosten könnte. Bret Hart lieferte eine Menge legendärer Matches für die WWE ab, in der WCW wurde er dann verheizt. Seine Technik ist gar göttlich, allgemein im Ring ein wahrer Gott (10/10), am Mic ebenfalls sehr gut (9/10), Hart war dazu eine Charismabombe (10/10) und eine auch eine sehr sehr gute Ausstrahlung (9, 5/10). Insgesamt kommt Bret Hart bei mir damit auf 9, 63 von 10 Punkten - göttlich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ichi the killerwrote on 20.03.2016:[10.0] "What else than a 10 out of 10 for "the excellence of execution" from his stampede matches to his late WCW work, especially his tribute match with Chris Benoit were gold. His legacy is established and he is on par with Lou Thesz and Verne Gagne. My only regret is that he never became a promoter or trainer. Imagine what a Bret Hart wrestling academy could produce !"
Rating: 10.0
Sentiment: -0.09999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TrevPuroFanwrote on 26.02.2016:[10.0] "One of the all time greats and a all time favorite of mine. He had so many classics throughout his career with the likes of Shawn Michaels, Steve Austin, Chris Benoit, even with his very own brother Owen, etc. I'd agree that his mic work was meh, but his ring work made up for it"
Rating: 10.0
Sentiment: 0.5933333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheLoudMouthwrote on 17.02.2016:[4.0] "Werde jetzt vermutlich gesteinigt, aber für mich besaß Bret Hart nie Main-Event-Material. Im Ring ist er zweifelsfrei einer der besten der Welt gewesen, auch wenn ich finde, dass seine Matches häufig nach Schema F abliefen. Am Mic war er für mich keinen Schuss Pulver wert und besonders charismatisch fand ich ihn auch nicht. Empfand ihn fast durchweg als sehr eintönig und langweilig, dass ich hier nur maximal vier Punkte geben kann. Sorry, Hitman!"
Rating: 4.0
Sentiment: -0.2125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: e1mawrote on 08.02.2016:[10.0] "Da kann man nur 10 Punkte geben. Einer der wohl besten Wrestler aller Zeiten, egal ob als Face oder Heel. Toller Worker und ein Mann der eine gesamte Generation geprägt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Aceonwrote on 23.01.2016:[6.0] "Technisch sicherlich hochgradig. Als Wrestlingcharakter konnte ich ihm jedoch nie etwas abgewinnen und empfand ihn immer als sehr, sehr langweilig. Einfach eine Sache des Geschmacks, den er bei mir leider nie traf."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Oddark123wrote on 06.01.2016:[9.0] "Bret the Hitman Hart was a talent of wonder. A part of a prestigious family he had the look to be a star and then he went and became a star. If anything perhaps his regular career ended on a down note. But that doesn't take away all the wonders he did along the way. In his current state Bret's appearances and limited in-ring time are a nice attraction to man who really should have been able to enjoy such a spot for years. I respect everything the Hitman has given the wrestling business. He has an excellent legacy."
Rating: 9.0
Sentiment: 0.2473015873015873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Squared Circlewrote on 27.10.2015:[10.0] "As good as it gets.  Great Tag Wrestler in the Hart Foundation, only to exceed this in his singles career.  Fantastic Intercontinental champ, with a great ring entry.  Solid with the mic and outstanding on the mat.  Good enough to carry the ball after Hogan, without being totally consumed in the shadow of Hulkamania.  My only regret is that he joined the NWO just as Ken Shamrock was coming into prominence.  The did a match on Raw that was one of the best examples of mat wrestling you'll ever see.  Those two could have toured the country in front of packed houses for years.  All in all, an unquestionable 10"
Rating: 10.0
Sentiment: 0.3591715976331361
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Der Hitman ist einfach eine Legende und gehört zu dem Kreis der Meister. Ich fand die Rivalität mit Vince Mc Mahon gut, die 2010 nochmal aufgerollt wurde."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Cojotewrote on 13.10.2015:[10.0] "A great technician wrestler, one of the best ever. The best there is, the best there was, the best there ever will be. One of the two WWE wrestlers That have two 5 star matches (the Other is HBK). His rivalry whit Shawn Michaels definied the 90s WWE. His matches with Stone Cold Steve Austin help to Build the Legend of Attitude Era Icon, including WrestleMania XIII. The man That can be Mr. SummeSlam. His style are in the best Today's wrestlers. One of my five favorite wrestlers ever with Sting, Eddie Guerrero, CM Punk and Bryan Danielson: a dream team, that never will happen, to Survivor Series. The best wrestler that I see in a ring or wrestling tv show. Ever remembered His matches versus Roddy Pipper and The British Bulldog for the Intercontinental Championship and His match versus His brothers Owen in SummerSlam 1994. His wrestling psychology is the best in wrestling history, making his matches likes real fights. Thanks for all this years and for your extraordinary career, Bret "The Hitman" Hart."
Rating: 10.0
Sentiment: 0.5538888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: FloWrwrote on 16.09.2015:[8.0] "Technisch einer der Besten aller Zeiten. Unzählige erstklassige Matches und vllt die saubersten Moveausführungen von allen.  Charisma & Micwork durchaus vorhanden, allerdings nicht auf dem selben Level, wie seine Ringleistung, was die Gesamtwertung etwas runter drückt. Leider absolut unwürdiges Karriereende, was in Verbindung mit diversen Schicksalsschlägen leider zu der verbitterten Person führte, die er heute ist. In der WCW, trotz einiger Titelgewinne, völlig deplaziert, da man seinen Charakter nicht zu nutzen wusste. Zudem stand er sich in der WWF durch sein teilweise etwas wehleidiges Wesen etwas selbst im Wege. Trotz allem ein hervorragender Wrestler. Für sein Gesamtpaket gibts 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Seffy Dwrote on 16.09.2015:[10.0] "The best there is, the best there was, and the best there ever will be!  When I first saw Bret Hart I was barely two years old.  My mom has been a wrestling fan for a long time and introduced me to it.  I loved seeing Piper, Hogan, Andre, Rude, Roberts-- But when I saw the Hitman, I was hooked.  That was when I knew I wanted to see more, and I've been an avid fan ever since!"
Rating: 10.0
Sentiment: 0.4147727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Excellence of Executionwrote on 24.08.2015:[10.0] "Auch wenn ich mittlerweile eine differenziertere Sichtweise auf Bret Hart habe als noch vor ein paar Jahren (insbesondere auf ihn als Person und seine Rolle in Montreal), so stehen diese 10 Punkte wie in Stein gemeißelt. Dass es gar nicht mal so wenige gibt, die das nicht nachvollziehen können, kann ich verstehen. Allerdings halte ich die Vorwürfe, mit denen das begründet wird, oftmals für arg überspitzt. Insbesondere wenn es heißt, dass Bret ja gar kein so toller Techniker gewesen wäre und wenig Ausstrahlung gehabt hätte. BULLSHIT! Bret war (auch nach heutigem Ermessen) einer der besten Techniker, die jemals einen Ring betreten haben. Wenn man den Terminus "Technik" darauf reduziert, wie vielseitig und akrobatisch anspruchsvoll das Moveset eines Wrestlers ist, dann gibt/gab es nicht wenige, die in der Hinsicht klar besser sind/waren. Aber wenn man zu "Technik" hinzuzieht, wie sauber, glaubwürdig und sicher Moves ausgeführt werden und dann noch Ringpsychologie und Story-Telling im Ring beachtet, dann ist Bret Harts Platz an der Sonne nicht ernsthaft zu bestreiten. Und was seinen angeblichen Mangel an Ausstrahlung angeht - hallo! Was war denn bitte das Face Gimmick von Hart? Er hatte keins! Er war einfach nur ein Wrestler - ein Rolle, die in der WWF überwiegend Jobbern vorbehalten war. Dass Hart sich dennoch und trotz diverser Steine im Weg dauerhaft im Main Event etablierte, wäre ohne eine gehörige Portion Ausstrahlung undenkbar gewesen. Oder soll ich glauben, dass ein Vince McMahon bereit war, mehr Kohle hinzulegen als er eigentlich hatte, um jemanden zu halten, der kaum oder wenig Wirkung erzielte? Bret Hart ist für mich DER WWF/WCW Wrestler, bei dem ich mich auch heute noch zurücklehnen kann und es mir nur allzu leicht gemacht wird, völlig auszublenden, dass das alles nur Show ist. Dass Hart es trotz seines auf Realismus ausgelegten Stils und dutzender Main Events geschafft hat, niemals jemanden zu verletzen, zeigt seine technische Klasse."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kevin434wrote on 23.08.2015:[9.0] "Leider muss ich einen Punkt abziehen da in der WWF mic work doch wichtig ist, trotzdem ist er vom wrestlerischen einer der besten aller Zeiten, wahnsinns techniker und jedes Match ist einfach nur brilliant und glänzt nur so vom storytelling. Er ist wirklich the best there was, the best there is and the best there ever will be."
Rating: 9.0
Sentiment: 0.975
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: PWCwrote on 20.06.2015:[7.0] "I never really got accustomed to watching this guy wrestling given I was infant when Bret Hart was in his prime. I say a good solid 7 rating justifies him for someone is relatively new to wrestling like me. It's pretty weird how there is a popular internet meme that exists where Bret Hart rates everything a 4 out of 10. 4 out of 10 everything."
Rating: 7.0
Sentiment: 0.1551948051948052
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Zedwrote on 20.05.2015:[8.0] "Technisch gesehen kann man dem Hitman kein Vorwurf machen. Seine Matches waren immer Sauber und er hat nie einen Gegner ernsthaft verletzt. Seine Fehden mit Bruder Owen oder Dem SummSlam Match gegen seinen Schwager sind auch heute noch Zeitlose Klassiker, ebenso wie viele anderer denkwürdige Kämpfe , z. b. gegen Austin, HBK oder Benoit. Wieso nur 8 Punkte:Er war mir immer schon irgendwie zu verbissen. Seine ernste Mine fand ich immer etwas störend. Außerdem zerrte er nach 1997 zu sehr von den Geschehnissen bei den Survivor Series, und hat das wohl bis heute nie verziehen, auch wenn er es nicht zugibt. Irgendwann sollte man damit abschließen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CAIIIAwrote on 20.04.2015:[10.0] "Der Beste seiner Zeit! Durfte in den Staaten auch nach seinem Comeback 2010 nicht die ganz große Wärtschätzung durch die WWE genießen, wie ein gewisser Shawn Michaels z. B. , da er wohl die "falsche" Nationalität hat (wenn man davon ausgeht, dass ansonsten seit 2010 sämtliche Streitigkeiten ausgeräumt waren). Dabei hätte er soviel mehr verdient. Das absolute Zugpferd in den 90ern für Vince um die Massen zu begeistern. Technisch und charakterlich top, professionell und demütig dem Wrestlingbusiness gegenüber, loyal und fanfreundlich... durch und durch ein Vorbild als Wrestler und Mensch. Immer das Beste aus seinen Gegnern rausgeholt. Könnte man ewig weiter aufzählen. Im Pausenhof bei fast allen jungs immer die absolute Nr 1 gewesen (den arrogannten, egoistischen Shawn Michaels kannte die hälfte nicht mal). Auch sein aktives, ungescriptetes Ende in der WWF war eine einmalige Dramaturgie. Am wichtigsten aber: bis zu seinem Abschied der technisch beste Wrestler in der WWF! Legendär!"
Rating: 10.0
Sentiment: 0.30916666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BigBarschDeluxewrote on 25.03.2015:[8.0] "Anfang bis Mitte der 90er war er zusammen mit Shawn Michaels ganz klar der beste. Sein mittelmäßiges Micwork und seinen fehlenden Willen (oder seine fehlende Fähigkeit), sich mit dem Business zu verändern, muss man aber ganz klar als Schwächen auslegen"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: pfuschiwrote on 07.03.2015:[8.0] "Bret surely was one of the very best on the ring ground and one of the most intense and believable wwe stars.  very view wrestlers do have so much great matches on their list. Wembley 92 and his matches against Austin might be the best he has done.  For a long time the mic wasn't Brets best friend and he was never a friend of the top rope which limited his matches in some way."
Rating: 8.0
Sentiment: 0.5065476190476191
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Valiuswrote on 25.02.2015:[7.0] "Im Ring natürlich top, aber mir fehlte bei ihm immer das gewisse etwas an Charisma.  Auch hat ihm IMO sein WCW-Run sehr geschadet."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: austin1987wrote on 03.02.2015:[10.0] "War einer der besten Wrestler, konnte mit fast jedem ein gutes Match zeigen, hatte eine gute Mischung aus "Technik Wrestling" und Brawler. Konnte die Moves die er einstecken musste verdammt realistisch verkaufen.  War auch als Heel überzeugend und hatte generell ein gutes Micwork."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: bigdaddy1wrote on 20.01.2015:[8.0] "Good in the ring and very popular - great story lines.  Mic skills were suspect, but workable. and had a great catch line."
Rating: 8.0
Sentiment: 0.77
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Matzinhowrote on 17.01.2015:[8.0] "Für US-Wrestling-Verhältnisse war Hart Ende der 80er und Anfang der 90er Weltklasse, im Vergleich zu seinen japanischen Kollegen aus der Zeit für mich aber nur überdurchschnittlich. Bezeichnend sein enttäuschendes Match gegen Misawa. Hart bleibt mir in Erinnerung als überragender Tag Team-Wrestler und als bemühter WWE Heavyweight Champion, der gepushed und gepushed wurde, aber einfach das falsche Gesicht zur falschen Zeit war. Sein einziger wirklich großer Moment war in meinen Augen das Match gegen Austin mit dem double turn, in dem der Austin-Charakter endgültig gezündet ist und die WWE in der Folge in ungekannte wirtschaftliche Sphären geführt hat. Hart wurde bekanntlich acht Monate später abgesägt und hatte drei in meinen Augen enttäuschende Jahre in der WCW, bevor seine Karriere auf noch enttäuschendere Art und Weise endete. Klar - in der WWE-Historie wird Hart heute als Überwrestler und großartiger, charismatischer Champion verkauft, Fakt ist aber, dass er ähnlich Shawn Michaels kein großer Draw war und in meinen Augen kein Aushängeschild für die WWF in der heißen Phase des "Kriegs" mit der WCW gewesen wäre."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Y2J316wrote on 28.11.2014:[9.0] "The Best There is, the Best There was, the Best There ever will be. Na ja zwar nicht meine meinung aber trotzdem einer der Besten aller Zeiten. Top In-Ring skills und auch am mic Super. Schade das Goldberg in an den Kopf getreten hat und seine Karriere somit vorbei war. Der Screwjob ist da auch noch in guter Errinerung."
Rating: 9.0
Sentiment: 0.7666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Phenomenal91wrote on 23.07.2014:[10.0] "Probably the best wrestler of all time. He had everything, and a whole lot more. In his prime, he was untouchable. It's a tragedy his career was ended so unceremoniously. I still think he had so much more to show the wrestling world. One of my favorite wrestlers ever."
Rating: 10.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: DanielBryan1986wrote on 28.06.2014:[10.0] "Bret Hart war irgendwo wie Sting und Shawn Michaels seiner Zeit voraus. Ich denke Montreal sollte nach fast 11Jahren kein Thema mehr spielen. Die haben sich 2006 ausgesprochen sonst wäre er nie in der HOF oder die grosse DVD wäre kein Hit geworden. Bret Hart macht sich die Legende selber kaputt. Beste Fehde war für mich gegen seinen Eigenen Bruder. Wegen den Nachwehen von Montreal gebe ich eine 9. Schade dafür gab ich Bret Keine 10. Das war meine Bewertung 2008. 2010 kam aber vieles anders. Nun bin ich froh Bret die 10Punkte geben zu können."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ClassicWrestlingFanwrote on 20.05.2014:[4.0] "Ich war nie ein besonders großer Fan von Bret Hart. Als Interc. Champion hat er mir in der WWE gegen Pipper und Co. noch recht gut gefallen, obwohl ich ihn - bis auf in einigen Matches - auch technisch nie so gut fand, wie er von vielen gelobt wurde (keine Sprünge vom Top-Rope etc. ). Aber später als Hogan-Nachfolger in der WWE hat er mir gar nicht gefallen, und als er denn in die WCW gewechselt ist noch weniger. Da waren seine besten Zeiten schon vorbei, und seine besten Zeiten waren für mich bis 1992, als er Interc. Champ war."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: superpuroresuwrote on 12.05.2014:[10.0] "The greatest worker to come out of Canada , his timing , selling , execution of moves and psychology was second to none at his peak."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: wwefan98wrote on 11.05.2014:[10.0] "Ich glaube zu Bret hart muss man nicht viel sagehn. Ganz klar einer der besten Wresteler die es jemals gab."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: zackwoowoowooryderwrote on 06.05.2014:[10.0] "Einfach nur eine Legende! Der Grund für viele in den 90ern Wrestling zugucken. Technisch der Beste den es gab, gibt und jemals geben wird. Für viele aktuelle Wrestler das größte und beste Vorbild."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: yanuswrote on 23.04.2014:[10.0] "Bret is one of the best in-ring performers in the USA of all-time. Unfortunately he wrestled in the wwf at a time when big muscles were more important than in-ring work, so he only started getting recognition from the masses at the tail-end of his career. Bret was not only a great technician, but also might be the guy with the best (in-ring) timing in the history of the business. Of course he also had plenty of weaknesses, like his promo skills for ex. , but as the best Us worker of the 90's he deserves a 10."
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CrIppIL3RTIRiXwrote on 17.04.2014:[8.0] "Der Funke ist nie wirklich übergesprungen, er hatte schon was drauf aber das Charisma hat halt einfach gefehlt.  8 Punkte für einer der besten Wrestler der 90er."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BangBangwrote on 17.04.2014:[10.0] "DER Held meiner Kindheit und auch heute sehe ich mir seine Matches immer wieder gerne an. Er wird immer "The best there is, the best there was and the best there ever will be" sein!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: deadfru5wrote on 26.03.2014:[10.0] "Im Ring wohl einer der besten aller Zeiten. Unglaub spaßig im bei der Arbeit zuzusehen. Klar, am Mic gabs bessere, dennoch: Alles außer der 10 wäre hier unangebracht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Undertalkerwrote on 25.03.2014:[10.0] "Seine wrestlerischen Fähigkeiten gehören zu den besten aller Zeiten. Er ging sehr taktisch vor und daher ergab alles, was er im Ring anstellte, Sinn. Er hatte aber auch eine Schwäche: Ihm fehlte es etwas an Tempo und die damit verbundenen Überrachungseffekte während eines Matches kamen bei ihm zu kurz. Manchen Fans (zumeist jüngeren), die zu seiner Zeit noch kein Wrestling guckten, fällt es häufig schwer ihm Charisma zuzuschreiben und können nicht nachvollziehen, was so toll an ihm sein soll. Der Hitman hatte aber eine ganze Menge Charisma! Allein wenn seine Musik ertönte und er in die Halle einzog, kam eine Art Gänsehaut-Feeling auf und man hatte das Gefühl, Zeuge von etwas Besonderem zu sein. Ich kann das nicht näher erklären, aber vielleicht muss man ihn tatsächlich zu seiner aktiven Zeit gesehen haben, um das nachvollziehen zu können?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: New Strategywrote on 09.03.2014:[10.0] "Bret Hart hat mich 1991 zum Wrestling gebracht und von da an begeistert Daher zählt der Hitman zu meinem All-Time-Favorit.  "The best there is, the best there was and the best there ever will be" vereinigt Charisma, Talent und Fähigkeiten am Mikrofon wie kein zweiter. Ein exzellenter Techniker, der mit seiner großartigen Karriere und vielen großartigen Kämpfe für sich spricht."
Rating: 10.0
Sentiment: 0.7840909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Whaaaaaaaaaaatwrote on 07.03.2014:[10.0] "Der beste Wrestler aller Zeiten....... und Held meiner Kindheit"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Foleysbabytoywrote on 26.02.2014:[10.0] "Der beste Techniker aller (? ) Zeiten. Ich kenne kein Match von ihm, indem er mich nicht überzeugen konnte. Bret brachte einen unglaublichen Realismus mit in den Ring und tat jedem Wrestler gut. Seine Fehden gegen Owen und Steve Austin zählen zu dem besten, was die WWE bis jetzt zu bieten hatte (und insgesamt gesehen hatte sie schon einiges zu bieten)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Duncan09wrote on 10.02.2014:[10.0] "Er war sicherlich der beste Wrestler aller Zeiten! Mit den für mich 2 besten Matches aller Zeiten. Summer Slam 92 gegen den British Bulldog und Wrestlemania 97 gegen Steve Austin! Hingegen seiner eigene Meinung, fand ich sein 1. Jahr in der WCW extrem interessant. Tolles, undurchsichtiges Gimmick "Sting I'm your friend! " Super Promos mit DDP und Randy Savage, toller U. S. Title run. Machte einfach spaß!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: LowJomoKiwrote on 01.02.2014:[9.0] "Für mich einer der grössten je in der WWE dagewesenen Superstars. Bei kaum jemand anderem waren In-Ring Aktionen so gut auf das Gimmick abgestimmt, als bei Bret Hart und allgemein verstand es Bret Hart so gut wie kaum jemand anderes ein "logisches" Match zu wrestlen. Die Moves waren gut aufeinander abgestimmt und erstaunlicherweise, obwohl jedes Match relativ ähnlich aufgebaut war (im Sinne von: alles wird aufgebaut in Richtung abschliessenden Sharpshooter), so schaffte es Bret Hart immer wieder mich im Ring hervorragend zu unterhalten, bsiweilen auch zu begeistern. Dazu kam, dass er ein guter Micworker war, klar gab es bessere und er war nicht so gut we Stone Cold, Foley oder Rock aber trotzdem war er stets vorne mit dabei. Bret Hart war jedenfalls in meinen Augen, nach Shawn Michaels, das beste Gesamtpaket was die Ring und Mic-Skills angeht das man in der WWE hatte... Allerdings wäre da dann noch sein Ego, das wie von einigen angesprochen leider irgendwo fern der Realität verweilte, denn an Überzeugung von sich selbst mangelt es ihm auf jeden Fall nicht... Vielleicht etwas unfair, dass ich ihm genauso viele Punkte gebe wie Rock, der deutlich beschränkter im Ring war, aber dessen Mic-Work macht das wett..."
Rating: 9.0
Sentiment: -0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: koeddylaemmlewrote on 09.01.2014:[10.0] "Bret "the Hitman" Hart was born to be a professional wrestler. He eat, slept and breathed his in-ring persona and wanted to be the hero to every child world wide representing good moral values and hard work. While Bret didn't have the charisma guys like Hogan, Austin, Flair, Rock or HBK he had more drive and technical ability than them. The fact we will never see Bret take on the likes of Kurt Angle, Daniel Bryan, CM Punk or Antonio Cesaro is a truly sad thing, much like his post-WWF career."
Rating: 10.0
Sentiment: 0.06759259259259258
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JuliTheCage87wrote on 22.12.2013:[6.0] "Tut mir leid aber er ist hier ein bisschen überbewertet. Owen war IMMER besser, zu jedem Zeitpunkt! Natürlich ein Toptechniker, jedoch wird er zu sehr gelobt. Vor allem am Mic war er, wenn es nicht in Montreal war (die Reaktionen für ihn haben alles übertönt), unterer Durchschnitt. Seine Art hat mich einfach nie angesprochen, weder als Heel, noch als Face wirklich stark."
Rating: 6.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: 8BitLegendwrote on 22.12.2013:[9.0] "Bret Hart war eine super Mischung aus Rockstar, Sportler und Drama-Queen. Der wahrscheinlich beste Allrounder, den das Business je hatte."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheUnderTakerwrote on 13.12.2013:[9.0] "Keine Frage, der beste technische Wrestler aller Zeiten. Einer der wenigen, der Wrestling anfang der 90er glaubhaft gemacht hat. Einzig sein Ego, und seine nur durchschnittlichen Mic-skills bringen das Rating auf 9."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Goldberg82wrote on 14.11.2013:[9.0] "Bret Hart & Jim Neidhart bildeten in den 80ern das Tag-Team die Hart-Foundation. Eines der besten Tag-Teams aller Zeiten. Die besondere Mischung aus Glory (Hitman) und Power (Neidhart) hat sehr gut harmoniert. Als Single-Wrestler einer der größten Intercontiental-Champion als auch ein würdiger WWE-Champion. Er war ein sehr guter Ringer, technisch fast perfekt und konnte immer das beste aus seinen Matches rausholen. Ich fand seine Matches immer etwas zu theatralisch und sehr lang atmig, daher eine 9er Bewertung. In seiner WCW-Zeit wurde er nicht richtig eingesetzt, z. B. seine Zeit als NWO-Mitglied war einfach nur schlecht umgesetzt. Hier hat sich auch gezeigt das die WCW selbst so ein Zugpferd und Topstar nicht ansatzweise so gut einsetzen konnte wie die WWF."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CLPSKYLINERwrote on 12.11.2013:[9.0] "Er gehört zu denen, die sogar mit schlechten Wrestlern gute Matches bestritt, sehr gut!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Daneraswrote on 03.11.2013:[9.0] "Ich finde ehrlich gesagt Owen besser als Bret. Bret hinkt für mich zu oft, und verhielt sich auch nicht so bombastisch wie Owen Hart. Doch Bret Hart hatte auch viel Charisma. Sharpshooter ist genial!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hells Guardianwrote on 25.10.2013:[10.0] ".... ich will eigentlich nicht zu großzügig mit 10 Punkten sein, eigentlich wollte ich sie nie vergeben, denn den perfekten Wrestler, gibt es ebendso wxenig, wie den perfekten PPV. Es ist halt eine Geschmackssache. I Iring ist er unbestritten seine 10 Punkte wert, oder kennt noch jemand einen Wrestler, der in einer vergleichbar langen und intensiven karriere niemals einem anderen Wrestler schaden zugefügt hat und trotzdem jedes Match überzeugend worken konnte? Beim drum herum möchte ich mich HighlightHEEL schon im grunde anschliessen, mit dem unterschied, dass Rock seinen Mythos selbst mit seiner return zerstört hat und Y2J im Ring Hart nicht das Wasser reichen könnte. Da es den perfekten Wrestler also nun nicht geben kann, habe ich mir 4 Kandidaten rausgesucht, denen ich aufgrund ihrer unnachamlichen Leistungen die 10 Punkte gönne (und vorraussichtlich bleibt es bei denen) und Bret, ist einer davon."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: HighlightHEELwrote on 19.09.2013:[9.0] "Technisch unbestritten einer der besten Wrestler aller Zeiten. Teil des vermutlich besten Tag Teams aller Zeiten. Was fehlt also zur Höchstwertung für den Hitman? Erstens das Micwork, bei ihm fehlt mir etwas, was viele andere große Redner (z. B. Rock, Jericho, um die besten zu nennen) haben. Er kann mich am Mikrofon nicht zu einhundert Prozent überzeugen, vielleicht weil ihm z. T. der absolute "Punch" in seinen Aussagen fehlt. Das Gimmick war in Ordnung, aber nicht absolut überragend. Und sein in vielen Interviews dargestelltes "Mr. Nice Guy"-Image nehme ich ihm auch nicht ganz ab. Im Ring will ich ihm nichts, aber auch gar nichts wegnehmen, drumherum fehlt aber für mich ein wenig was, um sich zu den Allergrößten rechnen zu können. Mir fallen auf Anhieb zwei Kanadier ein, die ich deutlich lieber gesehen habe."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: dudemanbearpigwrote on 03.09.2013:[10.0] "The best there is, the best there was, and the best there ever will be. A true legend of the business."
Rating: 10.0
Sentiment: 0.8375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: zzzorfwrote on 28.08.2013:[10.0] "When I was introduced to wrestling in the early/mid 90's it was Bret who was introduced to me as the Champion. He quickly became one of my favourites and to this day he still is one of my best of all time. Over the years I have been able to pay closer attention to his ability as my level of knowledge about wrestling increased and I have realised more just how brilliant he is between the ropes. The fact that he never injured an opponent is a testament to his greatness."
Rating: 10.0
Sentiment: 0.6466666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Cactus Foley 88wrote on 09.08.2013:[8.0] "Der Held meiner Kindheit. Ein sehr charismatischer Wrestler und großer Champion. Als Face/Heel konnte er begeistern. Das besondere an ihm war auch das er aus jedem Gegner ein ansehnliches Match herausholen konnte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Mark william Calawaywrote on 12.07.2013:[9.0] "Das Beste Match von Bret Hart war gegen Shawn Michaels."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sir Vida Loca IIIwrote on 09.07.2013:[7.0] "Im Ring war Bret Hart sicher einer der besten SEINER Generation. Trotzdem war er lange nicht so, gut wie vorallem er selbst es immer wieder sagt. Technisch gesehen musste er sich zwar nicht verstecken, aber an einen z. B: Chris Benoit reicht er da nicht ganz drann. Am Mic war er nicht mehr als durchschnitt, was aber an seinem Gimmick gelegen hat. Mehr als 7 Punkte kann ich persönlich da leider nicht geben, diese hat er sich aber mehr als verdient, vorallem da ich zwischen der 7 und 8 schwanke."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kenshin Uesugiwrote on 03.07.2013:[9.0] "Jede Generation von Wrestlingfans hat seine Helden, Bret Hart ist so einer. Fast alle männliche Fans in Deutschland die wohl heute ende zwanzig und oder über dreißig sind haben in ihm ihren Helden. Was macht ihn so besonders? Ja er kann toll wrestlen, kann der gute Dean Malenko aber auch. Er ist ehrlich, sind andere Wrestler nun auch. Ist es sein Gimick und seine Darbietung? Das glaube ich nicht. Ich weiß es nicht und während mein Onkel mein kindlich Begeisterung für Hulk Hogan nie teilen konnte, sprang ich nicht durch die Decke wenn Hart zu sehen war, im Gegensatz zu ihm. Auch ist er mir als Person unsympathisch, da ja nie Fehler begangen hat(jedenfalls glaubt er das), alles genau weiß und manchmal ziemlich viel Blödsinn erzählt. Aber das soll nicht heißen das ich ihn langweilig finde oder seine Arbeit nicht zu schätzen weiß, ganz im Gegenteil. Der Mann hat was, wirkt zwar auf mich nicht und viel seiner Lobereisung auch bei seinen Matches halte ich für übertrieben, aber seine Klasse im Allgemeinen, sein Status und Bedeutung für so viele kann ich ihm nicht absprechen."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: joshimaniawrote on 23.06.2013:[5.0] "With the exception of the Steve Austin feud a very boring and overrated wrestler. Started the five moves of doom usd a lot of rest holds striking wasn't anything special."
Rating: 5.0
Sentiment: -0.047619047619047616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: christianpecevskiwrote on 28.05.2013:[10.0] "Eine lebende Legende. Der beste Wrestler seiner Zeit meiner Meinung. Durch ihn wurde Wrestling für mich erst interessant. Seine Kämpfe waren immer schön anzuschauen. Das Wrestling hat ihm viel zu verdanken, besonders die WWE. Danke Bret"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: HooliNerdwrote on 10.04.2013:[9.0] "Die kanadische Legende. Trotz einiger Differenzen mit Vince immer gut."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Eagle Whiskeywrote on 06.03.2013:[6.0] "Natürlich ein ganz großer und eine Legende, aber ich war von seiner gesamten Performance meistens einfach nur genervt. Seine Auftritte am Mikrofone und einfach das gesamte Gimmick Bret Hart hat mich nie besonders interessiert geschweige den fasziniert. Für Ihn sprechen aber natürlich seine Erfolge und sein wrestlerisches Können."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Schlagschawrote on 20.02.2013:[10.0] "Der beste Wrestler den es je gab! Entertaiment war außerhalb des Rings begrenzt doch im Ring eine klasse für sich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Diggertakerwrote on 13.02.2013:[10.0] "The most remarkable of the most remarkable family in pro wrestling. Respected technician, submission master and very controversial. One of the best in the world."
Rating: 10.0
Sentiment: 0.7025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Cobrawrote on 14.12.2012:[9.0] "No one can deny Bret's incredible ring work. An incredible technical wrestler I looked up to growing up. I find his lack of respect for some of the older wrestlers a little off putting though."
Rating: 9.0
Sentiment: 0.35583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Yoyowrote on 07.10.2012:[10.0] "By looking at his legacy, one can tell he wasn't bluffing when he said he was the best."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ritt79wrote on 19.09.2012:[10.0] "Der Beste den es gibt, gab und geben wird. Danke Bret für eine richtig geile Wrestlingzeit"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: LM Punkwrote on 30.08.2012:[10.0] "War in den 90 mein Lieblingswrestler der WWE, aber sein Run in der WCW war nicht so toll. trotzdem auch hier die volle Punktzahl weil er sein gimmik gut rüber brachte und im Ring einfach der Beste ist den es gibt, gab und geben wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hankinswrote on 11.08.2012:[10.0] "Mein Alltime-Fave! Hat in mir damals eine unglaubliche Begeisterung für Wrestling erzeugt. Ein exzellenter Techniker, der unglaublich gute Matches abgeliefert hat. Sicherlich war er am Mic nicht der Stärkste, aber das spielt in meinen Augen überhaupt keine Rolle. Das Ironman-Match gegen Shawn Michaels gehört zu den größten Matches aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Damon Strikerwrote on 08.08.2012:[7.0] "Bin mit ihm aufgewachsen und seine Fehden, gegen Lawler oder gegen Owen etwa, haben einen nachhaltigen Eindruck auf mich hinterlassen. Zählt im Ring sicher zu den Besten. Seine Heel-Phase hab ich leider nicht gesehen. Was man 1997 und dann in der WCW mit ihm anstellte, war seiner unwürdig. Trotzdem war ich nie ein wirklicher Fan von ihm. Irgendwie hat was gefehlt und es nicht "Klick" gemacht."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BretHartfanwrote on 31.07.2012:[10.0] "Exzellenter Wrestler. Charismatische Art, ansehnliche Kämpfe. Er ist Die Art von Wrestler die ich Bevorzuge als Champ, nicht diese anabolen Hühnen ala Hulk Hogan. Der Wrestler der späten 80er und vor der Attutude Ära."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: 7TheEwrote on 22.06.2012:[5.0] "Für mich nur durchschnitt, sicherlich seinerzeit und bis heute einer der besten Techniker, aber Fablos wie die Nacht und seinem Bruder im Punkt Charisma so deutlich unterlegen.  Mag ihn nicht so gerne, hat für mich nur im 60 Minute Iron Man Match und im allgemeinen mit seiner Nemesis HBK gut funktioniert.  Außerdem für mich der Hauptschuldige am Montreal Screwjob."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: animan5000wrote on 09.06.2012:[10.0] "Bret Hart the man who changed the buisness forever has to be one of the best wrestlers ever."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: kekslpetewrote on 05.04.2012:[10.0] "Einer der Besten die es gab und geben wird. Im Ring nicht ganz so stark wie sein Bruder Owen, am Mic aber ebenbürtig."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Senajwrote on 28.01.2012:[10.0] "The Best there ist, the best there was and the best there ever will be."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Manolowrote on 28.01.2012:[9.0] "Technisch sicherlich einer der besten Wrestler der US-Mainstreamligen. Obwohl der Hitman für mich eine große Ausstrahlung hat, gehörte er nie zu den Großen am Mic. Da dies für WWE und WCW aber nicht ganz unwichtig war und ist, reicht es nicht ganz zu den 10 Punkten. Immerhin aber einer der ganz wenigen Wrestler, die Mitte der 90's in der WWE ein gutes Match abliefern konnten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Johnny-Tennerwrote on 20.12.2011:[7.0] "Okay guter Techniker war er, vielleicht zur Zeit von Hogan was besonderes, aber für mich war, ist und bleibt er ein langweiliger Charakter ohne ein größeres Erkennbares Gimmick. 7 Punkte für sein In-Ring auftreten aber für mich hat der Typ wirklich 0 Ausgestrahlt und mir fehlt bei den einfach das drumherum. Auch wenn ich mir immer wieder gerne seine meisterwerke ansehe."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MaecksPiwrote on 20.11.2011:[10.0] "The Best There Is, the Best There Was, the Best There Ever Will Be !"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Bret Hart war schon ein guter Wrestler und konnte wirklich mit fast jeden ein gutes Match auf die Beine stellen, er ist eindeutig Main Event Material, er ist sehr gut im Ring war eine Kult Figur für viele Wrestling Fans und hat nie jemanden verletzt, das muss man erstmal schaffen, aber ich ziehe 1 Punkt ab da er mich doch an gewissen Stellen in seiner Karriere gelangweillt hat und ich seine zurzeitigen Auftritte in der WWE auch etwas nervig finde."
Rating: 9.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TAWPTierJustinwrote on 05.09.2011:[10.0] "I love and I've always loved Bret Hart still to this day! He's my favorite wrestler of all-time! Sure Stone Cold Steve Austin may be close to being my number 1 favorite but Bret Hart is still my favorite! He was the first I ever watched and loved! Granted, I started wrestling literally the day before the "Montreal Screwjob" happened but the Wrestling With Shadows documentary which is the greatest wrestling documentary in the world came out after that and I started to learn more about Bret and his family which made his family the first wrestling family I got to know about, learn about and love! That's why I've always had so much respect and love for everybody in the Hart family and anyone who was ever trained by the Harts like Brian Pillman, Chris Jericho etc. He will always be the best there is, the best there was and the best there ever will be and I don't think anyone will dispute that, I certainly don't! He will always be my favorite and I will always love him to death!"
Rating: 10.0
Sentiment: 0.5051242236024845
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rey2004wrote on 04.09.2011:[10.0] "Absoluter Top Superstar und auch völlig glaubwürdig!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: swaswa96wrote on 22.08.2011:[5.0] "Früher war er grandios, heute jedoch im Ring nicht mehr so gut"
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: GTS Punkwrote on 16.08.2011:[10.0] "Hart ist einer der besten Wrestler allerzeiten. Zwar ist er nicht meine Generation, dennoch finde ich ihn genial!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Play2Xwrote on 11.07.2011:[2.0] "Das einzige gute, was ich mit ihm in Zusammenhang bringe ist der Montreal Screwjob... Zwar ist Bret ein guter Techniker, aber dafür ist er verdammt uninteressant und vorallem uncharismatisch... Tut mir Leid für dich Bret, aber es gibt bessere Kanadier als dich... (Edge, Christian, Jericho, ... ) Von mir aus kannst du gerne der beste Techniker sein, aber "The Best... " ist wohl wer anders... 00"
Rating: 2.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: NHJ2102wrote on 11.07.2011:[10.0] "The Best There Is The Best There Was And The Best There Ever Will Be...."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: troppiewrote on 17.06.2011:[10.0] "Das Idol meiner Kindheit. Hat es wie kein zweiter geschafft mich mit seinem Hero Gimmik in den Bann zu ziehen. Erinnere mich noch daran an als er bei WM 10 endlich gegenüber Yokuzuna triumphieren durfte und wieder Champion war. Aus heutiger Sicht und ohne Mark-Brille kann man sagen das er ebenfalls ein sehr guter Techniker war, und neun Punkte für den Wrestler Bret Hart durchaus gerechtfertigt sind. Einen Extra-Punkt gibt es noch für die eingangs genannten Gründe"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Titanwrote on 13.05.2011:[10.0] "Bret Hart ist zweifelsohne einer der größten Entertainer, die das Wrestling-Business je gesehen hat. Seine Arbeit im Ring sucht bis heute seines Gleichen; Hart ist für mich das Paradebeispiel für einen Techniker im Ring. Hart konnte praktisch jeden Gegner auskontern und Griffe abwehren. Im Ring hat er sich immer den Allerwertigsten aufgerissen und hat auch zurecht die prestigehöchsten Titel gewonnen und die Einführung in die Hall of Fame war logische Konsequenz. Bret Hart war in meinen Augen ein Vorreiter für viele Entertainer, die nun in den Reihen der WWE sind oder mal gestanden haben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: FriarFergusonwrote on 08.05.2011:[10.0] "War in seiner großen Zeit der ultimative, der beste Face überhaupt. Ein Face, den Mann den Fans nicht aufzwingen oder als gut verkaufen musste und dem man auch Schwächen verzieh. Der Grund dafür ist schwer in Worte zu fassen, vielleicht war Hart dem Publikum einfach näher, gerade weil er nie diese unnahbare Superstar - Aura um sich hatte. Hart war immer bodenständig und sauber, glaubhaft, logisch und technisch extrem versiert im Ring, solide am Mic. Selbst als Heel war er, trotz seiner guten Anlagen zum Face, überzeugend und gut verhasst. Insgesamt ein starkes Gesamtpacket. Einziger Wermutstropfen bleiben seine jüngsten Auftritte, aber solange diese sich von jetzt an in Grenzen halten, wird am Denkmalssockel dieses Mannes nicht mehr allzu viel zu rütteln sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: KingRossiwrote on 29.03.2011:[10.0] "War einer der Besten seiner Zeit. Wenn man über Wrestling spricht, muss man den Namen Bret The Hitman Hart erwähnen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: C0nspiracywrote on 27.03.2011:[8.0] "Als ich mit Wrestling anfing war ich immer total Stolz auf Bret Hart das er keine herausforderung gescheut hat und immer Fair blieb. Er war ein Vorbild für mich. Abzüge gibts bei Micwork und Entertaiment Faktor. Wrestlerisch gibts in seiner gewichtsklasse nur wenige die Technisch mit einen HITMAN in Topform mithalten konnten."
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Butzelchenwrote on 09.03.2011:[10.0] "The best there is, the best there was and the best there ever will be! Mehr muss eigentlich nicht gesagt werden! Mein Kinderheits-Wrestling-Held. Der Montreal Screwjob war für mich einer der schlimmsten Moment in der Wrestling Geschichte. Zu Recht in der Hall of Fame!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Smi-48wrote on 18.02.2011:[10.0] "Volle Punktzahl. Bret Hart ist ein tiefschichtiger Charakter innerhalb und ausserhalb des Ringes, seine Matches über jeden Zweifel erhaben. Wer ihm mangelhaftes MicWork unterstellt dürfte das USA/Canada-Szenario anno 97 komplett verpasst haben. Die Rückkehr 2010 hat ihm in meinen Augen nicht geschadet, sondern zeugt von Größe und Verbundenheit zum Publikum, welche nach Heilung emotionaler Wunden seine Bitterkeit besiegte - damit konnte er die WCW-Kerbe um seinen unglücklichen Abgang aus dem Business auswetzen. Bret Hart ist sicherlich irgendwo auch ein Narzist, dabei aber durchaus selbstkritisch. Neben der Bürde seiner familären Tragödien steht sein Name aber auch für wirklich grandiose Matches der Neuzeit, den ersten Wrestlingboom in Deutschland und für die Lebenserhaltung einer ganz schwierigen Phase der WWF. Eine Ikone, welche in einem Atemzug mit den 90er Mainstream-Helden Hogan, Flair, Austin, Rock und Michaels genannt werden muss. Für mich persönlich sogar noch höher einzuschätzen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TaraTerrellwrote on 21.01.2011:[10.0] "Bret Hart ist wahrscheinlich der Wrestler der die meiste Leidenschaft für dieses Buisness hat. Er ist ein wunderbarer Wrestler & in jeder Hinsicht Perfekt im Ring. Bret Hart vs Shawn Michaels war das Match das mich auf das Wrestling Buisness aufmerksam machte. Dieser Mann hats einfach drauf :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: P92wrote on 04.01.2011:[10.0] "Bret Hart gebührt jeglicher Respekt. Ich sah in am 12. November in Köln wrestlen. Er konnte gegen die jungen und aufstrebenden Nexus "Rookies" überzeugen. Er hat unendlich viel Charisma, und beweist, das er trotz seines Alters und seiner überwundenen Krankheit es immer noch drauf hat. Ein 10Punkte Wrestler!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: lagunswrote on 21.12.2010:[10.0] "Wer glaubt das der Hitman nur einen Punkt weniger als 10 verdient hat, sollte sich nur mal die Kämpfe gegen Shawn Michaels um den IC-Title ansehen. Was da bei ganz normalen HouseShows geboten wurde, wäre Heutzutage mehr wert als jeder Mainevent von Wrestlemania. Bessere Lehrvideos für Wrestler gibt es nicht. Hab von Hart zwischen 88 bis 97 keinen schlechten Kampf gesehen, egal wie untalentiert seine Gegner waren. Und mehr kann ich von einem Wrestler nicht erwarten. Egal ob sein MicWork nur durchschnitt war. Seine Fähigkeiten im Ring überstrahlen alle defizite die er sonst haben möge... und diese waren auch nicht wirklich groß. Was mich am Hitman aber wohl am meisten beeindruckt, ist der Wille von ihm immer einen guten und spannenden Kampf zu präsentieren, auch wenn dies bedeutet das er auch mal einen Virgil oder Skinner als Champion eben nicht einfach so "wegjoobt" sondern auch diesen hilft ihr volles Potenzial zu zeigen und sie gut aussehen zu lassen. Und das ist für mich weitaus mehr wert als wenn der Warrior den IC- Title in unter ner Minute gewinnt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Matt4Wrestlingwrote on 19.12.2010:[10.0] "Der Beste den es gibt, gab und geben wird! Das ist irgendwo ein zweischneidiges Schwert. Viele sagen, alle seine Matches seien gleich. Wäre das nicht bei einem John Cena, Hulk Hogan und Ric Flair nicht dasselbe?  Bret Hart macht wie bei den anderen genannten Männern, das Gesamtpaket aus. Er nahm viele verschiedene Matcharten zusammen und konnte immer seine Gegner, im Gegensatz zu anderen, sicher durch Matches fühlen.  Neben seiner Match-Praxis, ist er aber auch eine Art moralisches Vorbild, wie man mit persönlichen Schmerzen umgeht (siehe Montreal Screwjob) und auch mal vergibt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: devilsoldierwrote on 10.12.2010:[10.0] "Mein Held! Ist einfach der Beste den es gab. Immer auf hohem Niveau. Edit: Hogan knows scheint sich wohl nur oberflächlich informiert zu haben. Das Bret schon Jahre vorher aus Liebe zur WWF(E) auf Gehalt verzichtet hat und ein ungeliebten Heelturn mitgemacht hat zählt da nicht. Und mit Heulsuse hat das auch nicht zu tun. Sowas nennt man Frust und Wut wenn einer den Ring zerlegt und dem Chef eine reindonnert. Heulen hab ich ihn jedenfalls nicht sehen. Aber Hogan knows gibt ja auch einem Eddy 0 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheRock 7 Champwrote on 19.11.2010:[10.0] "Bret Hart ist sehr gut im Ring als auch am Mic. Seine Fehden waren spitze und er wird für immer einer der besten Wrestler der Welt bleiben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: justusjonaswrote on 15.11.2010:[9.0] "Eigentlich kann man ihm nur die volle Punktzahl geben. Sicherlich der beste Wrestler der 90er Jahre. Leider muss ich ich ihm für seine Zeit in der WWC einen Punkt abziehen. Auch wenn er sicherlich nicht die Hauptschuld an dieser Zeit trägt. Shame on WCW. So geht man nicht mit einen Topwrestler um. Trotzdem einen Punkt abzug."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Drokzwrote on 14.11.2010:[8.0] "Ziemlich guter Techniker, aber ernsthaft, ohne das the best there is, the best there was, and the best there ever will be würden ihn sicherlich nicht so viele als besten aller Zeiten ansehen. Klar war Bret Hart gut, aber so gut wie ihn jeder macht jetzt auch nicht. Seine Matches liefen meiner Meinung nach immer gleich ab, und es gab für mich innerhalb der WWE bessere Wrestler als ihn. Chris Benoit gehört zu den besten In-Ring Storyteller aller Zeiten, HBK ist mindestens genauso gut wenn nicht noch besser als Bret Hart, und dem Taker macht in sachen Ringpsychologie auch so schnell niemand was vor. Die drei sind für mich alle besser als Bret Hart. Wie schon gesagt, stand zurecht and der Spitze damals, ist auch ein Klasse Wrestler, der jeden Kollegen respektierte und nie was wirklich schechtes über sie sag, aber in Japan gibt es mindestens 20 Wrestler die viel besser als Bret Hart sind. Ich finde es ein wenig übertrieben, ihn als besten aller Zeiten zu bezeichnen, aber das ist ja nur meine Meinung."
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Carnevalewrote on 21.10.2010:[4.0] "Komisch, schon zu früheren Zeiten fand ich ihn nie so besonders wie alle anderen. Sicher war er jedoch einer der Besten der damaligen Zeit. Aber: Seine Rückkehr zur WWE kann man ihm kaum verzeihen. Wer so sein Wort bricht, nur des Geldes wegen und das obwohl man so krank ist dass man kaum eine Aktion zeigen kann und doch wieder in der WWE sein muss - das ist einfach schwach."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: dnstoniewrote on 20.10.2010:[10.0] ""The Best There Is The Best There Was And The Best There Ever Will Be" Mehr gibt es zu seinen Fähigkeiten nicht zu sagen. Unerreichbar als Techniker. Der Montreal Screwjob hat ihn noch zusätzlich Unsterblich gemacht... und war gleichzeitig sein großer Karriere-Knick. So sehr ich die WCW auch mochte... was sie mit Bret angestellt haben war das allerletzte. Wenn man ihn schon kaum mit in die Shows einbaut, dann sollte man sich wenigstens davor hüten ihn in ein Stable zu packen. Bret hart in der nWo... das war der Lacher schlechthin. Leider hatte er nie die Gelegenheit ein 2. mal groß aufzutrumpfen."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Aesopwrote on 18.10.2010:[10.0] "Bret war ein guter Wrestler der zu überzeugen wusste, zwar finde ich Owen besser, doch auch Bret konnte mich begeistern. Bei seinem Comeback zeigte er das er es immerhin noch am Mic drauf hat und es war schön ihn wieder zu sehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Homicide187wrote on 09.10.2010:[10.0] "Durch Bret bin ich zum Wrestling gekommen. Ich habe alles von ihm verschlungen und im Nachhinein noch viele seiner alten Matches gesehen und war immer wieder begeistert. Einer meiner All Time Favs."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Ramwrote on 29.09.2010:[8.0] "Tja "The best there is the best there was the best there ever will be" Ich würd es so ergänzen The best there is Chris Jericho! the best there was Shawn Micheals! Und wer für immer der Beste sein wird ist schwer zu sagen das Rennen Läuft noch.  Bret Hart war nicht meine Zeit aber das was ich von ihm früher gesehen hab war Spitze und er wird sich auf irgendeiner Weise wohl seine Popalärität verdient haben aber sein Comeback war einfach nur lächerlich. Es hieß Bret sollten bei Wrestlemania wirklich noch ein letztes Match bestreiten.  Klar er ist mitlerweile 53 Jahre alt aber ich erwartete ja auch kein Showstealer ala HBK. Aber als Bret Hart bei Wrestlemania in Jeanshosen zum Ring kam wahr ich echt schon kurz davor den Fernseher auszuschalten, das war für mich kein Wrestlemania Moment wenn Bret ja noch ein bisschen was im Ring gezeigt hätte aber sowas hätte ich nicht erwartet. Ich denke auch jeder Bret Hart Fan war ziemlich entäuscht das Bret nicht mal das Ring-gear angezogen hat. Fand ausser seinen guten In-Ring Fähigkeiten Bret nicht sehr Intressant, kein besonderes Gimmick;kein Besonderes Ausgezeichnetes Micwork. Da Wrestling mehr als nur ein Sport ist fänd ich 10 Punkte einfach unangebracht desswegen von mir Nur 8."
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Double Jwrote on 29.08.2010:[10.0] "Mit chris benoit und Owen Hart der beste Techniker aller zeiten! Kam in seiner rolle auch immert glaubwürdig rüber. Einer der wahren könner der wrestlinggeschichte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Papa Popanzwrote on 28.08.2010:[9.0] "Es gäbe hier eigentlich zwei Punktzahlen... eine 10 Punktewertung für früher und sechs für jetzt.... ich seh aber mal die Vergangenheit, denn so oft wird er ja nicht wieder im Ring sein und deswegen noch 9 Punkte"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Perry Coxwrote on 27.08.2010:[8.0] "Ich weiß noch genau, wie ich Bret das erste Mal im Fernsehen gesehen habe. Mein Vater saß da und schaute Wrestling im deutschen Free-TV und setzte mich aus langweile dazu. Und dann kam er, Bret Hart, zum Ring. Ich wusste damals nicht, wieso alle diesem Mann in Pink zujubelten und fragte deshalb meinen Vater, der nur meinte, dass Bret ein unglaublicher Entertainer wäre und das gewisse Etwas hat. Nunja, damals hielt ich nicht viel von Wrestling, lag vielleicht auch daran, dass ich eigentlich auch nie sehen durfte. Aber mittlerweile habe ich eine Menge von Bret gesehen und kann diesem Mann nur eine gute Note geben. Als ich anfing Wrestling wirklich richtig zu verfolgen, schenkte mir mein Vater passenderweise auch noch eine Bret Hart DVD mit den Worten: "Schau sie dir an und bewahre sie gut auf. " Bret mag durch seine Reaktion nach Montreal vielleicht etwas an Respekt verloren haben, weil er sich über Jahre weigerte, auch nur in die Nähe von Vince zu kommen, aber trotzdem bleibt er mir in guter Erinnerung, nicht zuletzt wegen meines Vaters, der mich insgeheim schon zum Wrestling gebracht hat."
Rating: 8.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Mountiewrote on 18.08.2010:[10.0] "Ich kann prinzipiell verstehen, dass es jüngere (und ältere) Fans gibt, die sich die Frage stellen: Was fasziniert eigentlich alle Welt an diesem Typen, der streng genommen gar nicht so übercharismatisch ist, schauspielerisch eher unbegabt und auch am Mikro recht schwankend in seinen Leistungen. Die eine, absolut schlüssige Antwort darauf gibt es nicht - aber gerade das ist auch wieder die Antwort. Bret hatte ein Quäntchen Etwas, das sich analytischen Betrachtungen entzieht und das man nicht erlernen kann. Dieses Etwas traf auf den Umstand, dass Bret zur richtigen Zeit am richtigen Ort war und die Lücke, die die Kunstfigur Hulk Hogan hinterließ, mit der Authentizität des bodenständigen, sympathischen Arbeiters überbrückte, der zugleich mit seinem Look aber eben doch gut vermarktbar war. Und er setzte später noch einen drauf, indem er seinen Charakter auf wunderbare Weise zu einem grummeligen Heel uminterpretierte, der für seine Erben Michaels und Austin der perfekte Widerpart war - ehe ihn Montreal dann auch noch zum Mythos gemacht hat. Der Werdegang ist so nicht wiederholbar, auch Owen hätte ihn nicht gehen können. Owen wäre - ohne seine Klasse schmälern zu wollen - ohne Bret als Türöffner womöglich auch nie über die Rolle als Undercard-Hüpfer hinausgekommen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ISAGwrote on 17.08.2010:[5.0] "War noch nie ein Fan von ihm und werd wohl auch keiner mehr werden. Hat meiner Meinung nach auch nichts mehr im aktiven Wrestling geschehen zu suchen. Die Promos sind schwach und im Ring kann bzw darf er wegen seines Gesundheitszustandes auch nichts mehr zeigen. Wegen seiner Erfolge sicherlich zu Recht Hall of Famer aber irgendwann sollte man es auch gut sein lassen."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Ray Robsonwrote on 17.08.2010:[6.0] "Den Hype um Bret konnte ich nie nachvollziehen, weder damals noch jetzt. Sicherlich ein guter Techniker, der damals als Face auch echt sympathisch rüberkam, nur hat er mich gelangweilt. Für mich kein World Title Material, Intercontinental Title wäre das Maximum."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Fall Out Boywrote on 17.08.2010:[4.0] "Ich konnte ihn noch nie leiden. Bret Hart war definitiv vor meiner Zeit, das muss ich zu geben, aber von dem was ich gesehen habe, bin ich nicht gerade beeindruckt. Konnte seinen Spitznamen nicht mal annähernd bestätigen. Und sein Comeback bestätigt mich darin lediglich, da er nun nach 8 Monaten gerade mal 1-2 gute Promos auf die Beine gestellt hat."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Didi84wrote on 15.08.2010:[10.0] "Ein wirklich super Wrestler und schön ihn immer mal wieser zu sehen."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheRock902102wrote on 18.07.2010:[10.0] "Eindeutig mit Abstand einer der besten Wrestler, Worker und am Mic...  Seine Matches waren legendär, selbst bei schwächeren Gegnern konnte er noch ein gutes Match herauszaubern...  Seine legendären Fehden gegen HBK und Owen Hart waren einfach Klasse....  Er ist einer der wenigen die, die 10 Punkte wirklich verdienen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ClaudeSpeedwrote on 16.07.2010:[10.0] "Es wird sich nie ändern. The Best there is, The Best there was, The Best there ever will be."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Dankowrote on 02.07.2010:[10.0] "Mein Kindheitsidol, klasse Wrestler der auch den schlechtesten Worker zu einem ansehnlichen Match ziehen konnte. Empfand ihn auch stets als sehr sympathischen Typen, seine jüngsten Aüßerungen, die für mich nicht in die Öffentlichkeit gehören, haben ihm jedoch einiges an Sympathie gekostet. Nichts desto trotz kommt er an einer 10 nicht vorbei."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Medeawrote on 30.06.2010:[2.0] "Ich habe Bret Hart noch nie leiden können, obwohl ich ihm ein großes Spektrum an Moves und einen sauberen Stil zugestehe. Als Teil der Hart Foundation war er auch noch annehmbar, aber als Einzelwrestler habe ich ihm seine Show nicht mehr abgenommen. Ich fand ihn keineswegs abwechslungsreich und mit der neuen Generation konnte er meiner Meinung nach gar nichts anfangen. Der Höhepunkt war dann meiner Meinung nach dann nur noch, Vince McMahon tatsächlich privat zu schlagen, weil dieser ihm seinen Sieg genommen hatte. Leider ist er jetzt am Mic auch nicht gut genug, um zumindest heute noch einige Punkte mehr zu sammeln."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SES-Memberwrote on 15.06.2010:[10.0] "Ich finde den ``HITMAN`` klasse. Er wird zwar nicht mehr an die Promos seiner Glanzzeit herankommen aber durchaus unterhaltsam sind sie trotzdem. Als GM gefällt Er mir sehr gut. Haltet sich gut im Hintergrund, trifft richtige Entscheidungen und bei den Fans schafft er es auch immer noch over zu kommen. Mein lob an den HITMAN der es nach 14 Jahren Pause trotzdem geschafft hat noch einmal erfolgreich zu sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: DragonSleeperwrote on 07.06.2010:[7.0] "Sicher, er war technisch gut. Ja, er war ein Star. Aber mich hat er nie so geflasht wie die meisten hier. Trotzdem wäre er ein 9 Punkte Kandidat. Aber: Für seine Rückkehr in die WWE muss ich 2 Punkte abziehen, das hat mich extrem enttäuscht nach den vielen Jahren. Zudem waren seine "Matches" gegen McMahon und Miz eine Schande für die Legende des Hitman."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: WrestlingFanDuisburgwrote on 03.06.2010:[10.0] "Allein die Tatsache das er absichtlich oder unabsichtlich niemanden verletzt hat spricht für die Fähigkeiten des "Hitman". Er war der größte Star mitte der 90er in der WWF. Als Heel hat er mir zwar nicht gefallen, aber als Face dafür um so mehr. Schade das er durch Goldberg seine Karriere beenden musste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: morph80wrote on 30.05.2010:[10.0] "Bin mit ihm groß geworden und hatte bei seiner Rückkehr im Januar Gänsehaut. Wrestlerisch einer der Besten aller Zeiten und am Mic großartig. Finde es grandios dass er sich mit der WWE versöhnt hat und hoffe dass er noch einige gute Auftritte hinlegt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Erasedwrote on 22.05.2010:[10.0] "Klasse Technicker, wohl einer der besten, die jemals einen Ring betreten haben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Saphirwrote on 14.05.2010:[10.0] "Mein absoluter Lieblingswrestler bis heute. Da fallen mir auf Anhieb, sehr viele gute Matches ein. Sah eigentlich nie ein wirklich schlechtes. Ich kann nichts anderes als 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Edge96wrote on 12.05.2010:[10.0] "Für mich der beste Techniker aller Zeiten. Auch am Mic toll. Etwas anderes als 10 Punkte gibt es für ihn nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: gunniwrote on 06.05.2010:[9.0] "Als ich 1993 zum Wrestling kam, war er sowas wie "der Wrestler" für mich. Niemand konnte mich so in den Bann ziehen wie der Hitman! Dann die Titelgewinne gegen Joko, Diesel...... einfach exelent. Die Fehde mit seinem Bruder, die neue Hart Foundation ....... der Hammer. In der WCW gefiel er mir nicht so. Man konnte ihm ansehen, dass er nicht mehr mit dem Herzen dabei war. Der negative Höhepunkt fand ich (dadurch auch nur die 9) war, der Spear Goldbergs auf Bret der eine Eisenplatte unter der Jacke hatte. Da konnte man eine richtige l. m. a. A. -Stimmung bei ihm erkennen. Ansonsten kann ich nur noch eins sagen:"The Best There Is The Best There Was And The Best There Ever Will Be"!"
Rating: 9.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Mukahidowrote on 05.05.2010:[10.0] "Er war für mich damals DER Wrestler warum ich überhaupt angefangen habe Wrestling zu schauen. Technisch überragend und sehr sauber, gutes Micwork und das gewisse Etwas machten ihn meiner Meinung nach zu Aushängeschild des Wrestlings der 90er ."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Cpt Dave Charismawrote on 05.05.2010:[7.0] "Ich werde nie verstehen, was am Hitman so toll war. Ich erkenne aber an, dass er eine große Persönlichkeit aus einer großen Familie war und Owen war der Bessere!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sandmannwrote on 04.05.2010:[9.0] "Einer der besten den es je gab. Schon als Tag Team Wrestler mit Jim Neidhart ein grandioser Wrestler. Das setzte sich mit seinem Wechsel zum Singleswrestling fort. Verdienter IC Champion mit grandiosen Matches (z. B. gegen Mr. Perfect) dann verdienter World Champion. Ein betrüblicher Abgang aus der WWE und Wechsel zur WCW wo er aber nicht mehr an die grandiosen Zeiten anknüpfen konnte. Schließlich seine Rückkehr zur WWE nach Jahren und ein versöhnlicher Abschluss eines großen Skandals."
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Eazyewrote on 02.05.2010:[10.0] "Genialer Techniker, durchschnittliche Mic Skills ansonsten sehr gut. Regierte die 90er als einer der besten Techniker. Natürlich wird er overrated, auch von mir. Und das ist der springende wird overrated. Warum? Sicher nicht nur wegen Screwjob's und Herzschlägen. Nein, er ist wegen seiner schillernden persönlichkeit so overrated. Auch sonst hätte er mindestens 9 Punkte für ihn gegeben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: RockZauwrote on 17.04.2010:[8.0] "Bret Hart ist der Inbegriff des Wrestling's für mich (:"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: RickRollwrote on 16.04.2010:[4.0] "Sicherlich im Ring technisch gut, aber trotzdem ist Bret die Definition von PURER langeweile (im Ring). Hart kann man sich angucken wirklich, aber das wars dann auch schon. Wer darrauf steht beim Finish immer das gleiche zusehen sollte sich Bret matches angucken."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: THE GAME 4-EVERwrote on 11.04.2010:[5.0] "Hoffnungslos overrated und im Ring sicherlich klasse aber wer sich bei Cena über 5-Moves of Doom Sequenzen zu Ende aufregt sollte bis zum Ende seines Lebens mit Bret Hart Match gequält werden, welche ähnlich unspektakulär endeten und sehr monoton waren. Dazu noch so charismalos und schlecht am Mic, dass ich lieber Jack Swagger und JoMo zuhöre! Alles in Allem die goldene Mitte, einen Punkt gibts noch für die Liebe zu Deutschland. Dazu kommt das der Montreal Screwjob seinem Ego zu verdanken ist und der feine Herr sich ja zu fein war, sich für Michaels hinzulegen in Montreal. Das ein Michaels dafür heute noch in Verruf gebracht wird ist eine Schande."
Rating: 5.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Showstopper45wrote on 08.04.2010:[10.0] "Großartiger Wrestler ich glaube hier reicht es wenn ich sage perfekter Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Moyawrote on 05.04.2010:[10.0] "Bin froh, dass er seinen Frieden gefunden zu haben scheint. Als Wrestler sicherlich ohne Zweifel eine Granate!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Buddy Hawkswrote on 30.03.2010:[10.0] "Wie auch beim HBK habe ich mit meiner Bewertung bis nach Wrestlemania 26 bzw. der folgenden RAW Sendung gewartet. Für den Hitman gilt im Grunde das gleiche wie für Shawn Michaels. Einer meiner drei Helden der Kindheit, der mich immer wieder auf's neue begeistern konnte. Sein Wrestling-Stil und sein Charisma machten ihn beliebt und unvergessen. Die Revanche für den MSJ mögen einige als schlecht empfunden haben, ich hingegen wollte genau dies sehen. Damit hat sich der Kreis für mich persönlich geschlossen und ein großes Kapitel wurde beendet. Ich bin froh, den Hitman noch einmal erlebt haben zu dürfen."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Exist 2 Inspirewrote on 30.03.2010:[10.0] "Ich bin froh das ich nocheinmal die Möglichkeit bekommen habe Bret Hart live zu erleben, den seinen ersten WWE Run habe ich damals leider verpasst ( Habe ihn das erstemal als kleiner Junge bei WCW gesehen aber auch die Erinnerungen sind etwas verschwommen). Mittlerweile habe ich mir natürlich viel Material vom Hitman angesehen und ich kann ihm im Prinzip nur 10 Punkte geben. Im WWE Ring sicherlich einer der besten ever (zusammen mit HBK) und auch seine Promos fand ich eigentlich recht ordentlich. Das er es nach all den Jahren geschafft hat über den Screwjob hinwegzukommen und sich mit Vince McMahon & Shawn Michaels versöhnt hat ist schon ein starkes Stück. Noch vor einem halben Jahr hätte ich das nicht für möglich gehalten."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: antihiphop2002wrote on 28.03.2010:[10.0] "Hab ich immer gern gesehen. Genialer wrestler sympathischer Typ, wegen ihm bin ich als Kind im immer Sommer mit so ner bescheuerten Brille rumgerannt. Und ich bereue nichts!"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kain Wolfsheadwrote on 23.03.2010:[10.0] ""Eigentlich müsste ich ihm die Note 1 geben aber da er in meinen Augen durch den Screwjob bewiesen hat dass er ein großer Egoist ist und sich nicht für jemanden hinlegen wollte, den er halt nicht ausstehen kann, hat er alle Sympathien bei mir verspielt" Mal abgesehen davon, dass Bret sich erst weigerte, als Shawn sich wie eine Diva aufführte und Bret entgegnete, nachdem dieser sagte, dass er kein Problem damit habe Shawn trotz Differenzen over zu bringen, dass er nicht bereit sei das gleiche für den Hitman zu tun, ne... Wird von HBK-Fans gerne mal verschwiegen... Bret hatte immer eine natürliche Ausstrahlung und Coolness wie es nur wenige andere im Business hatten. Im Ring nicht immer sonderlich vielseitig aber dafür punktgenau und sauber. Durch seinen No-Nonsense-Stil jederzeit als glaubwürdiger Main Eventer überzeugend gewesen. Man kann ihm kaum zum Vorwurf machen, dass ihm der Screwjob nahe ging. Aber inzwischen scheint er es ja hinter sich gelassen zu haben. Ob die Rückkehr so weise war sei mal dahingestellt."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: LabronBenoitwrote on 23.03.2010:[10.0] "Ohne wenn und aber "the best there is, the best there was and the best there ever will be". Für mich der beste Wrestler aller Zeiten!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: asraelwrote on 20.03.2010:[8.0] "Ob Bret nun "the best there was, the best there is and the best there ever will be" ist, darüber kann man geteilter Meinung sein. Was er ist, ist zweifellos ein mehr als solider Grappler (also Wrestler mit deutlichem Ringer-Hintergrund, der in erster Linie von Griffen lebt) und darüber hinaus eine Ikone des Wrestling. Meiner Meinung nach war die Qualität seiner Matches aber doch sehr stark von der Güte seiner Gegner abhängig, denn der Tempomacher war er eigentlich nicht - darüber sieht man wegen seines zugegebenermaßen großen Charismas oft hinweg. Ich habe halt viele seiner Kämpfe als reine Haltegriff-Orgien in Erinnerung, wenn der Gegner nicht viel dazu beitrug. Während der Zeit der Hart Foundation hatte er eine ganz andere Art zu wresteln gezeigt (klar, neben dem Powerhouse Jim Neidhart war eben damals er für die schnellen Passagen zuständig), na gut, er war damals ja auch noch jünger... Den größten Fehler beging er jedoch mit seiner Abwanderung in die WCW, und ich rede nicht nur vom "Montreal Screwjob", der dem Hitman-Charakter erheblich schadete, ich hatte den Eindruck, daß die WCW zwar stolz darauf war, der WWF eines ihrer Zugpferde "ausgespannt" (heh, man betrachte dies grandiose Wortspiel) zu haben, aber mit Bret eigentlich gar nicht wirklich etwas anfangen konnte. Seinen Abgang habe ich jedenfalls nicht als besonders würdig empfunden, ich kann mich daran erinnern, daß er vielmehr nur noch als "beleidigte Leberwurst" dargestellt wurde, die allen anderen krummnahm, daß"
Rating: 8.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Venomwrote on 15.03.2010:[10.0] "Eine Legende!  Für mich die Nr 1 noch vor The Rock oder Kurt Angle!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kitanoyamawrote on 07.03.2010:[10.0] "Einer DER Top-Wrestler in der Geschichte des weltweiten Wrestlings. Er zeigt eine großartige Präsenz, wird von den meisten gefürchtet und/oder respektiert und war zu seiner aktiven Zeit einer der besten, vielleicht sogar DER beste seines Stils."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Acid Dwrote on 04.03.2010:[10.0] "Wie für viele andere hier, war Brett Hart, auch bei mir einer der ersten Wrestler die ich verfolgt habe . Seine In Ring Leistungen und seine Technik haben mich immer begeistert, sein Mic Work war auch solide. Einzig seine extreme Verbissenheit, und nachtragende Einstellung störte mich etwas. Umso schöner ist es zu sehen, das er auf seine alten Tage, die Dinge die in belasten aus der Welt zu schaffen versucht, und seine Verbittertheit abzulegen. The best there is, the best there was, and the best there ever will be!"
Rating: 10.0
Sentiment: 0.71875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Cripplerwrote on 03.03.2010:[10.0] "Der beste Wrestler der 90er, ein absoluter Superstar."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: mesorwrote on 12.02.2010:[10.0] "Bret Hart das Vorbild meiner Jugend! Ich freue mich auf Wrestlemania wie damals wenn es wirklich dazu kommen sollte dass er gegen Vince kämpfen sollte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Randy Owrote on 11.02.2010:[10.0] "Das was die WWE bzw Vince damals gemacht hat war einfach nur Peinlich und ein Trauriges Ende bei der WWE vom Hitman. Aber gott sei dank ist er wider Back für ne kurze Zeit und es hilft der WWE es hilft Vince es hilft vielleicht sogar Shawn aber noch viel mehr hilft es ihm selber. Bret kann endlich abschließen und so Enden wie es er verdient hat. Ein Match noch ? Muss nicht sein aber ich würde es befürworten. Ihm kann man nur 10 Punkte geben wenn man ihn von damals kennt, wer nicht sollte es nachhollen. Er war nie der Beste Micworker das gebe ich zu aber zu seiner Zeit hat es gepasst. In der WCW nicht ganz so wie von vielen erfhofft aber egal. 10 voll verdiente PUNKTE!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: XoXwrote on 10.02.2010:[10.0] "Bret Hart ist für mich genau das was er selbst in seinen Promos immer wieder gesagt hat: The best there is, the best there was and the best there ever will be. Ein Mann, der nicht nur im Ring absolut überzeugen konnte, sondern - so kommt es zumindest rüber - auch hinter den Kulissen ein angenehmer, umgänglicher Typ ist, dem der Ruhm nicht wie so vielen anderen Top-Stars zu Kopf gestiegen zu sein scheint."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Checkerwrote on 04.02.2010:[10.0] "Ich bin froh das Bret Hart für kurze Zeit wieder zurück ist. Klar ist er nicht mehr so fit wie früher, aber hat jemand schon mal daran gedacht, dass er nen Schlaganfall hatte und so einige aus der Familie verloren hat?  Zum Screwjob muss ich auch was los werden. Es heißt immer er wollte sich für Michaels nicht hinlegen. Also mal ganz ehrlich, muss das sein in seinem letzten Match und Michaels war damals auch nicht besser. Abgemacht war ein no Contest. Trotzallem ist Bret eine Legende und wird es auch bleiben"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: novacanewrote on 03.02.2010:[10.0] "Bret Hart ist für mich, zumindest was Technik und reines Wrestling angeht, der Maßstab, an dem sich alle messen müssen. Alles wirkte durchdacht, keine Aktion sinnlos oder ohne Wirkung. Man hatte stets das Gefühl, einen echten Kampf zu sehen. Unvergessen sind die Klassiker gegen Curt Hennig, Shawn Michaels und seinen Bruder Owen. Am Mic gibts bessere, aber alles in allem führt nichts um die 10 Punkte herum."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: tobiasthegreatone1wrote on 27.01.2010:[4.0] "Vor seiner Rückkehr hätte ich ihm 10 Punkte gegeben aber jetzt einfach schrecklich am Mic ist er extrem schlecht geworden und seine Ausstrahlung ist auch weg. Ich gebe ihm 4 Punkte und zwar weil er früher toll war aber durch seine Rückkehr hat er meiner Meinung nach den Fans den Rücken gekehrt. Bret hätte zuhause bleiben sollen es tut mir Leid 4 Punkte zu geben aber ich kann bei aller Liebe nicht mehr geben."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: test85wrote on 24.01.2010:[10.0] "The Best there is, there was and there ever will be. Sicherlich lässt sich darüber streiten. Doch er gehört sicher zu den Besten. Besser als ein Hogan, Flair oder Cena. Leider musste er seine Karriere viel zu früh beenden. Kommt deshalb nicht auf soviele World Titel Regentschaften wie andere. Gerade zu einem Zeitpunkt in der es wieder bergauf für ihn ging. War sowohl als Heel als auch als Face überzeugend. Erinnere mich noch gern an die Szene als HBK ihn einen Superkick verpasste als er im Rollstuhl saß. Hat viele Klassiker auf die Beine gestellt z. B. WM10 gegen Owen, SS91 gegen Mr. Perfect, SS92 gegen den Bulldog oder auch der Klassiker gegen Austin bei WM13. Hätte ihn gerne gegen Männer wie Jericho, Angle, Edge oder auch gegen einen AJ Styles wrestlen sehen."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Pizzafunghiwrote on 22.01.2010:[10.0] "Für mich ist und bleibt er einfach "The Excellence Of Execution". Leidenschaftlicher Wrestler, nach solch einem Kaliber sucht man heute (fast) vergebens."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: TheROCKwrote on 22.01.2010:[10.0] "Mein Grund Wrestling-Fan zu werden. Just simply The Best ...."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ShakDragoonwrote on 19.01.2010:[10.0] "Ganz klar eine echte Legende. Sicherlich auch einer der talentiertesten Wrestler, die je WWF-Gold halten durften. Mich hat seine Rückkehr sehr gefreut. Bin gespannt, wie es weitergeht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: pildaYwrote on 13.01.2010:[10.0] "Er hat dafür gesorgt, dass ich eine Gänsehaut bekommen hab, als er sein Comeback bei der WWE gefeiert hat. Wer das schafft hat meiner Meinung nach mehr als 10 Punkte verdient ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Rated R Superstar EDGEwrote on 11.01.2010:[9.0] "Ich war nie ein großer Bret Hart Fan. Ich konte seinen Matches und seinem Stiel im algemeinen nie sehr viel abgewinnen. Er verfügte zwar immer über imense in Ring Fähigkeiten war wie ich finde aber meistens einen hauch schlechter als z. B. Shawn Michaels, Chris Benoit oder Kurt Angle. Am Mic war und ist er auch immer einen der besten gewesen allerdings muss man deutlich sagen das ihn in sachen Micwork obwohl er einer der besten ist immer noch Welten von einem The Rock oder Chris Jericho trennen. Alles in allem wohl einer der komplettesten Wrestler der 90er. Einen Punkt ziehe ich ihm ab da ich ihn noch nie so wirklich leiden konte. Für seine WWF Zeit würde er von mir noch 10 Punkte bekommen. Für seine Zeit in der WCW 8 Punkte. Alles in allem 9 Punkte für den Hitman."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: freddnwrote on 09.01.2010:[10.0] "Bret Hart war immer ein Garant für hervorragende Matches und wird daher nicht umsonst "Excellence of Execution" genannt. Nach seinem Heelturn 1997 bekamen auch seine Promos immer mehr Substanz und er bewies nicht nur der Clean Cut Babyface sein zu können. Nach seinem Wechsel in die WCW versank er leider etwas in der Bedeutungslosigkeit, aber er wird trotzdem immer eine Legende des Sports bleiben... ich finde es auch sehr gut, dass er mittlerweile endlich über den Screwjob hinweggekommen ist - war sehr cool ihn mal wieder bei WWE zu sehen..."
Rating: 10.0
Sentiment: 0.35833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Unrated Superstarwrote on 09.01.2010:[7.0] "Meinetwegen steinigt, kreuzt oder köpft mich dafür! Aber ich habe in Bret Hart nie DEN Super-Wrestler der 90er gesehen. Da gefielen mir der Undertaker, Steve Austin und Shawn Michaels zu der Zeit wesentlich besser. Trotzdem ein talentierter Worker, dessen Karriere am Ende ein wenig unglücklich verlaufen ist. Schön, dass er jetzt doch nochmal für die WWE auftritt. Hoffentlich macht man was draus."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: RatedRJuliwrote on 07.01.2010:[8.0] "Sehr guter Wrestler aber mir persönlich etwas zu arrogant"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jupp365wrote on 07.01.2010:[10.0] "He is exactly what he says he is....... the best there is, the best there was and the best there ever will be! Als alter Bret Hart-Mark kann ich nicht anders bewerten! Er war und ist für mich der Größte!  EDIT: Freut mich sehr, dass er wieder da ist. Und er sieht für sein Alter blendend aus. Für die die es nicht gemerkt haben, die Aussage, dass er schon vor seit langem zurück kommen wollte, dient lediglich dazu Vince als noch größeren Arxxx da stehen zu lassen."
Rating: 10.0
Sentiment: 0.8125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Azarothwrote on 06.01.2010:[10.0] "So ziemlich alles, was man zu Bret Hart sagen kann, wurde in den vorausgehenden Kommentaren schon erwähnt, deshalb schließe ich mich stillschweigend aber überzeugt der herrschenden Meinung an."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Larskanonewrote on 06.01.2010:[10.0] "The Best there is, the best there is & the best there ever will be! Freue mich, dass er wieder da ist. Frage nur wie lange wird sich zeigen."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: NewGuywrote on 06.01.2010:[10.0] "EDIT: Nach seinem RAW Auftritt scheint vieles anders. Er hat sich ein Versprechen gegeben. Er wollte zeigen dass auch ein Vince McMahon nicht immer machen kann was er will. Offensichtlich kann er es doch! Schade... Er wollte schon vor vielen Jahren wiederkommen? Soviel dazu. Egal es ändert nichts an der Wertung da er trotzdem ein super Wrestler war. Aber meine persönliche Meinung über ihn hat sich doch etwas verändert. but who cares?"
Rating: 10.0
Sentiment: 0.02243589743589741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Daddy Poowrote on 04.01.2010:[10.0] "Der Hitman hat nie einen Gegner in seiner Karriere verletzt. Ich glaube somit ist der Hitman einer der BESTEN ever. Durch den Screwjob und die Doku hat man bemerkt, dass Bret ein fairer Sportsmann ist. Heute kommt er wieder."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Y2J Problemwrote on 04.01.2010:[9.0] "Klasse Wrestler, der sein lang erwartetes Comeback gibt. Ob aus freiem Willen oder des Geldes wegen. Egal, so oder so ein Comeback auf das ich mich schon freue."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SmartyGirl13wrote on 03.01.2010:[10.0] "Eine Legende, ganz klar. Seine symphatische Art, das Moveset, das ganze Auftreten und seine saubere Arbeit im Ring lassen für mich keine andere Note zu als 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: yokosbrotherwrote on 02.01.2010:"Ich hoffe sehr das der 4. Jänner ein historischer Tag wird von dem wir noch sehr lange reden werden. Die Rückkehr eines der talentiertesten und zugleich sportlich fairsten Männern die es im Wrestling je gegeben hat. Ein Idol und eine abschließende und schöne Fehde hat er verdient. Ein Abschied wie bei Flair es gibt keinen dem ich so was mehr gönne als dem Hitman. Salut"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: hatebreederwrote on 02.01.2010:[10.0] "Bret Hart - dieser Mann hat dem Namen "Hart" seine ganze Ehre und Aufmerksamkeit, die er heute genießt, gebracht. Er war der erste der "schmächtigeren" Wrestler, die einen World Title nach der Hulkamania Ära gewonnen haben. Es spricht für sich, dass er der erste war, der den Rekord des Hulksters von 5 WWF-Heavyweight Titelregentschaften einstellte. Bret Hart führte die WWE nicht umsonst durch eine Krisenzeit. Deshalb gilt für den Hitman ganz klar: The Best There Is, The Best There Was, And The Best There Ever Will Be !"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Navidwrote on 01.01.2010:[10.0] "Ein Mensch bleibt ein Mensch. Wenn man absolute Perfektion voraussetzt kann man die 10 Punkte niemals vergeben. Doch sind solche Wertungen doch eben dafür da jemanden auszuzeichnen der der beste seiner Zeit war und über diese Hinaus Standarts setzte die bis heute selten erreicht werden. Ausser Bret gibt es nicht viele die die 10 Punkte verdienen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Telecinewrote on 26.12.2009:[8.0] "Einer der besten Wrestler der Attitude Ära. Nach den Screwjob hat er mich in WCW aber wenig überzeugen können und wurde dann nach dem Ende seiner Karriere zu einem ziemlich verbitterten und ausgedienten Wrestler. Seine ständigen Macken bei irgendwelchen Pressekonferenzen, weil er nicht als bester Wrestler Kanadas in einem Buch steht, gingen mir persönlich doch eher auf die Nerven. Die Neu-Einstellung bei WWE ist natürlich sehr verwunderlich. Sieht wohl mittlerweile doch so aus, als wenn er den Screwjob ein wenig verkraftet hat. Es wurde Zeit."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kane123wrote on 26.12.2009:[10.0] "Einfach eine Legende ! Hoffe er wird RAW retten ! LEGENDE !"
Rating: 10.0
Sentiment: -0.36057692307692313
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Italian Straight Edgewrote on 24.12.2009:[10.0] "Einer der besten (WWF/WWE)-Wrestler aller Zeiten. The Best There Is, Was and Ever will be."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Manu Adamswrote on 22.12.2009:[10.0] "Ja was kann man über den Hitman sagen, was noch nicht gesagt wurde. ich verneige mich vor dem Excellent of Execution und bedanke mich für unzählige wunderschöne Kämpfe. Ich schließ mich den 470 Usern an und vergebe ebenfalls die volle Punktzahl."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Brooklyn Brawler 1985wrote on 20.12.2009:[10.0] "Für mich der Inbegriff eines Superstars, obwohl er immer authentisch rüberkam und das "Larger than Life" eigentlich nicht einmal verkörperte... Wenn hier einer die 10 Punkte verdient hat, dann ist das der Hitman!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: spankywrote on 18.12.2009:[10.0] ""The best there is, the best there was and the best there ever will be""
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: richardfliehrwrote on 16.12.2009:[9.0] "Mein erster Held! Wurde vom schiksal hart rangenommen! Währe heute als road agent für die wwe unbezahlbar wertvoll. Könnte den heutigen workern dimge beibringen die heutzutage in vergessenheit geraten sind."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Aglaoswrote on 15.12.2009:[10.0] "Oh Mann, wie ich den vermisse... Einer der Worker, der mich manchmal glauben ließ, dass die schöne bunte Welt des Wrestlings tatsächlich real ist..."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Detrituswrote on 13.12.2009:[9.0] "Der Hitman war zu seiner WWF Zeit das Non-plus-ultra im Pro-Wrestling. Leider hat es ihn dann zur WCW verschlagen, was jedoch nicht seine Fähigkeiten im Ring schmälern soll."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: VanZan82wrote on 09.12.2009:[10.0] "wegen ihm habe ich angefangen wrestling zu gucken. habe 1990 in dortmund von ihm seine brille geschenkt bekommen. einer der schönsten momente meiner kindheit!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Roseswrote on 01.12.2009:[8.0] "Ändere meine Meinung den nur weil ich ihn nicht leiden kann, bedeutet das nicht das er ein schlechter Wrestler ist. Trotzdem nur eine 2."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: brianpillmanwrote on 27.11.2009:[10.0] "Einfach im Ring einer der Besten aller Zeiten. Ich könnte mir nach wie vor fast alle Hart-Matches anschauen und sie würden kaum jemandem heutzutage nachstehen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BenZenwrote on 24.11.2009:[10.0] "War in den frühen bis mitte 90ern einer meiner absoluten Helden und lieferte im Grunde ein Komplettpaket. Technik, Ausstrahlung, Intensität, konnte die Zuschauer mitreißen und hat dermaßen viele Klassiker geliefert die ich alle auch heute noch gerne sehe. Seine WCW Zeit oder auch sein Charakter abseits des Rings bringen mich da nicht von der Höchstnote runter."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: downtown2wrote on 15.11.2009:[9.0] "Eigentlich ist eine Wertung unterhalb der 10 Punkte für den Hitman eine Frechheit. Er konnte jeden Stil gehen, mit jedem noch so limitierten Gegner einen vernünftigen Kampf abliefern. Ein harter Brawler und feiner Techniker. Dazu Jemand der mit seiner Präsenz im und außerhalb des Rings seines Gleichen suchte und sucht. Doch Hart hat einen entscheidenden Fehler in seine tolle Karriere eingebaut und zwar den screwjob in Montreal. Vince McMahon hatte in seinem Interview völlig recht, als er sagte, Bret habe keinen Respekt vor dem Business das ihn zu dem machte, der er war. Im Wrestling kommt es nicht darauf an, wer Champion ist, sondern auf die Darbietung. Zu dieser Zeit wäre es noch dazu undenkbar gewesen, einen amtierenden World Champ unbesiegt zur Konkurenz gehen zu lassen. Dort verebte die Laufbahn des Hitman so langsam, weshalb es für diesen tollen Athleten einen Punkt Abzug gibt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: nWoWolfpacwrote on 30.10.2009:[10.0] "Bret Hart konnte mit jedem ein gutes Match zeigen! Super Techniker, super sympatischer kam er auch immer rüber. Einfach einer der besten die es gab."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: stinkezonkwrote on 22.10.2009:[10.0] "Als ich anfing, Wrestling zu gucken, war er gleich mein Fav... Hat sich über die Jahre auch nie verändert. Er ist, was das Mainstream-Wrestling betrifft, immer noch mein Held... Technisch gehts einfach nicht besser!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hit Manwrote on 21.10.2009:[10.0] "Für mich absolut einer der besten den die Wrestlingwelt je gesehen hat. Vor allem seine Fehde mit Shawn war einfach nur klasse. Aber auch sonst immer einer der besten und einer auf den man sich im Ring verlassen konnte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Milowrote on 06.10.2009:[10.0] "Der mit Abstand beste Wrestler für mich. Er hat mich für das Wrestling begeistert wie keine anderer. Seine Fehde mit seinem Bruder Owen Hart, werde ich nie vergessen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Edgecutionerwrote on 01.10.2009:[7.0] "Bret Hart - zweifelsohne eine Legende im Wrestling. Hat Anfang/Mitte der 90er sagenhafte *****-Matches geliefert. Respekt. Aber alles, was sich danach abspielte, war einfach nur lächerlich. Ich kann einfach nicht verstehen, warum Montreal nach all den Jahren immer noch ein Thema ist. Liegt das vielleicht daran, dass die ganzen Bret Hart Fans sich nur nicht eingestehen wollen, dass Shawn Michaels einfach der Bessere von beiden war... Screwjob hin oder her. So ist das oft im Leben. Wenn man etwas nicht wahrhaben will, redet man sich einfach solange das Gegenteil ein, bis man es selber glaubt. So. Genug zu Bret Hart. Jetzt dürft ihr mich alle hassen und mir sagen, dass er trotzdem der "Beste ist, den es gibt, gab und bla bla bla... " Viel Spaß dabei."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Genschiwrote on 30.09.2009:[4.0] "Früher gut, konnte mit der zeit nicht mehr so mithalten, immernoch geheule wegen Montreal 97, wechsel zur WCW da ihrgendwie untergegangen, hier und da mal ein Titel und World Champ zur einer Zeit als der Titel nicht mehr viel wert war, heute ein verbitterter alter man, der noch der HoF aufnahme sofort wieder abreiste. Schade eigentlich"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Babuswrote on 29.09.2009:[7.0] "Verbitterter alter Mann, der als einziger Beteiligter auch nach 12 Jahren den Montreal Screwjob noch nicht überwunden hat. Dabei bot grade der eigentlich Potential für ihn, denn als Face fand ich den Hitman bis dahin nie völlig überzeugend. Davon abgesehen ist Bret Hart aber sicherlich ein guter Wrestler gewesen, wenn auch keiner meiner absoluten Favoriten."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Jar Jar Binkswrote on 26.09.2009:[10.0] "Toller Wrestler, der es schaffte mich als Kind wirklich zu begeistern. Ein wahnsinns Techniker, unglaublich Charimsa, einfach Glaubwürdig. Eine echte Legende."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kazywrote on 26.09.2009:[10.0] "The Best there was, the best there is, the best there ever will be... naja er ist nicht ganz das non plus ultra aber trotzdem ist er einer der grüßten in der Geschichte der WWE Geschichte."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Jackwrote on 21.09.2009:[10.0] "Jeder der ihm keine 10 Punkte gibt hat keine Ahnung von Wrestling!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Zombrerowrote on 19.09.2009:[10.0] "Der beste den es gab. Da brauch man gar nicht mehr zu sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Basket Casewrote on 14.09.2009:[10.0] "Er war einer der besten Wrestler unserer Zeit, dazu stark am Mic. Schade, dass seine Karriere so endete."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Y2Mikewrote on 10.09.2009:[10.0] "Brauch ich nicht viel dazu erwähnen. Einer der besten Wrestler aller Zeiten. Mein all time favourite wrestler. Technisch begnadet. Am Mic war er sicher nicht der Beste, aber doch sehr deutlich über dem Durschnitt. Schade das so ein Nichtskönner wie Goldberg seine Karriere beendet hat. Und zum Montreal Screwjob sag ich nur ---> FRECHHEIT!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Turboladerwrote on 29.08.2009:[10.0] "Der beste Techniker überhaupt, daran gibt es für mich keinen Zweifel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jenszaunwrote on 19.08.2009:""The Excellence Of Execution", the beste is, the beste was and the beste ever will be"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: bret 82wrote on 12.08.2009:[10.0] "Also ich finde das der hitman der beste im ring war und immer bleiben wird. Wenn man sich überlegt das er nichtskönnern wie skinner oder bastion booger zu ein halbwegs anständiges Matches gezogen hat......... ganz klar ne 10"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Muthmasterwrote on 30.07.2009:[10.0] "Schlicht und ergreifend: The best there is! The best there was! And the best there ever will be!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: 108 Sternewrote on 24.07.2009:[10.0] "Der Mann ist ein Phänomen; mit seiner ruhigen Art und seinem stark auf Haltegriffe basierendem Wrestling würde man nicht meinen, daß er die Massen erreichen kann; aber er kann, und wie. Der größte Wrestling-Star der 90iger."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Main Eventwrote on 06.07.2009:[9.0] "Wrestlerisch war er ein Ass, das ist klar, aber was er beim Schrewjob aufgeführt hat.... das hatte mit Wrestling garnichts zu tun... >:("
Rating: 9.0
Sentiment: -0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Cloverwrote on 04.07.2009:[8.0] "Ikone im Wrestling und technisch damals herausragend. Aber er wirkte in seiner Rolle immer sehr verhalten.. da war Owen Hart unterhaltsamer! Schauspielerisch also eher Mittelmaß. Doch der Kult reicht - daher 8, 5 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Mick Funkwrote on 02.07.2009:[8.0] "Sicher technisch ziemlich gut aber ich mochte ihn nie. Gelegentlich konnte er mich gut unterhalten aber trotzdem ist er etwas überbewertet. Die Matches liefen zumeist nach dem selben Schema ab und unfassbares Mic Work oder riesen Ausstrahlung hatte er meiner Meinung nach auch nie. Trotzdem gibts eine hohe Wertung wegen der starken In-Ring Fähigkeiten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jimpanse1980wrote on 01.07.2009:[10.0] "Der einzige Wrestler von dem ich mir die Biographie kaufen werde. Zu seiner Hochzeit der technisch versierteste Wrestler. Auch wenn er in der WCW völlig falsch eingesetzt wurde und er mit dem heutigen Stil meines erachtens nicht mitgehen könnte/würde, ist er einfach the best there ist, was and ever will be."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Aquifelwrote on 15.06.2009:[10.0] "Am Mic zwar kein großer Showman, aber sehr glaubwürdig/authentisch. Und über seine technischen In-Ring Fähigkeiten braucht man wohl eh kein Wort zu verlieren. Ganz großes Wrestling-Kino."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Eddiewrote on 02.06.2009:[10.0] "The best there is, the best there was, the best there ever will be, zumindest was die WWE anbetrifft, er war wirklich einer der besten, 10 Punkte."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Afroman Undertaker 619wrote on 21.05.2009:[10.0] "Bret Hart war früher ein Unglaublicher Wrestler. Schade Das sein Bruder Owen Hart gestorben ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Blazewrote on 14.05.2009:[8.0] "War in allen wichtigen Bewertungskriterien klar über dem Durchschnitt und wrestlerisch einer der besten weltweit, aber am Mic gehen andere noch weitaus besser. Außerdem bin ich kein großer Fan seiner Matches. Zu Old School und zu viel Bearbeiten von einzelnen Körperteilen sagen mir oft nicht so hundertprozentig zu. Dennoch immer Top Leistungen und einer der ganz großen."
Rating: 8.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The-Game91wrote on 06.05.2009:[10.0] "Ohne Frage einer der besten Wrestler aller Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: REYMVPwrote on 04.05.2009:[10.0] "Der beste Westler aller Zeiten. Technik erste Sahne!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Brainbreakerwrote on 26.04.2009:[10.0] "Yeah, einer der besten Techniker durchaus, aber es war auch sein Kampfgeist, den sein Gimmick verkörperte, gegen jeden in den Ring steigen zu wollen und keine Angst vor der Herausforderung zu empfinden. Auf ihn wirkten Psychospiele nie. Das fand ich so faszinierend. Der Inbegriff des konditionierten Kämpfers, der auf Strategie und Technik setzt. Dass das im Wrestlingsport, der zu einem beträchtlichen Teil auch Entertainment sein soll, und bei seinen Fans nicht nur auf Gegenliebe stoß, war klar. Aber selbst als Heel gefiel mir der Hitman später sehr gut, da er vom Grundtenor seines Stils eben nicht abwich, sondern ihn um unfaire Aktionen erweiterte (Figure-4 am Ringpfosten). Für einen herausragenden Über-Wrestler gehört allerdings insgesamt mehr dazu. Nämlich Mic-Work, Charisma, Veränderbarkeit des Gimmicks. Das hat Michaels, aber leider nicht Bret. Weshalb nach 7 Jahren im WWE-Mainevent die Puste raus war. Sein Weggang war kein Beinbruch für die WWE. Btw: Michaels hat ihn gerade in den Jahren 92 und 93 als WWE-Champ öfter over gebracht, als jeder andere. Man denke an die tollen Leiter-, Cage- und Maineventmatches (zB SurvivorSeries 92). Insgesamt gibt es aber trotzdem 10 pkt, da sein Gimmick einen riesigen Zeitraum beständig war, er fast durchweg hochqualitative Matches zeigte und rein geschichtlich eine wichtige Persönlichkeit zwischen der Hogan- und der Attitudeära darstellte."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Eggywrote on 25.04.2009:[10.0] "Ein großartiger Techniker, der jeden over bringen konnte und selbst noch die schlechtesten Worker im Ring gut aussehen ließ. Sein Match mit Davey Boy bei Summerslam '92 hat mich gänzlich davon überzeugt, was für ein Talent in ihm steckte und dass er selbst dann ein gutes Match inszenieren kann, wenn sein Partner alles vorher Besprochene vergisst. Die Kritik an seiner Persönlichkeit kann ich überhaupt nicht verstehen, da Shawn Michaels nie freiwillig bereit war Bret over zu bringen oder den Titel zu droppen. What goes around comes around. Selbst wenn Bret damals eine Klausel in seinem Vertrag hatte, die ihm kreative Kontrolle für die letzen 30 Tage seiner WWF-Karriere garantierte, saß Vince McMahon am längeren Hebel und stellte Bret Hart als Egoisten dar, der nicht bereit war sein letzes Match in der WWF zu verlieren. Bret's Buch hat mir gezeigt, was damals wirklich passiert ist und wie die Backstagepolitik damals war. Abgesehen von der Kontroversität um sein Ende in der WWF war er trotzdem der beste Techniker seiner und zukünftiger Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: vanmillerwrote on 20.04.2009:[10.0] "Schade das er so früh aufgehört hat..... Einer der Besten seiner Zeit, und währe es sicherlich auch heute noch!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CM Punk Mitbwinnerwrote on 15.04.2009:[10.0] "Einer der besten, wenn nicht sogar der beste Techniker in der Geschichte der WWE"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: manager1977wrote on 07.04.2009:[9.0] "The Excellence of Execution. The Best there is, best there was and the best there ever will be. Einzig seine WCW Zeit gefiel mir nicht so besonders."
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Father Nelsonwrote on 01.02.2009:[7.0] "One of the best workers of all time. Read his book and .... see yourself!"
Rating: 7.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rattlesnakewrote on 31.01.2009:[10.0] "Technisch überragend, wusste auf alles eine Antwort und konnte jeden Gegner zu einem guten Match führen. Sein Micwork war sicher nicht das Beste, aber das machte er im Ring mehr als wett. Einzig störend fand ich die immer gleiche Schlußsequenz seiner Fights; er hätte eigentlich genug Moves zur Verfügung gehabt. Seit Montreal wurde er zudem etwas weinerlich; ich kann zwar sein Mißfallen verstehen, aber irgendwann hätte er es gut sein lassen sollen. Trotzdem gab es in meinen Augen nicht einen einzigen langweiligen Fight mit ihm. Und wer seine technischen Fähigkeiten anzweifelt, sollte sich ernsthaft fragen lassen, ob er vom Wrestling etwas versteht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BaptisteZorGwrote on 29.01.2009:[10.0] "Der kompletteste Wrestler in- und außerhalb des ringes.. Technisch überragend und viele der heutigen stars könnten sich eine scheibe von Ihm abschneiden. 10 punkte, was sonst?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Miteamexicowrote on 25.01.2009:[10.0] "Was soll man zu Bret Hart schon sagen? Ausser das er der Beste Wrestler aller Zeiten ist Punkt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: SweetMetalMusicwrote on 04.01.2009:[10.0] "Bret ist schlicht und einfacht the best there is, the best there was and the best there ever will be! Seine Matches gegen Austin, Owen Hart, British Bulldog, Shawn Michaels, Undertaker usw. sind absolute Klassiker. Er brachte allerdings auch sehr gute Matches gegen weniger talentierte Wrestler wie z. B. Rody Piper und Diesel hervor. Seine Fehden waren allesamt ganz großes Kino. Besonders die gegen Owen und Austin und niemand konnte jemaden so gut over bringen wie Bret Hart. Ohne ihn hätte Austin wohl nicht das erreicht, was er schließlich erreichte."
Rating: 10.0
Sentiment: 0.64
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MarcB126wrote on 26.12.2008:[10.0] "Was soll man nur über Bret sagen, ich kenn ihn seit meiner Kindheit, er war immer der beste und der größte für mich. Ich denke er ist ein Held für viele und wird es immer sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hirnklopswrote on 05.12.2008:[2.0] "Ach, warum soll ich mich hier verstecken... Ich find' ihn scheiße. Seine Matches sind langweilig und Schema F, und gerade als Babyface war er so derart widerlich und abartig, das ging überhaupt nicht klar. Gepaart mit seinem Ego... Bäh. Völlig zurecht Opfer des Screwjobs geworden, hätte nur vielleicht schon ein Jahr früher passieren sollen."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: michawrestlingfanwrote on 20.11.2008:[10.0] "the best there is. the best there was. the best there ever will be!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Pinguwrote on 13.10.2008:[10.0] "Mein Idol in Kindheitstagen. Zählt für mich heute neben HBK zu den 2 besten Wrestler die es in den letzten 20 Jahren gab."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sabu316wrote on 12.10.2008:[8.0] "Für mich war er deutlich schlechter als sein Bruder Owen. Alleine die Finishsquenz seiner Matches zeugt von seiner nicht unbedingt abwechslungsreichen Art zu kämpfen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: El Reywrote on 07.10.2008:[10.0] "Der Beste... Der wohl technisch versierteste Wrestler aller Zeiten. Seine Wrestling skills sind unübertroffen und mit seinem Mic-Work zieht er Props ohne Ende. Er hätte sogar noch höher hinaus kommen können wenn es diesen gewissen Tag in Montreal nicht gegeben hätte. Er ist mein All Time Favorite."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MrWrestlingwrote on 02.10.2008:[10.0] "The best there is, the best there was and the best there ever will be!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: StoneColdRevowrote on 29.09.2008:[10.0] "Bret Hart ist einer der besten Wrestler überhaupt. Super InRingSkill und nette Promos(auch wenn ich bisher nicht viele gesehen). Am besten war wohl das Steel Cage Match gegen Owen Hart, das werd ich nie vergessen^^."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Wise Warriorwrote on 15.09.2008:[8.0] "Guter harter Wrestler. Als IC-Champ super und sein erster World Champion-Run war auch sehr glubwürdig. Aber ich muss sagen, dass sein Weggang das beste war, was der WWE später passieren konnte. Nimmt sich glaub ich etwas zu ernst und zu wichtig..."
Rating: 8.0
Sentiment: 0.5166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Stalker1987wrote on 29.08.2008:[10.0] "Dieser Mann hat so viel für das Wrestling getan. Jeder, der ihm weniger als 10 Punkte gibt hat keine Ahnung!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: andrekoenigwrote on 23.08.2008:[8.0] "Der "Hitman" ist meiner Meinung nach nicht der charismatischste Wrestler gewesen, aber er hat einfach mit jedem ein gutes Match bestritten. Er hat mir eigentlich auch von Anfang an gefallen. Und er ist meiner Meinung nach der größte Techniker überhaupt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: 180778MVPwrote on 18.08.2008:[10.0] "Nachdem ich Bret Hart im Jahr 1991 das erste Mal gesehen habe, wurde ich ein Wrestling und natürlich Hitman Fan. Ich war begeistert von seinen In-Ring Fähigkeiten. Als Mark habe ich mit Ihm die Höhen und Tiefen bis ins Jahr 1993 miterlebt. Dann waren meine Mark Zeiten vorbei. Obwohl ich wußte das (fast) alles vorgeplant ist, schaffte er es doch immer wieder die Geschichten so rüberzubringen, daß sie echt wirkten. (Nur als Beispiel seine Fehde mit Jerry Lawler). Leider wußte die WCW dann nix mehr mit ihm anzufangen, sodaß meines Erachtens nach der "Hitman" Charakter im Jahr 1997 zerstört wurde. Für mich ist und bleibt er immer "der Beste den es gibt, gab und geben wird"."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: squadra3wrote on 29.07.2008:[9.0] "Einer meiner All-time Favorits, allerdings ist eine Welt für mich zusammengebrochen als er zur WCW wechselte. Zu Montreal - life is hard!"
Rating: 9.0
Sentiment: -0.36458333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: wXw Fanwrote on 25.07.2008:[8.0] "Sicherlich gut aber keinesfalls einer der besten aller Zeiten. Dafür im Ring zu eintönig und zu farblos."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Dave Concordiowrote on 24.07.2008:[10.0] "Mein Fav aller Zeiten, grandios der Hitman! The Best there is, the Best there was and the Best there ever will be... absolutely!"
Rating: 10.0
Sentiment: 0.8125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Weihnachtsmannwrote on 23.07.2008:[4.0] "4 Punkte, weil er wirklich ein sehr großes Moveset hatte und solide Leistungen im Ring bringen konnte. Die Abzüge gibts dafür, dass er mich mit seiner "5-Moves-of-Doom"-Sequenz immer gelangweilt hat, und dafür, dass er sich selbst im fortgeschrittenen Alter von 51 Jahren noch aufführt wie ein kleines Kind dem man den Lolli weggenommen hat. (Letzes Beispiel bei der Preisverleihung auf der er einen Preis für seinen verstorbenen Vater entgegengenommen hat)"
Rating: 4.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Champwrote on 22.07.2008:[10.0] "Absoluter Weltstar! Wegen ihm hab ich mit angefangen Wrestling zu sehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ButchIncwrote on 20.07.2008:[10.0] "Bestnote für den Besten, den es gibt, gab und geben wird. Derjernige Wrestler, der mich zum Wrestling-Fan Anfang der 90er machte in der Fehde gegen seinen Bruder. Für mich wird es keinen Besseren geben. Never!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Berndwrote on 20.07.2008:[10.0] "Held meiner Kindheit und daher völlig außer Konkurrenz."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Tunisian Warriorwrote on 12.07.2008:[10.0] "Wahrscheinlich der beste Techniker aller Zeiten. Leute die ihn nachdem Screwjob als Egoisten sehen sind entweder verblendet oder stehen auf Shawn Michaels."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ecw foreverwrote on 22.06.2008:[10.0] "Sein eigener Spruch trifft es. The Best there ist, the best there was, and the best ever will be. Für mich persönlich der beste Wrestler den es je Gab! Seine beweglichkeit. Einfach so wie er agierte. Das er so sauber war und keinen Wrestler verletzte. Dazu auch noch dass grösste Wrestlemania Match ever bei WM12 gegen HBK. Ein unvergesslicher Worker."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: LordTrailerwrote on 13.06.2008:[10.0] "Diese Wertung war leicht. Technisch einer der besten aller Zeiten (und das nicht nur in der WWE) und auch mit Charisma gesegnet. Viele sprechen ihm Micwork ab, aber dann schaut euch mal seine 96/97 Zeit an."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hitman-Hartwrote on 13.06.2008:[10.0] "Ja "The Best there is, the Best there was an the Best there ever will be"! Was anderes kann man zu diesem Mann nicht mehr sagen. Für mich persönlich einer der bedeutensten Wrestler aller Zeiten. Mein absoluter Fave mit dem Undertaker. War übrigens auch meine allererste Wrestling Action Figur. Ich Liebe diesen Kerl einfach und wünsche mir die gute alte Zeit zurück...."
Rating: 10.0
Sentiment: 0.775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: gerybundy68wrote on 09.06.2008:[6.0] "War zu seiner Zeit sicher einer der Top Wrestler. Ich konnte den Hype um seine Person allerdings nie nachvollziehen. Hat mich mit seiner Art , auch in der Matchführung nie angesprochen."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JthePwrote on 02.06.2008:[10.0] "Ganz klar einer der talentiertesten und versiertesten Techniker. Sein Charakter als Wrestler kam autentisch rüber und lies viele der lieblosen Gimmicks im Schatten stehen. Hat sich meiner Meinung nach beim MSJ 1997 falsch verhalten. Aber das tut der sehr guten Note keinen Abbruch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: JohnnyCashwrote on 28.05.2008:[10.0] "Hier kann ich nicht unparteiisch bleiben. Er war mein erster echter Liebling & noch heute freu ich mich, wie Homer S. über Donuts, wenn ich Interviews oder ähnliches von ihm lese. Er wirkte IMMER echt & war im Ring die Bombe. Sein Leitspruch sagt alles. Einer der wenigen denen ich die 10 Punkte gebe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: suntan superstarwrote on 26.05.2008:[8.0] "Bret Hart, der Wrestler schlechthin in der damaligen WWF. Niemand führte die Moves so perfekt aus wie er. Doch Promos halten war nie seine Stärke. Desweiteren hat er sich es bei mir verscherzt, als er anfing immer wieder über den Montreal Betrug zu fluchen, dann über Owens Tod, dann über seinen Schlaganfall u. s. w. Aber ich respektiere seine Leistungen im Ring und das ist das was zählt"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: dariawrote on 26.05.2008:[9.0] "vor 8 Jahren hätte ich sicher noch eine 1 gegeben, mittlerweile hat uns alle die Realität eingeholt"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Peisistratoswrote on 15.05.2008:[10.0] "Bret Hart hat mein Interesse am Wrestling geweckt und blieb all die Jahre hinweg für mich immer der Größte. Die 10 Punkte gibts nur, weils keine 11 oder 12 gibt ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Frutzwrote on 15.05.2008:[10.0] "Für mich war dieser Mann der absolute Wrestler. 1992 habe ich mit dem Wretling angefangen, ich war 9 Jahre alt und noch relativ willig, den Face/Heel-Vorgaben zu folgen. Aber im Laufe der Zeit, hat sich dieser Wrestler zu meinem absoluten Liebling als Mark entwickelt. Ich erinnere mich noch an meine Freude, als er gegen Flair Ende 92 endlich seinen ersten WWF-Champion-Titel holte. Als er zum Heel in Amerika turnte, habe ich mich auf die Shows in Kanada gefreut und der Montreal-Screw-Job wurde ja zum Glück zur Genüge aufgearbeitet. Da ich absoluter WWF-Verehrer war, habe ich die WCW nur am Rande wahr genommen, und seine Zeit (im Nachhinein wohl zu meinem Vorteil) dort nicht erlebt, so dass er mir als "Excellence of Execution" in Erinnerung geblieben ist. Auch heute bin ich der Überzeugung, dass er noch eine Rolle spielen könnte, auch wenn ich ihn mit Sicherheit nie wieder in einem WWE-Ring sehen werde. Er hat das Wrestling der 90iger bestimmt und verdient d. 10"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Die Gurkewrote on 13.05.2008:[10.0] "Genialer Techniker, besonders zu der Zeit. Außerdem finde ich das er, aufgrund toller In-Ring Fähigkeiten, den Top Babyface gut verkörpern konnte, besser als die meisten die sich daran versucht haben."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Amazing Bluewrote on 03.05.2008:[10.0] "Was soll man zu ihm noch sagen, der Typ ist/war einfach großartig! Hitman 4 Life!"
Rating: 10.0
Sentiment: 0.9375000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Riley Mathewswrote on 28.04.2008:[10.0] "Einer der Besten überhaupt. Schon alleine das Vince ihn so viele Freiheiten im Ring gibt beweist das. Bret ist der Wrestler vor dem ich am meisten Respekt habe. Was er alles durchgemacht hat egal ob privat oder beruflich z. b. : Montreal 1997, Absturz bei der WCW, Karriereende durch Verletzung, der Tod von Owen, Davey Boy Smith, Curt Hennig, Rick Rude und den ganzen anderen. Auch in 20 Jahren kann man noch über ihn sagen:The Best there is, The Best there was & The Best there ever will be."
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Know Nothingwrote on 23.04.2008:[10.0] "Er hat sich die Bestnote verdient. Wrestlerisch Perfekt. (Obwohl ich seinen Bruder Zeitweise besser fand. ) Er war als Bösewicht genial und als Publikumsliebling sowiso. In der WCW ist er leider etwas eingebrochen, das liegt allerdings daran das er nicht richtig eingesetzt wurde."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:"War absolut zurecht an der Spitze der WWE, nur hat er den Montreal Screwjob offentsichtlich nie verkraftet. Bret Hart ist mir schlichtweg zu seltsam, als dass ich ne Wertung abgeben könnte."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Robert Taylorwrote on 17.04.2008:[10.0] "Einer meiner absoluten Faves of all time! The best there is, the best there was and the best there ever will be! Eine wahre Legende dieses Sports!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ultimate-warrior-xwrote on 29.03.2008:[10.0] "Pink an black attack forever: the best there was, the best the is, the best there ever will br!"
Rating: 10.0
Sentiment: 0.5466666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Ruppiwrote on 27.03.2008:[10.0] "Hatte alles für die Spitze. Hervorragende Technik, am Mic sehr gut und Charisma. Sicher waren seine Kämpfe (vor allem das Ende) meist sehr ähnlich, aber das Publikum wollte es auch immer so. Außerdem Teil eines der besten Tag Teams und eines der besten Stables. Außerdem brachte er das Ladder Match in die WWE und bestritt das erste Iron Man Match bei einem WWE-PPV."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Instant Classicwrote on 14.03.2008:[4.0] "Auch wahnsinnig overrated. Seine Matches haben mich nie interessiert und Charisma hatte er sowieso nicht."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: FifaFrancescowrote on 13.03.2008:[0.0] ""Einer der größten im Wrestling. Hatte so gut wie alles was man brauchte um in diesen Geschäft eine Legende zu werden. Konnte aus jedem gute Matches herausholen und verletzte dabei niemanden. Eigentlich müsste ich ihm die Note 1 geben aber da er in meinen Augen durch den Screwjob bewiesen hat dass er ein großer Egoist ist und sich nicht für jemanden hinlegen wollte, den er halt nicht ausstehen kann, hat er alle Sympathien bei mir verspielt. Hätte bei der HoF-Aufnahme nochmal eine Chance aber sein Ego hat es wohl nicht zugelassen also so leid es mir tut Bret mehr als die 6 hast du nicht verdient. " Mehr werde auch ich dazu nicht sagen."
Rating: 0.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Darkman9912wrote on 18.02.2008:[10.0] "Der beste Wrestler den es gab. Da braucht mir keiner was anderes sagen. Wie kann man nur behaupten er wäre Unloyal gegenüber der WWE und hätte Vince mies behandelt. Einige scheinen hier alles andere als Ahnung zu haben. Bret hat ein 3 Jahres vertrag der WCW (bei den er 9 Millionen verdienen hätte können) abgelehnt, weil er bei der WWE bleiben wollte. Er hat ein 20 Jahres vertrag mit deutlich weniger Geld angenommen und wurde von diesem Schleimigen und hinterhältigen Arschloch namens Vince McMahon betrogen. Da kann mir einer sagen was er will. Bret ist der beste den es gibt, gab und geben wird. Keiner, auch kein Vince kann die Legende Bret Hart töten. Er wird immer seine Fangemeinde haben. "Real man wear Pink""
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Fumaryuwrote on 07.02.2008:[10.0] "Gehört zu den besten Wrestlern der WWE/WCW/WWF. Sein Verhalten gegenüber dem Publikum war einfach klasse (sehr sympatischer Star) und er war unglaublich beliebt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: mdbnasewrote on 13.01.2008:[10.0] "Perfekter Wrestler, der (mit seiner Familie) viel fürs Wrestling getan hat und großartige Matches gezeigt hat! Leider ausserhalb des Ringes sehr arrogant ... trotzdem reichen seine Skills, sein Mic Work und seine Ausstrahlung für die volle Punktzahl. Ausserdem einer der wenigen Worker die VinniMac die Stirn bieten konnte und dies auch getan hat!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Stone Cold Andywrote on 04.01.2008:[8.0] "Bret war jahrelang das Aushängeschild der WWF, aber da ich mit seinen Leistungen im Ring (man möge mich köpfen) nicht sehr viel anfangen konnte gibt es von mir "nur" eine 2."
Rating: 8.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "Über ihn kann man nur sagen:"Der Beste den es gib, gab und geben wird! ""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hanksterwrote on 29.12.2007:[10.0] "Für mich eine lebende Legende und einer der besten Wrestler aller Zeiten. Das Mic-Work war seine einzige Schwäche. Ohne den Montreal Screwjob wäre seine Karriere sicher noch einige Jahre in diesem Glanz weitergegangen. Das große Ego und die Hinterhältigkeit der Clique hat ihn am Ende zerstört."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MA Excellentwrote on 29.12.2007:[10.0] "Wenn es um "Pure Wrestling" geht, mein absoluter Allzeit-Favorit! Neben den fantastischen Fähigkeiten im Ring auch tolle Ring-Psychologie und somit Aufbau spannender Matches und Fehden, auch ohne das ganz große Mic-Work. Unvergessen das Match im Wembley Stadion; die Fehde mit Owen; das Iron-Man Match und der Montreal Screw-Job (leider). In Kanada und eigentlich auch auf dem Rest des Globus (Ex-USA) ein unvergessener Held."
Rating: 10.0
Sentiment: 0.26785714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Supertechwrote on 26.12.2007:[10.0] ""The best there is, the best there was, the best there ever will be" - zwar großkotzig, aber mit Ausnahme des letzten Teils absolut korrekt. Ich habe keinen besseren Techniker gesehen, höchstens Owen konnte mit ihm mithalten. Ob er allerdings gegen die heutigen Superstars wie John Cena, Batista oder Randy Orton so gut aussehen würde, weiß ich nicht. Schade, dass Bret schon 2000 aufhören musste."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: corneliawrote on 23.12.2007:[10.0] "bret hart ist für mich der beste na eben exelence of exikution"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Amurebkuwrote on 16.12.2007:[8.0] "War ein absolut toller Wrestler! Im Ring klasse und auch sein gesamtes Auftreten. Am Mic ebenfalls super! Einer der Wrestler die immer alles gegeben haben. Schade wie es am Ende alles abgelaufen ist. Hätte ihn auch gerne in einem echten Finale gesehen und nicht der ganze Mist der Am Ende seiner aktiven Karriere ablief. Für den traurigen Abgang kann er ja nichts, aber das verbaut für mich persönlich die volle Punktzahl."
Rating: 8.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: stryker9wrote on 06.12.2007:[10.0] "Die Coolnes in Person. Wrestlerisch 1a. Von der Einstellung Harts kann sich heut manch einer was abschneiden"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Meanbeastwrote on 02.12.2007:[10.0] "Bret Hart ist in meinen Augen der beste technische Wrestler aller Zeiten, von daher ist die von mir gegebene Note in meinen Augen völlig berechtigt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Winnie The Poohwrote on 09.11.2007:[10.0] "Der Beste, den es jemals gab, der Beste den es gibt und der Beste den es jemals geben wird..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Knurkselwrote on 06.11.2007:[6.0] "Fand ich nie wirklich interessant und verstehe den ganzen Hype um ihn nicht... sicher hatte er gute Matches, aber auch meist gegen Leute gegen die jeder gute Matches hat. Außerdem nicht wirklich gut am Mic und immer nur am rumheulen gewesen, wurde zurecht von Vince gescrewed."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Benny110106wrote on 28.10.2007:[10.0] "Einfach der Beste den es gab, gibt und geben wird in meinen Augen. Hart war der Grund warum ich Wrestling guckte und dabei hängen geblieben bin. Er ist der wahre World Champ und ein wahrer Ehrenmann dieses Sportes."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Matt Mackswrote on 27.10.2007:[10.0] "Bret Hart ist einer meiner Lieblingswrestler, schon immer gewesen. Von '93 bis '95 war er einer der Hauptgründe, warum ich die WWF geguckt habe und die zweite Hart Foundation '97 wird möglicherweise für immer mein Lieblingsstable bleiben. Hart war konstant großartig im Ring, was seine in den ersten Jahren sehr eintönigen Promos wett machte. Das er auch gute Promos halten konnte, bewies er als Anführer der Hart Foundation. Hart wurde in der WCW kaputtgebookt und schien nach dem Tod seines Bruders wegen dem zu oft (falsch) interpretierten Montreal Screwjobs lange Zeit verbittert zu sein. Der Auftritt bei der HOF 2006 jedoch hat mich beruhigt, dass Bret die Leidenszeit zum Ende seiner Karriere überwunden hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rock is Jerichowrote on 27.10.2007:[0.0] "Ich fand ihn noch nie gut und werde ihn auch nie gut finden. Am Mic hat er mich nie überzeugt und ich finde das er sich Vince gegenüber ganz schön sch... verhalten hat!"
Rating: 0.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: The Pink and Black Attackwrote on 26.10.2007:[10.0] "- mat wrestling vom feinsten - the excellence of execution, das ist nicht umsonst. mein kindheitshero. ganz klar 10"
Rating: 10.0
Sentiment: -0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: DrBreswrote on 26.10.2007:[8.0] "Als Face für meinen Geschmack etwas blass, dazu der eher mäßige Abstecher in der WCW mit unrühmlichen Ausgang... für die zehn reicht es nicht ganz. Aber Respekt vor seiner Leistung, seinen grandiosen Matches und seine überdurchschnittliche Technik."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Rated-R-Fanwrote on 21.10.2007:[10.0] "THE BEST THERE IS, THE BEST THERE WAS AND THE BEST THERE EVER WILL BE !"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: CM Dannywrote on 20.10.2007:[10.0] "Um ihn zu beschreiben muss man ihn nur zitieren. "The best there is, the best there was and the best there ever will be". Schade nur dass er den Wandel im Wrestling nicht so ganz mitgegangen ist und immer einer der "alten" Generation geblieben ist. Dies ist bei seinen Wurzeln allerdings auch wieder verständlich."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: HBK-Xwrote on 17.10.2007:[10.0] "Ich bin der Meinung zu Bret Hart muss man nichts mehr schreiben! Super Wrestler, Super am Mic! Und zu Recht in der Hall of Fame! Thank You Bret"
Rating: 10.0
Sentiment: 0.42708333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Guralwrote on 10.10.2007:[10.0] "CANADAŽS FINEST... the best there is, the best there was and the best there EVER will be."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Baldrickwrote on 10.10.2007:[10.0] "Alles andere als ne 10 kommt nicht in Frage! Seit meinen seligen Mark-Zeiten mein absoluter Favorit und objektiv betrachtet einer der härtesten und besten Worker aller Zeiten. Und wer hier weniger als 4 Punkte gibt(lass ich im Falle von absoluter Antipathie mal durchgehen), hat nicht verstanden, dass es hier um Wrestling geht!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Oli10wrote on 01.10.2007:[10.0] "Für mich einer der besten und sympatischten Wrestler die je einen Ring betreten haben!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Wuschl 85wrote on 01.10.2007:[8.0] "Wohl einer der technisch versiertesten Wrestler. Einer meiner früheren Lieblinge. Ich war jedoch entäuscht wie Bret auf den Screw Job reagierte und dieses heut immer noch tut. Bei der Aufnahme in die Ruhmeshalle wollte er das HBK die Halle verlässt sonst würde er es tun, absolut daneben. Und das alles, weil er sich nicht für jemnden hinlegen wollte den er nicht leiden konnte? Unprofessionell! Aber einer der besten und glaubwürdigsten Champioins der Geschichte, ebnete den schmaler gebauten Wrestlern den Weg zum großen Gold."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Bullit69wrote on 30.09.2007:[6.0] "Hat mich nie besonders interessiert! Und sein Mic-Work war jetzt auch nich so der... Hit! Und er nervt nur noch mit seinem Screwjob!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Schockwrote on 28.09.2007:[10.0] "BEST THERE EVER WILL BE! Mein Jugend-Idol und ohne Frage einer der besten Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Bret Hartwrote on 24.09.2007:[10.0] ""The best there is, the best there was and the best there ever will be! " - Man kann wohl nicht mit Bestimmtheit sagen wer tatsächlich der beste Wrestler aller Zeiten ist, aber eines steht fest: Der Name "Bret Hart" wird in dieser Diskussion immer und immer wieder fallen - und das vollkommen zurecht! Es ist kein Zufall dass er an 2 von 4 *****-Matches derWWF/WWE beteiligt war!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: mugel 187wrote on 24.09.2007:[10.0] "The best there is, the best there was and the best there ever will be! noch Fragen"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Alan Smitheewrote on 14.09.2007:[8.0] "Hassliebe! Ja er ist einer der besten Wrestler aller Zeiten. Ja er ist eine meiner absoluten Lieblinge und ja ich könnte mir den ganzen Tag Matches von Hitman ansehen. ABER... jedes mal wenn er auch nur das "M" aus Montreal oder das "S" aus Screwjob hört muss er zum gefühlten 8 Billionsten mal über die ereignisse von '97 sprechen und das NERVT! Wenn er damit anfängt kann ich Stone Cold nur zustimmen der mal sagte: "Put an "S" in front of Hitman and you know what i think of him. " Und aus dem Grund kann ich ihm einfach nicht die 10 Punkte geben."
Rating: 8.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Lord Loviswrote on 13.09.2007:[10.0] "Tja, er ist der lebende Beweis, dass man über das Tag Team Wrestling zu einem Topstar aufsteigen kann. Am Anfang hat er mit Jim Neidhart eines der wohl besten Tag Teams allerzeiten gebildet und hat dann den Sprung an die Spitze mit schönen Intercontinental Matches geschafft. Er und Shawn Michaels haben einige Krimis aufgestellt und der Montreal Screwjob hat auch wieder seine eigene Geschichte. Alles in allem sehr vollkommen -> 10..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: real americanwrote on 12.09.2007:[10.0] "Großartigern und intelligenter Wrestler der neben Flair wohl die meisten ***** Sterne Matches lieferte. Außerdem ist der Hitman ein toller Micworker und Entertainer der die Attitide Ära mit einleitete. Gefiel mir als Heel und als Face was nur wenigen gelingt. Psoitiv ist ebenfalls das er nie jemanden verletzte."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: HHH-Stephwrote on 06.09.2007:[10.0] "Meiner Meinung nach gab es in den 90ern keinen besseren Wrestler als Bret Hart. Er konnte gegen jeden Gegner einen starken Kampf zeigen. Dazu noch gewaltiges Charisma und gutes Micwork. Außerdem konnte er sowohl als Face, als auch als Heel überzeugen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Manuelwrote on 06.09.2007:[10.0] "Dank diesem Herren bin ich Wrestlingfan geworden, er ist eine WWF Legende. Er hat alles was man braucht und sogar meine Mutter und Oma kennen ihn und die kennen nur wenige."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Baszdmegwrote on 19.08.2007:[10.0] "Seine Catchphrase sagt alles. Wohl der beste Wrestler der 90er Jahre."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Aaronwrote on 18.08.2007:[10.0] "Technisch wohl der beste aller Zeiten! Dazu noch am Mic super!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: yogywrote on 17.08.2007:[10.0] "Der Beste aller Zeiten! Es wird keinen mehr geben der mich so mitreist wie der Hitman. Bei seinen Matches konnte man immer mitfühlen. Er hat das Prädikat "Weltklasse" verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Grissomwrote on 15.08.2007:[10.0] "Einer der besten überhaupt. Schade, dass die WCW ihn so schlecht gebookt hat. Über den Montreal Screwjob braucht man nicht viel zu sagen. Da hat jeder seine Meinung zu..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: H-Scorpiowrote on 01.08.2007:[8.0] "Natürlich ein Klassewrestler. In der WWF mit dem ein oder anderen denkwürdigen Match. In der WCW wirkte er oft wie ein Fremdkörper, was aber mMn nach nicht hätte sein müssen. Er kam zwar prinzipiell auch als Heel meistens gut rüber, man hätte ihn aber imo als Gegner der nWo und Hogans etablieren sollen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Garvinwrote on 30.07.2007:[8.0] "Er war gut, keine Frage. Er war sogar in der Lage mit den schlechtesten Athleten einigermaßen erträgliche Matches zu liefern. Allerdings gab es immer bessere und es wird sie auch immer geben. Teilweise viel zu überbewertet."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: shannonmoorewrote on 28.07.2007:[10.0] "Aus der alten Zeit mein Favourite. Klasse im Ring einfach sympatisch. Ich war richtig überrascht wie er auch den Heel spielen konnte. Unvergessen seine Fehde mit Goldberg die leider so ein tragisches Ende nahm..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sharpshooterwrote on 27.07.2007:[10.0] "Für mich persönlich ist Bret der rundum beste Wrestler allerzeiten. Er hat mich seinerzeit (als Solo Wrestler) Anfang der Neunziger zum Wretling gezogen. Seine saubere Art, sein Charakter, sein Auftreten und natürlich seine Qualitäten im Ring machen ihn einzigartig. Damals in der Grundschule ging es vielen so, die dank dem Hitman auf das Wrestling aufmerksam wurden. Klar hat er niemals die Bekanntheit oder einen so großen Wrestlingboom ausgeköst wie ein Hulk Hogan seinerzeit, aber dafür stand er um ein vielfaches mehr für das Wrestling an sich und seine Kunst. Seit fast sechszehn Jahren halt ich dem Hitman nun die treue und egal was er auch tat, er bleibt immer einer der besten Wrestler, egal wen es jetzt gibt, egal wen es vorher gab und egal wen es je geben"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Weegelwrote on 08.07.2007:[10.0] "Was gibts da zu sagen? The Best there is, there was and there ever will be"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: GrecoreHelmswrote on 04.07.2007:[10.0] "the best there is the best there was and the best there ever will be!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Blade Bourdeauxwrote on 01.07.2007:[10.0] "Mit Blick, auf seine tollen Matches , seinem Charisma, seinem Einfluss auf das Fantum in Deutschland und seinen Titelerfolgen, ist die Note außer Frage."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: fravaderowrote on 01.07.2007:[10.0] "Meiner Meinung nach einer der komplettesten und sympathischten Wrestler überhaupt. Ich schau seit mehr als 20 Jahren Wrestling und KEINER ausser evtl seinem Bruder Owen oder der Hulkster und dann Chris Benoit haben das Wrstling zu dem gamcht, was es jetzt ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Metalpunisherwrote on 28.06.2007:[10.0] "Lange Rede kurzer Sinn! Ein Mann der das Wrestling liebte und die Fans liebten ihn! Traurig in seiner Kariere sind nur das unrühmliche Ende in der WWF mit davorigen push als Heel, das was die WCW mit dem Hitman veranstalte und ein Kariereende durch eine schlecht Choordinierte Aktion eines Mannes der vom Wrestling soviel versteht wie ein Eskimo vonm Kühlschränke verkaufen! Er ist der BESTE DEN ES GIBT GAB UND GEBN WIRD! Die Exelence Of Exicution Bret The Hitman Hart!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: ShaneOwrote on 28.06.2007:[10.0] "The best there is, the best there was, the best there ever will be! Meiner Meinung nach der Beste Worker alles Zeiten!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Steven McWheelerwrote on 27.06.2007:[10.0] "Der Held meiner Kindheit! Seine Matches seh ich immer noch gerne! Heutzutage wäre er immer noch erfolgreich denke ich, wenn sich nicht so viel im Business geändert hätte..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Adrammelechwrote on 24.06.2007:[10.0] "Er war mein Held als ich ein Kind war, und ich finde ihn immer noch toll wenn ich die alten Aufnahmen ankucke! Bret gegen Undertaker oder gegen Owen auf der Leiter bleiben unvergessen!"
Rating: 10.0
Sentiment: 0.9375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Ganz klar einer, wenn nicht der Mann der 90er Jahre! Zudem einer von wenigen Wrestlern, die mir als Face besser gefallen und dass, obwohl er selbst als Heel gut ist! The best there is, the best there was and the best that there ever will be!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Trevedaswrote on 24.06.2007:[10.0] "Einfach der Beste! Im Ring unübertroffen. Einer, der Größe bewiesen hat und zu seinem Wort steht. Eben nicht nur ein hervorragender Wrestler sondern auch eine bewundernswerte Persönlichkeit. Er bleibt einfach unerreicht!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Necronwrote on 24.06.2007:[10.0] "Mein erster Lieblingswrestler überhaupt - bis heute nahezu unerreicht. Vor allem seine Intensität in all seinen Aktionen sind unerreicht. Am Mikrofon pointiert und ergreifend, im Ring eine Klasse für sich. habe mir auch zuletzt die Hitman-DVD geholt. Da wird einem erstmal dieser zunächst recht uneinleuchtende Kampfname klarer... wie dem auch sei - volle Ten Points."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: RatedRKOwrote on 24.06.2007:[10.0] "In meiner Kindheit mein absoluter H E R O. verdiente zehn punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Elvis33wrote on 24.06.2007:[10.0] "Neben Mr. Perfekt einer der besten Wrestler. Damals hatten die Jungs noch echt was drauf!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Angus666wrote on 24.06.2007:[8.0] "Er war nicht mein persönlicher Fav. Zählte aber auf jeden fall zu den besten seiner Zeit und zurecht eine Legende des Wrestlings."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: kaupi 1909wrote on 24.06.2007:[10.0] "Man kann meiner Meinung nach die Crème de la Crème des Wrestlings mit drei Namen verdeutlichen - "Ric Flair, Sting, Bret Hart"."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: WCWlerwrote on 24.06.2007:[10.0] "Einer der besten Techniker die je in einem WWF-Ring standen. Leider seit der Series 97 immer wieder zurückgeworfen, in der WCW total falsch eingesetzt und dann verletzt worden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: timbo7111wrote on 24.06.2007:[10.0] "Technisch absolut grandios und vor allem hat er seine Gegner immer sehr gut aussehen lassen. Viele unvergessene Matches gehen auf seine Kappe, und deswegen hat der Hitman sich die 10 Punkte redlich verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: BMwrote on 24.06.2007:[10.0] "Früher mein absoluter Held. Die Storylines haben mich immer richtig mitgerissen. Die Matches haben mir fast immer gefallen, auch wenn manchmal doch so ein schlechteres dazwischen war. Aber da frage ich mich auch, ob es nicht auch am Booking lag. Es tat richtig weh, als ich bei International Impact 3 gesehen habe, was heute aus ihm geworden ist. Schade das er gesundheitlich so angeschlagen ist. Aber vielleicht sieht man ihn ja irgendwann noch mal ON AIR. Und wenn es nur als NON-Wrestler ist."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: D3adm4nwrote on 24.06.2007:[8.0] "er war zwar vor meiner Zeit, aber man hört eigentlich nur gutes über ihn..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Nachtfalterwrote on 24.06.2007:[10.0] "Sicher nicht der wichtigste Mann in der Geschichte dieses Sports, aber mein persönlicher Kindheitsheld und rein handwerklich einfach einer der besten Wrestler aller Zeiten. Die Excellence of Execution, das trifft es."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: MarcHardwaywrote on 24.06.2007:[10.0] "Einfach der beste techniker den es gib, gab und geben wird. Leider in der wCw verheizt, er hätte nie wechelsn sollen. Die Sache in Montreal hat er nicht verdient"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: belroiwrote on 24.06.2007:[10.0] "Der Godfather im Wrestlingring. Mehr brauch ich nicht sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Dangerouswrote on 24.06.2007:[10.0] "Der absolute Held meiner großen WWF-Begeisterung Anfang der 1990er. Charisma, In-Ring Skills, Gimmick, hat einfach gepasst!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Mediwrote on 24.06.2007:[10.0] "The best there is, the best there was and the best there will ever be! Noch Fragen?"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Hypocrisywrote on 24.06.2007:[10.0] "Schade, dass die so einzigartige Karriere so ein schlechtes Ende nehmen musste. Bret Hart konnte ähnlich wie Chris Benoit heute eigentlich aus jedem ein gutes Match holen. Ist halt die alte Schule aus dem Dungeon in Kanada."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: King of Queenswrote on 24.06.2007:[10.0] "Der beste Wrestler, den es je gab, In-Ring Fähigkeiten sind ohne Frage großartig. Er könnte wohl aus jedem ein gutes Match rausholen. Unvergessene Klassiker, aber vor allem die schon genannten, unglaublichen In-Ring-Fähigkeiten rechtfertigenganz locker die Höchstpunktzahl. The best there is, the best there was and the best there ever will be, Bret "The Hitman" Hart!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Kruemelwrote on 24.06.2007:[6.0] "Nie gemocht. Ringqualität vorhanden, aber nicht DER Gott wie ihn viele ansehen. Gesamter Charakter gefällt mir nicht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sancezzwrote on 24.06.2007:[10.0] "Say it simply: The Best there is. The Best there was. The Best there ever will be."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Sandman16wrote on 24.06.2007:[10.0] "Einer der ganz Großen im Wrestling. Angefangen mit der Hart Foundation - eines der besten Tag Teams überhaupt - bis hin zu seinen Erfolgen als mehrfacher World Champion. Hat sicherlich von dem Steroid-Skandal profitiert, aber auch ohne hätte er bestimmt eine große Karriere gehabt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: jerseyhoolwrote on 24.06.2007:[10.0] "Zu Recht mehrmaliger WWF-Champion, zahlreiche Klassiker (Owen Hart, Steve Austin, British Bulldog, Mr. Perfect, .... ), Identifikationsfigur der WWF. Richtig ist aber auch, dass das Ende seiner Karriere unglücklich kam & auch sein Niveau in der WCW nie mehr die Klasse der WWF ereichte. Dennoch einer der ganz, ganz Grossen des Wrestling. 5 Daumen nach oben! :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=565&gimmick=Bret+Hart
Comment: Giant2wrote on 24.06.2007:[10.0] "Neben Dynamite Kid der beste Wrestler, der je einen Ring betrat. Seine Titelerfolge sprechen für sich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Chefiwrote on 04.02.2025:[10.0] "Naito is very over and has the best aura in all of NJPW. Although he's broken down these days, he used to be able to go in the ring like no other with the Aura to prove it. Great in ring skills, great story teller and is the living definition of what a super star is in wrestling."
Rating: 10.0
Sentiment: 0.34891975308641976
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Dweeeabwrote on 30.09.2024:[10.0] "The AURA this man has is otherworldly and undeniable. Even at this stage of his career where he cant go as well as he used to hes still incredibly over. Part of some of the best matches of all time for me partnered with his character work and how over he is makes one of the best wrestlers of all time."
Rating: 10.0
Sentiment: 0.9666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: nabigoyewrote on 25.09.2024:[10.0] "Charisma, Ausstrahlung, In-Ring unglaublich (gewesen). Naito war dennoch seit letztem, zumindest seit diesem Jahr nicht mehr der, der er einst war. Kommentar bezieht sich trotzdem auf die Karriere an sich. Unglaubliche Matches mit Okada, Omega, Tanahashi, Ibushi und eigentlich so ziemlich jedem mit dem er im Ring stand. Hatte immer was besonderes an sich, vorallem seit der Mexiko Exkursion und dem daraus resultierenden LIJ Stable. Starker Charakter, selling, in-ring. Alles. Leider hat er wie so viele andere die so viele jahre einen so unglaublich intensiven Stil wrestlen, nicht mehr die Athletik um mitzuhalten. Ich hoffe dass er bald seine Karriere beendet um sich nicht zu schaden, sofern seine Knie nun mal sind wie sie sind. Tetsuya Naito, einer der größten seiner Ära."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: jsbortswrote on 08.09.2024:[10.0] "An extraordinary wrestler who has sadly declined sharply in his last couple years. I believe Naito's career would be looked at as even more impressive if his victory at Wrestle Kingdom 14 had been a year or two earlier and had truly capitalized on the new eyes on New Japan at the time, and at the peak of Naito's cool factor. Its a shame he can't still show out the same way he could for the first decade plus of his career"
Rating: 10.0
Sentiment: 0.17342171717171717
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: BigVan JimmyWangYangwrote on 21.08.2024:[9.0] "Somebody please get this man some new knees, Naito is fresh out the shop with a new coat of wax and a bright sparkly shine given how washed he is. Regardless of his inability to really move let alone wrestle nowadays it doesn't take away from the fact that Naito in his heyday was absolutely one of the best in the world and has the resume to back that claim up. Long live Yujiros buddy, long live the eyeball man, long live Tetsuya Naito and long live our troops"
Rating: 9.0
Sentiment: 0.18863636363636366
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Joe907wrote on 28.07.2024:[10.0] "Naito has always been one of the top guys for NJPW. Super talented and charismatic. Great technician skills and master of phycology. His matches with Omega and Okada are legendary. He built one of the best stables in Japan. One of the pillars of NJPW."
Rating: 10.0
Sentiment: 0.6904761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Willie 19200wrote on 24.07.2024:[10.0] "One of my favorite New Japan stars that I just love to see succeed. The fact that he went from getting the Roman Reigns treatment by getting booed for being an over the top baby face, to becoming one of the greatest anti-heroes in pro wrestling, not to mention putting on some classics with the likes of SANADA, Will Ospreay, Kazuchika Okada, Hiroshi Tanahashi, Kota Ibushi, and so many others."
Rating: 10.0
Sentiment: 0.5123376623376623
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Aspionwrote on 22.07.2024:[9.0] "(Sorry english is not my firtst language) My only problem with him is the fact that he can be that much dynamic like in the past (bcs of his health), Its sad for my but as his fan i need to write that..... i think he needs to end career, still for me one of the goats on NJPW"
Rating: 9.0
Sentiment: -0.20833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Orchardwrote on 21.07.2024:[10.0] "Father time is undefeated but that doesn't diminish what he did up to now, his charisma and character are amazing and his moveset is one of my favourites ."
Rating: 10.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: ajsmileswrote on 19.07.2024:[7.0] "Back when I first started watching New Japan, it was stacked with talent like Okada, Kenny Omega, Will Ospreay, Shingo Takagi, (still technically being able to walk) Tanahashi and many others I'm forgetting. My favorite was Naito. He could work the crowd like a motherfucker and was able to bring amazing feats of athleticism with a more limited moveset than most guys in Japan. He had a great character, was the leader of (then) the best faction in New Japan. But in the last few years he's had so many disappointments. So many matches where you can just see he doesn't care and wants to get out of there as quickly as possible. I know he's had multiple long-term injuries, but man... Take some time off and get them healed then. But what we got is this and it knocked him down signifantly for me, I don't even really care about him anymore. His uncaring attitude is really annoying sometimes. Maybe that's why he was never THE guy for New Japan like Okada or Tanahashi."
Rating: 7.0
Sentiment: 0.23969641469641473
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: djones06wrote on 03.07.2024:[7.0] "When he wants to give a good performance, he does, although those days are rare now as his body breaks down. I give Naito a seven for the simple fact that he has always been uneven in his output, and although the crowd supports him he has never felt like THE top New Japan guy."
Rating: 7.0
Sentiment: 0.1851010101010101
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: dulonicdaddywrote on 26.06.2024:[6.0] "I like Naito he is pretty cool, kinda fun, a really groovy kinda guy. His move-set has always been solid despite his finisher being a complete hit or miss kinda ordeal. Kinda never understood his immense popularity in NJPW despite kinda understanding his leading of their most popular faction."
Rating: 6.0
Sentiment: 0.25555555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: shockwrote on 17.05.2024:"Naito is definitely one of my favourite wrestlers currently. His charisma is off the charts and he is just such a likeable performer that it's hard to root against him in any situation. While he's slowed down a bit in recent years, the aforementioned qualities still make him a must-see wrestler. He's got a great moveset with some very impressive moves such as the Stardust Press, although he rarely uses it now. Destino is one of the most hit or miss finishers for me though - it all depends on the guy who's selling it. Some very athletic guys like Ospreay or Omega usually sell it perfectly by taking the bump on their head more as opposed to just landing flat on their back. On the other hand, it doesn't look as good on a lot of bigger guys in my opinion. Naito has some of the best matches of the last 10 years or so, and he gets a 10/10 from me."
Rating: No rating found
Sentiment: 0.22403381642512077
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: danzitorockwrote on 06.05.2024:[10.0] "Tetsuya Naito is the symbol of a whole generation, he's the guy that defended New Japan multiple times and criticized people who left, the guy who keeps putting New Japan and puroresu over, a true Japanese icon, a role model. Naito's story is based on imperfections, he couldn't be the next Tanahashi, a babyface hero that he wanted and tried to be, because fans rejected him, he couldn't be the golden boy, because the fans rejected him, that was Okada, and even with a path of so many rejections and frustrated plans, he managed to reinvent himself, and bring one of the coolest gimmicks that Japan has ever saw, after an excursion to Mexico he returned Ingobernable and Tranquilo. A guy with so many lows, found himself, in a poetic way, as a rebel, an anti-hero, a man that doesn't play by the rules or respect traditions, and the character not only worked, but became probably the most popular and beloved in his country, what a turnaround. Naito is the ultimate renegade, what a trajectory he has, he's the face and one of the greatest wrestlers New Japan has ever had, being a Naito fan is wild, the whole time it felt things weren't going to work out his way, but I think it's safe to say now that he fulfilled everything and buried every demon."
Rating: 10.0
Sentiment: 0.24061264822134387
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: cal9099wrote on 14.04.2024:[9.0] "A very talented wrestler and storyteller no doubt, but there's something for me that is lacking with Naito when I compare him to the likes of Okada, Tanahashi, Jay White. Maybe it's his mediocre physical appearance? I can't quite put my finger on it as the majority of fans seem to love him, but I've just never quite got the hype. I still get excited for his matches and I do get that big fight feel, but I'm just not as invested in him as I'd like to be despite his long list of great matches."
Rating: 9.0
Sentiment: 0.22611111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: BigPeanutGuywrote on 13.04.2024:[6.0] "If we're talking about Naito's full career, the man is a living, walking, breathing icon. Wonderful wrestler on his day and has had a very fun career thus far. But now? 2024? Naito feels like an old tool that needs replacing sooner rather than later. He can't move like he used to, he can't carry matches like he used to neither. Gave SANADA his best match to date at least, not like that's hard. But his latest IWGP championship run felt more like a stalling pass rather than something NJPW can build off."
Rating: 6.0
Sentiment: 0.30439393939393944
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: BruceMarcos524wrote on 15.03.2024:[10.0] "Tetsuya Naito is one of the most intriguing characters in all of New Japan. The skill, the charm, the charisma is simply undeniable and unmatched. People were rejecting him as the next heroic babyface being too cheesy and too played out. Glad that Naito took it up a notch and became one of the best anti-heroes of wrestling. His matches are very entertaining, and I liked that some of his signature moves named after Spanish female names like Valentia, Esperanza and Gloria. The Destino is one of the most beautiful and smoothest moves that I've ever witnessed, and I never get tired watching it. Most of his moves, his persona and his gesture incorporate a Mexican stereotype without being racial about it. The Los Ingobernables de Japon may considered be as one of the best factions that the NJPW ever produced, and I love that all of the members have distinct individuality, and the same time shows a brotherhood amongst the group. The way that he dresses in an LIJ shirt in undercard tag matches and dresses in a suit in big time matches denotes the level of importance Naito is in every match. A good company man that once criticized Shinsuke Nakamura and Kazuchika Okada for leaving their homegrown company to the big leagues, proved that Naito is a reliable and a dependable guy. I also love that his smug nature highlights himself as more important than the championships he wears, it's like Naito doesn't even care that he's the champion but needed to do so just for the sake of accomplishments. A guy who pokes fun of the opponents and telling his opponents to "Tranquilo" is savagely amazing. One of the best showmen of all-time."
Rating: 10.0
Sentiment: 0.3592375366568915
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: NEVERoverweightChampionwrote on 11.03.2024:[10.0] "One of the greatest wrestlers of his era with a fascinating underdog character and a lot of charisma. Knows how to put a match together, can work with anyone and is able to move on from the standard New Japan big match formula like he has shown when he fought Jericho in a no DQ or when he fought Taichi in their series of matches in 2019. Has great psychology and is one of the best at pacing his matches. Plays so well with the crowd and is one of the most captivating performer on the mic. The story of his career took a major turn when he became Ingobernable, he has a really unique path. His rivalries with Okada and Tanahashi specifically are some of the best stories ever told in the ring. He has a great career, almost winning every title possible, at this point he has been the biggest star in New Japan for more or less 8 years, has been constantly over and loved by the fans even when the booker made some questionable decisions. Find a wrestler in the current wrestling landscape who manages to stay as over for 8 years, you just can't because this type of connection to the crowd is very unique and that's why he is a special wrestler. Throughout his career he has shown a great ability to adapt his style to the role he was playing. A very explosive style as the Stardust Genius, a slower pace and some cheating/shenanigans during his first year as an Ingobernable. And now at his age and with all the years of work and brutal matches he went through he's not in his prime physically even if he can still go if he really wants to like he has shown with the Okada and Ospreay matches he has done in less than 24 hours during the G1 33. But he fights smarter, finds safer ways for him to work the neck (notably more emphasis on his elbow strikes to the neck) but still remains as over, still gets the same strong reactions from the crowd. Is still one of the best at creating rivalries and giving character interactions that makes the crowd interested. This is how you can see how big of a star he is and how great of a wrestler he is. In an era with more flashy wrestlers who barely know what selling is or how to pace a match properly, his work can be underappreciated and downplayed but the reactions and the love he gets from the fans don't lie. He is a legend and a true genius in the ring."
Rating: 10.0
Sentiment: 0.30399711399711404
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Lauchlanwrote on 26.02.2024:[10.0] "Naito will go down in history as one of the best to ever step into a ring, he oozes charisma and backs it up in the ring. Often he has been overshadowed by Okada, Tanahashi and Omega but when push comes to shove he'll be remembered as the guy who never gave up and won the fans over by believing in himself, the peoples champion."
Rating: 10.0
Sentiment: 0.2148148148148148
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Hyunminleewrote on 24.02.2024:[10.0] "Naito is the one of the greatest wrestlers of this generation. When he was stardust boy, his in-ring performances were great but little boring. After gimmik changed and became the leader of LIJ, his in-ring skills upgraded and became best in the world. His LIJ gimmik is coolest gimmick ever. His promo is really fun and he can sell every style of matches. Finally he accomplished his dream which failed at WK 2020, and I hope him to keep his eyes and knees in good condition."
Rating: 10.0
Sentiment: 0.2569444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Wrestling Foreverwrote on 09.02.2024:[10.0] "Ich sehe bei Naito aktuell total das er Heel ist. Hat man auch gut bei der Pressekonferenz vom G1 Climax 25 gesehen. Naito war frech, respektlos und hat sich total wie ein Badass benommen. Auch bei seinem Match gegen Fale sah man es. Aggressiv und brutal schlug er auf Fale ein, schubste den Ringrichter weg und war auch genervt als die Kamera ihm nach dem Sieg immer einfing. Stardust ist verschwunden El Ingobernable (Der Widerspenstige) ist geboren. Im Ring ist Naito echt ein super Mann und vielleicht tut ihm der Heelturn auch gut. Edit 25. 12. 2016 Für mich der Japanische Wrestler 2016. Durch Los Ingobernables de Japon und seiner neuen Einstellung ein großartiger Heel geworden. 2017 soll es so weitergehen. Edit 09.02.2024 Tetsuya hat echt nach einigen Jahren wieder eine ganz großen Titel gewonnen."
Rating: 10.0
Sentiment: -0.13541666666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: JXN95wrote on 17.01.2024:[9.0] "A very good to great wrestler (if slightly below some of his contemporaries with maybe not being quite as consistent), but an amazing character guy and super charismatic. You pair that with one of the best career narratives around, and there's little wonder why he's still possibly the most over wrestler in japan, and one of my personal favorites ever."
Rating: 9.0
Sentiment: 0.3782638888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: CDProsProwrote on 17.01.2024:[10.0] "A story tale ending of 18 years destino paid off at Jan 4th 2024. Ungovernable to the core, rebuild his vision of what no limit is and suppress his class to build Los Ingobernables where Andrade, Rush, La Mascara and La Bestia created controversy on its wake. Numerous factions. Los Ingobernable De Japón. His true family and since then replayed his dream of headlining the Tokyo Dome that he dreamt as a child to roll calling his family that took 8 years of frustration, neglect and despair to overcome injuries, betrayals and typecasting as the guy who cant win the big one in the end. It had been broken and with LIJs new found stardust Ingoverable energy. World title 4 reigns at 41 years old and a define legacy good & bad with the once smashed up and rejuvenated intercontinental title. Naito climbed the mountain to become the IWGP World Heavyweight Champion. Battles with the likes of Kenny Omega, Michael Elgin, Kazuchika Okada, Kota Ibushi, Shingo Takagi, Will Ospreay, Hiroshi Tanahashi, KENTA, Hirooki Goto, Kuji Mutoh. Very good in-ring wrestler and can win the big one. Destino."
Rating: 10.0
Sentiment: 0.2246969696969697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: The Quick Manwrote on 13.01.2024:[8.0] "I'm not gonna lie, although I appreciate Naito's FANTASTIC character and personality, he's never struck me as THE guy in New Japan. When other faces are Tanahashi, Ospreay and Okada, he strikes me as one of the weaker ones. But still, a low tier NJPW main eventer is still an NJPW main eventer, and you do NOT get to that level without being at least "very good"."
Rating: 8.0
Sentiment: 0.18755892255892256
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[10.0] "Tetsuya Naito's story starts off similarly like The Rock's, debuted with a gimmick that tried to copy people before him, then turned heel after people rejected him at first and became a legend that people couldn't hate anymore LOL! Tetsuya Naito is one of New Japan Pro Wrestling's finest talents of all time, an amazing wrestler with incredible athleticism, flawless technician who can have classic bangers left and right with anyone, having amazing matches with the likes of Kenny Omega, Michael Elgin, Kazuchika Okada, Kota Ibushi, Shingo Takagi, Will Ospreay, Hiroshi Tanahashi (who he copied when he did the "Stardust Genius" gimmick), Shinsuke Nakamura, and so many more I could name. God level charisma, he could stand there and scratch himself and he would receive a Steve Austin level pop from it. Ever since he developed the tranquillo/Ungovernable gimmick, he has showcased he has amazing character work, full of charisma, psychology and storytelling abilities, this man is a god in New Japan for a reason, amazing heel with all the tools that he used to become a big star."
Rating: 10.0
Sentiment: 0.34625541125541115
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: lilrorowrote on 29.10.2023:[6.0] "Perhaps because of his eye disease, he makes many mistakes in his techniques and is very dangerous. Although he is not very old, he lacks physical strength and is slower than his peers. I'm so disappointed in his current situation because I used to liked him very much"
Rating: 6.0
Sentiment: -0.026057692307692323
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: coppercowrieswrote on 13.08.2023:[8.0] "Can be tremendous when he chooses and with the right opponent, but his career has been inconsistent even during his prime years, which are behind him. His tranquilo gimmick will either hit for you or it won't - for me it wore out its welcome years ago, and I fast forward through his excruciating entraces now. But he stays over with the Japanese crowd and has a lot of good will with fans."
Rating: 8.0
Sentiment: 0.27414965986394557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: gargoylesmainwrote on 14.06.2023:[8.0] "Naito was never a favorite of mine, even though I recognize why he was so over with the crowd, and his in ring potential when paired with a motivating opponent like Okada or Omega. For a couple of years he was the entire package of charisma and physical talent, but even then his matches could be hit or miss, and now his body is pretty beaten down."
Rating: 8.0
Sentiment: -0.025925925925925925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheOneAndOnlyCactuswrote on 12.04.2023:[10.0] "Naito has always been a natural in the ring. Very smooth between the ropes, great technician, very athletic, great seller. But, after he ditched the Stardust Genius gimmick and became Ungovernable, he became much more charismatic, his psychology got better and his mic skills improved. This turned him from a good wrestler to a great and legendary one, one that left an indelible mark on his generation and beyond."
Rating: 10.0
Sentiment: 0.535
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: GeneBlastKyodaiwrote on 31.01.2023:[10.0] "One of the most charismatic wrestlers in Japanese history. His story is amazing, hes an amazing worker even with bum knees and I will absolutely say he deserves another IWGP world title run before he retires."
Rating: 10.0
Sentiment: 0.4000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: benh2wrote on 20.01.2023:[9.0] "A fantastic smooth worker, great technical skills and psychology. Feeds really well for his opponents and great seller most of the time. A great example of how character work can elevate the in-ring product. Naito was always good in the ring but the heel turn took his matches to a whole new level. Insanely charismatic. Really hampered by his knees now but for a three or four year period there was arguably one of the most complete wrestlers in the world."
Rating: 9.0
Sentiment: 0.4157575757575758
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Enriquepollazzowrote on 27.11.2022:[10.0] "Naito is a 10. He is amazing at everything a wrestler is supposed to be amazing at and he makes other guys cooler by proximity and he sells merch and is cool enough people love his promos and anything he says. He is pretty much the best."
Rating: 10.0
Sentiment: 0.37500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Mcbolskywrote on 22.11.2022:[10.0] "Tied with Ibushi for my favorite Japanese wrestlers of all time. He has an amazing moveset and created probably the top NJPW faction of all time in LIJ. Can work tags, 6- mans, and singles matches with ease and has championships for all three in his resume. His match with Omega in the 2016 G1 is probably my favorite match of all time. 10/10"
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: MainEventMasterwrote on 10.11.2022:[10.0] "A 10/10 wrestler and a 10/10 gimmick, somehow one of the most underrated wrestlers of all time. I do wish we would see more Naito-like wrestlers in the US."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Luna100wrote on 09.11.2022:[8.0] "A great wrestler, but can be undriven and you can always tell when. His gimmick works amazingly as a heel, but he doesn't work as well as a face, even if he is super over, my 3rd favourite member of LIJ. He does hit very high peaks, never quite ever having a MOTY, although some were close, especially his series against Ibushi. Unfortuately it took him a bit to get were he is now, and may be cycled down soon, and will feel like a bit of missed opertunity."
Rating: 8.0
Sentiment: 0.2551111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: texasyoshwrote on 16.09.2022:[9.0] "Despite all the success Tetsuya Naito has had in his career, it still feels a bit of a "what if" when it comes to him. One of the most impressive wrestlers, and one of the most charismatic personalities NJPW has had. Even as Stardust Genius his matches were still good. Nowadays he's physically battered, and can't go at the pace he once did."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Tyler72wrote on 14.08.2022:[7.0] "Against the right opponent is where Tetsuya shines the most. I think his move set is decent, but is rather in danger of getting old fast. Watching him I feel it's more obvious that he's picking and choosing the matches where he'll bring more or less power and intensity which is respectable but less entertaining."
Rating: 7.0
Sentiment: 0.24325396825396828
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Leo 4 Kingwrote on 06.08.2022:[3.0] "Naito's acting is one of his main defaults. Also his knees' injuries avoided him from making great performance those last years. He is not absolutly awfull but it's a average perfomer that didn't change his gimmick which as overstate its welcome."
Rating: 3.0
Sentiment: 0.26944444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: SoaKaswrote on 27.05.2022:[10.0] "He was very unlucky with the timing of his big win over Okada at WK in 2020 but nonetheless, Naito is just awesome and an instant favourite of most people who start watching New Japan."
Rating: 10.0
Sentiment: 0.3766233766233766
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Okaro143wrote on 14.04.2022:[10.0] "One of the most charismatic Wrestlers of his time. Insanely over with the crowd, he had perhaps the best character development in history: From a rejected hero to an undeniable & ruthless anti-hero. Incredibly graceful in the ring but his strongest suit is his tranquilo character work; Probably the coolest character work I have seen."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: GriffinXwrote on 24.01.2022:[9.0] "Naito is excellent. To his credit he could of easily been swallowed up the failure of the first attempt to make him a main event. Instead he used that to be the start of what would make him a legend."
Rating: 9.0
Sentiment: 0.3066666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Kungwrote on 10.01.2022:[10.0] "Naito's the man. He's a supreme talent in the ring. He's as charismatic as any wrestler I've ever seen. He's the leader of one of my all-time favorite factions to ever exist. And he's had classic matches with some of the greatest wrestlers of all time, from Okada and Tanahashi to Jericho and Omega. Dude's a legend."
Rating: 10.0
Sentiment: 0.5416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "Stepping away from the IWGP Heavyweight Championship picture could've been rough for Naito, but he found a way to produce, mainly against his great in-ring rivals - Ibushi (WK and Castle Attack) and ZSJ (Summer Struggle and the G1). Like Ibushi he had a rough injury, but hasn't let up in the ring. He remains one of New Japan's most popular figures, and should be featured more even if it's not in the main event scene."
Rating: 9.0
Sentiment: 0.2966329966329966
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: benny5bellyswrote on 04.12.2021:[7.0] "I like Naito but of those on top in the modern era of New Japan he has always been my least favourite. His peaks are unbelievably good but he can be very inconsistent which maybe a result of battling long term niggling injuries."
Rating: 7.0
Sentiment: 0.19805194805194803
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: FAZEDandCONFUSEDwrote on 11.08.2021:[10.0] "The best anti-hero since Stone Cold Steve Austin but crossed with Ric Flair's level of charisma. He's the coolest."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: pk Rushwrote on 23.07.2021:[10.0] "He is one of the most charismatic wrestlers of this generation, and may be at the top of that list. He just oozes cool. On top of that, he's also a great worker and has had multiple 5 star matches (for lack of a better term) with other greats in his class many times over. The story of his ascent to the IWGP Title and finally beating Okada at the Tokyo Dome is one of the best long term angles I've seen."
Rating: 10.0
Sentiment: 0.3410714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: NaJoBronwrote on 25.04.2021:[10.0] "Tetsuya Naito is my favorite wrestler in the world. A real main event wrestler star, with a truly inexhaustible charisma, with the highest level of psychology in the ring, a colorful arsenal of techniques and an magnificent gimmick. I would call him a real anime character considering all the ups and downs of his career. He is not a perfect wrestler, he does not have the body of a Greek god, with some opponents he has mediocre or bad chemistry, numerous injuries slowed him down a lot, but even in unsuccessful matches I see fire in his eyes and a huge passion for pro-wrestling. Nato has always been and remains itself, and for this I have boundless respect for it."
Rating: 10.0
Sentiment: 0.04572649572649574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: KyleEnjoysWrestlingwrote on 10.03.2021:[9.0] "A great pillar of NJPW. Has a relatability to him that makes him a natural babyface. Solid in the ring."
Rating: 9.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: michmoose21wrote on 09.02.2021:[9.0] "A very charasmatic and great performer. Connects with the crowd greatly. I enjoy most of his matches, but I think some of his matches are long and slow, which is why this is not a 10. I love Naito though."
Rating: 9.0
Sentiment: 0.2928571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Oregano Jacksonwrote on 04.02.2021:[7.0] "Very overrated in my opinion. Sure he's got a lot of charisma but, excluding the bouts with Kenny, he's a very mediocre in-ring worker and I don't remember the last time he had a great match with anyone."
Rating: 7.0
Sentiment: 0.16999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: pierreMinnewrote on 28.01.2021:[10.0] "Maybe the best worker in the world today and surely the best seller alongside Shiozaki. The only guy in NJPW's main event today who deserves to be there ( with Ibushi ) because he is the best worker of the company. Charismatic as f*ck. I mark so hard on him."
Rating: 10.0
Sentiment: 0.48437499999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: djv2448wrote on 06.12.2020:[8.0] "in terms of charisma, Naito might be top in the world right now. regardless of his booking or his in ring performances. the crowd stays firmly behind him and LIJ. He is also an uber talented in ring performer, but I personally find him to be inconsistent in that regard. His series with Okada was very good when it was expected to be great, and his series with Evil did not meet expectations either. With Naito you can find some absolute classics with every star on the new Japan roster, but you can also find some that are not anything special. As his bouts with EVIL showed, Naito lacks the ability to regularly drag performers up to his compete level in big matches. Which is something that Okada has always excelled at, and as his main point of reference, its hard not to dock Naito points for that. on his best day, Naito is in the conversation for the best all around wrestling talent in the world. but on other days he comes off as simply ordinary"
Rating: 8.0
Sentiment: 0.13282003710575138
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheGreatKunkwrote on 15.11.2020:[10.0] "Generational Talent with incredible ability to tell a story. His promos are always incredible, his matches are consistently great to downright MOTY candidates. He doesn't cater to AEW fanboys craving a spot fest. His matches stake brilliant cohesive ring work with tension and stakes. Giving him a rating below 8 is selling Naito incredibly short. This is all without considering the output he has supplied NJPW with hundreds of matches a year."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: medousewrote on 29.10.2020:[10.0] "Guys in NJPW are great athletes but usually they lack charisma and personality. This guy has both. Incredible wrestling skills and electrifying personality. He created one of the best faction - Los Ingobernables de Japon. The best entertainer on Japanese wrestling scene."
Rating: 10.0
Sentiment: 0.5750000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: BlakeFR37wrote on 25.09.2020:[10.0] "He's as my pov, the real ace of this gen. Don't know if he will have the career he deserves but... we shall see."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: hassan01wrote on 10.09.2020:[10.0] "One of the best the wrestling industry has to offer today . Truly a main event wrestler and very entertaining and impressive wrestler to watch. The charisma he brings to the ring is high octane. Really happy to see him as IWGP Heavyweight and IWGP Intercontinental champion and hoping he has a long reign as double champion. A very decorated , gifted and a very loved wrestler among wrestling fans around the world."
Rating: 10.0
Sentiment: 0.4851515151515153
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Ma Stump Pullerwrote on 06.09.2020:[9.0] "Naito already has paved a rather impressive resume for himself. Starting off as a ambitious project to create the successor to Tanahashi (a feat that, at the time, seemed impossible) Naito was burdened with boots far too big for him to handle. Don't get me wrong, the Stardust Genius Naito was a impressive wrestler and was uniquely paced away from Tanahashi's moveset, being incredibly dynamic and could put on a strong show, but his promos and persona felt.... forced, and he clearly wasn't on the level that he was booked at, both quality and in terms of crowd support. Thankfully a excursion and a organic heel turn (if the fans don't care about him, why should he? ) not only got him over as a fresh act, but eventually went full circle and got him back as a babyface. I will say that Naito's strengths come more from his psychology and pacing: much like Tanahashi, he's more of a storyteller than anything else, and understands that simple acts can do more than flips can. That being said, when he can turn on the gas, he does so hard, and he can really pull off a solid match when he's with the right opponent. Naito does suffer from not having a definitive run with the IWGP Championship, with both of his reigns being cut short, and for lacking that ability to get a lesser talent over as well as Okada or Tanahashi can. Naito is great with someone near or at his in ring talent, but as his feud with EVIL has shown, he can't exactly get someone below him to that level."
Rating: 9.0
Sentiment: 0.14017857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: lehaimkhwrote on 22.07.2020:[10.0] "Once upon a time, New Japan wanted to create a new babyface. It's a good thing you changed your mind. Tetsuya Naito became an original character with excellent charisma, for which he was loved by the audience. I like the tactic, when Naito trolls the opponent and brings him to emotions. This is interesting to watch."
Rating: 10.0
Sentiment: 0.5068181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Viniciouswrote on 26.06.2020:[8.0] "Slow, calculating, charismatic. Love and adore almost everything Naito does, he's hampered by "not winning the big one" angles, and also that he's stuck a rung below Okada and Tanahashi."
Rating: 8.0
Sentiment: 0.09
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: OrangeAidCrushwrote on 15.02.2020:[10.0] "Easily one of the greatest wrestlers of all-time. The guy is incredibly charismatic, incredibly over and a fantastic in-ring talent to boot. I don't think Naito is the perfect wrestler but he's very close. He struggled a bit before he went to Mexico but even before Los Ingobernables, he was still an above-average in-ring talent. His feud with Ibushi is going to go down in history as one of the best feuds ever, The G1 final against Kenny is an iconic match. His G1 match against Shingo last year was also an all-time classic. The guy is just money. You don't main event the Tokyo Dome twice without being anything less than an amazing wrestler."
Rating: 10.0
Sentiment: 0.40902777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Bobbythreesixteenwrote on 06.01.2020:[9.0] "Ich fand ihn immer sehr schön anzuschauen. Er workt immer gut und hat auch ein gewaltiges Charisma. Bei Wrestlekingdom hat er mich jetzt endgültig überzeugt und ich hoffe er wird dem Main Event gerecht, wobei ich da wenig Zweifel hege."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: VillainClubwrote on 23.12.2019:[8.0] "Im Jahr 2017 hätte ich ihm noch die volle Punktzahl gegeben, das Jahr war fantastisch. Mit seiner Niederlage gegen Okada bei WK ging es mit ihm bergab. Die Fehde gegen Jericho hat im deutlich geschadet. Charisma hat der Kerl ohne ende."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TylerWhitewrote on 29.11.2019:[9.0] "Tetsuya Naito ist eines der besten Gesamtpakete aktuell im Wrestling.  Seine Karriere fing jedoch sehr holprig an, doch ist ein Paradebeispiel dafür wie man einen absolut verbookten Wrestler wieder retten kann und zu einem der beliebtesten und interessantesten Wrestler der Company machen kann. Aber auch Naito war damals noch nicht so interessant, ihm fehlte der It Factor, ähnlich auch wie z. B. Nakamura in seiner frühen Karriere. Doch dann änderte er sich komplett, nachdem er bei CMLL teil der Los Ingobernables wurde, gründete bei NJPW die LIJ und ist einer der besten Character Worker im Wrestling weltweit. Sein Gimmick ist einfach extrem geil und er ist unfassbar charismatisch und das zieht er auch dauerhaft durch, angefangen bei seinem absolut genialem Entrance bis hin zu seinem trolling während der Matches. Im Ring ist er jedoch sehr Tagesabhängig. Klar kann er mit seinem Gimmick immer wieder geile Stories erzählen, aber technisch ist das hin und wieder recht holprig, an anderen Tagen aber auch wieder absolut genial und auf Top Niveau. Im Ring vielleicht etwas hinter Okada, Tanahashi, Ibushi aber insgesamt kenne ich kaum ein besseres Gesamtpaket und einen besseren Charakter im Wrestling aktuell."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: zephyrwrote on 03.11.2019:[8.0] "Tremendously charismatic wrestler but I really can't justify giving him a 9 or 10 anymore after such a lacklustre year of in-ring work."
Rating: 8.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Iceqwrote on 08.10.2019:[10.0] "Unfassbar beliebt bei der japanischen Crowd und auch außerhalb Japans super over. Manchmal ein bisschen faul wenn es ums Wrestling geht, aber wenn er mal so richtig loslegt kann auch Naito mit jedem Wrestler ein gutes Match zeigen. Außerdem ist er mit großer Wahrscheinlichkeit der charismatischste Wrestler denn es gerade so gibt. Gehört zu meinen absoluten Lieblingen und ich hoffe der IWGP Titel lässt nicht mehr lange auf sich warten, auch wenn ich das jetzt schon seit Jahren mir erhoffe."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Roode66wrote on 01.08.2019:[10.0] "Er kann gut wrestlen, einige seiner Kämpfe waren sogar sehr gut. Dazu hat er ein gewisses Charisma, auch wenn ich das bei Japanern im Vergleich zu US-Wrestlern meistens und auch diesmal verhältnismäßig gering ausgeprägt empfinde. Und bei den Fans kommt er auch merkbar gut an. Er hat eigendlich so ziemlich alles, um bei New Japan bald zu den ganz großen zu gehören. Aber mich poersönlich stört am meisten, dass sich in meinen Kopf der Tanahashi-Vergleich zu sehr aufdrängt. Naito wirkt auf mich wie Tana 2. 0 und das besonders fiese daran ist, dass Tanahashi so verdammt awesome ist und man keinen Wrestler finden kann, neben den man in New Japan im Vergleich schlechter wegkommt.  Edit: Ein paar Jahre später hat sich vieles geändert. Von 7 auf 10/10"
Rating: 10.0
Sentiment: 0.42424242424242414
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Aurtletheturtlewrote on 16.07.2019:[10.0] "NAITO! NAITO! NAITO! El Ingobernable is one of the most charismatic wrestlers in the world, in the history of japanese professional wrestling. His gimmick is incredible and this has only helped lead him to being Japan's favorite wrestler, his momentum has slowed in recent years due to bad booking decisions on Gedo's part but when you add his charisma to his incredible in ring ability and promo skills then you are going to have an all-timer main eventer. NAITO! NAITO! NAITO!"
Rating: 10.0
Sentiment: 0.24171006944444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: PuroresuLoverwrote on 15.06.2019:[10.0] "Do I really have to say something? Tetsuya Naito should be 4x IWGP Heavyweight Champion by now, he's one of the best in the world now, It bothers me the fact that Gedo is not making him the Top Star of NJPW."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Cow Manwrote on 03.06.2019:[8.0] "Has a great character. Good as the leader of LIJ. He can put on a good match. But it took a while for him to find a good character. Overall, an 8."
Rating: 8.0
Sentiment: 0.4611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: My Bloody Doobwrote on 20.05.2019:[7.0] "I remember when Naito was the most interesting person on the New Japan roster. 3 years later and he's still doing the same shit. Basically, he's shown zero character growth in his "Tranquilo" phase since losing the IC title the first time. Naito isn't making things happen, things happen TO him, and he knows this which is why he relies so much on his stale gimmick to try and keep himself relevant. As for his wrestling, he's a movez guy who also has some pretty good technical skills, but he's piss poor at actually selling besides bumping like a rag-doll. I still give him credit for being able to have great matches with guys at or above his level, but any other match is an obvious phone in (then again he rarely has good matches with Suzuki or Goto). I still don't know why he still has many fans, he never went through arcs like Okada, Tanahashi or even Kenny Omega that made you care about them in new ways, he's still the same dude he was 4 years ago. It also puts me off how irritating his fanbase is in the western side of the world, but that's a different discussion."
Rating: 7.0
Sentiment: 0.11888714733542319
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Fab96wrote on 19.05.2019:[10.0] "The real star of New Japan. I feel like Naito has been in Okada/Tanahashi shadow for too long, I'd love to see him with that IWGP Heavyweight championship around his waist again, because he deserves it. He is a phenomenal athlete and such a savage personality, he does what he wants and he acts the part like a pro. My pick to win the next G1 Climax"
Rating: 10.0
Sentiment: 0.254040404040404
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "By far the best character development in wrestling ever. Is the leader of my favorite stable in NJPW, LIJ. Is an awesome wrestler. His stroy is simply the best long term storyline wrestling has ever seen and it all just flows so natural. His personality and charisma is on display both when he wrestles and is cutting promos. Hopefully he one day reaches the top and wins the IWGP HW championship back."
Rating: 10.0
Sentiment: 0.32083333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Cherry Chasewrote on 04.04.2019:[9.0] "Naito is who should've been pushed as the future star of NJPW, by defeating Okada at Wrestle Kingdom 12. With massive fan backing and an abundance of charisma. Regardless his character work has always been his biggest strength. Which is not to say he suffers when it comes to in-ring ability because he excels in that department as well."
Rating: 9.0
Sentiment: -0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Cibswrote on 16.01.2019:[10.0] "My favorite NJPW wrestler. After his second period in CMLL Naito improved not only in the ring (although he was already very good), but also as a character in general and that is very important, ; he took advantage of the opportunity to build something special that has made him a star. He also has more charisma than half of the New Japan roster."
Rating: 10.0
Sentiment: 0.2806839826839827
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: KINGwrote on 09.11.2018:[9.0] "He's so damn amazing, he was always a talent in the ring, but his Stardust Genius gimmick was very shitty, the heel turn changed everything tho and he's now a real rockstar, the top guy of the crowd, the people's champion, and his in ring work stepped up as well, making him one of the best in the world when it comes to having a mix of in ring and character ability. His character is really one of the coolest things in wrestling of this decade, Tetsuya Naito is a goddamn great arrogant prick, and we love it for that."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: RatingsMachinewrote on 17.10.2018:[9.0] "Tetsuya Naito is a great worker and a tremendous character, but there are a lot of times when he tries to get over his character at the expense of the match, and it ends up hurting the match a lot."
Rating: 9.0
Sentiment: 0.3444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Makai Clubwrote on 13.09.2018:[9.0] "I like Naito. Not my favourite wrestler in New Japan though. He has a good character that is both entertaining and something people can relate to. He has resume that speaks for himself. His No Limit tag matches are all very good. He has great matches with Nakamura, Okada and Tanahashi. Really like his recent ones with Omega and Sanada too. I'd say one thing, he is very good, great even, but he is much less consistent than the likes of Ishii, Okada, Goto and Hiromu Takahashi in New Japan as well as others outside of the company and for that I don't think I can rate him higher than an 9."
Rating: 9.0
Sentiment: 0.3875757575757576
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Oliver95xwrote on 12.09.2018:[10.0] "Tetsuya Naito ist der Wahnsinn. Kaum jemand hat so viel Charisma wie er. Seine Gesichtsausdrücke und sellings sind einfach nur gut und sein Move Set ist abwechslungsreich. Die großen Matches mit ihm wissen immer zu überzeugen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: taabr2wrote on 11.09.2018:[10.0] "The most popular wrestler in Japan. I would rank Tetsuya Naito just a little bit below the elite level talents like Tanahashi and Okada when it comes to in-ring work. However Naito's real strength is his almost effortless charisma and cool character that makes it hard for you not to cheer for the guy."
Rating: 10.0
Sentiment: 0.05297619047619049
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: jamzell00wrote on 18.08.2018:[10.0] "Probably my favorite wrestler going. He was never really "bad" during his stardust genius run but it's obvious the fans weren't super into him. His current run now is incredible and I'm so emotionally invested in him and LIJ. I can't say that about many wrestlers. He's so good"
Rating: 10.0
Sentiment: 0.3648148148148148
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Sebastian Vwrote on 11.04.2018:[10.0] "Tetsuya Naito ist in meinen Augen im Moment der drittbeste Wrestler von New Japan und einer der besten Welt. In jedem Bereich 10 von 10. Im Ring ein unfassbar guter Techniker, der aber auch Bumps nimmt, High Flying zeigt, Powermoves und ähnlich wie Okada und Omega eine In-Ring Psychologie hat, die einfach nur der Hammer ist. Die Mimik und Gestik ist auch stark bei ihm auch wenn ich das zum Beispiel bei Omega noch besser finde. Er hat schon reihenweise Weltklassematches geliefert. Sein In-Ring Können geht Hand in Hand mit seiner unfassbaren Heelpräsenz bzw. seine Fähigkeit, Charakterdynamik zu zeigen. Sein Charisma lässt eine ganze Halle buhen oder auch jubeln, da er auch als Face funktionieren kann zum Beispiel gegen Leute wie Suzuki. Aber seine arroganten Heeltaktiken sind das, worin er richtig aufgeht. Ich verstehe kein Japanisch, aber auch seine Promos scheinen diesen gleichen Swagger und die gleiche Außenwirkung zu haben. Insgesamt einfach eine glatte 10."
Rating: 10.0
Sentiment: 0.03212121212121213
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheAlmightywrote on 14.03.2018:[10.0] "Tetsuya Naito ist der beste Heel der Welt in allen Belangen (Omega ist kein reiner Heel in meinen Augen). Ein guter Wrestler war er schon immer und so konnte er bereits 2014 nach dem gewonnen Climax gegen Okada im Tokyo Dome antreten. Wie zuvor im Climax Finale gegen Tanahashi wurde er aber auch hier wieder ausgebuht, obwohl als Face dargestellt. Nicht umsonst gab es damals ein Fan Voting welches Match im Main Event stehen sollte und Naito verlor gegen Nakamura vs Tana obwohl es 'nur' um den IC ging! Dave Meltzer schrieb nichts umsonst einst: 'Naito was known as "something of a genius in the ring for his ability to lay out matches", but noted that "something didn't click", calling his reception "a combination of some fans booing, and some apathy! ' Sein Push wurde gestoppt bis er im Sommer 2015 mit neuem Look und neuem Gimmick als El Ingobernable zurückkehrte und wie ausgewechselt schien. Die Fans jubelten ihm zu, er hatte endlich dieses gewisse Etwas gepaart mit seinem bereits vorhandenen Können im Ring was ihn zu einem perfekten Gesamtkunstwerk werden ließ! Er gewann den IWGP Heavyweight und IWGP IC Title, was ihn somit zum einzigen Grand Slam Champ von NJ werden ließ (Tag Team + Jr. Tag Team, NEVER Openweight, IC, Heavyweight) Gekrönt wurde die ganze Entwicklung vor etwas mehr als einer Woche mit dem erneuten G1 Climax Sieg inklusive eines 5* Matches gegen Tanahashi und eines MOTY Matches gg Omega im Finale. Naito ist der hotteste Wrestler zurzeit auf dem Planeten! TRANQUILO! ASSEN NA YO! EDIT: Mensch Headlock hör doch mal mit deinen subjektiven Dragon Gate Bewertungen auf. Eigentlich ist jede schlechte Bewertung für einen NJPW Wrestler der größte Lohn, denn es muss dich ja ziemlich stören, dass jemand wie Naito soviel mehr Aufmerksamkeit bekommt als ganz DG. Objektiv kann man Naito nicht weniger als 9 Punkte geben, alles andere ist nicht gerechtfertigt für seine In Ring Leistung und sein Gimmick Work."
Rating: 10.0
Sentiment: 0.6510416666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Headlockwrote on 10.03.2018:[5.0] "Irgendwie gefällt mir Naito nicht. Sein Gimmick ist zwar ganz nett und lässt sich auch gut in kleine lustige GIFs packen,  lässt mich allerdings persönlich eher kallt, als Wrestler selbst gefällt er mir zwar besser aber solle finde ich ihn jetzt auch nicht, finde er ist sogar der schlechteste Wrestler in LIJ, mir gefallen BUSHI, EVI, SANADA und Hiromu alle samt besser. Er ist wohl einfach nicht mein Fall."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheLoudMouthwrote on 08.01.2018:[10.0] "Bei Naito bleibt einem nichts Anderes übrig, als in den Untiefen der Superlative zu kramen und ihn zu huldigen. Ein ganz Großer seiner Zunft und vermutlich der aktuell beste Worker weltweit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Adaskerrwrote on 29.12.2017:[10.0] "Probably my favorite character in all of wrestling at the moment, and a great wrestler as well. "You can be cool, but you'll never be as cool as Naito""
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: benYowrote on 21.11.2017:[9.0] "T. Naito gehört ganz klar zum engsten Kreis der Besten der Besten. Dazu ist er für mich einer der besten und glaubwürdigsten Heels. Seine In-Ring Fähigkeiten sprechen für sich und komplettieren so einen ultimativen Anführer des möglich besten Stable."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Cleanerwrote on 17.11.2017:[10.0] "Tetsuya Naito ist etwas, was man als mehr als das "complete package" bezeichnen muss. Wie er seinen Charakter entwickelt und porträtiert, wie er wrestlet, wie er spricht, alles ist großartig. Er bildet zusammen mit Okada, Omega und Tanahashi den aktuellen NJPW Main Event und das völlig zurecht. Einer der besten der Welt"
Rating: 10.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Dragon Fighterwrote on 30.10.2017:[10.0] "What can I say more about naito ?  From a silly, bland babyface who got rejected from the fans 4 years ago to the most entertaining and charismatic guy in wrestling world right now. He is finally accepted by the fans and gets the Tokyo dome main event spot he missed at wk8. A hug draw in new japan and his in ring work is also amazing as well. Definitely one of my favorites and joys to watch."
Rating: 10.0
Sentiment: 0.2101731601731602
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: The Phenomenal 1551wrote on 09.10.2017:[10.0] "Im Ring ohnehin einer der besten, aber das herausragende an Naito ist sein Charakter. Einfach großartig wie er sein Gimmick verkörpert und darstellt. Derzeit der wohl beste Heel auf diesem Planeten. Zudem ist er der beste Beweis dafür, wie man nach gescheiterten Push durch Neuerfindung seines Charakters over kommen kann. Vor allem die letzten zwei Jahre und die von ihm dargebotenen Matches stellen das eindrucksvoll unter Beweis. Meiner Meinung nach auf einem Level mit Omega und Okada derzeit."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: BraveHeartwrote on 05.10.2017:[10.0] "Tetsuya Naito is the man who can not be governed. After taking an excursion to CMLL, Naito came back better than ever. Turning Heel, Forming one of the top factions in Pro Wrestling History, It seems like Mr. Destino and his cohorts aren't going anywhere for a long time."
Rating: 10.0
Sentiment: 0.2375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: jcleaguewrote on 29.09.2017:[10.0] "Post CMLL Naito is the complete package. Mic skills, wrestling skills, psychology, storytelling, ability to move merch, with a cool look and leader of one of the best factions in wrestling right now. The irony that turning heel is what helped Naito to become one of the biggest babyfaces in NJPW."
Rating: 10.0
Sentiment: 0.43392857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Blood Pumpwrote on 01.09.2017:[10.0] "The coolest man in NJPW also happens to be right up there with Okada as the best. While not every one of Naitos matches can be called a 'certified classic' like Omegas, his personality, pacing, character (to which I'd say his is far and away the best in the entire company) and ability all make him one of the best ever. He has it in him to put on a better match then either man (Omega & Okada) with either man, all he needs is incentive, and what better incentive is there then to win the IWGP Heavyweight Title on the main event of Wrestle Kingdom? As the most recent winner of the G1 Climax I highly look forward to his match with Okada and what the next year holds for him."
Rating: 10.0
Sentiment: 0.41193650793650793
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: AllArounderwrote on 16.08.2017:[10.0] "Absolutely incredible. The guy plays his character masterfully and is an amazing wrestler. Deserves all the praise that he gets."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: arrancarwrote on 14.08.2017:[10.0] "Over the last year or so this guy has totally won me over, and I certainly consider him one of the current best in the world. He doesnt have great matches as frequently as Okada, Ishii, or Omega, but his LIJ character is fantastic and he absolutely delivers in all his big matches. It's funny that his character is centred opposite Okada, as Naito is the counterc to the NJPW 'system' Okada represents, yet Naito and Okada share similar traits that make me love both of them. They both have some sort of facade as a defence mechanism, hiding their true feelings. Once pushed to the limit they will reveal those feelings however, and show that despite their shenanigans they really do care about NJPW and wrestling. That's Naito's deal. He was once the vanilla babyface who never won over the fans, then he kayfabe revolted against the company (probably working off of genuine annoyance there), making everyone hate him more, but then his entertaining act grew on everyone and he became a mega anti-hero. For years Naito has acted as a heel, but he's so entertaining and so athletically gifted that the fans can't help but cheer for him (especially when he sells his opponents' offence like death). I think it's clear after the psychology in his G1 final match against Omega that Naito is rightfully heading the way of a pure babyface anti-hero very soon. His badass persona with the hidden layer of someone who is desperate to impress people and prove his worth makes for a fantastic wrestler."
Rating: 10.0
Sentiment: 0.19554531490015364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: LosIngobernablesdeUKwrote on 09.08.2017:[10.0] "Oh Naito. My favourite guy in NJPW as a whole. He was the guy along with LIJ that got me hooked into NJPW in the first place. When I first saw him & saw his suit, his mask, his attitude & his wrestling skills, I thought man this guy is the very definition of a badass motherfucker & he really showed how fucking cool he was. When I saw him beat Okada for the Title at Invasion Attack I was so happy & thought he would have a dominant & extremely interesting reign, which never turned out to be the case. Anyway, the guy is a fantastic wrestler, always puts on a ****1/2 + performance, he had I think the best or 2nd best IC Title reign ever just because of how he made it even more prestigious by absolutely destroying it lol. He is my pick to win G1 this year & by the time he faces Okada in the main event of WK12, he will once again be IWGP Heavyweight Champion & become the best damn guy in the world. Tranquilo. Assen ayo... EVIL, BUSHI, SANADA, HIROMU Y NAITO. NOSTROS, LOS INGOOOBBEERRRNABBLLESSS de JAPON!"
Rating: 10.0
Sentiment: 0.3798245614035088
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Randomuser12345wrote on 22.06.2017:[9.0] "I once saw someone on this site describe Naito as "The Dolph Ziggler of New Japan", which was pretty spot on at the time. A brilliant wrestler no doubt, but missing some bite. This was rectified when he slowly turned heel in 2015, aligning with the Los Ingobernables in Mexico. Since then he's given the middle finger to the fans who screwed him out of his main event spot for WK8, and gone on to form one of the hottest stables in wrestling today, and by the look of things may well be on his way towards redemption in the form of a main event match at next years Tokyo Dome show."
Rating: 9.0
Sentiment: 0.1244107744107744
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TooSweetPhilwrote on 07.06.2017:[10.0] "Als Führer meines absoluten Lieblings-Stables kann ich nicht anders, als volle Punktzahl zu geben. Mal ehrlich, gibt es aktuell irgendeinen Charakter, der die Klasse von Tetsuya Naito übertreffen könnte? Nein, das denke ich nicht. Diese Respektlosigkeit, dieser Hass gegenüber den Fans, dem Gürtel, den Schiedsrichtern ist einfach nur genial. Auch im Ring weiß Naito durchaus zu überzeugen und immer wieder mit grandiosen Performances abzuliefern. 10 fuck'n Punkte!"
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: PistolPeteMattywrote on 06.05.2017:[10.0] "Hands down the best character in wrestling today. From the peppy babyface known as The Stardust Genius, to the no fucks given badass he is today, Naito has always been fantastic, but his work with LIJ will go down as the stuff of legend."
Rating: 10.0
Sentiment: 0.27222222222222225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheWrestlingFanwrote on 06.05.2017:[10.0] "Naito has been able to reinvent himself after turning heel, then forming LIJ. He is able to play his character perfectly with his signature 'tranquilo' taunts. He also adjusts his in ring ability in order to conform with his character that requires a perfect set up of psychology, despite he was previously known as a high-flyer. He has proven himself to be a great asset for NJPW that will carry the company for years ahead."
Rating: 10.0
Sentiment: 0.6055555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: RonAyyyyyyyywrote on 01.03.2017:[10.0] "This guy was always insanely talented, but he never had a good outlet to display it. From 2011-2015, he was just "Tanahashi-Lite" which didn't work because he just wasn't as talented or as good of a face as Tana. But right before the 2015 G1, he went to Mexico and totally reinvented his character, and is now the best heel in the world and one of the best of all time, and his matches have a fresh feel to them as a result. Capable of putting on all-time great classics, incredible character work, awesome look, he's the total package."
Rating: 10.0
Sentiment: 0.5918367346938774
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheRainmaker28wrote on 18.02.2017:[10.0] "The best and the most charismatic character in the world today, as Naito suits and play his character so well that amazes me everytime that I see it. From a guy that was a rejected babyface to be the MVP of New Japan today, and that is why I admire and respect Naito, he had the capacity to reinvent him self, not only as a character, but as worker too. TRANQUILO!"
Rating: 10.0
Sentiment: 0.42727272727272725
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TheGreatestManRed22wrote on 30.01.2017:[10.0] "Yes. Mr TETSUYA NAITO. The best heel in the world right now when he returned NJPW in G1 Climax 25 was different. He changed whole personality and he became to an INGOBERNABLE. I love this gimmick, throwing belts, hitting referees and mocking enemies and the most important he made LOS INGOBERNABLES DE JAPON. The stable that revolutionized NJPW. And now as IWGP Intercontinental Champion is doing it fabulous also he is over with the crowd and he had great matches during this time as INGOBERNABLE. TRANQUILO! ASSEN-NAYO!"
Rating: 10.0
Sentiment: 0.47619047619047616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Viper99wrote on 08.01.2017:[10.0] "Mein Gott! Es gibt wenige Wrestler die ich erlebte, die sich so verbessert haben! Naito war immer ein Sehr Guter Wrestler, aber seit seinem sprung zum Heel ist Naito einfach nur noch Exzellent! Tetsuya Naito ist der Top Heel von New Japan und einer der besten Heels der Welt! Dazu ist er ein, als Heel, noch besserer In Ring Worker und zeigte dies in 5 Star Matches gegen Omega oder Tanahashi."
Rating: 10.0
Sentiment: 0.3352272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TrevPuroFanwrote on 07.01.2017:[9.0] "Naito has always been a great wrestler who was busting out some great matches here and there. But ever since he came back from Mexico and turned heel and became Ingobernable Naito, he's been another level. Over with the crowd and putting on classics. Only his selling is off sometimes."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: SomeDudeOnTheInternetwrote on 05.01.2017:[10.0] "Tetsuya Naito ist ein guter Wrestler, derzeitiger und sehr starker IWGP IC-Champion, Los Ingobernables de Japon leader und lieferte in den letzten Events nahezu immer hammer Matches ab. Sein Heelwork ist absolut Klasse und ist zurzeit der provokativste Wrestler in NJPW oder gar der ganzen Welt. Von Moveset, Technik, Charisma, Ausstrahlung, Entrance bis hin zum starken stable ist er einfach die 10 Punkte wert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: ApexOfEvolutionwrote on 05.01.2017:[10.0] "Der Leader des zur Zeit wohl besten Stables der Welt. Spielt einfach einen hervorragenden Heel, hat eine großartig unsympathische Ausstrahlung und ist im Ring über jeden Zweifel erhaben. Aufgrund der Sprachbarriere kann ich seine Promos nicht beurteilen und somit spielen sie bei der Bewertung keine Rolle."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Alex Maedawrote on 05.01.2017:[10.0] "Sehr gut im Ring, gehört zu den charismatischsten Leuten in Japan und kann mit den unterschiedlichsten Workern starke Matches abliefern. Auf jeden Fall eine der wichtigsten Personen derzeit im Roster von New Japan. UPDATE (2017/01): Die Aufwertung für Naito ist überfällig."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: NastyYaffawrote on 01.01.2017:[9.0] "Naito was already a great wrestler before 2015, but when he returned to New Japan as the "El Ingobernable", his work went to another level. He became a total package and one of Japan's most interesting performers - his in ring work is great, love all the mind games he showcases, his psychology is good & he is a candidate for the most charismatic Japanese wrestler in the world right now. You can definitely call me a fan of Naito."
Rating: 9.0
Sentiment: 0.4016983016983017
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: J Kwrote on 20.10.2016:[9.0] "Naito ist echt stark er ist ein super Intercontinentalchampion( geschrieben im Oktober 2016) Er hat immer super Matches und überzeugt auch durch Gimmick und Charisma.  Er ist einer der Top Stars in Japan und ein sehr wichtiger Teil des Njpw Rosters.  Außerdem ist er immer für ein Mainevent würdiges match gut."
Rating: 9.0
Sentiment: 0.24166666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: akm0wrote on 17.10.2016:[9.0] "From zero to (anti)hero!  The transformation of Naito during the last two years is just outstanding. He always had the talent, the ring ability and everything a wrestler could want, but he lacked the look and something personal. The New Japan crowd saw that and didn't cared about him. Then something happend. He went to Mexico, he learned something different, something he didn't have yet, and came back at full force. Suddenly, he didn't care about the fans, but they did. He founded the LIJ, got over and became THE best heel in wrestling right now. Everything he does - from taking his time for his entrance just to upset people to bullying the referee or the commentators - has a meaning, has a weight and count because he wants to. His match with Kenny Omega this year was phenomenal to say the least, seeing him going for the german suplex knowing that Omega would have landed on his feet and thus damaging his knee further was one of the best thing I saw in wrestling. He's a star and ten years from now he will be remembered as a great heel."
Rating: 9.0
Sentiment: 0.24844877344877345
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: IssouChanclawrote on 29.09.2016:[10.0] "He is one of the few wrestler who still make me marks and i only discovered him few weeks ago, his gimmick is awesome he play really well with the crowd in the same match he can be booed or cheered + his stable is really cool"
Rating: 10.0
Sentiment: 0.16428571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Luv all wrestlingwrote on 07.09.2016:[10.0] "Naito is at his best as a heel, he can get heat or get an entire crowd behind him while also having a great match. As a babyface he was a bit generic, but a Naito who does not care is a Naito the crowd loves."
Rating: 10.0
Sentiment: 0.27999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: ezuvguwrote on 30.07.2016:[10.0] "From mid-2011 until his injury in the 2012 G1, Naito was arguably the best wrestler in the world. He's been my personal favorite wrestler ever since. After the fans rejected New Japan's attempt to continue pushing him, as if nothing had ever happened, Naito snapped, turned on the fans and formed Los Ingobernables de Japon, which finally got him over again. This year, he appears rejuvenated in the ring and is putting on his best matches since his injury. I hope to see him top his March 4th, 2012 match with Okada someday."
Rating: 10.0
Sentiment: 0.44805194805194803
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Mirajane Strauss Fanwrote on 15.05.2016:[10.0] "Despite possessing cool moves and decent matches with Hiroshi Tanahashi, an untimely injury derailed Tetsuya Naito's progress in New Japan Pro-Wrestling, as he never quite rallied the fans afterwards.   That must have been a shame for the most prominent member of the NJPW fan club - Naito was New Japan and the company recognised that.   That all changed with the G1 CLIMAX 25, as Naito abandoned his quasi-Tanahashi shtick and embraced his Los Ingonerables roots.   Naito took to his new gimmick like a fish to water - and so did the fans, a large majority of them cheering him as he aimed to win the IWGP World Heavyweight Champion.   Since then Naito has only become stronger, beginning a riveting feud with NJPW management that has captivated crowds worldwide.   With solid wrestling skills and a molten character, Tetsuya Naito has finally reached the summit, and he will not be disembarking any time in the near future."
Rating: 10.0
Sentiment: 0.23600288600288602
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Delirious434wrote on 18.04.2016:[10.0] "I FUCKING LOVE THIS GUY! His Promos are great, he's the best Heel in New Japan, and in the Ring he's Awesome, totally deserved IWGP Heavyweight Championship, my favourite Pro-Wrestler in the World right now"
Rating: 10.0
Sentiment: 0.5495825602968459
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: 8BitLegendwrote on 15.04.2016:[7.0] "Habe meine Hoffnungen zu Grabe getragen, dass Naito jemals über seinen B# Status hinauswachsen wird. Sein Heel-Gimmick überzeugt mich nicht und trotz entsprechendem Spotlight wächst er nicht in die Lücke hinein, die Styles und Nakamura hinterlassen haben. Einm guter ist er ja trotzdem, aber irgendwie wäre da mehr drin gewesen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: JuliTheCage87wrote on 21.02.2016:[10.0] "Auch er hat sich seinen G1-Climax-Push vor zwei Jahren seit seinem Heel Turn redlich verdient. Extrem leicht zu hassen, aber geiles Moveset, gute Ausstrahlung und schon immer ein Rohdiamant, der letztendlich in seine vollendete Form übergeht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Antimasterwrote on 16.02.2016:[9.0] "Blüht in seiner Heelrolle förmlich auf. Hat momentan Feuer wie seit drei Jahren nicht, unterhält als Heel dreimal so gut wie als langweiliger Uppercard Face Ende 2014, Anfang 2015. Zudem im Ring richtig stark. Seine letzten Showstealer sind zwar nun schon ein bisschen her, aber das ist seiner Rolle als Ingobernable zuzuschreiben, und ich bin mir sicher, wenn er denn mal wieder einen großen Titleshot erhält, wird er auch wieder eine Sahne-Leistung zeigen. Zusammen mit Okada die strahlende Zukunft New Japans."
Rating: 9.0
Sentiment: -0.03181818181818183
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: CmNag66wrote on 08.01.2016:[10.0] "Mein aktueller Lieblingswrestler in Japan. Im Ring war er schon immer großartig und seit seinem Heel Turn und dem Beitritt zu Los Ingobernables strömt er nur so über vor Charisma, dazu hat er auch noch einen richtig coolen Charakter entwickelt und seinen Wrestling Stil perfekt an diesen angepasst."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: HouseWhiteWillRisewrote on 29.12.2015:[10.0] "he has everything a wrestler in NJPW needs Naito has been a good in ring worker since his debut but then the crowd started to boo him so he became one of the best HEELS in the world he carries himself with such a IDC Attitude it gives off this great aura i think it might be the IDC attitude in the history of the pro wrestling the reason i am giving him a ten is because he was good before 2015 but he lacked Facial expressions and lacked story telling in his matches and then came the 25 anniversary of the G1 Climax and he really showed he had pretty good story telling and amazing facial expressions for his IDC attitude so he fixed everything that he lacked so he really can't get any better i just hope he gets treated right in NJPW Because right now he is really showing so much resembelance to Dolph Ziggler He is one of the best sellers in NJPW he has been treated as a high mid carder that they don't go all the way with They both are definitely in the top 5 workers in NJPW for Naito and WWE for Dolph they both are terrific Heels and when they are Heels they are head and shoulders better than anybody in their promotion in Zigglers case when he was really good and was in his prime as a heel he got the world heavyweight title which was basically the equivalent to the intercontinental title in japan but then he suffered a injury and he had to drop the title then he never got another world title run that he deserved Naito is in the prime of his carrer so they need to #PushNaito NOW!"
Rating: 10.0
Sentiment: 0.36134920634920636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Toasterwrote on 23.12.2015:[10.0] "Für mich aktuell vom Heelwork her so ziemlich das beste auf dem gesamten Globus. Daneben auch noch ein überragender Worker. Hat seine Rolle endlich gefunden und kann somit auch endlich an die Spitze gepusht werden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: HammertonWaywrote on 31.10.2015:[9.0] "The recent heel turn for Tetsuya Naito was the best thing that happened to him. With Minoru Suzuki in NOAH, only AJ Styles remains in NJPW as a main event heel. If they build Naito correctly, he could be IWGP Heavyweight champion in 2016. Also, that suit he wears to the ring is sweet as hell!"
Rating: 9.0
Sentiment: 0.32083333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Kevin434wrote on 20.08.2015:[9.0] "Naito war lange zeit einer der underratesten Wrestler der Welt, ich war schon lange ein Fan von ihm und ich bin so froh das er jetzt Heel geturnt ist und ich bin so froh das er gepusht wird. Er ist so ein guter worker, jedes Match macht spaß und ich würde ihn locker auf eine Stufe mit Okada setzen. Und er ist aktuell der beste Heel, es ist einfach so geil und untrhaltsam, er spielt es einfach verdammt gut und bringt das super im Match ein, bitte New Japan pusht diesen Mann noch weiter, so den IC-Titelgewinn hätte er echt verdient."
Rating: 9.0
Sentiment: 0.23484848484848483
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Izinwrote on 17.08.2015:[9.0] "Naito has revealed his true talent hiding within with his recent turn throughout the G1 Climax - he has almost overnight become the most hated heel in the Land of the Rising Sun. Even those that appreciate his ring work and mannerisms are almost compelled to boo him, and this is an achievement in an era of a surplus of "cool heels"."
Rating: 9.0
Sentiment: 0.059999999999999984
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: llboxingwrote on 10.06.2015:[7.0] "He's the Dolph Ziggler of New Japan.  A popular upper mid carder who flirts with main event status but often falls short of winning the big one.  He's athletic, charismatic,  flashy, good looking and an excellent worker with some great matches against top stars under his belt.  He's very wooden with his facial expressions, that is perhaps his greatest weakness, although he has improved on that front. He hasn't always been consistent but usually shows good intensity and passion in both promos and in ring work.  Recently he has been in a Roman Reigns type situation with the fans feeling that he has been shoved down their throats.  He was even heavily booed at one event but that appears to be an isolated incident.  Once heralded as the heir apparent but injuries, inconsistency and bad acting have hampered his career."
Rating: 7.0
Sentiment: 0.196056721056721
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Matzinhowrote on 02.10.2014:[7.0] "Naito fand ich schon für einen Rookie überdurchschnittlich gut, sehe bei ihm seither im Ring aber keine große Entwicklung. Naito ist immer noch Naito. Ich kann ihn mir gut ansehen, er produziert ordentliche bis gute Matches, ist für mich aber nicht herausragend. Seine Hochphase hatte er in meinen Augen bei No Limit. Was ich schade finde ist, dass er so stark zu den Heavyweights gepusht wird. Ich hätte ihn lieber bei den Juniors gesehen, er hätte die Division vielleicht zurück zu altem Glanz führen können."
Rating: 7.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: TAWPTierJustinwrote on 02.10.2014:[10.0] "Since I started watching New Japan Pro Wrestling on a once in a while basis, I've really become a big fan of Tetsuya Naito! I've really gotten to easily see and know his moveset so quickly and his work in the ring is so tremendous! Plus he can also wrestle with somebody who is already phenomenal like AJ Styles and make him look like a million bucks! Also he has like a reverse Red Arrow looking finishing move which I really like too! To me, Tetsuya Naito has the whole package and has everything it takes to be the IWGP heavyweight champion and I hope he does hold that belt eventually!"
Rating: 10.0
Sentiment: 0.25860881542699726
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: sevendaughterswrote on 20.05.2014:[10.0] "Let's get the bad out of the way first: Naito is not the greatest seller to step into the ring and his look, despite him being a face in theory, gets him more heat than respect. Right, now we've parked that, let's talk about one of the best wrestlers in the world right now. Let's talk about someone who tries every single match to work for the good of the match. He is so selfless: he can take any bump, he can pop up anywhere to take a hit, he contorts his body in recoil in ways that others would not dream of. His moveset is the perfect NJPW main event moveset: it's smooth and it tells the story of his life - some shout outs to Mexico, to his days as a junior, combined with some heavyweight flourishes and submissions. I can see why he's not huge: he lacks that visual charisma of Tanahashi. But he deserves to inherit his throne as King Babyface because he's capable of similar feats in-ring. His 2014 series with Ishii, his WK8 title match with Okada, the G1 Finals night matches, the NEVER defence v Tanaka - these do not happen by accident! Sublime."
Rating: 10.0
Sentiment: 0.2774509803921569
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: apc24wrote on 17.12.2013:[8.0] "Kind of like the Jeff Hardy of New Japan except he has more of a technical move set and instead of having potentially bad matches, he's very injury prone. He has a bright future in New Japan but it looks like the crowd isn't really into him."
Rating: 8.0
Sentiment: 0.17727272727272728
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Kenshin Uesugiwrote on 13.11.2013:[8.0] "Seit seiner Rückkehr aus der Verletzungspause sehr oft zu Unrecht getadelter Wrestler von seitens mancher Fans. Angebliche Schwächen werden ihn angedichtet, solide oder nicht herausragende Matches werden als Indiz dafür genommen das er nicht bereit ist für den großen Spot und nun wird er auch noch unterschwellig dafür verantwortlich gemacht das die Fans bei einem Event nicht so reagiert haben wie es man bei einen Face erwartet. Ist für mich völlig unverständlich, sonder auch völlig überraschend. Was bitte ist an Naito anders als vorher? Ein neuer Move, mehr nicht. Er erinnert mich immer an den jungen Keiji Muto und da bin ich auch nicht der Einzige und spricht für seine Qualität. Die jetzt aufkommende Nörgelei kann ich mir nur erklären das man zu sehr verwöhnt ist von Tanahashi, Oakda, Suzuki und Nakamura Matches und Persönlichkeiten das man Naito als langweilig oder unzureichend empfindet. Allerdings hoffe ich dass man das selbe Vertrauen seitens NJPW ihn entgegenbringt wie einst bei Okada."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Mudamwrote on 16.08.2013:[10.0] "Naito is one of the new aces of NJPW. Talented in all wrestling styles"
Rating: 10.0
Sentiment: 0.41818181818181815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Play2Xwrote on 21.02.2013:"Ich kann ihn leider noch nicht bewerten, dafür konnte ich nicht genug von ihm sehen. Ich bete einfach, dass er wieder zu 100% kommt. Alles was ich von ihm gesehen hatte war gut bis sehr gut!"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Robert Taylorwrote on 12.01.2013:[9.0] "Es ist immer noch so unglaublich, dass er sich so schwer verletzt hat. Ab dem G1 Climax 2011 hat er einen riesigen Entwicklungsschritt durchgemacht und hat bereits einige richtig starke Matches abgeliefert, z. B. mit Nakamura, Tanahashi oder im letzten Jahr mit Okada. Ich hoffe inständig, dass er wieder auf 100% kommt, denn dann wird Naito in den nächsten Jahren eine große Rolle im Main Event von New Japan spielen, davon bin ich überzeugt. Steht bzw. stand bis zu seiner Verletzung direkt hinter Tanahashi und Nakamura, noch vor Leuten wie Makabe oder Goto."
Rating: 9.0
Sentiment: 0.1515151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Wolkywrote on 20.09.2012:[10.0] "Hat im Ring so unglaublich viel drauf, gibt Wenige die mit seinem Tempo mithalten können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Rated R Champwrote on 19.08.2012:[9.0] "Als ich den Kerl vor ein paar Jahren das erste Mal sah (damals noch bei einem Gastauftritt bei TNA) fand ich ihn absolut nichtssagend, doch nach dem was er seit dem Split von No Limit gerissen hat muss man einfach sagen, dass das "Stardust Genius" zurecht als Zukunft von New Japan angesehen wird. Stark im Ring war er ja schon länger, aber mittlerweile hat er auch merklich an Ausstrahlung hinzugewonnen und mehrfach gezeigt, dass er große Matches worken kann."
Rating: 9.0
Sentiment: -0.03181818181818183
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Excellence of Executionwrote on 08.10.2011:[9.0] "Handwerklich ist er schon jetzt absolut großartig im Ring. Ich persönlich würde es noch gerne sehen, dass er sein Selling, was den mimischen Aspekt angeht, verbessert. Er verkauft Schmerzen nur sehr unregelmäßig und oft beschränkt sich sein mimisches Selling darauf, irgendwie halbwegs platt zur Hallendecke zu schauen. Wenn er diese Schwäche noch ablegt, ist er perfekt für mich. Naito scheint im Moment der Shooting Star bei NJPW zu sein. Als er im Finale des G1 stand, dachte ich sogar eher, dass er gewinnen würde. Einfach weil er so over ist. Ich weiß nicht, ob ich mich da zu sehr von der Atmosphäre des Turniers beeinflussen lasse. Aber ich glaube Naito könnte mehr sein, als ein regelmäßiger Main Eventer. Bei Naito habe ich echt das Gefühl, dass er auf dem Weg ist, ein richtig fetter Draw zu werden. Er ist schon jetzt unglaublich beliebt beim Publikum. Wenn man seine Legendenbildung richtig angeht, könnte er eine tragende Säule nicht nur für NJPW sondern insgesamt für das japanische Wrestling werden. Ich kann es (noch? ) nicht näher begründen, aber bei Naito habe ich wirklich das Gefühl, dass er zum Star werden kann. Klar - es ist weitgehend nur ein Bauchgefühl - aber es ist absolut da."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Vampiro1992wrote on 20.09.2011:[9.0] "Naito ist "DER" aufgehende Stern am Himmel von New Japan Pro Wrestling. Sowol in Tag als auch im Single Wrestling reist er die Zuschauer in seinem Bann. Sehr schade das er den G1 Climax nicht Gewonnen hat, aber bei seinem Talent muss er nicht mehr lange auf den Sieg warten.... Mit Sicherheit ein kommender IWGP Heavyweight Champion!"
Rating: 9.0
Sentiment: 0.02353896103896104
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Kartmanwrote on 17.08.2011:[9.0] "A young rising star, full of skills. For sure the future of New Japan."
Rating: 9.0
Sentiment: 0.21727272727272728
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Phoenix Downwrote on 20.07.2011:[8.0] "DER zukünftige Top Star für New Japan. Bringt jetzt schon alles mit was man braucht: Charisma, Talent, Ausstrahlung und das zeigt er schon so sehr das er selbst Tanahashi alt aussehen lässt."
Rating: 8.0
Sentiment: 0.3181818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Hans Gruberwrote on 07.07.2011:[8.0] "Wohl zurecht ein kommender Main Eventer. Er hat die In-Ring Skills, und das Publikum liebt ihn. Die Entwicklung muss man aber erstmal abwarten. Im Moment (stand Juli 2011) macht er das aber hervorragend."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Obermackerwrote on 16.02.2011:[7.0] "Guter Mann, sowohl als Einzelwrestler als auch im Team No-Limit."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: STRIGGAwrote on 25.12.2008:[8.0] "Großartiges Talent. Bei der Veranlagung, die Naito zeigt, wird sich New Japan in den nächsten Jahren keine Sorgen um die Qualität des Wrestlings machen müssen."
Rating: 8.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: AndyTNAwrote on 20.11.2008:[7.0] "Stark in allen was er macht! Für so einen Jungen Wrestler ein TOP."
Rating: 7.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: CTUwrote on 04.03.2008:[8.0] "Ganz großes Talent, der jetzt schon sehr viel weiter in seiner Entwicklung als als die meisten Wrestler mit ähnlich langer Karriere."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=3776&gimmick=Tetsuya+Naito
Comment: Rancorwrote on 04.08.2007:[8.0] "Am liebsten würde ich ihm direkt die volle Punktzahl geben, so sehr begeistert er mich in seinen Matches. Naito ist ein Riesentalent. Wenn er nicht plötzlich Koch werden will, ist er in ein paar Jahren ein Superstar der Junior Heavyweight Szene. Könnte auch sein, dass er zum Heavyweight wird, doch vorerst ist er in seiner Rolle als Young Lion Punk großartig."
Rating: 8.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: ChocoboSagewrote on 27.01.2025:[10.0] "The Boss, built up to be an unkillable giant in Stardom and it worked so damn well. She hits hard, sells well and those strikes are amazing. Her MMA and Kick Boxing background really helps her character. Plus she's also fantastic at comedy and is very entertaining. Go watch her matches against Utami, Momo and Mayu. Then go back further and see her stuff with Shida and Kana."
Rating: 10.0
Sentiment: 0.1947916666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Zak22wrote on 19.09.2024:[9.0] "One of the best of the current generation. Syuri can work a few different styles and has all the technical components you could ever want. Put Syuri in a singles match and it will 9 times out of 10 be a match worth recommending."
Rating: 9.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Gabiwrote on 04.08.2024:[10.0] "Syuri is the best striker in the world. Her in-ring is incredible and she just oozes charisma and aura. Syuri is just the coolest"
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Joe907wrote on 19.07.2024:[10.0] "Syuri is a technical wizard. Her strikes are very good. Her skills are off the charts and insanely good. She delivers some of the greatest matches ever. Definitely one of the best women's wrestler of all time"
Rating: 10.0
Sentiment: 0.6016666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Akyri0wrote on 18.07.2024:[10.0] "Pure badass. Perfect aura. Perfect in ring. Perfect charisma. Perfect theme song. Perfect duo with Giulia. The only thing I don't really like is the transition from Donna Del Mondo to God's Eye. DDM was peak Syuri and she's still ranked 10, that means a lot."
Rating: 10.0
Sentiment: 0.6767857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: StardomIconwrote on 12.05.2024:[10.0] "In my "Wrestlers I Would Not Want to Face in the Ring" list, the leader of God's Eye ranks near the top. Syuri is a former professional kickboxer and UFC fighter who delivers some of the best looking strikes in the wrestling. Syuri elevates talent around her because everyone looks like great sellers when getting kicked across the head by her. Bret Hart once ranked himself by three categories: look, promo, and in-ring ability. I'll be doing the same for Syuri. Beginning with look, it's obvious from first glance that Syuri is intimidating. There's no cutesy antics and humor involved - she means business from the second her banger theme music hits. She stays in phenomenal shape and has awesome entrance gear as well as ring gear. Her look is consistent with her character. As for promo ability, this is probably her weakest of the three categories, but she is more than serviceable on the mic. I personally enjoy listening to her and think she has more charisma than given credit for. However, just look at anyone that has made the jump from shoot fighting to professional wrestling, from Ken Shamrock to Ronda Rousey. Loads of charisma is not necessary for these types of wrestlers to get over. Lastly, Syuri's in-ring ability is where she excels. Unlike many shoot fighters, Syuri translated her skills to pro wrestling in tremendous fashion - whether it be flawless kicks or painful submission holds. She has amazing torque and speed when delivering kicks to her opponents and it's almost guaranteed they feel their match with Syuri for days after. Worth noting, she never shies away from taking punishment either. Syuri is the ultimate test for any wrestler trying to make it to main event level in Stardom. Syuri's match against Mayu Iwatani for the IWGP championship on January 4th, 2024 is not only my MOTY, it is the textbook definition of "struggle through competition"."
Rating: 10.0
Sentiment: 0.2928571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Bar786788wrote on 08.01.2024:[6.0] "I find Syuri to be overrated and dull yes, but that is not to take away from her that she was one of STARDOMs best champions. I dont see the star quality or charisma that is there with Utami and Giulia. She still seems somewhat limited as a character and a worker and when I think of how STARDOM pails in comparison to the hey day of All Japan, Syuri being a top star in STARDOM feels like proof because she wouldve been a lower mid carder in the 90s."
Rating: 6.0
Sentiment: 0.22738095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Neko Juniawrote on 22.11.2023:[10.0] "Syuri is one of the best wrestlers in the world, of any gender. I started watching Stardom when she held the red belt and I want her to have it back. I simply love the realism of her matches, the strikes, the technique. Syuri has the ability to elevate anyone she works with. She also possesses underrated charisma and sense of humor."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Daigotsuwrote on 24.06.2023:[10.0] "Syuri felt like the final boss in Stardom during her Red Belt reign, and her matches and style were one of the things that pulled me into the promotion in the first place. She's absolutely top notch."
Rating: 10.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: SienaArsenwrote on 20.05.2023:[9.0] "Great striker, great technical, good gimmick, awesome sellings, great matches ratings and a charismatic Unity leader. Syuri is (yes, she is! ) one of most complete artists in actual pro-wrestling."
Rating: 9.0
Sentiment: 0.5325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: TerwilligerTheLuchawrote on 13.01.2023:[10.0] "Really not much to say here. Her ring work is incredible. Her character work is incredible. I have heard complaints about her being 'stoic', but I guess I'm more into these types of characters. Also, she had her moments outside of the ring where she wasn't all that stoic (drawing straws, Saki Kashima, etc). One of the best in the world right now, no question."
Rating: 10.0
Sentiment: 0.4979591836734694
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Black Mass With Lovewrote on 03.12.2022:[7.0] "Syuri's title reign as a Red champion is awful. Yes, she had good matches against Giulia, Risa, Maika and Utami, but most of her matches were just one of my least favourite types of matches. Stupid useless epic in the current NJPW style, where epic is done just for epic and nothing more. Tons of nonsensical big moves, bumps and nosell. Syuri is super uninteresting as a champion, everything she needs to do is fight, but this is not about personal feuds or interesting interactions, nothing. She calls herself "the woman who does things differently than the rest of the world". Okay, I agree, but I don't think it's something to be proud of. Her way to the top was much more interesting, but after that she became a terminator who just doesn't give a shit. Her nice run in 5SGP and title defenses against Maika and Utami made me rate her a 7, but before them she hardly deserved this."
Rating: 7.0
Sentiment: 0.11442307692307695
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: CoolKylewrote on 23.09.2022:[7.0] "I don't see much in Syuri. I'm kind of baffled by the response to the Utami match. Pretty basic stuff. Syuri has some clear limitations in the ring and it's surprising she's not better with her experience level. There are a way better workers in Stardom with less experience."
Rating: 7.0
Sentiment: 0.21481481481481482
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: killowenskillwrote on 24.07.2022:[6.0] "Syuri has always seemed very limited to me, I don't like this definition, because it never really characterizes a wrestler, but she really is that stereotypical type who "just hurts." I've heard this about Nakamura, but he has charisma and there is a character, Kana, who is almost the same generation with her, despite all her talent, tried to be interesting and extravagant, and the matches didn't end with her beating the shit out of everyone, she could entertain the audience and be very funny. Syuri may be very good for a mid-carder who has one small title race, but her role leads her to a dead end when interest is simply lost, and I don't even want to seriously argue whether she will defend the title next time or not. Her rivals don't get any effort, their characters don't defend themselves, Syuri easily experiences even legitimate tricks and moves to win the match and not even show how hard it was for her, and the quintessence of the absurdity of her booking is a match against Momo. My main complaint to Syuri is that she doesn't try to be interesting, and the hype around supposedly good matches tends to get lost, and Kota Ibushi once proved it. Right now, Syuri is the wrestler who, starting in a fun HUSTLE, is afraid to experiment, invent distinctive features for his confrontations, and win in some other way, except for full-fledged destruction, which will amuse her champion ego, but which won't bring anything to both the opponent and her, given that she already has the highest status, and she defeated everyone she could. Her current push just won't let her drop lower than the third or fourth person in the company, and her own stable has strengthened her even more, and if Syuri continues to be the way she is now, this is a very sad sign for me personally, as a fan of the promotion, who one day may just get tired of it."
Rating: 6.0
Sentiment: 0.09938492063492063
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: zags7000wrote on 15.07.2022:[10.0] "Probably the best women's wrestler in the world today and certainly in the top 3. Her physicality in the ring brings a level of realness along with her background that makes everything she does believable. Her storytelling is strong as well and overall, in the ring few can match her, and none best her. Her character work isn't the greatest but still passable and she does enough to be a star for one of the hottest companies in the world."
Rating: 10.0
Sentiment: 0.4447619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: siffwrote on 20.02.2022:[10.0] "Syuri really hit the ground running in STARDOM and even being a big fan of her's I didn't expect her to have such an incredible 2021 like she did. She really became undeniable and worked herself into the top title. It's always nice when a push like that just develops naturally and out of great work."
Rating: 10.0
Sentiment: 0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: DangoDaisukiwrote on 20.02.2022:[7.0] "Ich möchte so gerne ihre Matches genauso sehr mögen wie die meisten, aber ich verliere immer wieder das Interesse im Match. Ich komme vielleicht einfach nicht mit ihrem Stil klar oder vielleicht liegt es daran, dass sie für mich kein Charisma hat. Ich weiß es nicht und ich werde es weiterhin versuchen mit ihr warm zu werden. Sie ist definitiv eine gute Wrestlerin."
Rating: 7.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Lalo Camposwrote on 18.02.2022:[10.0] "The best female wrestler in the world in 2021 and 2022, since her days in HUSTLE as KG and their awesome matches with Iwatani and Fujimoto, Syuri is the total package"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: teenagehonvedfanwrote on 12.02.2022:[10.0] "An enormous dork who'll happily put a daft hat on or wrestle in a Mario costume against a pervert in a sailor suit, , , Syuri is without a doubt one of the best wrestlers and workers in Stardom who if needed could legit beat you into submission. She's clearly the workhorse in DDM but doesn't that that "rock star" look Giulia has despite being ten times the wrestler her stable leader is. Amended: She's gone from being up there with the best to being arguably the best wrestler and worker in joshi. Deserves a long run with the red belt and a feud with Mayu at some point."
Rating: 10.0
Sentiment: 0.4277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: SquilliamFancysonwrote on 11.02.2022:[9.0] "Syuri is a top tier ass kicker and fiery babyface matched by few today. While her character can be a little bland, she has INSANE physical charisma."
Rating: 9.0
Sentiment: -0.17569444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: nWo-Joshi-Guywrote on 11.02.2022:[9.0] "An amazingly talented wrestler capable of performing incredible matches. Her character can be entertaining at times; but I personally find her to be a bit boring most of the time."
Rating: 9.0
Sentiment: 0.2571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Jaedynr5wrote on 10.01.2022:[10.0] "i've always been a very big fan of Syuri, but ever since her stardom debut, she's just been on a whole other level, her current run reminds me of Kurt Angle in a way, the former legitimate athlete that returned/joined into pro wrestling and were automatically great, even down to the tiniest details, like both being very suplex heavy wrestlers along with the way they can just transform from goofy to wrestling machines, but there's a lot i can say about her that i can't get into, so overall, great wrestler, lots of charisma, definitely watch her in 2022"
Rating: 10.0
Sentiment: 0.15534188034188037
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Suzukigunwrote on 30.12.2021:[10.0] "I've had her at a 9 for a while, but it's time to boost her up to a 10. In my opinion, she's one of the best wrestlers in the world. Her in-ring ability is flawless, she has charisma for days, she can go from hilarious to intense within a second and she has everything you want in a wrestler. Every time she's doing anything, she steals the show. Every superlative she gets, she deserves."
Rating: 10.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Wright15wrote on 29.12.2021:[10.0] "Syuri is one of the very best wrestlers in the world. I never would have said that before she joined Stardom: while a few others praised her work years ago, I always saw her as just good, with great but unpolished striking and grappling. I am confident that as late as 2014 she wasn't near the level that she is at now. Whether her shoot boxing and MMA career improved her ability, whether she got better regardless, or whether I simply misjudged her ability, she is the perfect wrestler for post-2020 wrestling, an era where more and more fans are partial to technical grappling, nasty striking, and convincing expression."
Rating: 10.0
Sentiment: 0.3055555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Wrestling Foreverwrote on 18.12.2021:[10.0] "Aktuell eine der Aushängeschilder bei STARDOM und einer der besten Joshis der Welt schließt nicht Io Lücke ist trotzdem sehr wichtig für Stardom."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: NoSellwrote on 06.11.2021:[10.0] "Currently the best women's wrestler in the world and one of the best regardless of gender. Has a legit case for wrestler of the year and in my opinion she should be 2nd behind Shingo. Her body of work this year is absolutely insane, has great matches with everyone, had probably the greatest women's match ever against Utami, a classic against Momo, bangers against Iroha, AZM.. I could go on and on. She has to be the next Red Belt champion, she deserves it more than anyone."
Rating: 10.0
Sentiment: 0.2555555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Smoothlywrote on 27.10.2021:[10.0] ""The Woman on a Different Level" as AZM called her has been exactly that in 2021: intense, entirely legit in everything she does and impossible to take your eyes off; the ferocity of her strikes, her poise and just her general aura says she's basically a walking war crime inside a wrestling ring. If you haven't seen at least one Syuri match this year you really have been limiting your enjoyment of pro wrestling as right now she is absolutely peerless!"
Rating: 10.0
Sentiment: 0.026904761904761914
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Grissomwrote on 06.10.2021:[9.0] "Syuri bringt sehr viel Erfahrung mit und ihre größeren Matches enttäuschen so gut wie nie. Sie dürfte aus dem Donna del Mondo Stable overall die beste sein und ihre Karriere vor Stardom ist auch beachtlich. Sie bietet eine gute Mischung aus Hard Hitting Style, Submissions und Technik."
Rating: 9.0
Sentiment: -0.14583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: No Onewrote on 27.09.2021:[10.0] "In the year 2021, Syuri has found herself to be a candidate for: Wrestler of the Year, Women's Wrestler of the Year (she definitely is the rightful Women's Wrestler of the Year), Most Outstanding Wrestler of the Year, Most Charismatic Wrestler, Tag Team of the Year (with Giulia), Feud of the Year vs. Utami Hayashishita, and Match of the Year (vs.Utami, Takumi Iroha, and/or Momo Watanabe, take your pick)... WOW! ... Based on the story being told, I already picked her to win the 5 Star Grand Prix in order to settle the score with Utami and finally get a winner... and Syuri should be winning the World of Stardom Championship at the end of the year, and should rule 2022 with an Iron Fist. She has become one of the true BOSSES of Joshi Wrestling."
Rating: 10.0
Sentiment: 0.3886363636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: inauricwrote on 04.08.2021:[10.0] "Currently the best in ring worker in the world of any gender. The kind of chain wrestler that also turns her opponent into an expert chain wrestler themselves, the most powerful and expressive striker currently working a ring, and someone who adds immense amounts of depth to any match she's in. She is a natural storyteller with every motion and expression, and she is also fantastic at passing this feeling and momentum onto her opponents. She is a star who is also a star maker - you can see this in her mentorship of Giulia among others. Already an all-time great with so much more to achieve."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: blastostgwrote on 28.07.2021:[10.0] "After returning to wrestling following a stint in the UFC, Syuri has been on an absolute tear in Stardom. She was always a solid in ring talent before but since joining forces with Donna Del Mondo, she has put it all together. Her grappling is brutal and technical, her kicks devastating and she is the Scream Queen of the Ring. While Giulia is the face of DDM and their leader, Syuri is their workhorse."
Rating: 10.0
Sentiment: -0.2791666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: telmo777wrote on 07.07.2021:[10.0] "If Syuri does not deserve a 10, who does? ! Has the total package and is one of the best in the world right now. She is the most protected wrester in Stardom for a reason. Hard to imagine someone beating her clean nowadays. Former Artist of Stardom Champion and current SWA and 1/2 of the goddesses of stardom champions. Sooner or later she will be World of Stardom champion. Fights for the memory of her mother and there isn't a powerfull motivator than that. Gives everthing she has in the big matches and always steals the show."
Rating: 10.0
Sentiment: 0.18607142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: KazeNiNarewrote on 05.07.2021:[10.0] "We are 7 months into 2021, and I think it's fair to say, this is Syuris year. After finally settling in a promotion, and it being Stardom, Syuri has ascended to be recognized as one of the, if not, the, best female wrestler in the world."
Rating: 10.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: nightswaywrote on 17.06.2021:[10.0] "It's been awesome to see Syuri have a great breakthrough in Stardom year after years of great work as a freelancer. Unlike a lot of MMA-based wrestlers, she's also got the charisma to stand out in wrestling."
Rating: 10.0
Sentiment: 0.8666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Kungwrote on 26.05.2021:[10.0] "Syuri might be the most underrated woman wrestler on the planet right now. She has a great look, she's great in the ring, she's a legit fighter, and she has the badass gravitas that almost no one else in Stardom currently has. Also, her recent turn to a psychopathic woman who constantly tries to kiss Utami is absolutely hilarious."
Rating: 10.0
Sentiment: 0.34821428571428575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: ElPolloLocowrote on 10.05.2021:[8.0] "Imagine if KENTA could still go in the ring like he used to but used his present crazy character: that is Syuri in a nutshell. Her whole feud with Momo Watanabe was pure comedy genius topped by very good in-ring action. This wasn't supposed to happen because Syuri was not merely the last person one thought about joining Stardom, but also the complete opposite of her present character. From the DDM introduction based around a 90's sitcom to her "auditioning" for the Cosmic Angels literally nobody is safe from her. And that's before the match is even announced. I wouldn't be too surprised if she went on to hold every single belt in Stardom bar the Future one at one time or another because right now she's literally on fire."
Rating: 8.0
Sentiment: 0.1242857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: TeenageDirtwrote on 02.04.2021:[10.0] "She got her hands full of cards any many of those are aces. Ask her to be a bad ass technician or striker and she will. Ask her to be funny en she'll make you crack up. One of the best right now."
Rating: 10.0
Sentiment: 0.280952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: KyleEnjoysWrestlingwrote on 07.03.2021:[8.0] "Syuri is one of the best in ring workers currently in Stardom. She can work with anyone & make it look good. While Giulia is the leader of DDM, Syuri almost acts as the group's enforcer -- being the one who is clearly the most proficient fighter. That aura about her is helped by her legitimate MMA experience. Having spent time in the UFC gives her appeal to western audiences who obviously are very familiar with that organization. To add to her in ring prowess, she has a great look & her wardrobe is always magnificent; especially her entrance gear. The red wings she sported at the recent 10th anniversary show looked exceptionally cool."
Rating: 8.0
Sentiment: 0.32249999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: rustybridgewrote on 22.03.2015:[9.0] "How someone so cute could be so good in the ring I don't know. But not complaining because she is great to watch. Good list of accomplishments for just 6 years in the ring."
Rating: 9.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: 1goldcoinwrote on 19.03.2015:[8.0] "Syuri is cute and fun to watch in the ring. Another good Joshi talent with 7 title reigns and a tournament so far in her short 6 year career. I'm sure there will be more accomplishments to come."
Rating: 8.0
Sentiment: 0.37142857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Saphirwrote on 10.01.2014:[8.0] "Geht gut ab, mir ist bisjetzt nichts negatives aufgefallen. Taugt auch bei mixed Tagteam Matches."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Fountain of Misinformationwrote on 20.06.2012:[7.0] "Ohne Zweifel ein richtig großes Wrestling-Talent und so jung, dass da noch einiges auf uns zukommen wird. Für eine große Karriere ist jetzt bereits alles vorhanden."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=8760&gimmick=Syuri
Comment: Obermackerwrote on 13.12.2010:[8.0] "Cooles hardhitting girl, zuckersüß, aber gibt immer 100%!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Anas Kingwrote on 20.01.2025:[4.0] "Another case of an ok wrestler, who is tremendously hyped by the internet wrestling community. Was he good, yes. Does he deserve to be in the same category as some of the very best wrestlers in the world, the answer is hell no. A lot of people overrate his influence as well. I live in an Asian country, and I have yet to meet a person who knows him. He's deceased now, so I'm not going to say much bad stuff about him. But I'll just say, he'd the text book definition of being an OK wrestler. There's nothing wrong with being an OK wrestler THOUGH."
Rating: 4.0
Sentiment: 0.22451790633608815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: chachuonlinewrote on 13.11.2024:[6.0] "A super influential figure in the world of professional wrestling, and mma to an extent. Though not widely famous in the U.S., his legacy as a trainer and innovator remains immense."
Rating: 6.0
Sentiment: 0.04583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: manamimeltzerwrote on 12.09.2024:[7.0] "A true pioneer and innovator. His fundamentals were the key to his success as a professional wrestler. He helped develop so many elements and integral aspects of professional wrestling. His actual in-ring output is nothing fantastical but that doesn't take away from his legacy whatsoever."
Rating: 7.0
Sentiment: 0.19285714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: MainEventMasterwrote on 29.11.2022:[10.0] "Probably the most important wrestler of time, influential in Japanese wrestling, influential in producing shoot-style wrestlers, influential in the moves we see today."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: TheOneAndOnlyCactuswrote on 13.09.2022:[10.0] "You don't get nicknamed the God of Pro Wrestling for no reason. Gotch's style and vision was key to the development of Strong Style in New Japan and what would be the genesis of MMA in the future. A refined technical wrestler with incredible strength, his legacy lives on thanks to the wrestlers he trained. Minoru Suzuki, Tiger Mask I, Yoshiaki Fujiwara, Tatsumi Fujinami, Antonio Inoki, Dean Malenko, Riki Choshu, Bob Backlund just to name a few."
Rating: 10.0
Sentiment: 0.18371212121212122
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: CoolKylewrote on 30.04.2022:[10.0] "He looks good in the little footage we have, but ultimately he's a guy who's legendary for his influence and vision rather than legendary matches."
Rating: 10.0
Sentiment: 0.5025000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: GriffinXwrote on 01.02.2022:[10.0] "Gotch's style was so key to the development of what we now call Strong Style from New Japan. It says a lot people called him the god of wrestling"
Rating: 10.0
Sentiment: 0.1898989898989899
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Ma Stump Pullerwrote on 28.06.2021:[10.0] "There's not a lot of material to judge a guy like Karl Gotch, namely because a vast majority of it is untelevised and lost to time, or is in dark undercard matches in NJPW. What we DO know of the man was that he was probably one of the most refined classical wrestlers of his time, using a lot of old school technique taken from OG wrestlers like Frank Gotch and many more, had freakish strength (capable of throwing men way above his size over for suplexes with relative ease) and is probably THE trainer for Japanese talent. His regime of conditioning the neck and refining the body without weights would be the method used all the way up to the present day, as well as basically training almost everyone who was relevant for NJPW: Suzuki, Liger, Inoki, Tiger Mask, Fujiwara, the list goes on and on. Without him, we don't have shoot-style at all, so MMA wouldn't exist. AJPW in the 90's wouldn't be able to destroy their necks in Kings Road bouts. NJPW wouldn't have the strong focus on legitimising wrestling as more of a sport. He'd be known more if he hadn't chased himself out of America with his very stubborn attitude about what wrestling should be, but even with that in place, he's easily a legend even without access to most of his material, considering he basically set the seeds for Eastern wrestling for decades to come."
Rating: 10.0
Sentiment: 0.23412698412698413
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Jetlagwrote on 28.08.2020:[10.0] "Sein Einfluss ist natürlich kaum zu quantifizieren, ohne ihn gäbe es japanisches Wrestling und wohl auch MMA in seiner jetzigen Form wohl nicht. Gemessen an den paar Matches, die es von ihm noch auf Video gibt, war er außerdem ein absolut exzellenter technischer Wrestler, trotz fortgeschrittenem Alter."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: JEK 1991wrote on 31.12.2018:[10.0] "Very skilled fighter! Wish I could see more of his matches on Youtube. He is exciting to watch. he was very successful in Japan."
Rating: 10.0
Sentiment: 0.6468750000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Viper99wrote on 23.04.2018:[10.0] "Ich kann ausschließlich seine New Japan zeit sowie einige Matches aus seiner WWE zeit bewerten. Karl Gotch ist ein wirklich exzellenter und sauberer Old School Wrestler und einer der größten und bekanntesten Gaijins in Japan. Er ist wahrlich der Gott des Wrestling und prägte des Wrestling wie kaum ein anderer. Er war seiner Zeit weit voraus und war ein Vorreiter von so vielen noch kommenden Akteuren, weshalb man ihm fast nichts weniger wie 10 geben kann."
Rating: 10.0
Sentiment: 0.14545454545454548
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Basket Casewrote on 28.01.2014:[10.0] "Eine Legende dieses Sports und trainierte unglaublich viele spätere Stars. Volle Punktzahl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: JuliTheCage87wrote on 22.05.2013:"@NichtDieter: Achte mal drauf, dass du deinen Kommentaren entsprechende Bewertungen gibst und nicht 0 Punkte, das gilt auch bei Dean Malenko und weiteren, denen du ungerechte Abwertungen gegeben hast."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: treeofworldswrote on 01.08.2011:[8.0] "Hier traue ich mich nur eine 8 zu verteilen, da ich eindeutig zu wenig von Gotch gesehen habe. Was ich gesehen habe war aber höchst beeindruckend und allein wenn man sich mal überlegt wer aller von ihm trainiert und beeinflusst wurde, will ich mir gar nicht vorstellen wie es ums Wrestling heute bestellt wäre, hätte es Karl Gotch nie gegeben. R. I. P."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: RickRollwrote on 28.04.2010:[10.0] "Trägt zurecht den Spitznamen "God of Wrestling". Hat viel für das Shootstyle Wrestling getan und konnte auch im Ring mich extrem begeistern. "Revolutionierte" meinermeinung auch auch das "Old-School" Wrestling ein wenig.  Dazu war er auch außerhalb des Ringes sehr sympathisch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: LexLuger4everwrote on 20.03.2008:[10.0] "Der Spitzname kam nicht von ungefähr... ein Wegbereiter für so viele Stars, die ihm folgen sollten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: FreaKingwrote on 07.10.2007:[10.0] "Schade das diese Legende in Deutschland nicht so berühmt ist, wie es eigentlich sein sollte. Und das obwohl sein Move, der German Suplex, so oft gezeigt wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Bullit69wrote on 21.08.2007:[10.0] "Ich finds klasse, dass er dafür gesorgt hat, dass der German Suplex nunmal so heißt! R. I. P"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: Carlito Cenawrote on 29.07.2007:[8.0] "Und wieder ist ein Grosser gegangen. Allerdings kann ich mit seinem Ableben leben, welcher Wrestler wird heute schon noch 82? Voller Dank für den German Suplex: R. I. P."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=946&gimmick=Karl+Gotch
Comment: RockZauwrote on 29.07.2007:[8.0] "Selbst kann ich nicht viel zu ihm sagen, doch wenn die Japaner ihn schon als "God of Wrestling" betiteln und er Leute wie Tiger Mask und Inoki trainiert hat, dann hat das schon was zu bedeuten. Mein persönliches kleines geheimes (^^) Vorbild, denn er kommt aus Hamburg und hat es weit geschafft.. :)"
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: NothingGreatAboutwrote on 12.01.2025:[9.0] "È un concetto che non so spiegare bene, ma Minoru Suzuki ha street credibility. Qualunque cosa fa sembra assolutamente reale e dolorosa, ed il lavoro di interazione che fa tra il suo personaggio ed i suoi avversari è incredibile. Una leggenda."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: danzitorockwrote on 24.09.2024:[9.0] "Legendary wrestler, Suzuki is the definition of strong style. Very hard-hitter and with amazing martial arts techniques, such as grappling and submissions. One of the scariest and baddest man in wrestling, that still performs so well with an advanced age."
Rating: 9.0
Sentiment: 0.3761904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: jsbortswrote on 29.07.2024:[10.0] "Quite simply one of the greatest to ever do it. His impact on the industry is extraordinary in a way he'll never get credit for."
Rating: 10.0
Sentiment: 0.4444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: crs285wrote on 27.07.2024:[10.0] "36 Years of entertaining fans and being one of the best wrestlers in the world. Legit badass as seen in his time in MMA and is able to adopt to a changing pro wrestling world and still entertain the fans. His strikes are great and he just has a [presence in the ring that is perfect."
Rating: 10.0
Sentiment: 0.76
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Willie 19200wrote on 24.07.2024:[9.0] "He's in his late 50s and he's doing it better than a lot of people currently, his AEW matches are never crazy good however he gets the job done, puts people over while still looking crazy tough in the process. Overall great wrestler that any company would consider using. Also I loved his recent match with Knosuke Takeshita. Also I didn't realize until recently how insanely over Suzuki is."
Rating: 9.0
Sentiment: 0.054700854700854694
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: deceivrwrote on 23.07.2024:[10.0] "The purity of wrestling is explained as follows: To make it look as cartoonish or as real as possible. This man is the example of both in combination. He is a menacing man to look at, to see, to watch wrestle, to maybe even talk to. The more you see him, the more you truly know of what he really is at heart: a master character. He is as real as it gets in pro wrestling."
Rating: 10.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: woolyshamblerwrote on 21.07.2024:[10.0] "pure evil, pure class. made an excellent transition from murderous catch wrestler to kobashi-esque old man wrestler who just does chops and facial expressions and still delivers great wrestling. what a man"
Rating: 10.0
Sentiment: 0.18979591836734697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: WrestlingGuruwrote on 26.05.2024:[10.0] "Minoru Suzuki is one of those wrestlers that you watch and feel ok this guy is good but why is he so loved by everyone? The more you watch the more you fall in love with this man's work. One of my personal favourites heels from Japan that you absolutely have to cheer for. he's the man."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Lutwiejwrote on 17.05.2024:[10.0] "Suzuki is incredible. The first time I saw him, I was scared as fuck because from the moment he walked out, I knew shit was about to go down. He's one of those guys who can scare you, making you hope your fan favorites will hopefully survive him. His aura is impeccable, matched by very few wrestlers today, or even back in the day. His presence is complemented by his stiff, technical, and really great in-ring ability, making him one of the greatest wrestlers of all time."
Rating: 10.0
Sentiment: 0.20584656084656083
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: colinmcevwrote on 08.05.2024:[7.0] "I've only seen a few of his matches, and most of them are more recent stuff, so I may change this rating as I become more familiar with him. As it is, I like his intensity and the aura of danger he brings to his matches, but overall he's not really my preferred style of wrestler..."
Rating: 7.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Pigeon Scratchwrote on 29.04.2024:[10.0] "You don't fuck with Minoru Suzuki. He's genuinely just so striking and intimidating. There is no one like him, and he can really make any match he's in that would usually be completely bog standard bout into something you have to see, even if it's just to see him strike some fear into his opponents with his grin, his tongue, and his strikes. He's called Murder Grandpa for a reason. He seriously can do anything. He's fantastic for comedy due to his personality and striking presence and moveset, but also just as great for serious action for the same exact reasons. And even at his age, he's still fucking great."
Rating: 10.0
Sentiment: 0.17864583333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: BruceMarcos524wrote on 14.04.2024:[10.0] "One of the most intense pro-wrestlers that I had a pleasure of watching. Suzuki's hybrid of striking and technical wrestling makes him one of the most dangerous opponents that the guys wouldn't even dare to wrestle with. From the guy who came from Pancrase, one of the pioneer MMA promotions, he brought his legitimate toughness in the world of pro-wrestling and became one of the most badass guys in the ring. Although he doesn't have much catalogue of great matches, still his matches are enough to become watchable because of his intensity. Safe to say he is the best MMA to pro-wrestling transition athlete to date. His reputation makes you think that even guys that are bigger than him had no match against him. The way that he grins every time he took an offense makes him very terrifying. He is the type of guy who no-sells for a reason, daring you to hit hard as you possibly could only to get hit with a stiff strike at the end knocking your wind out. One of his amusing running gags especially his time in NJPW is coming every Young Lion and beating the crap out of them. Just simply his aura is intimidating, even you felt danger if you are in a same place with Suzuki. No gimmick needed, just being real and unfiltered is all it needs. Most of his opponents felt like facing Suzuki as some sort of badge of honor. Despite the intimidation, Suzuki is well-respected by his peers, and he can also be a goofball as proven by some matches where Suzuki is just having fun. In-ring, he is very agile despite his age nowadays and his strikes are very crisp and satisfying to watch. Glad that we have someone like Suzuki who at least brought some reputation to pro-wrestling and somewhat still treated as a sport where the industry has been treated as a novelty act nowadays."
Rating: 10.0
Sentiment: 0.1615327380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TripleCrownwrote on 04.04.2024:[8.0] "Fantastic wrestler. Not quite at the ace level, but he's a very, very good wrestler to have in a promotion. Has a great look, obviously slowing down a lot now given his age and time in MMA & wrestling throughout the years."
Rating: 8.0
Sentiment: 0.39088888888888895
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Kai Kantewrote on 02.03.2024:[4.0] "Mittlerweile völlig limitiert und langweilig. Der Wrestler hat seinen Zenit überschritten und kann nur noch über Brawling Punkten, wofür ihm aber die Statur fehlt. Es ist definitiv Zeit in Rente zu gehen, die Ringhandschuhe an die Wand zu nageln und den obligatorischen Hut zu nehmen."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Samprowrote on 28.02.2024:[10.0] "The best giant japanese ! He frightens me, he attracts sympathy. He can do anything and fight anyone. The dream wrestler."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: ptomlinson98wrote on 11.01.2024:[10.0] "Legendary wrestler. His mystique has only grown the older he's got - his ability to convey full stories through his face is incredible. Scariest, baddest, cruelest man in wrestling."
Rating: 10.0
Sentiment: 0.4833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: JediSaiyanMaster1203wrote on 25.11.2023:[10.0] "In contention with Nick Bockwinkel for the best wrestler to be in their 50s, a man who has mastered "Strong Style" and doesn't let his age slow him down, having amazing matches with almost everyone you put him in the ring with. The "Murder Grandpa" being one of my favorite gimmicks in recent memory, always fun to watch young wrestlers give it their all to chop him as hard as they can and he always comes back 100x harder and seeing who can handle it or not. He's had many great matches with guys like AJ Styles, Bryan Danielson, Hiroshi Tanahashi, Kazuchika Okada, Kota Ibushi, Kenta Kobashi, and many more I could name, having incredible chemistry with these men. He's a great wrestler who showcases his striking abilities the most, but has shown that he can be a great submission based wrestler, a great technical wrestler for sure. His chops are some of the best and most brutal, they'd make Gunther and Wahoo McDaniel blush, it's always painful but hard to look away whenever he does them. Overall, Suzuki is a legend and everyone should bow down to him!"
Rating: 10.0
Sentiment: 0.27822580645161293
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: skillgullwrote on 17.11.2023:[10.0] "Minoru Suzuki is great. He does so much with a limited moveset. One of the scariest Motherfuckers in the world, someone who could fuck up you big time. The fans love him, I love him. I'm always happy to see him even at the ripe old age of 55. Terrifying and one of my favourites"
Rating: 10.0
Sentiment: 0.14285714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Bullshark1wrote on 05.09.2023:[10.0] "This man has to be one of my all-time favorite Japanese wrestlers. Suzuki works his gimmick so well, and his in-ring work is impeccable, especially his match with Hiroshi Tanahashi in 2012. I'm also gonna miss his Suzuki-Gun stable, as it was my favorite group when it was around. I really wish NJPW would allow him to win the IWGP World Heavyweight Championship before he retires, because he's earned it."
Rating: 10.0
Sentiment: 0.39285714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Khalid Acewrote on 09.07.2023:[6.0] "May be what I'd say have contradictions but I do believe he's underrated and in the same time I'd give him is a 6 but only for his recent work"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: ImWrestlingAndSoCanUwrote on 25.06.2023:"Undisputed legend. Deadly striker, veteran ring psychologist and an underrated comedian. His reactions when opponents underestimate him are incredible."
Rating: No rating found
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Doof Warriorwrote on 22.06.2023:[10.0] "Minoru Suzuki is a legend and even at his age with limited mobility he still can pull off a classic match and get crowds going. Not everyone ages gracefully like that and can maintain an aura about them even when they're mostly jobbing."
Rating: 10.0
Sentiment: 0.1984126984126984
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Aliquickkwrote on 22.06.2023:[6.0] "If you love a very limited offensive style, if you love strictly chops and headlocks, if you love no sells, then you'll love this guy. If you actually enjoy a decent moveset, a guy that can take bumps and sell appropriately, and can actually move in the ring, you'll loate Suzuki. To me, he is one of the most overrated workers I've ever seen, and I truly don't understand the appeal. I appreciate strong style wrestling, but when you're exclusively limited to that style, you're incomplete in the ring and your matches become stale overtime."
Rating: 6.0
Sentiment: 0.2565934065934065
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Frank Shooterwrote on 02.06.2023:[9.0] "Murder Grandpa, the baddest wrestler alive, a complete psychopath and maniac, a madman who loves to torture his opponents and bully the young boys for fun, a master of grappling and terrifying hard hitting strikes. He achieved big accolades and a legendary status, but never got to be on that first line in NJPW, and he won't be at this stage of his career, which is a shame."
Rating: 9.0
Sentiment: 0.062037037037037036
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: MulderXFFwrote on 08.04.2023:[10.0] "The King! At 54, hes still one of the best in New Japan and is must watch every time. His wrestling skill is top notch and scary as ever."
Rating: 10.0
Sentiment: 0.28409090909090906
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: DarDawrote on 19.03.2023:"The King, one of the best old wrestler that Japan still have (and that's saying a lot). Badass, entertaining, matchs never disappoint : Minoru Suzuki is personally my favorite wrestler."
Rating: No rating found
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Logue38wrote on 09.03.2023:[9.0] "Understandably a legend and all-time great, but he doesn't quite reach the level of GOAT status, as I don't think he has many matches that I would consider all-time classics. He also sort of settled into a late-career persona that doesn't really allow for much variation or creativity in his matches anymore. He's menacing, but what else?"
Rating: 9.0
Sentiment: 0.13999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: texasyoshwrote on 31.01.2023:[10.0] "Minoru Suzuki, both an important figure in MMA and pro wreslting, is a pretty great heel wrestler. Great work in every promotion he's been in, and always consistent, even with his age. A legend of Japanese shoot-style, an excellent career that spans over 30 years. Best work is in NOAH and NJPW, but he has had great work in AJPW as well."
Rating: 10.0
Sentiment: 0.5888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Daigotsuwrote on 16.01.2023:[9.0] "Suzuki still has an aura of menace and badassery, even at his age. I suspect he deserves a little higher, but I've only really been exposed to his work recently. He's still awesome, despite the limitations of a guy his age wrestling will naturally have."
Rating: 9.0
Sentiment: 0.19464285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: benh2wrote on 12.01.2023:[9.0] "An absolute badass. He plays his gimmick perfectly often leading to vicious matches in the blowoff to his feuds. Technically excellent which is to be expected after an MMA career and still physically strong despite his age. Quite mind boggling to think this guy was in Maeda's UWF well over 30 years ago and is still performing at a high level."
Rating: 9.0
Sentiment: 0.24190476190476187
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: MainEventMasterwrote on 14.11.2022:[10.0] "The perfect wrestler and the perfect villain, and he has really stepped up the last few years, becoming a standout name that everybody knows and that everybody loves."
Rating: 10.0
Sentiment: 0.4083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Tyler72wrote on 17.07.2022:[6.0] "I've always been excited to watch Minoru Suzuki and his matches, but I've never really enjoyed how he sometimes no sells some of the moves given to him. I know that this is sort of part of his tough guy attitude, but it really just ends up looking effortless and sloppy most of the time."
Rating: 6.0
Sentiment: 0.0032407407407407385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Golden Loverwrote on 11.07.2022:[9.0] "One of the best heel wrestlers of all time. Unbelievable intensity, carries himself so well and portrays grumpy sadistic murder grandpa better than anyone ever, yet he seems to be a genuinely cool guy, or at least I assume he is considering he has had his silly matches too which is another positive in my eyes. Total legend, one of my all time favourites."
Rating: 9.0
Sentiment: 0.14747474747474745
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Wright15wrote on 28.06.2022:[10.0] "A founder of Pancrase, pioneer of MMA, and dangerously talented grappler in his day, Minoru Suzuki has always been both an elite athlete and entertainer. His sadistic aura is practically unmatched historically: whenever his music hits, it's like the arena gets ten degrees colder. I have never seen someone hit his prime in his 40s and, if anything, just get better in his 50s. He is one of the most charismatic wrestlers I've seen, one of the nastiest brawlers I've seen, and one of the best promos I've heard. He has adapted to every environment that he has encountered without changing his character or style. An all-time great for sure."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: AnthoTheKIDwrote on 23.06.2022:[10.0] "Minoru Suzuki is one of the gems of NJPW and wrestling overall. Don't let his smile fool you, he's one hell of a brawler/striker."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Lcrossinwrote on 25.05.2022:[8.0] "Minoru Suzuki is really good and has some really fun matches I just don't think he's my optimal kind of wrestler, but I still acknowledge that he is very good, and that there's a reason why he is rated so highly."
Rating: 8.0
Sentiment: 0.534
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Wrestlekingwrote on 15.04.2022:[10.0] "An absolute legend in every way. His authentic style is so amazing and fun to watch. Minoru Suzuki is an accomplished wrestler and mixed martial artist. He is one of the greatest heels of Japan."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Wrestling Foreverwrote on 05.04.2022:[10.0] "Wo ist denn hier der Kommentar wieder hin. Badass total er kann so ein A... sein und ist so fies und respektlos zu seinen Gegner. 33 Jahre ist er schon im Ring aktuell ist er 53 Jahre alt aber wo sieht man das? Eine Legende in Japan ist er längst schön das er auch wie 2021 wieder ein US Tour macht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: FallDogswrote on 25.03.2022:[10.0] "No one scares me like Minoru Suzuki does. From the moment the bell rings you know you are about to watch your favourite wrestler be torn apart by the grumpiest and scariest murder grandpa alive."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: rigb111highlightswrote on 21.03.2022:"One of the best wrestlers to ever exist. Great in ring work and great story telling. Overall a greatest of all time contender."
Rating: No rating found
Sentiment: 0.72
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: GriffinXwrote on 22.01.2022:[10.0] "Murder Grandpa. A much needed link to the past in the morden world. Using great strikes and submission only he knows these days. Even if you don't know his history in wrstling or MMA the guy has that aura that tells you "This man is dangerous""
Rating: 10.0
Sentiment: 0.030000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "Despite being 53, Suzuki can't fairly be judged as a veteran. His style is extremely workable, and he can do so much with so little. Presence, charisma, facial expressions, they're all as valuable to Suzuki as his in-ring striking. His 2021 only really started half way through, with the NEVER Six-Man title challenge, but then he crammed so much in. His out-of-nowhere match against Danielson is a top five MOTY for me, and his DDT six-person tag was another surprisingly brilliant affair. He remains a hugely important piece of the pro wrestling landscape."
Rating: 9.0
Sentiment: 0.22291666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: HighFlyDeathcorewrote on 29.11.2021:[10.0] "The King and the Murder Grandpa. He has a scary stiffness and the unique ability to literally have a good match with anybody. I loved his work in every company he has ever been in. Also a submission expert that makes even Bryan Danielson flinch. i havent watched millions of his matches but i did adore his matches with Nick Gage, AJ Styles and Tetsuya Naito"
Rating: 10.0
Sentiment: 0.31875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: IBladeDailywrote on 21.10.2021:[10.0] "One of the scariest and most convincing heels in the history of the business. His in-ring work is fantastic and, even in his mid-50's, he is still having incredible matches with people like Bryan Danielson, Shingo Takagi, etc. He's built a wordwide reputation while only occasionally venturing out of Japan. 30+ years in the business and still one of the best."
Rating: 10.0
Sentiment: 0.4714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: WrestlingOctopus72wrote on 04.10.2021:[10.0] "The King. Complete package, real deal. Proven against the toughest of opponents. Versatile to all styles."
Rating: 10.0
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Jaedynr5wrote on 04.10.2021:[10.0] "this man scared me when he was 30, and if anything, scares me more now that he's 53, this man is an absolute force of nature, you don't even try to fight it when he comes around for anything, i also love how he's the only guy i know that New Japan lets do freelance stuff even though he's mainly in New Japan. great wrestler, probably one of the most intense wrestler's i've ever seen, and hearing his music alone gives me chills every time it hits"
Rating: 10.0
Sentiment: 0.3303030303030303
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: IFeelLikeAi3wrote on 12.09.2021:[10.0] "The Murder Grandpa, or as I like to call him, The Murker Grandpa, is one of the best workers and shooters in all of ProWres history. This is who you go to for matwork, a murderous technician who will scare your boots off in the ring, leaving them unlaced. This is what happened to Osamu Nishimura. Fear him. He is a wrestler for who everyone is a great rival, but his series with First Tiger Mask particularly sticks out. A true son of Inokiism, he has cultivated his own philsophy of Grandpa~ISM~. Murder Grandpa is so feared and so dangerous, that his brutality not only destroys his opponents, but also promotions. His singles competition against MMA Legend Yoshihiro Takayama in NOAH, is a master class in how to Shoot. You could expect nothing less from the King of Pancreas."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: AdamOmegawrote on 10.09.2021:[10.0] "The King is an absolute murderous bastard that will take your favorite wrestler out limb-by-limb. His submission work is 10/10 (in prowrestling and in IRL), his striking though his weakest part IRL is his weapon of choice. He enjoys taking damage and he enjoys delivering damage. Trained by Gotch. Extremely respectful offscreen. Respected and feared by all. I cant remember anyone who was or is as great as him in his age."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Surelywrote on 10.09.2021:[10.0] "He's past 50 and clearly immobile to a certain degree and he still kicks all kinds of ass. Just a phenomenal pro wrestler in every way."
Rating: 10.0
Sentiment: 0.14107142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Suzukigunwrote on 09.09.2021:[10.0] "Look at my name. Do I need to say anything else? Suzuki is a legend through and through and deserves this rating."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: SmartForceOnewrote on 17.08.2021:[10.0] "When talking about wrestlers who were late bloomers, Minoru Suzuki has to be at the top of the list. Putting on his best work in his 40's, Suzuki was one of the best wrestlers in the world throughout the 2010's. Even at age 53, you could put Suzuki in the ring with just about anyone else and believe that he could kill his opponent if he wanted to. A model example of how to be great at an advanced age."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: FightForeverwrote on 27.06.2021:[10.0] "Suzuki is one of the greatest and most believable wrestlers of all time, amazing submission and limb work. Along with amazing heel work, promos, and just all around wrestling. Even into his 50s hes a huge badass and legit scary, extremely consistent. I just can't not rate Suzuki 10/10"
Rating: 10.0
Sentiment: 0.41875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: SoaKaswrote on 14.05.2021:[10.0] "Suzuki is one of the greatest of all time, no discussion about that. His wrestling style, his presence and his charisma make him incredibly unique and a joy to watch. His matches are very versatile but nearly all of them completely deliver. I simply can't rate him less than 10/10."
Rating: 10.0
Sentiment: 0.3010416666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Legend003wrote on 15.03.2021:[10.0] "Für mich einer der besten Wrestler aus dem japanischen Bereich. Unglaublicher tougher guy und ist im Ring auch noch in seinem 50s wirklich gut zum Anschauen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Kungwrote on 02.03.2021:[10.0] "Quite simply one of the most legit tough guys in modern pro wrestling history. Even into his 50s, Suzuki is still one of the scariest guys in the industry and one of Japan's all-time talents. I don't know where New Japan would be without him. Also, check out the stuff he did in Pancrase back in the early 90s if you haven't already!"
Rating: 10.0
Sentiment: 0.08178210678210678
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: michmoose21wrote on 08.02.2021:[9.0] "Suzuki is an amazing heel, and a top stiff worker in the world. One of the scariest men in wrestling, and is willing to put others over."
Rating: 9.0
Sentiment: 0.2839285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: medousewrote on 29.10.2020:[10.0] "Probably the greatest martial artist in the world. Well known for his brutal and vicious wrestling style. After more than 30 years in this business he is still the best wrestler, both technically and from personality angle. His matches are always at the highest level. This guy is a true gem."
Rating: 10.0
Sentiment: 0.121875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Makai Clubwrote on 24.10.2020:[8.0] "Minoru Suzuki is a tough cookie to really rate. Most of his wrestling career has been done outside of his physically peak due to him leaving pro-wrestling in 1993 for Pancrase and he didn't really return properly until 2004. Suzuki has always showed signs, after all he was trained by some excellent wrestlers like Yoshiaki Fujiwara but suffered due to being unable to really adapt back to wrestling for a good while. Suzuki was great at projecting his personality and using his legit skills to further his matches, somewhat, but his matches had a tendency to go far too long and be rather empty. His legit work took years to translate despite having some quality matches during that time. It was never consistent. Once he was able to fill in his downsides, Suzuki became a pretty awesome wrestler. From 2011 onwards - basically once he took over Kojima Army and formed Suzuki-Gun - he turned into a very outlandish attaction. His matches was able to blend his legitmate aura and pro-wrestling drama superbly well. His matches with Hiroshi Tanahashi captures that really well. And not just the KOPW match, but his Wrestle Kingdom match as well. While I don't think Suzuki suits being a long term main eventer, as he's more suited to limited title matches to protect what he brings to the table (the NOAH run would show you what happened when you over expose his style of match), he is someone well worth keeping on your roster."
Rating: 8.0
Sentiment: 0.21191716269841274
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: rainmakerpunkwrote on 20.10.2020:[10.0] "One of the best and most unique performers ever, in NOAH and in AJPW, at the age most normal human wrestlers would be at their prime, Suzuki was good, but far from the talent he could be, however in NJPW, in his 40s and 50s, when most people would be practically done, far past their prime, Suzuki entered his prime and worked better than ever, and still doesn't seem to be slowing down, he's an incredible heel, in the conversation for best heel ever, his striking game is top tier, his submission work is flawless, and agression is better than anyones, he works a different style of matches than anybody else and is perfect at it"
Rating: 10.0
Sentiment: 0.40997474747474744
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: brandon062896wrote on 18.10.2020:[9.0] "Remarkable athlete for his age. His matches are hard hitting slugfests, and those are always fun to watch. I'd love to see him as IWGP Heavyweight Champion despite being one of the oldest members of the NJPW roster"
Rating: 9.0
Sentiment: 0.3145833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: BlakeFR37wrote on 25.09.2020:[10.0] "G. O. A. T, the four first letters coming in my mind thinking about Minoru. He still one of the best and every f***ing wrestler should call him Daddy. Some tears would appear in my face when i will learn about his retirement. A legend."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: qveenovhellwrote on 25.09.2020:[10.0] "Simply one of the greatest of all time. Continues to perform into his 50s as naturally as peers 20 years younger than him. Suzuki "in his prime" is simply Suzuki at any point of his career."
Rating: 10.0
Sentiment: 0.22000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: lee wilkinsonwrote on 29.07.2020:[10.0] "One of the absolute best! No other wrestler has been that good into their 50s. I could just watch him giving stiff shots and terrorising fans, referees and young lions all day. Here's to many more years terror and Suzuki-Gun"
Rating: 10.0
Sentiment: 0.3560267857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Okaro143wrote on 02.02.2020:[10.0] "This guy is just so good consistently delivering everytime he is in the ring. Considering he is 50+ yrs old, he is so damn good. I love his matches with Okada, Tanahashi and also the one he had with AJ at 2014 G1 Climax."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: FogsCutterwrote on 25.01.2020:[10.0] "He is charismatic, vicious, and dangerous. The only thing that he needs is the IWGP Heavyweight Championship. Great Wreslter."
Rating: 10.0
Sentiment: -0.06000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: VillainClubwrote on 23.12.2019:[10.0] "Sehr guter Wrestler der trotz seines alters immer noch gute Matches abliefert. Seine Rolle nimmt man ihm ab und er wirkt totz vieler Niederlagen um den Heavyweight Titel noch wie ein glaubhafter Herausforderer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Hippykillerzwrote on 27.10.2019:[10.0] "What can be said about this legend that hasn't already been said! A trailblazer in every sense of the word, he has been one of the most important and greatest wrestlers not only in Japan, but in the world. It's a shame that he never had a run as iwgp champion but in a strange way, it helps cement his untouchable legacy."
Rating: 10.0
Sentiment: 0.37
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Same Old Same Oldwrote on 13.10.2019:[10.0] "An unbelievable talent, a modern legend and a marvel for his age, Suzuki is easily one of my favourite wrestlers of all time. As one of the few workers who can consistently pull off "legitimate badass" look and workrate, Suzuki is a top tier striker, brawler, tag worker and submission specialist. Even at his age you could easily buy him as a real contender for all his opponents and doesn't currently show any signs of severe wear and tear at this stage. His match history and quality also speaks for itself, All Japan, Noah, MMA and of course New Japan, in the case of the latter sadly making him criminally underrated at the same time for not holding the IWGP Heavyweight Championship."
Rating: 10.0
Sentiment: 0.053119429590017836
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: KyleEnjoysWrestlingwrote on 06.08.2019:[5.0] "Never really saw the appeal in this guy. I know he's a legit shooter, but he also seems like a legit piece of crap. His matches are mostly one-note with very few exceptions. People love him because he's stiff. But as far as I'm concerned, I think a Bret Hart fake punch looks much better than a Suzuki real punch any day of the week."
Rating: 5.0
Sentiment: -0.0074285714285714345
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: SZ1989wrote on 22.07.2019:[10.0] "Minoru Suzuki will be remembered as one of the greatest wrestlers to ever grace professional wrestling in Japan. He was a leading pioneer for shoot-style, and proved his worth when it came to actual MMA in Pancrase. His career longevity and consistent contributions to the list of all-time great wrestling matches, including the match that perhaps sparked NJPW's revival with Hiroshi Tanahashi, should speak for itself."
Rating: 10.0
Sentiment: 0.4083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: NEVERoverweightChampionwrote on 04.07.2019:[10.0] "He is a great brawler and sometimes seems to be mostly recognized by western fans for his strikes but while he is good at beating the shit out of his opponents, he is above all one of the greatest technical wrestlers ever, trained by absolute legends, representing a prestigious legacy. He is a relatively simple character but knows how to make it work perfectly. Intelligent wrestler, every moves he does feels important, he is one of the masters of limb working and psychology. Wrestled more or less everywhere in Japan, is a precursor of MMA... simply a legendary wrestler with a remarkable longevity. He obviously can't bump too much anymore but finds a way to work around that."
Rating: 10.0
Sentiment: 0.36018518518518516
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TheFrenchDisasterwrote on 03.07.2019:[9.0] "Suzuki is really scary, if he's in front of you, you shit yourself on, literally. Just see what he did to Kana, he even hit his own partner. He does not hesitate to hit Young Lions and he managed to build a legit monster reputation. At the same stage as Ishii, he is one of the best fighters in the history of Wrestling and the most scary man on the Planet."
Rating: 9.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: neat o wrasslinwrote on 18.06.2019:[10.0] "Hands down the best shoot wrestler.  Despite limited athleticism, Suzuki mastery of shoot technique makes every match he is involved in worth watching.  Usually if a 5'10 wrestler is booked as a monster it does not work, but for Suzuki it works perfectly."
Rating: 10.0
Sentiment: 0.30383597883597885
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: ZestyZuluWarriorwrote on 10.06.2019:[10.0] "Minoru is as tough and scary as they come. Some an absolute tank of a fighter and one hell of a brawler. I feel bad for anyone who ever has to step in the ring with him because they're about to get the shit beat out of them by one mean s. o. b"
Rating: 10.0
Sentiment: -0.31689814814814815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: PuroresuLoverwrote on 07.06.2019:[10.0] "The most terrifying man in planet Earth. He is the Ultimate Heel, no one can be like him. His technicians and brawling skills are something from another world, like I said, no one can be like this supremed god-tier wrestler."
Rating: 10.0
Sentiment: -0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: BadAssTranslateTradingwrote on 28.05.2019:[9.0] "Suzuki has been phoning it in since 2015 but what he did from 2003-2015 shouldnt be ignored. His 1st New Japan run and his All Japan and parts of his Noah run was all top tier stuff. Without doubt a living legend."
Rating: 9.0
Sentiment: 0.3181818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "Despite beign 50 he is still the most terrifying man in all of NJPW. He is brutal and he is the leader of Suzuki-Gun. He has also had so many good matches."
Rating: 10.0
Sentiment: -0.03500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: AlexLikesJoshiwrote on 08.04.2019:[7.0] "He's pretty overrated 10 should really be saved for elite level wrestlers which Suzuki is not.  He can have great matches with the right opponents but can also have some extremely boring matches.  His MMA background has helped him stand out in NJPW but he hasn't used it as well as others would have.  Overall a good wrestler but not a special talent"
Rating: 7.0
Sentiment: 0.13214285714285712
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: zephyrwrote on 19.03.2019:[10.0] "Bumping his rating up to a 10. Great in the ring for multiple decades, great promos, incredible scary aura, great long-term character building; this guy is pretty much the complete package."
Rating: 10.0
Sentiment: 0.37222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Kevin41182wrote on 14.02.2019:[9.0] "Suzuki is one of the most deserving members of the New Japan roster that should get an IWGP Heavyweight Title run. Most talk about his hard-hitting "strong style" when it comes to Suzuki and while I agree that he may be the best "strong style" wrestler in the world today, many don't mention Suzuki's work ethic and leadership skills. Suzuki really deserves to go out with a bang so GEDO, what are you waiting for, give the man a title run already!"
Rating: 9.0
Sentiment: 0.4836700336700337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TheRatemakerwrote on 16.11.2018:[10.0] "A legend in every aspect, pancrase and pro wrestling. Charismatic leader of his stable, can put some real classics at 50yo (Hi HHH, Undertaker & co)."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: KINGwrote on 09.11.2018:[10.0] "I'm so in love with this brutal maniac, one of the best MMA fighters of his generation, back when MMA wasn't cool, he's such a badass, his submissions are so badass, his post match interviews are so badass, even when he loses he's so badass. True, he's old as hell. True, some of his matches see too much involving of his Suzuki-gun pricks. But even if he makes a boring match, would you say that to his face? I wouldn't cause I care about my life."
Rating: 10.0
Sentiment: 0.05625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: RatingsMachinewrote on 15.10.2018:[9.0] "Minoru Suzuki is a unique creature; there just isn't any wrestler like him on the major league level. His style and his physical state mean that Suzuki does have some limitations, hence him only getting a 9, but within those limitations, Suzuki is more than capable of having excellent matches. And his personality and charisma is great as well."
Rating: 9.0
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Tomlou12wrote on 17.09.2018:[10.0] "What can you say about Minoru Suzuki that hasn't already been said? A founder of the Pancrase organisation, his MMA background has earned him the status of one of the most feared heels in Pro Wrestling, and he's one of my favorites. His stiff, submission based style is one that I enjoy watching and I really appreciate his calculated joint manipulation. Just an absolute badass. On top of all of this he's a great wrestler as he's proven in his matches against the likes of AJ Styles, Kazuchika Okada and Hiroshi Tanahashi all of these are potential 5 star matches."
Rating: 10.0
Sentiment: 0.2982142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: taabr2wrote on 12.09.2018:[10.0] "The best heel in wrestling today. Suzuki is one scary motherfucker. An amazing in-ring worker whose style completely compliments his gimmick. It's amazing that even at the age of 50 the guy can still go at an elite level when put into certain situations. An absolute legend."
Rating: 10.0
Sentiment: 0.31632653061224497
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: arrancarwrote on 22.08.2018:[10.0] "For me, Suzuki has never been one of the 'absolute' greats. Now, he's absolutely still one of the greatest ever, and has a ridiculous number of great matches, but what I mean is that I can't think off the top of my head of how many matches he's had at what I consider a ****1/2+ level (my cut off point for 'greatest of all time' matches). I've seen all the matches usually pointed to as his 'classics', and I've thought they're mostly great, but not some of the greatest matches ever. Suzuki is much like Kawada in this sense though, as although he hasn't reached the absolute pinnacle of in-ring work he still has an absurd number of great matches under his belt. You throw this guy in a singles match and let him run free and he's sure to give you an easy ****+ match. Heck, throw him in a tag match and he'll totally steal the spotlight. This guy is the perfect villain. The curvatures of face give him a very distinct, terrifying look. The way he snarls he face or lets out a mocking, sycophantic laugh has made for some of the most iconic visuals in all of wrestling. You can't watch a big Suzuki match without remembering every detail of how he looks. His offence is, of course, outstanding. Having a legit MMA background means that his strikes, his submissions, and his general grappling are all A+. He can beat someone to a pulp and then grind their limbs off. He's 50 years old and still putting on plenty of great matches. I'm still looking for those top top matches of his, but he's had enough top matches alone to cement himself as one of the greatest wrestlers ever."
Rating: 10.0
Sentiment: 0.3549305555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TheLoudMouthwrote on 18.07.2018:[9.0] "Der wohl überzeugendste und realistischste Heel-Wrestler in Japan, ihm kauft man seine Härte bedingungslos ab. Zudem keinerlei Abnutzungserscheinigungen im hohen Alter, denn Suzuki überzeugt immernoch auf vollster Linie - nein, er hat sich in seinen 40ern sogar noch immens gesteigert. Herausragender Worker all around."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: My Bloody Doobwrote on 15.05.2018:[8.0] "I think I've finally come to terms with admitting I am not as in love with Minoru Suzuki as I thought I once was. Completely respect what he did for the MMA world, but in wrestling.. he's just good. His character work is superb of course, but there's something about his ring work that just doesn't really catch me, unless he's working with a more talented wrestler. And that's probably the disconnect I have with him, in that he is more of a fighter, and really excells at it, than his is a wrestler. Just look at his work in the 2000s which was mostly mediocre. It is only recently that he has garnered lots of praise because of his matches with aforementioned talents like Okada and Tanahashi. "Overrated" isn't a word I would use for him, rather underwhelming most of the time is a better word. He saves his bump card for the big matches a few times a year, and then everything else can just be average work. By no means is he a detriment to New Japan, but I wouldn't say he's a very valuable player either."
Rating: 8.0
Sentiment: 0.1857438016528926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: LrockBesnarwrote on 22.04.2018:[10.0] "This man is one of the most realistic heel wrestler of all world wrestling history. He is good at the ring, but for me, his most important feature is acting skills. Minoru Suzuki is not just a good wrestler, he is a terrific actor. He makes the story of his matches very real because he adapts himself very quickly to them. Even though he's an old man, he's still the one who managed to keep his charisma and his power in the ring. I love him. People who play bad roles are very good people in their real life. He is probably a good guy outside the ring. God bless him."
Rating: 10.0
Sentiment: 0.3158823529411765
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: stc13wrote on 26.02.2018:[8.0] "His longevity alone is impressive.  He's a legitimate bad ass who has put together an impressive body of work."
Rating: 8.0
Sentiment: 0.4333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Speeblewrote on 18.02.2018:[7.0] "Truly the best in the world at what he does. A legit badass that carries himself like one. His matches are more hit and miss than any other NJPW main eventer. There really is no predicting the quality of his matches, and that can't always be attributed to interference from Suzuki-gun. When he's on, though, there's nothing else quite like it."
Rating: 7.0
Sentiment: 0.28833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: The Big Blue Machinewrote on 30.01.2018:[10.0] "The Lonely Warrior is, still at 49 years old, one of the most complete and impressive wrestlers in the world. Thanks to his marvelous submissions, his dangerous but beautiful Gotch-Style Piledriver and his flurry of strikes, Suzuki has become a legend of puroresu, and one of the most recognizable heel in the business. If you don't know who Suzuki is, you still don't know what japanese wrestling is all about."
Rating: 10.0
Sentiment: 0.2714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: JokeyZockeywrote on 29.01.2018:[10.0] "KAZE NI NARE! Einer der wohl markantesten Theme-Songs der Wrestling-Geschichte! Und dahinter steht ein Mann, ein Phänomen, eine Legende: Minoru Suzuki, der Einsame Krieger! Suzuki zählt ohne jeden Zweifel zu den technisch besten und vor allen Dingen authentischsten Wrestlern aller Zeiten! Als MMA-Pionier ein absoluter Submission-Sensei, was er in jedem seiner Matches immer wieder eindrucksvoll zur Schau stellt und seine Gegner nach Strich und Faden und mit absoluter Stiffness verdreht, verbiegt und zermürbt! Doch das alles wäre nicht halb so gut, wenn nicht sein großartiger Charakter wäre! Suzuki ist einfach angsteinflößend, diesem Mann möchtest du kein Unrecht tun, du schaust ihm in die Augen und siehst nichts als eine mit purem Sadismus gefüllte schwarze Seele! All diese Aspekte harmonieren mit seinem In-Ring-Work so dermaßen perfekt, dass Suzuki am Ende des Tages stets als einer der besten Heels der Welt da steht! Grade letztes Jahr haben er und vor allem seine Matches zwar ziemlich unter den dauerhaften Suzuki-gun-Shenanigans gelitten, aber wenn die mal ausblieben, packt der Mann mit der schlimmsten Persönlichkeit der Welt sein Können aus und zaubert Klassiker auf die Matte (gegen Okada im Climax oder gegen Tanahashi bei New Beginning in Sapporo). Fazit: Suzuki ist einfach eine Legende in nahezu allen Bereichen, viel mehr muss man eigentlich nicht sagen, alles außer 10 Punkten wäre Blasphemie! I HAVE TO BE A LONELY WARRIOR TONIGHT!"
Rating: 10.0
Sentiment: 0.022727272727272735
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Dragon Fighterwrote on 30.11.2017:[9.0] "KAZINARE ! The worst personality in the world who has the best theme song today. An asshole, a badass motherfucker for sure. The pioneer of MMA, the founder of pancrase. You can not deny his contribution to both MMA and Puro. Excellent fighter and wrestler using a lot of submissions. In theory, he easily gets 10. Unfortunately, I only give 9 because his current NEVER title reign is a total DUD. Very lazy booking and sub par wrestling. Other than that, he is fantastic."
Rating: 9.0
Sentiment: 0.1712121212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TooSweetPhilwrote on 27.11.2017:[7.0] "Suzuki ist praktisch ein Wrestling Mysterium. Wie kann jemand, der einfach nur einen abscheulichen Charakter spielt, doch so over bei der Crowd sein? Sein Ring Style hat er perfektioniert, so findet er die perfekte Mischung aus Strong Style und Submission Wrestling. Ebenso perfekt ist seine Mimik, als auch die Psychologie die er durch sein Charisma in jedes Match ein bringt - bewegt sch mit knapp 50 im Ring genauso als ob er noch jungfrisch wäre. Von mir gibt's 9 Punkte! UPDATE: De-Rank. Aktuell geht mir MiSu tierisch auf die Nerven. Ebenso wie ganz SZKG. Die Eingriffe und der Bullshit wird unfassbar langweilig und monoton. Deswegen leiden auch seine Matches. Von meiner 9/10 muss ich jetzt ganze 2 abziehen. 7/10"
Rating: 7.0
Sentiment: 0.5416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: LonelyVillainwrote on 06.11.2017:[10.0] "Greatest asshole in wrestling, so physical it’s almost abuse, fantastic theme and I won’t rate him lower for fear he might hunt me down"
Rating: 10.0
Sentiment: 0.3111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Vancouver Victiniswrote on 05.11.2017:[10.0] "Suzuki is So good he needs suzuki-gun to interfere so he can stay a hated heel. that is how amazing he is at wrestling."
Rating: 10.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Cleanerwrote on 17.09.2017:[10.0] "Minoru Suzuki ist fast 50 Jahre alt und immer noch ein fantastischer Wrestler. Alles fängt bei seinem so stimmigen Entrance an, über seinen einzigartigen und bedrohlichen Look, über die ganzen Psycho-Elemente, die er immer wieder in seine Matches einbaut, über das tolle Stable um ihn herum bis zu einem astreinen Ring Work. Ein bislang bockstarkes 2017 bestätigt die Höchstwertung nur"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: LosIngobernablesdeUKwrote on 08.09.2017:[10.0] "One of my current fave wrestlers right now. He's such an amazing sadistic, psychotic heel that he scares the shit out of me & I'm not even in the arena. His matches are so so good & seeing him beating the shit out of his opponents is so entertaining. He also has one of the best themes ever made. I hope, hope he becomes IWGP Heavyweight Champion someday even if it's a short one. It would be a great way for him to go out."
Rating: 10.0
Sentiment: 0.2488095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: xPETERxwrote on 15.08.2017:[10.0] "Ich wiederhole mich hier zwar, aber der Typ ist noch unglaublich beweglich. Bspw wenn er den Armbar am Toprope auspackt und sich nach hinten rückwärts abrollt. Look, Mimik, Gehabe, Entrance (wo er immer passend die Stelle abwartet bis das Publikum shoutet, und dann durchs Seil huscht). Einfach ein Badass. Die armen Young Lions in seiner Nähe ;) Klassische Ausraster werden an denen ausgelassen, oder die Absperrung muss nach Matchende dran glauben ^^"
Rating: 10.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: ChristianMB1wrote on 27.07.2017:[7.0] "Good heel work, but, in a company where athleticism is key, he lags behind a lot of the great main-event talent."
Rating: 7.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Headlockwrote on 24.06.2017:[10.0] "Minoru Suzuki ist soetwas wie der Anti Held von Pro-Wrestling. Er ist ein toller Heel, aber gleichzeitig so cool! Im Ring fantastisch, selbst mit 50 Jahren ein wahrer Meister seines Fachs. Und die Kleinigkeiten die er im seinen Matches einbaut machen jedes MiSu Match zu was besonderem, vom gloreichen entrance ganz zu schweigen"
Rating: 10.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: NikoWrestling7wrote on 05.06.2017:[9.0] "MiSu is on a great run, hopefully he'll be able to win the IWGP Heavyweight Championship before he eventually retires. One day."
Rating: 9.0
Sentiment: 0.7000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Chekerwrote on 23.02.2017:[10.0] "The godfather of MMA, alongside Masakatsu Funaki. Excellent wrestler, excellent brawler, the meanest aura I have ever seen in any wrestler ever, great promo. I don't know what more you can ask from a pro wrestler. Suzuki has done *almost* everything... I'd still like to see him hold the IWGP HW title at least once."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Jrod3160wrote on 20.02.2017:[10.0] "My favorite puroresu wrestler ever and one of the best of all time in my eyes and at the age of 48 hes still one of the best in the world fantastic match with okada last week proved it one of the most ruthless bad ass wrestlers you'll ever see grace a ring"
Rating: 10.0
Sentiment: 0.21250000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: JubileuFishwrote on 07.02.2017:[10.0] "He is so fucking rough. He will beat the living shit out of you and do it while laughing. Tamo junto Danny, VWO. He is just so fuking badass."
Rating: 10.0
Sentiment: -0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: SanthoshVNwrote on 09.12.2016:[10.0] "Minoru SUzuki as far i seen him wrestling this man has the ability to give MOTY candidates all day long. He has a good experience and good record in MMA and he even puts them in his style of wrestling, finest brawler, submission specialist and dagerous striker and uses the Piledriver also well. His bouts with AJ Styles, Marufuji, Tanahashi and Nakamura are suggested to watch"
Rating: 10.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: akm0wrote on 18.10.2016:[10.0] "The baddest man on earth.  Suzuki is just a phenomenal wrestler. His striking ability is ridiculous, his technical ability is outstanding and everything he does is just a work of art. I don't understand why he never won the IWGP Hvt. title, since he is a perfect example of how an heel should work. His recent work in NOAH was good, especially his feud with Marufuji, not to mention his matches with Tanahashi and AJ Styles which are a clinic on in ring psychology. I also love his finisher to death, as well as his music. He's also probably the wisest wrestler in the business right now."
Rating: 10.0
Sentiment: 0.33203463203463207
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Viper99wrote on 10.09.2016:[10.0] "Minoru Suzuki ist ein fantastischer In Ring Performer! Suzuki ist ein nahezu perfekter Wrestler, welches jedes Match worken und aufwerten kann. Am besten ist er in Matches gegen absolute Babyfaces, wie Tanahashi, wo er sein komplettes Potential als "Arschlo**" ausschöpft und seine gegner nach strich und Faden vermöbelt und ihnen jeden knochen einzeln brechen will."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TheWrestlingFanwrote on 21.07.2016:[9.0] "Suzuki is just amazing. His in ring work combines the technical prowess of his MMA background and the aggressiveness of an ultimate heel which makes it look devastating yet astounding at the same time. Even if he is reaching his 50, he has not been showing any signs of slowing down his style and can even still compete at the highest level with amazing conditioning. His character is awesome, too. He works as what a heel should be: bullying people and beating up people. Suzuki is truly one of greatest Japanese wrestlers of all time in my book."
Rating: 9.0
Sentiment: 0.24040404040404043
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: hatebreederwrote on 07.04.2016:[10.0] "Suzuki macht den Sleeperhold wieder glaubwürdig im Wrestlingring. Dieser Mann ist einfach ein Bastard, cooler gehts kaum. Er hat ne einmalige Ausstrahlung und sein Gehabe im Ring muss zwar nicht sein, das ist es aber was ihn auch irgendwie ein bisschen ausmacht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: NastyYaffawrote on 11.01.2016:[9.0] "Kaze Ni Nare~!  Minoru Suzuki has been on quite a roll for the last few years, having great matches w/ Okada, Sugiura, Takayama and of course his classic vs. AJ Styles. He is a great technical wrestler, who can also hit hard. MiSu also has a really good in ring psychology, which I like a lot. He's simply one of the best today."
Rating: 9.0
Sentiment: 0.2975
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: RainmakerF7wrote on 14.11.2015:[10.0] "Minoru Fucking Suzuki. The baddest man on the planet. His moveset is ridicolously good. He's awesome on the mic, he knows how to work as either a face or a heel. He's had MOTY 2012, MOTY 2014, he is current GHC Champion, he has ZERO LOSSES IN 2015, and he is my front runner for WON Wrestler Of The Year. And well, he's got the best theme song of all time - Kaze ni nare!"
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Mizzle Assault Antwrote on 14.09.2015:[10.0] "Loved everything I've seen from this guy. His ability to work both smart and hard into his late 40s is astounding."
Rating: 10.0
Sentiment: 0.18452380952380953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: TrevPuroFanwrote on 24.07.2015:[10.0] "Amazing wrestler. When its all set & done he will take his place as an all time great puroresu performer. 10/10"
Rating: 10.0
Sentiment: 0.7000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Swenson 238wrote on 12.04.2015:[9.0] "Manchmal verstehe ich nicht, warum Suzuki bei New Japan keine noch größere Rolle spielt. Der Mann ist ein echtes Submission-Biest und ich warte nur auf den Tag, an dem er einem seiner Gegner wirklich mal den Arm ausreißt! ^^"
Rating: 9.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: eldenaaaaawrote on 28.03.2015:[10.0] "New Japan has many standouts on their roster, including the legit badass, Minoru Suzuki. When you watch Suzuki go to work, you know you're in for a hard hitting battle. Former GHC Heavyweight Champion, IWGP Tag Team Champion."
Rating: 10.0
Sentiment: 0.08617424242424242
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Phenomenal91wrote on 26.02.2015:[10.0] "10 isn't high enough for this guy. This man is absolutely without peer when it comes to wrestling. He manages to. be both no-nonsense, brutally effective, and (most important of all) highly entertaining. I wish all wrestlers could be like him."
Rating: 10.0
Sentiment: 0.33714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: AboutToCrashwrote on 26.12.2014:[10.0] "Surely the best shoot-style wrestler alongside Meada and one of the best technical wrestlers I've ever saw. I also watched some of his MMA Fights and he's absolutely fought legendary fighters, it's a shame he never was in promotions like PRIDE FC and such. I am sure he could put out some great fights.  Now to his wrestling career. This guy created himself a big name winning an honorable titles all over japan and beating legends.  First time I saw a match of him, I didn't connected to his style, but after a while I just loved it. This is a blend of great fighting arts, one of the biggest workers ever in the ring. Best monster heel performance, best facial expressions with all of his tongue movements, great ground work and innovative submissions(his rope hung triangle is the best submission ever) and awesome psychology and storytelling.  He gave a lot to PURO wrestling, and one day he's going to be a legend."
Rating: 10.0
Sentiment: 0.5976190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: 8BitLegendwrote on 22.09.2014:[9.0] "Extrem coole Socke. Wirkt wie ein Film-Bösewicht. Er ist in seiner Rolle so gut - das ist fast surreal. Auch technisch klasse. Wrestlet mit seinen 46 Jahren wie ein junger Hüpfer. Der Kerl rockt einfach."
Rating: 9.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: apc24wrote on 17.12.2013:[10.0] "One of the greatest technical wrestlers in the world. His unique blend of MMA and pro wrestling has allowed him to have some of the most intense matches."
Rating: 10.0
Sentiment: 0.41500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: The Man of 1004 armbarswrote on 13.10.2013:[10.0] "Suzuki könnte man quasi als der Hiroshi Hase oder Chris Jericho von NJPW bezeichnen, er hilft gerne jüngere Talente over zu bringen ohne damit schlecht rüber zu kommen. Mir gefällt sein Kampfstyl (Stiff gemischt mit MMA) und natürlich auch seine Einlaufmusik. Ausserdem war er früher auch ein ziemlich guter Shootfighter."
Rating: 10.0
Sentiment: -0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Aquifelwrote on 06.08.2013:[10.0] "Wohl der mit Abstand herrlichste Fiesling, den es momentan im Pro-Wrestling gibt. Man hat einfach nur Spass daran, wie Suzuki vollends in seiner Rolle aufgeht. Gerade, was er im Ring an Kleinigkeiten macht, die so viele andere weglassen bzw. die in vielen anderen Promotions einfach nie beachtet werden ist einfach Klasse. Da kriegt man gleich richtig gute Laune, wenn sein Entrance Theme erklingt^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: joshimaniawrote on 23.06.2013:[9.0] "An amazingly charismatic wrestler that has both a high end career in shoot style and puro."
Rating: 9.0
Sentiment: 0.33
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Robert Taylorwrote on 07.03.2013:[9.0] "Der fiese, grinsende Bösewicht wurde extra für Minoru Suzuki erfunden, davon bin ich überzeugt. Die Rolle passt einfach perfekt zu ihm, daher braucht er einfach nur er selbst zu sein, um zu rocken. Das Auftreten passt einfach, von der Badehose, zu den Boots, keine Schoner und natürlich die einzigartige Theme, zu der vermutlich nur Badass Suzuki so cool einlaufen kann. Zudem im Ring immer für ein gutes Match zu haben, zuletzt hat er gegen Tanahashi sogar gezeigt, dass er an den richtigen Tagen auch zu richtig großen Matches fähig ist."
Rating: 9.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Roode66wrote on 23.02.2013:[9.0] "Normalerweise haben es Japaner schwer, mich von der Ausstrahlung her zu überzeugen aber Suzuki ist eine Ausnahme. Der Kerl ist Bad Ass und coole Sau und weiß mich auch im Ring immer zu unterhalten, bei den wenigen NJPW-PPVs, die ich bisher gesehen habe."
Rating: 9.0
Sentiment: -0.6999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Tamjukwrote on 30.10.2012:[9.0] "Wirklich immer noch im recht hohen Alter gut. Läuft zwar auf Stand-By, aber dieses ist wegen seiner 44 Jahren einfach nur intelligent.  Seine Gehabe ist immer noch grandios und wenn er gefordert ist hat er auch das können eine super Performance raus zu hauen."
Rating: 9.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Leonewrote on 07.08.2012:[10.0] "Trained by legendary shoot and catch wrestlers Karl Gotch, Billy Robinson & Yoshiaki Fujiwara, Suzuki is one of the best pro wrestlers in the world who has an MMA background.  Bas Rutten called this guy an artist when it came to mat wrestling, and the likes of Josh Barnet and Ken Shamrock also praised him for this.  Since returning to pro wrestling back in 2003, Suzuki became very successful, holding the All Japan Triple Crown twice, with the first reign lasting almost a year and defending it against the likes of Yuji Nagata, Satoshi Kojima and the legend himself, Kenji Muto.  Along with his wrestling skills, he has a lot of character to him (a bit mischievous), and a believability, that he could beat anybody using pure technical ability."
Rating: 10.0
Sentiment: 0.4299107142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Rated R Champwrote on 23.03.2012:[9.0] "Suzuki ist wohl die fieseste und zugleich coolste Sau die in Japen oder sonst wo rumläuft. Wenn ich mich nur an die Pressekonferenz erinnere die er mit den Füßen auf der Triple Crown Gürteln gegeben hat. Der Kerl rult einfach. Was die In Ring-Skills angeht ist er zwar nicht erste Liga, aber zum einen immer noch gut und zum anderen hat er auch da diese arrogante böse Art die man einfach lieben muss."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Excellence of Executionwrote on 06.10.2011:[8.0] "Keiner hat den frechen, fiesen Bösewicht so drauf wie Suzuki - keiner! Von seinen Rumpelstilzchen-Gedächtnis Stiefeln, über seine Art, sich selbstgefällig zu bewegen bis hin zu seiner Mimik ist er einfach der größte Drecksack ever. Für mich ist er der lebende Beweis, dass es auch im japanischen Wrestling Rampensäue und charismatische Akteure gibt. Im Ring ist er anständig, auch wenn mich da andere mehr ansprechen. Allerdings bringt ihn sein Gimmick, das er so super ausfüllt, immer wieder over. Ich sehe ihn gerne."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Kenshin Uesugiwrote on 27.06.2010:[9.0] "Und wieder ein Wrestler der nicht nur gutes Wrestling kann, sondern sich durch sein eigene Art und dazu ordentliche Ringpsychologie auszeichnet. Sein Gehabe und Faxen gehören eben auch dazu, er ist halt ein richtiges Arsch****. Ich mag solche Typen, manche halten ihn für überbewertet und man könne ihn nicht länger als 15 Minuten im Ring ertragen. Ich persönlich empfinde das nicht so, ich meine den Sleeper Hold macht er zu einem "dangerous move" wie zur Inoki-Zeiten. Klasse der Kerl."
Rating: 9.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: STRIGGAwrote on 27.05.2010:[9.0] "Ich frage mich sehr oft, wie ich seine arrogante Art früher hassen konnte. Er ist einfach die coolste Sau Zen Nihons und auch seine Fähigkeiten im Ring machen ihm zu dem, was er ist: Minoru f'n Suzuki."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Tomkowrote on 02.02.2009:[6.0] "Er weiß leider nie wann seine Comedy angebracht ist und wann nicht! Hat dadurch schon das ein oder andere Bigmatch dadurch in den Dreck gezogen !"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Kaffoe 666wrote on 17.09.2008:[9.0] "GRINSEN~! Ich liebe ihn im Ring und seine ganze Art sowieso. :)"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: AnFuwrote on 26.04.2008:[8.0] "Klasse Style, ich mag seine Matches und seine Kampftechnik."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Rob Van Duesenschrauberwrote on 17.04.2008:[7.0] "Seine Faxen haben Matches schon oft genug runtergezogen. Natürlich ist Suzuki ein sauguter Wrestler, nur nervt er manchmal einfach übelst."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Rancorwrote on 01.02.2008:[6.0] "Unterhaltsam, keine Frage, aber seine Fähigkeiten im Ring sind für meinen Geschmack häufig deutlich überbewertet."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: D-Stylewrote on 07.12.2007:[8.0] "Seine provokante Art im Ring ist einzigartig; ich liebe es ihm zuzuschauen, auch wenn sein Moveset limitiert ist. Seine Cocky Slaps sind einmalig cool. Sehr coole Sau"
Rating: 8.0
Sentiment: 0.07499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: dariawrote on 18.09.2007:[8.0] "ist in jedem Fall 'n cooler Typ, hat mir als shootfighter bei pancrase noch besser gefallen"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1297&gimmick=Minoru+Suzuki
Comment: Rashomonwrote on 23.07.2007:[6.0] "Minoru Suzuki ist für mich ein zweischneidiges Schwert. Einerseits sind seine verrückten Frisuren und irren Blicke immer wieder einen Lacher wert, auf der anderen Seite neigt er dazu, durch seine Faxen den Gegner des öfteren unvorbereitet und dumm dastehen zu lassen, was schon einige Matches etwas runtergezogen hat..."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Khalid Acewrote on 25.01.2025:[6.0] "I actually consider Katsuyori Shibata as a top 40 wrestlers based on his entire career. I actually liked his first run and was very upset about the injury and was very happy for his return but he was never the same ever since. His character is awesome though"
Rating: 6.0
Sentiment: 0.39444444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: wrestlingswiftiewrote on 29.11.2024:[10.0] "This is one of the rare instances where the wrestler is so bland that they're good. (I mean, his gimmick name is "The Wrestler" for crying out loud.) But don't let the boring presentation fool you into believing his matches are that same way. His matches are realistic, hard-hitting, and technical."
Rating: 10.0
Sentiment: -0.04125000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: bustopboywrote on 18.10.2024:"One of the greatest pro-wrestlers of all time. Nobody is more badass than Shibata. I just wish he'd won a world title in his career(He can technically still win one as of this review, but I unfortunately don't find it very likely). Overall, he's a perfect wrestler that is beyond underrated and at the level of guys like Misawa, Danielson, Omega, Cena, SCSA, and more."
Rating: No rating found
Sentiment: 0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: jsbortswrote on 08.09.2024:[10.0] "Shibata is as good a pro wrestler as has ever existed, with the ability to do everything a wrestler should be able to do in ring. Its a shame his career was cut short by such a significant injury that altered his wrestling style so dramatically. But even with those adjustments, everything Shibata does is a 10/10"
Rating: 10.0
Sentiment: 0.315
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: reymysterioenjoyerwrote on 07.09.2024:[10.0] "Shibata might be the greatest of all time imo. Never have I seen such a believable wrestler, there's a reason he's "The Wrestler". His stance, aura and glance are so cool. The simple strut he makes toward the ring makes you realize how serious he takes it, on a character level at least. He can hit you hard and take it back even harder. That headbutt spot in his match against Odaka is the toughest spot I've seen in my life. The blood dripping down his face afterwards was hard. Only a guy like Shibata could pull off looking that sick. I'm a mark for him. GOAT!"
Rating: 10.0
Sentiment: -0.03679138321995464
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Joe907wrote on 29.07.2024:[10.0] "Shibata is one of the greatest wrestlers ever. He represents Japanese strong style. "The wrestler" lives up to the nickname. Very technical and hard hitting. Before the scary injury in 2017, he's had some of the best matches ever. One of the three musketeers for NJPW. His style is very unique and fun to watch."
Rating: 10.0
Sentiment: 0.2699074074074074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Willie 19200wrote on 24.07.2024:[10.0] "Katsuyori Shibata is in my top five wrestlers of all time. I love the Japanese Strong Style of wrestling and he is what you see when thinking about the style. He's so impressive how he can put on classics with Kazuchika Okada, suffer a career ending injury half way through that match, and come back and have some banger matches with people like Eddie Kingston, Wheeler Yuta, Orange Cassidy, and Bryan Danielson. He's pretty hard not to like, in my opinion at least."
Rating: 10.0
Sentiment: 0.19250000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: igskillfartwrote on 02.07.2024:[10.0] "Has to be my favorite wrestler of all time, i just like his agressiveness, he never disapoints in his matches and he is one of the best wrestlers in his style, he influenced that style, same with Suzuki, these guys created a style that is still looked as one of the greatest, i want to rate Shibata higher, before he was ever injured he was one of the best wrestlers in the world, the matches he has put on just says it all, he has put on some of my favorite matches ive seen, Shibata is of course a 10."
Rating: 10.0
Sentiment: 0.6071428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: BruceMarcos524wrote on 14.05.2024:[9.0] "I've never seen such a guy who is truly dedicated and passionate in pro-wrestling like Katsuyori Shibata. One of the most intense pro-wrestlers on the planet. Most of his matches aren't for the weak of heart so if you feel easily squeamish, don't watch most of Shibata's matches. His heavy strikes are very dangerous if you aren't tough and durable enough to take it, no wonder after the match most of his opponents aren't as fresh as they are at the start. One of the very intriguing matches is his Sakura Genesis 2017 match with Kazuchika Okada. It is highly regarded as one of the greatest wrestling matches of all time more primarily because Shibata puts his entire heart on the match. He puts so much; he was forced to retire due to subdural hematoma. But there is no doubt the fans are very supportive of Shibata. Shibata is the type of person that he could hit you for real but at the same time he makes sure that you will be alright at the end of the match, and you can still wrestle at the next day. Shibata is a personification of a Strong Style. Sucks that he's never been the IWGP Heavyweight Champion. Maybe if not for the early retirement in 2017, he could be the champion for sure. Unfortunately, due to the immense star power of NJPW like Hiroshi Tanahashi, Shinsuke Nakamura and Kazuchika Okada, Shibata felt left out and unfortunately thrived mostly in the upper mid-card. Upon his return, Shibata transitioned himself from being a heavy striker to a technical wrestler so that he may continue doing what he loves but at the same time to be extra careful to prevent further injuries. Sadly, this sets him back from performing epic matches but understandable due to his life-threatening injury. One of the best strikers in the business and most of the wrestlers who are not used to this style wouldn't keep up with Shibata."
Rating: 9.0
Sentiment: 0.11995555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: arisenbywrote on 16.04.2024:[9.0] "[9.3] The embodiment of perfection in simplicity when it comes to wrestling. I haven't seen a ton of his non-AEW stuff, particularly anything prior to about 2015, but what I have seen of him prior to him headbutting Kazuchika Okada so hard that he nearly killed himself would easily be a 9. He hasn't quite picked up as much steam since his return to the ring in 2021, perhaps for the better considering his style of wrestling nearly killed him, but even so, he's still an absolute joy to watch."
Rating: 9.0
Sentiment: 0.1462121212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TripleCrownwrote on 06.04.2024:[9.0] "Shibata is a product of a bygone era. Straight shooter and hard hitter, something Inoki absolutely loved back in the day. I can't really rank him based on his AEW stuff as I haven't gone out of my way to watch it, but in regards to his NJPW and NOAH stuff... man this guy was a BEAST. He was just so exciting to watch because he was a legit badass. Whilst a lot of the Japanese wrestlers are incredibly athletic and tough, Shibata was just on an entirely different level. When you watched him, wrestling felt REAL, and I'm sure it was to the guys who were taking those kicks, elbows and heabutts. In the end however, Shibata was his own worst enemy. Doing all this heavy hitting stuff is a joy to watch, but it eventually had a price to pay. That infamous headbutt to Okada was just... too much. Shibata was already a huge favourite in NJPW, people would've loved him the same if he didn't do the headbutts. I guess that's just what added to the character that is Katsuyori Shibata. Loved his work, loved the fact he was a straight shooter in the world of professional wrestling. Loved how his attire was just so simple, added so much to his character. Really happy he recovered from that headbutt injury because man... it was rough, like really rough."
Rating: 9.0
Sentiment: 0.17804659498207887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: mxxjimawrote on 06.02.2024:"The selling, the energy, the moveset, the theme, the gear. Everything screams simple but perfect. Shibata is my all time favorite and I am glad that I have been able to witness him being in the ring."
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: ddtprofan4000wrote on 01.02.2024:[10.0] "The greatest wrestler of all time in my opinion, Might seem ridiculous to some but he is the perfect mix of violence and art"
Rating: 10.0
Sentiment: 0.5555555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Tragiicwrote on 27.01.2024:[8.0] "Gonna preface this rating by saying that this only considers his AEW work, and am therefore entirely unaware of anything he did outside of it."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: GrimaceUnmaskedwrote on 17.01.2024:[9.0] "One of the greatest of all time. Overlooked immensely as one of the three musketeers, but recently has gotten his flowers as the true legend he is."
Rating: 9.0
Sentiment: 0.3375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: crs285wrote on 27.11.2023:[10.0] "Shibata was a great in Japan before the injury. He was one of the most skilled wrestlers of his generation in the ring. It's a miracle and a testament to him that he was able to return to the ring. Since his return he hasn't been what he once was but that has to be expected. Still I enjoy anytime we get to see him healthy and doing what he loves."
Rating: 10.0
Sentiment: 0.4428571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "This man is so good at wrestling, his nickname is literally "The Wrestler." Katsuyori Shibata is his generation's version of Antonio Inoki, a man who possessed such immense skills in the ring that they speak for themselves and make up for not having a wild personality. A man who's been in and out of the ring time and time again, and never loses a step when he gets back in, even if he has to alter his style due to injuries, finding ways to be a complete wrestler in the ring no matter what the circumstances he faces. His match with Kazuchika Okada was once the highest rated match (if I remember correctly) at one point, while I don't agree it's the best match ever, there's a strong case to make why that match is so highly acclaimed and what made it spectacular (... At leas the match itself and no what happened to Shibata after the match ended). Overall, no matter if he's competing in Japan or North America, Katsuyori Shibata is one of the best in ring performers of all time and truly is a legend in the business."
Rating: 10.0
Sentiment: 0.29416666666666674
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: danzitorockwrote on 23.07.2023:[10.0] "Shibata is one of the coolest wrestlers to watch, his style is sensational, and he applies it with impressive quality. His story is spectacular and he has been in several incredible matches and demonstrated that he can work with anyone. What a fantastic wrestler!"
Rating: 10.0
Sentiment: 0.611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: YourKingMobwrote on 18.04.2023:[10.0] "The last scion of Inoki and strong style. Shibata is a diamond polisher, in that he takes a very basic, understated ring persona and makes it shine like no other. His matches with Fish and O'Reilly are what brought me back to wrestling after more than a decade away. His matches are hard hitting, full of fire and personality. I rank him higher than his other two generational cohorts: Tanahashi (who has better charisma ) and Nakamura (who is more wild ) and find him miles more enjoyable than the previous gen of Hashimoto, Chono or Mutoh. To those who question this, watch his matches OUTSIDE of NJPW, especially in Big Mouth Loud. It is not coincidence that the high water mark of this generation of wrestling was reached right around the time when Shibata injured himself in the ring. There will NEVER be another Shibata."
Rating: 10.0
Sentiment: 0.12991883116883118
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Moose Nuggetwrote on 15.04.2023:[9.0] "I don't like Shibata the way I used to during his pervious run as a pro wrestler, but I have to admit he's been the best pro wrestler in the new Ring of Honor right now. He may be limited because of pervious injuries, but it sure doesn't show. He's perfect for ROH's pure division."
Rating: 9.0
Sentiment: 0.43784786641929496
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Aliquickkwrote on 14.04.2023:[9.0] "Very stiff striker but so stiff he knocked his career short. Hopefully he can come back, he was very good, although I'm sure his opponents are happy he's gone."
Rating: 9.0
Sentiment: 0.2453061224489796
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TheOneAndOnlyCactuswrote on 03.04.2023:[10.0] "If you want to talk about the most beautiful careers in wrestling, not the best, not the greatest, not the most complete, but most beautiful, sentimental careers, Shibata is that for me. I cannot put into words how happy his return to wrestling made me feel, how him winning the ROH Pure Championship made me feel. He is not as good as he used to be, mainly because well, he cant really bump that much nowadays following his injuries, but you can still see glimpses of what made him great. Such a complete wrestler, who can do so much between the ropes. A great grappler who can switch between various styles, an amazing striker, oozing charisma as this stone-faced killer who could take abuse and come back. He still has those traits now, but he was twice as intense back then. Regardless, he is still a joy to watch wrestle."
Rating: 10.0
Sentiment: 0.40467687074829933
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: benh2wrote on 20.01.2023:[8.0] "A very good technical wrestler with great strikes that were vicious and believable. Rare in the sense that he made this type of style both look incredibly legitimate and endear himself to fans. Insanely over with the fans as a badass babyface and it's a shame that his career never carried on as I feel he could have accomplished a lot more."
Rating: 8.0
Sentiment: 0.21100000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: UniversalACEwrote on 01.01.2023:[10.0] "Shibata is one of my favorite wrestlers ever. His straightforward no nonsense character and style is what appeals so strongly to me. I feel that this is the way for wrestling to be as it is realistic and everyone can get on board with wrestler who exemplifies this. I hate that he has never been IWGP Heavyweight Champion as I feel who would have been the most feared champion of all. I will settle for his matches because I still love watching him fight."
Rating: 10.0
Sentiment: 0.2392857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: MainEventMasterwrote on 02.12.2022:[10.0] "One of the most legit and tough guys ever, he plays the scary role well because he IS scary. During his heyday, his opponents were to fear him. So fucking good."
Rating: 10.0
Sentiment: -0.03777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Dizuwrote on 12.11.2022:"I? ve been a wrestling fan for a very long time and somehow I never saw Katsuyori wrestle until I read about him on this site. All I can say is: Wow! And thanks, to the people posting and keeping all of this information up to date. It? s such a great resource"
Rating: No rating found
Sentiment: 0.21200000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: CattleOfTheGrapsGodwrote on 19.10.2022:"One of my all time favorites. Shame he never got to hold the IWGP title but his character arc had a satisfying enough conclusion for me."
Rating: No rating found
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: PunkPariahwrote on 17.09.2022:[10.0] "One of my favorites of all time. Complete and utter destruction when he stepped into the ring, but never made his opponents look worthless or weak. Had this insane aura around him I don't think we'll ever see again. Everything felt legit and when he stepped out for his match you could feel a shift in attitude. Play time was over and it was about to get serious. Tanahashi, Okada, Nakamura, and Naito are all 10's as well but for my money Shibata was the best of NJPW's staple talents. Especially his 2010's run. Tragedy that he never got to hold the IWGP Heavyweight Championship, but he didn't need to. His legacy is cemented and now he trains the next generation of top stars. The guys from the LA Dojo have all massively improved since training under him and I can't wait to see what they'll do. One of the greatest to ever do it"
Rating: 10.0
Sentiment: 0.007638888888888862
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Tyler72wrote on 25.07.2022:[8.0] "Nobody hits harder than Katsuyori Shibata. This guy must get in some serious trouble for how much he beats up other wrestlers. Entertained from beginning to end watching his matches, and his move set is fantastic."
Rating: 8.0
Sentiment: -0.02638888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: jamzell00wrote on 20.05.2022:[10.0] "Probably my favorite wrestler ever. You can go a long way with me if you present yourself well and have intensity in the ring and Shibata knocked that out of the park. Once his music hit and he walked out you knew he was coming to beat the life out of whoever he faced. Doesn't matter how mediocre his mma career was it added legitimacy to him. His work once going freelance in the early years was awesome. The Big Mouth Loud stuff is worth a watch but the peak of it was against Uncle Jun in Wrestle-1. The G1 sprints, feuds with Tanahashi, Goto and Naito. And the series with Ishii thats genuinely one of the best ever. Most of the NJPW guys going overseas tended to phone it in but his stuff in Revpro showed no signs of it. Dude was there to put in work especially in that Chris Hero match. 2017 was legit one of the best years from a guy I had ever seen. Many talk about Okada during that time but Shibata was the best in the goddamn world. Awesome in tags, great build up and match with Ospreay, going over to Revpro and having great match with Riddle that really showed what he could do and finally his big push for the title. MVP of the entire NJPW cup that year and it lead to THE BEST MATCH EVER against Okada. I cant show enough respect to this man for being the most entertaining guy to watch every night when he was working."
Rating: 10.0
Sentiment: 0.3944444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: texasyoshwrote on 13.05.2022:[9.0] "Shibata is the prototypical no-nonsense shooter of the 21st century. Admirable how he left and earned the respect, most likely cutting his career short in the process."
Rating: 9.0
Sentiment: -0.016666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: BlueBrandwrote on 27.02.2022:[10.0] "The Wrestler. This guy just gets it, he wrestles such a seemingly simple hard hitting style, but his matches are so logical, it's incredible to watch the way his matches get put together. He is literally one of the only wrestlers who I will watch any match with. He's got a basic but great physical look, amazing ring presence, the crowds react to him like he is a mega star, move set is incredibly simple but everything looks great. He's the Wrestler, and never has a gimmick been better suited to a wrestler."
Rating: 10.0
Sentiment: 0.27371794871794874
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: UWF Rules Enthusiastwrote on 21.02.2022:[10.0] "Katsuyori Shibata is one of the greatest wrestlers ever. He was a very stiff striker and arguably the best wrestler of the mid-2010s. His feud with Tomohiro Ishii is a must-see feud."
Rating: 10.0
Sentiment: 0.5738095238095239
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: GriffinXwrote on 18.01.2022:[10.0] "There is just something about that moment when Shibata's music plays and he walks to the ring. Man gets so much out of simplicity. Even more limited now as he starts his comeback he sill has you locked you into his matches."
Rating: 10.0
Sentiment: 0.20952380952380953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Moxicity209wrote on 22.10.2021:[10.0] "Easily one of the best ever to do this thing. Hopefully when he comes back, he softened some of his strikes a bit(like those freaking headbutt jfc) because he doesn't need that shit, his match were already great either way. Also gedo should just booked him to win the IWGP Hebi next year and then just beat everybody Bob Holly style."
Rating: 10.0
Sentiment: 0.4047619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Lalo Camposwrote on 21.10.2021:[10.0] "One of the best wrestlers of this generation, he made the NEVER Title prestigious and had one of the best matches in NJPW history against Okada in Sakura Genesis"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: SmartForceOnewrote on 17.08.2021:[10.0] "Few wrestlers have been as believable as Katsuyori Shibata. From the way he carried himself inside and outside the ring to his great, intense matches, Shibata truly felt like a legitimate fighter. His strikes are some of the best in the history of wrestling, his selling makes you believe he's really hurt and he had the ability to make you buy into the idea that he really hates his opponent and wants to beat the hell out of them."
Rating: 10.0
Sentiment: 0.32222222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TheFrenchDisasterwrote on 04.07.2021:[10.0] "How can one man be so great at kicking people's ass ? Shibata is one of the best brawlers of all time and he has many many matches that proves that. It's a shame that his career had to be cut short though."
Rating: 10.0
Sentiment: 0.5166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: BlakeFR37wrote on 02.06.2021:[10.0] "reviens stp tu nous manques. vraiment beaucoup. Shibi je pense à toi et à tes 5 étoiles la nuit. stp."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Kungwrote on 30.05.2021:[10.0] "While I concede that Okada and Tanahashi are two of the greatest Japanese wrestlers of the 2010s, Shibata was probably my favorite. It's ultimately impossible for me to express how special Shibata was, but I do know that I will never forget his WARS with Ishii, Tanahashi, and of course Okada."
Rating: 10.0
Sentiment: 0.23809523809523808
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Judestarwrote on 01.05.2021:[10.0] "After watching more of his classic matches, I finally see why people see him as one of the best hard hitting wrestlers ever. He blends his striking ability with his submissions really well to keep his matches interesting, and honestly, I find his tough guy presence a lot more authentic than wrestlers like Suzuki (he's still great too though). His 2013 match with Ishii and 2017 match with Okada are some of the best New Japan matches ever tbqh."
Rating: 10.0
Sentiment: 0.3814983164983165
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Makai Clubwrote on 26.01.2021:[8.0] "For most of his career, he was a baseline good wrestler. As a young wrestler, he stood out thanks to his fire and spunk. As a returning act, he created a good hook to keep him different from the rest but in a way he could still connect with the fans of those wrestlers. However, occasionally gaps and sudden stops due to injury or career changes makes his run feel incomplete somewhat. He left wrestling when he was coming into his youthful prime. Then he was struck with injury when he was reaching his second prime as an older veteran. Regardless I think he has a lot of quality matches to be proud of. Especially in that second run where he has around 3 really important and well regarded matches by the overall consensus (vs Okada and vs Ishii G1 '13). The first run is filled with fun matches that you can easily binge. And I believe in watchability as a factor when it comes to the greatest wrestlers which prevents me from keeping certain wrestlers out of the top tier spot at times. Shibata has that in abundance. As a wrestler, Shibata had a good combination of submission and striking skill thanks to his mma days (and despite his record, that training is still valuable) and had a penchant for creating interesting narratives against opponents such as Ishii (although the macho man concept is played out), Honma and Okada. Not a candidate for the GOAT or any of the top tiers but he is someone who is worth looking at."
Rating: 8.0
Sentiment: 0.2887276785714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: JustTapOutwrote on 22.11.2020:[10.0] "This man was on par with the likes of kenta kobashi and mitsuharu misawa, he knew how to break his opponents down until they can't wrestle no more. sadly in his match with okada he did a headbutt and ended his career... like that. i wish that match never happened! i hope the best for shibata and i hope he can get in the ring one more time, maybe with kenta?"
Rating: 10.0
Sentiment: 0.09388888888888891
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Ma Stump Pullerwrote on 10.11.2020:[8.0] "Shibata was pretty damn brilliant career wise. It's a bit of a tragedy that we never got to see him develop NJPW with Tanahashi and Nakamura and he missed that period where he could have got some well needed development, but what we did get was interesting enough. Even if Strong Style gets a bit too much hype and misrepresentation these days (namely because many people don't realise just how many shitty, plodding matches NJPW used to have with pure Strong Style in play before they started to mix in other things) Shibata is probably the best you can get from it in terms of striking and presence: he just has that look, that intent that makes you believe he's actually going to kill someone in that ring. He's had a lot of great matches, but there are problems, namely that Shibata isn't very versatile and his best bouts are usually with guys whom he can have a proper exchange with: when he's with guys who don't really focus a lot on strikes, they usually have to use them a lot more, and it can come off as unrealistic or weird at points, OR they just don't do that, in which case the match is usually not fantastic. This isn't to say Shibata can't mat wrestle (he can, pretty well in fact) but he can't really drag out a whole match using it. He is frankly a one note wrestler, but he did that one note fantastically well. Of course Shibata probably would have done so much more if he hadn't done those headbutts, but you could say that about a lot of career ending injuries in retrospect."
Rating: 8.0
Sentiment: 0.24374039938556072
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: taabr2wrote on 19.09.2020:[9.0] "Katsuyori Shibata had one hell of an interesting career in pro wrestling. From the beginning the man was promised the world, when he, Tanahashi and Nakamura was named the new Three Musketeers of NJPW. Showing that the company expected Shibata to be one of the wrestlers that they were going to build around. Instead Shibata decided to become a freelancer before ultimately leaving pro wrestling altogether. After 4 years Shibata returned to pro wrestling teaming with the MMA legend Kazushi Sakaraba to form the highly underrated tag team of Laughter 7. The next year Laughter 7 made it's way to NJPW. Shibata was treated like a total outcast in NJPW, his main feud being with NJPW mainstay Hirooki Goto who was a childhood friend of Shibata. Their feud seemingly culminated at Wrestle Kindgom 8 where Goto won but both men walked backstage together, they even started to team up after that. Shibata started to work more regularly for NJPW and then at Wrestle Kingdom 10 won the NEVER Openweight belt his first singles title in NJPW over Tomohiro Ishii. Shibata's feud with the New Japan Dad over the NEVER title is one of the best feuds in NJPW in 2016 and definitley needs to be checked out more. Shibata's stint with the NEVER title ended at Wrestle Kingdom 11 when he lost the belt to Hirooki Goto who now had joined CHAOS. However this seemed more to launch Shibata up the card as he won the New Japan Cup, and 3 years after his made his promise to challanged NJPW Ace Kazuchika Okada for the IWGP Heavyweight Championship. Shibata delivered an absolute classic that would have assuredly turned him into a permanent major star unfortunately a headbut during the match caused a brain injury that lead to his early retirement. Had his career continued no doubt he would have gotten a 10/10 from me."
Rating: 9.0
Sentiment: 0.18642496392496394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: lehaimkhwrote on 22.07.2020:[10.0] "A real samurai who sacrificed his health for a great fight and ended his career on a minor note. For me, Shibata is a strong style icon."
Rating: 10.0
Sentiment: 0.3458333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Scott Kobayashiwrote on 15.07.2020:[10.0] "I cannot describe how much this wrestler means to me. Katsuyori Shibata is my favorite ever. I felt like I had a personal connection to Shibata and I made time for all his singles matches. Shibata having to earn the respect of everyone at NJPW through trial and tribulation reminds me of something I had to do in my personal life, and that connection will forever be there for me. Not to mention, he was a world class wrestler. And his moment at the G1 Climax 27 Finals... man. I have cried over stuff in pro wrestling, but I have never full on wept about wrestling ever until this, I had purposely avoided news about Shibata as it just made me sad. And this moment will forever be my favorite ever. Thank You Shibata-San."
Rating: 10.0
Sentiment: 0.07499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: snakepitwrote on 30.06.2020:[10.0] "I've had to hold off on giving an 'extreme rating' because of the whole 'Oh no, you can't give >70% 10s/0s' nonsense. Anyway, as I've posted before, Shibata was, is and will always be my fave wrestler. Striking, mat wrestling, in-ring psychology --- he did all these things at the highest level. Most importantly, his matches just emanate a different feel than any other. I sincerely wish that he, as many hope, will one day return to the ring and grace us with his presence."
Rating: 10.0
Sentiment: 0.2611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: KCAwrote on 23.04.2020:[9.0] "Probably the closest we will get to the quintessential professional wrestler. His presentation maybe a little bland, but when he steps in the ring, you know you are truly going to see something special! His ring psychology is second to none and is able to tell a story worthy of the big screen."
Rating: 9.0
Sentiment: 0.12819940476190475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Chekerwrote on 20.02.2020:[10.0] "05. 02. 2017: [9. 0] "I have been in awe of Shibata and the way he carries himself lately. He absolutely is every bit as good as his fellow new musketeers, Tanahashi and Nakamura, even though he was never that high on the card due to poor decisions on his part. " EDIT: Now that Shibata has been gone for a while, and I've revisited quite a few matches of his from before I started watching New Japan, I've decided the rating has to be a 10. Shibata Katsuyori was my last favorite wrestler. When he retired, I think he legitimately took something of mine with him. I have not felt a connection with any worker like that since he almost killed himself vs Okada. Every now and then I see an insane match that reminds me why I still bother with wrestling, but I rarely feel like I really really want a specific worker to win. Shibata was the last guy that gave me that feeling."
Rating: 10.0
Sentiment: 0.025429292929292923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Iceqwrote on 08.10.2019:[10.0] "Shibata ist was ganz besonderes. In umfasst eine Aura die sonst bei sehr wenigen Wrestlern verspüre. Außerdem hatte er einen heutzutage sehr einzigartigen Stil und eindeutige Wrestlingideologie. Sein Match mit Okada ist nicht nur das gerade beste letzte Match das ein Wrestler je hatte, sondern für mich persönlich unter den Top 3 aller Zeiten. Die LA-Dojo Jungs sind sehr gut bei ihm aufgehoben und wer weiß vielleicht kommt er ja nochmal zurück, aber bitte nur wenn man sich zu 100% sicher ist."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: SZ1989wrote on 24.07.2019:[10.0] "One of the best wrestlers in the modern era. It's a shame his career was cut short. Shibata knew how to wrestle a realistic style and make it compelling and entertaining at the same."
Rating: 10.0
Sentiment: 0.3095238095238096
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "A vestige of Inoki's philosophy. Great legit striker and grappler, one of the best incarnation of ferocity and fighting spirit. Like Ishii, some of his matches could maybe get a little repetitive at times but he was just perfect at what he did. It's really unfortunate his career ended with an injury but at least he ended with his best and most complete match. Seems like a great coach for the LA Dojo."
Rating: 9.0
Sentiment: 0.3602272727272728
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: PuroresuLoverwrote on 19.05.2019:[10.0] "God, I miss Katsuyori Shibata so much! This dude is one of the greatest, he delivered his body to pro-wrestling. It's too bad that we may never see him in the ring again..."
Rating: 10.0
Sentiment: 0.18333333333333338
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: zephyrwrote on 16.03.2019:[10.0] "Say what you will about having a reckless style, Shibata certainly made it work for himself. A one-of-a-kind wrestler who redefined strong style to modern audiences."
Rating: 10.0
Sentiment: 0.2825396825396826
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: RatingsMachinewrote on 15.10.2018:[9.0] "When it came to combing hard hitting wrestling into a believable brawling style, Katsuyori Shibata was one of the very best in the business. If not for his tendency to take things too far at times, Shibata was always fun to watch."
Rating: 9.0
Sentiment: 0.32166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Tomlou12wrote on 17.09.2018:[10.0] "An excellent in ring performer he gave everything he had in his matches, one of the most fearsome and legitimate wrestlers of our time. This guy earns his nickname "The Wrestler" as he is everything a wrestler should be. It's sad that we may never see him wrestle again as he was so good but the fact he gave his career up as a result of his passion for wrestling makes me respect him all the more. An incredible performer who has my upmost respect for what he did in the ring. He's no thrills in terms of gimmick but he makes up for it in sheer legitimacy."
Rating: 10.0
Sentiment: 0.4428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: andrewmossighiwrote on 13.07.2018:[10.0] "If you want to talk about professional wrestlers who are the most believable or non-PG, then this conversation starts and ends with Katsuyori Shibata. I love watching him in the ring because he stands out among every other wrestler simply based on the believability and legitimacy of a shoot fighter. He is appropriately nicknamed "The Wrestler" because it embodies his entire wrestling career (style, character, story). Figuratively, his career is reminiscent of an Academy-Award winning film about a legitimate boxer or ultimate fighter that strives on perfection and is chasing something more significant than himself, all of which comes together to make a fantastic story.  In the ring? His technique is flawless, his strikes sound/feel/look legitimately painful, he can adapt to any given style in the ring. Most of all, his selling and storytelling are arguably the best in the business (Johnny Gargano is a close second). Unfortunately, his career has become one of the greatest tragedies in the history of the sport because his career ended way too early, especially after he had won the 2017 New Japan Cup and delivered arguably his greatest performance ever with Kazuchika Okada. But still, he is THAT PERSON that every aspiring professional wrestler (man or woman) needs to look up to if they want to become successful.  Legit. Tough. Intense. Precise. Disciplined. These are some of the many ways you could describe how great he is."
Rating: 10.0
Sentiment: 0.30148358585858587
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: ohnoeswrote on 11.07.2018:[9.0] "I have only recently become acquainted with New Japan, but it took little time for me to warm up to "The Wrestler". Shibata's stoic, lone-wolf status, and no-nonsense approach enamored me as he fought in each match to bring the best out of himself, as well as his opponents. His offense was excellent for its' intensity and brutality, making everything he did believable. He would only wrestle by his own principles; his own terms. Anything less would not suffice, and for that I respect his body of work. His story was practically perfect: having 'abandoned' New Japan when it needed him most to pursue MMA, then returning many years later, having to work his way back up over the years re-earn the respect of fans, to have it meet its apparent end with his 'final' match being the best of his career, and arguably one of the greatest matches of all time. I am more than happy to call him my personal favorite wrestler, but my only knock against him that his style is not compatible with everyone (working best with wrestlers that have a similar style like Ishii), and has struggled to adapt to some opponents. Now for the controversial part of this comment: the headbutt. Shibata's career does not deserve to be insulted and ridiculed by those who know nothing of what wrestlers go through, nor should he be defined by a single spot. When a wrestler gets injured, internet experts immediately begin to finger-wag and think they have the right to tell wrestlers what they should and shouldn't do. To that I say two things: one, if Shibata had walked away from the headbutt just fine, everyone would be singing a different tune. Second, so many wrestlers respect Shibata and are now paying homage to him because they understand him, and know what it's like to work in a dangerous industry. I am not going to claim that I 'know better', but unless Shibata himself admits he never should have done the headbutt, I refuse to demean him for putting his life on the line to entertain the fans."
Rating: 9.0
Sentiment: 0.3371669996669997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: swansea630wrote on 04.06.2018:[10.0] "Shibata is one of the most impressive wrestlers to me because in an era dominated by a fast paced spot focused style, Shibata set himself apart as one of the world's best by completely bucking these trends. With a moveset that could fit into any era, Shibata's brutality sets his matches apart from everyone else. This combined with the badass aura he gives make him one of the most exciting performers in wrestling today. When he is healthy enough to return, then wrestling will have one of its most unique stars back."
Rating: 10.0
Sentiment: 0.41346153846153844
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: JokeyZockeywrote on 20.03.2018:[10.0] "Auf den Tag genau heute vor einem Jahr gewann Katsuyori Shibata den New Japan Cup und feierte damit den größten Erfolg seiner Karriere! Nun war er nur noch einen letzten Schritt von der Krone, dem IWGP Heavyweight Championship, entfernt! Doch um diese Krone zu erlangen, musste er den Mann bezwingen, der seit fast einem Jahr nicht mehr in Titel-Matches besiegt worden war: Kazuchika Okada! Shibata machte klar: Es würde eine Schlacht werden! Und genau das wurde es auch! Katsuyori Shibata gab in diesem Titel-Match alles, wirklich ALLES, um den Titel zu gewinnen, doch ... es sollte nicht sein ... ein absolut stiffer Headbutt zu viel besiegelte das Ende, nicht nur des Matches, sondern auch von Shibatas Karriere. Diese Karriere ... sie liest sich nahezu erschreckend wie die Geschichte eines tragischen Helden: Shibata verließ NJPW als es am Abgrund stand, versuchte sich erfolglos im MMA, kehrte schließlich gebeutelt zurück ... und erarbeitete sich doch wieder den Respekt und die Anerkennung der Fans, und das ohne große Reden, sondern ganz allein durch seinen einzigartigen, grandiosen Wrestling-Stil! Shibata war einfach der fleischgewordene Strong Style, jedes seiner Matches absolut hart und absolut grandios! Gepaart mit seinem übertrieben guten Charisma und seiner Fähigkeit, mit der Kamera zu arbeiten, ergab dies den vielleicht authentischsten Wrestler der Neuzeit! Es ist einfach so unfassbar traurig, dass seine Karriere genau auf ihrem Höhepunkt so tragisch enden musste. Es bleibt nur noch eins zu sagen: Danke Shibata, dafür, dass du dich so krass für den Wrestling-Sport und unsere Unterhaltung geopfert hast. Hoffentlich wirst du trotz allem ein gutes und vor allem gesundes Leben führen können. 10 Punkte für The Wrestler und sein gesamtes Lebenswerk!"
Rating: 10.0
Sentiment: 0.5159011994949495
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Cleanerwrote on 17.11.2017:[10.0] "Katsuyori Shibata - The Wrestler. Dieser Mann hat das Puroresu-Wrestling verkörpert. Er hat seinen Körper dem Sport gewidmet und ihm alles gegeben was er hatte, und ist dabei einfach nur er gewesen. Kein schriller Theme, kein extravagantes Attire, nur ein Kämpfer. Und was für einer. Er ist mit einem der besten Matches überhaupt abgetreten und sich seine Seiten im Geschichtsbuch redlich verdient"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Dragon Fighterwrote on 15.11.2017:[10.0] "THE WRESTLER ! SHIBATA who doesn't give a fuck and just wants to beat the shit out of you for sure. Hard hitting offense, the represent of japanese strong style. He is perfect timing of no selling and selling. Just so damn good. He can have at least good matches with almost anyone. The redemption story since his come back in 2012 was awesome. He finally gains the respect from the fans. His never title reigns were so amazing, great storytelling. I hope he will recover quickly. Come back or not he is still one of my favorite wrestlers to watch. A 10 without a doubt."
Rating: 10.0
Sentiment: 0.29342105263157897
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Blood Pumpwrote on 01.09.2017:[9.0] "The Wrestler maybe coming back in 2018,  but even if he was to stay retired Shibata had done enough in his short career to be considered for the best. He may not be all that big or the most charismatic but he could realistically beat anyone in the ring with his strikes, and by the time he got the IWGP Heavyweight Title shot he had the audience completely behind him. The biggest problem with Shibata is his disregard for his own health (hence his hematoma-ing of himself), its not always easy to watch his matches (especially with Ishii) but it is almost always rewarding. I do hope he dials it down on those headbutts when he comes back."
Rating: 9.0
Sentiment: 0.21269841269841275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: PKwrote on 14.08.2017:[10.0] "As you can tell from my username, it's probably no secret that I'm a huge fan of "The Wrestler". This man is not only part of the reason why I've become a fan of NJPW thanks to his 2013 G1 match against Tomohiro Ishii but also why I started watching wrestling again after 5 years. He made me forget that wrestling wasn't real more than any other wrestler ever could thanks to his hard hitting style and calm badass way of presenting himself. To me, those plain black trunks and boots showed more character than any other wrestler with colorful gear ever could. He wasn't there to entertain you with fancy gimmicks, he was there to prove that he was the best in the world by kicking his opponents to oblivion. If his career really is over, I say thank you Katsuyori Shibata for reviving my childhood love of wrestling and may you live a peaceful, healthy life. EDIT: I'm still crying"
Rating: 10.0
Sentiment: 0.20541640898783753
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TooSweetPhilwrote on 05.08.2017:[10.0] "Katsuyori Shibata. Über diesen Mann könnte man Seiten, ja sogar Bücher schreiben und obwohl die erzählte Geschichte sich in Perfektion komplettiert fühlt, hinterlässt sie diesen einen melancholischen Beigeschmack.  Shibata hat das Wresting legitimiert, seinen Körper auf's Spiel gesetzt, wie kein anderer und in seinen Matches mir persönlich bewiesen, wieso ich diesen Sport liebe.  Ein Wrestler kann sich so bunt kleiden, einen farbvollen Charakter haben, doch der simple Style, schwarze Stiefel, schwarze Kneecaps von Shibata strahlt für mich mehr Charisma aus, als es ihm jeder vormachen könnte.  Es ist eine Geschichte des Misserfolgs. Shibata verließ NJ im sogenannten Dark Age, ließ die Liga nicht nur im Stich, sondern schloß sich Rivalen NOAH an,  nur um dann nach Jahren und erkämpften Erfolg zurückzukommen.  Er kam nich zurück, um bei besseren Zeiten Erfolg zu haben, sondern um den Respekt der Crowd und den Anhängern zurückzubekommen. Und, - oh ja. Das tat er. Nicht nur die bravouröse Trilogie gegen Tanahashi, die revolutionären stiffen Strong Style Kriege mit Ishii, sondern auch die Allianz mit der Third Generation in der '16-World Tag League.  Er war auf dem Weg, endlich der verdiente Main Eventer zu werden, nur um dann bei Sakura Genesis, in einem der Besten Matches aller Zeiten (es könnte gut das Beste sein) gegen den Neuen ACE zu fallen.  Es ist traurig, andererseits so rund und unfassbar wie die Journey zu Ende scheint. Katsuyori Shibata wird womöglich nie wieder in den Ring steigen und selbst wenn, nicht der sein, den man kannte.  Nicht der charismatische, im Ring technisch so versierte und fantastische Wrestler. Ein Style perfektioniert. Von der Mimik und den Low Key Momenten ein ganz großer.  Dieser Mann hat mir jeden Grund gegeben Wrestling zu lieben, und auch wenn er nicht an meinen persönlichen All-Time-Favourite Hiroshi Tanahashi rankommt, werde ich diese Zeit nie vergessen. 10 Punkte."
Rating: 10.0
Sentiment: 0.06428571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: GermanStrongStylewrote on 15.05.2017:[10.0] "I would recommend besides his NJPW his short title run for Revpro. When he has a match he puts it all in the line, no matter if it is the 2. long match in just 2 nights."
Rating: 10.0
Sentiment: -0.025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Harakwrote on 15.05.2017:[10.0] "Despite some problems with selling ( which doesn't really annoy me), Shibata is a freaking beast! His matches against Ishii or Tanahashi were excellents!   EDIT: Since i posted my rating, i have seen more of his matches and my opinion actually went even better: sure many of his famous matches were slugfest (which were incredibles) but he's in fact more versatile than i thought and he's actually a master when it comes to using the no sell correctly. Shibata has that thing which makes look all his moves like fucking explosions (especially his strikes), is pretty damn charismatic without even needing to have very good mic skills and when he wants to tell a story, he does it really well."
Rating: 10.0
Sentiment: 0.29828125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: arrancarwrote on 30.04.2017:[10.0] "An amazing wrestler and visual story-teller. A true fighter who takes the hardest shots I've ever seen and then gives them back twice as hard. He tells amazing stories of resilience with his MMA-inspired wrestling style and genuinely shocks me with how he handles his opponents. Shibata makes wrestling into a strike-fest and a test of pride and honour. Watching how passionate Shibata is in the ring makes me badly want to become a pro-wrestler, and then I see the insane bumps and strikes he willingly takes and I remember "oh yeah, I'm not even 10% as crazy or tough as Shibata". He is definitely one of the best wrestlers in the world today and has provided me and many others with plenty of amazing matches. It's a tragedy that his wrestling career may have prematurely ended, but what a way to go out if so. Not just with an absolutely incredible match against Okada at Sakura Genesis but also by providing a dramatic albeit bitter ending. He left NJPW, came back years later and had to win everyone's respect back, eventually proved that he deserved to be back, only JUST managed to get pushed again, had the Sakura Genesis crowd roaring his name, FINALLY proved he deserved to be in the IWGP Heavyweight title scene, before suffering a potentially career-ending injury. It would be heartbreaking if he never wrestles again, but it would be such a fitting, tragic end to his chaotic wrestling career. Shibata would forever be the best wrestler that never got the accolades they deserved."
Rating: 10.0
Sentiment: 0.09654882154882156
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: koblandwrote on 24.04.2017:[10.0] "The definition of Strong Style is Katsuyori Shibata. Point blank. No one hits as hard, and I think that's for the best. His recent injury may be the end of his career, which makes me tear up thinking about it, but he's left behind a legacy of stiffness that is unmatched."
Rating: 10.0
Sentiment: 0.10595238095238094
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Jobbswrote on 13.03.2017:[10.0] "Shibata is one of my favorite wrestlers going today. This man is so lethal in the ring and just gets the match going with so much passion and its emanate in his matches and the layout of the bout. His style works because it's not all about just brutalizing his opponent but really punishing his opponent in more ways than one honestly. He's going to do great things and he's had so many classics that it's just mind blowing to me honestly. Definitely one of the best in NJPW and in the world right now."
Rating: 10.0
Sentiment: 0.4585714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TrevPuroFanwrote on 07.01.2017:[10.0] "Shibata is one of my favorige wrestlers to watch today. Tough as nails, and really gives it his all in all his matches whether its a big or small match. Has a great match with pretty much everybody as well. He is incredible."
Rating: 10.0
Sentiment: 0.2138888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: jerseyhoolwrote on 07.01.2017:[10.0] "Shibata wirkt mit seiner No-Nonsense Attitüde einerseits wie ein Relikt aus alten Zeiten, aber andererseits ist es gerade das, was ihn aus der Masse herausstechen lässt. Insofern ist er das perfekte Bindeglied zwischen Vergangenheit & Gegenwart, ohne dabei langweilig zu wirken... im Gegenteil! Seine Matches sind oft stiff, die Aktionen (auch wenn sie noch so brutal aussehen) sauber ausgeführt & sein Stil schonungslos. So gesehen könnte man ihn fast als einen "Steve Austin des Ostens" bezeichnen. Ich würde ihm endlich mal einen großen Singles-Titel gönnen, denn mit seinen eigentlich konstant guten Leistungen der Vergangenheit hätte er sich diesen mehr als verdient."
Rating: 10.0
Sentiment: -0.29642857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: NastyYaffawrote on 05.01.2017:[10.0] "Shibata is incredible. A true workhorse who can pull off a very good match with pretty much anyone. I honestly can't give anything less than a 10 because of the incredible run he has been on for the last few years; 'The Wrestler' is already one of the top wrestlers ever in my eyes."
Rating: 10.0
Sentiment: 0.3857575757575758
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Moonbloodwrote on 22.11.2016:[9.0] "In der immer bunter werdenden New-Japan-Welt ist Katsuyori Shibata mit einer fast schon prähistorischen Attitüde ausgestattet. Simpler - aber effektiver - Nickname, eine ohne große Überlegung zusammengestellte Gear und ein Kampfstil, der vollständig auf Nonsense und Firlefanz verzichtet. 2016 ist ein herausragendes Jahr in seiner Karriere und der klare Beweis dafür, daß aus seinem sehr bedachten Aufbau Großes entstehen wird."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Undisputedwrote on 17.11.2016:[9.0] "Amazing strong style beast, when I see his kicks or elbow, I feel pain in my body. His matches with Ishii, Honma, Makabe, Ibushi, Nakamura, Goto or Tanahashi was great. His style is based on MMA (former MMA fighter) and for me this is good choice."
Rating: 9.0
Sentiment: 0.5066666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TheGreatestManRed22wrote on 17.11.2016:[10.0] "Holy Sh*t. Shibata is pure gold, their stiffs is awesome, good psychology, after that Nakamura leaves he represent The Strong Styles. I hope great things in future for him, he deserves it."
Rating: 10.0
Sentiment: 0.5246031746031745
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: MAGICIANwrote on 12.11.2016:[8.0] "Katsuyori Shibata, der neue King Of Strong Style bei NJPW. Er hat einfach eine fantastische Ausstrahlung, die seinem Charakter "The Wrestler" eine wunderbare Glaubwürdigkeit gibt. Im Ring ist er in seinem Gebiet fantastisch, kann aber auch in anderen Bereichen überzeugen. 8 Punkte!"
Rating: 8.0
Sentiment: 0.5416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: akm0wrote on 17.10.2016:[9.0] "One of the most, if not the most, intense wrestler you can see nowdays. Shibata is a freakin' machine. Hard striking, grappling and fighting spirit at his best; not to mention his in ring iq. His matches with Ishii and Tanahashi are pure example of that. He also has some decent mic skills, short, but effective. I hope he wins the big title one day, he definitely deserves it."
Rating: 9.0
Sentiment: 0.2837912087912088
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: wordflyerwrote on 15.10.2016:[9.0] "I have no idea of Shibata has promo skills, but I have seen a number of his matches, and they are consistently brutal in the best way. He's fairly small, but his presence is huge and he's clearly one tough sun of a gun."
Rating: 9.0
Sentiment: -0.002314814814814825
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: J Kwrote on 15.10.2016:[9.0] "Shibata ist einfach top.  Super strong style und vor allem sehr realistisch.  Dazu kommt noch ein starker Charakter und ein brillanter Finisher.  Er zwar nicht der beste aber der härteste Wrestler heutzutage.  Der Name King of strong style könnte auch locker an ihn gehen."
Rating: 9.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Luv all wrestlingwrote on 08.10.2016:[9.0] "Shibata is a violent badass and current Strong Style master of NJPW, Shibata always has killer match, but he needs to slowdown otherwise thos killer matches will start to kill him."
Rating: 9.0
Sentiment: -0.12222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Viper99wrote on 19.09.2016:[10.0] "Katsuyori Shibata ist einer der besten Strong Style Wrestler der Welt! Er kann so gut wie jeden Stil mitgehen, aber in seinem Heimischen Stil, dem StrongStyle, ist er absolut Fantastisch. Unglaublich Intensiv, Brutal und verdammt Unterhaltsam. All dies macht Shibata zu einem meiner Lieblings-Wrestler."
Rating: 10.0
Sentiment: -0.16666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: mrmctommywrote on 23.08.2016:[8.0] "A super talented adherent of Strong Style with a lethal moveset and the look and demeanor of a guy who wants to fight, and do nothing else. His nickname is "The Wrestler", which speaks for itself. His ring psychology is really something to behold. An issue to ponder is, when you watch him kick someone in half, you think to yourself: "how can this guy realistically lose? ""
Rating: 8.0
Sentiment: 0.28333333333333327
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: King of Darknesswrote on 01.08.2016:[10.0] "Unglaublich stark im Ring. Zukünftiger IWGP Heavyweight Champion. Das einzige was ihm vllt fehlt wäre ein eigenes Stable."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: FrankEnd99wrote on 06.07.2016:[8.0] "Katsuyori Shibata is a hell of a Strong Style wrestler. HeŽs amazing in every match against any opponent. I think that Shibta needs a good IWGP Heavyweight Title reign."
Rating: 8.0
Sentiment: 0.5777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: TheWrestlingFanwrote on 03.07.2016:[10.0] "Shibata is my current favorite wrestler in NJPW, aside from Omega. I really enjoy his wrestling style. He blends Strong Style wrestling with MMA elements perfectly. His matches have been constantly rated 4. 5-5. 0 stars, too, because he can put awesome display with any opponents. In addition, I also like his personality. He still thrives without portraying any colourful gimmick, despite today's wrestling era is closely related to the portrayal of larger-than-life characters and such, but Shibata simply becomes himself. He prefers focusing on polish his wrestling skills than does any unusual schticks to make himself over with crowd. I enjoy his current run with NEVER Openweight title, but I hope he will challenge for Intercontinental Heavyweight title and, if opportunity arises, challenge for IWGP Heavyweight title someday."
Rating: 10.0
Sentiment: 0.3025641025641026
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: gaidenphoenixwrote on 21.06.2016:[10.0] "With his stylish haircut, prominent jaw and black trunks, he looks like the second-coming of Antonio Inoki. But once he starts to wrestle, the comparisons become even more apt, as the former MMA fighter uses a brutal, but still crowd-pleasing, blend of submissions and absolutely punishing strikes."
Rating: 10.0
Sentiment: 0.1572916666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Randomuser12345wrote on 19.06.2016:[8.0] "Shibata is great. He's at his best when he matches are kept short, since he brings an intensity and hype that is unparalleled in NJPW. Never a dull moment when he's in the ring."
Rating: 8.0
Sentiment: 0.4864583333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Alex Maedawrote on 03.06.2016:[6.0] "Kennste ein Shibata-Match, kennste alle. In dem, was er macht, ist er wirklich gut, aber das ist nun mal nicht sonderlich viel. Abgesehen davon wirkt er auf mich als Charakter total uninteressant und farblos."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Jrod3160wrote on 16.01.2016:[9.0] "Shibata is amazing i think this guy will take on a top role in the heavyweight division with styles and nakamura leaving this guy will hopefully be a future njpw champion"
Rating: 9.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: RainmakerF7wrote on 06.12.2015:[10.0] "Katsuyori Shibata is not a sports-entertainer or a superstar, he is a wrestler and a fighter. A very stiff guy, his gimmick is just "no stupid nonsense, I just want to fight". He was supposed to be one of 3 new musketeers, along with Nakamura and Tanahashi, but Shibata decided to leave NJPW in 2006 for MMA. He returned in August 2012, saying he is ready to fight. Since then, he had countless amount of memorable matches : couple of matches against Goto, Tanahashi, Ishii, Honma or Nakamura, including 5 star matches with Ishii and Tanahashi. He is criminally underrated - he never held a major title nor headlined any important show. I love his character to the death, I think he needs to win a big title soon, he trully deserves that."
Rating: 10.0
Sentiment: 0.19335768398268396
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: DanTalksRasslinwrote on 19.08.2015:[8.0] "As often is the case with guys with legitimate fighting credentials, Shibata brings an aura of danger with him to the ring, and backs it up with some of the stiffest strikes I've seen.  His ice-man persona also provides a nice counterpoint to the showmanship of guys like Nakamura and Tanahashi, who are among the many he's put on great matches with."
Rating: 8.0
Sentiment: 0.6333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Marcywrote on 18.08.2015:[9.0] "Nobody is more bad ass! Seine Ausstrahlung und auch sein können sind absolut großartig. Toller Wrestler, den ich mir in so gut wie jeder Paarung anschauen kann. Schaut seine Matches vom G1 2015!"
Rating: 9.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Wrestling Foreverwrote on 15.08.2015:[9.0] "Katsuyori ist ein unfassbar stiffer Wrestler den man lieben muss. Seine Kicks sind hart und er ist im Ring absolut klasse. Sollte mal echt um die Titel mitspielen. Außer seinem Tag Team Gewinn mit Goto gewann er noch nichts. Würde mich schon freuen wenn er mehr höher in die Card käme er hätte es mal verdient."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Kevin434wrote on 02.08.2015:[8.0] "Der wird immer besser und besser, mit ihm muss man auf jeden Fall rechnen, was der dieses Jahr schon alles für Matches rausgehauen hat, WOW, sehr realistischer Worker, ich liebe seine stiffen kicks, weiter so und bald gibt es die 9 von mir."
Rating: 8.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: llboxingwrote on 27.07.2015:[8.0] "He might seem like bland Steve Blackman type, but the more you watch him the more compelling and unpredictable he is. Every match is a must see because he definitely has the It factor.  Probably the stiffest worker on the New Japan roster.  He's a serious, miserable, soft spoken, no frills shoot fighter with an intriguing "No Mr. Nice Guy" personality that can work well both as an loner anti-hero face or a jerk heel.  He also has one of the better physiques among Japanese wrestlers.  Was supposed to be a main eventer years ago alongside Tanahashi and Nakamura but abruptly left to pursue an ultimately unsuccessful MMA career, going 4 and 11 and making enemies with several in the wrestling business.  Will probably never fulfill the promise he once had due to his MMA career.  Despite having a losing record in MMA, he's got a reputation as a legit badass. He was in a feel good tag team with Goto but has since gone back to singles.  He is afterall, a lone wolf who has some intriguing matchup and storyline possibilities with several others on the roster. Can work with anybody on the roster with any style.  His kicks and strikes are painful to watch he's so stiff, and he no sells like crazy.  He's had some great matches already.  I really like his GTS followed by the PK as his finishing combo.  With his talent, look and legit toughness, he will probably end up a semi-main eventer at some point.  Watch for him."
Rating: 8.0
Sentiment: 0.06418135435992581
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: AboutToCrashwrote on 09.07.2015:[10.0] "The king of the short matches. Seriously, just give this guy 10-15 mins and he would deliver. With him not being the best MMA fighter he still managing to bring this style to the ring, so most of his matches feel like a fight with the wrestling psychology and story. He calls himself 'The Wrestler' to show that he's down to the chase, he brings the fight. One of biggest badasses ever. When he didn't move from the middle of the ring for Tanahashi in their match in G1 Climax last year, or when he got rope break by his teeth. This are things that you don't see very often that make Shibata be so spacial wrestler."
Rating: 10.0
Sentiment: 0.15138888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Movadowrote on 01.03.2015:[6.0] "Ich kann die Begeisterung für ihn leider nicht verstehen den für mich ist er eine austauschbare Kickmaschine. Keine Frage da ist ne Menge Potenzial, aber da fehlt noch einiges um dem Hype um ihn wirklich dauerhaft gerecht zu werden. Aber ich lasse mich gerne mit der Zeit von etwas besserem belehren."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Deviantwrote on 25.01.2015:[7.0] "Stiff and realistic. He's good with telling stories through in-ring work, as shown in his match with Goto and him being on Goto's side when he went against Okada."
Rating: 7.0
Sentiment: 0.21746031746031744
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: BrentDelivinewrote on 03.01.2015:[8.0] "TheGreatMuto is completely wrong, Shibata IS indeed a stiff wrestler, and he is liked by American wrestling fans. But is that REALLY a negative?"
Rating: 8.0
Sentiment: -0.08285714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Kenshin Uesugiwrote on 06.10.2014:[7.0] "Von vielen ist er vermisst wurden und nun wo er wieder da ist beginnt die Euphorie der ich mich nicht so ganz anschließen kann. Ja Shibata ist ein toller Striker und Bad Ass, ein richtiger No Nonsens Wrestler, aber es gibt einen Punkt der meiner Meinung nach übersehen wird, er ist immer noch der gleiche Wrestler wie vor 8, 9 und 10 Jahren. Der junge wütende Kerl der heraustach und sich mit allem und jedem anlegt, mit den gleichen Stärken und Schwächen. Damals sah man das nicht so streng, war er doch ein Hoffnungsträger und so gut für sein Alter, aber nun? Shibata ist nicht mehr der junge Punkster mit Mitte Zwanzig oder drunter, er ist ein erwachsener Kerl. Ja Shoot-Wrestling kann immer noch, obwohl er immer sehr oft zum Selling gezwungen werden muss oder er oft nicht zu wissen scheint ob und wann er will, er ist immer noch glaubwürdig in seinen Aktionen, gleichzeitig ist immer noch so unvariabel wie früher. Es heißt immer noch in seinen Matches entweder er strikt und verhaut jemanden oder er und sein Gegner striken und verhauen sich. Das ist weiß Gott nichts schlechtes und ein gewisse Stilpflege ist immer gut, das ist aber kein Grund a) sich nicht weiter zu entwickeln und b) den Stil man verwendet auch richtig zu beherrschen, zum Shoot-Style gehört bisschen mehr dazu sehe Größen wie Maeda, Suzuki oder Fujiwara, zumindest dann wenn man ganz Oben mitspielen will und von Fans dahin gehievt wird. Wie gut und stark ein Match mit Shibata wird ist stark davon abhängig mit wem er im Ring steht. Es fehlen ihm diese Jahre, wo Nakamura und Tanahashi ihre Einzigartigkeit vollends entfalteten, im dem Jahr wo Shibata sich vom Wrestling verabschiedete macht Tana-Boy den großen Sprung und wurde das erste Mal IWGP Heavyweight Champion.. Shibata ist für mich ganz klar hinter Nakamura und Tanahashi anzusiedeln, selbt die alten Leute wie Nagata oder Kojima sind als Wrestler besser bzw. kompakter was ihr Handwerk angeht, auch junge Stars wie Okada und Naito haben ihn was voraus. Ob er"
Rating: 7.0
Sentiment: -0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Wolfhartwrote on 27.09.2014:[6.0] "Nein, aus mir wird kein Shibata-Abfeierer mehr, auch wenn das momentan große Mode ist. Sein Wrestlingstil gefällt mir gut und gegen Leute seines Schlages (z. B. Davey Boy Smith Jr. ) schau ich ihn mir gerne an. Ansonsten aber macht er mit seinem völlig willkürlichen Selling bzw. No-Selling vieles kaputt, was der Zuschauer seit Jahrzehnten als Ursache-Wirkung-Prinzip verinnerlicht hat und worauf ein funktionierendes Match basiert. Ein Wrestler mit dem Auftreten und den stilistischen Einflüssen eines Akira Maeda, der dann zeitgleich alles über Bord wirft, was Leute wie eben Maeda aufgebaut haben - Shibatas Interpretation von Wrestling ist einfach nicht meine."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: alewrote on 15.05.2014:[10.0] "Mein Lieblingswrestler seit hmm ja seit ich Puro regelmäßig schaue. Einer der ersten die ich so wirklich wahrgenommen haben und irgendwie heraus stach. Hat mich mit seiner Stiffness und seinem No-Words just auf die Fresse Wrestler Gimmick total überzeugt. Ich hoffe man gibt ihm bald mal einen anständigen Main Event Push, im Tag mit Goto dümpelt er nur so umher. Mal sehen wann es gegen Tanahashi geht..."
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: sevendaughterswrote on 31.03.2014:[9.0] "Shibata, on his day, is one of the most exciting people to ever step between a set of ropes and perform in the world of pretend-fighting. His matches are so intense, with stiff kicks, brutal forearms and lariats - and just enough submissions and suplex variations and "fighting spirit" to keep it interesting. His series with Goto in 2013/4 and his G1 match with Ishii are testament to a real warrior.   He has two major problems working against him though. One: because he's left a couple of times, once to pursue an MMA career and once to be the ace of a NJPW contender that folded, he isn't very well liked in the dressing room. Sometimes this affects his matches, with guys not willing to take the kind of punishment he dishes out in his usually very stiff matches. Also, he has trouble adjusting his style to certain kinds of opponent. For all the hate Okada has received, he puts on matches of high quality with all opponents. Shibata needs someone as good and tough as he is if he's going to shine.   Once considered alongside Tanahashi and Nakamura as one of the new generation to inherit the mantle of Chono, Mutoh and Hashimoto, it's clear that his behaviour has seen him slip down the pecking order. But it's also clear to see that he is capable of things in the ring that no one else is and I would hope that he can repair relationships to give the audience the matches we sense he is capable of."
Rating: 9.0
Sentiment: 0.07169806530917643
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: eldenaaaaawrote on 16.02.2014:[10.0] "Katsuyori Shibata is one brutal wrestlers ever his kicks are crazy and also underated"
Rating: 10.0
Sentiment: -0.7375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: murasaki00wrote on 10.12.2013:[9.0] "I could watch Shibata kick the crap out of people all day.  His strikes are perfectly placed and his cool demeanor leaves you wondering if he's a professional wrestler or a cyborg from the future sent to beat the crap out of every person he stand across from in the ring."
Rating: 9.0
Sentiment: -0.025000000000000022
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Gredzillawrote on 20.08.2013:[9.0] "Ich kannte ihn nicht als er zurückkehrte, aber die Matches mit Hirooki Goto (schade das er G1 dieses Jahr nicht gewonnen hat) und auch die anderen Matches (das von G1 Tag 4 war brutal) haben mir eines gesagt. Dieser Mann haut so dermaßen rein. Ich kanns nicht beschreiben aber jedes Match mit ihm war bisher mindestens gut und ... wow. Diese Kicks, diese Kicks sind soooo brutal. Alter schwede. Shibata ist awesome damit wär alles gesagt."
Rating: 9.0
Sentiment: -0.16249999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: STRIGGAwrote on 28.06.2013:[8.0] "Er ist zurück. Es ist so unheimlich schade, dass er New Japan damals zu Big Mouth Loud und in Richtung MMA verlassen hat, aber vielleicht war es genau dieser Umweg, den er gebraucht hat, um so stark zurückzukehren. Dennoch: Hätte er diesen Umweg nicht genommen, könnte er mittlerweile ohne Probleme an der Spitze der Promotion stehen. Der Lichtblick ist dabei aber, dass er innerhalb kürzester Zeit wieder Gefühl für das Pro-Wrestling bekommen hat und dass er dabei eine Komponente mitbringt, die insbesondere in Japan immer eine große Rolle gespielt haben: Glaubwürdigkeit. Shibata ist ein wahrer Kämpfer mit unheimlich harten Strikes und tatsächlich so etwas wie die Personifikation dessen, was sich Antonio Inoki bei der Gründung New Japans unter dem Begriff "Strong Style" vorstellte. Ich hoffe, dass er New Japan lange erhalten bleibt."
Rating: 8.0
Sentiment: 0.10606060606060606
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Rancorwrote on 23.06.2013:[7.0] "Endlich, endlich, endlich ist Shibata zurück im New Japan Ring. Er hätte niemals gehen sollen, denn auch nach x Jahren rumdümpeln im MMA Niemandsland ist er jetzt sofort wieder einer der interessantesten Worker bei NJPW. Wenn er jetzt dabei bleibt, kann er vielleicht doch noch sein Potential ausleben."
Rating: 7.0
Sentiment: 0.06818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Kings Roadwrote on 19.02.2013:[7.0] "Ich fand es 2006 sehr schade, dass Shibata über BML dann zum MMA wechselte und dem Pro-Wrestling den Rücken kehrte. Für mich war er - zu der Zeit - der perfekte Gegenspieler zu Tanahashi und deutlich besser, als es Nakamura heute ist. Inzwischen ist er wieder bei NJPW angekommen und liefert eine ganz vernünftige Arbeit ab. Ob er bei NJPW aber nochmals längerfristig im Main Event ankommen wird? Das würde ich im Moment leider eher bezweifeln."
Rating: 7.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Sinestrowrote on 06.01.2013:[9.0] "Ist wieder zurück im Wrestling Ring und das ist gut so. Unglaublich stiff, klasse Technik und eine Intensität die unübertroffen ist. Kein Wunder wird in Japan Wrestling noch als "richtiger" Sport angesehen, dank Typen wie Shibata...."
Rating: 9.0
Sentiment: -0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: Phoenix Downwrote on 01.05.2011:[8.0] "Was stimmt mit diesem Jungen nicht? So viel Potenzial aber er will sich lieber immer wieder in MMA Fights demütigen lassen. Shibata war so ein wutenbrannter Giftzwerg der so dermaßen rabiat gegen seine Gegner vorging das die auch die Fassung verloren und sich seine Kämpfe wie Shoots anfühlten. Er ist noch jung und ich hoffe das er eines Tages zurückkehren wird."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1202&gimmick=Katsuyori+Shibata
Comment: D-Stylewrote on 07.12.2007:[10.0] "Cooles Auftreten, tödliche Kicks, im Team mit KENTA ein wahrlicher Takeover. Ich gebe ne 1 weil er mich sehr gut unterhält!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Conquistador37wrote on 14.10.2024:[10.0] "What more can I add? Iconic voice. No one, and I mean NO ONE can ever do the "And NEEEEEW __________ Champion..." better. He was THE VOICE for a title win. Heck, he was even masterful as a character whenever he was a part of any segment or angle. Completely excelled in the role, defined it even. Top tier."
Rating: 10.0
Sentiment: 0.4484375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Ruthless Attitudewrote on 25.09.2024:[10.0] "Howard Finkel is one of those names that shows you don't have to be a wrestler to be a wrestling legend and his appearances on every major show gave them a touch of class and his unique voice was iconic and was part of the identity and the very fabric of the WWF/E. He was Vince McMahon's very first signing and was the longest serving employee at the time of his death. He was briefly involved in some storylines, with one of the better ones being Chris Jericho's brainwashed lackeys and he was so entertaining to me in that storyline because he just had an innocence about him that contrasted the narcissist character Jericho had debuted with and he was hilarious to watch throughout that and kinda sympathetic as well. Howard made every Royal Rumble, WrestleMania ect. feel that much more important and it is obvious that throughout his life he lived and breathed wrestling. Just forget about the tuxedo matches though"
Rating: 10.0
Sentiment: 0.2401785714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: BMWrestling17wrote on 07.04.2024:[10.0] "This guy is my favorite ring announcer ever. A master of his craft, he was born to become an announcer!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: JediSaiyanMaster1203wrote on 25.11.2023:[10.0] "You know how people view "Mean" Gene Okerlund as the best interviewer in professional wrestling with no competition whatsoever? Howard Finkel is in that class for ring announcers. He's easily the most iconic, a voice that everyone heavily associates with when it comes to ring announcing and just the WWF in general. The Fink was so good, people popped when CM Punk brought him out to be his personal ring announcer at the 2011 Survivor Series PPV to upstage Alberto Del Rio (also, the commentators sold the moment terribly, almost killed the moment). He's also the one who came up with the name "WrestleMania, " inspiration coming from the phrase "Beatlemania, " which you could argue is his biggest contribution to the business. Championship victories were truly made 100 times more special when you heard Howard Finkel announce them in his iconic "Here is your winner, and... NEEEEEEWWWWWWW" line that lives in the minds of wrestling fans forever. It's also reported that he's one of the nicest guys in the business, one of the longest employed in the WWE's history, and was unfortunately a victim of people taking an advantage of him and being harsh to him when it came to pranks and holding him accountable for whenever he had to bump. R.I.P. Howard Finkel"
Rating: 10.0
Sentiment: 0.15605742296918762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: bigredtalk89wrote on 24.07.2023:[10.0] "Best ring announcer ever. Everyone since him has failed to measure up. Super likeable as well, he got pushed out of his spot earlier than he needed to."
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: MattHallwrote on 14.07.2023:[10.0] "One of the best voices ever, him and Randy Savage have the most iconic voices in wrestling history. His voice is so iconic that I do make Howard Finkel Impression. Overall the best Ring Announcer in WWE history."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: ItsToniTime89wrote on 29.06.2023:[10.0] "DIE Ringannouncer Stimme des Pro Wrestlings schlecht hin. Jedes mal, wenn Howard Wrestler wie den Undertaker oder den Ultimate Warrior angekündigt hatte, war Gänsehaut vorprogrammiert. RIP"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Giantfan1980wrote on 07.06.2023:[10.0] "THE best ring announcer in history! The Fink is one of the few guys on the site who I will give a perfect 10 to because he just nailed the introductions every match, every night, every year and made everything feel more legit and important."
Rating: 10.0
Sentiment: 0.5399999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Matthieujstwrote on 07.08.2022:[10.0] "He is the greatest voice in pro wrestling history. His anouncements always gave me goosebumps his voice is fucking unique, he is a true legend"
Rating: 10.0
Sentiment: 0.5750000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: GriffinXwrote on 06.02.2022:[10.0] "The Fink had the perfect get you hyped for a big match voice. He was so good but you really won't know just how good until you hear a really bad ring announcer. To be honest the few times they tried to put him ins some kind of story sucked but he was just so good at what he was supposed to be"
Rating: 10.0
Sentiment: 0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: mjs2212wrote on 19.10.2021:[10.0] "I do not know how it is possible to ever hate this man, Howard Finkel is an absolute legend! His announcing style and delivery is so iconic, and he is up there with Michael Buffer when comparing all the ring announcers in history. Every wrestler I have seen talk about Fink has never had a bad word to say about him, and he has always come off as one of the most genuine human beings ever. Such a professional and an awesome person who is terribly missed to this day."
Rating: 10.0
Sentiment: 0.020833333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: juiceisloosewrote on 27.08.2021:[10.0] "Hands down, the most memorable and iconic announcer in the history of wwe. Worked there for an impressingly long time too. Acted and sounded extremely professional and knew how to evoke emotions while announcing the names. Him announcing Undertaker's name gives me chills every time i hear it. Also was involved in angles with Jericho and Lillian and made me laugh. Nothing bad to say about this guy at all."
Rating: 10.0
Sentiment: 0.1243055555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Daigotsuwrote on 20.06.2021:[9.0] "Finkel was an excellent ring announcer and, when they let him, was a very funny character. All in all he was an excellent performer."
Rating: 9.0
Sentiment: 0.775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Kungwrote on 30.05.2021:[10.0] "Not only was Howard Finkel the greatest ring announcer in pro wrestling history, but he was also by all accounts a decent man who remained loyal to WWE for over 40 years. One of a kind."
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: marexcelwrote on 16.04.2020:[10.0] "Einer der größten Wrestling-Persönlichkeiten, die das Business jemals gesehen hat. Hoher Wiedererkennungswert, extrem charmante und sympathische Art und starke Perfomance am Mikro. Eine WWE-Legende, wie sie im Buche steht. Ruhe in Frieden, Howard FInkel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Wrestling Foreverwrote on 16.04.2020:[10.0] "The Fink war einzigartig. Ich habe bis jetzt viele Ringsprecher gesehen aber keiner war so fantastisch wie er. Ich möchte keine Vergleiche ziehen aber Bobby Cruise und Rich Palladino findet ich fast fantastisch. Zu Recht in der Hall of Fame. Ewig der WWE treu, keine Beweiße aber ich denke das die WCW damals ihn als Ring Accouncer haben wollte. Edit 16. 04. 2020 Das sind aktuell keine gute Tage gerade auf wwe. com erfahren das Howard Finkel verstorben ist."
Rating: 10.0
Sentiment: 0.2875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Pm Frankwrote on 23.08.2019:[9.0] "Best ring announcer ever .  Wwe, Njpw, TNA , AEW will never find better ring announcer. He was freaking awesome"
Rating: 9.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: KyleEnjoysWrestlingwrote on 30.07.2019:[10.0] "Iconic. EVERY ring announcer in the world today draws inspiration from Finkel. Fink made the dawn of a new champion mean so much with the famed "... and NEEEEEEWWWWWWWWW.... ! " exclamation."
Rating: 10.0
Sentiment: 0.1434659090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: warmongerswrote on 04.05.2017:[10.0] "I love The Fink. If there was a way he could could still be announcing i'd be thrilled. A proper company man who obviously wrestling.   He was a very good on screen performer too, his stuff with Jericho/Shamrock was awesome."
Rating: 10.0
Sentiment: 0.5016666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: WrestleArtswrote on 15.02.2017:[7.0] "Hat mir ehrlich gesagt nie viel gegeben, der Fink war da und hat einen ordentlichen Job gemacht. Mit viel Nostalgie: 7"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: ApexOfEvolutionwrote on 10.09.2016:[8.0] "Bei Howard Fink ist mir immer aufgefallen, dass er gerade früher viel älter aus sah als er eigentlich war und auch sonst irgendwie aus der Zeit gefallen wirkte. Aber vielleicht machte gerade das seine Ausstrahlung aus. Heute wirkt er so als darf er mehr er selbst sein und auch das kommt angenehm rüber. Ein Ringsprecher ohne viele Schnörkel und überdrehten Selbstdarstellungstrieb wie bei einem Michael Buffer. Die Athleten stehen immer im Mittelpunkt. Mir fehlte manchmal aber auch der Kick, der ihn richtig grandios macht, also bewerte ich ihn "nur" mit gut."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: The Sick Lebowskiwrote on 13.06.2016:[10.0] "Die Ansager-Stimme meiner Jugend neben Mean Gene Okerlund und ein Synonym für die WWF. Hat eine sehr starke Art, die Wrestler anzusagen. Eine wahre Ringsprecher-Legende, vielleicht sogar die größte aller Zeiten."
Rating: 10.0
Sentiment: -0.5133928571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: K4pkanwrote on 20.03.2016:[10.0] "Die WWF Stimme meiner Jugend. Gerade jetzt auf Network einige PPV-Events aus den frühen 90ern gesehen und fühlte mich sofort wieder 20 Jahre jünger. Diese Stimme bleibt im Gedächnis."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Y2J316wrote on 28.11.2014:[10.0] "Howard Finkel. Der Man ist für mich der Beste Ringsprecher aller Zeiten. Seine Betonung und alles drum und dran sind einfach einmalig. Lang lebe der Fink."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Mantafahrerwrote on 04.10.2014:[10.0] ""Ladies and gentlemen, this is the Royal Rumble match! " - Unbestritten einer der besten Ansager aller Zeiten. Manchmal sehe ich mir alte Matches nur an, um den Typen vorher ansagen zu hören. Kaum zu toppen, was Finkel bringt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: HighlightHEELwrote on 30.08.2014:[10.0] "Der Fink ist für mich der Gott aller Ringsprecher und die Stimme der WWE. Ich würde ihn auch heute noch alles ansagen lassen, einfach um seine geniale Stimme zu hören. Da er jetzt aber wohl lieber im Reich der Zahlen unterwegs ist, sei ihm das auch gegönnt, dem treuesten Angestellten der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Brainbreakerwrote on 22.02.2014:[10.0] "Was ein Ansager können muss, ist die Emotion, die mit dem zum Ring kommenden Wrestler verbunden wird, perfekt in der Ansage wiederzuspiegeln. Von der Hogan-Ära bis zu den Attitüden gibt es da nur einen, der immer im Hinterkopf ist, wenn es um die Entrances geht... von dem man hören will, wie er "Theeeeee ROCK! " oder "Theeee Underrrrrrtaker" ankündigt. Und das ist the Fink! Immer wieder Gänsehaut!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Matt Mackswrote on 30.12.2013:[9.0] "Eventuell bin ich nostalgisch verklärt, aber Howard Finkel ist für mich ein Kult-Ringsprecher, dessen Stimme ich immer am ehesten im Kopf habe, wenn es darum geht, einen neuen Champion anzukündigen. Jason Roberts ist ebenfalls gut, aber " The Fink" hat den Bonus der Nostalgie."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Daneraswrote on 04.11.2013:[10.0] "Er ist ein Kult im Wrestling. Ohne geht es gar nicht! Er sieht total brav aus, und wenn ich Wrestling nie geschaut hätte, und er mir sagen würde als was er arbeitet, dann wäre ich total erstaunt geworden. Ein super Ringsprecher!"
Rating: 10.0
Sentiment: 0.13888888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: believeintheshieldwrote on 03.10.2013:[9.0] "Einer der besten Ringsprecher der WWE! Allerdings einen Hauch Schlechter als Tony Chimel."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Scuzzlebuttwrote on 30.06.2013:[10.0] "Kurz und knapp gesagt. The Voice of WWE. Persönlich finde ich aber Tony Chimel besser, aber das haltet mich von der Höchstwertung nicht ab."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Smi-48wrote on 23.11.2012:[10.0] "Howard Finkel ist für mich das Urgestein der Ringsprecher-Gilde und im Gegensatz zum prominenten Buffer ein Kerl mit Bezug zum und und Interesse am Produkt. Für mich stellvertretend ein Synonym für meine persönliche ganz frühe Zeit als Fan - und der Nostalgiker in mir kommt bei seiner einzigartigen Stimme immer in Schwärmen. Ich mag den Kerl, da konnte auch ein Tuxedo-Match gegen Wippleman den Eindruck nicht ruinieren. @Iksuepsilon - Du hast recht, natürlich ist das ein RingSPRECHER, kein Ringrichter, aber Justin Roberts heisst bürgerlich "Justin JASON Roberts" (siehe auch ein Blick in die Datenbank). Also wenn schon klugscheißen, dann auch richtig ;) ....."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Iksuepsilon83mwrote on 23.11.2012:[10.0] "Der beste Ringsprecher aller Zeiten. An ihm kommt keiner vorbei, noch nicht einmal Michael Buffer! EDIT: Lieber MattMacks, Howard Finkel ist weder ein RingRICHTER, noch heißt der gute Herr Roberts JASON mit Vornamen ;-)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: CMP nwrote on 20.10.2012:[8.0] "Top Ringsprecher, allerdings gefiel mir die Stimme nicht so wirklich. Aber dennoch ein sehr guter der seine Ansagen immer fehlerfrei ablieferte. 8 Punkte."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Sirius Van Grathwrote on 26.02.2012:[10.0] "Bester Ringsprecher aller Zeiten. Ich bekam immer Gänsehaut, wenn er einen neuen World Champion angesagt hat. Vorallem bei Chris Benoit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Hardcoremaniacwrote on 03.02.2012:[10.0] "Mit enormem Abstand der beste Ringsprecher den es je gegeben hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Rated R Champwrote on 11.12.2011:[10.0] "Ich glaube zu The Fink muss man nichts mehr sagen, wenn es jemand "nur" als Ringsprecher zur Legende bringt muss er richtig was drauf haben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Tamamwrote on 15.07.2011:[10.0] "Bitte ? unter mir ... wieso geht es um Wrestler ? Es geht um das ganze Wrestling Buisness. Vom Chef bis zum Kommentator - vom Star bis zum Ringsprecher.  Finkel ist ganz sicher der größte und beste Ringsprecher aller Zeiten. Seine Stimme ist einfach ein Genuss und wertet Wrestlemania doch auch immer ein bisschen auf. Dabei auch Backstage sehr wichtig - Namensgeber von Wrestlemania ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Johnny-Tennerwrote on 16.05.2011:[10.0] "Die Stimme des Wrestlings. Freue mich immer wieder wenn ich diese Person noch einmal sehen darf. Wenn ich mir die Frage stelle wenn ich am Aller liebsten als Ringsprecher sehen würde dann gibt es für mich nur eine Antwort Howart Finkel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: exxterwrote on 01.03.2011:[10.0] "Classic. Einfach nur Classic. Bester WWF Ringsprecher den ich je erlebt habe."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: The Woerpwrote on 14.12.2010:[10.0] "Für mich der beste Ringansager, den ich jemals gehört habe. Boxen und MMA mit einbezogen. Dass er nun nicht für alle Ewigkeiten jede Woche Raw ansagen konnte ist klar, jeder geht mal in den verdienten Ruhestand. Er müsste aber zumindest bis an sein Lebensende bei jeder Wrestlemania die Matches ansagen, nicht nur die Hall of Fame Inducties."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: jjchiofalowrote on 11.12.2010:[10.0] "Howard Finkel is perhaps the best announcer in the wrestling business. He give the best introductions for wrestlers. He is the best nonwrestler in the business today."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: KASHwrote on 27.10.2009:[10.0] "Die Stimme der WWF. Jeden Main Event und jedes Titelmatch was er ansagt wird irgendwann mal episch :D"
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: real americanwrote on 25.10.2009:[10.0] "Wohl der beste WWE Ringansager aller Zeiten, zu seinen besten Tagen die Stimme des Wrestlings."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Hit Manwrote on 21.10.2009:[10.0] "Eindeutig der beste Ringsprecher aller Zeiten. An Finkel kommt keiner ran, auch nicht Michael Buffer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Basket Casewrote on 14.09.2009:[10.0] "Grandioser Ringsprecher, der beste ever meiner Meinung nach."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: SweetMetalMusicwrote on 26.07.2009:[10.0] "Der beste Ringsprecher ever. Für mich besser als Michael Buffer. Schade, dass er nur noch die HOF Neuaufnahmen bei Wrestlemania ankündigt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: shoopdawoopwrote on 29.06.2009:[10.0] "The winner of this match... and the neeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeewww world wrestling federation champion...."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: The-Game91wrote on 06.05.2009:[10.0] "Seine Stimme ist die Stimme der WWE. Bei seinen Ansprachen bekam man Gänsehaut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: manager1977wrote on 10.04.2009:[10.0] "Genialer Ringsprecher. Wahnsinns Stimme bei der Erscheinung. Einer der es wirklich drauf hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: LordTrailerwrote on 18.11.2008:[8.0] "Toller Ringsprecher, der mir immer sympathisch war. Hat eine spezielle Aussprache ("This is the R O Y A L R U M B L E MATCH ;)") Ich tue mich aber schwer einem Ringsprecher (nicht abwertend gemeint) 10 Punkte zu geben. Daher 8."
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Neubauteneinsturzwrote on 21.08.2008:[10.0] "Ganz eindeutig der beste Announcer in der WWE und wohl im Business generell. Besonders seines Ankündigung eines Titelwechsels ist unverkennbar. "And the NEEWWWW WWE-Champion... ". Eine Announcerlegende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Blue Meaniewrote on 23.07.2008:[10.0] "Klassischer Ringansager mit einer prägnanten Stimme. Wird leider mittlerweile von WWE zu wenig als Ansager eingesetzt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Riley Mathewswrote on 30.05.2008:[4.0] "Nicht unbedingt schlecht aber Lilian und Tony Chimel finde ich besser."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Bigkev82wrote on 26.04.2008:[10.0] "DIE WWE-Stimme meiner Jugend vor allem das Lispeln - natürlich kommt er optisch nicht an Lillian ran... *g*"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Mr Bonewrote on 11.04.2008:[4.0] "Ich fand ihn noch nie gut. Seine Stimme hat meiner Meinung nach keine Power wie Tony Chimel z. B."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Tomkowrote on 26.03.2008:[10.0] "Einfach nur klasse dieser Mann...  Als bei Wrestlemania 22 die Hall of fame-Mitglieder aufgerufen worden sind und ich den Namen Eddie Guerrero hörte bekam ich schon Gänsehaut... Dieser Mann bringt einen Namen so unglaublich rüber...  Einfach klasse!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: AirRiedlewrote on 17.03.2008:[10.0] "Unbestritten der beste Ringansager, den es je gab!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: jimpanse1980wrote on 06.01.2008:[10.0] "Authentischer als Mr. Buffer. Leider heut kaum noch im TV."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Cloverwrote on 22.11.2007:[6.0] "Definitiv ein Urgestein - allerdings nuschelt er mir inzwischen zu sehr :-/ Daher nur 7, 5 Punkte o. O"
Rating: 6.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: shannonmoorewrote on 04.11.2007:[6.0] "Guter Mann aber man inzwischen einfach zu alt, irgendwan müssen einfach mal andere ran."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: ghostwrote on 25.10.2007:[10.0] "Sehr schade dass er nicht mehr dabei ist.. Einfach fantastischer Ringsprecher - eine Stimme welche immer perfekt angepasst und angemessen war. Super Stimme, Super Momente."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Garvinwrote on 01.10.2007:[8.0] "Legendär. Habe seine Ansagen immer sehr gerne gehört, denn er verlieh den Wrestlernamen immer das gewisse Etwas. Dennoch konnt ich mich nicht immer ganz mit ihm anfreunden, daher "nur" eine 2."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: RhinoRaineswrote on 09.09.2007:[10.0] "Er ist und bleibt eindeutig der beste Ringsprecher in der WWE-Geschichte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Grissomwrote on 28.08.2007:[10.0] "Er war der beste. Die WWE sollte ihn mal wieder öfters bringen, zumindest bei denn goßen 4 PPV's."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Ericwrote on 28.08.2007:[10.0] "Super Ringsprecher und er sollte bei jeder Show wieder dabei sein nicht nur WrestleMania."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: CSHincwrote on 18.08.2007:[10.0] "ein toller typ treu zu seinem arbeitgeber und immer mit vollem einsatz dabei"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: jerseyhoolwrote on 02.08.2007:[10.0] "ein herrausragender ring-announcer, davon koennte sich auch ein michael buffer eine scheibe abschneiden. nie vergessen werde ich den auftritt in toga bei WM IX & mit seinem toupet bei WM X - zum schiessen! "the fink" rules."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: LexLuger4everwrote on 11.07.2007:[10.0] "Der legendärste Ringsprecher aller Zeiten! War in 4 verschiedenen Jahrzehnten Ringsprecher in der WWF, das verdient Respekt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Sandman16wrote on 24.06.2007:[10.0] "Ganz klar der beste Ringsprecher der je in einem WWE/F-Ring stand."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Giant2wrote on 24.06.2007:[10.0] "Meiner Meinung nach steckt The Fink alle anderen Ringsprecher in die Tasche. Keiner hat diese unnachahmliche Stimme und die Betonung je wieder hinbekommen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: NightLifewrote on 24.06.2007:[10.0] "Für mich der mit Abstand beste Ringsprecher aller Zeiten. Wahnsinn. Es läuft einem oft mal kalt den Rücken runter bei seinen Ansagen. Ein Unikat. Er gehört später in die Ruhmeshalle."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2279&gimmick=Howard+Finkel
Comment: Hennewrote on 24.06.2007:[10.0] "Früher Mal die Stimme der WWF, heute leider nur noch die Stimme Wrestlemanias."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: KnivesBrandowrote on 17.01.2025:[10.0] "Ma catcheuse préférée ever . Arisa est tout simplement trop forte , elle est à elle seule une des raisons de continuer de regarder du joshi après la grosse chute du Joshi au début des années 2000 . Arisa est violente, agile , rapide et courageuse."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Anas Kingwrote on 11.12.2024:[4.0] "She is an ok wrestler, but not my preferred style. People overhype her a lot. Yes, she has some good matches, but she's noway near as good as some of the other joshis in the world. She's very hyped up, so I decided to watch her matches. My conclusion was, while some of them are good, most of them don't even hold a candle to some of the best joshis matches I've seen. She doesn't have depth in her arsenal. She isn't as fast as others. Her moves don't look as effective as others. She needs to do a better job at selling too."
Rating: 4.0
Sentiment: 0.46458333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Maniaofmaniawrote on 07.11.2024:[10.0] "Has more matches in the past ten years, both tags and singes [that i would call must see the one department the likes of Okada does not have the tags and a lot of top-level dragon gate guys have too little amount of high-level singles] just on work alone she is the simplest 10 I could give she also has great move set"
Rating: 10.0
Sentiment: 0.17250000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Mugendaiwrote on 24.08.2024:[10.0] "One of the finest wrestlers working today. The only thing that stops her from getting a 10 is her tendency to swallow up younger wrestlers and give them nothing, not even simple strikes, during matches. I know she's from an era where that is to be expected from a veteran against a junior, but when you compare her matches against less-experienced wrestlers to her frequent teammate Tsukasa Fujimoto, it's a different world. That said, Arisa is unworldly talented and as long as she's against someone she perceives to be on her level, you'll see a great match. [August 23, 2024 edit: She spent her retirement road really helping lift on the wrestlers who will remain after she leaves, and deserves the upgrade to a 10 accordingly.]"
Rating: 10.0
Sentiment: 0.12916666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: DangoDaisukiwrote on 30.09.2023:[7.0] "Hat mich noch nie beeindruckt und ist auch nicht komplett positiv herausgestochen. Ich finde sie zwar natürlich gut von den Moves her, aber es hat mir noch kein Match von ihr so richtig gefallen. Eher immer etwas langweilig für mich, trotzdem noch 7 Punkte."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Ivywrote on 19.07.2022:[10.0] "Over half way through 2022 and I believe that Arisa Nakajima is the best wrestler of the year with all her work across joshi promotions. Her consistent match quality is unparalleled at the moment."
Rating: 10.0
Sentiment: 0.36111111111111116
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Lalo Camposwrote on 28.02.2022:[9.0] "One of the best Joshi wrestlers in the world today, one of the main attractions of SEAdLINNNG and their main champion"
Rating: 9.0
Sentiment: 0.4444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: MrCagematchwrote on 17.12.2021:[4.0] "Nowhere near as good as people make her out to be or as her rating suggests, she's good, but she's never the best part of her best matches, and her best matches are drawn out epics that don't really land and end up being good at best but rated and praised as some epic bangers. She's pretty average compared to the Joshi standard in Japan right now."
Rating: 4.0
Sentiment: 0.4918367346938775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Kaswrote on 12.12.2021:[10.0] "For my money, she's the best Joshi wrestler since the turn of the century, and one of the best Joshi wrestlers ever."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Kungwrote on 30.05.2021:[9.0] "I might not love Nakajima as much as a bunch of people on here, but there's no doubt that she's one of the most skilled Joshi currently working outside one the major promotions."
Rating: 9.0
Sentiment: 0.14464285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: medousewrote on 11.12.2020:[9.0] "What a great talent! Strong style, smart technique and vicious strikes. Many of her matches are really brutal. She took some serious beating over the years for sure. Arisa is also 1/2 half of one of my favourite tag teams - Best Friends. Her tag matches alongside with Tsukasa Fujimoto are always awesome."
Rating: 9.0
Sentiment: 0.2066017316017316
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: Makai Clubwrote on 12.11.2018:[10.0] "One thing I love is someone who is never happy unless they are killing bitches inside the ring. Arisa Nakajima is that women. Great wrestler. Very versatile in what she can do. Her technical prowess is excellent, love her brawling matches too. She brings so much hatred and intensity to her matches. She has some cracking matches against Kana (otherwise known as Kana), Rina Yamashita, Nanae Takahashi and more. The rating is totally justified IMO."
Rating: 10.0
Sentiment: 0.37
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: TheRatemakerwrote on 31.10.2018:[10.0] "The most technical female wrestler today, she is near to the ZSJ level. She is not the most intense and physical but she can be really good at it."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: UserDragon12wrote on 25.10.2017:[9.0] "Being honest with you, I have not seen many Nakajima matches, just a few matches in JWP, but I can tell you how little I've seen has impressed me, she's one of the few current joshi fighters I like, her match with Kana is full of emotion and is my favorite of this young and talented wrestler. I do not give her a 10 because I know she can show more, she's young and she can do bigger things, it's really worth seeing her in the ring."
Rating: 9.0
Sentiment: 0.27083333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: rustybridgewrote on 10.08.2016:[10.0] "Very good worker with great mat skills. One of the best Joshi wrestlers I have seen. Quite a few titles to her credit already, 14 in just 10 years and current holder of four. She is very marketable and easy on the eyes as well."
Rating: 10.0
Sentiment: 0.4490476190476191
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: tychowrote on 04.03.2015:[10.0] "Great mat wrestling skills, killer forearms and a master of the german suplex.  Not only is Arisa Nakajima the backbone of JWP, she is also one of the most skilled wrestlers in the world."
Rating: 10.0
Sentiment: 0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: sautiwrote on 01.11.2014:[10.0] "Meine fast 7 Jahre alte Erstbewertung muss dringend berichtigt werden. 2007 war sie noch ein aufstrebender Rookie, heute ist sie die legitime Nachfolgerin von Azumi Hyuga und gehört zu den Top Aces im Joshi. 10 Punkte statt 8."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4919&gimmick=Arisa+Nakajima
Comment: joshimaniawrote on 23.06.2013:[9.0] "Arisa Nakajima is a bright light for modern joshi and one of the best wrestlers going today."
Rating: 9.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: SPEEDSTAR02wrote on 19.11.2024:[10.0] "Kento Miyahara may legit be one of the best wrestlers on the planet as of now. He's been absolutely amazing for the past 5 to 6 years and hasn't stopped a single bit. Even during the dark periods of All Japan, he was carrying the company on his back for half a decade. I don't see all the criticism on him, but he's such a great babyface who is over in the company and is absolutely spectacular in the ring. Genuinely one of the best in the world, he is the "Best Of The Best.""
Rating: 10.0
Sentiment: 0.4115646258503402
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Dweeeabwrote on 19.11.2024:[10.0] "One of the best in the world for years now. I personally dont really see the criticism of all his matches are the same I mean they all have slow builds with an insane ending but thats how most matches are structured. Anyways Im always captivated during his matches and I love his moveset. He is always insanely over and is an incredible babyface, always incredibly fun to watch. Has also been carrying AJPW for the better part of a decade but they finally have some good people around him at this point."
Rating: 10.0
Sentiment: 0.13249999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: benny5bellyswrote on 20.08.2024:[10.0] "If you want to understand just how good Kento is, imagine All Japan the last 5 or 6 years without him. He kept it going through some dark days and now finally have pieces around him that can go. He is still the guy that makes those around him."
Rating: 10.0
Sentiment: 0.13749999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Jordan Impactwrote on 24.07.2024:[10.0] "The best wrestler on the planet right now. Just oozes charisma and of course amazing in ring and the man just gets what Professional Wrestling is. His loyalty to AJPW cannot be understated when he could easily gone to New Japan. Will hopefully continue taking AJPW forward as company Ace and put on great matches."
Rating: 10.0
Sentiment: 0.39442640692640696
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Wrest lingaddictionwrote on 10.05.2024:[10.0] "Charisma personified! The man has it all. From the moves, the accolades, the fan connection, even down to the fueds. I've watched his matches for years now and I can safely say he understands professional wrestling on an intimate level."
Rating: 10.0
Sentiment: 0.1611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: GriffinXwrote on 04.12.2023:[10.0] "An amazingly talented and entertaining wrestlers. A man who has at time put AJPW on his shoulders when they needed him most"
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: cal9099wrote on 23.11.2023:[10.0] "The quintessential pro wrestler. Charisma for days, incredible in-ring and a great look to top it off, not a whole lot more you can ask for. Shame he doesn't get the amount of eyeballs he deserves being in AJPW, but I'm glad fans of that promotion get to witness a legend."
Rating: 10.0
Sentiment: 0.5166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: KENTAfanwrote on 10.08.2023:[10.0] "Kenta has been one of the best in the world for awhile now, but he really needs to leave AJPW for a more significant promotion now. The reason hes not having matches quite as good as he used to is simply because hes faced the same guys in AJPW time and time again. His recent classic against Nakajima is a perfect example of this, so hopefully he goes to NOAH or NJPW soon. If he stays in AJPW, as good as he is, his legacy is going to suffer for it."
Rating: 10.0
Sentiment: 0.42196969696969694
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: DangoDaisukiwrote on 30.06.2023:[7.0] "Miyahara ist für mich ein Gesamtpaket ohne irgendeine Besonderheit, was seine Matches für mich aber eher langweilig macht. Ich war in keinem seiner Matches wirklich emotional in irgendeiner Weise involviert und mir fehlt komplett das gewisse Etwas."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: NEVERoverweightChampionwrote on 29.06.2023:[9.0] "A lot of charisma and a great connection with the crowd, he truly is one of the best wrestlers of his generation. Sadly I think being in AJPW with the state the promotion is in doesn't help him to reach his full potential."
Rating: 9.0
Sentiment: 0.32999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: deceivrwrote on 17.06.2023:[8.0] "Hey, look! It's the psychotic romantic who is loved by children everywhere! I loved Kento Miyahara when I started to see his matches again from 2017 - 2021. It was an absolute blast to see him evolve into a crazy mess. When he started out in K-Office, he was practically just some guy who was to "wind up like the rest", ala Satoshi Kajiwara, and dissolve into a period of obscurity. That WAS until AJPW came knocking and said; "Hey! we want you to be a good star for us. You're from Fukuoka, so you can raise up the markets for us there! ", and the rest, as they say, is history. His presence, to the AJPW staff (and a very interested Jun Akiyama), was unlike anything they had come across for a local talent. Numerous Triple Crown / Sankan title matches later, and he is at his most beloved... and hated. Many state, to which I agree with, that he has done the same things in most of his matches; this occurs mostly in big time title matches (excluding tag title matches, especially with Takuya Nomura as Miyaken To Takuya), wherein it goes to a certain distance and never really gets to the amount of speed of a, let's say, Open The Dream Gate title match. This is one filled by fans of more energetic wrestlers of the day such as Will Ospreay, Kazuchika Okada, etcetera. To me, his slow offense makes a good indicator for technical story-building, but is left to be filled by newer moves and abilities that he is to show off (spoiler; he hasn't). In the end, Miyahara is growing, but, with the way he is now, it's safe to say that he will grow to be either a love-filled Tanahashi-esc ace, or a shadow of a era defined by its heart and will lead by the pillars. His work is great, but flawed, and it must be said that he is to be at the top of his game soon. We'll wait patiently, Miyaken, show us what 'ya got!"
Rating: 8.0
Sentiment: 0.16406853281853284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: No Onewrote on 24.05.2023:[10.0] "The best formulaic wrestler in Japan. He has incredible chemistry with virtually every opponent. He also has a special charm & charisma that reminds me of the legendary Muhammad Ali of all people. That is saying something. He should be a major mainstream star across Japan. He is the ACE of AJPW bar none."
Rating: 10.0
Sentiment: 0.5532738095238096
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Rainmaker9198wrote on 10.04.2023:[10.0] "Dude just have it all, charismatic, amazing in ring, super over with the crowd. when his music hits the people are on their feet. just the total package and a major star. probably one of the best of his generation"
Rating: 10.0
Sentiment: 0.41597222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: arrancarwrote on 15.12.2022:[6.0] "Dropping my score from an 8 (which was a 9 a few years ago) because I don't think I can truly consider Miyahara a great or even very good wrestler at this point. I have 4 major issues with him: (1) HE'S FORMULAIC AS HELL. He's had plenty of great matches, but GOD could he introduce a big move that isn't a knee strike or a german suplex? All his big singles-match performances are *entirely* copy-and-pasted, having the exact same opening shine/control work segments, the exact same comebacks, and of course the exact same big moves in the 'epic' final 1/3rd. The guy might genuinely only have 6 moves in total, which sadly isn't hyperbolic to say. Having 99% of your meaningful offence made up of just two moves is terribly boring. (2) He's very unlikeable despite intending to be the babyface ace. The way he so desperately appeals to the fans over and over in his entrances, during his matches, and in his post-match celebrations becomes very grating. Babyfaces shouldn't be so clearly self-interested in receiving support. It also doesn't help that he will constantly bring out heel tactics in very melodramatic ways, but then expect us to buy into him when he's being beaten down a minute later. I used to enjoy Miyahara's babyface selling a few years ago, but now his expressions have become completely over the top and goofy, with him making these big bug-eyed faces and sticking his tongue out in ridiculous ways, sometimes while letting loose unhinged laughs, all of which just makes him come off like a deranged creep. (3) The dude can't sell a body part to save his life. I'm not a selling-purist, but for the love of God, Miyahara zaps out so much intrigue from his matches when he totally ignores the 20+ minute work done to his leg (which is the usual body part of choice) and immediately starts running around at perfect speed and with perfect technique, never addressing his worked-over limb ever again. (4) The fact he's pushed so damn heavily as the ace has made him boring to follow, and thus he heavily weighs down my overall interest in AJPW as well. Since his first Triple Crown title win in 2016, Miyahara has been champion 55% of the time. That's insane. He's achieved so much by his current age of 33 that there's nothing remotely interesting left for him to do. Now, despite these issues, which can either be mere annoyances or major aggravations depending on how Miyahara is feeling that day, Miyahara *can* still be a good or sometimes even great wrestler. The way he can hit a flurry of moves with such fantastic technique is very impressive, and a lot of his offence connects in a very impressive manner. His big matches for the last few years have all been the definition of formulaic, but he's at least well skilled at working that formula, I guess. A few years ago I thought Miyahara was the second coming, but as he's continued to be pushed to the top and I follow him more closely instead of just isolated viewings, I realise just how very limited he is."
Rating: 6.0
Sentiment: 0.104112504304812
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: jamzell00wrote on 29.06.2022:[10.0] "The criticisms had against his formula for big matches are valid but I dont care I love this man. The great matches, the presence in ring, the goofy ass faces he makes. All of it is amazing to me. Dude has given everything he can to AJPW despite its up and down business over the years."
Rating: 10.0
Sentiment: 0.37407407407407417
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: PepsiManwrote on 06.05.2022:[7.0] "I was genuinely surprised with Kento. I only started watching AJPW recently but he's been a shining blessing. The match in night 1 of Champion Carnival was fairly good and he seemed strong in defeat. He's honestly the Tanahashi/Shiozaki of modern day all Japan"
Rating: 7.0
Sentiment: 0.2904761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: R0n1nwrote on 04.05.2022:[10.0] "Very few people are able to connect with the audience, be it in the arena or online, as Kento Miyahara. He mastered it beyond anything I would have imagined. And even though his matches are going with more or less same formula, he somehow manages to make it watch over and over again with heavy emphasis on the storytelling"
Rating: 10.0
Sentiment: 0.06222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Logue38wrote on 05.02.2022:[10.0] "One of the best wrestlers on the planet. He has an incredible charisma and connects with the live audience. While it's clear he has a formula, he's so good at doing it that you end up not caring that you've seen it before. Also, it's somewhat overblown, as most complaints about him being formulaic are more based around the fact that he doesn't really have any big spots, so his knee strikes and the struggle to get his finishing hold locked in act as his spots. He's one of the masters of storytelling/psychology, along with contemporary wrestlers such as Shiozaki (I haven't watched much clap-crowd era Miyahara, so it is possible that his talents rely on being able to connect with the crowd. This is not a knock on Miyahara, however, as wrestling is meant to be done in front of a crowd that can cheer)."
Rating: 10.0
Sentiment: 0.32686868686868686
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Kungwrote on 27.10.2021:[9.0] "One of the best guys working in Japan but not in New Japan at the moment. This guy has super star written all over him."
Rating: 9.0
Sentiment: 0.48989898989898983
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Lalo Camposwrote on 18.10.2021:[10.0] "The Ace of AJPW and the youngest Triple Crown Heavyweight Champion of all time, he has amazing wrestling skills and his huge charisma, make him a total package of a wrestler."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: rainmakerpunkwrote on 17.04.2021:[10.0] "He's an amazing ace for AJPW, he puts on fantastic matches and has some fantastic title reigns, he's already done a lot in his career but is still young and has a bright future ahead of him"
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: uziwrote on 16.04.2021:[10.0] "My best in the world, and one of the best of all time. Nobody to me has matches that are as engrossing as Kento. His psychology is on par with any of the all time greats, and he's one of the most charismatic wrestlers on the planet. And for my particular tastes, the fact that he does have a relatively simple moveset and doesn't build around doing any particular crazy spots or stiff moments in matches is an asset. I love Ibushi too and I don't think his style is inherently worse, but for me someone doing an insane spot or something at times breaks my engagement in the match. Doing that isn't a minus in my book but being one of the BITW without it is a major plus."
Rating: 10.0
Sentiment: 0.14543650793650792
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: pierreMinnewrote on 17.03.2021:[10.0] "One of the bests wrestlers in the world today, easily in my top 3. He is a monster of charisma and connects incredibly well with the crowd. Seeing his entrance is always a fantastic moment. His work in AJPW is simply incredible."
Rating: 10.0
Sentiment: 0.6749999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: brandon062896wrote on 18.10.2020:[9.0] "Sometimes he comes off as formulaic. On the other hand, his matches are spectacular. His match with Suwama for the Triple Crown belts is one of the best matches I've seen within the past year or so, and his use of the straight jacket german as a finishing maneuver is quite laudable"
Rating: 9.0
Sentiment: 0.20357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: ElPolloLocowrote on 25.09.2020:[8.0] "He's basically like Okada, only without the mega-talent helping elevating him even further. Still a damn good main eventer and worthy Triple Crown champion by any means."
Rating: 8.0
Sentiment: 0.24
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Ma Stump Pullerwrote on 12.08.2020:[8.0] "One of the better parts of AJPW, but he has a lot of glaring flaws that need to be worked on, namely that he doesn't really have enough innovation in terms of his wrestling sequences, and his "signature" spots are overused and get extremely tedious after a while. He's a solid babyface, but it doesn't seem to come naturally from him, if that makes any sense. It seems forced and put on at times. Compare him to someone else who was in his shoes in a larger company (Tanahashi) and you really notice a glaring difference between them in terms of that charisma. Tanahashi is just naturally likeable and can garner sympathy from even the hardest of crowds, while Miyahara tries way too hard to get crowds to get behind him, to the point that it really hurts his chances. It kinda reminds of when Naito was getting his initial big babyface push and he seemed like he was almost trying to get himself to believe his own hype, and that showed when crowds became cold and didn't consider him as a top guy. That being said, he's a solid worker within the ropes and can tell a story when he's not going through the motions and is free to go at his own pace. He's young, and has a lot of time to learn and get better."
Rating: 8.0
Sentiment: 0.07534722222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Tom LeBlancwrote on 06.04.2020:[9.0] "Kento Miyahara, a very intense competitor, has everything needed to be amongst the best in the world. He would gain his much-deserved recognition if he wasn't so loyal towards AJPW, the company he's almost carrying all by himself."
Rating: 9.0
Sentiment: 0.5311111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Chekerwrote on 03.01.2020:[7.0] "I've lowered my previous rating from 8 to 7 (oh, big deal. ) Reason being Miyahara has had a dumb routine for a while now where as soon as the match starts, he takes his opponent outside, throws him onto the barricades on all four sides and headbutts him on all four sides. Then he puts his opponent's head around the ring post and pulls on his hair until Wada comes to stop him. I've seen Kento do this in the past 10 or so matches I've seen of his, with the fine exception of the latest one vs Jake Lee (he still went for the god damned headbutts).  If you're like me, you think outside spots are rarely interesting (I don't particularly care for brawling, much more of a grapplefuck guy) and you got sick of it after the second time. So imagine feeling like you're seeing it literally all the time. This routine brings Miyahara and his matches down, because by the time he gets back in the ring I've lost interest and I don't care. He has it in him to be incredible. I wish he'd drop this nonsense."
Rating: 7.0
Sentiment: 0.08261408730158729
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: VillainClubwrote on 24.12.2019:[10.0] "Sehr Guter Wrestler, der durch gute Matches und ein sehr gutes Crowd Verständnis den Titel und die Company wieder aufbaut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Judestarwrote on 26.11.2019:[9.0] "Amazing performer but he needs to change up his match formula to get into the list of best current wrestlers, he is very formulaic and I'm kind of bored of all his matches having predictable final stretches."
Rating: 9.0
Sentiment: 0.18750000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: ArrogantDanwrote on 02.09.2019:[9.0] "Kento Miyahara probably isn't the best wrestler in the world, or even the most charismatic (though that one's more debatable), but he very well could be my favourite. What other fresh-faced, good-looking Ace of the Company would be out here throwing headbutts like he's trying to win the Bruiser Brody Award? I suppose the question Kento raises more keenly than most is How cocky should an ace be? Okada is certainly arrogant. Tanahashi has reached near Cena-like levels of un-likeability at times. But damn Kento, those are some heel-ass tendencies you got there. Yes, he should sell damage to his legs more. Next question. The best pump kick in the game, maybe the best bicycle knee (and that's running against Marufuji and Kenny). Add those to his godly charisma and it's no wonder he's holding the whole damn company up."
Rating: 9.0
Sentiment: 0.3771825396825397
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: WAWReplaywrote on 07.08.2019:[9.0] "Kento Miyahara is a complete wrestler who in my opinion wears the AJPW on his shoulders this year like last year he is in all good luck he delivers benefits that borders on perfection, often facing opponents not all the time at top I imagine that would give it to a big federation such as NJPW"
Rating: 9.0
Sentiment: 0.21666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: seirahwrote on 02.07.2019:[10.0] "Kento is amazing, his moveset is simple but he perfected every single thing he does and his natural charisma is amazing, this guy is no doubt top 3 wrestlers in the world"
Rating: 10.0
Sentiment: 0.2880952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: ohnoeswrote on 04.06.2019:[5.0] "It's baffling to me how a wrestler as high profile as Miyahara can have so many critical flaws as a character, at selling, and be so repetitive, yet be rated and regarded so highly. All but one of Miyahara's matches that were supposedly 'must-see' were disappointing to me for one reason or the other. He's young, but there are several wrestlers better than him that are younger or around the same age. I don't dislike him, and am willing to give him more chances by watching more of his matches, but I'm not in the least bit excited to do so."
Rating: 5.0
Sentiment: 0.10411764705882354
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: PuroresuLoverwrote on 13.05.2019:[10.0] "Along with Katsuhiko Nakajima and Kazuchika Okada, Kento Miyahara is one of the bests right now, he has the whole package to be the New Ace of AJPW. His matches are always amazing, his Knee Strikes and German Suplexes are always beautiful to see and very flashy. Kento never disappoints."
Rating: 10.0
Sentiment: 0.2031539888682746
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: raveneffectwrote on 24.02.2019:[10.0] "Alongside Sekimoto, Kento is the best wrestler in the world right now. He knows how to build a match and how to put himself over through empathy generated by his marvelous selling. He knows how to squeeze every single moment the best way possible to pile tons and tons of drama. The guy is a total package and, in just 2 months, he put himself on top of 2019's race."
Rating: 10.0
Sentiment: 0.46428571428571425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: RatingsMachinewrote on 22.09.2018:[7.0] "I have never been impressed with Kento Miyahara. People rave about him, but I rarely watch a Miyahara match and think that he's lived up to the hype."
Rating: 7.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: The Lodger of Soulswrote on 23.07.2018:[10.0] "Take the charisma of Hiroshi Tanahashi and meld it with the striking prowess of Shinsuke Nakamura in his prime, and you have something close to the Ace of All Japan. Kento is largely responsible for a resurgence in popularity and quality of AJPW, putting on amazing matches with Jake Lee, Joe Doering, Suwama, Shuji Ishikawa and Naomichi Marufuji, among others."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: taabr2wrote on 04.05.2018:[9.0] "The current Ace of AJPW and probably the best Japanese in-ring worker today not signed by New Japan. Miyahara was smartly build up slowly and is the leader in All Japan's current resurgence."
Rating: 9.0
Sentiment: 0.15009276437847863
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: thagodrakimwrote on 10.04.2018:[10.0] "He's one of the best on the planet right now, and he's easily the driving force behind the renaissance of AJPW. Kento possesses a charisma and connection with the audience that very few wrestlers have, it can most easily be compared to Tanahashi and his innate ability to draw people in. Along with potentially being the most charismatic wrestler on the planet, he also has fantastic ring work, as he can easily switch between playing an underdog, and being a bully in an instant, along with that he has a fantastic grasp on struggle sequences and that always greatly adds to his matches. So, all in all Kento really does rank among some of the best in the world."
Rating: 10.0
Sentiment: 0.30142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: STRIGGAwrote on 10.01.2018:[9.0] "Es passiert in der modernen Zeit selten, dass ein Wrestler so sehr für den Aufschwung einer Promotion verantwortlich ist wie es bei Miyahara und All Japan der Fall ist. Wer weiß, wo All Japan nun ohne Miyaharas Triple Crown Regentschaft wäre? Er versteht es wie sonst nur Tanahashi die Fans in seinen Bann zu ziehen und die Massen zu mobilisieren. Sein explosiver Ringstil in Paarung mit seinen großartigen technischen Grundlagen und seinem unvergleichlichen natürlichen Charisma sind die Bauteile für einen herausragenden Pro-Wrestler."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: The Big Blue Machinewrote on 02.10.2017:[9.0] "Kento is probably one of the best wrestler in the world at the moment. Very underrated, Miyahara always steals the show despite a repetitive move set. I think he will reach the level of guys like Okada or Omega in two years."
Rating: 9.0
Sentiment: 0.19
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Iamthegreatwrote on 22.09.2017:[10.0] "One of the best AJPW wrestler right now, this guy had it all.. his year long Triple crown championship reign is one of the best in the championship history and he will surely let AJPW grown again."
Rating: 10.0
Sentiment: 0.5471428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Portuga99wrote on 16.09.2017:[10.0] "This young fighter has a great future ahead. He has loads of charisma and quality inside the ring. He is an excellent technical wrestler who gives his all in the fights in which he participates. A True Ace"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Iceqwrote on 11.09.2017:[10.0] "Das Ace von AJPW hat mich dazu gebracht die Liga wieder regelmäßig zu verfolgen und ich bin darüber sehr froh. Sein erster Triple Crown Run hat der Liga sehr gut getan und nach der Anniversary Show, kann man sich ziemlich sicher sein, dass der Mann für längere Zeit das Face von AJPW sein wird. Gerade einer meiner Lieblinge und ich würde mich sehr freuen, wenn er ein bisschen bekannter unter den Wrestling Fans wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Luv all wrestlingwrote on 26.08.2017:[10.0] "AJPW was forced to jump the gun and make Kento there champ, and so far it has paid off, bringing attendiance and and workrate up and create positive buzz for AJPW. A very good choice to be the ace of AJPW. I can`t think of a single bad thing about this man, plus he is great with children."
Rating: 10.0
Sentiment: 0.13797773654916515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: TheRainmaker28wrote on 12.05.2017:[10.0] "I have been watching Kento for a long time now and what I can say is that he is incredible. I never seen this guy in a bad match since his won the title. His in-ring psychology are just so, so good that I amazed. He is a incredible babyface, and he always bring intensity and fire to his matches, and apart from that, he is a proved draw and got one of the best sellings in the world today. Is such a shame that AJPW are not on their best days to this guy get the spotlight that he deserves. The Ace of AJPW is definitely one of my favorites wrestlers in the world right now. If you don't see his work, it's really worth watching."
Rating: 10.0
Sentiment: 0.39415584415584415
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Zeocrymerwrote on 02.05.2017:[10.0] "Talk about taking the ball and running with it! For over a year, Kento Miyahara has carried the Triple Crown Championship - as well as All Japan Pro Wrestling as a whole - on his shoulders. To say he has been making the most of it is an absolute understatement. Kento has a charisma about him that is able to captivate audiences and get them invested in his matches. Even beyond all of this, he is an incredibly capable worker that is able to put on matches with a wide variety of opponents with varying skillsets. While a 10 may seem a bit hyperbolic (admittedly he's more in the 8. 5 region), the fact that he is a proven draw and that he brought an ENTIRE COMPANY back from obscurity ups him to a 10. The crazy part about all of this? This guy hasn't even broken 30 yet. The sky is the limit for Kento."
Rating: 10.0
Sentiment: 0.12499999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: JubileuFishwrote on 07.03.2017:[10.0] "He is awesome. A dude who can make a 4-star match with Bodyguard, with FUCKING BODYGUARD, deserves some recognition, don't you think so?"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: CmNag66wrote on 07.01.2017:[10.0] "Großartiges Jahr 2016, er ist der Hauptgrund für den Aufschwung bei All Japan. Ein starker Run als Champion mit richtig starken Main Events. Ist definitiv der Topstar der Gegenwart und der Zukunft von All Japan."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Vertebreakerwrote on 19.06.2016:[8.0] "A good wrestler with a fair amount of charisma, he comes across well as a champion and his talent combined with his youth is just what AJPW needs right right now. Really filling the void left by Go Shiozaki."
Rating: 8.0
Sentiment: 0.3619047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: steinerfatasswrote on 06.08.2014:[10.0] "after nakajima, the best student of kensuke sasaki. probably the best young talent in japan nowdays, if AJPW will grow him well, he'll become certainly one of the faces of the japanese puroresu."
Rating: 10.0
Sentiment: 0.4628571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: Matzinhowrote on 17.03.2014:[8.0] "Wenn ein japanischer Wrestler mehr charakterliches Profil will färbt er sich anscheinend die Haare blond. Naja. Seine Erscheinung sagt mir trotzdem nicht zu. Dafür ist Miyahara im Ring richtig gut und er hat bei AJP seinen Platz gefunden. Hier ist er einer der besten Juniors und kann sich etablieren. Langfristig stellt sich dann die Frage, ob er in die Heavyweight Division will oder bei den Juniors bleibt. Falls letzteres sollte er irgendwann zu NJP wechseln, da der Junior Title von All Japan einfach nichts wert ist und die Division allgemein nicht gut dargestellt wird."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: MaKnowrote on 22.08.2010:[7.0] "Keine Ahnung wo Sasaki diese Talente findet aber bitte mehr davon! Miyahara ist bereits deutlich weiter als Okita, von Nakajima jedoch noch ebenso weit entfernt. Miyahara hat allerdings das Potenzial und vor allem die Jugend, um sich dem aktuell stärksten Kensuke Office Sproß zu nähern. Den Burschen sollte man im Auge behalten!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6155&gimmick=Kento+Miyahara
Comment: AndyTNAwrote on 25.12.2008:[6.0] "Guter Rookie der beim Kensuke Office/Noah noch was werden kann."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Purgatory753wrote on 12.02.2025:[10.0] "the fact that such a campy gimmick on paper was taken so seriously and lasted so long is a testament to the presentation he was given and the continuous reinvention of the character. one of the best characters in all of wrestling. One of the most entertaining to watch. One that, for 98% of his career, was almost guaranteed to put on a good match"
Rating: 10.0
Sentiment: 0.33095238095238094
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: wrestlingswiftiewrote on 27.01.2025:[2.0] "I seriously believe he's the most overrated pro wrestler of all time. For some odd reason, we've got younger fans letting these old heads convince them that The Undertaker was actually entertaining -- even though you can clearly see that he sucked through a modern lens. "Oh, but wrestling was different back then." True, but guys like Steamboat, Flair, Dynamite Kid, Thunder Liger or Bret, just to name a few, all came before his time but still collectively have great catalogues that still hold up today. I mean, seriously; why do American fans give "GOAT" status to a guy who can barely do five moves? His matches were boring, outside of the 'Mania duology with Shawn, and my goodness, his character work... Boy, is that over hyped to DEATH (no pun intended). No really, try to go back and watch an Undertaker promo without being bored out of your mind. His character is supposed to be this dark and mysterious phenom, but instead, he just comes off as a stupid-looking man trying to sound creepy. Even back in the day, during the "greatest time in wrestling history, " the Attitude Era (another over hyped wrestling concept), his promos were boring then. An example of this is when he was stinking up the joint before Chris Jericho interrupted him in his second WWF appearance ever. And the crazy part? It's not the worst part of Taker's character work. He also had other stinkers during that time period, in terms of both matches and promos... The guy's a total hack."
Rating: 2.0
Sentiment: -0.06825980392156861
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CrandonMartin2001wrote on 25.01.2025:[10.0] "The Undertaker is, in my opinion, the GOAT of professional wrestling, with a career that sets him apart as a true legend. His prime years--1996-1998, 2001-2003, and 2004-2010--showcase his incredible versatility, consistently delivering unforgettable matches and redefining the standard of excellence. The greatest character of all time, The Undertaker maintained an aura of mystique and spectacle comparable to Andre the Giant's, captivating audiences every time he stepped into the ring. His match with Shawn Michaels at WrestleMania 25 is the greatest match ever, a masterpiece of storytelling and athleticism that still stands unmatched. Few can rival his ability to evolve while remaining larger-than-life, making his legacy untouchable in the world of wrestling."
Rating: 10.0
Sentiment: 0.4272727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mike Ehrmantrautwrote on 15.01.2025:[8.0] "Since I started watching wrestling until 2017 he's been my favourite wrestler. I loved both American Badass and the Deadman, every time he appeared I cheered and got thrilled. Then 2014 happened and I assisted his decay: he should've retired before the end of the Streak or, at least, stopped his career without getting in the squared circle again. Instead he continued his feud against Lesnar and Shane (both good) and destroyed his whole legacy with Reigns feud (the bottom of his career), Goldberg match, the rivalry with DX and the useless Bray Wyatt and AJ Styles bouts. He is undoubtedly a legend but he dragged his career too much."
Rating: 8.0
Sentiment: 0.19999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jesse7Kingwrote on 13.01.2025:[10.0] "Undertaker is the greatest creation of the WWF. Anyone who disagrees clearly wasn't around when it was Taker's yard. It's impossible to describe the aura he had until the day he retired. Adults know how to separate the art from the artist. Undertaker has a strong case for being the GOAT."
Rating: 10.0
Sentiment: 0.2166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: realgraps13wrote on 12.01.2025:"A childhood hero to many. Despite the infamous last 10-ish years of his career, he is still well known as one of the greatest of all time. My first rating on this website for a reason. 10/10"
Rating: No rating found
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TWBwrote on 08.01.2025:"The greatest thing to happen to wrestling, ever. I remember watching him when I was a little kid, and his most recent WrestleMania appearance; the goosebumps have always been the same. One of my favorites ever. Nobody will ever be able to match the aura this man has."
Rating: No rating found
Sentiment: 0.3020833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ZephsPancakeswrote on 12.12.2024:[4.0] "I'm personally of the belief that a gimmick can only get you so far and that you need to be good between the ropes to truly be an all time great. The Undertaker was not that. To me he is a gimmick which grew outdated, especially into the mid-late 00s and early 10s with not much substance between the ropes whatsoever, having a handful of good matches against some of the best ever does not make you a good wrestler yourself and when it takes over a decade for you to have your first truly great singles match that really says a lot about your ability. The gimmick of The Undertaker will live forever in both the WWE and wrestling as a whole but for me, he is probably the most overrated wrestler of all time, especially from bell to bell."
Rating: 4.0
Sentiment: 0.2992822966507177
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Macca666wrote on 30.11.2024:[8.0] "Not the best wrestler of all time, but he was one of the best big men and was involved in some of the greatest moments in WWE. Wasn't a huge fan of his supernatural character, much preferred the American badass gimmick."
Rating: 8.0
Sentiment: 0.4708333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ItsAllAWorkAnywaywrote on 27.11.2024:[9.0] "The Phenom, The Deadman, The American Bad A$$, and one of Vince McMahon's most trusted lieutenants, The Undertaker had an amazing career being the main event-level attraction wrestler whose WrestleMania streak was one of the most storied winning streaks in wrestling history. He found ways to stay relevant through multiple eras in wrestling (debuting for WWE at the tail-end of the "Rock N' Wrestling" era and lasting through the Reality Era.) His presence notwithstanding, its possible his rope-walk arm-chop (aka "The Old School") might be more memorable than the tombstone piledriver itself."
Rating: 9.0
Sentiment: 0.21904761904761907
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AceHagannwrote on 26.11.2024:[10.0] "One of the best workers of all time. A great character with decades of history to support his fame. A brilliant wrestler in the ring and off it. Probably a star in any metric a wrestler can be measured in."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Texaslavwrote on 14.11.2024:[9.0] "The Undertaker is, simply put, the peak of the WWF/E style of wrestling. A large, intimidating athlete with great self-control, professionalism, and capable of going at basically any speed - defaulting to a safe "slow-to-medium". Great promo when not forced into a poor character situation. His tenure, as well, is legendary, and his ability to evolve his character is the best in the business - far exceeding that of Chris Jericho, the man most often credited with such a talent. Know what else I'll gladly endorse about 'Taker? His locker room role. People these days may whine about the Wrestling Court shenanigans, but this manner of enforced cohesion is the best way to make wrestling work. Keep everybody firmly on the same page - even if it requires those who can't hack it to leave the fold. The reason this is a 9 and not a 10 is twofold: 1. The Undertaker doesn't work as a pure babyface and yet has been thrust into that role several times. Remember how in '96-'97 he called his fans "Creatures of the Night" as a ripoff of the Hulkamaniacs and Warriors, and had a feud with Faarooq where he - in his villainous, gravelly voice - scolded the other man for "pulling the race card"? It was laughable. 2. While the Undertaker was a great hand and worker, he didn't mesh well with 'protected' wrestlers. Ever wonder why there was never a truly great Taker-Austin match? It's because neither character benefitted from adding too much normalcy or vulnerability to their character. Taker needed heels you loved to see lose to work with, like Haitch, HBK or Randy - but any match he had with a protected star not amenable to being ragdolled ended up pretty flat and dry."
Rating: 9.0
Sentiment: 0.2866174055829228
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheNorthEastwrote on 12.11.2024:[5.0] "I think if we are honest with ourselves Undertakers popularity is more due to his longevity rather than any actual skill, promo, match or impact he had on the business. A below average worker who was tall and didnt have a good match from 1990 until 1996 when Bret Hart, Shawn Michaels and Mankind began carrying him. A truly great wrestler can lift others up, he was always the one needed to be lifted by others. A prime example of this is his failure to ever have a good match with Kane (another wrestler who needed to be carried) . The streak was a great story and something that I enjoyed the build to each year but the matches for the most part were always disappointing. I hope in time many others reflect on his career and recognise that Taker was just fine, okay and bit meh."
Rating: 5.0
Sentiment: 0.3328125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fejerskovwrote on 09.11.2024:[8.0] "Great gimmick, and a great worker. He is not the best wrestler, but it works with him. Too bad he is a MAGA A**hat, and supports a convicted felon that lies and swindles everywhere he goes."
Rating: 8.0
Sentiment: 0.4750000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ConDrogowrote on 08.11.2024:[7.0] "An extremely overrated wrestler in regards to his in-ring ability and athleticism, with a limited moveset, a character that did not require a significant amount of charisma, and for some of his locker room antics. However, despite the person he may be, he is an icon and deserves a level of respect for how influential he has been to wrestling as a whole."
Rating: 7.0
Sentiment: 0.09464285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ZDR1994wrote on 04.11.2024:"A legend and the best character in the history of the business! Even better to find out that Taker is full MAGA! FIGHT FIGHT FIGHT!"
Rating: No rating found
Sentiment: 0.6822916666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: darkflame4527wrote on 03.11.2024:[10.0] "(POLITICAL BELIEFS SHOULD NOT DEFINE A WRESTLER, BUT WILL TALK ABOUT IT HERE! ) The Undertaker has a resume of matches that can be considered (from a range) the greatest WWE match - greatest WRESTLING match in history. His matches with HBK, Angle at No Way Out, Mankind, Edge, Triple H, just so many more. Especially his Boneyward match with AJ Styles, a great love letter to retire on. His contribution and loyalty to the business cannot be understated. He stuck through the worst period in WWE history when Vince McMahon didn't know how to book a wrestling show in the late 2010's because Vince allowed Taker to show out. His character work has been really top-notch, with some of the most absurd character ranges in wrestling history (Dark Minister cult esque gimmick to the American Badass to what he's most famous for, the Deadman.) The latter part of his career was objectively far worse and not memorable, but the slew of bad matches cannot really affect a wrestler who many consider on the Mt. Rushmore of wrestling. (NOW GOING INTO POLITICAL MUMBO JUMBO) Now, moving aside from wrestling. The Undertaker has a set of political beliefs of a party that seeks to protect the foundation of democracy, AKA fighting against the people that support the quite literal antonym of how democracy affects the American people. His support for a brash political approach that honestly gets the job done whilst helping POC (people of color) like me AND in my community instead of a party that fronts emotion as the leading determinant on how to run a country for the benefit of the people, I have no problem with what he believes in. Many commenters as of late are quick to assume that the Republican Party are Nazis and Facists that have no respect for America, without really describing faults of the Party and praising any other affiliation (mainly Democratic) as greater good. The top folks who help run the Democratic campaign have been proven to be voter frauds (1.2 million unknown voters have been repealed in Arizona), hateful against the black community (Obama shaming black men for not voting for Harris), anti-animal (killing a man's pets for no reason), and pro-illegal immigration, refusing to acknowledge the lives that illegal migrants have taken (please support the AVIAC as toddlers are being raped), allow alive babies to be killed in the womb, promote affirmative action that has effectively screwed over my race, and a destroyer of the economy via useless sanctions that absolutely annihilate the chance for the American Dream to be possible as uncountable inflation has been present with the economy being extremely fragile as of late.. Every commenter rating based on political affiliation clearly is uneducated to the point where they spew hateful, anti-semetic, and for some reason misogynistic diction towards individuals when they have no argument. People like them are the reason humanity is absolutely cooked."
Rating: 10.0
Sentiment: 0.12313218390804594
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AlienHominidwrote on 03.11.2024:[6.0] "In-Ring Ability: 3/5, Gimmick: 1/1, Fan Connection: 1/1, Promo Skills: 0/1, Career Retrospective: 1/1, As a person: 0/1. The Undertaker is probably the most well-known wrestling character of all-time, so as such there will be many controverting opinions about him and his name will always be brought up in talks about the greatest wrestlers ever. I was a very big fan of the Undertaker for a long time, and only recently I would say my opinion on him has shifted significantly. To start, the Undertaker was never a particularly impressive worker. He certainly knew how to wrestle, and some of his signature moves were impressive spots that he consistently pulled off well, but he was also lacking in variety in the ring. Most of his non-squash matches were formulaic, many of them boiling down to him doing his usual spots in between longer "break" segments, where viewers would be treated to his at times bizarre style considering his size and character. That being said, the character has always been great. The Undertaker was introduced in an era where gimmick characters came and went due to their ridiculous nature, but this undead giant concept was truly quite cool for the time, and when you realize how long he's been around, it's impressive that his evolution never killed the character. Even alternate forms, such as the Ministry of Darkness Heel Undertaker, or the controversial American Badass Undertaker, have contributed their own charms to the legacy of the character that have made him the presence he is in his final form as we know it. In that respect, the Undertaker has never really lost the influence he has had with fans over the years. People still get chills when they hear the toll of the bell, they still cheer when the Phenom makes his presence known, and even though he can only really make guest appearances now, they leave satisfied when he shows out. That being said, I feel that letting his character run its course for almost the entirety of his career meant we never got to see him do certain things. In particular, I cannot really recall the Undertaker ever cutting a good promo, or at least one with any comparable variety. Most of his promo segments came in the form of supernatural moments, and although they often added to his presence, they all also had the same premise: the Undertaker would come back to make his opponent "rest in peace". Never really a reason for us to root for him, which is a problem when he was almost always a face, and only considerably annoying when he was a heel. He basically got by on 'cool factor'. When I look back at the career of the Undertaker, it is without a doubt one of the most memorable in the history of WWE, I think whether you like or dislike him that fact is undeniable, and considering the good factors of his career, I think they generally outweighed the bad. He is not as perfect as he's given credit for but to disregard him for not liking all of his work or not liking his character would simply not be fair. Many people will argue that my last point is unnecessary but I argue that the lasting memory the actual person leaves in the mind of fans is just as important as what they do during their time in-ring. Unfortunately, the world recently found out that despite his supposed respectability, Mark Calaway apparently has no respect for democratic values and individual liberty, and takes no shame in his open support for a neo-fascist presidential candidate. Disappointing to say the least."
Rating: 6.0
Sentiment: 0.12670855379188714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wanglerwrote on 27.10.2024:[10.0] "Can't buy heritage, prestige or tradition. All must be earnt over time, as the Undertaker has. Simply put, the greatest gimmick in history, most iconic intro entrance ever and one of the best to ever do it."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Cyclopz007wrote on 25.10.2024:[6.0] "He sucks. He's slow. He's unconvincing. He has the lamest moveset in history. His gimmick is laughable. Who ever took this guy seriously, he's a joke character. The American badass was awesome though, I'll give him that. He's also a trash human being for that business with Kanyon. How he ever got famous is beyond me. I could never see the appeal. Politics and probably having dirt on Vincent Kkk McMahon is the only reason he had a career."
Rating: 6.0
Sentiment: 0.007407407407407406
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BizarroMaskwrote on 24.10.2024:[7.0] "The undertaker is a great showman , but if we talk about wrestling , he is pretty decent , in the high average of 90 / 2000 , but become more and more slow through his career. In regards of the shpw he is one of the greatest , but on regular show he was not the GOAT that everyone love. A bit overrated but let's being honest he is still very good"
Rating: 7.0
Sentiment: 0.37974358974358974
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: OnyxGuardwrote on 24.10.2024:[10.0] "One of the most interesting and original characters in the history of wrestling. A professional in his field."
Rating: 10.0
Sentiment: 0.36875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BMWrestling17wrote on 24.10.2024:[10.0] "One of the greatest wrestlers ever, he's the reason I started watching WWE, his deadman persona is stuff of legends. His legacy will never be tainted. Also, the recent reviews and downvotes are extremely suspicious, looks like a case of rating abuse since the guy got involved with certain political candidate. Extremely pathetic if that's the case."
Rating: 10.0
Sentiment: 0.014880952380952365
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Luna100wrote on 22.10.2024:[3.0] "A good gimmick, and has had few good matches, but by no means one of the greatest of all time, he has done well, he has had classics e. g. Diesel (1996 WM) vs Shawn Michaels (BB 1997) and Kane (1998 WM), although I have not watched that last match in years, the best thing about him was the streak (pre-2014) and that is down to booking, his best matches were during the mid to late 1990's he has probably had good matches since then, however since I was only born 2005, thus missing many of his matches, and only watching his WM streak, his Mankind feud (plus a few others), despite that, most of his best matches are said to be those, many of them are good, but his quality died post Batista, after that he his great matches are just terrible tropes of NXT."
Rating: 3.0
Sentiment: 0.3202020202020202
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: huhthisisweirdwrote on 21.10.2024:"(0.0) A hack who has been carried by everyone he's ever faced in the ring and dickriding Vince while being nothing but an instigator for backstage bullshit. If you examine his final years in the ring from 2015-2019, there is literally not a single good match or moment."
Rating: No rating found
Sentiment: 0.24523809523809523
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DixieNormas1980wrote on 20.10.2024:"The way that the undertaker has evolved over the years is an amazing study of how to stay important for 30 years"
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: kaeleighwrote on 19.10.2024:[0.0] "Taker ist kein Guter Wrestler. Er lebte von seinem Gimmick. Die Ersten Jahre hate er schlechte Matches gegen unbewegliche Heavyweights. Dann viel zu übertriebene Gimmick ferzerei in der Ministery, extrem langweilige Brawls als Bad Ass und dann vllt 2 gute Jahre zwischen 06 und 08. Bevor er dann langsam seinen Körper mehr und mehr zu bruch gegangen ist. Hat sich nur von guten Wrestlern ziehen lassen, seine so verhelichten Matches, gegen z.B. Angle oder HBK sind wirklich nichts besonderes, bei dem Kaliber des Gegners. Aber gute Matches mit mittelmäßigen Gegnern hat Taker kaum, weil er halt einfach kein guter Wrestler war. Über die letzten Jahre seiner Karriere die bei fast allen 9 und 10er Wertungen kaum erwähnt. Natürlich wollen Taker Fans da denn Mantel des Schweigens rüber tun aber es waren immer noch 5 Jahre schrecklicher, gar schon peinlicher Matches. Und er ist ne MAGA C**t, die Transphobe scheiße die er manchmal in seinem Podcast von sich gibt macht die 0 fest"
Rating: 0.0
Sentiment: -0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Whoahyeetyeah34wrote on 19.10.2024:"Arguably the GOAT of pro wrestling. This man has inspired many people to become professional wrestlers. He truly lived up to his character and for many years tried to stay in character even after the end of kayfabe. My favorite match from him is the match with Shawn Michaels at Wrestlemania 25. Theres no other wrestler that will even reach the level that the Undertaker had during his time in WWE. Thank you deadman for making my childhood awesome."
Rating: No rating found
Sentiment: 0.44375000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JackBurtonsTruckwrote on 15.10.2024:[9.0] "Enduring, innovative, memorable. There are so many words you can use to describe him. I cant really see any other rating for him coming from me other than a 9 or 10. He had some ups and downs, but the overall quality of him is a 9 for me."
Rating: 9.0
Sentiment: 0.20714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BigChinchompawrote on 13.10.2024:[7.0] "I genuinely kinda feel bad putting him at a 7. But It's so hard to rate him higher for me personally. He's a legend of this business, a career main eventer in WWF/E who managed to exist in some capacity in basically every era of the company after the WWF went national. He was a genuine draw at multiple points, is involved in many iconic matches and moments, had a great character which he completely embodied and got over with the fans. However really being objective, I feel his promos weren't actually that good, and his in-ring work basically is defined by a few good years in the mid-90s with Bret/Shawn/Mankind, and another few good years in the mid-late 2000s, and around 9 or so good Wrestlemania matches in a row, half of those being during the aforementioned mid-late 2000s run. Undertaker had a lot of bad angles and feuds and matches and a whole slew of just extremely average feuds and matches and angles. He also just stayed in the business too long, the Roman Reigns match and especially the Goldberg match hurt his legacy a bit. He's a genuine legend, but there's just so much average and below in his career, and truthfully even a lot of his best matches, he was in the ring with all time greats who if you basically just went through the motions, didn't botch, and didn't blow a spot, would give you a 3 star or 6/10 match minimum, and to be fair to Taker, he wasn't doing the bare minimum and was an average to above average wrestler before the injuries and wear really broke him down. So you put him in the ring with a Bret/Shawn/Angle/Mankind and you would get a 4 star match or better out of it. I think had he hung it up in 2016 or 2015 I'd have him at an 8 maybe even 8.5. But he just ended his career on a string of stinkers and then finally a good cinematic match with AJ Styles which was really good, but that's what it took to finally get him a good match to retire on, was a pre-recorded cinematic match with one of the greatest in-ring wrestlers active at the time. Plus the duality of man that he had an incredible run of 30 years in WWF/E with no jumps to other promotions or hiatuses long enough for him to miss an era or anything. But also that means we never got to see him working outside the "WWE style" either. If I could do half points I'd give him a 7.5, but with just how many "meh" years of his career there are, and those honestly depressing Goldberg and Roman matches, I can't in good faith round that up to an 8. I'm definitely being too hard on him, but finally being a few years distanced from his retirement and really looking back on his career, The Undertaker the wrestler over his career was in the 7-8/10 range, The Undertaker the character/superstar/sports entertainer was a 10/10."
Rating: 7.0
Sentiment: 0.1599392361111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AVERAGEWRESTLINGFANwrote on 11.10.2024:[10.0] "No matter how much wrestling fans disagree on anything and everything one thing that 99.9% of fans will agree with is that the undertaker is one of the goats"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Pigeon Scratchwrote on 09.10.2024:[10.0] "You can talk about the quality of his matches during certain points of his entire career, the American Bad Ass era, post WrestleMania streak, the many times of attempted retirement, some of the more absurd storylines and booking decisions, etc, but I don't think any of this really damages the importance, the significance, and the endurance of Undertaker. The cornerstone of several WrestleManias, someone who had multiple match of the year contenders from the mid 2000s to early 2010s, a gimmick that cannot be duplicated, one of the most protected and best looking finishers in WWE, you can go on and on. No matter which way you look at it, the Undertaker is one of the best characters to come from WWE."
Rating: 10.0
Sentiment: 0.18761904761904763
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TripleCrownwrote on 04.10.2024:[10.0] "Undertaker is without a doubt one of the very best wrestlers WWE has ever had. It would be impossible to name a top 5 greatest WWE wrestlers ever and not include this man, which just goes to show how pivotal he has been for the WWE since he first debuted for them in 1990. Was never the "top guy" but he didn't need to be, his position in WWE was arguably just as important as the "top guy." For a while, Undertaker and his streak were the reason to watch WrestleMania. No matter what other storylines WWE tried to create for WrestleMania, nothing could come remotely close to the annual Undertaker streak match. Reinvented himself with the whole American Badass gimmick, which was a breath of fresh air and really made sense given the whole shift to Attitude WWE did in the mid-late 90s. Has had his fair share of great matches and awful matches. He really needed to be in the ring with another wrestler who could go or match him in-ring wise, if his opponent wasn't at his level, the match would suffer. His last few years in WWE were very disappointing and honestly, pretty sad. He so desperately wanted to keep going, but his body just couldn't keep up anymore. Willing to put that aside, because his heart was still there, but his body wasn't. One could argue he should've stepped away, but we're not talking about the average wrestler here... we're talking about The Undertaker. Legendary wrestler, didn't exactly end his career on a high note but he has 20+ years of classic matches to go back and watch. He is one of the very few who can transcend the world of wrestling and into pop culture. Everybody knows him, he is truly an all time great."
Rating: 10.0
Sentiment: 0.1790277777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Daimyo Shiwrote on 03.10.2024:"The Undertaker is a mazing long serving wrestler under the WWE banner, and some one been following off and on since his beginning. Overall, the Deadman [My Preferred Nickname for him.] is a generational talent that reinvented himself several times in his career, and each for bring a different flavour. While at the end of his run more than 30 years later, he, like many wrestlers, far past their prime would be a shadow of what he once was the impact he had on the landscape was monumental. While not the first supernatural gimmicked wrestler, he was one of the few able to make it stick for a long run for a single character identity. The long consistency of the Undertaker was also one of his hallmarks, his ability to produce a consistent product over many years was a great benefit to the WWE, Even when increasingly that was a Wrestlemania match and one or two other PPV. That is very much clearly why Undertaker is one of the best wrestlers in the world."
Rating: No rating found
Sentiment: 0.16827122153209112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Zak22wrote on 25.09.2024:[6.0] "I respect the Undertaker's character work and longevity, but I think he was not a good in-ring worker. His famed striking looked pretty poor to me, his matches work a slow pace and rarely interest me. I find his selling substandard and his signature move set quite unimpressive. His work has never appealed to me and I doubt it ever will, even when he wrestled the GOATs I personally believe he limited them. His feuds with Kane were totally awful in my personal opinion, two big men doing mediocre strikes and power moves, his work with Michaels and Mick Foley was his best stuff and pretty good but still, I don't find the undertaker to be a top tier in-ring worker. Maybe it's because I didn't grow up on WWE but I just don't get the idea that he is the best ever."
Rating: 6.0
Sentiment: 0.11050420168067226
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rassle Fanwrote on 25.09.2024:[6.0] "The Undertaker kept getting better in the ring as time went on. He worked hard to consistently have his best matches at an age most wrestlers start declining. Then he had the legendary Wrestlemania winning streak. Sadly the last 6 years of his career ranged from ok to downright terrible. A lot of his matches early in his career and early in WWE were also really bad. Luckily his last match with AJ is really good so he went out on a high note. After retirement he decided it was a good idea to denigrate the current generation of wrestlers because they don't stab themselves with syringes full of roids or do blow off of strippers. To him, playing video games in the locker room instead of doing shots of whiskey is as bad as it gets. That prevents him from being anything higher to me. His behavior in 2001 gets conveniently glossed over. It was inexcusable. His role as a "locker room leader" sounds more like he was one of the bigger guys and had been around a little longer. So many stories about his bullying have been swept under the rug."
Rating: 6.0
Sentiment: 0.16904320987654323
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: reymysterioenjoyerwrote on 24.09.2024:[10.0] "Amazing worker, even better character. What can't you say about the Undertaker. His promos were great character work and he still would find a way to get some zingers in there. Could work with any type of wrestler and make them look like a million bucks just because of how credible he was. The phenom had such scary energy that genuinely terrified me as a kid, once that gong hits you feel a chill down your spine."
Rating: 10.0
Sentiment: 0.2555555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sKiaWeVwrote on 14.09.2024:[9.0] "No one personifies the peaks and pitfalls of WWE quite like The Undertaker. He's a Wrestlemania Moment generator, Iconic character and bonafide legend who has easily cemented himself as one of the greatest ever to enter a ring. Unfortunately, he's also defined by both some of the best and worst matches WWE has had. Maybe if he didn't retire 5 years too late then half of those worst matches wouldn't have happened."
Rating: 9.0
Sentiment: -0.0037037037037036783
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jsbortswrote on 09.09.2024:[8.0] "Undertaker is a really weird case because he legit only had 5 good matches in the first decade plus of his career until his resurgence as becoming a Wrestlemania spectacle in and of himself when they finally adjusted and made "The Streak" meaningful. Its kind of like if Hulk Hogan would up suddenly having bangers when he went to WCW instead of whatever his matches were. He's basically only had one promo his entire career, and the American Badass gimmick is looked back on fondly, but just didn't produce much of anything I genuinely enjoyed. Undertaker was slow and plodding and had a somewhat limited moveset, but it worked for the character and as someone with legitimately impressive size, he's one of the best giants there's been. But its an undeniable connection with a character that creates a really iconic lasting memory. Undertaker also has the tremendous benefit of right place at right time as he was able to come in and be a company man right towards the end of Hulkamania and lasted all the way through to the Attitude Era and into the Monopoly Era, and thus has been able to really build a legacy as the most consistently present character over the Company's history as it cemented itself as the biggest wrestling company in the world."
Rating: 8.0
Sentiment: 0.23932411674347157
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: fabriciondwrote on 07.09.2024:"He's the greatest of all time, good at everything you could possibly think: in ring, mic, character, storyline, storytelling... gimmick. There will never be anyone like him, simply the best of all times."
Rating: No rating found
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CMF1995wrote on 07.09.2024:[10.0] "He is the ultimate legend. Couldn't possibly rate him any lower. Every gimmick he portrayed was just fantastic!"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 12psiwrote on 27.08.2024:[9.0] "Undertaker has the greatest gimmick performance of all time, bolstered by some peak protection of his persona and signature/finishing moves that was executed without a flaw over his multi-decade career. Sure he has countless duds, but he has more than enough revolutionary, unique, and mind-blowing contributions (be it in matches, moments, or promos) to make up for it 10 fold. An all-time great."
Rating: 9.0
Sentiment: 0.45357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Chosen Onewrote on 26.08.2024:[8.0] "Eine Legende, aber die Biker-/Big Evil-Jahre waren zäh und promotechnisch war er nicht gut genug, um von mir eine 10 zu bekommen. Die meiste Zeit war er auch in langweiligen Feuds involviert... Die guten Feuds waren dafür oft aber auch sehr gut. An Undertaker vs. Luther Reigns muss man sich nicht erinnern, aber die WrestleMania-Matches mit Shawn Michaels, Triple H, Randy Orton und weiteren sind legendär."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: reticrealmwrote on 25.08.2024:[10.0] "Taker is undeniably in my opinion the greatest sports entertainer of all time with his match with Shawn Michaels at Wrestlemania 25 my personal favorite match in his career."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: thesilvermanwrote on 08.08.2024:[10.0] "The Undertaker is second to none when it comes to character work and commitment. To take a gimmick such as this and to never break character throughout a 30 year career is astounding. It is so rare for a wrestler to be that good at working a character and just as good with his in-ring work. Probably my favorite wrestler of all time, with Shawn being a close second."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mina Avalonwrote on 04.08.2024:"Arguably the GOAT when it comes to a gimmick. In a time when gimmicks were all the rage and outlandish concepts were the norm, Undertaker took what he was given and turned it into one of the greatest characters of all time. His career is a testament to what someone can do with a great look, and even better presence in the ring. His style was always slow, methodical, but he could lift the pace of a match at a moment's notice and allow himself to show off athletic traits that other big men of his time were incapable of mimicking. His legendary streak at Wrestlemania placed a must see match on the card every single year. His time with Paul Bearer allowed him to really sell himself as this large, otherworldly creature that didn't need to speak to strike fear into his opponents. All in all, one of the greatest of all time, and his legendary battle with Mick Foley at Hell in a Cell will have him living on forever in the history books."
Rating: No rating found
Sentiment: 0.43482142857142864
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KobashiChopMewrote on 03.08.2024:[8.0] "Growing up, I loved the Undertaker. I thought he just had this aura around him. The presentation he had. I just thought it was all amazing. Then I grew up and rewatched a lot of the wrestling I did back then, and... look. I think he did a great job up until the CM Punk match at Mania, everything after that was... tough. I stopped watching WWE itself from about 2014(? )-2017, then picked up again with black and gold. Watching Taker in the later years was almost scary at times, and not in the good way. For that, I don't think I could rate it any higher than what I have."
Rating: 8.0
Sentiment: 0.19944444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: humanesquewrote on 01.08.2024:[5.0] "Nobody has ever benefitted from WWE's excellent promo video packages and history rewriting documentaries than this guy. Boring, slow, and plodding in the ring, propped up to some excellent matches by some excellent opponents. Yeah, he had great Shawn Michaels matches, who didn't? Bad on promos. This is astonishing when you go back. The duds are countless. There's a reason he had Paul Bearer with him for so long. Should've kept him there. The character and gimmick are great, and he is a big dude, which helps, and we can say he did a good job portraying that character, playing it straight. Aside from all that, you have to wonder how much damage he did to the culture of pro wrestling by enabling bullies and being a cop. We'll never know."
Rating: 5.0
Sentiment: 0.22647058823529415
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mxkamiwrote on 31.07.2024:[5.0] "As someone who grew up with the Attitude Era, I have seen a lot of Taker over 28 years. He's less than mid, propped up on a pedestal by the company he was a yes-man for. He has *never* been a worker. In-ring storytelling also was not his strong suit until HBK started putting on bangers with him. Biker Taker is, and always was, dumb. For someone who talks big and bad about locker room grind and determination, why did he have to create a character where he wore regular clothes and didn't have to actually try character work or continue to workout and keep his bulky physique? By his own admission, he didn't feel like it. The only Taker run I have ever enjoyed was Ministry Taker. And even then, that's also pretty terrible. And his promos went from non-sensical in the Attitude Era, to fake tough all throughout the rest of his career. It was cool to see him at Mania 40, sure. But I simply was never a Taker person."
Rating: 5.0
Sentiment: -0.02762345679012345
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MatnificentMattwrote on 26.07.2024:[10.0] "I have nothing but respect for The Undertaker. The man could go in the ring and do things that another man his size would not be able to do. He made the undertaker gimmick the greatest gimmick on wrestling history and was able to evolve his in ring styles over the years to deliver amazing and exciting matches over the years. Undertaker is a true legend and a case can definitely be made for him being the greatest of all time."
Rating: 10.0
Sentiment: 0.53125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TrueJugoBetrugoNo1wrote on 26.07.2024:[10.0] "Ein Phänomen, eine Größe, eine Legende in Person. Der Undertaker ist einer der, wenn nicht der ikonischste Wrestler aller Zeiten. Keiner hat seinen Charakter über eine so lange Zeit nicht nur über all die Jahre konstant weiterentwickeln, sondern diesen auch über all die Jahre "beschützen". Die Seite die der Mann hinter dem "Undertaker" seit seinem Ruhestand präsentiert, bricht zwar seine alte Tradition des Kayfabe-Aufrechterhaltens, ist jedoch für alle Wrestling Begeisterten ein Highlight und jedes Mal aufs neue äußerst interessant zu hören. Auch In-Ring technisch hat sich der 'Taker über die Jahre konstant gesteigert und insbesondere für seine Größe immer wieder äußerst agile Moves präsentiert. Schlussendlich muss natürlich auch die legendäre Wrestlemania-Streak genannt werden, welche über Jahrzehnte hinweg als der "Heilige Gral" des Wrestlings galt. Zwar bin ich kein Freund vom Umgang mit dieser und somit dem Erbe des Untertakers, dies befleckt seine legendäre Karriere jedoch nur marginal. Insgesamt lässt sich also sagen, dass der Totenmann einer der ehrwürdigsten und wahrscheinlich respektiertesten Wrestler aller Zeiten darstellt. Ich persönlich und wahrscheinlich viele weitere andere können sagen, dass Undertaker unser Kindheitsheld war und die vielen unvergesslichen Momente, in welchen er seine spektakulären sowie unheimlichen Aktionen vollführte, niemals vergessen werden. Alles unterhalb der 10 Punkte Marke ist Blasphemie im Hinsicht auf eine solche Legende."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: woolyshamblerwrote on 21.07.2024:[1.0] "undertaker's gimmick, while held in the highest possible reverence by WWE, is silly and inconsistent and mark calaway clearly never enjoyed performing it. none of his promos are engaging or even watchable, his opponents all look worse by having to sell his stupid supernatural bullshit with fear and respect as if it's all not obviously fake, and once the bell rings he is a genuinely woeful in-ring wrestler who managed to have some decent matches by being surrounded with (and made to look great by) guys like lesnar, punk and batista. the fact that he's so highly rated only shows the effectiveness of WWE propaganda telling us that he's the greatest ever. i advise everyone to try to look past the entrance and the presentation and critically watch his work as a professional wrestler, and you'll find that his veneer doesn't hold up under scrutiny"
Rating: 1.0
Sentiment: 0.06351851851851854
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: shanedouglasthemewrote on 09.07.2024:[6.0] "This is a hard one for me. His gimmick is one of the biggest negative influences for modern day wrestling .If I push that to the side here's how I view Undertaker as a worker. The first decade of his career was terrible. He was a bottom five worker in the WWF from 90-95. From 96-98 things started clicking for Taker and he became a good worker. Then he did the ministry, one of the worst angles in wrestling history, and started wrestling like it was 1993 again. I loved American Badass/Big Evil. He went back to being a good worker during this time. Then from 04-07 he is a legit great worker. But then he has those damn Shawn Michaels matches. After that he was back to stinking but in a new ambitious way. Overall, I'll say he was a good wrestler which gets him a 6."
Rating: 6.0
Sentiment: 0.04692760942760942
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: dulonicdaddywrote on 26.06.2024:[0.0] "One of the most try-hard Hot Topic gimmicks of all time, which included some of the worst character motivations imaginable. In-ring there's 30+ years of SLOG material here. The Michaels matches are alright, intensely overrated spot fests, weak psychology, tepid execution. How overdramatized his later career became is so hilarious considering the factors mentioned prior, but in an embarrassing sense. He's a zombie r***** murderer in CANNON, and grown neckbeards are crying about him getting jumped by the Shield or whatever. Even as a vibes wrestler early Kane was lightyears beyond in presentation and was often involved with more stylistically complimentary midcard guys than Taker was involved with in the main event. Live his cliche move set is intensely hokey as well there Cagematch 750!"
Rating: 0.0
Sentiment: 0.08853535353535352
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jjrulswrote on 21.06.2024:[10.0] "Arguablly the greatest of all time, Undertaker was a top wrestler for almost 3 decades. Greatest gimmick of all time, it will never be recreated and probably couldn't get over the way wrestling is now. In ring he was amazing too, which is really suprising for a guy his side. Obviously, the best rivalry of his was the Michaels matches at WM 25 and 26. The period between WM 25 and WM 26 is an awesome build too. This guy did it all, and did it for the longest, he's the GOAT."
Rating: 10.0
Sentiment: 0.6625000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Masterblaster424wrote on 18.06.2024:[10.0] "This man will ALWAYS be the SECRET boss of Wrestlemania. More Charisma and Character than Wrestling skill initially but he grew into the mold and changed his game up as he evolved with the times. He's earned his keep in HOF and now continues to REST....IN....PEACE!"
Rating: 10.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: bbdtmemewrote on 16.06.2024:"he's extremely overrated, a super-vince-guy but with great character, aura and charisma for sure. he earned his rightfully place in wrestling history: some of his matches are masterpieces like the ones with mankind, michaels and edge but his enormous popularity exploded among casual fans."
Rating: No rating found
Sentiment: 0.135
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BigPeanutGuywrote on 10.06.2024:[6.0] "Would my answer be different if I was older? Maybe. But I've seen all his greatest hits, tried my best to understand his big spooky guy character, and did my level-headed best to sit through his awful ending, but I just don't see it. He has a fair few bright spots, boneyard match mainly. I mean, it's stupid, far too long, and doesn't really make any sense, but that clicked for me. Funny enough that's a lot like how I feel about the Undertaker's career as a whole. Stupid, far too long, and doesn't really make any sense. And I'm not even taking into account his midlife crisis in the 2000s"
Rating: 6.0
Sentiment: 0.10928030303030312
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TurdFergusonThe2nd1wrote on 04.06.2024:[10.0] "Commitment to staying in character, loyal to one company until the end for multiple decades, a cool believable movelist, the presence of him appearing even if it's just slow walking. Nobody more deserving of a Universal Top 5 than this guy."
Rating: 10.0
Sentiment: 0.2759259259259259
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Lucas Lwrote on 02.06.2024:[10.0] "The Undertaker will always be my GOAT. He undoubtedly deserves a "10 score", not just for his dedication and contribution to this company, but also for his impact on the whole industry and the exploration of his gimmicks. He was brave enough to change his character with the development of the society. "Deadman", "American Badass", "Big Evil".You gotta say these are great influences on more than one generation of wrestling fans. What about wrestling skills? Come on, considering his height, he's doing a great job in the ring. At least I can't come up with another so-tall wrestler reaching his level. Even during the last time of this career, he still struggled to try his best to give us a nice show. I mean, everyone gets old one day. So let's judge him from his whole career instead of focusing on the weak portion of his time in the ring. What's more crucial, show some respect and "acknowledge" the real legend in WWE."
Rating: 10.0
Sentiment: 0.185625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: bjm47wrote on 30.05.2024:"The Undertaker is the reason I got into wrestling. The first time I watched it was Summerslam 1994 - Undertaker vs Undertaker. I know it wasnt the best match but as a kid seeing that for the first time is what made me want to see more. Ill never forget that."
Rating: No rating found
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WrestlingGuruwrote on 26.05.2024:[10.0] "A legendary figure from my childhood and while he's not straping my top 10 or even 20 anymore he has always been incredible to watch. Totally dedicated to his gimmick and certainly deserves the love he receives."
Rating: 10.0
Sentiment: 0.5190476190476191
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: shockwrote on 17.05.2024:"In my opinion, Undertaker was bogged down by the no-sell gimmick early in his WWE career. Once he was able to sell more and have more athletic matches, it was clear he was one of the best. He had great longevity as he had the best work of his career in the later 2000s in my opinion. His match against Shawn Michaels at WrestleMania 25 is probably my favourite wrestling match of all time. Undertaker had exceptional athleticism for his size, but quite honestly his moveset is the main thing which makes me rate him so highly. The Tombstone is one of the best finishers of all time since it genuinely would kill somebody if you were to do it to them for real, and he has some great secondary finishers in the Chokeslam and especially The Last Ride, which I think is the best powerbomb variant in all of wrestling. He has a plethora of recognizable signature moves as well which are sure to get the crowd excited, such as Snake Eyes, the Big Boot, and Old School. Undertaker is 10/10 wrestler for me, largely due to his outstanding matches in the latter half his career. For years, he had the most anticipated match at nearly every WrestleMania."
Rating: No rating found
Sentiment: 0.3106031746031747
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Diohwrote on 09.05.2024:"Undertaker, a living legend in WWE, is a figure that transcends the world of professional wrestling, for me there is no character more real than him, there has not been a character as long-lived without leaving his role as Undertaker was. Undertaker evolved from a random and mysterious character to a LEGENDARY guardian of the ring, providing epic moments that have become part of WWE history. But, extremely limited in the ring, perhaps because he is a giant and not a high flyer, but if you do some research, WHO OWNS THE CHOKESLAM? maybe Kane, now, WHO OWNS THE TOMBSTONE PILEDRIVER? The Deadman"
Rating: No rating found
Sentiment: 0.12485714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: drewculbwrote on 01.05.2024:"He was one of the greatest to evr due not only in the ring but a true locker room leader in an industry where thats rare"
Rating: No rating found
Sentiment: 0.30500000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: cerealkillerwrote on 01.05.2024:[10.0] "Absolute legend. 10/10. Saw somebody vote him a 3. That same person gave the Young Bucks 10s lol. Crazy and delusional."
Rating: 10.0
Sentiment: 0.10000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Vanstylerwrote on 30.04.2024:[8.0] "Boring in the ring but a brilliant gimmick. Those were simple times, people don't care about in-ring quality as long as the characters involved are acceptable. And Undertaker was not only a character but a legend, it was a career involving a man that brings magic to the shows"
Rating: 8.0
Sentiment: 0.05833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: devxntewrote on 23.04.2024:[5.0] "As a character, I'd give him a 9. He lived the gimmick and was able to survive some cringy and embarrassing angles due to the sheer dedication that he put into the gimmick. Saying that though, he's honestly a bit overrated. He was a lot better later in his career for sure. His matches with Batista, Punk, Edge, Michaels, and Triple H were amazing (all wrestlemania matches) but other than that... he never was a GREAT in ring worker. He had to be paired with the right person and didn't have the ability to have a great match with anyone. His matches could be slow and boring at times. For that I'll give him a 5. Undeniably a legend, known by many of wrestling fans and non wrestling fans alike; however, he has had a lot of duds in his career due to just not being the greatest in ring worker and I can't overlook that."
Rating: 5.0
Sentiment: 0.259453781512605
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Juanca1210wrote on 22.04.2024:[10.0] "The best gimmick of all time. The aura that he had when I was watching wrestlemania was incomparable. His moveset was incredible. Since his last ride to his iconic Tombstone Piledriver, His submission move and the old school are very unforgettable. He had incredible feuds with Shawn Michaels, Triple H, Kane, Edge, Randy Orton and CM Punk. Maybe his last years were not the best because of his physical condition but is undisputed that he has an ALL TIME career."
Rating: 10.0
Sentiment: 0.5272727272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: bzgameswrote on 12.04.2024:[6.0] "An extremely solid run from 2006-2013 saved the legacy of one of wrestling's biggest stars. However his "American Badass" run, his post streak run, and a lot of his work pre-2006 leaves much to be desired. Presentation wise he's one of the best; the Phenom is etched into history as one of professional wrestling most enduring images. The in ring product though was never there outside of the final years of the streak where Taker seemingly tapped into a previously unmined ocean of talent."
Rating: 6.0
Sentiment: 0.23333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Perc Anglewrote on 12.04.2024:[9.0] "If I were to only rate his best moments it would probably be an 11. He reached peaks in different eras than people have in their lives. But he also has had bad eras. Before the Attitude era he was silly in my opinion and we cant forget the Saudi Arabia shows. But those peaks were the best of maybe anyone. Think about the WrestleMania streak from HHH in 02 to Punk in 2013, all bangers. He will always be one of the greatest wrestlers of all time"
Rating: 9.0
Sentiment: 0.2571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: thedman0310wrote on 10.04.2024:[7.0] "Although The Undertaker has earned his legacy, he spent at least a decade putting out shitters. This was almost entirely down to the way he had to wrestle as Taker. The slow, zombie-like style in his matches prevented him from showing off his impressive power at his full potential, resulting in most of his matches being boring. Once he dropped the slow methodical offense, his style got much better, with his in-ring heights in the 2000s being phenomenal, pardon the pun. His promos were never that good, but he was so dedicated to his character that he made it work most of the time. Don't watch his in-ring work after the Hell in a Cell match with Lesnar, you'll just make yourself sad."
Rating: 7.0
Sentiment: 0.09296296296296296
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GarnerBallx7wrote on 07.04.2024:[3.0] "In terms of character work and general presentation Mean Mark has managed to maintain an aura that upholds him as a legend of the business, but the actual meat and potatoes of his work are vastly different from the reputation he has garnered. Whilst I absolutely the appreciate the mystique and character of the gimmick, a lot of the presentation of Taker was very weak. Firstly, his promos have never been good, and often only serve to strip away a lot of the mystique that his presentation had worked hard to maintain. Secondly, whilst the persona itself is entertaining in isolation, it's played a significant part in some of the worst wrestling TV ever produced. Kidnappings, crucifixions, the entire Bike Taker run, possessing Justin Roberts, the Big Show disciple run, burying Paul Bearer in cement and the horrendously homophobic angle with Kanyon. Some of this could mabye be forgiven if the in ring work at the end of these angles served as a pallet cleanser, however Taker has played a part in some embarrassinglly bad matches. Taker has a tendency to "brawl" in the most uninteresting way possible, throwing awful punches to fill time and plod around the ring without much purpose or even intensity. This is made all the more infuriating by the fact that he has some amazaing matches in his repetoire with the likes of Angle, Bret & Punk, however the level of effort in those matches are not present in a large majority of his work. This would be true even without the disatrous end of career run he had, embarassing himself in Saudi Arabia in some of the worst matches of the 2010's has only served to further strip away the mystique had managed to cling onto."
Rating: 3.0
Sentiment: -0.05841269841269843
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Bean1985wrote on 07.04.2024:[9.0] "One of the best in ring performers and the best gimmick ever. His gimmick was at the same time his limit, as it limited his interaction with the public. That goes along with his mic work. This is the only reason why this is not a 10."
Rating: 9.0
Sentiment: 0.32142857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TCMDNwrote on 06.04.2024:[10.0] "Undertaker is one of the best of all time... What a career ! No one can sit at his table, he was so great ! Thank you Taker of everything."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Clint Achilleswrote on 03.04.2024:[7.0] "He had some great matches with the right opponents, but also had a lot of terrible matches, and was involved in some of the worst angles and storylines. He was the right guy for the gimmick, and was able to change with the times, and I think it's fair to say that no one else could have been a better Undertaker."
Rating: 7.0
Sentiment: 0.13392857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: George Nasserwrote on 30.03.2024:"The undertaker is the greatest wrestler of all time and his gimmick is the greatest character of all time in professional wrestling and many of his matches is all time classic against shawn michaels, triple h, mankind, cm punk, brock lesnar and his feud with kane is the one of the greatest storylines in wwe history and we must respect him for his wwe run in 30 years, my legend"
Rating: No rating found
Sentiment: 0.6277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sleepinggiantwrote on 26.03.2024:"The Deadman truly is the best to ever do it. No one comes close to his Longevity and staying power on the top of the card. Every time hes featured on television, its must watch tv!"
Rating: No rating found
Sentiment: 0.8125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SLM248wrote on 23.03.2024:[6.0] "Undertaker is possibly the most overrated wrestler of all time. He has put on some great main event matches (HBK vs Taker at mania 25 is one of my favorite matches ever.) but idk if I've ever seen taker put on a good match on tv. He is also pretty mediocre on the mic, I can't really recall a memorable promo from him. All in all I say taker is slightly above average for me."
Rating: 6.0
Sentiment: 0.24722222222222226
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Broland123wrote on 21.03.2024:"He is one of the greatest. If not the greatest. His character is only working because of him. If somebody ele got this gimmick probably failed, because of the cartoonish side of the gimmick. But he did the greatest job with it, and became immortal im not just the world of proffesion wrestling but in the pop culture too. And of course he had a 30+ year career. He is the true legend and the soul of the wrestling indrustry"
Rating: No rating found
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Neon Aussiewrote on 07.03.2024:[7.0] "The bulk of his matches were not very good. The ones that were good were good almost entirely due to the work of the other performers in the ring with him. He was a company man with a long and successful career... or maybe he just knew Vince's secrets. He did have some memorable moments, and thats why he's rated as high as he is."
Rating: 7.0
Sentiment: 0.24897435897435896
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TayKZYwrote on 06.03.2024:[7.0] "Taker had such a long career he has many stretches of great matches, along with many stretches of duds and forgettable moments. With the career finished now only the great moments will live on. Wrestlemania will be his legacy, but really only like 5 of the 27 matches at Mania were any good. I liked Biker Taker more than most, so if that run had more longevity it may be more in line with a lot of higher ratings. The Deadman was much more hit or miss for me."
Rating: 7.0
Sentiment: 0.3464646464646465
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Quonton Bombwrote on 06.03.2024:[9.0] "What's there to say that hasn't already been said before? I'd like to give The Undertaker a 10/10, only problem was that for such a long and storied career his booking wasn't always that great, and his matches usually weren't the most exciting. His typical television matches didn't start to get really good on average until the dawn of the Attitude Era. His in-ring work did dip in quality a bit once he became the biker, but that gimmick was equally amazing, and it really freshened up his act at the time. After over a decade in the WWE, The Undertaker would spend the 2000's becoming the overarching face and presence of SmackDown! until winding down on his work schedule by the beginnings of the 2010's. The Undertaker would hang around for years thereafter, answering challenges for WrestleMania, the biggest show of them all, which largely had become focused on him because of his 23-year undefeated streak at the "showcase of the immortals." The one real blight on his career story arc is that he stayed in the ring a little too long towards the very end. It's also a shame that his swan song was a cinematic "match" at the start of a global pandemic. Nonetheless, The Undertaker is no doubt one of the greatest characters in the history of the professional wrestling business - some would even say the very best. And the man behind the gimmick was one of the greatest workers spanning all of the generations of the business that he was a part of."
Rating: 9.0
Sentiment: 0.229502442002442
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PhenomFRwrote on 27.02.2024:"My favourite wrestler ever. Mark Calaway has mastered The Undertaker gimmick like no one ever could. Also his in-ring performance were good given his size. He is one of the pillars of pro wrestling as we know it."
Rating: No rating found
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 2pt0EcoBoostFusionwrote on 26.02.2024:[10.0] "If there was a Mount Rushmore for the greatest wrestling gimmicks in the history of the business, make no mistake, The Undertaker would most certainly be on it. Mark Calaway has done just about everything in the wrestling business, whether it would be holding titles, main eventing PPVs, having a long winning streak at Wrestlemania, being incredibly athletic for his massive frame, the man could do just about everything and STILL entertain the fans worldwide! Sure, some may find him "overrated" from an in-ring standpoint, but I would beg to differ. The Undertaker was a really good worker in the ring with a really unique moveset, the 'Tombstone Piledriver' is easily a top 5 finisher of all time, 'Hells Gate' is an interesting yet brutal looking submission, and let's not forget about 'Old School', for him to do that move being how tall he is just blows my mind, no one could do it better than The Undertaker. His tag team "brother" in Kane, who also is a great character (not top 5 of all time but still great nonetheless) was one of the best tag teams whenever they did Tag Matches and growing up believing in Kayfabe, I actually thought they were actual brothers. Speaking of Kayfabe, no one does Kayfabe better than Mark Calaway's Undertaker character (the younger gimmick wrestlers should take notes! ). I will agree that his career after 2015 was a bit iffy, but for the most part, a really great career by The Undertaker and truly one of the all-time greats within the industry."
Rating: 10.0
Sentiment: 0.3723443223443223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Lutwiejwrote on 23.02.2024:[10.0] "A legend. In terms of his matches, he had his variety of great bouts with the likes of Michaels, Triple H, Edge and Angle. While his in ring work in the 90s wasn't that great, he absolutely carried it with his character. Undertaker always portrayed a character that was so doomed from the start so conivincibley that you knew it was something else. Great wrestler, and I hope he will be celebrated for many years to come."
Rating: 10.0
Sentiment: 0.5750000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: theelevatedonewrote on 21.02.2024:[8.0] "I like the Undertaker, I think he is cool. He has lots of good matches. He has a unique presence. Would rather forget everything post WrestleMania 30 though."
Rating: 8.0
Sentiment: 0.4749999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Enchantiumwrote on 21.02.2024:[10.0] "The Undertaker was always a work horse for the promotion and will always be known as one of the greatest of all time. I do believe his streak should have never been broken, but as he aged, it sort of made sense that he was never going to win against many younger wrestlers, but that is just realistic play. He is forever a legend and will always be one of my favourites of all time. The Deadman gimmick is probably one of the most-replicated gimmicks in many indie companies for how Calaway portrayed the character to perfection. What a legend this man is!"
Rating: 10.0
Sentiment: 0.2740740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: face painted legendwrote on 27.01.2024:[10.0] "The greatest character in the history of professional wrestling, hands down. A large part of that was Mark Calaway, the person's ability to evolve the character with the times so that not only did it stay relevant for 30 straight years under one umbrella, but also on top in the main event scene for all of that time. As well as his ability to keep a mystique , about the character by protecting it well, staying true to it, and never breaking kayfabe throughout all that time that he was active with it. One of the absolute best runs of all time of any wrestler, I don't think you'll ever see a run like Undertaker had ever again in wrestling from any performer. A heck of an attraction too, especially in his latter years. He changed what it meant to be an in ring working big man because yeah, he was 6'10" and 320 lbs, but man he was athletic, he could move well, he could fly like a cruiserweight, and he had the versatility to have a great match with pretty much anyone from Rey Mysterio to Big Show. A legitimate bad ass / tough guy outside the ring too in several different aspects -- working through some pretty significant injuries, having an aura thanks to that character where no one wanted to mess with him/was afraid of him, and having the background to be able to handle himself in the ring if he ever needed to. Nothing but love for the Dead Man from me."
Rating: 10.0
Sentiment: 0.1662698412698413
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BruceMarcos524wrote on 22.01.2024:[9.0] "Who would've thought that this ridiculous gimmick which will only last by a couple of months, became one of the best gimmicks in all of wrestling. Only the Undertaker does this, no doubt a real dedication to this Deadman gimmick. If you think really closely, The Undertaker is just the same level gimmick as The Gobbledy Gooker or The Mantaur if not pulled right. Imagine being a kid, thinking that being risen from the dead is real. That's how magical The Undertaker was. Also, one of the most respected performers of all peers and fans alike. The only guy who wrestled from the Hulkamania Era, New Generation Era, Attitude Era, Ruthless Aggression Era, PG Era and Reality Era and he ruled all of those eras. In-ring wise, he is a tremendous athlete. Only one of the big guys who can leap from the top rope and that alone is a moment itself. His trilogies with Shawn Michaels were the best, he has the best matches there. Also, the man who introduced many gimmick matches like the Casket match, the Last Ride match, the Body Bag match, the Buried Alive match and most notably, Hell in a Cell. Undertaker is one of the moment makers in WWE, one of which is when he raised his hand on the dirt after being buried alive by Mankind, throwing Mankind off the Hell in a Cell, etc. Despite my positive, there are also some few criticisms so far on his illustrious career. His American Badass gimmick is kinda 50/50 for me though as in my opinion ruins the mystique of The Undertaker, although more rebel and edgy to fit the Attitude Era standards. Also, if Taker has the best matches with some of his opponents, he could also bring the worst of the matches, if it depends on the booking. Overall, a solid A- performer and in my opinion the best wrestling character existed."
Rating: 9.0
Sentiment: 0.19760358688930119
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Cree87wrote on 19.01.2024:"The best gimmick in the history of wrestling. Changed the way big men worked in the ring. Had all of the athletic ability to back up the mystique."
Rating: No rating found
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CDProsProwrote on 17.01.2024:[10.0] "The Phantom, The American Badass, The Best Pure Striker in the WWE, Big Evil, The Lord Of Darkness, The Grim Reaper, The Dead Man and The Hall of Famer, The Undertaker."
Rating: 10.0
Sentiment: -0.14081632653061224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RaySivanuiwrote on 15.01.2024:"Undertaker has always been one of the best. Awesome gimmick, always in character, one of the best big guys."
Rating: No rating found
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Scottielstamperwrote on 13.01.2024:"With matches that include the famous Hell in the cell with Mick Foley or the unforgettable Wrestlemania streak the Deadman is one of the greats in my book. With stints as Mean Mark or the American Badass the Undertaker was an "over" gimmick in every regard. The Legend was a lot of money and New fans for the business. He should be regarded as a top guy during peak burnished times. The Phenom the Undertaker."
Rating: No rating found
Sentiment: 0.27064393939393944
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Plebastianwrote on 07.01.2024:[10.0] "The Undertaker's match quality in the 80s and early to mid 90s is average for the time, but far below what we'd grow to expect from him as his career continued. That's really the only proper note needed for Taker."
Rating: 10.0
Sentiment: 0.03571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NRSUFCMAN9wrote on 01.01.2024:"Undertaker is a very overrated wrestler. Not saying he is bad but he just isnt as good as people say he is."
Rating: No rating found
Sentiment: 0.06666666666666671
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DinnerPiperwrote on 21.12.2023:"The man, the myth, the legend. He is the pinnacle of wrestling in my opinion. His ring presence is unmatched. He could wrestle at the highest level through so many eras, old and new."
Rating: No rating found
Sentiment: 0.24545454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: greaterdalewrote on 10.12.2023:[8.0] "In the first decade of his career his matches were pretty dull but he definitely got better as he aged thoughbut he had a lot of stinkers in the 90s and early 2000s that brings his score down for me. His gimmick is an easy 10/10 even though future attempts at magic gimmicks have failed pretty miserably. I know people will disagree with me and that's ok I just don't think Taker is goat contender like a lot of you do. His entrance is amazing especially live and the streak was cool in concept though a lot of the early streak matches weren't all that great. What matters most to me is in ring ability and promo skills and I just don't think taker wasn't a 9 or 10 in either of those.You could give him a higher score just based on drawing power alone, but there's been a lot of wrestlers in history that I wouldn't say are all that at great at the sport of wrestling that still draw because they're popular so I just don't know if that should be the measuring stick we always use for scoring. Also while not an abuser like Ric Flair or Matt Riddle, since doing interviews out of character in recent years, he's come off as bit of a douche, which really ruined some of the Undertaker magic to me personally. Update: I came back and gave Undertaker an extra point I think 8/10 is more appropriate even though his early career was bad"
Rating: 8.0
Sentiment: 0.17967171717171715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TotemKiller1wrote on 08.12.2023:[5.0] "Someone who is remembered fondly due to being employed by WWE for around 30 years. Very overrated as a wrestler, although the right opponent in given circumstances could carry him to a great match (ex. CM Punk, Brock Lesnar). His character is the most notable spooky magic gimmick in wrestling and just like rest of them is just far too corny. In the twilight of his career has been a part of some of the worst matches in history. Overall simply uninteresting as a wrestler with somewhat of an embarrassing gimmick."
Rating: 5.0
Sentiment: 0.16006493506493505
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SevenLegwrote on 03.12.2023:[10.0] "Very, very few manage to stay relevant in multiple decades and The Undertaker has done it better than anyone. One of the best gimmicks of all-time, and a solid performer as well. He's part of some of the best moments in WWE's history. It's fair to say there will never be anyone with such a mystical aura ever again."
Rating: 10.0
Sentiment: 0.3711111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Silver Shadowwrote on 23.11.2023:"Again one of the goats of wrestling, this guy has been wrestling for nearly 35 years and he is been on the main event scene since he started WWE in 1990. Always built strong and his gimmick is very iconic, Action inside the ring was good and his mic work was good as well. His pairing with his manager Paul Bearer was gold, American Badass was good but not as good as Undertaker gimmick. Truly a goat of wrestling."
Rating: No rating found
Sentiment: 0.4250000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] "The Undertaker, literally, got me into professional wrestling when I was 9 years old, so I owe him a lot. Even putting aside that factor, he's one of the all time best to ever do it and one of my personal favorites. The Undertaker is a prime example of no one could ever do this gimmick better than this guy, Mark Callaway really did everything he could to make this gimmick work and he pulled it off to perfection. His early run as the Grim Reaper version of The Undertaker was great, despite he didn't have many (or any good) matches, then around the mid-to-late 1990s is when he starts to kick into next gear as an in ring worker where he's having great matches with the likes of Mankind and Shawn Michaels, even being part of iconic moments that still get replayed to this day like when he throws Mick Foley off the Hell in a Cell structure. His character peaked, for me, during the Ministry of Darkness. I don't care who says what, the MoD gimmick is his best and it's who I think of when I think of The Undertaker. Then he does the American Badass gimmick, which I am indecisive whether I love or hate this gimmick (I definitely hate that he came out to Kid Rock and Limp Bizkit songs... Bleh! ), while he did have amazing matches and feuds during this time, his gimmick felt wrong at the same time since it was still "Undertaker" and not under Mark's real name. Then 2004 comes around, he brings The Phenom gimmick and has one of his best runs of all time. During this time, he had great matches with the likes of Randy Orton, Batista, Kurt Angle, Shawn Michaels, Triple H, CM Punk, Jeff Hardy, etc. While this run is going on, he also has a WrestleMania streak where a lot of his best matches are happening during this time, classics back to back even. Sadly, Brock Lesnar ended it at WrestleMania XXX, but it did lead to a cool feud in 2015. After that year, his run in WWE felt like he overstayed his welcome along with having rare few good matches during this time. He did end up retiring in 2020 after the Boneyard Match with AJ Styles, it was the perfect send off instead of his disastrous match with Roman Reigns at WrestleMania 33... Overall, while some will gripe over Taker having a few DUDs under his name due to his early years and Ruthless Aggression era where he was forced to wrestle bad wrestlers, he's still one of the all time best characters no matter what anyone will say. A true legend in the business and his career and character deserves all the respect in the world."
Rating: 10.0
Sentiment: 0.17287234042553193
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blakeiokwrote on 19.11.2023:[10.0] "The Undertaker is the guy who got me into wrestling, I initially saw his Wrestlemania XX entrance and was instantly hooked. He was booked like a monster during his career and was 100% deserved. There will never be another person like The Undertaker in wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MrCheesyPotato37wrote on 11.11.2023:"One of the greatest of all time. The deadman gimmick is probably the greatest gimmick of all time. Had many stellar matches too."
Rating: No rating found
Sentiment: 0.6875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SuperDelfinwrote on 14.10.2023:[10.0] "There is no worker in my lifetime that combined size, ring skills, gimmick/look, charisma, storytelling, etc as Mark Calloway did as the Undertaker. Dozens of classic matches and legendary moments over three decades. Always perfect psychology, protecting his character and putting people over simultaneously at times, which is not easy. One of the all time greats in this business no doubt about it."
Rating: 10.0
Sentiment: 0.48750000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: andytuga86wrote on 25.09.2023:[10.0] "The best gimmick and the most talented big man in the History of Pro Wrestling, hands down. A master of in-ring psychology, his charisma was undeniable. Although his promo skills were not he best, he didnt need to talk that much to make the difference. His matches with Shawn Michaels at Wrestlemania were legendary."
Rating: 10.0
Sentiment: 0.5305555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ECWCWWEAEWwrote on 22.09.2023:[9.0] "Undertaker is a once in a lifetime character of course. He's also not too bad in the ring. However, while he is one of the most agile big men ever, he can be kind of slow and honestly struggles to make certain wrestlers look good. Taker is kind of only as good as he is... but cant be better or help others improve. He himself is the constant and if someone cant keep up with him the match will suffer and if someone manages to out shine him then well that's call that can relaly happen either. Its still impressive to be as constant and consistent as he is for so long, but to be an absolutely perfect, favorite wrestler to me, would just like it if he could ever rise above himself and he honestly never did outside of the few hell in a cell matches that are career highlights"
Rating: 9.0
Sentiment: 0.2547619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DieOrangewrote on 17.09.2023:"Geil ich liebe ihn. Beste Gimmick aller Zeiten. Immer ein Highlight gewesen ihn zu sehen RIP Beste Unterhaltung und eine wahre WWE Legende. Auch im Ring perfekt bis auf seine letzten paar Auftritte mitGoldberg zum Beispiel, aber egal er ist der beste."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: staabi2hottywrote on 16.09.2023:[10.0] "One of the most dynamic and longest tenured wrestlers in WWF/E history. The Undertaker has been cemented as a wrestling god for my entire lifespan and many wrestling fans grew up with this man being a staple in their lives weekly. He can work with anyone and deliver and Undertaker has worked with them all, having their greatest matches with him. Shawn Michaels back in the 90s and in the resurrection of his career had quite possibly his best match ever with taker 2 wrestlemanias in a row. Mick Foley became a hardcore fan's fav to a cemented legend off of their hell in a cell match in 1998. Brock Lesnar both as a rookie first coming in and when he returned to break the Streak. The streak of Taker winning at 21 wrestlemanias in a row, a number that will never be matched ever again and just goes to show how long this man really spent in WWE and how much of a crutch he was to not only helping them succeed but stay relevant even up to almost present day where I feel like Undertaker could still make an appearance and shock everyone."
Rating: 10.0
Sentiment: 0.2625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Trombek Kushinikawrote on 13.09.2023:[9.0] "What can I say about this worker that hasnt already been said? Possibly the best, and definitely longest lived, gimmicks of all time. A gimmick that never got old and one that Mark Callaway kept fresh through constant reinvention. Not only did the gimmick evolve but also the in ring style. From slow plodding monster to grisly MMA style veteran. Obviously there is also the streak as well but thats been mentioned in virtually every comment on this guy already. Would have been a full 10 if he was slightly better on the mic and the streak had been preserved a little longer."
Rating: 9.0
Sentiment: 0.1044642857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WOOPSwrote on 31.08.2023:[9.0] "After Taker retired, I just had to finally sit down and look back at his whole career. Of course his run in the past 5 or so years still is just sad, I gained a newfound respect for the man after watching his interviews and of course a documentary. Deadman gimmick is still a bit repetitive to me, but American Badass and the previous years after his debut, Ministry of Darkness stuff, etc. were genuinely gold. A lot of great matches, memorable moments and of course character work, respect and commitment to the wrestling business. I hated his matches past 2015 but one just can't deny the importance The Undertaker has to the wrestling world."
Rating: 9.0
Sentiment: -0.038148148148148146
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: deceivrwrote on 25.08.2023:[6.0] "I was always never fond of experimental ideas in professional wrestling. Sadly, in this case, it goes straight over to the Undertaker. Or is it? I had started to become a fan of wrestling and, the first full match I ever saw was him against CM Punk in a Hell In A Cell match. A great match indeed, and one that made me fall in love with the brutality that is professional wrestling. However, though, I did have a complaint. What was all the pyrotechnics about? Why was he trying to be dead? It was all confusing to a wax-philosopher mind of a 9 year old. However, I gave in. I gave in in such a way that has actually allowed me to feel better about such things. Sure, it's cheesy. Sure, it doesn't make sense at times, but at least it's across the pond. His matches, in general, are very much always the same, but with extra flavor to them. He had disintegrated in work ethic and overall performance a bunch of times, but had risen up in many of them in random moments of pride and dignity. It did help, too, that he had the respect of the entire locker room for all that he had done. He could take advice and scramble it up to make something unique. In conclusion, whilst Mark Calaway is a figure that is quite celebrated, it is neat to remember the ethic that he had put in and the random moments of true shine that he had."
Rating: 6.0
Sentiment: 0.0843939393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheBestFiraswrote on 12.08.2023:[10.0] "Simply the greatest of all time. Nobody in history of Wrestling in any promotion has had a career like the Undertaker. Longevity like no other. Not just there wrestling for 30 years, but being on the very top for that long of a time is impossible to repeat. 30 years of being bigger than the main event, bigger than any world title. The forever entity that equals or outweigh the top guy in any era. And with that he is always evolving. He is never uninteresting. He is a genius in how he understands the fans and the horizons of his character. Top that with perfect performance, perfect mic skills, perfect character work, perfect looks and unearthly charisma."
Rating: 10.0
Sentiment: 0.41083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mizzyshawrote on 06.08.2023:[9.0] "An obvious all-timer for the reasons everyone already agrees on. I suppose my only issue with Undertaker in retrospect is that I was only ever really obsessed with him in conjunction with a crazy rivalry - be it with Shawn Michaels, Kane, or Edge, since the Deadman gimmick isn't all that interesting on its own beyond the Brothers of Destruction storyline. His run from 1997 to 2013 might represent the most flawless handling of a wrestling career ever."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Woodstovewrote on 05.08.2023:[6.0] "Able to have a good match with the right opponent but for the vast majority of his career he was a below average in ring performed, and no matter where he was in his career he was a horrible promo. He's remembered fondly because of his push, strong gimmick and loyalty to the WWE"
Rating: 6.0
Sentiment: 0.10986394557823131
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BigshowYTwrote on 27.07.2023:"The greatest wrestler of all time. He had the gimmick, the talent, the star power. He had classics such as his matches against Mick Foley, Shawn Michaels, Triple H, Kane, and many others."
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gold Fistswrote on 26.07.2023:[9.0] "Atop the most iconic characters in the history of professional wrestling. Nobody was as devoted to playing a character as Undertaker was. He had some unbelievable in-ring work for a big man, and the tombstone is in my opinion the most brutal looking finisher to ever exist. Nobody will ever forget The Streak either. He gets a point off for sticking around until/after his match with Roman Reigns because he almost died in his match with Goldberg."
Rating: 9.0
Sentiment: 0.06785714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ItsToniTime89wrote on 24.07.2023:[10.0] "Einer der legendärsten Wrestler der WWE Geschiche. DER Lockerroom Leader schlechthin Backstage, in Guten wie auch in schlechten Zeiten der Company. Einer, der in den 30 Jahren als Undertaker Kayfabe immer eiskalt durchgezogen hat und sein Gimmick gelebt hat, wie kein zweiter. Weniger als 10 Punkte kann man dem Taker einfach nicht geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ismarizviwrote on 18.07.2023:"one of the GOAT of wrestling and one of the most entertaining wrestler to watch but the matches in his later ages are rough but still overall a good wrsetler"
Rating: No rating found
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GeneBlastKyodaiwrote on 11.07.2023:[10.0] "One of the greatest characters in wrestling. A legend beyond all legends. Mount Rushmore for wrestling has to have his face on it. A true icon of the business, nothing got me more excited for Mania than the streak and that was due to this man and his mastery of wrestling and his ability to kick out at the last second."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker4everwrote on 08.07.2023:[10.0] "Einfach mein absoluter Lieblingswrestler! Mir gefällt sowieso ein bisschen dieses ganze Mystische! Alleine seine Wrestlemania Matches waren jedes Jahr ein Highlight! In Errinnerung bleiben werden mir sicher seine Matches gegen Shawn Michaels und Triple H! Alleine sein Einzug einfach super da hielt man jedes Mal den Atem an! Seine letzten Jahre als Wrestler waren dann nicht mehr so berauschend weil man ihm leider schon das Alter ansah! Trotzdem wird er auf ewig einer meiner Kindheitshelden bleiben!"
Rating: 10.0
Sentiment: 0.6510416666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: danzitorockwrote on 20.06.2023:[10.0] "Perhaps the greatest character of all time, The Undertaker is an undisputed wrestling legend, who every time he steps in captivates everyone's attention and stirs up incredible emotions. Virtually everything involving this character is legendary, from appearances, visuals, rivalries and of course, the iconic WrestleMania streak. It's impossible not to get goosebumps or excited when The Undertaker makes his grand entrance."
Rating: 10.0
Sentiment: 0.5154761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: lageristwrote on 31.05.2023:[10.0] "Deu Undertaker ist die Legende schlechthin.Ohne ihn wäre die WWE wahrscheinlich nicht das was sie heute ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dr Thuganomicswrote on 31.05.2023:[9.0] "Charisma: 10 - Attire: 8 - Acting: 8 - Theme Song: 10 - Finisher: 10 - Microphone: 5 - Ring Performance: 9"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Danylopez016wrote on 31.05.2023:[10.0] "Simply the best most iconic wrestler ever. His Wrestlemania entrance aura was special and I don't think anyone will ever match it. On top of that a great wrestler at 6'10 tall is just insane and unheard of."
Rating: 10.0
Sentiment: 0.3321428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SierraHotelIndiaEchoLimaDeltawrote on 30.05.2023:[10.0] "Zurecht wird der Undertaker als eines der besten, wenn nicht sogar das beste Gimmik aller Zeiten angesehen. Eine Karriere die seines gleichen sucht. Solider bis guter Performer im Ring, doch einzigartig bleibt die Karriere ohne Frage."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Frank Shooterwrote on 30.05.2023:[10.0] "The most iconic wrestler in WWE history, and for me the greatest of all time. Without ever being the Ace of the company, he was always on the top, he could put over a gimmick that shouldn't have work in the first place and made it a legend. Amazing presence, incredible In-Ring performer (he was at his best in his 2004-2012 run), perfect understanding and implementation of psychology in his matches. He was simply the best."
Rating: 10.0
Sentiment: 0.6590909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MattHallwrote on 28.05.2023:[10.0] "One of the most iconic wrestlers of all time, and probably the most iconic in WWE history. A holy grail gimmick, and an iconic finisher in his move set. A man that has defined three generations of wrestling fans."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheMarvelousMrNJDwrote on 27.05.2023:"When talking about once in a lifetime performers, it doesnt get any more once in a lifetime than when talking about The Undertaker. The Undertaker was simply a transcendent performer who spent the entirety of his thirty year career as one of the top stars in the industry. The catalogue of classic matches, the long list of rivalries, the ensemble of unforgettable moments. The Undertaker is the greatest performer in the history of professional wrestling and I dont ever see that changing. There will never be another one like him."
Rating: No rating found
Sentiment: 0.32407407407407407
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dancerwrote on 25.05.2023:[10.0] "Probably the best wrestling character ever. Undertaker is the textbook example of generational talent. Even when he was older he could still go, and even during his last few years he was still one of the best workers in the company. An all time great."
Rating: 10.0
Sentiment: 0.4611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Intrigued16wrote on 23.05.2023:"The Undertaker is called the Phenom for a reason. His presence as a character, gimmick, wrestler, leader, and many other things set him apart from others and in a league of his own, if you will. He has left a mark on the industry that may not be done again and has has a mark or impression with in myself over the years. Him retiring left an emptiness with in me as a fan that I can't explain really, and I know the show must go on and I'll still be a fan. But the show just won't ever be the same without him. At least to me."
Rating: No rating found
Sentiment: 0.109375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wrest lingaddictionwrote on 18.05.2023:[10.0] "Hands down the best character in pro wrestling history. To have the longevity that this man had, an undeniable superstar!"
Rating: 10.0
Sentiment: 0.4222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MariotheMariomwrote on 11.04.2023:[10.0] "This guy is a badass. Without any doubt, one of the best professional wrestlers ever. Thank you for everything, Taker."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Giantfan1980wrote on 09.04.2023:[7.0] "Undertaker 1990-1993 will always be my favorite. His performance got pretty terrible during that 1999-2003 period but he had something of a career renaissance when he went back to the dead man gimmick, even though he usually only came around for WrestleMania season."
Rating: 7.0
Sentiment: -0.075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: crs285wrote on 04.04.2023:[9.0] "Undertaker is a legend. Watching his early career is unimpressive to me outside of a few matches. As he aged and got more experience, he delivered amazing matches in the Attitude and Ruthless Aggression Eras. His character work is 11/10 as he got everything he did to connect with the fans while playing a supernatural character which is not the norm. His career also had longevity matched by very very few. Strong in all aspects no doubt he will be remembered in the history books forever."
Rating: 9.0
Sentiment: 0.024000000000000014
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GriffinXwrote on 27.03.2023:[3.0] "One of the most overrated and over hyped to ever step into a ring. People think he's good because he kept a job a long time. So many of his moves just looked so bad which is worrisome given how basic his set was. I know people want to claim his character work was key but frankly what character? Even worse because of him so many stupid magic gimmicks have come around sense"
Rating: 3.0
Sentiment: 0.06818181818181819
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Personanowrote on 19.03.2023:[6.0] "I find it really difficult not to sour on The Undertaker. He's one of, if not, *the* greatest characters and entrances in all of WWE yet as he neared the end of his in-ring career it was disappointment after disappointment with some pretty bad online stuff sprinkled on top. And whilst his entrances have consistently wowed me and sent shivers down my spine, his in-ring work always left a little something to be desired. I really can't rate him higher than a 6."
Rating: 6.0
Sentiment: -0.03164682539682538
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: tbdolicwrote on 12.03.2023:[8.0] "Solid wrestler with an amazing lasting career but overall, mediocre and boring in the ring. 20 years is a feat, 20 years doing the same >10 move set Boring."
Rating: 8.0
Sentiment: -0.2375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Noquaswrote on 11.03.2023:[10.0] "Simply the Greatest Of All Time with classic matches in 3 DECADES. An absolutely genuine character and so are his moves."
Rating: 10.0
Sentiment: 0.3916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: John Brandowrote on 07.03.2023:[10.0] "Einer der legendärsten WWE-Wrestler mit dem wahrscheinlich besten Gimmick überhaupt. Seit 30 Jahren stand er in Diensten der WWE und prägte das Kayfabe wie kein anderer. Trotz MMA-Einfluss war mir sein Ring-Stil immer etwas zu langsam und zu gleich, soll aber die gute Bewertung nicht schmälern. Seine Karrierephasen sind einzigartig und die Liste seiner All-Time-Klassiker lang. Seine HoF-Aufnahme gehört auch mit zur besten der Historie. Zum Ende kann man nur sagen: Danke Mark William Callaway für alles, was du dieser Wrestlingwelt gegeben hast."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KKeanelwrote on 25.02.2023:[10.0] "Of course we can find tons of better in-ring competitors, but through 30 years he delivered absolutely everything to be the top WRESTLER in worldwide and american meaning. His skill of create, grow, evolution, keep and make gimmick legendary is absolutely insane. Sacrifice which he put in his last years of his career on his body to entertain people shows how much he loves his job. Huge respect for this guy."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LGL19wrote on 22.02.2023:[10.0] "The greatest gimmick ever, one of the greatest in the ring, on the mic and a locker room leader. The man is truly legendary and the longevity he had with his career is unbelievable and the streak... well had some of the greatest matches ever not just at Wrestlemania but in WWE history (HBK matches in 09 and 10)"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MilkDDTeawrote on 18.02.2023:[10.0] "When it comes to larger than life characters in the world of wrestling, there may be none larger in its history than The Undertaker. With an unparalleled aura, The Undertaker captured the attention of viewers in a way that few others ever have. His mere presence any time he made his way down to the squared circle was an attraction in and of itself. Over the course of 30 years, The Undertaker's story developed with feuds and moments that forever changed the landscape of the WWE. From his history with Paul Bearer and Kane that defined his character, to his classic matches with Shawn Michaels, Triple H, Edge, and many others that showcased his in-ring expertise, The Undertaker's career cemented his legendary status many times over."
Rating: 10.0
Sentiment: 0.1411111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jonsnoewrote on 08.02.2023:[10.0] "He is not the greatest wrestler of all time but if I consider only entire WWE wrestlers from their run in this company (past to present), The Undertaker is the best WWE wrestler of all time."
Rating: 10.0
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: M3n747wrote on 04.02.2023:[10.0] "One of the most consistently solid wrestlers to have ever stepped into a ring. Despite a number potentially silly gimmicks, he managed to keep them serious without taking himself too seriously. He was always very serious and very professional about his job, though - so much so, that apparently it's really hard to find anybody who would have anything bad to say about the man. Pro wrestling isn't exactly the kind of environment where humble people abound, but The Undertaker is most certainly a rare exception."
Rating: 10.0
Sentiment: -0.020777777777777787
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Thehaterwrote on 14.01.2023:[10.0] "very scary that undertaker is only the 35th place in the cagematch. wwe's longest-lived wrestler, retaining wrestling qualities and history throughout this time. an absolute 10"
Rating: 10.0
Sentiment: -0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BlueBrandwrote on 12.01.2023:[3.0] "As someone who grew up with the Undertaker, he really only had a few years where he was actually putting on good matches and outside of that he was always a toilet break for me once he got to the ring. It took until Mankind entered the scene and for the Attitude Era to kick off for me to sort of be interested in the character, but mainly for the presentation. The streak storyline may have been great to some, but to me that always made his matches that much less compelling as I never thought he would lose at mania and when he finally did he was well past his prime. Love him for the pageantry, never really liked him once he got into the ring and never really bought him as a great promo."
Rating: 3.0
Sentiment: 0.14509803921568626
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CMFunk007wrote on 07.01.2023:[8.0] "The Undertaker had the respect of the locker room and the fans. He wasn't great in the ring until late in his career. I remember him first beating Hogan for the title at the Survivor Series and even back then, I knew Vince loved the guy. He's not a perfect wrestler, but his gimmick is second to none. It's too bad we never got that Sting-Undertaker match."
Rating: 8.0
Sentiment: 0.031250000000000014
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: milos1605wrote on 07.01.2023:[10.0] "One of greatest of all time. He is most respected wrestler in North America. First years of his career in WWE (1990-1995) were very bad, but it's not his fault. Hulk Hogan sabotaged Taker's first title reign and he had to work with worst wrestlers in the world. Ultimate Warrior, Giant Gonzalez, Mabel, King Kong Bundy, Yokozuna and fake Undertaker, with one exception and that's his underrated feud with Jake Roberts in 1992. Good result of this was that we started to believe in his character, or at least that his opponents are really afraid of him. In 1996 he had amazing rivalry with Mick Foley, and it produced some great matches and memorable moments, and that feud actually led to Kane's debut. His WWE title reign in 1997 was very good, unfortunately he was just a transitional champion. HIAC match with HBK was iconic, and Kane's debut and later rivalry was excellent. Matches weren't best, but story was so powerful. I didn't like ministry gimmick, it was too weird for my taste and i never could imagine him as leader of faction, but it was very creative and WWE failed to capitalize on it. Later return as American Badass was amazing, and he was more than acceptable as badass. His role in invasion storyline was bad, so many bad matches and segments (DDP, for example). Heel turn was bizzare, but heel run was great. He had great matches and put over younger guys (Maven, Jeff Hardy, Brock Lesnar) and was one of guys that carried SmackDown. Return at WM 20 was great and that was time he established himself as king of entrances. Rivalry with Randy Orton was great, and it put over Randy as top heel. His match with Angle at No Way Out showed that he is actually great wrestler, but that his gimmick was limiting him. His rivalry with Batista was excellent, and Taker fastly made World title prestigious. But rivalry with Edge was one of best in 2000s, with epic ending and so many great matches. Classic with HBK was probably greatest match ever. Last title reign was his best title reign and second match with HBK was equally epic. Rivalries with Triple H in 2011 and 2012 were all time great, just like feud and match with CM Punk. End of streak was awful, it was very bad decision. Their work in 2015 was much better. Retirement in 2017 was done too late. 2018 run was terrible, matches were sadly bad. 2019 wasn't much better. Boneyard match was great, it was perfect send off for Taker and retirement at Survivor Series was beautiful. Maybe he wasn't best wrestler ever, but evolution and greatness of his character, so many great matches, promos and segments, together with endless loyalty, makes him one of greatest ever."
Rating: 10.0
Sentiment: 0.27105392156862745
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Roastertakerrwrote on 07.01.2023:[10.0] "Probably up there as the greatest professional wrestler in North American history. To be able to do what he did for that long. Is something that is so remarkable. He will ALWAYS have that aura. Even if people know it's predetermined and that the gimmick is nonsensical. We still suspend our disbelief for him. We all still wanted to see him whoop ass when he showed up."
Rating: 10.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KSupreme3wrote on 16.12.2022:[10.0] "No other wrestler will EVER duplicate the mystique of the Undertaker. Almost 7 feet tall, this man struck fear in everyone's heart, no matter the age. In the ring, he did some amazing shit that wrestlers his size wouldn't dare doing. Taker's character work (especially during the attitude era) was on another level, and to this day there's nobody that comes close to it. Whenever he felt like his gimmicks were going stale, he found ways to recreate and re-invent himself. As a kid, I legit thought this man worshipped the devil and I was scared as shit whenever he graced my TV screen. Taker made everything feel so real. You couldn't ask for more as a wrestling fan. Undertaker will always have a spot in my top 5 of all time list, hands down. Can't forget the incredible run he had in the second half of his career. the now Classic WrestleMania matches with HBK will go down as wrestling's finest matches of all time. Definitely in the Mount Rushmore of Pro Wrestling. 10/10 Certified LEGEND."
Rating: 10.0
Sentiment: 0.09696180555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "He was a fucking beast, all-around. He was such a good wrestler, and the aura around him could never be replicated."
Rating: 9.0
Sentiment: 0.075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wrestlers dreamwrote on 14.11.2022:"[10] I absolutely love the undertaker and I always will. He's a great example of a "bad guy" that's actually respectable."
Rating: No rating found
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Edward Minarowrote on 01.11.2022:"Without a doute one of the greatest of all time. Kinda disappointing the streak was broke but overall, he is a legend. Thank you Taker."
Rating: No rating found
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Sick Lebowskiwrote on 31.10.2022:[9.0] "Hat sich von einem eher mittelmäßigen Wrestler zu einem der Top-Leute des Business entwickelt. Kann mit dem richtigen Gegner durchaus Klassiker auf die Beine stellen. Was mich faszinierte ist, dass er sich im Ring mit den Jahren immer mehr steigerte und sein Moveset erweiterte. Von der Genialität des Undertaker-Gimmicks ansich brauche ich ja vermutlich erst gar nicht anfangen. Für die volle Punktzahl reicht es bei mir nicht ganz, da er die ersten Jahre im Ring wie geschrieben nicht voll überzeugen konnte, aber starke neun Punkte sind allemal drin."
Rating: 9.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: zachattack2023wrote on 17.10.2022:[10.0] "This is one of the best characters in wrestling of all time it was just insane on how creative the character was. The undertaker was just as good in the ring just a legend and he had so many classic moments and matches."
Rating: 10.0
Sentiment: 0.3111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RavenCrow75wrote on 06.10.2022:[7.0] "For the most part I will be basing my Wrestler ratings on five criteria four of which are based on in-ring ability and the last on charisma. I believe these five criteria are pro wrestling's version of Tommy Lasorda's criteria of "five points" in baseball. For pro wrestling those five criteria are power, speed, technical ability, hardcore & charisma. Undertaker's scores: Power: 8 Speed: 7 Technical: 7 Hardcore: 7 Charisma: 8 for a total of 37 and an average of 7.4 rounded down to 7."
Rating: 7.0
Sentiment: 0.027777777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: eltetechoriwrote on 27.09.2022:[10.0] "If we can say a character that represents wrestling as much as Undertaker I think there is no one, anyone you ask, I think they know who he is."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "The Undertaker is the single greatest creation of Vince McMahon, but it took a special talent to bring it to a legendary status. Mark Callaway was that man. He gave his all, down to the little mannerism that made his character so captivating. In the ring, he was forced to limit himself during the first years as a slow, lambering zombie, before slowly the chains were taken off him. During the 2000s, we truly saw the extent of what he was capable of, and delivered countless classics for us to remember. Often imitated, never to be replicated."
Rating: 10.0
Sentiment: 0.15328144078144076
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AlDente01wrote on 25.09.2022:[10.0] "Phenom. The Undertaker is a living legend. He is not famous because of wrestling, wrestling is famous because of him. He is the biggest star WWE has ever had. Entire generations could grow up watching it and enjoying it. Every time I get goosebumps when he comes in, no one gets as much emotion just by appearing as he does. I love The Undertaker, his entrances, his speeches, his moves in the ring, all the surroundings around him, and I think it was an honor to watch wrestling at the time he fought. Thank you Taker."
Rating: 10.0
Sentiment: 0.24166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Stevooo117wrote on 22.09.2022:"He is one of, if not the greatest, to ever put on a pair of boots. He is my earliest memory of pro wrestling."
Rating: No rating found
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Flame233wrote on 22.09.2022:[10.0] "There is simply no way I can properly acknowledge The Undertaker, so I'll keep it short. He is, the single Greatest Performer, WWE has in its' Hall of Fame. This guy is the very definition of a Legend. He is very iconic, his gimmick is very iconic. When you think of wrestling, there is no chance you don't (among others) thnik about the Undertaker. Propably the first proper "Scary" gimmick. Mr. Calaway, thank you for what you did for this sport, you WILL be missed."
Rating: 10.0
Sentiment: 0.19805194805194803
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: McGravedigger98wrote on 05.09.2022:[10.0] "Der Mann ist und wird für viele ein Kindheitsidol bleiben. Niemand hat Kayfabe in den letzten 20 Jahren so geprägt, wie Mark Callaway aka The Undertaker. EIn Mann, der auch noch in seinen späten 40er Jahren klasse Matches abgeliefert hat. Vorallem das Hell in a Cell Match gegen Triple H bei Wrestlemania 28. Ich werde Mark immer für das idolisieren, was er uns Wrestlingfans in den letzten 30 Jahren so alles geboten hat,"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WrestlingFan892wrote on 20.08.2022:[10.0] "The best gimmick in the history of Wrestling, his time in the Ministry of Darkness was terrifying. He has made memorable matches throughout his career, and as a very good wrestler that he is, he appeared very regularly on weekly shows, specifically SmackDown. He introduced personal matches, Casket Match, Buried Alive... His passion for Wrestling made him retire at a long age for Wrestling. Living Legend, marked an era."
Rating: 10.0
Sentiment: 0.17333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: texasyoshwrote on 17.08.2022:[8.0] "There's a lot of good in Undertaker's career, but it would be wrong to ignore a lot of misses. For every good Taker match there's probably one that's the polar opposite. His outside-of-the-ring character will make his work age poorly as more time goes on."
Rating: 8.0
Sentiment: 0.21944444444444441
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Heir of Edgewrote on 07.08.2022:"Childhood memories. Watching many old videos of him on YT. This man deserves so much respect for how inspired us all."
Rating: No rating found
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DemiBoySimpwrote on 06.08.2022:"Not the greatest in ring worker of all time but a dam legend in the business that deserves his flowers cause he? s on overall legend"
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CTFBwrote on 28.07.2022:[5.0] "The Undertaker deserves a massive amount of respect for creating one of the most legendary gimmicks in the history of the business, and that shouldn't be taken as a light thing which easily keeps his score from being under a 5, but what doesn't bring it to a 10 or even a 7 is the fact that Taker was no one really that special in the ring, nor was he a good promo most of the time. He had good one-liners, but nothing else to really back it up. He was a supposed "locker room leader" but it's more along the lines that he was a bully and an egotist backstage, influencing toxicity and the very immature "boys will be boys" stance that has since (thankfully) died a slow death. Taker is many things, a good person isn't one of them."
Rating: 5.0
Sentiment: 0.39940476190476193
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: hoangminecraft6969wrote on 21.07.2022:[6.0] "A very overrated wrestler with a nice deadman gimmick (the only thing i give him credit for). His undefeated WM streak was more like a series of dogshit matches (if you don't believe, look at Meltzer rating for his WM matches from Wrestlemania 7 to 20). He is very lucky to be carried by some of the best workers in the industry and had some memorable matches throughout his career, but overall he was an awful and overrated performer for most of his run in WWE with countless terrible feuds and matches. Not to mention he's a racist asshole in real life with an ununderstandable antipathy to video games. 6 is still a bit generous for him."
Rating: 6.0
Sentiment: 0.14871794871794872
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ozzywrote on 09.07.2022:[10.0] "Mark is a good man in the ring and out, he looks after his opponents, sells well, is willing to put the younger guy over, and of course has probably the best gimmick, one of the best careers, royal rumble winner, multi time wwe champion, 30 year career, WWE 2022 HOF headliner, and 21-0 wrestlemania streak. Taker is also a skilled wrestler, good on the mic, lived the gimmick for the most part, and has chemistry with most of his main opponents. The way that mark revolutionized the industry though with what he was willing to do in matches is a big reason why I give him the 10 though, obviously with King of the Ring 1998 against Mankind he was a clear favorite to the fans. He would put his body on the line day in day out for years for the fans entertainment in more ways than almost any other wrestler. And even during his time as "Texas Red" and "Mean" Mark Callous he was still more entertaining and talented than a lot of other people in the buisness. He was able to keep with the times too when transitioning to his biker gimmick as well showing he wasnt a one note wrestler but a true professional"
Rating: 10.0
Sentiment: 0.3366987179487179
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sbg2022wrote on 02.07.2022:[10.0] "What can be said? He is the greatest character EVER in wrestling. AND he had the skills to back it up in the ring."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CommisarRobewrote on 06.06.2022:[9.0] "Undertaker probably has the best gimmick and entrance in professional wrestling, he has played his character to perfection all throughout his career. His matches between the 90s and 2000s are for the most part fantastic and his Wrestle mania matches with Shawn Michaels are some of the greatest of all time. However he is not a 10, in my humble opinion Taker should have retired a lot earlier as it became clear in the later years that his ability was waning and that unfortunately negatively affected many of those matches. His Championship reigns were decent if only notable while his Wrestlemania streak is the stuff of legend which has yet to be matched. Taker deserves all the respect he deserves and will leave a legacy that will stand the test of time."
Rating: 9.0
Sentiment: 0.26904761904761904
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NeoSwas36wrote on 04.06.2022:[8.0] "I don't think he's a 10/10 at all, but what he did for wrestling was very huge. He had a great character, some really underrated matches, and was a good Powerhouse-style fighter. He DEFINITELY isn't what his rating says, I'd give him an 8/10 though."
Rating: 8.0
Sentiment: 0.44399999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mikeyisgoatedwrote on 16.05.2022:"Never has anybody ever said anything bad about this man in the business. On TV, off-TV, he's a great worker and the best big man in the history of this sport. So many great feuds and matches under his name across four separate decades (1990s, 2000s, 2010s, 2020s). He's unbelievably agile for his size, has so many great trademark moves, and not to mention the GREATEST gimmick in all of wrestling history? He has helped put countless talent over, isn't selfish and sells for his opponents, and how can anybody forget the legendary streak. He's great on the mic, he can cut promos in various ways. He had the crowd in his hands on DAY 1 starting back in Survivor Series 1990. I don't see how anybody could give this man anything else other than a 10. Easily one of the greatest wrestlers of all time."
Rating: No rating found
Sentiment: 0.3904166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: fruggmanwrote on 03.05.2022:[10.0] "The greatest wrestling persona of all time. Went through multiple evolutions and refused to break kayfabe ever even when the business stopped caring about it in the late 90s all the way to his retirement in 2020. Even discounting his 'not great' periods like 2014-2019 and 2000-2002, he always was the ultimate ring general for the sports entertainment style. There will never be anybody like him again and I think wrestling would never have been as popular or as fun as it became were it not for 'Taker."
Rating: 10.0
Sentiment: 0.15625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Maxkappelnwrote on 22.04.2022:[4.0] "Tja, der Undertaker? Fand das Gimmick relativ schnell langweilig. Auch die Matches waren eher langsam und gleich aufgebaut.Die Promos waren auch eher immer gleich. Natürlich gab es auch gute Matches, die WM Matches gegen HBK und HHH bleiben in Erinnerung. Ganz schlimm dafür das AJ Styles Match bei WM. Fand ihn als American Bad Ass facettenreicher und Spannender, daher auf jeden Fall noch 4 Punkte."
Rating: 4.0
Sentiment: -0.3499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ryanmichael25wrote on 18.04.2022:[10.0] "The greatest character, superstar, and wrestling legend to ever live. Simply put the GOAT. No questions asked."
Rating: 10.0
Sentiment: 0.37878787878787873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TigerDiverwrote on 11.04.2022:[8.0] "Undertaker is a guy that I have come around to think I respected him more than I love him. His Mean Mark run in WCW was fine, but it was clear he was never the amazing worker people made him out to be. Once he made it to the WWF, it took him a good six or seven years until he was actually good. People said he took his time "working the gimmick", but I digress. His American Badass run has aged terribly after all these years. And even though he had a slew of classic, career-defining moments and matches spanned over three decades, the same amount could be said for his awful, eye-rolling shits as well. I give props for his longevity and the fact that his gimmick was able to last this long without getting stale. A legend in my eyes for sure. But greatest of all time? I'm not so sure about that."
Rating: 8.0
Sentiment: 0.15337301587301586
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PavelDragunovwrote on 07.04.2022:[10.0] "One of the most dedicated wrestlers in his field. 33 years in business, most of which are in WWE. A fighter who combined a bright image, a unique appearance, innate charisma, the ability to work miracles in the ring, with his size to be agile and at the same time wildly strong. The main feature of the Undertaker is of course his unique streak of wins at WrestleMania, whoever came up with this is a genius, because at one time it became a real tradition. People gathered in whole stadiums to see if someone could stop Deadman or if the opponent would fall. This lasted for many years, excellent and historically important fights were held, for example with Triple H, CM Punk, Shawn Michaels and many others. For WrestleMania alone, a huge number of plots and fascinating stories were conducted. And this is if you remember his path on the main show of the year, and how many stories there were outside of this show, it's even awkward to describe. For me, his most important feud stories were with Kane, Bret Hart and Mankind. But of course this is not the limit and you can still remember a lot of interesting things. For example, his insanely charismatic duet with Paul Bearer. Or his emotional appearance for the first time in the image of a Dead Man. Also his epic feud with Brock Lesnar and the appearance of American Bad Ass. This is a wrestling story that is difficult to overestimate. The only thing that can be noted is that of course you need to leave on time. I'm absolutely not a fan of his last years in WWE. The era has already gone, there was no need to take him out of the ring for the sake of dream matches that would have better remained in the dreams of fans, because in fact age takes its toll and if we didn't see the dream matches at the right time, then we don't need such content in modern times. Summing up everything I have written, I want to express my deep respect to WWE and in general to everyone who worked on this character and eternal honor Mark William Calaway is a real phenomenon of wrestling and a man who put his body and soul into popularizing such a great sport. Thanks!"
Rating: 10.0
Sentiment: 0.23592132505175992
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheGreatWhitewrote on 06.04.2022:"Simply one of the greatest of all time. He has been relevant for nearly 3 decades and his gimmick, his accomplishments and his legacy will live forever. Thank you Taker !"
Rating: No rating found
Sentiment: 0.3340909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: nothingleftinsidewrote on 04.04.2022:[5.0] "Easily the most overrated wrestler of all time. Positives- the gimmick is cool, and he switched it up to keep it from getting boring. The entrance is the coolest entrance of all time as well. Paul Bearer/Percy Pringle is one of the best managers ever, and perfect for this gimmick. Beyond that, what do you got? He's capable of cutting exactly one promo, and somehow he made that work for 25 years, which I guess is commendable. He's not terrible in the ring, and is good at doing the character work between moves, but again he did the same routine for 25 years. All of his good matches are with phenomenal workers who elevate their opponents no matter who they are- Shawn, Edge, Kurt Angle, Triple H, Bret, CM Punk, etc. His matches with Brock and Batista do not hold up these days. After Hogan, there probably isn't anyone out there with more disappointing PPV matches. For someone to be truly great, they need to elevate the talent they're working with. Any match with someone who isn't great will expose this dude- see Sid, El Gigante, Mark Henry. He even manages to suck against Vader, and he has exactly one good match with Kane. There might be stuff that I'm missing as a wrestling fan that people that work with him appreciate, but I've yet to hear anyone articulate what it is. if that's the case. He also had a tired ass moveset ("old school" is such garbage) and no sold more than perhaps any wrestler. And at the end of his career he thought he was some kind of MMA fighter. Give me a break. On top of all this, his stupid attitude as the "boss" or "locker room leader" with him taping his fists to ensure the business is respected blah blah, this guy is a complete goof. Like everything else about him, his self image is overblown. Plus he's a pro-cop racist. That sort of thing normally doesn't influence my opinion of a wrestler but it just goes to show that the man behind the mask is a complete turd. I can't believe so many people are fooled by this guy's "mystique." A+ gimmick, one-note promo, C+ wrestler, long career. The prettiest smoke and mirrors in the business, but smoke and mirrors nonetheless."
Rating: 5.0
Sentiment: 0.2259803921568627
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CMX-7wrote on 02.04.2022:[10.0] "Wrestling icon! The man thanks to whom everyone loved and love WWE! Lots of historical matches and great moments)) He has always evolved with gimmicks in this or that era (My favorite Gimmick is Ministry of Darkness 1999) Thanks to Mark for his childhood and love for wrestling."
Rating: 10.0
Sentiment: 0.44062500000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheMrPollardwrote on 28.03.2022:"I have a strange thought about "Taker" a truly iconic legend of the sport but he has a real mixed bag of matches with (for me) a short span of years where he was truly great in the ring"
Rating: No rating found
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AEWInspectorwrote on 21.03.2022:[10.0] "Great wrestling, one of my all time favorites, I'm sad not to see him in the ring anymore but happy for the great legacy he left"
Rating: 10.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Conquistador37wrote on 23.02.2022:[4.0] "Why is this guy rated so highly when at least half of his career has been rather plodding and blatantly terrible matches? He doesn't get much in the way of bonus points to me because i thought Mean Mark dressed up as an early 19th century undead mortician was super silly (so unlike millions of you, the character never excited me from the get go). Things didn't ever click until Mankind came around and even then it took a while for him to really get the gears in motion. He went out of his way to attempt to derail Kurt Angle's career (it FAILED). I was not a fan of the American bad ass gimmick, some try hard spitting in a cup isn't "bad ass", it's TRASHY. He's over rated. over fkn rated. great matches? maybe somewhere in there he had some great ones, thanks to cats like Shawn Michaels. What about fast forward fodder? LOADS. The majority of his career is NOT exciting. *ahem* i DID like his run in WCW as Mean Mark Callous, very much so - however it was short lived, yet for a long time his in ring career peak so. meh 3.5 rounded up. Not a fan ...also he seems to have a total garbage personality (toxic masculinity full tilt and then some)."
Rating: 4.0
Sentiment: -0.06669642857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jorgeisthe1wrote on 22.02.2022:[10.0] "The greatest of all time, my favorite wrestler, the Phenom, the Deadman, the Last Outlaw. He is the greatest character in WWE. I give you THE UNDERTAKER"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dendowrote on 21.02.2022:[7.0] "One of the all-time great personas in professional wrestling history. His influence cannot be over-stated, but it must be said that his wrestling ability is often good for a big man but not top-level. His massive presence is also heavily subsidized by the support of WWE's special effects budget. Still, he's had plenty of good or great matches and reliably delivered cool visuals, gravitas, and awesome beatdowns. His overall legacy is slightly marred by the last few years of his in-ring career which badly exposed his weaknesses as a performer. After going out on a high note they should have let the poor man rest... in... peace..."
Rating: 7.0
Sentiment: 0.1833597883597884
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DangoDaisukiwrote on 13.02.2022:[7.0] "Es gab eine Zeit wo ich angefangen habe Wrestling zu schauen da hätte ich Undertaker als meinen Lieblingswrestler genannt. Heutzutage muss ich aber einen Vergleich ziehen zu anderen Wrestlern und fair bleiben beim bewerten. Ja, Undertaker war sehr wichtig für das Wrestling der WWE und seine Matches sind auch heute noch ganz gut sehenswert. Aber noch ganz gut sehenswert ist eben keine 10 Punkte wert. 8 Punkte eigentlich für mich, aber er hatte noch viel zu lange weiter gewresrestelt und wusste einfach nicht wann Schluss ist. Deshalb 7 Punkte für den Deadman."
Rating: 7.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "The Undertaker was not a versatile wrestler, not a dynamic character, not an amazing promo, and yet he's one of the all time greats. His stoicism and longevity created an aura only matched by the murder grandpa Minoru Suzuki, and was a great in-ring performer as his unwavering grim determination let his opponents show amazing emotional depth. The End of An Era hell in cell almost brought me to tears, and his ability to brawl and structure a match were amazing."
Rating: 10.0
Sentiment: 0.20000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WhatIsLooveeewrote on 06.02.2022:[10.0] "In the long run, "the dead man" character was not supposed to become something such popular. But Mark made thia gimmick work, becoming a truly iconic wrestler. From a just living zombie, he became a well-developed character with an interesting story. Since the nineties, he has been at the forefront and performed at the proper level for as long as he could. Yes, there were a lot of bad matches, but Mark's contribution to the industry overshadows all the bad and after all, his name is on the ear of many people who have never even heard of wrestling."
Rating: 10.0
Sentiment: 0.07083333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: rishabhwrote on 30.01.2022:[10.0] "One of my all time favorites. His character is so hit and miss and we saw so many wrestlers with that kind of character never work and fade away but Undertaker remained in this business for 30 years and became one of the most popular and iconic stars of all time. From his entrance to his voice to his look everything about him is unique and screams GREATNESS. He did have his share of bad matches and in fact it was only until 1996 that he started having good matches but that's because of his character and why he became such a big name. And later in his career, he started having a lot of classics, his WrestleMania stretch from 2007 to 2013 is absolutely amazing."
Rating: 10.0
Sentiment: 0.2826923076923077
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: danzgalliwagwrote on 29.01.2022:[10.0] "Greatest character of all time doesn't begin to encapsulate the Undertaker's' legacy. He is the essence of a professional wrestling legend--a solid and reliable worker, totally committed to his gimmick, and still humble enough to put over young talent both on- and off-screen."
Rating: 10.0
Sentiment: 0.14285714285714288
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: nunoaewrote on 25.01.2022:[10.0] "The greatest of all time, the phenom of the sports entertainment, the legendary and the fantastic hero of my childhood. I miss him so much... There will never be no one like The Undertaker."
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: comewhatmay927wrote on 24.01.2022:[5.0] "Undertaker has always seemed a bit overrated to me. He does great character work and he used to be very athletic, but all of matches seemed very similar to me. Not a lot of variety to his move set either."
Rating: 5.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Odinseerwrote on 15.12.2021:[10.0] "A simply phenomenal wrestler who became a household name and despite his dulled legacy is still one of the best to have ever stepped in the ring. Character, in-ring, and promo work are all simply perfect/"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: King of Strong Stylewrote on 10.12.2021:[10.0] "Eine der Absoluten Legenden der WWE und auch einer der bekanntesten WWE Wrestler aller Zeiten. Im Ring ist er für einen Big Mann, sehr gut und kann mit dem richtigen Gegner 5 Sterne Matches zeigen (z. b Shawn Michaels, Triple H etc. ), am Mic musste er nicht zu viel machen, aber war dennoch gut und vom Charisma eindeutig einer der besten aller Zeiten. Alles in allem hat der Undertaker sich über seine komplette Karriere die vollen 10 Punkte komplett verdient. R. I. P!"
Rating: 10.0
Sentiment: 0.21666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NoSellwrote on 21.11.2021:[9.0] "Along with Cena and Rock probably the biggest character that people that didn't even watch wrestling still know. He is legendary but he's not getting a 10 because if we're being honest out of his long career his only consistently awesome in-ring years were 2006-2013. Rest of it had A LOT of bad matches, many not his fault but still."
Rating: 9.0
Sentiment: 0.33571428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RBDwrote on 07.11.2021:"Probably one of my favorite wrestlers growing up. He did some things that many other wrestlers did not do at that time. He came in to an interesting era. We didn't have too many scary looking guys and his gimmick was just that. Also he was willing to take risks, and be willing to allow his opponent to do the same. A big responsibility. Deserves respect for all things I've stated. His in ring work is below average by today's standards, but he set the bar so that's expected."
Rating: No rating found
Sentiment: 0.13541666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: benny5bellyswrote on 04.11.2021:[4.0] "One of the best gimmicks and entrances in wrestling but by the time I have finished watching his matches I felt like a deadman. Could occasionally be dragged to a good match. Gets an extra point for putting Paul Bearer on my tv more. Also seems like a bit of a dick. Dreadful strikes despite commentary always hyping them. He also tried to murder his brother so should probably dock points for that."
Rating: 4.0
Sentiment: 0.20000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FACEElmo295wrote on 31.10.2021:[9.0] "The greatest gimmick ever in wrestling. All credit goes to Mark Calaway and how he constantly reinvented, and made the character work. Not too big on his later work that he did in his career, but he finished his career how he wanted to finish it. He was pretty agile for his size as well, and his in-ring psychology was off the charts, legend."
Rating: 9.0
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: OnlyHalfTheEffinShowwrote on 27.10.2021:[10.0] "The greatest gimmick in all of wrestling, used by one of the greatest working big men in all of wrestling. A true GOAT who can truly say he's been everywhere and done everything there is to do I say. Undertaker's career is defined through a mix of the macabre storylines brought on by the nature of the Undertaker character mixed with stellar ring-work, the likes of which few (if any) workers of his size could manage consistently. Admittedly, many of Taker's early matches were much more slow as his size and gimmick as the undead mortician forced him to play the role of the more traditional Monster in the ring, it wasn't until 1997 and the Attitude Era that Taker truly managed to come into his own as a worker and show off what he was really capable of. A character shift into the American Badass following a gruesomely memorable run in the Ministry of Darkness saw Taker add a more human element into his character and allow for more depth, before making a much lauded return as the Phenom and going on the run of a lifetime for more than a decade. The Streak speaks for itself, and is notable for having some of the best matches in WWE/WWF and Wrestlemania history, with Taker going against a whos who of some fo the biggest names of the era from Jake the Snake to Diesel, to Kane, to Randy Orton and Shawn Michaels before meeting a sad end at the gloved hands of Brock Lesnar. Taker's inability to walk away from the ring has admittedly sullied his legacy somewhat, but after finally having a one of a kind match with yet another generational talent in AJ Styles, Undertaker can finally say he's gone out with his head held high, hang his boots and hat up and finally Rest' In' Peace."
Rating: 10.0
Sentiment: 0.2548484848484849
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Die hard fanwrote on 22.10.2021:"The greatest wrestler in wwe history, can be inserted in the discussion of the best wrestler of history. Amazing performance, amazing character work, great mannerism. he's what a professional wrestler suppose to be."
Rating: No rating found
Sentiment: 0.5440476190476191
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Pete Gallowswrote on 07.10.2021:[9.0] "I will give him a 9, mainly because he was able to take this stupid, silly idea for a gimmick and make it his own, to the extent that people not only take him seriously, many consider him the best, or one of the best. He actually made it cool. As a kid in early 90s, I had an official Undertaker VHS, Paul Bearer was talking there with his spooky voice, Undertaker was actually building a coffin in that video and had a handful of early matches, against Kamala and others. It was like 1991 vhs or something. Anyway, very gimmicky character, that just should not have worked, at least not long time - first the Wild West kind of Undertaker, whos also undead, then it became even more supernatural. Its really quite silly, when you actually think about it - but he took it seriously, so it actually became serious- much respect for that. He was quite impressive as a wrestler, meaning- he is a big guy, looked scary, the old school move, jumping lariat, chokeslam, the sit-up, tombstone piledriver- I especially liked the version, when his opponents didn? t put their legs around his head, but kept both legs on one side of his head- it looked less synchronised and more like - you dont need to set yourself up, I am just gonna drive your head into the ground now. His last ride powerbomb later on looked very impressive too. His voice always seemed quite staged, like he was really trying to sound deep and raspy. It is one of the most legendary gimmicks and although there have been some changes back and forth, it has been around for a very long time. I was not crazy about his mohawk and shaved head look, it took some of his mystique away from him imo. He was one of the people thats hard to make a champion, because how do you ever take the belt from him."
Rating: 9.0
Sentiment: 0.1838652482269504
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jltwrote on 26.09.2021:[10.0] "Amazing gimmick, amazing wrestler, amazing promos. I dont know what bad you can say about the Undertaker. He was wrestling for 33 years and he never had to drastically change his character or in ring style. Nobody will ever be like the Undertaker ever again."
Rating: 10.0
Sentiment: 0.27500000000000013
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dartrookwrote on 23.09.2021:[3.0] "Never really been a fan of the American Badass, Deadman, Mean, Phenom, Last Outlaw, Demon of Death Valley, The Undertaker. Only seen a handful of matches of his that I have actually enjoyed and the gimmick (especially the American Badass part) is pretty corny to me. Might have something to do with the fact that he has been part time the whole time I have watched wrestling EDIT: changed from a 5 to a 3 because Sting is so much better at 62 than Undertaker has been for the last 5 years and being old is no longer an excuse he or his fans can use."
Rating: 3.0
Sentiment: 0.07767857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rodycaz IIwrote on 19.09.2021:[10.0] "My favorite wrestler. Greatest gimmick in the history of the business. Truly a legend in every sense of the word."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Thomas644wrote on 30.08.2021:[10.0] "The Greatest Wrestler of all Time in my Opinion. Amazing Character, great in the ring, great on the mic, was always over. I always loved him."
Rating: 10.0
Sentiment: 0.78
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: YourKingMobwrote on 19.08.2021:[7.0] "I would rate him lower, but every time I do, I watch his matches in Japan - especially his match in Michinoku pro... Gawd damn he could go! His fascination with MMA did not at all mesh with his character at any time and while I know it was a huge interest of his, seeing an undead man using bad jujitsu was cringeworthy. Much better in the ring than The Rock, but not as good in the ring as Shawn Michaels and his promos were okay. But he did have an aura and while being a trash person outside the ring, didn't destroy careers like his peers."
Rating: 7.0
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: justpeachykriswrote on 18.08.2021:[10.0] "If every wrestler was even close to an Undertaker, I think we'd have another golden age of wrestling."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: lukerocker9wrote on 15.08.2021:[8.0] "An amazing gimmick that lasted way longer than anyone could have guessed. Had a lot of ups and downs but overall an iconic wrestler"
Rating: 8.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: skeletorwrote on 30.07.2021:[10.0] "Undertaker ist eine Legende! Er hätte nur früher aufhören sollen, aber man kann nur 10 points vergeben für seine Wrestlingkarriere und sein Gimmick!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tomatowrote on 27.07.2021:[10.0] "My favorite wrestler. The legend of professional wrestling. Undertaker has had one of the greatest careers in WWE history. He had charisma, the best gimmick in wrestling history, and great athleticism for a man of his size. He also had so many memorable matches."
Rating: 10.0
Sentiment: 0.6285714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LMC2wrote on 15.07.2021:[10.0] "The greatest character in wrestling history. He was there throughout the end of the Hulkmania days new generation era, attitude era, pg era and so on. He spent so long being great in the ring. He created classic matches at Mania throughout the 00s and 2010s. His matches with HBK, Foley, HHH, Kane, Flair spring to mind as some of my favourites. Only complaint his last few years in ring wise and booking wise weren? t great. His match with Roman wasn? t great nor were his bouts with Cena was 10 years too late. Putting those aside. I will always love the Undertaker. He was always there throughout my childhood and even into adulthood. It would be nice to see him make an on-screen return as a manager."
Rating: 10.0
Sentiment: 0.30900178253119426
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BrayanLaPrewrote on 06.07.2021:[10.0] "My personal GOAT for WWE. We talk a lot about his longevity, but how about the evolution that he underwent during those ~30 years? The Undertaker started out as Frankenstein's monster and slowly showed bursts of athleticism that were simply uncommon for a man of his size. Over time, both his character and his ring work evolved. Story-wise, he has countless moments and feuds that have stood the test of time. In the ring, he has legitimate 5* matches and other classics. In my personal opinion, the best combination of character work and in-ring proficiency."
Rating: 10.0
Sentiment: 0.19642857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Reviewer Champwrote on 15.06.2021:[10.0] "One of The Greatest Wrestlers Of All Time. From His Days To Mean Mark Callous To His Undertaker Days. Had Great Moments in His Career and Matches in His 30+ Year as a Wrestler. Great Feuds Such as Kane, HBK, Triple H, Bret Hart, Lesnar, Mankind and Edge. Had a Great Faction Of The Ministry Of The Darkness. Great Wrestler To As a Big Man Not that many his size can go like he can go. His Gimmick is one of the best in Professional Wrestling and of all time (MaximusKE Stfu)."
Rating: 10.0
Sentiment: 0.49886363636363634
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheRealMccrizzlewrote on 11.06.2021:[10.0] "It? s the Undertaker, how can I not give him 10. Yes there has been a lot of bad associated with him, such as wrestling way longer than he should, but I? m the end he monumental in the world of wrestling. His sheer importance gets him the 10 in my eyes"
Rating: 10.0
Sentiment: -0.23333333333333328
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ALFwrote on 06.06.2021:[10.0] "Eines der besten Wrestling-Gimmicks überhaupt bzw. DAS BESTE Gimmick ever. Unverständlich nur, warum die WWF/E aus solchen Gimmicks wie Mordecai oder Papa Shango keine ähnlichen Erfolge zog bzw. einen Nachfolger aufbaute - oder z. B. Bray Wyatt? Daraus hätte man - wenn auch mühsam einen zweiten Undertaker kreieren und aufbauen können mit Glück und Geschick. Der Undertaker lebt sicher fast ganz allein vom Gimmick, wrestlerisch eher im Mittelfeld bzw. unteren Mittelfeld anzusiedeln. Lebt von seiner Aura und seinem Charisma. Was man auch nicht vergessen darf: Ohne einen Ultimate Warrior hätte es mit Sicherheit keinen Undetaker gegeben. Nur durch dessen Durchbruch beim SummerSlam 1988 wurden solche Gimmicks erst möglich. Selbst wenn der Warrior eigentlich nur 5 Power- Moves (Splash, Gorilla Press, usw. ) konnte (die wirkten wie erlernt auf einem 30-stündigen Volkshochschul-Wochenendseminar) und nur von seinem Gimmick & Körperbau (der sich aber selbst vor Hulk Hogan nicht zu verstecken brauchte! ) + Charisma lebte, war der Warrior hier ein Vorreiter. Und das Undertaker-Gimmick ist der langlebigste Wrestling-Charakter überhaupt."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: zags7000wrote on 28.05.2021:[10.0] "One of the greatest. Some did certain things better but overall few checked off more boxes than The Undertaker. He had an two amazing gimmicks and great charisma. While not the greatest on the mic he was able to cut a solid promo when he needed to. Not the greatest in the ring but in the biggest moments, he had some of the greatest matches ever. Every time he stepped in the ring with Shawn Michaels in particular it was magic. He was one of the first to be able to wrestle a high level as a big man as well. Just his overall presentation to his ability in the ring makes him one of the greatest."
Rating: 10.0
Sentiment: 0.4519501133786849
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mjs2212wrote on 23.05.2021:[10.0] "There are very few characters in wrestling that are as iconic as The Undertaker. One of the most intriguing characters of all time that evolved over time, each showcasing a new side of the Deadman. He could carry a lot of people to have a great match and he's responsible for putting on some of the greatest in history. His battles with Shawn Michaels are obviously well received, but his matches with Jeff Hardy, Triple H, and Randy Orton deserve just as much love. Despite the two unfortunate losses, the streak is an impressive feat and it arguably should've never been broken in the first place. It's hard to argue he's anything but a legend, his list of accomplishments is admirable. A staple to many people's childhoods (including mine), The Undertaker is one of the greatest of all time."
Rating: 10.0
Sentiment: 0.3079233511586453
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Daigotsuwrote on 20.05.2021:[8.0] "The Undertaker is a good study in how you can build a career out of a great gimmick and being able to connect with fans. He was never the best worker. He was average on the mic and frequently needed a manager. But he's had one of the most successful wrestling careers ever because the fans always bought into his weird zombie gimmick. There's been a lot of highs and a lot of lows to his career. But he's definitely had a legendary run."
Rating: 8.0
Sentiment: 0.4272727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Unrightwrote on 16.05.2021:[9.0] "It's the Undertaker. He's not necessarily the best worker, or the best talker, but he's been fantastic at playing to his strengths and covering his weaknesses."
Rating: 9.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The A-Listerwrote on 08.05.2021:[10.0] "Great wrestler. Had some Wrestlemania classics and great characters. Should have retired earlier though."
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Okaro143wrote on 30.04.2021:[10.0] "Undertaker is one of the greatest wrestler of all time. His matches at WrestleMania from the 23rd edition to the 29th edition were some of the best matches in WM History and most if not all of them were easily the best match of the night. His in-ring ability is really good considering he is almost 7 ft tall and near 300 pounds. And his gimick is just awesome. But why he keeps on tarnishing his legacy by returning and being involved in a lot of subpar matches. Thankfully his last match against AJ was very fun and should be his last match."
Rating: 10.0
Sentiment: 0.5566666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: uziwrote on 30.04.2021:[8.0] "Definitely on the overrated side, but he still gets an 8 because of what he's accomplished, and also because I think you can point to him as a great example of how to work a big man style, I think he was instrumental in developing the modern version of it especially for guys like Archer."
Rating: 8.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 7Flatewrote on 17.04.2021:[10.0] "An absolut legend! The best gimmick ever, one of the best big guys in the ring ever. Watch his 1998 ministry of Darkness segments, then you see that hes one hell of a micworker."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JTIwrote on 18.03.2021:[10.0] "Undertaker's kind of hard to rate. Was he a good *wrestler*? I mean, not really, but he still had some great matches depending on the opponent and stipulations. Was he good on the microphone? Eh, not really either, but he was still an integral part of the some the most memorable storylines and angles in WWE history. Thing is, you don't need to be a technical master to be entertaining and effective. In an age of wrestling plumbers, minotaurs, spacemen, and friars, Mark Calloway somehow managed to not only make a Zombie Mortician Wizard gimmick work, but be one of the best characters WWE's ever had. His imposing figure and dedication to character work are what he really put him over the edge and made him such a legend, to say nothing of his stellar reputation outside of the ring and his consistent status as a reliable locker room leader. He's a prime example of a whole being greater than the sum of its parts. I wish we could do 0. 5 ratings on this website because he probably should get half a point knocked off for having several Worst Match of the Year contenders in a row during his twilight years. But then again a payday is a payday and he did redeem himself by fittingly enough going out pioneering a new match style for WWE so it's really not fair to hold it against him that much."
Rating: 10.0
Sentiment: 0.1832941483803553
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Takerfan99wrote on 02.03.2021:[10.0] "The literal Greatest of all time. The Undertaker is the most dedicated, loyal, and passionate wrestler in all of pro wrestling, especially when u watch interviews and the Last Ride documentary. Great in the ring and out of it."
Rating: 10.0
Sentiment: 0.32291666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LucaGG18wrote on 19.02.2021:[10.0] "The first one who says that the Undertaker did not mark the history of wrestling in the world, prevent him from watching wrestling for the rest of his life! This man is a god in the wrestling world, he is worshipped, respected, and we all look forward to the day when he will be inducted into the WWE Hall Of Fame."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: michmoose21wrote on 14.02.2021:[10.0] "This dude below me really made three accounts just to shit on Undertaker. Wow. The Undertaker is the best character of all time and is one of the best minds for the business."
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: cal9099wrote on 11.02.2021:[6.0] "One of, if not the most overrated wrestlers of all time in my opinion. I can appreciate his classic WM matches and the aura of his character at it's peak, but I've always found the gimmick mostly cheesy. His later years truly tarnished him for me as well with some outright awful performances. Knowing when to stop was certainly not one of Taker's strong points."
Rating: 6.0
Sentiment: -0.07244897959183673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: lutherreignsfanwrote on 04.02.2021:[10.0] "My favourite wrestler ever and even though he had gone down hill in the last few years of his career it doesn't effect my score for him."
Rating: 10.0
Sentiment: -0.11851851851851852
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Elusive12wrote on 04.02.2021:[10.0] "The Undertaker, one of the greatest gimmicks of all time. From just one of those wacky gimmicks to an absolute legend that spans over decades. I will forever cherish his WM streak mode matches from RA to PG era because of how it affected me as a fan."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kungwrote on 26.01.2021:[10.0] "I mean, it's The Undertaker. He's the greatest character in the history of wrestling. For that alone, he's one of the greatest to ever do it."
Rating: 10.0
Sentiment: 0.5625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Uweuwesenwrote on 25.01.2021:[10.0] "Eine der größten Legenden, die jemals einen Ring betreten hat. Das wohl bedeutendste Gimmick aller Zeiten. Sowohl im Ring als auch am Mic absolut Top und zwar genau so, wie das Gimmick das wollte!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Brett1980wrote on 25.01.2021:[10.0] "The best Gimmick of all time. In a time where lame gimmicks were just being chucked around he went with his and never looked back. Always adding new elements to it."
Rating: 10.0
Sentiment: 0.1590909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Icon is the bestwrote on 02.01.2021:[10.0] "The Undertaker was always an excellent wrestler, but a great one. If we look at the ten best matches in WWE history, we will find The Undertaker participated in seven of the ten matches. The best wrestlers in the world were their best matches against The Undertaker such as: Triple H, Shawn Michaels, Kurt Angle and Brock Lesnar. Even when he became bored in the modern millennium, he returned with another character and was able to attract many people, I know maybe he did not play many matches in weekly shows, but this is the nature of his character so that his losses do not exceed his character and his character is wasted? Many current wrestlers always like to be like the Undertaker, far from being a wrestler, He is also a role model."
Rating: 10.0
Sentiment: 0.3764705882352941
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ItsKyleTimewrote on 20.12.2020:[10.0] "OK. The Undertaker (Mark Calloway) Is One Of The Best Wrestlers In Wrestling History. He Went From Deadman To Badass To Deadman. He Won A Championship In His First Match. He Is One Of The Most Influential Wrestlers In History. He Has Done Many Things, Many Gimmicks, Many Matches Over His 33 Year Career. THANK YOU TAKER!"
Rating: 10.0
Sentiment: 0.5535714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Abo96wrote on 19.12.2020:[10.0] "Jetzt nachdem seine Karriere (wohl? ) endgültig vorbei ist kommt man nicht drum herum ihm die 10 Punkte zu geben. Der Undertaker hatte eine der größten Karrieren aller Zeiten. 30 Jahre mit dem selben Gimmick, natürlich mit unterschiedlichen Phasen, als Full-Time-Wrestler immer im Main Event, unzählige Topmatches und legendäre Momente. Großen Respekt für diese Leistung und seine Verdienste um das Business."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Old ride long linewrote on 14.12.2020:[10.0] "My all time favorite wrestler! It blows my mind that he has five 0? s lol the disrespect! He was a 7 time heavyweight champion holding the belts in 3 different decades! 25-2 at the biggest wrestling show every year since 1985. He? s beat your dads favorite wrestler and your kids favorite wrestler. He is the G. O. A. T and you can? t legitimately dispute that unless your names ric flair, hulk hogan, John cena, or Shawn Michaels. He is the one guy that, for basically his entire career, gives you that big game/big fight atmosphere every time he goes out to the ring. And because he wasn? t always the campion you literally never ? knew? wether he was gonna win or not, but the one thing you did know was that it was gonna be fucking awesome. His feuds with hbk, Bret hart, Austin, hhh, Kane, lesnar, mic foley, Yokozuna, hulk hogan, ric flair, Kurt angle, Bautista, edge, cm punk and randy Orton are the stuff of legends. To me he embodies what wrestling is, that being pure entertainment. He was one of if not the only guy who could put people over by beating them and never lost face when he did lose. He gave us all time technical clinics, he gave us the most ecw shit you ever saw, and everything in between. In conclusion, The crowds that the undertaker preformed for demanded more than just zero character work and high technical proficiency, they demanded a spectacle and he delivered more than anybody in the history of the game! THANK YOU TAKER!"
Rating: 10.0
Sentiment: 0.2630612244897959
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rick1Pwrote on 06.12.2020:[10.0] "quite simply the greatest gimmick in WWE history. an exceptional career punctuated by memorable rivalries but also matches that will forever remain in the minds of fans for decades."
Rating: 10.0
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Legend003wrote on 03.12.2020:[10.0] "Für mich einer der Greatest-Of-All-Time. Schon alleine seine Präsenz brachte Gänsehaut. Ich habe ihn immer gerne im Ring gesehen (vielleicht abgesehen von seinen letzten Matches). Hoffe er kann seinen Retirement genießen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: smartmarxwrote on 23.11.2020:[9.0] "I used to be very anti-Undertaker, I thought he was boring and overrated... but now I see I was wrong. He is everything good about wrestling, he is constantly changing but at the core he is always the same. He is super badass while also being kind of embarrassing (in a charming way), he is silly yet cool as hell, he is amazing while also being kind of awkward (also in a charming way), the man is a zombie/biker/mma-wannabe held with the reverence of like a civil rights figure... it owns. Say what you will about the man himself, The Undertake is incredibly sick and I am glad to have come around to him. My favorite era of the Undertaker is definitely Big Evil, all of the Biker taker eras rule but Big Evil with his bandannas, large hoodies, and timbs is the kind of cool badassness i want from a guy with his (now-ex)wife's name tatted on his throat who rides motorcycles and calls himself Big Evil, everything about that look and era for me clicked and that was how I stopped worrying and learned to love The Deadman..... Rest..... In.... Peeeeeeeeeeeeeeeeeeeeeas"
Rating: 9.0
Sentiment: 0.04047619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Upgrayeddwrote on 06.11.2020:[10.0] "The fact that The Undertaker isn't Top 10 on this website is insulting. This man is an absolute legend, a great gimmick, amazing in ring skill and all around safe worker. The best professional wrestler of all time if you ask me"
Rating: 10.0
Sentiment: 0.3375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: medousewrote on 03.11.2020:[10.0] "The true legend and an icon of professional wrestling. One of the best gimmicks ever. For over 20 years he was unbeaten at annual WrestleMania events. His wrestling career will never be forgotten."
Rating: 10.0
Sentiment: 0.48333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: eleddie2914wrote on 28.10.2020:[10.0] "The Undertaker is a legend he is one of the greatest of all time his passion for the business made him what he is today. He stayed in character for 30 years for the business that is just epic Taker is good at everything form matches to promos. Mark Calloway is a living legend"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tomas Montoyawrote on 10.10.2020:[10.0] "Man, Undertaker is one of the reasons why I love pro wrestling. A very professional wrestler who knows how to give excellent matches."
Rating: 10.0
Sentiment: 0.5433333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Swantonbstonewrote on 16.08.2020:[10.0] "A gimmick that should never have worked. A wrestler that has nonetheless transcended the decades. Thank you for everything, 'Taker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fayzalwrote on 15.08.2020:[10.0] "The greatest WWE creation of all time, Amazing how he was able to pull of a gimmick like The Undertaker, Also he became the complete package in the 2000s after his In Ring work improved. We have seen him keep his character fresh by going through Ministry Taker, American Badass, Big Evil, The Deadman etc. Has some of the most memorable entrances in the history of wrestling. The Streak has to be one of the biggest things in Pro Wrestling history which cannot be rivalled as hard as someone who wanted to recreate it would try. He always came back to help out the company and never left in its darkest times, Even past his Prime he still had a few memorable matches with CM Punk, Brock Lesnar at Hell in a Cell & The match in which he teamed with Roman Reigns against Shane & Drew which was a great surprise in how the match turned out. The Boneyard match was the perfect sendoff for him and he was able to work with another great in AJ Styles, even though it wasn't in a traditional wrestling match, which was probably for the better."
Rating: 10.0
Sentiment: 0.2662878787878788
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: taabr2wrote on 10.08.2020:[10.0] "This guy took what should have been a wrestlecrap gimmick and became one of the biggest stars in WWE history. That's a 10/10 alone."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ma Stump Pullerwrote on 29.07.2020:[8.0] "Brilliant at character work and arguably the most committed to preserving his gimmick in wrestling history. While he's had some amazing matches, his actual in ring quality was not (consistently) good until the mid 2000's, in which he started to work less often and as such had more time to rest up and gave him more freedom in the matches he did have. Undertaker during that prime was one of the best around in the company, no question. He was also really not good at being the top guy in the company as well: when he did have the main belt, it wasn't very remarkable or anything special. You could argue that he didn't need it to get himself over, but not being able to get people invested as much as the other guys who were in that role is a pretty big issue. Undertaker's promos as well when he wasn't just going over catchphases was pretty eh as well. Him being silent spoke a lot more to the character rather than him talking a lot, so it's understandable why he wasn't the best in that avenue."
Rating: 8.0
Sentiment: 0.3082857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Divus Rolexuswrote on 16.07.2020:[10.0] "The Undertaker is the most famous gimmick ever, he may not be the best in-ring worker but is one of the best story-teller that ever lace up a pair of boots. He is the wrestling icon."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sabbathbloodysabbathwrote on 13.07.2020:[9.0] "(My ratings only take into account wrestlers during the peaks of their careers, or close enough to it, not when they're green or past their prime. ) Taker is unmatched in terms of pure presence, put on plenty of good matches during his day, and turned what could have been a career-killing gimmick into one of the most over characters in wrestling history. Also, I did like the badass biker character, and thought it made sense for him during that era. He's a legend for a reason, but he's not quite at the level of a 10 for me, since how good he was depended somewhat on who his opponents were, He wasn't quite at the level where he could have great matches with mediocre opponents, but give him the right opponent he'd give us a classic."
Rating: 9.0
Sentiment: 0.20138888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JJB888wrote on 07.07.2020:[10.0] "The Undertaker is the greatest character in wrestling history and Mark Calaway is the consummate professional. Over the years in his 3 decade tenure at WWE, he has created countless memories that will (and already have) stand the test of time, put over stars and gone above and beyond the call of duty to perform for fans. Whether it's his WrestleMania streak, his atmospheric entrances, his unmatched dedication to the character or his tremendous ability to tweak his character/moveset to keep The Undertaker fresh and in demand over his incredible run, it is impossible to imagine a WWE without him. Fantastic in the ring and one of the best wrestling storytellers ever, from any perspective The Undertaker should be considered one of the greatest wrestlers to ever lace up the boots. A true Phenom. No other wrestler has meant as much to me as a fan and all my life The Undertaker has been a part of WWE and been there to give me so many cherished memories. In my opinion he's the best ever."
Rating: 10.0
Sentiment: 0.4127314814814815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Viniciouswrote on 26.06.2020:[10.0] "What else can be said that hasn't been said. The man, the myth, the legend. I remember when I was three or four years old when he defeated Hulk Hogan at Survivor Series 91. Ever since, it's been quite a ride or loving, hating, disliking, liking, the entire spectrum of the Undertaker. Through injuries, and absences, his years in wrestling should be put up against all the "greats. " Hulk Hogan, Ric Flair, and Bruno Sammartino as characters and figures are probably the only wrestlers ahead of Taker in the all-time team in my book."
Rating: 10.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: UnderTakerFreakwrote on 23.06.2020:[10.0] "Incase my username doesn't make it clear I love The Undertaker! Not only is he my all-time favorite wrestler but he is the guy that got me into wrestling in the first place. I am not too sure if I would be so much into this amazing form of entertainment if it wasn't for him. He has one of the best gimmicks of all time and I like how it slightly changed from the classic dead-man UnderTaker and The American Bad-Ass etc. No matter the change, he always brings a mysterious and eerie presence to the arena. His brawling style of wrestling might not be for everyone but IMO it fits him in his prime he can really go for a long time and be one tough son of a bitch like when he was caught on fire for a brief second and still wrestled in The Elimination Chamber, he makes no excuses to not work. Also seems to be a real leader in the locker room at one point as he was one of the few people to not take any of Shawn Michael's bull shit and threaten him to drop the title to Austin at WrestleMania 14. Now I won't deny his quality of work has dropped significantly over the years and I say his last REAL good match involving his legendary streak was his Streak VS Retirement match against Shawn Michaels at WrestleMania 26 and the last thing really noteworthy of his streak since was well..... when Lesnar broke the streak. Not even when Roman Reigns beat him 3 years later was all that special to me other then when he suppose to have "retired". Irregardless of the lack of quality in his matches for the past few years, I always loved the Deadman and I always will. I own a lot to this guy and I know the wrestling business owns alot to to him too. REST...... IN...... PEEEEEEEEAAAACCCEEEE!"
Rating: 10.0
Sentiment: 0.1898072562358277
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wrestling Foreverwrote on 22.06.2020:[10.0] "Wie ich es schon in meinen vorhrigen Kommentar schrieb der warum auch immer gelöscht wurde. The Undertaker ist eine absolute Legende und kommt zu 100 Prozent in die WWE Hall Of Fame. Auch wenn die Streak gebrochen wurde so eine Siegeserie wird es nie wieder geben niemand wird diesen Rekord bei WM brechen. Immer wieder hat er sich neu erfunden wurde besser und schneller und hatte zig legendäre Fehden, Promos und Rivalitäten. Wenn er irgendwann in den Ruhestand geht wird er eine rießen Lücke hinterlassen da niemand ihn kopieren kann. Edit: 22. 06. 2020. Inzwischen lebt er nicht mehr total In Kayfabe. Aktuell gibt er viele Interviews über Schalte und das Out of Charakter, dann hat er Instagram und Twitter und ist auch offen wie zu seiner Biker Zeit. Ich weiß das es bald soweit sein wird da wird er In Gimmick nach Death Valley reisen und erstmal sich ausruhen. Edit Es ist nun passiert er hat seine Karriere erstmal wirklich beendet. Danke Taker für die vielen Jahre."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: steinericwrote on 12.06.2020:[10.0] "Ich finde Undertaker ist eine absolute Legende. Dennoch ist sein Körper seit WM 30 sehr gezeichnet. Aber davor hatte er gute Wrestlemania Matches in dem er Zeigte das er ein guter Big Men ist. Auch diese Wrestlemania war cool mit dem Boneyard match wo er sich nochmal ein bisschen neu erfunden hab."
Rating: 10.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Johnny Cwrote on 26.05.2020:[5.0] "5 points for longevity, and name value. In fact, his gimmick was every bit as "Cartoony" as the Red Rooster or Duke 'the Dumpster' Droese. He became a respected locker room leader, and lots of top stars wanted to work with him. But his actual drawing power when he was on top was slim to none. He always gave his all, which is good, but his all was somewhere below the likes of Austin and Rhodes, which is not so good."
Rating: 5.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JMacGwrote on 20.05.2020:[10.0] "The Undertaker is the epitome of what a professional wrestler should be. You've got a man, who's worked 33 years doing this. 30 years in WWE. WWE being the biggest, most successful, most well known wrestling promotion of all time. You've got the likes of Terry Funk, Jushin Liger, Abdullah the Butcher, Ric Flair, Hulk Hogan - all have had very long careers but with the exception of Flair and Hogan - not very well known or heralded. Even Flair and Hogan have not had the longevity on a consistent basis like The Undertaker. He took a character, a gimmick which was probably the hardest to be able to sell on a large scale basis and made it the greatest in history. He's morphed, adapted, changed, modified himself for 30 years to be able to be considered the greatest wrestler in the greatest wrestling promotion of all time. For Undertaker, his success hasn't came from all the things that made the other big stars successful. It's his reliability, his loyalty. His love, passion and desire for the business and to do what he loves, in a way where at the end of the night, he can leave feeling like he's earned the right to because he's been able to give feelings, emotions to people and get them to invest in something that he's dedicated his life to. No easy task. The reverance, the respect, the inspiration the very mention of his name demands is testament to who he is. You'll never hear a bad word spoken about him. Any and all promotions/wrestlers have the same respect and reverence for him. When you watch him, you know you're watching the greatest that ever did it. The Godfather of Wrestling."
Rating: 10.0
Sentiment: 0.3457333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JuWFEAEwrote on 16.05.2020:[10.0] "Der Wrestler mit der wohl meisten Ausstrahlung aller Zeiten. Sein Moveset ist legendär und sein Können im Ring unbestreitbar. Ich bekomme immer noch Gänsehaut wenn ich seine Promos höre und seine Matches der letzten Monate und Jahre find ich noch immer ziemlich gut. (außer das Goldberg Match)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BastitheBrainwrote on 21.04.2020:[9.0] "Die Legende, Icon - neben Hogan das Gesicht des Wrestling. Auch die Hintergrundgeschichten sprechen für den Taker. Selbst Leute wie Jim Cornette oder Bret Hart sprechen nicht schlecht über ihn."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Eggi1304wrote on 11.04.2020:[4.0] "Ich war nie ein großer Fan vom Undertaker. Ehrlich gesagt war und ist mir dieses Deadman Gimmick viel zu trashig. In Ring technisch finde ich ihn ebenfalls nicht besonders gut. Solide aber eben nicht mehr. Diesen elendig langen Entrance finde ich auch zum Einschlafen, für mich jedes mal die beste Gelegenheit pinkeln zu gehen. Mittlerweile kann ich ihn auch nicht mehr wirklich ernst nehmen, die Aura von früher ist schon lange verflogen. Er wirkt einfach nur noch wie ein alter gebrechlicher Mann. Er hätte schon vor Jahren nach dem Brock Lesnar Match und dem Streak Ende in Rente gehen sollen. Nichts desto trotz muss man zugeben, dass er das Wrestling Business geprägt hat wie kaum ein Zweiter. Eine der größten Legenden im Wrestling und das wird er wohl auch immer bleiben. Das steht alles völlig außer Frage. Aber wie gesagt, ich persönlich feiere ihn nicht so sehr."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AlexLikesJoshiwrote on 08.04.2020:[4.0] "I have to give him some credit he had longevity and remains over with the audience to this day. In terms of his in ring work though he was always vastly overrated and was really only a good worker for short spells. Most of his most famous matches also don't hold up on rewatch (e. g. the two Mania matches with Triple H following the Shawn Michaels series)"
Rating: 4.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: alex121wrote on 06.04.2020:[7.0] "I believe he's one of the best when it comes to his Wrestlemania matches from the Batista match till the Punk match. Character work is absolutely top notch, I just know that most of his work rate from the 90's wasn't that great and if I am to make an overall rating I have to take in the negatives as well as the positives."
Rating: 7.0
Sentiment: 0.5599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ferdinand Fisawrote on 05.04.2020:[10.0] "Den Undertaker kann man einfach nicht haben. Kein Charakter hat das wrestling so geprägt wie dieser Mann. Hut ab für diese legendäre Karriere!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AAA3000wrote on 07.03.2020:[6.0] "War leider technisch nur Durchschnitt, was er aber durch andere Qualitäten wie Präsenz, Ausstrahlung und abseits des Ringes bzw. am Mikrofon wieder wettmachte. Die Wertung aktuell ist meiner Meinung nach überbewertet. Was mich aber am meisten stört (gilt auch für Kane), dass sie Matches langweilig gemacht haben. Ach da kommt der Undertaker oder Kane und niemand kann sie stoppen obwohl die gar nichts draufhaben. dann lieber eine Kofi Kingston mit bescheurtstem Gimmick, der zumindest was drauf hat im Ring und nicht sinnlos mehr gepusht wird als plausibel ist."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Conorwrote on 03.03.2020:[10.0] "My favorite wrestler of all time. Just an incredible character. I enjoy his matches and his move set as well as his ability move in the ring like a much smaller man. Was able to evolve his gimmick at least half a dozen times to keep from getting stale. Is a no brainer hall of famer."
Rating: 10.0
Sentiment: 0.16666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JRosinskiwrote on 28.02.2020:[10.0] "In my opinion, the Undertaker is the greatest and most legendary wrestler of all time. An outstanding in-ring performer with an extraordinary gimmick, along with his ability to evolve and adapt. I have incredible respect for this man and I've always been a great fan of him. It's going to be really sad to see him finally retire from wrestling but it's really evident that he can't go on forever. I still believe he will be utilised on special occasions as he's signed a 'contract for life' with the WWE, but otherwise he should avoid performing in the ring. Let's hope his last few matches are booked well and see Undertaker performing at a decent standard for his age."
Rating: 10.0
Sentiment: 0.34047619047619043
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheMan89wrote on 25.02.2020:[10.0] "The Undertaker has the greatest gimmick in the history of the business due to its longevity and the legacy he has created over the years. He will go down as one of the best ever to lace up a pair of boots and was a great locker room leader for the boys in the back. He may have not been the best worker of all time but his work indeed improved towards the end of his career as he worked with great legends such as Shawn Michaels and Triple H. I feel like his career is coming down to end since his work rate is slowing down and he makes fewer appearances a year but he will always be an attraction for the company as long as they continue to use him. He has now wrestled into 5 decades as he is expected to wrestle a match at WM this year against AJ Styles who I think can help Taker have another good match. Taker has been going now almost 30 years in the WWE and I feel like this could be the year he finally retires and he could retire at WWE Survivor Series where he debut in 1990."
Rating: 10.0
Sentiment: 0.3038888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FrankSiverowrote on 06.02.2020:[10.0] "Der möglicherweise bekannteste und populärste Wrestler aller Zeiten. The Undertaker hat viele WWE Eras durchlebt und war stets einer im Mittelpunkt. Was dieser Mann für das Wrestling Business leistete (und immer noch leistet) ist einzigartig. Seit inzwischen 30 Jahren verkörpert Mark Calaway die Rolle des Undertakers und schafft es bei jedem Auftritt die Fans nicht nur zu unterhalten sondern auch Gänsehaut Momente zu entwickeln. Im Ring gehört The Undertaker ebenfalls zu einem der aller Größten man denke nur an die beiden Wrestlemania Matches gegen Shawn Michaels. Sein Micwork, sein Storytelling, sein Auftreten, sein Entrance, seine Legacy, seine Wrestlemania Momente das alles machen den Deadman zu einer echten Lebenden Legende. Hut ab!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Excellence of Executionwrote on 18.12.2019:[10.0] "Eine absolute Legende des Sports! Wahrscheinlich auch eins der bekanntesten Gesichter. Ohne jemals DER Topstar vom Kaliber eines Hogans, Rocks oder Austins gewesen zu sein, ist der Undertaker sicherlich nicht minder bekannt als eben diese Herren. Hat er doch mehrere Epochen der WWF/WWE mitgeprägt. Wahrscheinlich der Mann mit dem besten Gimmick der Wrestling Geschichte. Allerdings finde ich, dass er spätestens bei Wrestlemania 33 den Hut an den Nagel hätte hängen sollen. Mittlerweile tut er sich mit seinen Auftritten in aller Regel keinen Gefallen mehr. Da kann man sich zwar für seinen ikonischen Einmarsch begeistern. Doch spätestens mit der Ringglocke kommt die Ernüchterung. Dann wird der Dead Man zum Old Man. Mittlerweile kann keine Dosis an sentimentaler Nostalgie diesen Umstand in ein besseres Licht rücken. Anno 2019 (bzw. fast 2020) muss man leider festhalten, dass der Taker den Absprung verpasst hat."
Rating: 10.0
Sentiment: 0.0875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Unknown Challengerwrote on 09.11.2019:[9.0] "The Undertaker is one of the most recognizable legends in pro wrestling. He has a suprisingly great in-ring skills for a large size athlete. He can cut good promos. Despite of having a very cartoonish deadman gimmick on a paper (not including his biker run in 2000-2003), he actually managed to make it fascinating and a little bit more believable, thanks for his natural charisma. He managed to become a full-time main eventer in WWF/WWE for many years even though he was not the main top guy or the biggest draw of the company because of silly concept of his in-ring character (walking deadman). He earned a huge respect in locker room through his leadership skills no matter how harsh his methods were sometimes in his "Court". In result, we have a man who accomplished everything by his own effort and gave a big influence in an industry of pro wrestling and its popularity."
Rating: 9.0
Sentiment: 0.2587549603174603
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Leionhartwrote on 19.09.2019:[9.0] "An Icon of the industry, Undertaker deserves all the praise and acclaim he has garnered over the years for his longevity and loyalty to McMahon. However, that loyalty to McMahon is starting to tarnish the mystique of the Undertaker persona. The occasional one-off appearance is good and all, but not if it just leads to another match. Undertaker is showing his age every time he shows up, and it is just sad watching one of the all-time greats wither in the ring."
Rating: 9.0
Sentiment: 0.04999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DCFC95wrote on 22.08.2019:[10.0] "I knew about The Undertaker even before I got into wrestling, heck even people in my family who never seen a wrestling match in their life knew who The Undertaker was. He took a gimmick which would sound silly on paper and made it perhaps the greatest character ever. Had awesome matches too with fantastic storytelling and survived some horrible angles. 10/10"
Rating: 10.0
Sentiment: 0.21666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wrestlefan20wrote on 14.08.2019:[10.0] "Undertaker is the all-around best wrestler in the business. He put on a lot of great matches, cut great promos, has extreme longevity and is reliable and loyal. Few wrestlers could last as long as he did."
Rating: 10.0
Sentiment: 0.30648148148148147
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[10.0] "One of those "no brainer" guys for being in the conversation of best ever. Entrance, character, longevity, matches, feuds... the list goes on and on with how many amazing things should be in the same breath with the Undertaker."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheV2wrote on 19.07.2019:[8.0] "By far the most iconic and popular wrestler in pro wrestling history who's actually just known for his wrestling career. The Undertaker gimmick itself was good, but it became a master-piece only due to his passion. We can't forget the amazing underrated in-ring work - especially his very unique move-set.  If Undertaker had retired after "The End of an Era", he would surely be a 10/10 wrestler for me. But as his unnecessary appearances get repetitive and his matches only exist due to his fame without any quality, the deadman damages his and others' career. For all the love he put into the wrestling business, we and the WWE must take responsibility to let him fully retire before something worse happens."
Rating: 8.0
Sentiment: 0.17708333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheGoatwrote on 22.06.2019:[9.0] "Undertaker was handed, what on paper, was an absolutely silly gimmick, yet he made it work for 25 years.  Like a fine wine, he seemed to get better with age and had some of greatest performances well into his 40's.  While not a perfect worker he was expanded his repertoire and evolved with the times.  The only real black mark on his career was he held on just a bit too long and probably should have retired after losing to Brock Lenser at WM30 as his last few performances were pretty awful."
Rating: 9.0
Sentiment: -0.027777777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dragon Fighterwrote on 19.06.2019:[9.0] "An icon of WWE and pro wrestling in general for sure. An idol for many fans and young kids as well. Sure, he did have a lot of great matches under his belt but his in ring work was never consistent in his whole career. Shitload of bad matches from 90s, 00s and 2010s with many opponents from bad to good workers. However, I can't deny his contribution to WWE and pro wrestling overall. He will always be remembered as the GOAT. I can agree. But I can't give full 10. First of all, I don't think his in ring work is that excellent. His character work is repetitive and boring at various points. Secondly, he seems to ruin his own legacy when he still does not retire. He continues to wrestle and produce more bad matches after the streak is over. And I don't blame him 100% because who can refuse shitload of money thrown in front of their eyes?"
Rating: 9.0
Sentiment: 0.1336956521739131
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Garrettwrote on 17.06.2019:[10.0] "Undertaker is the greats wrestler in the history of WWE. Between his 7 world title reigns, his WrestleMania streak, memorable rivalries, and the ability to reinvent himself, Taker has cemented himself in the history books. It doesn't matter if his current matches aren't that great (c'mon he wants to retire, but Vince won't let him) his legacy will never be changed."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Houbeywrote on 03.05.2019:[10.0] "Kane und The Undertaker, die Brüder der Zerstörung sind und waren schon immer meine lieblings Wrestling Stars gewesen und das wird es auch bleiben. Ruhe... in... Frieden... ! ;-)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TylerWhitewrote on 25.03.2019:[10.0] "Die große Konstante der WWE. Es gab immer größere Topstars als ihn Hogan, Bret Hart, Stone Cold, The Rock, John Cena, doch diese kamen und gingen und waren meist nicht sonderlich talentiert. Doch der Undertaker blieb und hatte jedes Jahr mindestens ein Match, welches so oft einfach großartig war. Seine Streak war die größte Errungenschaft, die es jemals im Wrestling gab und so oft hatte er gerade in den späteren, schwächeren, Manias das Match of the Night, im Endstadium seiner Karriere. Gerade mit Edge, Batista, HHH und sogar 2013 noch mit CM Punk hatte er hervorragende Matches und seine Matches gegen Shawn Michaels sind mit die besten überhaupt. Bis zum Streakende hatte er wirklich hervorragende Matches, alles danach (Bis auf die anderen Matches mit Lesnar) war zwar schlecht und unnötig, aber dennoch nimmt es nichts von seinem Legendenstatus. Diesen hatte er nämlich schon lange, denn in jeder Ära konnte er sich neu erfinden und als einer der Topstars agieren. Noch dazu ist er auch ein absolut talentierter Wrestler, der zwar extrem groß ist, aber dennoch unglaublich agil ist und sehr viel im Match zeigen kann. Auch am Mic ist er sehr stark und brauchte auch seinen Manager Paul Bearer später nicht mehr. Sein Charisma ist bis heute unübertroffen und sein Entrance ist der epischste ever, bei dem sofort Big Time Feeling aufkommt. Das Gimmick ist natürlich absolut großartig und wohl das beste, das es im Wrestling jemals gab, da es zwar übernatürliche Elemente hatte, aber nie zu übertrieben war und noch dazu so wandlungsfähig ist, dass es zu jeder Ausrichtung der WWE passte. Insgesamt ist der Undertaker gerade durch seine herausragende und extrem konstante Karriere einer der größten Wrestler ever und eines der besten Gesamtpakete aller Zeiten."
Rating: 10.0
Sentiment: -0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Der Commanderwrote on 11.03.2019:[10.0] "LEGENDE! Mehr gibts garnicht dazu zu sagen. Vom Gimmick, über die präsenz im Ring, Storytelling. Dieser Mann hat fast 30 Jahre die WWE Fans unterhalten und verschiedenste Eras durchlebt. Danke, Mark Calaway für alles. Sollte eigentlich schon längst in der WWE Hall of Fame sein!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 20SaiDa19wrote on 06.02.2019:[4.0] "Never been the biggest fan of the Undertaker; I have always found his gimmick and particularly his entrance to be boring and even though he did eventually become a good in-ring talent, good matches were few and far between the first 15 years of his career."
Rating: 4.0
Sentiment: 0.10238095238095236
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: blackx18wrote on 30.01.2019:[10.0] "Der Undertaker, The phenom the Deadman The Big Evil, The Legend. Der in 2 Jahren 30 Jahre fast ununterbrochen bei der WWE ist und unfassbare Leistungen abgeliefert hat seien es seine Mania Matches gegen Shawn Michaels oder Triple H oder seine krasse Ausstrahlung und Charisma oder auch sein Gimmick oder Micwork. Der Mann war einfach in allen Bereichen einer der besten of all time. Sein Gimmick hat er immer glaubwürdig rübergebracht auch Big Evil war gut und hat überzeugt. allerdings ist er mittlerweile 53 und kann schon lange InRing nicht mehr so überzeugen wie vor 10 oder 15 Jahren und meiner Meinung nach hat man hier den retirements Zeitpunkt schon verpasst. Und die letzten Matches vom Taker waren auch die falschen Gegner seinen es Shane oder Reigns oder das Vollkommen sinnlose Match mit Kane gegen DX. Das Streakende war zudem auch gegen den falschen Gegner. Aber wie den auch sei ist und bleibt der Undertaker mein absoluter Lieblingswrestler und mit Hulk Hogan Steve Austin The rock und vielen mehr der prägendste Wrestler of all Time. Und seine Matches gegen Michaels Triple H Mankind Edge und Brock Lesnar und viele mehr bleiben für immer in Erinnerung! THANK YOU TAKER!"
Rating: 10.0
Sentiment: -0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LandonRyanWyattwrote on 30.01.2019:[10.0] "The greatest gimmick of all time in the business. The greatest phenom in wrestling history. One of the truly great icons in this sport. An incomparable legend who has stood the test of time."
Rating: 10.0
Sentiment: 0.7999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jc1551wrote on 26.01.2019:[10.0] "Quite simply the greatest character in the history of professional wrestling. Nobody will ever come close to duplicating what he has done."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JEK 1991wrote on 24.12.2018:[10.0] "A legend for sure. First sinister looking wrestler to become a babyface. His career has been long and the longest active WWE wrestler. His moves are exciting and entertained many fans for years."
Rating: 10.0
Sentiment: 0.12380952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Steamboat2511wrote on 05.12.2018:[10.0] "Der Undertaker ist eine pure lebende Wrestlinglegende. Für seine Statur zeigt er erstaunliche Leistungen im Ring, wo er tatsächlich zu den besten seiner Zunft gehört. Sein Gimmick ist unerreicht gut und kreativ. Die WWE hat hier vor Jahrzehnten eine wahre Marke geschaffen, die wohl für immer unerreicht bleiben wird. Stets zwischen Heel und absolutem Face schwebend, konnte der Taker beides perfekt ausfüllen. Seine Mic-Work ist ebenfalls als stark bezeichnen, auch wenn es hier noch stärkere Worker gibt. Verschiedenste Matches des Takers gehören für mich zu den besten überhaupt (natürlich nicht in der Frequenz eines HBK) und sein Auftreten sorgt fast immer für pure Unterhaltung. Als Gesamtpaket gehört er in meine Top 5."
Rating: 10.0
Sentiment: 0.18571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TANK 81wrote on 29.11.2018:[10.0] "Perhaps the greatest entertainer of all time. The best entrance ever. One of the best skills in ring . Top 5 gimmick.  Top 3 mic skills. One of the best look all of the time , maybe excluding the last couple of years , this is due to his age and mileage spent in businesses. Loved watch him as a heel more than a baby-face. SUPERSTAR. ICON. 10/10"
Rating: 10.0
Sentiment: 0.5431818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Stott Onewrote on 27.11.2018:[10.0] "The man, the myth, the legend. My Favorite Wrestler. Period. Done. End of Demo. I'm hoping he retires this year, like I've hoped for a number of years now. I wish they'd never broken the streak, or at least have it broken by a talented future star instead of an already established and hated Lesnar. However, none of that takes away from decades of destruction. The story teller to end all story tellers."
Rating: 10.0
Sentiment: -0.02857142857142858
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: cmchampwrote on 24.11.2018:[7.0] "Undertaker is a very mixed bag: in the first run as a deadman he was amazing (for gimmick era) and the badass run was good until 2002. Between 2003 and 2006 his work was pretty bad except for few things (his opponents weren't good most of the times to be honest). 2007-WM26 were his best period, his feuds with Batista, Edge and HBK were bloody good. 2011-2013 He was a part part part-timer, but all his Mania matches were amazing. 2014-Today: C-R-@-P. He had to retire after Mania 30, but legacy is nothing compared to money I guess. What's really sad is that he makes me laugh when I see him these days, he became a parody of himself. I'm giving him a 7, would've been a 9 if he retired in 2014."
Rating: 7.0
Sentiment: 0.25000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: zephyrwrote on 09.11.2018:[9.0] "Listen, Undertaker, mate, you're one of the all time greats but please, for the love of god, just retire. Stop tarnishing your legacy with increasingly terrible annual matches."
Rating: 9.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kaswrote on 12.10.2018:[10.0] "The Undertaker is the greatest gimmick in the history of wrestling and is one of the all-time greatest wrestlers. People will point to his work in the early 90s and the beginning of his comeback run against him, but fail to mention that the quality of his opponents during these times was awful, having feuds against the likes of Kamala, Heidenreich, and Giant Gonzalez - you only need to go watch his match with Lex Luger in 1990 to see that he was clearly talented and that as soon as he started working with better opponents like Foley, Davey Boy Smith, and Hart in 95-96 he would deliver some good to great stuff. On top of this, his second run as the deadman gave way to a slew of classic matches, including his matches with Angle, and pretty much every feud from 2007-2013. One thing I also want to mention is his underrated selling ability, I can probably name on one hand the number of wrestlers who I think sold better than The Undertaker, whether that be limb selling, exhaustion selling, or just general selling and he really does not get enough credit for this. An absolute legend, and my favourite wrestler of all time."
Rating: 10.0
Sentiment: 0.2555555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RatingsMachinewrote on 12.10.2018:[8.0] "The Undertaker is perhaps the greatest gimmick in wrestling history, certainly the one with the best longevity. But that longevity has caused people to vastly overrate his talent and ability. I'm not saying that the Undertaker was bad. I'm saying that he wasn't this all-time great worker that a lot of people seem to think he was."
Rating: 8.0
Sentiment: 0.38571428571428584
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Oliver95xwrote on 27.09.2018:[9.0] "Der Untertaker hat auf jeden Fall Charisma. Im Ring wusste er auch zu überzeugen, wobei ich finde das er nie ein gutes Match hatte wenn sein Gegner nicht auch herausragend ist. Er musste etwas durch die Matches getragen werden."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Makai Clubwrote on 07.09.2018:[7.0] "One of the times where the legacy supersedes the man. I'm going to be honest, Undertaker has far, far more lulls in his career than positives but he has his peaks. Stuff like the Foley feud, the HBK matches which are all good. Whilst the Kane matches aren't great, they are very enjoyable in the grand scheme of things and the Angle match ofc. But that covers around 5 years of his career in total, the rest was pretty terrible. Not all Taker's fault but it's there. The constant awful matches in the 90's, the Austin matches, Emo taker (ministry), MMA Taker, the recent years. There is a lot of crap that's hard to overlook unfortunately. The gimmick can be goofy at times ala emo taker but he played it well, so that's a plus. He will be regarded as a legend and I don't know if he will be in my top greats ever but the fact he is regarded as one by many people speaks volumes."
Rating: 7.0
Sentiment: 0.10541666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DaWizWithADwrote on 08.07.2018:[8.0] "Without a doubt the Undertaker will be remembered as one of the greatest gimmicks of all time. He's kind of a rare case in that he was great at character work but was a shit promo most of the time. In the ring... Truthfully for the bulk of his career he was really nothing special, just an OK big man but, for whatever reason whether it was just everything clicking for him, the agents, or the guys he was working with he got REALLY good later in his career."
Rating: 8.0
Sentiment: 0.4043956043956044
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheRealAteszwrote on 11.06.2018:[10.0] "Mark William Calavay is one of the best wrestler in the world , not specifically of the inring skills , rather because of his gimmick which has remained incredible for decades. The Undertaker gimmick is perfect for this man. The American Badass is not the best but really good but not for Callaway ."
Rating: 10.0
Sentiment: 0.7666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Shiza kunwrote on 23.05.2018:[10.0] "The Undertaker is my favorite wrestler ever. His feud with Batista in 2007 is what got me hooked in pro-wrestling, and for that, he is always gonna be my favorite. I've grown to love both his Deadman gimmick which made me an instant fan in the late 2000's and his American Badass gimmick which I had enjoyed watching old Attitude Era DVD's my uncle let me borrow. Although his in-ring ability isn't necessarily the best, he has delivered many classic matched due to his impressive athletic ability and intense offense. I'll never forget the WrestleMania match-ups against the likes of Michaels, HHH, Batista, and Punk, which goes to show he can go in the ring given the proper opponent. His body of work is amazing as a mainstay of WWE for nearly three decades, and his evolution throughout that time is truly a sight to behold. He has done it all, and I really just hope he retires soon after all he has given to us fans over the years because his recent appearances have worried me more than excited me."
Rating: 10.0
Sentiment: 0.28712121212121217
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: lew kazamawrote on 04.05.2018:[4.0] "Taker continues to tarnish his legacy with average Mania matches and fake retirements. Pro wrestling owes a lot to this man, so perhaps they should tell him to just stop. He looks better now than 2017, sure, but that doesn't really mean anything. Taker's passion for the business is really driving down the quality of his appearances."
Rating: 4.0
Sentiment: 0.011706349206349205
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Alex Maedawrote on 30.03.2018:[9.0] "Hat den richtigen Zeitpunkt zum Rücktritt leider verpasst (wäre meiner Meinung nach WrestleMania 28 gewesen), das trübt den Gesamteindruck ein wenig. Abgesehen davon eine großartige Karriere eines der wichtigsten Wrestler der letzten 20 Jahre. Überdurchschnittlich gut im Ring, hatte der Undertaker seine besten Matches wohl in seinen Vierzigern. In Sachen Storytelling macht ihm kaum jemand etwas vor, dazu das unverkennbare Gimmick, das wahrscheinlich kein anderer so verkörpern hätte können. Living Legend."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: pappahousewrote on 22.03.2018:[9.0] "Ehrlich gesagt fällt mir zum Undertaker nicht viel ein, außer großartig. Großartiges Gimmick, großartig immer weiterentwickelt (Moverepertoire).  Der Punkt Abzug ist für das Bad-Ass-Gimmick und das ich in den Jahren sein Entrance irgendwann vorspulen musste, weil es mir einfach zu lang ist."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JCM98wrote on 08.03.2018:[10.0] "In all honesty, The Undertaker is without question - the greatest wrestler of all time. This can depend on what you consider a wrestler to be of course. However, for me - there isn't another wrestler I've ever come across in almost a decade and a half, watching wrestling, both past and present that can evoke so many different emotions. In his matches, there's happiness, sadness, excitement, adrenaline, anxiety - he makes you feel every second he's in the ring.  He's the consumate professional, both backstage and onstage. If you look at his body of work, very few wrestlers can recover from being booked in the way he was for a long time in his career, just winning for the sake of it against jobbers and wrestling with guys that had such little ability that the matches were of poor quality. Regardless of what he has done since he arrived in 1990, heel or babyface, the fans have always treated him the same. He's one of those rare talents that garnered such a loyal fan base, that they didn't care what he was because he was just phenomenal.  Through almost 28 years and several different iterations of gimmicks, as everyone says, he's been able to reinvent himself every couple of years. Change and adapt to the time he was living in. He's wrestled in 3 different decades, and essentially in WWE terms, he's outlasted every era they've had. The Hogan era, The Austin era, The Cena era. Another way to put it is - the gimmick era, the attitude era, the ruthless aggression era and the pg era. He's outlasted them all. Very difficult for one person to stay in one wrestling promotion for almost 30 years. From 25 to currently 52 (almost 53).  His legacy, the lights, the music, the attire, the look, the smoke, the flames, the darkness. It has worked so flawlessly for almost 3 decades. The loyalty, the dedication - it's all worked for a very long time. Hogan, Flair, Bret, HBK, HHH, Austin, Rock, Cena - outlasted all of them. That's a testament to his legacy as the greatest of all time."
Rating: 10.0
Sentiment: 0.08138020833333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Weltmonarchwrote on 23.02.2018:[10.0] "Alles andere als 10 ist Blasphemie. Wahrscheinlich das beste Gimmick aller Zeiten. Dazu mit mehreren Klassikern im und außerhalb des Ringes."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Klabauterwrote on 12.02.2018:[8.0] "Eine lebende Legende. The Undertaker ist einfach The Undertaker. Es ist schwer diesen Mann zu beschreiben, er hat eine ganz besondere Aura, er lieferte großartig ab und liefert auch noch immer solide ab. Am Mikrofon ist er ebenfalls gut. 9 Punkte müssen es hier einfach sein. // Update: 12. 02. 2018 Hat leider immer dran gearbeitet sein Vermächtnis zu schmälern und mittlerweile ist man da an einem Punkt angelangt, wo es schädlich ist. Ein Punkt Abzug! Ich hoffe es bleibt bei dem Retirement, das man bei WrestleMania inszeniert und meiner Wahrnehmung nach bei RAW25 bestätigt hat.  // 8 Punkte"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: rjsbx11wrote on 11.02.2018:[10.0] "It's hard to grade the Undertaker. Because you have to grade Mark Calloway AND the Undertaker. Mark Calloway by all accounts is one of the most loyal, hard-worker and respected wrestlers in the entire industry. He has this lore about him that the transparency of today will never provide anyone else. The Undertaker is the single greatest gimmick ever. Due to its longevity, difficulty (it's a fucking undead voodoo priest zombie) and adaptability. It's cultivated moments that live through wrestling history, and that's amazing. Overall, the Undertaker has two different phases the first part of his career where he relied much on presentation and ring presence to hide frankly decent to below average workrate (tbh, he also worked with some really bad workers) and then a renaissance after his ABA gimmick where he became one of the better workers in the company and became one of the best in terms of psychology. Overall, with everything said, it's hard to rate such a icon anything less than a 10."
Rating: 10.0
Sentiment: 0.09956239412761154
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ohnoeswrote on 10.02.2018:[6.0] "Undertaker is one of the wrestlers I would label as a 'spectacle'. It's the aura that the wrestler brings, the sense of amazement and wonder that comes forth with their entrance, the intense charisma they exude. Hogan and Andre are other examples of this. And while being that spectacle has undoubtedly done great things for the business, upon evaluating his entire career and considering all the assets that make a wrestler, Taker is quite lacking in terms of pure wrestling skill. The evaluation is further worsened by him working far past his prime. He has had a number of great matches, but often times they come from those who are younger than him, and are more agile, technical, and far more hungry in wanting to prove themselves when feuding against him."
Rating: 6.0
Sentiment: 0.22261904761904763
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Devitciiuwrote on 31.01.2018:[6.0] "I think the Undertaker is a lot better when you reflect on his career. He's had some incredible matches and some incredible moments, but when you actually sit down and go through all of the matches and angles you realize how many stinkers there were."
Rating: 6.0
Sentiment: 0.4407407407407407
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CHN325wrote on 31.01.2018:[10.0] "The best and most memorable gimmick in the history of the business. No one is more respected than the Undertaker and he has earned it. Another guy who just got the entertainment side of the industry and always put on a show."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ianlapierrewrote on 04.11.2017:[8.0] "I love the Undertaker for all the reasons we all love the Undertaker. He had the very best wrestling gimmick in wrestling history and he benefited from being at the right place at the right time in wrestling history. He has become a bit overrated though due to his overexposure at each and every 'Wrestlemania'."
Rating: 8.0
Sentiment: 0.4077380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Frompartsunknownwrote on 18.10.2017:[9.0] "Ich würde ihm nur zu gern 10 Punkte geben, doch das kann ich leider nicht. Der Undertaker hat seinen Zenit seit mindesten 3 Jahren komplett überschritten und weiß leider nicht wann Schluss sein soll. Dass er trotzdem noch auf Teufel komm raus bei Wrestlemania Wrestlern soll, verstehe ich auch nicht. Gebt ihn von mir aus noch ein Match bei der WM nächstes Jahr und fertig. Nichtsdestotrotz ist er eine lebende Legende, die das Wrestling über mehrere Jahrzente geprägt hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: freddnwrote on 17.10.2017:[7.0] "Der Taker ist eine Legende des Business. Für eine bessere Bewertung fehlt mir dennoch die Vielschichtigkeit, denn gerade durch das Gimmick war der Deadman recht beschränkt was Promos und Storys anbelangt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kapuwrote on 04.10.2017:[10.0] "One of the best wrestlers ever, period. His lengthy career, his skills, his gimmick (one that would only work for him), his backstage attitude... Basically has everything in the perfect ratio. I canŽt really see other great wrestlers being as respected for so long, and this opinion isnŽt just shared by fans but by fellow wrestlers. Truly deserves a perfect score!"
Rating: 10.0
Sentiment: 0.478125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "The best wrestler in the history of WWE, along with Shawn Michaels.  Undertaker had many of the best match ever, and was able to make even Big Show look like a credible threat despite being a landslide between them. His matches with Kurt Angle, Shawn Michaels, Triple H and Edge are the highlights of a carreer not so full of glory. He won much less than he deserved and retired too late, tarnishing part of his legacy. But that doesn't change the fact that there never will be another one like him."
Rating: 10.0
Sentiment: 0.2984848484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FakeAssTwatwrote on 02.09.2017:[10.0] "The greatest of all time in my opinion. Not only was he on top for nearly 3 decades, he did so with a gimmick so ridiculous that if ANYONE else played it, they would've immediately failed. And yet, he made it work, and took a gimmick should've been awful, and turned it into the greatest character in WWE history. His ring skills were exceptional, especially for a man his size, and somehow got even better as he aged. He's one of, if not the most respected wrestler of all time and he 100% deserves it. There will never be another Undertaker, and he is truly a once in a lifetime superstar."
Rating: 10.0
Sentiment: 0.1794871794871795
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ParisTheSpiderwrote on 15.08.2017:[10.0] "Der Undertaker ist die ultimative Legende der WWE und zudem ist seiner Zeit ein herausragender Performer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheRainmaker28wrote on 12.08.2017:[4.0] "Yeah, Undertaker will never be for me. Yes, he's a legend. Yes, I respect him and his longevity, but I just can't get into his work. I understand who loves him and grow up watching and loving him, but for me he's overrated as fuck. The ''GOAT'' label it's just too much for him in my opinion."
Rating: 4.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WoLFPaCKnWo1995wrote on 15.07.2017:[10.0] "Big Mark is the man! Undertaker is in the top 10 greatest of all time. Great gimmick, good wrestler, good talker, there was nothing Taker couldn't do."
Rating: 10.0
Sentiment: 0.6166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TooSweetPhilwrote on 09.07.2017:[10.0] "Sind wir alle ehrlich, ist der Undertaker die Größte Legende der WWE und wird sie auch immer sein. Der Deadman hat übe 2. 5 Jahrzehnte in kontinuierlichen Matches immer wieder seine individuelle Klasse beweisen können und sich somit den Thron der WWE verdient. Die Streak brachte uns bei Mania fast durchgehend ein sehr gutes Match und hätte mMn nie enden sollen. Dazu hat er das Beste WWE Match aller Zeiten mit HBK bei Mania 25 (*****) gehabt und insgesamt einfach zu viele legendäre Wrestling Momente geprägt. Er kommt nicht ganz an Hiroshi Tanahashi ran, doch er wird immer einer meiner All-Time-Favoriten bleiben - 10 / 10."
Rating: 10.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Headlockwrote on 20.06.2017:[4.0] "Der Undertaker konnte eins gut, ein Dummes Gimmick zu Geld machen aber er war nie gut im Ring, sicher er war beweglich und Sprang Topè con Giros aber seine Matches waren oft lahm und langweilig. Ich verstehe ehrlich gesagt nicht warum er so vergöttert wird, ist wahrscheinlich bloß die Nostalgie. 4 Punkte"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PathosLogosEthoswrote on 07.06.2017:[10.0] "What can I say that hasn't already been said. He's possibly the best in ring storyteller at all time. He's one of the best big men ever. Great technique, he's always been physically impressive.  Amazing matches with Flair, Michaels, Edge, HHH, Cena, Hogan, Foley, Lesnar, Mark Henry, and the list goes on and on."
Rating: 10.0
Sentiment: 0.6285714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: flashbackwrote on 06.06.2017:[8.0] "Points for longevity and influence. So many have said so much about Taker, I don't really need to add to that. He's had some amazing matches over the years, but also some not so amazing.   Points DEDUCTED, however, for the "American bad ass" gimmick. I know I'm gonna get some heat for this, but that was the drizzling shits and significantly diminished the once-great gimmick. Even prior to that, when Big Show was his partner / lackey, Taker used to talk… A LOT, and he really wasn't that great talking at length. I remember one promo where he talked about being a biker and leaving Big Show out in the dessert or something… it was long and rambling, weird, and somewhat incoherent. And I'm sorry but I don't see a biker as adding anything of value to the Undertaker gimmick - if anything it humanized him and made him less mysterious & dark. I'm sure many will disagree, but I think the fanboy factor is off the charts with Undertaker, so few are able to see any negatives with him.   Still, you have to respect the guy for his impact and legacy. I just think there was a part of his career that largely sucked, and people don't give it the criticism it's due."
Rating: 8.0
Sentiment: 0.09990842490842493
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Brainbreakerwrote on 27.04.2017:[10.0] "(8/2011) Kaum zu glauben, dass der Sensenmann schon seit 1990 die WWE heimsucht. Selbst über die Montagabendkriege mit der WCW treu geblieben, wird inzwischen niemand so sehr mit der WWE identifiziert wie der Undertaker. Zeigt auch mit jenseits der 40 hochkarätige Matches und erweiterte im Laufe der Jahre seine Movepalette. Hat große Gimmicksprünge hinter sich: Zombiel-like Totengräber, Düsterer Dracula-Graf, Biker aus der Hölle. Jedes einzelne konnte überzeugen! Hat mit der WM-Streak inzwischen eine Art Legenden-Titel kreiert, deren alljährliches Match sie zu brechen sie fast bedeutsamer erscheinen lässt, als Kämpfe um einen World-Title, gerade auch durch die hohe Showstealeranzahl gegen HHH, Orton, Edge, Batista oder HBK! Heute tritt er alterbedingt als das auf, was er ist: als alljährliche Attraktion auf der großen Bühne! Für mich ist er neben Michaels der Größte! EDIT (4/2017): Falls der Taker sich tatsächlich mit dem Match gegen Reigns aus dem aktiven Geschehen zurückzieht, muss man eine Sache festhalten: Zeitpunkt und Gegner hätten besser nicht sein können: mit 52 sichtlich außer Form und bei seiner 25. (! ) WresteMania kam die Staffelstabübergabe des Takers genau an den richtigen Mann. Mean Mark wird vermutlich als der beste Gimmickwrestler in die Geschichte eingehen."
Rating: 10.0
Sentiment: 0.026041666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheAlmightywrote on 19.04.2017:[10.0] "Der größte Wrestler aller Zeiten! Hat sein Gimmick gelebt wie kaum ein anderer und es erst im letzten Moment gebrochen. Selbst privat hat er sich immer als Taker gezeigt um das Kayfabe wie kein zweiter zu repräsentieren. Hat von 2007-2013 jedes Jahr das beste Wrestlemania Match auf die Beine gestellt und das obwohl er bereits über 40 war. War am Anfang relativ schwach im Ring, bekam dann das Jahrhundert Gimmick was er perfekt verkörperte und unsterblich machte. Steigerte sich dann durchaus im Ring und war immer ein guter Old School Wrestler, an dessen Glaubhaftigkeit man nie zweifeln musste. Seine Fehden machten die Ruthless Aggression und Attitude Era aus und er war einer der Hauptgründe dafür, dass SmackDown während des Roster Splits sehenswerter war! Fand dann in den oben genannten Wrestlemania Matches die Höhepunkte seiner Karriere.  Hätte jedoch nach der Niederlage gg Lesnar (sie schmerzt war aber nachvollziehbar und von ihm beabsichtigt und somit folgerichtig) seine Karriere beenden sollen. So kamen 3 weitere Matches bei WM hinzu, die man mehr oder weniger vergessen möchte. Setzte für die Fans seine Gesundheit aufs Spiel und kümmert sich hoffentlich nun um seine Familie und sich. Obwohl die letzten 3 Jahre grausig waren, gebündelt in diesem unfassbar schlechten Match bei dieser WM kann ich hier nicht von der Maximalpunktzahl abweichen. Das wohl beste Gesamtpaket das es je gab und geben wird. Dieses Gimmick wird unübertroffen bleiben! #thankyoutaker"
Rating: 10.0
Sentiment: -0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JokeyZockeywrote on 14.04.2017:[10.0] "Was soll man noch groß sagen? Dieser Mann ist die größte Legende, die der Wrestling-Sport jemals hervorgebracht hat! Bei ihm passt einfach alles: Das Deadman-Gimmick war immer grandios, für einen Mann seiner Statur unglaublich im Ring, bei seinen Promos kriegt man Gänsehaut, die Stimme passt perfekt zum Gimmick. Er hat in seiner 25-jährigen Karriere alles erreicht, was es zu erreichen gibt, er hatte mit der Streak eine der größten und besten Storylines der Geschichte, schade, dass sie ein derart unpassendes Ende finden musste... Auch in den letzten anderthalb Jahren trotz seines hohen Alters immer noch gute Leistungen im Ring abgeliefert, doch leider merkt man langsam wirklich, dass das Alter ihm zusetzt. UPDATE: Nun ist es also endgültig vorbei. Ich kann es irgendwo in meinem Kopf immer noch nicht ganz glauben, aber es ist wahr: Die Karriere des größten Wrestlers aller Zeiten ist vorbei. Damit bleibt wohl nur noch eins zu sagen: Thank You Taker, für alles, besonders dafür, dass du mich zum Wrestling gebracht hast"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: warmongerswrote on 10.04.2017:[10.0] "Now seems as good a time as any to rate The Undertaker. As Mean Mark Callous you could see his athletic potential from a mile away, but when he was given The Undertaker gimmick it could have easily gone one way or the other but he made it work.   He was scary and he was different, and while he wasn't the most exciting he was rightfully super over.   He should be given credit for being loyal, always doing whatever the company wanted and helping to get over workers that werent as good as he was (Yoko, Mabel, Giany Gonzo, Khali)  He evolved within his character so many times over the course of 27 years and against all odds, was arguably at his best in the ring in the final third of his career.   He held his fair share of championships, but never HHH or Ric Flair levels, but for the longest time The Streak was one of the main attractions at Wrestlemania every year.   In my opinion, he's the best big man in wrestling ever, with only Andre in his prime coming close."
Rating: 10.0
Sentiment: 0.27281746031746035
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Charismatic Enigmawrote on 10.04.2017:[10.0] "Er ist einer der weinigen Wrestler der Gegenwart, der ein skurriles Gimmick super rüber bringt und sich nebenbei den Allerwertesten aufreißt für ne gute Show. Er wird immer eine Legende dieses Sports bleiben. Allerdings haben die letzten drei Jahre das Gesamtbild - gerade für die jüngeren Zuschauer - sehr getrübt. So wie er jetzt ging, war es super und auch Roman war der richtige Mann dafür. Für des Takers Vermächtnis aber ein paar Jahre zu spät. Trotzdem ein Ausnahme-Worker, den man so schnell nicht vergessen wird."
Rating: 10.0
Sentiment: 0.38888888888888884
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Squared Circlewrote on 06.04.2017:[10.0] "Never my favorite, but I have to call him a 10 based on main event longevity.  Tremendous career.  I wish him well in his retirement."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: IssouChanclawrote on 05.04.2017:[10.0] "He is the greatest wrestler of all time, there was and there will never be someone as special as him"
Rating: 10.0
Sentiment: 0.6785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ThankYouTakerwrote on 05.04.2017:"Ich gucke seit dem Jahr 2000 Wrestling nur wegen Undertaker.  Jetzt wo er aufgehört hat, lohnt es sich nicht mehr wirklich für mich.  Ich hoffe natürlich, wie bestimmt noch viele andere, dass er noch mal zurück kommt.  Wäre das aller geilste.  Aber Gesundheit geht selbst verständlich vor.   Darum sage ich zum Schluss...   #ThankYouTaker  für die vielen schönen Jahre die du uns beschert hast.   Mit vielen lieben Grüßen  ThankYouTaker (LCPRipper)"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Obsolete Mulewrote on 04.04.2017:[10.0] "Everything needed to be said about the Undertaker has already been said. The man is a legend. Absolutely amazing career, amazing matches, a couple of 5-star matches, and he's been part of some of the most memorable moments in wrestling history. I'm sure his probable retirement after WM33 made many wrestling fans very emotional, because it truly is an end of an era, and from many of us it symbolises an end of a part of our childhood. It's safe to say there will never be a performer like the Undertaker in WWE again. I hope Mark can enjoy his retirement days and finally rest in peace. I know I will be replaying many of his matches years to come. The memories will always stay. Thank you Undertaker for a phenomenal career."
Rating: 10.0
Sentiment: 0.4307692307692308
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: aledib993wrote on 04.04.2017:[10.0] "Probably the best worker in WWE history. Respected and beloved by all the types of wrestling fans and by at least two or three generations of fans.  Romantic and dark, he entertained like no other before.  Thank you Taker. The Real Wrestlemania Legend."
Rating: 10.0
Sentiment: 0.21607142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blood Pumpwrote on 30.03.2017:[10.0] "Dedication. How many wrestlers can say they have stayed dedicated to their gimmicks for as long as The Undertaker? Granted he did go all weird and 'biker' on us for a little while but even then he shined well. Hes been dedicated to his gimmick, but more then that hes dedicated to the business to such a point he was trusted as the locker room leader. His dedication alone is worth a lot, but the fact that hes one of the better workers in the business, the best guy of his sheer height and one of the most captivating men as well all makes it too easy to ten him. He might not have had the most technically sound start, but once he was allowed to do more he became one of the penultimate workers in WWE, not only keeping his psychology but bringing something for the more hardcore fans to enjoy."
Rating: 10.0
Sentiment: 0.2897916666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Irishfbfan518wrote on 17.03.2017:[10.0] "A horrible gimmick that should have failed, the Undertaker character is now (rightfully) viewed as one of the best gimmicks of all time. His in-ring work only got better with time, even well into his 40s. A true legend that will go down as one of the greatest of all time."
Rating: 10.0
Sentiment: 0.14930555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ChessHeartDTRwrote on 28.02.2017:[10.0] "Greatest of all time. The fact that the man debuted in 1990 in WWF and over two decades later, he's still relevant. Timeless. A man who truly defines the term "iconic"."
Rating: 10.0
Sentiment: 0.475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Changeling45wrote on 21.02.2017:[9.0] "A true icon and gatekeeper of the main event and top tier of wrestlers over MANY years in the WWE.  His longevity is insane, and the many incarnations of his characterization has been awesome to watch.  He carries an aura around him that not many can hold a candle to, and has put up great bouts with the best of the best."
Rating: 9.0
Sentiment: 0.4151515151515151
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Chekerwrote on 10.02.2017:[7.0] "Gonna have to admit that I find Undertaker overrated. I will give the man this though - I've never seen anyone play their gimmick as well as he plays his. That's gotta count for something, right? Another thing that gets thrown around is his longevity. There are better wrestlers out there that have been wrestling for just as long or longer, but given WWE's absurd schedule, I guess it IS a big deal. I liked most of his looks, even the american badass, and he used to be a decent brawler, but he was never incredible and now he can't go anymore."
Rating: 7.0
Sentiment: 0.10523809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: coolserazwrote on 09.02.2017:[10.0] "Perfect example of taking a gimmick that could have been silly and making it work through sheer presence. Taker is old and beaten down now but he was an amazing worker especially from 2006-2013. He had a period around 2000 where he was out of shape and refusing to job but he got over it and became even better than he ever was."
Rating: 10.0
Sentiment: 0.19305555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rllywrote on 07.02.2017:[10.0] "Mic-Skills: Perfekt und passend zum Gimmick. 10/10 Ring-Skills: Zu seiner guten Zeit extrem gut, vor allem für seine Größe 9, 5/10 Gimmick: Etwas besseres habe ich noch nie gesehen. 10/10 Promos: Legendär und liegt auch am Gimmick. 10/10  Müssen wir nicht lange reden= 10!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kazu Shizowrote on 01.02.2017:[9.0] "Tja, habe mich doch entschieden hier 9 Punkte zu geben. Er hat eine beispiellose Karriere hingelegt und sein Gimmick hat er über so viele Jahre perfektioniert. Locker 10 Punkte eigentlich, doch das er sich jetzt seit Jahren nur noch so durchschlepp und seine Performances einfach nur noch Mitleiderregend sind stört mich sehr. Er hätte einfach längst aufhören sollen, auch wenn es schwer fällt. HBK hat es richtig gemacht und der Undertaker begräbt sich nun leider selbst.  Sehr schade."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Real Raterwrote on 21.01.2017:[8.0] "Ring: Leider, vergessen die meisten wie schwach der Taker in den 90er bis 2006 im Ring war. Aber was er dann bis 2013 zeigte verdient einfach Respekt. Er war wahrscheinlich 2007 der beste Wrestler der WWE. Trotzdem für die vielen, eher mauen Jahre nur 7/10 Punkte (50%) Promos/Schauspieltalent:Eher durschnittlich mit Paul Bearer besser, dehalb zusatzpunkt. 8/10 (25%) Charisma/Statur/Gimmick:Eines der besten Gimmicks allerzeiten. 10/10 (25%) Sind dann insgesamt 8 Punkte für den Demon of Death Valley.  = 8 Punkte"
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SrHunterwrote on 09.12.2016:[10.0] "The legend, one of the most respected man in the history of this thing called wrestling, there's not much i can say about him because everyone knows what's he is capable of."
Rating: 10.0
Sentiment: 0.20000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rattlesnake3-16wrote on 06.12.2016:[10.0] "A legend of WWE history, simply the greatest character never created. His streak was phenomenal as his whole career !"
Rating: 10.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Puro Spiritwrote on 01.12.2016:[10.0] "An icon of American pro wrestling , has the greatest gimmick in pro wrestling .... has had many classic performances ....."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JosephDurnin 1997wrote on 27.11.2016:[10.0] "Without The Undertaker, I may have never started watching Pro Wrestling, he was the only guy who stood out to me at first. As far as great big man workers go, Taker and Tsuruta>everyone else, no disrespect to Baba, Vader, Andre, Hansen etc. It's just a testament to how good they are.  Taker's my guy:                                                                       Then.                                                                       Now.                                                                       Forever."
Rating: 10.0
Sentiment: 0.3083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SPKMwrote on 17.11.2016:[10.0] "The undertaker in theory is a really goofy character. But the talent that Mark Callaway has makes the character into the stuff of wrestling legend. For such a big guy, he is extremely agile and continues to impress and shock fans with his matches well into his 50s."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: anwarthinkswrote on 31.10.2016:[7.0] "We all know that the Undertaker's best days are beyond him.  He is an utter legend in the industry of pro-wrestling but as he currently stands, he's just about good."
Rating: 7.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "Ich glaube man muss hier nicht wirklich etwas zu sagen. Taker wurde mit steigendem Alter immer besser. Leider hat er seinen Zenit überschritten. Eine wahre Legende. Ich ziehe meinen Hut vorm Deadman!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: J Batistawrote on 09.09.2016:[10.0] "The Deadman. The Phenom. The Demon from Death Valley. Undertaker, my personal favorite wrestler, is a legend. He has the best gimmick ever, a powerful move-set and, of course, a legacy in WWF/E. I can't imagine a WrestleMania without the presence of his mighty persona."
Rating: 10.0
Sentiment: 0.44000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Cleanerwrote on 05.09.2016:[10.0] "Legendärer Wrestler, hatte sehr viele unheimlich starke Matches und ist in seinem Gimmick wohl einer der, wenn nicht sogar der beste Micworker überhaupt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SweetestThing2wrote on 11.08.2016:[10.0] "The Undertaker, The Deadman, Phenom, Lord of Darkness, American Bad Ass, Demon of Death Valley and also the Greatest Pro wrestler of all time. If you look up pro wrestling beside it should have be a picture of mark calaway. He is pro wrestling and he was pro wrestling for me. It is the greatest pro wrestling gimmick of all time. It captured your imagination and maybe you were a child and it scared you or as an adult you love and respected it. One of the things i love about this gimmick is that it could change and it always felt fresh and new. It did not matter if he was the American bad ass or my personal favorite in the ministry of darkness it was always something different. With the gimmick came the amazing attire and i always debate with my wrestling friends not only what Undertaker gimmick was the best but what was his best attire. The undertaker's mic skills were awesome too. It never mattered if he was scaring the hell out of an opponent by being the brooding dark mysterious undertaker or when he was Big Evil Red Devil and put fear into the hearts of superstars by telling them that the ring was his yard and he was the big dog and he was was going to kick your ass. Finally the man's wrestling ability is great and honestly underrated he was a great worker, a smart worker and has had great matches with the best of them. It does not matter if he is throwing mankind of the cell or he is burying him or closing the casket on someone he is apart of the most memorable moments and matches ever and the guy has so many Match types that are apart of his character and it is just so a fascinating multi layered gimmick that it works on all levels. WWE is Sports Entertainment and The Undertaker is Entertainment the Greatest in a line of work that has so many greats."
Rating: 10.0
Sentiment: 0.3421223513328776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Summerslam Fan 01wrote on 31.07.2016:[10.0] "Der Undertaker ist die größte Legende im Wrestling.  Der Charakter ist der beste, sein Entrance ist Kult Sein Charisma ist auch sehr beeindruckend, Micwork auch sehr stark, und im Ring auch sehr stark.  23 Siege bei Wrestlemania wird niemals jemand toppen können.  Das American Badass Gimmick war schon gut aber hat mich nie so begeistert.  Ich hoffe das er ein würdigen Abschluss mit HOF Aufnahme bekommt.  Danke Mark Calaway für die 26 Jahre."
Rating: 10.0
Sentiment: -0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Moxley Lunaticwrote on 28.07.2016:[10.0] "Eine lebende Legende, welche im Ring bis heute mich immer überzeugt hat. Sein Charisma ist außergewöhnlich und seine Work am Mic großartig. Zwar hat er nicht mehr so viele Segmente und Promos, aber die die er hat bringt er immer, wirklich immer auf den Punkt. Einer der besten, loyalsten Workers in diesem Business. Ich hoffe und bette, dass dieser großartige Wrestler für sich genau den richtigen Zeitpunkt findet um zu gehen (was hoffentlich nicht zu bald ist) und dann mit einem großen letzten Tusch und mit ganz viel Würde."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Randomuser12345wrote on 11.07.2016:[10.0] "Can't give the man any less than a 10. 30 years in the business, 25 of them at the very top. Quite possibly the greatest "Big man" of all time. The most interesting character the WWE has ever given us, if not the most interesting character in wrestling history. As he got older he changed his style, incorporating MMA holds and the like. The Deadman is a legend personified."
Rating: 10.0
Sentiment: 0.365
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KevinZaynwrote on 23.06.2016:[8.0] "In Ring meiner Meinung nach nur solide 7/10 Charisma 10/10 Ausstrahlung 10/10 Micwork 6/10 Ich persönlich mag den Taker nicht So Gern. Ich finde sogar, dass Kane vor der Demaskierung besser war."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AMHTPwrote on 22.06.2016:[9.0] "The Undertaker is perhaps the most iconic professional wrestler in history -- a man who can't be matched for longevity, legacy, dedication or mystique.  He transcends description in terms of moveset and workrate and gimmick -- any other man playing the same character would have been a joke, but in Undertaker's hands it became one of the greatest of all time.  As ridiculous as it is to boil him down to fundamentals, though, Taker is still fantastic when you look at him piece by piece.  He's a true ring general, and one of the most athletically-skilled big men of all time.  He's a world-class brawler whose legitimacy as a badass can't possibly be questioned.  He injects a darkness and intensity into his storylines which never fails to captivate the audience, and he's tough enough to wrestle even after receiving hideous pyro burns.  What else is there to say?  The only reason he doesn't receive a ten here is that I reserve such a ranking for near-perfect wrestlers, and Undertaker's career has had a few black spots.  He hasn't always been such a good in-ring hand, and some of his earlier matches are difficult to watch.  Age hasn't been his friend either, though it took him remarkably long to show any signs of deterioration.  All of that said, he's a titan among ants, and will always be remembered as an all-time legend."
Rating: 9.0
Sentiment: 0.09002057613168724
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Son Edowrote on 18.06.2016:[10.0] "To me, he is the greatest. He's been through each era, Golden, New Generation, Attitude, Ruthless Aggression, PG and the current New Era. The streak is the biggest accolade in WWE history. His longevity surpasses Hogan's and Austin's legacy. But most of all, he made it all work with an outrageous character."
Rating: 10.0
Sentiment: 0.009090909090909094
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DSF Actionwrote on 09.06.2016:[10.0] "Der größte der je einen WWE ring betreten hat. Eine Legende. Unvergessen die Hell in a Cell Matches."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: finest0000wrote on 28.05.2016:[10.0] "Für mich eine Legende, er ist schon so ewig dabei auch wenn es mir nicht gefällt wie er gerade gebookt wird. Er sollte jetzt langsam, doch mal an sein Karriereende denken, so das es würdig wird. Ein letztes Match bei einer WM mit welchem Ausgang auch immer und dann ab in die HOF und danke für die tolle Zeit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "I think calling Taker the best of all time is a big stretch, but still I have to give him a 10 because I do love watching him almost all the time. I dig the slightly goofy character and am impressed by how well the man behind it has presented it all these years. Enjoyed Biker-Taker era as well, and his longevity is impressive. I do have to say I wish he would retire now, he is looking terribly rough now and in my opinion is not adding much to his legacy at this point."
Rating: 10.0
Sentiment: 0.41999999999999993
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Chris Kwrote on 26.04.2016:[10.0] "Mein absoluter Lieblingswrestler. Derjenige der mich an das Produkt WWE und Wrestling im allgemeinen gekettet hat und es zu einer großen Leidenschaft hat werden lassen. Er ist für mich die perfekte Kombination aus Look, Charisma und Technik. Auch wenn es einige auf das Gimmick schieben, ich glaube kein anderer hätte es so umsetzen können. Er ist über 25 Jahre in der größten Liga der Welt aktiv und das spricht schon für sich. Und wie er sich innerhalb seiner Karriere weiterentwickelt hat, auch gerade seine In-Ring-Skills, ist aller Ehre wert. Seine einzige Schwäche ist vielleicht das Mic-Work, aber das macht er mit reiner Ausstrahlung wieder weg. 10 Punkte für diese Legende des Wrestling"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: oscargeorge1wrote on 25.04.2016:[10.0] "Yes he is a legend, but at his age the law of diminishing returns begin to apply. How much more can WWE wheel him out when they need a boost in ratings. A wise man once said that 'Nostalgia is a disease', WWE need to bring forward the younger talent sooner rather than later or else we will still be seeing The Undertaker in main event action when he's sixty."
Rating: 10.0
Sentiment: 0.24444444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KingChrizzly619wrote on 16.04.2016:[9.0] "Einer meiner ersten Wrestling-Favourites als ich in den frühen 90ern angefangen hab mich für diese Form der Unterhaltung zu interessieren. Leider mittlerweile in die Jahre gekommen. Aber ist ja bei jedem irgendwann mal so... Persönliche Ausstrahlung ist in Ordnung, aber auch nicht berauschend (in diese Bewertung fließt bei mir auch der Privatmensch mit ein, ist bei ihm ja immer etwas schwer zu beurteilen, jedoch Pluspunkt im Gegensatz zu früher) (8/10 Punkte), über das Gimmick brauchen wir gar nicht reden (10/10), bei den Moves ist der Deathman etwas in die Jahre gekommen, erinnert mittlerweile manchmal in Zeitlupe, aber ich möchte auch seine früheren Künste mit einfließen lassen (9/10). Am Mikro nach wie vor furchteinflößend (9/10). Gibt bei mir einen Gesamtwert einer glatten 9/10."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NastyYaffawrote on 15.04.2016:[9.0] "The Undertaker is quite possibly the most legendary character in wrestling. The man is a legend in every sense of the word."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TikeMysonwrote on 13.04.2016:[10.0] "Eine absolute Legende. Den Undertaker habe ich schon gefeiert als ich 7 Jahre alt war und tue es mit mittlerweile 31 Jahren immer noch. Das Gimmick ist das beste und kultigste, das es bis heute in der Wrestlingwelt gibt. Wahrscheinlich wird da auch nie wieder ein Gimmick ran kommen. Auch vom Können her war der Undertaker einer der Besten, vor allem wenn noch seine Größe in Betracht zieht. Er war im Ring immer äußerst agil und schnell unterwegs.  Leider hat er seinen Zenit schon ein paar Jahre überschritten. Mittlerweile ist er nach 2 Minuten Matchzeit schon dermaßen am pumpen, dass man Angst hat er würde jeden Moment umkippen.  Nichtdestotrotz gibt es hier die volle Punktzahl. Bei seinem Einmarsch läuft es mir immer noch jedes mal kalt den Rücken runter."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: knightrider1983wrote on 11.04.2016:[10.0] "the undertaker ist der beste den es jemals geben wird was hat er für geile Kopfspiele gemacht und kämpfe waren auch alle gut. und sein einzug auch nicht zuvergessen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NewNemowrote on 06.04.2016:[10.0] "Normalerweise schaue ich das ich eine differenzierte Bewertung abgebe. Aber hier handelt es sich um den Undertaker. Ja lange wird er es nicht mehr machen, vielleicht hätte er bereits aufhören sollen. Nicht alles war gut was er gemacht hat, aber 10 Punkte allein für die Lebensleistung. Für mich ist er Wrestling Entertainment pur. Thank you Taker!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ApexOfEvolutionwrote on 26.03.2016:[9.0] "Eine Legende des Wrestlings. Selbst Leute, die keinen Bezug zum Wrestling haben können mit dem Namen Undertaker was anfangen. Er hat sich auch immer wieder selbst neu erfunden, nachdem er seine Rolle in den Gimmick-lastigen 90er teilweise überinterpretiert hat, verließ er als Biker die übermenschlichen Sphären, was ich gar nicht so schlimm fand, aber warum musste er dabei auch noch den Patrioten raushängen lassen. Anschließend spielte er dann wieder den Totengräber allerdings in etwas entschärfter Version. Da er immer die Bedrohung spielen musste, gab es leider immer wieder kleine Logikfehler in irgendwelchen Storylines um nicht jegliche Spannung zu töten und viele Matches wurden teilweise vor allem durch seine Gegner (Shawn Michaels bei den Wrestlemania-Auftritten oder Mankind im HiaC-Match) zu legendären Schlachten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tabowrote on 25.03.2016:[10.0] "Der Undertaker - DIE Legende! ... Bewertet man hier noch den Wrestler oder eines der wohl besten und überdauerndsten Gimmicks aller Zeiten? Klar ist die Idee des Deadmans nicht die Spitze der Komplexität und von Charaktertiefe und großartigem Mikework brauch man auch garnicht anfangen zu sprechen... aber das sind auch die Dinge die für den Undertaker nicht von Bedeutung sind. Wenn man den großen bösen (und alten) Wolf der WWE spielt dann hat man halt nicht viel zu sagen. und dass ein Ü50er sportlich nicht mehr auf dem Level einiger junger NXT Talente ist, ist denke ich auch verschmerzbar. Der Undertaker ist so wie er seit Ewigkeiten ist ein rundum perfektes Gesamtpaket an dem es nichts mehr zu verbessern gibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jobbswrote on 18.03.2016:[10.0] "Just simply one of the greatest stars ever! There isn't anything this man hasn't done and he's put on some of the greatest matches ever as well. Justan amazing performer all together and he still brings that aura with no matter what time of the year it is in the wrestling world."
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: fitfinlaywrote on 14.03.2016:[10.0] "DER Mann. Hat ein einzigartiges Gimmick, dass er perfekt spielt. Braucht nicht viele Worte um glaubwürdig zu sein. Ist ein toller Techniker, trotz seiner Größe und hat einfach so viele Klassiker hingelegt, dass keiner rankommt. Für mich der Beste aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: James Dean Wrestlingwrote on 09.03.2016:[10.0] "Another top tier great of mine. One of those guys that I was hooked onto for a long time. Everything he did I had to watch. To this day, he is one of my favorites of all time. Great size and speed. And I think the best big man of all time no question. Amazing career and still doing what he can some 20 years later of his major debut as The Undertaker. Gotta love the Phenom."
Rating: 10.0
Sentiment: 0.42125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BadAssChonowrote on 04.03.2016:[10.0] "Meiner Meinung nach das Beste Komplettpaket im Business. Er hat in seiner Karriere alles erreicht und er war so ziemlich der Lieblingswrestler von allen die ich kenne. Man musste diesen Kerl einfach feiern. Seine Ausstrahlung ist der Hammer und seine In-Ring Performance ist, mal abgesehen von diesem lächerlichen Seiltanz, gut. Wirklich punkten tut er jedoch mit seinem mystischen Gimmick, welches von ihm perfekt verkörpert wird. Seine Fehden gegen Batista und die Guerrero Family waren, meiner Meinung nach, die besten Fehden überhaupt. Trz muss ich erwähnen, dass er noch viel mehr hätte erreichen können wenn die WWE ihn nicht so oft scheiße gebookt hätte. So musste er sich fast die ganzen 90er mit irgendwelchen komischen Vögeln (Giant Gonzalez, Kamala oder seinem Doppelgänger) rumschlagen. Und was das Bikergimmick Anfang 2000 sollte versteh ich auch nicht. Hätte man ihn dauerhaft als Phenom belassen hätte er über Jahre Top Heel der Liga sein können. Auch Ministry of Darkness hätte meiner Meinung viel länger bzw. öfter existieren dürfen. Auch seine Rolle hinter den Kulissen sehe ich sehr hoch an. Immerhin war er jahrelang der Lockerroom Leader der WWE und hat seine Macht nie missbraucht um andere zu quälen oder ähnliches. (Wie zB JBL & Benoit) Zur seiner zurzeitigen Karriere kann ich nur anmerken, dass er für 50 und 1 Match pro Jahr seine Sache richtig gut macht. Außerdem freut man sich immer den Taker wenigstens einmal im Jahr wiederzusehen, selbst wenn seine Matches an Qualität verlieren so fände ich es gut wenn er weiterhin gelegentlich auftritt, einfach weil er die tougheste Sau der Welt ist.  @DarrylDixon84: Jetzt man ganz im Ernst Freund. Ich weiß nicht was deine Bewertung soll. Ziel solcher Bewertungen sollte eigentlich sein die Karriere zu bewerten und sich nicht daran aufzuhängen, dass jmd im fortgeschrittenem Alter nochmal Vater wird. (Zumal der Undertaker noch nicht mal so alt ist wenn man ihn zB mit Niki Lauda vergleicht) Bitte tu doch allen e"
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DarylDixon84wrote on 27.02.2016:[0.0] "Eine null.... Ja ganz ehrlich ich kann jemandem der in den spätvierzigern nochmal Vater wird und sich dann trotz kaputter Knochen und Gelenke das alles noch antut nicht mehr geben. Sobald er mal merkt das er aufhören MUSS dann möglicherweise gibts ein paar Gnadenpunkte. Schade... ich mochte ihn mal ziemlich gerne."
Rating: 0.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Coltwrote on 24.02.2016:[10.0] "Man braucht eigentlich gar nichts mehr zur Bewertung zu sagen, diese sehe ich bei einer Legende wie dem Undertaker einfach als Formsache.  Gut finde ich aber, dass die Zeit als American Bad Ass nur kurz anhielt. Als Totengräber ist er einfach Kult!"
Rating: 10.0
Sentiment: -0.4374999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dilbertwrote on 20.01.2016:[10.0] "Ich vergebe die 10 Punkte für sein Lebenswerk. Das ist wahrhaft einzigartig, und die Ausstrahlung die er früher hatte war unübertroffen. Mit der "American Bad Ass"-Geschichte wurde ihm damals kein Gefallen getan, aber den Fehler hat man ausgebügelt. Natürlich hatte er auch viele alberne Storylines zu bewältigen. Zuletzt (also seit er sich die Haare zum Iro abrasierte um dann im schwarzen aufgemotzten Bademantel zum Ring kam) ist dieses Feeling aber mehr und mehr gewichen. Bei der letztjährigen Wrestlemania war er im Match nicht fehlbesetzt, aber einfach am falschen Ort, gerade wenn er gegen einen Spookie-Charakter wie Bray Wyatt antreten soll ist Tageslicht das pure Gift für die Atmosphäre schon beim Einzug. Ich liebe den Kerl für das was er einst geschaffen und ausgestrahlt hat, aber wenn er nicht nochmal die Kurve kriegt und sein Körper weiter so verletzungsanfällig bleibt, ist es vielleicht wirklich Zeit zu gehen. Zwei oder drei Matches im Jahr reichen für vernünftige Fehden einfach nicht mehr aus."
Rating: 10.0
Sentiment: -0.16190476190476186
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HeinrichC75wrote on 20.01.2016:[8.0] "Der Undertaker ist die Wrestlinglegende schlechthin und das Idol meiner Kindheit. Doch er ist nun schon seit Jahren auf dem besten Weg, sein eigenes Denkmal zu zerstören.  Nur noch zusammen mit Kane aushaltbar, da kann er sich öfters mal ausruhen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Harlequinwrote on 11.01.2016:[10.0] "The king of psychology. Phenom couldn't be a more fitting calling for this guy. He goes beyond what wrestlers of his size should be capable of, and tells a story to back it up. You can call his character corny, but his work transcends all expectations that no one would be bothered to call him anything but the Deadman of the wrestling world.  A fundamental brick in the pro wrestling pavement."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: blackmileswrote on 09.01.2016:[9.0] "Dieses Gimmick ist einfach nur Goldwert. Jedes mal, wenn der Gong ertönt, raste nicht nur ich, sonder die ganze Wrestling Welt aus. Zudem ist sein Micwork auch Genial für das Gimmick. Wenn er das Cena Gimmick hätte würde sicher jeder sein Mic-Work Gnadenlos kritisieren. Seine Matches gefallen mir jedoch nicht so sehr. Sie haben oft gute Spots, aber sie sind mir oft zu langsam geführt. Aber wer will es ihm übel nehmen. Am Knie muss der ja irgendwie eine Schiene tragen oder so."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Million Dollar Fanwrote on 29.12.2015:[5.0] "Klar es ist der Undertaker. Aber man muss einfach mal sagen, dass er im Ring nie der beste war und auch am. Mic übertroffen wurde. Aber es ist der Undertaker. Eine Legende, die wirklich "Through Hell" gegangen ist in. vielen Matches. Aber 10 zu geben ist übertrieben, eben wegen Mangelnder In Ring Fähigkeiten. Ich wäre zwischen 8 und 9... Wahrscheinlich 9 mehr wie einen Punkt dem Taker abzuziehen wäre Blasphemie. ABER man muss ja auch aktuell bewerten und der Typ ist soooo drüber. Wow. Ne. Sorry. Aktuell geht nicht mehr wie 5."
Rating: 5.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GebboWWEwrote on 25.12.2015:[10.0] "Die größte WWE Legende aller Zeiten! Niemand hat es so gut geschafft, verschiedene Generationen von WWE Fans zu begeistern und zu faszinieren. Er zieht mit seiner Attitude und seinen In-Ring Skills jung und alt in seinen Bann. Seine besten Matches hatte er meiner Meinung nach mit Shawn Michaels, aber auch mit Edge. Ich hoffe nur, dass er ein geniales letztes Match bei Wrestlemania 32 haben wird, was seinem Namen alle Ehren macht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HighlightHEELwrote on 24.12.2015:[10.0] "Wenn der Undertaker keine Legende des Wrestlings ist, dann weiß ich nicht, was eine Legende dieses Sports sein soll. Das Gimmick ist das bekannteste, einprägsamste und (trotz einiger seltsamer Wendungen) beste aller Zeiten, selbiges gilt auch für seinen Entrance. Im Ring ist der Taker einer der besten Big Men aller Zeiten - einen Titel, den er sich vor allem im späteren Verlauf seiner Karriere mit einer ganzen Reihe von qualitativ hochwertigen Matches, insbesondere bei Wrestlemania, verdiente. Es gab Phasen in seiner Karriere, wo er nicht gerade für Matchqualität bekannt war - das kann man von den letzten Jahren nicht mehr so behaupten. Am Mic eine solide Hand - man kann ihn ohne Probleme eine zehnminütige Promo halten lassen, die auch ohne viel Inhalt allein durch seine Präsenz, Mimik und die von seinem Charakter kreierte Atmosphäre überzeugen kann. Dazu kommt noch die größte Storyline, die Wrestlemania je hatte - die Streak. Ich habe die späten Streak-Matches (trotz erwartbaren Ausgangs) immer genossen, und werde mich vermutlich immer darüber ärgern, dass der Taker ausgerechnet das Match, in dem diese nach 22 (bzw. 23) Jahren brach, mit einer Gehirnerschütterung worken musste. Der Undertaker steht mittlerweile 25 Jahre für das Produkt WWE wie kaum ein Anderer, er kann nur zehn Punkte bekommen für das, was er in seiner Karriere geleistet hat. Trotzdem ist es an der Zeit zu gehen - er wirkt einfach sehr alt, und selbst wenn er noch immer Qualität zeigen kann, so geht das doch noch mehr auf Kosten des Körpers. Die letzte nötige Storyline (der Racheversuch am Brecher der Streak) wurde geschrieben, und auch für das Undertaker-Gimmick sollte bald das "Rest in Piece" gelten - Mr. Calaway hat sich die Ruhe nach der Karriere mehr als nur verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nigglesojanicwrote on 16.12.2015:[10.0] "Mit Abstand mein absoluter Lieblings-Wrestler. Er verkörpert sein Gimmick wie kein Zweiter und das schon seit fast 25 Jahren. Wenn er mal viel reden darf, sind seine Promos immer stark und vor allem fehlerfrei, kann mich nicht an einen Versprecher seinerseits erinnern. Des Weiteren hat er im Ring schon oft genug bewiesen, dass er dort zu den Besten gehört. Auch wenn er nur selten auftritt, ist das Publikum stets begeistert, wenn der Gong ertönt. Ich hoffe nur, dass die WWE ihm einen gebührenden Abschied gewährt, nachdem sie seine Streak verbockt hat, da er meiner Meinung nach der größte Superstar aller Zeiten ist. Alles in allem kann ich hier nichts außer die 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: smark calawaywrote on 14.12.2015:[9.0] "One of the greatest performers and storytellers in the history of the business. What's interesting is that Taker's mastery of the gimmick was often able to mask mediocre in-ring performances - he's always had a certain presence that was captivating. American Badass was a low point but he managed to turn things around and pull out some of the best performances of his career during the mid to late 2000s. It's unfortunate that he was concussed for the Streak match with Lesnar, but perhaps the lackluster match only added to the disbelief when Lesnar actually got the pin. All in all an incredible asset to WWE for decades and one of the most memorable athletes in this industry."
Rating: 9.0
Sentiment: 0.25378151260504206
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DanTalksRasslinwrote on 11.12.2015:[10.0] "One of my all-time favorite wrestlers and gimmicks, certainly one of the best-ever big-man wrestlers and arguably WWE's best-ever big-match player.  Not only a great power wrestler, 'Taker also always had an uncanny agility level for his size, and always knew exactly when to use those skills for maximum effect in a match.  Has had many incredible matches and rivalries over the course of a quarter-century run, and has been able to consistently reinvent his persona to stay relevant.  Achieved a level of mystique such that he was essentially beyond the card structure, being an attraction all his own, and never really needed championships.  Later in his career this had reached the point that simply being in a match with him was a major accomplishment for his opponent.  I will say that he may well have stuck around a bit too long at this point - I'd argue that he should have retired after WrestleMania XXVIII, streak intact with an even 20-0 and before his physical condition deteriorated quite so much - and that I was never a fan of his "BikerTaker" era, but that doesn't change his overall status as one of the all-time greats."
Rating: 10.0
Sentiment: 0.23937074829931973
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dr Middywrote on 27.11.2015:[10.0] "Easily one of the greatest, if not THE greatest big man in the history of the company. Undertaker took what would look like a silly gimmick on paper, and turned it into the greatest character in WWE history. Even now, 25 years since his debut, his character still generates an unmistakable buzz in the crowd, and an aura which few can match. I can't even begin to name all the matches he has been in that I love, but the list is extensive and for good reason. One of my favorite wrestlers ever."
Rating: 10.0
Sentiment: 0.40303030303030307
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jamie The Rockwrote on 25.11.2015:[10.0] "Einer meiner Helden... Das Gimmick an sich ist ja schon ein Kapitel für sich, aber seine wrestlerischen Fähigkeiten begeistern mich immer wieder aufs neue (Dead Man Walking)... Und dass er die Belastung mit 50 immer noch aushält... beeindruckend... Er hat sich den Titel Phenom verdient"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ShooterMcShootwrote on 06.11.2015:[10.0] "Undertaker is a guy who was very special to the wrestling business. It's doubtful we'll ever see a performer quite like him again that carries such an aura and mystique about him. When he finally retires completely, it's really got to sink in at that point that the era of wrestling where a worker can command a certain presence will be over. Fans won't accept anything quite like this character ever again."
Rating: 10.0
Sentiment: 0.01309523809523809
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WaxaCwrote on 31.10.2015:[10.0] "Über ihn ist alles gesagt. Ich fand es immer toll, wie er mit seiner Statur so einfach auf den Seilen balancierte konnte. Und die Ligatreue zu WWF ist auch toll. Während superstars wie Hulk Hogan, Macho Man, Scott Hall, Kevin Nash und dann Bret Hart gewechselt sind, bliebt er da. Glaube, wenn er auch gegangen wäre, konnte Vince's WWF den Laden zumachen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Der Deadman ist eine der größten Legenden im Wrestlingbuissness. Er hat alles was eine Legende und einer der Besten braucht. Seine Mania Serie war legendär. Ich fand es nur Schade, dass Brock Lesnar die Serie beenden durfte. Einer der größter Fehler, der WWE überhaupt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DanielBryan1986wrote on 15.10.2015:[8.0] "Es ist sehr schwierig den Undertaker zu bewerten. Denn es gab Jahre wo er mir überhaupt nicht gefallen hat. Die Anfänge der WWF bis Yokozuna vs Taker RR 1994 war er mir ziemlich egal. Ab dem Zeitpunkt bis hin zum Royal Rumble 1997 gefiel er mir. Dann aber Ministry bis 2000 war er mir zu langweilig. (Hatte immer hilfe durch die Ministy)nervte mich schon bei der NWO. Als American Bad Ass bis hin zu Wrestlemania 28 war er einer meiner Absoluten Top Wrestler. Allerdings gefielen mir die Matches gegen Punk, Lesnar und Wyatt wieder nicht. Undertaker verdirbt sich meiner Meinung nach seid 3jahren seinen Ruhestand.  Nun zu meiner Benotung, sehr schöne Matches und starke Promos machen ihn unvergesslich.  Allerdings waren 6Jahre sehr nervig mit dem Undertaker. (persönliche Meinung). Gesamt resultat 8Punkte"
Rating: 8.0
Sentiment: -0.06666666666666661
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BalorClub01wrote on 11.10.2015:[5.0] "Meiner Meinung nach vollkommen überbewertet,  und nicht besser als viele andere heutige Wrestler. Sowohl im Ring (nur 5 Moves die immer in der gleichen Reihenfolge gezeigt werden) als auch am Mikrofon (langweilige Promos bei denen nur geknurrt wird) keine 9, 5 Punkte wert. Ganz abgesehen vom inzwischen total ausgelutschten Gimmick."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker-Showwrote on 05.10.2015:[10.0] "Der Undertaker ist und war schon immer mein Lieblingswrestler. Er ist großartig. Zahlreiche Titel gewonnen, seine Streak..... Sein Gimmick als Deadman ist einzigartig und super gespielt. Er ist eine Legende und für mich der beste Wrestler aller Zeiten. Auch wenn er ins Alter gekommen ist, sehe ich ihn bis heute noch gerne und freue mich das er immer noch kämpft ab und zu. Er gehört definitiv in die WWE Hall of Fame"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WWEReignsRuleswrote on 21.09.2015:[10.0] "Ist für mich einer der größten Wrestler aller Zeiten, ich finde es immer wieder Cool wenn der Gong ertönt und die Musik erklingt und er dann rauskommt, die Matches mit ihm waren immer toll mit anzusehen das Hell In The Cell Match gegen Mankind war einfach spitze. Aber heute finde ich brauch er das nicht mehr machen. Und er soll endlich in die Hall Of Fame das hat er sich verdient."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FloWrwrote on 16.09.2015:[10.0] "Ein perfekt verkauftes Gimmick, welches sich durch leichte Abwandlungen immer wieder mit der Gegenwart vereinbaren ließ. Außergewöhnliches Charisma, fehlerfreies Micwork und ein Moveset, welches für einen Mann seiner Proportionen doch sehr beachtlich ist. Als Lord of Darkness in meinen Augen das beste Gimmik, dass die WWE je hervorgebracht hat und in Verbindung mit Paul Bearer unvergessen. Allerdings hat er schon früh genug bewiesen, dass er seinen Charakter ohne ihn genau so perfekt verkörpern konnte. Auch backstage lässt sich über ihn nichts Negatives berichten, was bei einem derart hohes Status sehr selten ist. Viele legendäre Matches bestritten, jungen Talenten zum Push verholfen und stets loyal gewesen. Allerdings sollte auch er langsam aber sicher seinen endgültigen Abschied feiern. Denn Lesnar hat nicht umsonst die Streak beendet, da es langsam aber sicher unrealistisch wirkt. Sein Körper wirds ihm auch danken und er brauch niemandem mehr etwas beweisen. Denn für viele ist er der größte Star, den WWE je hervorbrachte. Für meinen Geschmack nicht der größte, aber definitiv in der Top 3. Volle 10 Punkte!"
Rating: 10.0
Sentiment: 0.47916666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mandzukic9wrote on 14.09.2015:[10.0] "Was soll man zu ihm bitte außer 10 Punkten geben? Trotz dieses übernatürlichen Gimmicks ist er auch im Jahr 2015 eine absolute Kultfigur und wird abgefeiert, wie sonst was.  Er ist eine wahre Icon und der U30-Generation wahrscheinlich bekannter als jeder andere Wrestler.  Was hat er den Leuten nicht schon alles gegeben? Eindeutig mehr als gesund ist. Deshalb sollte er sich nun zurückziehen und sein wohlverdientes, ruhiges Leben leben."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jacobphillipswrote on 13.09.2015:[10.0] "one of the best, a true legend. superb in ring ability coupled with excellent character portrayal makes for one of the best wrestlers of all time"
Rating: 10.0
Sentiment: 0.8699999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Der Bjoernwrote on 11.08.2015:[10.0] "Auch, wenn ich weiss, dass der Undertaker inzwischen nicht mehr so Ringtechnisch fit ist, so feier ich ihn trotzdem immer noch ab und freue mich immer wieder ihn zu sehen. Er ist schon lange im Wrestlinggeschäft und hat so einiges erreicht, wovon andere Wrestler nur träumen dürfen. Er ist für mich (seit ich angefangen habe Wrestling in der Attitude Era zu schauen) eine Herzensangelegenheit. Er hat (bis auf ein paar Ausnahmen) einen Klassiker nach dem anderen auf die Beine gestellt!   Zudem fand ich sein Biker-Gimmick jetzt nicht so schlimm, im Gegenteil: Es war mal eine nette Idee was anderes mit dem Taker auszuprobieren. Aber sein Dead Man-Gimmick (welches heute überraschender Weise immer noch recht gut ankommt) bleibt natürlich ungeschlagen.   Für mich war, ist und bleibt der Undertaker einer der besten Wrestler aller Zeiten!"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Onewrote on 04.08.2015:[10.0] "Der Undertaker ist für mich die größte Legende, die das Wrestling je hervorgebracht hat! Ich stelle ihn daher auch über Leute wie The Rock, Steve Austin oder Hulk Hogan.   Mit seinem einzigartigen Gimmick, der unglaublichen Streak und unzähligen Klassiker-Matches hat er mehr Geschichte geschrieben als jeder andere! Und auch heute noch liebt er das Geschäft, trainiert Jahr für Jahr (bzw. dieses Jahr sogar zweimal) auf ein Match und zieht nach wie vor alle in den Bann, wenn der berüchtigte Gong ertönt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Zedwrote on 14.07.2015:[10.0] "Man sollte beim Undertaker weder nur die Ring Präsenz als auch die heutige zeit bewerten, sondern die gesamte Karriere. Er ist schon sehr lange dabei, mittlerweile nur noch ein One Hit Wonder, aber das was er in diesem Business alles erreicht hat und den eindruck den er hinterlassen hat das ist einmalig. deshalb kann man da nur 10 punkte geben, für die gesamte Karriere, die Präsenz des Gimmicks, diese spezielle Aura, seine Streak und alles was er dem Wrestling gegeben hat. Bitte komplett bewerten, nicht nur teile von ihm."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MoeHartmanwrote on 21.06.2015:[8.0] "The Undertaker is excellent as a character and has been involved with countless memorable storylines, but much of that has to do with booking. He became a decent talker as his Big Evil character in the early 00s, but his more traditional Deadman character gets by on appearance more than anything, especially his elaborate entrances. In the ring he is good but not as great as many people suggest. For a man his size, he moves incredibly well, and he seems to be a safe worker, but ironically, his best work has almost always come when he threw caution to the wind, such as in his famous matches with Shawn Michaels. He is reliable and his character ensures that he will always be watchable, but he usually was not especially entertaining unless he had a good opponent."
Rating: 8.0
Sentiment: 0.32048611111111114
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kevin434wrote on 14.06.2015:[7.0] "Ich habe ihn schonmal mit einem anderen account mit 10 punkten bewertet. Nunja, mittlerweile bin ich anderer Meinung, klar ist der Deadman gut und eine unsterbliche Legende, jedoch ist er für mich im Ring nicht auf Shawn Michaels Niveau, er hat einfach diesen unsterblichen Charakter den es so schnell nichtmehr geben wird, am mic war er, wenn er es mal hatte, gut, charisma hat er selbstverständlich auch, das war sogar ziemlich gut, im ring würde ich ihn nur 7/10 punkte geben."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ezewrote on 02.06.2015:[10.0] "Was lässt sich über das Phenom noch sagen..  Ein Mann der hinter der WWE steht wie sonst nur Vince persönlich.  Er ist der größte Star den diese Industrie jemals gesehen hat, mit einem Gimmick welches bei jedem anderen gefloppt wäre. Doch der Deadman wusste sich stehts neu zu erfinden und das Mysterium hinter seinem Charakter zu wahren.  Er ist der wahrscheinlich letzte Verfechter des Kayfabe und vielleicht auch das letzte Gimmick seiner Art.  Der Grund wieso all die gennanten Aspekte zu gut zusammen gewirkt haben liegt darin, dass der Taker für seine gigantischen Maße sehr agil ist weshalb er auch nicht mit klassischen Big Man zu vergleichen ist.  Er ist schlichtweg ein guter Wrestler mit Aktionen die beinahe so viel Prestige haben wie er selbst.   ABER leider ist der Gute seit geraumer Zeit nur noch ein Schatten seinerselbst, was in dem Alter und bei einer 31 Jahre langen Karriere kein Wunder ist. So sehr ich mich auch freue ihn zu sehen schaden die Wrestlemania Auftritte der letzten Jahre nur seinem Vermächtnis und nehmen jungen Talenten den Platz auf der Card weg.  Es ist nun die Zeit den Platz frei zu machen, und den Charakter des Undertakers in Frieden ruhen zu lassen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jbbhammywrote on 15.05.2015:[10.0] "How anyone could give him less than 10 points is beyond belief. Probably the best the WWE has ever had. Definitely in the top 5 of any real fan's list. His Wrestlemania streak is legendary. He has one of the best movesets the WWE has ever had and was part of some of the best matches and feuds wrestling has ever seen. In my opinion, the Deadman has the best entrance ever. He deserved a longer World Title run than he ever did have, but even without the World Title at stake, his matches were always the matches that everyone looked forward to. Amazing wrestler, amazing man. I don't think there will ever be another Undertaker. We were lucky to have him."
Rating: 10.0
Sentiment: 0.5888888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WrestleArtswrote on 14.05.2015:[8.0] "Guter Entertainer, das American Badass Gimmick hat jeodch gezeigt, dass, wenn man die ganzen Smoke and Mirrors Effekte wegnimmt, "nur" einen guten Wrestler mit guter Ausstrahlung und durchschnittlichem Micwork hat. Wie gesagt, wrestlerisch einwandfrei, aber auch hier wird viel geschummelt, viele Dives und Spots, gebumpe, keine Big Man-Psychology etc. Über den heutigen Mister Magoo Look sage ich mal nichts."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MAGICIANwrote on 02.05.2015:[10.0] "Da muss man nicht viel zu schreiben. Der Undertaker ist mit Abstand der beste Superstar, der jemals einen WWF-Ring betreten hat und auch je betreten wird. Das beste Gimmick, die besten Fehden und die meisten 5* Matches gehen auf sein Konto (oder er war zumindest wichtig für diese Fehden wie z. B. bei Austin vs McMahon). Grandioses Micwork und eine atemberaubende Ausstrahlung.  Zusammenfassend: Niemand kann ihm auch nur ansatzweise das Wasser reichen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MusSanwrote on 25.04.2015:[10.0] "Einfach eine Legende. Jeder seiner Auftritte hatte Impact. Was mir nicht gefallen hat, dass die WWE aus ihm damals einen patriotischen Biker gemacht haben, aber zum Glueck haben sie ihm sein altes Gimmick zurueck gegeben.  Mit Kane hat er ein geiles Team gebiltet, The Brotherst of Destruction, einfach genial. Sogar seine Wrestlemania Sterak finde ich klasse, schade , dass sie Brock Lesnar brechen durfte. Seine bisslang letzte Wrestlemania Fehde gegen Bray Wyatt hat mir nicht gefallen, er war quasi nicht dabei, erst beim Match tachte er auf. Bei der Wrestlemania 32 gegn Sting noch ein match besteiten und dann sollte er Scghluss machen. Solche Gimmicks wie , das vom Undertaker werden wir in der heutigan Era nur selten sehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Swenson 238wrote on 12.04.2015:[10.0] "Der Undertaker ist einfach nur ein Phänomen des Wrestlings. Schon mit 7 Jahren ('94) war ich einfach nur fasziniert von seiner Art und seinem Gimmick. Leider hat er meiner Meinung nach so langsam seinen Zenit überschritten und er hätte mit einer bestehenden Streak in den verdienten Ruhestand gehen und so den Mythos für die Ewigkeit aufrecht erhalten sollen. Die 10 Punkte bekommt der Taker für sein Lebenswerk, nicht für seine aktuellen Leistungen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RavenEffectwrote on 11.04.2015:[10.0] "Greatest and most respected big man of all-time, who really deserves a spot in WWE Hall of Fame for his work and loyalty for this business, as he has supported several undercard wrestlers in backstage, dared to stand up against Kliq, he comes along with anyone who respects him, and is also pretty cool guy outside the wrestling. He has been in several high class feuds/matches with the guys like Shawn Michaels, Triple H, Edge, Batista, Brock Lesnar etc. And even though the Streak is over, that doesn't make him less legendary than he is. Real legend. Respect."
Rating: 10.0
Sentiment: 0.26871794871794874
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: zackwoowoowooryderwrote on 24.03.2015:[10.0] "Der Beste der jemals in einen Wrestlingring gestiegen ist, in jeder hinsicht einfach nur vollkommen, es gibt in meinen Augen keinen der ihm das Wasser reichen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: pfuschiwrote on 07.03.2015:[10.0] "Full 10!  Undertaker is the greatest gimmik/character ever, he is the MAN and he always will be. Most respected WWE star, maybe ever.  great as a heel or face.  loved him since the first day he arrived in 90, I will be at the Hall of Fame when he goes in."
Rating: 10.0
Sentiment: 0.6145833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: eldenaaaaawrote on 19.02.2015:[10.0] "A man who needs no introduction. A gimmick like no other, paired with agility and size never seen before. A former 3X WWE World Heavyweight Champion, Tag Team Champion and Hardcore Champion."
Rating: 10.0
Sentiment: 0.03125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Luka Modricwrote on 10.02.2015:[10.0] "Best gimmick of all time. Best big man wrestler of all time. This man has been capable of getting great matches against opponents like Batista, Mark Henry or Khali. Whenever he stepped into the ring, he captured your attention all the time. Personally, the first match I've seen was his Punjabi Prison Match against Big Show nine years ago, I discovered wrestling with him. At first, I even feared him. So much greatness."
Rating: 10.0
Sentiment: 0.37
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Viper99wrote on 04.02.2015:[10.0] "Als Bad Ass und Ministry Taker ein ernstzunehmender Heel!  Als Face fand ich ihn nie besonders gut. Er war einfach 0815 Licht aus, kam, Chokeslam und geht wieder! Hatte dennoch auch als Face einige sehr sehr gute Matches bzw. Fehden wie zb. Gegen Edge, Randy Orton, HBK oder Triple H.  Hat in den letzten 2 Jahren aber rapide nachgelassen. Was natürlich an seinem alter liegt. Gerade in dem Match vs Punk hat man gesehen das er klar durch das Match gezogen wurde.  Dennoch bekommt er da er mal Richtig stark als Heel war und Nicht Schlecht als Face war, einige gute Matches bzw. Fehden hatte und ein Mann ist der sich auch noch als "alter Hase" den hintern aufreisst 10 Punkte"
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: austin1987wrote on 03.02.2015:[8.0] "Sein Gimmick ist eines der Besten was die WWE hervorgebracht hat. Hatte viele gute Fehden und viele Matches, welche heutzutage richtige Klassiger sind. Dennoch muss ich 2 Punkte abziehen da er im Ring einfach gute Gegner braucht um ein tolles Match zu liefern. Außerdem konnte er mich am Mic nie wirklich überzeugen, ich weiß das wenige Sprechen gehört zu seinem Gimmick aber als Biker "durfte" er Sprechen und da waren seine Promos auch nicht das Gelbe vom Ei."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheUndertaker456wrote on 26.01.2015:[10.0] "Also, wo soll ich denn anfangen..... Ich weiß nicht recht, denn am Undertaker gibt es eigentlich nicht wirklich irgendetwas zu kritisieren.  Mein absoluter Lieblingswrestler war er schon immer und für einen über 2m Riesen hatte er ein erstaunliches Repertoire an Moves.  Seine Matches waren zu Glanzzeiten nahezu immer perfekt, vor allem die legendären Hell in a Cell-Matches mit Shawn Michaels, Triple H, Mankind, Batista usw.  Im Alter war er vom Gimmick her am Höhepunkt , aber in den letzten zwei Jahren merkte man, dass er nicht mehr so gut in Form ist. Nicht nur zuletzt wegen seinem Match gegen Brock Lesnar, wo er gut 10kg leichter und erheblich untrainierte aussah, sondern auch die langen Pausen in zw. den Matches.  Mit einem Kampf gegen The Shield versuchte man wieder den Deadman ins Wochenprogramm einfließen zu lassen, aber leider vergeblich.  Alles in allem ist und bleibt der Undertaker weiter mein all-time favourite und ich hoffe, dass ich ihn bei einem finalen Kampf nochmal zu Gesicht bekomme und er auch einen dementsprechend würdigen Abgang machen wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DerLandvogwrote on 21.01.2015:[10.0] "Unglaublich starker Wretler gewesen. Einer wenn nicht sogar mein absoluter Lieblingswrestler in der Kindheit und jetzt immer noch. Auch das Gimmick hat 1A gepasst. Ich finde es unter anderem auch erstaunlich, dass er mit dieser Statur so ein gutes Wrestling und auch so eine Athletik hinbekommen hat. Respekt an The Undertaker!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RooneyDXwrote on 04.01.2015:[10.0] "Er ist mein absoluter Lieblings Wrestler. Wenn er aufhört wird immer bei der wwe etwas fehlen. 10 Punkte, weil er sein Gimmick nahezu perfekt spielt und kaum kayfabe bricht. Best Ever"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BEROwrote on 30.12.2014:[10.0] "Der mit Abstand beste Wrestler den es gab. Egal ob als Biker oder als Sensenmann mich hat er immer fasziniert und beeindruckt. Mit 208 cm ist es nicht leicht so beweglich und schnell zu sein wie der Undertaker und dafür gebührt ihn mein Respekt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ggultra2764wrote on 25.12.2014:[10.0] "Easily among the greats in professional wrestling, the Dead Man's character has been able to stand the test of time as being the last of WWE's great over-the-top gimmicks from its Golden Era for nearly a quarter century. Taker's been able to change up his gimmick during differing periods in WWE and has been able to add or alter aspects of his character and moveset to keep it fresh in the minds of WWE fans. For a man his size, he is surprisingly agile as he can walk the ropes and whip out suicide dives. While nowhere at the level of anyone like The Rock or CM Punk, the Dead Man can also cut good promos that go along well with whatever stage of his career in which he portrayed his gimmick as the Dead Man or American Bad Ass/ Big Evil."
Rating: 10.0
Sentiment: 0.09666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Y2J316wrote on 28.11.2014:[10.0] "Der Erste Wrestler den ich im TV sah und er ist und wird immer einer der allerbesten sein. So viele Legendäre Matches und Momente mit ihm. Am Meisten mochte ich ihn als Biker und als Ministry um 99 rum. Seine letzten Matches mögen zwar noch gut gewesen sein aber auf den letzten bildern sah er doch ziemlich am ende aus. Auch er ist sicher in der Hall of Fame wenn es denn vorbei ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Muyo90wrote on 23.11.2014:[8.0] "Definitiv eine Legende der WWE. Unfassbare Matches gegen HBK, Triple H oder CM Punk bei WM abgeliefert. Sein Gimmick ist an Mystik kaum zu überbieten. Ein großartiger Wrestler. Und trotzdem habe ich etwas wichtiges zu kritisieren. Sein Karriereende kommt für mich 2 Jahre zu spät. Praktisch trainiert er seit 3 Jahren nur noch für das jährliche WM-Match. Finde ich nicht so prickelnd und auch seine Leistungen noch vor 3-4 Jahren waren stärker als z. B. dieses Jahr gegen Brock Lesnar. Wobei man anmerken sollte, dass es eine Schande ist das Brock Lesnar die Streak brechen durfte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AwesomeAlbertsenwrote on 23.10.2014:[10.0] "Diesem Mann kann man nur 10 Punkte geben. Bis hin zu seinen letzten Matches konnte er im Ring immer überzeugen. Am besten hat er mir jedoch von 08-11 gefallen, wobei auch sein Bad Ass Gimmick nicht schlecht war. Beeindruckend war auch seine Beweglichkeit im Ring und sein Highflying. Aber noch besser, als im Ring, war er am Mic. Es gibt nicht viele, die eine so unfassbar emotionale und perfekte Promo halten kann. Vor allem im DeadManGimmick. In meinen Augen der beste Wrestler und Entertainer, den es je gegeben hat und für mich das wahre Gesicht der WWE.  Aber im Alter von 49 sollte er langsam über ein Karriereende nachdenken. Denn noch sind seine Matches von guter Qualität, aber das wird nicht ewig so bleiben."
Rating: 10.0
Sentiment: -0.6999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kick-Out-At-Twowrote on 15.10.2014:[10.0] "The Undertaker.. einfach nur eine 10. Wohl der glaubwürdigste Charakter in der Geschichte der WWE. Von seinem Intro bis zum Ringong des Sieges wohl auf ewig unverwechselbar. Trotz seiner gigantischen Statur früher unglaublich gute und vielseitige Ringfertigkeiten und Teilnehmer vieler Legendärer Kämpfe, die ihm allerdings auch einen großen Gesundheitstribut gezollt haben. Das einzig negative könnte man in diesem Punkt sehen , das er den Ausstieg verpasst hat.. während er beim Kampf gegen Punk noch in sehr guter Verfassung war , traf mich fast der Schlag als er gegen Brock Lesnar in den Ring trat , nurnoch ein Schatten seiner selbst.  Für sein "Lebenswerk" wäre aber alles andere als eine 10 eine Beleidigung."
Rating: 10.0
Sentiment: -0.04999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JamieRollinswrote on 04.10.2014:[7.0] "Never a 9 plus superstar wrestler, not a much in ring ability to have a 9 plus rating. Could wrestling record but the rating must take into account for wrestling ability also."
Rating: 7.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mrjoshdudewrote on 29.07.2014:[10.0] "One of the greatest wrestlers of all time. Probably the second most recognisable wrestler just behind Hulk Hogan, Undertaker has been an icon in pro wrestling for over 20 years. He's had one of the most enduring characters in history and probably the greatest gimmick of all time. Obviously he's had the streak which will be remembered forever, probably the best draw in the business for the last 10 years or so. Beyond his status in the wrestling business he's actually a pretty awesome wrestler when he's against the right guy. His three matches with HBK in 1997, 2009, and 2010 in particular stand out, but also his matches with Edge, CM Punk, and Batista have also shown he can definitely go. You can't really give him any less than 10 here."
Rating: 10.0
Sentiment: 0.33348214285714284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WweFanwrote on 24.07.2014:[10.0] "Er ist die größte Legende die die wwe jemals hat und haben wird. Da kommet auch kein rock stone cold oder hogan ran. Dieses Gimmick und moveset ist mit keinem andern Wrestler zu vergleichen... Eigt sollte man 11 Punkte geben dürfen... Aber eins noch. Es ist eine Schande das die größte streak der Welt durch einen Wrestler wie brock lesnar gebrochen wurde."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Muxxelwrote on 11.06.2014:[10.0] "Eine absolute lebende Legende die alles erreicht hat und ich hoffe das wir Ihn irgendwann nochmal sehen zu einem letzten Match!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: J-Gwrote on 06.06.2014:[10.0] "er ist einer der besten Wrestler überhaupt, hat ein großes Move-Set und auch am Mic hervorragend, er verliert auch sehr wenig Kämpfe, leider hat er bei wrestlmania xxx gegen Brock Lesnar verloren, ich hoffe er kämpft nächstes Jahr ber Wrestlemania xxxi gegen Sting und besiegt ihn"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CREMATORwrote on 16.05.2014:"Ich bin mit dem Undertaker groß geworden! Es gibt keinen Wrestler der größer als der Taker ist. Und es wird nie wieder einen geben der dem Taker nahe kommt. Zu seiner Streak. Insider wissen zufolge, hatte der Taker mitten im Kampf gegen Lesnar ein Gehirnerschütterung bekommen, wonach meiner Meinung der Taker nicht mehr in der Lage war zu gewinnen. Selbst ein Kind hätte den Taker in diesen Zustand ausgenockt. Doch Vince McMahon gab vor dem Match jedem den ausdrücklichen Befehl, das das Match unter keinen umständen abgebrochen werden darf. Für den Taker selbst war eigentlich nicht geplant das er verliert. Vince jedoch billigte ein brechen der Streak.  Lesnar hat nicht gewonnen, er hat einen kranken Mann der nicht mehr kämpfen konnte im Ring gebrochen, gedemütigt. Damit er sich jetzt als Brecher der Streak feiern lassen darf. Und Heyman dieser ******* behauptet auch noch dies war sein werk. Pfui auf Heyman und all Heyman Guys!   Ich wünsche dem Taker gute Besserung und einen verdienten Ruhestand als der der er ist, The Phenom, das Mysterium, der Undertaker der nicht zu besiegen ist. Die Streak wurde für mich durch Krankheit gebrochen und nicht durch Lesnar!"
Rating: No rating found
Sentiment: 0.9375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: wwefan98wrote on 11.05.2014:[10.0] "Ganz klar einer der besten die es jemals gab und geben wir. Nur ich habe immer gedacht das Shawn Michaels der einziege Wrestler ist der die streak brechen kann und alls der das nicht geschaft hat habe ich gedacht die wird von niemanden gebrochen. Doch was bei Wrestlemania 30 passierte damit hätte ich niemals gerechnett das ein Wrestler wie Brock Lesnar der kaum in den Shows autriet die streak brechen kann. einfach nur dumm sowas zu machen. Aber so ist er einer der besten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Steenericowrote on 03.05.2014:[6.0] "Er mag zwar eine Legende sein, ich finde ihn aber trotzdem etwas overrated - genauso wie einige seiner Wrestlemania Matches, von denen mich nur wenige überzeugen konnten. Vom Wrestlerischen her gibt es da für mich einige bessere Wrestler. Er ist zwar gut, aber nicht überragend."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ArtyomCorleonewrote on 02.05.2014:[10.0] "The most scariest wrestler ever, which at impressive dimensions always showed not only the tremendous power, but also extraordinary dexterity."
Rating: 10.0
Sentiment: 0.4333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AJLeeLoverwrote on 23.04.2014:[10.0] "Hab damals sein Debüt gesehen (ja, ich bin schon so alt) und war sofort fasziniert und begeistert. Ok, er hat sich über die Jahre noch um einiges besser entwickelt, aber mir war damals schon klar, das ich da was besonderes sehe. Er war für mich auch nie wirklich schlecht gewesen (mal vom Biker Gimmick abgesehen). Aber sobald das Licht aus geht und der Gong ertönt bin ich sofort wieder gefesselt. Schade, das die Karriere wohl jetzt zu Ende ist, aber es war wohl die eindrucksvollste Karriere im Wrestling (zumindest für mich). Für immer mein Lieblingswrestler."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Edge and Christianwrote on 20.04.2014:[10.0] "Nach 3 Jahren Pause muss ich sagen, dass der Undertaker mich immer noch genauso begeistert, wie er es tat, als ich aufgehört habe zu schauen!  Seine Arbeit am Mic ist perfekt, da sie sein Gimmick perfekt unterstreicht, und seine Aura, die ihn seit Jahren umgibt, ist einmalig.  Egal ob als Face, als Heel oder als Biker... er war nie schlecht!  Mittlerweile ist er leider in die Jahre gekommen aber ich denke mit dem Ende der Streak ist endlich eine enorme Last von seinen Schultern genommen wurden, da er wahrscheinlich selbst nicht weiß, ob er nochmal in den Ring steigen wird und kann... (auch wenn es wirklich traurig ist) Auf jeden Fall wird er einmal ein Hall of Fame-Mitglied, den er ist eine LEGENDE!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CrIppIL3RTIRiXwrote on 17.04.2014:[8.0] "Das hier ist dem Mann mit dem besten Gimmik der 90 Jahre. Mit der Zeit langweilte er mich immer mehr, aber zu seiner Biker Zeit fand ich ihn einfach genial. Worken kann/konnte er gut, denn meiner Meinung nach sollte Mark mit 49 Jahren die Boots an den Nagel hängen... Sonst gibt es noch zu sagen das Taker vor 5 Jahren hätte aufhöhren sollen und mit Michaels zusammen die WWE, WWE lassen sollen.  Anschließend gibt es zu sagen das er durchaus eine Berechtigung hat in der Wrestlingbrange und das seine Legände für immer leben wird."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: yanuswrote on 10.04.2014:[9.0] "One of the best big men in the history of this business. Undertaker is really a legendary figure, with a gimmick that is so memorable that even people who stopped watching wrestling a long time ago still remember him. I'm not giving him a 10 because of his poor mic-skills and the first half of his career, when he was very underwhelming in the ring. He was never really a " draw" , but nonetheless will be forever remembered by his fans."
Rating: 9.0
Sentiment: 0.22333333333333338
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Y2J Problemwrote on 09.04.2014:[10.0] "Eine andere Bewertung als 10 für diesen Mann ist eigentlich nicht möglich. Wer es schaft 2 1/2 Jahrzehnte mit einem eigentlich zum Scheitern verurteilten, wenn auch für ihn perfekten, Gimmick ganz ganz oben steht, der muss einfach unglaublich talentiert. Am Mikrofon wohl in den Top 3 aller Männer, die je in den Ring gestiegen sind und auch im Ring stark, mit den richtigen Leuten in der Lage, All-Time Classics abzuliefern, wie er es so oft getan hat. Eine, DIE, Legende!"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DaNiwrote on 08.04.2014:[10.0] "... dann ist es jetzt wohl an der Zeit den Mann zu bewerten, der mich seit vielen Jahren vor die Bildschirme gefesselt und mich in jungen Jahren für die WWE begeistern konnte. Über Jahre zog mich das Gimmick, die Ausstrahlung und die " Unbesiegbarkeit" des Undertakers in den Bann. Über all die Zeit reduzierte der Taker zwar seine Auftritte, trotzdem sorgte er mindestens einmal im Jahr für einen schönen Augenblick im Wrestlingalltag. Falls er nun die Stiefel an den Nagel hängt, dann hat er den Bogen gerade so nicht überspannt und kann auf eine geniale Karriere zurückblicken welche es so niemals gab und vermutlich auch nie mehr geben wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Lupus Immortaliswrote on 08.04.2014:[10.0] "Es wurde Zeit, die Bewertung mal anzupassen, bzw. den Kommentar dazu. An der Bewertung selbst ändert sich natürlich nichts, gebrochene Streak hin oder her, denn dieser Mann hier ist trotzdem eine Legende. 10 Punkte, fertig, aus die Maus."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Whitebear710wrote on 08.04.2014:[9.0] "Eine wahre Ikone und sicher auch ein risen Vorbild für viele Nachwuchswrestler. In der Ministry und als Biker einfach klasse, danach etwas unauffälliger, aber trotzdem gut. Mit seiner Streak hat er einen wahren Meilenstein geschaffen. Deren Ende ist sehr schade, aber sicherlich auch ein guter Grund sich zur Ruhe zu setzen. Das Match bei Wrestlemania XXX hat deutlich gezeigt, dass er nicht mehr der großartige Performer ist den wir kennen. Durch seine großen Verdienste einer der Top-Guys im Geschäft, aufgrund der letzten Jahre mit nur einem Auftritt bei Wrestlemania und keiner vernünftigen Storyline dahinter (jedes Jahr will jemand die Streak brechen) gibt es einen Punkt Abzug. Insgesamt hochverdiente 9 Punkte!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kaydens Krosswrote on 05.04.2014:[8.0] "Seit seinem Comeback als Deadman vor 10 Jahren nur noch langweilig. Schlechte Streak-Storylines, wenn man diese überhaupt so nennen kann. Natürlich ist er dafür nicht verantwortlich, aber bei all seiner Backstage-Macht könnte er doch einmal gute Stories einfordern, wenn er denn schon nur einmal im Jahr auftritt. Als Biker solide, in der Ministry großartig und davor auch gut. Ein sehr guter Wrestler, der aber aufgrund seiner Verdienste für die WWE auch hier häufig überbewertet wird."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Macho Madnesswrote on 01.04.2014:[10.0] "Was kann man noch zu diesem Mann sagen, was nicht schon gesagt wurde.. für mich die Ikone des Pro-Wrestlings."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JeffHardy3107wrote on 05.03.2014:[10.0] "Reicht hier nicht nur ein Wort: LEGENDE! ? Ich meine schon. Der Undertaker haut mich immer wieder aufs neue um, immer wieder Gänsehaut, wenn er die Halle betritt einfach klasse. Er ist nicht oft da, aber wenn er da ist, liefert er so gut ab, wie es sein Körper zulässt. Die Mania-Matches sind einfach erste Sahne! Freue mich sehr auf sein Match mit Lesnar. Wenn einer eine 10 verdient hat, dann der Undertaker!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Chavo Guerrerowrote on 05.03.2014:[10.0] "The Undertaker-was soll man da noch schreiben? Definitiv eine Legende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TakerFanwrote on 01.03.2014:[10.0] "Eine Legende, die wie sonst kaum jemand vor ihm das Wrestling-Business geprägt hat. Er hat in seiner Karriere unzählige Klassiker bestritten und sein Gimmik ist einfach nur Kult. Auch im hohen Alter noch zu großartigen Leistungen fähig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WWELover4everwrote on 20.02.2014:[10.0] "This article is a very good source of information about the Undertaker, a lot better than the other sites I've seen his information on."
Rating: 10.0
Sentiment: 0.4283333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Duncan09wrote on 10.02.2014:[4.0] "Was die Leute an dem Kerl immer fanden? Völlig überbewertet, langweilige Matches, das Gimmick rockte nur in der Anfangszeit -92. Danach langweilte er mich immer mehr. Aus Respekt vor der langen Karriere 4 Punkte!"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Stefan24wrote on 07.02.2014:[10.0] "@Mahir Duzan Ehrlich? Undertaker und Lesnar 0 aber Sheamus und Orton 10 Punkte? For real? naja egal Einer der besten Wrestler überhaupt. Und seit vielen vielen Jahren der WWE treu. Hatte coole Gimmicks. Und meiner Meinung nach verdient er die Streak bei Wrestlemania"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HereComesThePainwrote on 04.02.2014:[8.0] "WM-Streak, Liebe für das Business und fantastische Matches selbst noch im hohen Alter. 10 Punkte gibts deshalb nicht, weil mir der Hype um sein Gimmick und so weiter und sofort viel zu sehr auf die Nerven geht. Als Wrestler top, als Deadman flop. Da gefällt mir Kane tausendmal besser."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: J0KERwrote on 23.01.2014:[10.0] "Der Undertaker eines der besten der besten der besten! Seine Siegesserie unschlagbar. Hat eines der besten Gimmicks die WWE jemals hatte. Hat eines sehr guten Mic Work hat mich bis heute immer überzeugt bei seinem Promos. Ebenso ein sehr guter Wrestler für seine Größe und Alter ist er sehr gut im Ring und hat sich all die Jahre weiter entwickelt. Hat sehr gute Fehden hervorgebracht. (vs. Edge, HBK, HHH, Batista, Kane, Lesnar, Austin) Ebenso liebt er Wrestling und zeigt es auch in seinem Matches und ist schon über 20 Jahre in der WWE angestellt und ist Treu geblieben zu seinem Arbeitgeber! Respekt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Lord Steven Regalwrote on 21.01.2014:[10.0] "Was kann man noch sagen, was noch nicht gesagt wurde? Lebende Legende, auch wenn gesundheitsbedingt jedes Jahr nur sein Wrestlemaniamatch macht"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RepoManwrote on 10.01.2014:[10.0] "Hier wurde eigentlich alles gesagt, der Mann wird immer eine Ikone bleiben. Ich hoffe er geht nicht zu früh in Rente, in ihm stecken noch ein paar Matches."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker1993wrote on 30.12.2013:[10.0] "Dieser Mann ist wirklich eine Legende, dazu auch noch mein absoluter Lieblingswrestler. Ich meine er ist unter anderem über 2 Meter und zeigt Aktionen eines Highflyers (den Top Rope Plancher). Zudem gefällt mir an Ihm auch sein Durchhaltevermögen, denn obwohl er gesundheitliche Schäden hat, giebt er dennoch immer sein Bestes. Für mich der beste den es jemals gab. Es passt einfach alles, das Gimmick, die Person dahinter, die Fähigkeiten am Mic sowie seine Fähigkeiten im Ring."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: apc24wrote on 17.12.2013:[9.0] "The Deadman is a Phenom for a reason. He's been an icon wrestling once he dawned the Undertaker gimmick. He has the ability to work great matches but somehow ends up having the opposite, mostly when working matches with big/bigger opponents (Kane, Big Show, etc. )"
Rating: 9.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JoTewrote on 28.11.2013:[10.0] "Mein absoluter Lieblingswrestler und eine absolute Legende. Habe seine Eingangsmusik als Klingelton auf meinem Handy"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dreamforcewrote on 25.11.2013:[10.0] "Undertaker ist schlicht und ergreifend die größte Legende, die die WWE geschaffen hat und der Wrestler mit den meisten großen Matches von allen. Er hatte in der Vergangenheit viele interessante Storylines und konnte in jedem Gimmick und gegen jeden Gegner sehr gut überzeugen. Wenn der Gong seiner Entrancemusik ertönt baut sich in einem sofort Spannung und Freude auf und seine Präsenz allein kann Fans bannen. Leider trat in den Jahren nur noch seine Streak in den Vordergrund, was aufgrund seines Alters verständlich ist, jedoch ihn immer weniger überzeugend wirken lässt, da er quasi nur noch 3x im Jahr oder so auftaucht, sein Match an WrestleMania bestreitet und auf das nächste Jahr wartet. Deshalb denke ich, dass er vielleicht an der Zeit für ein Ende der Karriere wäre, damit man ihn als die Legende in Erinnerung behält, die er ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AS-STYLEwrote on 23.11.2013:[10.0] "The Phenom of the WWE. Mein absoluter Lieblingswrestler, was sich bis zum heutigen Tage nicht geändert hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SoRoNwrote on 11.11.2013:[10.0] "einfach eine lebende legende! sein auftreten seine aura einfach alles ist genialst! großen respekt vor diesem mann!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Lenz91wrote on 05.11.2013:[10.0] "Undertaker, was soll man zu diesem Mann sagen.  Gimmick: Das wohl bekannteste, spektakulärste und aufrecht erhaltenste Gimmick der ich würde sogar sagen Wrestlinggeschichte. Kein Gimmick hat die Jahre so gut überstanden wie Undertaker.  Technik: Klar Undertaker is groß und vielleicht nicht der schnellste, aber für seinen Körper zeigt er Hammer aktionen, man denke nur an den Suicide Dive übers oberste Seil. Und auch allgemein find ich sein Moveset passend zu seinem Gimmick Ich behaupte das ein Undertaker mitterweile schon einen Hulk Hogan und Bret Hart überholt, was den Legendenstatus angeht. Den trotz seines emensen Alters zeigt er immer noch auch wenns leider nur zur WrestleMania ist hammer Matches. Man weiß zwar eigentlich vorher das Undertaker gewinnt, aber dennoch finde ich durch den Aufbau die Matches dermaßen spannend, das man oft denkt WOW er hat es tatsächlich geschafft nochmal aus dem Cover rauszukommen. Ich bin echt gespannt wie viel noch kommen wird, hoffe aber das er vielleicht bei 22-0 Schluss macht, und sich anderen Aufgaben in der WWE stellt, als als Road Agent, Trainer oder sonstiges. Taker hat ahnung vom Buisness und ihm vielleicht allgemein paar Fäden in der WWE ziehen zu lassen würde ihr bestimmt nicht schaden."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Daneraswrote on 03.11.2013:[9.0] "Nein! Warum wurde sein Gimmick verändert? Zu seiner Zeit als Undertaker war er der beste Wrestler überhaupt. Ich habe ihn ständig bewundert, und war ein grosser Fan von ihm. Es hat mich so oft genervt, wenn die anderen Wrestler ihn häufig gestört haben. Aber ich muss sagen, sein Gimmick war super! Dann hat es sich etwas verändert, und es hat auch seine Image etwas kaputt gemacht. Schade!"
Rating: 9.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ProRedstonewrote on 02.11.2013:[10.0] "Ganz klar eine Legende, das einmalige auftreten macht ihn noch ein wenig besonderer !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Chris1201wrote on 02.11.2013:[6.0] "War mal richtig Klasse, ist aber viel zu alt und soll bitte in den Ruhestand gehen, weil ich ihn nicht irgendwann mal im Rollstuhl sehen möchte."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: deadfru5wrote on 21.10.2013:[9.0] "Gutes Wrestling, ein fantastisches Gimmick, grandiose In-Ring Physik und eine großartige Konstanz. Der Inbegriff Wrestlemanias und des WWE-Wrestling im großen und ganzen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gandalfwrote on 14.10.2013:[10.0] "DIE Legende im Business und seit fast 20 Jahren mein Lieblingswrestler. Leider derzeit Alters- und Verletzungsbedingt nur noch sporadisch zu sehen. Sollte aus meiner Sicht bei WM 30 noch mal ein großes Match liefern und sich dann aber von der aktiven Bühne verabschieden. Und dann: Hall of Fame!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Slyderwrote on 06.10.2013:[10.0] "Was muss man zum Undertaker sagen? Selbst Leute, die nichts mit der WWE zutun haben, kennen ihn.  Hat ein ziemlich guten Kampfstil, der zum " Gimmick" passt. Das einzige, was mich etwas stört ist, das er seit einigen Jahren nur kurz für WM auftaucht um nach seinem Match instant für ein Jahr zu verschwinden.  Ich hoffe, das die WWE seinen Streak niemals brechen wird. Einfach DAS Phänomen und selbst nach dem 50. Jahr mit der selben Entrance immer noch Gänsehaut, einfach episch! 20/10"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kid Rockwrote on 06.10.2013:[10.0] "Der Undertaker ist für mich allein von seiner historischen Duftmarkensetzung innerhalb der WWE her (weiterhin) die größte Legende in dem Buisness. Dazu kommt das mit Sicherheit stärkste und faszinierendste Gimmick aller Zeiten, welches sich dank seiner konstanten Entwicklung über die Jahre auch nie wirklich abgenutzt und stattdessen dafür gesorgt hat, dass der Deadman während seiner gesamte Karriere über eine derart machtvolle Aura der Unberührbarkeit und Dominanz ausgestrahlt hat, dass man nicht anders kann als (immer noch) fasziniert zu sein, wenn er die Arena betritt. Durch seine enorme physische Präsenz und Souveränität wirkte es auch nie aufgesetzt und der Taker konnte seinen Status auch regelmäßig mit (wenn auch nicht in jeder Phase seiner Karriere) brandstarken Leistungen im Ring rechtfertigen, die ihm zurecht als einen der besten Big-Men im Mainstream-Bereich, vielleicht sogar in der gesamten Industrie auszeichnen. Kaum einer versteht es das Big-Match-Feeling während seiner Kämpfe dermaßen intensiv zu vermitteln wie der Deadman, dessen Verdienste für die WWE und dem Buisness allgemein unübertroffen bleiben. Dass das Alter ihm bereits deutlich zu schaffen macht, lässt sich kaum wegdiskutieren, es spricht aber wieder mal für den Deadman, dass er auch das in eine sinnvolle Entwicklung seines Gimmicks hin zu einem verletzlicheren, abgekämpften Veteranen mit einbaut und auch in dieser ungewohnten Rolle als Underdog-Undertaker gegen die richtigen Gegner zu fesseln versteht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Testaverdewrote on 22.09.2013:[10.0] "Der Undertaker, ob als stummer, dunkler und mysteriöser Deadman aus dem Death Valley oder als redseeliger, aggressiver, Motorrad fahrender Biker, er zieht einfach jeden in seinen Bann. Seine Fehden gegen Kane, Batista, Edge und Shawn Michaels, haben höchsten Unterhaltungswert, die man sich noch Jahre später ansehen kann. Seine Wrestlemania Siegesserie von 21:0 ist und bleibt einzigartig aber man merkt schon seit längerem das der Zahn der Zeit am Sensenmann nagt, weswegen Ich der Meinung bin das er seine Karriere entgültig beenden sollte also auch nicht mehr bei Wrestlemania antreten. Erreicht hat er schon alles was man im Wrestling erreichen kann und Ich sehe Ihn als zukünftigen Hall of Famer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DieOffenbarungwrote on 22.09.2013:[9.0] "Eine Legende.... die vermutlich aufhören sollte! Ich weiß, damit mache ich mir viele Feinde, aber er ist kaum im TV zu sehen! Seine Kämpfe bei Wrestlemania waren zwar immer noch stark, aber ansonsten sieht man ihn gar nicht mehr. Im Ring ohne Zweifel einer der Besten, würde ihm jeder Zeit eine 10 dafür geben. Allein was der Mann trotz seiner Größe im Ring zeigen kann! Am Mikro finde ich ihn eigentlich gar nicht so gut, aber sein Auftreten macht da einiges wett. Die WWE sollte für den Untertaker jemanden suchen der dem Deadman bei Wrestlemania die Streak zerstört. Einfach um einen Schlussstrich zu ziehen und vielleicht ein junges Talent enorm zu pushen. Aber naja, wer weiß wie die Pläne der WWE bezüglich des Untertakers aussehen."
Rating: 9.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Leonewrote on 20.09.2013:[10.0] "Without a doubt, 1 of the greatest american wrestlers of all time, and probably the greatest big-man in the history of wrestling.  He was not only very strong in his prime, but also incredibly agile, and he possessed a toughness that could rival the Japanese legends of the industry.  Along with these facts, he is an excellent showman, a great storyteller, and he possesses some of the best in-ring psychology around.  Even in his " old age" he can still hang with the stars in terms of in-ring quality, and often puts on the the best match at Wrestlemania, with and without Shawn Michaels as an opponent.  He is at a point now where getting a chance to wrestle him is like a most-high honour.  He is also 1 of few wrestlers who was able to change with the times.  So well in fact, that it's rare to be bored by him.  10.  Enough said."
Rating: 10.0
Sentiment: 0.41549019607843135
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: koeddylaemmlewrote on 19.09.2013:[10.0] "The epitome of " evolving to stick to the times" . The Undertaker has been able to captivate audience members and their children... and their children afterwards. The Undertaker's Wrestlemania Streak alone is something of legend that will never be duplicated."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[8.0] "Eine Legende, das Phänomen WrestleManias (allerdings ist das auch ziemlich langweilg).. Das Biker-Gimmick zum Anfang des Jahrtausend gefiel mir komischerweise am besten, obwohl er ja der Deadman ist, der ja sonst eher düster und in Schwarz seinen Gegner Angst einflößt. Es gibt diverse großartige Matches, die der Undertaker in seiner langen Karriere ausfochte. Abzüge in der Bewertung bekommt er von mir dafür, dass, wenn er zu sehen ist, dies nur zu WM ist und er auch sonst keine Matches mehr bestreitet, dann soll er wegbleiben. Ich finde die Aufbauten zu seinen aktuelleren Matches eher langweilig, da sie meist nur aus öden Promos bestehen. Und wenn er mal ein Match bestreitet, fällt er mind. ein halbes Jahr aus... Er soll einfach seine Stiefel an den Nagel hängen! Es ist unfair den Workern gegenüber, die sich das ganze Jahr den A**** aufreißen und ihm dann weichen müssen."
Rating: 8.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RKOUnleashedwrote on 23.08.2013:[10.0] "Mark William Calaway der Mann hinter dem Undertaker... es gibt kaum einen der ihn nicht kennt.   Er ist und bleibt The "Phenom" Undertaker... und er soll noch lange weiter Wrestlen !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Palace of Wisdomwrote on 14.08.2013:[6.0] "Eine stark in die Jahre gekommene Legende. Mit dem Gimmik konnte ich nie etwas anfangen, trotzdem hat der Mann meinen vollen Respekt. In den letzten Jahren hat er allerdings deutlich abgebaut und ich wünsche mir ein würdiges Karriereende."
Rating: 6.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Geneywrote on 10.08.2013:[10.0] "Das beste was es je im Wrestling gegeben hat. Danke Mark für die geile zeit mit dir!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MrFisch5wrote on 01.08.2013:[10.0] "Der Mann der wohl alles erreicht hat was man erreichen muss. In den letzten Jahren waren seine WM Matches zwar immer richtig stark aber ehrlich gesagt will ich jetzt noch eine letzte epische Schlacht um den WWE Championtitel bei Wrestlemania 30 gegen Cena im Main Event und dann kann er sich sehr gerne in den Ruhestand begeben."
Rating: 10.0
Sentiment: -0.016666666666666677
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Great Marinhowrote on 28.07.2013:[10.0] "Einer der besten " Big Man" und eine Legende die seines gleichen sucht!  Schade das seine Karriere sehr bald enden wird."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Weskerwrote on 22.07.2013:[10.0] "Selbst meine Oma kennt den Undertaker. Warum? Weil er eine verdammte Legende ist. Mehr muss man dazu auch nicht sagen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Boris The Menacewrote on 20.07.2013:[5.0] "I'm not a hater, but in my mind there's no contest about who is the most overrated worker in the history of this industry, it's Mean Mark. Overall a solid wrestler that made it big thanks to a decent mystic gimmick that also saved his career."
Rating: 5.0
Sentiment: 0.07916666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sir Vida Loca IIIwrote on 07.07.2013:[10.0] "Die größte WWE-Legende aller Zeiten. Er wurde mit den Jahren immer besser, zeigte zuletzt trotz hohen alters konstand gute Leistungen. Wrestlerisch einem Hulk Hogan meiner Meinung nach Meilenweit vorraus, und auch viel länger am stück aktiv für die wwe. Nun ist die Zeit gekommen in der er sich langsamm aber sicher verabschiedet, es ist schade aber er hat sich seinen Ruhestand mehr als verdient. WrestleMania wird kommen, selbiges trifft auch auf den Deadman zu."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fastlane86wrote on 02.07.2013:[10.0] "Mein Lieblingswrestler aller Zeiten. Konnte auch zu späten Zeiten immer gute Matches bestreiten. Das Gimmick ist immer noch brilliant, auch als Biker fand ich ihn super.  Abgesehen dass er die wohl imposanteste Entrance aller Zeiten hat kann ich mich einfach an keine Zeit erinnern, in der er mich gelangweilt oder enttäuscht hätte.  Nur... langsam sollte er mal daran denken, die Wrestlingstiefel an den Nagel zu hängen."
Rating: 10.0
Sentiment: 0.6166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LeonAusBOTwrote on 01.07.2013:[10.0] "Als ich 2006 angefangen habe, Wrestling zu schauen war er sofort mein absoluter Favorit. Heute hat sich vieles geändert, aber er ist und bleibt mein absoluter Liebling. Wer das schafft, kann ja nicht so schlecht sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: test85wrote on 08.06.2013:[10.0] "Der größte WWE Superstar aller Zeiten. Ausserdem ist er der Superstar der sich in seiner Karriere am meisten verbessert hat. Auch Menschen die vor 20 Jahren die Wwe verfolgt haben fragen heute noch nach ihm. Unvergessen seine Matches gegen Hart, Edge, Triple H & HBK. Schade das es nie zu einem 1vs1 gegen Jericho auf großer Bühne gab. Sollte er wirklich einmal zurücktreten, dann geht eine Ära des Wrestlings zu Ende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HooliNerdwrote on 10.04.2013:[10.0] "Die epischsten Schlachten in der WWE/WWF im Ring und hat als Deadman für mich das beste Gimmick aller Zeiten. Wrestlemania 29 gegen CM Punk hat es mal wieder gezeigt, dass er es immer noch drauf hat. Seitdem ich Denken kann ist der Taker präsent und ich hoffe noch auf ein paar tolle Matches mit ihm."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jchiofalwrote on 08.04.2013:[10.0] "The Undertaker still is the best wrestler today. His unique combination, of striking, with power moves, and psychology is fantastic. Combine that with his consistent great matches and you have an icon, whose heights of fame will never be touched."
Rating: 10.0
Sentiment: 0.5541666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Benji1706wrote on 04.04.2013:[10.0] "Der letzte Wrestler, der irgendwie noch sein Comic-Gimmick aus den 90ern behalten hat. Betrachtet man die ganze Karriere und was der Mann schon alles gemacht hat müsste man eigentlich eine 11 zücken."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sebi7wrote on 31.03.2013:[10.0] "einfach einer der besten den es je gab niemand wird an dieses gimmick dran kommen niemand hat sich so gut verkauft wie er es wirkt als wäre er wircklich der ''DEADMAN''"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jack Slaterwrote on 16.03.2013:[10.0] "Auch auf das Risiko hin wie ein Fanboy zu klingen. Undertaker is God! Im Ring einer der besten, den es je gegeben hat. Für seine Körpergröße auch noch unglaublich athletisch, der Typ macht Moves die man sonst nur bei den " Cruiserweights" sieht, ist dazu ein sehr starker Techniker. Seine Gimmicks finde ich beide sehr unterhaltsam. Er war immerhin mein erster Lieblingswrestler. Damals als kleiner Knirps habe ich den Deadman kennen gelernt, der mit der Ministry jedes mal für Gänsehaut und Angst gesorgt hat. Als Big Evil hat er bewiesen das er Mic-Skill Technisch auch als " Badass" punkten kann. Und wenn ein Shawn Michaels schon sagt, dass er mit dem Taker einen seiner besten Fights (bzw. 2) überhaupt hatte. Einer der (future) Hall of Famer die es mehr als verdient haben!"
Rating: 10.0
Sentiment: -0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheUnderTakerwrote on 08.03.2013:[10.0] "Ich will jetzt mal ganz objektiv bewerten: Der Undertaker , bzw. diese Figur des Undertaker begeistert mich schon seit den 90ern, als ich anfing Wrestling zu schauen. Das Gesamtpaket an Fähigkeit, dieses Gimmick richtig rüber zu bringen; das Talent, bei solcher Größe im Ring als Athlet zu wirken; und dass sich Mark Calaway um alles bemüht, nicht aus der Rolle zu fallen( Bsp. : Einzug Elimination Chamber 2010). Ein weiterer Punkt ist, dass die Figur nie langweilig wird. Es wurde immer wieder Abwechslung geboten, indem man einfach das Gimmick abändert(Ministry of Darkness, American Badass, Big Evil, ... ).  Für mich der Wrestler mit dem besten Gesamtpaket."
Rating: 10.0
Sentiment: -0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Titanwrote on 06.03.2013:[10.0] "Mit Sicherheit ist der Undertaker eine lebende Legende des Wrestling-Business, jedoch hätte man ihn vielleicht schon vor nem Jahr oder zwei in Rente schicken sollen. Er bestreitet zwei Dutzend Matches im Jahr,  geht dann in ne Verletzungsauszeit, bestreitet zwei Dutzend Matches, Verletzungsauszeit, usw. Natürlich genießt er ein hohes Standing, aber für ihn selber wäre es vielleicht besser die Stiefel an den Nagel zu hängen. Das Gimmick des Totengräbers ist einzigartig und er selber hat ne Menge verdammt guter Storylines und unterhaltsamer Matches auf die Beine gestellt. Nicht umsonst wurden wegen ihm Matchstipulations erfunden und ausgefeilt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Eagle Whiskeywrote on 06.03.2013:[10.0] "Der Undertaker ist für mich der bester Wrestler und Entertainer, kurzum der beste Superstar im Wrestling Business. Er hat es geschafft ein eigentlich lächerliches 90ger Jahre Gimmick all die Jahre glaubwürdig zu verkörpern und modern zu gestallten. Innovationen wie die Sarg, - lebendig begraben, - Inferno- und hell in a cell Matches sind nicht mehr weg zu denken. Bei jedem seiner Auftritte ist Gänsehaut vorprogrammiert. Für mich auch der Grund warum ich überhaupt Wrestling schaue."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: deathsitcomwrote on 24.02.2013:[10.0] "Der Undertaker ist für mich der perfekte Wrestler. Er hat mich vor 20 Jahren beeindruckt, und ist der Hauptgrund, warum ich nach langer Absenz zum wrestling zurückgekehrt bin und es erst so richtig entdeckt habe. Er hat es geschafft, ein eigentlich albernes 90s-gimmick so zu verkörpern und immer wieder zu modifizieren, dass ich bei seiner entrance immer noch Gänsehaut kriege. Im Ring geht er einen Stil, der perfekt zu seiner Statur und seinem gimmick passt, auch diesen hat er über die Jahre immer wieder erweitert (MMA, submissions u. a. ). Dabei versteht er es immer, eine Story zu erzählen, mit seinem Gegner zu arbeiten und Momenten Bedeutung zu verleihen, moves wie ne flying clothesline werden bei ihm zu ganz großem Kino. Gerade deswegen würde ich jeden Indy-wrestler dazu verdonnern, Undertaker matches zu schauen und zu verstehen, bevor er nen Ring betreten darf. Seine zwei WM matches gegen Michaels sind brilliant, die kann man sich 100 mal anschaun, wenn 5 Sterne dann hier. Seine Karriere ist unvergleichlich, der Undertaker ist jedem ein Begriff, auch ausserhalb der whacky world of wrestling, er transzendiert diese Sphäre wie kein Zweiter. Ein Gesamtkunstwerk."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Diggertakerwrote on 13.02.2013:[10.0] "In my opinion, he has the two biggest personas in pro wrestling history. Excelent and fitting move-set and great matches throughout his career — some are the best in history. Watching a match in which he is on it is one of the most satisfying things in pro wrestling. Very few things were bad in his career. There will never be another like him. The most feared and best pure striker in WWE. And if you think I'm exaggerating, just hear a bell in the middle of an cheerful crowd."
Rating: 10.0
Sentiment: 0.37119047619047624
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: pingumen96wrote on 12.02.2013:[10.0] "Undertaker is the definitive wrestling machine. He is the best wrestler ever."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Eine lebende Legende der Wrestling: So lässt sich der Undertaker wohl perfekt beschreiben. Es ist nicht nur das beste Gimmick in der Geschichte des Pro-Wrestlings, sondern meiner Meinung nach auch das einflussreichste: Seit Anfang der 90er prägte er die WWE wie kaum ein zweiter und war Bestandteil der größten Momente in der Geschichte der WWE.  Einer der letzten Veteranten und einer der größten Stars, die es jemals gab.  Hier kann man einfach nicht weniger als 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 8BitLegendwrote on 22.01.2013:[10.0] "Ich denke es wurde alles gesagt. Taker hatte zusammen mit HBK die größten Highlights in der WWE auf die Beine gestellt und war unglaublich ausdauernd. Ich gebe aber inoffiziell eine 9, 5 Bewertung, da ich sowohl dem Biker-Gimmick, als auch den letzten Auftritten nichts mehr abgewinnen konnte. Er hat es einfach nicht mehr. Das Alter nagt an ihm. Hätte ihn gerne als weißhaarigen Guru altern sehen, aber er entfernt sich vom Gimmick in Richtung MMA-Style. Das ist es einfach nicht mehr. Fürs Gesamtwerk dennoch eine aufgerundete 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JuliTheCage87wrote on 06.01.2013:[10.0] "Dieser Mann ist der, der selbst Leuten, die nicht am Wrestling interessiert sind, sofort einfällt. " Undertaker gegen Brock Lesnar! " hatten mir damals Freunde in der Schule zugeschrien, ich wusste nicht wovon sie reden. Ich fragte sie, wer das ist, und die beiden Jungs: Ach das ist bloß das Aufeinandertreffen der Legende im Wrestling schlechthin und des aufstrebenden Youngsters. Ich sah mir das Match mit den beiden spät abends an, von da an dachte ich: Wrestling ist geil! Er hat mich praktisch zum Wrestling geführt, wie wahrscheinlich viele viele andere Menschen auch, und alleine dafür bin ich ihm so was von dankbar. Er hat mich die kommenden Jahre so dermaßen mit seinem MMA-Stil und seinen legendären Fehden gegen Batista, Edge und SHAWN MICHAELS überzeugt, daher ist er auch jetzt noch einer meiner absoluten Favoriten, egal ob es vielleicht technisch viel bessere und beweglichere Leute gibt. Er hat mit seiner Streak und seinem Charisma einfach so viel in der Wrestling-Welt bewegt, ohne ihn wäre sie sicher komplett anders."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Scuzzlebuttwrote on 09.12.2012:[10.0] "Dieser Mann ist der beste in diesem Busissness den es jemals gegeben hat. Das Gimmick einfach nur grandios, jedesmal Gänsehaut bei seinem Entrance. Am Mic einfach genial. Im Ring ebenso grandios. Kein andere kann diese Rolle so spielen wie er. Bei ihm passt einfach alles zu 100%. Schade das er bald in Rente geht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CMP nwrote on 24.10.2012:[10.0] "Wenn nicht er, wer dann? Gute in Ring Skills und hat immer wieder neue Moves dazu gelernt, Charisma hat er so viel kaum ein anderer und hatte so viele legendäre Fehden... Mark Calaway ist für mich der Wrestler schlechthin! Jeder kennt ihn der sich auch nur ein ganz kleines bisschen mit Wrestling beschäftigt, weil er halt so unglaublich ist. Für mich der beste Wrestler/Entertainer/what ever!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Y2JSwantonwrote on 12.10.2012:[10.0] "Lebende Legende! Der Undertaker vermutlich der lieblings Wrestler von sehr vielen Wrestling Fans.  ich wünsche mir noch 1 Match an Wrestlemania 30 und dann sollte er die stiefel an den Nagel hängen.  THANK U TAKER! (ja ich werde weinen wenn es soweit ist.. )"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Greedy7wrote on 12.10.2012:[10.0] "The Undertaker, was soll man dazu noch sagen, ganz einfach: A living legend. Seit ich mich 1996 mit Wrestling befasse, bin ich Fan des Last Outlaws. Ich hoffe er kämpft noch 1-2 Jahre, dann sollen sie ihn in die Hall of Fame einführen, weil er da einfach hingehört, als der wahrscheinlich beste Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Woerpwrote on 01.10.2012:[6.0] "Er ist eine Legende, die mir viele unvergessliche Wrestling-Momente geliefert hat. Dennoch gibt es ein paar Abzüge wegen der Rockerjahre, die für mich das Undertaker Image zerstört haben, und dem Fakt, dass er wrestlerisch nicht zu den Besten gehört."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ritt79wrote on 20.09.2012:[10.0] "Nach Hitman und Triple H, einfach der Beste... also auf der selben Stufe. TOP 3"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ringpfostenwrote on 08.09.2012:"Über den Undertaker muss man nicht mehr viel sagen. Seit 22 Jahren steht er nun in den Ringen der WWE. Trotz seiner Größe sehr agil. Man denke nur an seinen " Seiltanz" . Sein unbesiegbarer Charakter, der ihm wie auf den Leib geschneidert zu sein scheint, übte vor allem in seinen ersten Jahren in der WWE eine große Faszination aus und machten ihn bereits als Heel zu einem Publikumsliebling. Ich erinnere hier nur an die Pops, die er bei der Survivor Series 91 erhielt, als er Hulk Hogan den Titel abnehmen konnte. Zusammen mit Paul Bearer bildete er eines der besten Wrestler-Manager-Gespanne aller Zeiten. Eine wahre Legende und für mich DER Wrestler der WWE."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LM Punkwrote on 30.08.2012:[10.0] "Das wohl stärkste Gimmik das die Wrestlingwelt je gesehen hat. Aber am Anfang seiner Karriere doch zu limitiert im Ring. Zwischen 2005-2010 viele extrem starke Fehden und Matches abgeliefert mit Edge, Batista und HBK."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: reene82wrote on 25.08.2012:[10.0] "Er hat seine besten Tage mit ziemlicher Sicherheit hinter sich. Mein absoluter Favourite war er auch nie. Aber jeder Einzug, wenn der Gong ertönt, vor allem da es in letzter Zeit doch etwas selten geworden ist, verursacht doch eine gewisse Art Gänsehaut bei mir. Und da er durch die Streak unsterblich geworden ist und auch bei jeder Wrestlemania dadurch zu einem großen Teil zu einer Buyrate beiträgt, inklusive einem wirklich sehenswerten Match, vor allem in den letzten Jahren, kann ich hier nur zehn Punkte geben.  Gebt es zu, obwohl es offensichtlich ist, jedes Jahr bangt man bei Wrestlemania mit wie ein Kind, ob er es noch mal schafft:-)"
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KndehaI3wrote on 23.08.2012:[10.0] "Diser Stärke hat er seinen Trainer zu verdanken. Er ist die Größte Legende von der WWE. Immer wieder ist er in einmen Ginmicks die uns Gefallen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: kunalbehlwrote on 19.08.2012:[9.0] "Undertaker The most powerful Gimmick the wrestling industry has everseen... FRom American Badass to Deadman he has been a perfect entertainer in the wrestling industry"
Rating: 9.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheUndertaker45wrote on 14.08.2012:[10.0] "Für mich ganz klar der beste Wrestler aller Zeiten. Mit seinen 47 Jahren bewegt er sich noch ziemlich gut, springt sogar über das höchste Ringseil. Sein Moveset ist toll für einen Powerhouse ziemlich abwechslungsreich und seine Kampfbilanz sricht ganz klar für seinen Erfolg."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hankinswrote on 12.08.2012:[9.0] "Ohne Frage gehört er zu den ganz großen Namen im Wrestling. Leider hat er seinen Zenit seit etwa 5-6 überschritten. Er wirkt bei seinen Matches extrem fertig und angeschlagen, zudem sind sie von unerträglichen Pausen geprägt. Ich fand das Match gegen Hunter bei WM dieses Jahr schon nicht mehr so klasse. Ich hätte mir gewünscht, dass es das letzte Match für beide gewesen wäre. Seinen Legendenstatus hat er dennoch sicher. Ich hoffe, er zerstört ihn nicht, weil er als 50jähriger immernoch im Ring steht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GTS Punkwrote on 11.08.2012:[10.0] "Großartiger Mann. Besonders in den 90-ern (auch wenn ich in dieser Zeit die WWF nicht miterlebt habe) hat er mir sehr gut gefallen. Unumstritten das beste Gimmick, dass es jemals gab. Mit Paul Bearer würde ich ihn lieber sehen, was ja im Jahre 2010 eine Zeit der Fall war. Hall of Fame ist bei ihm nur eine Frage der Zeit, je nachdem wann er aufhört. Undertaker ist die Ikone der WWE mit Legenden-Satus auch wenn er seinen Zenit schon überschritten hat. Ich erwarte nur noch eienen spektakulären Abgang."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: dudemanbearpigwrote on 25.07.2012:[10.0] "This man is an absolute legend. He has done it all, and been in many great high profile matches. He took a gimmick that looked stupid on paper and rode it to over 20 years of superstardom. One of the true greats of professional wrestling."
Rating: 10.0
Sentiment: 0.18714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Franziwrote on 03.07.2012:[10.0] "Für mich bleibt er neben Shawn Michaels der Beste. Natürlich ist er nicht mehr in Topform, aber er ist einfach eine Legende im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: rey mysterio 104wrote on 03.07.2012:[10.0] "Natürlich merkt man ihm langsam sein Alter an, aber trotzdem ist er natürlich eine Legende die sich wenigstens ein mal im Jahr noch zeigt. Mal sehen wie lange noch. Aber so lange er noch so großartige Matches zeigen kann, ist er durchaus willkommen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Monday Night Wars85wrote on 25.06.2012:[10.0] "Mach Schluss Taker oder komm nur noch zur Wrestlemania Matches bis zur 25-0. Ansonsten bei weiterem WWE in ring Engagement befürchte ich hier bald lesen zu dürfen Rest in Pieces Undertaker. :( Jetzt aber zur Bewertung. Absoluter Hall of Famer. The Best there still is. Niemand beeindruckt mich mehr. Taker hat sich immer der Zeit angepasst, entwickelt und war meiner Meinung nach beim match gegen Batista auf WM 23 Formtechnisch auf seinem Höhepunkt. Er hat mehrfach Geschichte geschrieben. Ein Match wünsche ich mir noch und das wäre gegen Sting. Aber leider wird es das nicht geben."
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nouriwrote on 02.06.2012:[10.0] "Für mich eine der drei größten Legenden aller Zeiten. Begeistert auch nach über zwanzig Jahren mit demselben Gimmick noch die Massen. Nicht einmal Hulkamania hat über einen derart langen Zeitraum den vollen Fanzuspruch erhalten, so dass Hogan nach 15 Jahren zum Heel turnen musste (auch wenn der Undertaker zwischenzeitlich auch den ein oder anderen Run als Heel hatte). Besticht seit dem ersten Tag durch eine ungeheure Präsenz und Ausstrahlung sowie unglaublicher Intensität. Im Laufe der Zeit hat er sich stetig weiterentwickelt, selbst als er schon lange jenseits der 40 war, hat er immer wieder neue Aktionen in sein Repertoire (z. B. Hell's Gate) aufgenommen. Matcharten wie Coffin/Casket-Match, Buried Alive oder Inferno Match wurden speziell für ihn erfunden, auch das erste Hell in a Cell fand mit seiner Beteiligung statt. Dass er selbst Wrestling-Laien ein Begriff ist und seine einzigartige und vermutlich für alle Zeiten unerreichbare WrestleMania-Bilanz heben ihn nahezu auf den Wrestlinggötter-Thron!"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Power Trip HHHwrote on 15.05.2012:[8.0] "8 Punkt kann ich ihm geben, er sollte wissen wann es genug ist. Er hat alles ereicht in seiner Wresling Karire Title, Wreslemania Streak, usw. Er kann mit sicherheit keine Matches mehr bestreiten wie zb. Hell in a Cell 1998 ( King of the Ring ). Ok das war jetz zu viel aber das Letzte Wreslemania match war gut aber nicht mehr wie damals. Triple H und Shawn waren einfach schneller und besser. Sonst würde ich mit sicheheit 10 Punkte geben."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker95wrote on 14.05.2012:[10.0] "Bester Wrestler aller Zeiten , Ich liebe ihn einfach zu sehen , aber seine Tage in der WWE sind ja fast schon gezählt außer seine Wrestlemania-Kämpfe Ich wünsche mir aber so sehr ihn wenigstens noch einmal als World-Champion zu sehen *__*"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: undertakerfan01wrote on 13.05.2012:[10.0] "Mein Lieblingswrestler in der WWE, weil er schon über 20 Jahre in der WWE ist und immer noch eine gute Leistung zeigt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: alewrote on 14.04.2012:[10.0] "Was gibt es da außer einer 10 zu geben, im Ring trotz seiner Größe immer außergewöhnlich, Gimmick sowieso schon ein Mythos und eben extrem professionell."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: thereisonlyonewrote on 21.02.2012:[10.0] "Er ist ungeschlagen bei Wrestlemania, hat ein Gimmick quasi neu erfunden, er hat Charisma wie kein Zweiter und wird als der größte Professional Wrestler aller Zeiten bekannt bleiben."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Schlagschawrote on 21.02.2012:[10.0] "Bin schon lange auf dieser Seite, und seit ca. 1992 Fan des Untoten. Hab seine Karriere immer verfolgt, und bin zu den Entschluss gekommen, dass er als Heel, wie bei der Ministry, einfach Weltklasse ist. Turnt ihn zu einen bösen Satanisten der gerne Menschen quält, und Ihr werdet zum Schluss seiner Karriere den größten und besten Heel unter Jubel zu Grabe tragen können. UPDATE: Fürt ihn vor Wrestlemania in die Hall of Fame ein. Er hat es mit Sicherheit mehr verdient als Ric Flair der die GROßE Ehre als erster aktiver mit Füßen getreten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Man of Warwrote on 20.02.2012:[10.0] "Am Anfang seiner Karriere war er für mich nicht unbedingt der Wrestler von dem Ich am meisten begeistert war.  Allerdings hat er sich im Laufe seiner Karriere zum, für mich, besten Wrestler den die WWE je zu bieten hatte entwickelt.  Seine Fähigkeiten am Mic sind sehr gut und im Ring ist er Weltklasse. Er ist einer der Menschen der auch in einem relativ hohen Alter noch sher gute Matches abliefert.  Wer auch immer behauptet das dieser Mann bei Wrestlemania anderen den Spot klauen würde, naja das sind Dummschwätzer.  Wer die Leistung von ihm nicht anerkennt sollte sich hier nicht aufspielen in dem er Wrestler schlecht bewertet nur weil er sie nicht mag."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Marlowewrote on 19.02.2012:[9.0] "Living Legend! Hat alles, was man braucht und das über 20 Jahre lang. Mittlerweile find ich sein Gimmick jedoch schon ein wenig langweilig, darum nur 9 Punkte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fighter Daronwrote on 02.02.2012:[10.0] "He has the best gimmick in wrestling history, do I have to say anything more?"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: goofy1991wrote on 25.01.2012:[10.0] "Einer der herausragendsten Worker aller Zeiten. Allein dass er bei Leuten bekannt ist, die kaum bis kein Wrestling verfolgen, zeigt wie sehr er das Business geprägt hat. Auch wenn seine Karriere bald zu Ende sein wird, hat er wie kaum ein anderer volle Punktzahl verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Decon Davewrote on 19.01.2012:[10.0] "Der Undertaker ist eine Legende der WWE. Er sollte mal in die Hall of Fame aufgenommen werden, denn er hat es verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hu-Manwrote on 13.01.2012:[8.0] "Der Dead Man! Ziemlich bescheuertes Trash-Gimmick, das seinen Zenit seit gefühlten 20 Jahren überschritten hat und spätestens mit dem Biker-Gimmick völlig zerstört wurde. Genauso verhält es sich mit dem Worker selbst. Einen humpelnden, alten, braungebrannten Taker muss ich nicht sehen und vor allem nicht, wenn der World Title im Spiel ist. Seine übernatürlichen Kräfte sind dann noch das i-Tüpfelchen. Gegen seine netten Matches kann ich nichts sagen, da waren schon ein paar Kracher dabei, bloß hatte man da auch einen sehr guten Gegenpart. Ich kann mit dem Taker einfach nicht MEHR so viel anfangen. Trotzdem muss ich auch seine Leistungen und Verdienste aus der Vergangenheit bewerten und die sind wirklich herausragend. 8 Punkte."
Rating: 8.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: dragonulteowrote on 06.01.2012:[10.0] "Undertaker is a legend, he is the phenom, he is the dead men, he is wwe hall of famer"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kitanoyamawrote on 03.01.2012:[10.0] "Er ist eine Legende, mehr brauch ich garnicht zu sagen. Er wird zwar nicht vor den Folgen des alterns verschont bleiben, aber er hat schon soviel geleistet das er nicht nur ziemlich sicher eines Tages in der Hall of Fame sein wird, sondern auch nach seiner aktiven Karriere sicher noch lange von sich reden machen wird. Auch wenn sein Gimmick als überaltert gilt, schafft er es immer wieder damit zu überzeugen. Getreu dem Motto: " Warum sollte ich etwas ändern was funktioniert? " Und das tut es mehrheitlich noch. Ein John Cena wird auch nicht von jedem akzeptiert und trotzdem lebt er damit und teils auch davon."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fabi89wrote on 28.12.2011:[10.0] "Über den Undertaker ist alles gesagt, was es zu sagen gibt. Grandioser Teil der Wrestlingwelt, der sich im Laufe der Jahre stets weiterentwickelt und für einige der denkwürdigsten Momente in der Geschichte des Wrestlings gesorgt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: EnemyOfJusticewrote on 04.12.2011:[10.0] "Legende schlechthin. Mit der Batista-Edge-Taker Fehde hab ich die WWE kennengelernt und seitdem gehört der Undertaker einfach dazu. Im Ring für sein Alter immer noch Wahnsinn und Micskills und Charisma hat der Deadman natürlich. Ich schätze auch seine Arbeitsmoral, lobenswert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hirnklopswrote on 25.11.2011:[10.0] "Hulk Hogan, Ric Flair, John Cena, Bret Hart... Forget it. Die WAHRE Legende heißt " The Undertaker" . Dieser Mann hat es geschafft, einen " over the top" -Charakter zu absolutem Kultstatus zu verhelfen, und wenn selbst gestandene Rapper seine Promos in ihre Musik einbetten oder ihn in ihren Texten erwähnen, wenn selbst mein alter Herr, der " Catchen" nur aus Filmen mit Peter Falk kennt ihn cool findet, und wenn Leute, die sonst mit Wrestling nix anfangen können, Wrestlemania schauen, nur um seine " Streak" zu sehen, dann weißte Bescheid. WEISSE BESCHEID! Dazu deutliche Frisurensteigerung über die Jahre. Der Mann ist Profi."
Rating: 10.0
Sentiment: 0.46875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: chicagomadepunkwrote on 16.11.2011:[10.0] "Eindeutig zehn Punkte! Man merkt zwar das er in die Jahre gekommen ist und auch nicht der größte in Sachen in-ring skills ist, aber er schafft es immer wieder unglaubliche Wrestlemania showstealer zu kreieren! Der Undertaker ist einfach eine Legende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Baszdmegwrote on 15.11.2011:[10.0] "Ich bin kein Freund von "übernatürlichen" Charakteren, aber etwas anderes als 10 Punkte kann man hier nicht vergeben. Großartiger Wrestler und eines der besten Gimmicks aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker555wrote on 04.11.2011:[10.0] "Eine absolute Wrestling-Legende. Er ist für mich der größte und beste Wrestler aller Zeiten! Ich freue mich bereits jetzt auf sein letztes Match und ärgere mich dann auch irgendwie wenn es soweit ist da er danach nie wieder kämpfen wird. 10 Punkte für den Deadman"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheCMMizNexuswrote on 04.11.2011:[10.0] "Völlig verdiente 10 Punkte. Geniale Gimmicks, stark am Mic und das auch im Ring.  Allein die 19:0 Streak zeigt das er eine Legende ist"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FNShowwrote on 28.10.2011:[8.0] "Taker ist da Man. Einer der mächtigsten Männer hinter dem Vorhang. Wrestlerisch zwar limitiert, mach er aber anderweilig mehr als weg. Dienstälterster und treuster Worker in der WWE."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: cookie monsterwrote on 27.10.2011:[10.0] "Also alle Gimmicks waren von ihn genial. Totengräber 90er. Ministry, ABA, und jetzt. Matches haben immer wieder Spaß gemacht sie zu gucken. Für mich ein Phenomen. Schade das er schon in die Jahre gekommen ist. Aber besser nicht mehr so oft kämpfen. Nur als Highlight, das ist gut an der WWE. Anders wie TNA die noch Ric Flair in Ring stecken."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Auditorewrote on 16.10.2011:[10.0] "Man merkt ihm natürlicherweise, das Alter und all seine Verletzungen an, aber wenn man bereit ist, darüber hinwegzusehen und zu sagen: " Wow eine lebende Legende und ich darf ihm immer noch zusehen", dann kann man die mittlerweile "nur noch" soliden Matches auch mal übersehen. Unglaublich was ein Gesamtpaket er für ein Gesamtpaket bedeutet."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Rated R Superstar EDGEwrote on 13.10.2011:[10.0] "Ich muss meine Wertung um einen Punkt zurück setzen. Das Match gegen Shawn Michaels war zwar eines der Besten vileicht sogar das Beste das ich jemals gesehen habe aber man hat deutlich gesehen das es von Shawn getragen wurde. Der Taker ist nicht mehr in der Lage aus anderen gute Matches raus zu holen. Er selbst zeigt zwar immer noch solide Leistungen aber kommt ohne einen Gegner wie Shawn oder Jericho nicht mehr darüber hinaus. Ich finde das der Taker bei Wrestlemania hätte verlieren sollen den Shawn würde ich die nächsten 1-3 Jahre lieber zu schauen als dem Taker. Ich hoffe das er das selbst so sieht und bei Wrestlemania 27 seine Karriere beendet oder zumindest nur noch wie The Rock in 2003 bei Summerslam und Wrestlemania für je ein Match zurück kommt. Für das was er noch zu leisten im stande ist würde ich normalerweise 7 Punkte gebe. Aber da er eine Legende ist sind es aus Respekt und Anerkennung früherer Leistungen noch 9 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jerviswrote on 13.10.2011:[10.0] "Mein erster Kommentar und meine ersten 10 Punkte gehen an den Undertaker. Ein genialer Kerl. Über 20 Jahre im Business, und dazu noch in der WWE. Ich glaube kaum das jemand solange einer Mainstream-Liga treu war wie er. Und das ist nur das organisatorische was Ihn ausmacht. In den 90ern bereits durch sein mysteriöses Deadman Gimmick bekannt, konnte die Fans "verzaubern". Beängstigend, als Face trotzem vertraut, wie heute. Das Deadman Gimmick hat mir auch gefallen, es schadete im überhaupt nicht mal in seinem wahrscheinlich privatem Look anzutreten! Auch hier erfüllt er meine Kriterien, wenn auch er nicht gut vergleichbar mit Anderen ist was Gimmicks betrifft. Charismatisch auf seine Art eben. Und auch sein Micwork, als American Bad Ass wie auch wieder als Deadman gut. Beängstigend für die Fans als Deadman, cool als Bad Ass. Und nun zu seiner Arbeit im Ring. Ich finde das er Anfangs der 90er noch nicht so gut im Ring war, was wahrscheinlich am angepassten Stil von Hulk Hogan uA lag, auch weil er nicht immer die technisch versiertesten Gegner hatte. Doch ab 96 sah ich mehr Intensität im Ring, eine gute Mischung aus Holds und Brawl. In der Attitude-Ära schliesslich wurde er klar zum Brawler mit einigen Hardcore-Spuren und Holds. Spannend wurden die Kämpfe ab hier, da jedoch das Auge nicht unbedingt auf Wrestling schaute, mehr um Entertaiment, also die Spannung und Intensität die im Ring gezeigt wurde. Für mich sind diese Matches ein Augenschmaus, ich fühle mich unterhalten und z"
Rating: 10.0
Sentiment: -0.26249999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sweet Grave Musicwrote on 13.10.2011:[10.0] "Undertaker ist einfach DER Wrestler.   Richtig gute Chain-Wrestling und Brawler Skills (Dank der jahrelangen Boxerfahrung)   Auch Submission steht ihm immer besser, da er sich stetig im Metier des MMA weiterbildet.   Greetz  SGM"
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nerowrote on 11.10.2011:[5.0] "Ich denke, viele Leute vergessen hier, was sie bewerten sollten. Es geht nicht darum, ob jemand eine Legende ist. Es geht auch nicht um die Vergangenheit, was für ach so epische Momente dieser Jemand gehabt hat. Es geht darum, was dieser Jemand im Moment, das heißt heute, im Ring, am Mic leisten kann. Der Undertaker ist zusammen mit Hulk Hogan ein Paradebeispiel für dieses Phänomen. Wenn man sachlich bleibt muss man sicherlich anerkennen, dass er am Mic nach wie vor großartige Arbeit leistet. Im Ring hat der Liebe seinen Zenit jedoch weit überschritten und ist meiner Meinung nach nicht fähig, ein ordentliches Match zu zeigen, solange er niemanden hat, der ihn durch ebenjenes trägt (s. Shawn Michaels). Außerdem ist seine Pause, die man fast schon als Schwangerschaftspause (WrestleMania-Royal Rumble >> 9 Monate), peinlich und überaus unlogisch. Denn alle Worker arbeiten nach Mania weiter. Nur Taker nimmt sich seine Pause. Das Roster kämpft sich vor und vor, entwickelt sich weiter, und im Januar steht der Undertaker wieder auf der Matte und lässt sein "So, da bin ich wieder, ich will meinen Wrestlemania-Main Event" hören. Für die Micfähigkeiten und das Charisma gibt es 5 Punkte, für die Arbeit im Ring kann ich beim besten Willen keine Punkte geben."
Rating: 5.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: hogan knows bestwrote on 11.10.2011:[8.0] "Am Anfang seiner Karriere ein Ass. War damals für mich immer das Highlight einer jeden Wrestling Show. Die Kämpfe gegen Mankind bleiben natürlich unvergesslich, genauso die Story mit Kane. Ach eigentlich war jede Storyline um den Taker interessant. Die Ministry of Darkness war auch noch ganz ok, erst mit dem Biker Image fing er an zu langweilen. Auch sein Turn zurück hat mich nicht mehr begeistert, für mich eigentlich nur noch langweilig. Aber naja wer 20 Jahre wrestlet nutzt sich irgendwann ab, im neuen Jahrtausend nicht mehr erwähnenswert für mich. Trotzdem eine Legende denn in den 90ern war er höchst unterhaltsam."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mustafawrote on 09.10.2011:[10.0] "10 Punkte und nicht weniger! Er ist eine lebende Legende. Seine Kämpfe sind sehr gut"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Alex Riley 4 wwe championwrote on 06.10.2011:[10.0] "Einfach nur eine Legende! Freu mich jedesmal auf Wrestlemania, wenn er seinen Rekord verteidigt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Patrwrote on 26.09.2011:[9.0] "Einer der Besten Wrestler aller Zeiten, aber er hat halt viel Verletzunspech, ich hoffe es zwar nicht aber er wird wohl bald aufhören müssen, aber vielleicht kommt er doch noch spektakulär zurück wäre ihn zu wünschen"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker 2442wrote on 25.09.2011:"Meiner meinung nach ist Undertaker der beste Wrestler EVER!"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Play2Xwrote on 21.09.2011:[10.0] "Die 10 Punkte erübrigen sich: jeder der Ahnung von Wrestling hat wird sie voll und ganz verstehen: Aber mal ein Wort an all jene, die dem Taker 0 Punkte geben (weil seine WM Matches angeblich lame sind, weil er begrenzte In Ring Skills habe oder weil sein Entrance so lang sei). The Undertaker hat sich alles was er erreicht hat selbst verdient. Er ist als Wrestler extrem stark. Seine Mania-Matches waren noch nie so spannend wie in den letzten 3 Jahren. Der Entrance ist einfach großartig! Und auch mit Biker-Gimmick war Taker einfach großartig. Wenn manch ein Minderbemittelter nicht in der Lage ist, das zu verstehen, kann man trotzdem nicht einfach 0 Punkte reinwürgen. Und dass er verletzt ist: Das gehört dazu, und man kann es sich nicht aussuchen. Ich hoffe, dass The Undertaker noch bis 20-0 kommt und dann in einem Flammenmeer aus Pyroeffekten verschwindet, evtl. mit der Chance, dass jemand anders ihn als Maskenchar übernimmt."
Rating: 10.0
Sentiment: -0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rated R Punkwrote on 04.09.2011:[10.0] "Die Legende und Ikone schlecht hin! Keiner hat sich so für die WWE geopfert wie er, neben Hulk Hogan wohl das berühmteste Gesicht im Wrestling und ganz klar für jeden Mark ein Grund einzuschalten (ich erinnere mich noch was für eine Gänsehaut ich damals immer bei seinen Entrance hatte) sein Gimmick ist Legendär am Mic hört man ihn zwar als Deadman kaum, allerdings hat er als American Badass saubere Arbeit geleistet finde ich. Ring Skills sind finde ich für seine Statur ganz gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CMPunkGRGDXwrote on 27.08.2011:[10.0] "Er ist und bleibt die lebende Legende im Wrestling-Geschäft.  Ich will (würde als Roman enden) und brauche (Ihr könnts euch denken) glaube ich nicht großartig begründen warum ich dem Taker eine 10 gebe :D Ich wünsche mir nur noch mindestens 'ONE MORE MATCH' bei Wrestlemania um die 20-0 zu erreichen und die absolut einzigartige Karriere eines Superstars zu beenden."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fall Out Boywrote on 19.08.2011:[8.0] "Zweifelsohne ist der Undertaker eine Legende. Auch die 1083 10. 0 Bewertungen kommen nicht von ungefähr. Trotzdem ist er im Ring auch gerne für das ein oder andere langweilige Match zu haben. Sein Gimmick wird auf Dauer immer langweiliger und unlogischer. Zudem hat er mich als Biker nicht überzeugen können."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LyrixFTWwrote on 11.08.2011:[10.0] "Bester Big Man aller Zeiten für mich, am Mic will ich ihn noch nichtmal haben was bei mir schon viel aussagt den der Taker sollte einfach Taker sein. Mochte aber auch das Bikergimmick ganz gerne. Legende und verdiente 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RiotMorawawrote on 04.08.2011:[10.0] "Muss meine Wertung nach unten korrigieren, da er seinen Zenit ja schon LANGE überschritten hat und nur noch in Ausnahmefällen zu guten Matches (WM 25! ) fähig ist. Sonst lebt er eigentlich nur noch von seinem Ruf. Edit: und eine weiteres Ändern der Wertung wird nötig. Mit dem Quasi-Ruhestand schafft er das was viele andere nicht schaffen... aufhören! SOmit kann ich meine Wertung wieder ruhigen Gewissens nach oben schieben und seine Fähigkeit würdigen selbst mit recht wenigem technischen Finesse großartige und denkwürdige Matches und Momente zu zaubern!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: albino17wrote on 29.07.2011:[9.0] "Immer in der Lage für geniale Promos und Matches, aber sollte entweder öfter antreten oder seine Karriere beenden. Nur ein Match zu Wrestlemania ist in meinen Augen zu wenig."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Allrounder95wrote on 25.07.2011:[10.0] "Der Undertaker ist und bleibt eins der besten Gimmicks aller Zeiten. Der Undertaker wusste immer zu überzeugen egal ob als Totnegräber oder als Biker. Wrestlerisch wie Charismatisch ist er einzigartig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KASHwrote on 23.07.2011:[10.0] "Ich denke da man seine Karierre mittlerweile als beendet sehen dürfte, kann man bei ihm schon anfangen ein komplettes Karierreresümee zu ziehen. Ich wage es zu behaupten, dass er der BESTE Wrestler aller Zeiten über der 2m Marke ist. Sein Gimmick war nicht nur der Erfolg der WWF, sondern vielmehr auch seiner. Er konnte dadurch besondere Moves zeigen und verkaufen lassen, die einfach IM Gimmick waren. 2004 zu seiner Rückkehr ins Deadman Gimmick war ich noch skeptisch, ob er denn an alte Stärke wie in den späten 90ern anknüpfen könne. Er bewieß ab dem Jahr 2007 immer wieder das meine Befürchtungen unbegründet waren. Mit wachsendem Legenstatus und beginnendem Altersverschleiß wrestlete er die besten Matches seiner Laufbahn. WrestleMania Matches des Takers hatten irgendwann nicht mehr nur die Serie selbst auf dem Spiel, sondern waren auch immer ein garant für einen MOTY Candidate. 1 5* Match, zurecht, und viele viele die es knapp nicht wurden (worüber man sich streiten könnte). Es wird nie wieder ein solch episches Gimmick geben. Ich bezweifle, dass es überhaupt nochmal ein Gimmick mit einem solchen Erfolg geben wird... und vor allem auch auf Main Stream wrestlerischer Ebene."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Michael Shawn Hickenbottomwrote on 21.07.2011:[10.0] "Man kann nur den Hut vor seinen Leistungen ziehen. Etwas anderes als eine 10 gibt es für ihn nicht!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NHJ2102wrote on 11.07.2011:[7.0] "FÜr mich der überschätzteste Wrestler aller Zeiten. Klar hat ein ein geniales Gimmick und bringt dieses auch gut rüber nur Undertaker im Jahr 2011 bringt keine guten Matches mehr, die beiden Matches bei WM gegen HBK, hat doch HBK zu guten matches werden lassen ... seit 2004-2005 kein Maineventer mehr..."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Darkiwrote on 06.07.2011:[10.0] "Der Undertaker wird meiner Meinung zurecht als Phänomen bezeichnet. Er schafft selbst heutzutage in seinem hohen Alter bessere Kämpfe hinzulegen als so mancher Jungspund. Und auch sonst hat er wirklich viel fürs Mainsteram Wrestling getan. Der Mann verdient einfach die volle Punktzahl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Elvis6wrote on 03.07.2011:"Also ich kann die Wertung 0 beim Undertaker nicht verstehn. Mag sein das er für dich, als Frau , nicht so hübsch wie Cena o Orton ist ABER allein seine langjährige Präsenz im Main Event muß schon zeigen das er so schlecht nicht sein kann. Außerdem, welches Gimmick wäre den besser gewesen als seines um die besten Matches der Welt auf die Beine zu stellen(Hell in a Cell, Casket Match o Buried Alive). Ein bischen Fairness bei der Bewertung wäre schon angebracht."
Rating: No rating found
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Donald Duckwrote on 23.06.2011:[10.0] "Das letzte wirkliche "Gimmick" von damals. Einfach erste Klasse. Sowohl als Biker, als auch als Deadman war er große Klasse."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jericho is excellencewrote on 23.06.2011:[10.0] "Mein Lieblingswrestler? Chris Jericho. Der Mann der mich zum Wrestling gebracht hat? Der Undertaker. Man Kann über das Phenom sagen was man will, dass er ohne das Gimmick nie so weit gekommen wäre, oder dass die mystischen Spielchen nicht mehr in die heutige Zeit passen und so weiter, aber der unbestreitbare Fakt ist: der Undertaker zieht Fans wie Sau. Und bei allen Fähigkeiten die ein Wrestler haben sollte, ist im Endeffekt genau das der entscheidende Punkt. Er füllt Hallen. Zum Gesamtpaket: Im Ring hat es der Undertaker geschafft sich über die Jahre zu wandeln so dass er eigentlich nie langweilig wurde. Im Alter hat er seine fehlende Schnelligkeit durch Powermoves und jede Menge Ringpsychologie wett gemacht. Er erzählt die Geschichten im Ring so gut wie wenige Andere. Auch wenn er nur noch sporadisch wrestlet, wenn er im Ring steht gibt er alles und zeigt starke Matches. Am Mic konnte er als Biker zeigen wie brauchbar er ist und auch als Totengräber kann er mit seiner mystischen und dominanten Art überzeugen. Wie wichtig er für die Etablierung von Leuten wie Edge oder Batista war wiederlegt auch das immer wiederkehrende Argument dass er nie jüngere Worker over bringt. Ob er ohne das Gimmick so weit gekommen wäre darf berechtigt bezweifelt werden, Fakt ist er ist so weit gekommen und das ist auch gut so. Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tobinhowrote on 20.06.2011:[10.0] "Die größte lebende Legende von allen, mehr kann ich dazu nicht sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: UndertakerChriswrote on 29.05.2011:[10.0] "Achja... der Undertaker war der erste Wrestler von dem ich gehört habe und seit dem ist er mein absoluter Favorit.  Jetzt am Ende seiner Karriere, auch wenn er noch ein Match bestreiten wird, kann man auf die beste Karriere überhaupt zurückblicken. Klar gab es Wrestler, die mehr Titel hatten und waghalsigere Moves ausführten, doch ist der Undertaker ein wahres Wrestlinggenie, der sich nicht zu fein ist, um auch von neuen Wrestlern mal was einzustecken (damals Lesner, jetzt Nexus). Am Mic genau wie im Ring auch im hohen Alter hervoragend. Das Match gegen HHH bei WM 27 war der Showstealer, keine Frage. Hoffentlich bleibt er auch nach seiner aktiven Karriere für die ein oder andere Showeinlage vorhanden. 10 wohl verdiente Punkte an das Phenom der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DragonSleeperwrote on 08.05.2011:[10.0] "Muss man eigentlich nicht kommentieren, das beste Gimmick und vllt. der beste Superstar aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Phenom1992wrote on 04.05.2011:[10.0] "Er ist einfach eine WWE Legende. Er zeigt immer viele Stunts die man ihm gar nicht zutraut. Ich glaube, dass er jetzt wahrscheinlich noch seltene Kämpfe macht, weil er Probleme mit dem Rücken und seiner Schulter hat. Ich bin Undertaker Fan aber ich denke, dass er vlt im nächsten Jahr seine Karriere beenden wird, auch wenn es sehr schade wäre. Aber ich hoffe es nicht. Vielleicht macht er noch weiter Geschichte. Es kann alles möglich sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Dennizwrote on 22.04.2011:[4.0] "Ich war nie wirklich ein Undertaker Fan. ich fand ihn irgendwie immer langweilig. Aber er ist nun mal die Legende deswegen gibts 4 trostpunkte."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jack Londonwrote on 12.04.2011:[10.0] "Der Undertaker ist meiner Meinung nach, der mit Shawn Michaels wichtigste Superstar der WWE. In den ersten Jahren seiner Karriere war sein Wrestlingstil eher langsam, man kann sogar sagen langweilig, doch in den letzten Jahren sind insbesondere seine Matches bei Wrestlemania, das Match gegen Mark Henry natürlich ausgenommen, mehr als brilliant. Sein Gimmick hat über die Jahre immer wieder Höhen und Tiefen erlebt, auch sein Biker-Ausflug hat ihn nichts von seiner Glaubwürdigkeit gekostet, der Undertaker verdient zu 100 Prozent 10 Punkte!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Paierowrote on 08.04.2011:[10.0] "Eine lebende Legende, spielt sein Gimmik hervoragend, absoluter Allrounder, lieferte in den vielen Jahren trotz seiner Größe eine Reihe denk- und erinnerungswürdiger Matches ab. Definitiv eine der tragenden Säule des Wrestling überhaupt und somit 10 Pkt mehr als verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 123 kidwrote on 07.04.2011:[9.0] "Der Deadman verstrahlt eine ganz spezielle Aura, die nur eine handvoll Superstars im Wrestling besitzen. Zudem ist er unter den Bigmanwrestlern einer der Besten im Ring."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: dsierwrote on 07.04.2011:[10.0] "Hinter Shawn Michaels der zweitwichtigste Worker in der WWE/WWFgeschichte. In all den Jahren konnte er mich in jedem seiner vielen Gimmicks gut unterhalten und allein seine Ausstrahlung wäre schon 6 Punkte wert. Wenn man dann noch seine Fähigkeiten im Ring dazu nimmt kann man eigentlich nicht anders, als 10 Punkte zu geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LowJomoKiwrote on 06.04.2011:[10.0] "Eigentlich mag ich ihn von seinem Gimmick nicht so sehr, aber egal wie der Mann bleibt ein Phänomen und ist ganz einfach DER Undertaker... und da kann es keine zwei Meinungen geben was dieser Mann im Wrestling erreicht hat; einfach nur 10 Punkte wert!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mick Funkwrote on 06.04.2011:[10.0] "Ach was solls, ich geh wieder hoch auf 10. Lange sollte er zwar wirklich nicht mehr machen, aber für solche Matches wie am Sonntag muss man ihm immer noch dankbar sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: micha27480wrote on 06.04.2011:[10.0] "Für mich einer der Besten allerzeiten! Auch seine Grimmick einfach klasse. ich hoffe er wird noch ein paar jahre machen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The-SwiZZlerwrote on 06.04.2011:[8.0] "Der Undertaker... ich persönlich finde er hätte von Triple H bei Wrestlemania XXVII (27 für alle Nicht-Römer :) ) in Rente geschickt werden können, nun ja dann wird er halt nach dem 20-0 "sterben"... Seine Aura und Mystik ist längst nicht mehr das was sie zu Attitude Zeiten war. Mich persönlich hat sein Gimmick nie angesprochen, gebe aber auch zu dass ich Gänsehaut bekommen habe als ich das erste Mal live den Gong hörte. Auf der anderen Seite kann er trotz seines Alters und seines Körperzustandes noch ein paar schlimme Bumps hinzunehmen (Beispiel Spinebuster durch den Kommentatorentisch)... Ich hoffe das er bei Wrestlemania XXVIII einen würdigen Abschluss erhält. Daher gebe ich ihm verdiente 8 Punkte für seine Leidenschaft fürs Wrestling und einfach weil er Respekt verdient... Jedoch auch nicht mehr Punkte da er wissen sollte wann die Zeit für ihn gekommen ist."
Rating: 8.0
Sentiment: 0.3181818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Johnny-Tennerwrote on 05.04.2011:[9.0] "Als ich mit Wrestling gucken anfing das war kurz vor Wrestlemania 21! Ich sah ihn und wusste irgendwie nie warum über ihn so ein großer Wind gemacht wird und warum er so ziemlich jedes Match gewinnt.  Ich kann hier ja nur schreiben was ich für einen eindruck von im habe auch wenn ich mir einiges auch aus seiner glorreichen Zeit angeguckt habe finde ich ihn teilweise einfach zu übertrieben Stark dargestellt.  Edit: Keine Ahnung wieso aber der abgrundtiefe Hass auf das Untoten Gimmick ist bei mir irgendwie verflogen, klar wird er teilweise zu stark dargestellt aber mir gefallen seine Matches einfach immer noch und das obwohl ich jemand bin der schon merkt das ihn sein Alter zu schaffen macht. Dennoch wünsch ich mir nächstes Jahr noch ein letztes Wrestlemania Match. Ich hab ihn jetzt zu schätzen gelernt und hab einfach nur respekt für den Mann."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HesBackwrote on 04.04.2011:[8.0] "Eigentlich hätte er von mir 10 Punkte bekommen, eigentlich.  WENN er nach WM 26 den Schlusstrich gezogen hätte und ich mir nicht mitansehen müsste wie er sich durch ein Match quält weil er so viel Schmerzen hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: C0nspiracywrote on 27.03.2011:[9.0] "Sein Gimmick ist eines der Besten aller Zeiten. Für seine grösse ist er nahezu am Limit des machbaren. Es gibt eigendlich kaum etwas am Taker auszusetzen. Abzüge gibts lediglich beim Wrestlerischen er beherscht eigenlich kein richtiges Matwrestling. Dies hat nichts mit seiner grösse zu tun und liegt nur an ihm es zu erlenen/anzuwenden. Mit 9 Punkten ist er dennoch einer der besten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dominicwrote on 25.03.2011:[10.0] "Eine absolute Wrestling Legende und immer auf top Niveau. Zwar etwas verletzungsanfällig aber trotzdem super. Der ganze Stil und sein Einmarsch sind einfach cool. Er hat schon sehr viele schwere Zeiten erlebt, alle überstanden und immer noch ganz oben."
Rating: 10.0
Sentiment: 0.3458333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MarcTrixwrote on 18.03.2011:[8.0] "Der absolut beste Wrestler allerzeiten. Sein Einzug ist genial und seine Gimmick wird nie langweilig. Er ist einfach nur eine Kultfigur in der WWE. Er macht zwar nach 20 jahren nicht mehr jedes Match gut, aber mit einem verletzen Knie ein so brillantes Match bei Wrestlemania zu zeigen, kann niemand anderes. Bei seinem Einzug bekommt man einfach nur respekt vor dieser Person. Undertaker ist einer der besten Wrestler der Welt.  Edit: Kann ihn mittlerweile nicht mehr die volle Punktzahl geben. Er hat sein Zenit überschritten und sollte nach Wrestlemania 27 aufhören."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: xXxwrote on 18.03.2011:[10.0] "Ich kann nur hoffen dass sein Körper ihm noch die 20-0 bei WM erlauben wird um es schön abzurunden. Ansonsten lass ich meine Bewertung für sich sprechen, 1. 500 Zeichen sind einfach nicht genug um die Bewertung hier halbwegs zu kommentieren und rechtfertigen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Y2John Cenawrote on 05.03.2011:[10.0] "Er ist die Legnde der WWE und des gesamten Wrestlings. Im Ring ist er ein Phänomen, wenn er am Mikrofon spricht merkt man, wie gut und überzeugend er sien Gimmick spielt. =>10 Pkt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BretHitmanHartwrote on 04.03.2011:[10.0] "Truly a living Legend.  Schon als ich klein war, war der Undertaker mein größtes Vorbild.  Die Technik für einen Mann seiner Größe ist einfach atemberaubend.  Von mir klar eine 10+"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheOvertakerwrote on 01.03.2011:[10.0] "Alles andere als 10 Punkte geht hier gar nicht! Und die, die ihn jetzt schlecht benoten und wollen, dass er endlich aufhört, die werden nach jemanden mit seiner Aura schreien, wenn er mal wirklich nicht mehr da ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Zamunerwrote on 27.02.2011:[9.0] "Es ist eine Schande ihn nicht mit 10 zu bewerten. Warum mach ichs nicht? Er ist eine Legende, das letzte Überbleibsel der 90er, der ausgefallenste Charakter und im Ring eine Bank trotz seines Alters. Aber es reicht nur für 9 weil ich mich an ihm sattgesehen habe. Er kommt immer ewig lang zum Ring und das Jahr läuft nach Schema F ab. Er hat eine Fehde und gewinnt oder verschwindet. Dann kommt er zurück und es wird groß beworben, dabei weiß eh jeder dass er gewinnen wird wenn er zurückkommt (Ausnahme war die Fehde mit Kane). Irgendwie ist es meiner Meinung Zeit die Jüngeren over zu bringen, aber das lässt sein Gimmick nur bedingt zu. Aber ich will ihn nicht noch 100 mal verschwinden und zurückkehren sehen. Er ist eine absolute 10, das Booking von ihm eine 8 = 9 Punkte."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Takerwrote on 27.02.2011:[10.0] "Das geilste Gimmick was die WWE damals bis heute herrausgebracht hat, Undertaker ist ne Legende und wird es ewig bleiben, es ist nur eine Frage der Zeit wann sie Ihn in die Hall of Fame aufnehmen. Persönlich würde ich es bevorzugen wenn es noch nicht geschieht, Vielleicht in 2 - 3 Jahren, wenn er noch so lang weiter macht. die 20 - 0 sollte er noch voll kriegen bei Wrestlemania!  Der Beste überhaupt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: wolverinewrote on 17.02.2011:[10.0] "Ich will ehrlich sein, ich bin nicht der größte Fan des Undertakers, aber seine Leistungen deswegen nicht mit 10 Punkten zu bewerten wäre einfach im wrestlerischen Sinne ein Ding der Unmöglichkeit. Sicherlich bin ich von seinen In-Ring Skills nicht allzu angetan, aber alleine seine Präsenz reicht aus einem Main Event noch einen zusätzlich Push zu geben. Zweifellos einer der besten Entertainer die es im Wrestling je gegeben hat - ein Phänomen eben, und deshalb auch 10 Punkte, auch wenn ich nicht wirklich ein Fan von ihm bin..."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Marcywrote on 17.02.2011:[10.0] "Ist halt der Deadman, der mir zwischendurch als American Badd Ass fast noch besser gefallen hat. Insgesamt einfach eine 1."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GamePrincewrote on 13.02.2011:[10.0] "Eigentlich ist die Wertung beim Undertaker gar keine Frage. Alles andere als die volle Punktzahl wäre unangemessen. Wenn nicht Leute wie er, wer dann? Er war einer der größten und besten Wrestler aller Zeiten. Charisma ohne Ende, tolle Matches, 1A Gimmick, seine Wrestlemania-Streek ... das und noch viel mehr machen ihn einzigartig und zu einer Legende. Schade dass sein Körper nicht mehr mitspielt ..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CenationFanwrote on 05.02.2011:[10.0] "Er ist einer der besten Wrestler die, die WWE jemals hatte. Starke Moves, legendäre Matches und auch oft gute Promos machen ihn gut. Doch für ihn wird es langsam mal Zeit seine Karriere zu beenden"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jar Jar Binkswrote on 15.01.2011:[10.0] "Der Undertaker hat das Wrestling geprägt. Auch Menschen die kein Wrestling verfolgen haben schon einmal von Undertaker gehört. Dies allein zeigt schon seinen Stellenwert und seinen legenden Status. Er war mit seinem Gimmick immer eine Bereichung, technisch wirklich gut (hat viele gute Matches auf die Beine gestellt), seine In-Ring Psychologie ist der Hammer, Mic-technisch würde ich ihn passabel nennen (mehr ist mit dem Gimmick auch nicht drinnen) und ingesamt gesehen ein Top-Wrestler. Leider fällt er nun vermehrt durch Verletzungen aus und ist etwas eingerostet. Wie man einem Undertaker 0 Punkte geben kann, kann ich alleine scho wegen der Fehde gegen HBK, Batista, Edge oder wen auch immer, nicht verstehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Surviv0rwrote on 12.01.2011:[9.0] "Ein Fan des Undertakers bin ich nun schon, seit ich ihn als kleinen Pimpf 1991 das erste Mal habe kämpfen sehen. Einfach gigantisch mit welcher Power er im Ring steht und was die WWF/WWE im Laufe der Zeit nicht alles für Storylines veranstaltet hat. Buried Alice und Casket-Matches. Es gibt wohl kaum einen anderen Superstar, der ganze Stipulationen geprägt hat. Nur meine ich, er sollte langsam Schluss machen. Durch seine Verletzungen und die inzwischen immer gleichen ungelenken Moves zerkratzt er ein wenig seinen Status als Legende. Auch viel Aufregendes und Unerwartetes an Fehden scheint die WWE für ihn nicht mehr bereit zu haben. Wie auch, wenn er jede paar Monate ausfällt... ich sage, 20:0 machen und dann abdanken!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nomaxwrote on 08.01.2011:[10.0] "Für Undertaker kommen nur 10 Punkte in Frage, da er quasi eine lebende Legende ist und mich auch zum Wrestling gebracht hat"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Prodirwrote on 07.01.2011:[10.0] "Was anderes als 10 Punkte können hier nicht in Frage kommen. Der Undertaker ist sozusagen die lebende Legende, der wirklich fast alles und jeden herausgefordert und besiegt hat. Allein seine Persönlichkeit ist einzigartig, die nur er selbst am besten rüberbringt. Seine In-Ring Leistungen sind für sein derzeitiges(! ) Alter stark, womit er mit an der Spitze der Company steht und ein Vorbild fast aller ist."
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MultiXerowrote on 06.01.2011:[10.0] "Der Undertaker war für mich einer der gründe warum Ich vor drei Jahren auf Tele 5 die WWE wieder verfolgt habe.  Für mich ganz klar das beste Gimmick aller Zeiten.  Und seine Kämpfe gegen Edge, Kurt Angle, Batista und vor allem gegen Shawn Michaels bei WrestleMania 25 - 26 bleiben für mich unvergesslich.  Eine lebende Legende!  Zehn punkte von mir."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Typhusswrote on 01.01.2011:[10.0] "Bester Wrestler überhaupt! Hat in seiner Karriere alles erreicht! Wenn es den Undertaker nicht mehr giebt, höre ich auf Wrestling zu schauen. Es giebt keinen der eine bessere Perfomance (Entrance) bein Eintritt in die Wrestling Halle hat als er. Er hat Geschichte geschrieben. Ohne ihn ist die wwe nichts ganzes und nix halbes!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: lagunswrote on 28.12.2010:[10.0] "Wer seinen Comic-Charakter über so lange Jahre am leben erhalten kann und damit auch in der "nur kurze Jeans und Unterhemd-HipHop-Mtv" Ära an der Spitze steht, MUSS gut sein. War der Undertaker wirklich fantasievoller als Papa shango oder Damian Demento? -eigentlich nicht wirklich. Aber er is noch da. HALL OF FAME! SOFORT! der undertaker 1+ der wrestler 3, weil er die schwindende Agilität tatsächlich immer öfter durch gutes Mattenwrestling ausgleicht WOW!"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: teekay86wrote on 25.12.2010:[9.0] "Sein Gimmick gehört einfach zu den Besten die es im Wrestling gibt und gab. Darüber hinaus liefert er immer gute Leistungen im Ring. Hoch anzurechnen ist ihm ausserdem, das er sich weder zu schade ist Bumps zu nehmen, noch den Job für junge Talente zu machen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Necronwrote on 08.12.2010:[9.0] "Klar, ein Idol der WWE. Zu ihm muss man eigentlich nicht viel sagen, weil seine Vorzüge allesamt auf der Hand liegen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Marco2911wrote on 02.12.2010:[10.0] "Einer der besten in der WWE und das über Jahre. Ich geben ihm 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Larskanonewrote on 25.11.2010:[10.0] "Hat leider viel an seinem früheren Glanz eingebüßt , vielleicht durch schelchtes Booking oder durch das falsche Gimmick. Ich fand ihn eh als American Bad Ass besser , als als Deadmen, der übermächtige Sensenmann. Hoff aber dennoch, dass er mal wieda eine richtig gute Fehde bekommt, da er mit einem starken Gegner immernoch richtige Klassiker zaubern kann. Edit:was hab ich mir nur dabei gedacht als ich ihm 8 Punkte gab, für so eine Legend des Sports Entertaiment MUSS man einfach die voll Punktzahl geben."
Rating: 10.0
Sentiment: -0.3499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: justusjonaswrote on 15.11.2010:[10.0] "Wenn man 20 Jahre in der WWE ist, und das auch noch mit so einem riesigen Erfolg. Wenn man so viele legendäre Schlachten bestritten hat. Dann kann man diesen Mann einfach nur 10 Pukte geben. Legendär. Auch wenn man es mehr und mehr sieht das er körperlich abbaut. Allzu lange sollte er den Job nicht mehr machen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: elcattivo83wrote on 13.11.2010:[10.0] "Ist für mich der Beste Charakter den die WWE je geschaffen hat. Leider aber hat er allmählich sein Zenit überschritten. Sieht man ja an seiner Verletztungsanfälligkeit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Cheffewrote on 01.11.2010:[9.0] "Definitv eine Legende. Einfach Fantastisch was der Mann alles erreicht hatt. Ich bin wohl trotzdem einer der wenigen die das Biker-Gimmick besser fanden als den Totengräber. Heute sind seine Matches leider nicht mehr so Top, wie früher. Hoffe trotzdem das er es noch irgendwie bis WM 30 schafft und dann endgültig abdankt. Langsam wirds Zeit, er muss auch an sich denken."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rated R Champwrote on 16.10.2010:[10.0] "Blitzschläge und andere Zaubertricks, es gibt wohl weltweit nur einen einzigen Wrestler, dem man solche Dinge nicht negativ anrechnet und zwar DER größten WWE Legende. Die Präsenz Undertaker ist in der Wrestlinggeschichte wohl einmalig. Wie gesagt, meiner Meinung nach vor Hogan und Austin der größte WWE Superstar aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Homicide187wrote on 09.10.2010:[9.0] "Er ist einfach eine Legende aber durch sein Zwischenspiel als Biker hat er die 10 Punkte bei mir verspielt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Danicheckwrote on 04.10.2010:[10.0] "Der Undertaker ist nach 20 Jahre immer noch in der Lage, gute Matches zu bestreiten... Man hat es zuletzt bei den Match gegen Michaels gesehen. 10 Punkte für eine lebende Legende"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DJ MaSchwrote on 03.10.2010:[10.0] "Rein wrestlerisch für mich zwar keine zehn Punkte, trotzdem ist der Undertaker eine Ausnahmeerscheinung der Wrestlinggeschichte. Klar trägt das Gimmick seinen Teil dazu bei, aber man muss es dann auch erst mal so umsetzten. Er hat unzählige legendäre Schlachten geliefert und war vorallem zu meiner Anfangszeit als Fan einer meiner absolouten Favoriten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LabronBenoitwrote on 29.09.2010:[10.0] "Ohne wenn und aber einer der größten die es jemals gegeben hat, nicht nur wegen dem einmaligen und unverwechselbaren Gimmick sondern auch wegen seinen wrestlerischen Fähigkeiten. Ich hoffe, dass wir ihn noch einige Jahre sehen können!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BosnianDeadmanwrote on 26.09.2010:[10.0] "Gefällt mir Toll Mein Klarer Lieblingswrestler Ein Paar Negativitäten natürlich auch aber Wie er sich mit 45 Jahren noch aufrecht Halten Kann.  Respekt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertakemaintwrote on 23.09.2010:[10.0] "Das Beste was es zur Zeit im Wrestling gibt, wenn er fit ist."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Pyromaticwrote on 17.09.2010:[7.0] "Ich werde ihn immer als Wrestling Legende in Erinnerung haben, aber langsam wird es Zeit zu gehen, bevor sein Status als Living Legend anfängt zu bröckeln."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sloverwrote on 16.09.2010:[10.0] "Eine Legende im Wrestling. Schon seit Jahren aktiv und liefert immer gute Matches ab. Einfach Klasse"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gaven Eolowrote on 10.09.2010:[10.0] "Faszinierte mich schon als Kind und ist immer noch an der Spitze der WWE. Ich liebe es einfach dem Deadman zu sehen und seine jetzige Fehde mit Kane ist überraschenderweise echt gelungen."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: rockysadrianewrote on 10.09.2010:[10.0] "Nach so vielen Jahren wird Undertaker immernoch R-E-S-P-E-K-T buchstabiert!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rock93wrote on 05.09.2010:[10.0] "Nach Michaels`Abgang Die WWE-Legende überhaupt unter den Aktiven. Sein Gimmick steht einfach über allem, und seine Leistungen im Ring überzeugen entsprechend. Für mich immer ein Favorit und ganz klar der größte Superstar im WWE-Roster!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Ramwrote on 02.09.2010:[9.0] "Dieser großartiger Wrestler wrestlete schon da war ich nicht mal auf der Welt. Die Glorreichte Zeiten des Undertakers könnte ich nie Verfolgen dennoch gefiel mir dieser Wrestler schon immer sehr gut. Trotzdem finde ich das man ihn schon sein Hohes Alter und die ein oder ander Verletzung im Ring anmerkt. (wobei ich ihn trotzdem lieber sehe als viele andere) Ausserdem find ich dieses Unmenschliche Getue teilweise zu übertrieben und unrealistisch. Gerade gegen Ende seiner Kariere sollte er mal langsam sein Gimick ablegen. Seine Wrestlemania Streak ist zwar irgendwie schon toll aber im Wrestling wo es immer heisst es kann alles passieren muss doch mal jemand gegen ihn gewinnen. Gerade Shawn hätte ich es gewünscht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Philippwrote on 26.08.2010:[10.0] "The Undertaker einer der besten aus der WWE, keiner kann so bei den Fans Punkten wie er. Ein Großartiker Wrestler ich hoffe das er trotz seiner kleinen gesundheitlichen Probleme noch Lange mit dabei ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Taker93wrote on 22.08.2010:[10.0] "Undertaker is der bester. Seit 1990 im business und kein bisschen müde schon starl )))"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SES-Memberwrote on 20.08.2010:[10.0] "Ich denke viel sagen muss ich zum Taker nicht. Alleine die Streak und das Er das ``Phenom`` ist schon ausschlaggebend dafür das Er mindestens 5 Punkte kriegt. Dazu kommt noch das Mark trotz seines Alter noch relativ schnell im Ring ist und eine Promo klasse rüberbringen kann. Wenn man nur mal die Matches gegen HBK, EDGE u. s. w. angugt weis man warum ich Ihm 10 Punkte gebe"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: lenny1910wrote on 18.08.2010:[7.0] "Inzwischen imme nur das gleiche: Er nimmt sich das halbe Jahr frei kehrt dann zurück, wird Champion und verteidigt dann seine Streak bei Wrestlemania und geht in die Pause, und das ist einfach nur langweilig. Ich bin immer froh wenn er Pause macht und die talentierten Wrestler bei Smackdown vorrücken wie letztes Jahr bei der CM Punk vs Jeff Hardy Fehde."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Shrinxwrote on 15.08.2010:[10.0] "Der Undertaker mag etwas in die Jahre gekommen sein, aber ich finde seine Matches immer noch klasse.  Und seine Streak wird wohl niemals enden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wuenschwrote on 24.07.2010:[10.0] "Er ist und blebt der Größte des Geschäfts! Vermisst in seiner besten Zeit 1999 als Ministryundertaker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mika1986wrote on 18.07.2010:[10.0] "Der Deadman er beibt für mich einer der Besten die es jemals in der WWE gab , wobei ich ihn wünsche das er nächstes oder dieses Jahr eine Große Fehde (vieleicht mit Stabel) zum Kaierre ende bekommt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HBK1986RKOwrote on 17.07.2010:[10.0] "Mein erster großer Held des Wrestlings. Immernoch furchteinflößend find ich. Das Bikergimmick steht im defintiv nicht. Er ist und bleibt das Phenom."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ClaudeSpeedwrote on 15.07.2010:[10.0] "Zum Undertaker muss man nicht nviel sagen. Lieferst tolle Matches, gute Promos und hat ein verdammt cooles Gimmick. Hoffentlich bleibt er noch bis 20:0 bei der WWE erhalten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: samuel86wrote on 14.07.2010:[10.0] "Einer der Wrestler, die mich faszinert haben wie kaum ein Anderer, in der Vergangenheit und zum Teil auch heute noch, wie zum Beispiel die Fehde mit HBK. Sein Gimmick hat über die ganzen Jahre kaum an Farbe verloren und ist wohl das erfolgreichste Gimmick der Wrestlinggeschichte auf die lange Zeit bezogen. Er hat soviele große Matches bestritten, dass es kaum Sinn hat sie aufzuzählen. Trotz allem zollt das Alter auch ihm seinen Tribut und ich hoffe dass seine Kariere nicht wie bei vielen Anderen ein würdiges, fulminantes Ende findet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MICHAELAundMARKUS4EVERwrote on 11.07.2010:[10.0] "Der Undertaker ist der mit Abstand BESTE in diesem Business. Wrestlerisch für seine Statur sehr beweglich, dazu kommen tolle In-Ring Psychologie und das beste Gimmick aller Zeiten. DER BESTE!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Medeawrote on 30.06.2010:[7.0] "Zu Beginn war das Image einfach genial, die Show war beeindruckend hat für Stimmung gesorgt. Mittlerweile finde ich, dass es immer das gleiche ist, die Moves wenig Abwechslung bieten und aus dem Charakter einfach nicht mehr viel zu machen ist, ohne sich ständig zu wiederholen. Dennoch bleibt der Taker einzigartig und wenn er irgendwann den Ring endgültig verläßt, wird sein Gimmick nicht zu ersetzen sein, was leider aber auch daran liegt, dass er keinen Schüler aufbauen kann oder darf. Da ließe sich - zwar nicht als Kopie aber ähnlich - sicherlich ein Erbe finden."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The last Outlawwrote on 22.06.2010:[10.0] "Dieser Wrestler hat das Wrestlin ganz schön verändert ohne ihn gäb es kein Hell in a Cell, Buried Alive, Casket, keinen Kane, kein Infernomatch.....  Sein Charakter als Undertaker spielt er nahe zu perfekt.  Seine Wrestlemania Streak unglaublich"
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mucs28wrote on 12.06.2010:[10.0] "Ein Wrestler, der sich schon seit Ewigkeiten erfolgreich in der WWE hält und auch heutzutage noch einiges zu bieten hat. Natürlich kann man sagen, dass sein Gimmick ausgelutscht ist, aber es ist immer noch populär. Außerdem verleiht es ihm Charisma ohne Ende. Man merkt es jedes Mal, wenn seine Musik ertönt und alles abgedunkelt wird. Ein perfekter Wrestler für das Mainstram-Wrestling. ; )"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JeriMizwrote on 12.06.2010:[10.0] "Für einen Undertaker kann man nur 10Punkte geben. Er ist einer der bekanntesten Wrestler die es gab bzw geben wird. Sein Gimmick is einfach gigantisch. In meiner Mark Zeit hätte ich jeden Vermöbelt der dem Undertaker geschadet hat. Trotz seiner Größe und Stämmigkeit, hat er dennoch ein paar Schnelle Moves/bewegungen. Ich hoffe er macht noch seine 2-3 Jahre den dieser Mann hat wirklich viel erreicht, und viel Dank für seine Harte Arbeit verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FuXwrote on 06.06.2010:[7.0] "Er ist in die Jahre gekommen und das merkt man ihm auch stark an. Zieht seit seinem Totengräber Comeback show für show das Selbe ab und ich erinner mich mit Schrecken an seine letzten Titelgewinne + run zurück. Naja, 7 Punkte."
Rating: 7.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: bigLwrote on 06.06.2010:[10.0] "Es wird Zeit daß der Taker endlich wieder da ist. Smackdown ohne ihn war wie ein Auto ohne Motor. Er ist und bleibt der Beste und ich trauere jetzt schon wenn ich daran denke daß er irgendwann wirklich nicht mehr wieder kommt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: turkeltonwrote on 04.06.2010:[10.0] "Einer der größten ever... Er ist ein Paradebeispiel eines Mainstreamwrestlers"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: morph80wrote on 29.05.2010:[10.0] "Eine lebende Legende und ein Publikumsmagnet über viele Jahre. Auch wenn er im Ring nicht mehr das ist was er einmal war, für sein "Lebenswerk" muss man 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Yannick009wrote on 25.05.2010:[8.0] "Puhh ... Wenn ich ihn nur aufgrund der "guten alten Zeiten" bewerte natürlich 10 ...  Aber merkt einfach nicht wann es Zeit ist auf zuhören nur 8..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Erasedwrote on 23.05.2010:[10.0] "Einer der Personen, die man wohl am ehesten mit dem Wrestling verbindet. Wenn man den Namen Undertaker hört, denkt man sofort an ein spektakuläres, über Jahre gut funktionierendem Gimmick, spannende und interessante Promos und Matches. Dieses Gimmick passt einfach wie die Faust aufs Auge. Ein wirklich guter Technicker war Mark zwar nie, doch nötig war dies auch nie, er lieferte auch so erstklassige Matches ab, die einfach jedesmal wieder aufs neue unterhielten. Er hat eine Ausstrahlung wie kein zweiter. Hervorragender Mann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: tobiasthegreatone1wrote on 22.05.2010:[10.0] "Undertaker ein Wort ein Name eine Legende. Der Undertaker ist trotz oder vielleicht sogar wegen seiner Größe und seines Gewichts so beeindruckend. Er ist 44 Jahre alt er ist 2. 08 Meter groß und wiegt fast 140 KG und kann im lauf über das dritte Seil springen ! Sein Gimmick ist nicht ausgelutscht sein Gimmick ist legendär das Licht geht aus und jeder in der Halle weiß das der Taker kommt. Er ist ein Garant für Publikumsreaktionen selbst bei einer Scheintoten Crowd bekommt er Standing Ovations. Im Ring ist er extrem gut er hat die beste Ring Psychologie die ich jemals gesehen habe. Sein Mic work ist großartig man muss ihm einfach 10 Punkte geben."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TeeHaawrote on 18.05.2010:[10.0] "Der Taker stellt eines der besten Gimmick, Entertainment, Ringskill Gesamtpakete dar. Sicher könnte ich ihm einen Punkt abziehen, weil er heute öfter Verletzt ist, nur noch ein oder zwei epic-matches im Jahr raushaut - und er sein Gimmick in den letzten fast 10 Jahren nicht mehr geändert hat (warum muss man sein Gimmick ändern, wenn man so verdammt over ist, wie der Taker? ) Ich will hier aber nicht anfangen aufzudröseln wieviele Jahre er 9 und wieviele Jahre er 10 Punkte hatte um dann irgendwie eine Endnote zu vergeben. Welche Note werde ich wohl mit dem Taker verbinden, wenn er mal geht? Welches Attribut werde ich gebrauchen, um den Taker einem jungen wrestlingfan zu beschreiben. Die Antwort - legendär! - 11/10! Das wird am Ende bleiben und diese Note gebe ich ihm."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Golgotawrote on 14.05.2010:[10.0] "Dead Man Walking. Eine Legende, die aufhören sollte, solange sie noch oben ist. Wenn der Taker sich vom Wrestling verabschiedet, tue ich das mit ihm zusammen."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Edge96wrote on 12.05.2010:[10.0] "Wird als einer der allerbesten in die Geschichte eingehen. Ich mein seit 20 Jahren bei der WWE in Vertrag und zeigt seit dem ununterbrochen geniale Leistungen. Super Gimmick und auch das Wenige was man von ihm am Micro hört ist auch nicht schlecht. Daneben eine Super Ausstrahlung und auch wenn sein Einzug etwas lang dauert finde ich ihn trotzdem atemberaubend. Etwas anderes als 10 Punkte kann ich hier nicht geben."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gustelwrote on 09.05.2010:[10.0] "Muss ich hier überhaupt was sagen? Einer der Besten, wenn nicht der Beste und stellt auch noch mit 45 Jahren Matches auf die Beine die mich vom Stuhl hauen. 10 Punkte, keine Diskussion."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sandmannwrote on 04.05.2010:[10.0] "Was soll man noch groß zu Mr. WWE sagen. Der Taker hat alles gewonnen, hat gegen jeden großen Star im Ring gestanden und ist unbesiegt bei Wrestlemania. Eine Lebende Legende dem Quasi nur noch die abschließende Story fehlt um verdienter massen in Rente zu gehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: element-41wrote on 03.05.2010:[9.0] "Der Mann ist eine Legende. Mehr kann man dazu nicht sagen. Aber ich finde es wird Zeit, dass er aufhört. Seine In-Ring Fähigkeiten lassen stark nach. Er hat(te) zwar eines der geilsten Gimmicks im Wrestling Business überhaupt, jedoch nervt es langsam. Er muss einsehen, wann er aufhören sollte. Aber trotz allem, für 9 Punkte reichts!"
Rating: 9.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RickRollwrote on 02.05.2010:[4.0] "Gefiel mir lediglich als Mark, was ja auch verständlich ist. Wie dem auch sei, er ist definitiv eine Legede, das will ich nicht abstreiten, aber ich verbinde eher negatives mit Taker als mit positiven. Sein Entrance hat mich immer extremgenervt. Man braucht ja nicht in den Ring sprinten, aber 5min zu warten damit er endlich im Ring ist ist zuviel des guten. Dazu stört mich der aspekt das er sich nie weiterentwickelt hat, den er zeigt IMMER das selbe und sowas mag ich überhaupt nicht, weshalb ich auch RVD eine "schlechte" Note gab. Dazu fehlt es mir das wenn ich Taker im Ring absolut nicht denken kann. "Oh, wer wird jetzt gewinnen? " denn Taker gewinnt, jedes Match clean, jedes WM Match und jede Fehde, weshalb die spannung VOLLKOMMEN weg ist. Solltete schon lange in den Ruhestand gehen."
Rating: 4.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Damon Strikerwrote on 01.05.2010:[8.0] "Sicherlich für seine Größe kein schlechter Wrestler aber sein Gimmick und damit verbundene, weitestgehende Stummheit gefallen mir überhaupt nicht. Neben seinen vielen guten Kämpfen sollte man auch nicht die vielen Rohrkrepierer gegen Monster/Big Men sowie die teilweise sinnfreien Segmente und Angles vergessen. Hat mir als Biker irgendwie am besten gefallen!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Reiskartoffelwrote on 17.04.2010:[10.0] "Der Sensenmann der WWE.  Der wohl bekannteste Wrestler der heutigen Zeit. Er ist quasi die noch einzige aktive Legende.  Er bestizt das wohl beste Gimmick aller Zeiten. Seine Ringfähigkeiten sind ohne Zweifel -für ein Alter und siene Größe-stark. Was mich dennoch stört: Er verliert eigentlich nie clean. Deshalb ist eine spannende Auseinandersetzung zwischen ihm und einem Face unmöglich. Dennoch, Hut ab vor dieser Legende!"
Rating: 10.0
Sentiment: 0.45833333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PunkZEROwrote on 15.04.2010:[9.0] "Ja, er ist häufig verletzt und nein, er kann mich nicht mehr sogut unterhalten, wie vor einem Jahr noch. Dennoch bleiben nach einer großen Karriere nebstder Fähigkeit, immer noch fantastische und spannende Matches zu zaubern die 9 Punkte stehen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Icebreakerwrote on 13.04.2010:[10.0] "Der Deadman, Phenom, Sensenmann... welchen Namen man auch immer wählen mag, dieser Mann ist eine Legende. Seit nun fast 20 Jahren arbeitet er schon für die WWE/F und trotz momentaner gesundheitlicher Probleme ist er immer noch in der Lage gute Matches zu zeigen (siehe Taker vs. HBK). Der größte Techniker mag er nicht sein, aber es gibt kaum einen faszinierenden Charakter als ihn. Sein Charisma ist unglaublich, seine Mimik und Gestik, sowieso sein Micwork einfach exzellent und sein Wille den Fans trotz Schmerzen eine gute Show zu liefern bemerkenswert (der Bump vor dem vermeintlichen Karrierende bei One Night Stand) oder der Pyro-Unfall bei Elimiation Chamber. Einer meiner absoluten Lieblingswrestler dessen Einzüge und "Wiederauferstehungen" legendär sind. Unzweifelhaft einer der größten aller Zeiten! Wenn ich dem Taker zu gucke, werde ich auch gerne mal kurzzeitig zum Mark ; -). Ob als Biker oder als Sensenmann (obwohl ich das Deadman Gimmick bevorzuge, weil es einfach einzigartig ist), dieser Mann ist eine Ikone und ohne ihn wäre Wrestling nicht das gleiche."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Matt Mackswrote on 06.04.2010:[10.0] "Dem Undertaker ist sein Alter anzusehen und natürlich benötigt der geschundene Körper Pausen und auch mal ein paar Minuten weniger Matchzeit, darüber kann es keine ernsthafte Diskussion geben. Allerdings muss auch klar sein, dass der Deadman mit Mitte Vierzig noch besser ist als alle anderen WWE-Wrestler, wenn es um das "Big Match Environment" oder die Superstar-Aura geht. Jetzt, wo Shawn Michaels seine Karriere (wahrscheinlich) beendet hat, ist der Undertaker für mich der letzte aktive Superstar mit Legendenstatus und dem "Hauch der 90er", in denen er groß geworden ist. Wenn meine Meinung etwas zählt, kann er noch jahrelang weitermachen und nach mehreren Monaten Pause einen weiteren Klassiker bei WrestleMania zeigen und seiner einzigartigen Siegesserie eine Kerbe hinzufügen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Parlaelwrote on 05.04.2010:[9.0] "Eine Legende. Zwar weniger wegen seiner wrestlerischen Leistungen (immerhin ist er ja auch schon ein alter, alter Mann), doch vor allem wegen seiner Ausstrahlung, seinem Gimmick, seinem Mic-Work. Ich freue mich jedes Mal, wenn ich den Gong höre und die Halle dunkel wird. Auch hat er ein paar unglaubliche Matches abgeliefert. Das Streek vs. Career Match bei WM 26 wird sicherlich vielen in Erinnerung bleiben, ebenso wie das Match gegen Michaels bei WM 25. Wenn es jemand verdient hat, Shawns Karriere zu beenden, dann der Taker. "Nur" 9 Punkte deswegen, weil er (leider) wie jeder andere auch, älter wird und man es ihm ansieht. Da es bei ihm in meinen Augen jedoch nicht so sehr auf akrobatische Talente ankommt, sogar gute 9 Punkte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheDPHwrote on 05.04.2010:"@Vorredner: Hast du schon mal was von eigener Meinung gehört .. ?"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Franjisewrote on 31.03.2010:[9.0] "Eines der besten Gimmicks aller Zeiten. Der Undertaker ist einer der groessten aller Zeiten. Nicht nur ausserhalb des Rings. Auch im Seilgeviert wusste der Sensenmann ueber die Jahre zu ueberzeugen, auch noch im hohen Alter. Einen Punkt abgezogen habe ich allerdings, weil sich das Gimmick ueber die Jahre nicht veraendert hat und wenn, dann nur, dass der Taker etwas, wie soll ich sagen, "sanfter" geworden ist. Frueher waren seine Promos finsterer. Jetzt ist es fast immer das selbe, aber nach wie vor auf hohem Niveau."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Viperwrote on 30.03.2010:[10.0] "Trotz des so hohen Alters und der Verletzungsanfälligkeit bringt er immer noch sehr konstant gute Leistungen. Die Streak macht ihn zur lebenden Legende"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tribbel Eitschwrote on 28.03.2010:[10.0] "Dieser Mann ist nichts anderes als eine lebende Legende. Er hat eine Popularität erreicht, die selbst über die Grenzen der Wrestlingwelt hinausgeht. Er ist schlicht und ergreifend einmalig. Einen so imposanten, mysteriösen, beeindruckenden Charakter wird es nie wieder geben. Wegen ihm bin ich Wrestlingfan geworden. Bei ihm wird jeder Einzug zum Ring schon zum Erlebnis und beschert mir immer wieder eine Gänsehaut. Und selbst auf seine verhältnismäßig "alten Tage" ist er noch in der Lage, fantastische Matches abzuliefern (wenn auch vielleicht nicht mehr so häufig wie früher)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KingSvenwrote on 27.03.2010:[10.0] "Meiner Meinung nach der beste Big-Men den das Wrestling überhaupt gesehen hat. Für seine Größe und seine Gewichtsklasse besitzt er eine unglaubliche Technik und Dynamik. Besitz außerdem unglaublich viel Charisma und kann sein Gimmick exellent verkörpern. Zu guter letzt auch gut am Mic. Eine absolute Legende und ich denke, auch für seine Hingabe zum Wrestling-Business, sind hier 10 Punkte angebracht."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Papa Popanzwrote on 18.03.2010:[7.0] "Auch wenn ich es liebe wie der Taker seine Gegner auseinander nimmt und was für eine Show er abzieht. Doch leider sind seine Auftritte in der letzten Zeit recht schwach geworden und nur ein starker Gegner lässt ihn gut aussehen"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Showstopper45wrote on 17.03.2010:[10.0] "Er ist seit 20 Jahre dabei hat sich von Jahr zu Jahr immer wieder verbessert das ist einzigartig. Man sieht auch das er wieder besser wird am Mic und seine Matches sind immer wieder super gut."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Moyawrote on 14.03.2010:[10.0] "Eine Legende, die immernoch starke Matches zeigen kann, ohne Frage! Sicherlich einer der ganz Großen des Wrestlinggeschäfts."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fat Mikewrote on 14.03.2010:[10.0] "Einer meiner absoluten Lieblinge. Seit 20 Jahren ist er eine der Säulen der WWE und weiß auch heute noch zu überzeugen. Schade das er wohl nicht mehr lange dabei ist, aber so langsam werden sein fortgeschrittenes Alter und der körperliche Verschleiß immer deutlicher, denn er kann nur noch selten das hochwertige Niveau bieten, das man sonst im Ring von ihm gewohnt war. Nichtsdestotrotz, insgesamt würde ich ihn sogar noch vor Austin und The Rock als DEN WWE Superstar bezeichnen, da er nicht nur wenige Jahre auf dem höchsten Level war, sondern die schon erwähnten 2 Jahrzehnte ein hochklassiger und verlässlicher Worker war, der selbst wenn er in den Shows etwas in den Hintergrund rückte, ungemein wichtig für die Liga war und nie enttäuschte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Eazyewrote on 10.03.2010:[10.0] "Halt einfach das was man sich unter einem guten Worker vorstellt: Gut im Ring, charismatisch und halt einfach gutes Micwork. Das alleine hätte zu etwa 8-9 Punkten geführt. Aber was mir den Grund gibt, dem Undertaker 10 Punkte zu geben ist seine Jahrelange Loyalität zur WWE. Bald 20 Jahre ist er Tag für Tag Angestellter der WWE gewesen. Das ist etwas das wahrscheinlich noch kein Worker aus den letzen 20 Jahren geschafft hat. Daneben bietet er bombastische Matches, sein Gimmick ist legendär. Hoffe aber er beendet seine Karriere bald, oder kehr nur noch zur Wrestlemania zurück."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: breunig88wrote on 28.02.2010:[10.0] "Der Undertaker ist DER vorzeige Wrestler und für mich DER BESTE WRESTLER ALLER ZEITEN.  ich hoffe bloß das seine serie bei Wrestlemania bestehen bleibt! "R.I.P Shawn Michaels""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker17wrote on 26.02.2010:[10.0] "The Undertaker ist für mich eine der grössten Legenden in der WWE.Er hatte in seiner Karriere viele sehr gute Fehden z.b. mit Stone Cold,Kane,Batista und HBK. mit diesen Fehden hat er  bewiesen das er eine der grössten Legenden in der WWE ist.Ich hoffe das er noch ein paar Jahre weitermacht.Seine Gimick überzeugt mich sehr.Ich hatte mal das Vergnügen im Hallenstadion Zürich.Schon als die Glockenschläge ertönten war es unglaublich und als dan der Rauch den Boden bedeckte und der Deadman auftauchte war die Stimmung ind der Halle einfach fantastisch.Darum bekommt The Undertaker 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: UndertakerNr1wrote on 25.02.2010:[10.0] "Der Undertaker - nie hat es im Wrestling eine derartige Persönlichkeit gegeben und ich denke, dass es diese auch niemals wieder so geben wird. Ob nun als Totengräber, als Anführer der Ministry oder als Badass - der Undertaker hebte sich stets von allen anderen Wrestlern ab. Und man darf nicht vergessen, dass er für seine Größe und sein Gewicht sehr gute Leistungen zeigt. Und das besondere ist, dass er mit den Jahren nicht immer schlechter, sondern immer besser wurde. Zu Beginn seiner WWF-Karriere hatte der Undertaker etwas bedrohliches, unantastbares an sich. Er kam gruselig und mysteriös rüber. Wer diesen Mann sieht, der vergisst ihn nicht mehr. Auch als Badass gefiel mir der Undertaker ausgesprochen gut. Es war sicher nicht der typische Undertaker, aber ich muss sagen, dass der Undertaker als Badass unheimlich cool rüberkam! Angefangen von seinem Auftreten, seiner Entrance Music bis hin zu seinen Promos. Nur heute finde ich, dass sich das Gimmick des Undertakers ein wenig abgenutzt hat. Dennoch sehe ich ihn lieber als 90 Prozent des restlichen WWE-Rosters. Der Undertaker wird immer einer der ganz Großen bleiben. Er war von Anfang der 90er bis heute durchgehend bei der WWE, das hat KEIN aktiver Wrestler geschafft. Er ist ein zukünftiger Hall of Famer - ohne Frage!"
Rating: 10.0
Sentiment: 0.546875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Manu Adamswrote on 16.02.2010:[10.0] "Holpriger Start als Mean Mark an der Seite von Teddy Longs Skyscrapers, hatte er es dann allerdings knapp zwei Jahr später in der WWF zum absoluten Publikumsliebling der Massen gebracht. Ein Mann der mich jeden Monat immer und immer wieder überrascht wie stark er sich verbessert. Er ist zwar doch schon Mitte 40 und sehr erfahren, aber dennoch entwickelt er sich im Alter, wie er uns mit der Fehde gegen den Heartbreak letztes Jahr bewiesen hat."
Rating: 10.0
Sentiment: -0.25625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: the king of kingswrote on 14.02.2010:[10.0] "Er ist einfach der beste Wrestler auf der Welt. Sein Gimmick ist so klasse, und er hat so gute Aktionen drauf. Ich fande die Fehde gegen Batista am besten, die war interessant weil alle beide richtig lange Kämpfe abgegeben hatten, aber leider wurde es dafür immer langsamer. Aber wie gesagt, für mich der beste Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Y2J Chris Jericho The Ayatollah of Rock n Rollawrote on 13.02.2010:[10.0] "Der Undertaker ist in der WWE eine Legende. Es gibt wohl kaum einen Wrestler, der über einen so langen Zeitraum in der WWF/E eine so bedeutende Rolle gespielt hat (in der Sports Entertainment-Äre könnte man ansonsten höchstens noch Hulk Hogan hinzuziehen). Dazu kommt, dass Mark Calaway für einen 2m+ Mann äußerst beweglich ist und dementsprechend über einige recht Aufsehen erregende Moves verfügt. Sein Micwork ist zwar nicht überragend, aber für die Rolle des Deadman völlig ausreichend. Sein einziges Problem ist sein legendäres Gimmick. Durch die Dominanz, die der Undertaker verkörpern muss, ist es schwer, ihn in längere Storylines zu stecken oder ihm einen längeren Titelrun zu geben, da sich gerade im letzten Fall die Frage stellt, wie man ihm irgendwann den Titel wieder abnehmen kann, ohne dass sein Gimmick dadurch Schaden nimmt. Das dürfte wohl auch einer der Gründe sein, warum der Taker während seiner langen Karriere nur wenige cleane Niederlagen "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Aquifelwrote on 08.02.2010:[8.0] "Ich war zwar immer ein Undertaker Fan, aber mehr als 8 Punkte sind momentan einfach nicht mehr drin. Dazu hatte er über seine Karriere (gerade auch in der WWE) auch zu viele mittelprächtige Matches und Fehden. Und auch in letzter Zeit war es immer gespalten. Gute Fehde und gute bis sehr gute Matches gegen Edge, grauenhafte Fehde gegen Big Show, dann wieder zwei sehr starke Auftritte (No Way Out 2009, WM 25) und danach wieder sehr viel Luft nach oben. Natürlich eine Legende, natürlich viele sehr gute Matches, aber auch sehr viel auf und ab."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Exist 2 Inspirewrote on 07.02.2010:[10.0] "Eine lebende Wrestling Legende, der immer für einen Klassiker gut ist. Ich schau mir den Taker auch heute noch gerne an. Hoffe mal das er uns noch 1-2 Jahre auf hohem Niveau erhalten bleibt und dann seinen wohl verdienten Ruhestand antritt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Big Bad Booty Babywrote on 30.01.2010:[10.0] "Der Undertaker ist nicht einfach eine Legende. Er ist DIE Legende. Egal wem ich erzähle, das ich Wrestlingfan bin, jedem der weiß was Wrestling überhaupt ist, ist der Undertaker ein Begriff und ich bekomme Sätze zu hören wie: "Den fand ich schon immer gut. ", "Gibst den immer noch? " und "Der ist der einzige, der mir aufgefallen ist". Auch wenn man mit Wrestling nichts an Hut hat, kommt man nicht daran vorbei von ihm beeindruckt zu sein. Sein Gimmick funktioniert seit Jahrzehnten und er hat es stetig weiterentwickelt. Das gleiche gilt für sein Können im Ring, sodass er einer der wenigen Wrestler ist, die mit dem Alter besser werden."
Rating: 10.0
Sentiment: -0.3499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Vimeswrote on 26.01.2010:[9.0] "Hat mich der Undertaker in den Jahren 2007/2008 noch begeistert, so war das Jahr 2009 eher enttäuschend. So angeschlagen wie er derzeit ist, sollte er nicht im Main-Event stehen und dem doch derzeit ganz gut besetzten SmackDown! -Kader den Spot nehmen. Sollte sich sein Zustand nicht bessern, wäre es an der Zeit, über einen Rücktritt nachzudenken(Sonst gibt es weitere Abwertungen)."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RoHSupporterwrote on 25.01.2010:[7.0] "Undertaker ist bestimmt eine Legendäre Persönlichkeit im Sports Entertainment aber ich finde das er jetzt aufhören sollte. Sein ausgelutschtes Galileo Mistery Gimmick nervt nur noch und dauern verletzt ist auch, er gewinnt jede Fehde und wird noch mehr als Superman dargestellt als z. B. Cena. Für seine früheren Verdienste hätte er eine 10 verdient aber so nur eine 7 da es für ihn echt Zeit wird aufzuhören bevor er noch im Ring stirbt!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: quazogenwrote on 25.01.2010:[8.0] "Für mich eine 7, nein 8. Gut aber eben nicht die Höchstwertung. Zeigt für seine Größe wirklich wirklich starke Matches. Sein Gimmick wohl mehr als nur legendär. Eine Overness seit Jahren, beeindruckend - auch wegen seines "entschärften" Terminkalenders in der WWE. Einen Bonuspunkt - zur 8 - gibt es für seinen Finisher, der "Tombstone Piledriver" wohl mit fast mystischem Charakter und eigener Overness. Stark. Seine Wrestlemania Winning-Streak wichtiger als jeder Belt. Undertaker einer der größten seiner Zeit."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DaRkwrote on 23.01.2010:[10.0] "Der Taker ist einfach ein toller Wrestler, weil er ein einzigartiges Allroundtalent ist. Außerdem ist er eine Legende und trotz seines hohen Alters gehört er auf jeden Fall zu den Besten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheROCKwrote on 22.01.2010:[10.0] "The Living Legend. Der aktuelle Papst im Wrestling-Business. 17-0 bei WrestleMania. Mit 44 Jahren auf einem noch unglaublichen Level. Alle die etwas anderes behaupten sind wahrscheinlich 18 und gesund und können einen körperlichen Verschleiß bei diesem ''Sport'' gar nicht einschätzen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: novacanewrote on 19.01.2010:[10.0] "WWE Ikone - ein Gimmick für die Ewigkeit. Tolle Fehden und Matches über zwei Jahrzehnte. Auch in seinem jetzigen Alter noch mit sehenswerten Matches - makes 10 in my book."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ShakDragoonwrote on 19.01.2010:[10.0] "Einfach Kult und neben Hulk Hogan wohl der bekannteste Wrestler! Ich freute mich sehr über seinen Wrestlemania-Sieg gegen das äußerst beschränkt talentierte Etwas, genannt "Batista"! Danke an WWE, dass er nun abermals den Titel halten darf!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HeartBKwrote on 13.01.2010:[10.0] "Einer der absoluten Topstars der WWE. Einzigartiges Gimmick mit großer Vergangenheit und denkwürdigen Storylines (Kane). Wrestlerisch auf hohem Niveau, auch wenn es mit seinem gehobenem Alter wohl langsam dem Ende zugeht. Undertaker will never REST IN PEACE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Unrated Superstarwrote on 13.01.2010:[10.0] "Seine In Ring-Skills waren schonmal besser? Was zur Hölle erwartet man von einem Mann Mitte 40 mit Gelenkbeschwerden? Was er in dem Alter und seiner körperlichen Verfassung noch für Aktionen zeigt... einfach der Wahnsinn! Zudem ein gutes Vorbild für jüngere Wrestler. Wer behauptet Hulkamania wäre unsterblich, der hat sich schwer getäuscht. Pfft... Hulkamania ist schon längst Geschichte und der Undertaker steht immer noch. Champions kommen und gehen, aber der Deadman steht ewig! Zudem bringt er bei Live Events jede Halle zum kochen wie ich selber erleben durfte - und das trotz des angeblich ausgelutschten Gimmicks!"
Rating: 10.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Quasowrote on 08.01.2010:[7.0] "Eine Legende... Trotzdem sollte er bald Schluss machen und seinen Körper schonen"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RatedRJuliwrote on 07.01.2010:[9.0] "LEGENDE. Muss aber bald aufhören denn mit dieser Hüfte bringt er kein gutes Match mehr zusammen"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RALPHwrote on 07.01.2010:[7.0] "Undertaker ist nicht gerade mein Favorit , aber er ist gut"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Denzwrote on 04.01.2010:[10.0] "Ich finde seine Gimmick hat viel Stil und obwohl er seit ungefähr 20 Jahren in der WWF/E dabei und mittlerweile ziemlich alt ist, sehen seine Schläge und viele seiner Moves stark aus. Als ich in den 90ern den Undertaker sah, hatte ich bei seinen Clothelines immer das Gefühl, dass er schweben würde. Er ist zwar nicht sehr oft am Mic, jedoch ist er ein Meister in diesem Gebiet. Die Idee mit seiner Siegesserie bei Wrestlemania finde ich klasse. Er hatte selbst mal angeboten sich für Kane bei Wrestlemania XX hinzulegen, was Vince überhaupt nicht gepasst hat... Schade, dass er seine Karriere in den nächsten Jahren beenden wird."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Cripplerwrote on 04.01.2010:[7.0] "Ich finde sein Gimick inzwischen sehr langweilig schließlich macht er das als Deadman schon seit über 20 Jahren so, trotzdem sind sehr viele seiner Moves überraschend und er hat sehr viele Fans."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Razor995wrote on 02.01.2010:[10.0] "Ich habe mich damals als ich anfing Wrestling zu gucken nicht gleich mit der gegenwart beschäftigt,sondern alte zeiten....damals ales er mit Kane B.O.D war das war schon genial.Dann kam die richtige "Bad Ass" zeit auch gut gemacht von ihm,und dann natürlich der Deadman,the Phenom oder wie auch immer man ihn nennen möchte.Ein super Wrestler der auch gegen ALLE neulinge ankommt"
Rating: 10.0
Sentiment: -0.18333333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Aesopwrote on 17.12.2009:[10.0] "Der Undertaker hat sich die best Note verdient, denn er hat dieses Kult Gimmick, was in charismatisch macht und ihm eine gewisse Ausstrahlung verleiht. Er ist ein sehr guter Brawler und auch technisch hat er den meisten in seiner Größen und Gewichtsklasse einiges voraus. Er war, als ich noch Mark war, schon einer meiner absoluten Favoriten, und das hat sich bis heute gehalten."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: hardy-boywrote on 15.12.2009:[10.0] "Was soll man zum Deadman schon sagen?! Er ist einfach hammer im Ring und hat das wohl legendärste Gimmick der WWE! Eine absolute Legende!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Detrituswrote on 13.12.2009:[8.0] "So cool der Taker auch früher war, so hat er seinen Zenit schon längst überschritten. Wrestlerich war er sowieso nie ein Highlight. Bei ihm macht allerdings der Kultfaktor einiges wett."
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: GabberGizmowrote on 12.12.2009:[10.0] "Für mich einer der herausragensten Wrestler überhaupt ! Einfach KULT !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Acid Dwrote on 29.11.2009:[10.0] "Ich kann einfach keine andere Note vergeben. Der Undertaker begeistert mich nun seid ich angefangen habe Wrestling zu schauen (1993) , und überrascht mich immer wieder aufs neue. Sei es durch großartige Matches, neue Moves, die er sich in seinem fortgeschrittenen Alter noch aneignet, oder einfach nur durch seine Präsenz. Für mich der Inbegriff einer Legende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Checkerwrote on 24.11.2009:[10.0] "Einfach nur genial der Sensenmann der WWE und live einfach gigantisch"
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: chaoswrote on 23.11.2009:[10.0] "Fast 2 jahrzehnte der Zerstörung und noch immer nicht am Ende. Der Deadman ist eine lebende Legende."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Prince of darknesswrote on 22.11.2009:[10.0] "Er ist seit 20 Jahren dabei und wird anstatt schlechter immer noch besser.  Er ist einfach eine Ikone."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LebendeLeichewrote on 21.11.2009:[9.0] "Eine Legende! Wenn es ihn nicht gäbe wäre die WWE nicht das was sie jetzt ist. Nur man merkt das er nicht mehr auf seiner hösten Leistung ist."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: downtown2wrote on 18.11.2009:[10.0] "Das Wrestling des Undertakers wurde mit den Jahren immer besser, das ist schon erstaunlich, da sein körperlicher Zustand naturgemäß immer schlechter wurde. Besonders gut gefielen mir die Jahre des Bikers, hier konnte er das volle Potential ausschöpfen und überzeugte auf ganzer Linie. Die endlosen Jahre des Totengräbers hingegen haben mir nie zugesagt, bin ihnen sogar mehr als überdrüssig, aber dass wird sich hier nicht negativ auf die Beurteilung auswirken. Wer es schafft, zwanzig Jahre lang immer neue Generationen von Wrestlingfans ausrasten zu lassen, der hat es definitv mehr als drauf. Volle Punktzahl fürs Lebenswerk."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Muutzwrote on 17.11.2009:[10.0] "Eine Legende, zwar ins Alter gekommen aber in letzter Zeit fängt er sich und liefert auch längere Matches ab. Wenn er geht wird er eine Lücke hinterlassen, die schwer zu schliessen ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Edi Gliederwrote on 16.11.2009:[3.0] "Wenn man nicht fit ist sollte man nicht Champion sein oder den jungen Talenten das Momentum stehlen. In seinen so schon eintönigen Promos kommen die Wörter "Darkness" oder "Soul" mindestens einmal vor. Albernes Gimmick und immer langweiligere Matches bewegen mich zu einer verdienten Abwertung für den Undertaker."
Rating: 3.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Okiawrote on 16.11.2009:[10.0] "Hammer Wrestler!  Er ist sowohl wrestlerisch als auch ausdrucksmäßig einfach nur stark, was auch begründet, warum er sich schon so lange in der WWE hält!  Bei der WWE in Deutschland hat es sich nochmal bewiesen, dass er einfach jeden Wrestlingfan umhaut... die Stimmung war großartig, als er reinkam :D"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheLoudMouthwrote on 16.11.2009:[10.0] "Einfach ein Phänomen. Wohl der beste Big Men aller Zeiten, genauso rekordverdächtig ist sein Gimmick. Das Mic-Work ist wegen seinem Gimmick leider sehr begrenzt, aber auch das gleicht sein Charisma wieder aus."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Shane82wrote on 15.11.2009:[10.0] "seit seinem Debut hat er vieles wenn nicht sogar alles erreicht, besonders in der WWE.  Er ist ein Mann von Größe. Alleine seine Erscheinung/Gimmicks sind legendär."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Zizouwrote on 08.11.2009:[8.0] "14. 08. 09 - Das Gimmick verliert mit der Zeit etwas seinen Reiz, nach wie vor ein Großer, aber die Abwechslung fehlt. -------------- 06. 11. 09 - Man sieht ihm das Alter so langsam an. Seit der Rückkehr langsamer als gewohnt und mit kurzen Matches. Hoffe er erholt sich oder bricht früh genug ab. Trotzdem immer noch 8 Punkte"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ultrakaoswrote on 06.11.2009:[7.0] "Der Undertaker ist ein Klasse Wrestler doch ist er über dem Zenit.Sein Gewicht + Größe verschafft ihm oft verletzungen.Aber auch ein - Punkt ist das er ein Reiner Gimmick Wrestler ist.Aber trotzdem ganz ok.Und was ich mir sehr erhoffe das er bei WM 26 gegen Ted DiBiase verliert und DiBiase zu einem großen push verhilft.Aber auch Jericho wäre eine alternative da Edge länger ausfällt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Last Ridewrote on 04.11.2009:[10.0] "Mein Liebling, ich gebe es zu. Einige können nichts mehr mit ihm anfangen, aber ich sehe ihn nachwievor sehr gerne (auch, wenn der Einmarsch manchmal nervt). Für seine Grösse ist er unbestritten enorm schnell im Ring (sicherlich ein wenig langsamer als früher), da kann sich mach anderer noch die ein oder andere Scheibe abschneiden, dazu liefert er immer saubere Arbeit ab. Ich bin mir sicher, wir werden noch 5-8 längere matches von ihm sehen, matches auf höchstem Niveau, wie das gegen HBK bei Wrestlemania. Er wird sich sehr würdig verabschieden und zwar in zwei, oder drei Jahren. Die Verdienste sind eh bekannt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: narmedeifwrote on 02.11.2009:[10.0] "Ich gebe Undertaker 10 Punkte weil ich meiner er ist eine der großen Autoritätspersonen bei der WWE, seine Show ist einfach die beste da bekommt man immer ghänsehaut vom zuschauen auserdem läst er seine gegner immer verzweifeln dadurch das er immer wieder aufsteht er ist einfach unschlagbar"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Whopperlewrote on 26.10.2009:[10.0] "Einfach das beste Gimmick ever, ewig in der WWE, vielleicht heute nicht mehr so gut wie früher, aber was soll man machen er is einfach mein liebling : )"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Orgasmatronwrote on 26.10.2009:[10.0] "Wieso wird ein Mann schlecht bewertet der seit Jahren das erste mal eine schlechte Phase hat? Er lieferte seit 05 immer gute bis überragende Matches ab, er verbesserte sich im Alter extrem andere werden da schlechter. Mit 20 Jahren im Geschäft hat er sich Respekt und auch Backstagemacht verdient. The Undertaker bringt keine Superstars over? Verdammt nochmal er hat Orton die Karriere gerettet er hat Mr. Kennedy zum Top Heel von Smackdown gemacht! Es gibt noch genügend weitere Beispiele. Es wird so getan als wenn er jeden Moment tot umfallen würde. Ich hab jeden seiner  Kämpfe seit seiner Rückkehr gesehen er ist zur Zeit schlecht drauf trotzdem sehen die Aktionen von ihm tausend mal runder aus als die von Batista oder HHH. Ich hoffe das nicht Edge nach seiner Rückkehr in ein Loch fällt denn dann müsste man ihn auch 0 Punkte geben. Ich gehe jede Wette ein das der Undertaker Anfang 2010 wieder Topform erreicht."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 1234wrote on 25.10.2009:[5.0] "Er war nie ein herausragender Wrestler und hat gerade zu Beginn seiner Zeit nur vom Gimmick gelebt. Nach der Phase als Biker und der damit verbundenen Rückkehr zum leicht abgeschwächten Deadman-Gimmick, hatte er seine stärksten In-Ring Jahre, die in einem tollen Match gegen HBK endeten. Auch gegen Kurt Angle, Randy Orton und Batista zeigt er spannende Kämpfe. Seit seiner Rückkehr ist er aber weit von dieser Form entfernt und man sieht in stark an, dass er gehandicapt ist. Vor einem Jahr hätte ich ihn 8 gegeben, vor 5 Jahren 6 Punkte. Im Moment bekommt er 5, weil er ganz offensichtlich denselben Fehler wie so viele macht und den Rücktrittszeitpunkt verpasst."
Rating: 5.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheUndertaker1986wrote on 24.10.2009:[10.0] "Der Mann ist einfach nur LEGENDÄR! Schon wo ich klein war hat er schon gewrestlet... WAHNSINN!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DERHASSwrote on 24.10.2009:[7.0] "Er war mein großer Fav, aber langsam aber sicher sollte er aufhören und nicht wie geplant noch 2-3 Jahre ranhängen und daher nur 7 Punkte! Falls er bei WMXXVI doch aufhört korrigiere ich das gerne wieder!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Cloverwrote on 23.10.2009:[9.0] "Der Wrestler mit der wohl längsten Entrance... da kann ich immer schön auf die Toilette gehen und noch zum Kühlschrank.. Ansonsten ist sein Gimmick durchgekaut - respektieren tu ich ihn dennoch! Besonders gefallen hat er mir als Biker, da er dort fast wie der Privatmann sein durfte. Und für seinen technischen Fortschritt applaudiere ich ihm. Nicht jeder gibt sich in diesem Alter noch die Mühe, sich weiter zu entwickeln.. Auch einer der besten Wrestler der letzten 20 Jahre und ein zukünftiger Hall Of Famer. Doch bei einem Sonnenstudio-gebräunter Deadman fühl ich mich inzwischen schon veralbert.. daher 9, 5 Punkte."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Saschwrote on 23.10.2009:[10.0] "Der Undertaker eine allseits beliebte Ikone und wahrscheinlich der bekannteste Wrestler nach Hogan, in den 90er Jahren hatte er meiner Meinung nach seinen Höhepunkt erreicht, was ich persönlich Schade finde das die WWE ihn nicht sein Gimmick des Bikers verkörpern lässt, da dieses authentischer wäre man hat meines Wissens gegen seinen Willen auf das Sennsenmann Gimmick wieder zurückgergriffen, da dieses mehr Kultstatus hatte(Werbung). Doch ich bin der Meinung der Undertaker hätte sich als Biker besser vermarktet weil er es mit Leib und Seele ist. Warum er von mir 10 Punkte kassiert hat obwohl die Leistung im Ring abgenommen hat und das Gimmick total verbraucht wurde (Storyline die Suche nach dem Taker). Weil er meiner Meinung nach Gold wert als Worker und Mensch bzw. für die WWE ist, da er die jungen Wrestler mitaufgebaut siehe Cena seinerzeit und laut Berichten einer der wenigen ist, der echt und sich selbst treu geblieben ist. Ja ich würde glaube ich sagen der Taker hätte sich ne 8 verdient aber der Mensch hinter den Kulissen welcher eine große Rolle spielt Mark William Calaway eine glatte 10!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tomkowrote on 22.10.2009:[7.0] "Er ist Kult! Auch seine In-Ring Leistungen sind stark für einen Mann seiner Statur, doch trotz allen bin ich kein großer Fan von ihm, denn er und sein Gimmick sind langsam so ausgelutscht, dass er langsam so langweilig wie HHH wird. Es wird vielleicht zeit Goodbye zu sagen..."
Rating: 7.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: THE GAME 4-EVERwrote on 12.10.2009:[0.0] "20 Jahre im Business und immer noch nicht in der Lage neue Talente over zu bringen? Damit meine ich nicht die Tatsache, dass er gute Matches mit ihnen bestreitet, sondern das sein Ego mittlerweile so groß zu sein scheint, dass er seit bald 6 ahren keine Fehden mehr verloren hat. Das Gimmick, zieht wirklich nur bei Leuten die auch glauben was sie bei Galileo Mystery sehen. Blitze aus der Hallendecke? Ahja! Natürlich ist das Entertainment aber so ein Humbug mag 1990 gezogen habe, 2009 ist das aber einfach eher zum wegschalten. Wird von Jahr zu Jahr uninterresanter und schlechter im Ring. Mag seinen Stil auf MMA umgestellt haben, wird aber dadurch nur noch langsamer und behäbig. Seit Jahren ranken sich Gerüchte um seinen Rücktritt und das Karriereende, dafür war es schon seit 2003 höchste Zeit. Dazu kommt die gnadenlose Frechheit bei Wrestlemania jedes Jahr sein Match zu gewinnen und selbst Mr. Wrestlemania zu schlagen. Sicherlich wirds nochmal ne Aufwertung geben wenn er retired, die 10 Punkte werden es bei so einem Ego und Machtinhaber Backstage sicherlich niemals werden."
Rating: 0.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fatewrote on 11.10.2009:[10.0] "Der Taker verkörpert so ziemlich alles was man mit einem Wrestling-Superstar verbindet. Und durch seine Konstanz über Jahre hinweg (und das bei teilweise unglaublich schlechten Storylines) hat er sich das Attribut Legende auf jeden Fall verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Khali92wrote on 09.10.2009:[9.0] "bekommt nur Abzüge weil die story vom unbesiegbaren Deadman langweilig wird. (siehe zuletzt Cyber Sunday)   Ansonsten: Phenom! "
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Milowrote on 06.10.2009:[10.0] "Der Mann ist eine absolute Legende!!!   Unglaublich was er für Techniken drauf hat,obwohl er über zwei Meter groß ist.    Und dazu noch über  20 Jahre im Geschäft,Respekt!!    Zehn Punkte von mir.  "
Rating: 10.0
Sentiment: 0.6103515625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BoeserLobowrote on 05.10.2009:[10.0] "Absolute Ikone der WWE. Hat jede Menge denkwürdige Matches bestritten HIC, RIP.... Legendäre Serie bei Wrestlemania. Testet neue Wrestler, bevor diese richtig in den großen Ligen bestehen können/dürfen. Einziges Manko - zu wenige Titel!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rio123wrote on 05.10.2009:[9.0] "Eine lebende Legende, aber das ist er nun schon seit einigen Jahren und man merkt, das selbst an einem Sensenmann die Zeit nicht vorbei geht und es ist langsam Zeit dem Undertaker R. I. P. mit auf den Weg zu geben, denke mal dies wird nun sein letzter Titelrun.  Den einen Punkt Abzug gibt es dafür, dass er jetzt in die Jahre gekommen ist ; )"
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheBrainwrote on 04.10.2009:[10.0] "Neben dem Hulkster der bekannteste Wrestler. Den Undertaker kennt jeder. Und nicht zu unrecht, hat er doch einen sehr wesentlichen Beitrag dafür geleistet, wo die WWE heute steht. Wieviele gibt es die so viel für diesen Sport gemacht haben? Also 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mr Dungeon of Doomwrote on 04.10.2009:[10.0] "Mitte der 90er Jahre bekam der Undertaker aufgrund seines Gimmicks den Spitznamen „Phänomen“. Diesem Spitznamen wird er inzwischen mehr als gerecht. Jemand der seit fast 20 Jahren bei der WWE in der oberen Card oder im Main Event eingesetzt wird, ohne dass er Abnutzungserscheinungen aufzeigt und nach wie vor einen riesigen Großteil der Fans in den Bann zieht, kann man nur als Phänomen bezeichnen. Und obwohl er auch oft in ziemlich dämliche Fehden gesteckt wurde, das Ansehen verlor er nie. Durch seine Fehden gegen Batista und Edge hat er sogar einen Großteil seiner Kritiker ruhig gestimmt, die meinen er lebe nur von seinem Gimmick (welches übrigens vielleicht wirklich das beste aller Zeiten ist). Außerdem hat er sich sogar im Ring in den letzten Jahren noch verbessert und gehört somit zu den besten Big Men. Hätte er zusätzlich in anderen Ligen Erfolge gefeiert, wäre er wohl im Kreis der größten Legenden und würde im gleichen Atemzug genannt werden wie Ric Flair, Hulk Hogan und Steve Austin."
Rating: 10.0
Sentiment: 0.12222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MattBornewrote on 02.10.2009:[10.0] "Habe die letzten Tage einige alte Matches von ihm gesehn und habe mich ein wenig erschrocken, da ich nicht so bewußt mitbekommen hatte, das er nun wirklich viel langsamer ist. Sicher das Alter und Verletzungen zerren an einem Wrestler. Für mich aber trotz dieser angesprochenen Schwächen immer noch voll überzeugend und wirklich der Einzige der dies schon seit 1991, seitdem ich Fan bin kann. Allerdings fand ich dieses Motorradrockergimmick absolut unnötig, wieso ein Gimmick was immer funktioniert hat ändern?  Trotzdem volle Punktzahl!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Edgecutionerwrote on 01.10.2009:[10.0] "Deadman rules! Sit down, shut up - and rest in peace..."
Rating: 10.0
Sentiment: -0.15555555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker 4 everwrote on 24.09.2009:[10.0] "Genialer Wrestler, der seinen Platz in der Geschichte sicher hat"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rey2004wrote on 23.09.2009:[10.0] "Über Jahrzehnte hinweg Superstar! Der Undertaker ist seit Beginn eine Respektperson und ein Superstar der Kategorie 10 Punkte - unerreicht für alle anderen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DHS aka Iceman Unleashedwrote on 17.09.2009:[9.0] "Von der Beweglichkeit und vom Charakteristischen, nichtmehr der Undertaker aus den 90ern und 2000er.  Das er wieder als Lord of Darkness auftritt gefällt mir sehr gut. Aber es ist nur Äußerlich der Undertaker braucht wieder etwas wie ein Stable um sich herum oder eine kleine Gimmik veränderung. Meiner Meinung nach denn nun seit 5 Jahren macht er nur das gleiche.  Aber trotzdem ist er der Undertaker und deswegen geb ich ihm 9 von 10 Punkten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Basket Casewrote on 15.09.2009:[10.0] "Mein zweiter Lieblingswrestler neben The Rock. Er ist einfach der Undertaker. Was man ihm vor allem groß anrechnen muss, ist, dass er sich ständig weiterentwickelt und richtig gute Leistungen im Ring in den letzten Jahren gezeigt hat. Ich hoffe er bleibt noch einige Zeit in der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WWE Chairmanwrote on 13.09.2009:[10.0] "Der beste denn die WWE je hatte in allen bellangen  "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gialikesashleyverymuchwrote on 10.09.2009:[3.0] "Sein Gimmick ist nach gut 20 Jahren vollkommen ausgelutscht, seine Wrestlemania Dominanz hat die letzten Matches nicht unbedingt spannend im Hinblick des Ausgangs gestaltet (wobei das Match gegen Michaels zweifellos toll war), aber es ist definitiv an der Zeit, den Schuh an den Nagel zu hängen."
Rating: 3.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: chavo51wrote on 09.09.2009:[10.0] "Persöhnlich hat mir The Undertaker als Biker besser gefallen.Leider wird die Gimmick immer langweiliger,aber Live ist er dennoch super.  The Undertaker ist einfach Kult.Also von mir ganz klar 10 Punkte."
Rating: 10.0
Sentiment: 0.23484848484848483
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Neuhofwrote on 06.09.2009:[6.0] "Kann in der richtigen Fehde mit den richtigen Gegnern (in jüngster Zeit Edge, Big Show und HBK) immer noch sehr starke Matches zeigen. Allerdings fiel er mir nur gegen Show durch seine eigene Klasse auf, ansonsten bin ich der Meinung, dass seine Gegner ihn immer ein gutes Stück mitziehen müssen, da er einfach nicht der Wrestler ist, für den er gerne gemacht wird. Allerdings macht er seine Matches durch MMA-Aspekte doch noch teilweise recht interessant. Das Gimmick hat sich aber total abgenutzt, und Promo-Fähigkeiten sind de facto nicht vorhanden, was ich ihm trotz dem, dass er es für sein Gimmick nicht braucht, anrechne. Insgesamt befriedigend, wird aber mal Zeit für den Rücktritt... Spärliche Auftritte bis zum 20:0?"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Italian Straight Edgewrote on 06.09.2009:[10.0] "Meiner Meinung nach der beste WWE-Wrestler aller Zeiten. Er ist charismatisch, wrestlerisch/technisch sehr gut, für seine Größe/Gewicht sehr schnell und liefert mit 44 Jahren immernoch herausragende Matches (siehe z. B. Taker vs. Michaels @ WM XXV). Hulk Hogan hingegen hatte zwar reichlich Charisma, doch wrestlerisch war er nicht so gut. Mal sehen, wie sich die Taker vs. Punk-Fehde in den nächsten Wochen entwickeln wird. However, das ''Phenom'' ist ein sicherer Kandidat für die WWE Hall Of Fame."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Scotty Westwrote on 05.09.2009:[10.0] "Persönlich finde ich ihn Klasse. Immer unterhaltsam in seinen Promos und immer wenn das Licht ausgeht, muss man einfach gespannt hinschauen was als nächstes kommt. Leichte Mängel sind seine Matches gegenschwerere Wrestler wie Big Show z. B. , weil nämlich diese Matches oft zu viel Brawling beinhalten. Aber man muss sagen, dass er trotz seines fortgeschrittenen Alters und immer noch recht interessante Matches und Promos liefert.  Shawn Micheals vs. Undertaker bei Wrestlemania ... ein Traum von einem Match! Und in Kombination mit Edge ist er auch nie langweilig geworden. Taker ist einfach Klasse, nur finde ich, dass seine Wrestlemania-Serie nicht an seinem Karriereende gebrochen werden sollte, sondern dass er jedes Wrestlemania quasi wie eine Tradition zurückkommt und die Serie dann auch auf's Spiel setzt.  Die Serie sollte von jemanden gebrochen werden, der wirklich dann auch einen richtigen Push richtung Aushängeschild bekommt. Dieses Wrestlemania wird meiner Meinung nach noch keiner der jüngeren Stars, so gut sein, um so einen großen Push glaubwürdig erscheinen zu lassen. Sonst finde ich, dass Jeff Hardy die Serie durchbrechen sollte, weil seine Matches immer Klasse sind und mit Taker als Gegner bestimmt megaklasse. TLC oder Hell In A Cell wären wirklich ein schöner Abschluss einer so großartigen Karriere. Er hat meinen Respekt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: billygunnwrote on 02.09.2009:[9.0] "Er ist sehr unterhaltsam, seine Matches sind immer spannend und hochklassig!  Nur leider ist er schon alt und macht nicht mehr den fittesten Eindruck daher 9 Punkte"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Huzerwrote on 01.09.2009:[10.0] "Eine Legende... mehr ist nichts zu sagen.... Es wird nie wieder so einen Gott geben!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Paulinawrote on 30.08.2009:[10.0] "Auch wenn sein Gimmick heute ausgelutscht ist, er ziemlich oft verletzt ist und seine Matches heute nicht mehr das gleiche sind muss ich den Undertaker einfach 10 Punkte geben, Er ist der WWE immer treu geblieben und ist einfach eine Legende, in seinen Biker Gimmick fande ich ihn am Mikro auch garnicht so schlecht"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: NewGuywrote on 29.08.2009:[6.0] "Natürlich ist er eine Legende, natürlich hat er ne Menge geleistet, ne Menge Erinnerungen verdanken wir ihm, und natürlich bringt er offensichtlich immer noch 5 Sterne Matches (siehe WrestleMania 25) ABER sehen wir den Tatsachen mal ins Auge: Ständig verletzt, wenn er mal zurückkommt auch nur für ein paar Monate, dann ist er wieder verletzt, er mag zwar immer noch psychisch voll dabei sein aber physisch sollte er einfach aufhören. Seine Zeit ist vorbei, ich sage: bitte eine endsgeile Abschlussfehde und dann aus die Maus! Klingt hart aber wäre euch ein Undertaker im Rollstuhl lieber?"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Turboladerwrote on 26.08.2009:[10.0] "Für mich der beste Wrestler aller Zeiten. Technisch hat er es einfach drauf und er weiß zu begeistern, da er für seine Größe teilweise auch ziemlich spektakuläre Moves zeigt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 3durch16wrote on 25.08.2009:[9.0] "nicht mehr die Klasse vergangener Tage + viele ( kleine) Verletzungen"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Adlonwrote on 16.08.2009:[10.0] "Dieser Mann ist mein absoluter Lieblingswrestler, er war der Grund, warum ich beim Wrestling geblieben bin, nachdem ich mir meine erste Wrestling-Folge ansah und seinen Auftritt mitbekam.  Eine Legende, sein Mic-Work ist nicht das Beste was die WWE zu bieten hat, aber mehr als ausreichend für sein Gimmick, seine Promos gehören für mich trotzdem zu den besten, auch wegen der Atmosphäre und dem Charsima, das er einfach ausstrahlt.    Keiner hat sich die 10 Punkte so verdient, wie der Undertaker!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: OutsiderX1983wrote on 16.08.2009:[10.0] "Ist eine Legende! Seine Matches sind meisten toll und mit denn richtigen Gegern kann er alle andern in denn Schatten stellen.   Seine Serie bei WM ist einzigartig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sting93wrote on 13.08.2009:[10.0] "Der Undertaker ist der lebende Beweis dafür, das man mit einem Kultgimmick auch nach fast 20 Jahren bei den Fans ankommt."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AirRiedlewrote on 09.08.2009:[10.0] ""The Phenom" mehr kann man zu ihm einfach nicht mehr sagen..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jerseyhoolwrote on 05.08.2009:[10.0] "Der Undertaker - das mit Abstand beste bzw erfolgreichste Gimmick, das im Titanenland je aus dem Hut gezaubert wurde. Teil eines der bekanntesten Wrestlingmatches aller Zeiten (King of the Ring 1998) & darüber hinaus einer der ganz wenigen Worker, die sogar Menschen ein Begriff sind, die sich mit diesem Sport normalerweise nicht beschäftigen. Was ich am Taker vermisse, sind seine Promos zu "American Bad Ass" Zeiten - hier durfte unser aller Lieblingstotengräber zeigen, dass seine markante Stimme das Mic-Work zu vergolden mochte! Nichts desto trotz einer der grössten Stars aller Zeiten, ein Eckpfeiler von WWE & einer der am meisten respektiertesten & professionellsten Wrestler in der Historie.  Mir graut vor dem Tag, an dem der Taker seinen Hut & die Wrestlingstiefel an den Nagel hängen wird (was leider, leider nicht mehr allzulange dauern wird)! Bis dahin jedoch freue ich mich über jedes Match, das ich von ihm sehen darf! Thank you for the memories, Mr. Calaway!"
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: risktakerwrote on 02.08.2009:[10.0] "Einfach ein genialer Wrestler, seine P  romos sind ganz nett wirken aber auch deswegen so gut weil sie selten sind. "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 108 Sternewrote on 27.07.2009:[10.0] "Der Undertaker war nie der allerwichtigste Main Eventer; aber er die großeKonstante der WWE. Der Taker war immer da und hatte nie Durchhänger; und er hat IMMER das Publikum gezogen wie kaum ein anderer. Das über so viele Jahre praktisch ununterbrochen; genial.    In gewisser Weise ister DIE Symbolfigur der Promotion."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Grandmaster Sexaywrote on 08.07.2009:[10.0] "Also ich bin immer begeistert von seiner Entrance und seinen Fähigkeiten im Ring. Aber wenn man ihn mal Live gesehen hat, dann haut er einen vomHocker! Und ich hab ihn bei der WrestleMania Revenge Tour zusammen mit Triple H gegen die komplette Legacy gesehen... Aber das gehört ihr nicht hin. Abgesehen von John Cena hat niemand in der WWE heute mehr Charisma als der Undertaker. Seine Matches sind immer schön anzusehen!"
Rating: 10.0
Sentiment: 0.2130681818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BaptisteZorGwrote on 03.07.2009:[9.0] "Früher wärs ne glatte 10 gewesen..  Aber ich kann Ihm heute nicht mehr soviel abgewinnen, vor allem was das InRing Geschehen anbelangt.  Er sollte aufhören solange er noch gute Leistungen abrufen kann,  bzw. hoffe ich persönlich das aus Ihm keiner vom Typ "Hulk Hogan" oder "Ric Flair" wird der nicht weiß wann schluss ist."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rulebreakerwrote on 30.06.2009:[10.0] "This guy is simply awesome! Eine weitere solche Legende wird es meiner Meinung nach niemehr geben, der Taker steht für mich vor Shawn Michaels, Rocky, Steamboat, Flair etc. Er ist einfach in diesem Business die Nummer 1. Auch Backstage unterstützt er die jungen Talente und hilft allen um eine gute Karriere hinzulegen. Das Match bei Wrestlemania 25 war seit langem das beste was ich in der WWE gesehen habe. Er soll sich nun noch vollstädnig erholen und dann liegen auf jeden Fall noch 1-2 Jahre drin!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Shikawrote on 28.06.2009:[3.0] "Hm, ich weiß nicht wieso aber ich mag ihn überhaupt nicht. Diese düstere Stimmung die ihn angeblich so ausmacht finde ich irgendwie ein wenig lächerlich. Wrestlerisch ist er IMO auch nicht gerade gut. Mag sein das ich von seinem wrestlerischen Stil nicht viel verstehe aber naja..."
Rating: 3.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: pildaYwrote on 24.06.2009:[10.0] "Bei WM 25 hat man gesehen, dass er es noch kann. Er wird irgendwann aufhören und eine riesige Lücke hinterlassen. Wie man hier nur 0 Punkte geben kann ... -. -"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Marcomh4wrote on 21.06.2009:"Ich finde das der Undertaker einer der besten in der WWE ist und das seine Legendären Auftritte wie bei Wrestle Mania wo er ja ungeschlagen ist immerhin 17:0 das ist sehr beachtlich man bedenke auch mal was er schon für Matches bestritten hat eigentlich so ziemlich alle die es gibt und das ist beeindruckend "
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Perry Coxwrote on 14.06.2009:[10.0] "Der Undertaker ist nun in einem Alter angelangt, in dem er keinem mehr beweisen muss, dass er es noch kann. Er war lange genug aktiv um Stolz zurückblicken und zu sagen: Man, was hatte ich für eine Karriere. Er hat alles erreicht, was man erreichen kann: Von einem Sieg im Royal Rumble über diverse World Title Runs und unvergesslichen Matches (man denke nur an WM25) und tollen Fehden. Seit Jahren als Deadman unterwegs wird diese Rolle nie langweilig, weil man ihn einfach lieben muss. Er tut einfach alles, um seine Fans und Zweifler zu beeindrucken. Wenn er jetzt zurücktreten würde, würde es ihm keiner übelnehmen. In Zeiten von steigenden und kochenden Gerüchten über sein Karriereende muss das hier einfach mal gesagt werden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Pepsi Punkwrote on 06.06.2009:[10.0] "Er ist der einzige in der WWE(mit Kane)der noch ein richtiges ernst zunehmendes Gimmick hat. Er ist nicht nur einfach ein Powerhouse,er zeigt auch Moves die man bei ihm nicht erwartet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: polilopwrote on 23.05.2009:[2.0] "Eine Legende!  Aber meiner Meinung nach hätte er schon lange in den Ruhestand gehen sollen...  Heutzutage ist er nur noch ein alter Mann, der schon lange kein wirklich guter Wrester ist."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Afroman Undertaker 619wrote on 21.05.2009:[10.0] "Ganz klar 10 Punkte für den Undertaker. Rest in Peace                                                                "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Undertaker1860wrote on 18.05.2009:[10.0] "Ich finde seine Technik gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blackbirdwrote on 19.04.2009:[10.0] "Der definitiv beste Wrestler der WWE. Zeigt die mit Abstand anspruchsvollsten Moves und führt sie dennoch perfekt aus. Außerdem ist es wirklich beeindruckend, wie er es schafft, die Fans trotz seines Gimmicks auf seine Seite zu ziehen - ist also sowohl ein guter Heel als auch Face. Micwork ist auch richtig gut - wenn ich jetzt schon seit 10 Jahren WWE verfolgen würde, kämen mir seine Promos vielleicht etwas eintönig vor, so kann ich nur sagen, dass er sie glaubwürdig rüberbringt. Einziger Nachteil: er wird wohl nicht mehr allzu lange dabei sein.  10 Punkte, gibt keinen Wrestler, der mich so sehr überzeugt wie der Taker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: bbierwrote on 19.04.2009:[10.0] "The best who is, the best who was, the best who ever will be."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CM Punk Mitbwinnerwrote on 15.04.2009:[10.0] "Wenn man 17 mal bei der größten veranstaltung der größten Liga gewinnen darf, sagt das alles über den status eines Workers aus"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: harrywrote on 14.04.2009:[10.0] "Für mich zusammen mit Steve Austin & Shawn Michaels der beste Wrestler aller Zeiten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: andrekoenigwrote on 08.04.2009:[10.0] "Seit ich den Undertaker das erste Mal gesehen habe war ich von ihm fasziniert. Und als ich mir sein DVD Set besorgte wurde ich entgültig richtiger Undertaker Fan. The Undertaker war von Anfang an eine imposante Gestalt in der WWE (WWF). Ausserdem hat der Deadman für einige der denkwürdigsten Momente der WWE gesorgt. Er hat auch einige der brutalsten Matches überhaupt bestritten, z. B. mit Mankind, Brock Lesnar, Batista und Edge. Er hat zwar viele denkwürdige Sachen geliefert, aber ich denke das sich jeder Fan am besten an das Hell in a Cell Match beim King of the Ring '98 erinnert, bei dem er mit Mankind wohl eines der denkwürdigsten Matches überhaupt ablieferte. Seine Fehden mit z. B. Stone Cold Steve Austin, Mankind und Shawn Michaels sind geradezu legendär. Das Phenomen konnte auch immer am Mikrofon überzeugen und mit jeden mithalten. Der Undertaker ist wirklich eine wahre Legende und ist einer der wenigen Superstars an die sich die Fans ewig erinnern werden."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DeadHeadwrote on 07.04.2009:[10.0] "Niemand, und ich meine wirklich NIEMAND kann nach diesem Klasse Match gegen Michaels noch sagen das der Undertaker schlecht ist. Und dank seines genialen Gimmicks sowieso legendär."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: loscopposwrote on 06.02.2009:[10.0] "Was soll man da noch schreiben. Einfach genial der Typ."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jeffrey nero hardywrote on 06.02.2009:[10.0] "Er hat alles gezeigt und geholt was man zeigen und holen kann. 16 Titelregentschaften ist erwähnenswert. "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The-Game91wrote on 01.02.2009:[10.0] "Seit Jahrzehnten begeistert mich der Undertaker. Er hat einfach das beste Gimmick und es wird nie langweilig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rattlesnakewrote on 31.01.2009:[10.0] "Wenn man genau hinsieht, ist der Mann in seinen Fähigkeiten arg limitiert. Bis zum Taker-Gimmick konnte er das auch nicht verbergen. Dann aber zog er den Hauptgewinn. Das Takergimmick war das Beste, was ihm passieren konnte - und damals passte es perfekt in die Zeit. Ich halte es für eines der besten Gimmicks, das bisher kreiert wurde. Zugegeben, heutzutage wäre es nicht sehr zeitgemäß, aber inzwischen ist er eine Legende. 10 Punkte trotz seiner Fähigkeiten, da er sein Gimmick bestmöglich ausgereitzt hat und mich immer wieder mitfiebern ließ. Eine Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RatedRKO84wrote on 31.01.2009:[10.0] "Er ist eine Legende das steht für mich fest, er kann immer noch gute Matches heraushauen, aber sein Gimmick wird langsam etwas langweilig, außerdem findet sich bei SmackDown! derzeit keiner gegen den er eine Fehde haben könnte. Einziger Kandidat: Umaga, doch diese Fehde würde mich nicht gerade fröhlich stimmen, mich würde es vor seinem Karriereende freuen eine Fehde zwischen ihm und Shawn Michaels zu sehen.    Dennoch aufgrund seiner unglaublichen Leistungen 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: vida-locawrote on 25.01.2009:[10.0] "Wurde mit dem alter immer besser, wird als eine der Größten, wenn nicht sogar die größte Wrestling Legende aller Zeiten in die Hall of Fame und wrestling geschichte an sich eingehen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Desperadowrote on 25.01.2009:[9.0] "Gehört zwar nicht zu meinen Favs, ist aber natürlich ein sehr guter Wrestler, der nicht nur Powerhouse- sondern auch Matwrestling beherrscht. Dazu kommt mal soeben noch das beste Gimmick aller Zeiten. Dieser Mann ist eine lebende Legende, hat sich über Jahrzente in toller Form gehalten und mehrere Generationen von Fans unterhalten. Außerdem ist er einfach ein Repräsentant fürs Wrestling: Jeder kennt ihn, 95% lieben und jeder respektiert ihn."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: razyor90wrote on 17.01.2009:[10.0] "Er ist einfach mein Lieblingswrestler. Ich kannte seinen Namen schon bevor ich angefangen habe Wrestling zu schauen den er ist wohl das bekannteste Mitglied der WWE/WWF. Sein Gimmick ist genial.Auch seine Fähigkeiten im Ring baut er immer weiter aus. Das macht ihn für mich zu einem der besten Wrestler aller Zeiten .Deshalb 10 Punkte. "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Peiski Bombwrote on 13.01.2009:[10.0] "Der Taker ist eine lebende Legende! Mehr kann man dazu nicht sagen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Movadowrote on 11.01.2009:"Ich mag den Taker. Aber wie soll für dieses Überfantasy-Gimmick jemals ein ernst zu nehmendes Ende geschrieben werden?"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CM Dannywrote on 10.01.2009:[10.0] "Beim Taker laufen die Uhren anders. Er wird im Alter nicht schlechter, sondern besser. Er wird nicht langsamer, sondern im Ring immer schneller und das bei der Größe und mit seinen angeschlagenen Knochen. In all seinen Jahren hat man nie etwas von großen Skandalen oder Problemen backstage gehört. Dieser Mann verdient Respekt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: michiswrote on 06.01.2009:[10.0] "Ach ja der Deadman. Eine lebende Legende, die leider alzu oft in schlechte Storylines gesteckt wurde. Trotzdem immer noch oben dabei, und der Undertaker bietet immer noch gute Matches. Deshalb, und weil er eine absolute Legende ist und weil er sich schon so viel angetan hat für die WWE, muss ich im einfach die Höchstnote geben."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Azarothwrote on 05.01.2009:[10.0] "Der Undertaker lebt größtenteils von seinem Gimmick...  Und wenn man die ausflippenden Fans in den Hallen beim Erklingen der Glocke sieht und hört, kann man daran nichts auszusetzen haben.  Sicherlich, der Taker zeigt im Ring keine High-Flying Aktionen wie ReyRey und er flitzt auch nicht in die Ecken wie z. B. CM Punk.  Aber man muss bedenken, dass Mark Calaway (wahrscheinlich) fast 50 Jahre alt ist. Und wenn ich da noch seine Verletzungsgeschichten und seine Körpergröße mit berücksichtige, so kann ich vor der Agilität dieses Bigmans nur meinen Hut ziehen. Zudem arbeitet der Taker immer noch an seiner Ringarbeit, bringt neue Moves ein (Gogoplata) und verändert seinen Stil seiner Verfassung entsprechend, was man von anderen Top-Stars der Company leider nicht behaupten kann.  Mein Lieblingswrestler bleibt der Taker jedenfalls, und bekommt (natürlich) 10 Punkte von mir."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blazewrote on 03.01.2009:[9.0] "Absolute Legende der WWE. Hat sich innerhalb kürzester Zeit etablieren können und ist jetzt schon jahrelnag dabei. Sein Gimmick wird es zwar heutzutage nie mehr geben, ist aber dennoch schon Kult. Sei neuer, etwas MMA angehauchter, Stil gefällt mir richtig gut und hilft dabei einige Schwächen zu verstecken. So ist er abwechslungsreicher ohne besonders viel laufen zu müssen. Im Ring ist er immer noch top, wobei man ihm seine Knieprobleme nicht wirklich anmerkt. Wenn ein Undertaker über die Seile nach draußen springt, ist erstmal Staunen angesagt. Ein Taker überzeugt in Angles und Promos auch immer, was für sein Gimmick eh der wichtigste Teil ist. Letztendlich hatte Taker aber auch schon das ein oder andere schwache Jahre was In Ring Leistungen angeht, daher nur eine 9."
Rating: 9.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sallywrote on 31.12.2008:[10.0] "Er ist für mich einfach der Beste im Wrestlinggeschäft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Joeevil123wrote on 29.12.2008:[2.0] "Gähn.  Ich fand ihn noch nie (nichtmal als Mark) wirklich toll , inzwischen langweielt er mich aber nur noch.  Den Entrance spule ich immer vor und das ganze Gimmick zerstört das Wrestling.  Sollte in Rente gehen , obwohl mit nem richtigen Gegner kann er ja noch das ein oder andere gute Match auf die Beine stellen."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jakeswrote on 21.12.2008:[10.0] "Super Wrestler immernoch top."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ScrWwe94wrote on 17.12.2008:[10.0] "Zu ihn muss man nicht viel sagen außer 16-0 bei Wrestlemania sagt eh schon alles."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SirJohnsonwrote on 11.12.2008:[10.0] "Eine lebende Legende! An den Taker werden sich Wrestlingfans in 100 Jahren noch mit Freuden erinnern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DXstarF5wrote on 05.12.2008:[10.0] "Der Undertaker ist eine Sache für sich. Kaum ein Wrestler kann mit einem blich so viel Emotionen bei den Fans auslösen. Kaum einer ist so erfolgreich im Ring. und Kaum einer kann/konnte mit ein und dem gleichem gimmick so lange erfolgreich sein das alles spricht wohl 100% für den undertaker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Eaterwrote on 03.12.2008:[10.0] "Ein absolutes Gesamtpaket, daher auch für WWE so wertvoll. Erfahrung und Respekt sind nur 2 Worte, die ihn beschreiben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Eddiewrote on 28.11.2008:[9.0] "Was bleibt einem anders übrig als die Note 1? Naja, eins gibts schon, und zwar seine langweilige Phase 93/94 (falls ich mich richtig erinnere). Hier glich einfach ein Match dem anderen.. Die mittlerweile immer fortlaufende verbesserung ist zwar schön, aber für 10 reicht es in meinen Augen irgendwie nicht.. 9 Punkte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Ayatollah of RocknRollahwrote on 24.11.2008:[10.0] "Das beste Gimmick gepaart mit einem Wrestler, der in seinem hohen Alter besser statt schlechter wird. Der beste Big-Man der Welt, auch wenn er seinen Verletzungen Tribut zollen muss, schafft es mit seinem Stil und seinen Skills immer wieder Monstermatches auf die Beine zu stellen. Er ist einfach das Phenom aus DeadValley und der bekannteste Wrestler neben Hulk Hogan außerhalb der USA. Schade, dass es in den nächsten 2-3 Jahren vll vorbei ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: domi1984wrote on 19.11.2008:[10.0] "Er ist ein Phenom und neben HBK der beste WWE Superstar. Sei Gimmick ist kult. Ach wieso rede ich !?! 10 Punkte für einen der besten Superstars ever P.S 1000 Wertung für den Deadman xD"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: hostrodwrote on 11.11.2008:[8.0] "Eine (lebende?) Legende, die das Sports Entertainment geprägt hat. Auch in diesem Alter noch kraftvoll und beeindruckend, allerdings habe ich das Gimmick mittlerweile satt (Seine Augen bleiben irgendwann mal noch so verdreht!!!) und kenne sein Move-Repertoire so ziemlich auswendig. Nichts mehr, was mich noch vom Hocker reißen würde, deshalb zwei Punkte Abzug."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Noobiewrote on 08.11.2008:[5.0] "Sorry, aber ich kann ihm einfach nichts abgewinnen. Seine Matches langweilen mich, sein ganzer Charakter ist überholt. Nicht mein Fall. Fehde gegen Edge war in Ordnung, was aber zum größten Teil an Edge lag."
Rating: 5.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Charismatic Enigma4000wrote on 07.11.2008:[10.0] "Einer der Männer, die wrestlerisch, mictechnisch und vom Gimmickplay her zu 100% überzeugen. Für mich einer der beste Wrestler aller zeiten!!!"
Rating: 10.0
Sentiment: 0.9765625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Demon of Death Valleywrote on 31.10.2008:[10.0] "Der Undertaker ist einfach der beste, das Match beim Cyber Sunday hat gezeigt, dass es mehr als 2 Chokeslams braucht, um einen Undertaker zu besiegen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Bekiffskiwrote on 26.10.2008:[10.0] "Hat ein sehr gutes Gesamtpaket... BTW Kleine Notiz an die CM-Mitarbeiter: Der Taker ist angeblich 1962 geboren"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KingBukrawrote on 23.10.2008:[10.0] "Der Undertaker hat ein gewisses Charisma, das mich immer wieder zum bewundern bringt.Meiner meinung nach ist undertaker der beste worker überhaupt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Animal360wrote on 22.10.2008:[10.0] "Eine lebende Legende. Der Deadman ist in der WWE unantastbar und wird mit Sicherheit nach seiner Karriere auf jedenfall in die Hall of Fame eingeführt. Ob nun gegen den Hulkster, Mankind, Randy Orton oder jüngst Edge der Taker überzeugte zumeist. Deswegen 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Amazing Bluewrote on 19.10.2008:[10.0] "Über den "Deadman" muss man ja wirklich nicht mehr viel sagen, der Mann ist eine Legende und konnte sich in den letzten Jahren auch stetig verbessern. Die Fans gehen immer noch mit wie am ersten Tag, auch wenn sein "übersinnliches" Gimmick heutzutage nicht mehr ganz so beeindruckend wirkt, wie Anfang der Neunziger. SmackDown, oder viel mehr die ganze WWE wäre nicht, was sie ist ohne diesen Mann. Ich verneige mich vor dem "Demon of Death Valley"."
Rating: 10.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CMTaker93wrote on 13.10.2008:[10.0] "Einfach ein "phenom". wenn er zum Ring kommt laufen einem Schauer über den Rücken. einfach der beste Wrestler den die WWE derzeit hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gorthaurwrote on 13.10.2008:[10.0] "Muss ich mehr schreiben als: The Phenom! The Deadman! The american Badass! The Lord of Darkness! The Puerity of Evil! The Prince of Darkness! Big Evil! Schlichtweg THE LEGENDARY!"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Alorionwrote on 08.10.2008:[10.0] "Der beste Wrestler den es gibt, unglaubliche Ringmoves, super Gimmick und geile Fehden"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Baldrickwrote on 07.10.2008:[10.0] "Ringintelligenz, ein Gimmick, dass auch nach fast 20 Jahren noch bestens funktioniert und dazu eine unglaubliche Aura gepaart mit starken Skills ergeben den wahrscheinlich beeindruckensten WWE-Worker, der momentan aktiv ist."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Scotty 2 Hottywrote on 05.10.2008:[10.0] "Die WWE ohne den Undertaker kann man sich eigentlich kaum vorstellen. Und ich denke allein dies, rechtfertigt 10 Punkte für den Deadman. In 18 Jahren lieferte er denkwürdige Fehden sowie Matches ab und war immer einer der Top Superstars der Promotion. Während er am Anfang im Ring eher schwach war (allerdings auch aufgrund des Gimmick) steigerte er sich über die Jahre hinweg zu einem der besten Big Men die jemals in einen WWE Ring gestiegen sind. Dies haben allein die tollen Matchserien gegen Batista und Edge bewiesen."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MrWrestlingwrote on 03.10.2008:[10.0] "Einfach eine Legende. Ich hoffe nur seine Knieprobleme momentan erweisen sich nicht als zu schlimm."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RBoss90wrote on 01.10.2008:[7.0] "Lieferte zusammen mit Edge die beste Fehde des Jahres, aber überzeugt mich auch nur in Matches mit gleichwertig starken Wrestlern. Er ist stark für sein Alter, aber kann nicht alleine Matches tragen. Deshalb von mir die 7 Punkte."
Rating: 7.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TG Styleswrote on 01.10.2008:[8.0] "Überzeugte zuletzt sehr."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheMoneyMakerwrote on 29.09.2008:[10.0] "Er zieht einen immer wieder in seinen Bann.Egal wie oft er die Augen noch verdrehen wird,es wird nie langweilig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SirFlubbi42wrote on 29.09.2008:[10.0] "Ich kann gar nicht sagen wie sehr mir der Deadman gefällt. Ich habe eine Gilde in WoW nach ihm benannt^^ Na ja, er schafft es einfach ein und dassselbe Gimmick über lange Zeit immer wieder an den Mann zu bringen. Ich finde es nur gerecht das ein Mann für seine Loyalität und Hingabe, und das über Jahre hinweg, belohnt wird. Nicht nur mit meiner bescheidenen Wertung sondern auch mit "Macht" im Geschäft."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Foxywrote on 28.09.2008:[7.0] "Overrated... wenn er vor ein Paar Jahren auf gehört hätte würde ich dies nicht schreiben"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Miteamexicowrote on 23.09.2008:[10.0] "Was soll man schon zu ihm sagen, einfach der beste aller Zeiten. Ich hoffe wir sehen ihn noch eine weile."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Theron083wrote on 20.09.2008:[10.0] "Einer der größten Wrestler aller Zeiten und eine lebende Legende. Eigentlich müsste man 11 Punkte geben, geht aber nicht.:D"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: wwegirlwrote on 16.09.2008:[10.0] "Der Undertaker.. eine Legende für sich. Nicht jeder mag ihn, schon alleine weil er seit jahren immer mit seiner Deathvalley nummer kommt..  Für mich ist er was besonderes und ich bekomme jetzt noch manchmal gänsehaut wenn er seinen entrance hat. Als ich 2005 das erste mal wrestling geschaut habe, war es ein Match mit dem Taker.. Ganz ehrlich- ich hatte angst und hab umgeschalten aber irgendwie wurde es zur sucht. Jetzt kenne ich das wrestling buissness ein bisschen besser und kann mit recht behaupten dass für jeden nicht wrestlingfan , der undertaker der einstieg in dieses Kampfleben ist.  Jetzt langweilt er ein wenig durch seine storyline mit vickie guerrero..   Aber aus frühreren Matches (wcw, wwf) kann man nur sagen dass er ein sehr gutes talent besitzt, die zuschauermenge mit sich zu reissen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: felixwrote on 12.09.2008:[10.0] "Er ist zweifelsohne einer der einflussreichsten Wrestler aller Zeiten, der auch heute noch tolle Leistungen zeigt. Er steht nicht umsonst seit über 15 Jahren an der Spitze."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Diablowrote on 08.09.2008:[10.0] "ist der Bester Deadman denn ich kenne  nur schade das er in der letzten Zeit so viele Pausen hatte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rocky-Takerwrote on 08.09.2008:[10.0] "The undertaker ich bin der meinung das der Undertaker es verdient hat als der beste beschrieben zu werden den er hat über die Jahre nicht nur konstante leistung gebracht sondern hat sich immer gesteigert.Mit der grösse eine wahnsins ringaustrahlung einfach nur geil toller kerl Einfach die tollste wrestling Karriere aller Zeiten sorry Ric "
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Julezwrote on 07.09.2008:[10.0] "Einer der besten und beliebtesten Wrestler der je einen Ring betreten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SeEn2005wrote on 29.08.2008:[10.0] "Ich glaube die Geschichte des Undertakers wird sich noch einmal wiederholen, so großartig, wie sie war. Ich gucke jetzt seit fast 2 Jahren Wrestling und durch den Undertaker bin ich auf dieses wunderschöne Entertainment gestoßen. Auch wenn ich jetzt vielleicht übertreibe, aber der Undertaker ist der Beste Wrestler, den es je gegeben hat und das ist mein voller Ernst.   Wenn ich am 16. November nach Dortmund gehe und den Undertaker sehen werde, werde ich schreien und brüllen wie noch nie!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: big showwrote on 29.08.2008:[10.0] "Der Undertaker ist der beste Wrestler aller Zeiten das was er geleistet hat schafft sonst keiner "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The-Phenomwrote on 29.08.2008:[10.0] "Trotz seines doch eher schon ansehnlichen alters schafft der Taker es immmer wieder sich und seinen Gegner zu hervoragenden, ja sogar, großartigen Matches heranzuziehen und auch die Fehden sind immer Spitze.    Was an ihm auch noch so Faszinierend ist, ist das er Generationsübergreifend die Fans für sich begeistern kann"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sturmesebwrote on 24.08.2008:[10.0] "Das absolute Highlight der WWF/WWE Geschichte und überhaupt im Wrestling. "
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Vandeacwrote on 23.08.2008:[10.0] "Einer der Besten Charaktere die es gibt, immer wieder Gänsehaut wenn er auftritt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: nicojansonwrote on 18.08.2008:[10.0] "Einfach einzigartig dieser Mann. Völlig zurecht als Phänomen bezeichnet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: nacho83wrote on 14.08.2008:[4.0] "Sein Gimmick hat sich schon vor vielen Jahren totgelaufen und unterdessen fällt es schwer ein Match von einem anderen zu unterscheiden, da er einfach nur noch langweilig ist und keinerlei Innovationen im Ring zeigt."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CatCooperwrote on 14.08.2008:[10.0] "Man kann ihn ohne rot zu werden in einem Atemzug mit Hulk Hogan, Ric Flair oder Dusty Rhodes nennen. Einfach nur ein Maßgeschneidertes Gimmik. 10 Points."
Rating: 10.0
Sentiment: -0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Raviel1991wrote on 14.08.2008:[10.0] "Der Undertaker ist ein sehr sehr guter Wrestler und ich freue mich schon wenn er am Summer Slam zurück kommt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: xXShawnMichaelsXxwrote on 13.08.2008:[9.0] "Auch wenn ich ihn nicht besonders mag. Hat er sich einfach die 9 rein aus seinen wrestlerischen Leistungen verdient"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rated-RKOwrote on 12.08.2008:[9.0] "Der Undertaker gefällt mir nicht mehr so sehr wie früher, jetzt die wochen vor dem HiaC Match bei Summerslam waren besonders langweilig da ziemlich wenige Kopfspielchen von seiten des Undertakers kamen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RIKYwrote on 08.08.2008:[10.0] "WWE ohne den Taker ist wie ein Sarg ohne Nägel... hällt nicht..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PetePetePetewrote on 06.08.2008:[10.0] "He is legend."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Stephanwrote on 06.08.2008:[10.0] "Habe ihn schon zu Zeiten seines ersten Auftrittes gemocht. Nun ist aber zeit für den Dead Man zu gehen das Gimmick ist immer noch gut aber er wird alt.Das einzige was mich an ihm stört ist das ich ihn einmal mit Fam. am Flughafen Toronto gesehen habe und ich nicht hingegangen bin um mir ein Autogramm zu holen :-( ist aber eher ein persönliches Problem. immer wieder sehe ich den alten mann gerne.   "
Rating: 10.0
Sentiment: -0.475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tottiwrote on 05.08.2008:[10.0] "einfach der beste. Schon immer mein Publikumsliebling!!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rookie of the Yearwrote on 04.08.2008:[5.0] "Technisch gut und nicht umsonst eine Legende, aber (wie schon vor mir gesagt) ich finde sein Gimmick einfach scheußlich. Wrestling soll doch zumindest den Anschein von Realität erwecken, aber der Mann kann das wegen seines Deadman-Krams gar nicht. Deshalb auch die niedrige Punktzahl von mir. Ich gebe ehrlich zu, dass mir Smackdown während seiner Pause etwas besser gefallen hat (obwohl z. B. Batista ja jetzt bei RAW ist)."
Rating: 5.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: KOZ90wrote on 01.08.2008:[6.0] "Er hat das Wrestling Buissnes natürlich geprägt als er noch einige Jahre jünger war, doch nun geht er mir einfach nur noch auf den Sack. Ich konnte diesen Typ noch nie wirklich leiden, da er auch in seinen aktionen nicht sehr einfallsreich ist. Früher war der junge richtig Spitze, doch heute kommt er aus dem nix und haut sie alle im Ring um. Das macht null sinn und ich will es nicht mehr sehen, doch ein Gimmick wechesel würde sich für ihn auch nicht mehr lohnen. Also holt den Mann aus dem Maineventer Status raus und nutzt Leute wie MVP oder MR Kennedy um sich zu entwickeln."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kane15wrote on 29.07.2008:[10.0] "Undertaker ist wohl einer der größten Legenden die ich kenne. 10. 0 :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Walkerwrote on 29.07.2008:[10.0] "16:0 bei Wrestlemania einfach genial"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Swanton-Bombwrote on 28.07.2008:[10.0] "Der Undertaker ist einfach eine Ikone. Liefert noch immer wahre Klassiker ab, das Gimmick ist so genial und bei seinem Entrance bekomme ich noch heute Gänsehaut. Ich glaube, hier muss man nicht viel erläutern. 10 Punkte für Mark Calaway, alles andere wäre ein Witz."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WerderBremenwrote on 28.07.2008:[10.0] "Man kann sehr viele Worte über ihn verlieren, aber eigentlich müssten sie alle auf dasselbe Faktum hinweisen: Der Undertaker ist nicht zu beschreiben, sondern nur zu erleben. Ein lebender Wrestling-Gott, ohne Zweifel! Man erkennt auch, dass die WWE es nicht so einfach hat ohne ihn, das beweisen zB die Quoten von FNSD mit und ohne ihn! The Phenom ist der letzte der ganz alten Garde und ich bin stolz ihn seit Beginn seiner Karriere in der WWF zu kennen und zu mögen. Er fasziniert immer wieder mit Neuem, auch wenn ich persönlich zum Beispiel seine Zeit als Rocker nicht so gut fand, hinterlässt er immer einen bleibenden Eindruck. Man muss ihm einfach 10 Punkte geben, und das wohl in allen Kategorien. Der Undertaker ist die WWE und er ist der beste Wrestler, der geboten wird und das schon so lange!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Monewrote on 27.07.2008:[10.0] "Er ist der Grund warum ich seit 15 Jahren Wrestling Fan bin..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The System Failedwrote on 25.07.2008:[10.0] "Das erste Match was ich gesehen hab war Taker vs. ??? ! Definitiv eine Legende mit überragender Technik ( schafft es sogar mit Khali usw. ein ordentliches Match auf die Beine zu stellen), sehr guten Finishern und einem der besten Gimmiks aller Zeiten!  Einziger "Kritik"-Punkt ist der viel zu lange Entrance ( auch wenn er zum Gimmik passt und sich in der Punktewertung nicht wiederspiegelt). Daher ohne Frage: 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Renatuswrote on 25.07.2008:[10.0] "Ich habe sehr viele Matches von Undertaker angeschaut und kann wahrlich keinen finden, der schlecht umgesetzt ist oder langweilig ist. Undertaker vs Triple H,Undertaker vs Batista, könnte weiter so aufzählen, würde aber vermutlich zu lang werden. Trotz fortgeschritenen Alter immer noch fähig, da gibt es nirgends zu klagen zu klagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: wXw Fanwrote on 25.07.2008:[6.0] "Für Mainstream Verhältnisse im Ring zwar Recht gut, aber ohne sein Gimmick nichtmal annähernd so interessant bzw. populär."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Alex1wrote on 24.07.2008:[10.0] "Der Undertaker kann auch aus schwachen Gegnern gute Matches herausholen und gehört zu den besten Wrestler in der WWE. Sein Gimmick ist perfekt. Auch zu seiner Biker-Zeit fand ich ihn einfach nur weltklasse. Er fällt auch nicht wie andere seiner Kollegen durch unprofessionelles Verhalten auf. Totz seines hohen Alters ist er immer noch bereit harte Matches zu bestreiten. Ich hoffe beim SummerSlam wird es ein richtig brutales, blutüberströmtes Match zwischen Edge und den Undertaker. Der Undertaker ist einfach eine bei Wrestlemania ungeschlagene Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Weihnachtsmannwrote on 23.07.2008:[10.0] "Bester Wrestler ever! Gutes Gimmick, hat sich im Ring immer weiter entwickelt, zeigt heute zum Teil völlig andere Aktionen als vor zehn Jahren, gutes Micwork (wenn er denn mal darf), einfach ein Komplettpaket."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: stinger89wrote on 23.07.2008:[10.0] "Einfach ne Legende... das einzige was in seiner Karriere bis jetzt fehlt ist ein Match gegen den Stinger!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: -Taker-wrote on 22.07.2008:[10.0] "Der größte Big Man aller Zeiten, sieben facher World Champion, ungeschlagen bei wrestlemania, eine Respektperson."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MVPKennedywrote on 17.07.2008:[5.0] "Als Biker mMn deutlich besser und einfach interessanter. Zeigt seit 20 Jahren die gleichen Moves, hat seit 20 Jahren das gleiche Gimmick (bis auf die kurze Ausnahme mit dem Biker). Natürlich kein schlechter, trotzdem: Irgendwann ist auch mal gut ...."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mister MOwrote on 16.07.2008:[10.0] "Future Hall of Famer ... mehr braucht man nicht sagen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rated-R-Strobeltwrote on 15.07.2008:[10.0] "Meiner  Meinung nach das beste Gimmick einer der wenigen der sich im alter noch verbessern und auch meistens top Leistungen bringt er bekommt wieder 10 Punkte "
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wieauchimmerwrote on 15.07.2008:[9.0] "Ein - insbesondere für seine Größe - exzellenter Wrestler der , wie viele auch geschrieben haben, bereits eine Legende ist. Leider gibt es einen Punkt Abzug für quasi nicht vorhandenes Micwork (was zugegebenermaßen dem Gimmick zugeschrieben ist - werde vllt. nochmals neu evaluieren)."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheRock147TLwrote on 14.07.2008:[10.0] "Der Undertaker ist einfach eine Legende. Und mehr glaube ich muss man nicht dazu sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mudwrote on 14.07.2008:[10.0] "Liebe WWE Fans!  Leider wurde The Undertaker 2008 aufgrund zu häufigen Einsatzes des illegalen Leg-Chokehold, bei dem viele WWE-Stars verletzt wurden, von Vickie Guerrero (SmackDown Präsidentin) aus der gesamten WWE verbannt. Eine Rückkehr ist z.Z. nicht geplant (was natürlich Edge freut). Gerüchten zufolge soll er aber zum SummerSlam zurück kommen, aber amtlich ist es nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ecw foreverwrote on 08.07.2008:[8.0] "Ein genialer Wrestler dieser Undertaker kaum zu glauben das er am Anfang Probleme hatte wegen seiner Grösse und sogar in Afrika auftrat. Undertaker hat ein gutes können an Mat sowie Brawl Wrestlng das kombiniert mit Powerhouse und einen der genialsten Gimmicks mit einem Stück Mic Work ergibt Undertaker! Darum gut"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dirkiboywrote on 06.07.2008:[8.0] "ne wirkliche Ikone des Wrestling. Einer der Wenigen, der nicht durch die verschiedenen Ligen gejumpt ist, sondern der WWE treu blieb. Der Dead-Man für mich immer noch das beste Gimmick und im Ring ist er einfach gut. Auch technisch hat er Einiges drauf. Mic-Work ist ok. Abzüge gibt es von mir nur auf den, aus meiner Sicht, absolut verkorksten Ausflug ins Biker-Gimmick,"
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: 6th son of a 7th sonwrote on 05.07.2008:[10.0] "Der Take ist wirklich eine Wrestling Legende. Ich denke, wenn man Leute fragt, die mit Wrestling nichts am Hut haben, wird ihn dennoch fast jeder kennen.  Legendäre Fehden, gute Matches, einzigeartiges Gimmik (Marke 'oft kopiert, niemals erreicht'). Inzwischen wird (wurde) er auch wieder anständig gebooked mit einer Super Fehde gegen Edge, die trotz ihrer Länge nie langweilig wurde. Er hält sich auch im Ring immer noch exellent. Also wieder 10 Punkte."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: real americanwrote on 03.07.2008:[10.0] "Einfach nur unglaublich, der Taker ist fast unmöglich in Worte zu fassen, mein absoluter Favorit.. Wenn er mal ein Mic bekommt liefert er eine 1a Leistung ab und sein Gimmick ist über jeden Zweifel erhaben. Im Ring zwar sicherlich kein Technikgott, er entwickelt sich aber auch in seinem Alter noch ständig weiter, sei es indem er sich den Golgoplata draufpackt oder durch seine härter gewordenen Strikes und wenn nötig powert er sich einfach mit seiner unbändigen Kraft hoch. Hat wohl aktuell mit Michaels und Hunter das beste Gesamtpaket."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: CenaSuckswrote on 23.06.2008:[6.0] "Er war damals einer der großen, deshalb wird er immer in Erinnerung bleiben. Doch solangsam wird er immer langsamer und langweiliger im Ring, die Storylines mit ihm sind immer diesselben und sein Gimmick ist nur noch nervend."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: SL-Kingwrote on 22.06.2008:[10.0] "Was kann man über den Undertaker noch groß schreiben, was nicht sowieso schon jeder weiß. Er ist eine Legende, kann auch heute (im fortgeschrittenen Alter) noch mithalten und hat wohl das langlebigste Gimmick, ohne dabei jedoch langweilig zu wirken. Daher erhält er von mir die volle Punktzahl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Redwrote on 22.06.2008:[10.0] "Einfach phenomenal !!!!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Masadawrote on 21.06.2008:[10.0] ""In der Tat ein Phänomen, dass sich jeder Beschreibung entzieht. Einzigartiges, auch nach Jahre noch modernes Gimmick, dass ihn zur ewigen Legende machen wird. Völlig eigener Wrestling-Stil, Verhaltensweise, Mic-Work und Auftreten. DER Publikums-Liebling schlechthin, der einem auch nach 18 Jahren noch einen Schauer über den Rücken jagt." THX besser hätte ich es nicht ausdrücken können ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: manager1977wrote on 17.06.2008:[10.0] "Absolut Top.Für mich immer noch einer der besten die die WWE je gesehen hat.Am Anfang war er mir ein bisschen zu überlegen.Kein Schlag,kein Tritt,kein Move konnte ihm das geringste anhaben.Doch mit der Zeit wurde der Dead Man immer menschlicher,aber trotzdem umgibt ihn noch immer ein mystisches Flair.Die Bad Ass Zeit war nicht mein Ding,ich fand und finde ihn als klassischen Undertaker am besten.Hoffe er macht noch lange Zeit weiter.Er kommt ja sicher schon bald zurück."
Rating: 10.0
Sentiment: -0.44999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PhilippPascalUndertakerfanwrote on 14.06.2008:[10.0] "Undertaker ist einfach der beste Wrestler den es momentan in der WWE gibt.   Er hat es einfach verdient als bester Wrestler gekührt zu werden außerdem sollte er neben Ric Flair endlich mal in die Hall of Fame kommen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LordTrailerwrote on 13.06.2008:[10.0] "Das wohl beste Gimmick aller Zeiten. Zu einem guten Gimmick gehört aber auch ein überzeugender Darsteller. Und hier ist Calaway wirklich überragend. Er hat das Gimmick bereits in der Frühzeit verinnerlicht. Zudem ist er neben Ric Flair (dieser mit Ausnahme der letzten Jahre) derjenige der durch eine Konstanz in seinen Leistungen überzeugt, dies es rechtfertigt ihn auch noch als End-40er im Ring zu sehen. Im Gegenteil, er passt seinen Stil an ohne, dass es langweilig wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jimpanse1980wrote on 05.06.2008:[10.0] "Ich kenne keinen anderen Wrestler der in den letzten 20 Jahren sein Gimmick so gut weiterentwickelt hatund dabei immer interessant geblieben ist. Keiner brachte auf Dauer so gute Leistungen und musste dabei die teilweise dämlichsten Fehden über sich ergehen lassen. Dass er aufgrund seines Alters seinen (Kampf-)Stil ändert spricht doch sogar eher für ihn. Und wer seine Matches in 2007/2008 gegen Batista und Edge gesehen hat, der sieht, der Taker hat es immer noch drauf und seine Matches sind besser als noch vor 10-15 Jahren"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Stevie-Bwrote on 05.06.2008:[10.0] "Leider nicht mehr so viele Kopfspielchen wie früher, aber immer noch der Beste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JthePwrote on 04.06.2008:[10.0] "Der Wrestler der wohl am meisten für Loyalität, Kontinuität und Einsatzbereitschaft jeweils im positiven Sinne steht. Kein anderer Wrestler hat dem Geschäft so seinen Stempel aufgedrückt, ohne dabei im ständigen Mittelpunkt zu stehen. Das ist einmalig und natürlich nur die volle Punktzahl wert. R.I.P."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MrFoxwrote on 02.06.2008:[8.0] "Man merkt das er älter wird, allerdings trotzdem noch Erste Klasse!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Phenomenwrote on 01.06.2008:[10.0] "Der beste aller Zeiten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Typicalwrote on 28.05.2008:[9.0] "Zwar noch immer top aber garantiert keine 10Punkte mehr. Seine Zeiten als American Bad Ass fand ich mit Abstand besser als sein heutiges Deadman Gimmick. Im Ring ist er noch immer einer der Besten, trotzdem wirkt er zu langweilig, v. a. D. wenn er längere Zeit im ME steht. Bitte Rocker Gimmick und die genialen Mindgames zurück !"
Rating: 9.0
Sentiment: -0.12499999999999993
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Shawnywrote on 28.05.2008:[8.0] "Fand ihn früher besser, aber er hat noch immer etwas! "
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JohnnyCashwrote on 28.05.2008:[10.0] "Denke hier sieht man die ultimative 10. Der Taker hat es geschafft über Jahre interessant zu bleiben & kann (inzwischen) jeden Gegner zu einem guten Match zu ziehen. Absolut Top!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dante111wrote on 25.05.2008:[10.0] "Die Legende schlechthin und gleichzeitig jemand, der nicht nur von den Erinnerungen lebt. Er befindet sich wrestlerisch auf seinem besten Stand bisher (von charisma und ausstrahlung brauch ich gar nicht zu reden). Seine bloße Anwesenheit wertet jeden Event und auch jedes Match auf. Seine Mic-Skills sollten mal wieder mehr zum Einsatz kommen denn auch die können mehr als sich nur sehen lassen. Alles in allem lässt sich sagen: Die Legende wächst!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sockewrote on 25.05.2008:[10.0] "hmmm über den Taker will ich nix schreiben, Legende fertig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The-Great-Pinowrote on 21.05.2008:[10.0] "REST IN PEACE mehr muss man eigentlich nicht sagen. Aber ich möchte doch noch etwas sagen^^ Ich finde diese Vielseitigkeit der Gimmicks im Laufe der Jahre erstaunlich: Zombie-Undertaker-Bikertaker-Undertaker... ich finde ih einfach genial!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Beastwrote on 21.05.2008:[10.0] "Undertaker ist für mich der Beste bei WWE. Aber nach seine Rückkehr ist sein Gimmick irgendwie anders geworden, ich vermisse echt alle seine Mindgames. In Ring ist er immer noch Top."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Deadman walkingwrote on 20.05.2008:[10.0] "Er liefert seit über 20 Jahren eine Klasse Show ab, das Gimmick ist genial, er ist Top in Form trotz seines Alters,hoffentlich bleibt er noch ein paar Jahre,die WWE ohne den Sensenmann kaum vorstellbar,er ist der Grund warum Ich ein Wrestling Fan geworden bin."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mr perfectwrote on 19.05.2008:[10.0] "Der Beste mindgamer den die WWE jemals hatte und bei Wrestlemania 23 wird es für Batista heißen " REST IN PIECE ""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Brooklyn Brawlerwrote on 16.05.2008:[10.0] "Nachdem ich mir die Kommentare hier durchgelesen habe, habe ich mir bevor ich etwas werten wollte noch einmal einige seiner alten Matches angesehen... und ehrlich gesagt: jetzt gefällt er mir teilweise sogar besser als früher. Die 1 steht außer Frage - er ist eine Legende, der letzte Ringpsychologe der WWE, unglaubliches Auftreten, in-ring skillsund TROTZ seines Gimmicks akzeptables selling... und ohne ein Wort und trotz Tweener/Heel Aktionen so over wie kein anderer ; )"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jericholicwrote on 15.05.2008:[10.0] "Einfach klasse, was er täglich abliefert. Er hatte zwar bessere Zeiten beim Gimmick (LOD), jedoch hat er auch mit seinem derzeitigem Gimmick das meiste Potenzial. Er hat halt das beste Gimmick bisjetzt und ich kann mr keinen anderen vorstellen, der jemals ein besseres bekommen wird. Einfach eine Legende, welche immer der WWE treu gelieben ist, was ihm noch mehr Anerkennung bringt und ein zukünftiger Hall of Famer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Frutzwrote on 15.05.2008:[10.0] "Allein seine Loyalität gegenüber der WWE verdient eine hohe Punktzahl, würde wohl die 10 aber noch nicht rechtfertigen. Aber was dieser Mann für diese Liga geleistet hat, ist ein Phänomen. 1991 als absolut fragwürdiges Gimmick gestartet (unbesiegbarer Totengräber), hat er sich zu einem der beliebtesten Wrestler entwickelt. Seine Vorurteile gegenüber einigen Wrestlern und das damit verbundene "No-Selling" sei ihm verziehen. Er ist wahrscheinlich einer der wenigen, der es geschafft hat, ohne lange Titel-Regentschaften, zu einer absolut respektierten Grösse aufgestiegen zu sein. Ganz klar: 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The CaTwrote on 14.05.2008:[10.0] "the phenom is the best.. RIP edge on judgment dayy... edge suckss..."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nahkampfsockewrote on 13.05.2008:[10.0] "Undertaker ist einfach der Beste! Alles andere als 10 punkte wäre pure Blasphemie!  Er ist ein ordentlicher Wrestler, sein Gimmick ist der totale Wahnsinn und er ist ein Gott am Mikro!  Einfach eine Legende!"
Rating: 10.0
Sentiment: 0.4185267857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Die Gurkewrote on 13.05.2008:[9.0] "wird sicherlich eine der ganz großen legenden, allerdings hauptsächlich wegen seinem gimmick, und das nehme ich ihm heute nicht mehr ab"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kevichenkowrote on 12.05.2008:[10.0] "Der Deadman , eine lebende Legende !  Statt im Alter schlechter zu werden wird er immer besser.  Volle Punktzahl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Leniewrote on 09.05.2008:[10.0] "auch wenn er nicht mehr der jüngste ist, finde ich ihn immernoch toll. nur diese neue storyline mit dem vakanten titel find ich echt bescheuert, das kann man bei anderen leuten machen aber nicht beim taker. "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Dave Concordiowrote on 06.05.2008:[10.0] "10 Punkte für einen Mann, der mich von Anfang an fasziniert hat, ein super Gimmick entwickelt hat und im Ring immer noch gute Leistungen erbringt! Außerdem kein Titelsammler. "
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jay-tewrote on 05.05.2008:[10.0] "Wenn ich ehrlich bin, gehört er nicht zu meinen aller liebsten wrestlern, ist aber auch der Superstar, der sich so lange im geschäft hielt und immer noch der größte superstar!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RockZauwrote on 01.05.2008:[10.0] "Mich wundert es immer wieder wie Nicht-Fans gleich auf den Undertaker kommen, wenn man das Wort WWE in den Wort nimmt. Das zeigt schon vieles.. Für mich persönlich ist Taker schon immer der 1A Wrestler gewesen und ich bin auch schon seit 9 Jahren an ihm dran :P.. Ich hoffe sein vorraussichtlicher letzter Titel-Reign wird etwas länger anhalten und außerdem wünsche ich mir, das er ein annähernden Abschied wie Ric Flair machen wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Bigkev82wrote on 26.04.2008:[10.0] "bei der entrance läufts mir immer eiskalt den Rücken runter, speziell bei der Rückkehr als deadman bei WM 20. Das beste Gimmik was die Wrestling-Welt gesehen hat meiner Meinung und momentan ist er besser denn je"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Main Eventwrote on 19.04.2008:[10.0] "Der Deadman hat einfach eine zu perfekte Karriere um ihn 9 oder weniger Punkte zu geben."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Undertalkerwrote on 19.04.2008:[10.0] "Er ist mein absoluter Lieblings-Wrestler! Bei der Survivor Series 91, beim Match gegen Hogan, sah ich ihn zum ersten Mal, und er zog mich sofort in seinen "dunklen Bann". Er hat eine fantastische Ausstrahlung und man verstand es immer, sein Gimmick zur richtigen Zeit etwas zu verändern und so interessant zu halten. Auch besitzt er eine Beständigkeit in diesem Business, wie sie nur wenige haben. Früher bot er im Ring eher mittelmäßige Leistungen, die aber während der Biker-Zeit besser wurden und sich, seitdem er der "New-Undertaker" ist, noch einmal verbessert haben. Er zeigt tolle Aktionen und hat einen zielstrebigen, intensiven Kampfstil, der mir unheimlich gut gefällt. Er kann aus fast jedem Gegner ein gutes Match herausholen. Ich hoffe, er wird uns noch lange erhalten bleiben und zu guter Letzt einen würdigen Abschied bekommen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Stalker1987wrote on 19.04.2008:[10.0] "Einfach eine Wrestling Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: dammdudewrote on 18.04.2008:[10.0] "THE PHENOM    mehr muss nicht sagen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: homicidal cena michaelswrote on 16.04.2008:[8.0] "Er ist seit 2007 wrestlerisch besser geworden und seine Promos und Mic Qualitäten haben sich sehr gesteigert."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fran7iCwrote on 12.04.2008:[6.0] "Sein American Bad-Ass Gimmick war super. Aber solangam reicht es mit ihm. Trotzdem starker Wrestler"
Rating: 6.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AnFuwrote on 11.04.2008:[9.0] "Der Undertaker ist eine Legende! Er schafft es sogar in dem Alter locker noch 4 ****-Matches gegen Batista zu wrestlen, dass ist große Klasse. Ewig dabei und obwohl er nie lange Single-Runs mit dem Heavyweight Title hatte, gibts faaast die Bestnote."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kroatewrote on 11.04.2008:[10.0] "Eine der letzten lebenden Legenden in der WWE. Trotz seines mittlerweile hohen Alters, ist er immer noch dazu in der Lage Top-Matches zu bestreiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Muffiwrote on 11.04.2008:[7.0] "Eine Legende, keine Frage. Das sein Gimmick nach dem Comeback als Deadman nur noch durch die Streak und seinem Entrance definiert wird schadet ihm enorm."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: nightfallwrote on 10.04.2008:[9.0] "Der Ringpsychologe schlechthin und Topwrestler. Obwohl er auf Grund seines doch recht fortgeschrittenen Alters beginnt langsamer zu werden."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: xXJohnCenaXxwrote on 10.04.2008:[7.0] "Natürlich der Undertaker ist ein Phänomen und er schafft es immer wieder gute Matches abzuliefern, aber genau das ist der Punkt er liefert gute Matches ab und keine sehr guten, am Anfang fand ich ihn natürlich cool, aber mit der Zeit beginnt er mich ein bisschen zu langweilen, weil er einfach IMMER gewinnt"
Rating: 7.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DeutscheMarkenbutterwrote on 09.04.2008:[10.0] "Eine lebende Legende , der hervorragend für seine Größe wrestelt und mit seinen Einmärschen und am Mic die Zuschauer fesselt !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DX Generationwrote on 07.04.2008:[10.0] "Er ist der Beste, Deadman4ever"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ultimate-warrior-xwrote on 05.04.2008:[10.0] "Das beste Gimmick das es je gab. Im Ring wird er auch immer besser. Kann mit jedem Superstar mithalten, auch wenn er mittlerweiler schon einer der ältesten ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: FratzenFressewrote on 01.04.2008:[10.0] "Legende! Einer der größten Wrestler aller Zeiten, der sich im Ring immer wieder neu erfindet und auf seine alten Tage eher noch besser wird! Wahnsinnstyp, wenn er einmal aufhört verliert die WWE in meinen Augen DAS Zugpferd überhaupt!  (die Rocker-Zeit vergebe ich ihm mal) also 10 Punkte von mir!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ultimativboesewrote on 30.03.2008:[10.0] "Für die Karriere, für die Leistungen und alles drum und dran 1+ mit Sternchen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Phenomwrote on 28.03.2008:[10.0] "Der Undertaker, was soll man noch zu ihm sagen. Ich kenne ihn ja leider erst seit 2004, aber ich bewerte jetzt auch mal seine Anfangszeit, da ich die Promos und Matches dank Videos und DVDŽs weitgehend gesehen habe. Am Anfang war er für mich eher schlecht. Keine Erfahrung und das "Zombie" Gimmick war ja auch so aufgebaut, das er garnichts gutes daraus machen konnte. Dann allerdings um das Jahr 1993, wurde sein Gimmick geändert, so das er auch von seinem Gimmick her in der Lage war gute Matches zu zeigen. Ab da gings aufwärts, über Mittelklasse Matches, bis dann zu diesem Großartigen Match bei Wrestlemania gegen Diesel. Ab da war er für mich der Main Eventer schlecht hin. Und spätestends 1997 war er für mich schon eine Legende. Diese großartigen Matches gegen HBK und 98 dann gegen Mankind. Nunja, dann folgte seine schlechteste Zeit. Das Rocker Gimmick. Ich fand es einfach nur, sorry das ich das jetzt so sage, aber ich fands Scheiße. Natürlich brauchte er mal einen wechsel, und wenn man "
Rating: 10.0
Sentiment: -0.16666666666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ruppiwrote on 27.03.2008:[10.0] "Bringt seit zwei Jahrzehnten Leistungen auf hohem Niveau und entwickelt sich dabei ständig weiter. Wenn er mal darf, zeigt er, dass er auch am Mic etwas kann und das Gimmick ist einfach grandios verkörpert. Eigentlich der Hauptgrund, wieso ich wieder zum Wrestlingfan geworden bin."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mr sledgehammerwrote on 26.03.2008:[8.0] "Der Deadman ist nur noch ein Schatten alter Tage. Natürlich ist er die Legende schlechthin und natürlich ist er für sein Alter noch in großartiger Verfassung, doch nachso vielen Jahren, nach so vielen Wrestlemaniasiegen, nach so vielen Tombstone-Piledrivern ist sein Deadman-Gimmik einfach ausgelutsch und im Ring zeigt er immernur die gleichen Schläge, die gleichen Moves und den gleichen Style. Aber weil er der einzigartige Deadman ist->2!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: fairywrote on 25.03.2008:[10.0] "sehr guter Wrestler versteht was er macht und das seit über 20 Jahren schon"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: victoriawrote on 24.03.2008:[6.0] "Als der Rocker hat er mir viel besser gefallen!  Jetzt sind die meisten seiner Kämpfe einfach so langweilig und sein elends langer Entrance ist echt schrecklich! Früher super, heute einfach nur mehr langweilig!"
Rating: 6.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ZuluBunsenwrote on 21.03.2008:[2.0] "Sein Gimmick hat sich schon vor Jahren tot gelaufen und sein Moveset ist einfach nur noch veraltet. Unterdessen nur noch ein Grund zum Umschalten bzw. vorspulen."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: LexLuger4everwrote on 17.03.2008:[10.0] "Tja, der Undertaker - was soll man über ihn sagen? Vielleicht ist er derjenige, der von allen Wrestlern in der WWF die legendärste Karriere hatte! Seit nunmehr 18 Jahren am Stück tritt er für die Company an und das Faszinierende ist, dass er, auch nach meiner Meinung, immer besser anstatt schlechter wird, ganz zu schweigen vom einfach einzigartigen Gimmick, was ihn hier u.a. auch zum beliebtesten Superstar gemacht hat! Inzwischen bin ich so weit, zu sagen, dass ich mir die WWE ohne den WWE Sensenmann schon gar nicht mehr vorstellen kann, da ich mit Leuten wie ihm groß geworden bin! Doch wird er, spätestens im oder nach dem Jahr 2010 seine aktive Karriere beenden, dann hätte er auch seine zwei Jahrzehnte der Zerstörung voll! Leider ist das der Lauf der Dinge und der Tag seines Rücktritts rückt unaufhaltsam näher, aber bis dahin freue ich mich erstmal auf einen wohl letzten, aber endlich mal richtig großen Titlerun!!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Juvicidewrote on 16.03.2008:[10.0] "Die Legende überhaupt. Jemand, der sein Gimmick so gut verkörpert, wird es kein zweites Mal geben. Für sein Alter zeigt er erstaunliche Matches, wenn man doch mal an die Matchserie mit Batista denkt. Ich persönliche hoffe nur, der "Deadman" bekommt noch einen letzten großen Run als World-Champ und übersteht diesen ohne Verletzung, denn das hätte niemand so verdient wie er. Trust Me."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fire Devil1990wrote on 16.03.2008:[10.0] "Mein absoluter Favorit! Würd mich freuen wenn er den World Heavyweight gewinnen würde. "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: edge-head92wrote on 15.03.2008:[10.0] "10 P. for the PHENOM!!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Instant Classicwrote on 13.03.2008:[10.0] "Was soll man zum Taker schon schreiben?   Eines der besten Gimmicks aller Zeiten, charismatisch und einer der besten Big-Men."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheMasterpiece87wrote on 12.03.2008:[10.0] "Eine Legende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: chimpwrote on 12.03.2008:[10.0] "Der Grund, warum ich nach mehr als 10 Jahren wieder angefangen habe, Wrestling zu schauen (und es nicht bereue)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Mountiewrote on 02.03.2008:[10.0] "Was kann man zum Taker sagen, was nicht schon gesagt ist? Ich lobe daher mal etwas, was hier etwas zu kurz kommt: Seine Leistung im Ring, die ihn auch jetzt, wo sein Gimmick nicht mehr wirklich frisch ist, noch interessant macht. In der Neuzeit dürfte es keinen Mann seiner Größe geben, der stärkere Leistung bringt. Und faszinierenderweise wurde er im Alter nicht schlechter, sondern besser - wer das Gegenteil behauptet oder dass der Taker nur von seinem Gimmick lebt, weiß nicht wovon er redet. Körperliche Alterserscheinungen kompensierte der Taker durch eine gelungene Stilerweiterung in Richtung MMA-Strikes und -Submissions, die seine Kämpfe zuletzt interessanter denn je machten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: AreYouReadywrote on 29.02.2008:[10.0] "geil"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: splashwrote on 25.02.2008:[8.0] "Ein wirklich guter Wrestler, der in seiner Karriere schon wirklich viel geleistet hat. Ich finde es auch positiv das er sich in seiner langen WWE Laufbahn sich immer wieder für die Company den Arsch aufreißt und alles gibt. Trotzdem will mir sein Gimmick einfach nicht gefallen. Er bringt den Deadman zwar wirklich gut rüber, aber das Gimmick ist nicht wirklich mein Ding. Als Bad Ass hat er mir besser gefallen. Nichts desto trotz: Für seine Leistungen und Fähigkeiten eine 2."
Rating: 8.0
Sentiment: -0.6999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: matze298wrote on 24.02.2008:[6.0] "Der Undertaker hat ein abgenutztes Gimmick, bringt es aber dennoch gut rüber. Das Problem sit, dass ihm zum ehemaligen Deadman einiges fehlt, weil damals an ihm gar nichts menschliches war und das mit seinem Gimmick Wechsel zum Biker zerstört wurde."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: hanseplastwrote on 23.02.2008:[10.0] "Mein Liebling! Sein Aussehen, sein Auftreten sein Können sind einfach fantastisch und er hat es immernoch drauf. Eine lange Titelregentschaft, ohne dämliche Verletzungen, würde ich nochmal zu gerne gönnen. Das hat er sich um seine Verdienste um die WWE und dem Wrestling allgemein wirklich verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: UndertakerFan17wrote on 23.02.2008:[10.0] "Undertaker ist der beste Wrestler der welt in meinen Augen.  Hätte sich Edge nicht eingemischt hätte er ohne Probleme Batista den titel abgenommen "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Darbenwrote on 20.02.2008:[10.0] "Eine wahre Legende. Unvergessene Fehde ( Kane, Orton). Unvergessene Moves (Tombstone Piledriver, Seiltanz).  Für seine grösse unglaublich agil. Wrestlerisch immer für eine Überraschung gut und wird im Alter immer besser. Würde ihm den Titel noch einmal gönnen. Dann eine lange Regentschaft und eine würdige Verabschiedung. Zumal er auch in schweren Zeiten die WWF nicht verlassen hat"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheBigBwrote on 09.02.2008:[10.0] "Der Undertaker ist warscheinlich einer der bekanntesten , beliebtesten und der  talentiertesten Wrestler der Wrestling-Geschichte und mein persönlicher Lieblingswrestler ! Er hat trotz seinem Gewicht und seiner kolosalen Große eine hervorragende Technik ((( siehe : Seiltanz ))) Und außerdem ist er trotz seinem hohen Alter noch sehr fit und kräftig !  Von mir bekommt der Deadman die Note 1 !!!"
Rating: 10.0
Sentiment: 0.9765625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ---HUTTI---wrote on 09.02.2008:[10.0] "ich find ihn einfach wahnsinn!!!!!!  "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Father Frostwrote on 07.02.2008:[10.0] "REST! IN! ... PEACEEEEE!!!!    Jawoll, ja! Der Deadman ist einfach eine Klasse für sich. Niemand machte in den letzten zehn Jahren so lange so nen guten Job mit einer solchen Präsenz!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: nevermore811wrote on 04.02.2008:[10.0] "The Phenom! Solider Wrestler, Top Charisma und einfach einzigartig!!! "
Rating: 10.0
Sentiment: 0.9765625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Phenom89wrote on 30.01.2008:[10.0] "Einer der besten Gimmick-Wrestler aller zeiten, ein großartiger Mann und ein fantastischer Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tombstone81wrote on 29.01.2008:[10.0] "Mein absoluter Lieblingswrestler seit damals wo er Ultimate Warrior in den Sarg gesperrt hat. LoL  Das Biker-Gimmick fand ich sauschlecht. Am besten sah er zum Anfang seiner Karriere aus, da war er viel gruseliger (und böser) als jetzt. Das „Satanisten“-Gimmick war auch cool, er ist und bleibt der Beste!"
Rating: 10.0
Sentiment: 0.41250000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sirPsychoSexywrote on 27.01.2008:[10.0] "Er ist einfach DIE Legende im Sports-Entertainment, er hat eine unglaubliche Präsenz und man kriegt Gänsehaut wenn man live dabei ist wenn die Lichter ausgehen. im Ring einfach überzeugend old-school, und am mic ist er auch toll wie man zu american-bad-ass zeiten gesehen hat."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DarkWarrior86wrote on 24.01.2008:[10.0] "Allein schon seine Anwesenheit macht ein Match aus! Klasse Gimmick, immernoch guter Wrestlingstil, einfach nur Undertakertastisch =D .. mehr muss man über diesen Mann nicht sagen!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Timetoplaythegamewrote on 23.01.2008:[10.0] "L.E.G.E.N.D.E. schlecht hin. Der Taker kann jeden besiegen, vor allem natürlich bei WrestleMania."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Schandmaulwrote on 22.01.2008:[6.0] "Das Gimmik ist natürlich legendär und in der Ministry Zeit fand ich es genial. Aber alles was danach kam war imo alles kalter Kaffee, da auch nach dem bescheuerten Bikertaker der Undertaker für mich nie wieder der war der er vorher war. Dazu im Ring höchtes durchschnitt. Sein Legendenstatus rettet ihm bei mir aber noch die 3"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Moshpit-Hooliganwrote on 21.01.2008:[4.0] "Langweiliges Gimmick und im Ring nur Durchschnitt."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HBK-Xwrote on 17.01.2008:[10.0] "Beim Taker braucht man eigentlich nichts mehr sagen! Kann mit jedem ein gutes Match zeigen, hat alles was man braucht! Einmalig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nocuraswrote on 16.01.2008:[10.0] "Meiner Meinung nach das beste Gimmick aller Zeiten. Ich war richtig enttäuscht damals als die WWE ihm dieses Biker Image verpasst hat und glücklich als er wieder als Totengräber zurückgekehrt ist.   Vom Können her mit Sicherheit auch einer der Besten aller Zeiten. Man muss sich nur mal die Matches gegen Batista oder Kane anschauen. Beeindruckend auch immer beim Royal Rumble wobei 2007 Shawn Michaels eigentlich mehr überzeugt hat.  Wahnsinn wenn ich mir überlege das er schon seit 1986 dabei ist und immernoch Moves wie Dead Man Walking oder Flying Closelines zeigt."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Cactus Danielwrote on 13.01.2008:[10.0] "Er ist wirklich ein ''Phenom''. Seit fast 2 Jahrzenten dabei und es wird trotzdem nie langweilig ihm zuzusehen. Außerdem ist er zurzeit in einer bestechenden Form. 10.0 Punkte!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Remootwrote on 05.01.2008:[10.0] "Eine Legende!  Wenn nicht die grösste legende aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Stone Cold Andywrote on 04.01.2008:[6.0] "Hätte man mich vor ein paar Jahren nach einer Bewertung für den Undertaker gefragt, hätte ich ohne Bedenken eine 1 gegeben, da der Undertaker vor allem in den 90er Jahren viele denkwürdige Momente schuf (wie zum Beispiel die Erhängung des Boss Man bei Wrestlemania XV), aber seit ein paar Jahren, genauer gesagt seit seinem Comeback mit dem Deadman- Gimmick 2004, kann er mich nicht mehr so richtig unterhalten. Er ist immer noch ein anständiger Brawler, aber nach 18 Jahren Zombiedasein zieht sein Gimmick einfach nicht mehr und ich möchte wieder den Biker zurück."
Rating: 6.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "Undertaker 15-0! Der Undertaker ist mein Fav. Ihm kann man immer zuschauen-er zeigt konstant gute Matches und hält sich schon so lange an der Spitze. Die Legende schlecht hin!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Legionwrote on 02.01.2008:[10.0] "Dieser Mann ist der Grund warum ich anfing mich für Wrestling zu interessieren. Absoluter Kult, auch heute noch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Y2J Michaelswrote on 02.01.2008:[10.0] "Was wäre die WWE ohne den Undertaker?! Nichts. Mehr brauche ich wohl nicht zu sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: EvenflowDDTwrote on 31.12.2007:[8.0] "Undertaker - Phenom der Wrestlingwelt. Doch von mir gibt es, wie manche von euch denken werden, "nur" eine 2. Der Undertaker ist keine Frage eine Riesenpräsenz im Wrestling. Bringt sein geniales Gimmick ebenso genial rüber. Hat gute Wrestling Skills. Mic-Work vom feinsten...Aber: Ich finde über die lange Karriere hinweg...hat der Taker sich kein bisschen weiterentwickelt. Es ist jedesmal dasselbe mit dem Taker. Egal ob in Storylines, Promos oder Matchabläufen. Mittlerweile wissen wir sogar mindestens von einem Wrestlemania Match immer den Ausgang weil die WWE diese "Streak" wohl nie enden lassen wird."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MA Excellentwrote on 29.12.2007:[10.0] "Der Mann ist in der Tat ein Phänomen. Die tatsächlichen Leistungen, die er seit über 20 Jahren mit seinen 2,08 Meter bringt, sind herausragend. Geschont hat er sich wahrlich nicht und der Mann ist einfach Kult. Jedoch will uns die WWE natürlich das 15-0 Phenom verkaufen, was ich etwas "triefend" finde. Der Mann verdient größten Respekt, aber nicht für die hausgemachten WWE Legenden. Im Ring wohl der beste Big-Man ever, das Gimmick genial und mehr oder weniger die komplette Karriere beibehalten. Das muss eine 1 geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RhinoRaineswrote on 29.12.2007:[10.0] "Wahrscheinlich ist er der beste Big Man in der Geschichte der WWE. Tolles Gimmick, selbst als Biker hat er mich unterhalten können. Klare 10 Punkte für den Deadman."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Gaahlwrote on 22.12.2007:[10.0] "Bestes Gimmick und super Wrestler!!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Know Nothingwrote on 17.12.2007:[10.0] "Der Undertaker ist eine Legende. In meiner Kindheit war er DER WWF Superstar schlechthin und er Zeigt immer noch sehr ansehliche Kämpfe und einen Klasse Auftritt.  Den "Biker Look" den er zwischendurch hatte vergessen wir mal ganz schnell. Mir gefiel der Tote Mann mit unterstützung von Paul Bearer am besten.  Um ehrlich zu sein denke ich das er mittlererweile aufhören sollte. Er ist immer noch eine Klasse für sich und so soll er den Fans auch in errinnerung bleiben. Leider wird auch ein Undertaker nicht jünger und früher oder später werden auch seine Wrestlingqualitäten nachlassen.  Wenn sich jemand eine Eins verdient hat, dann er."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Der dunkle Lordwrote on 16.12.2007:[10.0] "Ich finde den Taker klasse, weil er immer das bekommt, was er will.  Wer sich ihm in den weg stellt, hat keine Chance:    REST IN PEACE!  ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: tomslwrote on 14.12.2007:[10.0] "Eines der besten Gimmicks der WWF/WWE! Ich bekomm jetzt noch immer eine Gänsehaut wenn der Gong des Deadman erklingt. Klare 1!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blue-byte92wrote on 11.12.2007:[6.0] "Lebt von seinem mittlerweile sehr abgenutztem Gimmick. Kann sonst aber nicht mehr überzeugen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Neowrote on 09.12.2007:[8.0] "war mal klasse, ist es jetzt auch noch, sollte aber mal bald cu sagen"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Aaronwrote on 09.12.2007:[10.0] "Der Worker schlechthin! Er kann jeden Stil im Ring mitgehen und verbessert sich fast täglich! Der beste Big Man überhaupt und durch sein Alter vollkommen zurecht Anführer der Top 100!"
Rating: 10.0
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WWFfreakwrote on 03.12.2007:[10.0] "Für mich der beste Wrestler aller Zeiten und DER Grund warum ich zum Wrestling gekommen bin (etwa 1994) und mir das ganze noch anschaue!!!  Der Undertaker ist einfach nur Phänomenal und gar nicht aus der Szene wegzudenken."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: EGeraldhuebnerwrote on 01.12.2007:"Natürlich die (!) "Legende" schlechthin, das Zugpferd der WWF/E und (ganz bestimmt) nicht nur für mich, der Hauptgrund, sich überhaupt - noch - für Wrestling zu interessieren. Daher: steckt diesen tollen Mann, der euch 15 Jahre immer den Erfolg gebracht hat, falls er seine Karriere fortführt, rechtzeitig in ein TagTeam mit guten Partner (wie z.B. Kane), der ihn bei Schwächen ab und zu mal mit "trägt" (und dadurch natürlich auch selbst seinen lange verdienten Push bekommt), bzw. ändert dies auch nicht mehr. Das er ziemlich nachgelassen hat, sich nun häufig über die Zeit retten muß usw.,wird jetzt leider immer deutlicher. Irgendwann ist es sonst einfach nur noch unglaubwürdig, und sowas spiegelt sich ja dann auch in der ausbleibenden Begeisterung vieler Fans."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: oejongewrote on 28.11.2007:[10.0] "Die lebende Legende - Zugpferd der WWE - für mich über dieses langen Zeitraum gesehen der grösste und beste Wrestler, den die WWF/WWE je hatte. Hoffentlich bleibt er uns noch länger erhalten!!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: MemphYwrote on 25.11.2007:[8.0] "Seine Siegesserie bei Wrestlemania verbietet die Höchstwertung!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Heatwrote on 25.11.2007:[10.0] "Eine lebende Legende, er war immer in der WWF/WWE, seit ich sie verfolge, und er war immer oben dabei, und das zu Recht, auch im mittlerweile mittleren Alter, dennoch immer für gute Matches zu haben. Alles andere als eine 1 wäre eine Frechheit. Was dieser Mann geleistet hat ist einfach riesig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: sebiwrote on 25.11.2007:[10.0] "Beim Undertaker zuzusehen macht immer wieder Spaß, weil er es schaft jedes Match spannend zu machen. Einer der top Wrestler der letzten Jahre"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sandiegowrote on 25.11.2007:[6.0] "Mittlerweile nur noch ein Schatten früherer Tage, schade.  Unbeweglich und immer vorhersehbar, welche Aktion als nächstes kommt.  Einfach nur noch langweilig."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: fswrote on 20.11.2007:[10.0] "Schon ewig dabei und trotz höheren Alter kann er schwache Wrestler immernoch zu guten Matches ziehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Koitnreinawrote on 10.11.2007:[10.0] "Der einzige Grund warum ich mir Smackdown! angucke."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Joe710wrote on 07.11.2007:[10.0] "Durch den Undertaker bin ich zum Wrestling gekommen. Er ist schon seit 16 Jahren dabei und hat mehr im Ring drauf als so mancher Jüngling. Sein Gimmick ist einfach genial, seine Einzüge immer wieder ein Highlight. Er ist sich nicht zu schade sich ab und zu für Neulinge hinzulegen und hat kein bisschen Beliebtheit eingebüßt. Wahrscheinlich der größte Grund, warum ich selber mit dem Wrestling angefangen habe ; -)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Fabbowrote on 06.11.2007:[10.0] "Das Phenom des Wrestlings!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: TheAdaawrote on 05.11.2007:[10.0] "Der Undertaker ist sicherlich das Phänomen der WWE. Er dominiert die WWE nun über 10 Jahre, eine Leistung die nicht jeder von sich behaupten kann. Zudem ist er für seine Größe und sein Gewicht im Ring ziemlich beweglich und kann für sein Alter noch sehr gute Matches abliefern. Zudem hat er sich ständig weiterentwickelt und ist ein heißer Kanidat für die Hall of Fame."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Meanbeastwrote on 31.10.2007:[10.0] "Meiner Meinung nach der beste Wrestler aller Zeiten: überzeugend, routiniert, bringt seit Jahren Top-Leistungen! Einfach Weltklasse dieser Mann!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: antihiphop2002wrote on 29.10.2007:[10.0] "Einfach eine lebende Legende. Kann mich nicht erinnern das ich mich jemals über ihn gelangweilt habe. Die Intensität im Ring und wie er sein Gimmik verkauft das ist einfach genial. Und für seine Grösse technisch extrem gut. Außerdem hat man das Gefühl das er immer noch dazulernt, wird eher noch besser als schlechter im Alter. Was sicherlich auch am abgespeckten Tourplan liegt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mr Money in the bankwrote on 28.10.2007:[10.0] "Für den Undertaker müsste man einfach neue adjektive erfinden um zu beschreiben was für ein genialer Wrestler er ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Benny110106wrote on 28.10.2007:[10.0] "Er ist einfach der Untertaker. Ganz klar 1 !!!!!!!!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kiggiwrote on 24.10.2007:[10.0] "Der beste Wrestler aller zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rated-R-Fanwrote on 21.10.2007:[10.0] "Er wird älter,aber immer besser!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: V12-Viperwrote on 17.10.2007:[10.0] "Er ist klar der beste Wrestler den es gab bzw. gibt ich hoffe er bekommt bald seinen hoch verdienten Titel-Run."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Tee777wrote on 16.10.2007:[10.0] "Geiler Wrestler macht immer spaß Matches von ihm zu sehen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Jericho Onewrote on 04.10.2007:[8.0] "Der Deadman ist einfach nur kultig, aber davon lebt er schon ziemlich lange! Fand sein "American Badass"-Gimmick besser, weil er dort vielmehr/variabeler agieren konnte. Das Deadman-Gimmick wirkt für mich zu starr und läßt auch nicht viel anderes zu. Ansonsten einer der besten BigMan die es im Business je gab! "
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: King of Queenswrote on 04.10.2007:[10.0] "Jemand, der sich so lange konstant an der Spitze hält wie Undertaker hat die 10 Punkte einfach verdient. Wrestlerisch, trotz seines hohen Alters und seiner Größe, sehr stark. Seine Erfahrung hilft ihm, auch andere, schwächere Wrestler gut aussehen zu lassen. Er scheut es nicht, sich für andere, junge Leute hinzulegen, um diese over zu bringen. Über sein Charisma braucht man sich nicht streiten, das ist durch sein geniales Gimmick vorbestimmt und auch am Mic leistet er, wenn er denn mal den Mund aufmacht, sehr gute Arbeit. All das zeichnet eine Legende aus, die der Undertaker zweifelsfrei voll und ganz verkörpert. Einfach großartig."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Peisistratoswrote on 04.10.2007:[10.0] "Der Deadman versteht es einfach, sein Publikum zu unterhalten. Er ist eine lebende Legende und das würdige ich mit einer eins."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Oli10wrote on 01.10.2007:[10.0] "Eine Legende! Seine Fehden sind einfach nur genial! Dead Man Walking!!!"
Rating: 10.0
Sentiment: -0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wuschl 85wrote on 29.09.2007:[10.0] "Eine lebende Legende und das schon seit 17 Jahren. Mir bleiben etliche unvergessen Matches in Erinnerung wenn ich an den Taker denke z. Bsp. das Hell-in-a-cell beim KOTR 1998 oder das Buried-Alive Match gegen Kane. Eine wahnsinns Austrahlung und der Einmarsch wird für immer unangefochten bleiben. Der Taker ist gut am Mic und seine Psychospielchen mit den Gegnern legendär. Für mich momentan der einzige Wrestler der eine 10er Wertung verdient hat. Bei deisem Wrestler passt einfach alles Körperbau, Ausstrahlung\Mimik und sein Können im Ring und das auch in hohem Alter."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kuschkowrote on 17.09.2007:[10.0] "Kult!!  Meine erste Erinnerung die ich mit Wrestling verbinde ist die Totenglocke von Venedig und dieser schwarze Hüne der hinter einem kleinen dicken Mann mit Urne herläuft. Die WWE Identifikationsfigur schlechthin -The Undertaker "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Bhanduwrote on 16.09.2007:[10.0] "War zueletzt vor seiner Verletzung in der Form seines Lebens. Für seine Größe und sein Alter mittlerweile ein phänomenaler Worker im Ring, da er sich immer weniger von seinem Gimmick behindern läßt. Das Jahr 2007 sah bis zur Verletzung des besten Undertaker aller Zeiten! In Sachen Fanzuspruch kommen ohnehin nur wenige an ihn heran. Eine lebende Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Bullit69wrote on 16.09.2007:[10.0] "Auch einer,der wohl immer in den Köpfen der Fans bleibt!!Seine WM-Siegesserie wird wohl nie abreißen komme was da wolle!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: shrotiwrote on 11.09.2007:[10.0] "einfach der beste!! R.I.P."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Kennedictwrote on 07.09.2007:[8.0] "Che lo dico a fare? Uno dei più forti di sempre. Stop.anche se non mi piace"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Manuelwrote on 06.09.2007:[10.0] "The Undertaker ist der beste Wrestler jetzt in der WWE knapp vor Shawn Michaels und Triple H."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DannyGeigwrote on 04.09.2007:[10.0] "Der Mann der WWE, perfekter Wrestler perfekt um Rookies Over zu bringen beim Undertaker stimmt einfach alles"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: caterwrote on 29.08.2007:[10.0] "Bewertet man nur den Wrestler Mark Calaway, kann man höchstens eine 3 geben. Aber das Gimmick des Undertakers ist einfach eines der besten und langlebigsten, die es gibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Alan Smitheewrote on 26.08.2007:[10.0] "Mark Calaway kann echt froh drüber sein das Gimmick dess Undertakers bekommen zu haben sonst währe er wahrscheinlich (trotz der, für seine Statur, guten Moves) nach ein paar Jahren in der (WWE-)versenkung verschwunden. Aber... Gott sei dank hat er das Gimmick bekommen und ist dadurch zu einer der Legendärsten Figuren im Wrestling geworden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Pinguwrote on 23.08.2007:[10.0] "Das kultigste und genial Gimmick aller Zeiten, was ihm sicher dabei hilft so lange an der Spitze zu sein und als Legende in die Geschichtsbücher einzugehen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hunter2007wrote on 20.08.2007:[10.0] "User, die weniger als 6 Punkte für den Undertaker vergeben haben, sollten mal gründlich ihre Augen öffnen oder sie haben keine Ahnung davon. Takers Alter spielt keine Rolle, er zeigt sich von seiner allerbesten Seite!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: yogywrote on 17.08.2007:[10.0] "Eine der absoluten Legenden des Wrestling.Fantastisches Gimmick,eindrucksvolle Moves und eine riesen Statur haben den Undertaker zu dem gemacht was er heute ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rey Mysterio619wrote on 16.08.2007:[8.0] "Undertaker ist cool"
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: EG4Livewrote on 11.08.2007:[10.0] "Eindeutig einer der bedeutendsten und prängendsten Männer im Wrestling! Exzellente Technik, Micwork perferk und das wohl beste Gimmick aller zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Thingwrote on 07.08.2007:[10.0] "Einer der besten Wrestler den es heutzutage überhaupt gibt. Er gibt einfach bei jedem Gegner sein bestes, wobei kaum ein schlechtes Match von ihm entstanden ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Deadly Passionwrote on 06.08.2007:[10.0] "Èinfach genial."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Garvinwrote on 30.07.2007:[10.0] "Was soll man diesem Mann sonst geben? Hat das Wrestling mitgeprägt, wie kaum ein anderer. Sein Gimmick wird für immer in die Geschichte eingehen, oft kopiert werden, aber nie wieder erreicht werden. Leider wurde er im Laufe seiner Karriere in viel zu viele unwürdige Fehden gesteckt. Doch der Taker machte IMMER eine gute Figur. Trotz seiner Proportionen ein fantastischer Wrestler. 100%ig zukünftiger Hall of Famer. Das einzigste, was ich nicht an ihm mochte, das war seine ABA-Zeit. In der Ministry of Darkness war er mein "Lieblings-Taker" ; )"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Lord Loviswrote on 29.07.2007:[10.0] "Der Undertaker ist eine der größten Legenden überhaupt. Auch wenn er nicht immer kämpfen kann, da er schon etwas älter ist. Aber wenn er da ist dann zeigt er immer eine ziemlich gute Leistung und bringt Wrestler die es eigentlich fast gar nicht können, wie beispielsweise Batista, dazu ein ansehnliches Match abzuliefern. Zudem ist er seit nun schon 17 Jahren immer auf dem gleichen Level und hat fast keinen Leistungsabfall gezeigt... Welcher Aktive kann sowas von sich behaupten? Außer Ric Flair wahrscheinlich keiner."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ulfwrote on 26.07.2007:[8.0] "Bis 1998, wo ich den Undertaker sehen konnte, fand ich ihn am besten. Als Biker kam er mir mehr unattraktiv rüber, wobei er für mich jetzt wieder langsam interessanter geworden ist. In seinen Wrestlingpausen hat er bei mir immer ein Loch hinterlassen und würde ihn sehr vermissen, da es zur Zeit der beste Wrestler ist, den ich gerne sehe. Von mir bekommt er für den jetzigen Stand eine 2, 3."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Comptonwrote on 23.07.2007:[10.0] "Der Undertaker gehört zweifelsohne zu den besten Produkten der WWE aller Zeiten. Seit seinem Debut im Jahre 1990 hat der "Mann aus Death Valley" immer überzeugt und war seit jeher ein Big Time Player. Zwischenzeitlich wechselte er sogar das Gimmick des Totengräbers und wurde zu einem Bad-Ass-Biker, aber trotzdem hatte er kaum von seiner Populärität eingebüßt. Dabei ist der Undertaker im Ring sehr solide, Gimmickmatches meistert er mit Bravour und auch in normalen Kämpfen macht er eine gute Figur. Aber es ist nunmal so, dass der Undertaker zur Zeit stark von seinem Gimmick lebt. Er wird bei der WWE wie ein Phänomen, wie eine lebende (gut, das war jetzt vielleicht eine schlechte Wortwahl) Legende gehandelt und ist ein Mann, der die Hallen füllt."
Rating: 10.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: scotty619wrote on 10.07.2007:[8.0] "The Undertaker ist simmlich cool aber er hat mir besser als Biker gefallen"
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Doomsdaywrote on 06.07.2007:[10.0] "Wurde viel zu oft um den Titel betrogen. Hoffentlich bekommt er noch ne Chance."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blade Bourdeauxwrote on 05.07.2007:[10.0] "Zum Taker ist, glaube ich, alles gesagt und geschrieben worden. Wer es schafft fast 20 Jahre an der Spitze, der besten Liga des Business, zu stehen ist selbst die personifizierte Spitze des Business."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Burzi1wrote on 05.07.2007:[10.0] "Ganz klar eine Legende! Mehr kann man dazu nicht sagen. Volle Punktzahl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: PuroDragonwrote on 04.07.2007:[8.0] "Lebt nur von seinem Gimmick,dass er allerdings klasse verkörpert"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ShaneOwrote on 28.06.2007:[10.0] "Ich geb die 10 nur selten her - aber beim Taker ist diese Note absolut gerechtfertigt. Weltklasse Worker, am Mic gut und schon ewig an der Spitze der WWF/E. Schade das sein Run als World Champ so früh enden musste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: DrBreswrote on 27.06.2007:[10.0] "Eine Legende! Auch wenn das Deadman-Gimmick ein wenig ausgelutscht ist und spätestens bei ihm alle Marks aufschreien müssten: "He, das ist doch alles nur Show", bringt der Mann mit 45 seine Leistung. Scheint auch ein immens wichtiger Mann fürs Business und jüngere Wrestler zu sein. Denke er wird nach seiner Verletzungspause seinen letzten und wohlverdienten Push kriegen - und seine WM-Serie auf 16:0 ausbauen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Ywainwrote on 25.06.2007:[10.0] "Seit Jahren bringt er Top-Leistungen und hat ein Gimmick, das seinesgleichen sucht. Super-Wrestler!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: HHH-Stephwrote on 24.06.2007:[10.0] "Der Undertaker ist eine der größten Legenden die die WWE/WWF je gesehen hat. Trotz seiner Größe ist er ein sehr guter Wrestler und er hat schon unzählige legendäre Matches bestritten. Er hat warscheinlich das beste Gimmick das es jemals im Wrestling gab! "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Adrammelechwrote on 24.06.2007:[10.0] "Für mich gibt es keinen anderen, der Undertaker war immer mein größter Held als Kind und bis heute ist er mein Liebling! Unvergessen die Matches gegen Gonzales, Yokuzuna usw. "
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Foerstawrote on 24.06.2007:[10.0] "Eine Legende. Steckt viel ein, ist verdammt hart und der Tombstone-Piledriver ist genial. Will ihm abends nicht begegnen.Geile Technik. Bestes Gimmick."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: ABOOgeymanwrote on 24.06.2007:[10.0] "Dass der Taker nun verletzt ist ist wirklich eine Schande. Warum können sich denn nicht mal Leute wie Cena verletzen. Für mich ist der Taker mein absuluter Fave und einer der besten Wrestker allerzeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Azraelwrote on 24.06.2007:[10.0] "Eine lebende Legende, einer der grössten im Wrestling Entertainment.. das Gimmick ist einfach Kult und für sein alter liefert er noch immer ordentliche Matches ab."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Trevedaswrote on 24.06.2007:[10.0] "Was soll man über diesen Mann sagen? Eine Legende, ein Mythos, einer der besten Wrestler, den das Wrestling-Business je gesehen hat! Meines Erachtens, ist er die größte Wrestling-Legende aller Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mr Kennedywrote on 24.06.2007:[10.0] "DonŽt disturb the deadman!!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Wichtgestaltwrote on 24.06.2007:[10.0] "Einfach der ProWrestler schlechthin, kenne kaum jemanden, der ihn nicht kennt und mag. Gimmick und Entrance sind auch heute noch schlicht weg genial, und für einen Big Man überragende Technik. Hoffen wir mal, das er uns noch lange erhalten bleibt. "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: RatedRKOwrote on 24.06.2007:[10.0] "Kenne Ihn seit seinem WWE Debüt. Fande seine Wandlung zum "American Bad Ass" ziemlich daneben. Es geht doch nichts über den Dead Man ;)"
Rating: 10.0
Sentiment: -0.16249999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Svaniwrote on 24.06.2007:[10.0] "Ein Talent mit einer unglaublichen Entwicklung, der Mann wird halt nicht umsonst Phänomen genannt! Wenn er nicht mehr im Ring fehlt, ist Wrestling nicht mehr das selbe!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Amurebkuwrote on 24.06.2007:[10.0] "Der Undertaker ist einfach eine absolute Klasse für sich!!! Endlich ist der Deadman wieder Champion!!!! Das hat er sich mehr als verdient! Für mich der bisher beeindruckendste Wrestler der Geschichte!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Angus666wrote on 24.06.2007:[10.0] "Was soll man nur zum Taker sagen? Absolute Legende und wenn er einmal nicht mehr Aktiv ist verliert das Wrestling wohl einer ihrer letzten Legenden."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Masterpiecewrote on 24.06.2007:[6.0] "Eine Legende ... aber Technisch gesehen nicht so das gelbe vom Ei, mal abgesehen vom Tombstone Piledriver! ... die Siegesserie bei den WrestleMania's sind doch irgendwie langweilig ... deshalb gibts nur die 3!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Undertaker13wrote on 24.06.2007:[10.0] "Ihn kann man nur mit 10 bewerten. Er ist eine Legende die es immer noch im Ring drauf hat. "
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: The Yetiwrote on 24.06.2007:[10.0] "Please, do not Rest in Peace!!!!!!!!!!!!!!!!! In so einem Alter noch ohne Probleme übers dritte Seil springen zu können, das macht einen Topsportler aus. Respect!!!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Crusherwrote on 24.06.2007:[10.0] "Dieser Mann ist eine Legende und darum verdient er es auch an erster Stelle zu stehn."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Chris Cagewrote on 24.06.2007:[6.0] "Ich weiß die Leistungen des Undertakers sehr zu schätzen, doch meiner Meinung nach ist seine Zeit auch langsam abgelaufen. Er lebt nur noch von seinem Gimmick, einen letzten Titelrun bei WM vorm Karriereende hat er sich aber auf jeden Fall noch verdient. "
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: WCWlerwrote on 24.06.2007:[10.0] "Der Undertaker ist einfach eine Legende. So lange wie er dabei ist und immer wieder Top-Fehden hat verdient er die Höchstpunktzahl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Deadman81wrote on 24.06.2007:[10.0] "Sensationell!! Wenn er kein zukünftiger Hall of Famer ist, wer dann??"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Leonardywrote on 24.06.2007:[10.0] "Der  beste Wrestler aller Zeiten,bei WM23 wird er neuer WHC^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mr Wrestlemaniawrote on 24.06.2007:[10.0] "MR. WRESTLEMANIA"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: renol2007wrote on 24.06.2007:[10.0] "Er ist ein sehr guter Wrestler (keine Frage!), aber die jeder hat Angst vor ihm Gimmick find ich langweilig"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hit Manwrote on 24.06.2007:[10.0] "Das beste Gimmick aller Zeiten.Trotz seiner Größe ziemlich beweglich.Bald Hall of Famer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: jupp365wrote on 24.06.2007:[10.0] "Er ist der jenige, der mich immer fasziniert hat (das Biker-Gimmik wollen wir an dieser Stelle mal totschweigen). Wirklich ein grandioser Performer, der trotz seiner Größe tolle Matches zeigen kann, auch noch in diesem Alter!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: timbo7111wrote on 24.06.2007:[10.0] "WWE/WWF Legende.Grandioses Gimmick, das er so überzeugend wie kein Zweiter darstellt.Im Ring für seine Größe sehr gut!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Rashomonwrote on 24.06.2007:[10.0] "Einfach der beste "Big Man" ever..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: BMwrote on 24.06.2007:[10.0] "Was soll man zum Deadman noch sagen? Volle 10 Punkte. Auch wenn er langsam doch augenscheinlich älter wird. Schade das er sich nach seinem Titelgewinn jetzt auch noch verletzt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JOHN CENAwrote on 24.06.2007:[10.0] "15:0 at wrestlemania und neuer world hheavyweight champion"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Unglaublich, was dieser Mann alles fürs Wrestling geleistet hat. Die Legende schlecht hin. Er ist sogar meinem Vater ein Begriff und das will was heissen..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Nachtfalterwrote on 24.06.2007:[10.0] "Was mich am Taker wohl mit am meisten fasziniert ist seine einfach absolut unglaubliche wrestlerische Entwicklung. Als er 1990 in der WWF anfing konnte er im Ring kaum geradeaus laufen und lebte einzig und allein vom Gimmick, heute ist er tatsächlich einer der Besten überhaupt. Absolute WWF/E-Legende."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Batti-starwrote on 24.06.2007:[10.0] "Wenn die Lichter ausgehen und der Gong ertönt, bekommt man Gänsehaut und man weiß: Der Taker ist Wrestling in seiner genialsten Form!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Basti1989wrote on 24.06.2007:[10.0] "Neben Hogan und Flair der beste Wrestler aller Zeiten. Er wird hoffentlich noch viele Wrestler "beerdigen"."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sharkwrote on 24.06.2007:[6.0] "Kein guter im Ring und in letzter Zeit zusehr gepusht... gefällt mir nicht so aber sein derzeitiges Gimmick ist besser als das Biker Gimmick... "
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Groissy12344wrote on 24.06.2007:[8.0] "Das Charisma, dass der Taker im Ring ausstrahlt ist genial. Seine Matches sind guter durchschnitt, die entrance ist klar zu lange und abgekaut, die Finishs immer gleich daher ein glattes GUT"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: belroiwrote on 24.06.2007:[8.0] "Das beste Gimmick ever. Aber wegen seiner Rockerzeit und der jetzigen "Lightversion" des Sensenmannes nicht ganz die Topnote."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Mediwrote on 24.06.2007:[10.0] "Der deadman begeister mich seit er angefangen hat. Die allerbesten Techniken mag er nicht "draufhaben", doch er weiß die Fans zu begeistern und schöne Matches abzuliefern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Carsteinwrote on 24.06.2007:[10.0] "Für nen Big Man hat er einige echt unglaubliche Highflying Moves drauf, dazu noch ganz akzeotabler Brawler mit starker Ringpsychologie und dem wohl besten Wrestling-Gimmick ever"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hypocrisywrote on 24.06.2007:[10.0] "Natürlich hat der Wrestler Mark Callaway auch von seinem Gimmick "The Undertaker" profitiert. Trotzdem verdient sich The Undertaker die glatte 1 aufgrund seiner langen Zugehörigkeit zur WWF/WWE und den vielen überragenden Kämpfen über mittlerweile 15 Jahre. Und natürlich hat der Taker sie alle kommen und gehen sehen: Wer spricht heute noch von Jimmy Snuka, Jake Roberts, King Kong Bundy etc... Und so wird es auch in einigen Jahren sein! Wer wird in ein paar Jahren noch über Batze oder Randy Orton"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Alex Shelleywrote on 24.06.2007:[10.0] "Rein Wrestlerisch würde ich zwar nur zur 2 tendieren, aber der Undertaker ist einfach wortwörtlich DAS PHÄNOMEN im Wrestling. Eine Austrahlung, die die Notenskala sprengt und ein enorm wichtiger Teil der Wrestlinggeschichte. Klar, das Gimmik war natürlich das beste was ihm passieren konnte. Man muss es aber auch erstmal so gut umsetzen, daß man zum Kult wird und das hat der Taker geschafft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: winie puuhwrote on 24.06.2007:[10.0] "lebende(oder Tote?)Legende"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: mdbnasewrote on 24.06.2007:[10.0] "Anfänglich recht schwache Wrestlingfahigkeiten. Aber ein geniales Gimmick und eine einfach unheimliche, respekteinflössende Ausstrahlung. Harter, ehrlicher Worker, der mittlerweile auch seine Skills deutlich verbessern konnt. Protagonist vieler neuer, spektakulärer Matcharten und insgesamt gesehen fast unersetzbar!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Steven McWheelerwrote on 24.06.2007:[10.0] "Kein Mann hat das Wrestling geprägt wie er!Ich bin der Meinung der Taker hat mehr fürs Wrestling getan als Hulk Hogan!DEADMAN WALKING"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Sandman16wrote on 24.06.2007:[10.0] "Mit diesem Gimmick ist er ein ganz Großer geworden. Sehr genialer Einfall von ihm. Auch mit der Größe bringt er gute Matsches zu stande. Einer der besten aller Zeiten für das was er geleistet hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: JBL-just a big Legendwrote on 24.06.2007:[10.0] "Was ich bei HBK hingeschrieben habe gilt jetzt auch für den Undertaker,auch er erlebt zur Zeit einen dritten oder vierten Frühling.Als er bei WrestleMania 20 als Deadman zurückkehrte wurde er auch von mir als Deadman Texas Ranger verspottet,doch mittlerweile erinnert er mich schon stark an das alte Totengräber Gimmik,zwar wurde es modifiziert,doch gerade das tut ihm auch gut.Im Moment ist er  (Stand Januear/Februar 2007) so präsent wie lange nicht mehr,er tritt bei SD! und bei Raw auf,durfte"
Rating: 10.0
Sentiment: -0.16025641025641027
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Invader Zimwrote on 24.06.2007:[10.0] "Einfach nur eine Legende, ob im Ring oder mit seinen Auftritten, für mich DER bester Wrestler aller Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Blue Meaniewrote on 24.06.2007:[10.0] "Der legendärste Wrestler aller Zeiten! Seine In-Ring Skills sind zwar nicht grade die Besten, aber auch OK. Dafür ist er am Mic genial (siehe Badass Zeiten), er hat eine hammerharte Ausstrahlung und er ist ein genialer Schauspieler, denn wie er das "Rest in Peace" immer rüberbringt und wie er zum Ring kommt, er macht alles perfekt! Zwar ist er wie bereits erwähnt sicher kein Gott in Sachen In-Ring Skills, aber dennoch reißt er mich in seinen Matches immer wieder in den Bann und deshalb ist er"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: shannonmoorewrote on 24.06.2007:[10.0] "Die Legende,keiner hat so viele schlechte Storys überstanden wie der Undertaker.             Booyaka619Mysterio meint (4.0): - "Ich find der sollte in ruhestand gehen. Seine matches sind gar net SO gut. Wenn er mehr Hardcore, TLC usw. Matches machen würde, würde ich ihn auch mögen."             Die ganze Cagematch User haben jetzt verstanden dass du NUR solche Matches gerne siehst aber es gibt wirklich noch andere arten von Kämpfen :)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Giant2wrote on 24.06.2007:[10.0] "Er bekam ein gewagtes Gimmick verpasst und schlug damit ein wie eine Bombe. Die allerwenigsten Wrestler blieben bei einer Weiterentwicklung ihrer Ringperson so erfolgreich wie er. Der wohl nach Hulk Hogan bekannteste Wrestler der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Thomas Carlsonwrote on 24.06.2007:[10.0] "Mean Mark Callous und der Punisher. Man waren das Pfeifengimmicks. damit konnte er auch nie was werden. Mit dem Undertaker ging es dann aber an die Spitze und die ließ er auch nie wieder los. Gut die Ministry Sache war nichts aber jeder macht mal Fehler. Als Bad Ass war er gewöhnungsbedürftig aber auch klasse. Ganz klar eine 10."
Rating: 10.0
Sentiment: -0.5062499999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: metaltyrantwrote on 24.06.2007:[10.0] "Bestes Gimmick aller Zeiten, dass auch nach 15 Jahren immer noch interessant ist. War als Heel zu Ministry Zeiten ein Klasse für sich. Wrestlerisch gesehen gibt es bessere, aber seine Leistungen im Kombination mit dem Gimmick ergeben immer noch die Note 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=761&gimmick=Undertaker
Comment: Hennewrote on 24.06.2007:[10.0] "Der Undertaker, der Undertaker. Ohne das Gimmick wäre er farblos wie sonstwas und hätte sich auch sicherlich nicht so gut entwickelt. Einer der besten aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: gilmoregirlswrote on 28.01.2025:[6.0] "This guy's matches are channel changers for me inside U.S. promotions. His persona/moveset DO NOT WORK on American TV. The headbutts and rapid short chest chops are corny and do not look convincing or even painful at all. The "Hulking Up"/brickwall thing he does doesn't work because he doesn't look convincingly tough to me in his matches at all. I don't get this guy at all. The crowd doesn't get behind anything he does because it looks lame, and when there's no crowd reacting to him, it makes him look even worse. This guy no-selling Jericho's offense with ZERO CROWD REACTION makes guys like Jericho look bad. Please stop booking this guy!"
Rating: 6.0
Sentiment: -0.3070987654320987
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: goldendolphenwrote on 08.01.2025:[9.0] "the most consistent, the most put together, the most reliable man of new japan. he goes out there and at worst will give you a good match, at best give a great sensational professional wrestling match. it's so crazy he's never been world heavyweight champion. he has to be world heavyweight champion before he hangs it up."
Rating: 9.0
Sentiment: 0.2960858585858585
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: V0icesAreLouderwrote on 22.11.2024:[10.0] "Tomohiro Ishii could've been word champion in almost any company he stepped foot into. He has the charisma, the energy, the look, the moveset etc. If there something you want from him, he will deliver. He still puts on entertaining matches at the age of 48. Any time he stepped foot into the ring with a major player, he either matched them or over beat them when it came to enjoyment. Truly a one of a kind wrestler we will never see replicated."
Rating: 10.0
Sentiment: 0.3875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Kai Kantewrote on 10.11.2024:[6.0] "Ein recht unterhaltsames, japanisches Powerhouse. Durch den gedrungenen Körper oftmals etwas steif wirkend und wenig charismatisch. Dennoch kann man sich seine Matches durchaus anschauen, wenngleich er wie viele Japaner den Ruhestand nicht möchte und daher seine Legacy mit Ringrost "veredelt". Die Gesamtwertung, wie bei den meisten Japanern, völlig daneben."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: AriJarrettwrote on 03.11.2024:[9.0] "Damn, I really miss peak Tomohiro Ishii, as on his day, this guy could've been a serious contender for best wrestler in the world. Tomohiro Ishii is probably the best example of a guy who could've worked well with pretty much anyone, given hoe even a lot of NJPW's worst wrestlers looked at least credible when they were working with him. It is sad to think that his best days are behind him and that he's more of a AEW wrestler now, as I simply don't like how Tony Khan has booked him as a cheap prop to show hardcore fans that he knows what they want, and I also don't like how the guy almost constantly loses. Nonetheless, it still amazes me how this guy still can give us amazing matches coming up to 50, and his legendary matches against the likes of Masato Tanaka, Katsuyori Shibata, Hiroshi Tanahashi and Kota Ibushi will never be forgotten. I could deadass use the whole of cage matches 6, 000 character limit listing everyone he's had a banger with, seriously."
Rating: 9.0
Sentiment: 0.1791666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: aStrangeWorlwrote on 09.10.2024:[10.0] "Tomohiro is one of the most subtly entertaining talents in the world. Every single movement, every expression, every attack is executed with precision and commands the exact emotion from the crowd he intends. He is a master of long term storytelling and the perfect example of how to stay relevant and captivating with nearly no changes to his character, values, and demeanor of his career."
Rating: 10.0
Sentiment: 0.33095238095238094
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: GalaxyDustwrote on 09.10.2024:"Absolutely love this guy, one of the most underrated wrestlers in general, hope he can keep wrestling for as long as he can with his age."
Rating: No rating found
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Dweeeabwrote on 30.09.2024:[10.0] "Absolutely insane to me that Ishii never won the iwgp world heavyweight champion ship. An amazing worker who put on so many spectacular matches. Never suffered from being in the midcard for his career either hes been amazing the whole time"
Rating: 10.0
Sentiment: 0.25000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: jsbortswrote on 08.09.2024:[8.0] "Ishii is a really good hand to play in the midcard, not believable ever as a top level talent that could carry a promotion as its top guy; however, you need guys like Ishii to fill out a card. he's a really good brawler despite his size, and is one of those guys who is much better in a live audience than he is on TV. He's a real spectacle to watch because of his body type and his ability to absorb genuine impact with apparent ease. Rarely, if ever, does he put out a stinker of a match or have zero chemistry with someone, and has a really good ability to read a live crowd and adjust as necessary."
Rating: 8.0
Sentiment: 0.2715151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Philson Willipswrote on 06.09.2024:[10.0] "For the guy below my rating that gave him a 4/10. Watch his match against Katsuyori Shibata from the NJPW G1 Climax 23 tournament (2013). If you dont like or appreciate that for everything that it is, you are likely never going to be a fan. And in that case, may God have mercy on you."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Trombek Kushinikawrote on 29.08.2024:[4.0] "Seriously, what is people's fascination with this guy. His move set is basically limited to chops and headbutts. He looks like he works unsafe. He no sells everything and has no decreeable character other than being a stoney faced biggish guy. There are no nuances to his gimmick and moreover it has been basically the same act that he has been doing his whole in-ring career. Ive never seen a match of his that was not lacking in something and Ive never seen an opponent of his that has come off significantly better for being in the ring with him."
Rating: 4.0
Sentiment: 0.028373015873015873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: GulakBusickwrote on 25.08.2024:[10.0] "One of the best to ever do it. Certainly amongst the most consistent wrestlers in recent history. His hit rate is incredible."
Rating: 10.0
Sentiment: 0.4773809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: cal9099wrote on 15.08.2024:[9.0] "An absolute delight to watch and perhaps the most consistently good performer in all of wrestling. It's such a shame he's never been and probably now never will reach the pinnacle of NJPW but he fills his role perfectly and is a pleasure to watch."
Rating: 9.0
Sentiment: 0.48
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Willie 19200wrote on 25.07.2024:[9.0] "Tomohiro Ishii is an amazing pro wrestler who even with his age, can still keep up and even out wrestle the younger competitors. I'm a big fan of his work and I wish that NJPW put the IWGP World Championship on him, however that never happened. Still he's an overall great wrestler that I really enjoy."
Rating: 9.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Marlowe476wrote on 23.07.2024:"Just the best to ever do it. He looks like a statue who Is wrestling but is always endlessly entertaining. I am sad we dont have him in G1 34 but getting him for a Summer in AEW is a great consolation."
Rating: No rating found
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Aspionwrote on 23.07.2024:[8.0] "(Sorry english is not my firtst language) This is one of the wrestlers who is more traditional but he still catch up with the modern wrestlers"
Rating: 8.0
Sentiment: 0.04
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: coppercowrieswrote on 23.07.2024:[7.0] "An absolute intimidating force in the ring. I wouldn't normally find his no-selling style exciting, but there's something just brutal and intense, and yet sympathetic about him I find engaging. A brawler that often feels like the underdog when paired with higher profile foes, and you want him to win. Edit 2024: the lack of creativity in the last two years has vastly decreased my enjoyment of an Ishii match. Feels like the same chop spamming no selling copy paste over and over."
Rating: 7.0
Sentiment: 0.12708333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: RecklessOnewrote on 05.07.2024:[10.0] "He is just one of the best wrestlers in roster right now. And it's a shame that Tomohiro - san is not getting IWGP World Heavyweight Championship. He can do amazing matches with literally anyone (except Evil and HoT)."
Rating: 10.0
Sentiment: 0.22714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: crs285wrote on 04.07.2024:[9.0] "The Stone Pitbull is one of the greatest brawler in modern wrestling. He has so many ways to get to what he does well that it makes it more believable to me. He has an aura around him and even now as he nears 50 he is still putting on great matches."
Rating: 9.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: IoIyowrote on 23.06.2024:[10.0] "Somehow my favourite men's performer at the moment. Just a tremendously fun talent in every possible way."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: danzitorockwrote on 20.06.2024:[9.0] "Tomohiro Ishii is probably the best mid-carder of all time, this man almost wasn't treated like a main eventer in his entire career, but still managed to achieve greatness and gain the recognition and respect of everybody. If you need a guy to work a great match and make a crowd cheer in the middle of an event, call Ishii, because he's the man for the job. He's the definition of underrated, always was, and still is a lot of times, it took a long time for NJPW to realize what they had in Ishii, they were very resistant but after a huge public acclaim, the Stone Pitbull received more opportunities, even with an advanced age, it look a long time to Ishii start receiving some respect, he's a late bloomer. The structure of his matches are repetitive but work pretty well, when worked right, it's one of the most enjoyable formats there is, even if sometimes some of his stuff bothers me a little, there are things that I personally don't like, but he's a talented hard-hitter and a puroresu legend."
Rating: 9.0
Sentiment: 0.23166099773242635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ChocoboSagewrote on 03.06.2024:[10.0] "My favourite wrestler, ever since I first saw him I was blown away by his speed and toughness. He just doesn't give up, quick on his feet and hits like a train. He sells like no one else, makes his opponent look fantastic. Makes you believe he can win every fight and you'll cheer him on every time. For a man as stoic as the stone pitbull, he has a lot of charisma. Honestly, should've been Intercontinental champion before they merged the IWGP titles."
Rating: 10.0
Sentiment: 0.4766666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: travisalekzwrote on 26.05.2024:"One of my favorite wrestlers. Such an overachiever. We're probably past the point now that there'd be any hope of him getting an IWGP World championship win, but it'd make me so happy if he did."
Rating: No rating found
Sentiment: 0.37
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: mr-peanut-butterwrote on 01.05.2024:"I can't believe he's 48 and can still wrestle to that standard and take (and dish out) that amount of punishment. Looks like a legit hard man and despite his odd body shape he's pretty agile. I have not seen any of his matches from his younger days but really like those I've seen over the last few years. Top stuff."
Rating: No rating found
Sentiment: 0.07916666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Old sportswrote on 13.04.2024:"Best moves seller , 10 charisma , 8 brawling , 9 in ring psychology , 8 power , 10 stamina, toughness and fighting spirit, 8 speed and agility. Cool nickname"
Rating: No rating found
Sentiment: 0.4833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: JediSaiyanMaster1203wrote on 28.02.2024:[10.0] ""The Stone Pitbull" is easily among the best brawlers in professional wrestling history, up there with the likes of Steve Austin, Terry Funk, Mick Foley, etc. a man who is an outstanding performer in the ring and has had tons of amazing matches with the best that New Japan has to offer, an incredible storyteller who can convey so many emotions, the definition of a workhorse, has one of the best brainbusters ever, still competing to this day and not showing signs of slowing down, looks big for a guy who's 5'7" and can look believable as a threat to anyone, I could go on."
Rating: 10.0
Sentiment: 0.501087801087801
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: RusherBryan29wrote on 11.02.2024:[10.0] "The Stone Pitbull. Amazing wrestler, great brawler, fantastic in ring work. His brainbuster is one of the best in this business. The master of round robin tournament, best workhorse in njpw history."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: bigotownsendwrote on 10.02.2024:[10.0] "At 48 years of age, Tomohiro Ishii is STILL wrestling at an elite level and putting on excellent matches. He is on my Mount Rushmore of Japanese wrestlers without question, a true workhorse in every sense of the word and never afraid to put younger talent over. Even his presentation is so simplistic yet fantastic, the way he struts out to the ring looking like an indestructible brick wall gets me hyped for every single one of his matches. I cant sing his praises enough. Despite his age, its still not too late to give him the IWGP World title run hes always deserved because hes still *THAT* good."
Rating: 10.0
Sentiment: 0.1707792207792208
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: skillgullwrote on 16.01.2024:[10.0] "I'm still suprised Ishii is still so good at the ripe old age of 45. His style is formulaic, however it's a formula that fuckin works. He's cool, he's stoic, he's fun to watch, He is Ishii. one of my favourites."
Rating: 10.0
Sentiment: 0.29
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: somerandommarkwrote on 13.01.2024:[10.0] "the GOAT. Every match of his is must-see TV. I've never seen someone take such a simple formula and make it so captivating time after time. He wrestles with an intensity most can't even dream of replicating. Fucking awesome"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ZooWeewrote on 21.12.2023:[10.0] "One of my favourite wrestlers ever. I mean I genuinely can't say enough good things about Ishii, he's just so great and his matches are so fucking fun to watch, even if they do get a bit brutal at times. All of his matches are structured in pretty much the same way, but every single time they fucking bang insanely hard because they are filled with some of the most wild wrestling you will ever see. He doesn't win often, but he always stands out in every match he's in. He's an unbelievably good wrestler, and it is a crime that he hasn't won a world title or a G1 while in New Japan. Still a GOAT though."
Rating: 10.0
Sentiment: 0.1650404420141262
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Wrestling Foreverwrote on 17.12.2023:[10.0] "Entweder hier ist der alte Kommentar wieder weg oder ich habe den Stone Pitbull noch nicht bewertet. Da braucht man auch nix großes erwähnen. Er ist nicht nur stark er ist auch brandgefährlich."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Okaro143wrote on 12.10.2023:[10.0] "One of The best brawler in professional wrestling history. Just like Takagi, he is an outstanding performer capable of having a great match with anybody. Although he has never won the G1, he has been one of the most outstanding performers in the G1's history."
Rating: 10.0
Sentiment: 0.5142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Lord AdGnalDivwrote on 12.09.2023:[10.0] "It seems that the Stone Pitbull's best days may finally lie behind him now, but what days those have been! Tomohiro Ishii will go down as one of the best wrestlers of New Japan's best era, delivering banger match after banger match. One underrated aspect of Ishii's in-ring work is his selling. He will no-sell a move to his opponent's face and then sell to the crowd and/or the camera once his opponent isn't looking. Genius bit of character work, but only one small aspect of his captivating persona. If you haven't already, check out his matchguide and watch some of his top matches, you will not be disappointed."
Rating: 10.0
Sentiment: 0.20673400673400674
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: arrancarwrote on 10.09.2023:[8.0] "Ishii has had a magnificent fall from grace over the last few years. For quite while, from at least 2012 to say 2018/19, he was the loveable and endearing 'forever underdog' mid-carder who always had fantastic matches and occasionally got big upsets to maintain strong fan support without ever feeling like a "loser" who was never worth cheering. His match style was basic: just lots of strikes and power moves, but he'd show so much genuine passion in his displays of fighting spirit that he made every movement larger than life, and his real-time selling was (and probably still is) some of the best I've ever seen. He genuinely felt like one of the best in the world AND of all time. The issue that holds Ishii back now -- and which is why I can no longer consider him the 10/10 I rated him back in 2017 -- is because he's simply far too obsessed with copy-and-pasting literally the exact same performances week after week, year after year, to the point that he's now genuinely one of the most uncreative wrestlers in all of Japan. I first noticed this back in 2018, when people were giving him rave reviews for having basically the exact same matches he'd already been having for years, just with very slight variations to account for some fresher opponents. I still thought his performances around that time were great, but the lack of that 'unique' feeling meant that I couldn't consider those matches as truly special as some of his best. And now, in 2023, the guy is just a robot that wrestles the exact same matches and gives the exact same performances no matter where in the world he goes or who he faces. Even in his prime years, his match style and character were always both quite basic, never exactly reflecting the depth of emotions that true all-timers would show, so that's become even more of a negative with him these days, since that provides even *less* opportunities for his current performances/matches to stand out and feel worthwhile. Does he really show any different approach or attitude towards, say, a NJPW main-eventer compared to an AEW mid-carder? No, not at all. And that's what has made all his 'big' matches of the last few years progressively more and more boring. I'm now no longer remotely excited to see an Ishii match, since I know exactly what I'm getting minute by minute, and I know he's never going to try do anything outside his usual, completely done-to-death "fighting spirit" and "strong-style" spots and sequences. He even makes whatever wrestler he's facing work done to his level, which likewise makes his opponents far less interesting because they're only allowed to work the same way as every other Ishii-opponent, regardless of whether that fits them or not. As negative as I've been, I still can't consider Ishii any less than "great" because, in his prime, he really *was* incredible, producing heaps of great, amazing, and even all-timer matches against a variety of opponents. Overexposure/popularity really was the worts thing to happen to Ishii, since he became far too complacent after he smartly realised he could just coast by on the exact same matches each time with 0 creativity or uniqueness. Maybe a re-watch of his matches in a few years will lead me to re-evaluate Ishii as more deserving of a 9 or even back to a 10, because he really did feel like an all-timer for a few years, but the last few years have pretty strongly soured me on him, so I'm not too sure of that."
Rating: 8.0
Sentiment: 0.1705528188286809
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: znezaaljwrote on 27.06.2023:[10.0] "I do not think that we have seen a wrestler as consistent as Ishii is. He has had MOTYC every year for seven years now, I think that he may be the best wrestler in the world even at 44. He is super charismatic. A fan favourite for hardcore and casual NJPW fans and, when G1 Climax is around, get ready to see the best version of the Stone Pitbull. Basically, an unbelievable wrestler that will stun you day in and day out with incredible matches."
Rating: 10.0
Sentiment: 0.3814814814814815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Wrest lingaddictionwrote on 18.05.2023:[9.0] "Best powerhouse wrestler in Japan right now. The only ting missing from this man's mantle is the world title!"
Rating: 9.0
Sentiment: 0.2589285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: LMZ2020wrote on 22.04.2023:[10.0] "This rating is for how I perceive him as far has career in its entirety goes (or at least since the 2010s decade). He's legit one of the greatest underdog wrestlers of all time, (like its completely believable for him to beat the odds and defeat an unstoppable champion...and its just as believable for him to lose to an undercarder- I mean how rare is that? ! ? ), one of the greatest brawlers of all time (his matches are generally peak-BIGMEATYMENSLAPPINGMEAT material), and hes been part of some of my absolute favorite matches ever. For that, he will always be a high 9 to a 10 for me. Nowadays tho, its seems like his age has caught up to him :("
Rating: 10.0
Sentiment: 0.23249999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Minorsmile09wrote on 12.04.2023:[7.0] "Ishii is a bit of a mixed bag for me in that he can either have one of the best matches of all time, or one I think is insanely boring. He definitely has more good matches than bad, that being said they get formulaic. He's put on some of my favorite matches period so it's hard for me to to rate him, but I think he at the very least has a lot of psychology with most of his opponents."
Rating: 7.0
Sentiment: 0.06819444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ProWrestlingGuy316wrote on 15.02.2023:[7.0] "Extrem guter Wrestler, der allerdings nur wenig Charisma hat. Aus diesem Grund ist er bei NJ niemals Heavyweight Champion oder Main Eventer im Tokyo Dome geworden, geschweige denn auch nur ernsthaft in die Nähe gekommen. Und damit sollte man sich auch mittlerweile arrangiert haben. Ja, er ist über Jahre einer der besten Wrestler bei NJ, das reicht aber nicht, um ein Main Eventer oder Topstar zu sein. Das war schon immer so und wird auch immer so bleiben."
Rating: 7.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ajsmileswrote on 02.02.2023:[9.0] "It's a shame New Japan has never and will never see this guy as a main eventer but Ishii is hands down one of the best ever. He can pull out a 5-star match with a broomstick. He doesn't need flips or fancy moves either, he can get you involved in the match with just forearms and chops. He is that good."
Rating: 9.0
Sentiment: 0.36949494949494943
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: benh2wrote on 20.01.2023:[8.0] "A great worker for a very long time now. Lacks height and charisma that would have elevated him to the top of the card but has fantastic brawling skills and has put on many great matches over the years with a variety of opponents. Incredibly consistent and an underrated seller."
Rating: 8.0
Sentiment: 0.45500000000000007
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Daigotsuwrote on 16.01.2023:[9.0] "The dude really does look like a Stone Pitbull. He looks like he eats punches for lunch. A true badass style of wrestler."
Rating: 9.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Damianwrote on 09.01.2023:[5.0] "Nothing has changed about him since the first time I laid my eyes upon him about ten years ago. He is just a charisma-less short dude with no arm definition that stiffs people and has the same serviceable match every single time he steps into the ring. I liked him enough in the past but he is probably the stalest dude in wrestling right now."
Rating: 5.0
Sentiment: 0.09047619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Enriquepollazzowrote on 27.11.2022:[10.0] "I wish I knew more about his promos and character work, but for sheer consistency in matches and high caliber matches and working non stop for years I think he has to get a 10 because I cant give him a 9.5."
Rating: 10.0
Sentiment: 0.22
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ABQMIKEwrote on 25.11.2022:[10.0] "Ishii is in the realm of legends & mythical wrestlers now. He can still go. You get your money's worth when the spotlight is on. Coming off a great TV tournament match with Ren Narita. Ishii comes in and puts in a dime on TV with Jericho."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: MainEventMasterwrote on 10.11.2022:[10.0] "Possibly the most underrated wrestler ever, he has performed so well for so long and it was sad seeing that this year was possibly his last G1."
Rating: 10.0
Sentiment: -0.008333333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Gerardwrote on 21.09.2022:[10.0] "One of the greatest workers ever. Don't listen to those who think he's too formulaic. He has had incredible matches against a wide variety of opponents. And if you go back in time and watch his work in WAR and Michinoki Pro, he was always a great wrestler."
Rating: 10.0
Sentiment: 0.4333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: texasyoshwrote on 16.09.2022:[8.0] "Ishii is very talented at what he does, but in recent years, his wrestling style has become much more formulaic. Maybe that's come with age, but I don't think Ishii is one of the best in the world. He might be a touch overrated but he is a good wrestler with an excellent catalog of matches. Ishii has been a wrestler for a LONG long time before settling in NJPW in the mid-2000s. Perhaps in modern NJPW, nobody encapsulates fighting spirit more than Ishii. 141"
Rating: 8.0
Sentiment: 0.4281818181818183
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: jboyaquarwrote on 28.08.2022:[10.0] "The Anyman and Everyman of Puroresu. Noone looks more ordinary & is yet more extraordinary. An exceptional brawler whose reliability, dedication to craft, array of exceptional contests and ability to get his opponent over is unrivaled. Any claims that NJPW is a pro-wrestling organization that fairly honors excellence is seriously questioned when this all-time great has never won the IWGP or IC singles belts, has never won or been a finalist at G1 or the NJPW Cup, and yet has had a great match with anyone the NJPW office puts in-front-of-him. The notion that he's one-dimensional should be tossed-aside as, notwithstanding the consistent excellence of his performances, NJPW did not alter his character to reconcile with the substantial number of crucial momentum-killing defeats (ie Makabe in '15) he has suffered t/out the years. The criticism that Ishii too-relies on a singular formula holds little weight as his matches against people like Shibata/Goto are very different than his work with Naito, Tanahashi, Taichi, ZSJ, big-men like Fale/Lee, etc. The attack that Ishii is not a draw can be disputed by certain facts, such as, his Main Event with Takagi in Yokohama in '19 drew more people than all previous pro-wrestling events at the Bunka during the '10's, including Okada/Suzuki in '17, etc. To conclude, if Ishii indeed retires without any of the aforementioned championships, etc desserts, this loyal, longstanding NJPW gaikokojin customer-attendee of over 50 NJPW events, will feel a strong sense of injustice."
Rating: 10.0
Sentiment: 0.2693993506493506
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: PunkPariahwrote on 09.08.2022:[10.0] "Should have been IWGP Champ by now but what are you gonna do. Ishii is THE fucking man when it comes to hard hitting matches. Built like a fridge and with a penchant for murder, Ishii is always a fun guy to watch. He also manages to pull of the no sell style really well. Knowing exactly when to power through, completely ignore, and when to crumble instead."
Rating: 10.0
Sentiment: -0.006944444444444424
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Tyler72wrote on 22.07.2022:[7.0] "I've seen this guy take some intense blows. I'm also impressed with his move set for how big of a guy he is. Loved his matches in his road shows, and especially the one with Katsuyori Shibata."
Rating: 7.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: SquilliamFancysonwrote on 12.06.2022:[7.0] "Overrated, but still perfectly enjoyable and acceptable as an upper midcard act. A poor man's Kensuke Sasaki."
Rating: 7.0
Sentiment: 0.033333333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: k1ngFreire - k1nghoFFFwrote on 24.05.2022:[10.0] "Que lutador incrível, um wrestler que sempre apresenta lutas extremamente interessantes, super regular em suas performaces, um dos melhores brawlers do mundo com dezenas de clássicos ao longo de sua carreira, conseguindo ser uma estrela sempre que aparece em qualquer empresa, participante de algumas das melhores matches de todos os tempos, diversas 5+ stars matches, um carisma e resiliencia únicos, com certeza uma verdadeira lenda do esporte e que merece um dia ser coroado como campeão mundial na NJPW!"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: GreatAether531wrote on 08.04.2022:[9.0] "Ishii is possibly the most consistent wrestler of all time. No one, besides maybe Ric Flair, has a match-quality floor quite as high as Ishii, and so it's no wonder why he's the highlight of every G1. In some ways, the consistency that makes him so special is a detriment. He has a clearly defined style and match structure that can occasionally feel stale, and because he has such a straightforward, stoic character his matches tend not to have the same emotional arc that can raise the ceiling of a match beyond what the in-ring work itself can provide. Despite this, Ishii's intensity, selling, and stiffness allow him to brute-force his way into greatness in almost every singles match he has. Easily in the conversation for the greatest worker of the past decade."
Rating: 9.0
Sentiment: 0.1616984126984127
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: GriffinXwrote on 18.01.2022:[8.0] "Ishii is the guy that most of the time gives you a very good match. If you loved the old school hard hitting Japanese style than Ishii is the guy for you."
Rating: 8.0
Sentiment: 0.3197222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: benny5bellyswrote on 18.01.2022:[9.0] "The absolute don. I don't trust people who don't love the the angry little cherub. Been in some of my all time favourites"
Rating: 9.0
Sentiment: 0.003124999999999989
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "A beloved veteran who can still go as well as anyone in New Japan, Ishii simply had to find his role this year, and that was mainly in the CHAOS Six-Man Champion team. Still maintained a frighteningly consistent form in singles though, matches vs SANADA (NJ Cup), Jay White (Castle Attack), Shingo and ZSJ (G1). Can comfortably handle whatever role he needs to hold, but hopefully he'll be a functioning NEVER Champion for 2022."
Rating: 9.0
Sentiment: 0.20662878787878786
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Wright15wrote on 29.12.2021:[10.0] "Tomohiro Ishii is arguably the greatest in-ring worker to ever live. There has probably never been a better brawler, there may have never been a better seller, and there may have only been a few who were better at pacing and timing. The only other wrestlers I can think of who would give everything they had, night in and night out, no matter where on the card they were or how big the audience, are Manami Toyota, Kenta Kobashi, Will Ospreay, and Ric Flair. Ishii is unique in that, unlike those four, he will never be a world champion. But also unlike those four, it doesn't feel like he ever needs to be. Titles and fame are all superfluous to him. He is not a champion, a mainstream star, or an all-time draw: he is Van Gogh, and the mat is his canvas."
Rating: 10.0
Sentiment: 0.24421487603305786
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Kungwrote on 18.11.2021:[10.0] "Ishii is New Japan's most dependable wrestler. While guys like Okada and Ospreay seem to take the foot off the gas at times during multi-man tags or lesser singles bouts, the same cannot be said about the Stone Pitbull. When I think about the cornerstones of New Japan, Ishii is one of the first guys I think of."
Rating: 10.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: chopsueywrote on 20.09.2021:[10.0] "It's a travesty this man has not held the world title with how consistent he's been over such a long time. It's not to late either, he's still as great as ever."
Rating: 10.0
Sentiment: 0.14
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Ameridragonwrote on 05.09.2021:[9.0] "One of the best brawlers of all time, who has used his unusual/not very star-like look to his advantage with his character, the "Stone Pitbull" who never backs down no matter how outmatched he is. Whenever he has a singles match on a card he is always the highlight for me, which is why it is a shame he seems to be getting less and less, but during the G1 he really gets to strut his stuff and show how amazing he is. The only criticisms I have of him are his look (which he mostly rectified by masterfully becoming the Stone Pitbull, but is probably the main reason why he isn't pushed as a Main Eventer) and he does do the chopping back and forth thing in every single match, while it does fit him, it can sometimes be a little eyerolling. Overall he is definitely in my top 5 brawlers of all time, and is a treat to watch."
Rating: 9.0
Sentiment: 0.19086199294532624
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: SmartForceOnewrote on 17.08.2021:[10.0] "One of the best wrestlers to never win a world title. Ishii is one of the backbones of New Japan, putting on great matches year after year. Most wrestlers wish they had just one in-ring year the quality of which Ishii has had every year since 2013."
Rating: 10.0
Sentiment: 0.40727272727272723
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: FAZEDandCONFUSEDwrote on 11.08.2021:[10.0] "It is a crime that Ishii is not world champion. Despite being around so long and never winning the big one he has not cooled off in terms of audience appreciation or ring quality. I'll always root for him to be champ."
Rating: 10.0
Sentiment: -0.09999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: GGS06wrote on 31.07.2021:[9.0] "Ishii is crazy in his matches, for his age in the mid 40s he somehow risks everything to put on a classic. I'd definitely watch all of his best matches since they are COMPLETELY worth it. Ishii will retire not just as a legend but as one of the best to have never won the World Championship."
Rating: 9.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Lueokawrote on 16.07.2021:[7.0] "Extremely overrated, follows his overdone formula without fail in every match he is in. Once you get done watching all the classics he has, just stop watching his matches as they tend to be lesser than his greatest accomplishments as a wrestler (some wrestlers do it better) who has to meet the flawed quotas that his fans project onto him like an animal in heat that has to be given what it wants. However, I will give him props that he is a solid wrestler but I will not kid myself by bestowing a sacred title such as "Greatest Wrestler of All Time"."
Rating: 7.0
Sentiment: 0.1575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: BrayanLaPrewrote on 06.07.2021:[10.0] "One of the greatest storytellers and brawlers in the history of professional wrestling. Every time I think I'm going to find it redundant, I see the depth of the stories that Tomohiro Ishii is telling. Plus, you can put him in the ring with literally anyone and he can find a way to make them look better than they are. That counts for a lot. More than a handful of my favorite matches ever feature Ishii and he's often the primary reason why. More than anything, no one brings the emotion out of me during a match quite like Ishii. I've literally cried watching his matches and that's the ultimate mark of a great wrestler, IMO."
Rating: 10.0
Sentiment: 0.41000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Lyno123123wrote on 02.06.2021:[10.0] "(15/10) If Cagematch have a "Custom" rating system, This is what i would give ishii. He is the most "Underated" wrestler EVER. There is no wrestler that i have watched that can touch my heart naturally. not Kobashi, not misawa, not Kawada, not Kenny, and not Ibushi or even Tanahashi. 141 is the only person who can never have a bad match even if you book him against an ashtray. there is one thing i love about ishii is that i want him to win against all the booking odds or his opponent odd, or even his own odds. He is probably the ONLY wrestler that i will shed a tear if he ever win a championship."
Rating: 10.0
Sentiment: 0.22833333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: marexcelwrote on 21.03.2021:[10.0] "Sein größtes Problem ist das NJPW-Booking. Ishii bringt so viel mit und verkörpert sein Stone Pitbull-Gimmick wirklich perfekt. In fast jedem G1 der letzten Jahre war er der MVP und die Garantie für gehobene Matchqualität. Gutes Selling, intensive Action und wenn er zum Strike-Austausch im Match einlädt, dann wirkt das real und nicht fake wie bei anderen Wrestler. Sein Charisam ist sicherlich etwas einseitig, sein Look nicht perfekt, seine Mic-Skills kann ich nicht beurteilen, aber wer mich so konstant im Ring unterhält, hat die Höchstnote verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Meaty Boywrote on 12.03.2021:[10.0] "One of the most intense wrestlers on the planet, Tomohiro Ishii can weave a story of perseverance and fighting spirit throughout his matches. Whether he's the underdog or in control, Ishii successfully draws reactions out of even the most jaded of wrestling fans. His selling is on point too, with his masterful use of facial expression and jelly legs Ishii makes you invest into him like no one else. And when he fights back his wide array of strikes will get the crowd roaring his name. Ishii, for my money, is the best Strong Style wrestler in the world today."
Rating: 10.0
Sentiment: 0.42833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: KyleEnjoysWrestlingwrote on 11.03.2021:[8.0] "I like Ishii quite a bit, but his super high rating is a bit surprising. He has a good & unique look. He's not afraid to brawl with the best of 'em. At the same time, he's always lacked something to get him to the text level where the likes of Okada, Naito, & Tanahashi are."
Rating: 8.0
Sentiment: 0.44604166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TENzuwrote on 22.02.2021:[10.0] "He's always been one of the best wrestlers in the world, maybe even at times THE best, and he does it all without any of the big titles. It's incredible to see how good he is even as he grows older. He could easily be booked to win the world title and it would not be questioned."
Rating: 10.0
Sentiment: 0.6249999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Ma Stump Pullerwrote on 29.01.2021:[9.0] "Is getting on in his later years but Ishii is just amazing as the big gatekeeper of NJPW. He's a one track wrestler with a singular way of doing things but the way he can elevate anyone he goes up against with smooth chemistry, as well as that versatility is almost unheard of. He can go in with stiff strikers, high flyers, hardcore brawlers ultimate heels, comedy guys, aces, underrated faces, technical masters, the list just goes on and on. Guy wasn't always perfect but if you study the early WAR days, you can see the pieces come together, even if it took a while. What I also love about Ishii is that he's the ultimate gatekeeper: if you lose to him, it's not a big loss because he's tough as nails and you survived the beating at least. If he loses, then that's a big accomplishment considering he's tough as nails and you managed to get past his onslaught. The concept of "jobbing" doesn't exist for him. Watching his matches has the same aura as watching pre NOAH Kobashi because you legit don't know if he's gonna win or not, because he doesn't have the aura of protection that the main eventers have, there's just unrivalled tension in everything that he does because the result isn't really known. Of course, his zero charisma or mic work will always be a downside (and will probably mean he'll never be a main title holder, as well as his height) but he's a undeniable talent that every company would kill to have because he's a next to perfect workrate guy."
Rating: 9.0
Sentiment: 0.10884332745443859
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: math1823wrote on 15.01.2021:[10.0] "At the moment, I really consider Ishii as the best in-ring performer of the world. He is the best brawler in the world and there's a big gap between him and anyone else, his selling comes from an other world (when he doesn't just get up and scream at his opponent's face), and it has been going for some years now. I know he isn't the most charismatic guy ever, and that he might be suited for midcard, but Gedo please give this man his IWGP heavyweight title reign, or even IC if it still exists, even if it's only for 2 months."
Rating: 10.0
Sentiment: 0.384375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: djv2448wrote on 06.12.2020:[10.0] "move for move, Tomohiro Ishii may be the greatest wrestler in the world today. the things he does are so simplistic, but he can put it together in such a way that every match he has is a highlight. obviously stylistically he isn't gonna be everyones cup of tea, and his brand of charisma may not suck some people in, and for that reason he probably wont ever get the big belt in New Japan. But he has created his own niche as a must watch performer who can appear anywhere on a card. Even in his mid 40s he continues to crank out numerous potential match of the year contenders. The textbook definition of a late bloomer, Ishii is an amazing watch whether he's challenging for the heavyweight belt, or tagging with Yano as the straight man to Yano's comedy nonsense."
Rating: 10.0
Sentiment: 0.15974025974025974
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: medousewrote on 29.10.2020:[9.0] "Harder than splitting an atom is to find Tomohiro's bad match. His in ring performances are always great. He does well in tag teams but his true talent shows in singles. I think he is the MVP of G1 Climax 2020. There is only one thing bothering me when it comes to giving him rating. I cannot give him 10, because for me he lacks charisma and mic skills. He never talks, wears the same gear, doesn't work with crowd. He gets inside the ring, he does his job better than anyone else and then he leaves. Either way, I'm sure there will never be another guy like Tomohiro. This man is one in a million, or even one in a lifetime..."
Rating: 9.0
Sentiment: 0.16875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: RussianZOGwrote on 17.10.2020:[10.0] "The ultimate workhorse of NJPW, the level of Ishii's consistency is mindblowing, he had literally 1 match below 4 stars at g1 30 and that was match against Yujiro, at g1 29 he also had only one match below 4 stars against Yano. And these weren't event bad matches, they were just mediocre. Even more impressive is fact that he's doing it at 44 years old. And it's not just good brawling, Tom is great storyteller as well, his match against White proofs that. The number of his great matches could be exeeded only by number of times I heard "Ishii is so underrated". He suppose to be the most underrated wrestler of this decade. Roses are red, Violets are blue, Ishii should've been IWGP WH champion, And it's true, it's damn true."
Rating: 10.0
Sentiment: 0.22941176470588237
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TylerWhitewrote on 12.10.2020:[10.0] "Ishii zu bewerten ist gar nicht so einfach. Im Ring ist er einer der besten Wrestler weltweit, und zwar wirklich Top 5 Material. Es ist unglaublich, er kann so gut wie kein schlechtes Match haben. Jedes mal gibt er 100% Prozent und das bei einem so harten Stil, weshalb er besonders bei Turnieren immer unglaublich gute Runs hat. Was das Charisma bzw. den Look angeht, kann man sich streiten. Er hat nicht den großen Superstar Look, was ihn wohl auch immer daran hindern wird den World Title zu gewinnen, aber diesen Look hatte z. B. ein Misawa auch nicht und er hat als Champion super funktioniert. Und bei solch einem unglaublichen In Ring Niveau ist das auch für die Bewertung kaum mehr ausschlaggebend. Seine Karriere ist dennoch spannend, denn Jahrelang war er ziemlich unbedeutend und das auch lange Zeit über als er dann bei NJPW war. Er wurde aber gefühlt mit den Jahren immer besser und erst seit den 2010er Jahren ist er auf diesem absluten Top Nivea angekommen, weil er seitdem aber auch die großen Matches bekommt, in denen er das zeigen kann. Und das zieht er jetzt schon seit fast 10 Jahren durch und es ist kein Ende in Sicht. Fast jeder Wrestler in NJPW hat eines seiner besten Matches mit Ishii, doch leider wird er wohl trotzdem niamals den Titel gewinnen. Aber braucht Ishii diesen überhaupt, wenn trotzdem bessere Matches als der Main Event abliefert?"
Rating: 10.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: martizzletaewrote on 28.09.2020:[10.0] "The man has to win the IWGP Championship in the near future, he's that good. One of my favorites and his explosive styles is always fun, I love his short but physical matches as it never gets too long and the pace is usually fast."
Rating: 10.0
Sentiment: 0.25500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: BlakeFR37wrote on 25.09.2020:[10.0] "The most underrated wrestler in this business. From my pov, he deserves a run as IWGP Heavy Champ. Always MOTY's contender in every year."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: taabr2wrote on 17.09.2020:[9.0] "Tomohiro Ishii was a guy destined to work the whole of his career in the midcard but through hard work and awesome matches gained a following and became a star in his own right. Ishii ealry years was spent working for the WAR promotion with Ishii wrestling for the company right up until it's closure. For the next few years Ishii was a freelancer working for many promotions, the most noticeable thing about this time in his career was a story line where Ishii was chosen as the protege of the legendary Riki Choshu. Ishii joined NJPW during the mid-2000s which was a pretty bad time for the promotion. Even still Ishii spent years in the undercard. In 2013 NJPW started to give Ishii a slight push and Ishii started to gain a following, Ishii that year competed in the G1 Climax tournament where in the second night defeated the Ace of the promotion Hiroshi Tanahashi which solidified Ishii spot on the NJPW roster. Since then Ishii has focused his time on the NEVER Openweight Championship. Ishii holds the record for the belt winning it 5 times."
Rating: 9.0
Sentiment: 0.1781547619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: hitakiwrote on 09.08.2020:[9.0] "probably the best powerhouse in NJPW with Shingo and Goto, not so much to say about him but whenever it's a tag or single match he always prove to be the toughest guy in the ring"
Rating: 9.0
Sentiment: 0.3761904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ElPolloLocowrote on 03.08.2020:[9.0] "Tomohiro Ishii is the very definition of an amazing wrestler who only missed the final 1% to be considered an all time great. These days he's pretty limited due to age and past injuries but his matches until 2016 or so were completely insane. You had this crazy stubby bald man who wrestled matches like he was in the golden age of AJPW and NOAH, especially when pitted against equally crazy people like Tomoaki Honma and Kazuyori Shibata: his insane match quality alone was what ultimately propelled him through the ranks as people started to cheer for him and NJPW was more or less forced to push him. When his body started to finally give way he still managed to wriggle the very most out of his now limited moveset by playing on his "tough and hard" image. I don't think his look was what ultimately held him back but his personality. Outside the ring Ishii is more or less Dr Jekyll to his in-ring Mr Hyde and he's probably the worst promo man this side of Ahmed Johnson: he hasn't got the rockstar image and charisma of Tanahashi nor the star qualities of Okada. But I'll be damned if this chaparro didn't put out some of the craziest matches of the past decade."
Rating: 9.0
Sentiment: -0.0800563236047107
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Nightmare19wrote on 05.07.2020:[9.0] "very good pro wrestler but some of his matches r a bit too similar imo. i rly enjoy his classic hard htting matches and his G1 matches are always great"
Rating: 9.0
Sentiment: 0.33083333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: NastyYaffawrote on 03.06.2020:[8.0] "Ishii on paper is one of the absolute finest wrestlers of the last 10-something years. He's a FANTASTIC seller -- the best in New Japan, and overall he is one helluva badass babyface. What is preventing him from getting a higher rating from me is the fact that he is so formulaic. He has a few matches he does, and that seems to be it. I can't hate on it, because that's what gets him hype & love, but sometimes I do wish he changed it up a bit. Still an absolute stud, the Stone Pitbull is."
Rating: 8.0
Sentiment: 0.14053030303030303
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: haroldanthony3wrote on 30.04.2020:[9.0] "Ishii is a one-note wrestler. For the longest time I was trying to understand what made Ishii so great. He is the best wrestler of a style that I don't like very much but I can watch his matches all day long. What I realized is he makes the other guys he facing better wrestlers in whole by facing him by molding the toughness part of their characters. Look at what he did for Taichi for example. Also, his style created the identity for the NEVER championship and he has been able to have title success in both England and America. While you don't necessary want him to have your top belt, if he is in your promotion you need him to challenge for the belt as a way to continue to develop your champion during his run."
Rating: 9.0
Sentiment: 0.3531818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: VillainClubwrote on 23.12.2019:[10.0] "Mir gefällt Ishii sehr und ich bin auch mit seiner Rolle zufrieden. Zum Heavyweight Champion fehlt im etwas, aber für sehr gut Matches ist er immer zuhaben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: AlexLikesJoshiwrote on 13.10.2019:[4.0] "He's fine but extremely overrated.  He's been having basically the exact same lifeless match for years now and is usually less impressive than his opponent.  When it comes to his supposed forte of "strong style" there are better, stiffer workers in NJPW and if you look to NOAH then he gets completely blown away.  A 4 because he does have some upside but for the short time he was relevant and the repetitive matches he's far from a 9"
Rating: 4.0
Sentiment: 0.2044871794871795
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TheV2wrote on 06.10.2019:[7.0] "He put on a lot of great matches. Not really surprisingly for a brawler he has a less versatile repertoire with some powerhouse moves in addition to that. But ironically he can be very variable depending on his opponents, because he knows how to get the most out of it. Good wrestler, but yet I didn't see much more in him."
Rating: 7.0
Sentiment: 0.31190476190476196
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Pm Frankwrote on 23.08.2019:[7.0] "Why people think he is awesome . I watched a lot of his match and he is not good enough to 9. 52  I prefer nearly everyone who is facing currently Tomohiro"
Rating: 7.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: JOEvsISHIIwrote on 15.08.2019:[10.0] "Ishii is the most consistent wrestler in the world and deserves at least one run with the IWGP Heavyweight or Intercontinental championships. He physically can not have a bad match with anyone and has many wrestlers' best match. He is an amazing brawler and seller and knows when to no sell is opponent's offense."
Rating: 10.0
Sentiment: 0.23125000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: samirandres1428wrote on 12.08.2019:[10.0] "The best wrestler of NJPW and one of the best of the world. My god, he can get a 6 stars match from a trash of garbage. Also one of the men that has more figths per year in New Japan. Very underrated in my opinion"
Rating: 10.0
Sentiment: 0.5672727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ToruHirosewrote on 11.08.2019:[10.0] "Tomohiro Ishii is a very reliable workhorse, whose simple style belies his versatility. He plays a great underdog against giants and main eventers, but he's also able to work on top against young lions, juniors, scrappy guys like Honma, etc. He's probably the best in the business at no-selling, knowing exactly when and how to do so. Great facial expressions here, whether he's shrugging off minor strikes or hulking up through the pain late in a match. Yet Ishii's actual selling is top notch as well, often looking like he's legitimately injured. He'll do little things like checking his arm after getting spiked on his (nonexistent) neck, making it seem like he has nerve damage. Many wrestlers can learn from studying the Stone Pitbull. Convincingly conveying pain or anger can garner the same crowd reaction as weapons or crazy dives. As an example, look at the rope break spot in his 2017 Long Beach match against Zack Sabre Jr. In terms of moveset, Ishii uses a small array of basic maneuvers. That means when he pulls out a frankensteiner or piledriver, it actually seems like a big deal (this is the opposite of wrestlers with 150 moves who pull insane stunts every bout). Ishii also isn't a massive guy, yet the way he carries himself evokes a strong presence. His charisma is underrated in this regard, mostly because he doesn't say much, but I like that. He's the strong silent type, which contrasts nicely against the other roster members' crazy hair styles, flashy outfits, and catchphrases. A hopeful part of me wishes Ishii can one day win the IWGP title, like Makabe or even Nakanishi once did. Whatever the case, people claim Ishii isn't underrated anymore, but I beg to differ when looking at how he's booked like just another guy. The only knock on Ishii that people can muster is that he has a match formula that he sticks to, but so does Okada and fans call him the best in the world. I'd rather a wrestler do that than have no identity like a typical indy worker."
Rating: 10.0
Sentiment: 0.12509920634920638
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ShibataWreslerwrote on 28.07.2019:[10.0] "Man, Ishii is truly a beast. This guy does not even know how to have a bad match. Even in his 40's he is one of the greatest in world. There hasn't been a more consistent performer in pro wrestling than the stone pitbull himself."
Rating: 10.0
Sentiment: 0.26250000000000007
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: zephyrwrote on 26.07.2019:[10.0] "Singing Ishii's praises has sort of become the smart wrestling fan's favourite pastime but you really cannot overstate how great Ishii is at making any opponent look as great as they can. His run in this year's G1 is honestly making a case for him as the best active wrestler in the world."
Rating: 10.0
Sentiment: 0.49727891156462584
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: hotdogdiscoursewrote on 17.07.2019:[10.0] "There's nothing quite like watching Ishii come in, do his thing, and leave just as awesome as he came in regardless of how the match goes. Simply amazing."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "Delivers consistently good to great matches. He found his style wich can maybe get repetitive at times but he is just so good at what he does it's hard to not get excited. Great striker with an underrated grappling game. Perfect in his role of underdog who will never hold a major title but can still have some wins over the top stars. He is where he is needed."
Rating: 9.0
Sentiment: 0.35798611111111106
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TheFrenchDisasterwrote on 03.07.2019:[9.0] "I love Ishii, he comes, he kick ass and he leaves and i like it every time. Whether he lose or he win, he always leaves head up and without losing his charisma. Tomohiro Ishii is one of the best fighters in Pro-Wrestling's history"
Rating: 9.0
Sentiment: 0.7666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: jlazaro94wrote on 30.05.2019:[10.0] "One of the greatest, if not the greatest, underdogs in wrestling nowadays (especially with his real-life story background, being considered too small to enter in the dojo, working through the indies to reach the top and not getting pushed until he was in his mid to late thirties) I find his matches really exciting, especially with his no selling moments which sometimes seem almost unnatural, his ability to carry around a pretty limited but effective moveset and his great psichology in the ring."
Rating: 10.0
Sentiment: 0.29450549450549446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: My Bloody Doobwrote on 20.05.2019:[9.0] "Ishii wrestles a very simple style. You want to hit him, he'll hit you back even harder. In trying to not sound as pretentious as possible, Ishii's style get's very old. Objectively I would argue Ishii doesn't have bad matches, but at the same time once you've seen one of his matches, you've seen most of them. Maybe some will never get over his style, but as for someone like me who's seen countless matches of different guys doing the same style, it's hard to find Ishii unique anymore unfortunately. Personally I think his best matches are when he's against someone who decides to hit harder or even better, work smarter."
Rating: 9.0
Sentiment: 0.0006349206349206442
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: PuroresuLoverwrote on 12.05.2019:[10.0] "Every time Tomohiro Ishii enters the arena, I go like: "HELL YEAH! CINDER BLOCK TOM IS IN THE HOUSE, FUCKERS! SHOW SOME RESPECT OR YOU'RE ABOUT TO GET 141 BIT! ". He never does a bad singles match, I always root for him, even if is against Okada or Tanahashi, I hope NJPW gives him a "thank you" run with the IWGP Heavyweight Title."
Rating: 10.0
Sentiment: -0.6999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Garrettwrote on 07.05.2019:[9.0] "His matches with Shibata alone are more than enough to justify his ranking. Ishii is a total badass."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Cherry Chasewrote on 03.05.2019:[10.0] "At the age of 43 Ishii has only shown to improve with age insanely enough. The perfect modern example of improving with age. As to this day, if given a singles match you can expect it to be at least the 2nd best match of the night and be right every time. He plays off his gimmick perfectly. The exemplification of strong style, complimented by his stone wall demeanor with a deadly silent mystique around him. Makes for very interesting character banter, especially when paired against arrogant charisma talents like Naito. He's incredbily reliable and a total workhorse, as elevating many of the top talent when they are chasing for the top titles. He excels at nearly every level you'd want from a professional wrestler. Wrestling & character work are top notch with a kick ass theme song and a pure underdog spirit."
Rating: 10.0
Sentiment: 0.31825396825396823
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: JustAWrestlingFanwrote on 25.04.2019:[9.0] "Despite beign 43 Ishii is better than he has ever been. He is an great example of someone who got better with age. Its amazing how an guy this little can feel so big and terrifying. Absolute brutal with his kicks and punches."
Rating: 9.0
Sentiment: 0.05972222222222226
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: LennartTennhartwrote on 23.03.2019:[10.0] "Tomohiro Ishii, der Mann wegen dem ich eigentlich angefangen habe NJPW zu schauen da er mich damals in seinem Match gegen Okada beim G1 so überzeugt hat. Der Mann ist einfach nur Großartig! Für seinen Körperbau sehr agil und eines der besten powerhouses der Welt. Hervorzuheben muss man hier noch sein selling bzw noSelling das teilweise so unerwartet kommt. Bei jedem Move von ihm gibt es Impact und sieht krass aus, Leider ist sein Moveset nicht so vielseitig was aber zu verkraften ist. Ishii ist mein persönlicher Favorite von NJPW und wünsche keinem vom momentanen Roster mehr einen Run als World Champ."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Kevin41182wrote on 16.03.2019:[9.0] "Ishii is a pure underdog. He's been an underdog his whole career. A phenomenal in-ring worker with the look of a, as he calls it, "stone pitbull" Ishii may one day have a run with the IWGP Heavyweight Championship."
Rating: 9.0
Sentiment: 0.30476190476190473
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: KINGwrote on 09.11.2018:[9.0] "So brutal, Ishii looks like he can't feel pain somehow, and yet it always amazes me! His look is also perfect for an underdog, impossible to not love him with his stocky neckless body, he doesn't look intimidating but when he's in the ring he looks like he could legit kill anyone, and NJPW understood that by finally pushing him in 2013, the NEVER belt was all about him and now that he's not involved in it anymore it almost lost its meaning, he really looked credible when he challenged Naito for the IWGP Title."
Rating: 9.0
Sentiment: -0.04523809523809522
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: RatingsMachinewrote on 15.10.2018:[10.0] "When it comes to having hard hitting, physical matches that are built on brawling or combine brawling with some incredible highspots and drama, Tomohiro Ishii is the best in the business."
Rating: 10.0
Sentiment: 0.40208333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: OrangeAidCrushwrote on 04.08.2018:[9.0] "Ishii is a wrestler people should study. He doesn't have a great look but he has become a legend through hard work and dedication. The way he carries himself in ring and the treamondus heart he shows deeply connects with wrestling fans across the world. He's all heart and toughness but people love heart and toughness so they love Ishii."
Rating: 9.0
Sentiment: 0.30166666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: JokeyZockeywrote on 23.06.2018:[10.0] "Egal ob Best Brawler, Most Underrated oder einfach trocken ''Härtester Hund (pun intended) des gesamten Sports'', Fakt ist: Tomohiro Ishii gehört ganz klar zur gegenwärtigen Weltspitze des Wrestlings! Im Ring einfach nur absolut großartig: Unfassbar stiffer Brawl, gepaart mit Technik, dem vielleicht besten (sportlichen) Selling der Welt und einer Härte, die ihresgleichen sucht! Dazu in seiner Rolle als der ''Stone Pitbull'' unglaublich charismatisch und dadurch Charakter-Work vom allerfeinsten! Wenn du die Sirenen hörst, weißt du genau: Jetzt wird hier GEKÄMPFT! Ishii kriegt mit nahezu jedem ein mindestens gutes Match hin und ist für mich sogar DIE Match-Maschine schlechthin im Wrestling aktuell, seine epischen Schlachten gegen Honma, Goto, Omega und natürlich Shibata sprechen Bände! Bitte, gebt diesem Mann endlich (wieder) einen Singles-Titel, er hat es sich einfach so sehr ERARBEITET! 10 Punkten, alles andere wäre Irrsinn!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Speeblewrote on 19.02.2018:[10.0] "Possibly my favourite wrestler in the world. Capable of having a great match with virtually anyone. If you can't have a good match with Ishii then maybe wrestling isn't for you. His selling is outstanding, he knows exactly when to sell and when to fire up. I love his recurring gimmick of interrupting his opponent's taunts, the best example being his legendary G1 match with Okada."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TheLoudMouthwrote on 08.01.2018:[10.0] "Einer der besten Brawler heutzutage. Ishii hat eine unglaubliche Entwicklung genommen und jährlich einen großen Sprung nach vorne gemacht. Er ist mittlerweile problemlos dazu in der Lage, im Handumdrehen ein gutes Match auf die Beine zu stellen. Die Höchstwertung ist Pflicht bei diesem qualitativen Aufstieg."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Dragon Fighterwrote on 15.11.2017:[10.0] "At least top 5 wrestlers in the world today. He is simply amazing. He can adapt any styles and has great matches with anyone. His psychology is awesome, so is his selling. Anytime he steps into the ring, you can expect at least a very good match. His character is cool. Stone pitbull, badass motherfucker who doesn't give a fuck. He can both work on top and work as an underdog. One of my joys to watch wrestling nowadays. Well deserved 10."
Rating: 10.0
Sentiment: 0.366
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Alex Maedawrote on 04.10.2017:[10.0] "Ishii hat sich die Aufwertung mehr als verdient. Er ist mittlerweile in der Lage, mit fast jedem Worker ein gutes bis großartiges Match auf die Beine zu stellen und ist dabei einfach verdammt over."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: xPETERxwrote on 11.08.2017:[9.0] "Though & Hard. Passt wie die Faust auf's Auge. Kein einzig schwaches Match beim G1 2017.   Sellt Superplexe und Suplexe sehr gut, und führt eben jene sehr gut aus. Kann auch gut Matwrestling verkaufen (siehe G1 Match gegen Sabre) oder gegen Powerhouses (siehe gegen Fale). Einfach 'ne Fighting Machine. Wer meint, er könne nur stumpf auf die Fresse - hat einfach keine Ahnung ;)   Soll sich mal Matches gegen Omega, Okada, Naito oder Elgin anschauen, statt Goto oder Shibata. Aber selbst die waren auf ihre Art sehr gut."
Rating: 9.0
Sentiment: -0.020833333333333343
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: LosIngobernablesdeUKwrote on 10.08.2017:[10.0] "Ishii is one of the best damn wrestlers on the planet right now & has been for many years. I dont even know how it's possible for him to have a ****+ match every single time, it amazes me, he steals the show every time whether its against guys like Okada or Yujiro. I'm really sad though that he has never been IWGP Heavyweight Champion because he absolutely deserves it, even if its a short one. Also I love how he beat Okada in G1 last year & got rewarded with absolutely nothing, thats a real shame. Anyway when this man retires, it will be a sad day, but he will also go down as one of the best wrestlers to have ever step foot in a ring & is hall of fame worthy for sure."
Rating: 10.0
Sentiment: 0.2054154995331466
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ParisTheSpiderwrote on 02.08.2017:[10.0] "Bei Tomohiro Ishii muss ich einfach 10 Punkte geben. Seine Matches sind sehr stiff, und meistens auch 5-Sterne Kaliber."
Rating: 10.0
Sentiment: -0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Randomuser12345wrote on 27.07.2017:[9.0] "How can you not love Ishii? He's incredibly unique in that very few people can pull off what he does. Brings unparalleled intensity to his matches, and can work as a tough, never-say-die underdog, or can put a vicious beatdown on a babyface looking for sympathy. The best example of why moves aren't everything in wrestling."
Rating: 9.0
Sentiment: -0.0873148148148148
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Headlockwrote on 08.06.2017:[4.0] "Ishii, kann nur eins, stumpf auf die Fresse, das ist ja alles schön und gut aber nicht jedes verdammte mal, währe mal schön wenn er mir zeigt, dass er mehr kann als nur rumgestiffe! Chaos' knuddel bär würde mir in der Tag Scene mit Goto allerdings sehr gefallen, da er im Team rumstiffen kann und dan abwechslung mit Goto reinbringen kann"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TooSweetPhilwrote on 21.05.2017:[10.0] "Wenn man jemanden mit dem Körperbau von Ishii sieht, denkt man nicht was der wirklich im Ring kann. Aktuell höchstwahrscheinlich der Beste Seller im Ganzen Business. Sehr gut in allen Belangen, tolle Strikes, Headbutts, aber auch Sachen wie Frankensteiner sind für ihn kein Problem. Stellt dazu natürlich auch immer sehr gute Matches auf. Für mich eindeutig 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Blood Pumpwrote on 30.03.2017:[9.0] "One of my all time favorites. Ishii hits hard and fast (Especially during G1). The nickname 'Stone Pitbull' is an apt one given his size and tenacity. The only problem is he might be a little too intense for his own good sometimes, kind of like Chris Benoit. I really do wish the bookers would commit to giving Ishii at least one good run with the IWGP Heavyweight Championship. Its true that he doesn't need it, but it would be a well deserved feather in his cap. That being said the man is in his forty's and if they haven't trusted him with the title by now I have my doubts that they ever will."
Rating: 9.0
Sentiment: 0.2407738095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: LSEstrelawrote on 01.01.2017:[6.0] "He's definitely talented, but IN MY HUMBLE HOPINION, someone that no-sells basically everything isn't interesting to watch. Sorry, guys..."
Rating: 6.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: killowenskillwrote on 23.12.2016:[10.0] "Probably the best Japanese wrestler modernity. Ishii has made huge progress, and has become much better than it was before. From just a good and promising fighter up to the level of world wrestling, creating masterpieces almost every time out in the ring. Let him already 41 years, but I believe he will achieve much more, and be sure to go to the big leagues, where he received a coveted main championship."
Rating: 10.0
Sentiment: 0.3966666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: SanthoshVNwrote on 18.12.2016:[9.0] "Simply best in the ring very good performer, athletic and hard hitter. i would like to see him holding the IWGP gold"
Rating: 9.0
Sentiment: 0.5394444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Jobbswrote on 07.12.2016:[9.0] "This guy is an absolute beast in the ring. I absolutely love watching him beat the piss out of his opponents and just paces his matches quite well too. I haven't seen one bad match from this guy and has had countless classics over the past few years as well."
Rating: 9.0
Sentiment: -0.07499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: PimpRadiowrote on 03.12.2016:[10.0] "If he were a few inches taller, he'd be IWGP world champion. Unquestionably a top 5-10 wrestler in the world today, in the ring."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: JacobsBawkswrote on 14.11.2016:[10.0] "The Stone Pitbull! The Human Refrigerator! The Man With No Neck! Ralph! Throat-Chop Man! Japanese Headbutt Man! Big Sexy! Tomohiro Ishii, FUCK YEAH~!"
Rating: 10.0
Sentiment: 0.025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: TheWrestlingFanwrote on 12.11.2016:[9.0] "Ishii is damn good. He may be doesn't physically fit to the mold of a true wrestler, but his in ring style is something that cannot be misjudged. Hard-hitting yet sometimes able to do some unthinkable powerful moves. He proves time and time again that he can hang with anyone with his G1 Climax performances as few examples."
Rating: 9.0
Sentiment: 0.2875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: akm0wrote on 17.10.2016:[9.0] "A true warrior and the best brawler in prowrestling today. What really surprise me, is the consistency of his matches: Okada, Shibata, Honma, Makabe... everyone he faces, he brings the best out of them. His chops, his forearms and his lariats (my god, those lariats) are out of this world and it's incredible how he can impose his will being only 5 ft 7 in / 170 cm. Every match he does is a war and a really captivating one. I really hope he wins a major title in NJPW one day, he deserves it - and the crowd loves him."
Rating: 9.0
Sentiment: 0.45124999999999993
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Luv all wrestlingwrote on 10.10.2016:[10.0] "Tomohiro Ishii is one of the best wrestlers I have ever seen, capable of having 5 five star matches in 5 straight days(he has not done that yet) Ishii is one of the best parts of watching NJPW."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: BrentDelivinewrote on 02.10.2016:[10.0] "It's sad to know this man is 40 years old and is just now becoming a big contender for a spot at the top of the NJPW roster. Ishii, along with Shibata, are heavy contenders for my favourite wrestlers in NJPW, but i feel if any of the two deserved the IWGP championship, it'd be Ishii and if we get to see that, then i will forever be happy."
Rating: 10.0
Sentiment: 0.1642857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: PistolPeteMattywrote on 13.08.2016:[10.0] "One of the best workers in wrestling today, an incredible brawler and someone who could make any of his matches worth 5 stars."
Rating: 10.0
Sentiment: 0.7333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: MrJamesssswrote on 12.08.2016:[9.0] "Gladly he became a star in NJPW after years of being treated as a jobber. One of the most intense brawlers in wrestling today, and a guy that doesn't need a wide moveset to do great matches."
Rating: 9.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: jerseyhoolwrote on 25.07.2016:[8.0] "Würde ich Ishii rein nach persönlichen Vorlieben (dh. stiff & strong Style) bewerten, wäre er eine glatte 10. Nur leider heisst Wrestling auch, dass man nicht ständig wie ein Vorschlaghammer auf den Gegner einprügelt. Technisch durchaus versiert, aber leider zeigt er das zu selten. Aber eine Geschichte im Ring erzählen kann er & dies stellt er immer wieder unter Beweis.... vorausgesetzt, er hat den richtigen Gegner. Einen weiteren Punkt muss ich für seinen Stil abziehen - stellenweise hat man wirklich Angst um die Gesundheit dieses Mannes."
Rating: 8.0
Sentiment: 0.10952380952380954
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Delirious434wrote on 08.05.2016:[10.0] "MR. MATCH OF THE YEAR! That's what the Stone Pitbull Tomohiro Ishii really is, a Beast which every match he has is a MOTY Contender, the man can take a Beating and GIVE a Beating, STIFF AF (Which is my favourite Wrestling Style)"
Rating: 10.0
Sentiment: -0.007142857142857131
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: avbiswaswrote on 04.05.2016:[10.0] "Watch his matches vs Shibata, Nakamura, Naito, Honma etc. He is perhaps the best brawler/striker in the world right now, alongside Shibata. Very underrated."
Rating: 10.0
Sentiment: 0.4952380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: RainmakerF7wrote on 03.04.2016:[9.0] "Tomohiro Ishii is one of the best wrestlers in the world right now. This guy is a fucking beast, he can have 15-20 +**** matches every year. He has a great sense of psychology and is always really entertaining in the ring."
Rating: 9.0
Sentiment: 0.39714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Antimasterwrote on 16.02.2016:[9.0] "Einer der härtesten Wrestler überhaupt. Dieser kleine Mann geht wirklich über die Schmerzgrenze hinaus. Ich liebe einfach seine Matches, es braucht nicht immer 30 Flips oder immer neue innovative Wege, den Gegner in irgendwelchen Submissions zu verknoten. Das beweist dieser Mann eindrucksvoll. Ich kenne keinen, der ein Match nur durch großartiges Matchpacing mit gefühlt 4 Moves interessant gestalten kann und dabei nicht nur sich sondern auch seinen Gegner wie den gemeinsten Hund überhaupt darstellen lassen kann. Jedes seiner Matches gleicht einer epischen Schlacht. Durch seine stiffe Gangart ist er glaubwürdig wie kaum ein anderer, und kann durch seine Fähigkeiten auch mit weniger versierten Technikern großartige Matches zeigen, ich glaube fast niemand könnte aus Makabe und Honma die Leistungen rausholen, Wie Ishii das geschafft hat. Man kann ihm ankreiden, dass ihm zwar wirklich die Flexibilität in seiner Matchführung fehlt, die die absoluten Top Stars haben (Was aber noch lange nicht eine miese Wertung wie vom Dragon Gate Fanboy rechtfertigt), aber dieser Mann steht einfach für stiffen Strong Style wie kaum ein anderer, und bekommt deswegen eine ganz starke 9. Ich hoffe einfach, dass er im Herbst seiner Karriere nochmal einen großen Run als IC Champ oder so bekommt, verdient hätte er es allemal!"
Rating: 9.0
Sentiment: 0.4354166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Kevin434wrote on 02.08.2015:[9.0] "Ist der gut, er ist wirklich ein harter Hund, das verkauft der in seinen Matches sehr gut, ist immer für ein gutes Match zu gebrauchen, respekt für ihn das er trotz Verletzung einfach weitermacht. Ishii ist einer für die Zukunft Japans, vielleicht sogar späteres Heavyweight Material, na gut zumindest IC Title. ^^ abwarten und Ishiis Matches genießen. :D"
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Viper99wrote on 30.04.2015:[10.0] "Nakamura mag zwar der KING des Strongstyles sein, aber dieser Mann ist auch ein absoluter vertreter des Strong Styles! Für mich einer der besten bei NJPW und ein Mann der durchaus in der Lage ist grandiose Matches zu zeigen. Man muss bei jedem Match von ihm angst haben das er sich nicht schwer Verletzt oder nicht noch schlimmeres passiert da seine Matches einfach brutal sind."
Rating: 10.0
Sentiment: -0.16666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Izinwrote on 17.03.2015:[8.0] "One tough ass mother fucker. What he lacks in height he more than makes up for with strongman physique. Has the look and the moves of a legit beast in the ring."
Rating: 8.0
Sentiment: 0.05555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Jmajor23wrote on 16.03.2015:[9.0] "Powerful move set. Very believable. Works that Classic Japan strong style, but with an attitude fitting of the stone pitbill moniker."
Rating: 9.0
Sentiment: 0.41
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: llboxingwrote on 26.02.2015:[7.0] "Its not the size of the dog, but the size of the dog in the fight. The Stone Pit Bull is the epitome of that quote.  He's only 5-6 but fights like he's 7 feet tall, He looks more like sushi chef (albeit a mean looking one) than a main eventer but the fans love him because of his tough guy attitude, willingness to absorb punishment and sheer courage.  He's got a bunch of great matches under his belt and in the twilight of his prime, has finally been given a singles push over the last year, winning the NEVER championship and being Nakamura's trusted tag partner and a signature member of CHAOS.  His short and blunt promos are well liked as well."
Rating: 7.0
Sentiment: 0.18194444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Neil Zestwrote on 15.02.2015:[8.0] "Einer der Wenigen, bei dem ich den typisch-japanischen Strong Style, der auch hier so gefeiert wird, wirklich schätze, weil er in der Lage ist, die Aktionen nicht endlos wie ein Mitsuharu Misawa oder ein Kenta Kobashi zu wiederholen und ein Match so auf unnütze Weise in die Länge zu ziehen. Seine Matches sind schön flüssig."
Rating: 8.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Matzinhowrote on 03.11.2014:[6.0] "Ishii mag ja ein gemeiner Hund sein, sehr glaubwürdig im Ring und einer, der sauber austeilen kann. All das schätze ich an ihm - aber als Gesamtpaket ist er für mich trotzdem nicht mehr als ein solider Midcard-Wrestler. Ishii hatte seine Ausbrüche und er hat bewiesen, dass er selten auch mal einen richtig guten Kampf zustande bringen kann. Dafür braucht er aber den richtigen Gegner, der Ishiis viele Schwächen kaschieren kann und einen Sahnetag."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: 8BitLegendwrote on 26.05.2014:[8.0] "Stiffer, typisch japanischer Wrestler. Steckt gut was weg und teilt glaubwürdig aus. Großartiges Match gegen Kota Ibushi bei Back To Yokohama 2014!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: sevendaughterswrote on 19.03.2014:[10.0] "As far as I'm concerned, Ishii is the total package as far as puro goes. His G1 tournament performances were at WORST watchably decent to, at best, some matches of the highest calibre of the year against the likes of Tanahashi, Makabe and Shibata - with styles as varied as it gets, from NJPW main event to wild brawler to stiff technician. His match at New Beginning Pt 2 saved the night from mediocrity, turning in an absolute stunner against Naito to win his first major singles title. Watch that match from beginning to end. In 23 minutes in doesn't leave the ring, there is no filler brawling, everything is carefully structured to allow Naito to look as good as possible in defence.   His gifts are really simple but priceless. He makes the opponents' offensive moves look good. His timing is rarely ever off. He carries himself incredibly convincingly and has such a great degree of intensity that his matches become elevated by his demeanour when he steps into the ring. He has a small-to-medium sized moveset, though it never seems to limit him in the way it does others. Maybe he doesn't talk much, but by Japanese standards that's not a huge complaint: his bodily charisma is what defines him and makes the crowds in Osaka and the Korakuen take to him so well."
Rating: 10.0
Sentiment: 0.17559704184704186
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Kenshin Uesugiwrote on 18.03.2014:[8.0] "Eine böse Schlägertype, der sowohl der brachiale Heel sein kann oder der verbissene Underdog. Unterstrichen wird das ganz auch noch durch seine Figur und Statur die irgendwo zwischen "Yakauza-Problemlöser" und Sportlehrer liegt, ich meine einerseits gefährlich und auf der anderen Seite "knuffig" im sportlichen Sinne natürlich. Hatte ein verdammt starkes Jahr und hat sich mit jedem großen Namen bei NJPW duelliert, wo er grandios auftrumpft. Dabei kann man sogar vergessen das es fast immer die selbe Formel war in seinen Matches und das der Hype um ihn gerade im Westen bei einigen Fans schon fanatisch Züge angenommen hat. Dafür kann er ja nun nichts und es ist toll wenn Wrestler aus der zweiten oder dritten Reihe auch mal vermehrt Spotlight abbekommen."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Leonewrote on 13.03.2014:[9.0] "when PWI gave out the award for most improved wrestler of 2013, it went to Roman Reigns.  But without a doubt, Ishii would have won it otherwise.  Because throughout 2013, this low mid carder and tag team wrestler who held few titles and received little acclaim or reward for over 15 years, had all of a sudden started putting on match of the year candidates with the top stars of New Japan Pro Wrestling.  His G1 Climax Day 4 match against Katsuyori Shibata became 1 of 3 matches that received 5-stars that year (the others from the amazing feud between Tanahashi and Okada), and therefore cementing his place in the history books of quality pro wrestling.  The Shibata match proved that he can tell an excellent story in the ring, with great in-ring psychology and timing.  His move arsenal is classic puroresu, which includes many usual staples such as using the Brainbuster and Lariat as finishers as well as the power bomb, headbutt and enzuigiri.  He then started using a move that hadn't been seen in Japan in years; the Steiner Screwdriver.  Since he was trained by Choshu and Tenryu, it seems only right for him to incorporate their styles into his.  I'm giving him a 9, because even though his improvement in the ring is phenomenal, I would like to see if he can keep it up for another few years and possibly be among the top tier, even if he's in his late 30s now."
Rating: 9.0
Sentiment: 0.19778384494293585
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: eldenaaaaawrote on 16.02.2014:[10.0] "when the word underrated comes around this man pops me too my mind an amazing wrestler"
Rating: 10.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Fountain of Misinformationwrote on 09.11.2013:[8.0] "Wertung vom Oktober 2010: Guter Mann und in kleinen Dosen durchaus unterhaltsam, im Ring quasi eine Mischung und Tribut an die Herren "Masa Choshu" und "Riki Saito" und stets bemüht, finde ich gut, quasi die heutige Ausgabe eines Hiro Saito. Update: Hat sich die zwei Punkte Aufwertung alleine durch seine Leistungen im aktuellen Jahr 2013 absolut verdient. Everybody's Favorite Underdog!"
Rating: 8.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Asumawrote on 17.10.2013:[10.0] "Ich finde den Vergleich mit Mark Henry auch seltsam passend - derzeit mehr als Überzeugend im Ring und daher hier die Höchstnote."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: deathsitcomwrote on 28.07.2013:[8.0] "Wenn ich mir hier mal einen ganz schrägen Vergleich leisten darf: Ishii ist der Mark Henry New Japan's. Ein Mann, der die harte Powerhouse-Schiene fährt und meistens unauffällig in der midcard rumgurkt, dabei aber grundsolide ist. Bis dann irgendwann sowohl die promotion selbst als auch die smarks merken, wie gut der worker eigentlich ist wenn er die Gelegenheit hat, es zu zeigen. Also hoff ich mal, dass es in Zukunft weiterhin solche Gelegenheiten gibt wie in letzter Zeit öfters und trete dem Ishii-Fanclub bei."
Rating: 8.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: STRIGGAwrote on 28.06.2013:[8.0] "Langezeit passte meine Wertung "Unauffälliger Arbeiter im Seilgeviert, der aber immer für mehr als solide Leistungen zu haben ist", doch spätestens seit Anfang 2013 ist Tomohiro Ishii aus der Rolle des Midcarders, der in Multi-Man Matches steht und Young Lions misshandelt, ausgebrochen. Seine schon immer vorhandenen Fähigkeiten weiß er immer besser in Szene zu setzen und hat es deshalb auch trotz seiner geringen Größe zu einem respektierten Star innerhalb New Japans geschafft."
Rating: 8.0
Sentiment: 0.11818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: ShakDragoonwrote on 05.10.2011:[6.0] "Tomohiro Ishii ist weder richtig gut, noch schlecht... aber er ist stiff und das gefällt mir. Zwar wird er nicht wirklich was reißen können, aber solide ist er allemal."
Rating: 6.0
Sentiment: -0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: AndyTNAwrote on 16.12.2008:[4.0] "Wirkt sehr unbeweglich und Brawlt auch nicht überragend."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1210&gimmick=Tomohiro+Ishii
Comment: Rancorwrote on 04.12.2007:[8.0] "Ishii die stiffe Sau. In Sachen Selling zumeist keine Offenbarung, aber wenn der Mann in der Offensive ist, kracht es gewaltig. Guter Worker, der eigentlich nie enttäuscht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Jona5Holt on Xwrote on 18.01.2025:[10.0] "One of the most underrated wrestlers of all time, a genius in the ring. It is a crime he is not in the WON Hall of Fame"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Dweeeabwrote on 23.10.2024:[10.0] "The most innovative wrestler of all time. He has some of the best kicks and knee strikes Ive seen, I absolutely love his scorpion kick and bicycle knee strike he executed them so beautifully. Influencing what wrestling is today as well combining high flying spectacles with heavyweight striking. Very under appreciated by a lot of people truly one of the best of all time."
Rating: 10.0
Sentiment: 0.541
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Joe907wrote on 21.07.2024:[10.0] "One of the most talented wrestlers of all time. Awesome high flyer and such a great technician. Some of his kicks are brutal. His style in the ring influenced the next generation of wrestlers. To this day he still competes at the highest level."
Rating: 10.0
Sentiment: 0.285625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: JediSaiyanMaster1203wrote on 19.06.2024:[10.0] "The fact that this man's trainers consists of Giant Baba and Mitsuharu Misawa alone tells you that this guy should be good, and clearly he is. A man who is one of the most influential wrestlers of the past 20 years who was one of the main younger talents in Pro Wrestling NOAH back in the 2000s, and still a prominent wrestler in the company to this day. A man who has been the basis for many wrestler's inspiration to take notes from or straight up copy with how he wrestles, some of his moves still being used by many guys today. Has had many great matches with KENTA, Minoru Suzuki, Bryan Danielson, Mitsuharu Misawa, Will Ospreay, Jun Akiyama, Katsuhiko Nakajima, Kazuchika Okada, Hiroshi Tanahashi, and I could go on and on. I will admit, there is a part of me that wonders what would Naomichi be like if he wrestled in NJPW instead, just imagine if he came up with the likes of Okada, Shibata, Tanahashi and the others and had the amount of clinics in the 2000s/2010s in NJPW, would be a sight to behold. But hey, he's had some amazing matches in and out of NOAH, so I can't complain. Overall, Naomichi Marufuji is a modern legend in the business and everyone should put some respect on his name!"
Rating: 10.0
Sentiment: 0.2980392156862745
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Khalid Acewrote on 17.06.2024:[6.0] "Here me out , If we are talking Naomichi Marufuji's career I would d rate him way higher but I rate "active" wrestlers based on their recent works. He will always be a great legend to me but I have to treat him as I treated other wrestlers on this site"
Rating: 6.0
Sentiment: 0.15833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: itscalledtaylorhamwrote on 19.04.2024:[10.0] "If Marufuji spent his prime years in NJPW instead of NOAH, he would be held in similar regard as Okada and Tanahashi. If you've never seen his matches, you're really missing out, he's one of the best to ever do it, and his influence can easily be seen today, especially in AEW."
Rating: 10.0
Sentiment: 0.18888888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: FattitudeErawrote on 25.01.2024:[10.0] "The man. Such fond memories of watching Naomichi Marufuji in his prime while growing up and still to this day get a buzz watching him perform. Felt for him in the infamous match vs. Ibushi at NOAH's New Year show... But enjoyed his match vs. Ospreay last year and always look forward to seeing him in singles action. Matches vs Danielson, Kobashi, Nakajima, Sugiura, tag runs with Kenta and matches vs. Misawa and Ogawa.. I could go on. There would be a fair few Marufuji matches in my top 25. Legend."
Rating: 10.0
Sentiment: 0.13737373737373737
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: BigVan JimmyWangYangwrote on 24.12.2023:[10.0] "Quite simply the coolest fuckin dude to ever exist. When that "here we go" hits you know shits about to get wild."
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Wrest lingaddictionwrote on 16.11.2023:[10.0] "Anything less than 10 feels like a crime... Marafuji has become an icon in wrestling and inspired wrestlers across the world. Personally I like his tag matches more but can easily watch his singles matches aswell."
Rating: 10.0
Sentiment: 0.19166666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: TripleCrownwrote on 02.04.2023:[10.0] "Naomichi Marufuji is INCREDIBLY UNDERRATED. Trained by the gods of Japanese pro-wrestling (Misawa & Kobashi), Marufuji has proven time and time again just how close to perfect he is as a wrestler. His bouts with Misawa & KENTA are legendary and are mind blowing even after watching them multiple times. His athletic ability is comparable to Rey Mysterio in his prime, Marufuji is just that damn good. Will go down as one of the GOAT's in pro-wrestling."
Rating: 10.0
Sentiment: 0.49206349206349204
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: ElegantImpactwrote on 28.03.2023:[10.0] "An all time great! His influence not just in Japan, but around the world is very much evident (Ospreay for example cites him as an influence). An absolute star as a junior in NOAH's early days, also is great mixing up with the heavyweights. Has slowed down with age and injuries, but his versatility shines through as he has been able to adapt. Maybe 2023 Marufuji is a 7, but I think ratings should reflect careers and with the highs of his peak and the influence he has had, a definite 10."
Rating: 10.0
Sentiment: 0.3368055555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Brutish Dandywrote on 25.03.2023:[8.0] "He was really the ground zero for the indie-riffic style of the mid-late aughts. That isn't to say his matches were bad, they just had a tendency to go about ten minutes longer than they should have and have too much big move spam. He's become a lot better with age (or maybe the generation following his has just become all that much worse) so he's really grown on me over the last decade."
Rating: 8.0
Sentiment: -0.022222222222222206
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: texasyoshwrote on 16.01.2023:[9.0] "Incredibly important and influential wrestler, who's sort have been the standard bearer for NOAH's juniors. AJPW had Fuchi, NOAH had Marufuji and KENTA. While he's significantly older now, Marufuji can still go. He's had an excellent career and it looks like he has no plans of slowing down. It'll be interesting to see what people think when it's all said and done."
Rating: 9.0
Sentiment: 0.3185185185185185
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Roastertakerrwrote on 07.01.2023:[8.0] "Obviously. His moves are legendary. Great in-ring worker but from the matches I've seen from him. I don't know why he's rated at a 10. He's at least a 8 because of how good he is as a in-ring worker. But in general, I had struggles clicking and connecting to him in comparison of someone like Misawa or a Kobashi. Obviously comparing apples to oranges. But even then, I've always fancied Go instead of Marufuji."
Rating: 8.0
Sentiment: 0.32142857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Young Cardinalwrote on 02.11.2022:[10.0] "A legit legend. He is highly respected but it still doesn't feel like he's recognized enough today for his body of work and influence, but I'm sure that will come in due time."
Rating: 10.0
Sentiment: 0.127
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: BadAssTranslateTradingwrote on 12.10.2022:[10.0] "One of the most innovative and creative wrestlers in recent memory, Marufuji has consistently been one of the best wrestlers in Japan every year since the mid-2000s, this man truly is the heart and soul of Pro Wrestling NOAH, sticking with his beloved home through the extreme highs of the 2000s and the lower points of the 2010s. Whether as a junior or a heavyweight, Marufuji deserves his credit as one of the most influential wrestlers of his generation."
Rating: 10.0
Sentiment: 0.42500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: CROWNS UP Janniswrote on 30.08.2022:"This right here is the GOAT! Without guys like him there wouldn't be THAT Kenny Omega, or THAT Will Ospreay, or THAT Eddie Kingston. Marafuji influenced so many people. And that is no wonder when you look at matches against KENTA, Okada, Miyahara, Suzuki and many more. Of course today he isn't what he was 7 years ago or so, but he still wrestle at a very high level. His nickname GENIUS OF THE ARK is not just any nickname. He really is. His moveset is so adorable. The Hook Kick inspired Ospreay, the knee strike inspired Omega. The Tiger Flowsion or the Modified Emerald Flowsion look so cool and impactful and are a great homage to his former mentor Misawa."
Rating: No rating found
Sentiment: 0.39151428571428576
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: jamzell00wrote on 22.04.2022:[9.0] "So many wrestlers especially in the west owe their careers to this man. So innovative with his offense and is still going strong now. His main event style and tendency to not sell a single thing does hinder some of his matches but I love this bastard so much."
Rating: 9.0
Sentiment: 0.2785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: GriffinXwrote on 20.01.2022:[10.0] "In the early days of NOAH it was the Junior's that helped set them apart from All Japan of old a big part of that was Marufuji. As time went on he became even more important to the company and today is the legend that can still go the best from those truly early NOAH days."
Rating: 10.0
Sentiment: 0.31428571428571433
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: NoSellwrote on 21.11.2021:[10.0] "One of my favorite wrestlers of all time and an absolute pioneer. His rivalry with KENTA is legendary. His moveset is awesome, probably the best combination kicks ever. Precision and quickness."
Rating: 10.0
Sentiment: 0.74
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Headkickahwrote on 10.11.2021:[10.0] "Influence. Creativity. Impact on the industry. Popularity. NM has it all and should go down as an all time great"
Rating: 10.0
Sentiment: 0.32222222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Wrestling Foreverwrote on 18.09.2021:[10.0] "Absolute Legende auch der Wahnsinn das er echt zwei Mal in Österreich gebookt wurde. Bei NOAH ist er einfach ein so wichtiger Mann und trotz seines Alters hat Naomichi es immer noch drauf. Wird man sicher noch lange im Ring sehen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: SpikeWithGlasseswrote on 30.06.2021:[10.0] "The most influential wrestler since Rey Mysterio Jr. this late in his career he's still amazing, Marufuji has always stood out from the beginning and knew how to adapt, in a land of heavyweights and being the protegee of Misawa he had no choice but to be great, and he stood out by being the fastest, most agile wrestler in the roster, as he had to slow down he changed to a more strike heavy moveset. He should be put along with Misawa as one of the best of all time."
Rating: 10.0
Sentiment: 0.3131313131313131
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: C1aranTTwrote on 26.06.2021:[10.0] "Watch any pro wrestling show in 2021 & from top to bottom you will see his influence. Potentially the most influential wrestler of the last 20 years, Marufuji will go down in history as one of the greatest wrestlers to ever step in the ring in my honest opinion."
Rating: 10.0
Sentiment: 0.34920634920634924
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Bushidospirit22wrote on 01.03.2021:[10.0] "Possibly the most influential wrestler of the 21 century along with KENTA. Those two probably did more to change the perception of undersized main eventers in Japan than any wrestler not named Liger."
Rating: 10.0
Sentiment: 0.2916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: rainmakerpunkwrote on 07.11.2020:[10.0] "Not many wrestlers can touch prime Marufuji, that guy was scary good, having some of the most incredible matches ever, his feud with KENTA is a top 5 feud honestly, as he's aged he's barely slowed down and still bring great performances, his NOAH run is an all-time great run, his NJPW run was incredible, his AJPW run was great"
Rating: 10.0
Sentiment: 0.3803418803418804
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: ElPolloLocowrote on 13.09.2020:[8.0] "He cannot (or will not sell) sell a move to save his life and he's not exactly interesting nor charismatic outside of the ring. But when he's on the offensive all can be forgotten: he may not be the Marufuji of 2009-2010 but his offense is still amazing."
Rating: 8.0
Sentiment: 0.21250000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: ProWrestlingGuy316wrote on 28.06.2020:[7.0] "Marufuji ist eigentlich ein großartiger Wrestler, der zudem auch das nötige Charisma besitzt. Allerdings hat er ein gravierendes Problem, das Kota Ibushi vor einigen Jahren hatte und Adam Cole weiterhin hat. Er kann nicht sellen. Wenn sich ein Match darum dreht, dass ein Körperteil von Marufuji "verletzt" ist, kann ich mir dieses Match kaum ansehen. Wenn er aber durch die Luft fliegt und dabei die Seele aus seinen Gegnern kickt, ist er fantastisch."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Tom LeBlancwrote on 06.04.2020:[8.0] "Naomichi Marufuji is known as the "Junior Genius" for a reason. He is one of the best when it comes to unpredictable strings of wrestling and high impact strikes. Had his prime years during a bad era. My heart would give him 9/10 but since he's not as young and fast as he once was, I have to give him an 8."
Rating: 8.0
Sentiment: 0.09888888888888892
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: ReedPryorNYwrote on 06.08.2019:[10.0] "Naomichi Marufuji is the most unpredictable wrestler when it comes to the kinds of moves he strings together and at which point in the match he brings them out. One of a kind, so many classics, in particular his first GHC Heavyweight Title win from Jun Akiyama on 9/9/2006 and his quest to take the GHC Junior Heavyweight Title from Yoshinobu Kanemaru on 7/10/2010. His recent brief but fantastic return to AJPW that lead to a first-time-ever clash on 4/30/2018 with the current Triple Crown Heavyweight Champion Kento Miyahara was special. It was the same place where Marufuji watched his senpai, Misawa-san, lay the foundation for what The Immortal Bird eventually became. Here he was, eighteen years later, to push the talented Miyahara to his absolute limit, the way Misawa-san had done for him so many years ago. Finally, his match with Hideo Itami at his twentieth year anniversary show on 9/1/2018 brought Itami out of the ashes of 205 Live booking and served as a stark reminder to the whole wrestling world how brilliant the two of them really are, especially against each other. Marufuji is an all-time great, and if NJPW really wants to keep their momentum going after all these talent losses, it would serve them well to shell out some cash and bring him back for the G1."
Rating: 10.0
Sentiment: 0.24708951762523196
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: PuroresuLoverwrote on 13.05.2019:[10.0] "Naomichi Marufuji is one of the GOATs of Puroresu, his Junior style is very good, is a shame that he brightened at the wrong time. But still, he's a legend and certainly is in the Top 10 Wrestlers of NOAH and Puroresu in general."
Rating: 10.0
Sentiment: 0.23485714285714282
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: RatingsMachinewrote on 22.09.2018:[8.0] "Naomichi Marufuji can still deliver a great performance. Unfortunately, these instances are infrequent."
Rating: 8.0
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: My Bloody Doobwrote on 26.04.2018:[9.0] "Arguably the highest on the pecking order of the Four Corner's pupils alongside KENTA and Shiozaki, Marufuji is no contest the most talented and most athletic of his bunch. Every move of his is smooth and crisp, and his strikes are a sight to see and hear. His high flying is different than most as while he relies on jumping all over the ring, he is never excessive with his dives. Unfortunately his biggest flaw, especially in recent years, is if it's not a big time match, then his effort is always minimal. He has other few flaws like his inability to connect with the crowd (even though he still impresses them with his skill), and lack of size compared to his senpai, the legendary Misawa. Even though the crowd didn't fully accept him and his generation at his peak, he still must be respected for sticking around through the peaks and lows of NOAH since it's inception."
Rating: 9.0
Sentiment: 0.14176470588235296
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: The Big Blue Machinewrote on 31.01.2018:[10.0] "If Suwama is the ace of All Japan and Tanahashi is the ace of New Japan, well there's no doubt that Marufuji is the ace of Noah. Despite the age he remains astonishing to watch, and he also gives a lot of space to younger wrestlers like Nakajima and Kenoh. Watch out from his kicks!"
Rating: 10.0
Sentiment: 0.12727272727272726
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Dragon Fighterwrote on 29.11.2017:[9.0] "The former ace of NOAH. His offenses look fantastic for sure. That is the one i love from him. The chops, kicks, knees are well-timing, well-executed. The flying moves are amazing. However, his matches sometimes feel like spotfest or go too long for no reason. Another downside is his selling- very hit or miss. He tends to sell poorly or ignore the limb work by his opponents. That's why i don't give him 10 like i do with ospreay or ibushi."
Rating: 9.0
Sentiment: 0.21875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Makai Clubwrote on 20.11.2017:[9.0] "Marufuji get’s a bad rap for some reason but everytime I watch a match of his, I’m amazed by his innovative offense and his athletic ability. His kicks are amazing, his chops are wicked, his knees are brutal, and his hair is amazing. He has unreal amounts of charms for a guy who doesn’t pull a lot of facial expressions."
Rating: 9.0
Sentiment: 0.020833333333333388
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: taabr2wrote on 11.09.2017:[9.0] "I actually think that Marufuji was the better half of his amazing tag team with KENTA. Marufuji was a more versatile worker being able to fly around the ring and work the mat much better than the guy who was chosen to be the next big star."
Rating: 9.0
Sentiment: 0.32333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: TooSweetPhilwrote on 21.07.2017:[8.0] "Marufuji ist einer der besten Puro Wrestler aller Zeiten und fast schon auf dem Level der Besten aller Zeiten Misawa und Kobashi. Sein In-Ring Style ist von vorne bis hinten einfach genial, er bringt extrem schöne Sequenzen, Konter und Athletik mit in's Spiel sodass an sich fragt, was er denn nicht könne. Das einzige was mich ein wenig stört, ist das Ring Pace was manchmal ein wenig eintönig wirkt und ihn so ein wenig "robotic" macht, deswegen "nur" 8."
Rating: 8.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Chekerwrote on 20.02.2017:[8.0] "The criticism I see being thrown around against Marufuji is that he never changed his style one bit. That's not a bad thing in itself, given that Marufuji was and still is ridiculously good, both as a wrestler per se and as a high flier. He seems to have gone down the cards a bit lately but I wouldn't mind seeing him feud with the likes of Nakajima for the HW title."
Rating: 8.0
Sentiment: 0.1508888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: TheRainmaker28wrote on 16.02.2017:[9.0] "Maru is just amazing. He can work stiff, he can work high-flying and his matches are a joy to watch most of the times for me. His style of wrestling and offensive are awesome with those knees strikes, chops and kicks. The only reason why I don't give him a 10, it's because of his selling. But damn, I love this guy."
Rating: 9.0
Sentiment: 0.45510204081632655
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: TrevPuroFanwrote on 21.12.2016:[7.0] "Marufuji is smooth in the ring and very technical. He puts on a great match whenever he wants, however 50% of his matches are spotfests and very boring. Thats why I can't give him higher than a 7. I enjoyed some of his stuff with KENTA, Danielson, Nakajima etc tho. And his performances in the G1 this year, have made me appreciate him abit more, he was really killer in it."
Rating: 7.0
Sentiment: 0.20555555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Claudio Herowrote on 04.12.2016:[10.0] "Naomichi Marufuji ist für mich einer der besten Wrestler Japans der 2000er Jahre ! Extrem viele klasse Matches in denen er immer wieder seine technische Vielseitigkeit sowie Matchintelligenz zeigte ... Auch heute noch ein Garant für Topmatches .. zudem auch in schweren Zeiten NOAH immer treu ! Klare 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: akm0wrote on 18.10.2016:[8.0] "Marufuji will probably go down as one of the best jr. of his time.  He can do almost anything in the ring - from fast paced action to technical mat wrestling - but he relies too much on combination, overkill and move spamming, which is good in NOAH sometimes - since the late ark style is basically this - but not everytime. I used to complain about his strikes a lot, but in the G1 Climax run of this year he showed something different, something new. While he keeps on doing move spamming - ko-oh, flash kick, spinning heel mostly - he's more consistent and it appears he has improved his in-ring psychology which is one of the flaws he had during all his career. Something that would be surely remembered is his feud and tag with KENTA."
Rating: 8.0
Sentiment: 0.24083139083139082
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Mathieu Virtuosowrote on 30.07.2016:[10.0] "Marufuji is not only one of the best in Japan, but is one of the best in the world. His chops are insane, his kicks are innovative, and he has charisma that shows in his matches. He has truly proven himself in the G1 this year and this should only help Marufuji's momentum moving forward."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: TheWrestlingFanwrote on 21.07.2016:[8.0] "I have come to follow Japanese wrestling for about a year or so and I have just watched several Marufuji's matches, but I could say everything he does in the ring is satisfying enough for me. He is so smooth in the ring. His matches with Prince Devitt in Super J Cup Final and Okada in G1 Climax were very good."
Rating: 8.0
Sentiment: 0.2679166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Kevin434wrote on 03.01.2016:[6.0] "Dieser Mann hat diese Wertung hier nicht verdient! Das einzige was der Kann sind große Spots. Grauenhafter seller, und In-Ring Psychologie ist für ihn praktisch ein Fremdwort. Ohne einen Gegner der ihn durchs Match zieht kann der kein vernünftiges Match aufbauen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Xia11wrote on 26.12.2015:[7.0] "Marufuji is a very good wrestler in general, but I don't think his style deserves such a high rating."
Rating: 7.0
Sentiment: 0.27999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Viper99wrote on 27.09.2015:[10.0] "Er ist ein sehr guter Wrestler und ich mag ihn als Charakter sehr gerne! Er ist eigentlich ein garant für Top Matches GEWESEN! Heutzutage ist er immernoch Top, aber die Glanzzeit ist vorbei. Trotzdem 10 Punkte für einen meiner Asiatischen lieblinge"
Rating: 10.0
Sentiment: 0.5625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: eldenaaaaawrote on 24.02.2015:[10.0] "Pro Wrestling NOAHs diamond over the last 15 years. A man who has wrestled all over the world, taking on the best of the best, winning every title in NOAH and the IWGP Jr. Heavyweight title."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: GulakBusickwrote on 14.02.2015:[5.0] "A likeable guy, he was a part of some great tag matches in NOAH in the 2000s. Unfortunately his silly offence became a bit much to take when he moved into long singles matches. One of the most overrated wrestlers around for me. I've enjoyed a couple of his matches whilst GHC Champion but the recent Kojima match reminded me how poor he can be."
Rating: 5.0
Sentiment: 0.061111111111111116
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: JuliTheCage87wrote on 05.01.2015:[10.0] "Erstmals so richtig aufmerksam auf ihn bei Wrestle Kingdom 9 geworden, danach konnte ich gar nicht genug von ihm bekommen! Natürlich kannte man ihn als stetigen Japan-Schauer schon, aber was der kann ist echt unfassbar. Der wirft dir 5 Superkicks in's Gesicht, da ist vom ersten der Schmerz gerade einmal angekommen. Die Definition von Fast Pace! Ich hoffe, ihm bleiben noch ein paar Jahre und Auftritte bei NJPW!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Kenshin Uesugiwrote on 31.08.2014:[8.0] "Ist Marufuji ein guter Wrestler der spitzen Fähigkeiten besitzt, der sogar großes und tolle Matches bestreiten kann ? Ja natürlich, aber der Mann schwankt immer wieder zwischen gut oder grandios und durschnitlich und ach ne das war nicht gerade der Bringer. Maru hat viele selbst kreierte Moves und der/die Tiger Flowsion ist ein wirklich schöner Move und es ist immer begrüßenswert wenn ein Wrestler so etwas macht. Aber es gibt dann auch diese nonsens Moves, die nicht nur meisten gar nicht in den Matchverlauf passen, sondern auch so künstlich aussehen. Der nächste Kritikpunkt ist, das oft auch der Matchfluss und Das Selling und die Logik unter ihm leidet. Und wenn Maru sellt dann sehr oft so übertrieben und lächerlich das es ein richtig ärgert. Ich zitiere einfach mal mein Freund und User Grobrhetoriker: "... Goofy-Seeling (taumeln wie bei einem Sturm auf hoher See, am besten immer zwei Male überschlagen und dann noch bescheuert gucken), was immer total übertrieben wirkt und jede gegnerische Offensive und deren Moves ins Lächerliche zieht. " Ich sehe Marufuji immer noch nicht als den heiligen Messias des Junior Heavyweight im Puroresu. Aber Zeit hat er ja noch, Steigerung ist hoffentlich zu erwarten. Edit: Es wid Zeit für eine Aktualisierung, den Marufuji ist für klar erkennbar wieder besser. Als "Heavyweight" hat er die Qualitäten wieder endeckt die als sehr junger Mann hatte, Kreativität, Beweglichkeit und Technik und das ohne die Schwächen die er in letzten Jahren hatte. Das Selling wird nun durch gezogen und ist fast gar nicht albern. Die Nonsens Moves sind weg, Overkills und mehrfache Kick-Orgien ohne Verstand ebenfalls. So macht es mit NOAH Machtes Spass und Freude beim zusehen."
Rating: 8.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: thebigmatt099wrote on 09.08.2014:[10.0] "Absolute greatest in NOAH's heavyweight division in my opinion. Footage of him is what made me start watching Japanese wrestling."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: TakerFanwrote on 08.03.2014:[9.0] "Vielleicht der beste High End Wrestler der Welt. Hat ein Moveset von circa 400 Moves und entwickelt sich ständig weiter. Wird auch den Verlust von Athletik in späteren Jahren durch seinen Ideenreichtum gut kompensieren können. Sein Selling ist allerdings oft nicht konsequent genug, dafür der Punkt abzug."
Rating: 9.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Roode66wrote on 17.10.2013:[9.0] "Hat mich bei NJPW-King Of Pro Wrestling sehr überzeugt, sowohl von seiner Ausstrahlung her, als auch von den Skillz im Ring. Sehr sauber, technisch gut, kann hart zulangen und wirkte wie eine echte Gefahr auf den Titel. Ich hoffe, ich sehe in Zukunft noch mehr seiner Kämpfe. Der genannte macht auf jeden Fall Hunger auf mehr."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Lecterwrote on 06.06.2013:[9.0] "Man, Marufuji is a bummer. He got really, really good, but then he also became injury prone. As a result, he just hasn't been able to get any sort of steam going for the past many years. Still a brilliant in-ring performer."
Rating: 9.0
Sentiment: 0.47000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Saphirwrote on 12.01.2013:[10.0] "ganz klar 10! wenns 20 gäbe, wären es 20! Das ist mein Lieblingswrestler Japans (Weltweit steht er neben dem Hitman auf dem ersten), der sich ständig neu erfindet im Ring. Marufuji ist sehr kreativ und sauber im Ring. Ob Single oder Tagteam, der hat es echt drauf! Ausserdem wirkt er sehr besonnen. Ich mag den Kerl."
Rating: 10.0
Sentiment: -0.08928571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Fighter Daronwrote on 02.02.2012:[7.0] "Good wrestle, capable of epic things when he wants."
Rating: 7.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: ShakDragoonwrote on 04.10.2011:[10.0] "Ähnlich gut, wie KENTA und einer der Top-Stars der japanische Light-Heavyweight-Szene! Leider ist er momentan wieder verletzt, aber ich hoffe, dass er bald wieder oben angreifen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Phoenix Downwrote on 18.07.2011:[8.0] "Vielleicht der beste High-End Worker der Welt nur das nicht vorhandene Selling und der Hang zum Overkill verhindert die Bestnote. Ansonsten aber ein unglaublich flüssiger, schneller und innovativer Worker. Edit: Hat inzwischen leider viel von seiner Klasse verloren. Ist inzwischen fast nur noch im No-Selling Modus und das nimmt inzwischen schon haarsträubende Ausmaße an."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Mick Funkwrote on 26.06.2011:[7.0] "Ohne Zweifel spektakulär, auf lange Sicht allerdings langweilig, weil ihm Selling und andere wichtige Eigenschaften leider fehlen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Blue Meaniewrote on 28.11.2010:[8.0] "Was Highflying und Technik Skills angeht, ist dieser Mann Weltklasse. Leider ist sein Selling meistens grauenhaft und Ring Psychologie ist auch nicht unbedingt die beste, weshalb eine 10 Punkte Wertung m. E. nicht vertretbar ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Roseswrote on 18.10.2010:[10.0] "Marufuji ist der Momentan beste Worker den es gibt er zeigt sowohl bei NOAH als auch NJPW unglaublich Starke Matches. Aber er wa schon früher Einer der besten er kann sowohl als Tag als auch Single Wrestler überzeugen, mit KENTA eins der Besten Tag Teams. Die tatsache das er auch bei den Heavyweights mit mischt zeichnet ihn nur noch mehr aus(ich glaube zwar eh, dass die Jr. s in Japan bedeutend Besser sind Als die Heavyweights aber das sei mal so hingestellt). trotz Fehlender Mic-skills(die Mman in Japan sowieso nicht erwartet) besitzt er mehr Charisma als so mancher "promo Gott" der WWE. Er ist meiner Meinung nach etwas schlechter als KENTA aber dennoch hat er 10 Punkte verdient, wenn sein Super-Kick Overkill das einzigste Manko ist dann Ändert sies nicht an der Note."
Rating: 10.0
Sentiment: -0.07142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Berlin Dragonwrote on 18.09.2010:[10.0] "Ein fast perfekter Junior Heavyweight. Nur das Selling und die Logik fehlt ihm mancmal etwas , weswegen er mit ein paar kilos und muskeln mehr wohl als heavyweight sogar noch besser wäre. Trotzdem 10 Punkte für einen genialen wrestler , der vor allem mit und gegen KENTA immer in der Lage ist einen MOTYC zu zeigen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Sunglasseswrote on 22.07.2010:[10.0] "Was besitzt er eigentlich nicht? Mir fällt nichts ein. Super Ausstrahlung, Fähigkeiten im Ring und der perfekte Gegner für jeden Wrestler. Wenn jemand gute Matches aus jemandem herausholt, dann ist es Naomichi Marufuji. Noch vor KENTA DER Star der Jr. Heavyweight-Szene weltweit."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Switchbladewrote on 22.06.2010:[10.0] "Einer der besten Junior Heavyweights der Welt momentan. Maru zieht auch die schlechtesten Gegner zu einem starken Match. Die Kombination mit Kenta hat eigentlich immer MOTY Potential."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Sandmannwrote on 06.05.2010:[9.0] "Einer der besten Wrestler der Welt. Konnte mich eigentlich in fast allen Matches die er bei ROH hatte vollkommen überzeugen. Seine Erfolge bei NOAH sprechen natürlich auch für sich. Wirkte immer sehr motiviert egal ob 1000 Leute oder 300 da waren."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: RickRollwrote on 24.03.2010:[10.0] "Übertreibt manchmal mit den Fake Kicks und er macht es auch noch so das es wirklich jeder sieht. Schon die Kick Combo bei seinem Rückkehr Match war gannnnz schlimm. Ich mein, er kanns ja auch mal mit der Hand auf den Oberschenkel schlagen sein lassen, ist ja nicht so schlimm wenn es "klatscht", aber wie auch immer. Trotzdem ändert sich nichts daran das Marufuji JETZT schon ne granate im Ring ist und das er nen sehr innovativen Stil hat. Ist ein klasse Wrestler und ist mit die Zukunft des Puroresu, nur finde ich manchmal sein Selling.. naja nicht sehr klasse."
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: rv27wrote on 08.03.2010:[10.0] "Jedes Match das ich von ihm gesehen habe war einfach gut deswegen die 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: homicidal cena michaelswrote on 03.03.2010:[10.0] "Marufuji ist echt verdammt gut und zeigt konstant sehr gute Matches."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Fountain of Misinformationwrote on 17.02.2010:[8.0] "Abzüge aufgrund seines Superkick-Overkills (kein Japaner haut sich mehr auf die Oberschenkel als er, sollte sich Pads für die Oberschenkel besorgen) und seinem Goofy-Seeling (taumeln wie bei einem Sturm auf hoher See, am besten immer zwei Male überschlagen und dann noch bescheuert gucken), was immer total übertrieben wirkt und jede gegnerische Offensive und deren Moves ins Lächerliche zieht. Seine selbst erfundenen Moves sind auch immer so pralle Ideen, auch wenn ich es generell bewundere, wenn jemand im Wrestling versucht neue Moves zu kreieren. Aktuell und in den letzten Jahren mit acht Punkten ausreichend gewürdigt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Jay Burgerwrote on 28.01.2010:[10.0] "Ich finde, Marufuji ist aktuell einer der besten, wenn nicht DER beste Wrestler Japans, wenn nicht sogar der ganzen Welt. Jedes seiner Matches, das ich gesehen habe war zumindes gut, manche waren Unbelieveble, was sicherlicht nicht nur an seinen Gegner lag. Besonders gut finde ich, dass er sowohl Highspots zeigen, als auch die realistischsten Trust Kicks ever zeigt. Seine Matches sind abwechslungsreich, das einzige was ich an ihm auszusetzten habe ist seine Selling - Schwäche, die er aber durch seine Stärken wieder gut macht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: DJ MaSchwrote on 06.01.2010:[10.0] "Ein stiffer Techniker, dem in Sachen Intensität und Selling auch kaum einer etwas vormacht. Marufuji ist erst 30 Jahre, hat aber schon beachtliche Erfolge erzielt. Eine gewisse Aura kann man ihm auch nicht absprechen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: THE GAME 4-EVERwrote on 21.12.2009:[10.0] "Sicherlich der Wrestler, welcher in der Lage sein wird in die Fußstapfen von Jushin Thunder Liger zu treten. Jetzt schon ein grandioser Wrestler der sich eigentlich jeder Beschreibung entzieht. Doppelt so interresant wie KENTA. One of Japans Finest."
Rating: 10.0
Sentiment: -0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Eddiewrote on 16.12.2009:[10.0] "Auch einer der Kandidaten für den "Best Wrestler in the World"-Award. Einfach schön ihm zuzusehen."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Mankirawrote on 13.06.2009:[10.0] "Glatte 10. Fantastische In Ring-Skills und dazu immer wieder coole Ideen in seinen Matches. NOAHs Zukunft und hoffentlich bald einmal Träger der Liga"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: T-Waynewrote on 04.02.2009:[9.0] "Pole Shift! Einer der coolsten Finisher überhaupt! Und einer der besten Wrestler der ganzen Welt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: 150pwrote on 14.12.2008:[10.0] "Kann fast jeden Stil mitgehen, zählt nicht umsonst zu den besten Workern Japans."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Blazewrote on 01.12.2008:[10.0] "Kommt in meiner persönlichen Top 5 sofort auf Platz zwei nach Bryan Danielson. Im Ring hat dieser Mann eine derartige Energie, dass mich seine Matches gleich noch mehr mitfühlen lassen. Bei all den Matches, die ich von ihm gesehen habe war noch kein einziges schlechtes, dafür einige Hammermatches wie gegen Kenta, Danielson usw. dabei. Gut das er die Möglichkeit hat sich unter Heavyweight zu etablieren und den GHC World Title halten durfte, was ihm bis heute gut gelingt. In Ring Skills sind bereits jetzt sehr, sehr gut wobei er noch einen guten Look mitbringt, was ihn sicher irgendwann, zusammen mit Kenta und Morishima, ganz an die Spitze von Noah stellen wird."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: domi1984wrote on 17.11.2008:[10.0] "Marufuji ist ein toller Wrestler. Seine ROH Auftritte konnten überzeugen. 10 Punkte meinerseits!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Tomkowrote on 02.09.2008:[10.0] "Er ist DIE Zukunft des japanischen Wrestlings und wird wohl mit Kenta zusammen die Nachfolge von Misawa, Kobashi und co. antreten..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: wXw Fanwrote on 24.07.2008:[10.0] "Klasse Mann, einer der besten Allrounder der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Heatwrote on 29.05.2008:[10.0] "Klasse Wrestler, gute Kicks und gute Technik zeichnen ihn aus."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: AnFuwrote on 26.04.2008:[10.0] "Durch diesen Mann bin ich überhaupt zum Puroresu gekommen, seine Ringchemie ist atemberaubend. Er hat auch den namenhaften Titel schon errungen, hatte gute Fehden mit starken Wrestlen und hat diese übertriebene Coolness an sich, Bestnote!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Baby Duckwrote on 25.04.2008:[10.0] "Einer meiner Lieblingspuro-wrestler genialer Techniker"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[9.0] "Wenn es jemals ein Junior als Main Eventer in Japan etabliert, dann sind es entweder KENTA oder Marufuji. Irre, was diese Jungs zeigen."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: LexLuger4everwrote on 27.03.2008:[10.0] "Ist zwar nicht der Charismatischste, dafür aber ein 1 A In-Ring Performer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Kaffoe 666wrote on 25.03.2008:[10.0] "Seine Erfolge sprechen für ihn... und er hat sie wirklich alle verdient! Noch ein ganzes Stück cooler als KENTA & Morishima, die er beide irgendwann einfach überflügelt hat. Beim 16 Carat sogar teilweise mit echt super genialem Heel-Work!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Aaronwrote on 04.03.2008:[10.0] "Marufuji gefällt mir im Ring sehr gut und er kann auch jeden Stil gegen sowohl große, als auch kleiner Gegner mitgehen! Er verdient durch seine Aufopferung für jedes Match einfach die Bestnote!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: D-Stylewrote on 07.12.2007:[10.0] "sehr guter Techniker, stiffe Kicks, 100% im Match, und hatte 2006 und 2007 einige Klassiker abgeliefert. NOAHs neue Nummer 1 wenn er an den Altstars vorbeikommt bookingtechnisch"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: SternessDustOmegawrote on 06.12.2007:[10.0] "Maru ist Klasse. Technisch versiert und hat tonnenweise Charisma finde ich. Der Titelgewinn gegen Akiyama war allerdings zu viel des Guten, kam etwas zu plötzlich leider."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Dave525wrote on 28.10.2007:[10.0] "Stiffe Action, gute Technik und schöne Highflyingmanöver, das alles kann man von Marufuji sowohl gegen Heavyweights als auch gegen Juniors immer wieder in guten Matches sehen. Außerdem finde ich, dass sich seine Ausstrahlung sehr zum Positiven entwickelt hat."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Carlito Cenawrote on 16.10.2007:[8.0] "Klasse Akrobatik und Martial Arts-Moves machen ihn schon irgendwie zu einem Komplettpaket. Ist aber sicher auch noch ausbaufähig."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Carlito ICWwrote on 18.09.2007:[8.0] "Als GHC Champ top, aber mittlerweile... ich weiß auch nicht. Er wirkt immer ein bisschen gelangweilt im Ring. Seine Matches sind aber immernoch top! Mal sehen, wie er sich jetzt erneut gegen Misawa schlägt."
Rating: 8.0
Sentiment: 0.5625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Baszdmegwrote on 17.08.2007:[8.0] "Muss ehrlich sagen, dass ich den Hype um ihn nicht ganz verstehe. Er ist, ganz offensichtlich, bei den Fans ziemlich beliebt und außerdem ein GUTER Wrestler, jedoch für mich nur gut. Eben genauso sind halt auch seine Matches, aber ich habe um ehrlich zu sein gerade mal ein einziges davon gesehen, dass mich richtig angesprochen hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: FiveStarwrote on 31.07.2007:[8.0] "Das Ace der japanischen Jr. Heavyweight Szene und erster Wrestler bei NOAH, der jeden einzelnen Titel gewinnen konnte. In Kombination mit seinen tollen Fähigkeiten im Ring, macht dies Marufuji zu einem der besten der Welt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Rashomonwrote on 23.07.2007:[10.0] "Mein absoluter Liebling von Pro Wrestling Noah. Besonders seine Matches gegen Heavyweights sind einfach fantastisch, sei es Selling oder Comebacks. Selbst sein inflationärer Gebrauch von Super Kicks macht mir persönlich einfach nur Spass. Vor allem bei seinen Gesichtsausdrücken erinnert er mich immer wieder an Junior-Version von Kobashi..."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Wrestlingmashinewrote on 17.07.2007:[8.0] "Sehr gut im Ring wie ich finde. Er bringt Aktionen, auf die muss man erstmal kommen! ^^ Micwork weiß ich jetzt nicht so, aber charismatisch kann man noch ein bisschen dran arbeiten! Aber da er top im Ring ist und das für mich die Hauptsachen im Wrestling ist, verdient er von mir die 2."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Rancorwrote on 08.07.2007:[6.0] "Ich bin absolut kein Fan von ihm. Als ich ihn zum ersten mal gesehen hatte, war ich begeistert, doch das hat sich bald geändert. Wenn ich mir seine großen Singles Match anschaue, kann ich mich daran mittlerweile überhaupt nicht mehr erfreuen. Von seiner Titelregentschaft an hat der GHC Titel in meinen Augen auch ganz stark Ansehen eingebüßt. Vermutlich trifft er bei mir mit seinem Stil und vor allem seinem Verstädnis von Matchaufbau einfach nur genau den falschen Nerv, aber zu mehr als einer 3 kann ich mich absolut nicht durchringen."
Rating: 6.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: HubertHuhnwrote on 24.06.2007:[10.0] "Braucht man nichts dazu sagen-vollig zu Recht mit den Titelgewinnen belohnt und mir gefällt er sogar noch besser als KENTA!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1214&gimmick=Naomichi+Marufuji
Comment: Pulpulwrote on 24.06.2007:[10.0] "Beste Benotung. Führt wohl kaum ein Weg dran vorbei, wenn man sich seine Erfolge ansieht. Sämtliche Titel NOAHs und seine Leistungen im Ring sprechen eindeutig für ihn."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: LoudVoicedwrote on 02.02.2025:"One of the best women to ever join the WWE. So underrated, but still great. Probably should've had more title reigns, but she never dipped in her individual qualities."
Rating: No rating found
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: wrestlingswiftiewrote on 29.01.2025:[7.0] "Was she ever the best Joshi in WWE? No, or was she ever the best Joshi in the world? Also not. But damn, was she always really decent. She was always slower and had softer strikes, and could only do a few submissions really well, but it's her ring psychology that carried her matches."
Rating: 7.0
Sentiment: 0.3611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: jmira17wrote on 14.01.2025:[5.0] "One of the most overrated wrestlers I've ever seen, I don't know the hype around her. She's an average striker ( her stricking is very overrated) , she can do some submission moves and she's fast despite her age ( she does moves very fast but she executes them badly many times) . She is a good seller but her timing is poor and she suffers a lot when she wrestle against highflyers because when she has to receive an aerial move, her positioning is bad and is very dangerous for her rival. Another thing is her "charisma"...... is very forced, she just says things screamming and dancing everytime and it doesn't feel natural. Her character is the same since she arrived to the Main Roster, it doesn't matter if she is face or heel."
Rating: 5.0
Sentiment: -0.02622222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: aoPSIwrote on 10.01.2025:[7.0] "Asuka deserves a 7/10 for 2024. While she is undoubtedly one of the best in-ring performers in the world, her year was limited due to injuries, which kept her from having the impact we're used to seeing. Despite this, her presence and skill when active still shone through."
Rating: 7.0
Sentiment: 0.16755952380952382
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: AceHagannwrote on 09.01.2025:[10.0] "Asuka is awesome in the ring, pretty much always making her matches a highlight. And while her limitations when delivering promos in English detracts from her overall performance, her attitude and presence definitely makes up for it."
Rating: 10.0
Sentiment: 0.24166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: MEDaminewrote on 06.01.2025:[10.0] "One of the best women wrestlers in history, she is really fantastic in the ring, good in the mic, and her career is full of a lot of memorable moments, future hall of famer for sure"
Rating: 10.0
Sentiment: 0.4928571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: ibrokenhearttwrote on 23.12.2024:[10.0] "An incredible elite wrestler, future hall of famer. She has won the vast majority of WWE accolades and is already considered a star."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: maily chgwrote on 17.11.2024:[7.0] "Asuka is a really good wrestler but everyone always forget a point : promos. I know WWE is not letting her do promos in english because they want her to be the crazy japanese, but that makes her a bit boring. Thats sad, she could be one of the best but thats why I would give her 7/10."
Rating: 7.0
Sentiment: -0.05714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Englishorspanishwrote on 10.11.2024:[10.0] "the best women wrestler ever Asuka. amazing in the ring funny and good on the mic despite English not being her first language. she can put on a 4+ star match with 95% of the roster I can't wait to see her back in the ring."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: JackBurtonsTruckwrote on 14.10.2024:[9.0] "Asuka is an innovator and a standout of the womens division. Whether shes in singles or a kabuki warrior, she brings it for the fans. Her NXT run is a thing of beauty"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Rosyawrote on 29.09.2024:[6.0] "Asuka is OK, but it's a conundrum to me why she's got such high votes. Asuka isn't that phenomenal in the ring as folks are used to claiming. I would be a liar if I said her gimmick is worth of TV time. I can't understand and explain the phenomenon of highly-scored japanese wrestlers. They are always playing psycho figures which is wrongly called a charisma"
Rating: 6.0
Sentiment: 0.13714285714285718
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Galmondiwrote on 21.09.2024:[10.0] "She's the goat and she deserve respect for what she did. She's the reason why we have Iyo, Kairi & Giulia in WWE and she's the reason why many mores joshis are going to try to go to WWE (or america). She did even more than expected, she's a legend and she's still very good in the ring and a joy to watch everytime she's on TV."
Rating: 10.0
Sentiment: 0.522
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: thunderrockwrote on 04.09.2024:[8.0] "Asuka is a good wrestler, I thought she was brilliant in NXT and she had the greatest NXT womens title reign of all time. I also thought her time in Japan was very good. But I do believe that having her lose to Charlotte at Wrestlemania 34 was a very huge mistake for Vince to make. I dont think Carmella should have been champion in exchange for Asukas undefeated streak. After that loss, she purely became either a transitional champion, a comedy character or put into tag teams with either Kairi, Naomi or Alexa (though I do really like Kabuki Warriors but I think both should never have been reduced down to the tag team division when theyre so much better as singles competitors. But unfortunately, Asuka just isnt taken as seriously as she was when she was the dominant force in NXT and won the first ever womens Royal Rumble. Sure shes still over with the fans but still I havent been able to connect with Asuka since. Sure shes a great performer and can be very entertaining, but nothing will ever compare to NXT Asuka."
Rating: 8.0
Sentiment: 0.420905695611578
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Cletxawrote on 27.08.2024:[10.0] "Asuka is one of the rare wrestlers who deserves more than 10 points. when I started watching professional wrestling, I came across her nxt title reign. She definitely managed to impress me. Probably the best female wrestler on the wwe roster along with Iyo Sky."
Rating: 10.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: kaszi2Kwrote on 24.08.2024:[10.0] "One of the best professional wrestlers today. Decided that giving us classic after classic in the joshi scene with the likes of Satomura, Shida, and Syuri as Kana wasn't enough and came to America to become arguably the woman most responsible for western exposure to joshi wrestling since Hokuto in WCW and Nakano in WWF/WCW"
Rating: 10.0
Sentiment: 0.2666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Odinohkawrote on 21.08.2024:[10.0] "Asuka is undoubtedly the best wrestler in the world of this generation. She and Manami Toyota are legends. Her in-ring is fabulous, she receives blows like no one else and gives a rare impact to her movepool. She has that wonderful dynamic offered by Japanese wrestling, which she has managed to make accessible and mix with American wrestling. Her characters are powerful and impactful, her entrances and outfits are fabulous, her charisma is unequalled, her technique is perfect, her liveliness of movement and spirit is sensational, and every moment watching her is a joy. After a few years, Asuka's WWE record has finally grown a little, but we all agree that she deserved a thousand times better. She should have been at the top of the card throughout her career, having thrilling reigns worthy of her talent and unfortunately HHH wasn't in charge. Fortunately, her records and talent speak for themselves and I wish her all the respect she didn't get during the Vince years. Asuka deserves the top spot, her WrestleMania Moment and a breathtaking run. It's about time."
Rating: 10.0
Sentiment: 0.36822916666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Jamarkus Colewrote on 15.08.2024:[10.0] "In my opinion she deserves more then a 10, I believe she's the GOAT of women's wrestling and the reason I got into joshi wrestling. At this point she has nothing to prove, and its been great to follow her amazing career although I think her WWE career outside of nxt could have been better!"
Rating: 10.0
Sentiment: 0.5050000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: JulianPera50wrote on 05.08.2024:[10.0] "A legend herself, she has nothing to prove to anyone at this point of her career, she did very good at all of the stages of it. Since she step foot in WWE back in 2016, I followed her journey and certainly she never dissapointed me. I will be always grateful with her (even though I don't and will never meet her personally) to make me get invested into professional wrestling on my teenage years. Great charisma, decent in-ring skills, entertaining even when she just speaks in japanese to cut her promos. She accomplished a lot, but I still wish she gets to win one more title before retiring. Yet if that doesn't happpens, she is already a winner and a megastar for me. A GOAT in professional wrestling, the ever "Empress of Tomorrow". By the way, answering some of the questions down this comment section below, most of us her fans love her because she genuinely showed her love for professional wrestling, dude she even wrestle at Backlash France while being injured, any other wrestler would have relinquished the title and make her opponents and her partner look bad or made the match cut off from the card, but she didn't. Something more? She is a lovely person to her supporters, has anyone else seen that video in which she enters to a wrestling restaurant in Japan and the owner of it cries looking at her while Asuka comforts her and even signs her stuff? This is what makes a wrestler worth more than just been good at the ring, a genuine personality outside and inside the squared wrestling circle, something most of supposedly wrestling fans nowadays have no idea about."
Rating: 10.0
Sentiment: 0.2903465608465608
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Joe907wrote on 02.08.2024:[10.0] "Asuka is one of the greatest womens wrestler ever. I just wish she was booked more prominently. She was a legend in Japan before WWE. She has some of the best strikes ever. Her submission game is great. The in-ring work she does is incredible. She is the Empress of Tomorrow. An all time great wrestler."
Rating: 10.0
Sentiment: 0.6375000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Quack7183wrote on 23.07.2024:[4.0] "Might be the most overrated women's wrestler. Her gimmick is absolutely horrendous. One thing I don't understand is why people love her so much. Her matches aren't too good, nor are her promos. She's really overpushed. The most overrated superstar of all time may be a stretch (considering there are wrestlers like Sonya Deville and Nia Jax), But she is definitely up there. She isn't the worst wrestler imaginable, to be fair. She actually does have a great finisher, but that doesn't change the fact that she isn't that good. 4/10"
Rating: 4.0
Sentiment: 0.3076923076923077
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Khalid Acewrote on 21.06.2024:[4.0] "Asuka is by far the most overrated woman wrestler ever and possibly even including men as well. She only been good for the first year she was in NXT where she put up some good performances. Other than that beginning she's been awful in the ring and she has a dull personality with some atrocious promos. Think of the worst matches whether on ppvs or on regular weekly shows she's definitely appeared in many of them and whenever any wrestler, fan speak of her as if she's Okada or something. 9 rating, Give me a brake!"
Rating: 4.0
Sentiment: -0.016111111111111114
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Rewritewrote on 16.06.2024:[10.0] "Asuka/Kana is one of the best wrestlers in history, from the Indians in Japan having good matches with Meiko Satumura and her arrival to NXT and her push to become champion, without a doubt one of the best wrestlers."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: crs285wrote on 25.05.2024:[9.0] "One of the best modern women wrestlers in the world. She was the definition of dominant on NXT and she has continued to reinvent herself on the main roster to keep herself strong. In the ring she is fantastic and is good on the mic even if English is her second language. Has a great presence that can get a crowd behind her."
Rating: 9.0
Sentiment: 0.33
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: leathermaskwrote on 20.05.2024:[9.0] "It pains me to not give Asuka the full 10 points, but the truth of the matter is that in 2024, she will probably never be a 10 again. This is not a knock on her personally, but the way she's been booked by the company in the past few years has been absolutely disappointing. WIth meaningless wins, only losses when it matters, Asuka is no longer the in-ring threat she once was. She is a complete professional, it has been extremely inspiring to see her these past months getting involved in storylines and matches despite clearly being injured - she knew how much it would mean to properly drop the tag belts to Bianca and Jade at Backlash. Perhaps one day WWE will give her the kind of run she deserves, the run she had in NXT, but I fear that's little more than a dream at this point."
Rating: 9.0
Sentiment: 0.02368421052631579
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: la isla bonitawrote on 05.05.2024:[4.0] "Asuka after 2019 is a complete negation of Asuka before 2019. Previously a brilliant competitor, outstanding in the ring, guarantor of a great show...now a luxury jobber, in whom a complete tragedy on the microphone is highlighted. Thrown into all possible storylines, she does not find herself in them and is now a character closer to comical than serious. Dominator of the NXT era, who in the main roster means about as much as Naomi or Natalya. I give 4 solely for her past. The present is simply a portrayal of the fall."
Rating: 4.0
Sentiment: 0.2064102564102564
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Cosmowrote on 22.04.2024:[10.0] "Asuka is one of the greatest women wrestlers ever and is probably the greatest woman wrestler of her generation and despite her WWE main roster booking slowly chipped away a lot of that aura she had in Japan and NXT she's still a fantastic worker and I really like what she's doing right now as part of Damage CTRL and the Kabuki Warriors"
Rating: 10.0
Sentiment: 0.39319727891156464
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: lukatesa21wrote on 21.04.2024:[10.0] "Miss the time when she was undefeated, she's heel and that explains the number of lost matches in 2024 but still a great wrestler like Asuka shouldn't be losing this much and she should be more respected."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: DanParkeswrote on 08.04.2024:[10.0] "Asuka is one of the very best to ever do it, she's an amazing performer.. in ring and character work there are few on her level of charisma. Asuka is a future hall of famer."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: richies88wrote on 01.04.2024:[10.0] "There are no words to describe how good Asuka is! Even when she's not trying she is really good! How people rate Biance Belair above her is beyond me and just pathetic. She elevated all of her opponents, even really green wrestlers. Her 2023 Kana inspired Asuka reinvention was much needed. I hope wwe centres the tag team division around asuka and Kairi, they're so talented and they can elevate the division and belts!"
Rating: 10.0
Sentiment: 0.23214285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: mxkamiwrote on 11.02.2024:[10.0] "My 2nd favorite pro wrestler ever. And that's a shoot, brother. In 2014, I remember having to deal with some family stuff, forced into caring for an elder of mine in the middle of nowhere with no cable television, internet, nothing. I got on Twitter via my phone, and saw this "Joshi" (I didn't know what that was at the time) with demented clown makeup, a full General's outfit, and a cigar. It was a SHIMMER show, and later I'd find Cheerleader Melissa, Sara Del Rey, Jessika Havoc, Rosemary, and countless others on this show. But it was KANA that roped me in, and it was KANA that got me back into wrestling. I get it. Her WWE run is garbage, and it makes me so sad. Yeah yeah, all the fake accolades, and all that. But my god, they book her like trash. If you want to see PEAK KANA/Asuka, watch her in SMASH, any of her stuff while in Triple Tails, any of her self-produced shows, or her stuff with Tajiri where she's slapping the taste out of his mouth in backstage segs. If you're really feeling brave, you can always find THE infamous match on YouTube. Ya know, KANA and Marufuji v Satomura and Murder Grandpa where KANA booked a worked shoot where Minoru Suzuki just KILLS her. Even as one of my all-time favorite wrestlers, I could only watch it once. And remember, KANA's gonna kill you..."
Rating: 10.0
Sentiment: 0.037500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: RitsuTa1naka69wrote on 19.01.2024:[10.0] "I really wish I could give more than 10 points, and I would only do it for this woman right here. I think Asuka is the greatest to do it, bar none. She's an amazing talent who radiates charisma every time she puts on the face paint and the famous robe. Not to mention the fact that her in-ring skills are absolutely stellar. I have two Blu-Rays that have a bunch of her pre-WWE matches, and every single one is unbelievably good. I think she's an inspiration, someone worth looking up to. She helped me in a very dark time of my life and without her, I really don't think I would be alive right now. I will support her forever. Plus, her YouTube channel is so positive and makes so many people, including me, just really happy. Sometimes when I'm eating, I'll just watch one of her cooking videos so I feel less alone. She's the best, truly."
Rating: 10.0
Sentiment: 0.350780303030303
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: shilderwrote on 14.01.2024:[9.0] "There are very few in the business that have the amount of success and traction that Asuka does. From Japan to the United States Asuka has taken the business by storm accomplishing literally everything possible and apologizing for absolutely nothing along the way. She deserves her flowers and her work is SO appreciated."
Rating: 9.0
Sentiment: 0.088
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: ivxnb15wrote on 08.01.2024:[10.0] "Literally one of the goats of the womens division she always has been She never fails to entertain the crowd with her strikes and wrestling ability and submission games. Her alliance with damage ctrl is neat she fits in with the group"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Enchantiumwrote on 26.11.2023:[9.0] "One of the best current female competitors inside the WWE. Asuka has a perfect wrestling style that can link with anybody and has had many years of excellent matches, from wrestling in Japan to the United States. Everybody usually calls out her promos as her worst attribute, but I think her promos are not at all bad, and you can see a clear improvement from years ago when she first signed with the WWE. Achievement-wise, she has done it all and is for sure one of the best women in WWE's history."
Rating: 9.0
Sentiment: 0.26153846153846155
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: jundeadwrote on 26.11.2023:[10.0] "Asuka is simply great, WWE took the perfect decision by just letting her do her thing. Even after the awful end of her streak or playing a background character for the 4 horsewomen Asuka still shined and WWE knows she is on the top 5 women wrestlers of all time. I just want her to main event Wrestlemania and win, is the only thing she's got left to do."
Rating: 10.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: JediSaiyanMaster1203wrote on 25.11.2023:[10.0] "Similar to Shinsuke Nakamura, Asuka is too good for WWE and I wish she'd leave "The Fed" and go back to Japan where she can be booked consistently, or wrestle anywhere that would use her correctly. Asuka is one of the best pure strikers in the business today, every kick, knee and elbow strike she does looks incredibly solid and knows how to make it look like she's stiffing her opponents when she's not. She's also a great seller, bumper, at character work, facial expressions and very charismatic, she can elicit reactions, despite not being able to speak English properly, her promo battle with IYO SKY is one of the funniest in recent memory, even funnier when you find translations for it. It's a shame the main roster doesn't utilize her too her full potential, she should be a top star in the company with all the tools she has to make it as one, the "language barrier" means nothing when we live in a world where The Great Khali has won the World Title. Her best work in WWE comes from her NXT days, having one of the best women's title runs on the brand and having a winning streak that lead to amazing matches with the likes of Ember Moon, still pissed WWE teased us last year that Kana was coming back and did nothing different. Overall, Asuka is the best women's wrestler in WWE today, no matter how poorly she gets booked, she always outperformers her opponents because Nobody Is Ready For Asuka!"
Rating: 10.0
Sentiment: 0.3231392263650328
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: theeternalsovereignwrote on 28.10.2023:[8.0] "Asuka is probably the best female striker on WWE's roster. She has her faults sometimes misses positioning in the ring and the laguage barrier inhibits her ability to deliver good promos. Or it did for a while until she was allowed to start giving some in Japanese. Even though her gimmick isnt entirely unique its still consistant and played to perfection. Nobody wonders who Asuka was before she was in WWE or who she will be after all that we focus on is she is Asuka and she is great."
Rating: 8.0
Sentiment: 0.4791666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Emanuel606goatFwrote on 07.09.2023:[10.0] "one of the GOATs, one of the best in the ring and arguably the best to come from Japan, she was always very charismatic and always showed what she came for in the ring. managed to prove himself on American soil and already has his name marked in history. a much-deserved 10 for ASUKA."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: celticinvaderwrote on 07.08.2023:[10.0] "One of the main reasons I got back into weekly wrestling was to watch Asuka regularly. Her NXT run was outstanding, she elevated everyone she worked with and had so many all timer matches. Her moveset and athleticism is unrivalled by anyone on the roster, let alone only the women's division. One of the most exciting talents working today."
Rating: 10.0
Sentiment: 0.24583333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: bbwrestlingwrote on 20.07.2023:[10.0] "I ABSOLUTELY LOVE ASUKA! She is 41 but she moves so quick. Her move set is incredible and her charisma is always on point. NOBODY IS READY FOR ASUKA! I hope she'll have great and long reign as a Women's Champion now."
Rating: 10.0
Sentiment: 0.4763888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Loghan Morescowrote on 08.07.2023:[10.0] "The greatest japanese female wrestler of all time, more then proved herself all of these years in the wwe, and all the work she did on her homeland an fantastic performer and with can work well with any character given to she, simply fantastic."
Rating: 10.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: devourblastwrote on 03.07.2023:[10.0] "Probably my favorite female wrestler and safely in my top 5 records. Her NXT run was absolutely amazing and made her feel like an absolute unstoppable machine. The trilogy with Ember Moon was a definite highlight. Her main roster run has definitely had some issues and kind of had her tripping off the starting blocks (especially everything with Carmella), but she has recovered quite well I think especially with the new persona. She is very deserving of all the titles she has ever earned."
Rating: 10.0
Sentiment: 0.2487878787878788
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: AwesomeBomb2002wrote on 22.06.2023:[7.0] "A very good wrestler. Her character was badass at the start, but now is becoming stale and boring since it's the same since 2015"
Rating: 7.0
Sentiment: -0.028000000000000025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Roberto789wrote on 21.06.2023:[6.0] "She is amazing wrestler but she plays the same character many years and now is heel but it's the same, I don't watch any change about her character and the last 3 years she doesn't bring nothing special."
Rating: 6.0
Sentiment: 0.24285714285714288
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Blake17wrote on 17.06.2023:"She wrestles like a guy which is a tremendous complement for a woman wrestler. Easily one of the best, if not the best womens wrestler of all time. A very tough woman that has no problem working stiff though she is limited by WWEs modern style. She bet on herself and her hard work made her stand out in Japan and she has solidified her legacy with her WWE work. Highly respected by her peers in the business. Despite her up and down booking in WWE and even the language barrier to a degree, she has been able to stay at the top through sheer charisma and talent. Her in-ring work is as good as any woman in the world even in her early 40s . Her background in MMA training and mat submission wrestling leads her to have a grounded realistic hard hitting in ring style that helps her stand a part from most of her contemporaries. Shes definitely in the tip-top of female workers in the world and shows no signs of slowing down."
Rating: No rating found
Sentiment: 0.17761904761904765
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Immortan Scottwrote on 31.05.2023:[10.0] "Asuka is, with zero hyperbole, my favorite women's wrestler at the moment. There are others with more talent but no other woman (and almost no man) is as entertaining to watch as Asuka. Amazing in the ring, amazing character work, just all around amazing. The wrestling world is lucky to have Asuka."
Rating: 10.0
Sentiment: 0.4619791666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Frank Shooterwrote on 26.05.2023:[10.0] "If she wasn't held back by WWE style, Asuka would be up there with Manami Toyota as the greatest Joshi ever."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: TheOneAndOnlyCactuswrote on 06.04.2023:[10.0] "Asuka is one of the most complete wrestlers I have ever seen, capable of doing pretty much anything you can ask from a wrestler. Whatever role you give her, whatever company she is, she will find a way to be entertaining when given the chance. She also manages to be captivating on the mic without speaking proper English, which is impressive."
Rating: 10.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: coppercowrieswrote on 13.03.2023:[8.0] "Upper tier of ladies wrestling as a total package. Character work is top class, oozes charisma. In ring work is good to great. Has had fun comedy matches in Japan and many serious contests as well."
Rating: 8.0
Sentiment: 0.2518518518518518
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: cobrenzoswrote on 08.03.2023:[9.0] "One of the best female wrestlers ever in WWE and pro wrestling in general, good charisma and one of the best in ring"
Rating: 9.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: ChrisPrattAsMariowrote on 04.03.2023:[10.0] "Best women's wrestler in the history of WWE and definitely one of the best women's wrestlers of all time. Her NXT run is most definitely one of the best runs in WWE history with great matches against Ember Moon and the last women standing match with Nikki Cross. Even before her NXT run, in Japan, she had MOTYC's on multiple occasions. My favorite match of hers is her and Minoru Suzuki vs Syuri and Yoshiaki Fujiwara."
Rating: 10.0
Sentiment: 0.43636363636363634
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: greaterdalewrote on 02.03.2023:[10.0] "Of of WWE's best wrestlers period. In a perfect world there wouldn't be gender restrictions and she could win the WWE Title as she is so much better than many who have had that belt. Her run in NXT was absolutely legendary and despite not always getting the best booking on the main roster, she still has an aura of legitimacy to her. Please push her to the moon HHH!"
Rating: 10.0
Sentiment: 0.7510416666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: KENTAfanwrote on 21.02.2023:[7.0] "I really dont understand how Asuka is rated so high. Shes a great wrestler with good charisma who has had some great matches, but she has a rating higher than Ric Flair which I find absolutely laughable. Like, I dont mean to sound rude, but I really dont see that at all. She isnt even close to GOAT status and I dont think she ever will be. Where are the 5* matches? Where are the legendary promos/moments to stand the test of time? Asuka is a very good wrestler and can even hold her own as a main eventer, but shes simply not as good as people apparently make her out to be on this site."
Rating: 7.0
Sentiment: 0.2808333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Minorsmile09wrote on 19.02.2023:[10.0] "Indisputably the best woman on WWE's roster right now. I can think of very few stinkers she's been a part of, in fact she was one of the women who got me into rasslin' in the first place. Godspeed, Kana."
Rating: 10.0
Sentiment: 0.3189285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Oswuoldwrote on 16.02.2023:[8.0] "Not the Asuka we had but still One of the most important WWE female wrestler ever while her ultimate titles Reigns pissed me off also cause se was anable to get a win over Mia Jax and other's. I Hope in a final awesome titles Reigns. ****1/4"
Rating: 8.0
Sentiment: 0.321875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: nWo-Joshi-Guywrote on 15.02.2023:[10.0] "I don't necessarily think Asuka is the best female wrestler in the world, though she is definitely amongst them, but she is certainly my favourite. Absolutely amazing look and overflowing with so much charisma even the WWE fanbase loves her despite her limited English. Upon seeing her for the first time (on the back cover of a WWE guidebook at my place of work) I thought to myself; maybe I should get back into wrestling? 15 years on from my childhood stint as a fan. That's how awesome and captivating she is!"
Rating: 10.0
Sentiment: 0.2727040816326531
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: MooGatiwrote on 14.02.2023:[10.0] "When I look through all rosters and think who has it all, who can capture anyone and everyone's attention, I keep coming back to Asuka. She can do it all: funny, scary, sexy, hard-hitting, emotional, you name it. She really is one of the best ever."
Rating: 10.0
Sentiment: 0.20714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: The Sick Lebowskiwrote on 27.01.2023:[6.0] "Dass ich einer von Wenigen bin, die Asuka nicht mögen, wusste ich. Dass meine Meinung und die der Allgemeinheit aber so weit auseinander gehen, habe ich nicht gewusst. Aber ok, auch ich darf mal jemanden massiv schlechter bewerten als der Rest. ^^ Zurück zum Thema: Asuka zündet bei mir nicht im Ring. Ihr Arsenal besteht aus Submission Wrestling - was nur in gewissen Dosen mein Ding ist - , Kicks und Schlägen - was noch weniger mein Fall ist - und den Gegnerinnen mit dem Hintern entgegenspringen - was ich gerdazu lächerlich finde. Lächerlich ist eigentlich auch, wenn sie in Segmenten ihre Show abzieht und anfängt, auf Japanisch wie eine Motorsäge zu quasseln und dabei noch rumtanzt - dies ist aber schon wieder so lächerlich, dass es extrem unterhaltsam ist, weswegen es für sie bei mir überhaupt zu einer mittelmäßigen Note reicht. Ansonsten würde ich hier vielleicht nur fünf, eventuell sogar nur vier Punkte geben."
Rating: 6.0
Sentiment: -0.10714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: BigVanKaelwrote on 31.12.2022:[10.0] "Asuka is the best female wrestler in the planet. This applies to every year you read this in. Currently aged 41, there is no more reliable performer that can put MOTN and MOTY candidates on any given night given the time."
Rating: 10.0
Sentiment: 0.1625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: robrob77wrote on 16.11.2022:[7.0] "She is great in the ring, but not the best. She is charismatic, but cannot cut a single promo, I don't get how she does not speak english after so many years."
Rating: 7.0
Sentiment: 0.4547619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: eltetechoriwrote on 12.11.2022:[10.0] "AAAAASUKA, I love it. The great Japanese WWE wrestler that I like so much. Good wrestling has given but the truth is that his management has not always accompanied him at all well, but well, I've always liked."
Rating: 10.0
Sentiment: 0.52
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: eBentowrote on 24.10.2022:[10.0] "While her character has been stale since about mid-2021, Asuka is undoubedtly the greatest Asian wrestler to ever work full time in the United States. She is a consistent worker and overly entertaining (especially outside of WWE, her YouTube is incredibly fun to watch). Her NXT run is the thing most wrestlers dream of, and she's achieved so much on the main roster too."
Rating: 10.0
Sentiment: 0.2515151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: GreatAether531wrote on 09.10.2022:[9.0] "What is there not to like about Asuka? She's captivating from the moment she steps out onto the stage, with her vibrant personality being conveyed before she even says a word. When she gets into the ring, that character is carried through tremendously, with her joy for violence being infectious. She's also an amazing talent underneath that, with vicious strikes and some of the best submission transitions in the game right now. I think she'll go down as one of the great 'character workers' of all time."
Rating: 9.0
Sentiment: 0.2663780663780664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: TobiGeldner81wrote on 28.09.2022:[8.0] "Sie hat viel Erfahrung und ist sehr athletisch, Promotion ist häufig lustig auch wenn ich sie häufig nicht verstehe. Auf jeden Fall sehr komplette und gute wrestlerin die alles kann. Sie hat nicht umsonst alles gewonnen was man gewinnen kann und ist grandslam Champ"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: GM56 Championwrote on 22.09.2022:[8.0] "Her shouts in japanese are extremely annoying and WWE should bring back her version from NXT. However, she is still very good in the ring and can deliver despite the age she's at."
Rating: 8.0
Sentiment: 0.02749999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: migrationswrote on 14.09.2022:"Asuka is one of the greatest women wrestlers of the modern era. Most of the criticism at her is probably due to the fact that she's in WWE which (used to? ) limit the possibility of what wrestlers can do. It's very by the numbers. In NXT she was best (like most) but has gone on to continually be featured in the upper mid and main event card for years! ASUKA is one of the hardest working women in that she always is on. Whether doing fast wrestling or making Youtube videos or promos, she always has a bright shining personality. In the ring she is second to none in WWE. She has great technical prowess but also does a lot of classic Japanese moves and knows how to hit them well on the other WWE women. Love the spinning back fist, german suplex, armbar and hip attack. Her look is amazing. She is older at 40 years old and looks amazing. She has always had a fit body and exciting hair and her costume never changes. Just the colors. She figured out her costume many years ago. I'm not 100% educated on her Japan run but I know she had awesome matches against Io and Mio Shirai and we've all seen the Shida Omega ass match. Asuka has found something great in her wrestling self many years ago. She remains at the top of her game now for years on end and will go on to win probably many other Women's championships. And Observer and WWE Hall of Famer in my opinon."
Rating: No rating found
Sentiment: 0.3324074074074075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Tyler72wrote on 11.09.2022:[7.0] "Asuka! Obviously she just has such an awesome gimmick. Great in-ring skills and I also love her personality outside of wrestling too!"
Rating: 7.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: GwenCube64wrote on 05.09.2022:[10.0] "Probably the best women's wrestler WWE has ever had the pleasure of booking, and in general is an all time great."
Rating: 10.0
Sentiment: 0.6166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Kiryyuuwrote on 30.08.2022:[9.0] "Definitely one of the greatest women wrestlers of all time. She has a fantastic look and absolutely oozes charisma. I only saw her stuff in NXT and Raw, and she always puts on, at least, a good performance. The quality of some the wrestlers she wrestles on Raw has affected some of her matches for me, but those are average at worst. Her gimmick work is tight and she's entertaining at hell even when she's not wrestling or doing a promo. Speaking of promos, she shouldn't be doing those if she's gonna do Vince's racist stereotypical Japanese person gimmick. She's way better than that and doesn't need to do any of that stuff to get over."
Rating: 9.0
Sentiment: 0.019368131868131848
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: CognacConversationwrote on 28.08.2022:[10.0] "One of the very best today. Even when I had stopped watching WWE during its worst phases, I would always make sure I caught up with Asuka's matches and segments. Her in-ring skills are second to none. The chemistry she has developed with women like Becky Lynch and Charlotte Flair have meant they regularly deliver some of the best TV and PPV matches WWE has to offer. Love how effortless her movements are in the ring. Asuka is someone who could carry Nia Jax (of all people) to a good match. Also her quirky personality is always a source of joy. Her mannerisms, one-liners and even random dancing are great little touches to her work."
Rating: 10.0
Sentiment: 0.2651785714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: CTFBwrote on 06.08.2022:[10.0] "When we're talking some of the best female wrestlers of all time, Asuka is one of the greatest. And this isn't just a minority opinion, this is something shared by most fans. One of the most versatile and excellent wrestlers on the planet, and not only is she an amazing in-ring competitor, she's one of the most respected workers when it comes to backstage stuff and also extremely charasmatic."
Rating: 10.0
Sentiment: 0.49749999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: UltraNano54wrote on 17.06.2022:[10.0] "One of the greatest female wrestlers of all time in my opinion and easily the best women WWE has ever had."
Rating: 10.0
Sentiment: 0.6083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: jamzell00wrote on 07.06.2022:[10.0] "One of the most consistent performers in the history of wrestling at this point. She's proven she cant be held down the wwe's awful booking or want for everyone to cut pure english promo's. You understand everything you need to know about Asuka by how she carries herself and her matches which is how it should be. Idk why it cant be like this with all foreign talent but by the grace of god the wwe just let her be herself and it worked wonders"
Rating: 10.0
Sentiment: -0.045181405895691605
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: texasyoshwrote on 10.05.2022:[10.0] "Asuka is still one of the best women's wrestlers in the world at 40 years old. Phenomenal no matter where she's gone."
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Wrestling Foreverwrote on 09.05.2022:[9.0] "Hab zwar ein wenig von ihrer Kana Zeit gesehen aber so richtig nun erst durch ihre Asuka Zeit. Ich hätte jetzt auch nicht gedacht das sie fast ein Jahr schon WWE NXT Women's Champion ist. Im Ring super, kann auch gut Englisch ich finde ihr Outfit auch klasse ist auch eine Joshi die sich immer neu erfindet. Von den Joshi die, die WWE verpflichtet ist sie eine der besten. Wenn sie in den Main Roster kommt hoffe ich das sie dann genau so stark eingesetzt wird wie bei NXT. Edit 06. 12. 2020 Ich würde mal sagen sie ist inzwischen eine WWE Legende. Sie war längste NXT Women's Champion und hat den Titel unbesiegt abgegeben, sie hat den ersten Woman Royal Rumble gewonnen und war auch die erste Japanerin der das gelang. Dritte WWE Woman's Triple Crown Championesse, zweite Grand Slam Championesse. Wenn Sie klasse Gegnerin hat kommen starke Matches heraus. Edit 20.02.2022 ich vermisse sie im WWE Ring. Es gibt leider überhaupt keine Infos wann sie wieder in den Ring zurück kommt. Edit 09.05.2022 schön sie ist wieder da. Sie lief lange wegen einer Schulterverletzung aus kann aber nicht die einzige Auszeit sein. Da war auch was von einem neuen Zahnarztbesuch."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: zacharymahabirwrote on 25.03.2022:[10.0] "When it's all said and done, Asuka could easily go down as the very greatest women's wrestler ever. She's easily one of the most consistent and fundamentally capable wrestlers ever, regardless of any classification."
Rating: 10.0
Sentiment: 0.3712962962962963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Asuka is the greatest female professional wrestler of all time. Even with the language barrier of me not being able to understand her in her native tongue, her enthusiasm for violence is infectious and she makes me want to watch her kick some f'cking heads in."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: markoutssjwrote on 27.01.2022:[10.0] "Asuka's overall body of work is unmatched, shes been able to achieve so much around the world and at a high level doing so. She's by far one of the best wrestlers in the world in ring, she's extremely charismatic, has a fantastic moveset, selling, and psychology. Her character is great too especially back in NXT when she was unstoppable, just so much believability there. It does seem on main roster though shes the 5th fiddle to the 4HW which sucks for her because she's easily just as talented if not more at age 40 but regardless she's had a great career despite that with multiple women's title reigns, tag title reigns, a royal rumble win, and some memorable matches."
Rating: 10.0
Sentiment: 0.3355
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: mjs2212wrote on 21.01.2022:[10.0] "Absolutely outstanding wrestler. Asuka was booked like a killer on NXT, and although her Raw and SmackDown runs haven't been quite as great, she is still a dominant force on both rosters. Her charisma is great, and she can be serious, comedic, and intense all at once. So fun to watch all the time. I also loved her tag team with Kairi Sane, and I felt that her character became even more iconic when she adopted the Green Mist into her arsenal. It makes her that much more unpredictable and great. On top of that, she of the most gorgeous entrance attires, and she seems like she has so much fun being in the ring. I have no doubts that Asuka is the greatest female wrestler of all time."
Rating: 10.0
Sentiment: 0.38346153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: HopelessHelenawrote on 07.01.2022:[10.0] "Not only an amazing wrestling inside the ring, which by now is a well known fact, but also so much fun to watch as a character. She truly is a one of a kind talent and should be seen as an example by any aspiring wrestler."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Dy1789wrote on 27.11.2021:[9.0] "Best women in ring performer today. Really loved her undefeated NXT run. Has had a good run on the main roster as well. She has a ton of charisma that mostly makes up for her lacking ability to cut promos in fluent english. Overall one of my favorites for sure."
Rating: 9.0
Sentiment: 0.4458333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: twostagetommywrote on 19.11.2021:[10.0] "Trailblazer in Japan, trailblazer in the USA. Best japanese wrestler ever in WWE, she has wrestled men and women. She has done i all. Some people don't realize what she has accomplished. Once in a lifetime performer."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: kfztkfzt2021wrote on 22.10.2021:[10.0] "Tremendous wrestler, legendary skills. She's is probably the best pure striker on the womens division, amazing technical skills, perfect submission arsenal and execution, truly one of the best of the womens division. Great character portray, and pretty good on the mic, knows how to show intensity and heat . Very charismatic, and knows how to connect with the crowd. she deserves everything she gots."
Rating: 10.0
Sentiment: 0.628968253968254
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: nWoSting145wrote on 19.10.2021:[10.0] "One of my all time favourite pro wrestlers and the most successful Japanese wrestler with regards to the accolades and matches she has had in the co lane compared to previous Japanese wrestlers. She can be scary, sexy and funny, sometimes all at once. Great look, charismatic, over despite the hot and cold booking, delivers in the ring with whomever she? s put with. no doubt in mine and in the fans eyes, a future hall of famer."
Rating: 10.0
Sentiment: 0.17564102564102563
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: LivingLegendwrote on 15.10.2021:[10.0] "One of the best wrestlers period. Has insane amounts of charisma, has a great, memorable, and unique look, and is incredible in the ring. She can get a good match out of literally anyone. Her offense is varied, and her selling is great as well. I don't really have anything else to add. She's just incredible."
Rating: 10.0
Sentiment: 0.5175000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Lord AdGnalDivwrote on 11.09.2021:[10.0] "Asuka is definitely my favorite wrestler and I think she's objectively one of the best in the world as well. Her aura is totally unique and it's always a ton of fun to see her in the ring. She's consistently proving that she's eternally over, no matter what WWE does with her."
Rating: 10.0
Sentiment: 0.4041666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: rodriguesevewrote on 13.08.2021:[9.0] "Asuka has the potential to be one of WWEs all time greats, and I have no doubt in my mind she will be treated as such in the future. Her talent in ring is like no other, great striker and just overall very entertaining in the ring. They also got around her english struggles quite well to the point she barely speaks the language yet she's still a top star and has great character work when allowed. Honestly I think what she's missing is one really good all time great match and maybe I'd consider bumping her up to a 10."
Rating: 9.0
Sentiment: 0.31749999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Forerunnerwrote on 01.08.2021:[10.0] "I look at her a lot like Daniel Bryan. An incredible run pre-WWE and then completely overachieved in WWE. He may have been more successful, but that's because women don't have as many opportunities, doubly so if you don't speak English. And with that in mind, Asuka really has done well for herself and I think absolutely raised the bar for women in WWE."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: voltxtreanwrote on 23.07.2021:[10.0] "Asuka ist eine Legende und immer noch aktiv. Ich weiß nicht, wie lange sie noch arbeiten wird, aber ich habe das Gefühl, dass sie noch eine Weile weitermachen könnte und ich hoffe es. Sie ist durchweg die beste Performerin in jeder Division, in der sie in der WWE war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: BrayanLaPrewrote on 13.07.2021:[10.0] "As Kana, 10/10. As Asuka, 10/10, This generational talent helped define NXT, Stardom, and this generation of Raw/SmackDown WWE. The Empress of Tomorrow has countless classic matches and a character that never fails to compel. One of the greatest of all-time, with a fair claim to No. 1."
Rating: 10.0
Sentiment: 0.42333333333333323
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: doxkevwrote on 20.06.2021:[10.0] "Another amazing Japanese lady wrestler. My ratings are on wrestling. Completely misused on the main roster. I think wwe has more talent then they know what to do with and just sign people so other wrestling companies can't compete. Asuka, Meiko, Sasha are really on another level."
Rating: 10.0
Sentiment: 0.20595238095238094
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: zags7000wrote on 16.06.2021:[10.0] "Quite possibly the greatest women's wrestler of her generation and one of the best overall. She's very charismatic as well and can tell a story without the mic. She might struggle with English, which makes sense but she has gotten much better over the years. Still, she could have used a manager through her run. However, she's been able to get fans behind her still and that says a lot."
Rating: 10.0
Sentiment: 0.3611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: dodonawrote on 20.04.2021:"The Best There Was, The Best There Is, The Best There Ever Will Be: that's Asuka/Kana! Hope she'll be the champion forever!"
Rating: No rating found
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: shootingstarzeuswrote on 27.03.2021:[10.0] "Asuka is amazing. Her look is extremely distinct, she can flip between unwavering intensity and likeable comedy in the blink of an eye, and she is a force to be reckoned with in the ring. She has been a pillar of the women's division since she came to WWE and pretty much represents the opposite of anything in the 'Divas' era. Also her theme song is very catchy!"
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Kungwrote on 31.01.2021:[10.0] "One of, if not the greatest female wrestler I've ever seen. She has an unquestioned presence, her in-ring ability is top of the line, and she's brought lesser wrestlers to fantastic matches all throughout her career. She's definitely one who I'll never forget."
Rating: 10.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: pierreMinnewrote on 28.01.2021:[10.0] "Sadly I didn't saw yet what she was capable of outside of WWE but she is currently one of the 3 bests workers in WWE right now. She is very fluide and has a science in the ring that nobody else has. Truly charismatic and great as a face like as a heel."
Rating: 10.0
Sentiment: 0.18571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: SammyMayawrote on 27.01.2021:[10.0] "Is there anything that this lady cannot do? Rules the roost in the WWE; they cannot book her properly because she's better than everyone else. Has to slow down during matches so others can keep up. Bucked the system in Japan and went her own way. I would like to believe that by standing her ground, the treatment of joshi workers in Japan has improved. She seems to be enjoying her time as a sports entertainer in WWE after the brutal years she spent in Japan and during her US crossover days with Chikara and SHIMMER; I can't say I blame her! Her personality is infectious; her skillset is tremendous; a brutal striker. At 39 years of age, she is still as fit as ever and seems to be the final arbiter on the future of her career. An AEW run after her WWE contract expires would be tremendous; would love to see her now against Shida! Heck, I would love to see her against Io, Kairi, Thunder Rosa, and Syuri!"
Rating: 10.0
Sentiment: 0.09913194444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Brett1980wrote on 23.01.2021:[8.0] "Was much better in NXT. On the main roster her career kept starting and stopping and for a lot of it was nowhere. Has had success though but when shes not in the championship picture she gets misused. Has good looking kicks."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: chinomorenowrote on 11.01.2021:[10.0] "We will probably never see her at her true potential in WWE, which is too sad, but we can't ignore what a great wrestler she is."
Rating: 10.0
Sentiment: 0.1625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: STARDOGCHAMP90wrote on 21.10.2020:[10.0] "Hands down one of the best female wrestlers currently signed with WWE. She has an interesting gimmick, good storytelling, amazing wrestling ability, great move set, and an overall stunning persona. Glad WWE capitalized on her and made her a 4 time women's champ and a former women's tag champ. Great performer in the ring and great vlogger on YouTube."
Rating: 10.0
Sentiment: 0.4317460317460317
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Legend003wrote on 07.10.2020:[9.0] "Sie gehört definitiv zu den besten Wrestlerinnen der Welt, wobei in letzter Zeit sie ein wenig abgebaut hat, liegt vielleicht auch, dass sie kein vernünftiges Programm hatte. Im Ring sehr stark und am Mic kann man sie auch anhören."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Okaro143wrote on 02.10.2020:[9.0] "One of the best female competitor I have seen inside the WWE ring. She is just so good and talented. Just exudes an insane charisma which was best highlighted during her undefeated run in the black and gold Brand, NXT. She is one of the best active workers in the WWE ( male&female) at the moment."
Rating: 9.0
Sentiment: 0.34444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: martizzletaewrote on 22.07.2020:[10.0] "Entertaining, intense, cool, dope theme songs, amazing wrestler, and has a bomb YouTube channel! Asuka truly has ser herself apart from the women. If there's anyone who I could say compete with the Horsewomen in terms of full appeal, shes it. No One is Ready!"
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Cibswrote on 08.03.2020:[10.0] "The second best female wrestler on the WWE roster. Asuka is really good, is not as charismatic as some others but manages to disguise it with a very intense and effective work in the ring"
Rating: 10.0
Sentiment: 0.43714285714285717
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: AAA3000wrote on 07.03.2020:[9.0] "Immer noch richtig gut. Kann gar nicht glauben, dass sie schon fast 40 Jahre alt ist. Sieht man ihr weder äußerlich noch bezüglich ihrer Leistung innerhalb des Rings an. Neben Alexa Bliss und Becky Lynch in meiner Top 3. Asuka darf mich jeden Tag mit ihrem grünen Nebel besprühen."
Rating: 9.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: TheV2wrote on 30.09.2019:[8.0] "From what I've seen of Asuka and from the little bit I've seen of Kana, she is indeed one of the best female wrestlers who has a tremendous aura. Her hip attack seems like the only not extremely painful to watch move in her repertoire. And yet she doesn't injure her opponents, which leaves me questioning every time. Her charisma could help her a lot to break the language barrier in NXT, which didn't involve too much talking anyway. However in the story-entertainment intensive program of the WWE they still didn't find a good way for her and it's definitely not as easy as most fans make it look like. Hopefully opportunities will come to let her talk in Japanese without an annoying crowd. But let's be honest, she's near her 40s and in the end the WWE seems to be a fun-filled vacation for her, so I'm happy for her."
Rating: 8.0
Sentiment: 0.22527777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Jh22387wrote on 23.08.2019:[7.0] "Asuka is definitely a very good performer but recent times have exposed that she is regarded as better than she truly is. Her in ring work is certainly the best attribute she has. I guess I just feel she is missing the "it"factor. She, in my opinion, is lacking slightly on the charisma aspect of what it takes to be a great pro wrestler. She's good, even really good, but not great. Solid 7 that could become an 8 with just a little work."
Rating: 7.0
Sentiment: 0.2977014652014652
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: VanguardWhowrote on 08.08.2019:[10.0] "Being poorly and sparingly booked on the WWE main roster isn't enough to diminish Asuka's status as one of the best women's wrestlers of her generation, and certainly one of the best in WWE. My favourite female wrestler, and one of my favourite wrestlers regardless of gender to boot, every aspect and facet of her is world-class. An excellent and unique look, fantastic ring work, and has presence and charisma for absolute days. Even with her middling English skills there's really no excuse for her being kept off TV and pay-per-view so much at the moment, as even without putting any titles on her, the sheer quality of her in-ring performances could be doing so much to help other women on the roster improve and get over. Bonus points, as if they were necessary, for pulling off such a long undefeated streak without it really ever getting stale, even at its lowest troughs and nadirs; very few others could've done the same."
Rating: 10.0
Sentiment: 0.15191468253968257
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[8.0] "A joy to watch, especially during her time in NXT. Unfortunately, she's suffered from the Vince McMahon blues since being called up to the main roster. I hope she can get back on track as a singles soon. The team with Paige & Kairi does not work for her."
Rating: 8.0
Sentiment: 0.09333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "Excellent striker and one of the best technical women wrestlers, has a lot of charisma as well. She has the ability to make any decent wrestler look really good. Unfortunately she barely can show her real talent in WWE where her weaknesses are way more highlighted than her qualities and where the women roster is pretty weak. But even in Japan, while her work was obviously more respected and her style didn't have any limits, she never really had the career she deserved to have due to the declined state of the joshi scene. It's kind of sad in a way but I know what she's capable, she is still one of my favorite wrestlers and her 28 minutes match against Arisa Nakajima at the Korakuen Hall is still my favorite women's wrestling match."
Rating: 9.0
Sentiment: 0.24035087719298245
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: PuroresuLoverwrote on 12.05.2019:[10.0] "My favorite woman wrestler and the very best right now! I don't like women's wrestling that much, but Asuka is so fucking great that I needed to watch her matches. I hope WWE stops to treat her like a joke, 'cause she's really great and deserves to be the Top Star of their women's division."
Rating: 10.0
Sentiment: 0.5938775510204082
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: zephyrwrote on 19.03.2019:[9.0] "Technical ability, brutal strikes, great charisma - those are the main things that come to mind when I think about Asuka's positives. Huge asset to any roster."
Rating: 9.0
Sentiment: 0.09833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: TwistedBlisswrote on 14.03.2019:[4.0] "Die WWE hat mittlerweile einige Damen von Japan im Roster und im direkten Vergleich zu Io Shirai und Kairi Sane ist Asuka die deutlich schlechtere Wrestlerin. Ich finde es traurig das der Smackdown Titel bei Ihr wenig Bedeutung hat. Ich freue mich darauf, wenn eine andere Dame den Titel endlich präsentieren darf. Nach Ihrer Zeit bei NXT ist einfach die Luft raus."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Steamboat2511wrote on 07.12.2018:[9.0] "Asuka steht wrestlerisch über den Dingen. Ob sie nun die beste Wrestlerin der Welt ist oder nicht, sie ist in der Lage im höchsten qualitativen Bereich zu performen, Matches intelligent zu führen und hat eine feine Technik. Charisma ist auch vorhanden, die Mic-Skills sind allerdings noch verbesserbar. Was jetzt noch fehlt ist die ganz große legendäre Matchserie gegen gleichwertige Gegnerinnen wie Becky Lynch oder nochmal Ember Moon um die Spitze der Company."
Rating: 9.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: The Stott Onewrote on 30.11.2018:[9.0] "Bringing some fire to the women's division, Asuka has been a major draw for the Women's Division. Her match with Charlotte Flair at WrestleMania was one of my favorite matches of the night, maybe the year. I hope she doesn't flounder now that they ended her streak, but I am expecting a lot of great matches in the future.  As of this writing, TLC might have her in the MOTN."
Rating: 9.0
Sentiment: 0.340625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: TylerWhitewrote on 02.11.2018:[9.0] "Extrem gute Wrestlerin, die nicht zu unrecht oft als bestes Talent der gesamten WWE bezeichnet wird. Hab leider vor ihrem NXT-Run kaum was von ihr gesehen, aber in diesem Run hat sie mich überzeugt. Keines ihrer NXT Matches war wirklich schlecht und sie hat den Womens Title verdient gewonnen. Ich hoffe man bekommt irgendwann Dream Matches gegen Lynch oder Banks zu sehen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: RatingsMachinewrote on 17.10.2018:[8.0] "Asuka is a great wrestler, and it's not any surprise that she had a great run in NXT but has been thoroughly misused on the main roster."
Rating: 8.0
Sentiment: 0.5888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: PaoloReaperwrote on 05.06.2018:[10.0] "Almost certainly one of the top 5 female wrestlers in the world right now, Asuka is a beast in and out the ring. Holder of the longest undefeated streak in WWE recent history, Asuka has been utilized according to her actual skills, a thing that is sadly not the norm in the World Wrestling Entertainment system. With a terrifying presence, thanks to her amazing character work, entrance, lack of english skills and, of course, world-class in-ring ability, she was the most feared performer in the promotion, both men and women, until her loss at hands of Charlotte. It was not the defeat per se, but that the subsequent screen time given to Asuka has not been, in my opinion, well utilized. Despite this, Asuka is a top talent and one of the greatest, if not the greatest, female *wrestler* to ever step foot on a WWE ring (Wait for the push to Kairi Sane and the signing of Io Shirai and we could have contenders on that). I can only hope that Asuka returns to Main Event status soon, where she belongs"
Rating: 10.0
Sentiment: 0.2219298245614035
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Oliver95xwrote on 23.05.2018:[9.0] "Einer der besten Damen die, die Wrestlingwelt zu bieten hat. Strahlt Karisma aus und ist gut im Ring. Gibt nichts an ihr auszusetzen außer vielleicht ihre englischsprachigen Promos. An denen könnte sie noch arbeiten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: LivMorgan202wrote on 16.02.2018:[9.0] "Very good wrestler with an amazing in-ring work and great abilities, but there's the problem with her mic skills that's so awful and bad and I know that she has that smile thing and mockery of her opponents but that's not enough because in my opinion a wrestler have to sell his character on the mic too well and I know that she will never improve on the mic but at least we have good matches with her every time she enter the ring and I can't wait to see what she does with the likes of Charlotte and Ronda Rousey. And the major problem with her is that thing with the mic skills but the rest she kills it, mainly her kicks that's awesome."
Rating: 9.0
Sentiment: 0.21159722222222221
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Brainbreakerwrote on 11.02.2018:[9.0] "Wrestlerisch ganz klar auf einer Ebene mit Charlotte, wenn nicht sogar einen Tick besser: Asuka hat im Ring eine unglaubliche Präsenz, wirkt glaubwürdig in ihren Aktionen (von der Hip-Attack mal abgesehen) und man hat immer das Gefühl, dass ihre bloße Anwesenheit für ihre Gegnerinnen nicht vorteilhaft sein kann. Ihr Mic-work ist aber auch nach ein paar Jahren immernoch holprig. Das ist schade, denn somit wird sie nie komplexere Stories erzähen können und ist immer zu einem großen Teil auf ihre Kontrahentin angewiesen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Triple Hwrote on 05.02.2018:[8.0] "Das einzigste was man Asuka ankreiden kann ist, das sie nach fast drei Jahren in der WWE immer noch kein gutes Englisch sprechen kann. Ansonsten gefiel mir ihr Run bei NXT bisher besser als im Main Roster. Trotzdem verdiente Royal Rumble Gewinnerin 2018. Das erste wirklich gute Match von ihr im Main Roster war gegen Sasha Banks. Hier hat sie auch zum ersten Mal eine ernst zu nehmende Gegenerin gehabt. Aber ihren Sieges Run sollte man endlich mal von der Storyline aufgeben, denn irgendwie wirkt das nicht mehr glaubwürdig. Schön wäre auch ein charakterlicher Wechsel ihres Gimmiks. Es wirkt zur Zeit auf mich ziemlich abgenutzt. Auch würde ich gerne von ihr und ihren Gegnerinnen mehr technisches Wrestling sehen wie teilweise bei NXT. Hier war ihr Last Women Standing Match gegen Nikki Cross das absolute Highlight von 2017. Die WWE hat wohl noch einiges mit ihr vor und mich würde alles andere wundern, wenn sie bei Wrestlemania nicht Championesse werden würde. Gerne in einem Match gegen Charlotte Flair aber was für eine Rolle wird eventuell Ronda Jean Rousey hier einnehmen ? Irgendwie wird sie in diese Fehde wohl eingebunden trotz des vermuteten Matches mit The Rock gegen Triple H und Stephanie McMahon ? Wir werden es im April sehen. Eventuell korrigiere ich meine Meinung in absehbahrer über Asuka noch auf 10 Punkte, aber hier muss sie mich noch absolut überzeugen das sie auch wandelbar sein kann vom Wrestler Charakter her."
Rating: 8.0
Sentiment: 0.12222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: CHN325wrote on 01.02.2018:[10.0] "One of the best female wrestlers that I have ever seen. Booked strong, has a great look, and is great on the mic even with a language barrier. Her mannerisms in the ring might be the best part about her. She doesn't wreck the competition, but always seems to outwork them, which makes for a great show."
Rating: 10.0
Sentiment: 0.6904761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Cleanerwrote on 30.01.2018:[4.0] "Ich bin mittlerweile leider kein Fan mehr von Asuka. Ihre Matches sind meist ziemlich uninteressant, jedes Wort, dass sie sagt ist eines zu viel und sie scheint in ihrer gesamten Entwicklung zu stagnieren. Wird dringend Zeit, dass ihr Titelrun endet und sie in den Mainshows neue (bessere) Gegnerinnen und Fehden bekommt. EDIT: Wie naiv zu glauben, dass die im Main Roster besser eingesetzt wird. Die Matches sind noch langweiliger, die Einsetzung eine Katastrophe. Spaßfaktor ist sehr gering."
Rating: 4.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: TheLoudMouthwrote on 18.01.2018:[10.0] "Vollkommen zurecht so hoch bewertet. Bin generell kein großer Fan von Damen-Wrestling, aber Asuka bringt alle nötigen Fähigkeiten mit. Nahezu unschlagbares Komplettpaket."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: MitsuharuMisawawrote on 06.12.2017:"She was part of good matches with opponents like Asuka, Mickie James and Ember Moon. Also, I like her mask."
Rating: No rating found
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Vancouver Victiniswrote on 22.11.2017:[10.0] "Nobody is Ready for asuka. this fact is plain, she doesn't really try fully on the main roster yet. She has beaten Punks Record for most days with a title in WWE and Goldbergs 173-0 Streak. She has done all the big WWE Records already before she set foot on the main roster. She still has her biggest test to get over with MR writing that may expose her weaknesses. Best of Luck."
Rating: 10.0
Sentiment: 0.2523809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Dragon Fighterwrote on 08.11.2017:[10.0] "Don't let wwe brainwash or make you look like stupid idiots. Asuka is definitely the best women wrestler in wwe for sure. Yeah, her debut with emma wasn't much impressive, but not her fault when she sold most of the match. Her nxt run was fantastic with killer matches with emma, bayley, nikki cross, ember moon and some other decent stuff. The lack of english is her only problem, but with proper booking , it can be hided. I am not 100% confident that wwe won't fuck her up. Hope she will have a good career on main roster."
Rating: 10.0
Sentiment: 0.1560185185185185
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: taabr2wrote on 11.09.2017:[9.0] "Asuka's NXT Women's title run was fantastic. She is the best women worker in WWE today. I would like to point out though that I thought the same of Charlotte, Banks and Bayley when they were NXT women champions but while they all got exposed once they moved up to the main roster I would hope Asuka's experience in Japan would help her adjust better. Of course I haven't seen her pre-WWE work so we will just have to wait and see."
Rating: 9.0
Sentiment: 0.4133333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: CaptainTwrote on 03.09.2017:[9.0] "Asuka hat einfach alles was man braucht, außer vielleicht gutes Englisch. ;) Das macht aber nichts finde ich, da sie mit ihrer Mimik und ihrem Charisma im Prinzip genug erzählt."
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: PrinceJrwrote on 02.09.2017:[10.0] "Das Beste, was WWE zu bieten hat im Damenbereich. Absolut geiles Wrestling, optisch top, sehr charismatisch und auch die beste NXT Women's Champion mit so vielen tollen Matches, besonders ihr letztes Match mit Ember Moon bei Takeover Brooklyn 3. Klar, sie ist japanisch und hat nicht die besten Mic-Skills, aber dafür was sie kann, werde ich ihr nix von meiner 10er Bewertung abziehen. Gucken, wie es im Main Roster, hoffentlich positiv, weitergeht."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Viper99wrote on 26.08.2017:[10.0] "Sie ist einfach Gold wert. Sie besitzt soviel Charisma das sie nicht ein Wort am Mikrofon sagen muss und hat einen einzigartigen In-Ring stil. Sie ist In-Ring mit Abstand die beste im Ring bei der WWE/NXT und wohl auch die Charismatischste. Für mich einer der stärksten All around Perfomer der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: SNKwrote on 11.08.2017:[9.0] "Excellent talent that consistently delivers high quality performances. Great ring work and very charismatic. Weak mic skills due to her poor English is Asuka's only noteworthy flaw, but due to that I can't give her a 10."
Rating: 9.0
Sentiment: 0.1668181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: aguilarje411wrote on 20.07.2017:[9.0] "Asuka in NXT is incredible! Along with Sasha Banks, she is the best women's wrestler in the United States. While her arsenal relies on a lot of strikes, some of which can seem a bit reductive, it works for her and she elicits attention and carries herself like a star. If I had one qualm about her it's of course her mic skills and while understandable still seem to come off a bit sluggish at times but being a dangerous force she is, this sort of works to her advantage actually. The only reason I can't rate her a 10 is because while she's great in NXT, she also doesn't have too much competition there. Bayely and Ember Moon are the only opponents she's ever faced that can come close to her and those have been too few matches considering how long she's been champion. Nikki Cross was another one where the wrestling was good but she's also not on her level. I might have to change my rating when Asuka comes to the main roster. What works in NXT does NOT always work on TV. That's a fact. Especially with the way she handles an environment that has better women's wrestlers than she's used to 90% of the time in NXT (not necessarily better than her) as well in a much more promo and segment heavy show like SD and especially RAW than NXT is. But as it stands, she's the most dominant woman, really in history that I can recall."
Rating: 9.0
Sentiment: 0.18119658119658122
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: PathosLogosEthoswrote on 05.06.2017:[10.0] "She's the best. I mean, just, what is there to say about her. Sadly, her English still isn't good enough to give a real well developed promo, but that being said, she at least knows how to make something good with the little English she knows. As far as her in ring work? She's stellar. She just has no weaknesses as an in ring performer."
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: jtsilver101wrote on 06.04.2017:[7.0] "Very compelling when it comes to her storytelling. I have been able to get invested in her work based off facial expressions alone. My only problem with Asuka comes from the fact she's a babyface. The stiff kicks, the submissions, he body language all comes off very heelish. Once that problem is fixed, I will enjoy her work even more."
Rating: 7.0
Sentiment: 0.2084126984126984
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Changeling45wrote on 21.02.2017:[9.0] "I've seen nothing but great things from Asuka.  She carries herself like a complete badass.  She's very charismatic, and has a terrific sense of urgency that makes her ring-work seem absolutely legitimate."
Rating: 9.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: rjsbx11wrote on 06.01.2017:[8.0] "Something about Asuka compels you to watch her. Her colorful outfit, her appearance, her sinister smirk and her striking ability makes her standout among her NXT contemporaries. She's not as stiff as she was in Japan, as the talent pool in NXT is filled with many greener workers, but she still able to fire off convincing offense. The issues seem to be surrounding her character, she bodes well as tweener or heel, rather than a face. She's going always face trouble with a mic, but being miscasted as face, and the lack of skilled competition might stall her in the long run."
Rating: 8.0
Sentiment: 0.20324675324675326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: molemaster43wrote on 05.01.2017:[9.0] "Asuka is a force to be reckoned with; with a brilliant character, brilliant facial expressions and great wrestling, Asuka is one of the best women's wrestlers out there, and I cannot wait to see her dominate the main roster soon enough."
Rating: 9.0
Sentiment: 0.5380952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: NastyYaffawrote on 01.01.2017:[9.0] "One of the best women's wrestlers WWE has ever had - Asuka just gets it. Her charisma, facial expressions, body language are just on point, and she does some little things that add to her matches - and then you get her beast in ring work - her offense is just fantastic."
Rating: 9.0
Sentiment: 0.303125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Rog Fulacewrote on 26.12.2016:[6.0] "Pretty lame striking ability if you put her in her actual joshi environment, but she of course seems "amazing" when put alongside people who are actively learning wrestling or were there for modeling purposes/signal boost rather than actual wrestling talent. Besides that, her matches were rather average and her look is rather wacky."
Rating: 6.0
Sentiment: 0.11851851851851854
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Sorawrote on 17.12.2016:[10.0] "Asuka ist wirklich eine wahnsinns Wrestlerin... Sie ist umwerfend im Ring, das Gimmick passt... Das Problem ist: nachdem die Four Horsewommen aus NXT zum Main Roster gekommen sind, fehlt es ihr sehr an ernsthafter Konkurenz... Also WWE: Asuka ins Main Roster & den NXT Womens Titel an jemanden der nicht so... sagen wir überqualifiziert ist."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: johnnywrestlingDIYwrote on 13.12.2016:[10.0] "Just another level. Incredibly crisp, smooth and fluid. Shows incredible emotion and story with the littliest of gestures. Rightfully so at the top of the mountain right now for womens wrestling."
Rating: 10.0
Sentiment: 0.38928571428571423
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: AtticusFinchwrote on 25.11.2016:[9.0] "Without a doubt, the best female wrestler in the WWE. She can carry just about anyone to an entertaining match. Only knock on her at the moment is that they don't quite seem to know what her character is yet in NXT. As a face, she's running the risk of becoming stale, but a heel run seems like it should free her up a bit since it always felt like she was one or a tweener at the very least. Promo skills are whatever, but she works well as a silent or "woman of few words" wrestler."
Rating: 9.0
Sentiment: 0.126
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: arrancarwrote on 21.11.2016:[7.0] "Asuka is definitely a notch above all the other female wrestlers in WWE. She's good, but I'd be lying if I said she was one of the best wrestlers in the world as her current 9. 39 rating suggests. I never saw Asuka in Japan, which is a shame because I bet she had some great hard hitting matches over there. On what I've seen of her in America it feels like WWE wanted a female 'strong styler', but didn't want to have Asuka injuring all their other female talent (who are newbies and/or possess very limited skills), so they just got her to do moves with a big performance to them but with little actual impact. That's what it feels like with Asuka. She is all talk. Her offence, which everyone gushes about, seems rather tame compared to many other wrestlers, even some in WWE. She has that 'delights in evil' nature going on, as she seems to love both giving and receiving pain. This is meant to play into the whole 'mysterious foreigner' gimmick WWE always does with non-westerners, and is meant to make her look badass. However, Asuka is not a great actor, and whenever she fires up or no sells her injuries it just comes off as cringeworthy because her facials/vocals are far too exaggerated. Ignoring her gimmick (despite how it annoys me), her wrestling skill really is quite good. She has had quite a few good matches and could probably hold her own with plenty of WWE's male wrestlers. She still hasn't had any match I'd consider 'great', but her foundations are at least set for that."
Rating: 7.0
Sentiment: 0.1048469387755102
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: mdbnasewrote on 20.11.2016:[9.0] "Sehr gute Ausstrahlung,  zudem eine ausgezeichnete Technikerin mit tollen Submission-Moves und einem hohen Tempo. Kommt mir manchmal aber etwas zu arrogant rüber. Ändert aber nichts daran, dass sie im Ring sehr viel drauf hat. Benötigt allerdings Gegnerinnen die mithalten können, da sie sich manchmal etwas schwer tut, unfähige Wrestlerinnen zu einem guten Match zu ziehen. Darum einen Punkt abzug."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: shosa94wrote on 12.10.2016:[10.0] "The best female wrestler in the world, full stop.  Puts on awesome matches, oozes both charisma and intimidation (could believably kick most of the male wrestlers' asses), has a great look, and may be the only wrestler to EVER pull off a monster baby-face run successfully.  Ladies, this is the bar, get up on your tippytoes."
Rating: 10.0
Sentiment: 0.4272727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Saphirwrote on 21.08.2016:[10.0] "Kana ist und bleibt eine Marke für sich. Jetzt bei NXT hat sie verdienterweise einen größeren Zuschauerkreis. Wenn die Gegner stark bleiben, kann man sich auf sehr gute Matches freuen."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: SweetestThing2wrote on 11.08.2016:[8.0] "Asuka is not only the best Women's wrestler in NXT but she is the best women's wrestler in all of wwe currently. Her in ring skills are magnificent and she is one of the stiffest Women's wrestlers i have ever seen. I love the Gimmick, she is just a bad ass Japanese girl who is so eccentric and a little scary at times. I also am in love with her attire. Not only the coolest Women's attire i think i have ever seen but also one of the coolest ever and she is a beauty. I think her mic skills are what brings my rating down a bit considering they are very underwhelming."
Rating: 8.0
Sentiment: 0.17712962962962966
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Hypocrisywrote on 06.08.2016:[9.0] "Leider kenne ich kein Material aus Japan, sodass ich hier nur ihre Zeit bei NXT bewerten kann. Grandiose Technik verbunden mit einer Aura der Gefahr macht sie zu einer äußerst lieb gewordenen Athletin innerhalb der Women's Division. Das Mic Work ist aufgrund der traditionellen Sprachschwierigkeiten mutmaßlich nie groß vorhanden; dies ist bei einer solchen Workerin aber auch einfach egal."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: JordanACEwrote on 24.07.2016:[8.0] "In ring she's probably the best female wrestler in the world (alongside Sasha Banks). She's so quick and basically just a total badass!"
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: KevinZaynwrote on 26.06.2016:[10.0] "Asuka ist eine grandiose InRing Performerin, die dazu noch ein unglaubliches Charisma besitzt. Micwork braucht sie dadurch eigentlich gar nicht. Weniger als 10 kann ich ihr einfach nicht geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: gaidenphoenixwrote on 21.06.2016:[10.0] "Even in an era when mainstream American wrestling fans are beginning to take women’s grappling more seriously than ever, Kana stands out as an exceptionally fast, brutal and efficient competitor. Though her microphone skills aren’t quite yet up to par – likely a result of English not being her first language – Kana communicates everything she needs to between the ropes."
Rating: 10.0
Sentiment: -0.03229166666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: SMKVBwrote on 09.06.2016:[7.0] "Arguably the best female worker on the planet. Offense comes swift and hard and she'll snatch any limb that comes near her. What she's missing that you see in some of the horse women is their exceptional in-ring story telling through selling and psychology. She just has to get used to the more American style of sports entertainment rather than just depending on her bad ass offense. Obviously promos are a no go, but she's still managed to get over so I can't really knock her for that. Thought her match with Emma stole that Takeover and was even more entertaining than her title match with Bayley."
Rating: 7.0
Sentiment: 0.17500000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Luv all wrestlingwrote on 05.06.2016:[10.0] "ASUKA brings a culture shock of joshi to WWE, up until signing she had done it all, modeling, hair designing, professional graphic designer, professional gamer, worked in almost all the joshi promotions, ran her own shows, worked for AJPW on there playboy sponsered show, worked in NOAH. can not wait to see her dominate the male roster"
Rating: 10.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Alex Maedawrote on 23.05.2016:[10.0] "Ich kenne keine Frau im Mainstream-Wrestling, die in Sachen Ausstrahlung auch nur ansatzweise an Asuka herankommt. Sie ist over wie Sau, hoffe das wird sich übertragen, wenn sie ins Main Roster wechselt. Über ihre In Ring Skills ist auch alles gesagt worden. Asuka ist absolut Gold wert."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "Loved Kana even before she came to WWE and started doing great work there. Brutal offense and very charismatic, even through a language barrier. I hope she will go as far as possible in WWE, I prefer her even to the "Four Horsewomen" on NXT."
Rating: 10.0
Sentiment: 0.22916666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: KingChrizzly619wrote on 16.04.2016:[9.0] "Nach Paige mittlerweile zu meiner zweitliebsten Wrestling-Dame geworden... Sie hat wirklich das perfekte etwas, hoffe die WWE macht bei ihr alles richtig.  Persönliche Ausstrahlung: Ich stehe ja eigtl mehr auf den Typ Paige, aber irgendwas hat sie verdammt nochmal an sich (10/10 Punkte), das Gimmick ist bisher echt gut, ihr Auftreten samt Kleidungsstil und Gesichtsbemalung top (10/10), eine der besten Moves die ich je bei einer Frau gesehen hab (9/10). Micwork, schwierig zu beurteilen (6/10). Gibt bei mir einen Gesamtwert von 9/10 Punkten."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Baschteywrote on 07.04.2016:[8.0] "Asuka. Meiner Meinung die zweitbeste Womens Wrestlerin auf dem Planeten. (Auf dem ersten Platz ist Sasha Banks. ) Sie ist die Queen of Strong Style. Ihre Moves sind extrem sauber und extrem gut, sie hat ein unglaubliches Charisma und eine tolle Ausstrahlung. Es ist zum einen cool dass sie jetzt NXT Womens Champion ist. Zum Anderen ist es doof, da sie deswegen erstmal nicht ins Main Roster kommt. Ich will sie dort definitiv sehen. Wenn sie Ende diesen Jahres ins Main Roster kommt, wäre ein tolle und lange Fehde gegen Paige ein Traum. Man könnte auch Becky Lynch gut dort einbinden. Das sind einfach die drei Frauen mit der längsten und besten Erfahrung. Perfekte Traum Matches. Die 3 komplett verschiedenen Wrestling Styles (Nein nicht AJ ;)) würden sich super ergänzen.  Please WWE, do it, do it now and do it right!   Abzug gibt es nur durch ihre schlechten Mic Skills. Das ist aber bei Japanern immer ein etwas spezielles Thema. :D"
Rating: 8.0
Sentiment: 0.3821428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: nitrop199wrote on 06.04.2016:[10.0] "Asuka/Kana is a fantastic technical and very stiff wrestler.  If you add to that a unique look/gear and a huge charisma, you have one of the best worker in the world, regardless of the gender."
Rating: 10.0
Sentiment: 0.31607142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Klabauterwrote on 03.04.2016:[10.0] ""The greatest competitor that ever signed here" - William Regal über Asuka. Er hatte recht!  Asuka/Kana ist eine der besten Wrestlerin der Welt und verdient nicht weniger als 10 Punkte!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: AnarchyFallwrote on 29.03.2016:[8.0] "Asuka is really great. No suprise there, for most people, but she is. She has a lot of charisma, is a really, and I mean really great performer who is very smooth in the ring. She was adapted well to the enviroment of WWE and I really hope Vince doesn't ruin her when she steps over."
Rating: 8.0
Sentiment: 0.38678571428571434
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: RWIceWolfiewrote on 25.03.2016:[9.0] "Her work that she has done before signing with WWE should stand on its own. She is a firecracker! Sure, it always helps if you have mic skills but I honestly don't ever see her being much of a talker & personally I prefer her to tell her story in the ring & with those chilling facial expressions. Keeping her in NXT is a good choice right now for a few reasons, one, it allows her to become comfortable with how everything is done here in America. The way they train, the language, the culture, everything is new & I've seen plenty of great wrestlers get called up too quick & not be able to adjust. Two, this gives the "main" roster time to try to get some divas up to her level. There are some ... mostly the "diva revolution" that could face her but I question if they could keep up after awhile. They will need more then Charlotte, Sasha, Becky, & Paige. That round up would get tired of watching after a few months. I just hope WWE doesn't make a joke out of these girls, unlike many from the past these ladies know how to throw down."
Rating: 9.0
Sentiment: 0.20693843193843187
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Danc3rwrote on 04.03.2016:[9.0] "asuka is the best wrestler on the nxt roster in my opinion. she has not had many classic matches because she has yet to work with anyone as seasoned as her. We all saw the classic match she had with emma. we also get to see her with bailey. they need to bring in santana garrett full time as well as a few more experienced performers so they can get all they can out of this talent."
Rating: 9.0
Sentiment: 0.3925925925925926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Rjdshawnwrote on 22.02.2016:[10.0] "The only issue I have with Asuka is my worries about her mic ability. And even if she was horrid on the mic, I'd still rate her a 9, because she's that freakin good in the ring. She a badass in the ring with a badass theme song. If she got some character development, I'm sure she'll be a champion soon."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Jaxxwrote on 13.02.2016:[10.0] "10 Punkte. Alles andere wäre einfach nur lächerlich. Über die In-Ring-Skills braucht man eigentlich gar nicht zu reden. Asuka im Vergleich zu dem anderen NXT-Diven Gewächs... das ist wie ein Student in der Sonderschule. Die Frau hat ne richtig krasse Ausstrahlung. Dieses durchgeknallte Lächeln gepaart mit der Silent Killer Attitüde, wozu brauch die denn noch Mic-Skills? ! Richtig gut könnte ich mir auch ne Managerin für sie vorstellen, im ähnlichen Stil wie Heyman/Lesnar. Eigentlich muss sie schnell ins Main Roster, weil ihr bei NXT einfach niemand das Wasser reichen kann und Matches gegen Banks, Lynch oder Paige wären zumindest mal interessant und würden dann auch zeigen, zu was Asuka fähig ist. Bis dahin kickt sie halt weiterhin Gurken wie Dana Brooke oder Eva Marie durch den Ring."
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Wrestlingfan96wrote on 11.02.2016:[7.0] "Kannte sie vor WWe nicht. Gute Wrestlerin! Wertung wäre vielleicht etwas höher ausgefallen, aber ich mag dieses Arsch-Wrestling einfach nicht. Ich mein, das kann man mal machen, aber es sollte sich nicht durchs Match ziehen"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Phenomenal91wrote on 07.02.2016:[10.0] "Of course her work in the ring is a 10. That has been indisputably proven. But some folks on here are wondering whether she'll display any skill on the mic. I say, there have been tons of Divas with absolutely no mic skills who have risen to the top on ability alone (Gail Kim, for instance). Asuka just projects a badass aura. She's a sweetheart to the fans, giving them ample more reason to love her, but when she's in the ring... you just get the feeling you're about to watch the girlfight of a lifetime. No other woman (and not very many men) in the WWE right now project that aura. So we needn't worry about mic skills. One thing I WOULD like to address that nobody else has is that the rest of the Divas in the WWE are going to have to seriously step up their games to hang with Asuka. She's no dainty little model or dancer or cheerleader or Hooters waitress, the type of Diva WWE usually goes for. She's vicious and powerful. It's going to take someone just as vicious and powerful (maybe Paige? ) to match her skill. Here's to a bright future, with a shining legacy already built in."
Rating: 10.0
Sentiment: -0.02146627881921998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: SapolBlackwrote on 03.02.2016:[9.0] "Eine Japanerin die nicht gut Ausschaut, sondern noch einen extreme Strong & Style Stil in NXT bringt.  Wrestling Technisch kann, ihr zu Zeit im NXT Roster niemand was vormachen, die Frage ist leider nur. Sogut wie sie auch ist, wird sie es im Main Roster überleben. 9 Punkte, weil sie noch sich am Mikrofon beweisen muss. Aber ansonnsten Top!"
Rating: 9.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Naruedyohwrote on 28.01.2016:[10.0] "A excellent wrestler, for male or female. He has the looks of a devastating beast, moves extremely well and can make interesting even the lamest wrestler she fights. There are two things to solve: she doesn't know english and she's reaching old age for a wrestler and is still in NXT.   Get her a japanese looking english speaking manager and get her to the main roster ASAP."
Rating: 10.0
Sentiment: 0.05833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Harlequinwrote on 11.01.2016:[7.0] "I'm really liking this NXT prospect. Exceptional in-ring ability with a good character of her own. Hoping to see more from Asuka as time goes on!"
Rating: 7.0
Sentiment: 0.5583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: mdkarlwrote on 02.01.2016:[10.0] "Plays the gimmick wonderfully... as a woman puts on matches I always enjoy watching her matches.  Her unique look really helps get her over.  Sadly I didn't see very much of her Japanese stuff and can't grade her work rate in that environment but as an American performer she's been great and I'm still feeling the best is yet to come."
Rating: 10.0
Sentiment: 0.35350000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: HouseWhiteWillRisewrote on 27.12.2015:[6.0] "Now this girl is very overrated in ring and she is just terrible on the mic the reason i give her a six is because she is pretty good in ring and i would give her a eight if she was in japan but now she is in wwe and just being good in ring doesn't cut it you have to be good on the mic have charisma and connect she does connect with the nxt crowd and she does deliver in ring but man she is horrible on the mic and here character is so cringe worthy i hope she improves or i dont think she will ever be divas champion or even make it to the main roster"
Rating: 6.0
Sentiment: 0.11666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Desaster1978wrote on 20.12.2015:[7.0] "Hervorragende Wrestlerin die es auch versteht, schwächere Gegnerinnen mitzuziehen. Ihre Promoqualitäten kann man natürlich noch nicht bewerten aber alleine mit Ihrem durchdringenten Blick weiß sie ihre Gegnerinnen zu beeindrucken."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Play2Xwrote on 17.12.2015:[8.0] "Vorneweg: Lasst euch von der WWE nicht verarschen. Asuka bedeutet nur SEHR frei übersetzt Zukunft (Shorai/Mirai wäre eine genaue Übersetzung für Zukunft nahdistant und ferndistant, respektive). Asuka setzt sich zusammen aus den Kanji für 'morgieger Tag/morgen' und 'Blume', welches auch in ihrem alten Ringnamen enthalten war (Kana = 'berühmte Blume'). Nach dem kleinen Japanisch-Unterricht: Kana ist eine extrem aggressive und körperliche Wrestlerin, welche aufgrund ihrer Statur auch über gute Technik verfügt. Vorallem ihr weites Arsenal an Submissions kann dabei überzeugen. Dazu verfügt sie über realativ glaubhaftes Selling und In-Ring Psychologie. Ihr Manko liegt meiner Meinung nach in ihrer Ausstrahlung - ich nehme ihr ihr Auftreten und Gesichtsbemalung nicht groß ab, auch Interaktionen mit dem Publikum fehlen zugunsten von Realismus. Dadurch allerdings wirkt sie fokussierter auf das Match. Insgesamt natürlich eine formidable Wrestlerin, auf deren weiteren Weg in der WWE ich mich freue. Das einzige, was noch offen ist, sind ihre Promos: Ich habe ein paar ihrer japansichen Promos gesehen, in welchen sie sehr sicher wirkt, und das Publikum in ihrer Hand hat. Ob sie das auch in den USA kann, wird sich zeigen. Allerdings sollte das für sie zu schaffen sein."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Alo67wrote on 09.12.2015:[10.0] "Also ich kannte Asuka vorher nicht aber als ich sie in NXT gesehen habe hat sie mich sehr stark beindruckt . Sie ist echte erste Sahne im Ring , das Match bei NXT Takeover Respect muss man gesehen haben sie ist so schnell hat Submissions gezeigt die ich bis jetzt sehr selten gesehen habe , Das StrongStyle hat sie auch drauf . Ihr Gimmick stellt sie als ein Japanisches Zerstörerin dar , was mir sehr gut gefällt , sie kann es gut verkörpern .  Ich glaub sie kann noch sehr viel erreichen . Klasse diese Frau"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: MoonsaultsEdgecutionwrote on 28.11.2015:[8.0] "Asuka ist zweifelsohne stark im Ring, besitzt eine Menge Charisma und ist eine gute Wahl von WWE gewesen. Aber Leute, hier von der derzeit besten Wrestlerin der Welt zu sprechen halte ich bei aller Fairness für weit übertrieben. In meinen Augen kann sie weder Io Shirai noch Kairi Hojo das Wasser reichen, weder hinsichtlich der Ausstrahlung und erst recht nicht wrestlerisch. Mir persönlich gefällt selbst Mayu Iwatani noch besser, wenngleich Asuka hier in der Tat etwas mehr Charisma an den Tag legt. ;-)"
Rating: 8.0
Sentiment: 0.024999999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: MusSanwrote on 23.11.2015:[10.0] "Ich muss zugeben, dass ich sie nicht kannte. Ich gucke normaler Weise keinen japanischen Promotionen wie NJPW oder NOAH, aber diese Asuka ist eine Granate im Ring. Sie hat sehr viel Charisma. Schade, dass die WWE sie nicht ins Main Roster holen will. Sie würde im Main Roster einschalgen wie eine Bombe, da bin ich mir sicher."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: La Trinawrote on 10.11.2015:[10.0] "Not really sure what to write about Asuka that someone else hasn't already pointed out. Fantastic all around wrestler, always exciting to watch."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Obermackerwrote on 09.11.2015:[10.0] "Erfahrene japanische Wrestlerin, die zur Abwechslung auch mal ne entsprechende Oberweite besitzt. Absolut verdiente erste SMASH-Championess. UPDATE: Topwahl der WWE, die wohl beste Damenwrestlerin der Welt momentan!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Navidwrote on 06.11.2015:[10.0] "Ich sah zwar nur 2 Matches von ihr aber diese waren schon sehr beeindruckend. Kana besitzt tolle und vor allem realistische Aufgabegriffe und Bodenkombinationen. Dazu hat sie Kicks die an Geschwindigkeit und Präzision einigen Männern zum Vorbild reichen. Das mir ihr Kleidungsstil gefällt kann ich erwähnen während Aussehen natürlich keine Bedeutung haben sollte.  Update: Ihr 3 Minuten Match gegen Cameron vom 4. 11. 2015 zwingt mich die Wertung auf 10 zu erhöhen. Sowas stiffes hab ich nochnie gesehen. Bereits legendär ist die Szene in der sie, statt wie jeder andere einer Ohrfeige auszuweichen, diese nichtnur einsteckt sondern sogar entgegen geht um Cameron in den Armbar zu bekommen. Da bleiben nur 10 Punkte als Bewertung!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: JuliTheCage87wrote on 22.10.2015:[10.0] "Alter Falter, was ist das denn für eine. Ich bin echt sprachlos. Hab mich vorher noch nie so für japanisches Damenwrestling interessiert (abgesehen von dem einen oder anderen Youtube-Clip), aber sie scheint echt das non-plus-ultra zu sein. Wahnsinnig charismatisch, der wohl beste Theme Song aller Zeiten, eine fantastische Wrestlerin - Gänsehaut! Da wird wohl auch ihre Sprachbarriere kein Hindernis für den Sprung an die Spitze sein. Und die ist verdammt nochmal 34? Die sieht aus wie 20, damn!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Kevin434wrote on 18.10.2015:[10.0] "Der Typ hier der ihr 6 Punkte gegeben hat hat offenbar keine Ahnung von wrestling und In-Ring Psychologie ist anscheinend ein Fremdwort für ihn. Falls du das liest: Bitte lösche deinen acc, danke.   Diese Frau ist so unfassbar gut im Ring sie besitzt nicht nur wahnsinns submission Moves, nein, sie kann ihre Gegnerin wunderbar durchs Match ziehen, ihre Gegnerin unfassbar gut stark darstellen, hat eine fantastische ring-psychologie, besitzt ein geniales Storytelling und ist kurz gesagt einfach nur grandios. Diese Frau ist aktuell die beste Wrestlerin der Welt, sorry Sasha Banks."
Rating: 10.0
Sentiment: -0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Sascha Legendkillerwrote on 16.10.2015:[6.0] "Asuka(toller Name ohne Scherz) ist als Wrestlerin okay, mehr nicht ich kann solche Überbewertungen nicht verstehen."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: Macho Madnesswrote on 10.10.2015:[10.0] "DAS ist eine Wrestlerin. Klasse Technik, dabei genügend kräftig um auch mal kraftvollere Aktionen zu zeigen. Bin total begeistert. Dazu eine total natürliche Ausstrahlung (wenn man mal von den vielen Farben absieht), kein Solariumsixpacksilikonblondchen, eine "richtige Frau". Da können die ganzen Daily Soap Diven im NXT/WWE Roster einpacken. Scheut sich auch nicht mal richtig in die Seile zu gehen. Ich will mich nicht zu weit aus dem Fenster lehnen, aber es würde mich nicht überraschen, wenn ihr eine goldene Zukunft bevorsteht. Allerdings.. Vince und seine Schreiber werden es schon versauen ;)"
Rating: 10.0
Sentiment: 0.0625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: 13goingondanielwrote on 07.07.2015:[10.0] "One of, if not THE best Joshi wrestler in the world today. After witnessing her matches against Meiko Satomura and Sara Del Rey it was very clear to me that Kana is not only one of the best wrestlers in Japan, but just one of the better and definitely one of the most unappreciated wrestlers in the world."
Rating: 10.0
Sentiment: 0.4471428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: AlwaysAngrywrote on 29.01.2014:[10.0] "One of the greatest women wrestlers in the world right now."
Rating: 10.0
Sentiment: 0.6428571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2785&gimmick=Asuka
Comment: joshimaniawrote on 23.06.2013:[8.0] "Very intense and stiff with some good mat skills my type of wrestler."
Rating: 8.0
Sentiment: 0.24857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Wanglerwrote on 07.02.2025:[10.0] "A hero to many. Was still taking hands down chair shots, blading, moonsaulting off ladders, or wearing them, and much more well into his late 50s when he needed both hips and knees replacing mid 40s. Always used to believe that if the bomb comes (hint: it won't) the only things left would be plastic, cockroaches and Terry Funk. Here's a frightening thought, if Funk's mortal then we all are. One of the greatest careers ever and if he's not a clear 10, then no one is."
Rating: 10.0
Sentiment: 0.09944444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: crs285wrote on 15.01.2025:[9.0] "A 52 year career that should be celebrated. Funk changed with the times and his body's limitation going from a great technical wrestler to hardcore legend. Could do it all in his career, in the ring, promos and got reactions from fans whether face or heel. Overall legend in his career RIP Terry Funk."
Rating: 9.0
Sentiment: 0.2875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: fatfanleywrote on 12.01.2025:[10.0] "One of the best to ever wrestle. Was amazing in any company doing any style at any age. A true Pro Wrestler whose matches will stand the test of time. Even in the garbage that was the end of WCW he managed to be the best worker there and brought believability to a terrible product. A true legend in every sense of the word!"
Rating: 10.0
Sentiment: 0.3979166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: ItsAllAWorkAnywaywrote on 10.01.2025:[9.0] "Terry Funk had a long and storied career that spanned decades and geographic boundaries. Terry was never afraid of the rough stuff, and his penchant for grueling matches endeared him to the NWA faithful of the 1970s. Funk and his brother Dory Jr. also took their trade across the Pacific to All Japan, where they were long revered and regarded as a main event tag team. While the early 90s started off with a sort-of-lull, Funk found himself in demand for both ECW and FMW as a main event and attraction wrestler. This opened the door for Funk to finish the 20th Century with respective runs in WWE and WCW. He's since passed on as a a result of old age and a grueling style, but his legacy will always live on."
Rating: 9.0
Sentiment: 0.0699724517906336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: kaeleighwrote on 21.09.2024:[10.0] "Wahrscheinlich der Beste Brawler in der Wrestling Geschichte. Nie der Techniker wie es sein Bruder war aber das musste Terry Funk auch nie sein. Seine größte Stärke ist sein physische Charisma. Überall und selbst in späten Jahren war dies wirklich das einzige was ein Terry Funk Match brauchte um unterhaltsam zu sein. Wenn wir jetzt noch dazu zählen, dass Terry ein unfassbares Timing und absolute perfektion wenn es darum geht etwas real wirken zu lassen, gibt es wirklich wenige Wrestler die besser sind als Terry Funk."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: BrettThousandwrote on 09.09.2024:[10.0] "The ultimate ideal of a professional wrestler. Basically did it all at the highest level possible for as long as possible."
Rating: 10.0
Sentiment: 0.15833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Zak22wrote on 23.08.2024:[8.0] "ah Terry, how the fuck do I explain giving Terry an 8. I do like Terry, I enjoy his work in Japan (AJPW and hardcore stuff in IWA-Japan and FMW), and his feud with Ric Flair featured my favourite ever I Quit Match. His promo talents were high as hell. Terry could work multiple styles very well, he could be heel, face, technical, hardcore or brawler. But some of his signature spots and some of his mannerisms and selling aren't for me. Some Terry matches, I really dislike. But look, massive legend with some fantastic matches and feuds, and incredible versatility."
Rating: 8.0
Sentiment: 0.186
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: migrationswrote on 17.06.2024:[10.0] "The wrestling, the promo and the fucking seriousness of everything. This guy reminds me of Moxley and Eddie Kingston as two modern wrestlers who are very good and take the whole art form very seriously. The major difference is that Funk's career went on forever and his promos would often induce tears and crying in those watching. At this point I can say he is one of the best ever."
Rating: 10.0
Sentiment: 0.14239583333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: singlemalttheorywrote on 11.06.2024:[10.0] "In the conversation for Greatest of All Time. He could do it all: grapple, character work, hardcore, brawl, and serve as the name most dropped by fake tough guys like CM Punk."
Rating: 10.0
Sentiment: 0.1527777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: AndoCommandowrote on 28.05.2024:[10.0] "He's the greatest. Top tier babyface and heel, both through exceptionally unique circumstances (most beloved gaijin ever, hated across several, short stints across territories). The better half of an all-time tag team with his brother. Among the best brawlers ever, a pioneer of hardcore wrestling, could keep up with the best technicians of his time, and out stooge anyone he shared the ring with. A one-of-a-kind seller that plenty have tried to imitate, though never fully replicated because really, how the hell does one pull off half the stuff that came to his mind like second nature? On top of all that, an inspired hater. Throwing a raw chicken in Dustin Rhodes' face. Telling a horse to f**k off after it tried to mule kick him. Donning a shirt with the text "Dusty Sucks Eggs". Thinking back on it now, he might've also been the one to throw that rubber chicken at Cody after his WM39 loss."
Rating: 10.0
Sentiment: 0.13231351981351985
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: JBTheTreewrote on 23.05.2024:[10.0] "I'll come back and add more depth as to my reasoning in future but for now I want Terry Funk to be the first wrestler I leave a comment and rating on. Simply put for me Terry Funk is the single greatest of all time. Rip. 5 Stars."
Rating: 10.0
Sentiment: 0.23979591836734696
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Rassle Fanwrote on 17.05.2024:[10.0] "I didn't come to appreciate how great Terry Funk was a everything a pro wrestler needs to be great at. A one of a kind legend and the kind of personality that really doesn't exist anymore."
Rating: 10.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: swissarmybazookawrote on 14.05.2024:[10.0] "The greatest wrestler to ever lace up a pair of boots in my opinion. His skill in every wrestling style is really what puts him over the top for me. Doesn't matter if it's death match/hardcore, american, strong style, lucha libre or technical he knew how to have the best match of the night regardless of the opponent. While he didn't always succeed in that aspect every Terry Funk match gave you something to remember after the show. Bret Hart and Ricky Steamboat are the closest to him but they don't have the same versatility as Funk did in his prime."
Rating: 10.0
Sentiment: 0.39166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: devxntewrote on 23.04.2024:[10.0] "Terry Funk made you believe. He made you believe it was real and that everything he was saying was the God's honest truth in his mind. When thinking of top promo's, if Terry Funk doesn't come to mind, I think it's simply you have not watched enough of him. He's fantastic on the mic, he's fantastic in the ring, and there's a reason why he is so revered by fans and his peers alike. There is something in Terry Funk that many have tried to imitate and failed in all the years since he was a full time wrestler and that is legitness. You could believe he was crazy, you look at his program with Ric Flair, and you would've believed that a mad man was on the television screen. You look at his stuff with Lawler and again, you would've believed that a mad-man was on the screen. He had the weird ability to make you believe he was a legit madman but also a coward at the same time. He wasn't a cool heel, he was just a bad guy when he wanted to be and that's why he's so good."
Rating: 10.0
Sentiment: 0.06323529411764707
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: thedman0310wrote on 20.03.2024:[10.0] "If Terry Funk isn't in your top three at least, you need to re-evaluate your priorities. Funk was a master of all trades, from classic technical wrestling to deathmatches. In my eyes, Funk is the embodiment of the wrestling business. Wild-eyed and crazy, but ultimately entertaining and kind of beautiful."
Rating: 10.0
Sentiment: 0.21458333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: RusherBryan29wrote on 06.02.2024:[10.0] "The Greatest Professional Wrestler of All time, and also my number one favorite. He can do it all, any style of pro wrestling you want. From his technical wrestling, japanese pro wrestling, Hardcore wrestling, even sports entertainment. One of best talker in pro wrestling. In my eyes, he is the definition of professional wrestler and professional wrestling."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: SavageTygerwrote on 01.02.2024:[10.0] "Terry Funk is the complete wrestler. There is not a style that Terry wasn't just good at, but excelled at. Whether it's showing his technical prowess in Japan in the early 70s, combining his technique with a stiff brawling style in the mid to late 80s, or losing his mind and going hardcore in the 90s, Terry Funk was a master of wrestling. He was able to cut a promo that would make you feel the entire range of emotions, he could flawlessly switch from face to heel (Watch the WrestleWar '89 post-match promo with Flair to see this at its peak) and Terry was above all else completely selfless and that is rare for a guy who could do pretty much whatever he wanted anywhere he went, but Terry always gave his all and put in everything he could to help develop those he had a chance to work with. Terry is just the best, period."
Rating: 10.0
Sentiment: 0.23348214285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: JediSaiyanMaster1203wrote on 19.11.2023:[10.0] "Words truly can't describe how amazing Terry Funk is, he's the kind of wrestler you just need to see it to believe it. There's a reason that so many people still discuss him as among the greats after so many years have passed, because he was the perfect wrestler. Terry Funk is one of the best babyfaces and heels of all time, people truly adored this man, especially in Japan being arguably the best gaijin wrestler of all time. While we all meme the "Forever" promo, people forget that people were actually emotional over it and Terry Funk really meant that much to the people. As a heel, this man was as insane as you could get, his level of commitment to hating his opponents is legendary, (i.e. "Dusty Sucks Eggs" shirt) you could really believe that he hated his opponents and that he was willing to do anything to put them down. His feuds with the likes of Ric Flair, Jerry Lawler, Cactus Jack, Harley Race to name a few are legendary for a reason, matches and segments that are still discussed to this day. He was also an incredible promo guy, feeling authentic as a heel and babyface, naturally could command people's reaction as either, was also very funny when insulting his opponents and always entertaining to listen to. He was a true ring general, knew how to work the crowd, was an amazing storyteller, great ring psychology, an innovator in hardcore wrestling, did everything he could to give back to the business, never was afraid to adapt to the times and learn to appreciate the newer styles despite them being way after his prime, man did moonsaults in his 50s for crying out loud, a true legend in America and Japan. Overall, Terry Funk is one of the all time greats to ever do it, a legend for a reason, he was a true innovator and influencer to wrestling, we're truly lucky to have a guy like him in this industry. R.I.P. Terry Funk"
Rating: 10.0
Sentiment: 0.21930199430199432
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Angelus Fitzgeraldwrote on 18.09.2023:[10.0] "Terry Funk was arguably the greatest performer to ever come out of the Territory era. Not only he was a great wrestler and a personality but he did it for more than 40 years. He was either present or instrumental in the rise and most memorable moments of many wrestling promotions and performers. And unlike many of his peers who were very stubborn in changing with the times, terry not only evolve with the times but also did everything he could to build for the future. And there was never really a time where he wasn't a main featured guy or a time where he in one way or another didn't steal the show. He Could be a technician, a brawler, a hardcore wrestler (which he innovated most of it) or a high risk taker. He had the ability to always get over because he always knew how to read a crowd and adjust his presentation based on the audience he was performing. He was also famous for his numerous retirement matches which got to the point of being a joke within the industry. The Term "Greatest of all time" gets thrown a lot for a lot of performers. To Me "Greatest of all time" is not an individual, its a club and Terry Funk is right up there."
Rating: 10.0
Sentiment: 0.36419913419913424
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: nothingleftinsidewrote on 02.09.2023:[10.0] "Now that he's gone, he is in everyone's all-time great conversation. And when you look at his career, it's hard to understand why he wasn't always in this conversation. He was relevant in so many different eras of wrestling, in so many different promotions, in so many different styles... I don't think there's anyone who can come close to something like that. Maybe Flair? Funk brought prestige with him everywhere he went; elevating places like ECW, FMW, and even late era WCW. The juxtaposition of him as an NWA champion and pioneer of deathmatch wrestling is an "only Nixon could go to China"-level mindfuck. Everywhere he went you could count on him for an entertaining match and a great promo. The guy really deserves a forensic career retrospective documentary; there's no one else like him in wrestling history. He had a run in so many different places and you got something good every time. Just look at his top ten matches here on cagematch- they span so many different styles, territories, and eras. That said, not *all* his matches are great, and if you're not into the deathmatch/hardcore style you're not going to like the majority of his matches that are easily accessible. Despite this, he belongs on most Mt Rushmores, especially the Mt Rusmore of promos. A+ promo, A gimmick, B in-ring. He's a strong 8 or 9 but his never-ending contributions to the sport push him up to 10. At the very least, you owe it to him to pull up a couple of his promos and give him the chance to convince you to watch some of his matches."
Rating: 10.0
Sentiment: 0.26880952380952383
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: InsertFunnyNameHerewrote on 25.08.2023:[10.0] "Terry is one of the top 10 wrestlers of all time, I have said this for years now. Its a shame it took his passing to remind me to sing my praises on my little soapbox here. His versatility in-ring as a technical whiz and a deathmatch legend is unmatched. His work on both sides of the pacific is legendary with great programs against Ric Flair, Harley Race, Atsushi Onita and most famously that egg sucking dog Dusty Rhodes. RIP to one of the innovators and icons of pro wrestling."
Rating: 10.0
Sentiment: 0.3390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Excellence of Executionwrote on 25.08.2023:[10.0] "Absolute Legende! Hat mit seinem Bruder das japanische Wrestling aktiv gefördert und mitgestaltet. Eingedenk seiner kaputten Knie hat er sich im Ring dann so radikal neu erfunden wie kaum ein Wrestler vor oder nach ihm und wurde zu einem der besten Brawler - im Laufe der Zeit mit immer mehr Hardcore Anleihen. Spätestens in der ECW wurde er dann endgültig Kult, als durchgeknallter Hardcore Opa der Nation. Ein Image, das auch davon zerrt, dass Terry Funk, trotz eines Schaffens weit über seinen Zenit hinaus, immer noch entertainen konnte und dabei selten fehl am Platz wirkte. Sehr erfreulich auch, dass ihm trotz dessen ein respektables Alter vergönnt war. Ich ziehe meinen symbolischen Hut vor dem Funker!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: ChainsawJediswrote on 24.08.2023:[10.0] "There is something about the way Terry Funk spoke - he was direct and unsettling, a gruff Texas-born rancher with a silver tongue that spewed malice. He was also gifted in the ring, particularly in his physical prime of the 70s. It was a feat in itself he was capable of delivering satisfying endings to the enthralling stories he had crafted with his voice. At times he was a methodical bastard breaking his opponents down physically and psychologically. Others a chaotic swarm who attacked before the bell even began or engaged in hardcore arena-wide brawls decades before it became in-fashion mainstream. Always he was mean. He knew that personal issues drew money, he was as believable, as real as it got. I am still discovering his work, I have barely even begun to scratch the surface of a fabled career that spanned generations, much of which is not easily available online. I think maybe more than any wrestler, I know I will be revisiting it throughout my lifetime. I am deeply saddened to see him go, his unique perspective on the world and the business will be greatly missed. Every wrestler should try to be like Terry Funk, to take something from his game. He got what this thing was about, better than anyone. The man who understood the sport of pro wrestling, at its finest essence, more than else ever has."
Rating: 10.0
Sentiment: 0.16894444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: steviecwwrote on 24.08.2023:[10.0] "I didn't always appreciate Terry Funk, growing up with the attitude era I didn't fully understand who this old man called Funk was or why he was ECW World Heavyweight Champion over so many others. Looking back, I adore the man. An absolute great in his prime in the NWA and Japan who enjoyed a second prime as "middle aged and crazy" in ECW, WCW, WWF and abroad. Even as his years accelerated, he was called upon to provide credibility for matches in ROH, MLW and TNA and so many others. A hero and influence to many, his contribution is incalculable. FOREVER."
Rating: 10.0
Sentiment: 0.1846153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Foxmagic3wrote on 24.08.2023:"I think Terry Funk is the only wrestler we can objectively agree on, and say he deserves to be inside a top 10 greatest of all time list. Doesn't matter if it is number 10 or 1, the things he accomplished in the Wrestling business can't be replicated. Every reinvention he did was successful. From being a crazy heel in Memphis, being the most over Babyface gaijin in Japan, being a hardcore pioneer, being a pure wrestler as the NWA champion, and getting into brawling matches in WCW. Like his theme song from Legends Of Wrestling said, he gave his all. Rest In Peace to the most passionate wrestler ever, Terry Funk. Goodbye, Texas Bronco. Since I made a new account after I lost my other's info, I'll give the rating here. 10/10"
Rating: No rating found
Sentiment: 0.23274225774225776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: PunkPariahwrote on 24.08.2023:[10.0] "The effect Terry had on wrestling was unfathomable. If something big was happening in wrestling, Terry was there. He could do it all and did do it all. Technical wrestling, brawling, sports entertainment, puro, deathmatch, etc. And he was damn near the best at all of em. Never a bad word said about this man. Left a mark on the wrestling world that will never ever be forgotten and will always be cherished. Rest easy Funker"
Rating: 10.0
Sentiment: 0.26904761904761904
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: LaothFriuswrote on 24.08.2023:[10.0] "Some wrestlers are one of a kind and the Texas Bronco will never be replicated, he loved the wrestling so much that he always came back, worked on all the most importante promotions on the world and was an inspiration for a lot of wrestlers either as the Hardcore Icon or the Living Legend Terry Funk."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: smokestackwrote on 23.08.2023:[10.0] "He's the greatest professional wrestler ever. Not "one of". He's the greatest. I don't care if you liked Hulk Hogan growing up, or John Cena got you into wrestling, or Ric Flair is "the man." Terry Funk was, is, always will be more important than any of them. Forever."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Wrestling Foreverwrote on 23.08.2023:[9.0] "Am 01.02.2023 habe ich das beim Matchguide Eintrag von Bret Hart vs Terry Funk geschrieben "Ich habe auf Twitter ein aktuelles Bild von Terry mit Mick gesehen wo man einen inzwischen sehr alten Terry sah. Er leidet ja unter gesundheitlichen Problemen aber ich bin froh das er noch lebt. Nun heute den 23.08.2023 habe ich durch mehrere Quellen eine der ersten war Ric Flair oder Mick Foley welcher es durch eine von Terry Töchter erfuhr das er heute im Alter von 79 Jahren gestorben ist. Man kann gar nicht in Worten schreiben was da wieder für eine Wrestling Legende geht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: No Onewrote on 23.08.2023:[10.0] "One of the greatest professional wrestlers of all time. One of the greatest in-ring performers of all time. Was 1/2 of one of the greatest tag teams of all time, The Funks, with his real life brother, the legendary Dory Funk Jr. They are the only brother pair to have both held the NWA World Heavyweight Championship. His father, Dory Funk Sr. was also a legendary wrestler. Achieved massive career longevity. Was extremely popular in Japan. One of the greatest Babyfaces of the 1970's. One of the greatest Heels of all time. One of the greatest promo artists of all time. One of the main guys that built ECW into a cult phenomenon. One of the early fathers of Independent Wrestling. Had great matches around the world. Feuds with Abdullah The Butcher, The Sheik, Cactus Jack, Harley Race, Ric Flair, Jerry "The King" Lawler, Stan Hansen, Bruiser Brody, Raven, Sabu, & Shane Douglas are legendary. Excellent tag team rivalry between The Funks vs. Jumbo Tsuruta & Giant Baba. The Funks became the first ever 3x AJPW Real World Tag League Tournament Winners. One of the most influential wrestlers of all time. One of the greatest sellers of all time. One of the greatest bumpers of all time. One of the best Ring Generals of all time. Incredible in-ring psychologist. Became one of the greatest & most influential Hardcore wrestlers of all time. Was the best in-ring performer in world over the age of 50 during the 1990's. Gave it his all in every match, and his body paid a heavy price for it. Highly charismatic. Held numerous championships all over territories & around the world. Was amazing at adapting to every decade & era that he wrestled in so that he never felt out of place. Wrestled for nearly every promotion that one could think of from the 1970's to the 2000's. UPDATED: RIP to the legendary Terry Funk!"
Rating: 10.0
Sentiment: 0.5921296296296297
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: JoshBwrote on 10.07.2023:[10.0] "Terry Funk is the embodiment of what a wrestler is at their very best. I could go on and on about how good he was, across countless promotions, all over the world, over decades and many different styles of wrestling and audiences. The best ever."
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: danzitorockwrote on 20.06.2023:[10.0] "The king of hardcore wrestling, Terry Funk is one of the greatest and most important legends in the wrestling industry. He is a true pioneer of the hardcore style, with many contributions to his name... simply spectacular and legendary."
Rating: 10.0
Sentiment: 0.6214285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Giantfan1980wrote on 07.06.2023:[7.0] "Nobody did the crazy cowboy gimmick like Terry Funk! Guy could do the basic wrestling stuff, the brawling stuff, the hardcore stuff, and he even started doing moonsaults in his old age. Middle aged and crazy!"
Rating: 7.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: KKeanelwrote on 24.04.2023:[10.0] "Greatest all-arounder in history of this business. Absolute icon of wrestling, incredibly dedicated in every company and every match where he was involved in. Till his late 60s he took many impressive bumps on himself that many youngsters couldn't be ready to take. Huge respect for him."
Rating: 10.0
Sentiment: 0.48888888888888893
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: CMFunk007wrote on 07.01.2023:[9.0] "Terry Funk was an excellent entertainer. He was best as a nasty heel and his feud with Ric Flair in 1989 will forever cement him in the top tier of wrestlers for me. He could be a little goofy and over-the-top at times, but that made him endearing to me. His friendship with Mick Foley was inspired and the fact that Funk put his body through so much over the years to entertain us makes me love him even more."
Rating: 9.0
Sentiment: 0.27386363636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: TooDarkMarkwrote on 30.11.2022:[10.0] "God tier professional wrestler. On every level. Storytelling, promos, adaption to companies and eras, in ring, outside the ring, interviews. Seriousness, comedy. Terry Funk is the perfect professional wrestler. Every young person should get a 10 hour tape of his work in the NWA in the 70s to protect his brother's world title reign, his feud with Jerry Lawler, his work in Florida with Dusty Rhodes, his Ric Flair work in the NWA in 1989, his ECW work from 94 to 97. And beloved back stage. He is the gold standard for professional wrestlers."
Rating: 10.0
Sentiment: 0.17
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: LoboXwrote on 31.10.2022:"Love this wrestler to death! There would ve no ECW without Terry Funk. There wouldbe no hardcore wrestling without Terry Funk. He always gives 100 percent for the fans. Future wrestlers could learn from Terry Funk."
Rating: No rating found
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: conker8wrote on 01.09.2022:[10.0] "Terry Funk is the GOAT both as a babyface in Japan and ECW (and his home territory) and a heel everywhere else (Crockett, Florida, Georgia, WWF). Great matches against Flair, Race, Abdullah & the Sheik, Hansen, Brody & Snuka."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: jboyaquarwrote on 26.08.2022:[10.0] "Revolutionized selling, oddball, original, intuitive, he played a charming bronco and a mean 'Przewalski's horse' prior to the more sentimental 'Desperado' character. A very committed performer, one would feel they got their money's worth. Excellent diversity, ornery but always mobile, as early as there is footage, I'm watching."
Rating: 10.0
Sentiment: 0.26125000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: KingsCrossingwrote on 05.07.2022:[10.0] "Terry Funk is without doubt one of the best of all time. A truly one of a kind professional wrestler with some of the very greatest promos in wrestling history and a litany of classic matches. There is absolutely nobody else in professional wrestling quite like Terry Funk, and he undoubtedly deserves to be in the conversation for greatest professional wrestler to ever live."
Rating: 10.0
Sentiment: 0.4403030303030303
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Conquistador37wrote on 31.03.2022:[10.0] "Unrivaled longevity. VERY giving to other wrestlers, the fans and the entire business. Incomparable dedication to the craft and art of professional wrestling. Over all of the decades of wrestling, if Terry Funk is/was on: your eyes and mind are/were GLUED. Absolutely outstanding and beyond remarkable talent who could never have enough praise heaped upon him. A man that could do (almost) everything and whom you NEVER got tired of watching. One of the best in ring careers ever. If you've only seen his wild brawling latter years, you're missing out on alot - first and foremost watch his feud with Ric Flair. it's a nice "middle era Terry Funk" to cut your teeth on. Then go back and forth over the years and find some gems; he really does his best to bring out something memorable no matter who his opponent is. The older I get the more I love Terry Funk! On a scale of zero to ten, GIVE HIM A 50!"
Rating: 10.0
Sentiment: 0.24666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Wright15wrote on 11.02.2022:[10.0] "From the young grappler and charismatic brother/tag team partner of the NWA world champion in the 1970s, to the moonsaulting deathmatch madman of the 1990s, Terry Funk reinvented himself as many times as he had retirement matches. Beloved in Japan, reviled in America, always ahead of the curve, and always in the world title scene for 20 years, one could make an argument that he is a dark horse candidate for the best wrestler to ever live."
Rating: 10.0
Sentiment: 0.3980519480519481
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: GriffinXwrote on 06.02.2022:[10.0] "I don't think there is anyone who truly loved wrestling as much as Terry Funk. Yes his many retirements were memes before memes were a thing but he couldn't stay away because he loved to wrestling. The man was willing to keep evolving to keep performing. And something so rare he wanted to make new stars because he knew his beloved wrestling needed them."
Rating: 10.0
Sentiment: 0.43579545454545443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: benny5bellyswrote on 11.12.2021:[10.0] "One of if not the greatest to ever don a pair of boots and some trunks. From promos to ring work I always find him spellbinding. Long live Terry Funk."
Rating: 10.0
Sentiment: 0.3621212121212121
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: TigerDiverwrote on 19.09.2021:[10.0] "Truly one of the very best to ever grace a professional wrestling ring. The fact that he started his career in the 60s but still able to wrestle all the way into the 2000s speaks volume for itself. If he's not the greatest of all time, then he definitely must be in the top five at the very least. Real legend right here."
Rating: 10.0
Sentiment: 0.3550793650793651
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: texasyoshwrote on 06.07.2021:[10.0] "It's about time I rate Terry Funk. I'm not sure how you can put it without calling him the greatest of all time at what he did. Defined and defied pro wrestling, and is one of the most influential to step into the squared circle. could be a incredible babyface and a disgusting heel, he could do it all. he gave himself to this business, and should be remembered for it."
Rating: 10.0
Sentiment: 0.22999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: CoolKylewrote on 03.06.2021:[10.0] "Funk never phoned it in, which is why he will always be a legit legend in pro wrestling. I can't help but think he's easily the GOAT in my opinion, has had serious longevity, was NWA champ at a time when the belt really meant something, has been everywhere promotion wise, is massively influential, one of the most selfless veterans ever who was always willing to help and put over younger talent, seems like one of the nicest guys ever, was an incredible babyface and heel, had absolutely top notch promos and sold like a champ, was a big star in Japan and helped further and pioneer the styles of Hardcore and Deathmatch Wrestling."
Rating: 10.0
Sentiment: 0.2625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: KyleEnjoysWrestlingwrote on 10.03.2021:[10.0] "He's done it all. Not afraid to step out of his comfort zone & get others over. A mentor to the entire business. Too many classic matches & feuds to name."
Rating: 10.0
Sentiment: 0.24166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: BEER CATwrote on 08.02.2021:[10.0] "Top Ten All Time and impossibly influential. A top-level promo, a natural and dynamic worker, pioneered several gimmick matches like Empty Arena and I Quit through his understanding and application of psychology within those rulesets. One of the best tag wrestlers of all time along with his brother. Shifted the paradigms of face vs, heel and gaijin vs. natives in Japan by getting over HUGE and a babyface, I've never seen anything like it. His career arc and constant reinventions have few equals. It's crazy to think his run as NWA World Heavyweight Champion is sort of his first chapter as a major star and isn't as well-known as his other work. The Flair feud in WCW was genius, his hardcore phase in IWA Japan and ECW wasn't just inspirational and groundbreaking, it made for some classic matches and legitimized what hardcore wrestling could do if the right kind of psychology, selling and storytelling was involved. Decently successful in his forays into acting, as well. And on top of all that, a tirelessly hard worked who remained dedicated to the craft, giving and giving until he just physically couldn't. His shtick is still being borrowed today by the 2020 Wrestler of the Year Jon Moxley. Terry Funk is a titan, an immortal, a hands-down all time great."
Rating: 10.0
Sentiment: 0.15726190476190477
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Brett1980wrote on 23.01.2021:[10.0] "Absolute legend. Could do it all have great technical matches, have great tag team matches with his brother in Japan, Could do the family friendly slapstick stuff and of course have wild and violent brawls. He can switch from comedic to violent in the blink of an eye."
Rating: 10.0
Sentiment: 0.08437499999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: medousewrote on 04.11.2020:[9.0] "This man is a living legend. One of the best wrestlers when it comes to being versatile. Grappler, brawler and highflyer. He did some insane stunts in his career and he almost died or crippled himself way too many times. Great performer even at old age. He feared nothing and nobody. Great promos and bloody matches, that's what he is most recognizable from."
Rating: 9.0
Sentiment: 0.23888888888888893
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Residentwrote on 02.11.2020:[10.0] "One of the best wrestlers of all-time. A great brawler, but he was also technically skilled and great on the mic. A former NWA World champion, where he had one of the best feuds of all-time against Ric Flair. He would later wrestle in WWF, WCW, ECW where he was a 2-time ECW World champion including an ECW World Title win at ECW's first PPV Barely Legal and also in FMW and IWA Japan, where he wrestled in some crazy deathmatches, including the IWA Japan King of the Deathmatch finals against Cactus Jack. He has had a whole bunch of retirement matches, but I think he just couldn't ditch the wrestling bug because he has such a love for the business. A legend of the hardcore style. I feel like he and Cactus Jack popularized hardcore wrestling and without them there may have never been promotions like CZW and later GCW and ICW No Holds Barred. Funk also has one of my favorite wrestling books."
Rating: 10.0
Sentiment: 0.371875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: JuWFEAEwrote on 21.09.2020:[10.0] "Terry Funks Matches unterhalten mich einfach immer gut. Egal ob Hardcore, Brawl oder früher bei der NWA Technisches Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Donniewrote on 04.08.2020:[10.0] ""I can't make people believe wrestling is real, but i can make them believe I'm real" Terry was the realest motherfucker to ever get in a ring. From his promos to his matches, and everything in between. Maybe the greatest to ever do it."
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: MildlyAmusingwrote on 03.08.2020:[10.0] "An icon of wrestling, Terry Funk's influence can't be understated. His phenomenal skills as a brawler helped create a sub genre of wrestling, his promo skills are incredibly underrated, his ability to be believable as face or heel, his amazing career longevity. Terry Funk is simply one of the best to ever step foot in a wrestling ring."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Kaswrote on 02.05.2020:[10.0] "The most versatile wrestler in the history of wrestling. He could do technical matches, brawls, deathmatches, and high work-rate matches all to huge levels of success, and could slot into the face or heel role seamlessly. On top of all this, he's one of the greatest promos of all time and has shown an incredible ability to get over anywhere, whether that's in WCW, All Japan, Memphis, or WWC."
Rating: 10.0
Sentiment: 0.47000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: jajt1989wrote on 11.01.2020:[7.0] "Basing of what ive seen of him, great promo and brawler and hardcore wrestler but other then those not much else going for me. I'm sure the more i see my score will change though"
Rating: 7.0
Sentiment: 0.31500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: JEK 1991wrote on 04.04.2019:[10.0] "A pioneer of hardcore wrestling. He changed the wrestling world forever. Excellent as a heel, great at promos and moves. I can't believe he is still wrestling and keeps saying he going to retire."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: zephyrwrote on 09.10.2018:[6.0] "I respect the man for his long (and I mean loooong) career and consistent willingness to engage in hardcore brawls but let's be honest here, aside from those things he never had much going for him."
Rating: 6.0
Sentiment: 0.1375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Steamboat2511wrote on 02.10.2018:[7.0] "Terry Funk ist eine - vielleicht die - amerikanische Hardcorelegende. Aber Funk ist auch einer derjenigen Hardcorewrestler, die große technische Fähigkeiten aufweisen und jederzeit auch ein ansehnliches, normales Match zeigen können. Natürlich hat er viele legendäre Hardcorematches aufzuweisen, aber mit stark blutenden, sich um der Gewalt willen mit Feuer etc. attackierenden Wrestlern hab ichs nicht so. Da er ein enormes Standing als Legende hat und außerdem wirklich etwas drauf hat, kann ich seine Leistungen in allen Bereichen des Wrestlings aber sehr wertschätzen."
Rating: 7.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: RatingsMachinewrote on 29.09.2018:[9.0] "Terry Funk is one of the all-time greats, who brought so much to the table. He could talk and get an angle over, he could wrestle and brawl, he could bump like a madman, as per the standards of the time, etc."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Rabidwrote on 22.04.2018:[9.0] "One of the most hardcore wrestlers of all time, not only could Terry Funk brawl, grapple, and even fly, he was the complete package. From his days in the 70? s wrestling Ric Flair winning the WWF Tag Team Titles with Mick Foley as Chainsaw Charlie. Terry Funk was a legendary personality who? s impact on the business can never be replicated."
Rating: 9.0
Sentiment: 0.4833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Gauntlet84wrote on 21.04.2018:[8.0] "Even as a kid I heard stories about Terry Funk and Hoss Funk. My great grandpa was 97 in 1992 and he would talk about the Funk brothers. When I was a kid I remember him as Chainsaw Charlie but years later I rewatched all of the old WWF/WCW supercards and pay-per-views and really got to see him when he was younger. I never got to see his glory days in the late 60s and 70s but I still enjoyed what I did see from him."
Rating: 8.0
Sentiment: 0.18571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: CHN325wrote on 01.02.2018:[8.0] "No one has reinvented himself more than Terry Funk. No matter how old he was, no matter what style he was wrestling he made the match enjoyable to watch. A True legend."
Rating: 8.0
Sentiment: 0.36250000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Blood Pumpwrote on 30.03.2017:[9.0] "Third only to Steve Williams and Stan Hansen as far as brawling is concerned, but really the man was a jack of all trades. Terry was one of those rare all rounders who had it all to some extent. He could go to the mat, he could go fist to fist and he even knew how to make hardcore wrestling not so trashy. Terry did gravitate away from the technical side of things after the 70s but never lost his charm. He played the crazy heel well, having renowned feuds with Lawler and Flair in which he'd bring that crazy persona all the way in. His empty arena match with Jerry in particular is worth watching just to see how over the top he could be."
Rating: 9.0
Sentiment: 0.02222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: TrevPuroFanwrote on 19.09.2016:[10.0] "Many people throw the word 'legend' around nowadays, but a guy who is one without a shadow of doubt is, Terry Funk. He's in my opinion the most versatile performer of all time, he could wrestle any style, any day. He could work both the heel and face role to perfection. Had classics for over 50 years that his career lasted. And if this is truly the final time he'll step into a wrestling ring, all I want to say is Thank You Terry Funk, you have nothing left to prove."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Luv all wrestlingwrote on 11.09.2016:[10.0] "Terry Funk is a legend for his legendary feuds and matches in the NWA, his crazy hardcore match career post NWA and for his yearly retirement match, Terry Funk is, and will always be a spectacle(A damn awesome one at that)."
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: NastyYaffawrote on 30.04.2016:[10.0] "Terry Funk is the definition of a wrestling legend. He lives, eats & breathes professional wrestling. One of the greatest babyface workers ever, one of the greatest heel workers ever, one of the best sellers ever... He could go on the mat, he could brawl like no else. He could do it all. Terry Funk is the man."
Rating: 10.0
Sentiment: 0.775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: MatteoMerdokwrote on 17.04.2016:[7.0] "Basing my review on the matches of Funk that I've watched, I'm sure that as I see more my score will improve. Two of his high rated matches were big let downs for me. (vs Sabu in a barbed wire match and vs Flair in an I Quit match). Other matches have been really good. Looking forward to watching more of the Funker."
Rating: 7.0
Sentiment: 0.3192857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Moose Nuggetwrote on 03.03.2016:[10.0] "It's crazy how for so many decades Terry Funk was able to keep himself relevant as a pro wrestler. I feel like he's really underrated as a technical wrestler but that's probably because of his brother Dory. Funk was a great NWA World Heavyweight Champion being able to carry people to great 60 minute matches. For some reason after dropping the belt he fell out of the title picture. I loved his feud with Jerry Lawler in Memphis. In 1989 he became a unlikely contender for The NWA World Heavyweight Championship again. He had some great matches with Ric Flair in that time. He helped the independent promotion ECW and won their World Heavyweight Championship on their first pay per view in 1997. Terry Funk is an all time great worker."
Rating: 10.0
Sentiment: 0.3433333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Phenomenal91wrote on 22.11.2015:[10.0] "Almost 50 years in the business. He says he's done for good now. Maybe, maybe not. But this man turned violent hardcore wrestling into an art form, but backed it up with some of the most legitimate skill you'd ever hope to see. He's probably broken everything 3 or 4 times by now, but he will always be one of the greatest of all time."
Rating: 10.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Zedwrote on 19.05.2015:[10.0] "Er wrestlete schon als die meisten Fans noch nicht mal geboren waren, und er wrestlet auch heute noch, wenn auch nur noch selten. Doch zu NWA Zeiten war er ein sehr guter Wrestler, zusammen mit seinem Buder Dory. Im Alter von 45 Jahren merkte der Funker dass er den Stil von einst nicht mehr gehen konnte, und anstelle er es so tat wie die Meisten seiner Kollegen die in dem alter zurücktraten, erfand er sich einfach so nochmal neu und startete eine Hardcore Revolution, die in Japan begann und bis heute anhält. Hierfür verdient Terry meinen vollsten Respekt. Legende !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: downtown2wrote on 23.04.2015:[8.0] "Funk war immer ein guter Mann in der NWA, der stets sich und die Promotion würdig vertrat. Eine absolute Persönlichkeit in und außerhalb des Rings und das macht ihn erst zur Legende. Charaktere wie ihn gibt es nicht viele, gab es früher schon nicht und somit absolut aus der Masse hervorzuheben. Fürsorglich und aufopferungsvoll für seinen Sport und seine Kollegen, aber auch eigensinnig und speziell. Hier darf man Funk auch nicht verklären, denn seine späteren Aktivitäten im Hardcore-Bereich waren teils genial, teils aber auch eine Zumutung für seinen Körper und die Gesundheit seiner Gegner. Insgesamt aber ein Meilenstein in diesem Sport, ein großer Name und ein großer Mann."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: zackwoowoowooryderwrote on 09.01.2015:[9.0] "Zu seinen Anfangszeiten war er ein wirklich sehr guter Technicker, der selbst im "goldenen'' Alter durch seinen Wechsel zum Hardcore Wrestling noch unterhalten konnte und jetzt steht er mit 70 immernoch im Ring und bringt mehr als ordentliche Leistungen und dafür hat er meinen Respekt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Matt4Wrestlingwrote on 03.05.2014:[10.0] "Einer der wohl härtesten Brocken, die je in einem Ring gestiegen sind! Man ist oft fasziniert, wie er von Hardcore auf "normales" Wrestling umswitchen kann und wie es schon in der Doku Beyond the Mat hieß, wie ein freundlicher Mann zu solchen Sachen fähig ist und war! Vielleicht war nicht jedes seiner Matches ein 5-Sterne Match, aber mit welchen Eifer er immer hinter seinem Stil und seinem Einsatz hinter jeder Promotion stand, ist absolut TOP!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Roode66wrote on 20.02.2014:[10.0] "Es gehört mächtig was dazu, noch so spät in seiner Karriere so viel Einfluss auf Trends im Sport Entertainment zu haben und so viele Legendäre Momente zu haben. Was wäre uns alles tolles entgangen, hätte Funk schon seinen ersten Rücktritt durchgezogen? ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: PHILLYWALTwrote on 01.11.2013:[10.0] "What a great career. Its amazing that a 15 month reign as THE WORLD HEAVYWEIGHT CHAMPION, is an overlooked part of his resume. Worldwide Superstar, the re-invented himself into a hardcore legend. Of course you also have to consider the training credential he also has, maybe not the same as his brother but impressive inits own right.   A legend is many ways."
Rating: 10.0
Sentiment: 0.5408163265306123
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Leonewrote on 02.04.2013:[10.0] "Few wrestlers in the history of the industry have ever evolved as an in-ring performer like Terry Funk.  Some might even say that Funk has 3 different primes, consisting of eras and certain years.  His 1st prime was from his debut, up until his first retirement in 1981, he was a long-reigning NWA champion, well known for his strong technical wrestling, storytelling and brawling.  He eventually returned, and dawned a more texas outlaw-like gimmick.  It was during this time he became known for his strong promos, stronger storytelling, brawling and showmanship.  At the age of 44/45 in 1989, Terry Funk was in the best shape of his career, and had easily 1 of the best years, in terms of promo and match quality of any wrestler ever.  It was after this time that Terry began to evolve again, and reached another prime by 1997, at 52/53, this time he was a brawler, hardcore wrestler and even a high flyer!  He worked in the sickest barbed wire match in ECW history while he was their world champion, and took part in Japanese Deathmatches were barbed wire and explosives were the norm.  Throughout his career, Terry has wrestled in some of the best quality wrestling matches, the brutalist hardcore matches, cut some of the best promos, had the best title reigns, and trained some of the best wrestlers in the world from the 1980s onwards.  There will only be one Terry Funk, and I hope that someday someone will come along with that kind of skill and charisma again."
Rating: 10.0
Sentiment: 0.46654135338345865
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: JuliTheCage87wrote on 21.02.2013:[10.0] "Hab mir ein paar alte Videos angeschaut und man muss sagen: WOW! Klasse Techniker und wahrscheinlich eine größere Hardcore-Legende als Mick Foley, zumal man ja sagen muss, dass Funk immer wie ein Mentor für ihn war. Jedoch sollte er es langsam gut sein lassen, er ist nun doch in einem fortgeschrittenen Alter."
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: The Woerpwrote on 06.02.2013:[4.0] "Zugegeben, ich kenne eigentlich nur seine Hardcore Schlachten, z. B. gegen Foley. Und die haben mir nicht gefallen. Vielleicht war er dort einfach schon zu alt...."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Italian Straight Edgewrote on 09.09.2012:[10.0] "Gehört in den Top 10 der größten aller Zeiten. Habe unfassbar viel Respekt für den Funker."
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Kitanoyamawrote on 30.08.2012:[8.0] "Wrestlerisch ehrlich gesagt jetzt nicht DIE Offenbarung, aber er ist, auch in der Hardcore-Szene, zurecht eine Legende. Er konnte einstecken, austeilen... was immer man wollte, und das auch weit über die 50 hinaus."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Senajwrote on 27.01.2012:[10.0] "Hardcore Icon, ich denke das sagt doch schon alles. Einer der ganz Großen seiner Zunft"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: 7TheEwrote on 17.12.2011:[8.0] "Puh war ganz früher ein verdammt guter Techniker, aber er ist natürlich am bekanntesten Hardcore modern zu machen, schon bevor es ECW gab war er ECW und so war es nur logisch das er dort auch hinkam.  Für viele eine unbekannte Legende ich kann mich eigentlich auch nur auf die ECW Zeit beschränken, da kenn ich einige Matches, am bekanntesten wohl das Barbed Wire Match, dass erste Match dieser art in Amerika. (wenn mich nicht alles täuscht) Am geilsten das er mit Mitte 50 angefangen hat Moonsaults zu springen und in Leiter Matches teilzunehmen.  Er wird warscheinlich irgendwann im Ring sterben, der Mann lebt und liebt das Wrestling wie kaum ein zweiter!"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: exxterwrote on 02.04.2011:[10.0] "ECW Legende, und auch in anderen Promotion legendäre Matches geleistet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Ullewuppwrote on 07.02.2011:[10.0] "Terry Funk ist für mich ein einzigartiger Wrestler. Im Bereich Hardcore, sowohl im offensiver als auch defensiver Hinsicht, kann mit ihm wohl nur Mick Foley mithalten. Man denke hier einmal an das unglaublich brutale Barbed Wire Match gegen Sabu oder an das I Quit Match gegen Ric Flair. Abgesehen davon beherrscht er aber auch ein sehr großes Repertoire an technischen Aktionen, das er vor allem in der Frühphase seiner unglaublich langen und erfolgreichen Karriere zeigte. Er steht nun seit über 45 Jahren im Ring und weis immernoch abwechslungsreich zu unterhalten (etwas das z. B. Flair kaum noch kann). Der Funker prägt das Wrestling nun seit 5 Jahrzehnten und hat allein für seine große Anzahl an absoluten Matchklassikern nichts anderes als die 10 Punkte verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Rated R Champwrote on 06.02.2011:[10.0] "Terry Funk ist total verrückt, der Mann hat sein Leben wirklich dem Pro Wrestling verschrieben kehrt immer wieder in den Ring zurück. Kenne seine frühen Zeiten nicht, aber das was ich seit seiner ECW Zeit gesehen habe reicht mir. Gerade was Funk um hohen Alter noch an Leistung und Entwicklung(! ) vorweisen konnte ist einfach beeindruckend."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: BenZenwrote on 15.12.2010:[10.0] "Beim Funker führt nichts an der Höchstnote vorbei. Für mich der wohl kultigste Typ des Wrestlings aller Zeiten. War auch schon vor den 90ern ein durchgeknallter Bastard. Brutale Schlachten mit Abdullah The Butcher oder hochklassige Main Events mit Ric Flair, der Kerl hatte es einfach drauf. Mit seiner stets unberechenbaren Art immer unterhaltsam und als er dann auch noch anfing mit Cactus und Sabu Meilensteine im Hardcore-Wrestling abzuliefern (nicht zu vergessen seine blutige Fehde mit Eddie Gilbert), erreichte er selbst über diese nicht so hoch geachtete Sparte Legendenstatus. Ein großartiger Charakter. Spinning Toe Hold~!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Finnish Nightmarewrote on 10.11.2010:[10.0] "Hat über jahrzehnte Topleistungen und geniale Matches gezeigt, der gute alte Onkel Terry!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Manu Adamswrote on 27.07.2010:[7.0] "Als Ekelpacket in den 80igern in der Liga der McMahons wußte er zu Gefallen, von seinen Matches in Japan oder Florida zusammen mit seinem Bruder Dory habe ich nur eine handvoll gesehen, aber auch hier war er für damalige Verhältnisse gut. In den 90igern hingegen als Hardcore Wrestler nicht mehr mein Fall. Ich bin kein großer Fan dieser Art von Wrestling. Sollte allerdings einfach aufhören seine Schuhe an den Nagel hängen und sich wie die meisten anderen vor dem Bildschirm das Wrestling reinziehen, ich meine der Mann ist 66 Jahre alt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Fountain of Misinformationwrote on 06.06.2010:[10.0] "Wrestling's Living Legend, mehr Worte muss man bei diesem Mann nicht verlieren, war fast überall dabei, hat fast alles im Ring einmal gemacht und hat in jeder Dekade, in der er aktiv war, bis heute sichtbare Spuren hinterlassen. Außerdem vermutlich eine der größten Persönlichkeiten im Wrestling-Business und ich bin sehr froh den Mann (gegen Finlay! ) Live erlebt zu haben. Was Lemmy Kilmister für den Rock'n'Roll ist, das ist Terry Funk für das Wrestling."
Rating: 10.0
Sentiment: 0.19545454545454546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Erasedwrote on 30.05.2010:[9.0] "Zu seinen Anfangszeiten ein wirklich sehr guter Technicker, der selbst im , , goldenen'' Alter durch seinen Wechsel zum Hardcore Wrestling noch unterhalten konnte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Marco Ewrote on 10.03.2010:[9.0] "Terry ist einfach eine Legende!  Konnte ihn einige Male live sehen und finde, er ist einer der unterhaltsamsten Wrestler der Welt. Und sicher auch einer der härtesten. 1 Punkt abzug, weil er natürlich den richtigen Zeitpunkt zum aufhören verpasst hat. Toller Wrestler!"
Rating: 9.0
Sentiment: 0.08522727272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: The-Game91wrote on 13.08.2009:[9.0] "Terry Funk ist ein Syonym für das Wort Hardcore. Er ist eine Legende und hat so einiges mitgemacht. Doch er hätte viel früher zurücktreten müssen um seine legendäre Glaubwürdigkeit nicht zu schaden."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Eddiewrote on 03.06.2009:[6.0] "Vergleichbar mit Foley, er hätte einfach endlich mal aufhören sollen.. Damals in ROH 2003 war ich froh dass er überhaupt noch stehen konnte, das Match war dementsprechend.. Mein Fall auch nie gewesen, wie Foley, 6 Punkte."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: ShakDragoonwrote on 05.02.2009:[10.0] "Einfach großartig, welch Aufopferung und Intensität er in seine Matches gesteckt hat. DIE Hardcore Icone schlechthin!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Matt Mackswrote on 24.01.2009:[10.0] "Terry Funk kann auf eine beeindruckende Karriere zurückblicken. Seine frühe Zeit mit Bruder Dory Funk Jr. kenne ich zu wenig, um sie wirklich bewerten zu können, aber seine "zweite Karriere" als Hardcore-Brawler ist sowieso weitaus definierender, was seine Reputation angeht. "Middle-aged and crazy" wurde er genannt und bis zum Ende seiner aktiven Karriere machte er diesem Namen alle Ehre. Mir bleiben in erster Linie seine Schlachten mit Mick Foley und Ric Flair in Erinnerung, doch viele Fans sehen in ihm auch die ECW-Ikone, ohne die es die ECW niemals geschafft hätte. So oder so, Funk gebührt Respekt für sein Lebenswerk."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: N3m35i54wrote on 10.11.2008:[10.0] "Was muss man zu ihm noch sagen, außer volle Punktzahl?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: blackwhitesunwrote on 09.11.2008:[10.0] "Terry Funk braucht keine Bewertung, er spricht für sich selbst. Funk ist GOTT."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Akkuswrote on 08.11.2008:[10.0] "Der Mann ist Hardcore. Mehr brauch ich dazu net zu sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: El Reywrote on 07.10.2008:[8.0] "Der Funkster ist die Hardcorelegende... Foley in allen Ehren."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: TerryBrunkwrote on 02.09.2008:[10.0] "Funk U! Der Mann hat es einfach drauf und ist unglaublich. Sein Körper ist vom Wrestling gezeichnet. Immer noch wrestlet er um ein bißchen Geld zu machen. Auf der einen Seite ist es traurig das er heute schon fast zum Ring getragen werden muss, aber auch schön dass er für seine Fans einfach alles gibt. Wenn seine Alkoholsucht ihn nicht umbringt, hätte er es verdient im Ring zu sterben und damit noch unsterblicher zu werden."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: nacho83wrote on 14.08.2008:[10.0] "Sein Barbed Wire-Match mit Sabu ist ein Highlight aller Hardcore Matches überhaupt, er selber zeigt(e) auch im hohen Alter noch unglaubliches Stehvermögen und ist einfach was den Hardcorebereich angeht eine Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Eaterwrote on 14.08.2008:[10.0] "Legendenbonus hin oder her, der Funker ist und bleibt einzigartig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: StoneColdRevowrote on 18.07.2008:[10.0] "Einer meine Lieblingswrestler überhaupt. Besonders toll ist das Barbed Wire Match zwischen Cactus Jack und Terry Funk in Japan. Ich hab erst gar nicht gewusst das er älter als Ric Flair ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Berndwrote on 14.07.2008:[10.0] "Natürlich gute 10 Jahre zu spät zurückgetreten, aber was soll's - er ist der Funker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Typhixwrote on 02.07.2008:[8.0] "Ich kenne Funk nur aus den 90ern und 00ern. Schon vor 10 Jahren war Funks Beweglichkeit deutlich sichtbar eingeschränkt und er weit über seine Zeit. Trotzdem wusste er die Massen zu begeistern, seine Erfahrung war ihm deutlich anzusehen. Was von Funk aber am meisten in Erinnerung bleibt, sind natürlich die Extreme Hardcore-Matches. Selten so einen verrückten Kerl gesehen, der immer Vollgas gab - egal was sein Körper dazu sagte."
Rating: 8.0
Sentiment: -0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: caterwrote on 27.04.2008:[8.0] "Auch wenns schon oft geschrieben wurde: Hardcore-Legende. Trotzdem nicht die volle Punktzahl, da er an irgendeinem Punkt seiner Karriere vergessen hat aufzuhören."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: ZuluBunsenwrote on 24.03.2008:[10.0] "Ich glaube, dass die Gleichung "Terry Funk = Hardcore" genau aufgeht. Eine absolute Legende des Hardcorewrestling!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Masadawrote on 10.03.2008:[10.0] "Terry Funk ist Wrestling! Er liebt das Bis. und ist bis vor kurzem noch von Leitern geflogen und hat sich in Stacheldraht geschmissen. Dieser Mensch liebt das Wrestling wie kein anderer, das macht ihn für mich zum Besten aller Zeiten. (ich hoffe das war jetzt ausführlich genug)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: felixwrote on 16.02.2008:[10.0] "Terry Funk steht aufgrund seines Beitrages zum Wresling allgemein, nicht nur Hardcore, auf einer Stufe mit den ganz großen dieser Zunft. Er ist eine absolute lebende Legende, die ohne Frage die volle Bewertung verdient."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Legionwrote on 29.01.2008:[8.0] "Am besten gefiel mir sein Stacheldraht Match gegen Sabu. So was sieht man heute einfach nicht mehr, schade eigentlich... Wie Mick Foley ein Hardcore Legende, hab ihn immer gern gesehen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Baszdmegwrote on 01.01.2008:[10.0] "Eine Legende, auch wenn die Leistungen in den letzten Jahren verständlicherweise nicht das Gelbe vom Ei war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Kain Wolfsheadwrote on 24.10.2007:[10.0] "Legende. Punkt. Was schlechtes über diesen Mann zu sagen ist nicht möglich! Leider wird oft vergessen, dass Funk mehr als nur ein Hardcorewrestler war! Seine Tag Team Matches gemeinsam mit Bruder Dory jr. in Japan sind legendär! Sein Einsatz für Extreme Championship Wrestling beispiellos!"
Rating: 10.0
Sentiment: -0.15625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Masterpiecewrote on 15.10.2007:[10.0] "The Living "Hardcore" Legende ... mal sehen wann Terry sein Comback feiert!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Bhanduwrote on 08.10.2007:[8.0] "Früher ein guter Techniker und Brawler, so hat er sich im Alter von 50+ Jahren völlig neu erfunden und seine Nische in Hardcore Matches gefunden. Leider dennoch jemand, der den richtigen Zeitpunkt zum Rücktritt verpasst hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Nick Toxicwrote on 24.09.2007:[10.0] "Neben Mick Foley für mich der Inbegriff von Hardcore/Death Match! Dieser Mann hat soviel erreicht und ist eine lebende Legende. Seine seltenen Auftritte sind immer Highlights, weil Funk immer noch zu begeistern weis und sich echt für nix zu schade ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Steven McWheelerwrote on 31.08.2007:[8.0] "Kranker Typ, hardcore krass, mit jedoch zu viel für den guten Geschmack"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Hardcoremaniacwrote on 10.08.2007:[10.0] "Einfach eine Hardcore Legende. Aber er kann auch den ganz normalen Stil gehen. Ich habe ihn immer gerne gesehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: shannonmoorewrote on 08.08.2007:[8.0] "OK unter normalen Umständen ne miese Note wegen dem ganzen Hardcore Trash aber der Mann verdient sehr viel Respekt. Sich in dem Alter immer noch sowas seinem Körper anzutun das ist schon erstaunlich."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: D3adm4nwrote on 06.08.2007:[10.0] "Ganz klar, neben Mick Foley fällt einem sofort der Name 'Terry Funk' ein, wenn man das wort Hardcore hört. Einer der ganz großen, auch in den späten Jahren seiner Karriere..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Sandman16wrote on 05.08.2007:[10.0] "Unglaublich was Funk für Matches bestritten hat in seiner langen Karriere. Auch Respekt für seine Matches bei Hardcore Homecoming und ONS, und das in diesem Alter. Funk kann aber nicht nur in Hardcore Matches glänzen, sondern kann auch den normalen Wrestlingstil gehen. Terry ist ohne jeden Zweifel eine lebende Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Mick Funkwrote on 31.07.2007:[10.0] "Die Hardcore-Legende neben Mick Foley. Knallhart! Selbst im hohen Alter."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Blade Bourdeauxwrote on 14.07.2007:[8.0] "Ein Mann hart, wie Kruppstahl und total durchgeknallt im Ring. Zudem besitz er schauspielerisches Talent, zumindest ein kleines. Also, im Endeffekt kann man diese absolute Hardcore Legende nur mit starken 8 Punkten bewerten."
Rating: 8.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Adrammelechwrote on 24.06.2007:[8.0] "Seine Hardcore Matches sind legendär! Und trotz seines inzwischen hohen Alters zieht er seine Karriere durch. Respekt, nur Mick Foley ist für mich noch eine grössere HC Legende"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Seit Ewigkeiten mit dabei, vom puren Wrestling her zwar nicht der Brüller, aber seine Hardcore Matches sprechen für sich! Steht eigentlich fast auf einer Stufe mit Mick Foley!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: jollietwrote on 24.06.2007:[10.0] "Platz 2 auf der ewige Wrestlinghosenrangliste - nach Rick Rude"
Rating: 10.0
Sentiment: -0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: mdbnasewrote on 24.06.2007:[10.0] "Zwar kein Filigrantechnicker aber mit Leib & Seele Wrestler! Der BESTE HC-Wrestler aller Zeiten (kurz vor Mick Foley) und schont sich auch im Rentenalter nicht. Grösster Respekt vor so viel krankem Redneck-Enthusiasmus!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=501&gimmick=Terry+Funk
Comment: Blue Meaniewrote on 24.06.2007:[10.0] "Hardcore Legende! Schon allein die Tatsache, dass jeder seiner Moonsaults ein Upfuck war, macht ihn legendär ..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: nothingleftinsidewrote on 17.12.2024:[9.0] "Perhaps the greatest pure babyface of all time, Ricky Steamboat is one of the all time great wrestlers who is often overlooked, mostly due to his inconsistent career and lack of staying power that really would cement his legacy with fans. One of the best conditioned wrestlers ever, Steamboat was made famous from his multiple broadway-length matches between him and Ric Flair. A master of selling and getting sympathy, Steamboat excelled wherever he made an appearance. Unfortunately, anywhere he popped up he wasn't there for too long and would be out of the public eye every few years, keeping him from building real momentum. Highlights are his early matches with Flair, his 80s WWE run, and his late 80s/early 90s WCW runs. He hit Japan twice in the 80s, resulting is some classic matchups. His only weakness is probably his mic skills, but he was good enough for it not to matter much, especially when paired with an interesting heel or tag team partner. Even so, his promos have become the baseline blueprint for any babyface promo. He also never held a world title, probably due to his lack of being able to commit anywhere for long enough to be able to cement a world title reign. Several great runs with midcard belts though. A in the ring B+ look/gimmick, and C on promos. His arm drags were a thing of beauty."
Rating: 9.0
Sentiment: 0.2082482993197279
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Zak22wrote on 15.11.2024:[8.0] "On his day, the best or at least one of the best in the world. Unfortunately his day wasn't as consistent as some others. But yeah, capable of excellent performances and a good babyface."
Rating: 8.0
Sentiment: 0.41874999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: jsbortswrote on 19.09.2024:[10.0] "Ricky Steamboat is probably the best babyface in the history of wrestling. He is fantastic in every single way and is just one of my all time favorites, and one of those guys who could've gone in any era and been a star."
Rating: 10.0
Sentiment: 0.44285714285714284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Cletxawrote on 16.08.2024:[10.0] "Although his mic skills were limited, Ricky Steamboat was a wrestler "beyond his era" in the ring. A Ricky with a good physique can put on tremendous performances in the 1970s, 90s, pg era and modern wrestling. I especially recommend watching his rivalry with Ric Flair. As a result, Ricky Steamboat is one of the most excellent wrestlers in the ring of his era"
Rating: 10.0
Sentiment: 0.3802721088435374
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: TheBigRed259wrote on 02.08.2024:[9.0] "Aside from being average on the mic, Ricky Steamboat was almost a perfect performer. Few could match him in the ring during his day and his matches with Ric Flair, Randy Savage and Steve Austin were fantastic to bordering on legendary."
Rating: 9.0
Sentiment: 0.41
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Giantfan1980wrote on 25.06.2024:[9.0] "The only reason I don't give Steamboat a perfect 10 is because his mic skills were a little meh. He had the intensity and enough skills to carry 3 bums to a 3 star match. Not much else you can say about The Dragon."
Rating: 9.0
Sentiment: 0.14250000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Rassle Fanwrote on 19.04.2024:[9.0] "One of the greatest wrestlers ever! If he had any weakness it was his promos. He wasn't awful but he never really had a memorable one. That said, his timing and athleticism were world class and should be studied by any prospective wrestler worth their salt."
Rating: 9.0
Sentiment: 0.13999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: theelevatedonewrote on 13.04.2024:[10.0] "Ricky Steamboat is the wrestler that embodies the phrase "ahead of their time". It is simply insane to watch his matches from his main career run back, his work from back then still wrestles circles around so many people active today. Even in his mid 50s in the late 2000s he was still on top form. He is also one of the most likeable wrestlers of all time, his charisma and selling puts him at the top of the greatest natural babyfaces of all time ranks alongside Rey Mysterio, Hiroshi Tanahashi, Dusty Rhodes and Steve Austin. He is simply one of the best."
Rating: 10.0
Sentiment: 0.15208333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Perc Anglewrote on 12.04.2024:[9.0] "He and The Macho Man are the wrestlers desperately wished I could have watched live but I was to busy not being born. What a captivating performer and in my top three of the Golden age"
Rating: 9.0
Sentiment: 0.15606060606060604
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: SJ Millerwrote on 22.02.2024:"Alongside Rey Mysterio, the most natural babyface in wrestling history. Wasn't a flashy talker and didn't need to be, he had handsome movie star features and yet was a very relatable real life personality. In the ring he was literal decades ahead of his time, during a brief return to WWE action in 2009 he proved that the way he wrestled in the '80s was the blueprint for how things are done today."
Rating: No rating found
Sentiment: 0.1375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Scottielstamperwrote on 23.01.2024:[9.0] "9 The Dragon Ricky Steamboat is a Legend. Just his matches with Ric Flair or Randy Savage make him a top guy. I always thought Steamboat brought out the best in Flair and Savage. Even in the later part of his career he was doing great stuff with Steve Austin and others."
Rating: 9.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Smi-48wrote on 10.01.2024:[10.0] "Steamboat ist für mich in den 80ern das, was Bret Hart und Shawn Michaels in den frühen 90ern waren - nämlich das absolute Top Niveau im US-amerikanischen Main-Stream Wrestling. Es gibt kaum ein Match, in welchem er nicht den talentierteren Bestandteil darstellt, keine Underdog-Klaviatur, die er nicht gespielt hat, und kein verbissenes Comeback von ihm, welches irgendjemanden in der Halle kalt lässt. Steamboat ist ein Gardetechniker und Geschichtenerzähler, ein Sympath, ein Eckpfeiler im Business und eine Legende. Ich habe diesem Typen immer sehr gerne zugesehen."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Itayboiwrote on 06.01.2024:[10.0] "Maybe the best face in the hiatory of pro wretling, ricky the drafon steamboat is a one of a kind talnet. You will almost never see a bad match with him in it and when he was at his best (mostly aginst fliar) he could at times look prefect. He is in manny ways the template good guy having never cheating and always standing up for what his right yet nevr felt corny when doing so. In short the drgon is one of the graatest to ever step into a wrestling ring"
Rating: 10.0
Sentiment: 0.42321428571428577
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: crs285wrote on 25.11.2023:[10.0] "Steamboat was an innovator in pro wrestling. He was one of the first smaller stars to gain major popularity. He was the total package in the ring and the crowd absolutely loved him to the point nobody would turn him heel."
Rating: 10.0
Sentiment: 0.20249999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] "When discussing the greatest babyfaces of all time, you'll get names like Hulk Hogan, John Cena, Steve Austin, Daniel Bryan, Rey Mysterio, Jeff Hardy to name a few, one that most modern fans forget to add is this man right here, Ricky "The Dragon" Steamboat! Seriously, he's an easy top 5 in the best babyfaces, he's so organic as a good guy, he was born in the role and could never be a heel. Aside from that, Ricky Steamboat is among the most elite performers in the ring to ever grace the mat by having some of the best executed moves ever, his arm drag is still the best, and having some of the absolute best matches of all time with the likes of Randy Savage and Ric Flair to name a few, he's a total legend no matter who says what. He had it all, amazing seller, great babyface, off the charts psychology, working a crowd, wrestling, telling stories, etc. the only thing he didn't have was amazing promos, but he was at least serviceable at them, but that shouldn't be a reason to discredit him since he made up for it more than enough. It's a shame he retired while he was in his prime, in the middle of having a great feud with Steve Austin, as well, because I feel like he could have totally stuck around up until the early 2000s. Oh well, he's left behind a legendary career that will forever be immortalize thanks to his work."
Rating: 10.0
Sentiment: 0.368452380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: DangoDaisukiwrote on 19.09.2023:[7.0] "Ricky Steamboat ist einer der Wrestler von früher der Potenzial zu mehr gehabt hätte als er zeigen durfte. Aber trotzdem würde ich ihn jetzt nicht so hoch bewerten. Charisma, Mic Skills etc ist eher so mittelmäßig und seine Matches waren besonders für damals ziemlich gut aber ich finde so gut jetzt auch wieder nicht."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: danzitorockwrote on 19.08.2023:[10.0] "Ricky "The Dragon" Steamboat is an absolute legend, one of the greatest pro wrestlers of all time. He is a legendary babyface, one of the most iconic we've ever had. His ring skills are flawless, he is very ahead of it's time and also is one of the most technical wrestlers ever."
Rating: 10.0
Sentiment: 0.5444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Wrestling Foreverwrote on 10.03.2023:[10.0] "Einfach eine absolute Legende. Immer Bodenständig und Fanfreundlich. Das er es immer noch selbst im hohen Alter drauf hat zeigte er bei BTW Return Of The Dragon. Hatte gegen Ric Flair eine der besten Langzeit Fehden im Wrestling."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: cobrenzoswrote on 08.03.2023:[9.0] "One of the greatest babyfaces, incredible matches especially for the time, with many legendary feuds and matches he is an absolute legend of pro wrestling"
Rating: 9.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: benh2wrote on 11.01.2023:[9.0] "Bell to bell, one of the greatest babyfaces ever. Usually with perennial babyfaces you always get one demographic which doesn't like them but Ricky Steamboat transcended that. Everyone loved him. He just looked like a wrestler. Not a great promo but in the ring he just had that babyface match formula nailed. Always a good match and often great."
Rating: 9.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: CMFunk007wrote on 07.01.2023:[9.0] "Ricky "The Dragon" Steamboat was the WWF's answer to Bruce Lee in the '80s. I loved him back then, but love him even more now in retrospect. His Wrestlemania III match with Randy Savage I watched live and his trilogy with Ric Flair in 1989 are some of my favorites. He wasn't the greatest talker, but you could always count on Steamboat giving you a good in-ring performance."
Rating: 9.0
Sentiment: 0.5051948051948052
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: face painted legendwrote on 17.08.2022:[10.0] "The best babyface of all time, in my opinion. A guy with arguably the best physique in all of professional wrestling. A guy who looked the part. All of the girls loved him. All of the kids loved him. He had a great presentation as far as character went. He could sell his ass off. He could get sympathy from the crowd. He had great fire in the ring. He had a great comeback. He's one of the those guys who you never saw have a bad match. He had great in ring chemistry with 95% of the heels that he got in to the ring with and thus was able to produce some classic matches that stand the test of time. He didn't have the best mic skills, but he's one of the cases where he's so damn good in the ring that it overshadows what he couldn't deliver on the mic."
Rating: 10.0
Sentiment: 0.5644444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: JamesWackenhutwrote on 01.08.2022:[9.0] "As far as technical proficiency, he maxes out rating. His selling, being able to do baby face comebacks without ruin the illusion of previous injury or peril, is a master class. He surely has countless matches that didnt make it to TV every bit as legendary and amazing as his greatest hits. The completely basic baby face gimmick leading up to his feud with Flair didnt generate the heat that it could have- heat that would have made those matches resonate with wider audiences at time- because Flair was something of a tweener and not firing on Ricky as fraud or beholden to his wife. Unfortunately, Ricky was not as skilled at protecting his place on card, getting usurped by Funk after the trio of Flair matches were rushed through in less than 20 weeks, with tons of house show battles as well. His promo skills were not that amazing. And he wasn? t afraid to play third fiddle rather than wade into deep water with the political monsters. As a result, there is so much untapped potential there despite a CV worthy of the hall of fame and some of the greatest matches in North American and world history."
Rating: 9.0
Sentiment: 0.21304347826086958
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: sbg2022wrote on 18.07.2022:[10.0] "A man who has had some of the greatest matches of all time in wrestling. His match at WrestleMania III against the Macho Man was often regarded as the greatest match of all time or at least one of them. His feud with Ric Flair, was fucking LEGENDARY. That is the stuff that wrestling is made of."
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Conquistador37wrote on 16.04.2022:[10.0] "Before I start gushing, we need to get his flaws out of the way. Yknow how he often sold things like COMPLETE DEATH or at least POTENTIALLY FATAL? Well, he even did this for the likes of Jimmy Jack Funk. Does the term "discretion is the better part of valor" mean anything to this man? Sell DEATH if you just got whipped about by the One Man Gang sure, but if you're giving enhancement talent the reaper's touch rub - someone needs to sit you down and explain the laws of the land. Second flaw: letting his hand fall down a 3rd time at the inaugural Royal Rumble, sheesh that looked BAD Ricky, really REALLY bad. Third Flaw, His WWF tenures were always messy/odd/iffy/dubious because of his ex-wife and/or the lingering bad taste she left behind. NOW! with those out of the way: One of the greatest chain wrestlers ever, almost every match has that one ridiculous sequence with about 18 near falls in around 6 seconds LOL. Outstanding fluidity, his body language and control was off the charts (a run away winner with the best "skin the cat"). Crowd connectivity/natural charisma in spades. Always looked in phenomenal shape (and when he was on the roids, looked INSANELY great). The best arm drags in the history of the business, one of the best leap frogs, some of the best chops. Could drag out something damn good with a paper bag, let alone another worker. Over the top mind blowing chemistry with Ric Flair & Steve Austin, notable outstanding chemistry with Rick Rude & Paul Orndorff. Legendary chemistry with Randy Savage. One of the best tag partners another could possibly have; that early team with Jay Youngblood hooked me INSTANTLY, the "mystery partner" moment with Dustin Rhodes is personally one of my biggest freak/geek/markout moments ever and he brought out the best from Shane Douglas when they teamed. I relish in every match he's worked, even the disappointments. Other notes: I appreciated the way he worked an arm bar by rocking back and forth. The "Dragon" gimmick with the fire breathing was SO FREAKIN COOL . The matches with Ric Flair really are as good as people make them out to be. His WCW tenure is criminally underrated (well except the Flair feud lol). I might add more later - would love nothing more than to use 3000 characters to endorse Ricky Steamboat!"
Rating: 10.0
Sentiment: 0.2537126068376068
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Ratewrestlewrote on 03.02.2022:[7.0] "Always had some good matches but i feel he didn't get to the level he needed to be at to be an all time great"
Rating: 7.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: GriffinXwrote on 23.01.2022:[10.0] "How do you not rate Ricky Steamboat a 10' He was damn near perfect in everything. He could grapple with the best of them. He was a highflyer that did it picture perfect. The fans loved him. Think of how many legends had their best match working with Steamboat."
Rating: 10.0
Sentiment: 0.7571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Abo96wrote on 04.01.2022:[10.0] "Das beste pure Babyface im Wrestling. Ein unglaublich sauberer Worker mit glaubhaftem Selling und überragenden Strikes. Trotz geringer Größe dank seiner Athletik auch gegen deutlich größere Worker glaubhaft. Die Matchserie gegen Ric Flair hat die wohl besten Wrestlingmatches aller Zeiten produziert. In der WWF leider nie konstant gepusht worden."
Rating: 10.0
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: IBladeDailywrote on 08.10.2021:[9.0] "Steamboat is one of the all-time greatest babyfaces and greatest in-ring technicians ever. He had legendary feuds with Savage and Falir, amongst others, and the Flair series in 1989 still holds up as one of the all-time greats. I do feel his promos were occasionally unfocused or lacking in real heat, particularly after the Flair series started in 89'. His "good guy" credentials made him look extremely lame at times. But Ricky was bigger than all of that and had a hell of a good run in the 90's as well in tag teams with Shane Douglas and Dustin Rhodes and a very underrated rivalry with Steve Austin."
Rating: 9.0
Sentiment: 0.36969696969696975
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: TigerDiverwrote on 17.03.2021:[9.0] "The best babyface of all time. Know exactly how to get sympathy from the crowd. Can work against possibly any workers. A true legend in the ring. His only down point was his mic skill and promo."
Rating: 9.0
Sentiment: 0.24074074074074078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Brett1980wrote on 23.01.2021:[10.0] "One of the best bell to bell in the 80s. In the WWF between 85 and 87 would usually have the best match on the card. Matches with Flair are legendary."
Rating: 10.0
Sentiment: 0.6875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Old ride long linewrote on 20.12.2020:[9.0] "He was an all time great ring technician. Had countless great matches with flair as well as macho man. Great look and great character that didn? t require him to be good on the mic. He probably deserves the 10s he gets but his lack of another 1 or 2 heavyweight titles holds him back for me."
Rating: 9.0
Sentiment: 0.4388888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: rainmakerpunkwrote on 20.10.2020:[10.0] "One of the best babyface in wrestling history, his character work is great and almost nobody can force you to root for him like Steamboat, but he's more than just the best babyface ever, he's one of the best in-ring workers ever, his 89 Flair matches do more than just hold up today, they're absolutely stunning"
Rating: 10.0
Sentiment: 0.7571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: kcraig316wrote on 09.09.2020:[9.0] "As an adult, I can totally appreciate how technically sound he is. He also does a lot of classic babyface taunts. You don't see many people able to pull that off. His character is a one-dimensional, but we're looking at it with our modern eyes. Back in his day, that was all you needed. He was so easy to cheer for. I just always wanted to see him win. His loss to Honky still hurts me. I recently watched his 1990s WCW years, and he did have some great matches. However, I think his time was wasted often and he never reached his potential during the latter part of his career."
Rating: 9.0
Sentiment: 0.24666666666666662
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: ProWrestlingGuy316wrote on 22.07.2020:[10.0] "Das beste Babyface aller Zeiten, nicht mehr und nicht weniger. Noch dazu ein absolut überragender Wrestler, der auch eine Mülltonne zu einem guten Match ziehen konnte und zudem auch weit nach seinem eigentlichen Karriereende abgeliefert hat (bei Wrestlemania 25). Leider wurde er in der WWE zumeist unter Wert verkauft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Makai Clubwrote on 28.08.2019:[10.0] "Ricky Steamboat is one of those guys who I never really liked at a younger age - I had a ton of 80s DVDs when I was younger around 15 years ago so I watched a ton of Steamboat and others and he never got me excited or anything. It was odd. Thought he was fine but not worthy of his praise. But then over the past few years, I have begun watching older wrestling once again and as I started to watch more Steamboat matches, the more I begun to like and appreciate everything he has done. And now he is one of my all time favourites. Great, great feud with Flair, great series of matches with Savage. Tons of great matches ranging from Rude to Austin to Arn. One of the biggest reasons WCW in 92 shined. Had one of the best performances after years of not showing in 09. Just an around great wrestler. His selling is amazingly unique and something worth an essay on by itself. His offence is simplistic but his timing, the emotion and drama behind it makes it all the more great. His ability to keep you invested in him as a face without needed to turn heel is special as well."
Rating: 10.0
Sentiment: 0.2695054945054945
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: KyleEnjoysWrestlingwrote on 08.08.2019:[9.0] "A super fan favorite & a joy to watch in the ring. His mic skills & one-note persona are the only things that held him back from being in the conversation of best ever."
Rating: 9.0
Sentiment: 0.4388888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: mdkarlwrote on 03.06.2019:[9.0] "if I was only rating on workrate and highlight matches I would go 10... steamboat had some of my all time top 10 matches in history.  but promotional work/interviews are an important part of wrestling... the ability to talk fans into buying tickets to watch an upcoming match get settled.  steamboat was really at his best when some super charismatic opponent {randy savage/ric flair/jake roberts} was kicking his butt... as a clean cut babyface battling for his life, steamboat did a great job.. but it was the other guy who did all the mic/promo work to really get us to care.  9 is not a grade to be ashamed of I hope.  steamboat will always be one of my disappointments thought, because I did watch his prime and I kept thinking this guy was right on the edge of being a top 3-4 guy in the business.  he just never got to those heights despite all the top angles he was put in"
Rating: 9.0
Sentiment: 0.3900510204081633
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: zephyrwrote on 19.03.2019:[9.0] "One of the few people of his era who actually had the in-ring ability to be considered a legend today. Amazing."
Rating: 9.0
Sentiment: 0.13333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: LandonRyanWyattwrote on 31.01.2019:[10.0] "A legend in the business that could go with anyone on any given day. Steamboat was technically sound and could fly like an eagle. An all time great."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: JEK 1991wrote on 01.11.2018:[10.0] "Excellent wrestler! He was quick, fast and agile in the ring. Always exciting to watch. He reminds me of Bruce Lee with the martial arts gimmick he had in the WWF. The Dragon gimmick was cool as well when he blew fire. His feuds with Flair were excellent having 60 minute matches and selling out arenas. Its unfortunate about his back when he had to end his career. A legend!"
Rating: 10.0
Sentiment: 0.3183333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: RatingsMachinewrote on 12.10.2018:[10.0] "Ricky Steamboat was one of the best wrestlers of all time, and one of the best babyfaces of all time as well. He could sell so well, and in a manner that very few could replicate. People knock him for not being a good promo, but Ricky could deliver a great sports-style promo, something serious, that treated his match as something serious. In that respect, Ricky was like Bret Hart."
Rating: 10.0
Sentiment: 0.3676190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Steamboat2511wrote on 01.10.2018:[9.0] "Ricky Steamboat gehört zu den besten Wrestlern aller Zeiten. Technisch bis heute nur selten erreicht, hat er bereits in den 80ern und frühen 90ern Matches geführt, die schlichtweg begeistern. Eine Geschwindigkeit und Workingrate die ihresgleichen sucht. Ein Meister der Matchführung und des In-Ring-Entertainments war er obendrein. Persönlichkeit kann man ihm nicht absprechen, auch wenn im Gimmick-Bereich nichts herausragendes dabei war: Über fast die gesamte Karriere ein etwas glatter, wenn auch sympathischer Face zu sein, ist nicht gerade vielseitig. Sein Mic-Work war stets auf einem hohen, wenn auch nicht auf höchstem Niveau. Der letztendlich ganz große Run ist ihm aus verschiedensten Gründen nicht gelungen und so wird er immer als einer der besten, wenn auch nicht als einer der bekanntesten und charismatischsten Wrestler in Erinnerung bleiben. Und als mein Lieblingswrestler!"
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Gauntlet84wrote on 21.04.2018:[9.0] "Legendary wrestler. Not the greatest with promos but I loved that he was a consistent face for virtually his entire career. There were very few matches where I wasn't cheering for him."
Rating: 9.0
Sentiment: 0.4483333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Viper99wrote on 01.02.2018:[9.0] "Ricky Steamboat ist ein sehr guter In Ring Performer gewesen. Er war ein Leben lang das absolute Babyface und war dafür einfach wie geboren. Sein In Ring Work war Exzellent, er hatte den Look und auch eine gewisse Präsenz im Ring. Trotzdem haderte es ihm immer an den Gestiken und Mimiken und den Promos, bei welchen er in seiner größten Rivalität aller Zeiten klar von Ric Flair gecarried wurde. Trotzdem eine Absolute Legende und eines der besten Pure Babyfaces aller Zeiten."
Rating: 9.0
Sentiment: 0.20476190476190478
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: ianlapierrewrote on 04.11.2017:[6.0] "Ricky was a fantastic wrestler. He had so many great moments feuding with all time greats Ric Flair and Randy Savage. Even had some matches with a pre Stone Cold Steve Austin and Rick Rude. My big issue with Steamboat is that he was limited in his character. He did not stick with WWE for any length of time. And he was never booked the way he should have been. I put him in the same category as Benoit, Eddie, Jericho. He was a 10 wrestler. But in all the other categories that count like promos, longevity, drawing power, main events, charisma, adaptability etc he falls into more of a 6 to 8 rating."
Rating: 6.0
Sentiment: 0.11547619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: taabr2wrote on 10.09.2017:[9.0] "The greatest babyface wrestler of all time. Steamboat was an amazing seller and had great energetic offense that was a winning combination. It if wasn't for the fact that he was completely devoid of personality he would of been a top level draw for years."
Rating: 9.0
Sentiment: 0.5428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Squared Circlewrote on 07.02.2017:[9.0] "A true pro.  Effective at every position on the mat.  With the lone exception of WrestleMania 2, I can't think of a bad performance (I think he may have been double parked that day).  I'd give him a ten, but a signature run as World Champion is missing from his resume.  I really enjoyed his work and I go back from time to time to revisit his matches."
Rating: 9.0
Sentiment: 0.06875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: roy-harperwrote on 11.01.2017:[10.0] "Best Baby-Face ever, hatte technisch alles drauf, leider nur zu wenig Einzeltitel bekommen, unvergessen die Rivalität mit Flair. Klasse Matches."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: rjsbx11wrote on 07.01.2017:[10.0] "One of the best chain wrestlers ever, he could go hold for hold and move for move for an hour with anyone. His NWA/WCW stuff is amazing, and they still hold up to this day.  The best tribute to his wrestling abilities is that he became massively over in an era dominated by cartoonish characters with big personalities and bigger mouths as a fairly vanilla babyface with pretty poor mic skills."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Rasslin Ruleswrote on 31.08.2016:[10.0] "Bestes Babyface aller Zeiten und Revolutionär, der mit seinem spektakulerem In-Ring-Style das Wrestling für immer veränderte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Luv all wrestlingwrote on 08.08.2016:[10.0] "Ricky Steamboat is a tried and true babyface at is's finest. Has had many amazing matches with Ric Flair, and the first amazing wrestlemania match vs Randy Savage at wrestlemania 3. Also has plenty of great mid card matches."
Rating: 10.0
Sentiment: 0.44285714285714295
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: The Sick Lebowskiwrote on 14.06.2016:[9.0] "Grandioser Babyface-Wrestler, bei dessen Matches aufgrund seiner Beliebtheit fast immer eine Bombenstimmung herrschte. Im Ring zudem sehr stark und für seine Zeit voraus, wie allein das WM-Match gegen Randy Savage zeigt. Am Mikro auch gut."
Rating: 9.0
Sentiment: -0.23809523809523805
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: The Chosen Onewrote on 11.06.2016:[9.0] "Not only did Ricky Steamboat have one of the best WWE carriers in history but he also had a great carrier in WCW facing the likes of Steve Austin and Rick Rude. He had a great look and a great move set. He won multiple championships had tons of great matches. Overall Steamboat definitely deserved to be in the HOF. 9/10."
Rating: 9.0
Sentiment: 0.38999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Rastarazor1970wrote on 12.05.2016:[8.0] "Ricky Steamboat was the best good guy. Great wrestler, great skills and was pretty good talking smack. Some of the best wrestling is Steamboat+Youngblood vs. Flair+Valentine for US Tag Team Champions in the NWA days."
Rating: 8.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: EGeraldhuebnerwrote on 28.04.2016:"Über den Menschen bzw. Wrestler hinter seinem bekanntesten Gimmick muß man wohl kaum noch besonders viel sagen. Weltklasse, technisch betrachtet genial, hervorragende Nehmerqualitäten, konnte auch erstklassig austeilen, verkaufte beinahe jedes Match von und mit ihm sehr gut, egal gegen welchen Gegner und hatte zu recht einige Erfolge. Ironie an der ganzen Sache ist, wie bei "El Matador" Tito Santana ... hat Ricky "the Dragon" Steamboat sein Drachen Gimmick weniger geschadet, zumindest hierzulande. Denn er verkörperte selbst das noch sehr gut und es passte auch zu ihm. Man bekam sogar den Eindruck, er hat es sich alleine ausgedacht."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: blackmileswrote on 23.04.2016:[10.0] "Der Wahrscheinlich älteste den ich nur eine 10/10 in ring geben kann und der Zweitälteste den ich gesamt eine 10/10 geben kann. Der älteste Wrestler der ein *****Match geworkt hat. Das alles muss doch zeigen das er das wrestling revolutioniert hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Mean Smark Callouswrote on 16.04.2016:[9.0] "Everyone knows about WrestleMania III. But he also had a great run in WCW, including a classic feud with Rick Rude, that involved many exciting matches that showed off both men's endurance. Severely underused/booked by Vince in the 80's."
Rating: 9.0
Sentiment: 0.19236111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: DanTalksRasslinwrote on 27.09.2015:[10.0] "A consummate babyface and a smooth in-ring worker who was capable of having a good match with virtually anyone.  Steamboat was a common denominator in a number of wrestling's all-time classic matches, including vs. Randy Savage at WrestleMania III and the Chi-Town Rumble/Ragin' Cajun/Music City Showdown trilogy against Ric Flair.  If he had any weakness, it might be that he wasn't as strong a mic worker as some of his peers, but he was so good at telling a story in the ring that it didn't really matter.  15 years after his initial retirement, Steamboat had a brief but successful comeback run with WWE in 2009 before health issues retired him permanently.  Steamboat is deservedly ranked among the all-time greats."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: hankthetankwrote on 03.07.2015:[10.0] "What an amazing technique and I believe he was never a heel his entire career.  Put on great matches with Flair and Savage along with many others."
Rating: 10.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Paul Allainwrote on 24.02.2014:[10.0] "Simply Put, Ricky Steamboat is the best of his generation. The ultimate babyface of wrestling, is likeability is unparalleled and endures to this day. In an era of great wrestlers, he could take any of them and make something good, producing some of the most excellent wrestling exhibits of all-time with Ric Flair and Randy Savage. Even is brief return in 2009 was awe-inspiring, and there is probably no other wrestler that will be as good during his own entire life. Ricky Steamboat cannot be surpassed."
Rating: 10.0
Sentiment: 0.44687499999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: pappahousewrote on 01.06.2013:[9.0] "Krasser Kerl! Was er in den 80ern schon im Ring gezeigt hat ist einfach der Wahnsinn. Heute erwartet man diese Moves einfach, aber damals war das schon sehr sehr cool."
Rating: 9.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "Great performer and a true legend. One of the best wrestlers of the 1980s, with multiple 5-star classics to his name."
Rating: 10.0
Sentiment: 0.5375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Kitanoyamawrote on 18.11.2012:[10.0] "Technisch ausgreifter und starker Worker der auch gutes High-Flying zeigen konnte. Ich kann zwar trotzdem nicht restlos nachvollziehen was ihm trotz seiner sehr guten Fähigkeiten so besonders machen soll, aber das ändert nichts daran das er ein Könner ist der auch noch im relativ hohem Alter was bewegen konnte.  UPDATE: Nachdem ich mir mal die Doku über Ricky Steamboat angesehen habe, komme ich zum Schluss das er doch 10 Punkte verdient hat. Er wuchs nie wirklich über sich hinaus, doch das musste er auch nicht. Seine Persönlichkeit, sein Mic-Work, sein ganzes Leben und auch sein gesamter Auftritt wirkten nur wenig bis garnicht abgedroschen, künstlich oder sonstwie in der Richtung. Er machte ganz einfach sein Ding und war dabei überhaupt nicht abgehoben. Zu Recht eine Legende des Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: LM Punkwrote on 30.08.2012:[7.0] "Super Techniker aber am Mirko hat er mich nicht immer so überzeugt. Leider oft unter Wert eingesetzt."
Rating: 7.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Sirius Van Grathwrote on 13.02.2012:[10.0] "Einfach einer der besten Highflyer und Techniker der 80er und 90er! Und einer der wenigen, die wirklich im Alter noch klasse Matches zeigen können. Ich sage nur WrestleMania 25 und Backlash 2009!  Seiner Zeit war er weit vorraus und ist für mich die #1, von den Legenden, die einen World Title am meisten verdient hätten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Soopawrote on 14.08.2011:[8.0] "Sehr guter Wrestler. Für mich Irgendwie auch ein Beweis für das was die damalige WWF richtig gemacht hat. Jeder Wrestler stieg in den Ring um einen Titel zu gewinnen. Durch das wirkte jeder Titel wichtig. Heute geht es nur Darum wer jemandem was angetan hat. Steamboat ist für mich einfach der inbegriff des Perfekten Midcard Highflyers.  Deswegen nur 8Punkte"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: ManamiKidwrote on 25.06.2011:[10.0] "He made a lot of dream matches and matches of the year in 80's. He returned in 00's and did another fantastic match with Jericho at Backlash at the age of about 60, that's sick passion."
Rating: 10.0
Sentiment: -0.15714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: C0nspiracywrote on 29.03.2011:[6.0] "Ich weiß viele sagen Ricky Steamboat ist nen klasse Wrestler und ne Legende ect. Das unterschreibe ich durchaus aber betrachtet man das Gesamtpaket so konnte er nie einen draw wie die großen Stars zu seiner besten Zeit erzielen. Micwork durchschnitt."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Excellence of Executionwrote on 21.11.2010:[10.0] "Wer sich die Klassiker vom Dragon anschaut, weiß, warum der Mann eine Zeit lang zur amerikanischen Spitze gehörte. Habe noch nie ein schlechtes Match mit ihm gesehen. Im Grunde ist er der NWA Wrestler, der mich bei den alten Shows fast regelmäßig am meisten beeindruckt. Und sein Babyface-Selling ist wirklich großartig, wie der Grobrethoriker schon gesagt hat."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Mizisawesomewrote on 07.10.2010:[10.0] "Einer der besten Wrestler aller Zeiten... Wer hier weniger als 8 Punkte gibt hat keine Ahnung vom Wrestling. Absolut tolle Ausstrahlung, großartige Technik, guter Körper, bei ihm passte einfach alles. Auch sein kleines Comeback um Wrestlemania 25 herum, das mit dem großartigen Match gegen Jericho sein Ende und gleichzeitig seinen Höhepunkt fand war absolut überragend. Die Matches dieses Mannes sind Lehrvideos für jeden, der mit Wrestling anfängt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: royalonewrote on 18.08.2010:[8.0] "als ich ihn das erstemal in der wwe sah, 91, da fand ich ihn echt langweilig aber mit der zeit und viele kämpfe später aus seiner vergangenheit, muss ich sagen solider wrestler,  aber ein fan bin ich nicht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Aesopwrote on 12.08.2010:[10.0] "Ich habe einige seiner alten Matches mit Flair gesehen und ich war begeistert. Auch mit schlechteren Gegnern als Flair konnte er überzeugen. Selbst im Jahre 2009 war er noch ganz gut, auch wenn Jericho wohl ein wenig nach geholfen hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: GibDirDreggischwrote on 03.07.2010:[9.0] "Tjaja der Dragon, einer der größten seiner Zeit und auch bei seinem überraschenden comeback noch mehr als ansehnlich, er kann sich heute noch mit der Masse des WWE-Rosters messen und würde die bessere Show liefern, wie man bei WM25 und Backlash darauf gesehen hat. Nicht unbedingt ein Gott am Mic, aber das verzeiht ihm man bei diesen In-Ring-Skills gerne. Hätte nichts gegen den ein oder anderen Nostalgie-Auftritt einzuwenden, im Vergleich zu vielen anderen seiner Generation gilt hier wirklich: "You still got it! ""
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Medeawrote on 30.06.2010:[8.0] "Er verfügt neben einem guten Wrestlingstil über natürliches Charisma. Das macht ihn zu etwas besonderem."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: RockerDropperwrote on 30.05.2010:[9.0] "Begnadeter Wrestler, wie die fast einhellige Meinung hier ja zeigt. Seine nicht so tollen Mic-Skills hat er mit seinem Feuerspeier-Auftritt ziemlich gut ausgeglichen. Steamboat konnte mit jedem gute Matches haben, und wenn man sich seine Leistung heutzutage anschaut, nach all der Zeit ohne intensives Training, kann man ihn als Paradebeispiel anführen, das das Alter nicht zwangsläufig den Wrestler schlecht macht; man stelle sich vor, wie gut er noch ohne die lange Pause wäre! Gerade im Angesicht dieser Leistung finde ich es unwürdig, das er selbst zusammen mit Snuka und Piper Jericho nicht besiegen durfte; Ich denke, sein Sieg wäre angemessen gewesen."
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Erasedwrote on 30.05.2010:[10.0] "Mit großem Abstand einer der besten Technicker in der weiten Wrestlingwelt. Seine Matches in den 80ern werden verdient als eine der besten angesehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Eazyewrote on 26.03.2010:[10.0] "Immer gut über die Karriere im RIng und auch ausserhalb haben mir die Promos eigentlich gefallen... Das er jedoch noch in dem hohen Alter und gut 15 Jahre keinen Ring mehr betreten hatte lieferte er bei seiner spontanen Rückkehr wirklich eine gute Überaschung und war wirklich gut im Ring!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: The Cripplerwrote on 04.03.2010:[9.0] "War schon zu seinen aktiven Zeiten ein sehr guter Wrestler, aber seine Leistungen bei WM 25 und bei Backlash gehen einfach über das Mögliche für sein Alter hinaus."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Aquifelwrote on 08.02.2010:[10.0] "Zurecht eine Legende. Starker Techniker, der viele bahnbrechender Matches hatte und selbst letztes Jahr mit seinen Auftritten noch überzeugen konnte. Schade, dass ihm teilweise nicht der Erfolg in der WWE zu Teil wurde, den er verdient gehabt hätte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: downtown2wrote on 05.02.2010:[8.0] "Steamboat war wirklich eine Offenbahrung im Ring, seine Kämpfe sind für Fans von gepflegtem Wrestling eine Pflicht. Konstant sehr hohes Niveau über die Jahre, viele tolle Fehden und Erfolge. Abseits des Rings oft unbeholfen, einfach keine Entertainment-Qualitäten. Seis drum."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Fountain of Misinformationwrote on 16.01.2010:[9.0] "Begnadeter Wrestler, genialer Techniker und mit dem vielleicht besten Babyface-Selling aller Zeiten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Manu Adamswrote on 21.12.2009:[10.0] "Hat zu seiner besten Zeit in den 80igern viele ansehnlich ***** Klassiker abgeliefert, ob nun gegen Randy Savage 1987 oder die Matchserie gegen Ric Flair. Steamboat bleibt unvergessen und ich hoffe mal auf eine zukünftigen Hall of Fame Aufnahme, verdient hätte er sich dies allemal."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: brianpillmanwrote on 27.11.2009:[8.0] "Großartiger Wrestler, der im Ring seiner Zeit weit voraus war. Allerdings mit großen Problemen im Bereich der Promos. Hier nur in der Fehde mit Ric Flair in der NWA wirklich herausragend."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: The-Game91wrote on 18.09.2009:[10.0] "Der Mann ist eine wahre Legende früher fand ich ihn nicht so beeindruckend aber mit steigendem Alter konnte er mich immer mehr und mehr überzeugen. Steamboat kann es einfach immer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Basket Casewrote on 15.09.2009:[10.0] "War früher schon richtig klasse im Ring, aber hat auch nach bei seinem Kurzcomeback dieses Jahr verdammt gut ausgesehen und könnte da einen Großteil des heutigen Rosters in die Tasche stecken. Klasse, der Dragon."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: DJ MaSchwrote on 13.09.2009:[10.0] "Unvergessene Klassiker gegen Flair. Im Ring einer der besten aller Zeiten und wie man vor kurzem noch einmal senstationeller Weise erleben konnte auch 2009 noch wirklich überdurchschnittlich gut. Da vergebe ich auch gerne, dass er Charisma nicht gerade erfunden hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Hennewrote on 22.08.2009:[10.0] "Auch wenn er mittlerweile 56 Jahre ist, ist Ricky immer noch besser als mindestens 95% aller anderen Wrestler. Er hat nichts verlernt, obwohl er ca. 15 Jahre lang nicht im Ring stand. Er ist eine Bereicherung für die WWE, die aus seiner Erfahrung ja auch schon Nutzen zieht und ihn bei House Shows gegen Rookies antreten lässt. Vieleicht ist ein letztes Match gegen Flair bei der nächsten Wrestlemania gar nicht mehr so weit utopisch. Natürlich bekäme er die Bestnote ohne weiteres auch ohne im Jahr 2009 wieder in den Ring zu steigen, so möchte ich ihm fast 12 Punkte geben."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Mick Funkwrote on 21.04.2009:[8.0] "Im Ring mit der beste Worker seiner Zeit, dem es leider etwas an Ausstrahlung fehlt. Wie man kürzlich sehen konnte hat er es auch im hohen Alter immer noch drauf."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: gerybundy68wrote on 11.04.2009:[9.0] "Völlig zu Recht in die Hall of Fame aufgenommen. Einer der Ersten High Flyer in der Wrestlingszene. Legendär die Matches mit dem Macho Man. Hat bewiesen, dass er es mit 56 noch immer drauf hat. Sollte ein Vorbild für viele Jungspunde sei , die schon denken große Stars zu sein."
Rating: 9.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: FratzenFressewrote on 10.04.2009:[10.0] "Klasse! Mit 56 noch besser als das halbe aktuelle Rooster!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Hunter2007wrote on 07.04.2009:[10.0] ""You still have it"-Parolen aus dem Publikum. Und das zurecht! Selbst mit 56 kann er noch einigermaßen mithalten, das durfte man jetzt noch 2 mal beobachten. Wenn ich Videos aus alten Zeiten gesehen habe, ist mir Steamboat mit einzigartigem Kampfstil aufgefallen. Etwas anderes als 10 Punkte sind für mich nicht denkbar."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: ScrWwe94wrote on 07.04.2009:[10.0] "Toller Wretler, welcher in ner toller Verfassung ist siehe WM 25 und die darauf folgende RAW Sendung."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Groissy12344wrote on 07.04.2009:[10.0] "Immer schon wahnsinnig stark! Seine Flair Matches waren einfach genial. Er überzeugte auch bei WM25 und ich könnte ihn mir nich weiter als Worker vorstellen!"
Rating: 10.0
Sentiment: -0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Eddiewrote on 28.11.2008:[9.0] "Wrestlinglegende die seiner Zeit voraus war, ich erinnere einfach an Wrestlemania 3. 9 Punkte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: The Mountiewrote on 02.08.2008:[9.0] "Einer der besten Wrestler seiner Zeit, was sogar mit dem Blick von 2008 auf die Matches der Achtziger mehr als deutlich wird. Zur Höchstnote fehlte es im aber doch etwas an Farbe. Er wäre heute vielleicht relativ vergessen, hätte ihm Ric Flair nicht die Tür zum World Title geöffnet."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: ecw foreverwrote on 01.06.2008:[10.0] "Also wenn man ihm keine 10 gibt, wem dann? Er gehört zu den besten und seine Matches waren einfach genial. Sein Gimick überzeugte und er war leider nicht so lange Aktiv dass ich ihn hätte richtig verfolgen können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Garvinwrote on 10.04.2008:[10.0] "Er gehört einfach zur Elite des Wrestlings. Hat dieses Business geprägt und in eine neue Richtung gelenkt. Seine Matchserie gegen Ric Flair sagt alles aus."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Aglaoswrote on 13.03.2008:[8.0] "Wenn ich mir die Fotos von Mr. Steamboat so ansehe, schießt mir sofort ein "Ach, das waren noch Zeiten" durch den Kopf. Sehr bemerkenswert finde ich dabei, dass ich ihn zu seinen besten Zeiten gar nicht erleben durfte. Aber der Mann ist für mich einfach der Inbegriff von Oldschool. Genau dieses Nostalgie-Empfinden wertet ihn aber in meinen Augen auf, denn zu seiner aktiven Zeit konnte ich nie so richtig etwas mit ihm anfangen. Deshalb gibt es von mir "nur" eine 2."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: lagunswrote on 13.03.2008:[10.0] "Meiner Meinung nach der absolut beste Wrestler aller! Zeiten. Konnte mit jedem Gegner ein gutes Match machen und wenn er gegen gleichwertige gekämpft hat (Flair, Savage) wurden daraus Klassiker und die besten Kämpfe der Geschichte. Hatte leider nich das Charistma um ein Megastar zu werden, aber sowas kann man wohl nicht trainieren. Finde auch nicht, das er als "Dragon" zu trashig war. Das Feuerspucken und das Kostüm waren voll cool! Aber auch ohne war er absolut genial! Hat auch seine Gegner immer gut aussehen lassen, was leider keine Selbstverständlichkeit ist."
Rating: 10.0
Sentiment: 0.546875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Brahma Bullwrote on 04.01.2008:[8.0] "Super Wrestler. Ricky Steamboat konnte auch alles-unvergessen sein Match bei WM3 gegen Randy Savage. Fand das The Dragon Gimmick total fett-Feuerspucken fetzt!"
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Benny110106wrote on 28.10.2007:[8.0] "In den 80ern einer der innovativsten Wrestler und zurecht an vielen Klasikern beteiligt aber irgendwas fehlte um Hogan und Flair zu überholen. Daher nur eine 2 !"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Sandman16wrote on 16.10.2007:[10.0] "Zählt zu den ganz Großen was die Fähigkeiten im Ring betrifft. Da gehört er ohne jeden Zweifel zu den besten auf der Welt. Seine Matches gegen Flair und Savage sind ein Genuss für die Augen. Unfassbar wie man so einen Mann das lächerliche Gimmick des Dragon in der WWF geben konnte. Sowas hat er nicht verdient gehabt. Nichtsdestotrotz kann ich nichts anderes als 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: shannonmoorewrote on 03.10.2007:[10.0] "Klasse Mann ! Zugegeben als Gott das Charisma verteilt hat hat er wenig abbekommen aber das störte nur selten. Klasse Wrestler und dazu irre sympatisch der Dragon."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: dariawrote on 30.09.2007:[10.0] "... wenn jemand den Award für den nettesten Superstar gewinnt, dann ist es wohl Ricky Steamboat, den muss man einfach gern haben - dazu kommt eine Supertechnik - eine Legende des Wrestlings"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Ray Robsonwrote on 15.09.2007:[10.0] "Mit etwas mehr Charisma wäre er heute größer als Ric Flair."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Grubackwrote on 12.09.2007:[10.0] "Einer der groaßartigsten Technicker in der m Geschichte des Sports, hatte zwar einige Titelruns, aber kommt insgesamt deutlich zu schlecht weg. Klarer Fall für die Hall of Fame"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Blade Bourdeauxwrote on 14.08.2007:[10.0] "Auch ohne große Fähigkeiten außerhalb der vier Pfosten, gebe ich im die vollen Punkte. Vor allem wegen seinem Match gegen Savage und den Matches gegen Flair. Denn was ihm außerhalb fehlte machte er im Ring 10mal wieder wett."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Dav1d1anwrote on 29.07.2007:[10.0] "Einfach nur Hammer Matches mit dem Nature BoyDaumen hoch!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Steven McWheelerwrote on 18.07.2007:[10.0] "Bei seinen Matches, vorallem gegen Ric Flair und dann noch seiner Technik muss die 10 fallen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Necronwrote on 08.07.2007:[6.0] "Guter Techniker, keine Frage. Aber sooooooo eine Mega-Legende ist der Steamer in meinen Augen nicht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Vom Gefühl her würde ich sagen, dass der Dragon neben dem Nature Boy einer der Topkanditaten für die Hall of Fame im nächsten Jahr ist! Im Ring einfach göttlich, unvergessen die Klassiker gegen Ric Flair und auch z. B. gegen den Macho Man! Nebenbei bemerkt, er hatte eine geniale Einmarschmusik!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Wichtgestaltwrote on 24.06.2007:[10.0] "Habe zwar nur das WM 3 - Match gesehen und den Rest nur gelesen, aber das reicht auch schon, volle 10. 0"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: DrPymwrote on 24.06.2007:[10.0] "und so huldigen wir Dir draaagooon, möge dein name für immer in den Wrestlingbüchern stehen... unser täglich bodypress vom obersten seil gib uns heute... wie auch wir geben dir einen figure four oder elbow drop... möge der Dragon ewig fliegen... geil der Mann"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: Obermackerwrote on 24.06.2007:[10.0] "Seine ganze Karriere lang ein Top-Babyface und Worker!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=743&gimmick=Ricky+Steamboat
Comment: suntan superstarwrote on 24.06.2007:[10.0] "Der Dragon. Unvergessen durch seine Matches, der ruhige Familienmensch, der aus jedem ein super Match "rausholen konnte. Zu Schade das er schon aufgehört hat"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Khalid Acewrote on 04.02.2025:[6.0] "My previous rating of Shingo Takagi was actually a 10 and if it's about his whole career he will also get a 10 but this new rating is for his 2024-2025 form. He's been ok, nothing special. Even his performances at the G1 till now wasn't as good as he used to be."
Rating: 6.0
Sentiment: 0.24669140383426097
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: KReinke22wrote on 31.01.2025:[10.0] "One of the best wrestlers in modern times, even in his 40's Shingo is still putting on classics on a pretty regular basis."
Rating: 10.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Chefiwrote on 05.01.2025:[10.0] "[10.0] One of the very best wrestlers on planet earth and that is a hill I'm willing to die on. Everything he does is smooth and always has bangers. Love watching this dude wrestle."
Rating: 10.0
Sentiment: 0.5375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: TomTakagiwrote on 02.10.2024:[10.0] "Shingo Takagi is my favourite wrestler, so this may be a bit biased, but he has to get a 10 from me. His intensity is like nearly nobody else, and he can bring the fight out of his opponent with it. You regularly see him, to this day, pull the best match possible out of his opponent. I'm sure at some point he'll slow down, but it's not yet."
Rating: 10.0
Sentiment: 0.1634920634920635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Dweeeabwrote on 30.09.2024:[10.0] "Consistently one of the best wrestlers on the planet at anytime through his career. He can wrestle literally any style. You want technical hes got it, you want strong style hes got it, you want junior high speed stuff hes got it. Incredible wrestler"
Rating: 10.0
Sentiment: 0.4572222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: jsbortswrote on 08.09.2024:[10.0] "If you don't think Shingo Takagi is a great professional wrestler we just have different taste in wrestling. He has a lot of style, is incredibly smooth, hits hard, has a great skill set, puts everything in a believable way, and can outshine a variety of the best in this generation. Shingo Takagi could be in any promotion at any point anywhere in the world and still get over."
Rating: 10.0
Sentiment: 0.4135416666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Rassle Fanwrote on 13.08.2024:[9.0] "Has great music, entrance attire and wrestling gear. He's also one of the best wrestlers of the last decade or so. He rarely, if ever, has a bad match and has exponentially gotten better every year."
Rating: 9.0
Sentiment: 0.3166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Willie 19200wrote on 24.07.2024:[9.0] "Takagi is just so fun to watched and I really enjoy his work. His in-ring work reminds me a lot of old school Mitsuharu MIsawa where I always have full attention when his matches are on. His IWGP World Heavyweight Title reigns was great and I would not complain if he ever won the belt again. I definitely think he's one of the best in NJPW right now."
Rating: 9.0
Sentiment: 0.4044642857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Aspionwrote on 22.07.2024:[9.0] "(Sorry english is not my firtst language) Clasis after clasic thats all what i can say about him. The japan dragon is something"
Rating: 9.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: AriJarrettwrote on 21.05.2024:[10.0] "When I get depressed, I imagine an alternate timeline where Shingo was in 1990's AJPW and early NOAH, and in that exact moment I am in peace. Shingo is probably the best overall wrestler in NJPW right now, and whilst Shingo started his career in Dragongate and such, he's also the best representation of everything I love about NJPW as a whole. Additionally, Shingo is also probably the best baby-face there is right now in wrestling generally, he's so lovable and he's great at making the audience get invested in his matches. But still, I believe Shingo could've been near the top of the entire wrestling whole if he wrestled in the same generation as Misawa and Takada, he's generally that good and surely he must be IWGP champion once more before he retires."
Rating: 10.0
Sentiment: 0.36832298136645963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: BruceMarcos524wrote on 18.04.2024:[9.0] "Takagi is the best LIJ member in terms of match catalogue. I don't have any much idea during his time in Dragon Gate, so I am only reviewing his time in NJPW. Takagi's hybrid of powerhouse and heavy hitter makes him one of the very difficult opponents to deal and to catch up with. He had amazing matches with Tomohiro Ishii, Kazuchika Okada and most notably, Will Ospreay. Takagi always make the match better even when he faces average guys like EVIL, Taichi and Toru Yano. He is the guy who has a slew of 5-star matches because of his insane work in the ring. His mentality reminds me of a samurai and that's why I love Takagi. He respected the business very much and he is one of the guys who takes the sport very seriously. No doubt whomever opponent he pairs with, expect that you will have a great match. He had a great set of moves like the Last of the Dragon, Pumping Bomber, making his finishers very devastating. The reason why I am not giving him a full-fledge 10/10 rating is there is a little bit of holding back due to being a part of LIJ probably because they don't want to outshine Naito since he is the leader and their star. I knew that there is something Takagi still hides, maybe a darker version of Takagi perhaps. He needs to go solo or create a new faction with himself as a leader so that he can fully establish himself in NJPW, as he is the only guy that even going out of LIJ would not affect the state and career of Takagi unlike EVIL and SANADA whose careers are going nowhere. A total package wrestler."
Rating: 9.0
Sentiment: 0.0269434731934732
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Lauchlanwrote on 26.02.2024:[10.0] "Shingo always delivers in his matches and one of them guys who drags out the best in his opponents, I love watching him and believe he is one of the best wrestlers anywhere in the world."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Hyunminleewrote on 09.02.2024:[10.0] "He is my favorite superstar in todays wrestling. He is great at in-ring and he is great at cutting promo too. And he is very charismatic man. He knows how to make great matches. His IWGP wolrd heavyweight championship run was great and saved NJPW. He was great when he was in DG too. His rivalry with Will Ospreay is one of the greatest rivalry of all time."
Rating: 10.0
Sentiment: 0.6166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: mxxjimawrote on 06.02.2024:"One of the most consistent in ring talents in the world for the past 10 years almost. Shingo has one of my favorite movesets in wrestling ever, hope he gets another main title run either in New Japan or wherever he goes in the future."
Rating: No rating found
Sentiment: 0.18614718614718617
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: skillgullwrote on 10.01.2024:[10.0] "Shingo Takagi is awesome. his matches are always great. He hits hard, is effortlessly cool and has charisma to burn."
Rating: 10.0
Sentiment: 0.46458333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: TheOneAndOnlyCactuswrote on 31.12.2023:[10.0] "Shingo Takagi is my favorite wrestler in the world currently, so obviously him being on this list is no shocker in that regard but oh... my God I just love this man! He is so fucking good! Look, I get that he is never going to touch the world title again and I have accepted that. But he absolutely has all the tools to still be a believable world champion. Not only is he an incredibly versatile talent between the ropes, capable of adapting to pretty much any opponent to deliver a great match, but he is also a great character, and will make anything you throw at him work. He carried NJPW through 2021 in a tough period as its world champion. He has brought more relevancy to the King Of Pro-Wrestling Championship than anyone else before and made it a title worth fighting for. Takagi is just amazing."
Rating: 10.0
Sentiment: 0.40359477124183
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: danzitorockwrote on 19.12.2023:[9.0] "Amazing wrestler, one of the most adaptable of all time, the guy can work every type of match against a huge variety of opponents and execute with perfection their kind of match, Shingo is a chameleon, what a special wrestler."
Rating: 9.0
Sentiment: 0.49142857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: WrestlingBullwrote on 05.08.2023:[9.0] "Shingo Takagi is a fucking unit. A one man wrecking crew. He simply excels at everything, from his in ring offense to his selling. He is also charismatic and a good talker. Shame that his only World title reign was during the pandemic and he will probably never touch that belt again. He deserves way more than the awful KOPW title or the NEVER title. If he never wins the big one again NJPW should bring back the Intercontinental Championship and give it to Shingo with a long ass reign. He truly deserves it. I'd love to see him in AJPW or NOAH and see him win the Triple Crown and GHC."
Rating: 9.0
Sentiment: 0.09230769230769233
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: UltimoDragonwrote on 22.07.2023:[10.0] "From his spell in the dying days of Crazy MAX and Toryumon to being in the super group Blood Generation, you could tell Shingo would be a Dream Gate champion without a shadow of a doubt. His work continued to impress with each outing and his rivalry with BXB Hulk helped to elevate Takagi very quickly within DG. Under the wing of CIMA, Shingo was protected and steadily pushed and formed successful teams with former rival BXB Hulk and with DG Ace YAMATO to great effect. When he had acheived all he could, he left to NJPW and continued to steadily rise including a NJPW title run. The Dragon / Pumping Bomber has returned on occasions and hopefully will return finally to Dragon Gate. When asked, he has said NJPW is work, Dragon Gate is home."
Rating: 10.0
Sentiment: 0.20500000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Hillwrote on 17.06.2023:[10.0] "The perfect power wrestler. Fast and agile and can hit like a damn truck with his lariats. He has always delivered since debuting with the LIJ, but he really brought prestige to the new IWGP Heavyweight championship with some killer matches."
Rating: 10.0
Sentiment: 0.40727272727272723
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Frank Shooterwrote on 25.05.2023:[10.0] "One of the best Wrestlers I've ever seen. Power, speed, stamina, presence, great offense, perfect execution, strong-style master."
Rating: 10.0
Sentiment: 0.9333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: coppercowrieswrote on 05.05.2023:[8.0] "What a beautiful man. He can put on tremendous matches, and has a great look and natural charisma. His character work with guys like ELP is hilarious. There are still many matches I would like to see before his bump card fills up."
Rating: 8.0
Sentiment: 0.513888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: IronStarwrote on 11.03.2023:[10.0] "Shingo Takagi is the one of the best in ring performers in pro wrestling. He is too charismatic and very good at microphone. If you just look to his moveset you may say Shingo is not that good but if you watch him you will understand why he is that good. I hope he will get 1 more world championship before his retirement."
Rating: 10.0
Sentiment: 0.7183333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Senorsombrero3kwrote on 11.02.2023:[10.0] "As someone who knew nothing about Shingo when he came into New Japan, he quickly became one of my favourites just through his work as both a junior and later heavyweight. It's very rare you see a bad Shingo match and to be honest, I'm mostly writing a review due to the sheer negativity of the review below mine."
Rating: 10.0
Sentiment: 0.1260774410774411
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: benh2wrote on 11.01.2023:[8.0] "Just an all round badass. Can go with the best of them and has some great offence. Was really cool to see him get a run as IWGP champion after being consistently great for many years. His only downside is that he has never really been able to create a great series of matches with anyone, with a story that developed over the duration."
Rating: 8.0
Sentiment: 0.41363636363636364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: MainEventMasterwrote on 26.10.2022:[10.0] "He is the perfect professional wrestler, has nothing but great things said about him, impressively charismatic, and one of the greatest workers ever. Shingo Takagi is the best singles wrestler going today, followed closely by Will Ospreay."
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: zags7000wrote on 13.08.2022:[10.0] "He doesn't get as much attention as he came to NJPW later in his career, and while he was great in Dragon Gate, it's not viewed on the same level unfortunately. He immediately rose to the top when got there and became one of the company's best. Still, as many people haven't seen him as much as say Okada or Tanahashi, he's on their level. An incredible wrestler and very charismatic, he's rightfully getting his due as one of the best of his generation, even if he still remains underrated. His run of matches with Will Ospreay are some of the best all time. His inclusion to LIJ was much needed as well and gave the group some new life as they seemed to be getting old at the time he joined."
Rating: 10.0
Sentiment: 0.3978535353535354
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Tyler72wrote on 29.07.2022:[9.0] "The Dragon Shingo Takagi continues to impress me in every one of his matches with his amount of focus, intensity and power behind every one of his moves, all while being complimented by some of the best counter sequences I've ever seen in any wrestling match. One of my favourite move sets in all of NJPW with his powerful Last of the Dragon finisher."
Rating: 9.0
Sentiment: 0.22499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Rahul77wrote on 21.05.2022:[10.0] "One of the best wrestler of all time and one the wrestler among my mount Rushmore with Kurt Angle, Eddie Guerrero and AJ Styles. I know it is very odd one pick him now in a Mount Rushmore as he is proving every thing now. It was very see for me to pick other 3 but Shingo made me to watch every single matches of his even if it is a random tag team match in NJPW. I know there are so many wrestlers in New Japan likes of Okada Naito Tanahashi Hiromu even though I watched them before Shingo he made it special for me. Let the Dragon ROAR forever."
Rating: 10.0
Sentiment: 0.14226791726791727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Wrestling Foreverwrote on 21.03.2022:[10.0] "Neben CIMA und BxB Hulk mein absoluter Liebling von Dragon Gate. Ein unfassbares Powerhouse mit auch sehr großer Beweglichkeit. Shingo ist immer ein Granat für Top Matches. Vor allem natürlich gegen seinen Lehrer CIMA oder gegen BxB Hulk. Sollte es mal eine Dragon Gate Hall of Fame geben kommt SHINGO zu 100% rein. Edit: 21.03.2022 ist seit Jahren auch bei NJPW einfach nur großartig."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: NoSellwrote on 10.02.2022:[10.0] "Best wrestler in the world last year for me. He's just unreal. NJPW got worse but he just got better and better."
Rating: 10.0
Sentiment: 0.32
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: GriffinXwrote on 21.01.2022:[10.0] "A much needed bright spot for NJPW and equally needed fresh face in the main event scene. Picked up the level of the NEVER title and also was a strong World Champion even with all the controversy around the new title being created."
Rating: 10.0
Sentiment: 0.27662337662337666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Kungwrote on 04.01.2022:[10.0] "Without this man, New Japan would've been a much bleaker promotion to watch in both 2020 and 2021. Shingo is one of if not the best big match wrestler in the entire sport right now."
Rating: 10.0
Sentiment: 0.27034632034632033
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: NikoKillbainwrote on 01.01.2022:[10.0] "If NJPW got one thing right this year, it was to screw the tradition of faction leaders as World Champion, and allowing Shingo to shine. His NEVER Openweight title defense vs Cobb at Wrestle Kingdom was tremendous, and the Tanahashi match was very good. He then provided a top level challenger to Ospreay and Okada, and had a blistering G1 run against Ishii, ZSJ and Ibushi. He has as much charisma and appeal as anyone in New Japan, and has made the top spot his own. Here's hoping he keeps that spot."
Rating: 10.0
Sentiment: 0.4331764069264069
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: mrpwrote on 10.12.2021:[10.0] "He had an Amazing 2021 ! Started the year with 10 out of 10 match with Cobb, and my Match Of The Year with Will Ospreay (at Wrestling Dontaku), It's hard for me to choose who is the wrestler of the year Shingo or Kenny Omega, but who cares i am just glad i got to see them wrestle."
Rating: 10.0
Sentiment: 0.3194444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Justtwrote on 26.10.2021:[10.0] "Shingo is great! He is carrying NJPW on his back since the pandemic started and I'm so happy that he is the world champion right now."
Rating: 10.0
Sentiment: 0.5214285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Okaro143wrote on 22.10.2021:[10.0] "Intense charisma. Outstanding performer. Every time he steps in the ring, there's magic. The intensity, the speed, power, the charisma and the sheer athletism this guy possess is just freaking awesome. His matches with Will Ospreay is a must watch for any pro wrestling fan to watch."
Rating: 10.0
Sentiment: 0.44000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: wanderingobscuritywrote on 26.08.2021:[10.0] "Having followed his career from his early days, to his prime as a monster heel in Dragon Gate, to his rise to the top in NJPW, I never had any doubt that Shingo Takagi was going to be a huge deal. He's the total package of everything you could want in a great wrestler, and he could easily be a mainstay of the New Japan title scene for years to come."
Rating: 10.0
Sentiment: 0.3385281385281385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: FAZEDandCONFUSEDwrote on 11.08.2021:[10.0] "He quickly became among the best, if not the best, wrestlers in New Japan when he arrived. That's not surprising for anyone who saw him in Dragon Gate, but considering the level of talent he's up against on that roster it's still notable."
Rating: 10.0
Sentiment: 0.4366161616161615
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Luna100wrote on 06.08.2021:[10.0] "The best wrestler New Japan has, I am so happy he has been pushed so far, since he did not start with them and came to the company at a fairly older age I thought he would not be pushed far, but he has gone far, winning his first Tokyo Dome main event. He is a high point for thr company when everything in New Japan seems to have turned to shit."
Rating: 10.0
Sentiment: 0.26277389277389274
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: GGS06wrote on 31.07.2021:[10.0] "Shingo Takagi is a perfect wrestler, and it's hard to doubt it. I've never seen him have a bad match, from his time in Dragon Gate to NJPW now. Incredible run in Dragon Gate and he's just starting in NJPW. A perfect heavyweight with great moves and good promos. He deserves the 10."
Rating: 10.0
Sentiment: 0.42604166666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Drachmwrote on 26.07.2021:[10.0] "Shingo's ascent and work in New Japan alone is enough to warrant such high marks, but of course he also had an incredible run in Dragon Gate too. He has definitely earned that IWGP Heavyweight Championship and is probably the best worker of 2021."
Rating: 10.0
Sentiment: 0.31376623376623375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: FightForeverwrote on 19.07.2021:[10.0] "Best in the world in my opinion and has been for a bit, has had an insane amount of classics in just 2 years (particularly the Ospreay series and the Ishii match). Loads of charisma too and an intimidating presence, if a dragon became a human id expect him to be Shingo Takagi. So happy hes got the IWGP World Heavyweight Championship, he truly deserves it like he deserves this 10"
Rating: 10.0
Sentiment: 0.19333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: killowenskillwrote on 23.06.2021:[7.0] "Shingo Takagi has a very unpleasant disadvantage: he is one of those wrestlers whose matches are completely uninteresting to watch in series, within the framework of a feud. When he came to NJPW, I was consumed with every match he played, even when it came to the junior division, which I never liked. His first G1 Climax was unrealistically cool, and the match with Ishii is still one of my favorite tournament matches, and in my opinion, this is Takagi's maximum. But last year, I started noticing how hard it was for him to work with performers for the second or third time. Instead of telling a different story, we see the same thing, which naturally causes less reaction. The last two matches against Ospreay were met with indifference (although I consider the last one to be outright garbage without structure). The matches with Okada also lost their brightness. The matches against Suzuki were exhausting. Yes, Takagi made an unreal performance with Tanahashi this year, but I already know that by the third match they will simply cease to interest. Shingo is definitely a good employee, but in my opinion he has nothing to do in any promotion at full-time. He is ideal for working in all promotions as a freelancer, and moving from one place to another, like the same CIMA or Tanaka. Now its disadvantages are obvious and it's strange for me to see all the rave reviews."
Rating: 7.0
Sentiment: 0.035277777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Sagastawrote on 22.06.2021:[10.0] "One of the best in ring workers that I saw in my life, a guy that can give a good match with a highflyer wrestler, a strongstyle wrestler or a technical wrestler, he also have a great character and a great look."
Rating: 10.0
Sentiment: 0.6599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Lennoxwrote on 22.05.2021:[10.0] "Shingo just now is in his prime, and it's hard to believe he actually got better from where he was at already. I had high hopes and expectations for him in New Japan but he has surpassed them."
Rating: 10.0
Sentiment: 0.10093939393939393
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: StrongStyle2020wrote on 05.05.2021:[10.0] "You can use any superlative you like for Shingo Takagi, he was always been an excellent wrestler, but has been unbelievable the last few years. Incredible match after incredible match, you could make a valid case for him being the best in the world. At this point, it appears to be he and his rival that he has now produced 4 classics with, Will Ospreay, that are neck and neck for that title and have a series up there with any in history. Extremely well rounded, he can have a great match in all styles, juniors, or heavyweights. With no sign of slowing down, and if anything only increasing his profile, he can achieve legendary status over the next couple of years, with a deserved IWGP World Heavyweight Title reign, and even more classics to his name."
Rating: 10.0
Sentiment: 0.3835317460317461
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: mangowuvvr69wrote on 04.05.2021:[10.0] "The fact the he is not IWGP Wourld Heavyweight champ is ridiculous. He is the best in-ring performer in the world now. Everything he does is so intense. Speaks great. Incredible charisma. He always sets the ring in fire. I just love him."
Rating: 10.0
Sentiment: 0.5111111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: JBWrestlingwrote on 18.04.2021:[10.0] "Shingo Takagi is the MVP of Pandemic Era New Japan in my opinion. Ever since NJPW resumed following their covid hiatus in 2020, the promotion just hasn? t felt the same in terms of booking and match quality. However, Shingo Takagi has constantly delivered, and even gave us two five star matches in the month of January. In addition, his NEVER Openweight title bout with Tanahashi is my MOTY so far. I really hope he wins this years G1 and wins the IWGP title at Wrestle Kingdom in 2022."
Rating: 10.0
Sentiment: 0.12954545454545455
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: plaguespreaderwrote on 30.03.2021:[9.0] "Disgustingly intense in the ring. Destructive aura. Best punch in the game right now. Can't say much more about the Dragon of New Japan. He was always exceptional in Dragon Gate but his new physical look has turned him into a wrecking ball that can play the monster or the underdog."
Rating: 9.0
Sentiment: 0.19251082251082247
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: moxxxwrote on 22.03.2021:[10.0] "There are so many good players in New Japan and I think he is the best wrestler. He is the best in every match and he is improving every time. That's amazing. I personally think he is a better player than Tetsuya Naito."
Rating: 10.0
Sentiment: 0.5545454545454546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: degenerichwrote on 21.03.2021:[10.0] "Lots of people giving Shingo a 10 recently but after this most recent run I felt compelled to add onto the pile. Can work the dominating, undefeated heel and the sympathetic babyfaces fighting from underneath. Can work a fast paced junior style and a heavyweight bruiser style. Sells the match on his face better than just about anyone in the world (he's the only one who makes Okada's Money Clip look devastating). One of the most consistent wrestlers in the entire world, proven by his run since Wrestle Kingdom. For my money, the best wrestler in the world."
Rating: 10.0
Sentiment: 0.2041666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Belgian99wrote on 21.03.2021:[10.0] "I can't give Shingo Takagi other than a 10/10. He's really on another planet & summited himself as one of the best in the world since coming to NJPW. He started slow with his Jr days where he was just a beast, put over the "ace" of the division Ospreay in the best match of 2019, then became to climb the ranks as a HV. A good 1st G1 with 2 extraordinary matches with Naito & Ishii, then a really good match with Goto at a destruction show (where he appeared as a more tweener/dick persona, and he was good at it). Then 2020 rolled on and his fantastic reign as NEVER champ, a title that fitted him as a glove, with diverse title defenses showing he could work with anybody. After that the G1 with another 8 points, not much but with again fantastic matches, Ishii-Ibushi-Okada, and ending the year strong with regaining his NEVER title. In 2021, he's actually the most consistent wrestler in NJPW, he just keeps on having banger matches : Cobb at WK, fucking incredible - Tana for the NEVER title, inspiring and breathtaking - then 3 great matches in the NJ cup against okada/goto/kenta, and now against ospreay in the finals. Takagi, as he's been booked right now & the fan recognition for his matches, is a top contender for the G1 climax this year, probably a finalist, maybe a winner ? The future will tell us, he is a fucking great professionnal wrestler, great selling, good promo, passion & aggresivity, the DRAGON !"
Rating: 10.0
Sentiment: 0.48342151675485023
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Scott Kobayashiwrote on 28.02.2021:[10.0] "Shingo is not only the best pure worker in his stable, he is also the best in the world. Since coming to New Japan, he has not had a bad singles match. And has had so many amazing matches. SHO, Dragon Lee, Taiji Ishimori, Will Ospreay, Taichi, Cobb, Ishii, Naito, Goto, Jay, Moxley, Desperado, Ibushi, Okada, Suzuki, Tanahashi, and more have had amazing matches with Takagi. His Dragon Gate work is a 9 or even a 10 by itself, and his New Japan work is easily a 10. If I could give an 11, I would."
Rating: 10.0
Sentiment: 0.3683621933621934
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: KENTAfanwrote on 04.02.2021:[10.0] "Ever since Takagi made his debut in NJPW one thing has become very obvious to me. In terms of ringwork, he is at his best right now. Countless amazing matches this year alone. I honestly can't think of anyone I could put over Takagi. Years ago he was still exceptional, but now he is easily one of the best wrestlers in the sport. Personally, I would put him in the top 3, I can't really think of anyone who I can honestly put over him."
Rating: 10.0
Sentiment: 0.4527472527472527
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: ZSJGunWwrote on 03.02.2021:[10.0] "One of the best wrestlers nowadays. Very versatile, he can deliver instant classics against any kind of performer. Amazing seller, smart athlete and just great overall."
Rating: 10.0
Sentiment: 0.4267857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: medousewrote on 10.12.2020:[10.0] "I'm starting to think this man is no human - he's a machine. Why? Because he cannot possibly give a one bad match. Everybody makes mistakes, everybody has a shitty day sometime - he doesn't. There is nobody in pro wrestling right now, who excites me as much as Shingo Takagi. He is a true embodiment of STRONG STYLE. His match with Suzuki Minoru at Jingu Stadium earlier this year just blew my mind. I hope he will accomplish a lot in NJPW and collect some belts. He truly deserves it."
Rating: 10.0
Sentiment: 0.06322751322751324
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: michmoose21wrote on 29.11.2020:[10.0] "Most badass wrestler out there today. Hard-hitting, athletic, got the look, good mic skills, high psychology, sick entrance, in the best stable in wrestling. I could go on and on. What isn't there to love about this dude? SHINGO RULES ASS"
Rating: 10.0
Sentiment: 0.35761904761904756
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: rainmakerpunkwrote on 27.11.2020:[10.0] "So badass, so cool, dude is a beast, he was great in Dragon Gate and even better in NJPW, best wrestler of 2020 in my opinion"
Rating: 10.0
Sentiment: 0.6625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Haqs96wrote on 26.11.2020:[9.0] "Takagi consistently puts on amazing matches and has had several MOTY contenders in 2020. He has an aura, an undeniable "It" factor, and a powerful, brutal in-ring energy. His Pumping Bomber is a thing of beauty to watch, and arguably the best lariat in wrestling today."
Rating: 9.0
Sentiment: 0.21250000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: TheRealQuotewrote on 12.10.2020:[10.0] "Brutal and vicious, yet somehow graceful, Shingo Takagi is one of the best wrestlers in the world and despite making the weight limit I did not buy him as a junior for a second when he first joined NJPW. My favourite Dragon Gate wrestler of all time and one of my current overall favourites, Shingo always impresses with his aggressive yet meaningful style. You'll never get a bad match out of him, and he absolutely oozes charisma."
Rating: 10.0
Sentiment: -0.1025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: ElPolloLocowrote on 09.10.2020:[9.0] "A rare case in which I have to go back and correct a rating for the better. What more can I say that hasn't been said about Shingo Takagi? He's universally and deservedly praised for all the right reasons, but I'll add two things. First, he's one of the most charismatic workers in the business right now: the fact he's been able to stand shoulder to shoulder with Tetsuya Naito and Hiromu Takahashi, two of the most beloved wrestlers in the world, without either drowning them out or being drowned by them says just what a special kind of charisma Shingo Takagi exudes. Second, he has an absolutely amazing understanding of pro-wrestling matches as a form of art, and I am not joking. Pacing, timing, finishers... he has absolutely everything right and it's a bit of a shame NJPW has imposed upon him a very limited choice of finishers compared to Dragon Gate. But again Takagi merely shrugged it off (kinda like that stupid dragon mask) and kept of churning out masterful match after masterful match. A true pro-wrestling genius."
Rating: 9.0
Sentiment: 0.26746031746031745
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: BlakeFR37wrote on 25.09.2020:[10.0] "How can I say... Wonderful ! To be honest, I don't know how good he was before seeing him in a NJPW ring, and goddamn, he's insane."
Rating: 10.0
Sentiment: 0.32499999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: JXN95wrote on 19.07.2020:[10.0] "Really damn powerful, frighteningly quick and incredibly hard hitting (his pumping bomber especially looks like it could probably kill me), he's also a really good seller and meshes well with many different opponents, having classics with Ospreay, Naito and Ishii amongst others. He's also really charismatic and carries himself like an absolute badass that will do whatever the hell he wants. Oh, and his theme song is awesome. Shingo is easily one of the best in the world."
Rating: 10.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Chekerwrote on 20.02.2020:[10.0] "I think when I started watching Dragon Gate in 2016... ish, Shingo was already the best wrestler there by quite the margin. The reign he had back then as their world champion was nothing short of beautiful, and I've been a big fan since. For a while I was worried that New Japan wasn't gonna give him his dues, and it did take a while, but he's getting there. An IWGP heavyweight reign one of these days? Perhaps not, but we'll see."
Rating: 10.0
Sentiment: 0.33106060606060606
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Sabu316wrote on 27.01.2020:[6.0] "Hat einen guten Körperbau und seine Matches sind ok aber richtig überzeugen konnte er mich bisher selten."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: PuroresuLoverwrote on 08.11.2019:[10.0] "One of the very best not only in NJPW, it's a shame that he'll never be in the Main Event scene. Shingo is one of the wrestlers that define "Stiff" and "Big B O I"."
Rating: 10.0
Sentiment: 0.1904761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: JOEvsISHIIwrote on 17.08.2019:[10.0] "How is he not at least a 9. 20 yet. This dude absolutely KILLED it in the BOSJ and G1 tournaments, along with Ospreay, and has been putting out MOTYC left and right. His matches with Ishii, Naito and Ospreay are all in my top 10 matches of the year so far."
Rating: 10.0
Sentiment: 0.06428571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: RealBillyCwrote on 13.08.2019:[10.0] "After the G1 this man has had, he is officially my favorite wrestler. He is literally RIGHT THERE with all of the best wrestlers in the world. I don't think it's unfair to say he was the MVP of both the best of the super juniors and the G1 this year. He is insanely good, and can mix and match with wrestlers of all different styles, and make it great. The. Best."
Rating: 10.0
Sentiment: 0.5119047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: zephyrwrote on 12.08.2019:[10.0] "Shingo Takagi just absolutely RULES. He just exudes coolness somehow. Also great in the ring but you probably don't need to be told about that. Bumping my rating up to 10 after his incredible G1 this year because he just keeps putting on nothing but great matches."
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: NEVERoverweightChampionwrote on 05.07.2019:[9.0] "A veteran who did a lot of things and was already pretty successful before being in New Japan, he made the next step and quickly imposed himself as one of the most exciting wrestlers in the whole roster. For a guy this jacked he can quicken the pace impressively, he is powerful and very stiff. He is the kind of brawler I absolutely love and is also very consistent. A lot of presence and charisma, great look as well. Simply one of the best in the world today and he hasn't even really crossed the path of the top talents of the roster yet."
Rating: 9.0
Sentiment: 0.3376908179539759
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Kaswrote on 10.06.2019:[10.0] "Shingo has been among the best in the world for at least five years now and is finally starting to get the recognition that he deserves ever since joining New Japan. Honestly one of the best offensive wrestlers of all time, with lots of unique moves, a lovely snap to his suplexes and DDTs, and one of the best lariats of all time. Add all this to a fantastic bully character and some really great selling ability and you have one of the best wrestlers of the past two generations."
Rating: 10.0
Sentiment: 0.48164335664335667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: dontkilldylwrote on 29.05.2019:[10.0] "Shingo by every definition could've entered New Japan as a heavyweight and nobody would have batted an eye, but instead he took the hard road and became the Jr Heavyweight that an otherwise thinly-spread Jr Heavyweight division desperately needed, owing to the departure of KUSHIDA, the unfortunate injury of stablemate Hiromu and the gradual phasing out of Marty Scurll and Will Ospreay. I could tell you all the ways Takagi stands out as a wrestler but to simply speak about it wouldnt do him justice, he blends speed, agility, power and aggression into a neat package and the result is something special and memorable, with the path to the Jr Heavyweight title just about clear, and being well more than equipped to run through whoever is left standing, it's only a matter of time before Shingo Takagi holds singles gold in New Japan, regardless of weight class."
Rating: 10.0
Sentiment: 0.028183621933621932
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: JustAWrestlingFanwrote on 25.04.2019:[9.0] "Despite not knowing who he was until he joined NJPW and LIJ he has quickly become one of my favorites on the roster. The fact that he joined LIJ on his debut which is a really exclusive stable and not something like Chaos where it seems like everyone goes. The way he cuts promos is something i could listen to for hours. He is also a extremely talented wrestler."
Rating: 9.0
Sentiment: 0.41111111111111115
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Malay Boywrote on 01.02.2019:[10.0] "This man is an absolute beast. He is the top guy in Dragon Gate and such an honor to watch his career growing strong. I feel bless when watch him wrestle in Champion Carnival and BOLA last year. Now, NJPW showcase him as one of their main attraction and I'm happy for him."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Yapperman3wrote on 08.09.2018:[10.0] "one of the best around. instantly stands out in DG with his power junior style and is also a welcome whenever he guests for other promotion. With the recent events , DG's loss is everyone else gain."
Rating: 10.0
Sentiment: 0.335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: ps avilawrote on 01.06.2018:[9.0] "Been amazed and impressed by this guy. Any match you pick and you can see the guy delivers: intensity, creativity, so much charisma. From Dragon Gate til the last C. C. he brought lots of interesting stuff, so thatŽs it. The guy is great and I hope he gets more chances to show his abilities."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: jamzell00wrote on 04.05.2018:[10.0] "One of my favorite wrestlers ever. Shingo is the hoss of Dragon Gate and one of the baddest motherfuckers in the business. His explosive and stiff style of wrestling mixed with his unmatched intensity make him so fun to watch. If there's one thing I love about him that I don't say about any other wrestler in the world it's the way he hits the ropes. You do not see anyone run the ropes as violently as he does and it adds so much to the best clothesline in the biz THE PUMPING FUCKING BOMBER"
Rating: 10.0
Sentiment: 0.07607142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: My Bloody Doobwrote on 20.02.2018:[10.0] "My personal favorite guy in Dragon Gate. His toughness in being a face is good, but he excells at being a ruthless physical heel. His power and strength makes him stand out among his more agile peers. He put on some amazing classics in the late 2000s, but still put on quite a few classics in his home promotion as well. As of late he is finally showing his talents in other promotions in Japan."
Rating: 10.0
Sentiment: 0.005357142857142854
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: TheRainmaker28wrote on 09.12.2017:[10.0] "One of the most underrated workers of his generation in Japan. Shingo is just amazing. He got the badass look, the great character work, the charisma and he's a true workhorse. Love me some Shingo."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Rybackobashiwrote on 18.08.2017:[10.0] "It's quite simple, Shingo Takagi is the perfect mix between American style and Japanese strong style you'll see. He got it all in the ring, great moves, knows how to structure a match, has A LOT of intensity and is always the main attraction in any match he's in. He's in my opinion top 3 heel in the business right now, and one of the best overall workers. Shingo is truly a must-see wrestler, and goddman he can take your head off with these lariats"
Rating: 10.0
Sentiment: 0.3805194805194805
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Indyguy22wrote on 10.10.2016:[10.0] "Shingo Takagi well Basically All of The Wrestlers In The Dragon Gate Promotion  Is a 8-10 at best They Deserve It  The Reason Why I Gave Shingo A Perfect 10....  Because Of His Power And Creativity In The Ring...  For A Guy Who is Only 5'10.. he can Work with nearly all.. Weightclasses Perfectly   I Still love The Made In Japan "Halfnelson-Pumphandle Driver" And That Sick Running lariat even JBL Will be Afraid ..  And If I saw some one Using the same move e. g.  Matt Sydal I always think Of Shingo.. Some Thing About This Guy really Popped For Me."
Rating: 10.0
Sentiment: 0.24857142857142858
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Luv all wrestlingwrote on 30.07.2016:[9.0] "Shingo is great for one reason, he is a beast monster heel who is angry all the time and seems like he is ready for a fight, and his fight deliver."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Jobbswrote on 26.09.2015:[10.0] "This man is an absolute beast in Dragon Gate! Best powerhouse in wrestling to date and his work his off the charts. His classics against BxB Hulk and Bryan Danielson in July 2010 show just how good SHINGO is and he is one of the best in wrestling right now."
Rating: 10.0
Sentiment: 0.6471428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Claudio Herowrote on 23.12.2014:[10.0] "Für mich einer der Besten Big Men in Japan der letzten 10 Jahre. War in Zig Top Matches (vs Cima, BxB Hulk, Danielson, Richards ... ). Er beherrscht verschiedene Stile und kann auch großartig den Heel spielen. Ich sehe ihn immer wieder gerne und hoffe das seine Karriere noch sehr lange geht"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: apc24wrote on 02.01.2014:[9.0] "Awesome wrestler, great powerhouse. One of the best at dropping people on their heads."
Rating: 9.0
Sentiment: 0.9333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Erico Moraeswrote on 01.07.2013:[10.0] "What a perfect powerhouse! Guys like Ryback have a lot to learn with someone like Shingo!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: TAKUYAwrote on 14.10.2012:[9.0] "Ganz egal was Shingo privat für ein Mensch sein mag, bewerte ich hier lediglich Shingo als Wrester und als dieser ist er einfach phänomenal gut. Egal wie viele Matches ich schon von ihm gesehen habe, es macht einfach Spaß ihn bei der Ausführung seiner Moves zu zusehen. Auch sein Selling finde ich ziemlich interessant, denn dies ist sicherlich auch ein nicht ganz unwichtiger Grund, warum seine Matches bei mir so einen starken Eindruck hinterlassen. Zudem besitzt Shingo eine Ausstrahlung wie kein anderer bei Dragon Gate und seine Frisuren sehen stets interessant aus."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Sandmannwrote on 20.06.2012:[8.0] "Trotz seiner etwas geringen Größe ist Shingo doch ein sehr beeindruckendes Powerhouse. Gerade seine Zeit bei ROH blieb mir in Erinnerung da er immer sehr gute Matches ablieferte und durchaus in mir einen Fan gewonnen hat. Ausserdem ist er bei DG natürlich auch immer eine nette Abwechslung zu den ganzen Highflyern. Also ein guter Wrestler von dem ich immer wieder gerne Matches sehe."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Double Jwrote on 11.06.2011:[9.0] "Ein richtig klasse Powerhouse, mit feiner Technik und harten aktionen. Er wird einfach glaubwürdig und jedes seiner Matches weiß gut zu unterhalten!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Matt4Wrestlingwrote on 24.02.2011:[9.0] "Ein Top-Wrestler und guter Techniker, allerdings gibt er sich oft zu unsicher gegenüber Fans und das macht sich sehr oft auch bei seinem Matches ersichtlich! Er sollte seine Fans nicht als Feinde oder Kritiker, sondern viel mehr als Freunde sehen, dann könnte er sich unbefangener entfalten!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: DJ MaSchwrote on 01.05.2010:[8.0] "Sehr gutes Powerhouse, der trotz seiner Körpergröße die Aura von purer Wucht und Kraft hat. Neben seinen Powermoves hat er auch noch technisch einiges drauf. Ich hab ihn beim Carat 2009 live gesehen und war wirklich sehr von ihm beindruckt."
Rating: 8.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Soerenwrote on 23.03.2010:[2.0] "Grausamer Wrestler und Zeitgenosse. Sehr überbewertet!"
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Aquifelwrote on 10.02.2010:[8.0] "Ich schaue mir Leute wie Shingo (oder auch Claudio Castagnioli) an und frage mich dann wie Leute einem Powerhouse wie Batista 9 oder 10 Punkte geben können. Shingo ist sicherlich nicht der Größte, dennoch reisst er in diesem Stil so einiges. Seine Aktionen sehen geschmeidig aus, sie sehen wuchtig aus und er kann sich schnell bewegen. Dass er gute Matches mit Sinn und Verstand haben kann hat er auch schon bewiesen. Tolles Powerhouse also."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: homicidal cena michaelswrote on 23.01.2010:[8.0] "Shingo zeigt durchweg gute Matches und ist sehr konstant."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: StefanKwrote on 09.12.2009:[9.0] "Shingo zeigte in Oberhausen, dass er angeschlagen gegen Andy immer noch zu guten Matches im Stande ist. Andy war ebenfalls durch Fieber nicht in der besten Verfassung, aber ein Klasse Match."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: El-Chupakneebraywrote on 06.10.2009:"Herausragender Wrestler, aber eben auch Affenquäler... dafür kann ich nicht mit gutem Gewissen Punkte vergeben."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: ARIZAwrote on 12.09.2009:[7.0] "Ohne Frage ein guter Wrestler, aber ich bin kein wirklicher Fan von ihm. Warum weiß ich nicht, der Funke ist einfach nicht übergesprungen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Mick Funkwrote on 11.05.2009:[7.0] "Trotz geringer Größe eine absolut überzeugendes Powerhouse mit einer guten Portion Ausstrahlung. Mehr davon!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: T-Waynewrote on 30.04.2009:[8.0] "Shingo zerstoert jeden! Mich nervt nur, das er teilweise als zu mächtig dargestellt wird. Wirklich empfehlenswert sind alle seine Matches gegen Yamato."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Tomkowrote on 16.12.2008:[8.0] "Hat sich stark entwickelt und hat auch langsam die Aura eines Powerhouses! DIESER MANN IST PURE POWER!"
Rating: 8.0
Sentiment: 0.008928571428571425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Kingpin39wrote on 11.12.2008:[6.0] "Naja kann solide Matches zeigen, was aber bei Dragon Gate auch nicht verwunderlich ist."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: MrWrestlingwrote on 08.10.2008:[9.0] "Ein guter Wrestler. Er ist noch jung und kann noch viel lernen. Er wird sich bestimmt durchsetzen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: Baszdmegwrote on 24.05.2008:[6.0] "Guter Wrestler, aber mir persönlich viel zu langweilig."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: LexLuger4everwrote on 21.04.2008:[8.0] "Ich muss die Bewertung nach oben korrigieren, Shingo ist absolut auf dem Weg nach oben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: The Mountiewrote on 07.11.2007:[8.0] "Bester Beweis, dass man nicht 2 Meter groß sein muss und keine 120 Kilo wiegen muss, um eine Aura absolut roher Power zu versprühen. Sein Match gegen Morishima gehörte zu Moris besten Titelverteidigungen. Da geht noch einiges so kurz wie Shingo noch im Geschäft ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: STRIGGAwrote on 24.06.2007:[8.0] "Shingo ist ein Power-Wrestler, der sehr viel Potential hat. Ich verspreche mit gerade von seiner USA Exkursion einige Verbesserungen, doch auch vorher war der Name "Super Rookie" nicht unberechtigt."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2846&gimmick=Shingo+Takagi
Comment: aulitwrote on 24.06.2007:[6.0] "Hat sicherlich sehr viel Power und kann gute Matches wrestlen. Ihm würde aber mal eine Niederlage in einem Hair vs. Hair Match gut tun..."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Beccawrote on 09.02.2025:[10.0] "Mein männlicher Lieblingswrestler. Seine Matches gegen Kento bei NOAH und AJPW gehören zu den besten Bouts die ich je gesehen habe. Er ist unheimlich intense, kein Move, keine Bewegung wirkt verschwendet. Sein intensiver, oft gruseliger Blick lässt mir das Blut in den Adern gefrieren. Er ist ein legit tough guy und hat bereits 3 oder 4 Leute legit im Ring und bei PKs ausgeknockt, irgendwie passt es also dass er jetzt nach UWF Regeln Champ bei GLEAT ist. Hoffe dennoch, dass das nur eine Zwischenstation für ihn ist. Jedes Match mit diesem Mann ist ein absoluter Genuss. Die härteste Gangart, verbunden mit endlosem Charisma. Dazu muss ich sagen dass sein (Pre-GLEAT) Entrance mit eigens für ihn geschriebenem Theme einfach unfassbar athmosphärisch ist."
Rating: 10.0
Sentiment: -0.09444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TheEnigmatic1wrote on 20.09.2024:[10.0] "One of If Not the greatest Japanese Wrestler of the modern era, He has insane Charisma and the best Kicks in the business. His feuds with Kento Miyahara and Go Shiozaki are legendary and he always puts on a great match. IDK why no Major company will sign him idk if he has attitude issues but he needs to go somewhere RN because him hiding away in GLEAT is not it."
Rating: 10.0
Sentiment: 0.37109375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Zak22wrote on 05.08.2024:[10.0] "Simply put, Nakajima has been the best wrestler in the world for the last few years. Great N-1 Victory performances, great GHC Heavyweight and Triple Crown title runs, now doing his thing in GLEAT. Nakajima is excellent in-ring and he has a certain level of charisma, which makes him very enjoyable to watch. His title vs title match with Kenoh is one of the best matches of the decade. Brilliant wrestler."
Rating: 10.0
Sentiment: 0.5603896103896105
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: nabigoyewrote on 03.08.2024:[9.0] "Nakajima ist schon echt ein geiler Wrestler, den man so kaum sieht. Er hat die besten Kicks und sonst natürlich im style sehr auf strong style ausgelegt. Ich finde er hat unglaubliches Charisma und einen guten look und ist sehr glaubhaft im Ring. Leider ist aber auch fakt dass man durch seinen Wrestling Stil, wenig abwechslung bekommt, aber das was man sieht und wenn man bock hat es zu sehen, ist fast immer sehr gut."
Rating: 9.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Joe907wrote on 20.07.2024:[10.0] "One of my favorite wrestlers to watch. He's been really good ever since his teenage years. He was a prodigy and learned from some of the greatest wrestlers ever. His strikes are brutal. In-ring work is excellent. One of the best in the world."
Rating: 10.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: OctagonEnjoyerwrote on 02.07.2024:[10.0] "One of the best wrestlers currently wrestling. Nakajima has always been great and violent, but ever since going freelance and popping up in AJPW and GLEAT, he's had this force of nature "I do whatever I want" vibe to him that only be compared to Brock Lesnar. He's a man who goes everywhere and causes destruction in his path and will take down a promotion's big pillars to get him what he wants. His matches with Kento Miyahara are a key example of this, being the only guy in years to not only beat Kento cleanly in a row but also someone Kento genuinely struggled to beat. But even before this era, we had his great junior heavyweight stuff, being a part of THREE great tag teams (Kensuke Family, AXIZ, The Aggression), and his matches with Sugiura, Shiozaki, and KENTA. Nakajima already has had a GOAT worthy career but if he's able to produce even a TINY bit of what he's doing now still at like 45 or even 50 he should be considered a legend."
Rating: 10.0
Sentiment: 0.23580246913580252
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: jcheng777wrote on 24.04.2024:[10.0] "Arguably the ace of AJPW currently. One of the hardest hitters in the business and a joy to watch, extremely charismatic in-ring too. Loved his work in NOAH and deserves more recognition than he currently possesses."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: yvonnelikeswrestlingwrote on 10.02.2024:[10.0] "I think he might be my favorite in ring wrestler of all time. yeah I love danielson, omega, angle and others but nobody speaks out to me in ring than nakajima. He consistently puts on moty contenders every year and his matches against always get me so hyped and invested. Such an amazing wrestler and I cant wait to see what he does next like how I have for many years."
Rating: 10.0
Sentiment: 0.33571428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: FattitudeErawrote on 25.01.2024:[10.0] "Huge fan of Nakajima and as a regular NOAH viewer was disappointed to see him leave last year. However, having kept up with his AJPW run so far I can understand why he made the move. He is well suited to being positioned as the top guy in that company and he is more than capable of carrying that responsibility. Hard to argue against him being the best pure striker in wrestling. Love watching him work, from his methodical pacing to his cockiness to his strikes themselves. A very worthy main event level talent, champion and sure to go down as one of the greatest in his generation as time goes by. AND, there is so much more to come from him, at only 35 years old!"
Rating: 10.0
Sentiment: 0.2471031746031746
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TheOneAndOnlyCactuswrote on 31.12.2023:[10.0] "It's hard to believe that he is 35, as he has been elite for a long, very long time now. The best pure striker in wrestling today, Nakajima has also evolved into an versatile technician, and has put on display his evolution as a performer and character this year. His insane levels of charisma as a cocky prick makes him a top name wherever he goes."
Rating: 10.0
Sentiment: 0.013452380952380945
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: uniwrote on 01.12.2023:[10.0] "When you've been as good as Nakajima has been for nearly 20 years, you might be considered an all-time great just off longevity. He's performed at a world-class level since he was 16, and really became consistently elite by 20. Mind-boggling to think he might be better now than he was back then."
Rating: 10.0
Sentiment: 0.38125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Scott Kobayashiwrote on 13.05.2023:[8.0] "Katsuhiko Nakajima is a really good wrestler. A great one! But he works for Pro Wrestling NOAH. A company that loves to simply get in its own way. A lot of the guys in Pro Wrestling NOAH are good workers. Pretty much the entire main event scene sans Jake Lee are excellent workers. But some of these wackos should not go over 20 minutes! Nakajima, Kenoh, Marufuji, Jake Lee, etc, they simply are not interesting enough/and or just not build to go long the same way Shiozaki or Sugiura were. Nakajima is better than Kenoh as hes low key an upgraded version of him (cooler, better kicks, etc) and hes LIGHTYEARS better than 2023 Naomichi Marufuji but his track record in recent 25+ minute matches just isnt there for me. Nakajima in under 20 minutes is a 10/10 wrestler, but he works in the main event scene of a company that it feels like a requirement to go long. Nakajima in a company like AEW in a Takeshita like roll (another guy who has since seen his hit rate go up by leaving Japan) would own. But hes not. So were working with what we got. 7.5/10, which rounds up to an 8. A shame."
Rating: 8.0
Sentiment: 0.28405797101449276
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: jamzell00wrote on 05.05.2023:[10.0] "If Shibata did not exist he would be in the running for my favorite wrestler ever. Even before he grew out his hair and became the cockiest motherfucker alive he was an elite worker who never really disappointed me. Once 2017 hit though? Dude just became a different animal entirely. Growing a mustache unlocked a level of charisma I didnt think was possible. His 2018 year is one of my favorites for any wrestler the last few years and he was mainly just doing tag work with Kitamiya. When he did get the opportunity to work his first singles match it ended up being one of the best of the entire year. Thats the level he's been at and continues to be at. Its ridiculous to talk about 35 yr old having almost 20 years of outstanding work but its true for him. Just imagine how amazing he'll be when he becomes a grumpy old man oh my god."
Rating: 10.0
Sentiment: 0.19490740740740742
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TheRealbeast29wrote on 03.05.2023:[10.0] "As a new fan of NOAH, this guy is so easy to instantly gravitate towards. He kicks so much ass and has one of the coolest auras of anyone currently wrestling, his striking is amazing to watch and he has great in-ring charisma. Nakajima never leaves the ring without giving at least an enjoyable performance, his matches are must watch even when they're squashes because of how fun he is to watch."
Rating: 10.0
Sentiment: 0.2881542699724518
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Wrest lingaddictionwrote on 27.03.2023:[10.0] "You want a striking exhibition? You call Nakajima. You want a hard-hitting war? You call Nakajima. You want a great match? You call Nakajima... Undeniable talent, perfect striker, deserves every accolade he gets and so much more!"
Rating: 10.0
Sentiment: 0.73125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: PorcoRosso1wrote on 01.02.2023:[10.0] "This man beat up and gaslit Kento Miyahara as a young boy and then stole his girl and married her. One of the most disrespectful things I've seen in all of wrestling. Ain't nobody doing it like him."
Rating: 10.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TerwilligerTheLuchawrote on 12.01.2023:[10.0] "Best striker in the game right now, by quite a distant margin. Has one hell of an aura around him that few can match. Really hoping he gets another run at the top, as I genuinely thought his early 2022 run would catapult him to superstardom."
Rating: 10.0
Sentiment: 0.1984126984126984
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: plaguespreaderwrote on 20.03.2022:[9.0] "Absolutely destructive force. Appreciate that he sits on the outside of KONGO during their team pose, heightening his "outsider" nature."
Rating: 9.0
Sentiment: -0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: GriffinXwrote on 16.01.2022:[10.0] "17 years into his career and doing his best work. Nakajima has always been very good there is reason why he was on big shows as a teen. But in 2021 he went to the next level. Just great matches after great matches. His kicks are excellent as are all of his strikes his grappling looks strong. Right now if you are debating best he needs to be in the debate"
Rating: 10.0
Sentiment: 0.5662770562770563
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TSwiftywrote on 08.01.2022:[10.0] "Katsuhiko Nakajima is the fucking man. People are talking about Roman, Danielson, Punk, Shingo or whoever as the best wrestler of 2021 (All 4 have had great work last year to be fair, especially Shingo and Danielson) but in terms of pure in-ring work Nakajima has to be in the discussion. It really felt as if last year showed Nakajima growth as a character and as the ace of NOAH. Every match he elevates. From any filler 6-man or tag match to an undercard singles match. Nakajima always delivers. Once he moved up to the main event scene again after The Aggression imploded he was stellar. From the N-1 tournament, his final with Kenou, his GHC Heavyweight Championship win against Marufuji and successful defenses against Tanaka, Kenou and Shiozaki he is on a hot streak unlike almost anyone else. I haven't even touched the surface of his greatness as that would deserve a much longer review probably longer than 3000 characters. He's full of charisma and arrogance and has a distinct in-ring style and look. He carries himself like a star and can have a good match with any opponent. His selling, timing, technique and striking are all world-class. Endless amounts of great matches even from his early days in NOAH against guys like KENTA. Tremendous wrestler and the most underrated wrestler of the last 5 years alongside Konosuke Takeshita in my opinion. He and Kaito are going to carry NOAH this decade for sure as long as they remain."
Rating: 10.0
Sentiment: 0.30854591836734685
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "The true ace of NOAH, his style and character do as much to bring in fans as anyone. Every opportunity he got this year, he smashed. His GHC Tag Title win at Great Voyage in Yokohama was great, but it was The Aggression disintegrating when it all got crazy. The hair-vs-hair no audience cage match was my unique MOTY, a totally bizarre, brutal spectacle. Losing that, and his hair, was the point of metamorphisis. The N1-Victory took him to the heights he deserves."
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Lalo Camposwrote on 26.11.2021:[10.0] "One of the best wrestlers of 2021, the best GHC Heavyweight Champion of 2021 and the best wrestler of the second half of 2021"
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: benny5bellyswrote on 14.11.2021:[10.0] "Nakajima might just be the best wrestler in the world in 2021. I can't believe he is only 33 and already has the resume he has."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: naturalbornfarmerwrote on 12.10.2021:[10.0] "The fact that this guy has been wrestling for almost 20 years and is somehow only in his early 30's is shocking to me. I can still barely cook my own meals as a 20 something, but Nakajima has been putting great matches since before he was 18 years old. NOAH had so much amazing young talent in the 2000's, but funnily enough, Nakajima was probably the youngest amazing talent they had. Him regaining the GHC heavyweight championship seems to have been perfectly timed, as he should now just be hitting his prime as a wrestler. Looking forward to all the great work he'll do as champ."
Rating: 10.0
Sentiment: 0.28846153846153844
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: ProWrestlingGuy316wrote on 27.07.2021:[10.0] "Ein Mann, bei dem ich mir seit einer gefühlten Ewigkeit die Frage stelle, warum Noah ihn nicht zum absoluten Aushängeschild macht. Extrem gut im Ring und ungemein charismatisch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: SpikeWithGlasseswrote on 30.06.2021:[10.0] "Nakajima is one of the best right now, the best in my opinion, from his smile to his kicks, every single thing he does is so good, he's incredible and still quite young."
Rating: 10.0
Sentiment: 0.5267857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Bushidospirit22wrote on 01.03.2021:[10.0] "Nakajima has been one of the best wrestlers in the world since his teenage days, but he's really come into his own as a full performer in the past three years. Arguably the best heel in the world, and unquestionably the best kicks in wrestling since Kawada. The best wrestler in the world when he's invested in the match in my opinion."
Rating: 10.0
Sentiment: 0.5444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TsurutaOHwrote on 13.12.2020:[10.0] "Easily the most consistent NOAH wrestler alongside Sugiura, Nakajima started with a good Babyface that showed great fire and passion but that really shone when he changed his character, today with gigantic confidence and charisma and simply enviable skills, easy one of the best match makers we have today, I am sad that he didn? t get to win the GHC H Heavyweight this year, but with this current heel persona he can simply become the standart for years to come"
Rating: 10.0
Sentiment: 0.35512820512820514
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: taabr2wrote on 19.09.2020:[8.0] "A protégé of puro star Kensuke Sasaki. Kakajima started wrestling at the very young age of 14. Early in his career Nakajima put on amazing performances wrestling in almost every single major promotion and was competitive with the top stars in each of them, even though he always lost. After 10 years as a freelancer and having competed in almost every tournament or for title you could imagine, he finally singed with a promotion long term in Pro Wrestling NOAH. The promotion gave him quite the push that first year he signed with them, even winning the GCH heavyweight Championship, ultimately that fizzled out and truthfully Nakajima has not nearly lived up to the huge potential he displayed in those early days."
Rating: 8.0
Sentiment: 0.1856919642857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: CyberVolteswrote on 29.08.2020:[8.0] "Katsuhiko Nakajima's skill as a wrestler is undeniable. It may have taken him a bit too long to settle down his character as an arrogant, laid back, fearsome fighter who will mock and underestimate his opponents both inside and outside the ring, which is something that seems to come to him very naturally, but his no-nonsense offense has always been there. His thunderous kicks, polished vertical spikes, powerful suplexes and some occasional smooth matwork are always a joy to watch - combine all of this with his current attitude and, in many ways, you have a wrestler's wrestler. In fact, if I were to take only the best matches of his career in consideration, Nakajima would certainly get a 10 from me. That said, it's been a long time since we could take for granted Nakajima will give his all in a match. I don't know if that's something he does on purpose, as part of his gimmick, or if he really just doesn't care that much anymore, but Nakajima has been phoning in a lot of his performances for years, now. It seems he's always in need for his opponent to take the best out of him, or else he'll just go the formulaic route and recycle the same spots you've already seen he doing a million times before. Nothing illustrates this better than both his defenses of the WRESTLE-1 Title: when Daiki Inaba let Nakajima just be himself, we got a subpar performance from him; one month later, Shotaro Ashino made Nakajima dust off his grappling skills and actually think the match through, leading to a way, way better combat than the one before. So, in the end, Nakajima can still give stellar performances when needed, but he won't really take the initiative to do so. It should be noted, however, that he is far more consistent when paired with Shiozaki. As a tag team, they have amazing chemistry and cover each other's shortcomings to the point they become unnoticeable."
Rating: 8.0
Sentiment: 0.2343138760880697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TOUGH AND HARDwrote on 23.12.2019:[7.0] "Mechanically, a great worker. Polished, smooth, rarely botches, and can bring the fire. While he's no master of psychology, and generally lacks the charisma and the presence of his forebear (Sasaki Kensuke), his newfound confident, smiling sociopathic character work has helped distinguish him from the more generic fighting-spirit trope of past. Nakajima was one of the most promising rookies in the entirety of the wrestling world in his time, but he has yet to find within himself that certain 'it' factor to cement him as NOAH's main event stalwart."
Rating: 7.0
Sentiment: 0.2301587301587302
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: PuroresuLoverwrote on 12.05.2019:[10.0] "One of the very best in the world right now, he's making Kawada and Sasaki very proud with his kicks. I hope he becomes GHC Heavyweight Champion again, he truly deserves it."
Rating: 10.0
Sentiment: 0.7619047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: My Bloody Doobwrote on 16.03.2018:[9.0] "The odd one out when it comes to pupils of legendary 90s puroesu stars (KENTA, Marufuji, Go, etc. ) as Nakajima was the student of Kensuke Sasaki. That said I can't honestly say he has the star power that his contemporaries have, but I can say his talent is at least equal to them. He isn't as charismatic as Go, not as athletic as Marufuji nor does he have the intensity of KENTA, but he is much more tactical and ruthless than them. It all makes sense since he is literally called the "Genius of the kick". His chance at becoming the "Ace" of NOAH was a disappointment considering he didn't draw well because of the lack of fan connection, but he still churned out pretty good matches. Loving his new worn out look though since losing the belt."
Rating: 9.0
Sentiment: 0.12464646464646464
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TooSweetPhilwrote on 25.08.2017:[9.0] "Nakajima ist einfach so ein fantastischer Wrestler. Der Typ arbeitet unfassbar stiff, behält dabei aber eine enorme Sauberkeit in der Ausführung seiner Moves. Er bereichert ein Match mit dieser "jetzt-wird's-episch" Ausstrahlung, definiert dabei den Strong Style, als auch seine flinken Schnelligkeitsmanöver. Ich würde ihn ehrlich gesagt öfter in NJPW sehen, da er mir vor allem im G1-26 mit den Matches gegen Shibata, Nagata, allen voran Elgin richtig gefallen hat, dennoch ist auch sein aktueller NOAH Run (beispielsweise Match gegen Cage) richtig gut. 9 Punkte!"
Rating: 9.0
Sentiment: 0.16369047619047622
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: arrancarwrote on 21.08.2017:[8.0] "Nakajima is an awesome athlete, but to be a wrestler you need to also have an endearing character. Nakajima lacks this, which is what I feel holds him back from being considered a top wrestler. His offence is stiff as hell, he can sell exhaustion, loss of consciousness, and pain very well, and he can communicate strong-style passion quite well. However, he runs through all these areas only to rather basic degrees and then repeats that for all his big matches. That results in Nakajima coming off as rather bland because he goes out of his way to have the same match each time and perform the exact same spots and character work each time too. Sometimes Nakajima is just so great of a wrestler that he still manages reach the minimum threshold for a great match, such as against Elgin, Shiozaki, Sugiura, Suzuki, and Kitamiya, in spite of his character's shortcomings. Perhaps experimenting with the use of some different facial expressions, gestures, and different style approaches (while still maintaining his trademark stiff strikes, of course) could make me more interested in him, but for now I still find myself suffering quite a bit through his GHC title reign. In my opinion his spot in NOAH is as a GHC title contender or GHC short-reign champion at most, but definitely not as the face of the company (at least not until he develops further). Still a very exciting competitor overall."
Rating: 8.0
Sentiment: 0.17124149659863944
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: isalrightnowwrote on 30.07.2017:[8.0] "Nakajima is a great wrestler. He's able to convey this mean sort of presence, of a guy who can just mess you up with the greatest of ease. Plus, his actual work in the ring is great, too. He has his signature spots, but it never really feels as if he's just getting his stuff in when he does them. For example, the spot where the guy rests his head on the turnbuckle and Nakajima punts the turnbuckle to hurt them, that has always felt like Nakajima thought to do that, rather than "well here's where I do my thing". With all this in mind, I do have reservations about him as GHC Champion right now. Yes, he is the only real choice, and yes, NOAH will keep doing fine as they have been. However, I get this feeling that they're trying to push him as an ace character, ala Tanahashi or Miyahara, when the guy who I've been praising couldn't be further from that. He can seem awkward and unfitting in the role of the guy who ends the show, who high fives people and hugs babies. I think he can be champion without needing to, in a sense, compromise the personality that brought him to the dance. Other than this hang-up, I think Katsuhiko Nakajima is absolutely someone to check out."
Rating: 8.0
Sentiment: 0.1794047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: HUNTERBC88wrote on 16.07.2017:[10.0] "I really have no words for him. He's a great wrestler. He's been Wrestling since 2004 and not even 30 yet. He has one of the most shocking wrestling careers ever."
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: TheRainmaker28wrote on 16.02.2017:[9.0] "Nakajima has been solid for years now and finally got the Ace spot. He got a very underrated psychology in my opinion, being able to work in any type of match in these days. His offensive are amazing, I love that stiff strikes, and definitely his reign with the GHC Heavyweight Title is one the best in recent memory in my opinion. The future is bright for this young man, as he continues to evolve already being a great wrestler."
Rating: 9.0
Sentiment: 0.2989795918367347
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: CmNag66wrote on 07.01.2017:[10.0] "Einer der wenigen Lichtblicke für NOAH im Moment. Ein tolles Jahr 2016 mit einem starken G1 und endlich dem überfälligen Aufstieg zum Main Eventer und Champion bei NOAH. Ich hoffe NOAH tut das einzig richtige und baut in Zukunft die Liga um Nakajima auf."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Viper99wrote on 07.11.2016:[9.0] "Seit 9 Jahren bereichert Nakajima die Wrestling Welt mit großartigen Matches in vielen verschiedenen Promotions wie unter Anderem ROH, NOAH oder auch New Japan Pro Wrestling. Er hat den klassischen Asiatischen Strong Style Stil, eine tolle Technik und Psychologie und das gewisse etwas was ihn wie ein Star wirken lässt. Ein toller Wrestler."
Rating: 9.0
Sentiment: 0.28484848484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: akm0wrote on 18.10.2016:[8.0] "Kensuke Sasaki's pupil. Nakajima is a very good wrestler who embodies what I like in a performer: good striking ability, speed, technicality and a badass look. He also has an incredible amout of experience for his age, which makes him one of the future stars of puroresu. I love his kicks, I love his combinations and I want to see him becoming GHC Hvt. Champion and IWGP Champion in the future. His run in the G1 Climax was good and his matches against Elgin and Shibata were a perfect showing of his abilities."
Rating: 8.0
Sentiment: 0.56
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: prowrestlingisrealwrote on 23.08.2016:[10.0] "Hard hitting wrestler with some great offense, reminds me of Nagata, I'm very impressed with him after his G1 matches, he should be the next GHC heavyweight champ."
Rating: 10.0
Sentiment: 0.3770833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Mathieu Virtuosowrote on 30.07.2016:[9.0] "Looks very comfortable in the G1 tournament and has been on his fair share of good matches already. I see only good things in Nakajima's future."
Rating: 9.0
Sentiment: 0.4366666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Matzinhowrote on 09.02.2014:[10.0] "Nakajima wird allmählich zur Gegenwart des Puroresu. In welcher der großen japanischen Ligen er letztendlich auch immer landet - er ist für mich das designierte Ace. Der Junge hat früh angefangen und ist jetzt mit 25 Jahren schon einer der erfahrenen Wrestler. Er liefert reihenweise gute Matches ab, hat ein fantastisches Moveset, sellt hervorragend und ist einer dieser Wrestler, die im Ring eine Geschichte erzählen können. Hoffentlich landet er irgendwann mal bei den Schwergewichten. In meinen Augen einer der besten Wrestler der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: ARIZAwrote on 16.06.2012:[9.0] "Sehr guter Mann, der immer noch sehr Jung ist und eine wahrlich große Zukunft vor sich hat. Mit Kensuke Sasaki hat er auch den perfekten Mentor um in wenigen Jahren endgültig an der Spitze in Japan anzukommen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Kenshin Uesugiwrote on 17.03.2012:[10.0] "Es war Liebe, wrestlerisch gesehen ;), auf den ersten Blick! Nachdem Tod von Hashimoto blieb als Lieblingswrestler aus dem Puroresu nur noch Muto und dann kommt er. Der Mann ist für das Wrestling geboren wurde, ein Jahrhunderttalent, der mit einer unübersehbaren Willen, Fähigkeiten und Sinn für das Wrestling in so jungen Jahren ausgestattet ist das ein erschauert. Weder KENTA oder Marufuji waren zu diesem Zeitpunkt schon formvollendet wie er, um den Jungen müsste man sich eingeltich überall prügeln um ihn zu bekommen. Manchmal sehr selten, lässt er sich aber bei NOAH von der Overkill und allen den Schwächen die bei den Junior und Heavweights gibt mitreißen. Das ändert aber nicht an der Tatsache das ihm die Zukunft gehört und jeder der ein wenig Interesse am Wrestling hat muss den Kerl lieben, ich tue es!"
Rating: 10.0
Sentiment: 0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: ShakDragoonwrote on 04.10.2011:[9.0] "Definitiv das herausragendste Talent des Kensuke Office. Jetzt fehlt nur noch ein längerer Titlerun, um zu KENTA und Naomichi Marufuji an die Spitze der NOAH Jr. Heavyweights aufzuschließen. Leider hat ihm seine Blinddarm-OP scheinbar abermals einen Strich durch die Rechnung gemacht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Hu-Manwrote on 20.08.2011:[10.0] "Geiler, stiffer, harter und unterhaltsamer Worker. Habe einige großartige Matches mit ihm gesehen und bin vollkommen begeistert. Darüber hinaus ist er noch extrem jung, was großes verspricht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Double Jwrote on 26.05.2011:[8.0] "Kann jemand so zutreten wie Nakajima? Wohl kaum. Ansonsten auch ein Top Mann, gute Ringübersicht, schönes Moveset, klasse Junior Heavyweight."
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Matt4Wrestlingwrote on 16.05.2011:[10.0] "Ein sehr stiffer Wrester, der sich vor High-Flying nicht scheut. Hat durchaus seinen großen Durchbruch noch vor sich!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: MaKnowrote on 15.08.2010:[10.0] "Der Bursche ist eine Wucht! Ich kenne eigentlich kaum einen, der in so jungen Jahren schon solch ansehnliche Leistungen im Ring zustande brachte. Nakajima ist die Zukunft des Puroresu, ohne Frage!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Switchbladewrote on 22.06.2010:[8.0] "Unglaublich wenn man bedenkt dass er noch so jung ist, aber schon so lange aktiv ist. Seine Matches mit Kenta haben mir gut gefallen und hat noch eine große Zukunft vor sich."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Wrestlingmashinewrote on 14.04.2010:[10.0] "Immer in hervorragende Matches auf der Card und harter Hitter. Und erst so Jung, man darf wohl noch viel von ihm erwarten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Eddiewrote on 04.04.2010:[9.0] "Nakajima ist ein übelst harter Hund mit echt fiesen Kicks. Am Matchaufbau muss er aber manchmal noch arbeiten, auch wenn er so gut wie immer eine klare Strategie verfolgt, aber um gottes Willen, der Kerl ist ja auch erst 22, er hat also noch genügend Zeit. Vor allem der Fakt, dass er jetzt schon an der Größe eines KENTA kratzt, sagt doch einiges aus. Die volle 10 gebe ich ihm noch nicht, da noch etwas Luft nach oben ist, aber trotzdem ist er, vor allem im Hinblick auf sein Alter, sehr gut."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: RickRollwrote on 24.03.2010:[10.0] "Jop, ich muss auch sagen das Nakajima VIEL cooler ist als KENTA. Er hat alles was man als guter Wrestler braucht und er ist JUNG. Ich bin mir ziemlich sicher das er später mal irgendeine Liga mit anderen Stars tragen wird. Schon allein im Ring ist er goldwert. DIE Zukunft des Puroresu~"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Aquifelwrote on 11.02.2010:[10.0] "Ich mag diesen Stil einfach und Nakajima hat ihn drauf wie wenige andere. Bedenkt man, dass er erst 21 ist, ist es kaum zu glauben, dass er sich schon so weit oben bewegt. Wenn er noch beständig dazu lernt, dann wir er früher oder später einer derjenigen sein, die Misawas und Kobashis Erbe antreten, was Ausnahmewrestler aus Japan angeht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: T-Waynewrote on 11.01.2010:[9.0] "Der Kerl hat wirklich mit 15 Jahren angefangen zu wrestlen ? Ist heutzutage wahnsinnig gut und er ist ja erst 22. Nakajima wird auf jeden Fall noch richtig Karriere machen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: batze22wrote on 23.09.2009:[10.0] "Jung, Talentiert, Wird aufjeden fall einer der ganz großen in der Jr. Divison."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Top-Hardywrote on 14.04.2009:[9.0] "Wird aufjedenfall wenn nichts größeres schief geht ein ganz ganz große Star Seh ihn unglaublich gerne. Seine Matches gegen Kenta waren sehr sehr gut."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Tomkowrote on 23.11.2008:[9.0] "Für sein Alter ist er schon so weit, das die Zukunft eigentlich nur gut für ihn aussehen kann, solange er vom Verletzungspech verschont bleibt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Baszdmegwrote on 02.09.2008:[9.0] "9 Punkte sind sehr gut gemeint, aber momentan ist der Junge mein Lieblingswrestler von NOAH und das US-Debüt hört sich auf jeden Fall vielversprechend an."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Sabu316wrote on 13.07.2008:[9.0] "Ist im Ring deutlich weiter als es sein Alter vermuten lässt. Macht einfach Spaß ihn zu sehen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: STRIGGAwrote on 05.07.2008:[10.0] "Vor einigen Jahren hatte man ihm eine rosige Zukunft bescheinigt. Der Einfluss von Kensuke Sasaki sollte sein übriges tun, aber auch er selbst trägt vieles dazu bei, dass er in Japan dort steht, wo er steht. Er ist einfach unglaublich gut und hat mit 20 Jahren schon eine Erfahrung, von der andere nicht mal zu träumen wagen. Wahnsinnig guter Wrestler mit glaubhaften Strikes."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: AnFuwrote on 26.04.2008:[10.0] "Ein Riesentalent, der nächste große Japan-Star! Seine Kicks sind der Wahnsinn und mit Sasaki hat er natürlich auch den richtigen Förderer an seiner Seite."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Rob Van Duesenschrauberwrote on 17.04.2008:[9.0] "Für sein Alter ist er der absolute Hammer, in weniger Jahren gibt es dann auch die Höchsnote."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: LexLuger4everwrote on 13.04.2008:[10.0] "Unfassbar weit für sein Alter! Bleibt er von größeren Verletzungen verschont, ist er die Zukunft!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: D-Stylewrote on 17.01.2008:[10.0] "Die schönsten Kicks von AJPW. MEGATalent mit Push nach oben, wird ein ganz großer. Die 1 von mir"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Raywrote on 24.06.2007:[10.0] "Wenn der Kerl nicht in einigen Jahren da steht, wo heute Kobashi, Misawa und Konsorten stehen, dann lief irgendwas sehr falsch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1850&gimmick=Katsuhiko+Nakajima
Comment: Rancorwrote on 24.06.2007:[8.0] "Dem Jungen stehen absolut alle Türen offen. Er ist mit knapp 20 Jahren schon so verdammt gut, dass man sich kaum traut daran zu denken, welche Klasse er noch erreichen kann."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: BurningLariatwrote on 08.02.2025:"Genichiro Tenryu's career is one of the most impressive in Japanese wrestling, and his workrate has always been top-tier. Tenryu's style was always hard-hitting and intense from his early days in All Japan to his later runs in New Japan and the indies. What stood out about him was how he could work with anyone--whether it was juniors doing high-flying stuff or heavyweights throwing bombs. He didn't rely on flashy moves or big drama; he just brought intensity and authenticity that made every match feel real. Some of his best work came in matches against legends like Jumbo Tsuruta, Mitsuharu Misawa, and Keiji Mutoh, each one showing how adaptable and tough he was in the ring. Tenryu might not have been the flashiest or most over-the-top guy, but his focus, physicality, and no-nonsense approach to wrestling make him a true legend in the sport."
Rating: No rating found
Sentiment: 0.1731649831649832
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Jaedynr5wrote on 03.02.2025:[10.0] "easily one of, if not the best to ever do this, tenryu has been nearly everywhere in japan, has countless great matches over his 15 year career, he may have not been as flashy in the ring as some wrestlers of his time, namely the pillars and musketeers, but tenryu always found a way to not only stay relevant, but stay a star no matter how old he was"
Rating: 10.0
Sentiment: 0.2592592592592593
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: LIGERISMwrote on 01.12.2024:[10.0] "Every single Tenryu match goes the same way for. First 5-10 minutes, "man this is boring, " last half of the match, "this is the best match I have ever seen." Tenryu also has the best old man run in pro wrestling history. Ages like fine wine."
Rating: 10.0
Sentiment: 0.15285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: kaeleighwrote on 26.09.2024:[5.0] "Ich versuche es aber werde mit ihm nicht warm. Ich hab das Gefühl, dass jedes Tenryu Match das gleiche ist. Besonders nach seinem All Japan austritt in den 90er hatte Tenryu immer diese Aura des unantastbaren. In All Japan hatte er zumindest mit Jumbo einen Rivalen auf Augenhöhe und Matches die mehr wahren als Tenryu ist der Grumpy Veteran. Ich kann durchaus verstehen wie Leute diese Veteran Rolle feiern Ich fand sie aber immer lahm und uninteressant. WAR war allerdings absolut Klasse."
Rating: 5.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: jomshomwrote on 30.05.2024:[10.0] "The greatest wrestler ever. I have a few people who I might prefer just as favorites of mine, but if you're trying to break wrestling down into some sort of "objective" greatness scale, Tenryu would almost definitely be at the top. He's a complete monster of a worker, able to structure a match like no other. Everything he does comes off as powerful. At no point in his career is he bad or incapable of having amazing matches. He also ran WAR which is maybe the best promotion ever so he gets even more credit for that. Really just perfect, there's no need for anything beyond saying that."
Rating: 10.0
Sentiment: 0.2941840277777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: AndoCommandowrote on 28.05.2024:[10.0] "Tenryu had the fortune of realising how simple wrestling is. When all else fails, punch someone in the face, slap em loud across the chest, draw some blood from em. Anything with real good contact tends to work out alright. Worked all the big names in puro except for Maeda the coward. Quite possibly has the best body of work with enough footage to back up the claim. Not as reactive a wrestler as I'd like but deceptively more versatile that most would expect (the SWS/WAR work is vital in demonstrating this quality). Probably the greatest wrestler than I don't consider a favourite."
Rating: 10.0
Sentiment: 0.2846153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: RusherBryan29wrote on 10.02.2024:[10.0] "The king of japanese pro wrestling. One of my all time favorites, he can do any style in wrestling. Great longevity, still giving great matches in his 50s. The guy who has pinned Giant Baba and Inoki, that shows how great it is. Also one of the coolest wrestler ever with his appearence, entrance, and charisma."
Rating: 10.0
Sentiment: 0.4800000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Brutish Dandywrote on 25.09.2023:[10.0] "Having gone back and watched his career from AJPW through SWS, WAR, NJPW, then back again to AJPW and NOAH I was dumbfounded to discover there was hardly a solitary match this man had in Japan between the years of 1990 and 2005 that wasn't top notch. What an absolute king. Consistently amazing main event quality matches for fifteen straight years. Hell, even his tag matches were incredible. The man got classic bouts out of Nobutaku Araya and Isao Takagi, for the love of God. Age caught up with him eventually but his prime years were something special."
Rating: 10.0
Sentiment: 0.2749007936507936
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Conquistador37wrote on 29.06.2023:[10.0] "Forgive me, I'm not one who has seen *that much* Japanese wrestling. I've seen his Japanese work but it was mostly against American foes. This dude gelled well with everyone and was always able to adapt to anyone's style. Had to have been an excellent communicator as the matches tend to have ebbs and flows, gives and takes. Probably the best "previous century" Japanese wrestler who wasn't a trend setting trail blazer. Ultra rad chops and some of them sounded like ballistic tests. Solid and damn dependable. it's going to be a good match and you're going to be sucked in. 9.5"
Rating: 10.0
Sentiment: 0.3212121212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: KKeanelwrote on 07.04.2023:[10.0] "One of the most dedicated guy for this business. WAR founder, trainer, brilliant wrestler. Incredibly important person for whole puroresu history."
Rating: 10.0
Sentiment: 0.49999999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: TheOneAndOnlyCactuswrote on 30.03.2023:[10.0] "The Living Legend has done so much in his career. From being the top star of AJPW alongside Jumbo Tsuruta in the 80s, to the Ace of SWS, to founding WAR, he has produced magic wherever he went. Tenryu has the longevity, the adaptability, he was a great all-around talent in between the ropes and had the charisma to be the top star as this intimidating SOB. Hes not nicknamed Mr. Pro Wrestling in Japan for no reason."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Strong Zero Machinewrote on 18.02.2023:[10.0] "Genichiro Tenryu started as a rikishi (sumo wrestler) in 1964 reaching the makushi division and winning the Aki Basho at Tokyo (september 1970) before leaving sumo wrestling at the age of 26 in September 1976 and despite his career still showed promise. Shortly after Tenryu entered AJPW dojo under Baba instruction was sent to Texas to be trained by Dory Funk Jr. and Terry Funk. Back to AJPW Tenryu become the 2nd ace of the promotion just behind Tsuruta his tag team partner and biggest rival and also feud with the like of Choshu for the most part of the 80s. In the 90s Tenryu toured a lot for SWS, WWF (Royal Rumble 1993), NJPW and founded his own promotion WAR (Wrestling And Romance). In the early 2000s Tenryu was back in AJPW after the exodus of Misawa and co and he's the real ace of the promotion at this time despite the fact that he's 50+ years old. He's also a great trainer with his best 2 students Kawada and Ishii. Tenryu had decided to retire from professional wrestling on November 15 after a final match against Okada after 39 years inside the ring. He's a 10 with his grumpy face looking like a tilted father/great father who want to kick you cause you are a disrespectful son for real even young Tenruy looking older. He's a great techniker and also a powerful wrestler with a strong spirit, a great selling (like his student Kawada) one of my favourite powerbomb and lariat ever. He's my favourite grandpa."
Rating: 10.0
Sentiment: 0.29275362318840575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Luna100wrote on 18.11.2022:[10.0] "Such an amazing amount of charisma, he is such a killer, he is the saviour of All Japan in the 2000s."
Rating: 10.0
Sentiment: 0.20000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: GriffithWhitewrote on 15.10.2022:[10.0] "What people bill Minoru Suzuki as, is what Genichiro Tenryu is. His 80s & 90s work will have a special place in my heart because that was my introduction to Tenryu but the 2 decades after it are just as pivotal to his legacy. He's a guy who purely gets what pro wrestling needs to be & is able to do it perfectly, hence the nickname."
Rating: 10.0
Sentiment: 0.5142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: BadAssTranslateTradingwrote on 15.07.2022:[10.0] "one of the greatest wrestlers of not only his generation, but the one after it, too, the longevity and adaptability of Tenryu made him a timeless star in puroresu. while i am a big fan of his work during the 1980s and 1990s, it was his transformation during the latter half of the latter decade into an angry old man that cemented him as one of my all time favourites. always grumpy, always stiff, and always charismatic and entertaining. it says a lot about him that he arguably had the best run of his career as he was entering his early 50s after two decades of already being regarded as one of the elite talents in Japan. a beloved figure and undeniable legend, nobody is more deserving of the "Mr. Pro Wrestling" nickname."
Rating: 10.0
Sentiment: 0.25744047619047616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: GriffinXwrote on 06.02.2022:[10.0] "Throughout his career Tenryu defied the odds. He got a late start as a pro wrestler but still became a top guy in AJPW, the failure of SWS could have ended him instead he stated W.A.R and used his connection with New Japan to get back to major main events. It says a lot even the last match is career won a Match Of the Year award."
Rating: 10.0
Sentiment: 0.031107954545454546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: KonamiSuissewrote on 28.01.2022:[9.0] "Genichiro Tenryu is one of the biggest and most recognizable legends of puroresu history. A contemporary of all-time greats like Jumbo Tsuruta (who he has also feuded with), Tenryu came up in AJPW, and was one of the best in Japan during the 80s, with countless great and classic matches. Tenryu was also a proficient tag wrestler and helped train the likes of Toshiaki Kawada and Tomohiro Ishii, as well as creating his own promotion: WAR. I personally loved WAR, it was a very solid alternative to 90s NJPW and AJPW and helped enrich the Japanese indies, with high-caliber talent often performing on its shows. Tenryu would go on to become everyone's favorite grappler grandpa in the 2000s, when he continued to perform rather regularly despite his age. I recommend also watching his retirement match against Kazuchika Okada in 2015. Finally, he was nicknamed "Mr. Pro Wrestling", and for good reason; 9/10."
Rating: 9.0
Sentiment: 0.3588888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: benny5bellyswrote on 28.12.2021:[10.0] "I will always love grumpy old veteran beats up young up starts and that is how I was first introduced to Tenyru. He can be up and down dependent on motivation but when he is good he is outrageously good."
Rating: 10.0
Sentiment: 0.2743055555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Ma Stump Pullerwrote on 21.07.2021:[9.0] "It's difficult to grade a guy like Genichiro Tenryu: as much as a legend as he is, the actual quality of Mr. Puroresu is wildly varied, from the sluggish early years as a bland babyface in late-Baba era AJPW to his utterly amazing work in the 80's as a brutal main event act with attitude and utter stroicism in his bouts, to his flagging years in WAR and having dream matches in SWS, all the way to NOAH and NJPW stints as well as being a grumpy straight man in the HUSTLE, the list of runs goes on and on. If we are talking about longevity, Tenryu is probably one of the greatest of all time. He remained a relevant figure in wrestling for numerous decades while maintaining a good consistency of wrestling quality throughout. The issue is that Tenryu had a really bad case of phoning it in and making it really obvious when he wasn't bothered: much like a certain Randy Orton, his attitude means he can be great one night and be utterly meh the next. Don't get me wrong, when he's motivated, he's one of the best in the world, a fearless striker with some of the most horrific stiff strikes a person could ever imagine, but a lot of the time he wasn't, and it shows in his performances. The years he spent in WAR in his wrestling prime fighting guys who weren't particularly near his level drags him down a fair bit for myself. That being said: he's still undoubtfully a legend of wrestling and the wars he's had with virtually every major star in Puroresu are spectacular. The man could sell like a boss for anyone and legitimised many a wrestler with his ability to really take as brutal a shot as he dished out. Completely unselfish in the latter part of his career and was willing to lose to virtually anyone for good reason."
Rating: 9.0
Sentiment: 0.1076736111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Jetlagwrote on 28.08.2020:[10.0] "Ein Wrestling-Genie. Wo andere Wrestler verzweifelt nach innovativen Ideen und coolen Moves suchen, erzeugt Tenryu wahnsinnige Reaktionen, indem er seinem Gegner ins Gesicht tritt und ihm hasserfüllte Blicke zuwirft. Mr. Puroresu eben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: killowenskillwrote on 04.08.2020:[10.0] "I, to be honest, am surprised why Tenryu is not in the first place in the top of wrestlers on this site. Genichiro combined a man who gave wrestling a giant push and a frenzied popularity, and at the same time was a wonderful and completely diverse performer in all periods of his career. Mr. Pro-Wrestling was always interesting. In the 80's, he charmed with his fighting spirit, which led to the gradual creation of King's Road. Amazing matches, iconic confrontations, climbing to the top and finally forming the best wrestler on the planet. Disagreements with Shohei Baba may have robbed us of many "dream matches" against the Four Pillars of Heaven when Tenryu was in prime form, but it fully paid off with Genichiro's adventures in the 90s. A small run in the WWF, SWS, NJPW and of course the memorable WAR - he gave it his all in these places and gave puroresu the rebellious spirit that the industry so needed. AJPW at that time was a great promotion and I share the opinion of "the best time in the business", but Tenryu gave people an alternative that I personally prefer. Genichiro in the 00s... This is the divine Genichiro, this is the second coming, without any exaggeration. The body loses its shape, age makes itself felt, but Tenryu is not going to just give up and write himself off: he pays great attention to the development of his personality in ALL matches, and the audience is literally absorbed in the story of an evil uncle who turns his opponents into dust. Sometimes he could do it seriously, sometimes deliberately caricatured - any of these hypostases looked great and you believe in each one. The trip to HUSTLE... There are no words to describe it. When such business legends do not hesitate to adapt to the comedy entourage - it deserves respect. Watching the 57-year-old Tenryu was much more interesting than watching a lot of modern wrestlers, and this is not a reproach in their direction, just Genichiro loved his job to the last and was devoted to wrestling. I haven't reached the final stage yet, apart from some matches in the farewell tour and, of course, the match against Okada, but I am sure that this will not disappoint me. Tenryu is a legendary wrestler who combines all the necessary qualities and is able to adapt to modern realities, remaining true to himself. I think he is very undervalued outside of Japan, and I would like fans to be interested in this man and all the diversity of his career, not only in AJPW, but in other places, in each of which he has left his mark. Easily the top 5 of my all-time favorite wrestlers."
Rating: 10.0
Sentiment: 0.2994897959183673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: TOUGH AND HARDwrote on 23.12.2019:[7.0] "A mostly great worker (when motivated), a distinguished track record, and quite the draw in his time. Tenryu added some fun, grumpy flavor to a main event scene, but he was also a rather minimalistic and inconsistent worker who never quite had the charisma or passion that his more excellent contemporaries did (be it Tsuruta in his youth, Hashimoto in the 90s, or several in the 2000s). Even still, an important figure in wrestling history, one that his markedly superior pupil, Ishii, owes much to."
Rating: 7.0
Sentiment: 0.3677777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: arrancarwrote on 04.11.2019:[8.0] "If you want an older striker who is comparable to our modern-day legends like Shibata and Ishii then look no further than Tenryu. He was doing the 'grumpy old veteran who will beat the hell out of cheeky youngsters' schtick since at least the early 90s and it was always fantastic. He didn't hold back on his strikes like certain other 'famous' strikers *cough* Shinya Hashimoto *cough*; he just fully unloaded with as much power behind them as he could manage. Given that he apparently didn't have any real striking training prior to his wrestling career, and given his particular body proportions, he was never the type of guy to hit his strikes in an impressive technical manner. He was similar to Hashimoto in this regard, but what stopped this being a major issue was that he always had the strong impact in his strikes to ensure they were still great, and his general attitude always felt appropriately warrior-like to match, so I never struggled believing that he was really beating someone within an inch of their life with his massive chops and lariats. His power moves were also always very brutal, though his finishing powerbomb would occasionally look a bit too sloppy to come across as credible. I thought his selling was fantastic, since his stunned and near unconscious acting was very memorable and perfectly put over his opponents' attacks. My favourite part of Tenryu's career was seeing him when he was far past his prime, around 2000-2008 when he would have been 50+, since that was when he got to mix it up in the ring with the new generation of stars and prove he still had the intensity to keep up with them. His best matches were in NOAH and AJPW in this period as well, since I mostly found his earlier work in NJPW, SWS, and pre-2000s AJPW to be good but disappointing because he never really had an opponent who could actually match his level of talent. He's definitely a wrestling legend, though for me he still isn't one of the all-time top workers."
Rating: 8.0
Sentiment: 0.16641977813852815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: ElPolloLocowrote on 26.10.2019:[8.0] "He was great when on the offensive and amazing at facial expressions and story telling. However his selling was spotty (and mind he was otherwise an excellent seller) and he fought all his career with the tear and wear on his body resulting from his sumo days. Apparently quite a character in real life and he has long been surrounded by all sorts of wild rumors, from substance abuse to a close association with the mob. Needless to say an amazingly charismatic worker."
Rating: 8.0
Sentiment: 0.2700000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: JEK 1991wrote on 31.12.2018:[10.0] "Talented man! Very exciting to watch. He one of mine Japanese favorites along with Antonio Inoki. He only wrestled in North America like less than 10 times. He was memorable in WWE for Wrestlemania 8, Royal Rumble 1993 and 1994. Wrestled for nearly 40 years."
Rating: 10.0
Sentiment: 0.24261904761904765
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: RatingsMachinewrote on 01.11.2018:[9.0] "In his day, Genichiro Tenryu was by far the best at being the grumpy old veteran. It's a shame that he didn't stay with All Japan, because Tenryu as the established star fending off the likes of Misawa and Kobashi would have made for great matches."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Makai Clubwrote on 29.07.2018:[10.0] "As odd as this may sound, Genichiro Tenryu may be the most unappreciated wrestler ever. Yes, everyone who knows of him always praises him as one of the best ever. But when it comes down to it, he almost never gets plaudits and is often forgotten in favour for other wrestlers. Tenryu consistently used his in-ring smarts to stay on the top of his game, no matter if it was 80's All Japan, New Japan, NOAH, even WWE for a few brief appearances. He always made an impact in someway and never gets praised for it, it seems. IMO, Tenryu is an all time great. Ability to work with anyone he faced and got something good out of the match. His selling. His strikes. His uncanny ability to be stoic but at the same time, highly charismatic in his facial features and his body language. His match resume speaks for itself. Hashimoto, Takada, Jumbo, Hansen, Mutoh, Kojima, Shibata. No matter who with, Tenryu was the man. Then, now, always."
Rating: 10.0
Sentiment: 0.21994949494949498
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Headlockwrote on 15.02.2018:[2.0] "Ich kenne ihn nur durch seine escapaden in Dragon Gate und HUSTLE und ich fande ihn Schrecklich! Er war faul und weigerte sich vernünftig mit zu wrestlen, in HUSTLE empfand ich das nicht schlimm, weil HUSTLE 100% Comedy ist aber in einer Liga wie Dragon Gate, wo kooperation wahrscheinlich das wichtigste Schlüssel element ist, geht sowas einfach nicht! Sicher der Grumpy Veteran ist sein Character aber das enschuldigt noch längst keine unprofessionellalität."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: MitsuharuMisawawrote on 06.12.2017:"He used to be stiff and I like it. He always seemed to look down on his opponents, which i like too. I also like his face and his haircut."
Rating: No rating found
Sentiment: -0.18492063492063493
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Blood Pumpwrote on 07.04.2017:[8.0] "Stayed in the game for too long, which kind of tarnished his legacy a bit but he did at the very least had a serviceable retirement match and put over the right guy in his final outing. Deserved props for revolutionizing how one could work in the ring alongside Tsuruta."
Rating: 8.0
Sentiment: 0.007619047619047609
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Claudio Herowrote on 23.03.2017:[10.0] "Mr Pro Wrestling Genichiro Tenryu ist für mich einer der 20 besten Wrestler aller Zeiten und in den Top 10 Japans Ever ! Habe sehr viele seiner Matches gesehen und er hat mich immer überzeugt ! Sowohl als Bad Ass (z. B. als in Kobashi die Brust blutig choppte .. ) oder auch In-Ring Technisch mit seiner Fähigkeiten immer vorne mit dabei ... Hat auch über Jahrzente gewrestlet meist auf sehr hohem bis überragenden Niveau ! Seine vier 5 Sterne Matches sagen ja schon alles ! Hier kann man nur den Hut ziehen ! Tenryu volle 10 Punkte !"
Rating: 10.0
Sentiment: -0.109375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Bpt Screwjobwrote on 10.11.2016:[10.0] "Maybe not the most spectacular wrestler, but hell he knew how to give a great stiff match! Even his 80's fights stood the test of time and are still very enjoyable to watch. Any tag or single fight with another big name in it is worth watching when Tenryu is involved. He won everything and is the only Japanese wrestler to defeat both Inoki and Baba by pinfall. He was still wrestling 4 stars + matches at an age where many men let alone wrestlers are already in retirement. He and Tsuruta created the blue print for all those crazy AJPW heavyweight Fights in the 90s . A Legend among Legends of pro-wrestling"
Rating: 10.0
Sentiment: 0.18543956043956042
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: GAMSwrote on 01.03.2016:[10.0] "His ability to put on consistently good, hard hitting, matches - even late into life, is impressive.  Additionally, demonstrated ability to carry promotions, including his own - which provided a scene on the indy's for younger talent to get experience, etc..."
Rating: 10.0
Sentiment: 0.28472222222222227
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: yanuswrote on 26.04.2015:[10.0] "Brilliant wrestler, with all-time great facial expressions and charisma. Maintained a incredible high level for a very long time."
Rating: 10.0
Sentiment: 0.4491666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: eldenaaaaawrote on 08.03.2015:[10.0] "A legend before 2000, Tenryu continued his work in New Japan and All Japan capturing several championships and accolades along the way."
Rating: 10.0
Sentiment: 0.06818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Fountain of Misinformationwrote on 10.10.2013:[9.0] "Eine wahre Legende und einer der Größten seines Landes überhaupt. In seinen starken Jahren, und das war eine verdammt lange Zeit, ein spitzenmäßiger Wrestler, der zudem immer super sympathisch rüberkam. Einen wütenden Genichiro Tenryu, der seine Gegner auseinanderkloppt, kann man durch nichts in der Wrestling-Welt ersetzen. Tenryu gegen Tsuruta, die beiden im Team zusammen, Tenryu und Ashura Hara, Tenryu gegen Choshu, viel besser kann Wrestling nicht sein und werden. Und noch etwas zu den letzten Jahren seiner Karriere: Der Mann muss nicht mehr im Ring stehen, weder aus Ego-Gründen noch weil es finanziell notwendig ist. Aber er tut es, weil er nachwievor sichtbar viel Spaß am Wrestling hat. Wenn jemand mit über 60 Jahren und nach über 3. 000 Kämpfen noch vor ca. hundertfünfzig Nasen in den Ring steigt und den Nachwuchs fördert, kann ich einfach nur den Hut ziehen, aber ganz tief und mit Verneigung. Ric Flair hat die Herrenbrust als Wrestler in den USA salonfähig gemacht, Tenryu hat dies mit dem gleichen Stolz und der gleichen Unbeküm­mert­heit in Japan getan. Und beide haben dies bereits getan, lange bevor beide wie Mürbeteig auseinander gefallen sind, ich rede hier von Männern um die 40 Lebensjahre. Dieser Mann ist der Grund warum ich immer einen Chop machen will, wenn ich einen Faustschlag antäusche. Einen Chop einem Faustschlag folgen lassen, was für eine simple aber geniale Idee!"
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Kenshin Uesugiwrote on 27.08.2013:[9.0] "Mittlerweile hat ihm sein Alter doch eingeholt, liegt wohl auch daran das er in letzter Zeit sich öfter verletzt hat. Jetzt er bewegt sich schon langsam und viel kommt auch nicht mehr von ihm in einem Match, spielt immer mehr nur den alten grummligen Ringopa. Das ist lustig bis er dann doch ab und zu umschaltet, für seine patentierten Punches, Chops oder Lariats reicht es noch und das mit voller Wucht. Aber die vielen Jahrzehnte wiegen doch eben schwer, macht aber nichts er ist eben ein der größten Legenden. Und deswegen muss man trotz schwachem Körperbau(trägt ja mittlerweile lange Hose und ein Shirt) und Leistung in der heutigen Zeit, das Lebenswerk jetzt schon hoch honorieren, für die einmalige Karriere! Aber das er nun kurze Haare hat und das nach all den Jahren mit diesen wunderbaren Naturlocken das ist … eigentlich unverzeihbar."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Mudamwrote on 25.08.2013:[10.0] "Tenryu great wrestler during his prime, best grumpy man out there the true thunder ryu."
Rating: 10.0
Sentiment: 0.7166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: MaKnowrote on 21.08.2010:[10.0] "Tenryu ist auch mit 60 Jahren auf dem Buckel in Japan noch eine außergewöhnliche Attraktion. Für die ganz großen Kämpfe ist er heutzutage sicherlich der falsche Mann, aber zumindest vereinzelt ist er noch zu tollen Leistungen imstande."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Eddiewrote on 26.10.2009:[9.0] "Das was ich von ihm gesehen habe ist schon wirklich nicht von schlechten Eltern. Allein sein Klassiker gegen Tsuruta wird ihn so gut wie unsterblich machen. Aber auch der Rest ist gut bis sehr gut, 9 Punkte. Für die 10 muss ich noch ein klein wenig mehr von ihm gesehen haben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: AxXxelwrote on 23.08.2009:[10.0] "Über Tenryu kann ich lediglich meine Begeisterung aussprechen, er wird definitiv als eine der größten japanischen Legenden in die Geschichte eingehen. Der Mann hat eine unglaubliche Ausstrahlung und wusste - gut dosiert - insbesondere in Teamkämpfen auch in den letzten Jahren noch zu überzeugen. Bestnote."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Rob Van Duesenschrauberwrote on 17.04.2008:[10.0] "Höchstwertung für die Karriere. Der Vergleich mit Ric Flair ist gar nicht mal so falsch. Hat in Japan eigentlich alles erreicht, was man erreichen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Pulpulwrote on 31.03.2008:[10.0] "Egal ob Heute oder vor 20 Jahren: Tenryu hat immer noch eine unglaubliche Ausstrahlung. Er macht zwar heute nicht mehr viel, aber das was er früher gezeigt hat, hebt ihn in den höchsten Kreis der japanischen Legenden. Schade das er den "falschen" Weg gewählt hat und All Japan verlassen hat, damit hat er uns sicher um den ein oder anderen Klassiker gebracht. Außerdem Frisurentechnisch schon immer ganz Vorne dabei."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: LexLuger4everwrote on 24.02.2008:[8.0] "Genichiro Tenryu ist ein Guter! Legt auch einen sehr stiffen Stil an den Tag, ist aber auch in der Lage, aus fast jedem ein ansehnliches Match herauszuholen!"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: Rancorwrote on 04.12.2007:[8.0] "Tenryu ist so etwas wie der Ric Flair Japans. Mancher steht ja auf diese Vergleiche. In den letzten Jahren hat man ihm das Alter aber doch angemerkt. Würde ihn dennoch gerne wieder bei NJPW oder AJPW sehen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=748&gimmick=Genichiro+Tenryu
Comment: xspikexwrote on 31.10.2007:[8.0] "Länger im Ring als andere auf der Welt und bringt immer noch gute Leistungen. Wie Oskar mit derr Trommel scheint er bei 52 Jahren einfach stehen geblieben zu sein. Gehört sicherlich zu den Top 5 des Puroresu. Ich verneige mich vor ihm."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Chefiwrote on 18.12.2024:[10.0] "Hiromu might be one of the very best wrestlers New Japan has to offer. His charisma is like no other and he always knows how to have a good match and is overall an amazing talent."
Rating: 10.0
Sentiment: 0.41647727272727275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Trombek Kushinikawrote on 24.10.2024:[8.0] "Hiromu seems to have been stuck in the Junior Division for what feels like Ions. This is despite showing the ability to wrestle a more heavyweight style, slow down his offence and concentrate on dramatic matches. The guys has a great charisma and is so over in Japan. I get the feeling he would actually translate pretty well into the US scene if he ever fancied it."
Rating: 8.0
Sentiment: 0.09444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: jsbortswrote on 09.09.2024:[9.0] "One of the best Juniors of all time, an absolute dynamo in the ring, oozes charisma in a really fun and different way and always feels innovative."
Rating: 9.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Willie 19200wrote on 04.06.2024:[9.0] "Epic wrestler and the goofiest, wackiest character in NJPW right now. This guy easily has some of the most charisma and character in New Japan right now. I loved his match he recently had with Mustafa Ali, and really enjoyed his matches with Ospreay and Desperado. Overall great wrestler and entertainer and excited to see what they'll do with him."
Rating: 9.0
Sentiment: 0.34301046176046174
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: ultravioletshiroiwrote on 25.05.2024:[9.0] "Charisma would be off the charts if he wasn't so goofy Very good well rounded wrestler too with a good arsenal of moves and a devastating finisher. If he could speak better English he could have probably had a better run in ROH and won more matches. It's a shame it's so difficult to find many of his matches online, and I've seen him lose in the vast majority of matches I've watched of his."
Rating: 9.0
Sentiment: 0.23727272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: DexterXSRwrote on 17.02.2024:[10.0] "Hiromu may be the goofiest of goobers to have ever stepped into a ring, he also just happens to be one of the best Juniors in the world right now. But like c'mon, he's one Goofy Goober."
Rating: 10.0
Sentiment: 0.5952380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: GreatAetherBosswrote on 11.01.2024:[10.0] "I mean, c'mon...Hiromu is arguably the coolest goofball to ever step in a wrestling ring and run circles around his opponents every time. Dude is up there amongst my Mount Rushmore of my favorite wrestlers that also happen to be absolutely world class in the ring, and although he's changed his style a bit since the neck injury, and understandably so, he still is just a ball of energy ready to explode at a moment's notice."
Rating: 10.0
Sentiment: 0.146875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: SoaKaswrote on 18.11.2023:[9.0] "Awesome Junior. Athletic, tells a great match story, intense, charismatic, innovative. What do you want more from a great wrestler? EDIT: He desperately needs some sort of change as he's sadly been stale for a pretty long time now :/"
Rating: 9.0
Sentiment: 0.20384615384615384
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: skillgullwrote on 17.11.2023:[8.0] "Hiromu Takahashi is great, however this year he hasn't been as good as he normally is. In ring he's great, it's just he hasn't been as good as he normally is. Overall fun to watch and very enjoyable even if he isn't always my favourite Jr Heavyweight."
Rating: 8.0
Sentiment: 0.5125000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: lilrorowrote on 06.05.2023:[10.0] "he is a magnifisent great wrestler He receives many techniques, shines his opponents and shines himself He is very personable and always cares about others His pro wrestling always has some stories and move the audience."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Tyler72wrote on 12.04.2023:[7.0] "Hiromu is a crazy talented wrestler. Very new to him, but there was so many awesome close calls, and was just an all-around great time watching his match with Taiji Ishimori in the New Japan Road series."
Rating: 7.0
Sentiment: 0.36420454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: IronStarwrote on 25.02.2023:[10.0] "Hiromu Takahashi is one of the best Jr. Heavyweight wrestlers in the history. Hiromu has unique charisma which makes him special for me. He is just amazing in the ring. Hiromu Takahashi is one of a kind wrestler for me. I hope he will make his dream true in the future."
Rating: 10.0
Sentiment: 0.46887755102040823
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Robert Taylorwrote on 24.02.2023:[10.0] "DAS Aushängeschild der Jr. Heavyweight Divison bei New Japan. Zugegebenermaßen einer wenig wertgeschätzten Division seitens New Japan. Hiromu Takahashi ist einer der charismatischsten Wrestler in Japan und auch im Ring richtig stark, was er schon mehrfach unter Beweis gestellt hat. Er leidet ein wenig darunter, dass seine Division meist keine große Rolle spielt, das Spotlight daher begrenzt ist und er als Junior mehr oder weniger alles durch hat. Ihm fehlen auch die frischen Gegner. Ein Ausflug zu den Heavyweight wäre da schon mal sehr interessant aber das wird wohl leider nicht mehr kommen."
Rating: 10.0
Sentiment: 0.024242424242424232
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: benh2wrote on 20.01.2023:[8.0] "Capable of some great matches. Incredibly daring (maybe too much so) but has a lovely style for a junior, especially these days in the world of mindless flips. Has a great impact offence and very smooth in the ring. Maybe needs to master psychology a bit more in order to really perfect the long epics that are sometimes required of him. A very strange unique charisma that gets him over well."
Rating: 8.0
Sentiment: 0.39142857142857146
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: MainEventMasterwrote on 28.11.2022:[10.0] "One of the best junior heavyweights of all time, crazy explosive, exciting, and a fun personality, he is perfect for LIJ."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Wrestling Foreverwrote on 08.09.2022:[9.0] "Mit seinen neuen Aussehen, den gefärbten roten Haaren und dieser Bad Ass Einstellung noch besser als zu seiner Face Zeit. Einfach ein klasse Mann der wie Tetsuya gegen alles rebelliert. Im Ring sehr, sehr stark und Charisma hat die tickende Zeitbombe auch unfassbar viel. Auch noch jung da kommt noch viel von ihm. Edit 08.09.2022 bleibe bei 9 Punkte. Er hat einige schweren Verletzungen überstanden wo man auch dachte das ist sein Karriere-Ende. Ist übrigens Rekordhalter beim Gewinn des NJPW Best of the Super Juniors Tournament das gewann er viermal und er ist der erste Wrestler der es schaffte das Turnier dreimal hintereinander zu gewinnen von 2020-2022."
Rating: 9.0
Sentiment: 0.10833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Prince DY8wrote on 02.08.2022:[10.0] "Hiromu Takashi is crazy talented wrestler. He can do whatever he wants in the ring. He is absolutely great talent. I think he can wrestle in heavyweight division."
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: tsdenizenwrote on 31.05.2022:[10.0] "Maybe my favorite wrestler of all-time, Hiromu Takahashi is liable to be responsible for a whole new generation of high flying wrestler who cares less about getting a perfect 10 in a gymnastics competition and more about showing that he has absolutely no regard for his or his opponent's safety (while still being pretty damn safe). Takahashi's whole thing is "controlled chaos", a bizarre Yakuza-like figure (it would not surprise me if he drew inspiration from Kakihara in Ichi the Killer) who comes out with stuffed animals he's named. He's cool, dangerous, insane, and also kinda adorable and baby, flailing his body about like a windsock in such a manner that makes it feel like not only he'll break down, but reality itself might too. If you're an AEW fan, Takahashi is closest to Darby Allin, but weirder, crazier, hard-hitting and with more physical charisma and a better look. If he were larger, he might be the biggest star in NJPW, but even at his size, he's still compelling in a way no one else is."
Rating: 10.0
Sentiment: 0.15669774669774666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: GriffinXwrote on 25.01.2022:[9.0] "A creative junior who is willing to do crazy thing. A man who had naturally bonded with the fans. You do worry if his body will hold up given how often he's had to take time off"
Rating: 9.0
Sentiment: 0.0625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Wright15wrote on 09.01.2022:[10.0] "Only Jushin Liger and Tiger Mask rank above Hiromu Takahashi in the history of New Japan's junior heavyweight division. He is insanely charismatic, a master at selling, and a brilliantly fast-paced, high-impact worker. Only his neck and shoulder injuries have held his career back, but he has come back from both a better worker than before."
Rating: 10.0
Sentiment: 0.12363636363636363
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: NikoKillbainwrote on 01.01.2022:[8.0] "Remains the undisputed star of New Japan's Junior Division. His 2021 was difficult though, as the division struggled to consistently garner interest. Even though he was out for a chunk of the year, he feels overexposed, winning his third BOSJs in four years. Fortunately his injuries haven't affected his in-ring ability, and he produced two of my fvourite matches of the year - vs Robbie Eagles at Wrestle Grand Slam, and the BOSJ final vs YOH. Still, he's reliant on his spot in New Japan, and when the company struggles to build the Jr Division, it ends up looking like a one-man division."
Rating: 8.0
Sentiment: 0.1580808080808081
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Ameridragonwrote on 16.12.2021:[10.0] "Hiromu is one of the most entertaining and interesting wrestlers I've ever seen. Sometimes he can be off his game and some sequences won't work very well, but every time he is in a huge match he delivers. He also oozes charisma in a way I've only seen from wrestlers like Randy Savage or Atsushi Onita, where as soon as he steps out from the curtains the crowd is in the palm of his hand. He has amazing stamina, going for a half-hour or more in multiple big matches without blowing up. Just fantastic, and I hope New Japan doesn't keep him in the Junior division, he is already a huge star, but he could be their next Ace if they pushed him in the Heavyweight division."
Rating: 10.0
Sentiment: 0.22102272727272726
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: GoldLigerwrote on 05.09.2021:[10.0] "Hiromu absolutely gets it, but he's also out of his mind in the best way. I recall seeing him back when he was Kamaitachi on his excursion to the west; his matches in CMLL & ROH showed a lot of potential (I even had the pleasure of seeing him wrestle live in 2016, albeit in a comedy mixed tag at a Northeast Wrestling show), but the Dragon Lee series really shined as it had this really interesting story about these two young guys early into their career coming into their own against each other... by trying to fucking kill each other. Hiromu developed this sadomasochist character out of his matches with Lee and ran with it into becoming one of the most interesting character workers in Japan while also the best in-ring Jr. Heavyweight in the business. I love seeing Hiromu tell his stories and work his magic; he has promos and segments that blow your mind as much as his highspots if you pay attention. Dude got stuffed animals over and believably got across PTSD when confronted by fucking Taichi in a promo once. I hope his style doesn't end his career early, since he has the potential to be an all-time great; he's already probably the best Jr. Heavyweight since the GOAT Jushin Liger."
Rating: 10.0
Sentiment: 0.2691558441558442
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Hillwrote on 07.08.2021:[10.0] "In all my years of watch wrestling I have never seen anyone like Hiromu Takahashi. His flamboyant wardrobe, unorthodox in ring style, and balls to the walls insane personality, he is one of a kind and the ace of the junior heavyweight division. I cannot stress enough how great his series of matches were against Taiji Ishimori, Will Ospreay, and eternal rival El Desperado. Seriously go watch any of those bouts for some death defying wrestling."
Rating: 10.0
Sentiment: 0.013333333333333341
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: BlakeFR37wrote on 02.06.2021:[10.0] "The G. O. A. T of the Juniors. The Man, The Myth, The Legend. The leader of the Junior Division which means MONEY and ENTERTAINMENT."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Kungwrote on 13.04.2021:[9.0] "Hiromu Takahashi is probably my favorite junior heavyweight/cruiserweight on the planet right now. The dude has a great gimmick, his wrestling ability is first-rate, and he's one of the premier talents at New Japan. Nothing else to say, the dude's just great at what he does."
Rating: 9.0
Sentiment: 0.5044155844155844
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Ma Stump Pullerwrote on 21.03.2021:[9.0] "Hiromu just screams superstar. Crazy amounts of charisma and a killer gimmick that quickly got him over as NJPW's top junior heavyweight. Despite being in his early 30's he's built a great career of matches throughout the years and doesn't seem to have many actual bad matches or even average bouts, always getting more out of his opponent, always dragging them to the next level. His style is very high impact and a solid crowd pleaser, seemingly pulling out anything at any time with a combination of crazy bumps but a strong offence when he's the one throwing hands. I do fear that, with his neck and pec injuries that he might need to slow things down lest he go for a early retirement, simply because his style is not generous on the body. Regardless, he's one of NJPW's biggest stars of the new gen of talent, and I could see him going even higher if he can learn to pace himself in the ring."
Rating: 9.0
Sentiment: 0.06454641654641655
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: michmoose21wrote on 09.02.2021:[10.0] "The top junior in the whole world. He oozes charisma and is so good in ring. He is absolutely insane and will take any bump, even after he broke his neck."
Rating: 10.0
Sentiment: 0.039999999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: medousewrote on 11.12.2020:[9.0] "The Ticking Timebomb nickname could not be more corrent when we talk about this guy. The absolute crazy madman when it comes both to his looks and personality. The stunts he does are always giving me goosebumps. I remember the first time I saw him. It was in ROH. He was doing some singles match and suddenly his rival went outside the ring. Hiromu climbed top turnbuckle, jumped as high as possible and landed a Senton on that poor dude. Jeez... What a daredevil! I love his style and I love his work. I love this crazy psycho!"
Rating: 9.0
Sentiment: 0.08999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: djv2448wrote on 06.12.2020:[10.0] "In my opinion. Hiromu Takahashi is the most charismatic wrestler in the world today. and he compliments that with an explosive, high impact style that belies his 5'7 frame. without a doubt one of New Japans big rising stars prior to his neck injury, Hiromu came back seemingly more over than he was when he left, and in ring. he never missed a step. While not the most technically gifted wrestler in the world. his raw charisma, and unique skillset off set any potential flaws in his game, regardless of whether one speaks japanese or not, Hiromu can draw you in and make you invested in all he does. Despite his lack of size he has come off as a believable threat in his excursions to the heavyweight divisions, and with the right build I think he could become a future heavyweight champion. The only real concern is that his style, which has remained unchanged despite a broken neck, may lead to a shorter prime, and a shorter career than we all may hope. Despite that, it's amazing that this is the same wrestler who was a floundering young lion not too long ago... Now Hiromu is the Ace of the Junior Heavyweight division, and thats a title that will remain his until he wants to give it up."
Rating: 10.0
Sentiment: 0.1472706922706923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Scott Kobayashiwrote on 16.07.2020:[10.0] "Hiromu is my favorite current active wrestler in the world. Along with Daniel Bryan, he may be the best no fans wrestler. Something about his matches are great, even without fans. He has BAGS of charisma, is really stinking over, and can wrestle for days. While I do not think he will ever not be a junior heavyweight, he will be heavyweight champion one day. He will challenge and win as a junior. If his career goes as expected, and with no major injuries he may go down as the greatest junior ever. Liger has huge shoes to fill, but if anyone can it is Hiromu. 10."
Rating: 10.0
Sentiment: 0.35665509259259265
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: lmll1972wrote on 14.07.2020:[10.0] "Absolutely incredible. He is loaded with charisma and even after his broken neck is still going out there and having absolutely brutal matches. Hiromu is still young and it looks like New Japan is positioning him as one of there top wrestlers and they are right to. Not only is he the guy to step in and take Jushin Thunder Ligers spot as top Junior, I think he'll also be IWGP World Heavyweight Champ one day."
Rating: 10.0
Sentiment: 0.12745310245310243
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: ApexOfEvolutionwrote on 24.06.2020:[9.0] "Ein fantastischer Wrestler mit spannenden Move-Set. Dazu ist er unglaublich charismatisch und zeigt tolle schauspielerische Leistungen, wenn er aufgrund seiner Mimik eine komplette Storyline wiedergibt, auch wenn er dabei leider einen gewissen Hang zum Overselling hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: VillainClubwrote on 12.05.2020:[10.0] "Fantatischer Wrestler und zurecht das ACE der Junior Division von New Japan. Auf ihn Wartet noch großes solang er sich nicht verletzt. Hoffen wir das beste."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: BDDwrote on 08.04.2020:[10.0] "Hiromu is an incredible wrestler, he is very good in the ring, very charismatic, and his promos are very good, and he has an incredible ability to connect with fans, he is one of my favorite Juniors today, and he has just 30 years old, and has everything to become one of the greatest Juniors of all time."
Rating: 10.0
Sentiment: 0.73375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: zephyrwrote on 04.01.2020:[10.0] "His promos, in-ring style, and look all suit his character perfectly and are nothing short of flawless. Having already shown himself to be one of the best junior heavyweights of all time, his injury and heroic unlikely return to the ring will be the last two ingredients needed that will cement him as a legendary all time great in 10-20 years time. Welcome back, Hiromu."
Rating: 10.0
Sentiment: 0.5272727272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: ElPolloLocowrote on 20.09.2019:[7.0] "Huge charisma, good but sometimes weird moveset and an amazing ability to connect with fans. However his utter fearlessness and tendency to sell like a rag doll thrown around cost him very dearly. One of a kind, I hope he will be back in acceptable shape and not as a broken reminder of the price of pro-wrestling like Tomoaki Honma is."
Rating: 7.0
Sentiment: 0.17777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "A super charismatic wrestler with great athletic abilities and a special connection with the crowd. I love his brutal moveset, his submission game is a little underrated. He can play different roles but he is obviously at his best when he is the underdog babyface. Still very young and still so much potential. Hope he comes back soon."
Rating: 9.0
Sentiment: 0.15414115646258503
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: PuroresuLoverwrote on 24.05.2019:[10.0] "The greatest Junior Heavyweight in the world right now! Hiromu Takahashi has it all to be the best: The charisma, the look, the mic-skill, the in-ring skill, he's excellent at telling a story in the ring and has a psychology and selling that no other Junior has it."
Rating: 10.0
Sentiment: 0.6839285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Garrettwrote on 07.05.2019:[9.0] "Mr. Personality. Hiromu is a pretty strange dude, but he transforms his weirdness into charisma to which the likes I've never seen. His matches with Dragon Lee, Will Ospreay, The 4 way at WK12, and Taiji Ishimori are some of the best I have ever seen. Also he deserves my 9 rating for introducing us to Mr. Trophy, Mr. Belt, Daryl, and Daryl Jr, but back to his wrestling, Takahashi is one of a kind and will accomplish a lot as he continues his career. Hopefully he can become NEVER Openweight Champion so he can have classics with some of the Heavyweights. Could you imagine a match against Ishii, Suzuki, or maybe even Naito?"
Rating: 9.0
Sentiment: 0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: 20SaiDa19wrote on 18.03.2019:[10.0] "Hiromu, to me, is the complete package. He has a captivating character & look and other than Tetsuya Naito, may be the most charismatic active wrestler today. He is also an incredible in-ring talent, although his in-ring style may change after the injury he suffered last year."
Rating: 10.0
Sentiment: 0.28020833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: RatingsMachinewrote on 15.10.2018:[9.0] "Hiromu Takahashi is a fantastic wrestler who worked incredibly hard, but he took risks that he didn't need to. When Takahashi comes back, presuming he does come back, hopefully the near-miss will make him realize that he doesn't need to do some of the wilder spots in his arsenal. The incredible matches Takahashi were in would still be incredible without them."
Rating: 9.0
Sentiment: 0.31805555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: taabr2wrote on 14.09.2018:[9.0] "Incredibly charismatic and an absolute beast in the ring, Takahashi is one of the best junior in the world right now, For some reason I can't go the 10/10 just yet but if he continues on this path and continues to add classic matches to his resume then I could go higher."
Rating: 9.0
Sentiment: 0.40039682539682536
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: swansea630wrote on 04.06.2018:[10.0] "Probably the best junior/cruiserweight talent out there today, putting on absurdly fun and fast paced matches every night that he performs. Not only is he a great in ring talent, his wild antics in promos, in interviews, and at ringside make them a joy to watch. One of the most well rounded performers around today and a future megastar imo."
Rating: 10.0
Sentiment: 0.41111111111111115
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: InactiveGuruwrote on 01.06.2018:[9.0] "He has come such a long way from when I first saw him compete in Mexico. His feud in Mexico against Dragon Lee is what first brought him to my attention. Just like EVIL joining LIJ is doing him a world of good and I am so happy to see him on the main roster of New Japan having good matches. Just waiting for a Junior Heavyweight title reign now."
Rating: 9.0
Sentiment: 0.19530303030303028
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: aydings05wrote on 06.05.2018:[10.0] "Fande ihn ja damals als Kamaitachi schon ziemlich stark hat sich dann aber noch sehr gut weiter entwickelt und kehrte dann Als Hiromu Takahashi zurück und tratt dann den Los Ingobernables de Japon bei wo er sehr gut reinpasst . Im Ring einfach Weltklasse , hat viel Charisma und sein Gimmick gefällt mir ebenfalls sehr gut . Vor allem seine Matches gegen Dragon Lee mit dem er eine großartige Rivalität hat/hatte und mit Kushida muss man unbedingt gesehen haben . Er sollte meiner Meinung nach eigentlich das "Ace" der Jr. Heavyweight Division sein . 10/10 !"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Cleanerwrote on 07.01.2018:[10.0] "Der Junior mit einem grandios übertriebenem Gimmick, bei dem der inflationär verwendete Ausdruck der "Charismabombe" wortwörtlich hundertprozentig zutrifft. Dazu gesellen sich wirklich hochkarätige Ringqualitäten, die sehr weit über reines Spotwrestling hinausgehen - und seine Spots sind atemberaubend. Ohne Takahashi würde weder LIJ, noch die Junior Division so fruchten. Ein weltklasse Mann, wäre er ein zwei Köpfe größer eine sichere Karte für den Main Event, so "nur" mit Kushida der Beste seiner Gewichtsklasse."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Dragon Fighterwrote on 21.11.2017:[9.0] "A fresh face of the jr division. Have insanity, intensity, great presence and charisma. He will be a key member of the jr division along with ospreay and kushida. 2017 is his breakthrough year. Put on so many great matches with kushida, lee, ricochet, ospreay, liger, scurll, lethal, etc. Also has a good tag run with bushi as well. A very bright future for him."
Rating: 9.0
Sentiment: 0.5012500000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: LosIngobernablesdeUKwrote on 08.08.2017:[10.0] "Hiromu is perhaps , or is, the best Jr. in the world right now. The guy is absolutely outstanding & is the definition of a superstar. He's definitely in NJPW's top 10 wrestlers right now. The guy is arguably a contender for "Wrestler of the year. " Some say even above or behind Okada. I really hope he gets Belto-San back very soon & gets yet another dominant reign just like his previous one."
Rating: 10.0
Sentiment: 0.20039682539682543
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: sarahflannwrote on 28.07.2017:[10.0] "The most captivating character in New Japan with the explosive move set to match. Everyone should go out of their way to watch him in action."
Rating: 10.0
Sentiment: 0.3090909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: TheAlmightywrote on 18.06.2017:[10.0] "Takahaaaashi Hirooomuuu oder auch Ticking Time Bomb und zsm mit Naito wohl die coolste Sau der Wrestling Branche! Er komplettiert mit eben genannten und Ibushi meine persönliche Top 3. Der Mann mit der geilsten Jacke und dem geilsten Mantel der Welt ist ein absoluter Weltklasse Wrestler, der während seines Titel Reigns mehrere Weltklasse Matches abgeliefert hat, denen er immer seinen persönlichen Stempel verpasste. Takahashi strotzt nur so vor Charisma und erinnert mich durch Bewegung und Mimik immer mehr an Nakamura! Er schafft es seine riskanten Top Moves mit Story zu paaren, was "nur" guten Juniors abgeht. Takahashi ist im Komplettpaket zsm. mit seinem Rivalen KUSHIDA der beste Junior der Welt!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Headlockwrote on 01.06.2017:[10.0] "Ob als Kamaitachi oder TICKING! TIME! BOMB! Takahashi ist zusammen mit Eita, Yamamura, Takeshita und El Lindaman und ner ganze menge anderen Rookies Vorreiter einer neuen und afregenen Genaration von Jr. Wrestlern, Look stimmt, In-Ring stimmt, Charisma stimmt, Absoltes Total Package"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: TooSweetPhilwrote on 21.05.2017:[10.0] "In meinen Top 5 Aktuellen Westlern. Takahashi hat das in die Jr. Division gebracht was benötigt wurde und zwar einen hoch-charismatischen dafür im Ring sehr starken Superstar der die Division auf ein neues Level bringen kann. Tolle Mimik und Gestik, dazu extrem cooles Move-Set mit gefährlichem Ring-Style. 10 Punkte!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: GermanStrongStylewrote on 15.05.2017:[10.0] "Suicidal style of wrestling, which feels like a stunt man show than Ospreay or Richochet (all 3 are at the top of the high flyers) The gimmick change to LIJ made him a special, charismatic wrestler."
Rating: 10.0
Sentiment: 0.3792857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: jamzell00wrote on 08.05.2017:[9.0] "The breath of fresh air the Junior division and hell even all of NJPW needed. Hiromu has this mentality that if he isn't trying to kill himself in a match it won't be good. It's a style wrestling doesn't have enough of for obvious reasons but by god do I enjoy his. His run in CMLL, ROH, and his already legendary rivalry with Dragon lee makes me happy to be a fan of wrestling. 5 months into the year and he is easily my wrestler of the year so far. Just hope he doesn't retire by 32 with how hard he goes"
Rating: 9.0
Sentiment: 0.34416666666666673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: 8BitLegendwrote on 02.05.2017:[6.0] "Junger Wrestler mit einem vielleicht etwas zu großem Gimmick, gemessen an der Erfahrung. Wirkt unnatürlich und eindimensional im Moment. Andererseits kann man es NJPW nicht verübeln schnell neue Talente zu pushen, nachdem sich WWE 2016 kräftig bei ihnen bedient haben. Ich kann mir vorstellen, dass Takahashi über die nächsten 2-3 Jahre an Profil gewinnt. Technisch scheint er in der Lage zu sein das hohe Niveau bei NJPW mitzugehen. High-Profile-Matches, die ihn definieren, stehen derzeit jedoch noch aus."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Chekerwrote on 29.04.2017:[9.0] "Man, the former Kamaitachi really found himself these last couple of months. His trip to Mexico was already a while back, but you can still see a clear evolution from now compared to half a year ago. Tremendously charismatic and a hell of a high flier. The sky truly is the limit for young Takahashi Hiromu."
Rating: 9.0
Sentiment: 0.09925925925925926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: TheRainmaker28wrote on 16.02.2017:[10.0] "The best Junior in the world in the moment. Takahashi has a such unique style in-ring, he got a lot of charisma and most important, he brought life to the Junior Heavyweight Division again. I love KUSHIDA, but Taka makes it feel fresh and brings a lot of importance to the title. I hope that his career go for years, but he is such a high-risk wrestler that is hard to think in that way. Aside from that, he is a truly Junior legend in the making."
Rating: 10.0
Sentiment: 0.30925925925925923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: TheWrestlingFanwrote on 13.02.2017:[9.0] "One unique Jr. Heavyweight wrestler ever. His in ring ability is quite different from other jr. heavyweights, because he blends high-risk, strong style, and old school wrestling into his moveset. He can take hard bumps and dangerous spots seamlessly. In addition, he also develops a mad man character that oozes mysterious aura to his in ring presence, but quite charismatic, too, as people are invested in him once he steps in. In conclusion, Hiromu definitely has great potential and can easily fill in Kushida's shoes as the face of Jr. Heavyweight division."
Rating: 9.0
Sentiment: 0.05625000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Rasslin Ruleswrote on 08.01.2017:[10.0] "Seit WK11 und dem Aufbau dahin hat er sich die 10 von mir verdient. Dazu fand ich ihn bei PWG auch super."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Gloverwrote on 26.06.2016:[10.0] "One of the most talented young talents in the entire world right now, and it may be because he's been all over the world. One of NJPW's young lions, Kamaitachi has been on excursions in Europe, Mexico, and now the United States, meaning he's worked in promotions such as RevPro, DDT, wXw, CMLL, ROH, and PWG in several countries on 3 continents at the age of 26. His time in CMLL is really what made him stand out, as the quality of his matches went through the roof and he was putting on fantastic matches with fellow rising star Dragon Lee that got better each and every time, culminating at NJPW's CMLL crossover show Fantasticamania earlier this year. Now, working with New Japan's American affiliate ROH (and in various other USA indies), Kamaitachi seeks to show off how amazing he is to a whole new audience, which will no doubt be successful if he's given the platform."
Rating: 10.0
Sentiment: 0.22417207792207794
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Laurelleswrote on 15.06.2016:[9.0] "Almost seems tailor made for jr. ace material when he gets back to NJPW - one can easily imagine him in a tweener group such as CHAOS. In terms of ability, there's certainly potential for more but it may be that his small stature holds him back in that regard."
Rating: 9.0
Sentiment: 0.09761904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Luv all wrestlingwrote on 05.06.2016:[10.0] "SO MANY GREAT MATCHES VS DRAGON LEE. Kamaitachi is a njpw prospect who can be the ace of the jrs when he returns to his home company"
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: HammertonWaywrote on 29.01.2016:[8.0] "There is something very special about this kid. He pulled off an amazing match against Dragon Lee and earned his first title. When he eventually returns to NJPW, he is going to be a top contender for the IWGP Jr. Heavyweight title."
Rating: 8.0
Sentiment: 0.4535714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Iam betterthanwrote on 06.01.2016:[9.0] "This rating have to be high, he is doing a great work in CMLL in Mexico where he outstanding feud with Dragon lee, very good matches against Dragon lee and his recent match against Maximo Sexy in Sin Piedad 2016 was a must watch, and thus shows that how much talented this guy is, he want just few more years and then he will ne at top, maybe 2016 be his year."
Rating: 9.0
Sentiment: 0.437
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Matt4Wrestlingwrote on 08.12.2013:[7.0] "Eindeutig ein Diamant im Roh-Schliff! Er hat noch nicht ganz das Charisma im Ring und braucht noch sehr ersichtlich etwas Training, ABER er macht das mit Kraft und Entschlossenheit wieder weg!  Man kann gespannt sein, wohin sein Weg noch führen wird!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Blue Meaniewrote on 01.12.2013:[6.0] "Hat mir gestern in Oberhausen bei wXw sehr gut gefallen. Hat viel Potenzial, das er hoffentlich in Zukunft nutzen wird!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Kenshin Uesugiwrote on 15.08.2013:[6.0] "Akira Maedas unehelicher Sohn, da kann man mir erzählen was man will das sieht man doch! Wirkt auf den Blick eher unscheinbar, da hinter verbirgt sich aber ein ambitionierte Wrestler, der manchmal seinem Vater gar nicht so unähnlich im Wrestlingverhalten ist. Mal sehen wie er nach seiner Reise sein wird, neue gute Leute in der Junior Division? Immer her damit."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: STRIGGAwrote on 09.01.2013:[5.0] "Ist kurz davor, den Schritt vom Young Lion zum vollwertigen Wrestler zu gehen. Dabei besticht er durch unbändigen Willen und viel Leidenschaft. Für die Junior Heavyweight Division wäre er eine wertvolle Ergänzung."
Rating: 5.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9628&gimmick=Hiromu+Takahashi
Comment: Fountain of Misinformationwrote on 03.09.2012:[5.0] "Klasse Young Lion mit richtig viel Feuer und Talent, freue mich darauf seine weitere Entwicklung als Wrestler mitzuerleben."
Rating: 5.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: jsbortswrote on 14.01.2025:[10.0] "Kota Ibushi is one of the most talented wrestlers of all time. At one point I thought he was going to be New Japan's next top babyface star, but ultimately his career never worked out the way that it should have. Despite that, he has one of the absolute greatest catalogues of matches of any wrestler ever, and that can't be taken lightly. I think history will look back on him as a cautionary tale, but ultimately he has produced some of the greatest pro wrestling art of any wrestler to ever lace up a pair of boots"
Rating: 10.0
Sentiment: 0.3696969696969697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Its Clobbering Timewrote on 06.01.2025:[10.0] "Kota is the Man, he is the total package a perfect wrestler and one of my favorites of all time. Ibushi is the most skilled in ring wrestler ever he can do every style at an elite level. He is unbelievable, a legend, a badass and easily one of the best Professional Wrestlers ever."
Rating: 10.0
Sentiment: 0.4104166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: V0icesAreLouderwrote on 10.12.2024:[8.0] "Man what could've been with Ibushi, he still had stuff left to give to the sport and maybe he still can just not in his current role. He is throwing away everything he worked to create. However you can't deny his peak was one of the greatest to have ever happened. His moveset his ability to create drama out of nothing was incredible, it felt he could work a good match out of anyone that stepped in the ring with him."
Rating: 8.0
Sentiment: 0.5199999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Blue Dream Babyfacewrote on 02.12.2024:[7.0] "I'm going to try to put this as delicately as possible: Kota Ibushi is currently ruining his own legacy. The past two years of Ibushi have been incredibly frustrating. He has been trying to work through injuries, to the detriment of his in-ring work. He has burned bridges with multiple companies in Japan, including the company he basically grew up in (DDT) and the company that gave him his brightest spotlight (NJPW). His match with Marufuji where he broke both of his ankles was both the worst and saddest match of 2024. Recently, it's suspected that he wrestled for a joshi company with a noticeable staph infection on his back. He's started garnering comparisons to Jeff Hardy in his worst moments. All of this because he doesn't believe in modern medicine. It's by the strength of his previous work that he still gets a 7 from me, but someone needs to save him from himself at this point."
Rating: 7.0
Sentiment: -0.15512820512820513
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Khalid Acewrote on 14.11.2024:[6.0] "My previous rating for Kota Ibushi was a 10 and he deserved every bit of it. He is actually in my top 5 of the best professional wrestlers EVER. That being said I don't think he should've joined AEW because they have ruined his career. He is not giving a chance to compete in 1v1 matches or build good feuds. Their awful booking ruined one of my favourite wrestlers. He still gave me my favourite wrestling match ever which was the G1 final against Tanahashi. Side note: what was that NOAH pro wrestling match? he didn't look like he's ok"
Rating: 6.0
Sentiment: 0.20416666666666672
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: RadZawwrote on 12.09.2024:[10.0] "THE BEST. Over the years, Ibushi wrestled pretty much every match type possible, and he never disappointed. Doesn't matter if you need a man to do Comedy match, Normal wrestling match or some kind of strong style match, Kota can pull of a instant classic. In my head, at some point, this man was the best wrestler in the world, and even if this status is long time gone - Kota Ibushi is still one of my favorite wrestlers of all time."
Rating: 10.0
Sentiment: 0.3557692307692307
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: nabigoyewrote on 01.08.2024:[10.0] "Für mich ist Kota Ibushi einfach der perfekte Wrestler und mein Favourit wenn es um Matches geht. Zunächst kann er im Ring nahezu alles. Ich liebe seine Kneestrikes und auch seine Punches, vor allem wenn "Murder Ibushi" wieder entfesselt wurde. In der Luft ist er ebenfalls unglaublich, auch wenn das ein Aspekt ist der mir im Wrestling nicht zu oft vorkommen darf. Größte Schwäche ist wohl sein Selling, aber darüber kann ich bei spektakulären Matches hin wegschauen. Er hat einige der besten Matches aller Zeiten nach meinem Geschmack, wie gegen Tanahashi, Okada und natürlich Tag Team Partner Kenny Omega. Zudem liebe ich einfach einen guten Kamigoye. Vorallem ist er am besten in 20 Minuten Matches, aber auch Matches wie gegen Okada oder Tanahashi haben gezeigt, dass er lange Matches genau so gut kann. Dabei ist vorallem das letze Drittel einfach unglaublich unterhaltsam, wodurch ich bei seinen Matches besonders gerne mitfieber. Die Bewertung bezieht sich nur auf seine Jahre bis zur Verletzung im G1 Finale. Danach kann er einfach nur leid tun mit seinen Verletzungen im Nacken, Schultern und Knöchel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Willie 19200wrote on 26.07.2024:[9.0] "The Golden Star is easily one hell of a wrestler and someone I feel anyone can work with and turn it into a must watch match. He was the first IWGP World Heavyweight Champion and although it wasn't the greatest reign, he still was a great and deserving champion. Once he comes back to AEW, I'm excited to see what the company does with one of the best wrestler currently."
Rating: 9.0
Sentiment: 0.4758333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Joe907wrote on 16.07.2024:[10.0] "Kota Ibushi is the perfect professional wrestler. He's called the golden star for a reason. Very good at high flying and such a great striker. He can be very technical in the ring too. Kota Ibushi has it all. Going down as a Japanese legend"
Rating: 10.0
Sentiment: 0.3114444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: WrestlingStuffwrote on 10.06.2024:[9.0] "Ibushi is among the most unbelievable wrestlers that ever existed! Everyone basically saw the original Tiger Mask watching him, for his surreal perfomances in the rings. His DDT career was as successful as it gets, and then with NJPW he only went uphill with his bangers (his G1 28 matches were my favorites perfomances of his). His high flying moves, his brutal Kamigoye and ease to sell moves to make opposition look strong is one of a kind! Ibushi's problem however is that he believes he is a superhuman, that his pain is easy to ignore, that despite his moves being dangerous, it's no big deal! That and with all the neck drops, body bumps and divings he did, his shoulder, his ankles and his torso are currently a mess, and to make things worse, he refuses to seek treatment. And this takes us to his incident with NJPW, a company known for their harsh demands of conditioning and resistence, something Ibushi wasn't having thanks to his injuries, and then their infamous debate on the Internet started, and that was Ibushi's end of a great career in NJPW. Sadly, I think after G1 31, Ibushi met his end not only in NJPW, but in all of wrestling, as apart from GCW, his performances were poor, and his body obviously is screaming for help. I hope he comes to his senses and understand the gravity of his condition, or sadly he will end up just like Mitsuharu Misawa."
Rating: 9.0
Sentiment: 0.007881944444444422
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: CatboyMathuswrote on 03.06.2024:[8.0] "I love Ibushi, but I have to admit it's been 2-3 years since I've enjoyed one of his match (which was him vs ZSJ in 2021) it's sad cause he's one of the most complete athlete on the entire industry, he's funny, he's legit, his moveset can make him have a great comedy macth, a great technical match or even a brawl style match, but yeah, recently he's been really mid, I hope his return from injury helps him climb the mountain top once again and become world champion in AEW ! He deserves it"
Rating: 8.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ultravioletshiroiwrote on 28.05.2024:[10.0] "He reminds me of AJ Styles or Will Ospreay because he is not only incredibly athletic but also a highly skilled and well-rounded wrestler. His aerial skill is especially notable, showcasing impressive moves like the pele, standing shooting star press, standing hurricanrana, corkscrew moonsault, phoenix splash and standing stardust press, many of which even most of the best high flyers in WWE wouldn't execute very well. Additionally, he can deliver great strikes and power moves. He delivers quality matches and his work in NJPW speaks for itself."
Rating: 10.0
Sentiment: 0.5963636363636364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: itscalledtaylorhamwrote on 10.04.2024:[9.0] "There was once a time where Ibushi was genuinely one of the best wrestlers on the planet, and while that's no longer the case, it's ridiculous that people here are only judging him for what he is now. Sure, his work in AEW has been terrible, but watch his NJPW matches and you'll see how unebelievably athletic and talented Ibushi was."
Rating: 9.0
Sentiment: 0.18095238095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Oddtalkwrote on 31.03.2024:[9.0] "Ibushi's gonna wrestle until he dies, which will probably affect peoples' perception of him if they never saw his earlier work. But make no mistake, for a stretch of a decade plus, he was one of the best cruiserweights in the world, known for his freakish athleticism. Even if he continues to wrestle after his body can no longer keep up with him, it won't change the fact that he's put on so many classics, most wrestlers with an equally long career won't be able to do even half as many."
Rating: 9.0
Sentiment: 0.3479166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: benny5bellyswrote on 05.03.2024:[8.0] "It is somewhat insane to read peoples comments here basing their reviews on the few WWE/AEW matches he has had including one purely from the Blood and Guts match. Has Ibushi fallen off a cliff the past few years? Absolutely. This is not the first time a great wrestler has completely dropped off like that. In his day in both DDT and NJPW, he was one of the most cutting edge performers around. His style is not always to my taste hence an 8 but you can't deny he was very good."
Rating: 8.0
Sentiment: 0.06035714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: BillyBobJoe3wrote on 24.02.2024:[3.0] "I only watch WWE and AEW and I'm sure he has done great work in NJPW but from what I've seen of him in AEW he properly has one of the weakest chops ever. It's like he didn't even try to make it look like it connect it was so bad my family and I started laughing. I hope I'm proven wrong and all the hype is true but from what I saw he's mid at best."
Rating: 3.0
Sentiment: 0.16111111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: The Quick Manwrote on 13.01.2024:[8.0] "It feels painful to not give Ibushi a 9 or even a 10 but I feel like the performances of the past year or two which have mostly been pretty bad counteract the decade of 9 and 10-worthy performances. Still, I'll be generous and keep him at an 8 for now... as long as he either retires or FINALLY gets the surgery that probably could've prevented such embarassing displays as his match with Marufuji that kicked off and probably ended 2024 for him at the same time."
Rating: 8.0
Sentiment: -0.06166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: coppercowrieswrote on 04.01.2024:[9.0] "Freakish in ring athlete, was half of my favorite storyline ever. But when he isn't paired with someone more bombastic than himself he struggles to sell a narrative. Waiting on his return from his shoulder injury and hope he recovers completely. Edit 2024 - Ibushi's refusal to get surgical correction and proper rehab has destroyed his body and hopes of returning as anything but a morbid shadow of the man he used to be. I have never seen a more startling decline."
Rating: 9.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: FraterAssenayowrote on 03.01.2024:[10.0] "A god of pro-wrestling in his prime and nothing less. Sadly, people do not remain in their prime forever, and Ibushi is a shadow of the wrestler he once was. If you have only seen Kota Ibushi's post-NJPW work, you have not seen Kota Ibushi. But I refuse to give this man anything less than a ten, even as I've rated his most recent match with Marufuji (02.01.24) a zero."
Rating: 10.0
Sentiment: -0.04761904761904761
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Madladwrote on 01.01.2024:[10.0] "Kota Ibushi is one special wrestler. His style is unique for me.his strikes are perfect and look legit scary. He maybe have the best firely baby face comebacks in recent years. I just love ibushi and his epic style of wrestling"
Rating: 10.0
Sentiment: 0.35401785714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: cosmik debriswrote on 14.12.2023:[7.0] "Amazing performer when put against the right opponent. Rather dull when not. His offense is visually incredible at times and his execution often flawless. His selling is non-existent which brings my rating down a notch. He has a weird charisma - and this is meant in a good way - but nowhere near the level of the Naitos, Tanahashis and Okadas of this world. Overall, a performer capable of having ***** matches in the right circumstance, but I dont believe he's an all time great, especially considering how stacked the NJPW generation he grew up in was. Sad to see him broken down from injuries, at his peak he could have shined in AEW"
Rating: 7.0
Sentiment: 0.1687441643323997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[10.0] "Kota Ibushi is one of the all time best in ring performers of all time, it could make any performer jealous that they will never be as good as Kota in the ring. Kota Ibushi's athelticism is hard to wrap your head around, he makes every move look simple to do and not difficult in the slightest, no matter what move he does. Incredible high flyer, can do realistic looking MMA style wrestling as well, very good technician, also a fun "spot fest" wrestler when he wrestles those type of wrestlers, Kota is very versatile and can do any style of match you give him the task to do. His best work, in my opinion, is easily the Golden Lovers tag team, one of the all time best tag teams in the wrestling business no matter what era, natural chemistry with nice double team moves, have told incredible stories in the ring together, their match with The Young Bucks in 2018 is easily a top 10 tag team match of all time, 2018 was their best year, added bonus for the best LGBT+ representation, nice to see it in an industry that's, unfortunately, dominated by toxic masculinity. Overall, Kota Ibushi is easily among the best in ring performers of all time, The Golden Lovers are among the best tag teams ever, Kota is the man, despite he's kinda slowing down these days, but his work still speaks for itself."
Rating: 10.0
Sentiment: 0.448584229390681
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ti636wrote on 18.11.2023:[6.0] "I'm disappointed in him now. It's body is so heavy that I can't bear to look at it. It's so sad seeing it in its heyday. He seems to be isolated because he can't keep up with the level of AEW matches. It's probably not because he's getting older, but because of mental anxiety. I wonder what a great match we could have watched if we could have used a time machine to bring him back in the past."
Rating: 6.0
Sentiment: -0.10416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Leonewrote on 08.09.2023:[10.0] "From 2007 to 2021, Kota Ibushi was an unbelievable high flyer & striker. Absolutely unbelievable. He had some of the best reversals and sequences I have ever seen in professional wrestling. He was easily 1 of the best wrestlers in DDT, and has gone on to craft an incredible legacy within puroresu. To go along with his in-ring abilities, he was also very strong for his size, became a great storyteller as he got older, has some very good technical wrestling skills, and as far as "the look" is concerned, he looks like a J-Rock star. As of 2023, the future is uncertain. At 41, some could argue that he's past his prime, & that the shoulder injury in the G1 2021 finals was literally the end of his main event career. He has had some excellent multi-man matches, but he was far from the most memorable part in them. Hopefully he just needs some time to fully heal & breakthrough the obstacles - but if it doesn't work out, he still left his mark."
Rating: 10.0
Sentiment: 0.3304347826086957
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: CorpusSkiptotelicumwrote on 04.09.2023:[8.0] "He's looked pretty cooked since returning to the ring following his unfortunate injury, but that shouldnt diminish how good he was back in the day. He started as a crazy spot monkey but gradually added things to his game, also becoming one of the deadliest strikers in Wrestling history. He adjusted his style to the njpw heavyweight matches and thrived there. There were always holes in his game though, he's a very poor long term seller and he usually needs someone like Tanahashi or Omega to tell a complete story in the ring. Its kind of interesting how he was seen as the more talented one out of the Golden Lovers, but when its all set and done, Kenny will have ended up with the more complete and impactful career. Of course he cant go like he used to, but I hope he sees this and transitions into a pure striker, I'm sure he can continue having great matches like that."
Rating: 8.0
Sentiment: 0.14351190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Shadow Explosionwrote on 30.07.2023:[10.0] "It's hard to describe how much of an amazing all round talent Ibushi is. He literally can do it all, and he will do it all. He's an amazing high flyer, the height and speed he attains is breathtaking. He's a great Striker (maybe not recently) but he would just beat the shit outta people with kicks & punches. He's also a neck bump master, and as a connoisseur of neck bumps, I love that he's crazy enough to take that shit. That time he took a Burning Hammer in WWE in one of the craziest moments in the company."
Rating: 10.0
Sentiment: 0.1667948717948718
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Your opinion was badwrote on 20.07.2023:"No clue why someone rated Kota during the Blood and Guts match like that's the first time they've ever seen him. And if it is the first time they've seen Kota Ibushi, should prob just go watch WWE lmao. But yeah, all time legend. AJ coming to Japan really but all these now legends over and give them a global name. Kota ibushi was one of if not best worker in that match yesterday, atleast 1 of the top 2."
Rating: No rating found
Sentiment: 0.18571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Ozzywrote on 20.07.2023:[4.0] "Im watching him here in the AEW blood and guts match, and this guy absolutely sucks, he litterally just kicks and ocassionally punches, walks up to someone in a submission, waits a solid 3 seconds kicks them and they sell it like it did something, his punches are lackluster, man is just slow and clunky, where the one good thing he did in that whole match was just a single moonsault onto Mox on the bed of nails. He is lucky that moonsault looked ok, or he woudlve gotten like a 2"
Rating: 4.0
Sentiment: 0.1327380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: GoldenIceboxwrote on 15.07.2023:[10.0] "Kota Ibushi is one of my favourite wrestlers ever. There is this spark to him that not a lot of people in the business have, there is a certain uniqueness to him and his ability to seamlessly mix Shooto and stiff striking with some of the most graceful high-flying maneuvers everand that Phoenix Splash is irresistible. While most were introduced to Kota through Kenny, it was the opposite for me. I have personally considered him better than Kenny, for the simple fact that he can do some things Omega just cannot. Their match at Budokan Peter Pan is a highlight of that, and my first exposure to Kota. Other personal favourites include vs. HARASHIMA at the first Peter Pan in 2009, The three-way KO-D Tag Title match, Ibushi & Marufuji vs. KENTA & Ishimori, Tiger Mask W vs. Okada at NJPW 45th Anniversary, vs. Hangman Page on ROH television in 2018, and vs. Yoshihiko at a DDT event in 2015(a.k.a the match where Kota wrestles a blow-up doll). Update: I will be there for Blood and Guts, it will be Golden."
Rating: 10.0
Sentiment: 0.185
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Oswuoldwrote on 13.07.2023:[10.0] "Welcome back Kota alias one of the most gifted athlete of this generation. His style is exciting and he is even able to get a 5* match from a blow-up a doll. I'm really excited to see what he 'll do in AEW. *****1/2 (11/10)"
Rating: 10.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: dinsidewrote on 13.07.2023:[8.0] "Sports Entertainment - AEW Version Wichige Storylines mit Chris Jericho / Don Callis, MJF / Adam Cole und Elite gegen BCC im Focus. Alle haben genug Zeit bekommen, die ersteren öfter in der Show, Elite mit dem Bang zum Schluss. Wrestlerisch hatten wir Chris Jericho der gut durch das Match gezogen wurde und Blind Eliminator Tag Team Tournament Semi Final Match 1 das bei der Crowd nicht gezogen hat als Lowlights. Das Owen Hart Foundation 2023 Women's Tournament Semi Final Match war ok für die Zeit die sie bekommen haben. Blind Eliminator Tag Team Tournament Semi Final Match 2 war ganz großes Sports Entertainment. Swerve Strickland gegen Nick Wayne war mein Highlight, aber auf dem falschen Spot der Card. Und Harley Cameron - das Video. So Over the Top das man kaum mitbekommt, wie gut das wirklich ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: AyoWrasslinwrote on 13.04.2023:[9.0] "My second favorite NJPW wrestler OAT. Ibushi is just that guy. Glad he is back but hopefully he goes to AEW because I absolutely DESPISE GCW. Top notch matches in every company he has worked in. HE DOESN'T MISS. 10/10 / Recommendations: vs Omega [G1 Climax 28, DDT], vs Devitt [WK 10], vs Ospreay [G1 Climax 29], vs Styles [Invasion Attack 2015]"
Rating: 9.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TheOneAndOnlyCactuswrote on 03.04.2023:[10.0] "He is pretty much the complete package between the ropes. Fast, agile, strong for someone his size, technically gifted, can strike with the best of them, can be funny, he can practically do it all. Hes also been a part of amazing stories in the past to, more than just playing his part."
Rating: 10.0
Sentiment: 0.35694444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Strong Zero Machinewrote on 18.02.2023:[10.0] "Kota Ibushi is incredibly gifted a great body, great high flyer, fast, powerful, good techniker, can shoot, can do comedy etc the low point his selling can be 50/50. He's member of one of the best team of the last 20 years with Kenny Omega as Golden Lovers, a 3x KOD Tag Team champion, 3x KOD champion, 3x IWGPJunior champion, 1x IWGP Jr Tag Team champion, 1x Tag Team Champion, 1x Never Openweight champion, 2x IWGP Intercontinental champion, 1x IWGP Havyweight champion, 1 IWGP World Heavyweight champion, King Of DDT 2009 winner, Best Of The Super Junior 2011 winner, New Japan Cup 2015 winner, 2x G1 Climax winner 2019, 2020 and 2 other finals 2018 and 2021. I really hope his return soon is the start of something huge for Kota."
Rating: 10.0
Sentiment: 0.3965572390572391
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kyle135wrote on 02.02.2023:[10.0] "He might not be the best wrestler in the world, but I don't think there is any wrestler who is as excellent at every aspect of in-ring wrestling as the Golden Star. He can work any type of style and is believable as any type of wrestler. Truly a genius of the ring who you will marvel at."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: benh2wrote on 17.01.2023:[8.0] "Incredibly gifted wrestler. Tremendously athletic, smooth in the ring, great moveset and charismatic. He's a lifelong babyface, his fire is great so you always want to get behind him. I feel he lacks with psychology sometimes but that is often glossed over due to being involved with many great workers who often have enough to make up for it. His selling is also sketchy as he has the annoying habit that is quite evident in modern wrestling to completely disregard the injuries in order to get some spectacular moves in."
Rating: 8.0
Sentiment: 0.2563725490196079
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: MainEventMasterwrote on 09.12.2022:[10.0] "The most outstanding wrestler ever, his way of life and wrestling just boggles the mind, you never know what you are gonna get out of Kota Ibushi."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Vukowrote on 24.11.2022:[7.0] "Good atlete, good wreslter but what I just can't with him when he no sells the entire match... And I know that my ratings is influenced by the fact that Ibushi GETS 3 G1 FINAL IN A ROW ? At the time, this pissed me of a lot and when you look that every one of his push to the World title was a fail, I can't rate this wreslter 8 or 9."
Rating: 7.0
Sentiment: 0.18
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Mcbolskywrote on 22.11.2022:[10.0] "Tied with Naito for my favorite Japanese wrestler of all time. His intensity is amazing and he makes the sit out last ride look like a million bucks. Hopefully he heals up soon and reforms Golden Lovers in AEW or goes to WWE for a short run."
Rating: 10.0
Sentiment: 0.23333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: devwilwrote on 07.11.2022:[10.0] "I almost want to dock a point because he takes completely unnecessary risks that interrupt and shorten his career, but he's just so good."
Rating: 10.0
Sentiment: 0.14999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: texasyoshwrote on 16.09.2022:[9.0] "Kota Ibushi might be one of the most athletic wrestlers of the 21st century. The dude is insane both physically and perhaps mentally with the bumps that he decides to take. Truly the whole package as a wrestler, he can essentially work any style."
Rating: 9.0
Sentiment: -0.05714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Tyler72wrote on 11.09.2022:[7.0] "Kota Ibushi's wrestling skill set is very impressive. This is especially true with his G1 Climax match against Hiroshi Tanahashi. It often feels like he goes that extra mile to make a wrestling match all the more entertaining. It's such a shame what happened at last years G1 Climax! I wish him a fast recovery so that we can see many more matches involving him on New Japan."
Rating: 7.0
Sentiment: 0.36694214876033066
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: zags7000wrote on 09.08.2022:[10.0] "One of the best in the ring in his generation. I simply can't go below 10 as he does things in the ring that just make you shake your head because you can't believe what you just saw. He's not the most charismatic guy which hurts a little. However, when things connect in the ring, it's magic and some of the greatest performances one will ever see. Say what you will about him personally, and there is stuff we will likely never know the truth to, and sometimes it can be difficult to be a fan, but all the problems disappear when he gets in the ring because it will be magic."
Rating: 10.0
Sentiment: 0.30113636363636365
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: GreatAether531wrote on 11.04.2022:[8.0] "Kota is a physical marvel. His athleticism and intensity are rivaled by virtually no one, even at this 'twilight' in his ability after years of head bumps. His personality as the absent-minded, eccentric savant is also pretty entertaining and I'd be remiss to mention that he was a crucial part of one of the great stories of the 2010s as part of the Golden Lovers. Unfortunately, Ibushi often lacks the ability to commit to a narrative, the most obvious example being his inability to ever sell his leg consistently enough (with the G1 final against Jay being an exception to this rule). When he doesn't forgo psychology in favor of spots, he's capable of producing all-time matches, as he often did during his incredible run in 2019. but the inconsistency that lingers within his match history means he peaks at around an 8-9/10 as a wrestler."
Rating: 8.0
Sentiment: 0.21071428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ProWrestlingGuy316wrote on 07.02.2022:[8.0] "Ibushi ist schwer zu bewerten, wobei für mich das Positive überwiegt. Das einzig wirklich Negative ist sein Selling, auch wenn es weiterhin nicht gut ist, war es vor ca. 10 Jahren wirklich grauenhaft. Am besten ist er in 20- minütigen Sprints, wo er mit seiner Schnelligkeit und Intensität glänzen kann. Leider steht er wie kein Zweiter für den Absturz von NJPW. Mir fällt in der nahen Vergangenheit kein Wrestler ein, der vom schlechten Booking einer Promotion derart ruiniert wurde."
Rating: 8.0
Sentiment: -0.03636363636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: GriffinXwrote on 20.01.2022:[9.0] "Most would say Ibushi walks to the best of his own drum. No the guy has his own band. He does the wrestling that makes him happy. He can do teh hard strikes of a kickboxer but also flies with ease. Managed to change things up very well as he got older and bigger and thus was no longer a JR."
Rating: 9.0
Sentiment: 0.39722222222222225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "What a ride for Ibushi. He (somewhat surprisingly) finally broke through, winning and defending the IWGP Double Belt at Wrestle Kingdom. Then things got weird. His reign was marred by New Japan trying to introduce a new belt. Then he lost it immediately, picked up nagging injuries, and a very unfortunate illness. Finally he had a horrible injury in the G1 Final vs Okada. Throughout it all though, Ibushi put on stellar performances, especially against Naito (WK and Castle Attack) and Shingo (G1). He still has the ability, but being a fan of Ibushi has never been easy."
Rating: 9.0
Sentiment: -0.05337995337995339
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: NaJoBronwrote on 08.11.2021:[4.0] "I understand why many people love Ibushi, but for me Ibushi is the opposite of what I love in pro-wrestling. He is a great athlete who can do unimaginable things in the ring, but he has an absolutely flat character without a hint of charisma. He is a terrible storyteller who always acts as the second number, who relies on the abilities of more talented storytellers like Tanahashi, Naito, Jay White and many others. This year he finally reached the main events and demonstrated that he was completely unsuitable for the role of a top guy. The history of pro-wrestling shows that it's never too late to change, so I wish Ibushi to recover from injury and reinvent himself, but now we have what we have."
Rating: 4.0
Sentiment: 0.20245098039215684
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: CoolKylewrote on 30.10.2021:[6.0] "Ibushi is a tremendous athlete. One of the best ever in wrestling even but he lacks any personality. Ibushi is an awful seller. Every single match he has like 2 bumps where I feel "well, I guess I just witnessed a man die today" and yet he's still alive. If Ibushi wants to sell better, he should consider at least pretending to be paralyzed or something. There is not really much that's interesting about him, just a guy who wrestles well."
Rating: 6.0
Sentiment: 0.11619047619047618
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Okaro143wrote on 22.10.2021:[10.0] "One of the best wrestler of all time. If you are building a professional wrestler with a perfectly balanced speed, agility and power , you are gonna get something similar to Kota Ibushi. His body is in perfect shape. He has had an amazing career and has put on many great matches throughout the years."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Legend003wrote on 05.10.2021:[9.0] "Ein herausragender Athlet, ein Wahnsinnstyp. Das In-Ringwork, das Charisma, das Selling, alles was der Typ im Ring macht ist schon spitzenklasse. Ich würde ihn noch gerne länger an der Spitze von NJPW sehen, da er sich das einfach verdient hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: BEER CATwrote on 09.06.2021:[7.0] "A hyper-gifted athlete who understands the nearfall-crescendo game just as much as he doesn't understand anything about selling. NOBODY IN THE HISTORY OF WRESTLING HAS IGNORED MORE LEG WORK THAN KOTA IBUSHI. Not to mention neck work, Christ. And yet he's still a positive asset to pro-wrestling as a whole. Go figure."
Rating: 7.0
Sentiment: 0.14545454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Lyno123123wrote on 04.06.2021:[9.0] "(9. 9/10) If he doesnt try to break his neck every goddamn second i would give him 1000/10. but NOOOO he gotta do a neck bump to sell a clothesline. In ring wise, He surpasses omega 9 times out 10, Charisma wise he can easily surpass Okada 9 times out of 10. Likeability wise he can surpass Naito 9 time out of 10. But my god if he keeps doing a neck bump one day he gonna be either in a wheel chair or in a damn cremation room. But in all honesty, if you took out all of his neck bump. He is the best full package white meat baby face to ever walk the earth and no one can is close besides tanahashi himself."
Rating: 9.0
Sentiment: 0.48541666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Zaidwrote on 03.06.2021:[10.0] "A genius in the ring, and one of my favorite Japanese wrestlers ever. Truly a remarkable performer in his own right."
Rating: 10.0
Sentiment: 0.42714285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kungwrote on 10.05.2021:[9.0] "Kota Ibushi is a genuine genius in the ring. He's a remarkable performer and can seemingly do just about anything physical. Only thing that makes him not a 10 is that he can sometimes be underwhelming as a character."
Rating: 9.0
Sentiment: 0.2875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: haroldanthony3wrote on 21.04.2021:[9.0] "Kota Ibushi started out in DDT and became the top star there while also wrestling for New Japan part-time and being the Ace of the junior division after Prince Devitt left and was rising up the card until he was burned out due to his busy schedule. He came back as a part-time freelancer and won the G-1 while having great matches teaming with Kenny Omega. Once Omega left he committed full-time to New Japan and eventually had a run on top with some have different opinions about. In-ring I believe he knows what to do to make almost any match a four-star match with his charisma and abilities however he is socially awkward and I am not a fan of his selling."
Rating: 9.0
Sentiment: 0.1206439393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Makoto92wrote on 04.04.2021:[5.0] "I don't see in Ibushi something extraordinary. Kota is a wrestler with good fighting skills, but, in other hand, with a huge lack of personality, poor psychology and frequent no-selling. I understand, why fans love him, but I'm not the one of them."
Rating: 5.0
Sentiment: 0.21547619047619043
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ExcitingProWrestlin3wrote on 30.03.2021:[5.0] "Held back by his poor in ring psychology, and the fact that he's surrounded by far more capable and seasoned stars. That's what holds him from being one of the best in the entire promotion of New Japan."
Rating: 5.0
Sentiment: 0.19848484848484846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Bushidospirit22wrote on 16.03.2021:[7.0] "Ibushi was one of the best junior heavyweights I ever saw. Some of the moves he did in-ring were jaw-dropping and his matches with Kenny in DDT and Devitt in NJPW made me a huge fan. His work since he turned heavyweight however has left a lot to be desired. He's not particularly interesting anymore, and there are guys in the heavyweight division like Okada, Naito, and Tanahashi that shine so much more than him. While the Phoenix Splash is amongst the best finishers I've seen for a junior wrestler, his current kamigoye doesn't really have the same affect."
Rating: 7.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Patlaborwrote on 28.02.2021:[5.0] "You watch one Ibushi match and you wonder if you've just stumbled onto the greatest pro wrestler in history. He looks like he's chiseled out of stone, he moves just about as well as any wrestler in history, he shits out 5 star matches. And then you watch New Japan and other promotions for a few years, see 100+ similarly good matches, and you ask yourself. Hang on, why do I feel nothing? The answer, unfortunately, is that there's actually nothing all that interesting about Ibushi. He's just really, really good at doing the moves. A previous commenter nailed it when he said Ibushi as a pro wrestler feels completely soulless. The wrestling landscape has become completely oversaturated with meaningless 30+ minute matches with surface level storytelling, and Ibushi is one of the main performers guilty of this."
Rating: 5.0
Sentiment: 0.09409090909090909
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: michmoose21wrote on 09.02.2021:[10.0] "A top worker in the world. He bumps, sells, is athletic, can work stiff, he can do it all. Ibushi is a fantastic worker."
Rating: 10.0
Sentiment: 0.22857142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Oregano Jacksonwrote on 03.02.2021:[8.0] "He's definitely fallen off the high horse that I had put him on, as is the case with guys like Okada and Ospreay. Ibushi's inability to make anyone look good other than himself is perhaps the thing that has soured me the most on him. He's terrible at selling and has also developed the big Japan epic match tendency. Kota's still not a bad wrestler by any means. Far from it; at his best, he can produce some of the most compelling matches matches of the modern era of wrestling, with his hybrid style of high flying and striking."
Rating: 8.0
Sentiment: 0.1802777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: rainmakerpunkwrote on 03.02.2021:[10.0] "This is a guy that keeps on improving and maturing and mastering multiple styles, he's insane in the ring and has finally become GOD"
Rating: 10.0
Sentiment: -0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: StrongStyle2020wrote on 30.01.2021:[10.0] "An absolutely immense competitor. The leading part of one of the greatest tag teams of the last two decades, The Golden Lovers, Kota Ibushi's singles success is legendary in itself. The GOAT of DDT, and incredible IWGP Junior Heavyweight Champion, Kota has gone on to achieve historic double gold in New Japan, after classic bouts with Naito Tetsuya, Hiroshi Tanahashi, Shinsuke Nakamura, Minoru Suzuki, Kenny Omega, and more. Incredible striking and athleticism put Kota Ibushi on top of the wrestling mountain. One of the all time greats, and all round performers in pro wrestling history."
Rating: 10.0
Sentiment: 0.37518939393939393
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Amico Leonardwrote on 19.01.2021:[10.0] "The best athlete in the Pro Wrestling World today and the most devoted one. I cried like a baby watching him become IWGP Heavyweight Champion 2 weeks ago in the Tokyo Dome. The build up to his victory has been fantastic as he always has been the one that came up short, the "so good, but not great yet" and after the failure of WK 14 that I watched live in the Tokyo Dome this was the time. If Ibushi hadn't won in this case, it was an all or nothing situation, he probably would have retire or leave NJPW. So happy for him, right now he might be my favorite Wrestler in the entire world, along side with Jon Moxley Kenny Omega and Adam Cole or Tommaso Ciampa, even if this last two are a bit descended in the hierarchies of NXT. Good Job Kota, a beacon in the dark for this tumultuous times to be alive. Kenny Omega leaving NJPW and Kota staying there has been the best thing ever happened to the Golden Star as in this 2 years (1 year and half because of Covid that stopped NJPW for half 2020) he made the big jump to become simply himself and not being the "jailer" of Omega, the one with the same or even more Wrestling talent of the Cleaner but with less "impact" as a main stream level Superstar. He is a better Pro Wrestler than a "Sport Entertainer" for sure, but this in Japan is not so relevant..."
Rating: 10.0
Sentiment: 0.24558889386475588
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: AlexLennonPWwrote on 14.01.2021:[10.0] "There's no single quality which makes him the best, he has everything that comes together to make one of the most unique athletes in the sport."
Rating: 10.0
Sentiment: 0.47767857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Rocky7wrote on 05.01.2021:[10.0] "From all his crazy DDT matches and his relationship with Kenny Omega, to his slow burn ascendancy in New Japan... even stopping off to nearly blow himself up in an East London alleyway. Kota Ibushi has achieved more than most can comprehend, and he did it by unconventional means, which I appreciate tremendously."
Rating: 10.0
Sentiment: 0.09567099567099567
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Thebossofthegym04wrote on 04.01.2021:[5.0] "Absolutely ordinary wrestler who is loved only for being good in the ring. No matter how much I look at Ibushi, he does not arouse interest at all. He has no charisma, no gimmick, no mix skill. There is no soul in his matches. It only shows history in matches with those who are good storytellers. And I have not yet mentioned this about his noselling. Why does he use noselling when he can't even use it correctly? I don't want to say that Ibushi is bad. he's just ordinary. it will never make a Main Event. Only ring skill will not become you the main star"
Rating: 5.0
Sentiment: 0.11944444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: VillainClubwrote on 01.01.2021:[6.0] "Guter Wrestler, der mich allerdings nicht mitreist. Seine Matches sind oft gut, allerdings baut er zwischenzeitlich dumme Aktionen ein. Sein Selling lässt auch zu wünschen übrig. Als IC Champ ok, den großen Titel sollte er allerdings nicht gewinnen."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Ma Stump Pullerwrote on 16.11.2020:[8.0] "Ibushi for sure has the physical talent to be a top performer (even if he's noticeably slowed in recent years from the flying spot monkey he used to be) and he's had some great matches with the right opponents, but he does lack some critical elements to his work, namely selling: it's not very consistent and can fly from not being dire enough to not even acknowledging it at all in his ring work and merely working as per usual, no tension there. This might be because Ibushi spent most of his career in bizarre conditions that were barely even wrestling in the first place, but regardless, being a babyface that no sells offence a lot doesn't help a bit at getting them organically over. That being said, when Ibushi is selling even decently, he really shines as a strong upper card babyface with incredible energy, even if his character outside of the ring is rather flat and doesn't really bring anything new or exciting to the table. For me, he's on the same level as guys like Naito: not the main event guy and certainly not someone who can carry a lesser talent to their level, but still solid enough that they can hold the belt a few times and get some feel good matches out of it. However, I can't see him as someone who's going to reach the very top level of NJPW: he lacks the critical elements that a top babyface needs to make themselves and is usually the one being directed in his matches in terms of storytelling, not the other way around."
Rating: 8.0
Sentiment: 0.1642195304695305
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: medousewrote on 29.10.2020:[10.0] "When it comes to technique and in-ring skills he is one of the best wrestlers in the world. He can do almost everything. He's a highflyer, grappler, striker and a great tag partner. He has the greatest physique in this business. His body looks better than greek gods statues. Ibushi almost always has great matches no matter who is his opponent. He even wrestled a DOLL and it was a 5-star match (everybody should check his match against Yoshihiko)."
Rating: 10.0
Sentiment: 0.6833333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: LuketheKid1029wrote on 24.10.2020:[9.0] "It's amazing to me to watch Ibushi in his matches since his style from what I've seen from Ibushi seems to be very show-oriented with fast-paced style along with Ibushi as his character being booked specifically due to his God-given natural ability in the ring, and I'm thinking that this somewhat valid criticism for Ibushi being very focused on himself in the ring and presenting himself somewhat over his opponents is also something that's necessary in some ways to get Ibushi over! I'm thinking that Ibushi's character right now after winning the G1 Climax 30 trophy is something like with Ibushi's backstage promos mentioning wanting to become a God, and I'm thinking this is both a callback to his Kamigoye finisher allegedly translating into "surpassing God, " along with his partner relationship with Tanahashi as The Golden Aces being very focused on Ibushi's constant adoration for Tanahashi and Nakamura and Okada; but it's the reason that my review for Ibushi isn't perfect score since I think Ibushi needs some more character work and some more personality to show through, but it's always something that I'm somewhat split about since it's a mostly contentious point even for myself viewing Ibushi as bland and unexciting from looking at his character standpoint since his promo game is usually very generic babyface, but in many ways (and this is something that I haven't seen discussed in the top rated comments), I think Ibushi plays the role for silent protagonist like this is a video game where the fanbase is supposed to project their own subjective viewpoints for personality onto Ibushi, and this is likely something that strengthens his relationship with the fans, which is evidenced in being with New Japan Pro Wrestling due to Japanese video games often depicting that type of storytelling, and it's my personal opinion that Ibushi is perfect for that role despite it being somewhat bland and unexciting from his personality showing through! It's something that I'm hoping to see develop over time despite Ibushi being somewhat older than many other counterparts (namely Jay White being almost exactly ten years younger, but Ibushi being older has also given him more experience) that I'm hoping to see Ibushi win the IWGP Heavyweight Championship someday, since that seems to be a likely result for Wrestle Kingdom 15, and it's seeming like the same trajectory for the storyline with Okada/Tanahashi where it took several attempts to win the top Championship at Wrestle Kingdom, and I'm hoping that this can finally be the year where Ibushi can win the Championship after making history as the first three-consecutive G1 Climax finalist and third two-time G1 Climax winner, so I'm willing to admit that I'm curious to see where they take his next stage in his storyline! <3"
Rating: 9.0
Sentiment: 0.21897002368700486
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: STARDOGCHAMP90wrote on 21.10.2020:[10.0] "Amazing workhorse with an unbelievable wrestling ability. He's one of the very few to win the G1 Climax back-to-back, and he's held countless IWGP championships throughout his illustrious career. He's got an amazing look and an amazing move set to back that up. He's had countless 5 star matches and hasn't stopped. The man had a match with a blow-up doll and made it entertaining, not many wrestlers can do that. He was even chosen to be Tiger Mask W for some time! Nothing but respect for him."
Rating: 10.0
Sentiment: 0.20704545454545456
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TylerWhitewrote on 12.10.2020:[10.0] "Kota Ibushi ist für mich derzeit einer der absolut besten Wrestler weltweit. Er hat den absolute Main Eventer Look, ist im Ring unangefochten und schafft es immer wieder einen zu überraschen, auch wenn er dabei teilweise zu krasse Bumps mitnimmt und es einem beim zuschauen wehtut, aber auch das gehört zur Faszination um Kota Ibushi und die Over the Topness zeigt auch seinen Background bei DDT. Aber er bleibt nicht in der DDT Nische, sondern konnte sich auch absolut im NJPW Main Event etablieren und liefert auch im Tokyo Dome Main Event absolut ab, ohne dabei jemals komplett auf seinen Stil verzichtet zu haben. Er kann im Ring gefüllt alles und kann mit sämtlichen Stilen mitgehen, ob bei den Juniors mit Highflying Action oder selbst bei den härtesten und reduziertesten Strong Style Matches mit Nakamura, Ishii oder Suzuki, was ihn zu einem ultimativen Allrounder macht. Das einzige was ihm fehlt ist endlich der große Gewinn des IWGP Heavyweight Titels, aber ich hoffe wir werden das in den nächsten Jahren, solange er noch auf Top Niveau ist, sehen."
Rating: 10.0
Sentiment: 0.24761904761904763
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: BlakeFR37wrote on 25.09.2020:[10.0] "The Golden Star ! For me, his nickname justify his rank but just look at his matches. Kota is one of the best."
Rating: 10.0
Sentiment: 0.19166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Mauwrote on 26.07.2020:[10.0] "Demuestra un espectacular nivel de lucha aérea. También demuestra que a pesar de los 38 años que lleva, se mantiene como un luchador que controla y perfecciona el estilo técnico de forma que el combate que de con alguien no sea "aburrido"."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: killowenskillwrote on 29.06.2020:[5.0] "It pains me to do this, but the more I watch ibushi, the clearer the picture becomes that He is one of the most overrated wrestlers of our time. Of course, Kota is an incredible employee, an almost irreplaceable mid-carder for every promotion, his athletic skills are phenomenal, and his ability to take absolutely every move is respected. But behind all this is a few fat cons that make all its advantages meaningless. He can't sell. Ibushi is able to show any move with a murder, a weapon of mass destruction that will not leave a trace of you, but all this does not matter when a few minutes later he is standing on his feet, fighting in full force, and the consequences of the experienced damage do not concern him in any way. Each of his matches, regardless of how big it is, looks like the biggest matches of Kobashi and Misawa. But when this is not followed by any overpowering, when there are no bets in the match, and when Ibushi cannot be killed, it looks implausible. I thought this kind of thing happened to him already during the promotion in New Japan, but the more I watch DDT, the more convinced I am that Kota has always been such a player. But this was not so obvious when he was in the secondary positions and he literally did not have time to show much of his list. Now he has this opportunity and I am disappointed. He is the most inconsistent, most illogical, and most frustrating wrestler of the past few years. And if you watch it constantly, rather than selectively flipping through the lists of "best" matches, it will be harder to love it. And this is all supplemented by the fact that Ibushi does not have a character, even the smallest. He just fights and he just doesn't care. I can't get my hand up to give him a completely negative rating, because, again, as a workhorse, he is very good. But I have no love left for him. And the further it goes, the worse it gets."
Rating: 5.0
Sentiment: 0.1411590909090909
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Bobbythreesixteenwrote on 06.01.2020:[8.0] "Matches sind immer zufriedenstellend, jedoch reißt mich Ibushi nicht ganz mit. Dennoch für mich ein sehr starker Wrestler von dem man gerne mehr sieht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: OxeyNimrodwrote on 14.11.2019:[10.0] "There's no match Kota has had that isn't great/good in the last decade. The man had a match against Yoshihiko the Doll and still managed to make it an entertaining spectacle. If that alone doesn't sell you, I don't know what will. Without a doubt he is above all one of the greatest wrestlers to date."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Zo-Zuwrote on 14.09.2019:[9.0] "His love of gimmicked gobshite and time in DDT keeps him from my considering him upper rung, but fuck this guy is good. One of the most impressive, diverse and charismatic working today. His push in 2019 is deserved and long overdue and I'm excited to see where he takes his considerable talents from here."
Rating: 9.0
Sentiment: 0.3225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TheFrenchDisasterwrote on 19.08.2019:[9.0] "There are not many negatives about Kota Ibushi, the guy is super good and entertaining in the ring. He's a great striker, a great technician and a great high-flyer. He is on the same level as Okada, Tanahashi, Omega, Kenta... But his major flaw is, obviously, the selling, I think that his lack of selling spoils his matches a bit but that's no big deal. Overall, he's surely one of the best in the world actually and NJPW should seriously consider giving him the heavyweight title given the talent he has and the loyalty he has shown by signing this contract for life."
Rating: 9.0
Sentiment: 0.30703125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: JOEvsISHIIwrote on 15.08.2019:[9.0] "Very good wrestler. Great high flyer and striker. Needs to improve selling and take less neck bumps."
Rating: 9.0
Sentiment: 0.4258333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: KyleEnjoysWrestlingwrote on 02.08.2019:[9.0] "One of the best in ring workers in the world today. I think he surpasses other favorites such as Okada & KENTA. Ibushi masters many styles. A great striker, flier, and technician. His character work just keeps me from giving him a 10, but ever so slightly."
Rating: 9.0
Sentiment: 0.3347222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: zephyrwrote on 26.07.2019:[9.0] "Ibushi combines innate talent with intense training to end up being one of the most gifted in-ring performers of this generation. Combine that with just being inherently likable as a person and you've got yourself a great babyface."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: NEVERoverweightChampionwrote on 04.07.2019:[9.0] "An intriguing personality, athletically gifted wrestler with a great babyface aura who can also show a more dark and agressive side when he is really pushed in that area. Has all the potential to be one of the greatest and now that he signed a full time contract maybe he will enter even more in New Japan's history. He's crazy at times but I can totally feel the pure love and passion he has for his craft. The only thing he could get better at is his selling."
Rating: 9.0
Sentiment: 0.279449961802903
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: neat o wrasslinwrote on 18.06.2019:[9.0] "Possibly the best wrestler in NJPW.  So why not a 10 rating?  Because Ibushi is incredibly reckless and it is incredible that he has not suffered a major injury.  His matches are some of the most exciting displays of athleticism I have ever seen, but I'm genuinely fearful that I'm about to witness a brutal injury."
Rating: 9.0
Sentiment: 0.2097222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: PuroresuLoverwrote on 16.06.2019:[10.0] "I can give one word to describe Kota Ibushi: Perfection. I'd like to comment just that, but cagematch system doesn't allow me. Like Tanahashi and Okada, Ibushi has everything to be the Ace, he's simply perfect."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: My Bloody Doobwrote on 20.05.2019:[10.0] "An enigma of sorts. Had all the potential in the world to become an all timer, and chose to be his own man instead. Commendable in it's own way. Even if he passed on fame, he has still made a career for himself by being one of the most unique wrestlers ever. He's all spots, but can play anyone's game if he wants. His talent is so immense, he can have 4 star matches with inanimate objects. His personality clashes perfectly with his Golden counterpart, but as a singles guy he's still a wild experience."
Rating: 10.0
Sentiment: 0.20625000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Garrettwrote on 07.05.2019:[10.0] "I truly believe Kota Ibushi is the best in the world today. His high flying move set makes my jaw drop in amazement and not to mention his incredible matches against: Kenny Omega, Hiroshi Tanahashi, Will Osprey, AJ Styles, Tetsuya Naito, TJP,  Cedric Alexander, Zack Sabre Jr, and Prince Devitt. Mark my words he will be IWGP Heavyweight champion one day."
Rating: 10.0
Sentiment: 0.6866666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: migrationswrote on 25.03.2019:[8.0] "He is a very good wrestler in the ring, but he doesn't sell moves quite at the Omega / Ricochet / Okada level and he has no ability to soak on a microphone. It's weird that this guy is such an elite pro wrestler yet so shy also. Still, his in ring work kind of makes up for his lack of charisma."
Rating: 8.0
Sentiment: 0.10199999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: KoolAidCobainwrote on 13.03.2019:[10.0] "Hands down, my absolute favorite in NJPW. I love him and Kenny together so much and they're just really cute together. He can work and he has amazing endurance. He can literally have a **** star match with a blow up doll. He knows how to work a fantastic match and honestly would've been a better fit to win the WWE Cruiserweight Classic rather than the guy who never got used and got released after 2 years."
Rating: 10.0
Sentiment: 0.4008547008547009
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Aurtletheturtlewrote on 10.03.2019:[10.0] "GOLDEN STAR! Perhaps the most naturally gifted wrestler of this decade, Kota Ibushi truly is a man who has everything needed to be the top star in any promotion. Skill, looks, charisma, name it and Ibushi has it in spades but what's perhaps so charming and frustrating about Ibushi is that he doesn't care too much about being the biggest star, he cares about having fun and promoting what he believes wrestling should be. Whether it be comedy wrestling or wrestling where you drop your opponent on their head 19 times a match, Kota Ibushi is capable of anything and I love him."
Rating: 10.0
Sentiment: 0.3375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ElPolloLocowrote on 08.03.2019:[8.0] "When Hiroshi Tanahashi was asked about Kota Ibushi in an interview a few years back he said "He has everything to become one of the greatest of all times except one thing: determination". It's really hard to argue with that. At 36 Ibushi is still a spot-wrestler: basically the same wrestler he was a decade ago. But as crowd pleasing spot wrestlers may be, they aren't the ones major promotions want as their main draws: they need to make a step to become main draws. Kenny Omega made that step. Taiji Ishimori made that step. But Ibushi has always lacked the determination to make that step which for somebody as ridiculously talented and skilled as he is, would be natural. I've read that recently he signed for NJPW full time so maybe he's finally ready to make that step to true greatness that he has so far put into the future."
Rating: 8.0
Sentiment: 0.18848039215686277
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kevin41182wrote on 26.02.2019:[9.0] "Kota is by far one of the best wrestlers in Japan today. That's why he deserves a 9. But, Ibushi needs to develop his own identity. His run with the "Golden Elite" in my opinion was not very good and the Golden Lovers tag team seemed to be overshadowed by the rest of the Elite. With Kenny Omega gone from New Japan, its Ibushi's time to shine. He needs to create his own identity and hopefully one day he will win the IWGP Heavyweight Title."
Rating: 9.0
Sentiment: 0.3963480963480963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Cibswrote on 02.01.2019:[10.0] "I have been a fan of Ibushi since his days in DDT. Sure, there were some weird moments but he always showed quality in the ring and now with more experience he is one of the most spectacular wrestlers on the planet. His offense is great, sometimes he forgets to sell but in general his matches are very exciting."
Rating: 10.0
Sentiment: 0.35500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: KINGwrote on 09.11.2018:[9.0] "Kota Ibushi makes made me question my etherosexuality for the first time when I was like 15, the guy is an amazing wrestler, he's spectacular, he can be graceful and violent at the same time, his talent is just incredible, I don't give him a 10 cause for some reasons such as injuries and desire to experiment stuff more than becoming a top guy unallowed him to be a full time main eventer, and I think it's a shame cause this guy should be an IWGP Heavyweight Champion."
Rating: 9.0
Sentiment: 0.29305555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: jamzell00wrote on 05.11.2018:[8.0] "If only he could sell. Remains the one flaw in his game. So inconsistent with it. Other than that the guy is one of the best talents we've probably ever had"
Rating: 8.0
Sentiment: 0.11875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: RatingsMachinewrote on 14.10.2018:[10.0] "Kota Ibushi may be the most physically talented wrestler in the business today, and he can also work a variety of styles. Ibushii can have creative highspot-orientated matches with Kenny Omega, he can have hard hitting battles with Tomohiro Ishii, and he can keep up with technical masters like Zack Sabre Jr.."
Rating: 10.0
Sentiment: 0.2816666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Tomlou12wrote on 17.09.2018:[9.0] "I love Ibushi's mix of hard hitting striking and high flying, he is an incredible athlete that really knows how to get a crowd into a match. I feel that a 9 is warranted due to the sheer amount of excellent matches he has partaken in this year and I look forward to seeing what comes next for him."
Rating: 9.0
Sentiment: 0.2843333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: taabr2wrote on 14.09.2018:[10.0] "One of the best wrestlers in the world right now. Kota Ibushi is pretty awesome wrestler, he is a solid technician, amazing high-flyer and way too many people sleep on his brawling skills. Now if only we would sign a damn contract so a wrestling company can actually push the fuck out of him."
Rating: 10.0
Sentiment: 0.32357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Oliver95xwrote on 12.09.2018:[10.0] "Ein unglaublicher Wrestler. Sein In Ring Style ist einfach nur der Hammer. Ein spektakuläres Move Set welches er bei jedem Gegner anwenden kann. Sein selling ist der Wahnsinn. Ich finde er ist einer der besten und seine strikes sehen schmerzhaft aus. Alles in allem ein perfekter Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Cal Vamwrote on 17.08.2018:[6.0] "While he's able to deliver a lot of absolutely great matches that will be remembered for a long time, he's one of the worst sellers ever. His selling ruined a lot of potentially good matches for me and I just can't get over that. He's great on the offense, but overally, he's slightly overrated, just like a lot of his matches."
Rating: 6.0
Sentiment: 0.2261904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kaswrote on 10.04.2018:[10.0] "One of the best in the world currently and will probably go down as one of the all time greats. Striking, storytelling, athleticism, smoothness, he has it all. Also respect him hugely for doing his own thing and not feeling pressured into joining New Japan and WWE."
Rating: 10.0
Sentiment: 0.3544011544011544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Chris Nwrote on 02.03.2018:[10.0] "On pure in-ring ability alone Ibushi is one of the best ever. I really hope he has the chance to win the IWGP belt in NJPW and have a lengthy run before he retires, one of the best of all time on his best day."
Rating: 10.0
Sentiment: 0.7023809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: arrancarwrote on 23.11.2017:[9.0] "On pure in-ring ability Ibushi is one of the best ever. While his long-term selling is a bit poor at times and his real-time selling can occasionally come off as melodramatic he is otherwise an absolute perfect all-rounder. He has crazy acrobatic high-flying skills, extremely stiff strikes, can take some of the sickest bumps imaginable, and he has a great use of facial expressions to communicate his emotions. He is extremely easy to connect with and one of my first favourite wrestlers. Sadly, what holds Ibushi back from being considered an all-time great is his lack of wrestling accolades. This isn't to say that he would be a 10/10 if he simply won the G1 or the IWGP Heavyweight title a few times, but it relates to how his inability to commit to a promotion long term has meant that he hasn't been able to produce any fantastic long-term wrestling storylines or title reigns. He's a freelancer who gets up to all sorts of weird wrestling all around the world, alongside more serious wrestling such as in NJPW. This lack of commitment to a single promotion means bookers won't trust him with major titles and major pushes though, so he has never had a big string of great matches or any super interesting storylines either. This is what really solidifies the character being the wrestler, and with Ibushi lacking that I can only give him a 9/10. Hopefully he commits to NJPW long term soon and can prove he deserves that 10/10."
Rating: 9.0
Sentiment: 0.15108543417366946
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Alex Maedawrote on 08.11.2017:[10.0] "Ich mag Ibushi, sehr sympathischer Kerl, unglaublich sauber mit seinen Aktionen und im Tag Team mit Kenny Omega sehr unterhaltsam gewesen. Natürlich muss man, um ihn zu mögen, etwas für Highflying und Spot Wrestling übrig haben, aber wenn das der Fall ist, ist man bei Kota Ibushi bestens aufgehoben. UPDATE: Hat sich in den letzten Jahren zu einem der komplettesten und besten Wrestler der Welt entwickelt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Dragon Fighterwrote on 30.10.2017:[9.0] "Ibushi is one of the best wrestlers in the world. Great offenses and strikes. An amazing high flyer as well. The match with nakamura at wk9 introduces him to me. However, I only give him 9 because his poor selling. He seems to forget to sell the limb work. Otherwise, he is a joy to watch."
Rating: 9.0
Sentiment: 0.422857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: AllArounderwrote on 10.08.2017:[10.0] "Kota Ibushi is one of the best wrestlers in the world, period. The guy excels in every aspect of wrestling. Great Striking, amazing flying moves, grappling technique, and great facial expressions. One of the most complete wrestlers on the planet, who should get more mainstream attention."
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TooSweetPhilwrote on 09.07.2017:[9.0] "Kota Ibushi hat sich selbst und seinen individuellen Style fast schon in der kompletten Welt manifestiert. Er bringt mit der perfekten Mischung aus spektakulärer Athletik und ungeheurer Härte so gut wie jeden seiner Gegner auf ein neues Level. und sorgt somit immer für Abwechslung. Er zeigt das dann natürlich auch immer in fantastischen Matches in NJ, als auch 2016 in der WWE. Das einzige kleine Manko bleibt sein kontinuierliches Selling, denn da vergisst er oft über ein Match seine Offensive zu reduzieren. Warte den diesjährigen G1 (Stand Juli/17) ab und dann gucke ich ob ich auf Volle Punkte gehe. Vorerst "nur" 9."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Headlockwrote on 19.06.2017:[6.0] "Ach Kota, du bist ein guter Wrestler, aber deine Schwächen sind manchmal einfach so leicht zu umgehen, z. B. Sollte man kein Match mit Kota Ibushi um Selling aufbauen denn, Kota Ibushi kann nicht sellen, egal wie sehr sein Bein zerstört wird er springt wie ein junger gott. Dies war besonders schlimm in seinen Jr. Heavyweight Run, als Heavyweight hat er dies nicht anährend so stark, nichts desto trotz, bleibt es ein Kritikpunkt! Als Junior bekommt er 4, als Heavyweight 8 also treffen wir uns in der Mitte und geben im 6 Punkte"
Rating: 6.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TheAlmightywrote on 18.06.2017:[10.0] "Ein Weltklasse Wrestler und in meiner persönlichen Top 3 meine Lieblinge. Kann einfach jeden Stil sei es Puro, Strong Style oder High Flying, hat keine Schwächen und auch eine super In Ring Psychologie. Wenn man in der WWE in 15 Minuten in einer 2. Runde eines Turniers fast ein 5 Sterne Match workt, muss man es einfach drauf haben. Hat sein Können sowohl auf der großen Bühne wie WK gezeigt aber auch als Backyard Wrestler mit Raketen in der Hand. Ein unfassbarer Typ, den man nur lieben kann! Ich hoffe, dass er mittlerweile vollständig genesen ist und zeitig seine Maske ablegen kann, um ein weiterer Main Eventer für NJ zu sein, denn nichts anderes ist er. Hat verdient sowohl den IC als auch den Heavyweight Title in seinem Leben tragen zu dürfen, obwohl er eigentlich ein Junior ist! 10 Punkte für Ibushi und ich würde ihm auch 20 geben ;)"
Rating: 10.0
Sentiment: 0.305
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ParisTheSpiderwrote on 17.05.2017:[10.0] "Im Ring ist Kota Ibushi ja fast schon unerreichbar. Seine Mischung aus Strong-Style und High-Flying machen ihn zum absoluten Total Package. Wie gesagt, Finisher ist super, Charisma ist super und meiner Meinung nach hat er Topstar Potentzial"
Rating: 10.0
Sentiment: 0.21666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: koblandwrote on 24.04.2017:[10.0] "I'm pretty sure Kota Ibushi never stops thinking about wrestling, which has created this kind of reputation of a savant, which I think fits him perfectly. Whether he's working as Tiger Mask W in random NJPW matches or wrestling in god knows what stipulation matches in DDT, he always puts on a performance. He can fly with the best of them, he can strike with the best of them, he can sell with the best of them, it's just a matter where he is at any given moment. He always has marched to the beat of his own drum, for better or for worse, and that makes me love him even more. Could arguably be the ace of any promotion in the world, but has decided to work for the "Ibushi Pro Wrestling Research Institute, " something he could only get away with."
Rating: 10.0
Sentiment: 0.49
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Blood Pumpwrote on 07.04.2017:[9.0] "An amazing talent that hasn't quite cracked that glass ceiling but with how often he rams into it its really only a matter of time. Kota doesn't seem capable of having a bad match anymore and has gotten so much better from his past. Hes only barely below Ricochet to me and in all honesty that's probably not going to last much longer. Whether hes working in a one shot WWE tournament or under a Tiger Mask hes been the highlight of the night."
Rating: 9.0
Sentiment: 0.06000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TrevPuroFanwrote on 07.01.2017:[9.0] "Ibushi is a great highflyer. Really knows when to hit his spots and control a matchpace. His work in the CWC, putting on great matches with each competitor he faced, really proved to me that he's on a level of his own. Ibushi is great"
Rating: 9.0
Sentiment: 0.5666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: NastyYaffawrote on 01.01.2017:[9.0] "Kota Ibushi is a guy who elevates almost everyone he is in the ring with - incredible athleticism, great stiff strikes - he just brings it. His weak point is definitely selling though, as seen in his matches vs. AJ Styles & Hiroshi Tanahashi - some real bad leg selling in those. Other than that, he's definitely one of the best wrestlers in the world."
Rating: 9.0
Sentiment: 0.10952380952380955
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: SanthoshVNwrote on 09.12.2016:[9.0] "Kota Ibushi is a 14 year old veteran worked in DDT/NJPW. Dont even underestimate the guy by seeing his physique, because this guy can fly and hit you very hard. Best strikler apart from Nakamura and Shibata. Ibushi has the ability to connect with the audienmces very easily. This guy deserves to hold major titles of NJPW"
Rating: 9.0
Sentiment: 0.30666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: HeadCheesewrote on 07.12.2016:[10.0] "Kota Ibushi is one of the greatest high flyers, comedy wrestlers, strikers, and sellers of in pro wrestling history."
Rating: 10.0
Sentiment: 0.58
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: indyreviewswrote on 06.12.2016:[9.0] "I really enjoy Ibushi's in ring style, however, I think he needs to improve his psychology in order to earn a 10 point rating. He's fun to watch and incredibly talented, but I always feel that there's something missing. He's one of the best wrestlers in the world right now for sure, his psychology is just good - and to be great, your in-ring psychology should be great."
Rating: 9.0
Sentiment: 0.5285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TheWrestlingFanwrote on 12.11.2016:[10.0] "Ibushi is one of today's best wrestlers in my opinion. He can pull off some outstanding high-flying moves as well as showcase his kickboxing skills. Like Bryan Danielson said in CWC, "Ibushi is one of best wrestlers in the world regardless of the weight class. ""
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: DanielDementedwrote on 09.11.2016:[10.0] "This Man is one of the greatest most Under Appreciated Wrestlers of all time, He Should be a Future WWE/IWGP Champion,  any company would strive if Ibushi was their world champion, Kota Ibushi is one of the Best, You'll ever see."
Rating: 10.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: akm0wrote on 17.10.2016:[9.0] "Kota Ibushi is a strange guy. He could have been the next New Japan Ace, given the chance, but he didn't want that. He could have been IWGP Hvt. Champion by now, but he had other plans: he wrestled full time with two promotion for almost seven years, which is unbelievable, knowing what he does in the ring. As of now, Kota is one of the most complete wrestler in the world in the ring, having a freaking good striking (and look), a great high-flying ability (and the best Phoenix Splash in the business right now), a scary moveset and the ability to adjust to every style - CWC, CHIKARA, DDT, NJPW and so on. He's also a great tag team wrestler, with Golden Lovers being one of my favourite tag team ever. So why this guy isn't on the top of the wrestling world, at least in Japan? He just want to wrestle and discover new styles and experimenting - from Kaiju Big Battel and recently being Tiger Mask W to wrestling dolls, fighting with fireworks and the anywhere matches. I think that he doesn't really care about titles and such, but instead he looks to improve himself, breaking boundaries and build a legacy. The real question is what's next for Kota Ibushi? Hopefully more matches like the ones with Nakamura and Omega."
Rating: 9.0
Sentiment: 0.22244005994005994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: JokeyZockeywrote on 15.10.2016:[10.0] "Dieses kleine Energiebündel vereint Strong Style mit High-Flying, geht's eigentlich noch besser? Kota war für mich immer ein (Golden) Star bei NJPW, beim CWC hat er erneut seine Klasse bewiesen. Sein 5-Star-Match gegen Nakamura bei WK9 spricht Bände, diesen Mann kann man zu den Besten der Welt zählen! Im Ring ein Gott, Charisma auch sehr gut und seine Ausstrahlung als Mr. , , Ich flieg durch die Luft und stiff dich tot! '' ist 1A. Ein Star? Na klar!"
Rating: 10.0
Sentiment: 0.1578373015873016
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: J Kwrote on 04.10.2016:[10.0] "Der goldene Stern ist in meinen Augen absolute Spitze.  Großartig im Ring, die Kicks sind echt heftig und das highflying machen ihm nur wenige nach.  Er ist höchst charismatisch und hat im Cwc unglaublich gut gezeigt, dass er trotz zeitlichen Limits kein Qualitätslimit hat.  Das Halbfinale war match des Turniers und er war auch der beste Teilnehmer also auch Mann des Turniers.  Sei Stil ist einzigartig und es wird noch besser werden da er noch sehr jung ist er ist in meinen Augen das größte Wrestlingtalent der Welt."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Obermackerwrote on 13.09.2016:[8.0] "Guter Mann mit spektakulärem Stil aus Japan, einer der besten Cruiserweights von dort, auf jeden Fall besser wie Kenta."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Cleanerwrote on 06.09.2016:[10.0] "Was muss ich zu dem Jungen noch groß sagen? Schaut euch seine Matches an, hört euch seine Kicks an! Jetzt schon ein spitzenklasse Wrestler, bei NXT wird er sich noch weiter verbessern, ich erwarte ganz großes vom "Golden Star". Edit: Hat doch keinen NXT-Vertrag, sehr sehr schade"
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ErycK24wrote on 03.08.2016:[9.0] "Kota is great in the ring. He really is the full package, he's athletic he's a good ring technician he is quick and has impressive strength for his size. I really hope he gets signed to NXT then on to WWE."
Rating: 9.0
Sentiment: 0.511904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: The Chosen Onewrote on 28.07.2016:[10.0] "Fantastic wrestler. I usually hate the "Strong Style" fighting style but Kota Ibushi does it so well. He is also a very good high flyer and technical wrestler. Almost all of his matches are enjoyable like Vs AJ Styles, Vs Prince Devitt, Vs Low Ki for example. Overall this is one of the best wrestlers of all time."
Rating: 10.0
Sentiment: 0.26033333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Luv all wrestlingwrote on 06.07.2016:[10.0] "A golden star with many amazing matches to his name. He had a 5 star classic with a sex doll! His athleticism is nearly unmatched being able to work strong style, comedy, high flying or technical. His character arc feels pure and easy to root for. Really waiting for him to become the ace of ddt again, or wwe, nxt or njpw."
Rating: 10.0
Sentiment: 0.3041071428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Saphirwrote on 04.11.2015:[10.0] "Einer der besten in Japan, einer der besten der Welt. Ich habe nie ein schlechtes Match gesehen. Selbst die under/midcard Tagteam Matches sind wegen ihm gut anzusehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Six Three Timeswrote on 13.10.2015:[10.0] "Perhaps the greatest living high-flyer, and one of the most entertaining wrestlers I've ever seen. His aerial offense is unparalleled, his striking is great, and while Ric Flair may or may not have been able to have a compelling match with a broom, Kota Ibushi HAS had a wildly impressive match with a blowup doll. He can pull off a pitch perfect comedy match, and a proper 5 star match (see: Wrestle Kingdom 9) all the same. A true talent."
Rating: 10.0
Sentiment: 0.5375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Mizzle Assault Antwrote on 29.08.2015:[10.0] "Golden star! I've loved Ibushi for many years, and now that he is getting his chance in the upper levels of NJPW it's the perfect time for everyone to get on board. One of the best flyers working today, and a great worker when grounded as well. Sky's the limit for this guy, maybe literally!"
Rating: 10.0
Sentiment: 0.6535714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Izinwrote on 16.08.2015:[9.0] "An incredible talent. Has more than the ideal strength, agility, and speed for his size, and his moveset wows me again and again. Consistently delivers incredible matches and he's only on the way up from here."
Rating: 9.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: murasaki00wrote on 16.08.2015:[10.0] "Kota Ibushi is the type of guy that can make the worst wrestler on their worst day look like a million bucks.  Every time he enters the ring he looks like he is fighting for his life."
Rating: 10.0
Sentiment: -1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Swenson 238wrote on 09.08.2015:[10.0] "Puuh, was sagt man nach den ganzen Kommentaren zu Ibushi noch? Er ist einfach einer der komplettesten Wrestler derzeit und kann jeden Stil mitgehen, großartiger High-Flyer, Techniker, Striker, ... Ibushi ist ein Garant für hochklassige Matches, was er auch gerade im aktuellen G1 Climax wieder verdeutlicht. 10 Punkte sind mehr als verdient, ich hoffe, er schafft es bald an die Spitze und wird mit dem IWGP Heavyweight Title belohnt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kevin434wrote on 02.08.2015:[8.0] "Der Mann ist die Zukunft, für mich der zweitbeste Highflyer nach Neville, liefert besonders dieses Jahr extrem viele gute Matches ab, entwickelt sich zum immer besseren Worker, sein einziges Problem ist das selling, das bekommt der einfach nicht in den Griff, aber darüber hinweggesehen ist er ein klasse Wrestler der mehr kann als nur Spots."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Viper99wrote on 29.07.2015:[10.0] "Ein Grandioser Wrestler. Er kann alles von den akrobatischsten High Flying spots zu Stiffen schlägen zu starkem Mat Wrestling! Ein Problem habe ich trotzdem mit ihm. Er sellt die gegen ihn gezeigten aktionen nicht so gut. Beispielsweise im Match gegen Styles welches wirklich gut war, aber Styles bearbeitet Ibushis Bein und trotzdem zeigt Ibushi seine Spots als wäre nichts gewesen. Trotzdem ein starker Worker der immer für ein gutes Match zu gebrauchen ist. EDIT: Sein Sellingproblem ist immernoch vorhanden was man im G1 gegen Tanahashi gesehen hat. Trotzdem kriegt er von mir das Update von 9 auf 10. Er hat nämlich noch mehr als vorher bewiesen was er für ein großartiger Wrestler ist. Im G1 bisher bockstarke Matches gegen Styles, Shibata und Tanahashi gehabt. Selbst sein Match gegen Gallows war für Gallows verhältnisse gut."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Matzinhowrote on 26.07.2015:[10.0] "Hat den Körperbau und den Wrestling-IQ, um sich dem Stil jeder Liga der Welt anpassen zu können - das hat er seit seinem Wechsel zu NJPW eindrucksvoll bewiesen. Vom Gokku-Wrestler und DDT-Ace zum ambitionierten IWGP Junior Heavyweight Champion und schließlich Heavyweight-Title-Aspiranten, mit ausgewogener Offensive, cleverem Selling, ausgeprägtem Sinn für Matchaufbau und dem perfekten Gespür für Gelegenheiten, in denen das Publikum heiß gemacht und zum Staunen gebracht werden muss, hat Ibushi in den vergangenen Jahren eine einzige Erfolgsgeschichte geschrieben, die garantiert im Gewinn des zuletzt genannten Gürtels münden wird. Aktuell einer der angesagtesten Wrestler der Welt und meines Erachtens auf dem Weg an den Gipfel seines Schaffens."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: JuliTheCage87wrote on 22.07.2015:[10.0] "Rein von der Variabilität und vom Moveset für mich der beste Japaner aller Zeiten. Liefert jedes Mal eine Leistung auf dem Niveau der absoluten Extraklasse ab. Gerade sein Match gegen Nakamura (WK9) wird in die Geschichtsbücher eingehen. Immer zuverlässig und eine Garantie für großartige Matches. Kann auch ein hervorragender Heel sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kenshin Uesugiwrote on 21.07.2015:[8.0] "Man muss neidlos anerkennen das Ibushi nicht nur bei DDT ein Star ist, sondern in der gesamten Junior Heavyweight Szene. Und ja einige Spots und der Overkill dieser bereiten vielen Kopfschmerzen auch mir, besonders wenn er nicht bei NJPW ist. Aber das Publikum findet es toll und auch wenn mir die Nonsen Moves nicht gefallen, sauber und spektakulär sind sie. Das der Junge auch mehr kann das sieht und weiß man eigentlich. Ein Wrestler für eine ganz bestimmte Sparte an Zuschauern, das kann man gut oder schlecht finden. Edit: Ein absolut verdiente Aufwertung für den NJPW Heavyweight Ibushi, der nun dauerhaft zeigt das eben doch anders kann, keine Nonsens Move oder Overkill, gute und sinnvolle Einbettung seiner schönen Highflying Aktionen und wenn es passt Giftigkeit in seinen Strikes. Wenn er das dauerhaft halten kann und nur ab und zu in seine alten Muster fällt, könnte er noch einige Showstealer fabrizieren. Damit würde ihm eigentlich bei NJPW alles offen, was sich seine Fans so wünschen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Val Cdnwrote on 09.03.2015:[10.0] "Definitely one of the best wrestler in the world (top 20 in my opinion). Kota ibushi is very agile (he is the best at doing the Phoenix Splash) and a good stricker too. This man is my pick to win the New Japan Cup 2015. I want to see a rematch of the last Wrestle Kingdom ! Shinsuke Nakamura (c) vs. Kota Ibushi was sooooo good !"
Rating: 10.0
Sentiment: 0.5661363636363637
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Ganymedwrote on 04.03.2015:[7.0] "Junior Wrestling bzw. die meisten Junior Wrestler ist/sind in meinen Augen eher schlecht. Man kann es/sie sich vielleicht kurzzeitig anschauen, aufgund des oftmals spektakulären Wrestling Stils, aber auf längere Zeit ist das leider nichts. Popcorn Wrestling par excellence, spektakulär, wird aber auch rasch langweilig. Ausnahmen gibt es eher wenige. Ibushi ist eine halbe Ausnahme. Zwar bringt er oftmals ebenfalls Aktionen nur um der spektakulären Action willen. Da er meistens in wichtigen Matches und nicht wie andere Juniors in Openern steht, ist das meist unpassend. Auf der anderen Seite jedoch sind seine Aktionen nochmals eine Spur spektakulärer als die anderer Juniors, wodurch er sich wiederum von der Masse abhebt. Von daher kann ich die unnötigen Aktionen bei ihm eher verschmerzen und gebe ein durchschnittlich. Edit: Nach Ansicht einiger seiner letzten Matches, wo er die etwas härtere Gangart gewählt hat, vergebe ich eine 2-."
Rating: 7.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: eldenaaaaawrote on 28.02.2015:[10.0] "Currently rising the ranks of New Japan, Ibushi is a stalwart for the DDT promotiom in Japan. A 3x IWGP Jr. Heavyweight champion and one of the most exciting wrestlers going today."
Rating: 10.0
Sentiment: 0.23409090909090907
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: GoToSleepwrote on 03.02.2015:[8.0] "Nach Ricochet und vielleicht Kalisto einer der besten Highflyer der Welt, der jetzt aber Richtung Heaviweight Division geht, was mit gut gefällt. Gegen Nakamura hat er gezeigt, wie gut das funktioniert, sowohl im Ring als auch von das Storytelling als arroganter Heel während einem Match. Bleibt hoffentlich in Japan und kann dann gerne das nächste mal Nakamura besiegen. Seinen Look sehe ich nicht wirklich als Problem an, da er ja zeigt das er nicht so ist wow er aussieht."
Rating: 8.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: llboxingwrote on 28.01.2015:[8.0] "Awesome high flyer. Provides thrilling highlight reel spots in every match.  Good looking and good physique.  Probably the best junior heavyweight in New Japan and trying his hand at the heavyweights now.  With his matinee idol looks and chiseled physique, he certainly looks like a main eventer.  Has shown wicked intensity in recent months.  Refuses to be helped to the back after he loses.  Also a great striker and even has good power moves for his size. The downside? He needs to improve his promos.  Also at age 32, one has to wonder how much longer he can continue to rely on being a spot monkey.  He needs to be more well rounded and develop his ring psychology. He's also a bit injury prone and should tone down his style.  His relatively small size might keep him away from main event status but hopefully not.  His high quality performances and great look might be enough to break the glass ceiling."
Rating: 8.0
Sentiment: 0.2999316142794404
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: dj22319wrote on 02.06.2014:[10.0] "Recently started watching puroresu... and man oh man, I have never been so impressed. Especially with this performer, Kota Ibushi, the "Golden Star". His match with Ishii at the Back to the Yokohama Arena event was astounding. Not only is he a fantastic aerialist, but he can dish out a lot of strength and toughness with heavyweights like Ishii."
Rating: 10.0
Sentiment: 0.2875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: 8BitLegendwrote on 26.05.2014:[9.0] "Guter Wrestler mit Everybodys-Darling-Look. Sieht so nett aus, dass man fast vergisst wie hart er einstecken und austeilen kann, dabei aber auch noch die Highflyer-Palette ordentlich abdeckt. Sehr gutes Allround-Paket."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: TAWPTierJustinwrote on 18.03.2014:[10.0] "I've started to get into watching New Japan Pro Wrestling for a month now and within that short span of time of watching their product, Kota Ibushi has really caught my attention in such an amazing way! I love his moniker being known as the Golden Star! That nickname fits him so well! After watching his incredible match he had with Okada earlier this month, that match confirmed to me that Ibushi is not only one of THE best talents New Japan has on their roster right now, but he's one of the best Japanese wrestlers I've ever seen period! From his Phoenix Splash to his great high flying abilities to his technical wrestling skills to his unbelievable innovative offense that leaves you marking out if you've never seen anything like what he can do before, everything this guy does in the ring is tremendous and looks perfect as hell!"
Rating: 10.0
Sentiment: 0.3617619518162996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: DeathPoolwrote on 30.01.2014:[10.0] "The hardest working man in wrestling today is also the greatest high flyer, Kota Ibushi! I don't like Prince Devitt but even he could have a great match with Ibushi, along with the five star match Ibushi had last year with the great Minoru Suzuki."
Rating: 10.0
Sentiment: 0.5599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: apc24wrote on 17.12.2013:[10.0] "Great all-around wrestler. He can fly, strike, he can be technical and even has a good arsenal of power moves. Very fun to watch and is one of the best Jr. Heavyweights in the world."
Rating: 10.0
Sentiment: 0.5557142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Solertiuswrote on 21.09.2013:[10.0] "Einer der besten Highflyer, die es gibt. Zeigt super Moonsaults, Spingboard-Aktionen und vieler individueller Akrobatik, die sich in Worten nicht beschreiben lässt. Zusätzlich ist Ibushi neben Masato Yoshino einer der schnellsten Wrestler die es gibt... vor allem Ibushis Mixed Martional Arts Kick- und Schlagkombinationen zeigen das sehr deutlich."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: OmegaIbushiwrote on 29.10.2012:[10.0] "I think that Kota Ibushi is the best Junior wrestler all around the world.  Fast, strong, athletics.. He is one of my favourite."
Rating: 10.0
Sentiment: 0.5444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Spearmanwrote on 23.06.2012:[4.0] "Kota Ibushi ist schlichtweg nicht mehr gut. Es gibt einfach so viel mehr gute Juniors in Japan, sodass man Ibushi einfach nicht mehr braucht. Außerdem ist sein Selling nicht ausreichend."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Excellence of Executionwrote on 08.10.2011:[7.0] "Lebt wie sein Rivale Devitt von seinem Milchbubie-Pretty Boy-Image. Doch mehr noch als dieser neigt er zu einem Spot Overkill. Was daran besonders nervt, ist dass diese Spots oft dieselben und derart spezifisch sind, dass sie mit der Zeit einfach extrem unglaubwürdig wirken und man sich sehr schnell daran satt gesehen hat. Insbesondere wenn sich diese Spots immer wieder mit wehenden Fahnen ankündigen. Wenn er in dieser Hinsicht langsamer treten würde - denn weniger ist in der Tat oft mehr - dann würde ich ihn vermutlich besser bewerten. So finde ich ihn schon ziemlich overrated. Mir fallen auf Anhieb etliche Juniors vergangener und gegenwärtiger Tage ein, die ich weit besser finde als ihn: Taguchi, CIMA, Lyger, Kanemoto, Marufuji, KENTA und ja - auch Devitt ist, denke ich, der bessere von beiden. Er übertreibt es einfach nicht so."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: ShakDragoonwrote on 05.10.2011:[9.0] "Äußerst begabter Junior Heavyweight, der sich in den letzten Jahren auch die Anerkennung von New Japan Pro Wrestling erarbeiten konnte. Sein Titelgewinn dort hat mich sehr gefreut. Ich hoffe, er bekommt einen erneuten Shot, wenn er wieder fitt ist."
Rating: 9.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kartmanwrote on 06.08.2011:[10.0] "Great Junior Heavyweight wrestler. He can do everything, and he does it well. One of my favourites wrestler."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Top-Hardywrote on 29.06.2011:[9.0] "Klasse Highflyer der mich irgendwie immer aufs neue zu begeistern weiß. Wird mir im Gegensatz zu anderen nicht langweilig und gefällt mir eigentlich in jedem Match. Verdienter Sieger vom BOSJ Tunier und zeigt dort v. a. im Finale auch dass er durchaus in der Lage ist ein klasse Match zu worken und nicht nur ein reiner Spotwrestler ist."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Mick Funkwrote on 16.06.2011:[7.0] "Wenn man ihn sich oft anschaut ist er nur noch 7 Punkte wert, vielleicht irgendwann auch noch weniger... da gibts schon weit bessere Japaner."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Eddiewrote on 25.04.2011:[7.0] "Kota Ibushi ist ein meistens hervorragender Spot-Wrestler, der es allerdings manchmal übertreiben will und deshalb auch oft seine Spots vergeigt. Aufbau hat er in so gut wie keinem Kampf, was Submissions betrifft, aber immerhin kann er richtig übel kicken. Insgesamt pendelt er sich mit seinen stiffen Kicks, den coolen Spots und seinen High Impact Moves, die schön aussehen bei 7 Punkten ein."
Rating: 7.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Hu-Manwrote on 24.02.2011:[10.0] "Ibushi ist für mich der Best Flying Wrestler 2010. Er haut mich mit seinen Aktionen immer wieder aus dem Stuhl und begeistert mich immer wieder aufs neue."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Switchbladewrote on 22.06.2010:[10.0] "Bester Wrestler momentan bei DDT. Starker High-Flyer, der seinen eigenen Stil hat und deshalb einzigartig ist. Neben dem High-Flying auch noch sehr stiff. Sollte mal nach Deutschland zur wXw kommen;)."
Rating: 10.0
Sentiment: 0.017857142857142863
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: RickRollwrote on 21.03.2010:[9.0] "Jaja, Kota Ibushi ist schon was tolles. Ich muss sagen, wer es schafft mit einer GUMMIPUPPE ein ansehnliches Match zu zeigen, kann nur gut sein. Ibushi ist äußert Unterhaltsam, das hat man vorallem beim Match gegen YOSHIHIKO gesehen und ich finde das er bei DDT sehr gut aufgehoben ist. Er ist ein starker High Flyer, der aber auch was von Hard Hitting und Innovation versteht. Trotzdem, für eine Höchstpunktzahl reicht es nicht, da, wie es hier schon häufiger gesagt wird, es so aussieht als ob Kota seine Spots einfach "abspulen" würde."
Rating: 9.0
Sentiment: -0.06583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: rv27wrote on 08.03.2010:[10.0] "Gefällt mir einfach sehr sehr gut. Kann auch nicht genau sagen warum. Er hat hald einfach das gewisse Etwas."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Marcywrote on 22.12.2008:[9.0] "Das was ich bisher von ihm gesehen habe hat mich absolut umgehauen. Die Tag Matches mit Marufuji und Nakajima gegen die Briscoes haben mich vom Hocker gerissen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Baszdmegwrote on 02.09.2008:[8.0] "Klasse Junge, der unbedingt mal zur wXw kommen muss."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: theflo438wrote on 06.07.2008:[9.0] "Unglaublich was dieser Mann alles drauf hat. Z. B. einen 450 Splash vom Apron oder ein immer wieder perfekter Phoenix Splash. 9 Punkte für DAS Puroresu Junior Heavyweight Talent"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Heatwrote on 28.05.2008:[10.0] "Der rockt einfach alles weg, bin total begeistert von dem Mann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Kaffoe 666wrote on 24.03.2008:[10.0] "In meinen Augen noch vor KUDO & HARASHIMA der coolste Typ bei DDT! Wird durch ROH wahrscheinlich noch einiges mehr ins Internationale Spot-Light rücken!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Texas Tornardowrote on 12.12.2007:[8.0] "Ähnlich wie Taiji Ishimori ein richtiges Puro Talent!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Mediwrote on 11.09.2007:[8.0] "Kann sich wirklich sehr ansehlich bewegen und teilt gut aus."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4588&gimmick=Kota+Ibushi
Comment: Rob Van Duesenschrauberwrote on 09.08.2007:[8.0] "Beweglich, Stiff, intensiv. Der Junge hats echt drauf, ich würde mich wahnsinnig freuen, wenn NOAH ihn in Zukunft öfter booken würde."
Rating: 8.0
Sentiment: -0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Chekerwrote on 11.01.2025:[10.0] "Anything I could possibly say about Muto has already been said. He's an all time great. Throughout his career, he did wrestling, he did highflying and he did brawling, and he was excellent at all of it. A lot of people sleep on the 90's New Japan heavyweight scene, but it was great, and Muto was a big part of it. In my opinion, he overstayed his welcome as an active competitor by quite a few years (I was specially dumbfounded at those last few months he had in NOAH), but I'm not going to let that drop the rating."
Rating: 10.0
Sentiment: 0.28001443001443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Zak22wrote on 29.07.2024:[8.0] "I find the great Muta to be hit and miss but at his best Muta was incredible and a damn master in the ring. I also think Muta moved the best, sliding across the ring. Muta had charisma and he was a great in-ring worker on his day but sometimes I just found him to be... ok."
Rating: 8.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Makai Clubwrote on 24.03.2024:[10.0] "My old comment, made 6 years ago (wow 6! ) is so ashamdely misinformed and bad. It was purely formed on his reputation and the limited matches I had seen him in. After watching and combing through most of his peak as a wrestler, taking my time observing his strengths and weaknesses, I have learned to appericate how amazing Muto was. The Great Muta persona leaves something to be desired and often served to allow Muta to rest his body and experiment with how little he could do. But there are good times to be bad. His ownself was the best version. Underrated techncian, very athletic, super charismatic and a HUGE STAR."
Rating: 10.0
Sentiment: 0.23835565476190482
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: TripleCrownwrote on 25.11.2023:[10.0] "One of the greatest wrestlers ever. Muto knew when to reinvigorate himself, whether it be The Great Muta or shaving his head and embracing getting older, the man knew exactly what to do. He could put on fantastic matches, great on the mic, had some insane looking masks, the guy just had everything you could ever want in a professional wrestler."
Rating: 10.0
Sentiment: 0.3145833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: JediSaiyanMaster1203wrote on 18.11.2023:[10.0] "One of my all time favorite wrestlers, whether he's Keiji Muto or The Great Muta, he's always been a great worker. What made Keiji so great is that he worked equally well as both The Great Muta and Keiji Muto, showcasing his incredible character work under the Muta gimmick, not to mention having him managed by Gary Hart was awesome! He was doing amazing tag team matches in the 1980s in NJPW, was awesome as a heel in WCW feuding with the likes of Ric Flair and Sting, had incredible runs in NJPW, AJPW and NOAH in the 2000s until his retirement. Overall, Keiji Muto is a legend in the professional wrestling business in every sense of the word. He was a great wrestler, an incredible worker, played his characters to perfection, invented sick moves like The Shining Wizard, found ways to remain relevant, successfully reinvented himself throughout his career, what more can I say?"
Rating: 10.0
Sentiment: 0.5703007518796994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: CMFunk007wrote on 27.08.2023:[9.0] "The Great Muta is one of my favorite wrestlers of all-time. Whenever he's booked, you knew you were going to get his best. Starting out in New Japan Wrestling as Keiji Muto, he eventually made his way to the United States in World Class Championship Wrestling, feuding with Kevin Von Erich before moving on to WCW to feud with Sting and Ric Flair. Being billed as the son of The Great Kabuki as The Great Muta, he was known for his high-flying technique and spraying green mist, he partnered with Terry Funk, The Dragonmaster, and Buzz Sawyer with Gary Hart to form the J-Tex Corporation. Eventually dominated by The Four Horsemen, Muta would go back to New Japan and eventually join the New World Order and feud with Masahiro Chono over the faction. He would make sporadic appearances in WCW, joining Raven and Vampiro's Dark Carnival stable, but he stayed mostly in Japan the last decade of his career. A couple of times, as Keiji Muto, he would get frustrated during his match, go to the back, and come out as Great Muta. I guess he was kind of like Mick Foley and Finn Balor in that regard with his character."
Rating: 9.0
Sentiment: 0.28661616161616155
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: UltimoMutawrote on 26.08.2023:[10.0] ""My favorite wrestler of all time. A true master in the ring. Muta/Muto was such a brilliant performer, literally wrestling as 2 different characters for most of his career. His Keiji Muto work in the 90's is technically sound and athletic while his Great Muta stuff in the 90's is some of the best character work I've ever seen. Already a pro wrestling legend, he was able to reinvent himself in the 2000's. A new look and a new style all while creating one of the coolest finishing moves of all time; The Shining Wizard.""
Rating: 10.0
Sentiment: 0.4352272727272728
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Giantfan1980wrote on 04.06.2023:[9.0] "What else can be said about Muta? When Muta came across the pond to the USA, he would wrestle a more relaxed style so if you wanna see him at his best, you gotta watch his NJPW and AJPW to get the full Monty. Muta hit a "lazy" point in the late 90's/early 2000's but then he reinvented himself and here we are in 2023. Typical Jim Crockett/WCW, they never really knew how to capitalize on him when he first arrived in the late 80's. US promotions didn't seem to "get" Japanese style wrestlers back in the day."
Rating: 9.0
Sentiment: 0.08939393939393937
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: SIRasdf23wrote on 13.04.2023:[10.0] "What is there left to say about Muto that hasn't already been said? He is one of the all-time great legends, he's one of the guys that many modern and future Japanese wrestlers point to when they're asked "Who inspired you to become a pro wrestler? ""
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: TheAmazingMrXwrote on 16.03.2023:[10.0] "Keiji Muto is without the shadow of the doubt, one of the greatest wrestlers of all time. His popularity went beyond the rings, he bacame part of the popular culture. His "Great Muta" persona is one of the most influential in the pro wrestling industry, emulated by many wrestlers. He earned the nickname of the "Natural Born Master" because of his superb skills and innovations such as the Shining Wizard and the Mutal lock which are used by many wrestlers around the world. He popularized the Moonsault, the Dragon screw leg whip and the Poison Mist. Another legacy is the "Muta scale", which rates the bloodiness of matches. His induction to the WWE Hall of Fame Class 2023 is well deserved. Keiji Muto is one of my favorite wrestlers of all life."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: benh2wrote on 12.01.2023:[9.0] "Muto is undoubtedly one of the greats but I've never really enjoyed him as much as I think I wanted to. His early work was pretty groundbreaking as he was doing stuff that others weren't at that time. I never really caught on to the Muta gimmick in its prime and I enjoyed it more as a nostalgia thing in his later years. He really got interesting for me around the turn of the century when he had a few years of genuine greatness despite already suffering with his knees. I don't want to say he's outstayed his welcome in his twilight years but some of the spots he's been put into (demanded? ) have been a bit unnecessary."
Rating: 9.0
Sentiment: 0.1785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: TheOneAndOnlyCactuswrote on 10.01.2023:[10.0] "His legend extends beyond what his resume reads. The Pro Wrestling Genius brought explosive dynamism to the heavyweight scene like no one else before. He could do so much between the ropes, not only in terms of moves, but also how to captivate a crowd, either as himself, or as his alter ego. He was an iconic figure of Puroresu's Golden Age for a reason, standing out amongst the pack as part of the Three Musketeers from NJPW. An amazing wrestler with an amazing career, one of my all-time favorites."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: MainEventMasterwrote on 09.12.2022:[10.0] "Keiji Muto is the ultimate pro wrestling legend, and it is a shame most American do not know about the Keiji Muto persona, his character work as the Great Muta was great too."
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Jaedynr5wrote on 07.11.2022:[10.0] "Mutoh/Muta is one of the best wrestlers to ever do it, phenomenal in ring, two very interesting and compelling characters, finding ways to innovate wild and fun moves even up to now as a near 60 year old man, the entire wrestling world is going to miss him and his crativity in everything he did when he retires in the spring"
Rating: 10.0
Sentiment: 0.33888888888888885
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Conquistador37wrote on 05.11.2022:[10.0] "Awed American audiences in the late 80's. So exciting and crisp, took "The Great Kabuki" style gimmick to it's highest potential. I was at a house show in the midst of the J-Tex angle...in a six man match; the faces would repeatedly crotch Muta. Finally, outside of the ring he was crotched over the barricade. He blew blue mist that moment. I was in stitches, someone had to help him with that joke but, damn. a short cut DEEPER into my heart he went. Went on to become GOD TIER in the world of professional wrestling. A gift to mankind. Why can we only rate him a 10?"
Rating: 10.0
Sentiment: 0.10454545454545455
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Kungwrote on 30.07.2022:[10.0] "An absolute legend of the game who will certainly be missed once he retires in the spring next year."
Rating: 10.0
Sentiment: 0.0035714285714285657
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: shiningwiz01wrote on 21.07.2022:[10.0] "Charismatic legend and innovator, fantastic all-rounder, and one of the greatest of all time who is revered in both the East and the West. Has been written off so many times, only to prove detractors wrong that it? s now essentially a parody. Despite his perpetually destroyed knees, he finds ways to adapt his style and reinvent himself, and has had classic matches in the 80s, 90s, 00s and 10s. Obviously well passed his best now, but still a legendary figure and probably the most famous active wrestler in Japan. Detractors are plentiful, especially certain western fans on forums for not ? putting over? the guys they want him to, but his legacy speaks for itself. Thankfully retiring in 2023, which is probably a decade overdue, but still manages to get the Japanese fans into his matches like few ever have been able to. A true wrestling legend."
Rating: 10.0
Sentiment: 0.2839002267573696
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: texasyoshwrote on 27.04.2022:[10.0] "Wrestling legend. Fantastic technician until his knees went out, which led him to change his style more as he aged. And even when he aged, he still remained a big draw no matter if he was in NJPW or AJPW. He also had a storied career in the US, most notably his feud with Sting."
Rating: 10.0
Sentiment: 0.24285714285714288
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: killowenskillwrote on 24.03.2022:[10.0] "Muto is a test of love for Japanese wrestling, in my subjective opinion. Anyone who claims that Muto doesn't have many great matches, or he doesn't represent some significant era, literally signs his incompetence and blindly following a million biased reviews of tendentious wrestling journalists. Muto is indeed one of the last cult legends that are being studied by American and European fans, but the reason is solely that people covering wrestling at a time when the Internet wasn't yet so well spread imposed a love for the Pillars of AJPW and some now NJPW legends, and when it takes long hours to download pirated videos, priorities are set in favor of the performers whom Meltzer and others like him praise the most. Muto is not included in this category for one simple reason: he is not a man of one role, and his influence on the industry wasn't limited to matches where he repeatedly jumped over his head. Judge for yourself, Keiji is one of the few Japanese wrestlers who was well known in the United States and who objectively achieved great success there. Yes, in the character of the Great Muta, yes, not thanks to some big matches, but there were a great many attempts to push mystical characters, and only Muto, the Undertaker, and, probably, Sting achieved success. For Japan, Muto is a true legend, he is a student of Antonio Inoki, who skillfully promoted his mystical appearance in an era of excessive sports orientation and repeatedly closed the show with his matches. Then he became disillusioned with Inokism, and made his debut in AJPW, becoming one of those valuable people who didn't let the promotion die, twice owning the main championship, and the second reign was accompanied by a severe knee injury, but Keiji chose the promotion and its success, not his own health. 20 years have passed, but the priorities are still the same, and having such facts, it's funny to read that a person who owned all the main and tag team Japanese titles doesn't differ in important reigns, given that every Muto race with a championship is a help to the promotion in terms of media power, and this factor is simply undeniable. As a result: Muto is an incredible wrestler who is consistent and logical in his standard appearance, and completely opposite within the character of the Great Muta. Keiji has remained relevant for 37 years of his career, and for the mass audience this remains unchanged. His matches still attract support, and Muto is probably the only wrestler on the planet who can make it interesting and energizing to be in a five-minute submission. It's sad that the mood of the community doesn't allow you to enjoy EVEN the old matches of this guy, creating the appearance of something shameful, self-deception, but Muto provides an excellent alternative in the era of fast food wrestling in all areas, and I remember any of his matches much better than what the modern main scene offers. My favorite male wrestler after Danielson, Ishii and Tenryu."
Rating: 10.0
Sentiment: 0.23530444964871194
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: GriffinXwrote on 19.01.2022:[10.0] "Just based on what he did at his peak and what he's meant to wrestling alone earns him a 10. Yes at 59 with kness that are fine powder he's not the greatest in ring worker anymore. But much like Terry Funk the passion is still there. And of course his ability be the heroic Keiji Muto and the evil Great Muta both so well should be worth a 10 rating."
Rating: 10.0
Sentiment: 0.3452380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Wrestling Foreverwrote on 13.01.2022:[10.0] "Absolute Legende und einer meiner Lieblings Wrestler. Egal unter welchen Gimmick aber besonders gefiel er mit als maskierter Great Muta. Inzwischen ist er sehr alt geworden aber trotz Verletzungen immer noch fit. Das zeigt er einfach bei NOAH."
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: KonamiSuissewrote on 11.01.2022:"Keiji Muto is still an incredible draw and relevant asset to the Japanese scene in 2022 at the age of 59, a man who has managed to reinvent himself countless times, he is truly, in my opinion, the greatest of all time when it comes to puroresu."
Rating: No rating found
Sentiment: 0.45999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Den003wrote on 30.12.2021:[7.0] "This is a good, quite agile wrestler with his own chips. However, this is not enough to be considered the upper class. As for me, he is overestimated. But I can put him 7"
Rating: 7.0
Sentiment: 0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: IBladeDailywrote on 20.10.2021:[10.0] "Muta/Muto is one of the greatest to ever lace up a pair of boots. With almost no command of English, he got over with American audiences and was at one time considered for a WCW World Title run. He has managed to stay relevant internationally his entire career. He also had some of the most unique moves and movements of any wrestler I've seen. Great Muta was the first person I ever saw wrestle in WCW (against Flair on Saturday Night in '89) and immediately grabbed my attention. He's won every major Japanese heavyweight title, carries himself as a star, and can STILL work, even in his 60's. Pro wrestling simply wouldn't be the same without the influence of Keiji Mutoh, I don't think there's a better endorsement than that."
Rating: 10.0
Sentiment: 0.25916666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: BrayanLaPrewrote on 23.07.2021:[10.0] "One of the greatest and most important wrestlers of the past 40 years. The Great Muta opened a significant number of doors for Japanese wrestlers looking to break into the United States while playing a pretty significant role in raising the profile of Jim Crockett Promotions. In Japan specifically, he conquered virtually every promotion there was to conquer. 4x IWGP Heavyweight Champion, 3x Triple Crown Heavyweight Champion, and even a former GHC Heavyweight Champion. A true character whose charisma and in-ring prowess made for a legendary combination. A five-star, 10 out of 10 wrestler."
Rating: 10.0
Sentiment: 0.4000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: AndoCommandowrote on 04.05.2021:"Not someone I really click with when watching his stuff. Though I will say this: His impact? Undeniable. His influence? Overwhelming."
Rating: No rating found
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: ProWrestlingGuy316wrote on 14.04.2021:[7.0] "In den 90ern einer der besten Wrestler der Welt, auch in den 00er- Jahren stark, obwohl er schon damals Knieprobleme hatte. Leider ist Muto aber weiterhin in den Ring gestiegen und es wurde mit der Zeit immer unangenehmer, ihm zuzusehen. Mittlerweile ist er ungefähr so mobil wie der Great Khali und kann geradeso eine Handvoll Moves ausführen. Das macht es umso unverständlicher, warum er vor Kurzem GHC Heavyweight Champion wurde. Na ja, Noah lernt einfach nicht aus seinen Fehlern."
Rating: 7.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Khalid Acewrote on 09.03.2021:[7.0] "I know Keiji Muto is way better than my rating but I rate active wrestlers based on their current form."
Rating: 7.0
Sentiment: 0.12222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: ChopChopChopwrote on 20.02.2021:[10.0] "Strong contender for greatest pro-wrestler in history, the man literally was the most over worker everywhere he went. Who other than him won the NWA World title as well as the 3 major belts in Japan ?"
Rating: 10.0
Sentiment: 0.37416666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: RobbyUpgradewrote on 22.01.2021:[10.0] "Nearly 4 decades after his debut and Keiji Mutoh is still battling in the squared circle. Whether it? s his run in the NWA/WCW in 1989, his legendary main event status in New Japan during the 90s, his resurgence and style change in All Japan during the early 2000s, or his current position as the veteran with something to prove, Keiji Mutoh/Great Muta has cemented himself as a GOAT-level wrestler who deserves even more respect than he gets."
Rating: 10.0
Sentiment: 0.2503787878787879
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Jetlagwrote on 28.08.2020:[5.0] "Wahnsinnig überbewerter Wrestler, der schon in den 90ern vor allem von seinem Charisma und seiner Overness lebte, während er im Vergleich zu anderen japanischen Stars seiner Zeit eher lasch rüberkam. Als dann Glatzen-Mutoh kam, wurde das ganze mit dem Shining-Wizard-Overkill und den ewig gleich geführten Matches schon arg penetrant. Übel, dass sich heute noch junge Wrestler für ihn hinlegen müssen."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Fayzalwrote on 15.08.2020:[9.0] "My Favourite Japanese wrestler of all time, He had this amazing Mystique about him and just Oozed charisma without needing to say a single word. I have gone back and watched alot of his matches and he is one amazingly complete wrestler and with all his injuries forcing him to change up his in ring work he still continued to put on classics. He is one of 2 guys to win the G1 as champion with the other being Kensuke Sasaki, speaking of the G1 he has had some of the best matches in the history of that tournament with Ric Flair, Vader, Chono, & who I think his best Rival was Shinya Hashimoto, whos chemistry levels with Muta was off the charts. His multiple feuds with Genichiro Tenryo weather it was in AJPW or WAR the feud always managed to stay Important and Compelling for 7 years. Sadly his time as a promoter hasn't been the best with alot of weird shows filled with lackluster matches and baffling booking decisions which has him drop from a 10 to a 9 for me."
Rating: 9.0
Sentiment: 0.27522321428571433
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Ma Stump Pullerwrote on 11.08.2020:[10.0] "Sensational wrestler. Muto was one of those wrestlers that comes every so while or so that just astounds in all ways. In his prime, he was a high flying technical wizard and one of the best NJPW had to offer, and was rightfully bumped as one of their top guys. Even when injury forced him to modify his style, he still managed to pull off some amazing matches with his invented Shining Wizard. Despite being slower, he made every move of his unique and also fluid: no one really could go quite the way he could in the ring, with a mastery of ring psychology and actually doing smart, logical moves in a match (like consistently targeting the legs to weaken them for his finisher) rather than just jump all over the place. The Great Muta gimmick is also arguably the most over and intriguing masked gimmick ever, with him even getting over in the US, despite being far from the conventional wrestler they were used to seeing. It just shows how great Muto was at getting people invested in him as a wrestler and as a character. This proves to be the case even in his mid 50's, he's still a major draw and is massively over regardless of the limitations that come with his age (though he can actually still go). His influences on wrestling as a whole can't be denied, and the successors of his flashy style (Tanahashi and many more) continue to showcase his entertaining legacy of some of the most captivating wrestling around."
Rating: 10.0
Sentiment: 0.27611235119047617
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: ShooterMcShootwrote on 18.11.2019:[10.0] "When I was a young child in about 1992, The Great Muta scared me to death. The taped fingers, facepaint and green mist was enough to properly terrify a four year old me. To this day, whenever I think of the term "Japanese wrestler", the first image that pops into my head is Muta. I can't rate him any less than a ten."
Rating: 10.0
Sentiment: 0.08833333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: jajt1989wrote on 14.10.2019:[7.0] "His stuff in wcw compared to japan is insane, its like when he was in america he just didnt put in as much effort as to when he was in japan but even in saying that he is extremely out of this world when it comes to his in ring skill and even his psychology and mind games"
Rating: 7.0
Sentiment: -0.30833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: PuroresuLoverwrote on 25.05.2019:[10.0] "My favorite Puroresu Legend! Keiji Mutoh is one of the best and simply the GOAT. He had everything to be a Main Eventer and an company's ace, he really was the Natural Born Master."
Rating: 10.0
Sentiment: 0.34861111111111115
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: waddictedwrote on 30.04.2019:[10.0] "One of the best (and my personal favorite) ever. Inovative, interesting and really really good wrestler in general. His facepaint is also legendary. The biggest compliment for him, is that nothing about him is forgettable."
Rating: 10.0
Sentiment: 0.40625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: JustAWrestlingFanwrote on 25.04.2019:[10.0] "One of my all time favorites. Innovated the shining wizard. Has had many themes all of which are amazing. Was an main eventer in both NJPW and AJPW and put on countless good matches. Perhaps better known as The Great Muta. At 56 he still wrestles from time to time though far from his peak days as a main event talent in NJPW during the 90s or his career resurgance in the early 2000s."
Rating: 10.0
Sentiment: 0.36333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: ElPolloLocowrote on 28.03.2019:[9.0] "Absolutely amazing in the ring until he had to tone things down because his body just couldn't take it anymore. Good promos as well, albeit these days he's mostly remembered as the silent and sinister Great Muta. I even liked him as a comedy wrestler during his HUSTLE storyline with Akebono and Yinling. But one point less due to his horrible efforts as a promoter and often puzzling booking."
Rating: 9.0
Sentiment: 0.11388888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: RatingsMachinewrote on 11.10.2018:[9.0] "Keiji Muto is a bona fide legend of professional wrestling. He was a great worker, and was a part of one of New Japan's strongest runs. But his abysmal efforts at being a promoter prevent him from getting a 10."
Rating: 9.0
Sentiment: 0.34545454545454546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: InactiveGuruwrote on 31.05.2018:[9.0] "Great Muta is without a doubt one of the most recognizable names in wrestling to come out of Japan. Watch him closely almost everything he does is flawless. He is superb in the ring and can play his character well. Never count out Muta. If you've only ever seen his WCW work, you owe it to yourself to look up his work from Japan."
Rating: 9.0
Sentiment: 0.5916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: taabr2wrote on 11.09.2017:[10.0] "Big fan of the great Mutoh. The guy is a spectacular worker and has one of my favorite gimmicks in Japan. I loved his early 2000s reinvention when he shocked the world and jumped to AJPW."
Rating: 10.0
Sentiment: 0.2857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Zedwrote on 08.10.2016:[10.0] "Keiji ist die größte Legende Japans, meiner Meinung nach.  Seine epischen Schlachten gegen Kawada, Tenryu und Chono sind die wegbereiter der heutigen Puroresu Generation. Er hat einen so immensen Einfluß und so dermaßen viel bewirkt in Japan, kaum einer konnt ihm je das Wasser reichen. Nur sollte er doch mal so langsam ans Aufhören denken, denn irgendwann macht er sich lächerlich. Und das würde seiner Legende immens schaden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Luv all wrestlingwrote on 06.08.2016:[10.0] "Great Muta/ Keiji Mutoh is a legend of japan, and the first to see major success overseas. His feuds have been amazing - vs tanahashi, vs sting. Mutoh is a hige draw and as wrestle 1 shows, where he goes fans follow"
Rating: 10.0
Sentiment: 0.4025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "I love the Great Muta character but even without the gimmick, Keiji Muto is an incredibly entertaining performer. His peak performances are fantastic and even to this day much of his work is quite good."
Rating: 10.0
Sentiment: 0.5166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Jobbswrote on 23.04.2016:[2.0] "I'd say my least favorite wrestler in all of Japan and in general. His style in the ring is just something I am just not into and his lack of selling and psychology is something that really doesn't help either. He's consider a legend in the world of wrestling but I can't see or understand the hype behind this guy as most of his matches are decent or good but I've seen nothing of his that is great and overkills the use of the shining wizard which just takes me out of his matches completely."
Rating: 2.0
Sentiment: 0.2316666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Mean Smark Callouswrote on 18.04.2016:[9.0] "Is now officially the greatest Wrestler to never have worked for Vince now that AJ Styles and Sting finally made the jump. His long lived feud with Sting was host to many exciting matches. Great gimmick, epic moveset (credited with introducing high-flying moves like the Moonsault to American audiences) and a mysterious prescence made up for lack of mic skills (which wasn't his fault considering he spoke barely a lick of English). Whenever Muta was booked on the card, you knew you were going to get at least one good match."
Rating: 9.0
Sentiment: 0.19910714285714284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Dowkesywrote on 01.06.2015:[10.0] "Possibly one of the greatest wrestlers of all time, definatly one of the best if not the best from Japan. Up their with Kenta Kobashi and Mitsuharu Misawa in my opinion"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Claudio Herowrote on 01.05.2015:[10.0] "Für mich einer der besten Wrestler aller Zeiten und eine absolute Legende. Seine Klassiker gegen Chono, Hase, Kawada, Tenryu, Hashimoto usw ... kann man sich immer wieder ansehen. Auch im Tag Team Bereich eine absolute Ikone ! Wrestlerisch auch im hohen Alter noch sehr stark ... sein Titelrun 2008 war auch noch sehr gut, ansonsten natürlich in den 90 ern und Anfgang 2000 er Outstanding! Klare 10 Punkte"
Rating: 10.0
Sentiment: 0.21875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: yanuswrote on 26.04.2015:[7.0] "Very charismatic wrestler and decent in the ring, but he constantly overrates his mat-wrestling skills. Also, I don't really like his moveset."
Rating: 7.0
Sentiment: 0.25416666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: RavenEffectwrote on 10.04.2015:[10.0] "Once in a lifetime talent. My favourite japanese wrestling star of all-time. Everything from his facepaint to entrance was unique and enigmatic. He was the Japanese wrestling's gift to the world, it's Hulk Hogan. I remember his time in WCW 1989 when he feuded against Sting & Ric Flair with Terry Funk, and these two teams collided at Halloween Havoc '89 in a legendary Thunderdome match, which is still one of greatest matches of Halloween Havoc's history. Also, I remember his feud against Genichiro Tenryo, that lasted from 1993 to 2007, and which included pretty good encounters from those two."
Rating: 10.0
Sentiment: 0.428125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: 8BitLegendwrote on 03.11.2014:[8.0] "Ich habe vom jungen Great Muta nicht viel gesehen, aber der alte gefällt mir eh besser. Er hat mittlerweile diese Ausstrahlung des Kampfkunst-Altmeisters, was ihn zu einer erhabenen Figur im Puroresu macht. Sein Wrestle Kingdom 8 Entrance war göttlich. Sowas sieht man nicht alle Tage. Kann immer noch sehr gut wrestlen und weiß sich perfekt zu verkaufen."
Rating: 8.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: zackwoowoowooryderwrote on 02.11.2014:[9.0] "Ein sehr guter japansicher Wrestler mit der absolutem Legendenstatus geniest, den ich aber mit seiner Maske besser finde."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Phenomenal91wrote on 18.07.2014:[10.0] "The greatest Japanese wrestler of all time. And possibly the greatest in all of wrestling. It's amazing that he's never needed the WWE to become famous. Very admirable."
Rating: 10.0
Sentiment: 0.4714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: jasonpainwrote on 18.02.2014:[9.0] "First ballot Hall of Famer in my book.  Simply fascinating look with a excellent skillset.  Has continued to get better with age and is very undervalued in his place in the history of the business."
Rating: 9.0
Sentiment: 0.53
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Leonewrote on 05.03.2013:[10.0] "To this day, Keiji Muto remains one of the few main event wrestlers in Japan who not only had a character/gimmick that went beyond him being a fantastic wrestler (a character that he developed while on tour in America with the NWA in the late '80s), but also one of few who held the IWGP title with that gimmick.  Today, Muto is still putting on better matches than many of his peers and even some of the young talent.  His in-ring psychology is almost unmatched.  In his physical prime he was an exciting, unpredictable and explosive wrestler who popularised the Moonsault and Muta Lock, and during his 2001 revival of interest in AJPW, he then innovated the Shining Wizard.  The Muta Scale also comes for Muto, as a realistic blade job (literally) from Hiroshi Hase led to not just 1 of the bloodiest matches of 1992, but 1 of the bloodiest wrestling matches ever.  A legend in Puroresu & also a legend in pro wrestling in general."
Rating: 10.0
Sentiment: 0.09444444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Kenshin Uesugiwrote on 09.01.2013:[10.0] "Ja, ist er ist und bleibt ein verdammtes göttliches Genie da ändern die kaputten Knie auch nichts mehr daran, da er immer noch zu überraschend guten Leistungen fähig ist. Mal abgesehen davon das Muto alles das hat, ausstrahlt und macht was man als Superstar und Legende im Wrestling braucht und macht. Da kann man noch so sehr mit den angeblichen nur fünf Move um die Ecke kommen, ihm Faulheit in der Gegenwart und Vergangenheit unterstellen und nicht „anfällig“ für die Brillanz der Great Muta Match Psychologie sein. Ein Mann der es schaffte mit einem Gimick und als reiner Wrestler zu Legende zu werden, man stelle sich die Frage ob der Undertaker auch "nur" als Callway so eine Ikone wäre? Der in seine jungen Jahren wohl ein der beweglichsten, spektakulärsten Highflying Alleskönner Heayvweight Wrestler der ersten Stunde war. Als Trainer, Promoter und Kommentator ebenfalls natürlich sau stark. Inoki und Ric Flair soll die größten Legenden sein? Bret Hart und Shawn Michaels die Besten? Steve Austin der coolste mit Glatze und The Rock der Charismatischste? Misawa und Kobashi die mit den besten Observer Matchbewertungen? Mag vielleicht sein,  aber Freunde einer der Größten und Besten, wenn nicht sogar der größte und beste Wrestler als Gesamtpaket ist der ~Pro Wrestling Master~ Keiji Muto."
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: jchiofalwrote on 08.01.2012:[10.0] "Muta has definitely aged quite a bit. While his agility and wrestling isn't what it used to be, his wrestling ability is still significantly better than a person even 10 years younger than him can or should even be able to wrestle. He still has the agility of a cat, and he is a master of mindgames, to a level which no one in wrestling today or ever has ever reached (not even young Muta)"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Kartmanwrote on 08.01.2012:[10.0] "Keiji Muto ist wie Kenta Kobashi oder Jushin Liger eine grosse Legende der Pro-Wrestling Welt. Und es ist ein begründe Status."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: chaoswrote on 30.10.2011:[10.0] "Die Japan Legende schlechthin! Einer der besten Wrestler aller Zeiten und das Muta Gimmick ist sensationell!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Hirnklopswrote on 17.10.2011:[8.0] "Saustarke coole Sau, die einfach nur langsam mal aufhören sollte. Dem Muto von Heute in seinen teils von Phlegma gekennzeichneten Matches zuzusehen, tut halt ähnlich weh, wie Bud Spencer heute zu sehen... Der Mann war mal einer der besten Wrestler der Welt, aber mittlerweile... Ich weiß nicht... Und es ist dieses "Mittlerweile", welches mich davon abhält, mehr als acht Punkte zu geben. Bud Spencer würde ich an dieser Stelle eine "10" geben, einfach weil der viel cooler als Muto ist, aber dummerweise catcht der Bud nicht, von der kurzen Szene am Anfang von "Auch die Engel essen Bohnen" mal abgesehen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: MaikBaaderwrote on 21.07.2011:[10.0] "Einfach nur ein ganz großer mit einem guten Gimmick (Muta) und auch als Mutoh ein Gott. War bei NJPW zusammen mit weiteren Legenden wie Chono, Hashimoto etc. Mit seiner Körpergröße & seinem Gewicht dazu auch ein sehr interessantes Move-set mit einigen Moves, die man sonst bei so einer größe nicht unbedingt normal ist. Kann selbst noch mit kaputten Knien gute Matches zeigen und konnte mit jedem Wrestler ein gutes Match zeigen.  Mutoh ist definitiv eine lebende Legende."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Hans Gruberwrote on 07.07.2011:[10.0] "Alles andere als 10 Punkte wäre lächerlich. Egal ob als Muto oder Muta, er hat jeweils immer überzeugt. Einer der ganz großen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Necronwrote on 03.12.2010:[9.0] "Ich kenne ihn nur in alter, geschminkter Ausführung. Hat mich damals immer fasziniert"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Manu Adamswrote on 22.07.2010:[8.0] "Um ehrlich zu seinen ich habe seine Japan Zeit nicht miterlebt und kaum Matches gesehen, deshalb bewerte ich nur seine NWA bzw. WCW Zeit. Lieferte in meinen Augen einen fast schon vergessenen Klassiker gegen Sting bei Great Amercan Bash 1989 ab. Er war zu seiner WCW Zeit, einer der besten Techniker und konnte sogar mit Jobbers ein ordentliches Match abliefern. Seine Dark Carnival Zeitt war sovieles wie in der späten WCW kaum mehr ansehbar."
Rating: 8.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Kitanoyamawrote on 06.07.2010:[9.0] "Habe vorhin ein paar Kämpfe von ihm gesehen und ich muss schon sagen das er technisch einiges drauf hat und seine Beweglichkeit war auch klasse. Schade jedoch anhanddessen das er nur hauptsächlich in Asien die ganz großen Erfolge einstrich."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: jjchiofalowrote on 06.07.2010:[10.0] "Muta is quite honestly the greatest wrestler in the world. He is an icon of Japan and the most famous Japanese wrestler in the world. Muta is currently and has always been THE best"
Rating: 10.0
Sentiment: 0.5142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Fountain of Misinformationwrote on 22.06.2010:[8.0] "Für das Lebenswerk einer stets mehr von der Match-Qualität als vom Hype lebenden Legende stehen ihm natürlich die zehn Punkte verdient zu, die Leistungen der letzten 7-8 Jahre drücken die "Gesamtwertung" leider etwas. Für einen 46 Jahre alten Mann mit total zerschlissenen Knieen aber nachwievor in einer bemerkenswerten körperlichen Verfassung (Mutophysique! ) und manchmal, ganz selten, kratzt er ja doch noch an dem, was man als Werke eines Genies im Ring bezeichnen muss."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Erasedwrote on 30.05.2010:[9.0] "Sicher einer der besten japanischen Wrestler. Über viele Jahre liefert er nun schon eine erstklassige Show ab."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: rv27wrote on 08.03.2010:[10.0] "Er wird für mich die Ewige Nummer eins Japans bleiben. Schade das ich ihn noch nicht live erleben durfte."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: T-Waynewrote on 21.02.2010:[9.0] "Einer der Großmeister des japanischen Wrestlings. Gefällt mir sowohl als Muta und auch als Mutoh sehr gut."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Marco Ewrote on 10.02.2010:[9.0] "Einer von vielleicht 6-7 Japanischen Wrestlern die mich wirklich überzeugt haben. Zumindest war er früher ein ganz großer, in den letzten paar Jahren hab ich nicht mehr viel von ihm gesehen. Im TV fand ich ihn immer großartig, hab ihn dann einmal Live gesehen, wo er mich total enttäuschte. Denke aber mal es war ne Ausnahme und könnte am Gegner (Jim Neidhart) gelegen haben. Die beiden passten gar nicht zusammen"
Rating: 9.0
Sentiment: 0.06818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Anti-Championwrote on 25.12.2009:[10.0] "Hat mich überhaupt erst dazu gebracht mal nach Japan zu gucken. Auch wenn er nicht mehr so gut wie früher ist, für seine Ringskills und sein Charisma gibt es (nun doch) 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Eddiewrote on 03.06.2009:[9.0] "Einer der Wrestling Götter, der aber nicht mehr auf einer Ebene wie Kobashi ist, ein bisschen seiner Aura ist schon verloren gegangen, 9 Punkte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Tomkowrote on 02.02.2009:[7.0] "In seiner Prime weltklasse, aber leider muss ich auch die letzten Jahre bewerten und in dieser Zeit zeigte er zu oft zu wenig um seinen derzeitigen Status zu rechtfertigen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: STRIGGAwrote on 09.01.2009:[8.0] "Legendäres Gimmick und der Wrestler dahinter hält auch heutzutage seine Matches mit nur 5 Moves spannend."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: MrWrestlingwrote on 07.12.2008:[9.0] "Eigentlich ganz guter Wrestler. Leider auf Grund seiner Knieprobleme etwas limitiert."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: The Wise Warriorwrote on 16.09.2008:[9.0] "Cooler Typ mit entsprechenden Fähigkeiten. War als Muto gut - als Muta großartig! ;)"
Rating: 9.0
Sentiment: 0.5625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Kaffoe 666wrote on 25.03.2008:[8.0] "Als Great Muta genial... als Muto auch okay! Hat leider auch ziemlich oft mit Knieporblemen zu kämpfen gehabt bzw. hat noch immer!"
Rating: 8.0
Sentiment: 0.790625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: mr sledgehammerwrote on 29.01.2008:[8.0] "Trotz seiner 45 Jahre noch top in Form und zeigt konstant gute Leistungen. Das legendäre Gimmik des Oldies reicht locker für eine 2!"
Rating: 8.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: D-Stylewrote on 17.01.2008:[10.0] "Natürlich ist Muto alt, natürlich kämpft Muto nicht mehr wie in den 90ern, aber er zeigt noch eine Menge Einsatz für sein Alter, und bekommt für sein ganzes Lebenswerk die glatte 1"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: AnFuwrote on 14.01.2008:[8.0] "Eine Legende ja, seine heutige Backstagemacht gefällt mir allerdings nicht. Eine Niederlage gegen Goto hätte ihm bsp. auch nicht geschadet..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Bullit69wrote on 13.01.2008:[8.0] "Sieht ein wenig aus wie ein asiatischer Goldberg! ^^"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Blade Bourdeauxwrote on 09.12.2007:[8.0] "Guter japansicher Wrestler mit absolutem Legendenstatus."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: LexLuger4everwrote on 01.12.2007:[10.0] "Gefällt mir mit seiner gewohnten Gesichtsbemalung wesentlich besser... jedenfalls auch legendär, mit Jushin Thunder Liger zu vergleichen, die beiden sind in etwa auf einer Stufe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=258&gimmick=Keiji+Muto
Comment: Obermackerwrote on 03.09.2007:[10.0] "Eine der größten japanischen Wrestlinglegenden, immer wieder mit sensationellem Ring-Outfit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Luchaabovegroundwrote on 20.01.2025:[9.0] "Absolutely a master of the ring. Arguably the best ever Or definitely on his way to being just that. Takeda has no real flaws in his game. Death match or not. If I could understand Japanese I would give him a ten so I can not really judge his promo skills."
Rating: 9.0
Sentiment: 0.07499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: jasvvywrote on 28.02.2024:[10.0] "I say this with only slight hesitation, but I think Takeda is the best deathmatch wrestler of all time, even surpassing Jun Kasai. It's a close race, they're side-by-side, but Takeda is untouchable in-ring. Everything he does is crisp, clean and executed to perfection. His facial expressions are insane, his matches are brutal and bloody, he can fit anywhere on the card and his look is EYE-CATCHING. He's charismatic as fuck and not afraid to kiss. 11/10."
Rating: 10.0
Sentiment: -0.03269230769230768
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Madladwrote on 02.01.2024:[10.0] "A deathmatch legend. He combine this style of wrestling with in ring storytelling like no one. His MMA shootfight style mixing with brutality of deathmatch make his work so fun to watch"
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: LIGERISMwrote on 21.06.2022:[10.0] "The greatest in-ring deathmatch wrestler of all-time. His style single-handedly revolutionized deathmatch wrestling. So match charisma on top of the great wrestling. Outside of deathmatches, he has enough legit pro wrestling talent to land himself spots in places like All Japan and other non-deathmatch indies. A must-see wrestler every time he steps in the ring."
Rating: 10.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: No Onewrote on 22.09.2021:[10.0] "A deathmatch living legend who has an aura of electricity, energy, & excitement. Can adapt to a variety of different styles & was a legit MMA fighter as well. Highly charismatic and worth going out of the way to see his matches all the time."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: TJPW is Legitwrote on 14.09.2020:[10.0] "Without Masashi Takeda, I never would have gotten into Deathmatch wrestling. This man is the absolute peak of the artform, and yes, I said artform. While death match wrestling isn't everyone's cup of tea, Masashi Takeda helped it evolve from being something I winced at and thought was gross, to being something absolutely spectacular, a car crash with paint and an easel. Takeda was my deathmatch Tanahashi, I've was completely invested in his title reigns, both in BJW and in FREEDOMS, where he had absolute slaughterfests with Jun Kasai, Isami Kodaka, and Masaya Takahashi. To me, it's an absolute crime that when he lost both titles, he's barely come close to regaining them. He's only had a #1 contender match last year, and he only had a FREEDOMS title shot this year, but it ended because he bleed too much. Granted if you bleed too much in a DEATH MATCH then that's absolutely concerning, and Takeda is absolutely someone who puts his own safety last on the list. Takeda absolutely deserves another run at the top, because I feel like his title reign helped bring many eyes to BJW that weren't there before. He's one of the best wrestlers Japan's ever produced, deathmatch wrestler or not, and I swear, if I could give him a 20 on this sight I absolutely would."
Rating: 10.0
Sentiment: 0.24523809523809526
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Sir Cheesewrote on 10.09.2020:[10.0] "Takeda is an amazing wrestler - he mixes his MMA/shootfighting background with extreme brutality in deathmatches but also has great performances in non-deathmatches. He is probably the best deathmatch worker in the world right now (and possibly ever) and can bring out great matches in even the worst deathmatch workers. He always seems to elevate the game of his opponents. Also, he takes full on bumps on some of the gnarliest shit I've ever seen (think saw blades, kitchen knives, huge spiked nails, razor blades, kenzans, etc. ) not to mention the hundreds of lighttubes and multiple panes of glass. His matches with Jun Kasai and Yuko Miyamoto are just classics. Go out of your way to see some Takeda matches and you won't be disappointed."
Rating: 10.0
Sentiment: 0.125765306122449
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: ViolentoFagwrote on 23.02.2020:[10.0] "His capacity to adapt to any kind of matches is awesome, you can book him with the guy you wish and he will give a good show.. I really think he is the present and future of ultraviolence worldwide."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Matuwrote on 07.04.2019:[9.0] "Takeda is an amazing wrestler and one of the best in the world at the time I'm writing this. Takeda is highly skilled as a technical wrestler and brings great story and structure to his deathmatches."
Rating: 9.0
Sentiment: 0.5800000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: RatingsMachinewrote on 25.10.2018:[10.0] "As death match wrestlers go, Taleda is the best of the bunch, one of the few to be able to combine violence with telling a compelling story."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Makai Clubwrote on 22.09.2018:[9.0] "Awesome wrestler. Has everything a deathmatch wrestler needs to be great. Timing, selling, ability to construct a great structure to the match. And oh, he is a legit great technical wrestler too. Big draw for BJW and freedoms. Highly charismatic and kickass look."
Rating: 9.0
Sentiment: 0.5571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: jamzell00wrote on 03.07.2018:[10.0] "Amazing wrestler who just so happens to be a great deathmatch wrestler. He is the guy who has slowly gotten me into deathmatch wrestling because of his actual wrestling ability and god do I love it. One of the best in the world"
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: laldilawrote on 02.07.2018:[10.0] "One of the best in the world right now. He's incredibly charismatic and is willing to do seemingly anything for a match. Most interesting is the mix of his MMA background with his love of deathmatch wrestling. Few if any are on his level in deathmatches right now."
Rating: 10.0
Sentiment: 0.40238095238095234
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Headlockwrote on 20.06.2017:[9.0] "Einer der 5 Dreath Match Kaiser! Im Ring errinert er an einen Takashi Sugiura was daran liegt das beide ihre Gegner mit Suplessen und Olympic Slams durch die gegend schleudern, auch in normalen Matsches sehr sehr gut"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Matt4Wrestlingwrote on 19.01.2014:[8.0] "Sowohl Hardcore als auch normales Wrestling sind kein Problem für ihn. Nur denke ich, dass es nützlicher für ihn wäre sich für eine Sache zu entscheiden. Ansonsten Top!"
Rating: 8.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Phoenix Downwrote on 04.09.2011:[9.0] "Ein Alleskönner. Sowohl in normalen Matches als auch in Deathmatches hervorragend."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Eddiewrote on 01.05.2011:[8.0] "Absolut cooles Auftreten und er kann viel einstecken, hab aber noch nicht viel gesehen, bis dato 6/10, genau wie bei Kodaka. Edit: Auch von Takeda habe ich mittlerweile mehr gesehen, und ich muss sagen, er ist durchaus besser als sein häufiger Tag Partner Kodaka. Auf einem Level wie Kasai sehe ich ihn aber (noch) nicht, denn ich muss schon sagen, dass er im Storytelling und Matchaufbau noch ein paar Mängel hat, was Kasai (meistens) noch besser beherrscht. Auch sehe ich ihn noch knapp hinter Miyamoto zurück, was aber auch einfach daran liegen kann, dass Yuko mein absoluter Fave bei Big Japan ist, 8 Punkte für Takeda."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Moonbloodwrote on 22.03.2011:[9.0] "Takeda ist der mit Abstand beste Death-Match-Jungspund der letzten Jahre. Vergleiche mit einem jungen Jun Kasai sind definitiv angebracht, denn was der Mann schon in seinem noch kurzen Leben geleistet hat, ist nicht von dieser Welt. Auf Dauer bleibt allerdings zu hoffen, daß er sich nicht ähnlich übernimmt wie viele BJW-Ikonen vor ihm. Einen so rücksichtslosen Stil kann man einfach nicht jahrelang gehen, ohne starke Beeinträchtigungen fürchten zu müssen. Es bleibt spannend zu sehen, wie er sich in diesem Jahr bei Combat Zone Wrestling schlägt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: Jay Burgerwrote on 03.01.2011:[9.0] "Gefällt mir bis jetzt ganz gut, sein Deathmatch gegen Miyamoto war klasse, genauso wie ihre Matches als Partner. Aus ihm könnte durchaus in den nächsten Jahren (sofern er bei BJW bleibt) ein ähnlicher Topstar, wie es Miyamoto vor ihm schaffte, werden. Edit: Aufwertung von 7 auf 9 Punkte, was der Junge in letzter Zeit abgeliefert hat war krank, brutal, sick, nennt es wie ihr nenne wollt, einfach bestialisch, wie viel er einstecken kann, er kommt sogar in Regionen eines Kasai. Zusätzlich bringt er in seinen Matches immer noch einen unglaublich hohen Anteil an normalen Wrestling, ich sehe in ihm den nächsten BJW Death Match CHampion, der junge ist im UV Bereich mitlerweile einfach nur Gold wert."
Rating: 9.0
Sentiment: -0.7946428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: RickRollwrote on 28.03.2010:[10.0] "Ich weiß für einige ist die 10 hier vielleicht übertrieben und eigentlich würde ich auch nur die 9 geben, aber Takeda ist mit DAS beste was BJW derzeit zu bieten hat. Gibt in seinen Matches alles was er kann und das Endprodukt ist dann sehenswert. Ob er jetzt in Shootfights oder Deathmatches verwickelt ist, das Match wird am ende klasse. Ist DIE Deathmatch zukunft und ist für MICH jetzt schon cooler als Jun Kasai."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6254&gimmick=Masashi+Takeda
Comment: T-Waynewrote on 22.03.2010:[7.0] "Genialer Dead Lift German Suplex und auch sonst hat er ein gutes Moveset. Gefällt mir von den derzeitigen Deathmatch Wrestlern der BJW mit am besten."
Rating: 7.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Thenwoagedbadlywrote on 21.10.2024:[7.0] "A perfectly serviceable wrestler who doesn't particularly have any great flaws but is also one that doesn't truly have any absolute strengths and therefore is one I personally feel is overrated. Also, she has repeatedly not shone when the spotlight was on her. Put simply, when she has had major matches with excellent talent the matches themselves have been enjoyable but rarely more than that."
Rating: 7.0
Sentiment: 0.4229166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: jsbortswrote on 04.10.2024:[10.0] "She's incredible for her age, and she is an excellent striker and an acrobat in the ring. Really love her work and think she's an absolute standout"
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: HazzaWrestlingwrote on 14.08.2024:[9.0] "She was at one point, one of the best female workers on the planet but for whatever reason isn't really in that conversation currently. From 2017-2022 she was constantly in great matches but since early 2023 onwards, she's rarely hit matches where I'd consider them "great". I'm not one to speculate on why she's not producing that echelon of work now or one to say "she's fell off". She's 25, she still has plenty of time to get back to the wrestler I considered one of my favourites during that aforementioned period. If she were to graduate or retire tomorrow for instance, she can be absolutely proud as a modern trailblazer with some epic works throughout her career. At her peak, she'd easily excel a 10 rating but this rating is purely on the current body of work I've seen and its just sadly nowhere near what I loved from her. I will re-rate hopefully in the near future because I fully believe she can absolutely exceed her previous peaks!"
Rating: 9.0
Sentiment: 0.23214285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: nataliegromanwrote on 10.04.2024:"VENY adds her own particular flair to Sendai by constantly doing high risk moves that terrify and amaze."
Rating: No rating found
Sentiment: 0.23166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: benny5bellyswrote on 20.02.2024:[7.0] "I like Veny, when ever they pop up on a show I am watching I enjoy their work. As others have mentioned they are also important as part of LGTQ inclusion. I am not sure I would walk around pretending they are a top tier talent like others but still very good."
Rating: 7.0
Sentiment: 0.392
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: RitsuTa1naka69wrote on 05.09.2023:[10.0] "I think she is objectively the most talented joshi of this decade. VENY is unbelievably unreal in ring and a massive inspiration to a lot of LGTBQ joshi fans. She's legit iconic and I think she'll be remembered as one of the best to ever do it when it's all said and done. I still really want Asuka versus VENY, akin to KENTA versus CM Punk. I know they wrestled before but I would love a modern bout between the two."
Rating: 10.0
Sentiment: 0.3350000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: KHAOSwrote on 19.07.2023:[10.0] ""Some people must think this is WWE's Asuka." Uh, maybe? I doubt if you're on this site you can't figure it out, but regardless, she is that good."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: NEVERoverweightChampionwrote on 06.07.2023:[7.0] "She is pretty good and has some charisma but I feel like she is kinda overrated here. Maybe because people think it is WWE's Asuka ? Anyway. She's good but that's about it, not one of the best joshis in the world right now."
Rating: 7.0
Sentiment: 0.5871428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: bigredtalk89wrote on 05.07.2023:"Half the people giving this person a way higher rating because they think it's the WWE's Asuka. It's not."
Rating: No rating found
Sentiment: 0.04166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: TheOneAndOnlyCactuswrote on 26.06.2023:[10.0] "No, not that Asuka. This ASUKA (also known as VENY) is widely believed to be the first known transgender professional wrestler from Japan. Firstly she came out as gay to her father at the age of 16 and later dropped out of high school to pursue a professional wrestling career, and I think I can say that it was a wise choice. She is one of the best joshi heels in Japan right now. It's hard to believe she is still in her early 20s, as she is simply incredible in the ring already, having bangers after bangers regularly, while also playing her character almost flawlessly. She still has a long career ahead of her, and she seems primed to be remembered as an all-time great if she continues on that current path she is on."
Rating: 10.0
Sentiment: 0.29582706766917294
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Mugendaiwrote on 08.04.2023:[9.0] "Whether she's ASUKA in Japan or VENY elsewhere, she's one of the best wrestlers going today. Her team with Makoto is fantastic and her matches have always been a must-watch for me, no matter the opponent. With another year or two of seasoning, I can easily see this rating becoming a 10."
Rating: 9.0
Sentiment: 0.5708333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Wrestling Foreverwrote on 22.02.2023:[9.0] "Das ist nicht die WWE Asuka sondern ASUKA aka Veny. Klar kann man sie beim Namen verwechseln wie es auch bei Kenta und KENTA ist. Ich bewerte sie als Frau weil ich da auch keine Diskussion bezüglich ihrem Geschlecht haben will."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Rignowrote on 09.02.2023:[8.0] "I would say that she is overrated, but she still is one of the greatest women on the current roster. Her work in NXT was definitely better than on the main roster though."
Rating: 8.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: SadDorowrote on 20.12.2022:[10.0] "There are very few professional wrestlers who simply get every aspect of professional wrestling quite like ASUKA. From her entrance, to her matches to her general persona there are very few performers working today as compelling."
Rating: 10.0
Sentiment: 0.004285714285714282
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: GriffinXwrote on 03.06.2022:[9.0] "Can't say enough how impressive she is. Like any really good wrestler Auska/Venny draws you right in. She makes you think no matter what she can get that big win"
Rating: 9.0
Sentiment: 0.46428571428571425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Mizzle Assault Antwrote on 21.04.2022:[9.0] "A very good wrestler who seems a touch overrated here, but then again it's hard to really fault any of her work, she's just very, very good."
Rating: 9.0
Sentiment: 0.43208333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: MrCagematchwrote on 17.12.2021:[5.0] "A really good Joshi performer in the current scene with a great upside. Their matches are good and their performances are usually strong enough."
Rating: 5.0
Sentiment: 0.43888888888888894
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: NoSellwrote on 26.11.2021:[10.0] "ASUKA is legitimately one of the best in the world and deserves to be featured on a bigger stage. I watched her for the first time on Hana Kimura Memorial show and she was amazing there."
Rating: 10.0
Sentiment: 0.4625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: math1823wrote on 12.11.2021:[10.0] "There is a lot of great wrestlers in the joshi scene right now, but ASUKA is clearly amongst the best if she's not just the best. In a way, she makes me think a lot about Manami Toyota (who is the best wrestler ever imo). When she wrestles, it seems almost too easy. I've seen quite a few matches from her, and I've never seen even the slightest botch on her side. She's also a fantastic heel with a lot of charisma. She is also only 23 and, if injuries spare her, I think she'll be considered as one of the GOATs before even retiring."
Rating: 10.0
Sentiment: 0.48190476190476195
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: pierreMinnewrote on 26.09.2021:[10.0] "ASUKA is one of the bests in the world. She is incredibly consistant, she always delivers good matches and she has something more than almost everyone else. Indeed, she is absolutely captivating in the ring since she has an insane charisma and since she is a tremendous heel. I truly hope she can have an enormous run with a world title soon in Japan."
Rating: 10.0
Sentiment: 0.2761904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: XIIVwrote on 05.06.2021:[10.0] "ASUKA/Veny has had an incredible year so far and it's only going to get better. Their lucha background combined with the joshi style really makes them standout and things are just getting started for them."
Rating: 10.0
Sentiment: 0.33999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Kungwrote on 30.05.2021:[10.0] "ASUKA, or Veny to any AEW fans out there, is one of the most intriguing and exciting competitors currently working in Joshi. They're great in pretty much every situation from the wacky world of Gatoh Move and DDT to the way less wacky world over at SEAdLINNNG. I cannot see a world where ASUKA isn't a massive star in the business."
Rating: 10.0
Sentiment: 0.2893939393939395
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: TENzuwrote on 22.02.2021:"They are one of the most exciting wrestlers coming out of Japan today, regardless of promotion or gender."
Rating: No rating found
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: wwrstardomprowrestlingwrote on 11.02.2021:[10.0] "The best woman in Japan, i hope she win the AEW tournament, very talent and i'm proud for you. Let's go VENY!"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Javichohervaswrote on 28.12.2020:[10.0] "Arguably one of the best wrestlers in the world regardless of gender, with only 22 years of age. Trained by Ayako Hamada, you can see the lucha libre influence in her style, leaning towards lucharesu, but with more strong style than usual. She's not only a great singles wrestler, but also very good in tag team action alongside Makoto, both undefeated in 2020 as Las Fresa De Egoístas. Can't wait to see what the future holds for her, but right now, it shines the brightest."
Rating: 10.0
Sentiment: 0.34354978354978355
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Hawksrule996wrote on 27.11.2020:[9.0] "One of the most exciting upcoming wrestlers in the world she is so good at such a young age I can not wait to see how good she is in 10 years time"
Rating: 9.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: Caaswrote on 14.11.2020:[10.0] "ASUKA/VENY is a very inspiring wrestler, and particularly inspirational to me. As a performer, she is excellent, and only going to get better as the years roll on, but to be as great as she is at 22 is intimidating to say the least. It is fantastic to see an enby pro-wrestler like ASUKA rising to a prominent position in both DDT and a handful of independent joshi promotions. I am giving her the full score of 10 for several reasons, but the most important of which is what her success represents to me as a trans pro-wrestling fan. I want to see her continue to flourish (pun very much intended) and succeed, and I am hopeful that Rossy Ogawa will reconsider his position on ASUKA in Stardom. And if not, ASUKA will remain successful in spite of that."
Rating: 10.0
Sentiment: 0.38882352941176473
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=16563&gimmick=VENY
Comment: SlothFactswrote on 06.07.2018:[9.0] "There's a more badass, more well-known Asuka in the wrestling world, but there's only one ASUKA. ASUKA has been wrestling for two years, and is only 19 years old, and she's already better than probably 80-90% of her peers. This girl has an insane vertical, and uses it for an assortment of stupidly dangerous but beautiful springboard moves. She is going to severely hurt herself one day if she doesn't make her moveset a bit safer (although right now, the thing she gets hurt most frequently on are more simple Tope Con Giros). As impressive as her high-flying offense is (and it's very impressive), she also delivers some gnarly, thudding forearms, and some really nice looking boots and thrust kicks. She chain wrestles, with a really cool looking Fireman's Carry takedown into mat wrestling and submission holds. And she does some power moves that look impressive with her height, most notably a Stalling Gutwrench Suplex, and a Chokeslam she uses to set up her finishers (a top-rope Moonsault, and if necessary, a top-rope Shooting Star Press). It's kind of wild how good she is at so many different types of offense at such a young age. She's finding her charisma really fast; she's really gotten over with the audience, and can get them cheering at will. Her selling is also improving rapidly, and has gotten really good. With all of that said, the aforementioned inconsistency on her aerial offense is scary. She recovers well from slips, but it feels inevitable that one day she won't be able to save a high spot, and that's when she's gonna get hurt or worse. Her athleticism may be so extraordinary that it covers for the sloppiness, but I'd still rather see her not almost die so often. Still, the way the crowd reacts to her, she feels like a sure bet if she can avoid injury."
Rating: 9.0
Sentiment: 0.27197619047619037
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: troyotawrote on 15.10.2024:[10.0] "If you make a mount rushmore of Stardom wrestlers, Kagetsu MUST be on it. Newer Stardom fans might not always know him, but he's definitely one of the greatest to ever do it in this company. From the feud with Mayu, to his red belt reign, his leadership of Oedo Tai (I fully believe he is the best leader the unit had) and everything else Kagetsu did in Stardom, there is no rating lower than 10 you can give him."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Akyri0wrote on 30.07.2024:[10.0] "The greatest heel ever. He was a pure blessing for puroresu. I wished I found him way before the end of his carreer. Hope he's living a really happy life outside of professionnal wrestling !"
Rating: 10.0
Sentiment: 0.5035714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: MegaSPSwrote on 03.11.2023:[10.0] "kagetsu had to be the easiest 10 ever. he was one of the top joshi wrestlers before he retired at the start of 2020, and it was definitely for a reason. many of stardoms top matches involved kagetsu, and he was even world of stardom champion. he was one of the most fluid wrestlers out there where everything he did was so effortless, not to mention how effortlessly cool he was. kagetsu retired before stardom really took off in western countries, so if you havent seen his work definitely go seek it out. even if you havent seen kagetsu, a couple top wrestlers in stardom today (off the top of my head, utami hayashishita) were trained by kagetsu since he was entrusted as the head trainer at stardoms school. ive said he during this because in 2022 kagetsu publicly came out as trans, and he/him are his pronouns. but wrapping back around, kagetsu is one of the most influential joshi wrestlers in modern times and definitely one of the best ever."
Rating: 10.0
Sentiment: 0.29166666666666674
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Kungwrote on 23.05.2022:[10.0] "I can't believe it's taken this long for me to rate Kagetsu. Depending on the day, he's either my favorite Stardom wrestler of all time or second to Mayu. Not only was he a superb wrestler, but he was also as charismatic as anyone I've ever watched in this sport. Stardom, and Joshi in general, hasn't been the same since he retired. (Edit: changed for pronouns)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Luna100wrote on 14.05.2022:[9.0] "He's really good, I only saw his last few matches, but he was really good, would like to see him back in wrestling ."
Rating: 9.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: CFOSwrote on 30.06.2021:[10.0] "I can't put under a 10 for a wrestler like her, She is perfect, she is probably the best Joshi wrestler of the modern era, His Red Belt reign was absolutely fantastic and when she is in the ring, she can't misses, After seeing the work she did before she retire, One day we need a return. A Living Legend"
Rating: 10.0
Sentiment: 0.52
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: XIIVwrote on 05.06.2021:[10.0] "Coming off seeing her at the Hana tribute show, I can't help but hope that she considers another run, but if she doesn't she still has had an incredible career and is of the best performers of her generation."
Rating: 10.0
Sentiment: 0.95
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: axebombertsurutawrote on 18.04.2021:[10.0] "Flawless Final Boss of Joshi. Queen of Oedo Tai. Love how she works over opponents with excellent execution."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Suzukigunwrote on 10.03.2021:[10.0] "The queen of Oedo Tai forever. She had a badass look, great charisma, was amazing in the ring and on promos too. She also didn't mind doing unorthodox things that 99% of others wouldn't do. It sucks that she's retired, but she's a legend, period, at least in my book."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: medousewrote on 10.12.2020:[10.0] "One of the most talented, charismatic and spectacular joshi wrestlers of her generation. For me, she was the best captain of Oedo-tai. Her looks, personality and great acrobatic skills is what makes her a full package. She always cut great promos, she had a kickass theme, cool entrance and she finished her opponents with 450 Splash. Personally, she is my favourite joshi wrestler of all time."
Rating: 10.0
Sentiment: 0.5599999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: ElPolloLocowrote on 08.08.2020:[8.0] "Fantastic wrestler with a few unneeded quirks (see her willingness for brawling in the crowd and doing hardcore stunts) who really helped close the gap after Stardom got mercilessly raided for talent, one can really say that put in a sink or swim situation Kagetsu became an Olympian in a matter of months. Probably my favorite Red Belt champion after io Shirai because her reign was absolutely fantastic. I don't know and don't want to know why she chose to retire but I'd be glad if the door to a return she left ajar would open one day soon."
Rating: 8.0
Sentiment: 0.11818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Riggswrote on 24.02.2020:[10.0] "Kagetsu retires today with a match against Meiko Satomura (sp). She has amazing charisma and is an outstanding wrestler in the ring. She often worked hard to put others over and diminish herself. Joshi will miss an outstanding wrestler with her retirement. I wish her well in whatever she does from here on."
Rating: 10.0
Sentiment: 0.32708333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Chekerwrote on 16.02.2020:[9.0] "Kagetsu is legitimately one of the better women in Stardom. I hope to see her pop up elsewhere now that she's done with Stardom, but I fear that may not happen. EDIT: Bumped my previous rating from 8 to 9 as I felt 8 was a little conservative."
Rating: 9.0
Sentiment: 0.048611111111111126
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: cuervonegro83wrote on 31.01.2020:[10.0] "Kagetsu, if there is a thing I love about her is the honor way she follows, and yeah she is going to do anything to win, like spit you in the face, but at the end she is going to shake your hand if you have done a good match and normally also at the beginning she is going to offer the shake, I always like that cause this kind of things give her an unique personality, in the end Kagetsu is a fighter with Honor. Of course she is probably one of the best mic in Japan and I also like her entrance music. But let's speak about her in ring abilty, Kagetsu is a pretty complete wrestler she can read her opponent style and do the best to show the best of each other, as example this month she face Konami, a great ground style wrestler, and after an explosive beginning they stay for 2 or 3 minutes doing this grapple style, not so popular but also important to understand the style of Konami and also of Kagetsu. Kagetsu is also a striker, a good grappler and also have some highflying moves, like her Oedo Coaster (450 splash) and the way she does the missile dropkick after jumping to the ropes. If she is not a 10 is just a feeling, I feel she is not a 10 yet. EDIT: I did this rating on august expecting to see Kagetsu for some more years, but before she retires I want to give her a 10 'cause she has done a lot for STARDOM being a great leader of Oedo Tai and showing great chemistry with any opponent, so Thank You Kagetsu."
Rating: 10.0
Sentiment: 0.5763157894736842
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: arrancarwrote on 26.12.2019:[7.0] "So, with Kagetsu announcing her retirement alongside Hazuki, I guess it's time to give her a rating as well. Kagetsu was very, very good from my close following of her work in 2019. She had a fantastic look, incredibly clean movement, near-flawless technique in terms of move execution and selling, and tonnes of charisma. In a company heavily focussed upon 'idol wrestlers', Kagetsu easily stood out. She was definitely the 'coolest' member of Stardom, and she totally deserved her run at the top of the company. She was one of the few Stardom wrestlers whose matches I would always go out of my way to watch, since she was so talented and experienced that she could always make any relatively insignificant match interesting. I guess I'm lucky to at least have a backlog of Kagetsu matches to check out, but I obviously would have preferred if Kagetsu continued to wrestle and continued to increase her skills."
Rating: 7.0
Sentiment: 0.2496078431372549
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: KyleEnjoysWrestlingwrote on 01.08.2019:[8.0] "Kagetsu is a great asset for Stardom. She is solid in the ring & works well against other fan favorites such as Tam or Momo. She had a great long run with the red belt & I only wish Bea wasn't the one to take it from her."
Rating: 8.0
Sentiment: 0.178125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: NEVERoverweightChampionwrote on 05.07.2019:[8.0] "Very charismatic leader of Oedo Tai, she is certainly at ease on the mic. She can have strikes or submissions based matches without struggling, , she masters a lot of wrestling styles. The only thing that can really take her matches down is the brawling outside of the ring where I find her offense not always convincing. Interferences of her stablemates are not always interesting as well. Besides that she is a totally reliable wrestler."
Rating: 8.0
Sentiment: 0.2120811287477954
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Penta Strong Zero Mwrote on 29.10.2017:[10.0] "Strike, high flying, technical, she's great in a microphone, good acting and selling, very charismatic. A superb wrestler very complete who deserve i think a single belt in the future. They are no many womens in the world of professionnal wrestling who have all the qualities as Kagestsu."
Rating: 10.0
Sentiment: 0.2959920634920635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: DemonIngobernablewrote on 15.10.2017:[9.0] "Great in-ring skills, great charisma and she's in a great stable. Kagetsu is making a name for herself. Along his stablemates Hana Kimura and Tam Nakano, she'll be sooner than later a top star in Stardom."
Rating: 9.0
Sentiment: 0.5800000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: Faelthaswrote on 24.09.2017:[8.0] "Kagetsu is easily one of the very best things going in wrestling right now IMO. Since her return with her new look she has been on absolute fire. Her 450 is gorgeous."
Rating: 8.0
Sentiment: 0.4592352092352092
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10321&gimmick=Kagetsu
Comment: CJ Duskwrote on 05.07.2016:[8.0] "I liked Kagetsu from the first time I saw her back in 2014. Very solid wrestler and doing very well in tag teams. Shes come a long way and is moving up fast in the Joshi world. Satomura did a great job training her. Really like her new look and attitude. Maybe one day this little power house will get her hands on the JWP Openweight Championship?"
Rating: 8.0
Sentiment: 0.1953512396694215
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: WrestlingStuffwrote on 15.07.2024:[10.0] "The neutral monster of the musketeers while Mutoh was the charismatic hero and Chono was the dark villain. Hashimoto was a man with no boundaries, and you can tell that everytime he overhead chopped or straight kicked up guys in their stomach, it felt personal almost (seriously, he once dug his foot deep into Tenryu' stomach with a kick, he let a painful scream out). He was also a living proof of overweight wrestlers being capable of anything if they train hard, judging by the deadly kicks and agile DDTs he hit. To me, he was the greatest IWGP Heavyweight champion after Fujinami, and the special thing with Hashimoto is that he would let out all his emotions out in his matches, like a vulcano erupting to destroy everything around him. May our King Of Destruction rest in peace, and long live his strong style."
Rating: 10.0
Sentiment: 0.08246116628469571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: texasyoshwrote on 02.05.2024:[10.0] "He is the ethos of New Japan. He is fighting spirit. That comes across in almost every match that I've seen of his, all while being the biggest draw of his respective generation. He was that good. While Misawa could get stuck in a very standardized form of wrestling, Hashimoto felt much more dynamic in the way he set up his matches. It helps that he was really easy to root for as a babyface. It's truly a shame that he passed away so young. He had a lot more left to give in an industry that was rapidly changing away from pro-wrestling. His death marked the loss of one of pro-wrestling's strongest."
Rating: 10.0
Sentiment: 0.24269972451790636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Makai Clubwrote on 26.02.2024:[10.0] "While Kazuchika Okada may have beat him for best IWGP Heavyweight title reign, Hashimoto still embodies the idea of champion to me. The spirit of New Japan lived through Hashimoto during his peak. Muto, Chono and others may have had their fair share of big shows but none feel as big as when Hashimoto was defending or wrestling for the belt. Hashimoto was a rather underrated worker in his day because he wasn't fancy. He wasn't getting the credit he deserved by the tape traders, who were taken away by the Jr craze at the time, and that has left him out of the wider conversation for being one of the greatest when he certainly belongs. Whether it's a 30 minute match or a 12 minute match, Hashimoto always delivered something special. Something big and weighted. A master at getting something out of little. His kicks meant much more than anything. His chops could feel like game changers. His yells and screams added that little more drama to the mix without going over the top. Hashimoto felt larger than life and backed it up with his wrestling talent. A rare breed. One of the best ever. Truly deserved to be mentioned among Misawa, Kobashi, Kawada, Tenryu, Bryan Danielson, Bret Hart, ect, etc. And that's without mentioning his immense drawing abiltiies. Biggest draw of the 90s. No word of a lie."
Rating: 10.0
Sentiment: 0.2716396103896104
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Hillwrote on 17.06.2023:[10.0] "A hero that NJPW needed during the 90s, brought back the IWGP Heavyweight title from the UWF with a monstorous pop to boot, fought back agianst nWo Japan and went on to have the longest world title reign in New Japan with record setting defenses (for the time at least), his chops and strkes were vicious and was decpetively fast despite his weight. Through a series of backstage circumstances he even went on to create his own company, but sadly died far to young. He doesn't get enough respect (probably because he hardly went to the states copared to Mutoh and Chono), but I would place Hashimoto above the both of them."
Rating: 10.0
Sentiment: -0.07348484848484849
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Giantfan1980wrote on 05.06.2023:[7.0] "One of the most popular of all time that suffered an untimely death. He was solid in the ring, and looked the part."
Rating: 7.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: TooDarkMarkwrote on 21.12.2022:[10.0] "A monster of a wrestler. I could watch him kill people all day. I couldn't wait to find one of his matches on VHSs in the 90s, and I spent a lot of time watching his matches on video sites in the 10's. His anger, his spirit, his death stare, and the headband. One of the greatest to ever do it."
Rating: 10.0
Sentiment: 0.0666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: YourKingMobwrote on 13.09.2022:[7.0] "A tremendous worker who I never really liked. I found his moveset goofy, his look hilarious in all the WRONG ways, and as NJPW and Inoki dragged NJPW towards an awkward pairing with MMA, he looked even goofier. I know he's a legend, but he's not just for me."
Rating: 7.0
Sentiment: -0.011111111111111127
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: GriffinXwrote on 19.01.2022:[10.0] "He was the man that took that IWGP from the top prize in New Japan to one of the most important tittles in the world. His long reigns made value of the belt just that much more. Fans knew when someone finally took it from him it would be a big deal. His strikes were fantastic. Sadly like so many legends he was gone to soon"
Rating: 10.0
Sentiment: 0.21694214876033058
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: wrestlingisgrosswrote on 04.07.2021:[10.0] "The greatest seller of all time. Able to convey so much with his just eyes-- vulnerability, anger, malice, dignity, and of course, violence."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Ma Stump Pullerwrote on 03.05.2021:[8.0] "Out of the big wrestling stars of the 90's, Hashimoto was probably one of the biggest, just below Misawa in drawing power. The guy was a sensationally over guy back then and was the most popular wrestler in NJPW: despite the relatively simple look and non-existent promo skill the crowd took to him very easily and he was booked as a stiff striking machine capable of taking crazy amounts of shots and giving them back also with a aura that screamed murder. In terms of workrate, he's not fantastic, at least in my mind. He's had some great matches with guys like Tenryu and his later work in AJPW and ZERO-ONE showed that he could work beyond the stunted, forced "epic" style that NJPW had where they needed to pad matches out way beyond their natural length, a issue they have even today, but because a majority of his work is within that bubble it's hard to really judge him as a wrestler separated from that. He wiffs a lot of his striking style offence and I find that guys like Misawa or Kawada are far more convincing in terms of their striking. When he's actually wrestling and the length isn't too extended he's actually very good for what it's worth, but he's more remembered for his physical charisma and aura than anything else, with some surprisingly good technical wrestling behind the strong style persona. I would say that he was capable of having great matches, but only when he was with great talent alongside him."
Rating: 8.0
Sentiment: 0.22224053724053724
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Strong Zero Machinewrote on 22.12.2020:[10.0] "Absolute Legend! One of the biggest legend of New Japan and a top draw (90's). Badass, stiff, great look... Great rivalries with Keiji Muto and Naoya Ogawa, Longest IWGP Heavyweight reign for 20 years (he's 3rd run). IWGP Heavyweight x3, IWGP Tag Team x2, AJPW Triple Crown x1, NWA World Heavyweight x1, G1 Climax 98 and Tag League 92, 96. Wrestling Observer Newsletter, NWA and NJPW Hall Of Famer. Shinya Hashimoto deserve 10!"
Rating: 10.0
Sentiment: 0.33817640692640694
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: ElPolloLocowrote on 08.10.2020:[6.0] "Hashimoto is one of those wrestling legends I have never been able to appreciate. He's kinda like his fellow Musketeer, Masahiro Chono: for all the mystique of the legendary matches only a handful lived up to the hype back in the days when we finally could see them. After hearing and reading how incredibly brutal Hasmimoto's match with X or Y had been you patiently waited for the tapes to show up and when they did you were usually rewarded with the usual lukewarm showing by Hashimoto. Yeah, he had three/four really cool power moves such as his Brainbuster, but we needed to get to those moves first, meaning tons of meaningless kick sequences and too many pauses to allow Hashimoto to think what to do next, which was usually more kicks. Those matches wouldn't have been half bad had they gone 10 minutes but they invariably went over twice or even thrice that long: stretching matches too much has always been NJPW problem regardless of who's in charge. In all honesty I cannot fully blame Hashimoto for this because he didn't decide match length but he did little or nothing to keep things interesting. No small wonder everybody was watching AJPW back in those days."
Rating: 6.0
Sentiment: 0.04112318840579711
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Khalid Acewrote on 29.06.2020:[6.0] "Shinya Hashimoto is a tough one to rate because sometimes he could be spectacular in the ring but in others you'd think someone from the crowd just came to wrestle his first match!"
Rating: 6.0
Sentiment: 0.17453703703703702
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: arrancarwrote on 27.09.2019:[6.0] "Hashimoto is one of those wrestling legends who I've never been able to 'get'. The first match of his that I saw was the great match against Takada where he won the IWGP Heavyweight Title, and I thought Hashimoto did great playing the fiery underdog going up against, and eventually dethroning, the outside champion. Sadly, basically every other match of his I've seen has been majorly underwhelming. For supposedly being the 'God of Strong-Style', his offence looked incredibly poor. The man couldn't deliver a good kick to save his life. Sure, he could get stiff impact on them, but that never mattered to me because I couldn't get past how ridiculous they looked due to his lack of mobility. As for his chops and other hand-based strikes, they were all fine, but I never saw anything that made me think "whoa this guy has a killer offence" as so many others apparently think. He had a few good power moves, I'll give him that, but that was never enough to carry his matches to the level of being 'good' in my eyes. The moments where he would fire up also always came off as rather forced, thought that's probably just because I personally never bought into him as an in-ring worker, thus I couldn't buy into his character either. I also have to say that the 'warrior samurai' look he went for didn't work. At all. His body type simply didn't fit that type of theme. He looked like a bad cosplayer more than anything. The only other truly great match I've seen Hashimoto have was against Hase, and that was an outstanding match only because of how Hase's sympathetic selling made Hashimoto's offence look far more impressive than it otherwise was. I can't call Hashimoto a bad wrestler, and I can't even really call him a boring wrestler, if only because he had so much crowd support that could carry his disappointing matches to being mediocre at worst. I just don't see what everyone else saw in him."
Rating: 6.0
Sentiment: 0.07568581780538303
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: LandonRyanWyattwrote on 01.02.2019:[8.0] "Pretty good for a guy his size. It sucks because, even as long as he was around, I still feel like he didn't amount to his full potential. May he R. I. P."
Rating: 8.0
Sentiment: 0.1583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: JEK 1991wrote on 03.01.2019:[10.0] "Great in the ring! He was a stocky wrestler that could humiliate his opponents. New Japan was his turf for many years. The matches he had with Vader were amazing."
Rating: 10.0
Sentiment: 0.5590909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: RatingsMachinewrote on 12.10.2018:[10.0] "Shinya Hashimoto had the kind of tough, physical style that allowed for some very dramatic matches, and his penchant for getting nosebleeds added to his effect. Hashimoto was one of New Japan's better draws, but despite this, his time in New Japan ended unceremoniously thanks to the machinations of others."
Rating: 10.0
Sentiment: 0.0775631313131313
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: thagodrakimwrote on 24.04.2018:[10.0] "One of the best wrestlers of all time to be quite honest. No one could bring the same element of danger that Hashimoto brought to a match. Along with that he's one of the hardest hitters in wrestling history, an amazing seller, and he also had fantastic matwork to boot. He was also one of the few guys to show that you do not have to be extremely muscular in order to be a top star, and a top draw. RIP Hashimoto."
Rating: 10.0
Sentiment: 0.3638888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Claudio Herowrote on 18.11.2017:[10.0] "Bei Shinya Hashimoto kann man nur 10 Punkte geben ! Punkt ! Einer der größten Stars von NJPW der 90 er Jahre mit zahlreichen Top Matches bestückt (z. B. gegen Tenryu, Hase, Yamazaki etc ... ) In allen Matches die ich gesehen habe war er In Ring mäßig für seine Statur Top, beweglich, technisch klasse, schnell und charismatisch ... Habe von ihm noch nie ein schwaches Match gesehen, auch einige seiner späten Fights bei ZERO-1 waren noch sehr stark ... Leider viel zu früh verstorben ! RIP Shinya Hashimoto"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: TrevPuroFanwrote on 19.01.2017:[10.0] "The heart and soul of New Japan in the 90's. Everytime Hashimoto came out to the ring, you know you were in for a treat. Loved by the crowd, Hashimoto brought an intensity and presence of his own to the ring. Some of the best facial expressions and selling he had as well. All in all, he was incredible, and a top 5 performer ever to me."
Rating: 10.0
Sentiment: 0.548051948051948
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: RainmakerF7wrote on 26.11.2016:[10.0] "One of the biggest icons in Puroresu history, it's a shame that Western fans don't really know about him and he isn't mentioned in the same sentence with Misawa or Kobashi. An enormous draw despite not being a muscular dude, and really an incredible pro wrestler. Hashimoto is one of the greatest of all time."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: NastyYaffawrote on 13.04.2016:[10.0] "Shinya Hashimoto is, without a doubt, in my opinion one of the greatest wrestlers of all-time. He was incredible in the ring & incredibly charismatic."
Rating: 10.0
Sentiment: 0.7999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Alex Maedawrote on 15.08.2013:[10.0] "Ziemlich einzigartige Erscheinung. Unverkennbarer Stil, sowohl im Kampfstil als auch in Sachen Ringoutfit. Ich habe zwar erst nach seinem Tod Matches von ihm gesehen, denke aber trotzdem, dass ihn seither keiner ersetzen konnte und er von Kollegen und Fans weiterhin schmerzlich vermisst wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Leonewrote on 01.07.2012:[10.0] "He may have looked like the Japanese love-child of John Belushi and Samoa Joe, but he was a great wrestler with a lot of skills and agility for someone his size, and a very believable champion."
Rating: 10.0
Sentiment: 0.4833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Phoenix Downwrote on 18.07.2011:[10.0] "Der einzig wahre King of Destruction. Unvergessen seine Matches gegen Muto, Tenryu, Kawada, Yamazaki und so viele mehr. Hashimoto steht nach wie vor für Strong Style und für New Japan wie kein anderer Wrestler. Eine ganz große Legende des Puroresu."
Rating: 10.0
Sentiment: 0.28484848484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: 3durch16wrote on 14.01.2011:[8.0] "Hat mich bei seinen Auftritten, die ich von ihm auf DVD gesehen habe, überzeugt. Schade, dass ich ihn nie live sehen konnte"
Rating: 8.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Kenshin Uesugiwrote on 28.08.2010:[10.0] "Gehört wie Keiji Muto zu meinen Lieblings-Wrestlern aus Japan und ja selbst nach bald 5 Jahren nach seinem Tod, vermisse ich ihn immer noch. Er ist neben, Inoki und Choshu der Strong Style Meister von New Japan. Zu gern hätte ich ihn gegen Kobashi oder Kenta und Nakajima kämpfen sehen wollen. Hashimoto war eine Klasse für sich, der Mann strahlte ein natürliches Charisma aus und wenn er im Ring loslegte, zeigt er mit seinem Spirit allen Kritikern das Wrestling ein Sport ist. Mit ihm und Keiji Muto bin ich aufgewachsen. Ich habe geweint als er NJPW verlassen musste und als er für mich plötzlich aus den Leben gerissen wurde. Hashimoto niemand kann dich ersetzen !"
Rating: 10.0
Sentiment: 0.3018939393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Manolowrote on 19.07.2010:[10.0] "Für mich war Hashimoto noch vor Mutoh (und meilenweit vor Chono) der beste Wrestler New Japans in den Neunzigern.  Neben Misawa, Kobashi und Kawada war er mein Lieblingswrestler in Japan.  Leider ging er viel zu früh von uns."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: RickRollwrote on 11.04.2010:[10.0] "Hashimoto ist der inbegriff für Strong Style. In all seinen Moves war soviel Kraft drin, ob jetzt im DDT, Vertical Drop Brainbuster oder einfach seine Kick Variationen. Hashimoto ist stiff as hell und er gefiel mir von den Muskeltieren am meisten."
Rating: 10.0
Sentiment: 0.10952380952380954
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: hatebreederwrote on 03.12.2009:[10.0] "Der größte New Japan - Star aller Zeiten! Größer als Muto und Chono zusammen. Inbegriff des Strong Style. Legende, Ikone, nennt ihn wie ihr wollt. Einer der Allerbesten!"
Rating: 10.0
Sentiment: 0.3560606060606061
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: batze22wrote on 30.09.2009:[10.0] "Der beste IWGP Champion überhaupt. Er konnte wirklich aus jedem das beste herausholen. Leider ist er viel zu früh von uns gegangen. Ruhe In Frieden Shinya Hashimoto."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: LexLuger4everwrote on 24.02.2008:[8.0] "Ich find ihn nur gut, nicht sehr gut, aber ganz klar ist er legendär! Ich war damals sehr überrascht und geschockt, als ich von seinem Tod erfuhr!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Rancorwrote on 11.12.2007:[10.0] "Hashimoto ist einer meiner absoluten "all-time" Favoriten. Der Mann war genial, stiff und höchst charismatisch. Ich finde eigentlich keine Worte für ihn. Larger than life."
Rating: 10.0
Sentiment: -0.10714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=621&gimmick=Shinya+Hashimoto
Comment: Obermackerwrote on 26.09.2007:[8.0] "Stiffe Japanlegende, seine Matches mit Vader waren kolossal."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wrestlefan97wrote on 11.02.2025:[10.0] "Where do I start, since his time in WCW Chris Jericho has shown he is one of the best in the ring from his high-flying offense to his mat work he is one of the best. He has constantly reinvented himself and with each rendition, he has stayed relevant and entertaining, except for the recent character which I'd rather not talk about... anyway, aside from this no matter what character he's given, what company he's signed to, or slot he's put into he excels in this role. Some wrestlers struggle with having a great character and great in-ring work, but Jericho like many of the greats has both. I know I may sound a bit like a Stan but, when it comes to this subject I just get incredibly excited. In my opinion, he has earned the right to call himself the BEST in the world."
Rating: 10.0
Sentiment: 0.49243197278911566
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: itscalledtaylorhamwrote on 09.02.2025:[7.0] "If I had written this a few years ago, he would be a 9 or 10 easily, but Jericho is ruining his legacy with everything he's doing these days. He's completely washed, the fans hate him, and not only does he refuse to go away, he's seemingly taking the criticism to heart and telling everyone to go fuck themselves by being even worse on purpose. I respect the work he did in WCW, WWE, and the early days of AEW, but everything really since 2023 has been nothing but self-serving, makes me want to change the channel garbage and he needs to retire."
Rating: 7.0
Sentiment: -0.1074074074074074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: kruksterwrote on 06.02.2025:[8.0] "Back in the day Jericho was a 9 or 1 but looking at his whole career I am giving him a 8 as he has tarnished his career over the last year. Incredible in WCW and ECW, and really good in WWE, but has been less than stellar and downright awful his last year in AEW. Should not be holding the ROH title at is disgraceful to that once great company."
Rating: 8.0
Sentiment: 0.16833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CrandonMartin2001wrote on 25.01.2025:[10.0] "Chris Jericho is the most versatile performer the business has ever seen. No one reinvents themselves like Jericho--every time you think he's done everything, he finds a new way to stay relevant and entertaining. From being "Y2J, " the arrogant loudmouth interrupting The Rock and mocking Stephanie McMahon, to "The Painmaker" reinventing himself in Japan, to leading The Inner Circle and doing some of the funniest promos in AEW--he's done it all. Jericho's in-ring ability has always been top-tier. He can have great matches with anyone, from cruiserweights to heavyweights, and his storytelling is always on point. Whether it was his wars with Shawn Michaels, his feud with CM Punk, or even his ability to make a "list" into one of the most over things in wrestling, Jericho knows how to create moments fans never forget. What makes him, isn't just his longevity--it's how he's stayed a step ahead of the game. He's not afraid to take risks, step out of his comfort zone, or embrace the absurd, all while keeping his legacy intact. Jericho is the definition of a wrestling legend who still feels relevant, and that's a level of greatness very few ever reach. While he's not the Y2J we all loved anymore, you have to say he is and will always be '"The King of The World""
Rating: 10.0
Sentiment: 0.23664335664335662
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Khalid Acewrote on 25.01.2025:[4.0] "I can't believe I am rating my favourite professional wrestler a four however I would have to. I rate wrestlers based on their current form. Aside from that he's probably the G.O.A.T not on terms of his in ring work but for how many characters he played perfectly. But if you stick for too long after you have nothing to really offer in the ring anymore you get at most a four. He should just stop wrestling he's done so well throughout his career I don't want him to ruin it. I don't want to see the day the fans will keep chanting please retire for him every time he wrestles."
Rating: 4.0
Sentiment: 0.32142857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Nacho Manwrote on 24.01.2025:[10.0] "10.0 if I weren't newly registered on the site. What is with people giving Chris Jericho a zero rating? I was only on the site today to find some info about his last appearance in Smoky Mountain Wrestling in 1994, when he wrestled a very bloody tag match (at for him). Sure, Jericho's done some annoying things over the last few years in AEW, and probably has creative control over his booking, much like good ol' Hulk Hogan in WCW, to go with some of his questionable actions away from our TV screens. But this man is an absolute legend in professional wrestling; almost nothing he does in AEW these days can taint his legacy. From his babyface debut in WCW, where I became an immediate fan due to his off-the-charts charisma and tremendous athleticism, to his heel turn, where I suddenly found out what a great talker he was, with his hilariously annoying whiny heel promos. And then on to his unforgettable Y2J WWF debut, trading insults with The Rock, and he's never ever needed to look back. And even these days, although The Jericho Appreciation Society certainly got on my nerves, I'm really enjoying the current Learning Tree gimmick, especially his King of New York side gimmick, where we got to hear the native New Yorker say "Hammerschtein" many times, referring to the host venue for the ROH Final Battle event in December 2024, the Hammerstein Ballroom in NYC. Just hilariously cheesy, at least to me. A smaller group equals better results I suppose. More "TV Time" for Big Bill and Bryan Keith to get themselves over, to be sure. Jericho's in-ring work might not be what it once was, but at age 54 (! ), I think he's still pretty darn good and believable in the ring."
Rating: 10.0
Sentiment: 0.11204274891774893
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Personanowrote on 22.01.2025:[4.0] "[Updated Rating] I won't deny Jericho is a legend. He's put on some fantastic matches all over the world and somehow he's able to shine in pretty much every environment he finds himself in. WWE, AEW, even his earliest days in ECW and WCW contained some great & notable matches or moments. Something changed though. Instead of loving Jericho as I once did, I've become really really bored & tired of his corny & sometimes downright terrible Learning Tree antics. The character of 'The Learning Tree' was kinda funny at first, I'll admit. I loved his weird awkwardness in promos and willingness to teach the AEW audience really, really obvious life lessons, but it's hard to keep up such a character for so long and have it not get stale. And unfortunately, that's exactly what's happened."
Rating: 4.0
Sentiment: 0.04563492063492062
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dhruboezitwrote on 17.01.2025:[3.0] "Would've rated him a 8 or a 9 only for his WWE career. An attitude-era legend with great in-ring skills, charisma and absolutely incredible on the mic. He did great after his 2016 return and the whole "list" thing. Very entertaining. Vince fumbled not giving him and Owens the main-event match on WM. And.... then he went to AEW and at first was doing a great job with the "little bit of the bubbly" shtick. But then he kept getting fatter and fatter and fatter... as well as so slow that it seems as if he's wrestling in slow-motion. He can't even execute spots in a convincing manner. Botches every few seconds. His body cannot take it anymore clearly. So by now all he's doing is making a mockery of himself in a bingo hall filled with people laughing at him - and essentially destroying his once-great legacy. Sad. But the "nueve" or "learning tree" nicknames, or hoarding world titles while being a grandpa gives him a 3 at best."
Rating: 3.0
Sentiment: 0.2948529411764706
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lukeathonwrote on 13.01.2025:[0.0] "For all of AEW's Pro's - there is one BIG con to watching all of their shows and it is this man. An awful creepy sex pest who's awfulness has not only been completely swept under the rug but he's actually still being given World Title Runs afterwards in 2025! Nearly 12 years after Jericho's peak ended! Jericho back in the day was really good and I'll admit that, his WCW & ECW early days were amazing, he had a unique good look, had all the charisma in the world, and the only person I think that could rival him on the mic in 2000 was The Rock. His in ring work was stellar and most of all his longevity! The guy put on a show no matter what for 20 years but to me all of it means naught now, the guy should be ostracised, not only that but after 2021 his schtick has been so boring, his feuds never elevate anyone other than himself, he apparently books his own matches, he constantly aligns with stables and then never even tries to get them over, his feuds with younger talent never get them over because nobody cares about him anymore, plain and simple, he is overstaying his welcome in the wrestling business, but to me after what he did to Kylie Rae, his entire career overstayed it's welcome, screw you Jericho."
Rating: 0.0
Sentiment: 0.09950738916256159
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dizziedwrote on 12.01.2025:[7.0] "Old Jericho i would've given a higher score, He was probably more like a 9 in his prime. However, now it looks like he plays the politics to stay relevant. He continues to bury younger talent who he should be pushing. This part of his career is more ego than anything. The one thing though about Jericho that stands out is his mic skills which are legendary."
Rating: 7.0
Sentiment: 0.39285714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: milos16057wrote on 08.01.2025:[8.0] "Man that has two careers, one that every wrestler dreams of having, and one every wrestler has nightmares of having. In his prime, he was one of best wrestlers in the world, with huge list of incredible matches and legendary wrestlers he worked with all around the globe. Right now, he is shadow of his past self that lives of his name and not current work. His WCW run was great example of wrestler using most of time he was given, and despite not being best worker in cruiserweight division, he was by far most entertaining. In WWE, he was doing his best as heel upper midcarder, as he never really managed to get over as top star of company. His heel work in feuds with HBK, Rey Mysterio and CM Punk was excellent, and he absolutely carried these feuds. His feud with KO proved he can be popular babyface too. His in ring work was best in 2000s and he started to slow down later. After his feud with CM Punk, he was just there on the roster without any real direction and point. Kevin Owens storyline was chance for Chris's career resurgence, but Vince managed to mess it up and send Jericho out of WWE for good. His run in NJPW was fun, with great matches against Kenny and Naito. He had major role in establishing AEW, and his run with Inner Circle was pretty good. Feud with MJF is point in time where his career starts going down the hill. People started falling into Jericho Vortex and it takes his rivals months and years to get popular again. He is so much slower and sloppier in the ring, his promos don't have same excitement and fire as before and such a shell of former world champion doesn't really benefit anyone. This Learning Tree thing was fun in the beginning, but it turned out to be same old shit and as of now, there is no reason to pay attention to anything that Jericho does."
Rating: 8.0
Sentiment: 0.3264114357864357
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MEDaminewrote on 07.01.2025:[5.0] "He's nowadays the hardest wrestler to rate, his present stuff has almost completely ruined his career and legacy, he used to be one of the best, someone who will produce great moments in any role he's given, he had the skills, both ring skills and mic skills, and was a great character worker, and of course, he was incredibly charismatic, and he was so creative, and was always entertaining to watch, but now he's just a shell of his former self, whether it's his matches, promos or backstage segments, he just produces some of the worst stuff in wrestling currently, he should just retire atp"
Rating: 5.0
Sentiment: 0.29090909090909095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Ozwernwrote on 05.01.2025:[5.0] "Really hard to rate him now considering his past self and current self. He's been a legend for decades, getting over and staying over in multiple companies in different eras. Even in the first couple of years in AEW, he was very good but things turned sour in the last couple of years. His in-ring performances have gotten really bad and the worst part of it all is that even if he didn't deliver in the ring, he'd always have great promos and character work but that creative spark seems to have gone missing. I think rating him as average would probably be the fairest."
Rating: 5.0
Sentiment: -0.018777777777777775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rosyawrote on 04.01.2025:[9.0] "It seems Chris Jericho has become a victim of mass hate, where one started and others followed. To underestimate the rating of a man who at 54 years old gives his all to wrestling as if it were the last time is a crime. Chris Jericho made a huge contribution to both WWE and AEW, for which he deserves a huge thank you! Not a perfect wrestler, but great and unique. The best in the world at what he does, keep it up!"
Rating: 9.0
Sentiment: 0.18
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: IKEisOnlinewrote on 02.01.2025:[5.0] "Chris Jericho has been a major player in almost every promotion he's worked for, producing some all time moments in the process. Once a performer guaranteed to elevate any program he was apart of, Jericho has gradually devolved into a parasite who, consciously or not, leeches off younger talent to maintain his status within AEW. The problem with Jericho isn't that he never provided any value, but that he has long overstayed his welcome. He is consistently the worst part of every show he appears on and the audience reaction reflects this with every new segment. At this point, you just hope Jericho doesn't stick around long enough to erode whatever remains of his once ironclad reputation."
Rating: 5.0
Sentiment: 0.009886363636363653
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: daichiwrote on 24.12.2024:[0.0] "As a newer fan I thought it was unfair to rate Jericho, having not seen his full career. But there is not a single current wrestler I hate having on my screen more than Chris Jericho. He is 54 years old, clearly at an age he should not be wrestling weekly. He is also consistently stinking up matches, winning titles he doesn't deserve, burying younger talent and ruining every wrestler that dares join his faction. Just so many bad tag team matches and worst match of the year contenders are his fault (the Mistico and Cardona matches being two examples). Recently, he even injured a returning Bandido because of how terrible he is. AEW and the wrestling community as a whole would be so much better without Jericho. For the love of god and everything the is holy, please do pro wrestling a favor and retire."
Rating: 0.0
Sentiment: -0.024436090225563905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: theacmoneywrote on 23.12.2024:[5.0] "Chris Jericho has been one of the best ever in terms of the ability to constantly reinvent himself, but he's always been an unconvincing face (I still have nightmares of forcing the crowd to chant "tooty frooty booty" at The New Day) and his phoning it in after signing with AEW has been a damning career downturn. Had he gone out on top with WWE, this rating is higher, but we have to look at his entire body of work - and we've been looking at *a lot* of his body recently, given how much weight he's put on. (Sounds like he's been eating a lot of delicious Omaha Steaks, which make a great Father's Day present! ) His out-of-ring life has been questionable as well. Looking back, I can't think of anyone whose wrestling career was better for having feuded with Chris Jericho."
Rating: 5.0
Sentiment: 0.2775974025974026
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SadDorowrote on 23.12.2024:[6.0] "Chris Jericho has had flashes of greatness throughout his career but never for more than 3 years at a time. Jericho has mostly benefitted from working with better wrestlers, better talkers and performers simply too over to not produce something great with."
Rating: 6.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GonzoAppreciatorwrote on 20.12.2024:[9.0] "One of the best to ever do it. He always delivers in between the ropes and he has more than proven himself as one of the best talkers ever by cutting classic promos across multiple decades in multiple companies. He was an integral part in getting AEW up and running and has used his position as a legend on the roster to put over younger wrestlers like Darby, MJF, and Orange Cassidy. His ladder match against Shawn is easily in my top three wrestling matches of all time. The last year or so in AEW has been pretty spotty but Jericho still has it in him to pull out a decent match/segment every now and then."
Rating: 9.0
Sentiment: 0.2486111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MichaelB137182wrote on 08.12.2024:[0.0] "I mean leave it up to Tony Khan to destroy Chris Jericho and his whole legacy. Use to be the guy who was known to reinvent his character, never leaving fans not entertained, putting up classics in the ring along with some of the most iconic promos ever, and always putting new talent over taking them from a prospect and turning them into main eventers. A legend in the game. Now.. basically Goldberg in his final run in WWE but actually worse. Horrible promos, horrible matches, horrible presentation, horrible look. If a Jericho match gets booked I sigh. Going over against people he shouldnt, having the worst promo segments in recent memory. Looks horrible, has horrible matches, yet still he is almost a weekly feature, involved in all pay per views and yeah just horrible. Sad to see the decline but at this rate Jericho and his legacy is in serious danger. Tony please, we all know you are a cagematch mark. Read this and let Jericho retire. Dont ruin his legacy aswell."
Rating: 0.0
Sentiment: -0.4115620490620491
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: wrestlingswiftiewrote on 04.12.2024:[8.0] "When Jericho is at his best, he's the most watchable guy on television. But when he's at his worst... You get someone who internally drains you just by watching them. Even though I've knocked off a couple of points because of some portions in his career (most notably his current 2023-24 AEW run), I won't let that diminish his high points."
Rating: 8.0
Sentiment: 0.2075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: devourblastwrote on 01.12.2024:[10.0] "I understand a lot of his work in AEW can be viewed as divisive and there's certainly some things myself I do not enjoy. With that said, if this is meant to be a rating of a wrestler as a whole, I think a 10 is still warranted. For doing as much as he has for as long as he has and being a true master of innovation, he should be regarded as one of the best."
Rating: 10.0
Sentiment: 0.24489795918367346
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AceHagannwrote on 26.11.2024:[6.0] "From Jericho's early years as a wrestler, to his last WWE run, it was clear that the man was a great worker. Great both in and out of the ring. That said, his years on AEW have soured my opinion of him. So my rating balances the former and the latter."
Rating: 6.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ItsAllAWorkAnywaywrote on 14.11.2024:[9.0] "Once upon a time, I was a Jerichoholic. For if I wasn't watching the Ayatollah of Rock N' Rolla on Monday Night Jericho, I was watching The Best In The World In This Business on Raw Is Jericho. And I would give my friends the gift of Jericho and tell them "Drink it in, man! " because if they didn't, they would be told to please shut the hell up as I remind them they just made the list for being a stupid idiot. Yet without provocation, they enjoyed Jericho like they enjoyed "a little bit of the bubbly" because anyone who has seen Le Champion, The Demo God, has never.... EEEEver been the same a-gain! But then I joined Jerichoholics Anonymous and realized he's a solid "9" and that criticisms around his latter-day booking are not unwarranted."
Rating: 9.0
Sentiment: -0.008440170940170947
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DoubleCountoutwrote on 05.11.2024:[0.0] "please retire. a pathetic, delusional, and disgusting hack of a wrestler that would be doing everyone in this industry a massive favor if he were to retire and go away forever. instead, chooses to stick around and waste everyone's time with awful matches and lame meta gimmicks about his TV time. truly so shameful and embarrassing to watch it play out over the course of the last year or so, both for him and the promotion he is employed by. just chipping away at his legacy more and more with every dipshit TV appearance and dreadful match. just flat out too stupid to realize how worthless he is as a performer at this point, zero ability to be objective, no self-awareness whatsoever. whatever respect I had left for him has gone out the front door a very long time ago and is never coming back. cannot wait until he is finally gone for good. please retire."
Rating: 0.0
Sentiment: -0.24684210526315792
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Conquistador37wrote on 21.10.2024:[10.0] "EDIT/Clarification: This review only counts his in ring career up to 2004ish, although I am vaguely familiar with his return where he had short hair and trunks... so please understand I am discounting approximately 20 years of his material! Anyway, here was the original review totally unchanged: It was only around a month or so while he was in WCW that I said to myself (and others) "this guy is going to be THE guy". I had no idea how correct I actually was. I knew he'd be tippy top level, but I didn't know he would reach god/goat tier status. Instead of a career overview like I usually do: Chris Jericho is one of the most important figures in wrestling history. An unrivaled ability to reinvent himself, I think we can all agree no one has ever done that better. The best mic skills in a post Bill Eadie/Jim Cornette wrestling world, in my estimation topping The Rock with relative ease. An ability to elevate entire companies and ah hell, he's good looking too! Just gotta work on those politics... a solid 10. (More edits; I mentioned work on the politics. He's an election denier, I bet he believes other maga nonsense (that I don't want to even know about) as well, such a shame...)"
Rating: 10.0
Sentiment: 0.19761904761904764
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Its Clobbering Timewrote on 18.10.2024:[10.0] "Chris Jericho is an perfect wrestler. Y2J has no flaws in his game. He has been a top guy in every promotion he's been in. Jericho has amazing mic skills and has some of the best promos of all time. He's also really good in the ring and has had amazing matches. He is one of the best heels of all time, he knows how to get people under his skin like nobody else does. But Jericho's best attribute is his ability to reinvent himself, his character work is the best of all time. From the lionheart, to Y2J, to the best in the world at what i do, to you just made the list. Their is nobody better at changing their character then Y2J. His accolades are also up there with the best he has won championships in WCW, WWE, AEW, ECW, ROH, NJPW & CMLL. There is no denying that his impact on the business. Love him or hate him there will never be another Chris Jericho."
Rating: 10.0
Sentiment: 0.6133333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NoaHS106wrote on 16.10.2024:[9.0] "Auch wenn er Aktuell nicht mehr der Painmaker oder der Promo Gott von einst ist, ist er jedoch für mich einer der größten aller Zeiten. Ich hoffe er findet wieder zu altem Glanz mit einem richtigem Gimmick, nicht wie das LearningThree Gimmick."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JackBurtonsTruckwrote on 14.10.2024:[9.0] "I am only taking into consideration Jericho from his early days until his performance began to decline. I dont feel I need to consider someones post prime work and allow it to taint his rating. Jericho was the standout for me in Nitro. His segments were funny, full of charisma and not something to skip. His in ring performance was captivating. He is one of the few wrestlers other than Kurt Angle I genuinely found hilarious when they were being funny. I find myself rewatching his matches and segments more than any other wrestlers."
Rating: 9.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Nolan Greenwrote on 30.09.2024:[7.0] "I wish I could only rank him from the beginning of his career to 2017. He was a great wrestler that was extremely underused in almost every promotion. But then came WWE and he achieved superstar status. He was great against everyone and his reinventions were great. But then we get to AEW. Becoming the first AEW Champion, forcing Cody Rhodes to never win the title, The Painmaker, The Jericho Apprecation Society, The stupid matches he's constantly in, The Kylie Rea allegations, The feud with Eddie Kingston, The Adam Cole match with Sabu as... whatever he was, WTF."
Rating: 7.0
Sentiment: 0.03958333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MooGatiwrote on 29.09.2024:[10.0] "The master of reinventing himself to say relevant and interesting. Admittedly, he's having a bit of trouble with that lately, but a few months off and a refresh will show everyone just how much they miss him when he's gone."
Rating: 10.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RaysBruwrote on 26.09.2024:[6.0] "An all time great, he's just past his prime and dragging it out. He frequently tries to reinvent himself with new alter egos and gimmicks, but it's not hitting the same as it once did, and most of his recent ideas haven't worked out so well. It's admirable that he's focused on elevating young talent at this stage of his career. A fantastic worker, great promo and one of the most influential wrestlers ever, he's always been slightly overrated and keeps hurting his own legacy."
Rating: 6.0
Sentiment: 0.2553613053613054
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ChadCashwrote on 18.09.2024:"Jericho in his prime was one of the best in the world. There might have even been times when he was not being used to the best of his abilities. The issue now is that Jericho has outstayed his welcome and is at risk of tarnishing his legacy if he has not done so already. I dont think he has shown any value since his Cody feud, and by all reports still has a LONG time to go on his AEW contract. It is a shame because up until then Jericho was incredible."
Rating: No rating found
Sentiment: 0.73
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: sKiaWeVwrote on 14.09.2024:[9.0] "Chris Jericho currently has a similar vibe to Undertaker; unquestionably one of the greatest of all time... but jeez, they should've retired years ago! Jericho of the past was incredible in the ring, on the mic and creative enough to re-invent himself whenever his character got stale, currently, he possesses non of those qualities."
Rating: 9.0
Sentiment: 0.18333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SCMIV440wrote on 12.09.2024:[8.0] "Rating Jericho today is quite difficult. If you were to ask me where he landed in 2020 I legitimately might've said he was a top 20 maybe 15 guy of all time due to his constant re-inventions, pulse on what's popular, and a pretty good match catalogue. He's talented enough to have been successful in 4 different decades so much so that he's been world champion multiple times for multiple different companies across 3 of those 4 decades. I am sure that there is a list of all the guys who have also achieved the same thing but I'd bet that the list is short. But if you asked me to look at his career from 2024 to today I'd say this he's desperate, creatively devoid, out of shape, and trying to cling to younger talent because then that keeps him on TV. He's gripping to death on something that's already slipped his grasp. It's killed his case for any top 30 in my mind. I can't recall a wrestler falling off the metaphorical cliff this bad on so many different fronts. It kind of makes me sad that a non wrestling fan could tune into Dynamite would be baffled at what they were watching. However, I'd pay to be them because then at least I wouldn't know that Jericho is actively be bastardizing his storied career."
Rating: 8.0
Sentiment: 0.09817708333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Icekommanderwrote on 09.09.2024:[6.0] "Rating Jericho is a difficult matter -- the vast breadth of his career means that as time has gone on the forgettable matches and moments have largely been forgotten while the great matches and moments have continued to live on. Given just how long he has had to compile career highlights I could hardly argue with someone who said Jericho is one of their top five wrestlers or even their absolute favorite. Having said that, we are witnessing him getting passed by younger wrestlers in real time. And that unfortunate truth has left him overexposed, buoyed by the drawing power of name recognition but unable to deliver on the TV and PPV time he has been given, and at this point not even really able to given talent a rub by taking a loss. He still isn't bad, but from a wrestling standpoint should no longer be near the top of the card or leading factions. After retirement I may revisit this rating and take the longer view of his career, but for now I cannot rate him that highly."
Rating: 6.0
Sentiment: 0.03661822304679448
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jsbortswrote on 08.09.2024:[9.0] "Chris Jericho is one of the best wrestling minds North America has ever had, and always was a pretty darn good wrestler. He's one of the best of all time sheerly for his ability to consistently reinvent himself with new characters, and translating that to in-ring work really well. He's had some incredible feuds, incredible moments, but sadly his physical peak was at a time when in-ring work was at its lowest value of all time, preventing him from probably realizing a lot of the greatest in-ring work that he was capable of in his career. But the guy has had memorable runs in 4 different major wrestling companies, which few people can say."
Rating: 9.0
Sentiment: 0.3554924242424243
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 12psiwrote on 27.08.2024:[10.0] "Chris Jericho is the greatest heel of my lifetime, providing consistently creative, unique, and dumb-as-hell bits that have wild shelf life to them. His in-ring work was fantastic for the vast majority of his career, putting on spectacular, main-event-worthy matches across promotions and continents, and even as his physical ability has dwindled in later years, he has more than made up for it with his gimmick, psychological, and narrative-driven work."
Rating: 10.0
Sentiment: 0.3159090909090909
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Nudlewrote on 26.08.2024:[6.0] "It pains me to give Jericho a 6, it really does, but he's been declining since around 2010, and he's been downright washed since 2018, and seemingly refusing to hang up the boots while he steadily gets worse in every single department. If I was rating him by the end of 2010, he'd probably be a 9, shoot maybe even a 10, but it's 14 years later, and he's downright terrible now. Horrible promos, matches, image (both public and kayfabe). Long gone are the days of him knowing when it's time to go away and re-invent himself. I'm not sure why he insists on sticking around now. He adds nothing to the product, in-fact, he actively makes it worse."
Rating: 6.0
Sentiment: -0.24484126984126983
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CicconeYouthwrote on 21.08.2024:[10.0] "So sad to see how people are rating him in 2024 because of his late AEW work... By my terms, best wrestler in the history of the business. He shined everywhere he went, Mexico, Japan, WWE, AEW, WCW... you can not see one single flaw in his work."
Rating: 10.0
Sentiment: 0.03214285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Davey-Bwrote on 16.08.2024:[9.0] "Definitiv einer der besten Wrestler aller Zeiten. Kaum einer hatte eine so lange Karriere, mit so viel facettenreichen Storys und Gimmicks, die er immer einzigartig umsetzte. Im Ring immer zu haben für einen absoluten Banger von einem Match. Leider hat er aber seine besten Zeiten mehr als hinter sich und ich würde mir wünschen, dass er entweder die Karriere langsam an den Nagel hängt oder nur noch als Manager fungiert. Da könnte er sich sogar nochmals neu erfinden. Ingesamt muss man aber so oder so anerkennen, welche grandiose Arbeit Jericho in seine Karriere im Wrestling geleistet hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Srckingwrote on 07.08.2024:[10.0] "One of the greatest of all time. Forget the allegations as they are not proven. The last few years he hasn't been good but overall he is a stellar performer and a legend of pro wrestling. Who would've thought that Leonhart would have such a great career. I actually enjoy his learning tree gimmick. I think is hilarious. He just would have to prove that he is still good in the ring though. Regardless, 10 points."
Rating: 10.0
Sentiment: 0.3772727272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DEADLOCK66wrote on 05.08.2024:[8.0] "Jericho historically will be looked upon favorably. He is extremely talented in the ring and is one of the best heels in wrestling history. Plus his heel run that began when he turned on Shawn Michaels around 2008 was simply a masterpiece. His comebacks have always started strong and found a way to become a relevant threat in modern wrestling. He has been adaptable in every generation of wrestling. His current gimmick is the least appreciated part of his career, and I agree. However, that says a lot for a wrestler with such a solid, storied pedigree. I can't get into who he is as a person. Many different things are speculated, which doesn't interest me right now. As a wrestler, I think a 9 in history is fitting, but depending on how his current and most likely final run ends, I think it will falter his memory because someone's finish is what people remember about you. Maybe forever underappreciated, but any higher feels disrespectful to my opinions and standards, which may be too high."
Rating: 8.0
Sentiment: 0.21950216450216453
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KobashiChopMewrote on 03.08.2024:[6.0] "Jericho has not been good for a long time. I've said for a long time that his last good year was 2017, and I firmly stand by this belief. He did more harm than good for a lot of the guys in AEW when he brought them into his faction. The JAS hurt Garcia's career for so long, and he's finally just now starting to get back on track. Proud N Powerful are another example of people who were hurt more than profited from their association with current day Jericho. This run with the FTW championship is abysmal. That said, his overall body of work is so good if you take out his run post 2017 that it would be an insult to rate him any lower than a 6."
Rating: 6.0
Sentiment: 0.25277777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Chosen Onewrote on 02.08.2024:[10.0] "Auch wenn es nun endlich soweit gekommen ist, dass die Fans gegen ihn geturnt sind, wird Y2J für mich immer eine 10 bleiben. In WCW fing er als ein solider Face Cruiserweight an - mit einem guten Moveset, guten Look, aber noch ohne viel Charakter... Bis er den Heel Turn gemacht hat. Sein Heel Run in WCW ist und wird immer legendär bleiben. Sein Debüt in der WWF ist meiner Meinung nach auch immer noch eines der absolut besten und er war sowieso ein wichtiger Bestandteil der Attitude Era. Sein Höhepunkt war für mich sein 2008 Heel Run mit der Rivalität mit Shawn Michaels. Da trägt der Rockstar auf einmal Anzug und er sieht auch noch gut aus! Jericho hat sehr lange sehr gut geschafft, immer frisch und relevant zu bleiben. Er ist DER Wrestler, von dem jeder Neueinsteiger eine dicke Schneibe abschneiden sollte. Look, Moveset, Charakter, Mic Skills... In jeder Hinsicht ein brillianter Wrestler. Der Mann wurde für dieses Business geboren."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Enchantiumwrote on 27.07.2024:[5.0] "Chris Jericho is a very legacy-based name that has been around all over the world, competing in different promotions and winning world titles, and will be regarded as a legend. I don't want to be harsh with this rating, but his current year has been one of the worst that I have seen from a wrestler. The guy is 53 years old; he shouldn't be wrestling much anymore. He should have probably hung up the boots a few years ago. Most of his matches are really awful, with the occasional rare one that seems to do well, but I think the past few years have tainted his career really badly. So this might come across as slightly rude, but for his all-time career, he deserves a 9, but for recency, it has to be a 2."
Rating: 5.0
Sentiment: -0.12058823529411763
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DENDYwrote on 27.07.2024:[7.0] "An often good but rarely great worker, Jericho has always been very overrated in my opinion and while he has had a solid and lengthy career, he is far from the upper echelons of workers across wrestling history. His reinventions are shallow, his promo skill is inconsistent and can too often rely solely on tropes, and as mentioned his in ring work is just not on the level of many who are lumped in the same category as Jericho often. He has had his highs of the mid to late 2000s, and his lows of his early work and his current run, overall has given a lot to the industry over a long period which gains him credit. Not a personal favourite of mine by any means."
Rating: 7.0
Sentiment: 0.10729166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bongowrote on 27.07.2024:[4.0] "Jericho's overall career needs no introduction, but he's become unbearable recently. Completely unwatchable and an instant skip whenever his music hits. He hasn't had new material in years, his matches suck and he takes away like 20 minutes a week from people that could use it. Total waste of time and opportunities. It's gotten to the point where I don't even care if he leaves for a long time and comes back for some absence makes the heart grow fonder trick and if he retired tomorrow, I'd probably breathe a sigh of relief."
Rating: 4.0
Sentiment: -0.0029040404040404063
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Willie 19200wrote on 24.07.2024:[4.0] "The earlier years of Chris Jericho was really good and entertaining in ring and mic work, but since we're going off his overall career, we have to include his recent stuff. It's clear that he's been out of shape and lacks all of the great in ring moves he used to do, not to mention he relies on younger talent to stay relevant. His promo however, is still very entertaining and sometimes enjoyable, but sometimes it just runs real dry. His newer stuff with FTW title is just terrible, he barley puts over any stars and now he's just impossible to watch"
Rating: 4.0
Sentiment: 0.13452380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: XNoWayKemoSabeXwrote on 24.07.2024:[8.0] "One of the greatest to ever do it! I've been watching this man work since I was a wee lad and I can vividly remember his WWF debut with the Y2J gimmick. Since then I've seen him do it all. He's had some amazing gimmicks, but he's also had some not-so-great ones, but the fact that he's all in on whatever gimmick he's rolling with is a true testament to his experience and dedication to the business."
Rating: 8.0
Sentiment: 0.51875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: OldSchoolFan3098wrote on 23.07.2024:[8.0] "Chris Jericho is undoubtedly one of the all-time greats in professional wrestling. His career spans multiple decades and promotions, showcasing his versatility and adaptability. From his early days in WCW and ECW to becoming a cornerstone in WWE and later making waves in AEW, Jericho has consistently reinvented himself. Whether as Y2J, the List-maker, or the Painmaker, he has always found a way to stay relevant and keep fans engaged. His mic skills are legendary, capable of generating heat or laughter with just a few words, and his in-ring work is equally impressive, blending high-flying maneuvers with technical prowess. One of Jericho's greatest strengths is his ability to evolve. Unlike many wrestlers who rely on a single persona throughout their careers, Jericho has constantly refreshed his character, making him a mainstay in an industry that can be fickle. His ability to tell a story both in and out of the ring is unparalleled, and his matches often have a level of psychology and nuance that elevate them beyond mere athletic contests. Jericho's charisma and showmanship have also made him a crossover star, with successful forays into music, acting, and podcasting, further cementing his status as a multi-talented entertainer. However, no performer is without their weaknesses. At times, Jericho's constant reinvention can feel like a double-edged sword. Some fans argue that his frequent character changes can be jarring and make it hard to invest fully in one persona before he switches to another. Additionally, while his mic skills are generally top-notch, there have been moments where his promos have missed the mark, coming off as forced or out of touch. In-ring, as Jericho has aged, he's naturally slowed down, and some of his later matches lack the same pace and intensity that defined his earlier work. Nonetheless, these minor flaws do little to tarnish the legacy of a performer who has given so much to the world of wrestling."
Rating: 8.0
Sentiment: 0.1557014472455649
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: woolyshamblerwrote on 21.07.2024:[4.0] "score goes up because jericho vs benoit at royal rumble 2001 is my favorite ladder match of all time, and for the occasional high points like JeriKO, the orange cassidy feud during the pandemic, and the MJF steak dinner. score goes down because of his long, agonizingly slow decline in nearly every aspect of pro wrestling since around 2003, his biggest strength is comedy and even that stuff is hit and miss (and in the WWF it was always awful). allegedly in AEW to put people over, jericho only seems to do the clean job to people who are not going on to the main event (orange, HOOK, will hobbs...) and so won't be a threat to him, so it's silly to try to give him credit for any of that stuff."
Rating: 4.0
Sentiment: -0.06247863247863247
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Paul04wrote on 20.07.2024:[3.0] "I respect like 80% of his career, but this last 3 years had been so bad, with the last year just being terrible, The Learning Tree is so so bad, that doesn't want me to watch AEW Live, he hasn't put anyone over, and every storyline of feud he is in goes for way too long, he has been having the worst matches on every show for like a year now, I can't say anything good about him right now, he thinks this gimmick being bad on purpose is funny, but it isn't it just BAD, I will always respect his legacy and his career but he may need to take some vacations so we can all disintoxicate from one of the worst times and gimmick of his whole career, because right now AEW is almost unwatchable to me, since this new gimmick started and haven't watched AEW Live because I can't skip his segments"
Rating: 3.0
Sentiment: -0.20663780663780662
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Open The Vaultwrote on 14.07.2024:[5.0] "Chris Jericho is an absolutely legendary performer who will go down as one of the best professional wrestlers in history when he eventually decides to retire. He's been all over the world! WWF/E, WCW, FMW, WAR, CMLL, ECW, AAA, NJPW, ROH, AEW, DDT & PWG. He's done this and done that! He's held mid card titles, world titles, tag titles, you can name it and he's done it. Amazing segments. Amazing matches, Amazing stories. He's an easy 10 when he hangs it up. But it's 2024 and he's still wrestling so we rate based on his current run. He's 53 years old and has obviously slowed down since then. A broken down body which can't perform like it used to. He's now the Learning Tree and has Big Bill and Bryan Keith, while funny it feels forced and it ends up being hard to watch and everytime AEW tries to get Jericho over it just doesn't work. He needs time away."
Rating: 5.0
Sentiment: 0.15148809523809526
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Johanwrote on 04.07.2024:[10.0] "let's be real, he is a 30 year veteran with great careers and matches all accross the world and some legendary promos and programs, there is no way he is not a 10 even if his current work isn't pleasing, same thing applies to Ric Flair/Randy Savage and such wrestlers who had some terrible late years as well, or Shawn Michaels who had some terrible early years."
Rating: 10.0
Sentiment: -0.018181818181818184
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rassle Fanwrote on 01.07.2024:[8.0] "Rating the totality of his career still puts him in the upper echelon of wrestling. However, he's already in Flair and Undertaker company of hanging on way past his expiration date. If he keeps this up for another few years it's going to ruin his legacy even more."
Rating: 8.0
Sentiment: 0.012499999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Aisha2024wrote on 01.07.2024:"One of the best wrestlers in the business. Great wrestling skills, very safe with his opponents and thoughtful toward fans"
Rating: No rating found
Sentiment: 0.7125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 2pt0EcoBoostFusionwrote on 27.06.2024:[8.0] "I usually don't like using the word "legend", but I feel as though I can use it for Chris Jericho since he obviously is a legend. Jericho's work over the last 3 decades in wrestling has been phenomenal, being one of the most influential in his class, cutting great promos always as well as being super charismatic and being great in every company he's been in. Jericho could also play a very good face and heel during his wrestling career. His WWE debut will go down in history as one of the greatest and his career there even more so. He was very important to the beginning of AEW and his run there was going very well up until the last several months of recently, where he's been hard to watch and has been just sucking up TV time from more deserving wrestlers on the roster. Don't get me wrong, Jericho is one of the greatest to ever step in the ring, but his recent AEW stuff has been just not good whatsoever and I believe it's time he becomes more of a part-timer since he wouldn't have this much Go-Away heat if that were the case."
Rating: 8.0
Sentiment: 0.25771825396825393
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Chris777wrote on 14.06.2024:[6.0] "overrated. Haven't been good for almost 15 years, riding the nostalgia train as long as he possible could, ruining talents and shows with his ego and poor ideas. Even his older stuff is riddled with people wholeheartedly believe that he is such as good person and underrated talent. Nope, at no point is he world champion material, cant carry a show and never will, doesn't matter how many time he "reinvented" himself."
Rating: 6.0
Sentiment: 0.2020833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wanglerwrote on 09.06.2024:[8.0] "The gimmicks are revamped every few months, none being particularly effective and even the old classics like Lionheart aren't doing it any more. He had three separate segments on this week's Dynamite. Still charismatic but we've heard it all before. Was genuinely amusing playing a half wit in WCW. Early on Fall Brawl 98 he interrupts Mean Gene, calling him Gene Mean, announces that Goldberg has finally relented and agreed to a title match. He then goes on a Spinal Tap detour around the back via the car park and dining room. Once out, his pyros fail and out comes "Goldberg" all 5'6 of him who he beats up on for three minutes before proclaiming himself champion. No question Y2J was a great persona 25 years ago, headlining WM 18, the last ever WCW World Heavyweight Champion and being the first guy the WWE unified the titles on. WCW / WWE Y2J was a minimum 9 and a tremendous all rounder, sadly this over indulged, inverted pecs and increasingly mediocre in ring incarnation is about a 5 and fast forward material. The Ayatollah of Rock 'n' Rolla doesn't need to carry on diminishing his once fine legacy."
Rating: 8.0
Sentiment: 0.09087301587301587
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Stalks14wrote on 04.06.2024:[5.0] "An all time great. His work throughout the years continues to inspire new generations and arguably one of the greatest promos of all time. But like many other's, has proven to be unable to figure out when its time to let go. If he's still having fun and loving it, good for him. But as a fan its difficult to watch a 53 year old man attach himself to anything relevant and slowly kill it though a 6 month angle with no heat or interest after the first week, which he either ultimately wins, or makes the victor look worse for even engaging with him in the first place. Ultimately making you wonder if he should've just retired after he lost the AEW championship in 2020. 9 for everything prior to 2020. 5 for everything after."
Rating: 5.0
Sentiment: 0.1955681818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DestructiveDanyahwrote on 29.05.2024:[5.0] "Jericho before the last 3 years would be a solid 8 as I never bought the GOAT chat but he was always great in the ring, a great promo and someone who can easily move from the midcard to The main event without ever being a top guy. However, the last 3 years have been some of the worst character work I have seen from someone who is regularly used so he land on a flat 5. Im Not really sure where he goes from here other than going away for a while or going part time but hes never felt colder while at the same time having go away heat with the fans"
Rating: 5.0
Sentiment: 0.09285714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Hazelyzewrote on 27.05.2024:[4.0] "Were it not for the last few years, Jericho would be a solid 7-8/10 here. But lately he has been not great, and I refuse to give any airtime to a Jericho segment after what came out before Worlds End. The "Learning Tree" is not good. Sacrificing guys like Hook is a very disappointing way for him to end his career. Chris Jericho is the epitome of the "you can die a hero or live long enough to see yourself become the villain" in all the worst ways at this point. Get this pest off of our TV screens, PLEASE"
Rating: 4.0
Sentiment: -0.26760330578512403
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: doobwrldwrote on 26.05.2024:[7.0] "I find it strange that in 2024, I am giving Jericho this rating, but so it goes. Jericho as a whole, is an all-timer. There is no denying that. Since 2021 unfortunately, Jericho has almost impressively ruined his reputation amongst one of the greatest professional wrestlers of all-time. To be fair in retrospect, in a few years once he is retired, he will still be an all-timer. Jerichos body of work from when he exponentially rose to stardom in 1997 up until 2019, will forever be legendary. No other wrestler has reinvented themselves and adapted to change within their environment like Jericho has. His 2008 run as a heel is in my opinion, the greatest heel run from a professional wrestler ever. He has had substantially admirable and consistent matches with some of the best talent in any promotion he has worked in. So why only a 7? I do not exaggerate when I say that a flip switched in 2021. Jericho has fallen out of touch, and it is awfully depressing to witness such a legend who has pretty much always been endeared by the crowd, turn into such a solipsistic, conceited, ignorant, and overall enigmatic wrestler. Also add on the fact that he has been problematic, and apparently abusive to talents lesser on the totem pole of professional wrestling, and thats just the cherry on top. I respect, and even admire Jerichos work for the first 30 years of his career. However, there is enough of the bad in the last three years, that dissolve his overall impact and contributions to the business. The fans are unfortunately right. Please retire."
Rating: 7.0
Sentiment: 0.20297619047619042
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: swissarmybazookawrote on 14.05.2024:[6.0] "A few years ago Chris Jericho was beloved by almost every wrestling fan, however these last few years have been quite damaging. Never-ending boring feud after never-ending boring feud, taking a big tv spot from guys who deserve it more. WCW and WWE Jericho had dozens of fantastic matches and feuds this also carried over into the beginning of AEW. However, once the pandemic started felt like Jericho lost his marbles and was probably given too much creative freedom. His age is also a factor while he still knows how to pull of a decent match every time, he's slowed down tremendously leading him to lean on the worst version of his character often."
Rating: 6.0
Sentiment: -0.06825396825396826
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: danzitorockwrote on 13.05.2024:[9.0] "Chris Jericho is a legend, he's great in the ring, and one of the best talkers of all time, the guy was over in every major company around the world, and has undeniably a special vision for pro-wrestling, it's always great to hear him talking about the business, he's very clever, and that's why his charm is the reinvention, Jericho worked many gimmicks during his career, and made pretty much all of them work, he's always trying something new and this is why he's so iconic. He has a lot of importance, I think sometimes he overestimates a little his value, he's a prideful person, but it's stupid to say he wasn't important or a draw for AEW in the first years, he was an extremely valuable asset. Working a story looks easy for Jericho, he's naturally talented, he was born to be in the wrestling business."
Rating: 9.0
Sentiment: 0.3051948051948053
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: StardomIconwrote on 12.05.2024:[10.0] "Chris Jericho is an all time great wrestler and even if I based him solely off his three year run in WCW, I would still give him a rating of 10. I'm mainly going to review his late 90s/early 2000s run using Bret Hart's three categories for rating wrestlers: look, promo, and in-ring ability. It's rare for a wrestler to check all three boxes, but Jericho did just that. To begin, Jericho totally had the look in WCW despite being smaller in stature than many main eventers of the time. He was in excellent shape and had cool ring gear, complimented by shin guards that he earned while wrestling in Japan. He wore ridiculously effeminate entrance attire that only fueled the heat he held while working as a heel. His WCW Monday Jericho shirt is still my favorite wrestling shirt of all time. As far as promo skills go, Jericho was unmatched in his ability to draw heat. He often made ridiculous claims like being the man of 1004 holds, but my favorite moments were when he mispronounced names. Some of my favorites were "Gene Mean" and "Ron Mysterio". I always popped for his "never, e-e-e-ever" lines as well. No matter who was on Raw, I made sure to keep the channel on TNT whenever Chris Jericho was on screen in his WCW days. His comedy skits with Rufus and Greenberg were must-watch wrestling. Lastly, his in-ring ability was incredible. There's too many matches to list, but one of my favorite matches of his was against Raven at Halloween Havoc 1998. It was a short match with no build up, but the crowd was hot and Jericho had a solid win. Of course, his matches with everyone from Malenko to Eddie Guerrero to Chris Benoit and so on were all top tier wrestling, even by today's standards. His Lionsault was a beautiful move, while the Liontamer was a brutal looking submission. He had a good combination of kicks and high flying moves that he could mix in as well. And who could forget that cocky cover attempt that drove the announcers mad? Jericho was without question, highly underutilized by WCW, but I believe it was his most entertaining work. I popped like a madman when he debuted in WWE and was glad to see him ascend to the main event, but he never truly resonated with me as much as he did in WCW. I believe any wrestler's match quality will suffer a bit working the sports entertainment style, but also, he started to become more catch-phrase reliant in WWE and not as creative as he was in WCW. Regardless, Jericho caused a myriad of emotion in wrestling audiences around the globe. At times they were annoyed and yelled him, while other times they were doubled over with laughter. They screamed when the Y2J countdown clock finally hit zero and cried with happiness when he was finally crowned world champion. Taking all of this into account is what makes Chris Jericho one of the greatest wrestlers of all time."
Rating: 10.0
Sentiment: 0.22989716880341873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MarkMcMarkington2wrote on 02.05.2024:[7.0] "Jericho at WCW, WWE and his early AEW run are amazing. The last few years have been awful though. He is reminding me of Ric Flair in the way hes damaging his legacy. I will always appreciate the Y2J of old but he needs to retire now. No one benefits from working with him."
Rating: 7.0
Sentiment: -0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CommisarRobewrote on 02.05.2024:[8.0] "Most of this review is for his historic work, Jericho's work has for the most part been consistent entertaining and often fresh due to Chris's constant ability to re-invent himself. Jericho as a heel is absolutely excellent and nearly always compelling, additionally his promo work is often of a very high quality as well."
Rating: 8.0
Sentiment: 0.29441666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: arrancarwrote on 24.04.2024:[6.0] "Jericho is a through-and-through wrestling legend, and he's done it all absolutely everywhere he's been. In his prime he was one of the best talkers in the game, a skilled technical grappler and high-flyer, and had a tremendous ability to play whatever character he wanted to. Sadly, it all came crumbling down following his loss of the AEW World Championship, which to my eye was the last time he was actually more enjoyable than not. He initially went through an off-putting period as a very try-hard babyface, since he always looked far too self-engrossed in everything he did, whether it was when he dramatically paused to watch the fans sing his entrance song or when he'd make those really lame jokes and one-liners that he clearly thought were far wittier than they actually were. He eventually turned back heel, but we sadly just got Inner Circle 2.0 in the form of the JAS, only with even worse supporting members this time around. His character work had completely stagnated at that point, since he'd just do the same poses, taunts, and heel spots in basically every single match, not to mention he LOVED repeating that week's phrase or even just single word for no real reason. He's since turned back babyface and now heel-leaning tweener, but now he feels even more off-putting with the desperate ways he tries to appeal to the crowds, plus it's aggravating the way he just CONVENIENTLY keeps tying himself to whatever young star is becoming over or already really over at time, then forcing them to have incredibly uninteresting and usually really bad matches with him, whereupon they gain absolutely nothing even by defeating him, especially because he loses so many matches (even if not always cleanly) that on paper a win over him is incredibly devalued. Basically, he just feels pretty comical and totally uninteresting as a character. In-ring-wise, he's now just outright really bad. His physique looks terrible, and even if that plays into his heelish "has-been rockstar" character, it's still jarring to have to take him seriously in that state when he goes up against guys that look like actual fit athletes. His movement in ring now is always really slobbish, and he clearly gasses out quite quickly. In terms of physicality and athleticism he's a sight for very sore eyes, looking pretty weak and very unpolished when required to deliver some would-be 'stiff' strikes or when required to rapidly trade moves and/or counters. Jericho played his role in AEW's initiation as the heel champ and main heel stable leader, though I'd argue he was still a negative there in holding the rest of the Inner Circle back (especially Satana and Ortiz), but now it's definitely time for him to move on to SOMETHING new, because his constant need to "reinvent" himself every few months has become transparent and stale, and any star he works with now is going to automatically look bad because we've seen so many Jericho feuds that they now feel too samey (and they're usually not even remotely interesting) and his plain embarrassing wrestling skills just drag his opponents down with him once they finally wrestle. If only he'd just do the natural "legend who can't wrestle with the younger and more explosive talent anymore but still tries really hard and gets the fans on his side despite coming up short" story, since that's the only believable role Jericho has in him anymore. He's been great in the past, but certainly not any more, and the longer he holds out doing this current act of his the lower I'll have to drop his rating."
Rating: 6.0
Sentiment: 0.061280853649274714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TotemKiller1wrote on 17.04.2024:[5.0] "He was good for the most part from 95 to 09, which seems like quite a long peak, but you have some really bad performances along the way there + he did not wrestle for entirety of 06 and only had 8 matches in 07. After the Rey feud he has really fallen off quite a bit and in the last decade or so has been an active detriment to the quality of work in companies he wrestled for. The less his AEW run is talked about the better, but let's just say he might be the worst wrestle in the world right now. Overall a very mixed bag of a wrestler."
Rating: 5.0
Sentiment: 0.009693877551020422
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bean1985wrote on 11.04.2024:[7.0] "I liked him as a wrestler and as a person, but to be honest I think he is a little overrated; his aura was never dominant, his skills are good but not upper tie, same with mic skills. His best match and feud is probably vs HBK, while for HBK is not even close to be at the top of his. As a human being, as a competitor and a professional, love him"
Rating: 7.0
Sentiment: 0.3465909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alons8hasaBrokenBackwrote on 04.04.2024:[4.0] "Few guys have had a downfall like Chris Jericho in the last 2 years. Worse Promos, worse matches, horrible look , horrible storylines. The worst thing that he is doing at the moment is taking momentum during his endless feuds, by just repeating and repeating and taking new stars "Under his wing", leaving them stuck and making them lose their momentum. I was actually inspired to lower my rating because of Hook, this half-feud/half-team is not helping him get on the level of hype when he had the streak, and is relegating him to the MIDCARD. Jericho overall is awesome and one of the best, bit he really needs to retire because no one likes overextended careers. His Overall career is a 9, but his current run is 1 or 2. So 4 points seems enough, but it could be lower if he keeps wrestling as he is doing now"
Rating: 4.0
Sentiment: -0.10521390374331552
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dntbamarkwrote on 29.03.2024:[9.0] "His run in AEW, the whole CM Punk - Elite ordeal than the Kylie Rae allegations really hurt his legacy for me. Then theres just his general demeanor the last few years and the way he's behaved whilst in the spotlight have really damped my feelings toward Jericho. Up until a few years ago, I really considered Jericho to be foolproof, he could work with guys like Kevin Steen, who could never get over on his own and use his talent to manipulate the fans into getting into getting into someone like Steen. I always considered Jericho to be an upper-card guy who you could slot into the Championship picture, if need be, but in terms of ability, charisma, aura and character-work, there are few better than Chris Jericho. He was a guy who, like Eddie Guerrero and Chris Benoit, was never really taken seriously as a top guy. He had tons of great matches and fueds with Shane Douglas, Perry Saturn and Alex Wright but was creatively stifled by that "glass ceiling" we always hear about in WCW. I'll always remember his WWF debut when he interrupted The Rock on Raw, I had it on tape for the longest time but even his time in WWF didn't start out the hottest. He was a staple of the midcard and worked with guys like Kane, The Rock and Chyna and was able to form tag teams with Benoit and The Rock but he was never really seen as much of a top guy until 2001 when he turned heel and went on that run that resulted in him defeating both The Rock and Steve Austin to unify both the WCW and WWF world titles. Despite successfully retaining the title in matches against both Rock and Austin, the title reign never felt like much of a title reign and I think Jericho agreed with that sentiment in one of his books. He pretty much played third wheel to the fued between Stephanie and Triple H and he lost the belt to Triple H at Wrestlemania 18 in a match that didn't even seem like the main event. From there, he gradually returned to the upper midcard despite doing great work as a heel with some babyface runs mixed in between. Following 2007, he really became a force within the WWE when he turned heel and was able to craft a character that was a completely different take on what you'd expect from a heel Chris Jericho. The run resulted in 2 short but memorable World title runs and a third in 2010 that was soured because he had to drop it to Jack Swagger, who wasn't ready for the role. He had an incredible fued with CM Punk in 2012 that really culminated in a great match-up between the two at Wrestlemania 28. From there, he became an upper-midcard player again until he left the company for New Japan and eventually the newly formed AEW, where he initially did some incredible work as a heel and inaugural AEW Champion. From there, like I said, it feels like Jericho's become kind of a parody of what he used to be. His work isn't what it used to be and his physique shifts from bloated to not-so-bloated, as a whole, I think Jericho is one of the greatest in-ring performers out there. He was never the biggest guy but he had charisma, skill and the smarts to carve out an incredible career that will always stand the test of time to me."
Rating: 9.0
Sentiment: 0.26446172874744306
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Brutish Dandywrote on 28.03.2024:[7.0] "Chris Jericho is wildly inconsistent. So much so you almost have to rate him on a year-by-year basis. Gonna have to go by averages for this one. His WCW work was bordering on an 8, his early WWF stuff was around a 7, his second WWE run was close to a perfect 10, and pretty much everything he's done from 2012 onwards is a 6 or lower. I think he's a cool dude but he should've put the boots away a decade ago."
Rating: 7.0
Sentiment: 0.27499999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dog Stomperwrote on 21.03.2024:"For a long while Jericho was on the pulse of pro-wrestling, and was able to discern what worked and what didn't, using this skill to create an ever-morphing character that rightfully belonged in the main event. Since 2016 however, Jericho has lost touch with pro-wrestling, and become a parody of himself. While his in-ring work has noticeably declined, he's still pretty good, especially at story-telling."
Rating: No rating found
Sentiment: 0.2611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: mrwfxtremewrote on 17.03.2024:[7.0] "chris jericho has been a constant in pro wrestling 1st impression i had of him was in wcw he made sure to stand out in a division filled with high flying cruiserweights. his matches with eddie Guerrro and chris benoit. when he made his way to WWE. he can say he had one of the most memorable debuts in pro wrestling history from defeating stone cold and the rock in the same night to reinventing himself often. through the list of jericho. Jerichos legacy is set. his time in aew had been average at best"
Rating: 7.0
Sentiment: 0.231
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TripleCrownwrote on 17.03.2024:[10.0] "All these low ratings are crazy. It's Chris god damn Jericho folks. If you're rating him solely on his AEW run then you really, really need to go back and watch his stuff from WCW, ECW, NJPW (90s) and WWE. He is incredible on the mic, on the same level as The Rock and Steve Austin. Wrestling ability is incredible too, he's not like the modern day wrestlers who can do an incredible array of flips and breathtaking moves, but his lionsault is something to behold and really stood out during the time. There's no disputing that he's at the tail end of his career, if you've come to watch Chris Jericho and expect some kind of 5 star match, you really need to keep yourself in-check because he's in his early 50s. I will say, his comments on social media are incredibly stupid and I do not agree with a lot of what he says, I feel like he absolutely believes his own stuff way too much. But by all accounts that's who he is and who he has always been, so there's no point in wishing he'll change because he won't."
Rating: 10.0
Sentiment: 0.25438596491228066
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Beneyrieywrote on 10.03.2024:[4.0] "We're rating Jericho on his overall performance, considering both his legacy as one of the best wrestlers of the 21st century and his current state in the modern wrestling landscape. Unfortunately, Chris Jericho's aging process has impacted his abilities, leading him to cling to younger talent in an attempt to maintain relevance. While his mic skills remain sharp, he often relies on gimmicky one-liners for cheap pops during promos. Furthermore, his physical condition in the ring appears to have declined, which is understandable given his age of 50."
Rating: 4.0
Sentiment: 0.07045454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Neon Aussiewrote on 07.03.2024:[7.0] "Solid performer, had some real charisma about him in the 1990's. Has never really come across as a believable tough guy though and in the last 5 years his in-ring ability has really diminished. He has become something like a Hulk Hogan 2.0 in some ways, but at least Jericho could actually wrestle a decent match in his youth. The last good match I saw with him was at Wrestle Kingdom against Kenny Omega in 2018, which was a great match but you gotta give a lot of that credit to Kenny. Has costantly reinvented himself over the years, not always for my personal liking."
Rating: 7.0
Sentiment: 0.12698412698412698
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: emixcxwrote on 04.03.2024:[5.0] "Chris Jericho, once hailed as a wrestling icon, has seen his reputation tarnished in recent years. Allegations of misconduct have surfaced, casting a shadow over his once illustrious career. While Jericho may have been a powerhouse in the ring during his prime, his performances in recent years have been lackluster at best. His matches are plagued with sloppy execution, botched moves, and an overall decline in athleticism. Despite his attempts to remain relevant in the industry, Jericho's wrestling abilities have diminished, leaving fans disappointed and disenchanted. With his legacy overshadowed by controversy and his in-ring skills on a downward spiral, Jericho's glory days seem like a distant memory."
Rating: 5.0
Sentiment: 0.01666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Okaro143wrote on 16.02.2024:[9.0] "Jericho is a true living legend. He has wrestled all over the globe, he found huge success in WWE including main eventing a WrestleMania as the Undisputed Champion of the company. Constantly reinventing himself with dynamic and over the top personas throughout his career, Jericho has won many top level championships in multiple promotions including WWE, NJPW, AEW, etc. Was fundamental in AEW's early sucess and even though he had passed his physical prime, he has consistently put forth many great matches even after crossing 50+ age."
Rating: 9.0
Sentiment: 0.29111111111111115
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Cleanerwrote on 30.01.2024:[10.0] "Ohne jede Frage einer der ganz großen des Business. Hat sich so oft neu erfunden und ist auch mit über 50 bei AEW noch ein richtiges Asset. Eine solch erfolgreiche Karriere verdient zweifelsohne die Bestnote."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SoaKaswrote on 26.01.2024:[7.0] "Man i don't really know but Chris never really did it for me. Initially I gave him an 8 because of his legendary status and great promo ability but he just annoys me in the current world of wrestling both inside and outside of the ring. Also his wrestling skills matchwise have been pretty mid at best for the most part in the last years."
Rating: 7.0
Sentiment: 0.3041666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BruceMarcos524wrote on 13.01.2024:[9.0] "Chris Jericho is no doubt one of the greatest all-around performers in history. Jericho excels whatever promotion he is in; SMW, NJPW, WAR, WCW, WWE, AEW. He is mostly known recently as the guy who reinvents himself from time-to-time to fit in the trend in which he is very good at it. Whichever gimmick he has; Lionheart, Y2J, The Best in the World of What He Does, The Painmaker, The Demo God, The Ocho, he always delivers to the extent. Hell, he even put over the "List", that's how great he is. In terms of promo abilities, he is one of the very best to ever do it and everything he says turns into gold. On WCW, he was the promising young energetic happy-go-lucky that ruled the cruiserweights. On WWE, he became one of the marquee talents and soar his ranks as one of the best. On AEW, he solidified his legacy and became the most important factor of the creation of the product. No question he is very important and contributes a lot in wrestling. Nowadays, he is just a former shell of himself. Sad to think about the state of Jericho nowadays. If he just retires in like 2022, I would give him a full-fledged 10 but since he's tarnishing his own legacy, 9 is my rating. I just hope Jericho will settle himself for good before he gets worse, he just couldn't keep up anymore."
Rating: 9.0
Sentiment: 0.4559090909090908
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ptomlinson98wrote on 11.01.2024:[1.0] "Needs to go away, killing his in-ring legacy. Risks being tarnished forever if the rumours are true as well. Some of the worst TV segments in modern memory since he has been in AEW, he's done. He has routinely put himself in favourable positions against young or underneath wrestlers who have a bit of momentum and then dragged them through a 3/4/5 month feud where they are as stale as he is by the end of it. His ROH title run was amusing briefly, carried by Bryan Danielson and Claudio Castagnoli and the resulting 4 way match was good. And who hasn't Ospreay gotten a great match out of in the last 3 or 4 years? The way he has halted progress of Sammy Guevara, Darby Allin, Ricky Starks, Action Andretti, Eddie Kingston and so many more is genuinely disgraceful and I cannot believe more hasn't been made of this on here. Had him as a 5/10 last year but with the allegations and refusal to address them as well as his awful output on TV and PPV, he has to drop."
Rating: 1.0
Sentiment: 0.1323529411764706
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HammertonWaywrote on 11.01.2024:[10.0] "One of the greatest wrestlers of all time that has found a way to keep up with the next generation over and over again. Though age may finally be catching up with him, it does not take away 30 years of classic matches and memorable moments that stand the test of time."
Rating: 10.0
Sentiment: 0.4533333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: hamstermatchwrote on 03.01.2024:[5.0] "Chris Jericho cant go anymore. Hes too old and his body is broken. Hes charismatic as a heel but absolutely insufferable when hes being sold as a babyface. His feuds go on for way too long. His storylines are incoherent. The Walls of Jericho is the most uncomfortable looking finishing hold for a viewer because its just so plain boring. Dude looks like hes chilling and watching TV or something. Add all his out of kayfabe controversies (him and his wifes politics being a big example) and he cannot believably be in AEW as a top babyface dragging every interesting wrestler into months long storylines that go nowhere and dont make anyone involved look better."
Rating: 5.0
Sentiment: 0.022689075630252103
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dulonicdaddywrote on 02.01.2024:[4.0] "I used to love Jericho when he was on a roster that played to his assets as a heel ('09 Rey Mysterio was a perfect feud from him, and he was able to carry Shawn Michaels to an interesting storyline) and came across as way cooler than he actually was to a younger me in the early 00's, but a great deal of his stuff has simply been to serve as cannon fodder to bigger talents with hindsight. His wrestling is so ineffective, and his move-set has some atrocious logic. That bulldog is the worst thing ever. His AEW run was funny at first, a bit meme-able, but since then Y2J has spiraled into an out of touch rich white dad telling the same shitty joke when greeting his kid's teenage guests."
Rating: 4.0
Sentiment: 0.14305555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CorpusSkiptotelicumwrote on 01.01.2024:[6.0] "Good wrestler that is capable of working with anybody, though to have all his best matches he always had to be working with someone better as he's never been good at elevating worse wrestlers. He is very creative and his promos are usually very good, but sometimes he falls into the same tired tropes and is know do have delivered his fair share of stinkers. Outside the ring, he's an outstanding carny, this new bs with cm punk is the cherry on top. A true master of his craft at that. This Last aew run highlights the best and worst aspects of him; the first few years had some good character work but it got old quick and him being in such terrible shape meant I never got exited to watch him in any matches. This past years though he actually got his shit together somehow and has given very good matches with the likes of Bryan, Mox, Claudio, Eddie and even Ishii. On the creative side though, his endless inner circle and jas feuds have been torment, its always scary watching your favorite wrestler have a segment with him because he might be abducted for a few months."
Rating: 6.0
Sentiment: 0.1906860269360269
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: greaterdalewrote on 11.12.2023:[10.0] "You know you have some wrestlers that are extremely popular but just coast and milk their gimmick, but Jericho is never satisfied with staying idle. He really knows how to reinvent himself over and over and over, he knows how to invent a million catchphrases to slap on tshirts and make tons of money (My favorite is still the list era, I legit got You just made the list over at my old school with a non wrestling fan friend and we quoted long after Chris Jericho had moved on from it.) We haven't even touched on his in ring work which I don't think I have to tell you he's technical wonder. Sadly though I must touch on the fact that as a person he's pretty shitty. His wife was allegedly at January 6th and he's shown dumb ass right wing tendencies in the past too. He also has been known to throw random people on twitter with genuine criticism to his fan base to harass them. I'm also not a fan on how he gatekeeped Kalisto from expressing love for his former coworker Brodie Lee and then made fun of him for making a spelling mistake (english isn't Kalisto's first language and even if it was making fun of people's spelling is a big ick for me)"
Rating: 10.0
Sentiment: 0.03742236024844721
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Marvelous Joewrote on 30.11.2023:[10.0] "You can't deny his work. He's an egomaniac that finds a way to keep himself relevant, no matter as a heel or babyface. No matter what he do, he's entertaining in the ring. His mic skills, his in-ring work, his character. He is truly the GOAT."
Rating: 10.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Silver Shadowwrote on 27.11.2023:"One of the goats of wrestling, had amazing matches with Eddie Guerrero, John Cena, Triple H, The Rock, The Undertaker, Steve Austin, Mick Foley, Shawn Michaels, just to name a few. Jericho was also an amazing promo guy and was good on the mic as well."
Rating: No rating found
Sentiment: 0.42500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] "There's no doubt in my mind that Chris Jericho is one of the greatest of all time, the total package as a professional wrestler. His run in WCW was great, often being one of the best parts of the show, always having good to great matches and even showcasing his promo ability, the highlights of his WCW run being the 1.004 holds promo and the infamous Goldberg "feud, " especially when he had Ralphus as his body guard (R.I.P.). Sadly, WCW didn't see much in the feud due to Goldberg not taking a liking to it, so he ended up going to WWF, in one of the most iconic debuts of all time, a segment that fans still remember to this day. The main highlights of his time in WWF/E are him winning 2 world titles in the same night against The Rock and "Stone Cold" Steve Austin, becoming a 9 time Intercontinental Champion, tag teaming with Big Show, his amazing heel run in 2008 where he feuded with Shawn Michaels, his feud with Rey Mysterio over the Intercontinental Championship, his "List" gimmick along with teaming with Kevin Owens that same year, I could go on, he's had a great career in WWE. He's left WWE countless times, and made similar returns almost everytime, but now he's been outside of WWE since 2018 and has had some great moments like returning in NJPW where he starts feuding with Kenny Omega (that low key birthed AEW), having a good year or two in AEW, etc. despite he's been in some stinker storylines since 2022 with the Jericho Appreciation Society for example. Overall, while Chris Jericho may rub people the wrong way with his current run in AEW, there's no denying his impact on the business and that he was one of the all time best in his prime, one of my personal favorites for sure."
Rating: 10.0
Sentiment: 0.2208333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RealMcLovinwrote on 21.11.2023:[8.0] "Immer wieder unfassbar zu sehen, wie gut Jericho in seinem Alter noch performen kann. Am Mic ist er auf einem sehr hohen Level und auch seine in Ring Arbeit ist, trotz seines fortgeschrittenen Alters, immernoch sehr gut und unterhaltsam, vorallem, seitdem er sich wieder richtig in shape gebracht hat. Macht immer wieder Spaß, ihm zuzuschauen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheSuperstarwrote on 17.11.2023:[8.0] "I am only rating him an 8 for his aew run hed be higher otherwise. It was nice to see how he would reinvent his character of the years especially outside of wwe but now he is just attaching himself to the hottest acts and in most cases weighing them down like an anchor e.g. Kenny vs Don Callis feud."
Rating: 8.0
Sentiment: 0.1990740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: skyesversionwrote on 30.10.2023:[2.0] "I hate Chris Jericho. There I said it. I don't get the hype at all. Like he's always been mid to me. I don't even consider him a legend to be honest. He doesn't put other talents over (even though people say he does for some reason), he's not as great on the mic or in the ring as people say he is, and he has some of the worst characters in wrestling history. I gave him 2 points for two things: the List of Jericho and the Jericho Appreciation Society. Other than those things he's horrible. Like I don't know why people hype him up so much. He gave Sammy Guevara and Will Ospreay arguably the worst matches of their respective careers. Not to mention that I can't remember the last time he put a younger talent over. Overrated and overhyped. Stop calling him a legend."
Rating: 2.0
Sentiment: -0.18846153846153849
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Logewrote on 30.10.2023:[10.0] "Chris Jericho is probably the GOAT. Idk its hard but he's definitely up there. My favorite gimmick of his probably has to be his IM A WIZARD gimmick where he throws fireballs at anyone who tries to mess with him. Pretty awesome. The List is also some peak Jericho fodder and while a part of me does miss his old light up vest and Break the Walls down intro with the Y2J countdown, and maybe I do miss his Jericho Film Reel segments, which were sometimes the most entertaining part of Raw, I think he's been doing wonders in his fairly short run with AEW so far and has helped build the promotion as a legitimate company and helped made it more worthy of watching over WWE. Also, Fozzy is just FREAKIN SWEET. Hes just been treated much better in AEW than he was in his later WWE years. My favorite Jericho matches so far in AEW are probably his No Rules match against Nick Gage and his match with Sammy Guevara, Claudio, and Bryan Danielson at Full Gear 2022. As for his much longer WWE run, I thought his stuff with the Rock was fun, his feud with William Regal was fun, and he had good matches with Edge and the Punkster, I also think his Asylum match with Mr. Moxley at Summerslam 2015 was underrated but its been a while since I rewatched it so maybe i'm an idiot. Also he probably should've won against HHH in 2002. Jericho has some of the best character work and most charisma out of any star ive ever seen in wrestling, and he is always fun to watch and can often steal the show. He works great as a face and a heel, and has had countless rewatchable feuds and promos. He's definitely changed wrestling and SPORTS ENTERTAINMENT for the better with the people hes influenced. Also the Cocky Pin is awesome. 10/10"
Rating: 10.0
Sentiment: 0.2602795102795103
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: benny5bellyswrote on 29.09.2023:[7.0] "For good or ill, we won't see the likes of Jericho again. From the Thrillseekers in SMW to the programme killer in AEW. I still think the highlight of his career was back in WCW when he was consistently one of the most entertaining characters each week despite how little he got some times. He would be an 8 but his late career in AEW has been an absolute slog and very talented wrestlers get lost in the shuffle and get momentum killed as soon as they are in the Jerichoverse. He is long past the point where he should be a regular, he would work well as he did in WWE when he would work a programme, lose and take a few months off and come back"
Rating: 7.0
Sentiment: 0.08578124999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ECWCWWEAEWwrote on 22.09.2023:[9.0] "Seriously no one probably could have predicted it but Chris Jericho is going to go down in wrestling history for both unmatched ability to reinvent himself time and time again and literally maybe only second to Undertaker in terms of longevity. That's beyond impressive to me and deserves all the credit even if he's had a few lows in his career he always figures out SOMEHOW to get over just when you thought he was getting stale."
Rating: 9.0
Sentiment: 0.044444444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Teebawrote on 21.09.2023:[10.0] "Surely Y2J can't be anything but a 10, yeah sure he doesn't always hit the mark with his gimmicks but his ability to stay relevant for nearly 30 years is nothing short of spectacular. It took him a while to get there, when he one the belts in 2001 no-one took him seriously and he played the 3rd wheel to Triple H and Stephanie. I don't think he truly blossomed as a main event threat until his godlike 2008 run, from there it was pretty much smooth sailing."
Rating: 10.0
Sentiment: 0.23484848484848486
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dysboatwrote on 03.09.2023:"His AEW run has been wildly inconsistent. In the early goings he was involved in good, serious angles and having pretty good matches for someone of his age (his match with Cody at Full Gear 2019 was pretty rad, ) but it seems like his creative instincts left him completely when he dropped the title. Within a few months he went from an excellent feud with Jon Moxley to having a stipulation match against Orange Cassidy which could only be won by dunking the other wrestler in a vat of mimosa."
Rating: No rating found
Sentiment: 0.2261111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LGL19wrote on 08.08.2023:[10.0] "Look I'm gonna say that his run in AEW has been terrible, he just doesn't have it in the ring anymore. However I'm not gonna let that discount the rest of his career, he has had an amazing career whether it be in WWE, WCW, or NJPW he has been incredible and an innovator for his in ring style and has always played an amazing heel. He has also always had a good promo."
Rating: 10.0
Sentiment: 0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: juiceisloosewrote on 26.07.2023:[9.0] "Jericho while still being one of the best of all time, has been unwatchable since 2020. I haven't been able to get through any of his matches in AEW as I hate seeing him in the state that he is in. He is not the wrestler that he was -even- 6, 7 years ago and it is becoming unbearable to watch any of the stuff he is involved in. With that being said, the man worked all over the world, is probably one of the few people who has a deep knowledge and experience in the wrestling biz and was so adaptive and open to any changes that he never got stale. In the mic he is tremendous and unmatchable. I enjoyed every aspect of his work prior to 2020 and can say that he never got boring and is overall, one of the best fits for the wrestling business ever. Not giving him 10 because of his AEW stuff. Oh, and appearently he's got a big ego too so that's another doozy. ."
Rating: 9.0
Sentiment: 0.08555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheEnigmatic1wrote on 15.07.2023:[7.0] "I give him 7 points for having some of the best matches and feuds and Segments during his WCW, WWF/E run and for his first year in AEW, But since 2021 late 2020 Jericho Has been downright Unwatchable, He is very proud of his long running feuds with MJF and BCC but in reality they felt like they went on for EVERRRR, His feud with Ricky was stupid, His feud with Eddie Kingston could have been really good but they had one good match then a horrible Barbed Wire everywhere match, He tries too hard and let's his Ego run wild and is trying to wrestle all these different styles when he is a 50 year old man. Loved his Work from 08-2017 But it is truely a shame how far he has gone down in terms of quality."
Rating: 7.0
Sentiment: 0.1279320987654321
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MDavis2001wrote on 14.07.2023:[9.0] "In 2023 Jericho is best when working with Luchadors, doing matches with hardcore stipulations or doing comedy bits. He certainly deserves props for his illustrious career, but perhaps the 52 year old Jericho should wrap it up sooner rather than later."
Rating: 9.0
Sentiment: 0.32857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NickJammer2221wrote on 09.07.2023:[2.0] "He gets 2 points for the memories of when he was good, which sadly was 6 years ago now. I never liked him in NJPW and since he joined AEW he has been absolutely abysmal. His World title run got more eyes on the product so there is that benefit but since then he has stunk up the place big time with his tiresome one note promos, shoddy in ring work and for failing to elevate anyone he has worked with."
Rating: 2.0
Sentiment: -0.025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MasteroftheMatchGuide99wrote on 07.07.2023:[10.0] "Still kicking at age 52 and the only man who competed in WCW, ECW, WWF, WWE, and AEW. He also constantly reinvents himself and never fails to be entertaining. No matter what company he was in, he got a lot of love and support as a face and heel. Nowadays, he is a mega-star since people sing his theme "Judas" every time he shows up. No matter what, Jericho will be remembered as a true GOAT and a true legend in all annals of wrestling."
Rating: 10.0
Sentiment: 0.2785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BigDouglasFadewrote on 06.07.2023:[0.0] "I have to vote as I see it and this year he has been the worst wrestler I have seen. Every segment he is in during AEW takes away from the show and instantly makes it worse, he can't go in the ring anymore and always has the worst match on the card and any program he in instantly ruins their heat and push."
Rating: 0.0
Sentiment: -0.51
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: bigredtalk89wrote on 05.07.2023:[10.0] "Given his longevity, both in the ring and on the mic, how do you not give Jericho a 10? He's been killing it since his WCW days, continually updating his gimmick and in-ring style. Even at 52, he's still more capable than he should be of putting on a banger(I'm giving him the benefit of the doubt with his stinker against Adam Cole)"
Rating: 10.0
Sentiment: 0.06666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Exxtrasaucewrote on 05.07.2023:[10.0] "Easy 10. He's one of the best ever in the mic and has several memorable original signature and finisher moves. The guy is a legitimate rock star and can carry a show on his back. Still going at a high level. In my opinion, Jericho is the GOAT."
Rating: 10.0
Sentiment: 0.35261904761904767
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PsykoPiratewrote on 05.07.2023:"Jerico? I think that is one of the best ever, and i say that not for all the thing he won but even for all the time he lost or was underused and he keep doing the best. All about Jericho is awesome, the moves, the ring ability, the way he respect the mat and the people behind. And the way he is respected i think by anybody, don't remember anyone that say crap about him. Chris is a real treasure, he was keeped down for too many years and got his time to shine and he still today."
Rating: No rating found
Sentiment: 0.29305555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BigDave123wrote on 30.06.2023:[1.0] "Big fan of his from WWE but he has recently become the worst wrestler regularly featured in mainstrem wrestling. Since he lost the AEW title, everything he has been involved in has been garbage with his in ring work falling apart as well as his promos and programs. Should have gone to part time last year, he has become extremely skippable in AEW and his constant reinvention has gotten tiresome and dull."
Rating: 1.0
Sentiment: -0.21296296296296297
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: John Brandowrote on 30.06.2023:[10.0] "Chris Jericho-über 3 Jahrzehnte ein Top-Star im Wrestling. Überall ein Titelhamster und Garant für Großes. Der Altmeister ist mit seinen über 50 bei AEW immer noch ein GOAT. Ihn als ersten AEW-Worldchampion auserkort zu haben, war komplett richtig. Was soll man also über ihn noch schreiben, was noch nicht geschrieben wurde? Jedes Superlativ ist eigentlich noch zu niedrig angelegt. Verbinde ich mit dem Wrestling, den Ligen, Titeln, usw. einen Namen ganz sicher, dann ist es der gute Chris Jericho. Schon jetzt müsste ich mich ganz tief verneigen vor dem tollen Menschen Christopher Irvine. Eben The Painmaker, The Ocho, Le Champion!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NEVERoverweightChampionwrote on 29.06.2023:[9.0] "He is a legend who always manages to stay relevant even to this day when he is way past his prime, I think that's the biggest thing that we'll remember about him. Very charismatic, one of the best at promos, a very creative guy."
Rating: 9.0
Sentiment: 0.49000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Giantfan1980wrote on 07.06.2023:[9.0] "One of my favorites of all time! Jericho was very good in WCW, but they weren't going to let him go farther so he went to the WWF and the place just exploded the night he made his debut. Almost got his legs cut off by HHH and Stephanie when he was the undisputed champ and was forced to play lackey to their stupid little feud. But he recovered and had many more great years."
Rating: 9.0
Sentiment: 0.2032142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Frank Shooterwrote on 02.06.2023:[10.0] "For me, the greatest talker in the history of Professional Wrestling, and a hell of a worker. Chris Jericho is one of the best to ever lace a pair of boots and the best definition of an Sports Entertainer along with The Rock."
Rating: 10.0
Sentiment: 0.775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: sinestro24wrote on 25.04.2023:"Jericho has done an excellent job of evoling over his legendary carrer, always managing to stay relevant and entertainging."
Rating: No rating found
Sentiment: 0.7999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CMFunk007wrote on 22.04.2023:[10.0] "I first discovered Chris Jericho in WCW on Nitro when he was a white meat babyface and the most generic guy on the roster. When he started his heel turn by throwing fits after his matches, I started seeing his entertainment value. Then, he brought Ralphus along, got lost during his entrance on the way to the ring, mocked Goldberg, stole Rey Mysterio's mask, and read his "list" of 1004 holds (90% of which were "arm bar") and he became must-watch television. When they started scaling back on in 1999, I was getting impatient because I expected him to shoot up to the top of the card. Instead, he left for the WWF, where he ascended to be the guy who toppled Steve Austin and The Rock on the same night to merge the WWF and WCW titles. His feud with Stephanie McMahon and later The Rock were also excellent and I loved his tag team with Chris Benoit. I've followed him on over to AEW, where he's done well, but I liked him more as the underdog instead of the legend. My favorite wrestler of all-time is Chris Jericho."
Rating: 10.0
Sentiment: 0.265625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: coppercowrieswrote on 20.04.2023:[10.0] "An absolute legend. This man has reinvented himself so many times, and his ability to stay relevant should be a study for all up and coming wrestlers. He understands the business and continues to entertain into his 50s. Talented in the ring, can be wonderfully comedic or serious on the mic. Overcame those that doubted him due to his size through his undeniable charisma and belief in himself. A power player in AEW."
Rating: 10.0
Sentiment: 0.3345238095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheLegendaryEricwrote on 13.04.2023:[10.0] "Jericho is a pure legend in the game, who does everything he does really well, he's quite possibly one of most versatitle wrestlers going managing to fit like a glove into an era he's apart of. While I think it's fair to say his best days are behind, he's definitely someone who can still provide much entertainment value and even still great wrestling to wherever he goes."
Rating: 10.0
Sentiment: 0.26785714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HumanJerkywrote on 08.04.2023:[10.0] "Chris Jericho is, for me, one of the absolute greatest wrestler of all time. He was a complete package with the only real knock you could hope to place against him is his diminutive stature, being only five foot eleven inches, this makes him one of the smaller long term main eventers in pro wrestling. But thats about as far as things can go, even with a smaller frame, the man had(and honestly at fifty some years old, still does have) an amazing physique. He had dashing good looks, oozed charisma from every pour, was about as tight and diverse an in-ring worker as you can imagine, and has been able to evolve himself and his character innumerable amount of times. Now in the twilight of his in ring career, I'd argue he's lost a step physically, but he can still make it up with his ability to play the crowd like an absolute fiddle. Very few pro wrestlers through out history can give you as many different "looks" and be main card success worthy, but with Jericho he can do anything, wrestle any kind of match, play any kind of character, and it will work and well has worked. Once I'm able to rate, easily a 10/10"
Rating: 10.0
Sentiment: 0.2555665024630542
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: crs285wrote on 04.04.2023:[9.0] "Jericho is the master of reinventing himself to keep himself relevant. Every character he does whether babyface or heel has worked. Got over in WCW despite so many people backstage working against him and became a mega star in WWE. Left and every time he came back felt unique. In the ring Jericho could go with the best of them. He has helped AEW by giving them a well known guy who could still go although he has slowed a little but that is expected in your 50s. Still amazing on the mic and now on commentary."
Rating: 9.0
Sentiment: 0.2875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: face painted legendwrote on 15.03.2023:[10.0] "Always had his thumb on the pulse of pro wrestling . As evident by his constant reinventions of himself over the last 30+ years now. He was someone who never stayed with something too long, always knew when the right time was to change things up with his character , and managed to not only stay relevant, but be a key part of the shows throughout. His in ring body of work still holds up today. He still does 90% of his signature stuff that he started doing 20+ years ago and it still looks good for someone whose been around as long as he has. Jericho is also someone who and I think I said this about a couple of other people on here, never gets injured. When he's working somewhere whether it's AEW, WWE, WCW, ECW, you name it, he's a constant when he's there, and when he's not on the show it's because he's doing something away from wrestling not because he got hurt. On top of all that, one of the most charismatic showmen to ever do it. Could get a reaction from a crowd whether he was a heel or a babyface. had many memorable moments and matches over the years. First ballot Hall of Famer for sure whenever he's ready."
Rating: 10.0
Sentiment: 0.2430357142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Logue38wrote on 09.03.2023:[8.0] "A great upper-midcard guy who constantly reinvents himself once you think he's obsolete. Oftentimes his gimmicks are bad, but he has a "throw everything at the wall and see what sticks" mentality, so if something's not over he'll try something else."
Rating: 8.0
Sentiment: 0.0333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Leth99wrote on 02.03.2023:[10.0] "A lot of things to say about him. Had tons of potential in his early days with Lance Storm. In ECW he was okay-to-great and had some good matches. In WCW he started as a babyface without nothing to bring, but his heel turn brought him as one of the best in those years. Him and Ralphus were even funny. He got super over in WWF and outshined Chyna with his immense package. As the Undisputed Champ he was an afterthought, not his fault. He was great in '03-'04 and outshone also Cena in '05. His '08 and '10 runs were amazing, probably his peak. He deserved to win the '12 Rumble. He's kinda slowing down since 2014 but he's still an okay wrestler and better than others on their best day. 2023 update: since creating the JAS he has been horrible, but I won't change my rating since I'm not really following AEW anymore so it's not impacting me"
Rating: 10.0
Sentiment: 0.3392361111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: kewf1988wrote on 26.02.2023:[10.0] "Chris Jericho is the epitome of the upper midcard gatekeeper, and that is NOT a bad thing, as AJ Styles plays a similar role today. Very good in the ring, insanely charismatic, amazing on the mic, and the lack of serious injuries over his long career is why he's still active today."
Rating: 10.0
Sentiment: 0.20481481481481478
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KKeanelwrote on 11.02.2023:[10.0] "One of the all-time best. Since his rookie years his persona was very entertaining and that is remaining till today. Underrated in WCW, legend in WWE, menthor in AEW. Very influencial man for whole industry history."
Rating: 10.0
Sentiment: 0.5125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: IBladeDailywrote on 24.01.2023:[10.0] "Over 30 years in the business, he has worked with every top star of his era. He's had stellar matches in the 90's, 2000's, 2010's. He's one of the top 3 talkers of more than one era. And he boldly left the employ of Vince McMahon to elevate New Japan and Kenny Omega. Then he was the lynch pin that gave AEW instant credibility. His run as AEW champion was excellent and he generated a lot of buzz for the company. Whatever they are paying him, he has more than earned. He's also wrestled more in the last two years than he did in the previous ten years and the wear and tear has definitely caught up to him. But even with his elite in-ring abilities muted by time, he has been excellent at generating interest for himself and his opponents, many of whom he has put over and made bigger stars. No matter his position on your GOAT list, he's definitely worthy of that consideration."
Rating: 10.0
Sentiment: 0.3085016835016835
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: benh2wrote on 13.01.2023:[9.0] "In terms of constantly reinventing yourself to stay relevant across such a long career, nobody has done it better than Chris Jericho. He's one of the best promos of his era and probably one of the best heels ever. Always tells a great story in the ring, he rarely just had a random match that didn't mean anything in a wider context. Seems to have gotten far too political in AEW but that's just blip in an otherwise long and storied career."
Rating: 9.0
Sentiment: 0.22767857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Enriquepollazzowrote on 10.01.2023:[9.0] "If I wasnt ridiculously sick of him I would rate him higher but I feel like he and Moxley have wrestled an hour a week for the last four years. He is really good at doing what he does. Was a 10 that year he went to njpw that's for sure. 2017? 18? . Had it as a 8, but he's done too much so changing to a 9."
Rating: 9.0
Sentiment: 0.15595238095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Leo 4 Kingwrote on 09.01.2023:[7.0] "Jericho is a great wrestler, he always invented new "version" of himself to evolve with his time and his age."
Rating: 7.0
Sentiment: 0.4681818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: mano007wrote on 31.12.2022:[7.0] "An all time great some argue that his legacy has diminished since joining AEW, I would personally disagree, cause I believe his was overrated anyway even before he joined AEW"
Rating: 7.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Robinaldowrote on 30.12.2022:[10.0] "Zum Ende des Jahres muss ich jemandem, der auch in diesem Alter noch auf diesem Niveau abliefert, eine Höchstnote geben. Die Karriere wäre es sicherlich ihnehin wert. Was mich aber wirklich begeistert ist, wie innovativ, unterhaltsam und hochwertig seine Auftritte heute noch sind. Im gegensatz zu anderen Legenden in dem Alter ist er noch voll dabei und Eckpfeiler der gesamten Promotion. Eben le Champion!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: fruggmanwrote on 19.12.2022:[10.0] "Chris Jericho is my all-time favorite wrestler, and I don't think that will ever change. I don't know if fans appreciate just how unprecedented and important his career has been to the entire business over the last 30 years. He is the master of adaptation and evolving with the times, changing gimmicks or tweaking his character with a supreme knowledge of how the audience will react to every little thing he does face or heel. In-ring he has been consistently outstanding for years, even at the age of 52 he continues to have excellent matches and takes ton of new risks. His current run in AEW is possibly his best yet, despite some detractors. The creative freedom provided to an idea man like Jericho has resulted in the renaissance of the comedy arrogant heel through gimmicks like "Le Champion", "The Ocho", "The Wizard", "Demo God" and "The Influencer", all of which were pivoted from as soon as they began to get stale. Jericho is better as a heel, but his face work in attitude/ruthless aggression WWF/E is nothing to sneeze at either, despite being eclipsed by his suit-wearing serious heel persona in the PG era. Whenever Jericho decides to retire, I think people will look back on this era as being defined and shaped by Chris Jericho's influence."
Rating: 10.0
Sentiment: 0.24209001782531198
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Metalheadkevwrote on 19.12.2022:"WWE Chris Jericho and Pre WWE he was great gifted wrestler, however since his AEW run I have found him to be not as great as he can be, maybe it's his age but he a legend and a world-class performer. 7/10 overall as he has had some bangers with Moxley, Omega, Undertaker, Rock etc."
Rating: No rating found
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ArcticSharlatanwrote on 15.12.2022:[10.0] "Chris Jericho is without a doubt one of the greatest wrestlers of all time. I have no idea what CoolKyle is smoking but Chris Jericho deserves to be in the GOAT conversation because of his longevity and ability to carry promotions on his back. >I'm not sure there's ever been a year where he was one of the top 5, maybe 10 wrestlers in the promotion he was in. Jericho to me is basically the original version of Dolph Ziggler. Hyped as this great worker who was clearly a level below the actual great workers that were his contemporaries, solid dependable performer who once in a while would have a great performance or feud and otherwise makes me groan whenever I see him." I get that wrestling is subjective and we will not always see eye to eye on everything but this is one of the most asinine comments I have ever seen. Tribalism is weird."
Rating: 10.0
Sentiment: 0.3173076923076923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CoolKylewrote on 15.12.2022:[5.0] "Jericho is far from any GOAT convo. His famous "re-inventions" are just "Jericho with a different catchphrase" if they're not straight-up embarrassing (Painmaker), anyone who truly values "longevity" as a metric should be lauding Terry Funk as the GOAT long before Jericho even begins to come into the conversation. I think it's absolutely insane that people are eating up Jericho's politicking and recency bias is putting up all-time numbers rn. How in the hell can people look at all of the screen-time Jericho has taken and think "truly this man is one of the most selfless stars ever". I can't remember the last time this guy was part of anything compelling. I think a lot of 'Jericho is an all-time great' is, and props to him for this, is that he has spent a lot of time talking about how great his career was on his podcast, and he's been saying it long enough that people started to believe it. I'm not sure there's ever been a year where he was one of the top 5, maybe 10 wrestlers in the promotion he was in. Jericho to me is basically the original version of Dolph Ziggler. Hyped as this great worker who was clearly a level below the actual great workers that were his contemporaries, solid dependable performer who once in a while would have a great performance or feud and otherwise makes me groan whenever I see him."
Rating: 5.0
Sentiment: 0.22386363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MainEventMasterwrote on 10.11.2022:[10.0] "Possibly the greatest North American pro wrestler of all time. This dude can work in any era for any promoter."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mcbolskywrote on 08.11.2022:"Chris Jericho pre WWE is probably an 8/10, First WWE run for him was outstanding. His feud with Shawn Michaels and their Wrestlemania match was perfect. Kinda fell off the radar for a second towards the end though 8.5/10. His second WWE run was definitely his most accomplished. Multiple title runs, a great feud with CM Punk, lovely work. 10/10 His final run with WWE was most known for his KO friendship/rivalry that ended with their match at Wrestlemania that should have been for the Universal title 7/10. His NJPW run was super weird and had heatless matches, put on great matches though. 6.5/10. His AEW run has been pretty bad though. lots of backstage politicking and sucking up to TK has gotten him an unnecessary push. He should be a producer or part of creative at this point 4/10."
Rating: No rating found
Sentiment: 0.21587301587301583
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheNomadMagicianwrote on 08.11.2022:[9.0] "Chris Jericho ist (fast) ein Gesamtpaket. Großartige Promos, Charisma und Ideen. Im Ring ist er für sein Alter recht gut auch wenn da mehr ginge."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Sick Lebowskiwrote on 31.10.2022:[10.0] "Könnte man auf CAGEMATCH für einen einzigen Wrestler, seinen Superwrestler quasi, 11 Punkte vergeben, hätte diese zunächst Chris Benoit, nach Tag X im Jahr 2007 dann Bret Hart bekommen. Chris Jericho zählte ebenfalls schon immer zu meinen Lieblingswrestlern. Der Ayatollah of Rock'n'Rolla ist ein starker Techniker und High Flyer, eine für die Bühne geschaffene Rampensau und damit ein komplettes Paket. Er lebt mit dem Wrestling seinen Kindheitstraum (und nebenbei auch noch parallel seinen zweiten Kindheitstraum, Rockstar zu sein) und ist daher immer mit vollem Einsatz und Herzen dabei. Seine größte Stärke ist jedoch seine Kreativität. Vom Lionheart zu Y2J zum listenschreibenden Schalträger zu Le Champion zum Demo God zu The Wizard, der Typ erfindet sich immer wieder neu und bleibt somit interessant. Aber da er mittlerweile durchaus sichtbar etwas in die Breite gegangen war und stabiler wirkte, rechnete ich eigentlich damit, dass er langsam seinen Abschied einleiten würde. Und was macht der Sports Entertainer Nr. 1? Dieser Teufelskerl bringt sich in die beste Form seit Jahren und leitet als The Ocho noch mal ein neues Kapitel in seiner Karriere ein. So viel Hingabe, so viel Kreativität, so viel Liebe zum Wrestling und so viel Unterhaltungswert kann ich nicht ignorieren. Sorry Bret, ich liebe dich abgöttisch, aber den Platz als GOAT hast du an Christopher Keith Irvine verloren. Na ja, wenigstens bleibt der Pokal in Kanada. "Go back to Montreal! " "I'm from Winnipeg, you idiot! ""
Rating: 10.0
Sentiment: -0.3423809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NoSellwrote on 22.10.2022:[10.0] "You can talk all you want about his IRL views and whatever but as it comes strictly to wrestling he's a top 5 maybe even top 3 North American wrestler of all time, constantly reinventing himself throughout his career and proved himself everywhere he went. A legend in every sense of the word."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: li0nsaultwrote on 10.10.2022:[10.0] "This guy is literally a genius. From WCW to WWE, and from WWE to AEW, Jericho has always understood the business and what a professional wrestler should do. Not only that, his in-ring skills have always been good, and even persist to this day. It's crazy how a 51 years old man still has great matches. All the respect in the world for him."
Rating: 10.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: newbabelwrote on 07.10.2022:[10.0] "Judas Effect is hit or miss as a finisher but the fact Jericho is still putting on high quality matches and is central to high quality storylines and feuds cements him in the halls of the greatest imo. I don't know if he's in my personal Mt. Rushmore but it'd be disingenuous of me to not rank him up there."
Rating: 10.0
Sentiment: 0.2866666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: eltetechoriwrote on 06.10.2022:[10.0] "One of my favorite wrestlers, when he's been heel, in the entire history of pro-wrestling. Very good wrestler, and always making history in every place he goes."
Rating: 10.0
Sentiment: 0.47
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MCSPICYwrote on 04.10.2022:[7.0] "Super overrated. Don't understand the hype. Start to 2010 Jericho was hilarious but he has really fallen off."
Rating: 7.0
Sentiment: 0.3444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kingoftheringdudewrote on 04.10.2022:[10.0] "Erfindet sich noch heute jedes mal aufs neue und das ist grandios. Er ist zu recht eine Legende, feierte ihn immer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GoldLigerwrote on 29.09.2022:[10.0] "There's very few guys who can basically say they did it all. Jericho is one of those guys. Worked Canada, US, Mexico, Japan, Europe. Worked for just about every big-deal televised promotion, including spearheading AEW as its first World Champion (even technically worked with ROH via his Cruise one time). Worked face, worked heel. Re-invented himself a dozen times without ever feeling unlike himself. Had great matches every year of his career, adapting his style from a fast cruiserweight to a hardened veteran over 30+ years to match his environment and his own limitations (although despite his current physique he can still do the Lionsault which is really something). Cuts great promos consistently, and always wants to tell a story more than have blow-out workrate matches. I can't say that Jericho was ever my favorite, but to give the man anything below a 10 is a disservice to his insane career, which still likely has a few years left. EDIT: I made the above comment almost a year ago, not realizing that Jericho's 2022 would be the best year he's had in a LONG time as both a wrestler and a character. He's priming to christen the new Era of ROH and might just be getting started with this excellent run he's on. The man is 51 and handing in some of his best work ever while setting up the future of the business, if I could give him an 11 for that I would."
Rating: 10.0
Sentiment: 0.23705454545454543
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: xnviuswrote on 28.09.2022:[10.0] "the fact this man has stayed in the wrestling industry for this long says it all, his longevity is second to none. he constantly changes his gimmick, adapting to what's new and it works every damn time. this is the same man who got a LIST over. what else needs to be said?"
Rating: 10.0
Sentiment: 0.01727272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "The greatest at reinventing him to keep himself fresh and relevant as much as possible, he is a man that truly gets how wrestling works, that gets what fans like and expect and use that to his advantage. In the ring he is not the man he used to be, but prime Jericho was truly a marvel in between the ropes, and one of the greatest I have ever seen."
Rating: 10.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: sbg2022wrote on 04.09.2022:[10.0] "There are certain things about Jericho that I think are great, and certain things that bother me. For example, his longevity in the business is amazing that he's been in the business for 32 years now without an injury, is great. But the fact that he over-promotes himself and acts like he's the "be all, end all" of wrestling sticks in my craw."
Rating: 10.0
Sentiment: 0.5257142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GwenCube64wrote on 04.09.2022:[7.0] "Used to be a 10 for me for a long time. Is really good at picking up what works and running with it until something new hits. Has had some really solid matches and fueds in his career, but ever since his feud with Kevin Owens, he's been EXTREMELY shaky. His AEW run started promising and then fell flat. The Eddie Kingston match was literally his last truly great match in the past 5 years, could even push it to be the best in the past decade but maybe there was something I missed. I've seen quite a lot of Jericho's career and even looking back, I think he only gets a 7 because of his character rarely getting stale (until recently) and his handful of great/classic matches from the late 1990s to mid 2000s."
Rating: 7.0
Sentiment: 0.07515948963317381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: danzgalliwagwrote on 31.08.2022:[7.0] "Extremely overrated by people who I'm assuming have only seen his best matches. He's always been more of a character worker, and there's absolutely nothing wrong with that. He's still a great wrestler all for good reasons. However, is he one of the greatest of all time? Nope. Nope, nope, nope. Aside from solid ring psychology, I've always felt he's been sort of lacking in the ring. His style is supposedly a mix of technical and high-flying, even though he can't do either one of them particularly well. I honestly don't think I've ever seen him acutally mat wrestle, nor have I seen him do much more in the air than a plancha. Now on the other hand, Jericho has at several points in time been one of, if not, the best mic workers in his company. He can connect with the fans better than 90% of the roster. However, for as vital as charisma is to the wrestling machine, it does not make an all-time great. Jericho is a certified hall-of-fame talent, but there is a line of better workers a mile long ahead of him."
Rating: 7.0
Sentiment: 0.34393939393939393
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Ozzywrote on 17.08.2022:[10.0] "Chris Jericho has been the top star wherever hes been for almost 20 years now, he was one of the greatest during his time in Japan & Mexico, in ECW he was good, WCW he was great, WWE he got even better, he was great in NJPW as the pain maker, and in AEW he became the must see talent that he was missing for right around 8 years once again in deserving fashion. He has had one of the greatest promo abilities of all time, and of course he is still able to keep a fresh gimmick going when he needs too, from "Corazon de Leon" in mexico, to "Y2J", to things like the "Pain Maker" and a self absorbed Vince Mcmahon rip off in AEW that is still somehow cool? This man is able to take rotten bananas and make them into a new tree. Jericho deserves all the recocnition in the world for managing to take a handful of whatever hes been given and create magic with his bare hands(no wonder they call him the wizard)."
Rating: 10.0
Sentiment: 0.47900432900432893
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KELLANwrote on 05.08.2022:[10.0] "Eine absolute Legende & einer der besten Worker sowohl In-Ring auch als am Mic. Bringt immer seine Gimmicks over, egal ob Face oder Heel & das seit über 25 Jahren. Mit 50 Jahren immernoch gut im Ring. Potenzial: 2x AEW World Champion - 350 Tage insgesamt - 1x TNT Champion - 150 Tage insgesamt. - Main Event"
Rating: 10.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Benwerderwrote on 01.08.2022:[10.0] "11 gibt es nicht oder? Vielleicht die Chris jericho Kategorie. Alter dieser Typ ist eine Legende. Am Mic unglaublich, erfindet sich jedes mal neu und im Ring immer richtig gut und aktuell mindestens solide. Hat sich auch wieder in shape gebraucht wodurch seine Matches wieder besser worden. Ach am Kommentar ist er auch klasse. Der Wahnsinn der Jericho"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JoshuaWrestling63wrote on 28.07.2022:[10.0] "Chris Jericho ist einfach Weltklasse. Wie er sich immer wieder neu erfindet ist genial. Er wird einfach nie langweilig. Und für über 50 liefert er immer noch gute matches Man kann einfach nicht unter ner 10 geben"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: nothingleftinsidewrote on 24.07.2022:[7.0] "Jericho is great, but it baffles me that he would average a 9.5. There's over 1400 10 votes for him. Jericho? Is a 10/10? I suspect foul play. This guy is as good as anyone? As good as Lou Thesz? Kobashi? Bret Hart? Steve Austin? Kurt Angle? Eddie Guerrero? Fucking Sean Michaels? Chris Jericho... *That* Chris Jericho? You're out of your god damn mind. So he's had a long career, and reinvented himself to stay relevant. So did Sting, Flair, Roddy Piper, Undertaker, MIck Foley, Onita.... Jericho is as good or better than those guys? We all know the good points of Jericho thanks to the FOURTEEN HUNDRED 10/10 ratings listed here, so I'll give you the bad. He's a mic hog and a spotlight hog. Stealing both when he isn't the best candidate to serve the match/angle. He's the crown prince of cheap heat- throws everything at the wall to see if it will stick. Which is almost commendable until you realize he's still doing it 30 years later. He makes it seem like he's elevating younger talent, but he's really not. Who has he "made" literally ever? Omega? You mean he saw the train leaving the station and decided to jump on the hype machine there cuz he was squeezed dry in the states at the time and everyone was sck of him (again). I guess you could call this a shrewd move or something. I just came from a forum where someone was complaining about Piper's segments in 96 WCW. Jericho's segments in modern day AEW are ten times worse. The guy is a fucking joke and he gets a whole segment plus a match every god damn week. He makes everyone who works with him nowdays look like a goof- Eddie Kingston, Daniel Garcia, MJF, Kevin Owens. He really has all you people fooled. It's not 1998, it's not even 2008. The guy is washed and everyone in AEW is afraid to tell him no, or that something isn't a good idea. I wish he would retire. He has had a hall of fame career, and was a great worker for most of it. But you people are fools if you think he's a 10/10. On top of all this he's a anti-vax, covid-denying, right wing fucking asshole. What a joke. I would rate him an 8 but to counteract the ballot stuffing he gets a 7. There are way worse wrestlers out there but stop acting like this dude is trying to elevate anyone but himself."
Rating: 7.0
Sentiment: 0.1443102240896359
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JTIwrote on 24.07.2022:[10.0] "Chris Jericho the person is kind of literally the dirt worst, but Chris Jericho the wrestler, the character, the performer, is SSS+ tier, and I don't think anyone could argue that. On top of being a world-class promo, in-ring storyteller, wrestling technician, and ring general, Jericho has managed to reinvent and refresh his character with almost ridiculously consistent success for decades now. He basically carried AEW on his back for the first six month's of the company's existence, and at the age of 51 continues to be one of the company's best acts, even if his in-ring skills aren't nearly what they were in his prime. He just "gets" pro wrestling. It's just too bad that IRL he's an insecure wannabe rockstar manlet going through a midlife crisis who's given a platform to conspiracy theorists and fascists. Oh well."
Rating: 10.0
Sentiment: 0.07083333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LivingLegendwrote on 22.07.2022:[9.0] "Regardless of your feelings on him as a human being, it's impossible to deny the greatness that is Chris Jericho. Great in the ring, though in recent years he has slowed down a bit. Amazing on the mic, full of charisma. Can play both a heel and a babyface. I prefered his short hair look but either way his look is memorable. Just a great talent overall, even if some of his AEW work has been average."
Rating: 9.0
Sentiment: 0.17314814814814816
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: hoangminecraft6969wrote on 21.07.2022:[9.0] "Never a big fan of Jericho but only idiots can doubt his contributions to the industry. Him helping form AEW and being around to put over young wrestlers only cement my respect for him."
Rating: 9.0
Sentiment: -0.14
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KSupreme3wrote on 19.07.2022:"I can confidently say that Jericho's promo skill is unbeatable. The man knows how to work the crowd and how to create memories that will last years. He's wrestled so many memorable matches on different promotions. The ultimate example of someone who has all the right things to be a mega superstar. Absolute legend."
Rating: No rating found
Sentiment: 0.2482142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: euchre0wrote on 24.06.2022:[10.0] "I'm not certain if Jericho is my favorite wrestler, but her's close. He has done everything in his career and shown he can do anything. He can talk; he can do high flying; he can do slow and methodical; he's willing to put other guys over; you name it! He even knows 1, 004 hold+ holds! Even ad his old age and steps lost he seems to know how to work around limitations and be a great character."
Rating: 10.0
Sentiment: 0.15094308035714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ITaughtEnzowrote on 21.06.2022:[10.0] "Jericho is the total package. On the mic and in the ring he's a force. In this twilight period of his career it's easy to forget how good of a wrestler he was between 1994 and 2016. On the mic, he can still be compelling, although he's become a little overindulgent in recent feuds, Jericho can still turn it on and deliver a great promo and match when needed as evidenced by the feud he's had with Eddie Kingston this year. Whether he is called Lionheart, Y2J, The Painmaker, le Champion, or The Wizard, and whether he's in ring gear, leather jacket a suit, a scarf, or carrying the list; Chris Jericho is an important part of the history of wrestling history, and one of the best to ever do it."
Rating: 10.0
Sentiment: 0.38287037037037036
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: OldDirtyBeemerwrote on 17.06.2022:[10.0] "He is a legend. He's been a top star at three companies across the 1990s, 2000s, 2010s and now the 2020s. Calling him a natural on the mic undersells his ability, he's certainly on the shortlist for the best ever. His in-ring work is hall-of-fame caliber, consistently, throughout his career. On top of all that, he has a great mind for the business as well. And on top of all that, the man clearly works his ass off to entertain us, every day, day in and day out for the last 30+ years."
Rating: 10.0
Sentiment: 0.3964285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NeoSwas36wrote on 04.06.2022:[9.0] "I think his career has dipped, but he's one of the greats. He killed it in WCW, killed it in WWE, and he's doing very well in AEW. Where he goes, success follows. One of the best allarounders and a super entertaining character. 9/10"
Rating: 9.0
Sentiment: 0.2761904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: texasyoshwrote on 30.05.2022:[8.0] "Chris Jericho is a good wrestler. Unfortunately, I feel he's more hype than actually good, where at times his opponents have carried him to good matches. He should get props for longevity and a pretty good catalog of good matches, but man is he overrated. Most 'good' Chris Jericho promos and moments came in 1997-01 and 2008-09."
Rating: 8.0
Sentiment: 0.495
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DoctorTwinwrote on 02.05.2022:[10.0] "One of the best wrestlers of all time. I have so many good memories with him that I can't put it into words. I recommend everyone to check out his matches and promos."
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WrestlingFan892wrote on 31.03.2022:[10.0] "One of the best and most complete wrestlers in history without a doubt, high-flyer, technician, has mic-skills and also a lot of charisma and one of the most beloved wrestlers in history as well. I can't leave without also mentioning how good he is working in tag teams and forming factions."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BAILE3wrote on 26.03.2022:[10.0] "Arguably the best wrestler of all time. Has worked all accross the globe, insane longevity (and is still putting on good matches, like the one against Kingston at Revolution), and is potentially the best talker of all time. He has had a plethora of 5 Star matches and has reinvented himself succesfully, so, so many times with new gimmicks. Every one of his many gimmick's bringing more to the table as his career progresses. Even after more than 30 years of his career he still finds a way to reinvent himself and keep his character interesting. Truly one of, if not the GOAT."
Rating: 10.0
Sentiment: 0.3942148760330578
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Randy Hart UCWwrote on 26.02.2022:"Chris Jericho should be in the Wrestling Hall of Fame. Not just the WWE Hall of Fame. There should be a wrestling hall of fame and Jericho should be in it, for his contribution to wrestling. The way he reinvents himself over and over and stays relevant, no matter where he is. He is the epitome of charisma, and one of the greatest champions of all time!"
Rating: No rating found
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PuroresuLoverwrote on 12.02.2022:[4.0] "Chris Jericho really became a very sloppy and tiresome wrestler to watch. He went from one of the greatest to one of the most boring pseudo-brawlers I've ever seen in my life. His character no longer makes sense, his timing is always off, his selling is simply terrible and he's VERY selfish. To be quite frank, ever since he left NJPW, he didn't have one single match that attracted me or even made me think "Well, maybe Y2J is not that bad". Very sad to see how his career is on the limbo."
Rating: 4.0
Sentiment: -0.28442460317460316
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SquilliamFancysonwrote on 11.02.2022:[9.0] "A performer full of fire and moxie, Jericho's career is impressive both in its quality and longevity. He's a legend, but seems to not reach his ceiling quite as often as some of the other greats, so I'll put him at a 9 rather than a 10."
Rating: 9.0
Sentiment: 0.4083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rishabhwrote on 09.02.2022:[10.0] "Chris Jericho's longevity is insane, his biggest strength is his ability to re-invent himself and be entertaining in all aspects. Even in his late years, he was the best thing going on in WWE in 2016 and AEW in their debut year. With so many classics to his name and great moments he had throughout his wrestling career, I think he has earned to be called one of the GOATs."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WhatIsLooveeewrote on 24.01.2022:[10.0] "Chris absolutely confirms the title of the best in the world, rightfully being on the list of the best. And, perhaps, its main distinctive feature is its progression. Having achieved success in one gimmick, he does not parasitize on it and then succeeds by making changes to his character - as was the case with the Painmaker and the Demo God, for example. An incredibly talented person who knows how to make, perhaps, any gimmick work and attract the attention of fans."
Rating: 10.0
Sentiment: 0.5809523809523809
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GriffinXwrote on 19.01.2022:[10.0] "All time great. Long career in the WWE but even before that had success in WCW, Mexico, and Japan. Now still doing a lot in AEW. Gone form an exciting JR heavyweight to all time great Heavyweight"
Rating: 10.0
Sentiment: 0.43000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PavelDragunovwrote on 16.01.2022:[10.0] "Jericho's contribution to wrestling cannot be described in words. This is a living legend. A man who traveled all over the world giving fans high-quality wrestling. A genius on the microphone, a master of the ring, a man with 5 Stars. Participant of legendary plots, multiple champion in prestigious companies. One of the founders of AEW. A person who is not afraid of change. A bright personality, with excellent musical taste. A fighter who has advanced a huge number of careers."
Rating: 10.0
Sentiment: 0.475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Justtwrote on 14.01.2022:[9.0] "Jericho is one of the best wrestlers of the 21st century, there is no doubt about it. The thing with Jericho since his departure from the WWE is: he will try to latch on a popular wrestler to remain relevant. He did it with Kenny, Naito, Okada, Cody, MJF, now Eddie Kingston and probably will do the same with Hook. Jericho seems to be a mark for himself too. People always criticize Bret for "taking himself too seriously" but Jericho is in another level. Again, Jericho is one of the best and one of the most important wrestlers of the century, but he has big flaws."
Rating: 9.0
Sentiment: 0.3566666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CaptainCharisma1997wrote on 19.12.2021:[9.0] "An all time great to be sure, but only gets a 9/10 due to the fact that I consider his character from 08-10 to be the real peak of his career with nothing else really coming close. That and the fact that he's totally washed now and has long outworn his welcome in AEW by stinking up the joint in every segment and using his paycheck to donate a fortune to the Trump administration."
Rating: 9.0
Sentiment: 0.25833333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PhenomenalGunwrote on 17.12.2021:[10.0] "Where do you even start with someone like Jericho' The master of reinvention: from the List, to the Painmaker, to Lionheart, to the Demo God, Jericho has never been a one-trick pony and is constantly looking for ways to keep himself fresh and ever-evolving. His in-ring skills in his prime were spectacular, and his mic skills are hard to beat. They call him Y2J for a reason, because the moment be broke out in wresting, he changed the business forever! Long live the Ayatollah of Rock n' Rollah!"
Rating: 10.0
Sentiment: 0.10931186868686867
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HolaDiegowrote on 02.12.2021:"7. His career is very good. Not all time great. Not like being one of the top americans in wrestling history. A little overrated."
Rating: No rating found
Sentiment: 0.505625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CMX-7wrote on 27.11.2021:[10.0] "Chris Jericho is an absolute Legend! His ability to adapt to certain conditions is simply charming ... he can create a great story out of nothing! ) Wherever he is (AEW, NJPW, WCW, ECW, WWF/E) he can outshine everyone everywhere, his every new trick gimmick is gorgeous! And his matches are included in the classics of any federation! Despite his age, he can still show an excellent match and entertain the crowd)) P.S. - His role as Color Commentator is phenomenal and funny))"
Rating: 10.0
Sentiment: 0.5611832611832611
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: gj07czoswrote on 22.10.2021:[10.0] "One of the greatest of all time. Jericho's ability to reinvent himself is second next to none. A wrestler that does not rely on nostalgia and doesn't rest on his laurels. Throughout his career Jericho has been solidly entertaining in the ring, but his character work and mic skills place him on the Mount Rushmore of professional wrestling."
Rating: 10.0
Sentiment: 0.32
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jltwrote on 21.10.2021:[8.0] "Nowadays, he isn't that great but he used to be one of the most charismatic characters in wrestling. I haven't really enjoyed very many matches at all from him, but he always has great characters and promo work. The WCW and early WWF(E) days of Jericho were and always will be the best."
Rating: 8.0
Sentiment: 0.60625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: FACEElmo295wrote on 15.10.2021:[9.0] "The king of reinventions, Jericho always kept me watching whenever he was talking or wrestling. He is also the most versatile wrestler in my opinion due to the fact he can do it all, put on a good match, great at working the crowd and making sure he gets the right reaction wherever he be face or heel. While he may be showing signs of decline due to age, the year 2008 was just Jericho at his absolute best and became the number one heel in all of wrestling."
Rating: 9.0
Sentiment: 0.4150793650793651
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: wewantpunkwrote on 05.10.2021:[10.0] "Ob WCW, WWE, Japan oder AEW - Chris Jericho war mir nie langweilig. Eine absolute Charisma Bombe und im Ring zwar schwankend nach Leistung, aber er kann es und versteht sein Handwerk. Wenn man seine gesamte Karriere betrachtet kann man nur eine 10/10 geben. Unvergessene Matches, Segmente und Promos. Aufjedenfall in einer Reihe mit den ganz großen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DDM1405wrote on 12.09.2021:[4.0] "If I were rating Jericho for his run from WCW through to 2010s WWE then this would be an easy 8/10, but this rating is for current Jericho. Put simply, he can't go anymore. He's out of shape, sloppy in ring and his promos and commentary have devolved into just shouting and screeching. To make matters worse, his newfound creative freedom in AEW has allowed him to do bad Monday Night Raw-esque comedy skits, leech off of younger stars and bury talent like MJF and FTR by dragging them through a nonsensical feud with his faction in which Jericho's team comes out on top after humiliating them."
Rating: 4.0
Sentiment: -0.009259259259259252
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rollforinsightwrote on 06.09.2021:[10.0] "There is no truer example of the whole package. Jericho has done it all to a very literal degree that few can match. Give him a microphone and he will lay golden eggs. Definitely a GOAT"
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Pete Gallowswrote on 03.09.2021:[10.0] "Loved him in WCW, he was so entertaining. Very charismatic, funny, great promo. I haven? t seen much of him in many years, but I will always consider him one of the top 3 entertaining wrestlers of all time (along the Rock and Austin)."
Rating: 10.0
Sentiment: 0.5111111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dkexwrote on 27.08.2021:[10.0] "Zu Chris Jericho ist eigentlich alles gesagt, eine lebende Wrestlinglegende. Gerade in der AEW Anfangszeit war er absolut der MVP. Ein Gott am Mikro und tonnenweise Charisma, auch wenn er mir aktuell als Face nicht ganz so gut gefällt wie als Heel. Er hatte eine starke Regentschaft als World Champion, gefolgt von soliden bis sehr guten Fehden nach seinem Titelverlust. Er ist und bleibt einer meiner Lieblingswrestler aller Zeiten, auch wenn er im Ring natürlich nachgelassen hat, mit 50 darf er das. Trotzdem gab es das ein oder andere denkwürdige Match bei AEW."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rellodingwrote on 12.08.2021:[10.0] "I think Jericho is THE BEST wrestler ever, he has endless charisma, he's an amazing wrestler(until about late 2020), he's always fresh, and he's good at putting people over."
Rating: 10.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JacobBoi1wrote on 11.08.2021:[10.0] "Chris Jericho is one of the greatest of all time. His ability to constantly innovate and evolve his character as to never get old or stale is incredible. His in-ring work is usually very good and his promo work is up there with some of the best. He was good in WWE but was not utilized to his fullest potential in the later years, but after leaving he has only gotten better and shown how good he still is. Jericho is one of the best and will consistently prove that."
Rating: 10.0
Sentiment: 0.43733333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dokuaiwrote on 31.07.2021:[9.0] "Jericho has had an incredible career, that much cannot be denied. He first rose to national prominence in WCW and really had a great character but never got the push he could have or should have. Then he jumped ship to WWF, where had a really spotty first run. There were moments of brilliance but mostly when he was in the undercard. Finally when he came back as the suit wearing psychopath I think he really got a worthy run but that also petered out to diminishing returns before the Omega match in New Japan and AEW where he was revitalized."
Rating: 9.0
Sentiment: 0.3264069264069264
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: blastostgwrote on 28.07.2021:[6.0] "Giving him a 6 just for his run in multiple promotions around the globe in the 90s. His WWE work was fine as well. However his run in NJPW and later AEW has been mediocre to absolutely insufferable. Especially since losing the AEW title he has gotten bloated, even more slower and has completely run out of creative ideas. Dinner Debonair is as bad as anything from Russo era WCW. Should really hang it up in ring sooner than later."
Rating: 6.0
Sentiment: 0.05972222222222225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Reviewer Champwrote on 15.06.2021:[10.0] "Goated Wrestler All Back From His Day To Smokey Mountain Wrestling to his ECW and New Japan Days All Away To WCW and WWE and Currently AEW. Great Wrestler and great person outside the ring. Great Charisma and great in ring action. In SMW Great Tag Team With Lance Storm and in ECW great Television Champion. In Japan Created The Lion Hart Moniker and Did Great Stuff in WCW With The List Of 1004 Holds and Mocking Goldberg. WWF/E With Being One Of The Great Intercontinental Champions Of All Time and Great Accomplish Wrestler. He's Even Wrestling Today in AEW With his another renovation le Champion."
Rating: 10.0
Sentiment: 0.5311688311688311
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: VanguardWhowrote on 07.06.2021:[10.0] "For a long time, Jericho was my favourite wrestler that I didn't realise was one of my favourite wrestlers. He's been around for so long under so many different characters that he almost feels like part of the furniture sometimes, and it can be easy to overlook just how great he really is, and has been throughout his career. The last few years have had some rough spots for him to put it very generously, but I can't in good faith rate him below a 10/10 when taking his whole career into account, not even jokingly for his crap dad-rock band or questionable podcast guests, especially when he's done so much for AEW's rise to prominence. One of the most versatile and well-rounded complete packages in the history of wrestling, even if "well-rounded" could just as easily apply to his physique these days. Doesn't do himself a lot of favours in terms of being a prime target for taking the piss out of sometimes, but it's (mostly) out of love for one of the honest-to-god greatest character workers, talkers, and in-ring all-rounders to ever step foot in a ring. An entertainer through-and-through, a catchphrase machine second only to The Rock himself, and one of a handful of wrestlers with a genuinely solid and hard-to-dispute claim to the somewhat nebulous and incredibly subjective title of GOAT."
Rating: 10.0
Sentiment: 0.1773809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lyno123123wrote on 02.06.2021:[9.0] "(9. 8/10) The most versatile wrestler in wrestling history. and the only human that can get a damn clipboard over with just 5 word. if you wanna talk about the word "Re-inventing" yourself Chris Jericho is the GOD of it. And let me tell you he have worked ALL style of matches from Extreme, High flying, brawl, Big match main event, Cinematic, and Comedy. he did it all and nothing that you threw at him will surprise him any more. He seen it all, He did it all, and he's Been there done that."
Rating: 9.0
Sentiment: 0.1335185185185185
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: reverendjimwrote on 30.05.2021:[9.0] "Love the guy, great mic work, bell to bell can still go. Just wish he would lose some of the extra LBS LOL. Looking more like Eddie Kingston as of late."
Rating: 9.0
Sentiment: 0.38333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Daigotsuwrote on 21.05.2021:[10.0] "Jericho is an all-time great. In AEW he's lost a step as a worker, but he's 50 now so that's to be expected. In his prime he was one of the best in the business. He's still an excellent talker, and a sensational commentator. Jericho is just a star at every aspect of the wrestling business."
Rating: 10.0
Sentiment: 0.6733333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BlakeFR37wrote on 08.05.2021:[10.0] "A living legend. From NJPW/ECW to AEW, I love everything. World Champ, IC Champ, Tag Champ, this is a moneymaker, a wrestler makes for Main Event."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The A-Listerwrote on 05.05.2021:[10.0] "Great in every aspect through his entire career: as Lionheart, Y2J, The List Of Jericho and Le Champion. One of the most complete wrestlers in the history of tbis business, be has it all."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AmarantCoralwrote on 18.04.2021:[10.0] "Probably the most adaptable wrestling personality of all time. His character work throughout his decorated wrestling career alone would earn him a 9 but Chris Jericho is among the best technicians and talkers the sport of pro wrestling has been graced with. Beyond this, his ability to recognise his own limitations and adjust his style in line with his age while also maintaining a clear and obvious passion for what he does, keeps him infinitely entertaining and relevant beyond the point many others would have outstayed their welcome."
Rating: 10.0
Sentiment: 0.48888888888888893
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AnBwrote on 16.04.2021:[9.0] "America's Role Model really found a gimmick that worked and just ran with it for the rest of his life, huh. Great in the ring and great on the mic. Heard both good and bad things about him in AEW, but haven't followed that at all myself. I remember him most fondly from his WCW days and 2000s WWE, which were great times."
Rating: 9.0
Sentiment: 0.44285714285714295
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kungwrote on 11.04.2021:[10.0] "This might be the easiest 10 I've ever given. From the day I started watching wrestling, Chris Jericho has always been one of my favorite personalities in the industry. I can't wait to see what he does next!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: zaydkerk19wrote on 29.03.2021:[10.0] "The David Bowie of Professional Wrestling, innovation and reinvention are the hallmarks of y2j's long and illustrious career. Whether as the conspiracy victim of WCW, 2008 Heel Jericho and the List of Jericho iteration of WWE, or as Le Champion in AEW, Jericho is always stealing the show with amazing promo and character work, and fantastic matches, even in the later years of his career."
Rating: 10.0
Sentiment: 0.1625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bushidospirit22wrote on 16.03.2021:[6.0] "One of the all-time greats in his prime, and was still among the world's best five years ago, but Jericho has really fallen off a cliff in the past few years. His New Japan work was slightly cringe outside of the ring but at least he was able to compensate with good lucha-style brawls. AEW Jericho has been a cry for help; adequate at best ringwork that at times has bordered on downright terrible, and the terrible work is now appearing with more frequency. If his current character is delusional, washed up rockstar than I would give him a 10, but I don't think this is intentional."
Rating: 6.0
Sentiment: 0.09081439393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Parts Unknownwrote on 16.03.2021:[10.0] "Although he is a talented in-ring athlete with an extremely high wrestling IQ, it is his mic skills that make Jericho a 10/10 legend. I had the pleasure of seeing him in person at a show at the Staples Center in Los Angeles, and while I was not there to see him (I was there to see Angle vs Benoit or X-Pac w/Justin Credible and Albert... I forget which time this was) it was Jericho that stood out the most that night. It was not for anything done in the ring, it was for being fully in character at least an hour before the show starts. While everyone is standing in line to show our tickets and enter the building, he is on the 2nd or 3rd floor balcony area leaning over the railing shouting insults and getting the crowd riled up. He completely did not need to do that, but minds like Jericho are destined for the top. He knew he had limited minutes on the card, and people are there to see Triple H and the big physiques, so he was out getting heat while other people may have still been getting dressed. When he hit the curtain that night we hated him more than anyone else on that card, even the headliners booked in matches still upcoming. Then when we watch it later on tv we saw he got a huge heel reception as his titantron hit and he pranced out with a big smirk on his face. He put in the extra effort for that. So well deserved."
Rating: 10.0
Sentiment: 0.09281954887218047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RickyHendowrote on 11.02.2021:[10.0] "Absolutely blessed on the mic and between the ropes, the longevity of his career is a testament to how great he truly is. Looks to be having a blast doing something different in AEW, loving his story with MJF"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: StrongStyle2020wrote on 05.02.2021:[9.0] "Jericho has had one of the greatest careers of all time. A success in more promotions than all but very few. Re-invented himself repeatedly, most recognisably with his character, but his finishers also (his Judas Effect he times perfectly, a move that looks simple but is anything but, and he times and executes perfectly). The past few years, people have tried body shaming and bringing politics into it, but Jericho continues to be a hit with all he does, and his past few years have in fact included many of his greatest successes, including two of his greatest matches against Omega and Naito in NJPW, and a consistent ratings winner for AEW."
Rating: 9.0
Sentiment: 0.368125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Burninghammercriticwrote on 03.02.2021:[10.0] "My favourite wrestler of all time, did he have loads of 5 star matches? no. But he is the most consistently entertaining wrestler to enter the squared circle. I have never been bored in a Jericho match, its impossible, a true great legend. The undeniable GOAT."
Rating: 10.0
Sentiment: 0.1638888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Uweuwesenwrote on 28.01.2021:[10.0] "Chris Jericho war in jungen Jahren und in seiner Prime ein extrem guter In-Ring Performer. Selbst im hohen Alter ist er noch okay. Seine Mic Skills sind absolute Elite! Chris Jericho erfindet sich alle paar Jahre neu und das macht in absolut einzigartig!"
Rating: 10.0
Sentiment: 0.40625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Brett1980wrote on 21.01.2021:[10.0] "One of the greatest personalities of all time. He is one of the funniest promos ever. Stood out as a star in WCW despite limitations. Was amongst the most consistent performers in WWE for over 15 years. Then just as you think his career is starting to wind down he goes to NJPW and has a classic match with Omega. Then became AEWs top star."
Rating: 10.0
Sentiment: 0.32301587301587303
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kid Rockwrote on 16.01.2021:[5.0] "Der Lack ist ab..... Chris Jericho hat aus meiner Sicht im vergangenen Jahr viel von seinem einst tadellosen Vermächtnis verspielt und verstärkt mittlerweile jedes Mal wenn ich ihn sehe bei mir den Wunsch, er möge doch nun endgültig abtreten.... sieht man sogar von mindestens als kontrovers zu betrachtenden Aktionen seinerseits (wie sein Fozzy-Auftritt bei der Biker-Rally in Sturgis letzten Sommer, seine Wahlkampfspenden an Donald Trump oder seine kindischen Twitter-Botschaften an Leuten wie Sebastian Bach oder AEW-Kritiker wie Jim Cornette), so bleibt festzuhalten, dass Chris nun wirklich nichts mehr in einem Wrestling-Ring verloren hat. Auch wenn er an guten Tagen und mit dem richtigen Gegner ab und zu noch ein akzeptables Match worken kann, ein aufgeblähter und unfitter Jericho, dem während seiner Matches die Hose aufplatzt ist wahrlich kein schöner Anblick und auch sonst, kann ich ihm abgesehen von der einen oder anderen Promo nichts mehr abgewinnen. Jericho hat als Top-Heel bei New Japan und speziell AEW sich ein schönes und mitreißendes Alterswerk mit seiner starken Neuerfindung als Alpha/Painmaker/LeChampion schaffen können, seit den Ausbruch der Pandemie, trägt er jedoch nicht nur, sondern ist auch oft eine zentrale Figur in der TNA-mäßigen Ausrichtung AEWs in Richtung schlechter Comedy, schwachsinnigem Booking und Arschkriecherei in Richtung der extremen Indy-Smart-Marks. Seinen Fehden gegen Leuten wie Broken Matt Hardy oder Orange Cassidy konnte ich ebenso wenig abgewinnen, wie seiner derzeitigen Albernheiten-Revue mit dem Inner Circle und MJF (den ich sehr mag). Jericho hat für mich gezeigt, dass er nicht nur keineswegs das kreative Wrestling-Genie besitzt, welches ihn Fans (und er sich selbst) immer wieder andichten, sondern, dass er mittlerweile das ist, was ihn zu WCW-Zeiten angeblich unten gehalten hat: Ein (buchstäblich) aufgeblasener Alt-Star, der es nicht mehr bringt, alle Privilegien des Geschäfts genießt, aber selber an dieses nicht mehr zurückgeben kann (oder will), in dem Maße wie es ein Star seines Kalibers sollte. Sorry, Chris, aber es wird wirklich an der Zeit aufzuhören...."
Rating: 5.0
Sentiment: -0.19090909090909092
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Old ride long linewrote on 18.12.2020:[10.0] "Definite jerichoholic right here. All time great ring technician, all time great on the mic, just an all time great allrounder. The only knock on Jericho was his size but to me he found ways to make you believe he could beat the giants. There are to many classic matches to list and I highly recommend going back and watching his whole career from wcw on. He? s in my personal top 10, and probably top 20 all time reguardless of my personal feelings. And if somebody wants to tell me he? s the GOAT I can? t find much to argue against it other than the conversation itself is hard to break down over eras but he belongs in conversation."
Rating: 10.0
Sentiment: 0.20864357864357866
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Moose Nuggetwrote on 09.12.2020:[9.0] "Jericho at his peak was fantastic with great matches and killer promos. I really wish he would adopt a different style now that he's older but he's still a step above many as a in ring worker."
Rating: 9.0
Sentiment: 0.29523809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: medousewrote on 09.11.2020:[9.0] "For the last 30 years he had ups and downs and my final rating is based on his career overall. On the very beginning I loved his wrestling style and his personality. However, from years circa 2008-2017 I didn't enjoy anything about him. His style, looks, personality, storylines, everything. I used to think I will never like him ever again. However after his NJPW appearance something changed. I have tons of respect for him, for doing all these crazy matches at his current age. Great wrestler, living legend and a great musician."
Rating: 9.0
Sentiment: 0.22999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Pizzekwrote on 28.10.2020:[8.0] "One of the reasons why AEW is the thing, the guy never disappointed me, always elevating to a bigger role or more interesting character."
Rating: 8.0
Sentiment: 0.34375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: eleddie2914wrote on 28.10.2020:[9.0] ""Living legend" "King of the world" "Best of the world" "Y2J" Chris Jericho is a legend he is one of the greatest. Jericho was the first ever Undisputed champion although he was a transitional champion he did not disappoint being champion for 3 months and won the title by beating Rock and Austin on the same night. Chris Jericho did not hold world title gold until 2008 and he did not disappoint either Jericho is just great."
Rating: 9.0
Sentiment: 0.61
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ilovewrestling1995wrote on 18.10.2020:[8.0] "One of the best wrestlers on the mic ever and especially the last years he has improved so much . His ring work is very good but its not top . sometimes he is slow in the ring and his moveset has remained exactly the same over the years . but even though he is 50 years old his matches are still over 3. 5 stars and thats very hard to achieve it especially at this age . i hope he is going to wrestle 5 more years he still got it"
Rating: 8.0
Sentiment: 0.15621794871794872
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Narfmonsterwrote on 15.10.2020:[10.0] "30 years of Jericho. 30 years of classic feud after classic feud. He's reinvented himself more times than anyone can count, and each of his incarnations are iconic. From the Lionheart in Mexico, to the submission specialist of WCW. From Y2J to the List of Jericho. From his edgy NJPW character to Le Champion & Le Demo God, Jericho is absolutely iconic. He's had so many classic feuds: The Rock, Chris Benoit, William Regal, Christian, AJ Styles, Kevin Owens, Orange Cassidy, The Elite, etc. Jericho is the BEST wrestler of all time in my opinion."
Rating: 10.0
Sentiment: 0.31999999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Gathawkwrote on 15.09.2020:[10.0] "The actual 'the best there is, the best there was, the best there ever will be'. Jericho reinventend himself more times than I can remember and in recent years, each and every one of his 'reincarnations' was absolutely spot on. Great storyteller, one of the best mic skills in the industry ever and even if sometimes a little (or very) cheesy, his promos and catchphrases always work. Dude is 49 years old and still able to put great matches, just slower and less flashy than even couple of years ago, which is pretty normal considering his experience, number of matches and age. I hope he'll become a full time commentator after he hangs his boots."
Rating: 10.0
Sentiment: 0.3234649122807017
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JuWFEAEwrote on 03.09.2020:[9.0] "Er kann eigentlich alles. Er kann mit 50 noch immer so gut wrestlen wie immer, sein micwork ist nahezu makellos, er hat Ausstrahlungund trotzdem: ich weis nicht was aber irgendwas fehlt mir bei ihm."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Fayzalwrote on 15.08.2020:[9.0] "While not Consistently great, Jericho's ability to constantly reinvent himself is something everyone knows about and is amazing as it is able to keep his character fresh and have the fans feel like they are starting to like someone entirely new while for Jericho himself probably feels like he is getting "trying to get OVER again". Great technical worker too, though he may be old now he has shown he can still go in matches with Naito, Omega & Cody to name a few. He has brought alot of Exposure to NJPW which is well deserved for the promotion and great for himself as he was able to become the Painmaker, which is a gimmick i really enjoyed. AEW making him their first world champion was the right choice, Seeing fans cheer to his theme song on the cruise gives me goosebumps and the whole Le Champion character is just a blast to watch. I say he is a Top 15 all time for me."
Rating: 9.0
Sentiment: 0.2706709956709957
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: lehaimkhwrote on 20.07.2020:[10.0] "What happens if you mix charisma, experience, moveset and eloquence? Jericho is a walking legend. He made an incredible contribution to the development of the entire industry. In AEW and NJPW, his character played with new colors. And I enjoy his work even more."
Rating: 10.0
Sentiment: 0.3872727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Divus Rolexuswrote on 16.07.2020:[10.0] "Chris Jericho is one of the 10 wrestlers that can claim to be the GOAT. In my opinion, he is the best heel of American Wreslting History, at 50 years old he is still an excellent in-ring worker and continues to reinvent himself as a heel."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: archiewrote on 14.07.2020:[10.0] "What is there to say about Chris Jericho that hasn't already been said a thousand times before. Jericho is a mastermind of marketing, constantly reinventing himself into something new and exciting. Constantly working with young talent, pushing them to new levels of greatness whilst still shining through as a phenomenal in-ring wrestler, especially considering he's nearly 50! Jericho is a once in a lifetime talent, he transcends the company he works for, breaking into the mainstream and becoming a household name; you may not watch wrestling but chances are you know who Chris Jericho is and you know what a codebreaker is, in fact you probably gave your cousin one on a trampoline. He makes my Rushmore comfortably. What a talent."
Rating: 10.0
Sentiment: 0.19524793388429754
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Viniciouswrote on 26.06.2020:[9.0] "The Madonna of professional wrestling. This man re-imagines himself right as he gets stale. I've loved everything Chris Jericho has done since seeing him as a scrappy babyface cruiserweight on WCW Monday Nitro. His work in New Japan and All Elite Wrestling has given him a huge boost in the all-time greatest wrestlers list."
Rating: 9.0
Sentiment: 0.30315398886827455
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NastyYaffawrote on 03.06.2020:[8.0] "I have newfound appreciation for Chris Jericho ever since return to NJPW & that Dome match against Kenny Omega. I think most of his 2010s WWE work is pretty damn dull & especially his 2016 series vs. AJ Styles stands out as some of my least favorite stuff of the last 10 years, but oh man he has been killing it ever since going to NJPW & AEW. I always expect him to be a king on the microphone, and he has been that, but he has also been delivering each time he has wrestled. He truly gets his character & that character just happens to be extremely enjoyable to watch do his thing."
Rating: 8.0
Sentiment: 0.14479166666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Conorwrote on 21.05.2020:[10.0] "One of the greatest of all time. Has evolved his gimmick more than anyone else in the business with exception of the Undertaker. His gimmicks have included Lionheart, Man of 1004 holds, Y2J, the List, the Alpha, and Le Champion. He was, and still is, one of the best ever with a microphone and his work in the ring is excellent. It? s little wonder that he is a 7 time World Champion and has been a main event wrestler for 20 years."
Rating: 10.0
Sentiment: 0.579861111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: joshjackalwrote on 14.05.2020:[10.0] "Chris Jericho is one of the all-time greats. So many of his incarnations have been hugely entertaining, from his "Monday Night Jericho" phase in WCW just being a total buffoon with Ralphus to his Y2J heyday in WWF/E to his excellent current work as Le Champion in AEW. His character work is so great that he creates gold accidentally, from "I'm from Winnipeg you idiot" to "Pineapple Pete. ""
Rating: 10.0
Sentiment: 0.2857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: VillainClubwrote on 12.05.2020:[2.0] "Seine Matches bei New Japan in den letzten Jahren fand ich alle schlecht. Viel zu lang und Zäh. Zudem macht er immer das gleiche. Im Grunde ist er nur noch ein alter Mann der versuch noch einmal cool zu sein und ist dabei nur noch Peinlich. Sobald der Name Jericho auftaucht am besten das Produkt abschalten, denn ab hier wird es schrecklich. Einer der wenigen die mir komplett die lust auf New Japan und Pro Wrestlin im Allgemeinen nehmen kann."
Rating: 2.0
Sentiment: 0.20757575757575755
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jatejackpottwrote on 11.05.2020:[7.0] "War mal einer der besten Wrestler wie ich finde. Als er zu NJPW gegangen ist fand ich ihn sogar noch deuzlich stärker als bei der WWE. Alllerdings muss ich sagen, dass er mir bei AEW nicht wirklich gefällt. Das Match gegen Moxley war Hammer, aber sonst? Er hat bei AEW einfach fast keine Matches mehr und das finde ich schade. (Dazu muss ich sagen, dass ich das Match der letzten Dynamite-Ausgabe von Guevara/Jericho vs. Kenny Omega/Matt Hardy nicht gesehen habe)"
Rating: 7.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Geddie84wrote on 15.04.2020:[10.0] "Auch wenn Jericho mittlerweile nicht mehr in der körperlichen Form seines Leben ist, ist er für mich mittlerweile der MVP im Wrestling Business der letzten Jahren. Er ist einer der Hauptstützen der AEW und einer der Gründe, warum ich diese Liga mittlerweile so aufsauge. Seine Interaktion mit anderen Menschen und auch Gegenständen (Vanguard-1 :D) sind einfach fast jedes Mal Moment of the Year würdig. Seine Promos und anderweitigen Leistungen am Mikro, z. B. Kommentator, sind einfach grandios! Seine Fähigkeit andere Talente zu pushen sind bemerkenswert, insbesondere wenn man seinen Status als Top-Star berücksichtigt. Das macht nicht jeder so. Damals zu Beginn seiner Zeit bei WWE konnte ich ihn noch nicht richtig schätzen, aber im Rückblick und im Laufe der Zeit ist er einfach zu einem meiner absoluten Favoriten mutiert. Auch wenn er jetzt nicht mehr im Ring so überzeugend ist, immerhin hat er aber abgenommen seit Start der AEW und wirkt trainiert, ist DER Wrestler weltweit momentan. Er kann alleine eine ganze Promotion tragen und das können im Gesamtpaket tatsächlich nur die Wenigsten! Dazu passt auch, dass er trotz seiner Heel-Rolle von den Fans geliebt wird (eigentlich ist er dann kein guter Heel, aber er hat sich einfach den Status und den Respekt verdient). Sein Entrance bei Revolution mit der Live-Musik war der Hammer!"
Rating: 10.0
Sentiment: 0.6953125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alexiswrote on 10.04.2020:[8.0] "He is very funny, I will give you that, and from time to time, he delivers in the ring, within his limits and what his age allows him. His longevity is surely admirable, and he has his well-deserved spot on Mount Rushmore from wrestling. I have never been very deep in his career, so I just give him an 8, but he is undoubtedly a man to be respected within the wrestling industry."
Rating: 8.0
Sentiment: 0.27499999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jaesuswrote on 10.04.2020:[10.0] "I believe Chris Jericho is everything you could want in a professional wrestler. And the way he has reinvented himself over the years and remained relevant is incredible"
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheFrenchDisasterwrote on 07.03.2020:[9.0] "Chris Jericho is actually one of the best wrestlers in the world and an absolute genius. He never stopped reinventing himself throughout his career and always came back with gimmicks all more fun and entertaining than the others. Even if it is true that his prime is long over, he remains very entertaining in the ring for someone in his fifties. I wish him many more happy years in this business. Retirement is not ready to knock on his door"
Rating: 9.0
Sentiment: 0.3678571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sabu316wrote on 01.03.2020:[3.0] "Gehört in keinen Ring mehr, kein Charisma, keine Interviews die begeistern. Wenn ich Jericho lese dann lasse ich die Show eher aus als einzuschalten. Verstehe nicht wieso man ausgerechnet ihn als Titelträger präsentieren muss. Klar hat er einen großen Namen aber das war es auch schon und selbst der große Name ist nicht nachvollziebahr."
Rating: 3.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Nerfair1wrote on 08.02.2020:[10.0] "Chris Jericho is my favorite wrestler of all time. An amazing worker, one the best talker the buisness ever had and he has the ability to re-invent himself time and time again. To me, Chris Jericho is the GOAT of wrestling."
Rating: 10.0
Sentiment: 0.7000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: alexm9wrote on 04.02.2020:[10.0] "Le Champion, The Painmaker, Y2J, The Ayatollah of Rock 'n' Rollah - Chris Jericho, is undoubtedly one of the all time greats. With some of the best mic skills ever seen, and consistently brilliant in-ring performances, even as he approaches 50, the first ever AEW World Champion has certainly carved his spot on the Mount Rushmore of professional wrestling, and has cemented himself as one of the best ever."
Rating: 10.0
Sentiment: 0.5773809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jackleonewrote on 23.11.2019:[10.0] "I realized that it was natural for Chris Jericho to become one of the greatest wrestlers of all time. He started as a young lion in Japan, then he had an amazing career in WCW and an even better one in WWE as their world champion and a lot of times intercontinental champion. More than that, he can change his gimmick with creativity and he has a lot of great ideas. But I think he improved so much after his 40 years, developing into an impressive overall wrestler that can do everything. He proved it in NJPW and later in AEW, becoming AEW champion at 48 years old. He will always remembered as one of the greatest of all time. His feuds with Angle, Benoit, Stone Cold and The Rock are great, he's a true legend."
Rating: 10.0
Sentiment: 0.40588235294117647
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Same Old Same Oldwrote on 13.10.2019:[10.0] "Back in 1999 onwards, even not having watched much WCW, Chris Jericho fast became on of my all time favourites on arrival in WWF because yes, he had those killer promos, face or heel but he also had the energy and, given the brawling scrappy style of the Attitude era, unqiue offence that set him apart. Since then Jericho is proof you can stay relevant for decades, from his multiple returns, fresh gimmicks and promos, great matches (v Michaels springs to mind) and just when you think it couldn't get any better with his very fun run with Kevin Owens, he turns up in New Japan and has a barn burner of a run leading to AEW now, which he is easily the biggest draw for me. Since then I've gone back to WCW and even Smokey Mountain to see he's been doing this long before I even knew him. On top of that, his podcasts, interviews, books and insights into the business are fantastic and comes off very genuine and likeable at the same time. Also the man got the word "it" and a clipboard over in record time! HOW! ? But but did."
Rating: 10.0
Sentiment: 0.2414848484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Brainbreakerwrote on 11.10.2019:[10.0] "(05/2009) Als er 2005 die WWE verließ, sah ich das nicht gerade als großartigen Verlust an. Jericho wirkte ausgelaugt, seine Face-Auftritte bis kurz vor dem SummerSlam waren relativ langweilig geworden. Von einem World-Title-Gewinn war er zu dieser Zeit weit weg. Allgemein hatte man das Gefühl, dass er seinen Zenit längst überschritten hatte. Mit seiner Rückker und der fantastischen Heel-Performance gegen HBK wurde ich eines besseren belehrt. Dieser Jericho hatte nicht mehr das ausgelutschte, aufbrausende möchtegern King-of-the-World-Gimmick. Dieser Jericho verkauft seine eigene Story als unterrepräsentierter Wrestlingstar in einem neuen, eiskalten, kalkulierenden Heelgewand. Mehr als sehenswert! EDIT (11/2016): Im Interview gab Y2J an, dass der 2016er einer der besten seiner Karriere sei. Und tatsächlich hat sich der Meister des Gimmick-Makeovers (nach gewohnt längerer Einarbeitungsphase über Fehden mit Styles und Ambrose) wieder einmal selbst neu erfunden! Diesmal gibt er den versnobten Veteranen, der sich total naiv mit dem Top-Heel des Main-Rosters verbündet. Die Story ist nicht nur genial, weil das Back-stabbing schon offensichtlich in der Luft liegt, sondern weil Jericho im Zuge des Aufbaus das Snob-Gimmick mit seinen Catchphrases auf die Spitze treibt wie eh und je. Ein weiterer Title-Run wäre hier angebracht! EDIT (10/2019): Ich weiß nicht, was ich noch zu Jericho sagen soll... da verlässt er die WWE, erobert kurzzeit NJPW, liefert die besten Matches seit 10 Jahren ab, geht zur neu gegründeten AEW Liga, wird dort erster World-Champ, gründet das heißeste MainEvent-Heel-Stable aus Newcomern und Oldies, und wirkt in seinem Altrocker-Gimmick vital wie lange nicht. Ich glaube ich hatte zu viel von dem Bubbly, aber Jericho ist einfach unfassbar!"
Rating: 10.0
Sentiment: 0.0625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Matt Mackswrote on 10.10.2019:[10.0] "He keeps reinventing himself almost 30 years into his career. From the '1004 wrestling holds' to 'RAW is Jericho' to the 'Best Wrestler in the World today' to 'the List' to 'Le Champion' -- and I probably forget a couple of highlights. Jericho has earned the right to call himself one of the greatest North American wrestlers and entertainers of all time, and he gladly let's everyone know about his right. One of the greatest workers not only in-ring, but on the microphone as well, and certainly one who has understood the social media age and uses it to further establish his gimmick. Jericho's always working. And I am glad he does, because despite showing signs of age in the ring, obviously, his 'never-stale' character building and established legitimacy alone make all his appearances noteworthy and important."
Rating: 10.0
Sentiment: 0.33255189255189255
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wrestling Foreverwrote on 10.10.2019:[10.0] "Ich muss nicht viel über ihn schreiben. Er ist eine der besten Wrestler aus Kanada (ja er ist in NY geboren doch in Kanada aufgewachsen) und eine absolute Wrestling Legende. Er hat überall gewrestlet um so Erfahrung zu sammeln. Chris hat unfassbar viel Charisma, ist man Mic genial, und ein absoluter Allrounder der perfekt die Face und Heel Rolle spielen kann und zu jeder Zeit wechseln kann. Chris ist auch einer der der WWE treu blieb. Er macht immer wieder Pausen da er ja auch mit Fozzy auf Tour ist. Er hatte schon immer zwei Träume er wollte Wrestler und Musiker werden. Er hätte zu jeder Liga gegen können und auch dort wrestlen doch er tat es nicht er kam immer nur zur WWE zurück. Edit 06. 12. 2016 Es ist inzwischen ungewohnt ihn mit Schnauz zu sehen. Jahrzehnte war er rasiert, trug einen langen Kinnbart oder einen dünnen Bart aber nun mit Schnauz und Schal dazu seine Liste so genial wie der Mann es immer wieder schafft sich zu verändern auch mittlerweile ordentlich an den Arme mit Tattoos besetzt. Edit 10. 10. 2019 jetzt gibt es auch bei AEW viele Veränderungen bei ihm."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wrestlefan20wrote on 03.09.2019:[10.0] "Great on the mic and in the ring. Can work as a heel and a face. Has a lot of charisma. He can also successfully reinvent himself, keeping people's interest in him."
Rating: 10.0
Sentiment: 0.775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KyleEnjoysWrestlingwrote on 27.07.2019:[10.0] "One of the best ever. Continually willing to reinvent himself to remain fresh. Great in the ring & had amazing matches with dozens of greats."
Rating: 10.0
Sentiment: 0.5900000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheV2wrote on 19.07.2019:[9.0] "One of the best all-in-one packages. In the ring he's a great storyteller. He's one of the rare wrestlers who turns shit into gold. Especially as a veteran he was amazing at putting younger talents over. Both his face and his heel-oriented styles are good, but at the moment (before AEW All Out) he's a little bit struggling to find uniqueness."
Rating: 9.0
Sentiment: 0.33472222222222225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JustAWrestlingFanwrote on 27.05.2019:[10.0] "The king of reinvention. Charismatic like no one else. Still great in the ring for his age. Jericho is Amazing and he has been amazing for the last 20 years. P. S. He is also a great singer."
Rating: 10.0
Sentiment: 0.5499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RoderickStrongGuywrote on 19.04.2019:[10.0] "In my opinion he is the Greatest Of All Time. He is the one of the best in mic, great in ring and he always been a awesome heel."
Rating: 10.0
Sentiment: 0.95
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheGorgis309wrote on 15.04.2019:[10.0] "Chris Jericho may very well be the greatest wrestler of the 21st century. The man is insanely talented, both in the ring and on the mic, and continues to consistently deliver great matches despite being 48 bloody years old. His blend of Mexican, Japanese and American styles of wrestling is nearly unmatched in the modern wrestling world and the guy could drag a good match out of a damn broomstick. Hell, this man got a pot plant and a clipboard over, what can't this guy do. Although Jericho is still great in the ring, he is clearly in the twilight of his career. Go out of your way to see Jericho wrestle while you still can, it's a sight to be seen."
Rating: 10.0
Sentiment: 0.23823529411764705
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: zephyrwrote on 19.03.2019:[8.0] "I would have considered him one of the all time greats if he just retired. But he's still wrestling today and I really can't get into his stupid scarf and his weird boring matches anymore."
Rating: 8.0
Sentiment: -0.5249999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MitsuharuMisawawrote on 09.03.2019:[6.0] "He is not of my favourite persons in the wrestling industry. I agree he is a great entertainer and good on the mic. But he is less good in the ring than outside. He is not bad nor great. His matches with Naito are disappointing."
Rating: 6.0
Sentiment: 0.3229166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JEK 1991wrote on 31.12.2018:[10.0] "Excellent wrestler! He is an all rounded in many different ways in wrestling. From moves to roles to mic skills to entertainment."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ZestyZuluWarriorwrote on 17.12.2018:[10.0] "Probably my favorite wrestler of all time and the argument could be made very easily that he's the G. O. A. T. You can't even say "in his prime he was... " because he is still incredible just as he was when he was younger. The man is 48 years old and is putting on 5-star matches. He's put on some of the greatest matches ever in WWE and he's left a mark on any company or continent he's wrestled on. Insanely entertaining on the mic and he's able to pull off a heel or face character flawlessly."
Rating: 10.0
Sentiment: 0.5063333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Steamboat2511wrote on 29.11.2018:[10.0] "Chris Jericho - Y2J als Gesamtpaket gehört an die absolute Spitze in jeder Wrestler-Wertung. Er ist unglaulich charismatisch und dabei einer der wenigen, die als Heel ebenso perfekt funktionieren wie als Face. Y2J ist pure Unterhaltung. Seine Matchqualität ist stets äußerst hoch und er vermag es, die meisten Gegner zu einem guten Match zu führen. Seinen Fährigkeiten im Ring nach gehört er ohnehin zu den besten überhaupt. An die absolute Spitze gehört er auch im Bereich Mic-Work. Seine Präsenz und Eloquenz ist wirklich herausragend. Einzig das wahre und größte Zugpferd der WWE zu sein hat er nie wirklich geschafft, wenn gleich sein Wert für die Company stets unermesslich hoch war. Das reicht für meine Top 10."
Rating: 10.0
Sentiment: 0.2785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Amico Leonardwrote on 10.11.2018:[10.0] "I am a big Undertaker and Shawn Michaels Fan but to an objective point of view Chris Jericho is probably the best performer in the modern era of pro wrestling. He has done it all and revolutionized all . He has been a cruiserweight in his early carrear, classical technical cruiser with great charisma (In WCW/ ECW ), he has been a showman and a great mic man in his early run in WWF/E , he has been a great heel character and a proclaimed great worker in his second run (after the Save Us character) ... he was called the best in the world already 10 years ago. He is in my opinion the greatest heel worker ever and now he is a rebel legend in njpw. I think that rarely in wrestling history we have seen such a technical wrestler combined with the ability in charisma mic skills and with a great character to portraying in the ring (himself is his character). How many matches, great matches we had from Y2J , how many funny moments.. we had milestones of pro wrestling, incredible feuds and matches : the ones with HBK, with The Rock , Angle,  Mysterio, his feud with Goldberg in WCW and nowadays his feuds with Omega ... just to name some of those. Jericho is a wrestling genius a modern day Superman (writer singer wrestler) , every idea he has become something trend (you stupid idiot... come on). He is not recognized as. Legend as Hogan Rock Shawn etc but this is due to the fact that he doesn? t want to have this status he wants to be the one that leads the trama.. He could be recognized as the greatest non recognized Legend of all times. I think that the fact that makes Chris so great is his ability to recreate himself and being able to perfection to embroider the various roles on himself. The example is now in Japan where he showed a new side of Y2J more brutal evil and violent , crazy and brawler to reinvent himself and to hide his phisical limits due to the Age, coping Roddy Piper or Bruiser Brody for example . He is the only that I hope will never really retire"
Rating: 10.0
Sentiment: 0.20860389610389607
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KINGwrote on 09.11.2018:[10.0] "The best I've ever seen. How many times did he change character? He went from a beloved hero to a cocky heel, returned as a savior and became a suit and tie ruthless bastard, he went from the comedy List of Jericho to the bad motherf*cker in Japan, the guy can do it all, he knows what wrestling fans love, because he's like us, he's one of us, he sees what's best for HIS business, in a few years the younger ones will consider him the Greatest Of All Times."
Rating: 10.0
Sentiment: 0.23636363636363641
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MogGuywrote on 06.11.2018:[9.0] "One of the best in the business ever. Jericho has consistently found ways to evolve his work, character, you name it over the years. At the time I'm writing this he's currently on a great run in Japan as New Japan Pro Wrestling's IWGP Intercontinental Champion. This man (at the time of this writing) is FORTY SEVEN YEARS OLD and he will turn 48 in a few days with ZERO signs that he is slowing down anytime soon. Even at the age he is he's STILL one of the most entertaining workers in professional wrestling today. Always been great on the mic, always been a fantastic heel, always been able to get a reaction from the crowd. There's really not much this guy cannot do. The only reason I'm not giving him a 10 rating is because he's never been a great (baby)face (this is my own personal opinion, I know many people think he is an amazing face, but I've never really felt that way about Y2J), but to be honest, he's not a natural in that department anyway, but even when he did work as a face, while not great, he put his all into it. Future WWE HOF."
Rating: 9.0
Sentiment: 0.28723232323232323
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TylerWhitewrote on 31.10.2018:[10.0] "Der beste Wrestler aller Zeiten und das perfekteste Gesamtpaket, das es jemals im Wrestling gab. Im Ring könnte man sich streiten, ob Techniker wie Bret Hart, Shawn Michaels oder Kurt Angle besser waren als er, doch egal wie weit man die Liste der großen Techniker noch aufzählen will, wird keiner dabei sein, der ein nur Ansatzweise so perfekte Gesamtpaket bildet wie Chris Jericho. Auch gibt es ähnlich starke Micworker wie etwa Steve Austin oder The Rock, jedoch sind diese auch nicht im Ansatz so gut im Ring wie Y2J. Seinen Legendenstatus hat er schon lange und dennoch ist seine Karriere so dermaßen Konstant, dass er sich heute noch auf einem Absoluten Karrierehöhepunkt befindet. Das liegt natürlich auch daran, dass er sich immer wieder verbessert und erneuert, was ihn auch von allen anderen unterscheidet. Wenn ich einen wirklich besten Wrestler aller Zeiten aussuchen müsste, wäre das ohne Frage Chris Jericho."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RatingsMachinewrote on 12.10.2018:[8.0] "Chris Jericho is another wrestlers whose longevity has caused people to overrate his talent. At his in-ring peak, Jericho was great but not all-time great. And whilst Jericho is smart for constantly reinventing himself to stay fresh. he's still a guy who has to pick and choose his spots, and has been for quite some time."
Rating: 8.0
Sentiment: 0.4228571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kuzma334wrote on 09.09.2018:[10.0] "4 words - G. O. A. T! Chris Jericho always been an interesting character. Greatest Mic-talker in business, good In-Ring Peformer, Jericho had an interesting and new gimmick every time and he's damn charismatic, greatest heel in WWE history and a normal face. Now Jericho stayed in NJPW and i am very happy for him, Chris tries something new for himself because Chris Jericho loves wrestling and again wants to come up with something new for himself. So creative. Greatest Wrestler Of All Time!"
Rating: 10.0
Sentiment: 0.49060606060606066
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: pappahousewrote on 04.09.2018:[8.0] "Ein riesiger Entertainer und einer der ganz Großen am Mic. Auch im Ring ist er ein guter bis sehr guter Techniker. Ich persönlich finde es schade, dass er nicht mehr in der WWE ist. Ich persönlich hätte mir noch irgendwann ein weiteres Mic-Duell mit The Rock gewünscht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jan23kidwrote on 21.08.2018:[8.0] "Ich hatte Chris Jericho lange bei 5 Punkten, aber seit er weg von der WWE ist, ist er wieder ganz weit vorn. Leider kann ich die vielen schlechten Auftritte, die er für die WWE hat hinlegen müssen, nicht ganz vergessen. Anderenfalls würde ich wohl sogar 9 Punkte geben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Klabauterwrote on 26.06.2018:[8.0] "Ein großartiger Wrestler, der so ziemlich alles erreicht hat, was man erreichen kann und sich auch am Ende seiner Karriere nicht zu Schade ist sich für aufstrebende Talente hinzulegen. [UPDATE 26. 06. 2018] Einen Punk Abzug für seinen NJPW-Run, bei dem sich einfach sein Alter zeigt und zu dem ein unnötiger Titelgewinn gehört."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: taabr2wrote on 04.03.2018:[10.0] "One of the all time great wrestlers. Chris Jericho is absolutely the complete package. He is pretty much great at everything thing he does, the best in the world you might say. Jericho's greatest asset is he ability to adapt and willingness to try new things and take risks and so far it has paid off."
Rating: 10.0
Sentiment: 0.4873737373737374
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Oliver95xwrote on 07.02.2018:[10.0] "Einer der besten aller Zeiten und das immer noch trotz seines hohen alters. Es gibt kaum einen besseren am Mic als Chris Jericho."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CHN325wrote on 31.01.2018:[10.0] "One of the best all time. Truly loves the business and understands it better than anyone. Can reinvent his character and change from face to heel and back again so seamlessly that it is insane. His ring work was great in his prime, and even with age he can keep up with guys ten or twenty years younger than him."
Rating: 10.0
Sentiment: 0.17500000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SED12345wrote on 14.01.2018:[10.0] "The greatest wrestler of all time. He's 47 and wrestles better than most 30 year olds. He's one of the greatest faces and the greatest heel of all time. His ability to change his character is unbelievable. One year ago, Y2J was the scarf-wearing, list using best friend of Kevin Owens. A year before that, he was "Dad" Chris Jericho. Currently, Y2J is the most violent man in New Japan Pro Wrestling. He's had some of the greatest matches of all time with Chris Benoit, Kurt Angle, The Rock, Eddie Guerrero, Dean Malenko, Shawn Michaels, Edge, CM Punk, Kenny Omega, and more. Oh yeah, and he's the lead singer of a rock band called Fozzy. Y2J is my hero."
Rating: 10.0
Sentiment: 0.4681818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dragon Fighterwrote on 20.11.2017:[10.0] "One of the greatest of all time for sure at least in wwe history. Great in ring work with a lot of excellent, memorable matches in his career. He put over his opponents so many times. Phenomenal on the mic, too. Quite charismatic, too. His character is refreshed all the time and totally entertains the audience. His character work in 2016 as gift of Jericho or list of Jericho was absolutely gold. Now he isn't good as he used to be, but I still can't give him less than 10. A GOAT, A HOF. Much respect for him."
Rating: 10.0
Sentiment: 0.4238095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ianlapierrewrote on 04.11.2017:[7.0] "Chris Jericho has fantastic longevity. He's put on fantastic matches throughout his career. I don't think he's one of the top 20 elite. Nonetheless, he's one of the most charismatic and entertaining of his era."
Rating: 7.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Big Blue Machinewrote on 02.10.2017:[7.0] "There is no doubt Chris Jericho is a legend: he has been one of the finest wrestler of the 2000s', thanks to his techical and athletic, nearly cruiserweight-esque style and his rockstar persona. But since Wrestlemania 28, he's nothing but the shadow of that incredible wrestler, and he's tarnishing his legacy with slow-paced, hard to watch matches that shows only that he should retire."
Rating: 7.0
Sentiment: 0.12976190476190477
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Paul Allainwrote on 04.09.2017:[8.0] "His career had highs and lows, including many years in WWE where he was either a part-timer or stale. Nevertheless, the charisma, the polyvalence and the ability to re-invent himself made Chris Jericho an enduring performer that truly deserves to be recognised asan elite wrestler in his best years."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: popsietnetnwrote on 14.08.2017:[10.0] "I think Jericho is one of the best ever because of his versatility. He made his marks in ECW, WCW and WWE, granted them all with classics match. He can wrestle cruiserweight, technical or heavyweight style with garanteed good performances. He's also gifted with natural charisma and his skill on the mic is one of the best ever. Was is unique to Jericho though is how he can performs both face and heel and get so much heat, I never see that before. So a real professionnal wrestler who can do anything, a flawless career and always pulling good matchs from rookies and veterans alike. The sole little thing I thing he can't do is main-eventing - he do from time to time but never it was a huge success, his only flaw."
Rating: 10.0
Sentiment: 0.39296875000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ChristianMB1wrote on 27.07.2017:[8.0] "Outstanding mic work and good psychology, but his athleticism and move-set is lacking. Not quite good enough to be at "legend" status, but certainly has had a great, very long career that is still ongoing (albeit on a part time schedule"
Rating: 8.0
Sentiment: 0.40704081632653066
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mizzle Assault Antwrote on 12.06.2017:[9.0] "I spent a long time thinking of Jericho as a 10 based on reputation, but after watching more and more of his body of work I have to go just a little bit lower. He's very much a "best of" or a "greatest hits" wrestler, and some parts of his career are kind of a chore frankly. The fact that he worked in Mexico and Japan is well documented, but it's rarely discussed that he was never really very successful either place. His early WCW work is also extremely bland and he took quite a while to put it all together. Once he hit his run as a heel in WCW he was on another level though, make no mistake, and continued it into his WWF run. Unfortunately his title run faltered, through no fault of his own, and his next several years are a mixed bag before he took some time off for his music career. When he came back there was a lot of excitement but once again he found himself flopping, until a brilliant heel turn launched him on the best run of his life. After leaving again he came back with mixed results and over time it seemed he lost a major step lost in the ring, but eventually turned things around one last time with the infamous "list" character. In the ring he has many classics, but there are also times when he's over-ambitious and tries to be more athletic than he really is. He's a guy who is brilliant as a heel and a character, but does have his share of flaws over the years."
Rating: 9.0
Sentiment: 0.21902777777777782
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: flashbackwrote on 06.06.2017:[9.0] "Has had a lot of great phases & runs throughout his career, which is still impressively going strong even today. He is starting to show his age a bit, although he looks pretty damn good considering. I hope the guy bows out sooner rather than later because I really don't want to see him as one of those old Ric Flair types, holding onto the spotlight for too damn long. His introduction into the WWF was one of the best and most memorable entrances ever."
Rating: 9.0
Sentiment: 0.41794871794871796
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Adaskerrwrote on 10.05.2017:[10.0] "Truly a GOAT, if RAW or SmackDown was about Chris Jericho talking for 3 hours I would still watch it with a joy. And despite he's 47, Y2J can still put on a great match. Legend"
Rating: 10.0
Sentiment: 0.4564102564102564
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PhantomCommanderwrote on 09.05.2017:[9.0] "Ein Vorbild für alle , , älteren" Wrestler. Wo Wrestler wie Kane oder auch Golddust ihren Ruf durch konstantes jobben oder total lächerliche Gimmicks bzw. Storylines zerstören zeugt Jericho, dass es auch anders geht. Charismatisch sowie am Mic Top die Kombination mit und gegen Owens hat das ganze sogar noch unterhaltsamer gemacht. Solch einen Run hätte ich selbst Jericho nicht mehr zugetraut. Die List of Jericho , die stupid Idiot rufe haben mich konstant sehr gut unterhalten. Die In-Ring Skills von Jericho würde ich heutzutage mit Einbeziehung seines Alters als befriedigend deklarieren. Insgesamt einer der wenigen WWE Wrestler der eine RAW/SmackDown Ausgabe im Alleingang sehenswert macht."
Rating: 9.0
Sentiment: -0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jobbswrote on 08.05.2017:[10.0] "I'll be honest in saying that this man is truly one of my all-time favorites. I've seen a few bad matches of his but there was never a time where his work didn't bore me to death overall. He can adapt to those he is in the ring with and has tremendous character work and just can reinvent himself to catch up with the times and it's amazing to see as well. Been a favorite of mine for years and I have a feeling it's gonna be staying that way as well."
Rating: 10.0
Sentiment: 0.16190476190476194
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JBeckett02wrote on 07.05.2017:[10.0] "Jericho's 2016-17 run was by and large the best of his career. He made otherwise boring RAW shows interesting during his long running storyline with Kevin Owens (easily one of the best built WWE angles in recent history) and despite naturally slowing down in the ring, Jericho has made up for it tenfold with his latest character. His constant ability to reinvent himself and his still excellent in ring ability single out Jericho as one of the greatest professional wrestlers of all time."
Rating: 10.0
Sentiment: 0.2552862170509229
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: awsmpwniewrote on 24.04.2017:[10.0] "Der Typ ist einfach genial. Ob als Face oder Heel. Am Mic ist er grandios und seine Promos sind top. Im Ring war er mal absolute Spitze, mittlerweile nicht mehr, aber immer noch sehr sehenswert. Weit mehr als manch andere.  Bleibt nur noch eins zu sagen:"Put me on your list! ""
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Blood Pumpwrote on 30.03.2017:[7.0] "While I give him all the credit in the world for his creativity, longevity and ability to reinvent himself at a whim, I never honestly connected with Jericho or any of his gimmicks on the same level others clearly have. He has all the tools. He can talk, he can perform, he can sell and he can whip out catchphrases at a moments notice but hes not exactly amazing at any one thing. Hes an all arounder but he kinda annoys me sometimes whether hes face or heel. Hes been in some of my favorite matches for sure, but I just don't get the hype or overwhelming love hes always been given, especially as of late."
Rating: 7.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SomeDudeOnTheInternetwrote on 30.03.2017:[10.0] "Das wahrscheinlich beste Gesamtpacket in der WrestlingGESCHICHTE. Angefangen in Japan, Mexico und danach bei ECW wo seine Matches zu der Zeit und bis heute noch sehr gut und einzigartig waren. Bei WCW mit seinem späteren Heelturn und seinem Lionheart und The Man With 1004 Holds Gimmick war er eine absolute Granate am Mic und der absolute Underdog Entertainer. Seine Matches bis dato gegen Eddie Guerrero, Dean Malenko, Rey Mysterio usw. bestochen durch sehr guter Technik gepaart mit Highflying Moves. Bei der WWE als erster verdienter Undisputed Champion der den WCW und WWE HW Champion tragen durfte. Seine Fehden um die Zeit bis 2008 mit Shawn Michaels waren allesamt sehenswert und er begeisterte am Mic und auch im Ring. Danach vermisste man einen kleinen Höhenflug für Y2J, dennoch war er nie langweilig und hat die Produkte immer top verkauft. 2016/17 wird von vielen als Chris Jerichos bestes Jahr angesehen und das zurecht! Egal was für ein Gimmick, ob Lionheart, Y2J, The Best in the World at what I do, Stupid idiot, List usw. er performed immer mit Höchstleistung und im Ring ist er bis heute ein famoser Worker.  Was soll man noch sagen.. er ist der eine unter 100 000 Wrestlern der das Zeug hat über die Jahre sich weiterzuentwickeln, viele gute Matches zu worken, grandiose Promos/Segments zu halten und durch die vielen Gimmicks zu bestechen. (10+/10)"
Rating: 10.0
Sentiment: 0.07083333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Summerslam Fan 01wrote on 19.03.2017:[10.0] "Pures Gold der Mann.  Schon ewig dabei und ein zukünftiger HOF.  Am Mic einer der besten, im Ring auch sehr gut (immer noch).  Und auch einer der besten Heels der WWE Geschichte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Coltwrote on 10.03.2017:[10.0] "Neben dem Ultimate Warrior und Diesel mein absoluter All-Time-Favorite! Einer der besten Techniker aller Zeiten und für mich sogar ganz klar der beste Kanadier den die WWE je hatte (sorry, Bret Hart - Y2J hat einfach mehr Charisma und ist selbst technisch noch besser). Extrem gut am Mic und auch ansonsten sehr unterhaltsam, dazu viel Charisma und obwohl er viel kleiner und leichter war als die meisten seiner Gegner wirkte er NIE unterlegen oder wie ein Underdog - er hatte einfach diese Ausstrahlung von Coolness, Entschlossenheit und Überlegenheit. Man nahm ihm einfach ab, dass er selbst gegen die größten Hünen und dicksten Schwergewichtler noch ein Mittel fand um ihnen den Allerwertesten zu versohlen."
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LordGabrielwrote on 26.02.2017:[10.0] "I never saw a wrestler who can reinvent himself like that after a long career like Chris Jericho had. Great heel , loved by fans , can put some great matches and awesome storylines. He is actually probably the best wrestler on Monday Night Raw. I loved his match vs. The Rock and Steve Austin , but I don't know why a great wrestler like him choose to put over a lot of wrestlers."
Rating: 10.0
Sentiment: 0.551923076923077
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Changeling45wrote on 21.02.2017:[9.0] "One of the absolute best small guys ever.  His ability to change his character and evolve over the decades is incredible.  He's one of the best promo workers of all time and has put on terrific matches with top talents."
Rating: 9.0
Sentiment: 0.4785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SuTonwrote on 19.02.2017:[7.0] "Jericho is a decent in-ring worker that got the reputation for being a great wrestler. Not an all time great, but I'll definitely praise him for his ability to get himself over, his charisma, and ability on the stick, but his in-ring work was never great. Sloppy execution of moves, awkward chain wrestling, missteps in timing, unconvincing offense, and not knowing his limitations as worker leading to some mishaps. He's never been a particularly good babyface, his selling being middling at best and his hope spots lacking urgency and fire. He was at his best playing a goofy heel with delusions of grandeur, but his work in 2008-9 is something to note. I thought he got dialed back the emotion expression too much at times and his offense rarely meshed well with the viscousness he tried to bring, though."
Rating: 7.0
Sentiment: 0.28928571428571426
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rllywrote on 10.02.2017:[10.0] "Mic: Fantastisch dieser Typ. Lustiger geht es eigentlich nicht mehr. Und wenn er mal nicht die Humor Schiene fährt, dann ist er dennoch hervorragend. 10/10 (25%) Promos: Seine Promos sind immer gut 10/10 (10%) Ring: Extrem gut damals und heute immer noch. Nur ist er heute logischerweise nicht mehr so schnell aber arbeitet trotzdem richtig sauber. 9/10 (50%) Gimmick: Egal was für ein Gimmick er hat, er spielt es super 10/10 (15%)   =9, 5 Punkte und das sind dann 10 Punkte."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: One Winged Angelwrote on 10.02.2017:[10.0] "One of my favorite wrestlers ever, he is among the greatest all round performers of all time. The way he has been able to evolve and gotten over each time he has returned is a testament to just how good Chris Jericho is. The man has gotten a damn list over!"
Rating: 10.0
Sentiment: 0.5349999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: coolserazwrote on 08.02.2017:[10.0] "He is truly the G. O. A. T. Unselfish to a fault, highly successful, great on the mic, very good in the ring. He has slowed down now because of age but he has made up for it millionfold with his hilarious heel character. He can be the evil serious heel too like he was in 2008. He can be a goofy babyface, a tough babyface. Nothing this man cannot do. Sadly, he tends to get overshadowed by others but he is a big part of why WWE is so successful. Combining him with KO has made atleast one thing on Raw must-watch."
Rating: 10.0
Sentiment: 0.12318869165023012
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Real Raterwrote on 21.01.2017:[8.0] "Ring: Im Ring etwas überbewertet, aber trotzdem ein guter. 8/10 (50%)  Promos/Schauspieltalent:Einer der besten aller Zeiten.  10/10 (25%)  Charisma/Statur/Gimmick:Leider nicht sehr Charismatisch, für mich. 6/10 (25%)  Sind dann insgesamt 8 für den King Of The World, er ist zwar ein Internet Liebling aber eine Bewertung von 9, 57 ist meiner Meinung doch ein bisschen zu hoch, da es im Ring einige bessere gibt.  = 8 Punkte"
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ZachEalywrote on 15.01.2017:[10.0] "We better have to begin considering him as the greatest pro-wrestler of all time. Not only he is a great wrestler and one of the best talker in WWE, but he also managed to reinvent himself so much time that i bet he could stay relevent until the day he dies. My favorite wrestler, and a certified HOF."
Rating: 10.0
Sentiment: 0.5714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: steviecwwrote on 10.01.2017:[9.0] "One of the greatest mainstream wrestlers of all time but in-ring he is perhaps beginning to push his career length a little past its best but I am so enjoying his persona and overall work. I also feel that his 2017 WWE US Championship win was incredibly well deserved. A wonderfully storied decorated career from ECW, WCW and WWE plus Japan, Mexico and beyond."
Rating: 9.0
Sentiment: 0.5291666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rjsbx11wrote on 06.01.2017:[10.0] "Ingenuity, might be the best word to describe the great Chris Jericho. Jericho has done so few before have done and perfect the art of working the crowd. A rising star in WCW, before bolting to the WWF, Chris Jericho's look, fantastic promo work and star quality has always made him a focal point in WWE. From King of the World to Y2J to Honest Man to Best in the World to List of Jericho, no one has made a commitment to redefining and rejuvenating themselves like Chris Jericho has.  Jericho's in-ring work has always bee good, and he often gets overlooked by top tier talents but Jericho's always been able to make matches mean something through ring psychology, and entertaining to hide opponent's shortcoming. When the bell tolls on Jericho's career, he'll garner GOAT recognition, despite not being the top guy but simply by how he managed to maintain greatness and consistency through many phases of the industry."
Rating: 10.0
Sentiment: 0.49916666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: molemaster43wrote on 05.01.2017:[10.0] "There's really no man who can reinvent himself so well over so many years and always remain one of the most entertaining characters on the roster. His in-ring abilities have declined as of late, but he still remains one of the most entertaining parts of WWE today."
Rating: 10.0
Sentiment: 0.29999999999999993
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NaGoyah09wrote on 03.01.2017:[10.0] "Hätte niemals gedacht das er sich mit einen neuem Gimmick nochmal übertrifft, aber was er zurzeit abliefert ist einfach ganz grosses Entertainment. Hoffe er bleibt auch nach WM noch 2-3 Jahre fest dabei, da würde aktuell ne ganz grosse Lücke enstehen sollte er sich wieder auf seine Musik Karriere voll Konzentrieren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LSEstrelawrote on 01.01.2017:[10.0] "Hate him if you want, he coudn't care less! The first ever undisputed champion still has it and will go down in history as a true legend. WRESTLING IS JERICHO!"
Rating: 10.0
Sentiment: -0.09527777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: test85wrote on 24.12.2016:[10.0] "Chris Jericho hat es wieder einmal geschafft und alle Kritiker eines besseren belehrt: Wo viele schon wieder von einem Flop Run sprachen belehrte er diese eines besseren. Seine 2016 Reinkarnation gehört sicher zu seinen Karrierehighlights. Am Mic gehört er sowieso zu den besten aller Zeiten. Im Ring ist er trotz seines Alters auch noch ein fähiger Worker. Es kann halt nicht jeder ein HBK sein, der mit Mitte 40 noch gelenkig war. Hoffe man vergönnt ihn noch einen World Title Run oder einen Rumble Sieg, welche ich ihm beide vergönne."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheMan89wrote on 22.12.2016:[10.0] "Chris Jericho is one of the greatest in ring talents to ever perform in the wrestling business. He has had a lot of five star matches with guys like Shawn Michaels, Triple H, AJ Styles, Benoit, Edge, etc. there are so many I cannot even count. He has changed with the times having one of the best heel runs ever from 2008 - 2009 even in 2012 and 2016 this year. I always liked him better as a heel because he can cut a very great promo as a heel as opposed to a babyface even though his catchphrases as a good guy were entertaining to watch. He has continued to re-invent himself over the years and can still perform at a high level such as his work with Styles and Ambrose this year. His programs with Shawn Michaels, CM Punk, and AJ Styles will always be remembered for years to come."
Rating: 10.0
Sentiment: 0.596
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SanthoshVNwrote on 09.12.2016:[9.0] "Chris Jericho is the veteran who is backing up the WWE till now. Apart from the gimmick he do he is been a great wrestler who had a legendary career. I hope he gets a chance to hold any WWE title before he leaves the company. He is filled with wrestling and charisma"
Rating: 9.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SamuelElJaxonwrote on 04.12.2016:[10.0] "Always knows how to reinvent himself, which has kept him insanely fresh over the years. I can't think of a more innovative character off the top of my head that's still currently active."
Rating: 10.0
Sentiment: 0.33333333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: mdbnasewrote on 29.11.2016:[10.0] "Bearbeitung: Einfach gut... in allen Belangen, immer noch Mainevent-tauglich und dazu fähig, andere Wrestler over zu bringen. Für mich aber früher etwas arm an Charisma aber das hat er nun absorbiert. Darum gibt's jetzt auch die volle Punktzahl. Hat einfach alles, was ein Wrestler heutzutage braucht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AtticusFinchwrote on 25.11.2016:[9.0] "An absolute legend and a man who can find new ways to reinvent himself. He's still getting over with new catchphrases to this day. My only complaint I've ever had with Jericho is that I never found his face work very interesting. Thankfully, his later years (and current run) in the E were based around heel work. Has the ability to make anyone look good and seems to make an extra effort to help younger talent, even if he goes over. He may never have been a top promo or even a top wrestler, but he's smart as hell and managed to keep himself around a lot longer than some other top promos/wrestlers."
Rating: 9.0
Sentiment: 0.19450081168831168
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Winx Clubwrote on 13.11.2016:""You're gonna get....... IT"  Einer meiner absoluten Favoriten. Im Ring weltklasse, gleiches gilt für die Arbeit am Mikrofon. Ich sah ihn immer gerne und obwohl ich von seinem Face-Run anfang des Jahres schon ein wenig gelangweilt war, hat er sich wieder ganz nach oben gekämpft. Als Heel ist Jericho schon immer besser gewesen und im Team mit Kevin ist er unschlagbar. Die momentane Inkarnation Jerichos gefällt mir von all den Gimmicks, die er im Laufe der Jahre verkörperte, am besten.... welche Ironie, wenn man bedenkt, dass er vor ein paar Monaten noch mit seinem Face-Gimmick ganz unten auf meiner Liste war und sich nun ganz oben befindet. Apropos Liste: die Segmente mit der "List of Jericho" sind das absolute Highlight jeder Raw Episode. Statt nur Bemerkungen wie "Drink it in, maaaaan", "stupid idiot" und das oben genannte Zitat rauszuhauen, gibt es noch dieses wundervolle neue Extra, mit welchem er sich einige zusätzliche Pops meinerseits verdient. Raw ist nicht nur die Show von Kevin Owens, Raw IST Jericho (und das schon seit einigen Monaten).    Ob nun als Anfänger in den frühen 90ern oder als Veteran, Jericho ist und bleibt einer der besten Wrestler, die die Welt je hervorgebracht hat, volle Punktzahl."
Rating: No rating found
Sentiment: -0.26153846153846155
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alex Maedawrote on 05.11.2016:[10.0] "Chris Jericho ist derzeit in seinem geschätzt fünften Spätherbst seiner Karriere. Vom Comedy-Charakter bis zum verbissenen, arroganten Heel hat er aus allen seiner Gimmicks das Beste herausgeholt. Im Ring großartig und bereit, die verschiedensten Stile mitzugehen. Desweiteren hat er viele junge Leute over gebracht. Er ist wirklich der beste der Welt in dem, was er tut. Und seine Musikkarriere zeigt, dass man sogar mehr als nur einen großen Traum verwirklichen kann, wenn man an seine Fähigkeiten glaubt und beständig an sich arbeitet.  THE BEST IN THE WORLD AT WHAT HE DOES!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Astraeuswrote on 04.11.2016:[8.0] "As has been stated many times before, Chris Jericho's greatest skill is his knack for constant reinvention -- and his ability to get absolutely anything over with the crowd.  He's brilliant, charismatic, and incredibly well-attuned to his audience.  He knows exactly what buttons to push to make people love or hate him, and that's how he's executed so many different gimmicks with such success.  He can be lovable, despicable, cowardly, hilarious or sinister -- and none of these turns have felt awkward or inconsistent with the others.  Then there's his in-ring ability, which is on the decline but still excellent.  Even at 45, Jericho is more than capable of keeping up with the youngsters, and his use of ring psychology has added heat to even less-spectacular matches.  Once dismissed as "too small" to be a champion, Jericho has proved he's a giant of wrestling, and he'll go down in history as one of the sport's most innovative legends."
Rating: 8.0
Sentiment: 0.2670940170940171
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DanielBryan1986wrote on 25.10.2016:[10.0] "Für mich neben Steve Austin die besten Beispiele was die WCW für Talente ungenutzt ließ. Und eben so hat man immer das Glück bei WWE endlich doch aus dem Schatten zu fallen. Y2J hatte natürlich seine guten Matches bei der WCW vs Mysterio, Guerrero und Syxx. Das er am Mic was drauf hatte merkte man dann besonders vs Malenko und Nick Patrick. Als er in seinem ersten WWF Auftritt direkt mal The Rock unterbrechen durfte fand ich total genial. Weil er hier für den Main Event sich anbot. Und auch wenn er zuerst in der Uppercard mit Chyna, Angle und Benoit gearbeitet hat war er sofort dünn angesetzt zum Main Event. Dabei war er aber nie Egoistisch (siehe Raw 360 oder auch beim Summerslam 2016 Backstage). Für mich ist Jericho zu recht in Classic Matches vertreten. Wenn es Zeit wird für Chris zu gehen wünsche ich mir (Stand Heute) ein Klassiker Match mit Styles oder Rollins zum Schluss."
Rating: 10.0
Sentiment: 0.053846153846153835
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheChinThatGotTheWinwrote on 19.10.2016:[10.0] "Currently the best and the most amusing wrestler on Raw. He's not that good in the ring anymore, even though he's still really solid, but his current gimmick is so good. His phrases such as 'IT' or 'Gift of Jericho' or now 'The List of Jericho' are priceless. He's like the only good thing about Raw today."
Rating: 10.0
Sentiment: 0.3384615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "G. O. A. T. - In diese Konversation gehört Jericho definitiv. Selbst in seinen Mitt-40ern liefert er im Ring noch super solide Matches. Was sein Mic-Work anbelangt war er schon immer einer der Besten und momentan ist einfach jedes Segment, in dem Y2J ein Mikro in der Hand hält, pures Gold. Definitiv ein künftiger Hall of Famer!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jtsilver101wrote on 15.10.2016:[10.0] "Whether a face or a heel, whether in Japan, WCW, or WWE, whether in the mid card or the main event. Jericho has always had IT. From his debut to now, 9/10 Y2J segments are gold. He has done so much for the WWE. He's accomplished everything he could. World titles, IC Titles, and the ability to leave and come back and still be loved by the fans. His most recent run has proven his ability to change and adapt to the times. Jericho is a legend and one of the few who selflessly puts over other talents. A genuine once in a life time talent"
Rating: 10.0
Sentiment: 0.16742424242424245
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: wolfthebeast97wrote on 10.10.2016:[10.0] "Chris Jericho is awesome! He does great regardless of whether he's a face or a heel, but it's as a heel that he's at his best. He's still very good in the ring even at 45, and his mic skills are absolutely legendary, on the level of Mick Foley and CM Punk. He's one of the main reasons why I still watch Raw sometimes. Hopefully he can get into the Hall of Fame in a few years!"
Rating: 10.0
Sentiment: 0.5494871794871795
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheOneWhoKnockswrote on 27.09.2016:[7.0] "One of the most overrated wrestlers ever by the internet probably. Without doubt a great in ring performer for most of his career when at his best, he has to be one of the most inconsistent wrestlers ever in my opinion. Not just in-ring, but as a character and on the microphone. His WCW heel run in 1998 was magnificent, and still one of the best wrestling characters of the 90's arguably. His heel work in 2005 before he first departed WWE was magnificent also. And I love his current egotistical, mid life crisis character in which he has shown perfect comedic timing, despite being mostly trash in ring these days. Otherwise, Jericho has always been a "B Plus Player", as Triple H would put it, for the majority of his WWF/E run. His initial performances in late 1999 were poor, his Undisputed WWF title run in late 2001-early 2002 was a disaster, both due to the booking and Chris's performances, he was stagnant for a number of years after that, and I find his 2008-10 run overrated and typically inconsistent as well, with the exception of his great feud with Shawn Michaels of course, the Mysterio feud and the unexpectedly awesome Jeri-Show team. Not even going to mention anything he did between 2012-15 as that entire run/runs were terrible. Also not a fan out of the ring either. He come across as a conceited egomaniac with a high opinion of himself, he's an overbearing host on his podcast and he likes to make ridiculous statements such as "wrestling skill doesn't matter, it's all about personality and character. Chris, there's a reason why your attempts to put Fandango and Ryback over didn't succeed in the slightest."
Rating: 7.0
Sentiment: 0.29203703703703704
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Heavymetalhead7wrote on 18.09.2016:[10.0] "My favorite wrestler growing up still has it Chris Jericho as been able to create characters and literally become them and get over pretty much everytime. The guy still has pretty good in ring work for his age but hes slowed down some no big deal for what he loses in the ring he backs up with his entertaining personality and incredible charisma Jericho will always be one of my favorites in my opinion hes still a 10 in such a weak era."
Rating: 10.0
Sentiment: 0.22841880341880344
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: brandonkirtonwrote on 14.09.2016:[10.0] "Hands down one of the best, knows how to evolve with the times really well. There hasn't been a time he wasn't entertaining and simultaneously putting on great matches. He puts younger upcoming stars over without a word which most guys of his stature would hardly do. Chris Jericho, thank you and keep being GOAT."
Rating: 10.0
Sentiment: 0.31909722222222225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MusSanwrote on 12.09.2016:[10.0] "Um es auf den Punkt zu bringen! Er ist am Micro genial, im Ring ist er auch sehr sehr gut und vom Charisma brauche ich garnicht erst einmal anfangen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TwistOfFatewrote on 06.09.2016:[10.0] "Einer der besten oder sogar der beste am Mic. Super Wrestler seit vielen Jahren! Schade das er aktuell bei der WWE etwas unten gehalten wird. Aber es wird schon nochmal ein "Run" geben, verdient hätte er es sich."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rasslin Ruleswrote on 31.08.2016:[10.0] "Er kann auf eine erfolgreiche Karriere zurückblicken, in welcher er uns viele starke Matches und schöne Momente beschert hat. Außerdem hat er sich dauerhaft weiterentwickeln können wie kein anderer. Seine aktuellen Catchphrases gefallen mir von allen am besten ("It", "Gift of Jericho", "Stupid Idiot")."
Rating: 10.0
Sentiment: -0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: fireballx90wrote on 30.08.2016:[4.0] "I've never been the biggest Jericho fan. I find his promos do get quite repetitive, especially with his current heel stick. His best stuff came with HBK for me, especially the ladder match which I really liked. Match wise, he had some good ones but many forgettable ones which is why he gets a 4 from me."
Rating: 4.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PWFwrote on 24.08.2016:[10.0] "Personally, the most underrated performer in the history of wrestling. Yes, he does already have a good number of acomplishments in his career. But Chris Jericho is and always was one of the most complete performers in WWE. An amazing talker that always delivered great promos. A great storyteller. A man who knew how to wrestle and who was able to produce amazing matches. A respected and faithful worker for his company (WWE). A man who innovated and reinvented himself maintaining his character fresh throughout his career. Sure, he already has a place waiting for him in the Hall Of Fame but eventhough Hulk Hogan, Shawn Michaels, The Rock, Stone Cold and John Cena carried the company, something Jericho didn't necessarily do, for everything he did and does, I think Jericho deserves to be recognized has one of the best in world at what he does. Unfortunately, I can't give him an 11, so 10 'it is."
Rating: 10.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ErycK24wrote on 24.08.2016:[10.0] "I haven't been a fan of Chris' work in WWE from 2012-2015 but this year he has killed it. I was a huge fan of Jericho before his departure into a part timer in 2011. The way that Jericho puts young talent over is amazing. Edit: Y2J is a top heel that gets it done better than any other heel on the mic."
Rating: 10.0
Sentiment: 0.25357142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jamie The Rockwrote on 23.08.2016:[10.0] "Ich kann mich den sehr guten Bewertungen meiner Vorredner nur anschließen. Chris Jericho war und ist mMn auch noch heute einer der besten, die dieses Business je hervorgebracht hat. Egal ob in der WCW oder in der WWE, er hat immer sehr gute Matches und noch großartigere Promos abgeliefert und sich damit seine Spitznamen, wie "The Ayatollah of Rock'n' Rollah" oder "The Best in The World at what he does" mehr als redlich verdient. Auch bei seinen anderen Tätigkeiten wie "Fozzy" oder "Talk is Jericho" hat er mit viel Arbeit bewiesen, dass er nicht nur wrestlen kann. Wenn man ihm zum Abschluss seiner Karierre noch einen letzten Run als Champ geben würde, wäre ich vollends zufrieden. Aber auch ohne hat sich Jericho ein ewiges Denkmal im Wrestling gesetzt."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ShooterMcShootwrote on 17.08.2016:[10.0] "He's one of the best guys still working in the business, even though he's lost a step or two since then due to the natural progression of time, he still is one of the legendary figures of the last 20 years."
Rating: 10.0
Sentiment: 0.395
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jack Slaterwrote on 16.08.2016:[10.0] "Als Heel einfach das unterhaltsamste dass Sports Entertainment zu bieten hat. Ich liebe diese selbstironischen Heels und Y2J hat das einfach perfektioniert. Schon sein Run in der WCW, die Fehden mit Malenko - Die legendäre Promo - oder Goldberg. Sein erster Abend in der WWF und er geht toe to toe mit THe Rock at his best.  Seine Fehde mit Shawn Michaels Jerishow...  Und jetzt JERI-KO DIeser Kerl liefert einfach immer wieder ab Seine In-Ring Qualitäten stehen außer Frage. Dieser Kerl ist eine lebende Legende des Wrestling und hat die 10 Punkte mehr als verdient.  Und wer ein Problemdamit hat... YOU BETTER WATCH IT!"
Rating: 10.0
Sentiment: 0.8125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SweetestThing2wrote on 11.08.2016:[7.0] "Chris Jericho is no doubt a Legend but if you put a list of greats in front of me and i had to point out who of them are overrated he is one of them. The guy Can go from mediocre to great in no time. Y2J is one of the most inconsistent legends ever to be privileged with that title but i have no doubt that he deserves to be in the hall of fame one day. He has had classic matches with Rey Mysterio, The Rock, Triple H, HBK & many more and the man has cut some downright legendary promos but he has also let us down with his mic skills and in ring abilities especially within his last few runs."
Rating: 7.0
Sentiment: 0.23737373737373738
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sonny Blackwrote on 09.08.2016:[6.0] "Ich steh mit meiner Meinung wohl ziemlich alleine da, aber ich konnte mit Chris Jericho noch nie viel anfangen. Die einzige Zeit die mich interessiert hat war die Fehde mit Dean Malenko."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KevinZaynwrote on 02.08.2016:[10.0] "Meine Vorredner habend die Wertung eigentlich schon erklärt... Jericho ist mein 3. Lieblings Wrestler! (Ich mag nur HBK und Kevin Owens noch mehr) Er ist/war sehr gut im Ring. 9/10. Charismatisch wie kein zweiter 10/10 und hat/hatte eine exzellente Ausstrahlung. 10/10 Dazu ist er ein Genie am Mic 10/10. ich mag ihn zwar unfassbar gern, finde aber, dass er langsam in den Ruhestand gehen sollte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Legendkiller96wrote on 02.08.2016:[9.0] "Eine Legende, die schon solange bei der WWE ist, das ist unglaublich. Sein Charisma und sein Micwork ist herausragend und verdient ganz klare 10 Punkte. Im Ring finde ich ihn jedoch nicht überragend sondern nur sehr gut, 8 Punkte. Langsam jedcoh könnte man an ein Karriereende nachdenken, denn man hat alles schon gesehen und nichts ist mehr wirklich interessant. Aber wenn er in Fehden noch neue Talente pushen kann, ist das auch gut aber er selber brauch kein Push mehr."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JokeyZockeywrote on 26.07.2016:[10.0] "Eine lebende Legende des Sports! Er hat einfach alles: Im Ring schon immer ein guter Techniker, der viele gute Matches hingelegt hat und es teilweise immer noch tut, am Mic einer der besten Trash-Talker mit ausreichendem Charisma. Besonders sein aktueller Run zeigt einfach, dass er es immer noch drauf hat. Ich finds vor allem gut, dass er sich quasi bereit erklärt hat, neue Talente over zu bringen, das zeugt von seiner Freundlichkeit und Leidenschaft für das Business. Zum Schluss bleibt nur noch eins zu sagen: YOU ARE A STUPID IDIOT!"
Rating: 10.0
Sentiment: -0.8999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GeekLogicwrote on 25.07.2016:[9.0] "I don't see how anyone can be a true fan of wrestling and not, at the very least, be able to give you 5 of Jericho's top moments right off the top of their head. The only reason I am not giving the Lionheart a 10/10 is absolutely due to him lingering around the WWE, not doing much of anything other than wasting our time.   Armbar.   That being said watch his NJPW, ECW, and earlly WCW matches to gain a great appreciation for an amazing wrestler and a pretty fantastic entertainer. My personal favorites are his promos on Nitro and his wrestling in ECW.   Armbar."
Rating: 9.0
Sentiment: 0.2497142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Randomuser12345wrote on 03.07.2016:[9.0] "Jericho described himself as "The George Harrison of the Attitude Era". Talented, but overshadowed by the colossal legends he was surrounded by, namely The Rock, Austin, HHH, Undertaker, Foley, etc. While this may have stifled his ability to be a true main event player, he has consistently entertained on screen for almost 20 years now, going through multiple character changes. It's incredible the way he can get absolutely anything over. The George Harrison comparison rings true for his ring work also. Very good, but you're always gonna be second best when compared to a Benoit or a Guerrero. Still, he has been one of the greatest TV characters/performers of the past 20 years, and even in 2016 at the age of 45 he is not just keeping up with the rest of the locker room, he is outdoing them. Y2J will not be denied."
Rating: 9.0
Sentiment: 0.4197619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NHJ2190wrote on 22.06.2016:[9.0] "Begnadeter Wrestler, begnadeter Micworker hatte seine absolute Hochphase zwischen 2000-2010. In den letzten Jahren hat er meiner Meinung nach etwas nachgelassen. Das schlägt sich leider auch in seinen Matches wieder, die nicht mehr die ganz großen Feste versprechen. So waren z. B. die Matches gegen AJ Styles wirklich gute Matches, aber eben keine überragenden Matches wie z. B. Matches gegen Chris Benoit oder HBK. Nichtsdestotrotz einer der besten seines Faches."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AMHTPwrote on 21.06.2016:[8.0] "Jericho is a hard one to rate for me.  Obviously he's had a fantastic career, but how much should that weigh against his recent performances?  When is it time to start evaluating a talent's legacy as opposed to his current role?  Trying to take both sides into consideration, I'm going to give him an 8.  He's always been a top-tier promo, capable of delivering consistently on the mic in a variety of different roles.  He's funny, he's charismatic, he's a great character actor... and of course his work between the ropes speaks for itself.  His high-flying these days isn't terribly spectacular, in a world where we have Neville and Kalisto putting Cirque du Soleil to shame, but he was groundbreaking during his original Japanese run and his technical wrestling is still excellent.  I do think that Jericho's most impressive skill of all -- his ability to adapt and take on countless different characters -- has waned a bit with age, as has his ability in general.  But at his age, is that really surprising?  He still plays a great heel, and is well-suited to his current role of putting over younger talent.  And when all is said and done, he's going to headline whatever Hall of Fame class is lucky enough to immortalize him."
Rating: 8.0
Sentiment: 0.2738095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: sXe27wrote on 20.06.2016:[10.0] "Der Prototyp eines kompletten Wrestlers. Gesegnet mit Unmengen an Charisma, am Mikrofon abseits des Catchphrase-Runterratterns talentiert wie kaum ein zweiter und im Ring über jeden Zweifel und Stil erhaben. Kann nahezu mit allen Workern zumindest ansehnliche Matches hinzaubern und nimmt sich selbst nicht allzu wichtig und ernst, sodass bereits einige junge und mittlerweile etablierte Wrestler von einer Zusammenarbeit mit ihm profitiert haben. Teilt sich zudem mit mir einen überaus albernen, goofigen Sinn für Humor, weswegen ich ihn wohl schon zu meinen Mark-Zeiten in der WCW trotz seines Heel-Charakters toll fand. Und wenn man die ganze Lobhudelei beenden möchte, fällt einem noch ein, dass er auch noch etwas geschafft hat, was nicht viele von sich behaupten können - er hat sich über die Jahre immer wieder neu erfunden, was insbesondere vor ein paar Jahren im Ablegen des "Y2J"-Charakters gipfelte. Einen solchen Herbst in seiner Wrestlingkarriere haben nur ganz, ganz wenige vor ihm erleben können. Alles in allem, sollten junge Wrestler fragen, wen sie sich als Vorbild nehmen sollten; Chris Jericho sollte ganz weit vorne sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JordanACEwrote on 18.06.2016:[10.0] "Best in the world at what he does - couldn't have been more accurate!  Jericho, In my opinion, is the greatest wrestler to have ever step foot inside a WWE ring (Along with Foley and Eddie).  One of the best mic workers ever, puts on amazing matches (even to this day), knows how to work a crowd and probably the greatest character during his 2008-2009 run.  Without a doubt, Chris is my all time favorite wrestler."
Rating: 10.0
Sentiment: 0.7625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WrestleArtswrote on 14.06.2016:[9.0] "Guter Wrestler, wenn auch nie in der Liga der sehr Guten, was u. a. an der fehlenden Athletik liegt. Als Heel sehr gut am Mic, als Face höchstens mittelmäßig, ein hohes Maß an Charisma besitzt er nicht, auch wenn ihn sein selbstbewusstes Auftreten manchmal so erscheinen lässt. Hat gemessen am Skill-Level das Maximum erreicht und kann auf eine großartige Karriere zurückblicken, sollte jedoch langsam die Stiefel an den Nagel hängen. Sein Gimmick ist mittlerweile ausgelutscht, sein In-Ring Work hat deutlich nachgelassen, seine Promos haben wir mittlerweile doppelt und dreifach gehört und die Scott Norton-Gedächtnis-Wampe ist auch nicht schön anzusehen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: finest0000wrote on 12.06.2016:[10.0] "Zu Chris Jericho, gibt es nicht viel zu sagen. Einfach einer der besten im Ring, am Mic und im Gesamtbild. Als Heel immer wieder super und ein richtiger Jackass."
Rating: 10.0
Sentiment: -0.08333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HowUDoingwrote on 04.06.2016:[10.0] "Chris Jericho. Als Face klasse. Als Heel Weltklasse. Er ist sich nicht zu schade, um sich für andere hinzulegen, trotz seines Standing in der WWE. Er weiß wie er heat zieht und er weiß auch zu unterhalten.  Dieser Mann ist einfach nur Top und einer der Besten !"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wrestlinglexikonwrote on 24.05.2016:[8.0] "Jericho ist in allem Belangen stark. Am Mikro über jeden Zweifel erhaben und mit Charisma für 3 Leute ausgestattet.  Er hat viele unvergessliche Promos und Fehden abgeliefert und war für mich(vor allem in der WCW) oft der showstealer des Abends-unabhängig von seiner Position auf der card. Mit 45 hat er natürlich etwas abgebaut-aber wer hat das nicht? Bei ihm kann man kaum was bemängeln außer einer Sache die mich aber gewaltig stört. Er called-und das z. T sehr offensichtlich und laut. Evtl. bin ich da zu pingelig aber mich nervt es als Zuschauer schon wenn mir der nächste move verraten wird-vor allem wenn die Situation so offen ist, dass die Aktion kaum absehbar wäre. Und auch wenn Jericho wirklich ein Topmann im Ring ist, steht er mmn etwas unter Leuten wie Angle, Benoit oder Styles (auch zu seinen besten Zeiten). Deshalb gehen bei mir "nur"8 Punkte. Dennoch-der Kerl ist auf jeder card Gold wert. :)"
Rating: 8.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rastarazor1970wrote on 13.05.2016:[8.0] "My idea & opinion of a particular wrestler. Good guy or bad guy got to have some swagger, look good body and outfit. Know how to talk smack or shut it down, and of course have some skills, moves and ability.  Outfit: 7 Body build: 7 Swagger: 7 Smack Talker: 7 Ability: 8 Moves: 8 Single: 8 Tag Team: 8 Longevity: 9 *Comment: Little bit of flash and a high flyer Overall Rating: 7. 6"
Rating: 8.0
Sentiment: 0.06802028218694886
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DB992wrote on 12.05.2016:[10.0] "Was the best ever in the 2000s. Gained far too less for his incredible abilities inside and outside the ring.  In 2010s he still is one of the most dedicated performers around, always contributing to help the fellow wrestlers with his classic heel antics. Truly, one of a kind. I find it regrettable that he's being bashed recently for being able to pull just "good matches" (*** and ****) instead of his usual five-stars matches, like he did in the second half of the 2000s versus, say, Mysterio and Michaels.   Dude is 46 years old, though, and still performers better than 80% of the WWE roster. You can't honestly find many performers who are able to do that. Chapeau Y2Jackass, from a stupid idiot of yours truly."
Rating: 10.0
Sentiment: 0.21515151515151512
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: avbiswaswrote on 04.05.2016:[6.0] "He used to be one of the greatest. Had this been 2008, he would get a 10. But in 2016, his form has dipped quite a lot."
Rating: 6.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: awesomepunkwrote on 20.04.2016:[10.0] "Nicht um sonst sagt er, dass er der beste auf der Welt ist, indem was er tut. Vielleicht ist er nicht der beste aber sicherlich einer der besten. Über Jahre absolut unterhaltsam. Am Mic wirklich spitze und auch im Ring sind seine Matches absolut sehenswert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mean Smark Callouswrote on 13.04.2016:[10.0] "quite simply one of the best ever. outstanding mic skills, ring presence, and moveset. makes a great face or heel. can get a good match out of just about anybody. I knew when he started out in WCW that he would be a star one day, he clearly had "it" also has a great light up jacket."
Rating: 10.0
Sentiment: 0.4430555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: blackmileswrote on 05.04.2016:[6.0] "Irgendwie konnte ich mit Jericho nie viel anfangen. Bei ihm ist das ganz komisch. Er hatte seine Aktionen wo ich ihn Unmenschlich fand. (bsp. Debüt) Aber größtenteils fand ich ihn höchstens eine 5. Ich versuche es mal ansatzweise zu Begründen. Im Ring ist er für mich eine 7/10. Am Mic ist er für mich ein guter Host. Er hat ja auch seine eigene Show, aber wenn es dann zu einer Fehde kommt finde ich ist er sehr auf Cheapheat bzw Pop angewiesen. 7/10. Jetzt kommt das für mich fragliche, Wo ist denn seine Ausstrahlung? Hat er sie jedes mal wenn ich ihn sehe zu hause vergessen? In Sachen Charisma und Ausstrahlung ist er eine 1/10. Ist insgesamt eine 4/10. Wegen seiner grandiosen Karriere gebe ich noch 2 drauf. Kann mir das mal bitte einer Erklären?"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WrestlingNerdwrote on 19.03.2016:[10.0] "Man kann sagen was man will, aber Y2J ist einfach ein Wrestling Gott. Einer, wenn nicht sogar der beste am Mic, der sowohl als Face wie auch als Heel ordentliche Promos halten kann. Zudem auch jetzt noch im Ring einer der aller besten. Natürlich nicht mehr so stark, wie noch vor 10-15 Jahren, jedoch noch immer einer der besten. Würde sogar fast schon sagen, dass ein kleiner Titelrun, US-Titel z. B. , ihm noch ganz gut zu Gesicht stehen würde.  Aber sowas wird wohl nur ein Traum bleiben. Trotzdem allein wegen den Jahren im Wrestling, glatte 10 von 10 möglichen Punkten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: James Dean Wrestlingwrote on 09.03.2016:[9.0] "Fantastic wrestler.  Another personal favorite. WCW was a high time for him and the WWF jump just pushed him out to the masses. His mic work is awesome and he has shown complete versatility. He could be the goofy, jokester. The asshole, or the serious heel you hated. His ring work overall is amazing and he is one of the all time greats. Love Y2J."
Rating: 9.0
Sentiment: 0.21055555555555558
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Longa-46wrote on 07.03.2016:[10.0] "Chris Jericho ist einer der besten Gesamtpackete in der WWE. Im Ring ist er sehr gut, am Mic einer der besten. Außerdem besitzt er eine Klasse Ausstrahlung und Charisma ist ebenfalls sehr viel vorhanden. Seine Rolle als Heel 2008/2009 war für mich legendär, man muss bloß an seine Fehde mit HBK denken. Insgesamt einer der besten in der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rodberrywrote on 21.02.2016:[10.0] "If he isn't the best total-package in WWE history he's surely as hell very close to it. Incredible in-ring skills, extremely gifted at the microphone, versatile, able to reinvent himself at the proper time, very smart and able to connect with fans and the business alike. Hats off to a living legend we're lucky enough to still see performing."
Rating: 10.0
Sentiment: 0.42835497835497827
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheLoudMouthwrote on 17.02.2016:[10.0] "Ganz klar einer der Besten im Wrestling-Business. Genial am Mic, hervorragend im Ring, sehr starkes Gimmick und massig Charisma. Gibt kaum ein besseres Komplettpaket als Chris Jericho. Überragender Worker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 1bolieverwrote on 12.02.2016:[10.0] "In my opinion, the best and most complete wrestler ever, great in the ring, great on the mic, and consistently puts younger talent over, he truly is the best in the world at what he does."
Rating: 10.0
Sentiment: 0.55625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: callousedwrote on 28.01.2016:[10.0] "One of the best talkers and workers in the biz. Don't miss what may be your last few chances to see a future hall of famer."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Likkeswrote on 28.01.2016:[10.0] "Wrestling is Jericho. That's all I've got to say, as we're talking about probably one of the best, most complete wrestlers of all time. As a heel, if it wasn't for Flair, I'd say he's been unbeatable. Having the greatest debut WWE and maybe the world have ever seen, and performing at a level only Punk has managed to achieve in the modern era, he has taught us how enjoyable wrestling can be. Definitely my favorite performer ever, he's the true superstar, not lacking charisma, nor technical skill, nor oratory ability, and possessing an astounding capacity for manipulating the crowds. Ten out of ten for the Best in the World at What He Does."
Rating: 10.0
Sentiment: 0.4107142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HeinrichC75wrote on 20.01.2016:[7.0] "Ehemals richtig gut, doch sein Zenit ist längst überschritten. Für die Houseshows bestimmt noch gut zu gebrauchen, doch im Fernsehen brauch ich ihn nicht mehr."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Squared Circlewrote on 07.01.2016:[8.0] "Very solid.  Good in the ring and mic.  Very experienced and can work well with anyone.  A little undersized and he can get a bit tiring, all in all though a very strong body of work."
Rating: 8.0
Sentiment: 0.41516666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Chris Jericho ist einer der Besten eeever. Er ist gut im Ring, gut am Mic und ein guter Performer. Was will man mehr?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PWCwrote on 24.09.2015:[9.0] "A fantastic wrestler that deserves to be harled as one of the best the WWE ever had. Great on the mic and great in the ring. Would give him a 10 if it wasn't for the fact that everything post-2012 Jericho hasn't been all that fun to watch."
Rating: 9.0
Sentiment: 0.6599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: QueenOfTheCattlewrote on 24.09.2015:[10.0] "Chris Jericho has to be one of my favorites, if not my favorite, of all time. He delivers consistently in between the ropes, and isn't afraid to put over young talent."
Rating: 10.0
Sentiment: 0.0625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jacobphillipswrote on 13.09.2015:[9.0] "one of the best ever. great in ring abilities and put on some of the best matches ever seen. my fave was the ladder match for the intercontinental championship at wrestlemainia against benoit. great on the mic and works just aswell as either face or heel"
Rating: 9.0
Sentiment: 0.8999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Excellence of Executionwrote on 24.08.2015:[10.0] "Dass Chris Jericho es trotz eines Gimmicks mit starker Comedy Schlagseite und trotz überschaubarer Physis geschafft hat, so viel zu erreichen, ist ein unwiderlegbarer Beleg seiner Klasse. Und seine Neuerfindung als finsterer Arsch im Anzug mit mehr Heel Heat als eine Kernschmelze anno 2008/2009 (mit überragender Fehde zwischen ihm und Shawn Michaels) war einfach Gold wert. Für mich etwas unverständlich, dass er dieses Gimmick wieder in den Wind geschossen hat. Mit Blick auf seine gesamte Karriere kann auch sein momentaner Verkauf unter Wert in der WWE nicht über seine Klasse hinwegtäuschen. Für mich einer der größten aller Zeiten und somit klare 10 Punkte - was sonst?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DanTalksRasslinwrote on 12.07.2015:[10.0] "Jericho was the total package - both a skilled wrestler who could work any style as well as a consummate showman.  A versatile personality as well - while he's best known for his bombastic rock star persona, his "serious heel" run in 2008 and crowd-trolling run in 2012 showed that he's more versatile than just that.  His runs in ECW and WCW were marked by many great matches and rivalries - his feud with Dean Malenko in WCW is one of my all-time favorites - and had one of WWE's most memorable debuts in 1999.  Went on to a great run as the company's first Undisputed Champion.  Fantastic talent with a great back catalog of work."
Rating: 10.0
Sentiment: 0.45416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Szene Nordwrote on 05.06.2015:[10.0] "Y2J ist für mich persönlich der kompletteste Wrestler aller Zeiten - das perfekte Gesamtpaket! Auch wenn er altersbedingt nicht mehr alles machen kann, ist er im Ring immer noch auf Mainevent-Level. Zusammen mit The Rock, CM Punk und Steve Austin einer der Promo-Götter im Business!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Zedwrote on 07.05.2015:[10.0] "Also wer diesem Mann keine 10 Punkte geben will, dem ist nicht mehr zu helfen.  Er war in der ECW eine kleine Sensation. Zwischen all den Funks, Sandmans und Ravens stoch dieser schmale Kanadier herraus, weshalb die WCW auf ihn aufmerksam wurde. Blöderweiße war in Atlanta niemandem bewusst was für einen ungeschliffenen Diamanten sie da haben. Nicht nur ein nahezu perfekter Heel in seinem Disput mit JJ Dillon, auch als Comedy Act brillierte er (1004 Holds) und er hatte den attraktivsten Manager aller Zeiten. Ralphus!  1999 Kam er mit einem Paukenschlag zur WWE, hatte Fehden mit den ganz großen und durfte sich nicht mal zwei Jahre nach seinem Debut als erster Undisputet WWE Champ nennen, außerdem ist er Rekord IC Titel halter.  Heute ist er mehrfacher World Champ, Musiker, Radio Host in Kanada.  Eine wahre Legende"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Michellewrote on 28.04.2015:[10.0] "Für mich einer der Talentiertesten und unterhaltsamsten Wrestler.  Außerdem trifft er mit seiner Band Fozzy genau meinen Musikgeschmack. :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Joel DXwrote on 26.04.2015:[10.0] "Y2J! Für mich einer der betsen Heels aller Zeiten. Sehr guter Mic-Worker und technisch Top. Habe mir "Road is Jericho" vor kurzen angeguckt und kann es an alle Jericho Fans nur weiterempfelen.  Schade dass er nicht mehr so regelmäßig zu sehen ist."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Arctikwrote on 28.03.2015:[10.0] "Einer der komplettesten Wrestler, die je in der WWE unter Vertrag standen.  Gimmick perfekt, Charisma perfekt und technisch natürlich ebenfalls einer der Stärksten! Volle 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: pfuschiwrote on 07.03.2015:[8.0] "Jericho never was one of my faves, good in everything but to me never great.  he ranked himself behind Hogan, Rock and Austin in popularity and behind Bret and Shawn as a worker.  I will agree with him on that."
Rating: 8.0
Sentiment: -0.12500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: FratzenFressewrote on 17.01.2015:[6.0] "Finde ihn nicht so überragend, wie ihn hier alle machen... eigentlich finde ich seine Kämpfe sogar zumeist relativ langweilig! Von der Wertung her einer der besten Wrestler überhaupt, und das sehe ich einfach nicht so. Der Funke springt bei mir nicht über!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RooneyDXwrote on 04.01.2015:[10.0] "Ein Top mann. Er hat alles Charisma, Moves und den Look. In letzter Zeit war er nicht so gut, aber lag eigentlich an seinen Gegnern wie Bray Wyatt finde ich. In seinem alter braucht er Gegner wie Seth Rollins, das wäre ein spektakuläres match, aber Fakt ist, jedesmal wenn er kämpft weiß man das er die meisten PPVs verliert so wie die Fehden. Trotzdem bekommt Y2J 10 Punkte."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: FCOANwrote on 25.12.2014:[8.0] "Great wrestler, great promos and look. One of the best total packages ever with a great career, accomplishments and matches as well as many memorable segments."
Rating: 8.0
Sentiment: 0.6285714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ROHfan99wrote on 29.11.2014:[10.0] "Weniger als 10 Punkte darf es nicht geben, Er ist, mit Shawn Michals, der beste Wrestler der je bei der WWE unter Vertrag stand. Im Ring, als auch am Mic. Als Heel und Face war er jeweils GRANDIOS! Als heel feier ich ihn besonders, der bringt in einem Match seinen Charakter so gut rüber, man muss diesen Typ einfach feiern. Heute kommt er oft zurück, um Wrestler zu pushen, was ich absolut feiere. Y2J=Gott. :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Y2J316wrote on 28.11.2014:[10.0] "Einer meiner absoluten Favoriten. Legendäre Segmente mit Rocky und auch andere waren enfach göttlich. Mag seine Matches immer wieder gerne aber ich fande es besser als er noch die lange Hose trug. Egal defenetiv ein Hall of Fame Kandidat wenn es dann vorbei ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Muyo90wrote on 23.11.2014:[9.0] "Einer der besten Wrestler aller Zeiten, das steht außer Frage! Er kann einfach alles. Er ist eine Koryphäe im Promos abhalten. Reihenweise epische Matches abgehalten, u. a. gegen Shawn Michaels (WM19) Benoit oder Triple H.  Schade, dass er aktuell nur noch auf Teilzeit bei der WWE zu sehen ist."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ApexOfEvolutionwrote on 22.11.2014:[10.0] "Der Mann ist ein Genie. Absoluter Supertechniker im Ring und charismatisch wie zur Zeit nur Wenige in der WWE. Schön, dass die Liga ihm die Möglichkeit gibt, nur interimsweise zu arbeiten. Wenn er dann da ist, kann er großartig unterhalten und ist sich nicht zu schade, auch mal für aufstrebende Talente zu jobben. Soll ja auch privat ein sympathischer Typ sein und auch seine Musik mit Fozzy ist durchaus hörenswert. Daher sind nur 10 Punkte möglich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DaNiwrote on 29.10.2014:[10.0] "Chris Jericho zeichnet sich für mich als Wrestler vor allem aus, da er mögliche Alterserscheinungen mit Erfahrung ausgleicht. Trotz Pausen sehe ich noch immer wenig Ringrost an ihm.  Was er für die Wrestlingwelt erreicht hat braucht eigentlich keine weitere Erklärung. Der Unterhaltungs- und Wrestlingfaktor stimmt bei ihm einfach."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mantafahrerwrote on 17.10.2014:[10.0] ""RAW is Jericho" - wahre Worte, denn alleine schon ein kurzer Auftritt von Y2J ist es wert, den Fernseher einzuschalten. Klasse im Ring, brilliant am Mikrofon, als Face interessant und als Heel sowieso einfach untouchable. Das Einzige, was ich bei diesem Typen kritisieren kann, ist dass seine Ringleistungen langsam nachlassen (was mit 43 Jahren keine Überraschung darstellt) und dass sein Haarschnitt in seinen früheren WWE-Zeiten einfach nur peinlich war. Dies sind jedoch keine plausiblen Gründe, wieso man Jericho weniger als die Höchstpunktzahl geben sollte. So einen wie ihn gibt es nur einmal in 50 Jahren."
Rating: 10.0
Sentiment: 0.33461538461538465
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Matzinhowrote on 28.09.2014:[10.0] "Das ultimative Komplettpaket. Der Typ kann alles, hat den look, die mic skills, das Können im Ring und nebenbei noch unzählige witzige, kreative, innovative Ideen, die das komplette Produkt der Liga, für die er gerade angetreten ist, massiv eleviert haben. Jericho ist Unterhaltung in Reinform und zwar in allem was er macht. Dazu unzählige 5-Sterne-Matchklassiker - echte Matchklassiker, nicht den Scheiß den Dave Meltzer zusammenwertet."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: maazzywrote on 23.08.2014:[10.0] "Für mich der Beste aller Zeiten. Seit mehr als 15 Jahren genieße ich sein Micwork und sein Talent im Ring. Ich finde es beeindruckend, dass er, obwohl er alles erreicht hat, sein Ego hinten anstellt und sich für neue Leute hinlegt. Ohne an Glaubwürdigkeit zu verlieren..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Phenomenal91wrote on 21.08.2014:[10.0] "For everything this man has accomplished in the wrestling world, and the fame he's achieved outside of it, Jericho STILL deserves more credit than he's given. Everywhere he went, he put on command performances. His overwhelming popularity was proof that the people were ready for a hero who wasn't Hulk Hogan sized. Still, for many years, his rise to the top was a slow one, but when he got there, he put on the best matches of his life. This man is an absolute 10 in every category. The ONE time that I think Chris Jericho's not being himself is whenever he does a straightforward "serious" promo in grave, humorless tones. That's not the Chris Jericho people pay to see. They want to see him having fun being the bad guy. That way, we have fun watching him. It's admirable now that he comes and goes whenever he pleases, having already done so much for the WWE that he isn't needed on a full time basis (although it would be just fine with me if he still were! ) He selflessly puts over the younger talent,  giving them a boost in popularity and credibility by giving them the opportunity to face a living legend-one who's not as selfish and egotistical as his heel character suggests! Overall, a great wrestler, the kind of wrestler every young up and comer should aspire to be, and also a great guy. He truly is the best in the world at anything he does."
Rating: 10.0
Sentiment: 0.26874999999999993
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bolievewrote on 08.08.2014:[10.0] "Einer meiner absoluten Lieblingswrestler! Er hat einfach unglaubliches Charisma! Man hat ihm/kauft ihm alles ab, ob er nun einen Heel oder Face verkörpert ist dabei egal! Er ist ein Gott am Mic! Und er ist unfassbar gut im Ring! Klar er wird älter, dennoch hoffe ich noch auf einen letzten großen Run als Champion! Ich werde ihn immer unterstützen! Y2J<3"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: zackwoowoowooryderwrote on 28.07.2014:[10.0] "Egal ob als Heel oder Face, Jericho spielt es sehr überzeugend. Hoffe man steckt ihn nochmal in eine Titelfehde, in der er nochmal einen Titelgewinnen darf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WweFanwrote on 24.07.2014:[10.0] "Eine Legende die es so nicht oft gab, gibt oder geben wird. Es gibt nicht viele die rock und stone cold an einem Abend hintereinander besiegt haben. Er hat eine neue Art des wrestlings eingeführt.... Er ist einer der besten Techniker die es gibt..."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Titanwrote on 23.07.2014:[10.0] "Chris Jericho ist zweifelsohne einer der besten und solidesten Entertainer in den Reihen der WWE. Obwohl er schon über 40 ist, zeigt er den anderen Top-Stars der Liga wo der Frosch die Locken hat bzw. er zeigt Top-Leistungen. Technisch ist er einfach mit Abstand der beste und sein Mic-Work ist einfach nur göttlich und kann locker mit dem von The Rock mithalten. Als Heel ist er einfach unabdingbar und auf jeden Fall besser zu gebrauchen als in der Rolle des Faces. Zumal muss man ihm anrechnen, dass er den ein oder anderen Superstar over bringen möchte bzw das auch teilweise geschafft hat. Zurecht gibts hier die 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jsb12wrote on 20.07.2014:[10.0] "Put on some of the best matches I've ever seen in WWE. At a tune when the roster was completely stacked with all time greats he still stood out."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Triple Hwrote on 30.05.2014:[8.0] "Einer der besten Wrestler der letzten 15 Jahre. Besonders sein Debüt bei WWE damals als er The Rock unterbrach blieb mir lange im Gedächtnis. Noch besser war der Satz von Rocky "It doesnŽt matter what your Name is" Im Ring technisch einer der besten, alleine seine Titelregentschaften sagen alles über Jericho aus. Leider muss man aber auch sagen, das seine Ringskills stark nach gelassen haben seit 2010. Seit er mit seiner Band öfters auf Tour ist und so zu sagen als "Zeitarbeiter" bei der WWE sein Geld verdient gibt er im Ring nicht mehr soviel Gas wie früher. Der Mann geht schlieslich auch schon auf die Mitte 40 zu und ich hoffe das wir Ihn noch eine Weile im Ring zu Gesicht bekommen. Trotzdem bleibt zu sagen, das sein Stern langsam zu sinken beginnt. Keine Wrestling Karriere währt für ewig. Einen Platz in der Hall of Fame ist im aber sowieso schon gewiss. Am Mic ist er eh einer der unterhaltsamsten Entertainer der letzten Jahre."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: wwefan98wrote on 11.05.2014:[8.0] "Am Mic ist er super im Ring auch aber nur bis 2010 danach war es wirklich schlecht. Immer war er mir seiner Band auf Tour ud die kurze Zeit in der er mal da war war echt schlecht. Also nur 8 punkte."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Viper99wrote on 04.04.2014:[10.0] "Ein genialer Wrestler, Entertainer und Schauspieler. Er kann einfach alles. Er zeigt trotz seines Alters super Matches, hält meiner Meinung nach die besten Heel segmente aller zeiten und seine Internet Serie ist auch genial! Würde mir wünschen das er bald wieder zurückkehrt und evt. gegen Danilson Fehdet. Er ist der beste aller zeiten neben HBK"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Foleysbabytoywrote on 05.03.2014:[10.0] "Top im Ring. Top am Mikrofon. Seine Präsentation war nicht immer perfekt, doch meistens gut. Seit 2008 hat er es dann geschafft, dauerhaft zu überzeugen. Schade, dass man ihn nicht mehr so oft sieht. Jericho war ein Garant für Sport und Unterhaltung."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HongKongPhooeywrote on 22.02.2014:[10.0] "Maybe the best to ever do it. Jericho oozes so much charisma he can make the people go crazy with his promos or even by not saying a word. In the front of the line in terms of wrestling ability. One of the best ever."
Rating: 10.0
Sentiment: 0.27999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: eldenaaaaawrote on 16.02.2014:[10.0] "Jericho has always been one of my favorite wrestlers of all time a great heel and in ring performer"
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HereComesThePainwrote on 04.02.2014:[6.0] "In der Attitude Ära Top, nunmehr flop. Lächerlicher Wrestler mit langweiligem Gimmick.  Mittlerweile für mich so uninteressant, dass ich ihn beinhart überspringen würde wenn er ein singles Match bestreitet. Zudem: Vielen Wrestlern wird nachgesagt, dass sie die WWE verlassen haben und wieder zurückkamen und so weiter.... Y2J hat das wohl schon 7867 mal gemacht und das ist so unnötig und nervig wie sonstwas. Man kann daher mit ihm keine Fehden aufbauen etc....."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The8someCwrote on 29.01.2014:[10.0] "Er ist einfach der Beste Wrestler seitdem Shawn Micheals seine Karriere beendet hat. Er hat einfach alles Charisma Mic skills und ist im Ring großartig."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: J0KERwrote on 23.01.2014:[10.0] "Chris Jericho der erste und wahre Undisputed Champion! Er weiss am Mikrofon zu überzeugen und selbst bei seinem Debut konnte er uns unterhalten mit dem Mikrofon und tut das auch bis heute. Im Ring ist er eines der besten In Ring Worker die es jemals gegeben hat technisches Wrestling vom aller feinsten! Ebenfalls hat er eine Ausstrahlung wie sonst keiner sprich eine Charisma Bombe. Ebenso ist er Rekordhalter des IC Titles und konnte verschiedene Titeln tragen sein World Title Reign (2008) war meiner Meinung das Beste. Hat krasse Promos sowie Fehden abgeliefert. (zbs. vs. HBK, Punk, Edge... ) Seit 2012 setzt er sich ebenfalls für die neuen Talente ein was ich auch sehr gut finde. Er kommt nicht zum Wrestling um Geld zu verdienen sondern eher Talente zu pushen und geile Shows abzuliefern hat man in 2013 richtig gemerkt das er mit Herz und Seele mit dabei ist. 10 Punkte gerechtfertigt! Neben seiner Karriere hat er auch zahlreiche Dinge erreicht. Respekt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: VersionOnewrote on 20.01.2014:[10.0] "mMn einer der besten Wrestler aller Zeiten. Sowohl In-Ring als auch Mic-Künste sind fast unschlagbar. Eigentlich keine Frage, dass er eine 10 bekommt, auch wenn er nie der größte Star der WWE war (aber seit wann sagt das was über die Qualität des Workers aus)"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: yanuswrote on 08.01.2014:[10.0] "One of the all-round bets talents in the business. Great mic, charisma and very good in-ring skills. Probably was never a big draw in the business, but always entertained me."
Rating: 10.0
Sentiment: 0.57
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 8BitLegendwrote on 24.12.2013:[7.0] "Kann im Ring alles und hatte zahlreiche gute Storylines. Aber für eine absolute Top-Wertung fehlte es ihm in seiner Karriere doch etwas an Star-Appeal. Erst jetzt, gegen Ende seiner Laufbahn hin, kommt die laute Crowd-Reaktion und die Wahrnehmung seiner Person als einer der größeren Stars. Im Schatten von Austin, HHH, HBK oder dem Undertaker ist ihm das selten gelungen."
Rating: 7.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JourneybyTrainwrote on 22.12.2013:[6.0] "Chris Jericho is pretty good in the ring but nothing to special. He's very good on the mic though I think only some of his promos from 2008-2009, his career run, really live up to the hype. Still a solid allrounder."
Rating: 6.0
Sentiment: 0.3362152133580705
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LordOfLimitwrote on 11.12.2013:[10.0] "Einer meiner absoluten Lieblingswrestler. Mic 10, Charisma 10 und In-Ring Skills 10. Gutes Face und guter Heel, doch als Heel IMO besser."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: tgwrote on 26.11.2013:[10.0] "Ein Jericho ist genau das, was dem Wrestling im Moment fehlt. Sehr gut schon zu ECW-Zeiten als noch relativ gesichtloses Face, stark mit dem WCW-Heelturn, großartig bei seinem erinnerungsträchtigen WWE-Debüt und überragend bei seiner WWE-Rückkehr vor fünf Jahren als sich neu erfunden habender Heel."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Undertalkerwrote on 14.11.2013:[10.0] "Jericho ist ein begnadeter Entertainer, den ich schon damals zu WCW-Zeiten sehr unterhaltsam fand. Dort ist er aber leider untengehalten worden und konnte sein Potenzial noch nicht richtig entfalten. Als er dann bei Raw auftauchte, blühte er mit seiner originellen und witzigen Art so richtig auf. Auch seine In-Ring-Skills sind überdurchschnittlich. Das wäre mir aber immer noch keine 10 Punkte wert. Er zählte erst zu meinen Lieblingswrestlern, als er diesen krassen Charakterwandel vollzog, zu einem puristischen Heel turnte und es mit seinen ruhigen, langsamen und intelligenten Promos schaffte, die Fans zu irritieren und gegen sich aufzubringen. Er sagte einmal so etwas in der Art, dass er die Madonna des Wrestlings sein will und somit nie gleich erscheinen, nie am Vergangenen klebenbleiben und sich daher immer weiterentwickeln will. Das ist nicht nur eine wichtige Eigenschaft im echten Leben, sondern auch im Wrestlingbusiness. Viele Worker können das nicht. Er ist einer, der es kann, und dafür bewundere ich ihn!"
Rating: 10.0
Sentiment: -0.2884615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Silaswrote on 13.11.2013:[10.0] "Einer absoluten Lieblinge seit dem ich Wrestling gucke. Unglaubliches charisma, extreme stark am Mikro und im Ring. Besonders als Heel unglaublich gut. Y2J gehört in die Hall of Fame,  ohne wenn und aber."
Rating: 10.0
Sentiment: -0.1625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: svenulreich1893wrote on 28.10.2013:[9.0] "Y2J. Überragend am Mic, überragend im Ring. Sowohl als Heel wie auch als Face glaubwürdig. Und im Gegensatz zu The Rock ist er auch als Teilzeitwrestler oft im Ring und legt sich freiwillig für die jungen Wrestler hin. Und nebenbei, auch wenn das kein Kriterium für die Bewertung ist: ein ganz guter Sänger. Lebende Legende, einer der ganz Großen, auch wenn öfters unterschätzt. 9 POINTS"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: voicelesswrote on 19.10.2013:[10.0] "Jericho vereint sehr gutes Wrestling mit sehr gutem Micwork - alles andere als eine 10 kommt für mich nicht in Frage.  Ich rechne es ihm auch hoch an, dass er sich für Ziggler, Punk und Co. hingelegt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lilly Jerichowrote on 15.10.2013:[10.0] "Chris Jericho ist definitiv einer der besten Wrestler, dieser und vergangener Zeiten! Auch wenn es mir im Herzen wehtut, aber ich finde es trotzdem klasse, dass er sich für junge Talente hinlegt um diese nach oben zu bringen! Ich persönlich würde mich einfach nichts mehr wünschen, als ihn wieder mit einem Titel rumlaufen zu sehen, wenn er wieder kommt und sei es nur (s)ein Intercontinental Titel! Einmal hatte ich bisher sogar die Möglichkeit, Y2J persönlich in München zu treffen und ich muss sagen, der Mann ist wirklich hammer sympathisch und nett und so weiter! Der kam schon zu uns VIP's vom Konzert und hat mich direkt in den Arm genommen, echt voll knuffig! Aber jetzt mal zurück zum Wrestling: Ich finde zwar logischweise, dass diese guten, alten Zeiten natürlich besser waren, aber genauso muss ich sagen, dass er es heute auch noch ordentlich drauf hat und mit mir wohl einen Fan auf Lebenszeit gewonnen hat! Ich kann hier nicht anders: 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: koeddylaemmlewrote on 18.09.2013:[9.0] "Never the "guy" but always dependable in so many different levels of his career. Chris Jericho has provided wrestling fans with so many memorable moments that he will live on forever, whether it be 5 star matches or promos."
Rating: 9.0
Sentiment: 0.32727272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "Im Ring klasse, am Mic klasse, 10 Punkte. So einfach gehts ."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: UnforgivenSicknesswrote on 23.08.2013:[10.0] "Er ist ein guter Wrestler, ultra charismatisch und ist gut in Interviews. Dazu ist seine Musik einfach nur krass."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HighlightHEELwrote on 20.08.2013:[10.0] "Mein All-Time-Fave Nr. 2. Grandioser Wrestler, der über all die Jahre kaum nachgelassen hat. Ist sich nie zu schade, andere Worker over zu bringen, hätte m. M. n. selbst aber noch viel mehr Gold und Anerkennung verdient, als er sie ohnehin hat. Am Mikrofon mein absoluter Gott der Wrestling-Welt - es gibt nicht viele, die ich mit ihm einigermaßen auf Augenhöhe sehe. Teil einiger der besten Fehden aller Zeiten, allen voran seine Auseinandersetzung mit Shawn Michaels 2008 (hier auch einer der besten Heelturns aller Zeiten). Als Heel meist noch ein bisschen besser als als Face. In den letzten Jahren dank seiner *** Band leider seltener zu sehen und nicht mehr in den Regionen der Card, wo ich ihn gerne sehen würde. Ich hoffe auf einen letzten großen Run."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Palace of Wisdomwrote on 14.08.2013:[10.0] "Alles andere als eine 10 wäre hier ein Witz. Einer der besten Techniker aller Zeiten, eine Charismabombe, grenzgenialer Micworker und einer der wenigen Worker die Heel und Face mehr als überzeugend darstellen. Chris Jericho ist einer der größten Wrestler aller Zeiten und in meinen Augen ein Wrestlinggott."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: benebecwrote on 10.08.2013:[10.0] "Chris Jericho ist einer der wenigen, die wirklich alles erreicht haben. In jedem Land in dem er aufgetreten ist konnte er überzeugen und unteranderem in Deutschland und Mexiko. Auch seine gesamte WWE-Karriere war grandios. Das er jetzt wieder da ist, um jüngere Wrestler over zu bringen finde ich vollkommen in Ordnung und es macht ihn nur noch sympathischer. Außerdem ist Jericho einer der besten am Mic in der gesamten WWE-Historie. Jedem Y2J-Fan kann ich nur seine beiden Bücher empfehlen, die wirklich grandios sind."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Cactus Foley 88wrote on 05.08.2013:[8.0] "Chris Jericho war schon in der WCW einer meiner absoluten Lieblinge. Seine Fehden gegen Dean Malenko und Rey Mysterio aus jener Zeit sind unvergessen. Sein WWE Debut war grandios indem er The Rock bei einer Promo unterbrechen durfte. Ein echter Allround-Wrestler der jeden Stil mit gehen kann. Mic-Skills immer sehr unterhaltsam. Die Tatsache das er der 1# WWE Undisputed Champion wurde macht ihn bis heute unsterblich. Meine lieblings Zeit von Y2J war definitiv 1996-2005."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Valancewrote on 31.07.2013:[8.0] "Chris Jericho is a execellent wrestler. And he is vey charismatic. Thank you Chris!"
Rating: 8.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Weskerwrote on 22.07.2013:[8.0] "Damals habe ich Jericho sehr gemocht. Sein Gimmick war einfach klasse, die Moves waren toll und am Mikrofon ist er ein wahrer Profi. Mittlerweile finde ich ihn mit Kurzhaarfrisur und Höschen nicht mehr so symapthisch und auch sein allgemeines Auftreten ist nicht mehr so "fresh" wie vorher. Die Moves langweilen auch mittlerweile, obwohl er nun den Codebreaker miteingebaut hat. Das war es aber auch schon. Schade. Damals hätte ich ihm eine 10 gegeben. Nun bekommt er eine 8. Btw: Er hat sich bei der Ultimate Warrior-Doku über den Warrior lustig gemacht... und das auf eine sehr arrogante Art und Weise. Pfui!"
Rating: 8.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Hirnklopswrote on 18.07.2013:[4.0] "Ich konnte den Hype um den Mann nie wirklich nachvollziehen... Hat mir in der WCW noch ganz gut gefallen, zu seiner "Steph is a bitch"-Phase auch, aber... Danach... Na ja. Finde ihn mittlerweile als Charakter nur noch langweilig, im Ring sicherlich absolut sauber, aber auch nicht mehr so toll wie damals. Ist so'n "Schema F"-Wrestler geworden irgendwie. Dazu kommt, dass seine Frisuren über die Jahre wesentlich schlechter geworden sind."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Metalmaniac87wrote on 18.07.2013:[7.0] "Ein talentierter Wrestler , ohne Zweifel aber er verspielt viel sich da er andauernd Auszeiten nimmt um mit seiner Band auf Tournee zugehen. Klar man freut sich immer wenn er wieder da ist aber kotzt man ab weil er wieder mal Weg ist. Ein richtiger Run ist deshalb gar nicht mehr drin und das nervt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sir Vida Loca IIIwrote on 09.07.2013:[10.0] "Jericho ist im Ring einer der besten aller Zeiten. Jericho ist am Mic einer der besten aller Zeiten. Bei der WWE viele jahre unten gehalten, aber trotzdem das Beste draus gemacht. Er hatte über die Jahre immer wieder packende Storylines (zuletzt gegen CM Punk oder davor besonders gegen HBK um nur zwei zu nennen). Und obwohl er sicher ein zukünftiger Hall of Famer ist, der mehr verlangen könnte, legt er sich gerne für neue Superstars hin um diese Over zu bekommen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dumbadswrote on 09.07.2013:[8.0] "Ungalaublich gute Mic Skills. Sehr guter technicker. Gibt immer alles und lässt auch schwächere Gegner gut aussehen. Das einzige was mich zu früher stört sind die kurzen Haare.  Jericho braucht wieder lange und dann gibts auch die 10 Punkte :)"
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rockcitizenwrote on 03.07.2013:[10.0] "Am Mic meine Nr. 1, im Ring gibt's nicht viele, die besser sind, wenn dann nur Nuancen. Legendäre Matches, top-unterhaltsame Promos und Mic-Auftritte. Würde mir wünschen, dass er nochmal zu Titelehren kommt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RawIsJerichowrote on 25.06.2013:[10.0] "Chris has always been one of my favorite wrestlers. He has such a large and varied moveset, and his execution is almost always perfect. His work as a heel is the WWF/WWE, and especially in the WCW, was great and very humorous. The number of 5 start and other highly rated matches throughout his career speaks for itself, he can put on great matches with most anyone in the ring. I think he's deserving of one more WWE or Heavyweight championship run, the man will deliver."
Rating: 10.0
Sentiment: 0.4307142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lecterwrote on 06.06.2013:[8.0] "Jericho is good at everything. He is not, however, fantastic at everything. Like him a lot, but he's definitely not in the running for Greatest of All Time."
Rating: 8.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Enuffwrote on 21.05.2013:[10.0] "Einer der besten! Mit Leuten wie Punk, Michaels etc. ist er einer der besten Gesamtpakete überhaupt! Bei ihm stimmt einfach alles. Über die Jahre hat er einfach tolle Segmente, Matche etc. gehabt und deswegen kriegt er auch die volle Punktzahl. Aktuell bringt er zwar nur junge Leute over, aber auch das ist ein Grund warum er großartig ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CrIppIL3RTIRiXwrote on 15.05.2013:[10.0] "Save US Jericho. Er ist der Man der fast aus jeden ein **** Match zaubert. Unglaubliches Charisma, Mic Work und InRing skills. Seine Matches gegen Michaels einfach unglaublich...  Einfach Jericho."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheIbarwrote on 03.05.2013:[10.0] "When it comes down to the greatest heels in professional wrestling history, Chris Jericho comes up in my mind automatically. He is so great on microphone. It's like he was born with a microphone in his hands. Jericho is superb in the ring. Y2J is such a talented wrestler, he is truly "the best in the world at what he does". And he proves that in every spectacular match. Besides his awesome promos, he is the lead singer in a great band "Fozzy". That's really hard to combine good music and being one of the best wrestlers in the whole world."
Rating: 10.0
Sentiment: 0.547048611111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: believeintheshieldwrote on 02.05.2013:[9.0] "Ich finde er bringt viele Talente mit in den Ring, hat allerdings in letzter Zeit nachgelassen, daher auch einen Punkt abzug. Mir Persönlich hat er als Heel besser gefallen, als als Babyface."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rated rko1wrote on 27.04.2013:[10.0] "einer der besten ever und auch einer meiner absoluten lieblingswrestler er hat die 10 absolut verdient"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "One of the best wrestlers to ever lace up a pair of boots. Has been consistently entertaining throughout his career on a national stage. An excellent heel, an excellent mic worker, and amazing in the ring. Always a highlight of every show he's on."
Rating: 10.0
Sentiment: 0.82
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Eagle Whiskeywrote on 08.03.2013:[5.0] "Natürlich ist Jericho ein super Wrestler, aber ich finde alle seine Gimmicks und sein Auftreten außerhalb des Rings einfach nur langweilig und nervig. Er hat sich über all die Jahre nie ein cooles und souveränes Image aufgebaut wie z. B. ein Shawn Michaels. Ich finde Jericho war immer einfach nur zum wegschalten. Den Höhepunkt der langweiligkeit erreichte er zusammen mit Big Shwo als JeriShow. Aber wie gesagt ein super Wrestler der jeden Gegner gut aussehen lassen kann. 5 Punkte von mir."
Rating: 5.0
Sentiment: 0.2222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Clubbiwrote on 23.02.2013:[10.0] "Für mich einer der Besten Wrestler all Time... Ich weiß noch damals sein Milleniums Countdown war der Hammer.  Was er mir alles für Spaß bereitet hat die letzten Jahre...  Leider hat er für mich den Zeitpunkt verpasst aufzuhören. Naja trozdem Es ist immernoch schön ihn zu sehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Gomphwrote on 14.02.2013:[10.0] "Der Mann kann es einfach alles. Ob im Ring oder am Mic. Hat einfach nen unfassbares Charisma, man hört ihm immer gerne zu, sieht ihn immer gerne im Ring. Definitiv einer der Besten überhaupt. Alles andere als 10 Punkte wäre eine Schande ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Diggertakerwrote on 13.02.2013:[10.0] "Excelent technician, impactful career, great gimmick. A perfect wrestler, with awesome ring and mic skill."
Rating: 10.0
Sentiment: 0.9333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JuliTheCage87wrote on 13.02.2013:[10.0] "Fantastischer Techniker und HighFlyer und mein absoluter Favorit bei den Wrestlern aus den 2 vergangenen Dekaden. Seine imposante und unverkennbare Stimme, die die geilsten Catchphrases hervorgebracht hat, hat ihm schließlich auch seine Gesangskarriere rund um Fozzy gebracht. Ich wünsche mir einen finalen WWE- und einen damit verbundenen WWE-Title-Run."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Chris Irvine zählt definitiv zu den besten, die es jemals gegeben hat. Früher war er ein fester und auch wichtiger Bestandteil der Attitude-Ära und Mitte des 21. Jahrhunderts überzeugte immer mit hervorragender In-Ring Physik und göttlichen Promos. Auch heute hat Jericho nichts von einem Talent verlernt und er ist immer eine wertvolle Bereicherung für die WWE. Ein unfassbar charismatischer Entertainer, der sein Handwerk perfekt beherrscht. Er zählt definitiv zu meiner All-Time Top 10 und die Hall of Fame Aufnahme ist sicher"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GTS Punkwrote on 30.01.2013:[10.0] "Y2J grossartige Fähigkeiten sowohl im Ring, als auch am Mic, was er ja mittlerweile schon seit 1995 zeigt. Sein Comeback hat mich zumindest total überrascht, er weiß einfach wie man die Fans schockt.. Come on Babeee! 10 Punkte, weniger ist fehl am Platz!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Leonewrote on 26.01.2013:[10.0] "To this day, very few wrestlers can match Chris Jericho in terms of quality.  He's fantastic on the mic as both a heel and a face.  His classic rock star persona appeals to quite a wide audience.  He's very funny when he needs to be, and serious when he needs to be.  But the man isn't all talk.  He isn't all show and performance.  As a student in Stu Hart's Dungeon, the man is also an incredibly good wrestler, combining various wrestling styles from his experiences in Canada, the U. S. , Mexico and Japan.  As he was (and is) a smaller wrestler, he (along with others) helped to literally break down the wall that created rigid wrestling divisions based on a wrestler's size.  Now in his 40s, he's still able to work better than a lot of younger talent, and unlike a number of wrestlers, he's able to walk away and do other things.  A true legend in professional wrestling."
Rating: 10.0
Sentiment: 0.15104575163398692
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: swantom98wrote on 08.12.2012:[3.0] "3 Punkte allein für das Mic-Work.  Bei Segmenten und Promos ist er teilweise noch unterhaltsam, aber wie gesagt nur teilweise.  Im Ring kann ich ihn mir persönlich nicht mehr angucken."
Rating: 3.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: EnemyOfJusticewrote on 31.08.2012:[10.0] "Den Jericho, den ich seit 2008 kenne... stark, sehr stark; Einer der besten Tag Team Wrestler den die WWe jemals hatte(JeriShow war das Beste, was die WWE in der Tagdivision hat[te]).... als Einzelwrestler auf jeden Fall erhaben und zu guten Matches in der Lage... nur finde ich sein Micwork nicht so stark wie manche behaupten, klar ist er sehr gut darin, aber so gut wie CM Punk würde ich ihn ZB nicht einschätzen. Ich schätze auch seine Arbeitsmoral, dank ihm wurden schon einige Wrestler vorübergehend zu Stars, kein arroganter Star; Hoffe dass Y2J wiederkommt, einer wie er fehlt der WWE momentan. Overrated im Moment"
Rating: 10.0
Sentiment: -0.20000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LM Punkwrote on 30.08.2012:[10.0] "Als er jetzt anfing wieder gut in Form zu kommen, ist er schon wieder weg. Trotzdem bleibt er einer meiner Lieblingswrestler der letzten 15 Jahre. Viele gute Matches, und mit die besten Promos seit der Attetude-Ära."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: FabianSwrote on 27.08.2012:[8.0] "Garantiertes "HALL OF FAME" Mitglied dessen Finisher die "WALLS OF JERICHO" finde ich nicht so gut weil es nur eine Boston crab Variation ist also 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The lonesome death of Hattie Carrollwrote on 23.08.2012:[10.0] "Wieder einmal verlätt Jericho die WWE, um mit Fozzy zu touren. Seine Rückkehr wurde als groß angekündigt, und ich finde, er konnte halten, was er versprach. Eben auf eine Art und Weise, wie es den meißten "Fans" nicht geschmeckt hat, dennoch bot er eine großartige Show. Das hat man in seinen beiden vorerst letzten Matches bemerkt, in dem er Dolph Ziggler schon als besseren In-Ring-Performer hat darstellen können.  Ich freue mich nun auf das nue Fozzy-Album. Bis zur Wiederkehr, Y2J!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: S04TIMwrote on 21.08.2012:[10.0] "Chris Jericho ist einfach nur Wahnsinn. Am Mic wie auch im Ring einfach sehr gut. Verdiente 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Undertaker555wrote on 20.08.2012:[9.0] "Für mich einer der besten in diesem Buisness. Er hat viel für das Wrestling getan und ist nicht nur im Ring sehr gut. Er beherrscht ein klasse Moveset und am Mic ist er ein Gott! Würde mir wünschen das er wenigstens noch einen großen Titel bekommt und dann so langsam abtritt. Mich hat er immer gut unterhalten und hoffe er bleibt uns noch das ein oder andere Jahr erhalten. Y2J"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Hankinswrote on 12.08.2012:[9.0] "Sein Charisma war stets sein größtes Talent. Seine In-Ring-Leistungen fand ich zum Teil sehr schwankend. Er hat regelmäßig seinen Stil verändert, um den Fans etwas Neues zu bieten. Seine beiden letzten Comebacks floppten in meinen Augen total. Trotzdem jemand, der die Leute immer und zu jeder Zeit unterhalten kann."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: goofy1991wrote on 30.07.2012:[9.0] "Sicher einer der besten Worker überhaupt. Sowohl stark am Mic als auch im Ring. Er spielt seine Heelrollen gekonnt (in der Fehde gegen HBK konnte man ihn wirklich nur hassen). Leider kann er mich seit seinem Comeback 2012 nicht wirklich vom Hocker reissen."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Chris Silverwrote on 25.07.2012:[10.0] "Der beste Heel aller Zeiten! Am Mic und im Ring ist er einer der besten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: UndertakerChriswrote on 19.07.2012:[10.0] "Ohne viele Worte zu verschwenden, Jericho ist der Beste! Dies ist keine simple Ansicht, sondern Tatsache! Niemand unterhält mich so sehr wie er es tut, egal in welcher Rolle er sich gerade gibt. Schade, dass seine Auftritte nicht mehr so zahlreich sind, jedoch ist dies verständlich. Außerdem leistet er mit Fozzy eine geniale Arbeit! Hammer Musiker, unglaublicher Entertainer und Wrestler, was will man mehr? 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Franziwrote on 03.07.2012:[10.0] "The best at everything he does! Trifft wirklich zu. Als Face grandios, als Heel perfekt und dazu noch in-ring Skills vom Feinsten."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LeBelle1wrote on 21.06.2012:[10.0] "Einer der besten Micworker im Mainstream überhaupt. Ich glaube über ihn braucht man nicht mehr viel sagen. Einfach nur großartig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Ibanezwrote on 11.06.2012:[7.0] "immer noch sehr gut am mic und im ring, könnte aber, trotz aller kreativlosigkeit der WWE, sicherlich noch mehr leisten!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Schusterwrote on 03.06.2012:[10.0] "Einer der besten Performer der Geschichte der sich trotz seiner Größe zu einem der größten Stars gemacht hat. Das total Package und absolutes Vorbild"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sascha311wrote on 02.06.2012:[10.0] "Ich finde ihn einfach Unglaublich seine Matches sind immer sehr gut und sein Gimmick kommt meist sehr überzeugend rüber für mich ist er klar einer vielleicht sogar der bester Wrestler aller Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alex Riley 4 wwe championwrote on 25.05.2012:[10.0] "Er spielt die Rolle als Feigling und selbstverliebten Egozentriker wirklich gut. Er hat wirklich was drauf und kann im Ring/ am Mic wirklich viel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: themuhwrote on 25.05.2012:[10.0] "Being underrated and underutilized again. His 1. 2. 12 return is still one of the highlights of the year in wrestling so far. What he did in Brazil was under his own actions, but because he had the courage to do so, which is why he's the best in the world."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Nouriwrote on 25.05.2012:[10.0] ""The best in the world at what he does" Vielleicht nicht "The best", aber defintiv einer der Besten aller Zeiten. Herausragend am Mikrofon, grandiose Technik und singen kann er auch noch."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Remixxismwrote on 20.05.2012:[9.0] "Einer der größten in der WWE. Er hat einen super Ring-In Stil. Nur in letzter Zeit etwas uninteressant geworden durch die ganze Story mit Punk, dem ganzen "Best in the World" gerede und durch seinen gleich bleibenden Auftritt. Er kommt rein, redet irgendwas (wobei ich aber auch sagen muss, das er am Mic sehr gut ist), attackiert den, der im Ring steht und geht wieder."
Rating: 9.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Undertaker95wrote on 14.05.2012:[8.0] "Einer der größten der WWE Geschichte aber zurzeit finde ich kein drang an ihn , vor 3 Jahren war er für mich noch viel Interessanter"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rated R means Attitudewrote on 12.05.2012:[10.0] "Nicht nur im Ring und am Mic unglaublich gut, nein er ist auch einer der wenigen, die sowohl als Heel als auch als Face absolut unterhaltsam sind. Ich sehe ihn unglaublich gerne, zumal er einen Gegner eben auch sehr gut durch ein Match ziehen kann. Dadurch kann er eben auch jüngere Wrestler pushen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Prodirwrote on 15.04.2012:[10.0] "Chris Jericho: zu gut um als Legende zu gelten. Ich kann mir bei ihm zwar nicht vorstellen, dass man von ihm als Legende oder Ikone spricht, aber nichtsdestotrotz ist dieser Mann für mich göttlich. Unterhält den zuschauer nicht nur am Mikro, sondern auch innerhalb des Seilgevierts, und das nicht nur durch Technik. Mimik und Gestik sind dabei optimal. Ein Worker, der die ultimativen Manöver auf Lager hat, was Impact, Authentizität undReal-Fight-Komponente angeht, der mit seiner Körpergröße und damit verbunden seine scheinhafte Unbeholfenheit, die jedoch nur subtil wahrgenommen wird, einen Underdog-Vorteil ziehen kann und somit als Schlitzohr gilt, dessen schauspielerischen Fähigkeiten nahezu apokalyptisch sind, dass man meinen könnte, dass Chris Jericho der Messias des 21. Jahrhunderts ist. PS: Die Story mit CM Punk hätte ruhig beim "Best in the World blabla" bleiben sollen."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BMwrote on 14.03.2012:[10.0] "Für mich ist Jericho einfach der Bester Mann der alten Garde... Bringt einfach alles mit..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: bentexwrote on 26.02.2012:[10.0] "Bester lebender Worker. Teilt sich meiner Meinung nach den Platz der besten Wrestlern aller zeiten mit Eddie Guerrero und Chris Benoit. 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Marlowewrote on 19.02.2012:[9.0] "einer der besten Wrestler und Mic-Worker aller Zeiten. Trotzdem gebe ich nur 9 Punkte, weil diese ganzen Pausen und dann die Geschichte mit seiner Band. Entweder Karriere beenden oder Vollzeitwrestler sein, dieses Comebacks nerven ein wenig."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Awesome Arieswrote on 11.02.2012:[10.0] "Ich kann nicht anders als hier die volle Punktzahl zu geben, weil Jericho im Ring und am Mic einfach der greatest of all time ist."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TeXorwrote on 02.02.2012:[10.0] "Einfach der Beste Wrestler bzw. Talker im Buisness."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Fighter Daronwrote on 02.02.2012:[8.0] "The absolutely god of the IWC, overrated to the moon."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: FallenHero90wrote on 20.01.2012:[10.0] "Für mich ist Chris Jericho einer der Gründe warum ich zum Wrestling gekommen bin. Er hat einfach eine unvergleichbare Ausstrahlung und ist auch sehr gut im Ring. Sein Match mit Shawn Michaels gehört zu den besten, die ich je gesehen habe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Y2Mikewrote on 03.01.2012:[10.0] "Alles andere als 10 Punkte wären bei Jericho unangebracht. Das RAW bei seinem Comeback 2007 war das erste, welches ich (zufällig) nach langer Zeit verfolgt habe. Seitdem konsumiere ich dieses Produkt regelmäßig. Das Schicksal dürfte es so gewollt haben und Jericho war derjenige der mich daran gebunden hat. Seine WCW-Zeit (als HEEL), sein WWE-Debüt (welches mir beim ansehen noch heute Gänsehaut erzeugt) und seine Fehden (HHH, Rock, Austin, Benoit und natürlich HBK) sind legendär. "Y2J", the "King Of The World", the "Lionheart", the "The Ayatollah of Rock'n'Rollah", the "best in the world at what he does" ist und bleibt für mich der Beste, den es in diesem Business gab/gibt/geben wird! Jerichoholic 4eeeeever"
Rating: 10.0
Sentiment: 0.3846153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Night-Angelwrote on 03.01.2012:[10.0] "Meines Erachtens ist Chris Jericho der beste Wrestler, den es gibt: Er ist nicht nur im Ring hervorragend, sondern versteht es immer wieder durch kreative Einfälle seine Storylines interessant und spannend zu machen. Er verkörpert jede Rolle annähernd perfekt und ist ein Meister am Mikrofon. Jeder, der in dieses Business will, tut gut daran, sich bei Jericho das eine oder andere abzuschauen. Ich hoffe, dass er dem Wrestling noch lange erhalten bleibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jake Westwrote on 03.01.2012:[10.0] "Er ist wirklich der beste der welt in dem was er tut, er ist ein herausragender mic-worker und wrestler"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Johnny-Tennerwrote on 10.12.2011:[10.0] "Dieser Wrestler ist für mich nicht austauschbar. Niemand hat ein besseres Mic-Work, niemand und ich meine niemand kann mich so unterhalten wie Chris Jericho. Im Ring sieht es ähnlich aus."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 7TheEwrote on 25.11.2011:[10.0] "Der Mann der überall war und alles gesehen hat.  Angefangen in Canada, dann Mexico, Japan, Deutschland, dass können heutige Wrestler selten bis gar nicht mehr von sich behaupten, so eine gute und umfangreiche Ausbildung genossen zu haben.  Der durchbruch spätestens in der WcW die geniale Malenko Fehde die gezeigt hat das er auch am Mike ein Gott ist, aber viel wichtiger in Ring und Charisma ist was den Mann am meisten auszeichnet.  Für mich der einzige legitime Shawn Micheals Nachfolger den es je gab, er ist das komplette Paket nur leider hat ihm irgendwo immer die gewisse Chance gefehlt.  Definitiv einer der von den Offiziellen am underatesten Superstars die das Business je hatte, war immer anpassungsfähig und funktioniert sowohl als Heel, als auch als Face."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Yoyowrote on 18.11.2011:[10.0] "Professionalism, talent, charisma, he's got it all! Can't wait until the Best in the World returns to the WWE."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mar-Twrote on 07.10.2011:[10.0] "Egal ob im Ring oder am Micro, egal ob Face oder Heel er weiss zu Unterhalten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheCMMizNexuswrote on 06.10.2011:[10.0] "Ob im Ring oder am Mic einfach The Best In The World In What He Does.  Hoffentlich kommt er bald wieder ..."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sirius Van Grathwrote on 02.10.2011:[10.0] "The Best in the World at what he does! Egal ob Heel oder Face: Er ist einfach der Beste! Im Ring, am Mikrofon und in seiner Band Fozzy ein wahres Talent!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MaikBaaderwrote on 18.09.2011:[9.0] "Guter Wrestler, der alles mitbringt um in einer amerikanischen Mainstreamliga erfolgreich zu sein. Funktioniert meiner Meinung nach aber definitiv nur als Heel."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rated R Punkwrote on 06.09.2011:[10.0] "Y2J ist Promomäßig echt der beste Heel (sogar über Edge finde ich) Seine Ring Skills sind ebenfalls sehr gut, Jericho war echt eine Bereicherung für SmackDown, seine Mimiken und seine vielen Sprüche werden mir echt fehlen, er hat am meisten den IC Titel gewonnen und war der erste Undisputed Champion aber er hätte aus meiner sicht noch vor seinen Abgang ruhig einen weiteren Run als WWE Champion haben können, ich hoffe er kommt irgendwann zurück."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rey2004wrote on 05.09.2011:[9.0] "Sehr guter Wrestler und Performer, schade dass er sich mehr seiner Musik widmete."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kitanoyamawrote on 04.09.2011:[10.0] "Der sympathischste unsympathische der WWE. Am Mic einfach nur hervorragend. Seine In-Ring Arbeit ist zwar nicht die allerbeste, aber dennoch sehr gut. Er ist eine ideale Mischung aus hervorrangender Wrestler, Comedian, Micworker und Musiker. Er überzeugt/e einfach in allem was er tut/tat. Also wenn er es nicht schafft jemanden zu überzeugen, dann weis ich auch nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CM Punk und Edgewrote on 26.08.2011:[10.0] "Einfach einer der besten. Mehr braucht man zu ihm nicht sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: swaswa96wrote on 22.08.2011:[6.0] "Als Heel ist er einfach perfekt, vorallem die Promos "I am the best in the world in what I do""
Rating: 6.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: balu1982wrote on 20.08.2011:[9.0] "Jericho ist einer komplettesten Wrestler die es gibt.  Allerdings hat er in seiner letzten WWE Zeit viel zu wenig aus seinen Fähigkeiten gemacht und gezeigt.  Daher reicht es nur zu 9 Punkten"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: StoneColdStunnerwrote on 03.08.2011:[10.0] "Mit Abstand einer der besten Wrestler die mir bekannt sind! Würde mich über nichts mehr freuen, als seine Rückkehr beim SummerSlam! Daumen Drücken..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: FriarFergusonwrote on 29.07.2011:[10.0] "Eine Null Punkte Wertung in gebrochenem Englisch, ohne klare Begründung und stichhaltigen Hintergrund ? Ist sowas nicht auch irgenwie, naja, falsch?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Auditorewrote on 28.07.2011:[10.0] "Was soll man zu ihm schon noch großartig sagen komplett in allen Belangen perfekt im Ring, göttlich am Mic und überzeugend als Champ. Eindeutige Indizien 10!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JohnOlafBlackwrote on 26.07.2011:[10.0] "Ein fantastischer Heel! Unterhaltsames Micwork und für WWE-Verhältnisse herausragende und abwechslungsreiche In-Ring Action."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 123 kidwrote on 21.07.2011:[9.0] "Am Mic und im Ring perfekt. Besonders seine Rollen als Heel sind ein guter Grund WWE Sendungen zu verfolgen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kyanwrote on 21.07.2011:[10.0] "Was soll man Großartig sagen?  Einer der Besten der welt Please come Back Y2J"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ChristianHwrote on 17.07.2011:[10.0] "Ganz einfach der beste Wrestler und Micworker der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Tamamwrote on 13.07.2011:[2.0] "Overrated wie kaum einer ! Große Fehden wurden meistens vom Gegenpart getragen (HBK, HHH). Am Mic spricht er mich auch nicht wirklich an. Allein im Ring kann ich mit ihm was anfangen. Da bei mir eher das Entertainment zählt ändert das aber trotzdem nichts an meiner Meinung. Viele beschweren sich warum er nie dauerhaft im Main Event ist. Dann fragt euch mal warum ..."
Rating: 2.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NHJ2102wrote on 11.07.2011:[8.0] "sehr guter Wrestler + guter Micworker ... hat in seiner Karriere exzellente Matches gezeigt ... gefiel mir früher nur etwas besser"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Play2Xwrote on 07.07.2011:[10.0] "Was bitte soll ich noch groß dazu sagen?  SAVE US, Y2J!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Italian Straight Edgewrote on 05.07.2011:[10.0] "IMO einer der besten Wrestler-Komplettpakete überhaupt. Technisch top, Charisma top, Mic Skills top, High-Flying, usw. Er sollte gegen den Undertaker bei irgendeiner WrestleMania antreten und davor am besten den World Heavyweight Championship-Titel gewinnen. Finally ... you saved the WWE, Jericho."
Rating: 10.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Donald Duckwrote on 23.06.2011:[10.0] "Er hat damals alles richtig gemacht, als er die WCW verließ um in die WWF zu gehen. Heute einer der größten die wir haben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Dennizwrote on 16.06.2011:[8.0] "ICh war nie ein wirklich Jericho Fan. Trotzdem ist Jericho einer der besten und bringt sowohl im als auch am Mikro immer super Leistung."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jack Londonwrote on 04.06.2011:[10.0] "Es gibt kaum einen Menschen im Wrestlingring, der mich mehr unterhält als Chris Jericho, er ist ein brillianter Wrestler und Entertainer, der sowohl als Comedy-Charakter und als ernster Heel funktioniert. Jericho beschreibt es in seinem Buch gut, dass er im Prinzip der letzte Mohikaner einer Generation von World Warriors in der WWE, die das Wrestling eben weltweit gelernt haben. Sein Stil ist mittlerweile einzigartig, vielleicht wäre er auch der ideale Aufbaugegner für Sin Cara, denn schließlich kann er auch den Lucha Stil mitgehen, seine Bücher sind großartig und er steht in einer Reihe mit den ganz großen des Business, ohne jedoch die selben Staralllüren wie Triple H oder Hulk Hogan zu zeigen. Verdiente Höchstpunktzahl nach Winnipeg."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Schiggywrote on 08.05.2011:[10.0] "Für mich einer der Wrestler, mit dem größten Gesamtpaket. Er ist in der Lage gute und hochklassige Matches zu worken. Mit dem richtigen Gegner kann Jericho aus jedem Match etwas ganz besonderes und einen Klassiker schaffen. Besonders in Japan hat er sehr gutes Wrestling gezeigt.  Dazu kommt, dass er am Mic zu mit den besten Überhaupt gehört. Als Face war er schon unterhaltsam und die Heelrolle ist wohl echt die Rolle seines Lebens. Da macht Jericho unendlich Spaß.  Sein Look wirkt sehr seriös und professionell, einer der die WWE sehr gut nach außen vertreten kann.  Außerdem muss man ihn sehr hoch anrechnen, dass er weiß wann es Zeit ist Pausen einzulegen oder sich erstmal zurück zu ziehen. Einer der das Business kennt und es liebt. Alle 10 für Chris Irvine!  Einziger Kritikpunkt geht an die WWE, dass man Chris Jericho viel zu schwach eingesetzt hat. Aus dem hätte viel mehr werden können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Opalawrote on 05.05.2011:[10.0] "Er ist mein Lieblingswrestler, das liegt daran, dass er schon einige gute Promos gebracht hat. Im ring war er immer super und er ist unglaublich Charismatisch. Die WWE brauch ihn. 10 Punkte"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Overlordwrote on 17.04.2011:[10.0] "Ich vergebe eigentlich keine 10 Punkte, aber wenn es einen Wrestler gibt der diese Wertung verdient, dann ist es Chris Jericho. Für mich einfach der kompletteste Wrestler was sowohl Wrestlingskills, Charisma und Entertainmentfaktor angeht. Ich kann seine Rückkehr kaum erwarten, da die Lücke, die er hinterlassen hat, doch sehr spürbar war. Außerdem ist Jericho eine Personalie, auf die die WWE immer zählen kann und der unglaublich konstant seine Leistung abrufen kann. Für mich persönlich der Beste Wrestler dieser Zeit, wenn nicht sogar aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Nerowrote on 17.04.2011:[10.0] "Für mich ist Chris Jericho einer der komplettesten Entertainer, den das Wrestling-Buisness je erlebt hat. Für mich steht er über Edge, über The Rock, über HBK und über Bret Hart. Nach den verkorksten SL's gegen Randy Orton und JBL hat man mit dem Heel-Turn und de verbundenen Fehde mit Shawn Michaels alles richtig gemacht und einen vollkommenen, genialen Charakter geschaffen, der ohne Zweifel in der Lage ist, die WWE zu leiten und zu führen. Am Mic war er schon immer klasse, seit dem Programm mit HBK kann man sein Micwork nurnoch als göttlich bezeichnen. Im Ring ist er auch gut bis sehr gut, zudem hat er Charisma wie sonst was. Chris Jericho ist für mich der beste Entertainer der letzten drei, vier Jahre.."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: C0nspiracywrote on 28.03.2011:[7.0] "Chris Jericho einer der besten Wrestler der 2000er. Für mich auf einer Stufe mit The Rock und Manking was den Entertaiment Faktor angeht. Auch wenn er etwas abgebaut hat im vergleich zum Millenium Gimmick so bleibt er selbst mit beinahe 40 Jahren noch immer unter den Top Wrestlern, als Entertainer können ihm sowieso nur eine Handvoll das Wasser reichen."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Raven Ravnoswrote on 05.03.2011:[10.0] "Bin ein Fan des Ayatollah of Rock'n'Rollah seit ich in zum ersten Mal in Action sah. Y2J kann einfach alles, Promos, 5-Sterne-Matches zeigen und Gegner-zu-guten-Matches-ziehen. Für mich der einzige legitime Erbe von Ric Flair. Ich hoffe er gibt bald sein Comeback in der WWE"
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Michael Shawn Hickenbottomwrote on 21.02.2011:[10.0] "Einfach ein toller Wrestler , Superstar .. ect... er ist eben der beste in der Welt in dem was er tut . Für mich persönlich einer der besten Wrestler die es je gab und geben wird .  hat : -ein hammer Micwork drauf!  -ein Super Techniker -hat ALLE Stils drauf!  -kann Bücher schreiben .  -kann Songs schreiben -hat eine unvergleichliche Stimme !"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jericho is excellencewrote on 11.02.2011:[10.0] "Ich nehme schonmal vorweg ich werde 10 Punkte geben und Jericho ist mein absoluter Lieblingswrestler. Jetzt kann die Lobeshymne beginnen: Jericho is excellence mit jeder Bewegung die er im und ausserhalb des Ringes macht. Jede einzelne Promo strotzt vor Energie und Glaubwürdigkeit, er kann im Ring praktisch jeden zu einem ordentlichen Match ziehen, mit starken Gegnern ist immer ein Klassiker drin.  In seinem Ganzen Auftreten spiegelt sich dieser Pefektionismus wieder, der Chris zu ergreifen scheint wenn er eine Wrestling Arena betritt. Sein Art zu reden, wie er sich im Ring bewegt, die Kleinigkeit wie das nervige (für Marks) "ASK HIM! " wenn er den Gegner im Submission Hold hält. Diese winzigen Dinge unterscheiden eine klasse Wrestler von dem perfekten Wrestler, den Chris Jericho für mich verkörpert und heben ihn deutlich von dem Einheitsbrei ab. Ausserdem weiss jeder der schonmal ein Out of Charakter Interview mit ihm gehört hat dass Chris ein extrem symphatischer Typ ist, der gern Spass hat und es liebt Leute zu entertainen, sei es mit Wrestling, mit seiner Band oder mit den Bestseller Büchern die er geschrieben hat.  Für den Wrestler Chris Jericho kann es hier nur eine 10 geben, für die Person ebenfalls."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: gekko83wrote on 02.02.2011:[10.0] "für mich einer der besten, wenn nicht sogar der beste,  den bisherigen höhepunkt hatte er in der fehde mit shawn michaels!  hoffe er kommt bald zurück"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Zamunerwrote on 02.02.2011:[10.0] "Wenn ich 15 vergeben könnte, wären es 15 Punkte. Er ist der Grund warum ich Wrestling schaue / geschaut habe. Jericho vs Michaels ist das Beste was ich je gesehen habe. Seine Promos waren einzigartig. Seine Matches immer von hoher Qualität. Leider ist es ihm nie vergönnt gewesen ganz nach oben zu kommen auf die letzte Stufe im Wrestling-Himmel. Warum bleibt wohl ein Rätsel. Vielleicht war er insgesamt zu selten im Ring und hatte zu wenige Fehden, die richtig ernst wurden. Als Comedy-Charakter Y2J war er unglaublich stark, da er auch ein guter Wrestler war. Das gibt es heute ja gar nicht mehr. Dann die lange Auszeit und ein zweiter Frühling als Heel. Vielleicht ist das der Grund. Er hat nie konstant an der Spitze gestanden. Vielleicht gibt es aber auch keine Erklärung warum dieser Gott nicht an den Erfolg anderer anknüpfen konnte. Aber er ist und bleibt einer der besten aller Zeiten!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Perry Coxwrote on 31.01.2011:[10.0] "Allroundtalent: Er kann nicht nur hervorragend wrestlen und ist fast unschlagbar am Mikrofon, nein, er kann auch gut singen und gut schauspielern. Jericho ist für mich das beste Beispiel, dass Wrestler nicht immer stupide im Ring stehen müssen, um erfolgreich zu sein. Was er anfasst, wird zu Gold. Nach seinem endgültigen Rücktritt vom Wrestling sollte er zum Kreativteam der WWE gehen, denn er hat ein Auge für klasse Fehden, aus denen richtig ansehnliche Matches hervorgehen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GamePrincewrote on 27.01.2011:[10.0] "Könnte ich 11 von 10 Punkten geben, Chris Jericho wäre der einzige bei dem ich es tun würde. Edge war jahrelang der beste Heel für mich ... ein 10 Punktekandidat. Aber Chris Jericho toppt Edge noch ... sowohl im Ring, als auch am Mic ist er eine ganze Klasse über jeden anderen Heel. Ok ok, ein Kurt Angle erreicht diese Qualität auch, Edge ist bzw. war nah dran und CM Punk kann diese Weltklasse noch erreichen, aber für den Moment gibt es einfach niemand der besser ist als CHRIS JERICHOOOOOOO!"
Rating: 10.0
Sentiment: 0.5625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheEmpirewrote on 23.01.2011:[10.0] "Zusammen mit CM Punk und Edge ein Teil meiner Großen Drei. Sogar noch vor den zuerst genannten. Da er in der WCW eher verheizt wurde und seine Karriere erst 1999 in der WWE Fahrt aufnahm, ist er für mich DER Wrestler des vergangenen Jahrzehnts. Vielleicht sogar der des Jahrhunderts. Sein Mic-Work ist erstklassig, seine Ausstrahlung nicht zu toppen und seine InRing-Fähigkeiten sind auch spitze. Mein persönlicher Wunsch: Rückkehr zum Rumble mit anschließendem Sieg und eine geniale Fehde bist Wrestlemania gegen The Miz."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Atticuswrote on 16.01.2011:[10.0] "Top Promos ! Top Matches ! Er kommt in seinen Gimmicks immer glaubwürdig rüber!"
Rating: 10.0
Sentiment: 0.703125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Y2J Problemwrote on 16.01.2011:[10.0] "Hat sich seine Wertung festgefahren? Wie oft wird er hier mit 10 bewertet, aber an der Gesamtwertung ändert sich nichst? ! ? ! ? ... Für Jericho's Bewertung brauch man eigentlich keine Begründung, man muss nur mal in den matchguide/in seine Promos gucken, dann weiß man bescheid. Zudem ist er ein wirklich guter Autor!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Mountiewrote on 12.01.2011:[10.0] "Ein Wrestling-Titan. Brillierte als bunter, witziger Entertainer (in der WCW mehr als in der WWE) und noch mehr als er sich anno 2008 als reduzierter, ernster Bösewicht, der all seine vorherigen Markenzeichen über Bord warf, komplett neu erfand und mit Shawn Michaels die für mich beste Wrestlingfehde aller Zeiten hinlegte. Hat sich einen Platz im Olymp der ganz Großen verdient, für das, was er als Gesamtpaket geleistet hat, muss er sich hinter keinem Rock, keinem Austin und keinem Undertaker verstecken. Warum er dennoch nie annähernd an den kommerziellen Erfolg dieser Figuren herankam, ist ein ewiges Rätsel, für das die Standardfloskeln wie "unten gehalten", "Backstage-Politik" und "Triple H" keine hinreichenden Lösungen anbieten. Für manche soll es einfach nicht sein. Aber das ändert nichts an Jericho inzwischen wohlverdientem Rang als einem der All-Time-Greats."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Guru of greatnesswrote on 03.01.2011:[10.0] "Jericho vereint beides, sowohl Wrestling, welches er in Perfektion beherrscht, als auch Entertainment, da er die gebohrene "Rampensau" ist. Man kan ein halbe Show um ihn herumschreiben ohne das es langweilig wird, was ihn sozusagen zum Anti-Cena macht. Einer der ganz Großen und zukünftiger Hall of Famer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Schmidi2121wrote on 31.12.2010:[10.0] "Top Mann Top Main Eventer, nur vergisst ihn die WWe viel zu oft. Er hat seinen Dauerhaften Platz in der A-Show verdient. Und das unter den Top Wrestlern.  Den er ist nicht nur Bärenstark am Mic sondern Wrestlerisch immerwieder eine Bereicherung für jede Show."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LowJomoKiwrote on 27.12.2010:[10.0] "Chris Jericho ist wahrscheinlich zusammen mit The Rock der beste Mic-Worker den die WWE je hatte, fast allein dafuer verdient er die 10 Punkte, aber auch im Ring ist er vielen anderen ueberlegen und ueberzeugt mich vollends. Deshalb volle Punktzahl!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Tuwewrote on 27.12.2010:[10.0] "Genial am Mic, genial im Ring. 10 Punkte, aber sowas von!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: C van Damwrote on 26.12.2010:[10.0] "Jericho... Der Mann der Ring-In-Skills, Ausstrahlung, Schauspiel und Mic-Work in einer derart geilen Kombination bietet, das man einen Orgasmus bekommen möchte. King of the World!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AlexPrimewrote on 15.12.2010:[10.0] "Chris Jericho- The best one there is and there ever will be !  Chris Jericho ist die Genialität in Person !  Im Ring sensationell und am Mic so gut wie kein anderer !  Seine Gimmicks waren genial, vorallem Y2J hat mir gut gefallen, aber auch seine Heel-Gimmicks waren gut.  Ich hoffe auf jeden Fall, dass er bald wieder Champion wird, den dann hätten wir wieder einen guten Wrestler ganz oben bei RAW !"
Rating: 10.0
Sentiment: 0.3557692307692307
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Necronwrote on 08.12.2010:[9.0] "Vor allem am Mikrofon immer wieder sensationell gut. Seine Matches sind für gewöhnlich auch sehr ansehnlich, auch wenn ich wohl nie der größte Jerichoholic werde..."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: turkeltonwrote on 22.11.2010:[10.0] "Welcome to WWE is Jericho... noch fragen. Er überzeugt einfach in jeder Rolle"
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rated R Userwrote on 06.11.2010:[10.0] "Seine Klasse sowohl im Ring, als auch am Mic sind unbestritten genial. Jedoch finde ich es schade, dass man ihn nun eine lange Zeit als Heel quasi verheizt hat, könnte er doch als Face die Bude bis unters Dach rocken! Das Publikum dazu zu bringen dich zu hassen ist einfach und wird seinen Fähigkeiten nicht annähernd gerecht. Ich hoffe bei seiner Rückkehr also stark auf einen Face Turn und einen somit noch genialeren Jericho!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheRock 7 Champwrote on 05.11.2010:[10.0] "Ich liebe es Chris Jericho am Mic zu sehen. Seine Mimiek ist unglaublich und wie er es immer schafft das Publikum dazu zu bringen ihn zu hassen. Auch seine Matches will ich mir immer wieder anschauen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rawfightwrote on 04.11.2010:[9.0] "Schade das die WWE Jericho am Ende wie ne heiße Kartoffel fallen gelassen hat. Er dürfte ja bis zum Ende, fast alle Matches verlieren, obwohl er weit mehr drauf hat :( Schade, ich hoffe er feiert bald sein Comeback und startet nochmal richtig durch."
Rating: 9.0
Sentiment: -0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Marth99wrote on 01.11.2010:[10.0] "Einer der besten Wrestler aller Zeiten deshalb 10. sogar besser als HBK"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Aesopwrote on 18.10.2010:[10.0] "Chris Jericho ist einfach ein intresasanter Charakter als Heel aber auch als Face. Er zeigt sehr gute Promos ist aber auch im Ring sehr gut und kann seinen Charackter Wunderbar rüberbringen. Ich war schon immer ein riesen Jerichoholic, von Anfang an war er mein Favorit. Und in der WWE reicht ihm kaum einer das Wasser."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Cenafan 09wrote on 18.10.2010:[10.0] "Jericho ist der beste Charakter in der WWE. Den seinen Mic-Skills sind einfach nur göttlich und In-Ring hat er auch viel mehr drauf als viele andere Wrestler. RAW ist Jericho. RAW bleibt Jericho."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Vandeacwrote on 07.10.2010:[10.0] "Einfach der Beste der zurzeit in der WWE rumläuft, der Mann ist genial, er kann alles."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Undertakemaintwrote on 23.09.2010:[10.0] "Geile Promos+gute Kämpfe.  Leider auch teilweise als Jämmerling verbookt,  Trotzdem 10 Punkte, weil er daran nix machen Kann"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Piurrywrote on 23.09.2010:[10.0] "Ich weiß nicht was man über den Mann schreiben kann. Hoffentlich unterhält er mich auch in naher Zukunft weiterhin so genial.  Steht verdient auf Platz eins im Käfig. :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MBLegendwrote on 20.09.2010:[8.0] "Er ist zweifelsfrei ein guter Wrestler und ein mehr als solider Mic-Worker, jedoch ist er meiner Meinung nach nur als Heel wirklich überzeugend."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kane123wrote on 19.09.2010:[10.0] "Im Ring einfach nur genial ... als Heel sowie als Face"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Pyromaticwrote on 14.09.2010:[10.0] "Einer der besten Mic Worker und Entertainer im Wrestling aller Zeiten. Schade das er nicht mehr so stark gepusht wird.  Sein Karriereende wird eine tiefe Lücke in der WWE hinterlassen."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: rockysadrianewrote on 10.09.2010:[10.0] "Wird eines Tages seinen rechtmäßigen Platz in der Wrestlinggeschichte einnehmen. Und zwar ganz oben mit den größten Legenden!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rock93wrote on 05.09.2010:[10.0] "Geiles Mic-Work, klasse Leistungen im Ring, bei den Fans over wie Sau: Dieser Mann war lange Zeit der einzige Grund, Raw zu schauen und ist immer noch ein Gott der Unterhaltung!"
Rating: 10.0
Sentiment: -0.2884615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Ramwrote on 02.09.2010:[10.0] "Wie er es selbst des öfteren sagt, er ist der beste in der Welt in dem was er tut!  Dieser Wrestler hat wirklich alles was ein Wrestler haben muss. Er ist Unterhaltsam wie kein Zweiter und das nicht nur am Mic, auch in Ring ist er einfach eine Granate.  Einen Chris Jericho im Ring kann man ungefair mit Shawn Micheals vergleichen, jedes Match ist ein Genuss."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Soopawrote on 29.08.2010:[10.0] "Dieser Mann hat sich nur die 10 verdient über ihn wurde wol schon alles gesagt.  Großartiger Entertainer , großartiger Techniker Würd ihn gern nochmal als Face Y2J erleben"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Tribbel Eitschwrote on 26.08.2010:[9.0] "Jericho kann man von heute auf morgen über Nacht wieder an die Spitze einer Show stellen und er wird es schaffen, die Massen mitzureißen. Im Ring über jeden Zweifel erhaben (wann hatte er das letzte Mal ein "schlechtes" Match? ), ist es vor allem die Darstellung seines Charakters, die ihn von vielen seiner Kollegen abhebt - auch wenn die Reaktionen seitens des Publikums im Vergleich zum Anfang des Jahres etwas nachgelassen haben. Trotzdem einer der besten seiner Zeit."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: nVVo-Fanwrote on 25.08.2010:[10.0] "Einer der Besten seines Faches. Sehr gute Ring- und Mikrophonfähigkeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ShowTimewrote on 24.08.2010:[9.0] "Chris Jericho ist kein Perfekter aber ein guter Wrestler er kann Super Promos und gute Matches zeigen 9 Punkte von mir."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Blacc84wrote on 23.08.2010:[9.0] "Im Ring ordentlich etwas drauf und seine Promos sind einfach Genial, Aber mein 10er Debüt werde ich mir dennoch ein wenig aufsparen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rookie of the Yearwrote on 23.08.2010:[10.0] "Ist für mich mit Edge und Orton zusammen eine der größten Konstanten, was das Gimmick angeht. Ein Heel wie er im Buche steht und wrestlerisch für mich gut bis sehr gut. An sein Micwork kommen nicht viele heran. Kann ihm mal bitte jemand das Wasser reichen? ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Tekkie1993wrote on 22.08.2010:[10.0] "Für mich momentan der beste wrestler der welt. So ziemlich jede Promo von ihm ist unterhaltsam"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lowflyerwrote on 18.08.2010:[8.0] "Jericho ist ein wahrer Dauerbrenner, der in so gut wie jeder Rolle überzeugen und glänzen kann. Er ist einer der wirklich starken Redner der WWE, auch wenn ich ihn nicht ganz an der Spitze sehe. Im Ring ist er mit den meisten Gegnern in der Lage ein starkes Match abzuliefern, jedoch gelingt es ihm nur selten mich restlos zu begeistern. Neben seiner universellen Einsetzbarkeit schätze ich vor allem seine Fähigkeit Storylines Leben und Tiefe einzuhauchen, welche schon einige seiner Fehden bereichert hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Ray Robsonwrote on 17.08.2010:[10.0] "Einer der Besten überhaupt. Da wo Jericho ist, ist oben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MaKnowrote on 17.08.2010:[10.0] "Jericho ist ein Gott! Am Mic ist er längst legendär, im Ring selbst im hohen Alter noch zu ansehnlichen Leistungen imstande! Jericho ist aktuell einer der ganz ganz wenigen in der WWE, die mich nach wie vor begeistern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Tamjukwrote on 17.08.2010:[10.0] "Sehr Starker Worker, mit geniallem Mic Work und Charisma."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HBK782wrote on 17.08.2010:[8.0] "Sehr guter Wrestler, der in verschiedenen Rollen überzeugt. Mochte den alten Y2J dennoch lieber, weshalb es eher in Richtung 8 als 9 schwankt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Stockwrote on 17.08.2010:[10.0] "Chris Jericho ist einer der besten Wrestler/Entertainer, den die WWE hat. Er zeigt immer starke Matches und seine Promos sind auch großartig. Er ist auch einer der wenigen Pros, die es geschafft haben mich bei NXT zu überzeugen. Entweder hat er hier starke Matches geliefert, Promos gehalten oder Josh Mathews und Michael Cole darauf hingewiesen mehr über seinen Rookie zu reden. Seine Einstellung, sich auch für schwächere Wrestler hinzulegen, ist vorbildlich und macht ihn nochmal sympathischer. Ich hoffe, dass er noch ein gutes Stück bei der WWE bleibt und weiterhin seine Leistung bringt. Kurz gesagt: "He is the best in the world at what he does"."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DJ MaSchwrote on 14.08.2010:[10.0] "Chris Jericho ist einer der wenigen Gründe, weswegen ich die WWE noch verfolge. Er ist der MVP der Liga, der in einer Woche für R-Truth den Job machen kann und in der nächsten ein glaubwürdiger Herausforderer auf den World Title des Undertakers sein kann. Jericho ist einer der besten Mic-Worker aller Zeiten und besitzt seit seinem Heel Turn 2008 auch einen geniallen Charakter. Das er auch wrestlerisch ein Top Mann ist steht für mich eh ausser Frage. Ich hoffe, dass er uns noch einige Jahre erhalten bleibt, den er ist eines der letzten wirklichen "Total Packages" der Wrestlingwelt."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WrestlingFanDuisburgwrote on 06.08.2010:[10.0] "Y2J ein klasse Mann. Super In-Ring Skills und fantastisch am Mic. Er hat mir in der WCW und Anfang der WWF aber besser gefallen als heute."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SelfEsteemwrote on 05.08.2010:[10.0] "Chris Jericho ist einfach genial! Mit seinen 39 Jahren lässt er quasi jeden jüngeren Worker der WWE im Schatten stehen und das obwohl er körperlich für einen Wrestler wirklich zierlich ist. Aber er hat einfach ein super Micwork, eine klasse Technik im Ring und Charisma für drei! Wenn hier einer 10 Punkte verident hat, dann Chris Jericho."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: milliwrote on 04.08.2010:[10.0] "Jericho ist sowohl vor als auch hinter der Kamera einer der besten, wenn nicht der beste Worker im Geschäft. Seine Kreativität hat der WWE schon oft geholfen und daher ist er unverzichtbar. Aber vor Allem auch In-Ring technisch ist er ein Genie"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: boiddewrote on 01.08.2010:[10.0] "Ein Mann der einfach alles kann, am Mic gut und wrestlerisch auch einer der besten was die WWE zur Zeit hat"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: kofikingston96wrote on 29.07.2010:[10.0] "Chris Jericho ist einfach genial. Am mic einer der besten in der wwe momentan. Im moment gefallen mir nur miz' und Punk's promos genauso gut. Und auch im ring immer noch grandios. Aber seine größte Stärke ist, dass er mich immer überzeugt, egal ob als face oder heel. Er weiß einfach wie er das publikum auf seine seite zieht, beziehungsweise es gegen ihn aufbringt. Echt schade, dass er momentan nicht mehr richtig eingesetzt wird. Einen Titel hat er aufjedenfall noch verdient und dieses mal bitte einen längeren run "cause he is the best in the world at what he does" !"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Boggenauerwrote on 29.07.2010:[10.0] "Chris Jericho der Kerl ist einfach ein Gott am Mic ich finde es immer wieder klasse wie er selbst wenn er bejubelt wird die Fans beleidigt, er fällt einfach niemals aus seiner Rolle. und im Ring ist er auch einfach nur Top einfach ein klasse Moveset das er da hat, nur viel zu schhade das er selten noch jemanden mit der Walls of Jericho zur Aufgabe zwingen darf. Meiner meinung nach sollte die WWE ihm mal wieder einen Titel geben "cause hes the best in the world at what he do" dieser Satz ist einfach Grandios. Deshalb von mir 10 punkte."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bananaramawrote on 22.07.2010:[10.0] "Er ist für mich einer der komplettesten Wrestler der Welt. Er ist zum einen technisch sehr stark und unterhält auch am Mic auf einem sehr hohen Level. Seit seiner Rückkehr war er in zwei wirklich brillianten Fehden (Shawn Michaels, Rey Mysterio) zu sehen und wird für mich zu keinem Punkt langweilig. Daher gebe ich ihm volle Punktezahl."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheRock902102wrote on 18.07.2010:[8.0] "Guter Wrestler, gute Show... jedoch is seine Stärke des Entertainment im Gegensatz der früheren Jahre leider nicht mehr so stark.  Fand ihn früher um einiges besser."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: P92wrote on 09.07.2010:[10.0] "NXT#1 23/2/10 Chris Jericho vs Daniel Bryan ... hervorragendes Match, welches beweist, dass sowohl Jericho als auch Bryan "10 Punkte-Wrestler" sind!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Whopperlewrote on 06.07.2010:[10.0] "The Best in the world at what he does! Oder zumindest einer davon : ) Genial am Mike und einer der besten Techniker in der WWE."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Franjisewrote on 30.06.2010:[10.0] "Chris Jericho ist ein "Total Package". Charisma, exzellentes Mic-Work und erstklassig im Ring. Eine ganz klare 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RiotMorawawrote on 29.06.2010:[10.0] "Einer der GANZ großen in diesem Sport... seine Jahre in Japan, der ECW und der WCW waren einfach grandios und seine WWE-Zeit ist auch durch grandiose Fehden (bsp. : gegen Shawn Michaels) geprägt.  Am Mic gottgleich und im Ring begnadet!  Alles andere als 10 Punkte wäre in meinen Augen vermessen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HunterXDwrote on 22.06.2010:[10.0] "Chris Jericho ist vielleicht der beste Wrestler den es im moment auf der Welt gibt! Klar, ein Bryan Danielson und mit abzügen noch ein Desmond Wolfe vielleicht sind teilweise besser als Jericho, aber Chris ist das gesamtpaket!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: myheroine7362wrote on 19.06.2010:[10.0] "Chris Jericho - zweifelsohne "the best in the world at what he does".  Zwar war sein Comeback 2007 mit dem Y2J Gimmick ein wenig langweilig, enttäuschend und sogar ein wenig aufgezwungen; jedoch sieht man seit seinem Heel Turn 2008 seine neue, alte Klasse wieder. Er ist einer der besten Heels der Geschichte, der einfach das benötigte Gesamtpaket mitbringt.  Im Mic gehört er klar zu den besten, ist vielleicht sogar DER beste. Zwar ist seine Message jede Woche dieselbe, jedoch verschaltet er sie so geschickt, dass andere Facetten und Aspekte gezeigt werden.  Und auch im Ring wirkt er noch frisch und schnell. Er kann immer noch klasse Matches bestreiten, bekommt er die richtigen Gegner, wie zum Beispiel gegen Shawn Michaels 08, übrigens auch eine der besten Fehden aller Zeiten. Man merkt ihm garnicht an, dass er schon um die 40 ist.  Alles in allem, eine verdiente 10 für den ersten Undisputed Champion."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SES-Memberwrote on 15.06.2010:[10.0] "EINER DER BESTEN ! die Mic-Skills sind klasse! seine ring-skills sind auch super und er zieht viel heat auf sich... er macht seinen Job klasse un es ist schade das die WWE nicht mehr solche worker hat !"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Metal Wolfpac Crewwrote on 09.06.2010:[10.0] "Ich hätte nie gedacht dass die Personalie Jericho in so astronomische Höhen schießen würde. Der wertvollste Schatz, den die WWE zurzeit hat, auch wenn er bei der Vergabe von regelmäßig übergangen wird, was an und für sich schon eine Schande ist. Vom technischen Standpunkt her ist er Leuten wie Cena und Orton, trotz seines Alters, um einiges Überlegen. Und über sein geniales Micwork ist an dieser Stelle ja schon alles gesagt worden. Erstaunlich, dass er konsequent sein Programm abspielt und präsent ist obwohl er selten Champion ist und hochmotiviert an alles heran geht, bestes Beispiel hierfür seine Auftritte bei NXT und sein "Engagement" für seinen Rookie gegenüber Striker, Matthews und Cole ("say something about him" - "we already do" - "say MORE! "). Und wer weis, vielleicht ist er ja der geheime Führer der NXT'ler (kleiner Schmunzler nebenbei). Ein absoluter Klassiker."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TeeHaawrote on 06.06.2010:[10.0] "Seine Zeit als Face fand ich zwar gut aber nicht absolut herausragend. das kann daran liegen, dass er unten gehalten wurde oder an eigenen Unzulänglichkeiten unterm Strich zählt für mich nur, dass er nicht herausragte. Als Heel macht er das aber doppelt wet. Er zieht durch seine bloße Anwesenheit genug Heat um seinen Nachmittagstee zum Kochen zu bringen. Wahnsinn!"
Rating: 10.0
Sentiment: -0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rated R Champwrote on 04.06.2010:[10.0] "Chris Jericho ist eines der besten Gesamtpakete, nicht nur in der WWE sondern generell. Im Ring ist er, trotz mittlerweile fortgeschrittenen Alters, ein sehr Guter und kann auch die unterschiedlichsten Stile mitgehen. Und in Punkto Promos und Charisma gibt es ohnehin nur ganz wenige, die mit Jericho mithalten können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Leon1948wrote on 04.06.2010:[10.0] "Der beste Wrestler den es im Momemt gibt! Er hat eine Technik wie kein anderer. Chris Jericho hat es echt verdient 10P @ Can Cena: Mark?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: morph80wrote on 30.05.2010:[10.0] "Neben Bret Hart und Shawn Michaels einer der besten Techniker, dazu geniales Micwork und überzeugt als Face und Heel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: JeriMizwrote on 22.05.2010:[10.0] "Ich finde er ist einer der besten Wrestler, er ist Gut am Mic, und zeigt auch gute Leistung im Ring. Daher 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Erasedwrote on 21.05.2010:[9.0] "Klasse Entertainer. Selbst heute noch unterhaltsam. Zugegeben, vor einigen Jahren war er im Ring aber besser."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Cloverwrote on 21.05.2010:[10.0] "Finde ihn (zurecht) super, aber er wirkte mir damals gelegentlich zu gekünstelt in seinen Darstellungen. Inzwischen aber macht er seinem Ruf alle Ehre und dürfte einmal mehr auf dem (verdienten) Höhepunkt seiner Karriere sein! 9, 5 Punkte für den zukünftigen Hall of Famer und einen kompletten WRESTLER ;)"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Straight Edge Jerichoholicwrote on 18.05.2010:[10.0] "Good, better, perfection, Jericho!  Unglaubliches Charisma, Unglaubliches Mic-Work, Perfekte Ausstrahlung!  Der Mann zeigt klasse Matches und ist daher verdient einer der großen im größten Unternehmen!  10 Punkte"
Rating: 10.0
Sentiment: 0.6255208333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Edge96wrote on 13.05.2010:[10.0] "Genial im Ring, Genial am Mic, Geniales Charisma, 10 Punkte ganz klar."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Larskanonewrote on 13.05.2010:[10.0] "Einfach einer, der Besten,  die WWE im moment hat! Liefert seine Arbeit immer gut ab, ob es Matches sein mögen oder Promos. Außerdem versteht er wie kein 2. mit dem Publikum zu spielen. Vereint einfach alles was man als Topstar im Wrestling braucht. Einfach ein grandioser Wrestler! ^^(muss man als Jericho-holic einfach sagen ^^)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sandmannwrote on 04.05.2010:[9.0] "Y2J ist definitiv einer der unterhaltsamsten Charaktere im Wrestling heutzutage. Dabei spielt es nicht mal eine Rolle ob er in eine großartige Fehde, wie gegen Michaels oder Mysterio, verstrickt ist oder ob er einfach alleine im Ring steht und über Gott und die Welt spricht. Dazu noch ein sehr guter Wrestler. Das perfekt Gesamtpaket."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Reiskartoffelwrote on 03.05.2010:[10.0] "Wer jedem Wrestler, der einem Bodybuilder ähnelt 10 Punkte aber einem Jericho, der wahrscheinlich einer der besten aller Zeiten ist 0 Punkte gibt, der soltle sich ein anderes Hobby suchen.  Jericho ist in allen Belangen überragend: Im Ring, am Mic.  Einer der besten aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TaraLovesTrishwrote on 02.05.2010:"Sehr Guter Wrestler.  Nach Seinem Comback Erfolgreic Wie Nie Zuvor.  Wrestlerisches Talent ; & Vorallem Sehr Gute Mikrofonarbeiten ."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Damon Strikerwrote on 29.04.2010:[10.0] "(Wohl nicht nur) Meine Nr. 1! Sowohl im Ring als auch am Mikro einfach göttlich! Daneben aber auch ein verdammt cooler, intelligenter und netter Mensch! Jedenfalls ist das mein, aus der Ferne gezogenes Fazit, was sich u. a. aus Aussagen von ihm und Kollegen, diversen Auftritten außerhalb des Wrestling-Zirkus und auch der Lektüre seiner Biographie ziehen lässt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LionheartXwrote on 29.04.2010:[10.0] "Jerico ist All n All einer der besten Wrestler. Er beherrscht seine Waffe (das Mic) sehr gut. Zum Thema Ring Skills, er ist einfach gut balanciert. Ich könnte ihn mir noch mal und vorallem noch länger als Champion vorstellen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CM Dannywrote on 15.04.2010:[10.0] "Ich war von Anfang an ein Jerichoholic. In der WCW wurde er zu beliebt und unten gehalten, doch das hat nichts an seiner Beliebtheit geändert. Der Pop bei seinem WWE Debüt gibt mir auch heute noch eine Gänsehaut. Selbst als Triple H ihn unten halten wurde, hat Jericho seine Fans nicht verloren. Es war sehr mutig, das erfolgreiche Y2J-Gimmick fallen zu lassen, doch er wurde zurecht dafür belohnt. Er gehört wirklich zu den Besten der Welt, in dem was er tut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Big Bad Booty Babywrote on 15.04.2010:[7.0] "Ähnlich wie bei Punk muss ich auch bei Jericho ankreiden, dass er zu großen Teilen von seiner Unbeliebtheit lebt. Sonst zeichnet ihn momentan nichts wirklich aus. Seine Leistungen im Ring sind immer noch ganz gut aber selten herausragend und im Vergleich zu früher eher mau. Aber seine Promos? Immer wieder das selber nur regelmäßig neu verpackt. Dadurch geht er allen auf die Nerven, aber das zeichnet ihn nicht als Rhetorik-Meister aus. Ich erwarte keine für Marks wirksame Promos, ich erwarte gute Promos. Das bedeutet Mimik, Gestik, Tonfall, frische und passende Ideen. Eben das ganze Programm alias Edge. Jericho ist lediglich jemand, den man hassen kann, fast hassen muss. Doch das gilt auch für JBL."
Rating: 7.0
Sentiment: -0.1666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Icebreakerwrote on 13.04.2010:[10.0] "Y2J ist einer der wenigen Heels der seit wirklich langem überzeugen kann und nicht irgendwann als weinerlicher Betrüger dargestellt wird. Dieser Mann beherrscht unglaubliches gutes Wrestling (egal ob Technik- oder Highflyingelemente) und hat mit das beste Micwork von allen. Ein talentierter, charismatischer Schauspieler eben. Mit ihm wird es einfach nie langweilig, selbst gegen schwache Wrestler zeigt er gute Matches und gegen gute fantastische. Zu dem ist er ein verdammt guter Sänger, Fozzy rockt einfach ;-). Chris sollte noch öfter im Mainevent stehen, die WWE sollte froh sein so einen starken Worker zu haben. Es ist außerdem schön zu sehen das nicht nur die Big Men ihren Weg ins Mainevent finden, sondern auch ein vergleichsweise kleinerer und "schmächtigerer" Wrestler zu den Topathleten gehören kann. Kurzum: Jericho ist einfach klasse!"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: K4thg4Rwrote on 10.04.2010:[10.0] "Ausstrahlung, Charisma, Moveset, Mic-Work - da passt einfach alles. War mit dem Comeback als Face nicht erfolgreich, turnte dann zum Heel und ist seitdem wieder absolut top. Weiß immer zu unterhalten."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RaTedR5starwrote on 10.04.2010:[10.0] "Obwohl Jericho mir um 2000-er Wende besser gefallen hat kann ich ihm nichts anderes als eine 10+ mit **********. Er verkörpert DEN perfekten Wrestler. Er hat ein perfektes Mic-Work, Er besitzt ein perfektes Gimmick und er nennt eine nahezu perfekte Ring-In Skill sein Eigen. **********"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Baldrickwrote on 10.04.2010:[10.0] "Hab in 20 Jahren Fansein nie einen besseren Micworker gesehen. Dazu kann er im Ring so ziemlich alles, was man braucht-ne klare 10!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jar Jar Binkswrote on 07.04.2010:[10.0] "Jericho. Stellt euch mal vor, Jericho wär nicht mit dabei. Da würde doch eindeutig war fehlen. Jericho ist ein außerhalb des Ringes unglaublich netter und sympatischer Typ. Innerhalb des Ringes ist er jedoch ein genialer Heel. Er spielt seine Rolle beängstigend gut und ist sein Jahren der Topmann am Mic. Dass er technisch ein Guter ist, ist sowieso weitgehend bekannt, aber bei Weitem das Beste an ihm ist, wie glaubwürdig er seine Rolle spielt und wie sehr dieser Mann unterhalten kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Yannick009wrote on 04.04.2010:[8.0] "Momentan das Beste was die WWE am Mic zu bieten hat. Im Ring gut aber nicht perfekt. Macht Smackdown erst sehenswürdig..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: cmPunKwrote on 03.04.2010:[10.0] "Er ist einfach Spitze. Am Mic-work ist er der beste den die WWE bieten kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Viperwrote on 30.03.2010:[10.0] "Am Mic ist er nahezu perfekt. Im Ring ist er genial und daher der beste Wrestler momentan."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Batistawrote on 28.03.2010:[10.0] "Am Mic einfach mit Edge der beste Wrestler den es gibt! Im Ring dazu auch in einer absoluten Topliga im Vergleich mit anderen... 10 Punkte für Chris Jericho!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: antihiphop2002wrote on 28.03.2010:[10.0] "Was soll man über den Mann noch sagen? Es sind ja in diesem Zusammenhang bereits alle Superlativen ausgesprochen worden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Blade Bourdeauxwrote on 28.03.2010:[10.0] "Im Ring ein Großer, am Mic wohl einer der Besten überhaupt. Nach seiner Rückkehr 2007 war ich ein wenig enttäuscht. Entäuscht von Jericho im Ring, am Mic und von seiner wenig Superstarhaften Erscheinung. Inzwischen ist er aber wieder voll da und in seiner neuen Rolle ist er vielleicht so gut wie bisher noch nie."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: N8y Modianowrote on 26.03.2010:[10.0] "Einer der besten Wrestler und Entertainer im Wrestling und singen kann er auch noch ;) ein hochkarätiger Sportler. Seine In-Ring action und seine Promos wissen zu überzeugen."
Rating: 10.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: bigdaniel1992wrote on 24.03.2010:[10.0] "Geile Promos. Geile Matches. Geile Ausstrahlung. Chris Jericho. Er ist für mich, wie Edge, ein einfach perfekter Entertainer, aber auch Wrestler. Wenn er bei einer Show dabei ist, ist diese Show gleich doppelt so gut. Das erste Match was ich von ihm gesehen habe war das Match gegen John Cena beim Summerslam 2005. Leider war er einen Tag danach weg, aber zum Glück kam er 2007 wieder. Seit er Heel wurde 2008 unverzichtbar für WWE. Deswegen 10Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MarcTrixwrote on 22.03.2010:[10.0] "Wer diesen Wrestler nicht genial findet, den kann man nicht mehr helfen. Er is einer, vielleicht DER beste am Mic den is gibt. Jede seiner Promo ist zu Zeit einfach genial und seine In-Ring fähigkeiten und Leistunegn sind einfach nur spitze. TOP!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Showstopper45wrote on 18.03.2010:[10.0] "Er ist genau das was er sagt der beste zumindest der beste Heel unserer Zeit. Und zwar im Ring einfach Spitze genau wie am Mic. Und von seiner Band Fozzy garnicht mal anzufangen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Neubauteneinsturzwrote on 16.03.2010:[10.0] "Ich weiss nicht, warum ich mir in der Vergangenheit schwer damit getan habe, Jericho als einen der besten überhaupt anzuerkennen. Vermutlich weil er damals einfach noch zu sehr von Leuten wie The Rock oder Steve Austin überschattet wurde. Wie dem auch sei. Mittlerweile kann ich Y2J einfach nicht weniger als 10 Punkte geben. Egal ob Micwork, Matchqualität oder generelles Entertainment. Bei Jericho dürfte der Wrestlingfan an sich so selten wie bei keinem anderen nicht zufrieden sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: batistabombhuf619wrote on 16.03.2010:[10.0] "Jericho ist für mich der einzige Worker der WWE, neben Edge, welcher seine überlegenen Charismafähigkeiten mit guten In-Ring Skills verbindet. Auch hat er kein Problem damit, sich für schwache Worker hinzulegen um diese zu pushen. Er fiel in seiner Karriere selten negativ auf und hat eine sehr gute Beziehung zu den Fans (z. B. durch Twitter). Seine Fehden im letzten Jahr mit Shawn Michaels und die diesjährige mit Edge gehören zu den absolut Besten in den letzten Jahren. Wenn einer die 10 Punkte Bewertung verdient hat, dann er."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: destinationwrote on 15.03.2010:[10.0] "für mich der derzeit beste Entertainer in der WWE. Ausgezeichnetes Mic Work und technisch sowieso hervorragend"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Moyawrote on 15.03.2010:[9.0] "Macht das, was er macht, gut. Seine wrestlerischen Fähigkeiten sind hervorragend, die Matches immer ansehnlich und seine Promos erfüllen auch immer ihren Zweck."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 3durch16wrote on 14.03.2010:[10.0] "Er kann aus so ziemlich jeden Gegner ein gutes Match ziehen und ist einer der besten und glaubhaftesten Heels. Sehr gute Promos"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Fat Mikewrote on 14.03.2010:[10.0] "In meinen Augen ist Jericho, neben Shawn Michaels, das Total Package der WWE. Im Seilgeviert ist er einer der Besten und sein Charisma ist schier unglaublich. Egal in welcher Rolle, der gute Chris kann einfach immer überzeugen. Zudem ist er einer der wenigen aktuellen Wrestler die in der Lage sind Geschichten nicht nur am Mikrofon, sondern auch im Ring zu erzählen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Galottawrote on 12.03.2010:[10.0] "Schon immer einer meiner Lieblingswrestler. In letzter Zeit (letzten 2 Jahre) hat er mich noch mehr überzeugt, deshalb Erhöhung auf 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LabronBenoitwrote on 11.03.2010:[10.0] "Einer der besten Wrestler überhaupt. Er bescherte uns legendäre Promos und Matches und dafür sollten wir ihm allemal dankbar sein. Ich hoffe, dass er noch lange lange Jahre dabei ist!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: tnawrestlingfanwrote on 10.03.2010:[10.0] "Bin ein großer fan von ihm! Hab mir sogar damals wegen ihm die Haare lang wachsen lassen!  (Hab immer noch die Frisur! )"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Eazyewrote on 10.03.2010:[10.0] "Chris Jericho ist wohl einer der besten Worker den eine Wrestling Liga haben kann. Zum einen ein humorvoller Mensch, zum anderen im Ring bombastisch, liefert mehr als starke Promos und sehr charismatisch. Er hatte einfach eine Superstar Ausstrahlung. Dem kann ich eigentlich nur 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Charismatic Enigmawrote on 08.03.2010:[9.0] "Einer der besten Heels der letzten Monate. Auch wenn sein, "best in the world... " langsam nervt, erreicht er damit ja sein Ziel. Guter Techniker, Promogott: Alles in allem 9 Punkte."
Rating: 9.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheUndertakerwrote on 08.03.2010:[10.0] "@TheJohnMorrison: Wie kannst du es kritisieren das sich ein Jericho für R-Truth hinlegt? Es ist positiv anzusehen das er das macht denn sonst gibt es keinen der von unten hochkommen kann siehe RAW mit dem fast schon ewigen Cena/Orton/Triple H im Jahr 2009. Das Jericho nicht so im Main Event geschehen war dadurch auch positiv zu sehen denn so haben CM Punk und Jeff Hardy die Chance bekommen. Dafür hat Jericho bei allen 3 Shows gezeigt warum er der beste ist zurzeit. Bei RAW war er neben The Miz DAS Highlight. Achja und geb der Fehde mit Edge mal Zeit, es sind noch 3 Wochen bis Mania und ich denke die Fehde hat Potenzial bis Hell in a Cell zu laufen. Bottom Line... Jericho ist zurzeit der beste in WWE."
Rating: 10.0
Sentiment: -0.023717948717948724
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Grandmaster Sexaywrote on 07.03.2010:[10.0] ""You people have been lead to believe that mediocrity is excellence, uh-uh, Jericho is excellence. And I promise to ignite you, to excite you, to delight you, and I invite you to strap on your seatbelts, ease the seat back, click it into gear, and go into overdrive because from 1999 forward it’s 100% entertainment. 100% electricity. 100% Jericho! " Dieser Teil seiner WWE-Debüt-Promo sagt wohl alles ;-)"
Rating: 10.0
Sentiment: 0.016666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Checkerwrote on 07.03.2010:[10.0] "Am Mic einfach genial und er weiß ganz genau wie man Heat zieht. Sein Können im Ring ist nahe zu perfekt. Als Heel wohl der beste den es gibt und auf lange Zeit geben wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dankowrote on 05.03.2010:[10.0] "Jericho ist grandios. Seine Promos sind großartig, im Ring kann er mit fast jedem ein ansehnliches Match auf die Beine stellen und er hat ein Charisma das fast an das von The Rock heranreicht. Fast müsste ich ihm einen Punkt abziehen, da er nun ein weiterer "Unterhosen-Wrestler" ist, aber bei einem Jericho kann ich darüber hinwegsehen. ;)"
Rating: 10.0
Sentiment: 0.21250000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jerichoholicwrote on 04.03.2010:[10.0] "Chris Jericho gebührt alleine schon großer Respekt, weil es ihm gelungen ist, sich nochmals selbst neu zu erfinden - und dies allen Widrigkeiten zum Trotz. Zunächst schien es nämlich so, als habe er sich mit seiner Rückkehr keinen Gefallen getan. Die Save-Us Story war ein großer Reinfall, die anschließende Fehde gegen JBL auch kaum der Rede Wert. Dass Jericho das langsame Sinken seines Sterns nochmals verhindern konnte und seither mehrfach den WWE Gürtel erringen konnte, liegt einzig und alleine an seinem neuen, genialen Heel Charakter, der so gar nichts mehr mit dem alten Chris Jericho zu tun hat - und das ist auch gut so. Der Mann ist gereift und hat daher im Vergleich zu früher verdientermaßen nochmals den Schritt nach vorne machen dürfen. DIESER Chris Jericho ist problemlos in der Lage Wrestlemania zu headlinen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Cripplerwrote on 03.03.2010:[8.0] "Der beste Heel der WWE , trotzdem fehlt mir bei ihm das gewisse etwas."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wizz21wrote on 01.03.2010:[10.0] "Super Wrestler, Weltklasse Heel. Einer der Besten die das Business zu bieten hat."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Perfectionwrote on 26.02.2010:[10.0] "Chris Jericho ist göttlich! Am Mikro ist er so stark wie kaum ein Anderer in der WWE. Im Ring schwächelt er zwar langsam, doch er kann immer noch überzeugen. Jetzt nach dem Elimination Chamber ist er wieder da wo er hingehört: On the Top! Als World Heavyweight Champion wird er ein weiteres Mal glänzen und mit Edge wird er uns das Match Of The Night von WrestleMania XXVI bieten."
Rating: 10.0
Sentiment: 0.2125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: kekslpetewrote on 25.02.2010:[10.0] "Chris Jericho ist der Gott des Wrestling und endlich wieder da angekommen wo er hingehört, auch wenn seine Regentschaft wohl nicht allzu lang andauern wird. War im Ring schon immer überzeugend und ist am Mic und in Punkto Charisma nicht zu toppen. Er ist der Beste in dem was er tut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Manu Adamswrote on 17.02.2010:[10.0] "Auch ich bin großer Jericho Fan. Hätte Chris vor drei Jahren nicht seine Rükkehr gefeiert, würde ich schon lange kein Wrestling mehr sehen, da er einer der Hauptgrunde war, der mich Woche für Woche an den Fernseher zog. Jericho hat alles was ein Main Eventer braucht, er ist eine Granate im Ring, liefert die derzeit besten Promos und ist charismatisch. Einzig und allein habe ich zu bemängeln, dass er in den letzten Monaten, doch einiges an Schnelligkeit verloren hat, doch dies macht er spätestens mit seinem schauspielerischen Talent, wieder wett."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: the king of kingswrote on 14.02.2010:[7.0] "Es ist nicht abzustreiten, er ist einer der besten Heels, aber es war leider nur die gute Fehde mit HBK, danach war er eigentlich wieder langweilig. Bei No Way Out 2008 war ein richtig guter PPV wo er richtig gute Aktionen zeigen konnte, dann noch die gute Fehde mit HBK, das war es dann. Das Tag Team mit Big Show war dann richtig schlecht, deswegen nur eine 7."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Vanniwrote on 12.02.2010:[10.0] "Einer der absoluten Top-Männer, die die WWE ihr Eigen nennen kann. Vor allem nach seinem Gimmickwechsel im letzten Jahr absolut genial am Mic, im Ring konnte Jericho eigentlich schon immer überzeugen. Geht in seiner neuen Rolle aber total auf, sodass es richtig Spaß macht, ihm am Mic zuzuhören."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rockfan1wrote on 08.02.2010:[10.0] "Jericho ist "der" Grund, warum mich WWE überhaupt noch interessiert! Er ist einfach unglaublich: Alle stöhnen, wie anstrengend doch der Job bei WWE ist und der Mann macht nebenbei noch eine Fernsehsendung und bringt mit seiner Band eine neue CD auf den Markt, die übrigends ein Leckerli ist. Noch nie habe ich Chris stöhnen hören, wie schlimm seine Arbeit ist! Und ich bin der Überzeugung, dass er sie immer noch gern macht ( oder wieder nach der langen Pause damals). Wie wertvoll solche Worker sind, merkt die WWE sowieso erst, wenn sie weg sind. Chris hat alles, was man braucht, um ein guter Entertainer zu sein: Charisma ohne Ende, athlethische Fähigkeiten, um die ihn weit Jüngere sicher beneiden, hervorragende Arbeit am Mikrofon ( zeigt mir einen besseren bei WWE ! ). Er kann jeden gut aussehen lassen, was ihm ja leider bei dem WWE-booking zum Verhängnis wird. Er ist der Einzige (neben Orton), der bei der WWE überhaupt einen Titel verdient, der leider zum Wanderpokal verkommen ist. Schade!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Randy Owrote on 07.02.2010:[9.0] "Damals habe ich Jericho sehr gemocht. Doch seit seinem comeback hmm ich weiß nicht. Er ist Fett und seine Gimmick ist langweillig. Er sieht billig aus. Aber im Ring und am Mic trotzdem Top. Doch leider war er immer ein Übergangschampion."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Eddiewrote on 06.02.2010:[9.0] "Guter Wrestler, den ich immer gerne ansehe, aber für eine Note 1 fehlt mir irgendwie etwas.. Seine World Title Reigns waren allesamt etwas merkwürdig, und er ist nicht immer auf dem Level eines 10 Punkte Stars, aber 7 Punkte sind meiner Meinung nach ok. Edit: Ja ok, er ist mittlerweile mind. genauso viel Wert wie ein Triple H von seinen Fähigkeiten her, 7->9 Punkte, für die 10 müsste ich mehr aktuelle Matches von ihm sehen."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheDPHwrote on 05.02.2010:[10.0] "Einer der besten Heels in der WWE. Er überzeugt durch geniale Promos und auch seine Matches (vor allem gegen Rey) sind spitze."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: STRIGGAwrote on 05.02.2010:[9.0] "Dass Chris Jericho ein begnadeter Wrestler und Performer ist, stand ja nie ernsthaft zur Debatte. Und wer das ernsthaft bestritten hat, hat einfach keine Ahnung. In seiner aktuellen Rolle als hyperarroganter und Intrigen spinnender Megaheel ist Jericho meiner Ansicht nach absolut angekommen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: novacanewrote on 03.02.2010:[10.0] "Im Moment wahrscheinlich der kompletteste Wrestler der Welt. Top Technik, unglaubliches Charisma und Micwork, dazu die Neuerfindung seiner selbst als weinerlicher, sich selbst überschätztender Heel - einfach großartig. Es macht jedes Mal Spaß Chris Jericho bei der Arbeit zuzusehen."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: spawnforeverwrote on 03.02.2010:[10.0] "wirklich einer der besten den die wwe zu bieten hat. man kann ihn einfach überall einsetzen, ob im main event oder in der midcard . seine mic skills sind auch hervorragend und ich glaube dass er dieses jahr wieder nach ganz oben kommt"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HBK-Xwrote on 02.02.2010:[10.0] "Weltklasse. Ich liebe seine Promos und im Ring auch super! Die beiden Fehden mit HBk waren der Hammer. Chris Jericho ist echt ein klasse Entertainer!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Xemnaswrote on 31.01.2010:[10.0] "Mein absoluter Lieblingswrestler. Super Techniker, super Entertainer Eine Fehde gegen Edge wäre jetzt für mich das größte"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Rated R Superstar EDGEwrote on 29.01.2010:[10.0] "Er ist wie ich finde der beste Wrestler den die WWE im Moment zu bieten hat. Außerdem hat er nach seiner Rückkehr mehr geleistet als alle Anderen in der Zeit. Zuerst der IC Titelgewinn dann die göttliche Fehde mit Shawn Michaels und die Zeit als World champion bei RAW. Danach eine weitere großartige Fehde mit Rey Mysterio und der erneute IC Titelgewinn gefolgt von einer tollen Tag Team Zeit mit The Big Show. Außerdem ist er super am Mic und im Ring. Das Einzige was stört ist sein wie ich finde schlecht außsehendes Outfit und das dümliche Program mit der DX. Langsam könnte sein Charakter wieder eine Auffrischung vertragen denn an dem Kram den er im Moment so redet hört man sich schnell satt. So genial der am Anfang auch war."
Rating: 10.0
Sentiment: 0.03418803418803418
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: tobiasthegreatone1wrote on 27.01.2010:[10.0] "Jericho erinnert mich extrem an HBK er ist einer der besten der WWE am Mic auf der selben Stufe wie HBK und im Ring auch. Jericho hat einfach eine geile Ausstrahlung ich hab ihn Life gesehen man spürt bei ihm diese Arrogant hei aber im positiven Sinn wenn er zb. ins Publikum schaut kommt so ein geiles Feeling rüber man muss ihm einfach 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RoHSupporterwrote on 24.01.2010:[10.0] "Jericho ist mMn der beste Worker der WWE. Bei ihm stimmt einfach alles: Gimmick, In-Ring, Mic-Skills. Jede Fehde 2009 von ihm schlug ein wie eine Bombe und er hat einfach nur eine 10 verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheROCKwrote on 22.01.2010:[10.0] "Chris Jericho ist mit Triple H und Edge der beste Heel des vergangenen Jahrzehnts. Seine Fehden brachten unzählige Klassiker hervor. Sollte es zum Match zwischen Ihm und Edge bei WrestleMania 26 kommen, verdient er auch den 11. Punkt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Pinguwrote on 18.01.2010:[10.0] "Tja wie ich es gesagt habe, als Heel rettete er sich selbst. Neben Orton im Moment der Top Heel in der WWE. Genial, und keiner hat den World Champion Title im Moment so sehr verdient wie Jericho. Im Tag Team mit Big Show sehr sehr gut"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Hu-Manwrote on 15.01.2010:[10.0] "Jericho ist einfach ein vollkommener Worker. Im Ring unglaublich talentiert und am Mic übertrieben unterhaltsam. Schön dass er wieder zurück zum Wrestling gekommen ist. Wegen solcher Worker lohnt es sich dann doch noch WWE zu verfolgen. Schöne Fehden zuletzt gegen Mysterio und HBK. Leider hat man ihn ins Tag Team mit Show gesteckt, aber jetzt geht es hoffentlich wieder voran..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Zonenbewohnerwrote on 14.01.2010:[10.0] "Wenn er die 10 nicht verdient hat, wer dann? The Lionheart hat mir in der WCW bereits gefallen. Dass Y2J dann zur WWF kommen musste war nur eine Frage der Zeit. In der oberen Liga ist er ganz oben angekommen und meines Erachtens nie zurück gefallen. Er wird dieses Jahr 40 und wird uns allen noch ne Weile erhalten bleiben. Dafür ist er am Mic und im Ring einfach zu gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jimpanse1980wrote on 13.01.2010:[10.0] "Anno 2007: Auch wenn ich Ihn nie wirklich mochte, verdient seine Leistung meinen Respekt. Wird aber leider nie mehr so gut sein wie früher. Auch seine Rückkehr wahr eine Enttäuschung, wie man den Fanreaktionen ansehen konnte... 2008: Chris Jericho ist jetzt neben Punk, Edge und einigen Weiteren der Grund warum ich noch WWE schaue und Smackdown die wahre Nr. 1 ist. Chris J. hatte den Zenit seiner Karriere hinter sich - ganz klar. Aber im Jahr 2008 hat er sich neu erfunden und ist besser denn je. Egal ob Promos, Matches oder anderen Konfrontationen, Jericho is god!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Unrated Superstarwrote on 13.01.2010:[10.0] ""Jericho langweilt, nervt und hängt nur bei Raw rum? " OMG - da spielt jemand nicht den massentauglichen Entertainer al'la Rocky. So what - Jericho ist erwachsen geworden! Darum haben sich auch sein Auftreten und seine In Ring-Skills verändert. Einer der besten Wrestler der Welt. Der erste Undisputed-Champion, und wie The Rock ein Gott am Mikrofon. Zudem noch ein hervorragender Wrestler und passabler Sänger!"
Rating: 10.0
Sentiment: -0.36057692307692313
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Basti1989wrote on 09.01.2010:[10.0] "Ein technisch extrem starker Wrestler mit einem fantastischen Mic-Work. Dazu noch privat anscheinend sehr symphatisch. Siehe Twitter. Wenn man hier keine 10 gibt, wann dann?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RatedRJuliwrote on 07.01.2010:[10.0] "Großartiger Heel. Großartiges Charisma. Großartiger Wrestler. 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mizisawesomewrote on 04.01.2010:[10.0] "Mein Vorbild - wrestlingtechnisch wie entertainmenttechnisch. Einfach nur ein genialer und lustiger Typ (JA! Auch AKTUELL GESEHEN! ) - WWE ohne Chris Jericho ist für mich undenkbar."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BlackXwrote on 02.01.2010:[10.0] "Einer der besten Worker im Ring und am Mic. Er ist zwar nicht in der Liga eines Undertakers zum Beispiel, da ihm die größe fehlt, aber macht diese durch eine Technik weg, die ihres gleichen sucht. Am Mic dazu noch einer der legendärsten Wrestler. Egal ob als Face oder Heel, Y2J weiß immer zu überzeugen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: -Sylar-wrote on 02.01.2010:[10.0] "Immernoch einer der Besten in der WWE. Voralem sein Heel-Charakter ist sehr ausgebaut, seine Promos sind immer top und seine In-Ring Fähigkeiten sind auch sehr gut. Er sollte finde ich, wieder eine Singles Karriere weiterführen und in den Main Event gepusht werden. Die Fehde mit der DX ist auch sehr langweilig bis jetzt. He is the best in the world at what he does :)"
Rating: 10.0
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: hatebreederwrote on 02.01.2010:[10.0] "Absoluter Weltklassemann. Mr. Irvine ist ein wirkliches Universalgenie: Begnadet im Ring, weltklasse Micwork, tolle Mimik und Gestik, kreativ und innovativ (sieht man ja an den Storylines, in denen er seine eigenen Ideen umsetzen durfte), Autor, Sänger, etc. Was will man mehr? Dazu ist er sich nicht zu Schade, durch Niederlagen jüngere Wrestler over zu bringen, was man nicht von jedem Main Eventer der WWE sagen kann. Chris Jericho ist meiner Meinung nach der beste Mann, den die WWE zu bieten hat, und es ist schade, dass er nicht noch den einen oder anderen World Title Reign mehr auf seinem Konto hat, denn verdient hätte er ihn allemal ;)"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Anti-Championwrote on 01.01.2010:[10.0] "Ein Spitzen Wrestler, hat mich schon zu WCW Zeiten mit seinen Promos zum lachen gebracht. Jericho for President äh World Champion."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NewGuywrote on 01.01.2010:[10.0] "Das Beste das im moment in dem Business rumläuft! Ne menge Erfahrung was Ring-Skills und Entertainment angeht und gute Charakterentwicklung!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Detrituswrote on 29.12.2009:[10.0] "Einer der Besten dieses Geschäfts. Was mich besonders an Chris beeindruckt ist, dass er sich nicht zu schade ist auch mal den Job für einen Wrestler zu machen, um diesen entweder zu pushen oder eine Fehde voranzubringen. Er hätte es mal wieder verdient in eine gute Single-Storyline gesteckt zu werden, wenn möglich als Heavyweight-Champion."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Telecinewrote on 26.12.2009:[10.0] "Ein außergewöhnlicher Wrestler und Entertainer. Er kann sowohl als Heel als auch als Face überzeugen und ist im Ring einer der besten der WWE Wrestler. Er kann den Submission-Style gehen und auch einige Highflying Moves (wie eben den Lionsault). Ich sehe ihn gerne im Ring und am Mic und gebe ihm eine 10 und die Thumbs up."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Big Daddy Swrote on 25.12.2009:[9.0] "Für mich einer der besten was die Arbeit am Mic angeht. Ich fänd es jedoch besser ihn wieder zum Face zu turnen, da das Heel Image seinen Fähigkeiten nicht entgegen kommt. keiner macht so gute Promos wie Jericho und dieses Talent geht verloren, wenn er jeden Freitag aufs neue 'Hasspredigten' halten muss."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: michiswrote on 24.12.2009:[10.0] "Am Mic einer der Besten, wenn nicht sogar der Beste. Auch im Ring vermag er zu überzeugen. Langfristig möchte ihn aber wieder als Single Wrestler im Kampf um den WWE Heawvweight oder den World Heaviweight Titel sehen. Er ist einer der ganz grossen der WWE und des Wrestlings überhaupt und ich hoffe, er bleibt noch uns noch einige Jahre erhalten."
Rating: 10.0
Sentiment: -0.07142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: element-41wrote on 22.12.2009:[10.0] "Jericho ist ein sehr guter Wrestler, und momentan der beste Heel in der WWE. Er ist am Mic fast unschlagbar. Ich finde es nur Schade, dass sich sein Wrestlingstil so stark verändert hat, seitdem er Heel ist. Ich vermisse den Lionsault, da er meiner Meinung nach einer der besten Signature Moves ist. Ich kann mich kaum noch daran erinnern, wann dieser Move das letzte Mal durch gegangen ist. Aber er ist halt einfach ein Gott, deswegen 10 Punkte!"
Rating: 10.0
Sentiment: -0.024999999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kenshin Uesugiwrote on 22.12.2009:[10.0] "Er war schon immer einer meiner Favoriten, das hat sich nie geändert. Wer was vom Wrestling versteht muss den Kerl einfach lieben. Er kann super wrestlen und dabei eine Matchstory erzählen. Reden, schauspielen, singen. Wenn die WWE so ein Gottegeschenk kriegt, warum setzt sie ihn nicht ein. Der Mann könnte als World Champion was weiß ich alles tolle anstellen. ABER immer wieder wenn es soweit ist, dann kracht die WWE ihm dazwischen. ABER nichts kann diesen Mann zerstören oder aufhalten. Auf jedes Tief folgt ein riesen Hoch. Nun endlich lässt man ihn frei Hand, wunderbar. Und schau an wer hätte das gedacht es funktioniert. Die Qualität seiner Arbeit spricht für sich. Erst wird er World Champion, dann verleit er den IC Title wieder Glanz und holt Rey aus sein Tal heraus. Jetzt macht er die Tag Team Division wieder flott. Und das mit einen guten Big Schow, der nach einigen Debacklen wieder gut da steht. Er ist sich nicht zu Schade neue Worker over zu bringen. Er ist der MVP, der WWE. Eigentlich müsste die WWE ihn als Belohnung blad wieder zum World Champion machen. Rein von der Logik her. Den das würde der baldigen Fehde zwischen ihm und Edge den würdigen Rahmen geben."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kuschkowrote on 22.12.2009:[2.0] "Sorry aber ich finde Chris ist ferngesteuert. Angepasst, arrogant, einfallslos. Glücklicherweise sind Geschmäcker verschieden."
Rating: 2.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: chryzzwrote on 21.12.2009:[10.0] "Neben Edge mein absoluter Lieblings mainstream Wrestler. seid seinem Heel turn 2008 finde ich ihn noch interesannter"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: gunniwrote on 18.12.2009:[9.0] "Ich glaube er könnte sogar aus nem Betonklotz ein gutes Match oder ne gute Promo rausbekommen!  Der ist einfach genial!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: richardfliehrwrote on 18.12.2009:[10.0] "Ist für mich einer der masstäbe bei der punkte vergabe wenn ein worker nicht so gut oder besser ist al chris bekommt er keine zehn punkte! Und da gibt es nur wenige!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: nwowrote on 16.12.2009:[10.0] "Guter Wrestler, Gutes Mic-Work, sehr charismatisch. Mein Lieblings-Jericho-Gimmick war allerdings das Heel -Gimmick aus der WCW. Die Geburt der Jerichoholics, die bescheuerte Frisur, "Monday Night Jericho", das One-Man-Security-Team Ralphus, ... fand ich einfach genial. Dazu noch die klasse Fehde mit Malenko. Schade das sich all das in der Undercard abgespielt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GabberGizmowrote on 13.12.2009:[8.0] "Für mich ist Chris Jericho einer der besten Wrestler. Er macht im Ring und ausserhalb des Ringes ne gute Figur.."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheBastion90wrote on 12.12.2009:[10.0] "Einer der besten Redner, Techniker und begabtesten Wrestler der WWE. Sowohl als Face als auch als Heel gefällt er mir super und er hat den Sprung in den Mainevent wirklich mal wieder verdient. Natürlich ist er immer im Rennen, doch man nutzt seine Kapazitäten nicht genug aus. Naja, trotzdem ein sehr guter Wrestler!  Mit Abstand der derzeit beste Wrestler im gesamten WWE Roster!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheJackhammerwrote on 12.12.2009:[9.0] "Über diesen Mann gibt es fast gar nichts zu bemängeln. Im Ring klasse! Wobei er früher noch besser war, aber schließlich wird man ja auch älter und das Wrestling ist ziemlich belastend für den Körper. Beste Beispiele sind Shawn Michaels und The Undertaker. Am Mic ist er zur Zeit mit Sicherheit der Beste und einer der besten den die WWE je hatte. Es gibt nur EINEN, der am Mic noch besser war. Den Namen brauche ich wohl nicht zu nennen. Dennoch reicht es nicht für die 10 Punkte, obwohl ich einer seiner Jerichoholics bin. Und zwar weil mir sein aktuelles Gimmick und auch sein Outfit nicht gefällt. Jericho in kurzen Hosen? NEIN! Aber das Hauptproblem ist das Gimmick. Er spielt es zwar perfekt, aber der "King of the World" kommt an den "Ayatollah of Rock'n'Rollah" und den "Y2J" einfach nicht an. NEVER ... EEEEEEEEVER! Außerdem möchte ich wieder das Highlight Reel haben. Das ist Unterhaltsamer als eine 3 Stunden-Special-RAW-Ausgabe. Er kann jederzeit, egal ob als Face oder Heel, eine ganze Halle gegen sich aufbringen oder auf seine Seite holen. EINFACH GENIAL! EINFACH Y2J!"
Rating: 9.0
Sentiment: 0.6103515625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LebendeLeichewrote on 09.12.2009:[7.0] "Total überbewertet. Aber seine früheren kämpfe waren ganz gut und jetz ist er auch nicht sehr viel schlechter aber ein unterschied ist zu merken."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: downtown2wrote on 09.12.2009:[9.0] "Schon ein wenig überbewertet. Man muss schon genau hinsehen und hinsehen wollen, um bei Jericho überhaupt einen Makel finden zu können. Er ist ein einzigartiger Performer, aber im ersten Karriereabschnitt war seine Show häufig etwas unfreiwillig komisch. Und auch wenn er gut bis sehr gut kämpfen kann, wirkt er doch manchmal schwerfällig. Dazu kommt die etwas kompakte Erscheinung, die manchen Move unkoordiniert wirken lässt. Dies sind alles jedoch nur Marginalien, die ihn höchstens einen Wimpernschlag von den Größten in diesem Geschäft distanziert. Neun Punkte für einen fast perfekten Wrestler."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Loeviewrote on 04.12.2009:[10.0] "Jericho ist (mit Edge) der beste in der WWE. Super Mic Work, Super Skills und egal was er sonst noch macht: Alles super!  Er kann ruhig noch die Tag Team Belts aufwerten, denn er hat schon genug Standing und ist auch ohne Titel immer Over."
Rating: 10.0
Sentiment: 0.3611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mister MOwrote on 01.12.2009:[10.0] "Schlicht und Einfach: Was er anfässt wird zu Gold."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Dendelwrote on 26.11.2009:[10.0] "Jericho ist Entertainment, er ist im Ring perfekt. Kann ihm stundenlang zugucken und vor allem zuhören."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: kratzmichvielwrote on 24.11.2009:[10.0] "Momentan der stärkste Heel, der stärkste am Mic und allgemein vom wrestlerischen Können her - das stärkste Gesamtpaket in der WWE!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: chaoswrote on 23.11.2009:[9.0] "Super Wrestler der eigentlich alles kann, doch die Heel Rollr liegt einfach am besten."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mick Funkwrote on 23.11.2009:[10.0] "Zur Zeit der beste Heel, den die Company zu bieten hat. Nach seinem erfolgreichen Ausflug in die Tag Team Szene sollte es jetzt wieder in Richtung World Title gehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Papa Popanzwrote on 23.11.2009:[10.0] "Der Typ ist jemand der im Ring, am Mic und auch sonst aus Scheiße Gold machen kann Thumbs up"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Calgary Kidwrote on 23.11.2009:[9.0] "Jericho hat ein wenig vom alten Glanz verloren, was nicht unbedingt an ihm sondern am Booking der WWE liegt. Dennoch ein Ausnahmetalent im Ring und einer der größten am Mikrofon. Gäbe es mehr Worker wie Jericho wäre die WWE derzeit sicherlich interessanter."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MrSmackdownwrote on 22.11.2009:[10.0] "Der beste der Welt indem was er tut! Wenn ich es mal so übersetze, nach der Rückkehr 2008 nochmal um das dreifache gewachsen, nach der Vergangenheit, das muss man erstmal schaffen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Prince of darknesswrote on 22.11.2009:[10.0] "Er ist einfach einer der besten Wrestler im Buisniss und außerdem auch gut am mic. was will man mehr?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Killerswitchwrote on 22.11.2009:[9.0] "Ich gebe Chris Jericho "nur" 9 punkte. Zulezt durfte er nurnoch die selben Phrasen dreschen und mir gefällte das Team mit Big Show nicht. Trotzdem ist er nach wie vor einer der besten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: asraelwrote on 14.11.2009:[10.0] "Chris Jericho ist der kompletteste Wrestler den das Business jemals gesehen hat. Er besitzt eine einzigartige, gewaltige Promo-Fähigkeit, ist ein perfekter technischer wie auch außerordentlicher High-Flyer und kann mit dem Publikum spielen und kommunizieren wie kein Zweiter. Zudem besitzt er dieses "GEWISSE ETWAS", das die Leute (sollten sie Jericho auch nicht mögen) nicht vergessen. Schon seit ich die WWE wie auch die WCW verfolge, ist Jericho mein absoluter Lieblingswrestler. Ob Heel oder Face, Jericho konnte immer überzeugen, auch wenn die Fans ihn eher als Heel annehmen. Seit seinem Heel-Turn im Juni 2008, veränderte Chris seinen Stil in vielerlei Hinsicht (Outfit, Attitüde, wie auch das klassische Mattenwrestling nahm er in sein Repertoire auf), was mich ebenso überzeugen konnte. Ich hoffe, die WWE setzt ihn in den nächsten Jahren (er ist ja erst 38, da kann noch viel kommen) noch klug ein, denn solch ein Potential das nach 18 Jahren Pro-Wrestling immer noch in Jericho schlummert, sollte man nicht in der Mid-Card vergeuden, sondern in den Main Events von Wrestlemania auskosten."
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Undertaker 4 everwrote on 11.11.2009:[10.0] "Wenn Jericho kein guter Wrestler ist, wer dann? Nicht nur, dass er über eine gute Technik und gute Moves verfügt, sondern auch gelungende Statments abliefert und seine Rolle als Heel wirklich herrausragend gut spielt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Ultrakaoswrote on 06.11.2009:[10.0] "Chris Jericho ist ein TOP Wrestler. Highflying und Technik kombiniert. Er war als Face nach HBK der beste und als Heel ist er auch Top. Meiner meinung nach die Kompaktheit in Person. Aufjedenfall HoF kandidat"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BrahmaBullwrote on 05.11.2009:[10.0] "Chris Jericho ist einfach der Wrestler den eine Liga braucht... Ausstrahlungskraft 10*, Mic-Work 10*, Talent 10* ... nicht umsonst erster Undisputed Champion in der WWE Geschichte und auch so können ihn nicht viele etwas vormachen an Titelgewinnen!  Der "Ayatollah of Rock'n'Rollah" verdient einfach nichts schlechteres als 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Orton7wrote on 29.10.2009:[10.0] "Einer der ganz großen und für mich jetzt schon eine Legende... Egal ob als Face oder Heel, er spielt jede Rolle nahezu perfekt und ist auch im Ring einer der Besten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: gangster316wrote on 28.10.2009:[4.0] "Früher war er einfach besser. Und diese null Bock Einstellung nervt!"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mr Money in the bankwrote on 26.10.2009:[10.0] "Wenn man eine Top 10 der besten Wrestler aller Zeiten aufstellen möchte, kommt man an Chris Jericho einfach nicht vorbei, selbst wenn man ihn unsympathisch oder dergleichen findet so muss man doch zugeben können dass er einer der besten Wrestler aller Zeiten ist. Er ist ein Meister am Mikrofon, er ist unterhaltsam aber zugleich auch sehr direkt. Er spricht die Dinge aus die viele Fans im Hinterkopf haben, besonders schön kam dass in seinen Promos gegen die Legenden rüber. Als worker ist Jericho ebenfalls einer der besten, er kann schlechtere worker zu einem guten Match tragen und mit guten workern hat er herausragende Matches. (Siehe Jericho Vs Mysterio). Auch momentan im Tag Team mit Big Show gefällt er mir sehr gut, er ist wirklich ein allrounder."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: teekay86wrote on 25.10.2009:[9.0] "Ich war schon zu WCW-Zeiten ein Jerichoholic. Er überzeugt sowohl im Ring als auch am Mic auf der ganzen Linie. Inzwischen zeigt er sich wohl obendrein noch als besserer Booker als es die meisten WWE Schreiberlinge sind."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 1234wrote on 25.10.2009:[10.0] "Unbestritten das Beste, was die WWE zu bieten hat, auch wenn ich nicht damit rechne, dass Jericho je einen längeren Titelrun bekommt. Er hat schon immer den Zahn der Zeit getroffen. Vom langhaarigen Fanliebling bis hin zum jetzigen Charakter: Alles was Jericho anpackt, wird zu Gold!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: wwe cagematchwrote on 24.10.2009:[10.0] "Was kann mann zu Chris Jericho denn nur schreiben. Er ist einfach GENIAL seine Promos sein Mikwork seine Technik einfach alles er ist sehr erfolgreich und er ist ein"Future Hall of Famer"."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Azarothwrote on 24.10.2009:[9.0] "Y2J ist unbestritten einer der Besten, die das Business zur Zeit zu bieten hat. Im Ring ist er mit fast jedem Gegner zu guten bis sehr guten Matches fähig, und am Mic liefert er regelmäßig solide bishin zu legendärer Arbeit ab. Aber dennoch finde ich, dass es mittlerweile an der Zeit ist, sein Gimmick etwas(! ) zu tweaken. Damit meine ich nicht, dass er turnen soll, vielmehr wünsche ich mir, dass sein Charakter neue Züge bekommt, denn erste, wenn auch leichte Abnutzungserscheinungen weist das Gimmick mittlerweile auf."
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: PhenomaneloneMjwrote on 23.10.2009:[10.0] "Hammer am Mic und auch seine Ring Skills sind klasse einer der besten wrestler der Welt und im gegensatz zu einem HBK, HHH oder Cena nicht einer der seinen Einfluss ausnutzt um ständig im Mittelpunkt zu stehen und junge stars die Pushs zu versauen um seinen Status nicht zu verlieren.. was wäre WWE nur ohne Y2J!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Saschwrote on 23.10.2009:[10.0] "Toller Schauspieler toller Wrestler und soll hinter den Kulissen mit für den Aufbau junger Superstars stehen. Hat gute Einfälle soviel ich weiß ist Taboo Tuesday ein Einfall von ihn."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: THE GAME 4-EVERwrote on 21.10.2009:[10.0] "Hat es geschafft ein verpatztes Comeback zu drehen. Schaffte dadurch den für 2008 interresantes Charakter seiner Karriere und ist heute immernoch interresant. Mehr Mic Work und Ausstrahlung kann ein normaler Wrestler schon nicht mehr haben. Dazu einer der besten Pro Wrestler der heutigen Zeit, der auch die Veranlagung besitzt mit schlechten Wrestlern normale Matches zu zeigen und mit guten Wrestlern immer das MotN zu zeigen. Einfach ein Pfeiler der WWE."
Rating: 10.0
Sentiment: -0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Triple Awrote on 16.10.2009:[10.0] "Chris Jericho hat durch seinen Heelturn unglaublich viel Momentum mitgenommen, das jedoch jetzt ein bisschen Schaden nimmt durch Jobben für Guest Host bei RAW. Früher wie heute ein guter Promokünstler als Face als Heel, er hatte legendäre Promos ("Master of 1004 Holds", "If you smell what Y2J is cooking" und auch seine neuen Promos). Im Ring ein ganz großer. Früher hat er die Walls, die leider jetzt schwächer verkauft werden, immer genial angesetzt, heute ist er ein wenig gebräunter, aber hat auch durch Matches gegen Rey Mysterio bewiesen wie gut er ist. Leider wird er nie als Topstar eingehen (wie z. B. HHH, Cena, Rocky, Austin). Aber er ist wirklich einer der Besten, vielleicht sogar der beste Heel zur Zeit und somit "the best in the world at what he does". Zu dem auch ein witziger Typ außerhalb des Wrestling, der geniale Sprüche wie z. B. "Shut the HELL up" oder "ASK HIM ! " im Wrestling prägte. Er ist auf jeden Fall einer der Kings of my Wrestlingworld."
Rating: 10.0
Sentiment: 0.3846153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: reiminhowrote on 14.10.2009:[10.0] "Jericho ist einfach unglaublich, er kann sowohl am Mic als auch im Ring zu 100% überzeugen. Hat es zu einem der Größten in der WWE geschafft. Er überzeugt einfach in jeder role, egal ob als face oder als heel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Aquifelwrote on 12.10.2009:[10.0] "Top am Mic, top im Ring, genialer Heel und wertvoll, bei allem, was er anpackt. Sicherlich in der Tag Division vor einer schweren Aufgabe, aber selbst die erledigt Jericho mit Big Show besser als es die regulären Tag Teams der WWE könnten."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BoeserLobowrote on 05.10.2009:[9.0] "Für seine Gewichtsklasse mit optimaler Nutzung seiner Möglichkeiten. Absolut genial am Mic (sowohl Heel als auch als Face). Hat einige Moves in WCW und WWF eingeführt, welche zu dieser Zeit im amerikanischem Wrestling noch nicht Standard waren (z. B. Springboard-Sprung nach draussen)."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DZShowOffwrote on 29.09.2009:[10.0] "Der wohl derzeit Beste Heel in der WWE. Seine Promos sind göttlich und im Ring ist er klasse, was anderes als 10 Punkte zu geben wäre Schwachsinn."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KASHwrote on 26.09.2009:[10.0] "Mein absoluter All-Time favourit. Der perfekte Performer aus meiner Sicht und trotzdem nicht ins tiefe Weltall der Überegoisten abgetaucht, wie viele andere. Skillmäßig heute immernoch gut dabei. Der neue Charakter ist vielleicht nicht ganz so toll wie Y2J, aber auch seine neue Rolle verkörpert er perfekt. Er hat sich weiterentwickelt und das nach so vielen Jahren im Buisness. Charisma, Promo-Gott , Ring skillz... was soll man denn noch haben ?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: lenny1910wrote on 23.09.2009:[10.0] "Im Moment der beste Heel der WWE. Auch wenn man sagen könnte dass seine Promos in letzter Zeit wiederholen finde ich sie genial. Außerdem sehr gut im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Basket Casewrote on 21.09.2009:[10.0] "Chris Jericho ist seit seiner Fehde mit Shawn Michaels wieder ganz oben angekommen und das obwohl er größtenteils aus dem Titelgeschehen rausgehalten wird. Er hat die besten Fehden der letzten 1, 5 Jahre gehabt. Und jetzt im Team mit Big Show ist er weiterhin richtig klasse. Der beste Micworker aktuell und im Ring ebenfalls einer der besten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Peepheadwrote on 18.09.2009:[10.0] "Ein Mann, der alles durchgemacht hat. Ein Mann, der Bücher geschrieben hat. Ein Mann, der viele Verletzungen kurieren musste. Ein Mann, der immer wieder neu überrascht. Ein Mann, der die besten Promos hält. Ein Mann, dem das Gold um die Hüften angewachsen ist. Chris Jericho. Wer sonst? Der beste Heel Smackdown's neben Edge und ganz nebenbei der Teil der Unified Tag Team Champions."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DHS aka Iceman Unleashedwrote on 17.09.2009:[10.0] "Als Chris Jericho zum Heel wurde und sein Y2J Gimmik niederlegte hatte ich teilweise Angst das dies seiner Karriere nur schaden könnte. Doch Chris Jericho hat seine Heel Qualitäten besser denn je dargestellt und wurde im letzten Jahr gerecht "Superstar of the Year". Um diesen Titel auch 2009 zu erreichen fehlt ihm eigentlich nur noch eine Große Titelfehde. Gegner mit dem Undertaker, Batista, Rey Mysterio, CM Punk und Co. gebe es ja genug. Für mich ist Chris Jericho der wohl beste Wrestler im WWE Roster sowohl im Ring als auch am Mic!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: mongowrote on 14.09.2009:[10.0] "Y2J vereint grandioses Wrestling mit genialen Promos, wie kein Anderer. Einfach grandios!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DirtiestPlayerwrote on 12.09.2009:[10.0] "Chris Jericho überzeugt mich auf ganzer Linie. Im Ring, Charisma und perfekte Promos. Ganz klar 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Gialikesashleyverymuchwrote on 10.09.2009:[9.0] "Hervorragender Wrestler, verkörpert sowohl Faces als auch Heels glaubhaft und überragend. Einer meiner Lieblinge"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ghostwrote on 10.09.2009:[9.0] "Klasse. Respekt für was er in seiner Karriere schon alles erreicht hat. Fantastische Charakter-Ausrichtungen, Stories und Fehden, ist charismatisch, technisch versiert, intelligent und leidenschaftlich bei der Sache. Nicht ganz 10 weil mir seine jetzige monoton-kalte Heel-Charakter-Ausrichtung nicht ganz so gut gefällt, auch wenn es durchaus unterhaltsam sein kann, und gerade das neue Gespann Jericho/Big Show den Tag-Titeln wieder eine besondere Bedeutung zuspricht ists dann doch wieder klasse. Ein ganz kleines bisschen overrated ist er meiner Meinung auch, denn soooo ein toller Schauspieler ist er nun auch wieder nicht. Deshalb satte 9 Punkte, (noch) nicht die ganzen 10."
Rating: 9.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Uzuwrote on 07.09.2009:[10.0] "Einer der besten Wrestler der Neuzeit. Geniale Matches und tolles Micwork. Macht mit die besten Promos und ist sowohl als Heel als auch als Face einfach perfekt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SmartyGirl13wrote on 06.09.2009:[9.0] "Chris Jericho ist nicht nur im Ring spitzenklasse (siehe Lionsault, Codebreaker, Bulldog und den Elevated Boston Crab, auch bekannt als Walls of Jericho. ) auch seine Micskills haben was für sich. Das sah man bei seinem Debüt 1999 und bei seinen Wortgefechten mit The Rock."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Stelziwrote on 27.08.2009:[10.0] "Unglaubliches Charisma, bester Worker am Mic, sehr fanfreundlich, sehr glaubürdiger heel u. face, allrounder, unterstützt junge Wrestler auf dem Weg zum Superstar, the best in the world"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Turboladerwrote on 26.08.2009:[10.0] "Als Heel finde ich ihn klasse, kein anderer bekommt die Massen so aufgehetzt wie er. Er spielt seine Rolle richtig gut und hasserfüllt, so muss ein guter Heel sein. Als Face finde ich ihn zwar nicht so gut, wie als Heel, aber weiß dennoch zu überzeugen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: derBosswrote on 23.08.2009:[10.0] "Eindeutog einer der besten Wrestler in der WWE. Seine Matches und Promos sind weltklasse und er versteht es junge Stars aufzubauen. Meiner Meinung nach der absulute Top Heel der WWE."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Medeawrote on 16.08.2009:[4.0] "Leider wiederholt sich Jericho seit zwei Jahren nur noch. Er ist ein wenig aus der Form geraten, was seinem Wrestlingstil nicht eben gut getan hat und bietet leider keine überraschende oder auch nur gute Show. Ich vermisse ihn nicht, wenn er mal nicht auftritt."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Zizouwrote on 14.08.2009:[8.0] "Hatte Mitte/Ende 2008 seine beste Zeit in der WWE überhaupt. Die Combo Big Show / Jericho gefällt mir bisher nicht so recht. Was allerdings positiv festzuhalten ist, ist die Aufwertung für die Tag Titel!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Amurebkuwrote on 12.08.2009:[10.0] "Hat mich schon immer überzeugen können. Einfach ein toller Wrestler und super Entertainer. Super trifft es da nicht wirklich. Ein absolut WAHNSINNS ENTERTAINER! Grandioser Superstar der es weiß immer wieder zu überzeugen und zu überraschen."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: risktakerwrote on 12.08.2009:[10.0] "@ bret 82: Du sollst ihn ja auch hassen da er in den Shows ein Heel (Bösewicht) ist. Das man Jericho so schön hassen kann zeigt wie gut er seine Rolle spielt. Im Ring immer sehr unterhaltsam und am Mic bringt er das was er sagt sehr authentisch und glaubhaft rüber."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Woerpwrote on 12.08.2009:[10.0] "Jericho ist ein Wrestling Gott. Jericho ist ein Booking Gott. Er ist perfekt für dieses Buissness, und er ist einer meiner All Time Top 5."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jinxwrote on 09.08.2009:[10.0] "Der Beste! Ob im Ring/am Mic/bei Promotion-Terminen - der Mann hat`s einfach drauf. Der geborene Entertainer. Er schlägt die anderen Heels um Längen. Es spricht für ihn, dass er nach dem Draft 2009 zu Smackdown kam und innerhalb von drei Wochen und einer Hand voll Promos Edge den Rang als Top-Heel abgelaufen hatte. Jericho is God!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: real americanwrote on 09.08.2009:[10.0] "Ein super Entertainer und Gott am Mic, egal ob witzig wie früher oder nun ernsthafter, auch im Ring immer gut anzusehen, ein tolles Gesamtpaket eben, es ist allerdings eine Schande, dass er (warum auch immer) nur selten über den IC/ US- Titelbereich heraus gekommen ist, da er den Mainevent immer bereichert."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: D00mwrote on 30.07.2009:[10.0] "Wie Y2J immer selbst sagt: Er ist der Beste in dem was er tut!  Als Heel noch 3 mal geiler als sonst. Weiter so! =D"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Nahkampfsockewrote on 30.07.2009:[5.0] "Ich mag ihn nicht sonderlich. Klar, er ist gut im Ring, ein toller Heel und hat gute Micskills, doch als Person ist er mir einfach unsympathisch."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Brahma Bullwrote on 26.07.2009:[9.0] "Würdiger Halter beider Gürtel-WCW und WWF-und somit erster Undisputed Champion!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Felice-del-mondowrote on 24.07.2009:[9.0] "Zur Zeit 2t bester Heel nach Edge. 2008 klar die Fehde des Jahres gegen Michaels!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Woo Woo Woo Guywrote on 18.07.2009:[10.0] "Wenn Chris Jericho nicht der Star ist..... Dieser Mann ist einfach genial. Ich finde keinen Heel besser als Jericho. Seine Matches sind verdammt gut, seine Werke am Mikrofon ebenfalls. Ich wüsste nicht wieso er die volle Punktzahl nicht verdient hätte. Ich hoffe er bleibt der Wrestlignwelt noch lange in dieser Topform erhalten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Desperadowrote on 06.07.2009:[10.0] "Ein Wrestler mit unglaublich feiner und geschliffener Technik. Versaut im Grunde nie einen Move und kann auch aus weniger guten Gegnern ein ordentliches Match rausholen. Für mich ist Jericho also nach Shawn der zweitbeste Wrestler der WWE. Doch das ist nicht alles, was ihn zu einem absoluten Vorzeigeworker macht. Sein extrem starkes Micwork und vorallem seine Heeldarstellung stellen 95% aller Akteure in den Schatten. Jericho Promos haben nicht nur einen hohen Standart, sondern können jedesmal wieder begeistern. Zu all diesen Eigenschaften besitzt Y2J auch noch ein extrem gutes Gespühr für Storylines, was er in seiner Fehde mit Rey abermals unter Beweiß stellen konnte. Schade, dass er nie an der absoluten Spitze der Company stehen wird, aber dafür wird er immerhin von fast allen Fans mit fortgeschrittener Fachkenntnis geliebt."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Main Eventwrote on 06.07.2009:[10.0] "Das mache ich zwar ungern (da ich der 667 Insasse bin der bewertet. ^^), aber Jericho ist ein wahrer Gott. Sowohl am Mikro als auch im Ring. Da sind 20 Punkte sogar schon zu wenig. :)"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Juvicidewrote on 02.07.2009:[10.0] "Volle 10 Punkte, insbesondere dafür, was er mit Shawn Michaels und Rey Mysterio geleistet hat. Exzellenter Micworker und sehr guter Wrestler. Schade, dass er nie den absoluten Durchbruch zum Maineventer geschafft hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Gustelwrote on 29.06.2009:[10.0] ""Stephanie you are the Breast". Früher wie heute großartig am Mic und im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Heatwrote on 29.06.2009:[10.0] "Mittlerweile garnicht mehr wegzudenken, genialer Heel, der weiß, wie er sich zu verhalten hat und wie er was rüberzubringen hat. So ist es kein Wunder, dass ein einst geliebter Mann zum meistgehassten Mann der WWE wird. Ach gut wrestlen kann er auch noch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Babuswrote on 23.06.2009:[9.0] "Ich kann mich bis heute mit der Neuausrichtung seines Charakters noch nicht so völlig anfreunden. Sicherlich war es notwendig da etwas zu verändern und gemessen an der größeren Aufmerksamkeit, die Jericho nun bekommt, hat es seinen Zweck ja auch nicht verfehlt. Aber während ich Jericho am Mic weiterhin für einen der besten in der WWE halte (auch wenn es meiner Meinung nach weit übertrieben ist, wie teilweise jede Furz von ihm als hochinnovative Promo abgefeiert wird), springt mit seinem neuen In-Ring-Stil der Funke auf mich nicht so völlig über. Seine Matches haben immernoch ein überdurchschnittliches Niveau, aber wenn sie vorbei sind, erhascht mich einfach mittlerweile zu oft ein "Da war doch mehr drin"-Gedanke - auch bei den großen PPV-Matches. Darum werte ich Jericho nun (vielleicht nur vorerst) um einen Punkt ab."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Cpt Dave Charismawrote on 19.06.2009:[10.0] "Der Ayattolah of Rock'n'Rolla... einfach ein Gott..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Neuhofwrote on 08.06.2009:[10.0] "Gottgleich. In seiner Heel-Rolle rettet er uns doch noch, und zwar vor fader "Unterhaltung". EDIT: Jericho ist lt. WWE-Titelhistorie "nur" 9facher IC-Champ, was auch bei Smackdown! letztens des öfteren zur Sprache kam."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: mysterioflowrote on 07.06.2009:[10.0] "Einer der besten in der WWE. Die aktuelle Fehde mit Rey gefällt mir (bis jetzt)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Marcywrote on 02.06.2009:[10.0] "Nach seinem missglückten Comeback und der genialen neuen Charakterauslegung komme ich bei ihm einfach nicht um die Bestnote herum."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Soapywrote on 27.05.2009:[10.0] "Der Heelturn letztes Jahr war das Beste, was Jericho passieren konnte. Spielt die Rolle super. Zu Recht Superstar of the Year ;)"
Rating: 10.0
Sentiment: 0.29166666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BaptisteZorGwrote on 23.05.2009:[10.0] "Für mich momentan bzw. seit seiner Rückkehr der mit abstand beste Wrestler im WWE Roster. Im Ring sowie auch am Mic grandios - Raw is Jericho... äh ja. Seine Promos bislang waren erste Sahne."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: nWoWolfpacwrote on 12.05.2009:[10.0] "Er ist einfach nur genial. Zur Zeit der beste Heel der WWE. Zeigt immer gute Matches, hat mir aber am besten in der WCW und zu seiner Anfangszeit in der WWF gefallen. Das einzige was nervt ist: "Hypocrite" das wort geht mir langsam auf den sack, er kommt keine promo momentan ohne dieses wort aus."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LeChefwrote on 07.05.2009:[10.0] "Jericho ist einfach ne klare 10!  Top im Ring MEGA Geil am Mic. Was will man mehr?"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: REYMVPwrote on 03.05.2009:[10.0] "Der Superstar schlechthin! Er ist jetzt noch besser als Früher. Am Mikrofon ist er einer der besten neben Edge. Und im Ring ist er auch gut!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Eggywrote on 02.05.2009:[10.0] "Chris Jericho hat ganz klar 10 Punkte verdient. Er ist einer meiner absoluten Lieblingsstars. Er ist ein großartiger Wrestler im Ring und seine Matches sind immer wieder schln anzusehen. Am Mikrofon ist er sogar noch besser. Sowohl damals als Y2J, the Ayatollah of Rock'n Rolla als auch heutzutage als Heel. Egal welche Rolle er einnimmt er ist unterhaltend und als Heel ist er zur Zeit einfach nur klasse und überzeugend. Seit langer Zeit war für mich Edge der Heel No1, aber seitdem Chris Jericho geturnt hat ist der Platz des No1 Heels in der WWE stark umstritten."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BlackPhoenixwrote on 27.04.2009:[9.0] "Erfindet sich selbst immer wieder neu ist dabei immer Authentisch macht gute Promos. Nur seine In-Ring Skills überzeugen mich nicht immer. Ansonsten Top!"
Rating: 9.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Blackbirdwrote on 26.04.2009:[10.0] "Jericho gehört zu meinen Lieblingswrestlern und seine Fähigkeiten im Ring und vor allem vor dem Mikrofon sind nicht von der Hand zu weisen. Vor allem als Heel in letzter Zeit gefällt er mir richtig gut, auch wenn es mich zuweilen etwas nervt, dass in jeder einzelnen seiner Auftritte mit Mikro irgendwann das Wort "Hypocrite" in Verbindung mit den Fans fällt. Ansonsten wohl einer der besten in der WWE, deshalb bekommt er auch eine glatte Eins. Update: Okay, meine Prioritäten haben sich geändert. Ich mag Jericho mittlerweile echt gern. Und das in der kurzen Zeit. Na, egal ^^"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: KingofKings1991wrote on 26.04.2009:[10.0] "Ich fand es sehr gut das Y2J zu Smackdown gedraftet wurde, denn Smackdown braucht einen guten Wrestler wie ihm. Ich hoffe aber mal das die WWE ihm mal einen weiteren Titel gönnt, das wäre nicht schlecht ihn wieder mit einem Großen Titel zu sehen. Eine Neue Fehde wäre auch nicht schlecht. Hoffe nur das die WWE ihn net bei Smackdown versauern lassen oder ähnliches"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: alkoholiKAwrote on 20.04.2009:[10.0] "Y2J is God! ein perfekter Entertainer. am Mic absolut spitze, im Ring ausgezeichnet. Früher waren seine Promos zwar unterhaltsamer, aber heute als Heel sind diese ernsthafter und überzeugender wie früher. Seine Rückkehr fand ich eig recht unterhaltsam (bis auf die winzige, richtig schlechte Storyline mit JBL), aber seit seinem Heel-turn wieder in absoluter Bestform. Sicherlich einer der besten Heels der WWE. Zudem ist ihm etwas gelungen, was nur ganz ganz wenigen gelingt. Nämlich sich von Grund auf neu zu erfinden. Keine Frage absolute Bestnote."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The-Game91wrote on 01.02.2009:[10.0] "Jericho weiß als Heel und als Face zu überzeugen. Seine Promos sind Genial und am Mic ist er grandios."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RhinoRaineswrote on 23.01.2009:[10.0] "Gefällt mir zum ersten Mal seit seiner Rückkehr zu WWE. Er spielt den schmierigen Heel ausgezeichnet und im Ring kann ihn keiner was vormachen! Klare 1!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ShakDragoonwrote on 19.01.2009:[10.0] "Einer meiner Alltime-Favorites! Einfach ein Total-Package... schön, dass er wieder zurück ist, allerdings hätt' ich ihn lieber bei TNA gesehen. Ich muss sagen: Hut ab! Sein neues Gimmick und Auftreten überzeugen auf ganzer Linie. Daumen hoch!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kankurowrote on 18.01.2009:[10.0] "Verdammt unterhaltsam, sowohl im Ring als auch am Mic. Sein Heel-Gimmick bringt er wunderbar herüber. Meine persönliche Nr. 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Yunmielwrote on 12.01.2009:[10.0] "Ich bewerte mal den früheren Jericho... der verdient schon 10 Punkte. Momentan ist sein Gimmick aber nicht so~ passend und er kann dieses Ernstere nicht so gut rüberbringen... finde ich. (Und die kurzen Hosen sind schlimm, nebenbei bemerkt)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Peiski Bombwrote on 11.01.2009:[8.0] "Am Mikro einer der besten, im Ring auch gut. Das neue Gimmick hat irgendwie was!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: El Reywrote on 11.01.2009:[10.0] "Einer der vielseitigsten Worker im Business und mit seinem Charisma und Skills hält er die richtigen Wrestlingfans bei der Stange. Schade dass er als Champion nicht so erfolgreich ist wie andere weniger talentierte Wrestler. Für mich ist er einer der besten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Fabi89wrote on 24.12.2008:[10.0] "Im Ring sehr stark. Am Mic glänzend. Und seit seinem Heel-Turn nun auch mit einem überragendem, unverbrauchten und glaubhaften Gimmick. Mit das Beste, das die WWE im Moment zu bieten hat. Hätte ein noch viel besseres Standing verdient, als er inne hat."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TRIPLEH2008wrote on 14.12.2008:[9.0] "Er ist einer der Topstars nur ein Punktabzug wegen dem neuen Ringoutfit."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Tomkowrote on 11.12.2008:[10.0] "Wenn ich hier lese, das er sein Mic-Work verbessern sollte oder das er zu arrogant sei, da kann ich nur mit dem Kopf schütteln(was für Noobs befinden sich im Cage? ). Dieser Mann hat über Jahre hinweg stets herausragende Leistung im Ring und am Mic gebracht, sodass er sich eigentlich bei richtigem Booking zum Megastar hätte entwickeln müssen. Doch dies blieb ihm leider verwährt. Rein Mic-Work und Wrestlingtechnisch steckt er fast den gesamten WWE Lockerroom in die Tasche, denn RAW IS STILL JERICHO!"
Rating: 10.0
Sentiment: -0.04423076923076924
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Zodiacwrote on 26.11.2008:[10.0] "Der Mann hat alle anfänglichen Zweifel, ob das Comeback eine gute Idee war über Bord geworfen und erblüht in einer noch nicht dagewesenen Form. Ein super Entertainer mit allem drum und dran. Sein Fued mit HBK verdient eigentlich 100 Punkte;)"
Rating: 10.0
Sentiment: 0.29166666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Ayatollah of RocknRollahwrote on 24.11.2008:[9.0] "Ein hervorragend arbeitender Micworker, ein guter Techniker und er schafft es immer ieder die besten Promos des gesamten Rosters zu halten. Eigentlich wären die 10Pkt hier angebracht, aber ihm fehlt letztlich der gewisse XFaktor um eine Show zu tragen. Ich selbst bezeichne mich als absoluten Jerichoholic, aber es kommt nicht von ungefähr, dass er kein durchgehender Maineventer ist. Trotzdem einer meiner Favourites und immer unterhaltsam, vor allem wenn er seine Promos selbst schreibt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: domi1984wrote on 17.11.2008:[10.0] "Er kann sowohl die Heel als auch Face Rolle ausführen. Er hat einen unglaublich hohen Entertainment Faktor, geniales Mic Work und tolle In Ring Skills. Seine Fehde gegen Michaels war grandios. Wenn Jericho keine 10 Pkt. bekommt, wer denn sonst?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: undertaker619wrote on 13.11.2008:[10.0] "Sein hochgelobtes Comeback fand ich nicht ganz so gut, aber die Fehde mit HBK war wirklich weltklasse. Und seitdem er sein Y2J-Gimmick abgelegt hat gefällt er mir noch besser. Einer meiner Lieblingswrestler"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: E-T-Wrestlerwrote on 10.11.2008:[9.0] "jericho ist ein guter wrestler, der mir in letzter Zeit durch sein "großes" Mundwerk negativ auffällt aber sonst ist er ein perfekter wrestler"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: squadra3wrote on 06.11.2008:[10.0] "Gehört für mich zu den größten die dieser Sport hervorgebracht hat. Seine aktuelle Ausrichtung ist perfekt - ganz großes Kino!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Animal360wrote on 22.10.2008:[9.0] "Spielt seine Rolle als Heel sehr überzeugend, die Storylines mit ihm sind zudem sehr interessant deswegen eine klare 9."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CenaSuckswrote on 20.10.2008:[10.0] "RAW IS JERICHO! Finde es geil, dass dieser Mann nach so langer Pause gegen Michaels eine so starke Fehde bringt! Jericho ist einfach Gott!"
Rating: 10.0
Sentiment: -0.4507211538461539
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Exist 2 Inspirewrote on 17.10.2008:[10.0] "Jericho ist sowohl am Mic als auch Wrestlerisch absolute Spitzenklasse, um die Jahrtausendwende mein absoluter Lieblingswrestler und mittlerweile begeistert er mich wieder richtig!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kavskiwrote on 11.10.2008:[9.0] "Genialer Wrestler und Fehde des Jahres gegen Shawn Michaels. Bester Heel der Liga zur Zeit. Einfach top!"
Rating: 9.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alorionwrote on 08.10.2008:[10.0] "Unglaublich guter Heel, seine Art gegen die Fans zu wettern ist klasse und seine Promos und sein Micwork sind absolut top. Ich stelle ihn als Heel gerne auf eine Stufe mit Edge und Randy Orton. Ich finde auch das er ein starker Champion ist."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MrWrestlingwrote on 04.10.2008:[8.0] "Er ist ein super Entertainer, sein Mic Work ist spitze, doch als Champion taugt er meiner Meinung nach nicht viel."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: RBoss90wrote on 01.10.2008:[10.0] "Niemand versteht es besser das Publikum zu Unterhalten wie er. Überzeugt im Ring vor allem durch gute Technik und was mir gefällt ist auch das teilweise geniale Selling, dass nicht zu übertrieben wirkt, aber womit man ihm Schmerzen abkaufen kann. Am Mikrofon verfügt er über ein unglaubliches Charisma und blüht durch sein neues Heel-Gimmick richtig auf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Scotty 2 Hottywrote on 01.10.2008:[10.0] "Viel gibt es zu Chris Jericho nicht zu sagen. Toller Wrestler, fantastischer Entertainer. Im Jahr 2008 wohl in der Form seines Lebens, was wohl auch an seinem Gimmickwandel liegt, der in der Fehde gegen Shawn Michaels perfekt vollzogen wurde. Er ist nun nicht mehr Y2J, sondern Chris Jericho! Ein Heel wie er im Buche steht und unglaubliche Heat erzeugen kann. Völlig zurecht World Heavyweight Champion und der alleinige Grund jede Woche Raw zu schauen."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TG Styleswrote on 26.09.2008:[10.0] "RAWs aktueller MVP. Ein Mann, der sowohl in amüsanten als auch in ernsten Promos überzeugt, charismatisch ist und auch im Ring stark ist."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: GoddeKSCwrote on 26.09.2008:[10.0] "Der zur Zeit mit Edge wahrscheinlich beste Micworker der WWE! Seit seinem Heelturn liebe ich seine Promos einfach nur, da fällt es mir trotz Shawn Michaels auf der anderen Seite schwer gegen ihn zu sein! Seine Matches gestaltet er immer interessant und spannend! Es ist wirklich ein super Gimmick, was er derzeit besitzt! Wenn es nur mehr von diesen Jerichos geben würde!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HCN007wrote on 24.09.2008:[10.0] "Unglaublich, wie Jericho in diesem Jahr zum besten Heel RAWs geturnt ist und einen MOTY-Kandiadten mit Shawn Michaels nach dem Anderen hinlegt. Das er jetzt Raw headlined ist nur der Gipfel seines Jahres. Geniale Promos + Geniale Matches = Das ist Jericho, wie man ihn erwarten kann."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Theron083wrote on 20.09.2008:[10.0] "Wrestlerisch top, als Heel top, Mic Work Top. Neben bzw. mit Edge und Orton für mich der beste Heel bei WWE. Einfach super, was soll ich noch sagen."
Rating: 10.0
Sentiment: 0.4583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheGamewrote on 19.09.2008:[10.0] "Im Ring gefällt er mir ziemlich gut, aber das Mic-Work ist einfach göttlich!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: azirufwrote on 18.09.2008:[10.0] "Nach seinem Heel-Turn frisch aufgeblüht und als einer der besten Mic-Worker aller Zeiten in dieser neuen Rolle extrem überzeugend. Seinen Ringrost nach der 2-jahres Pause auch wieder abgelegt und zur Zeit zu recht WHC! Außerdem mit Shawn Michaels in einer großartigen Fehde, zudem sind diese beiden meine absoluten Lieblingsworker!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SpikeDudley1988wrote on 17.09.2008:[10.0] "was soll man zu ihm noch sagen? Einer der talentiertesten Micworker aller Zeiten... Hat seinen Ringrost abgelegt nach seier Pause und kriegt zu Recht seinen WHC-Run. Der absolut beste Heel bei RAW und auf einer Höhe mit Edge vor dessen Pause. Jetzt schon eine Legende. Bitte WWE durch gutes Booking wieder zu dem machen was er früher war."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Wise Warriorwrote on 15.09.2008:[8.0] "Hat eigentlich alles - nur wirkt mir bei ihm alles zu bemüht und zu aufgesetzt, um mich richtig überzeugen zu können."
Rating: 8.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: alfredwrote on 14.09.2008:[10.0] "Überzeugt seit vielen Jahren immer wieder mit grandiosen Leistungen. Endlich in der Rolle seines als Heel in der bahnbrechenden Fehde gegen Shawn Michaels. Wünsche ihm einen langen Run als World Champion."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DeadHeadwrote on 09.09.2008:[10.0] "Go Jericho Go, Go Jericho Go, Go Jericho Go. Yes, endlich ist er wieder verdienter World Champion."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rocky-Takerwrote on 08.09.2008:[10.0] "leute will euch mal was sagen da ist Chris Jericho noch als Top Flop bei seiner Rückkehr zu WWE abgestempelt worden ist er aktuell neben Edge der Beste Heel im Wrestling und ich muss sagen finde es gut"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ecw foreverwrote on 02.09.2008:[10.0] "Ein absoluter 10ner. Einst ein genialer Wrestler und heute immernoch ein sehr guter, Wrestler und Mic Worker, er hat viel Charisma udn weiss es einzusetzen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Stalker1987wrote on 28.08.2008:[7.0] "Chris Jericho war mal einer der besten, die es im Wrestling Business gab. Aber seit seiner Rückkehr 2007 ist er nicht mehr der alte. Seine Promos sind nicht mehr so gut. Im Ring ist er nicht mehr so gut. Ich weiß auch nicht. Man muss sich nur mal seine "Man of the 1004 Moves" Promo oder seinen 1. WWE Auftritt ansehen. Göttlich! Und heute? 7 Punkte!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Niklas1106wrote on 28.08.2008:[10.0] "Mir gefällt Chris Jericho sowohl als Face als auch als Heel sehr gut. Er schafft es, das gesammte Publikum in kürzester Zeit gegen ihn aufzubringen und spielt seine Rolle einfach super. Sein Mic-Work ist erstklassig und seine Wrestlerfähigkeiten sind meiner Meinung nach besser, als die einiger anderen momentanen Maineventer. Meiner Meinung nach sollte man ihn als potentiellen Maineventer besser booken, so dass er bald mehr im Mainevent steht. Einen Titelrun um den World Heavyweight-Title würde ich mir für ihn auch mal wünschen."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: TheBigBwrote on 26.08.2008:[9.0] "Chris Jericho ist einfach nur talentiert im Ring ! Er schafft es sowohl als Face als auch als Heel die Fans zu begeistern ! Aber ich finde vorallem , dass er als Heel taugt ! Y2J ist mir allemal 9 Pünktchen wert !"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: cabaloowrote on 21.08.2008:[10.0] "Zu seinen ECW Zeiten war er für mich zusammen einer der allergrößten. Ich war damals schon absoluter Fan von seiner Art zu wrestlen. Technisch mit Guerrero(RIP) und Benoit(... ) absolute Weltspitze."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: SeEn2005wrote on 21.08.2008:[10.0] "Chris Jericho gefällt mir sehr gut, als ich ihn seit seiner Rückkehr zum ersten mal gesehen habe! Ich schätze RAW ist durch ihn einfach eine Stufe höher geworden und die Fehde mit Shawn Michaels ist einfach klasse! 10 Punkte!"
Rating: 10.0
Sentiment: -0.36057692307692313
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: nicojansonwrote on 18.08.2008:[10.0] "Am Mic top, Charisma top, im Ring top, technik top, ihm hat die Pause wirklich gut getan. Break the Walls!"
Rating: 10.0
Sentiment: 0.53125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rated-RKOwrote on 13.08.2008:[10.0] "Er ist einfach super, sein Micwork überzeugt sehr und auch das Gimmick gefällt mir gut. Ob er Heel oder Face ist ist egal denn er bringt beides hervorragend rüber. Auch seine Ring in Skills enttäuschen mich nicht, obwohl er nicht der beste ist. Aber eine 1 hat er sich verdient."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: wwegirlwrote on 13.08.2008:[10.0] "Der Kerl bezaubert mich einfach nur.. Sein Micwork ist sehr unterhaltsam, seine Ring moves.. ja da könnte man noch daran arbeiten.. aber sonst ist er einer der Wrestler, die zurecht im Ring stehen. Dadruch dass er sehr viel erfahrung in Europa & Asien gesammelt hat, könnte er eigentlich sehr vielseitig sein. Auch privat ist er ein toller mensch!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rob the bobwrote on 30.07.2008:[10.0] "Chris Jericho is der Geborene Heel, so kommt es mir im moment vor. Er bringt diese Intensität mit die Wichtig ist. Und vor allem, ein sehr sehr gutes Mic. Work. Der Mann weiß wie man Heat zieht und gleichzeitig noch einer der besten In-Ring Performer der WWE ist. Die Kurzen Haare stehen ihm außerdem um einiges besser, finde ich persönlich jetzt. Seit dem Comeback um einiges gesteigert. Hat alles, jetzt noch ne gute Titel Fehde vs Punk vlt und die Sache ist geritzt. 10 Punkte, was anderes hat der Mann einfach nicht verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Kevichenkowrote on 29.07.2008:[10.0] "Ich finde ihn einfach genial. Der beste Y2J aller Zeiten. Seine Promos und In-Ring-Fähigkeiten haben mich bei seinem Come-Back nicht gerade überzeugt doch seit seinem echt genialen Heel-Turn liefert er . meiner Meinung nach , das beste Mic-Work , nach Edge , in der WWE ab. Auch seinen Ring-Rost hat er abgelegt. Er ist wirklich ein richtig derbe genialer Heel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rated-R Starwrote on 29.07.2008:[9.0] "Meiner Meinung nach als Heel viel viel besser und interessanter. Im Ring kann er eigentlich alles und am Mic sowieso. Einer der besten Wrestler seiner Zunft. Leider nicht die Höchspunktzahl, da ich ihn als Babyface überhaupt nicht mag."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: quazogenwrote on 28.07.2008:[10.0] "Göttlich am Mic, ganz großartig im Ring. Charisma ohne Ende. Einer der besten Wrestler der Welt. Höchstpunktzahl ist Pflicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Swanton-Bombwrote on 28.07.2008:[10.0] "Y2J ist im Ring super und sein Mic-Work ist spitze. Vor allem ist er so vielseitig, auf der einen Seite kann er die Fans mitreißen wie kaum ein Zweiter, dann aber wieder ist er in der Lage, dafür zu sorgen, dass sich alle Fans gegen ihn stellen. Sowohl als Top-Face denkbar, als auch ein Top-Heel, auf den man nicht verzichten möchte. Diese einzigartige Mischung rechtfertigt meiner Meinung nach 10 Punkte für den Ayatollah of Rock'n'Rollah."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alex Shelleywrote on 28.07.2008:[10.0] "War vor seiner großen Pause immer einer der besten Wrestler überhaupt, kam mit einigen Schwachpunkten wieder zurück und hat diese allesamt wieder abgelegt, so dass ich ihm auch derzeit gerne die volle Punktzahl gebe. Seine Promos sind grandios, im Ring ist er top... Er hat uns doch alle ein bischen gerettet :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The-Real-Diablowrote on 25.07.2008:[10.0] "I'm sorry. Die 8 Punkte, die ich ihm gegen hab sind wohl etwas zu wenig. Beste Fehde des Jahres, besten Promos des Jahres. Das müssen die 10 Punkte sein."
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: stinger89wrote on 24.07.2008:[10.0] "Sein Kampfstil gefällt mir ziemlich gut, und er ist sowohl als Face als auch als Heel eigentlich immer top. Am Mic ist er meiner Meinung nach unerreicht, zumindest bis The Rock sein Comeback hat ;-)"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: WWEPatriciawrote on 23.07.2008:[10.0] "Jericho ist ein Gott im Ring und am Mic. Es ist definitiv einer meiner Absoluten Lieblings Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Weihnachtsmannwrote on 23.07.2008:[10.0] "Unglaublich unterhaltsamer Wrestler, kann was im Ring, ist am Mic ein Gott, einfach nur gut, würde mich freuen, wenn er mal wieder eine Titelfehde bekäme."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Hennewrote on 23.07.2008:[10.0] "War schon immer ein ausgezeichneter Wrestler und gut am Mikrofon. Was er allerdings zur Zeit abliefert ist absolute Spitzenklasse. Mein Wrestler des Jahres 2008 - schon jetzt!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ButchIncwrote on 20.07.2008:[10.0] "10 Punkte, Schluß, aus. Weniger geht nicht. Jericho ist ein Komplettpaket. Er hat alles, was einen hervorragenden Sports-Entertainer ausmacht. Ob Face oder Heel, er überzeugt. Es wurde wahrscheinlich alles schon gesagt, aber ich kann ihn nicht hoch genug in den Himmel loben. Y2J macht einfach Spaß!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: aulitwrote on 17.07.2008:[10.0] "Ich bin ein Jerichoholic! Egal ob in der WCW oder der WWF/E, er war immer mit einer der unterhaltsamsten Wrestler. Bei ihm stimmt das Paket aus Aussehen und Fähigkeiten im Ring und am Mikrofon perfekt. Jericho liefert haufenweise Momente, die im Gedächtnis bleiben. Aktuell gerade in seiner tollen Fehde mit Shawn Michaels."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: 6th son of a 7th sonwrote on 02.07.2008:[8.0] "Mir fehl irgendwas an Chris Jericho seit er zurück gekehrt sind. Er ist im Ring immer noch/wieder stark und gefällt mir da auch sehr gut. Aber seinen Promos ist etwas abhanden gekommen. Sie sind zwar auf keinen Fall schlecht. Aber wenn man irgendwie den alten Chris Jericho im Hinterkopf hat, dann wirken sie irgendwie fehl am Platze. Damals steckte mehr Arroganz darin, mehr Emotion, mehr Aggresivität gegen seine Gegner. Das alles fehlt irgendwie. Jericho passt irgendwie nicht in dieses Bild des verbitterten Ex-Stars. Deshalb nur 7 Punkte ... andererseits, wenn ich den Rest der Karriere mit drauf packe, wohl doch lieber 8."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: gerybundy68wrote on 09.06.2008:[8.0] "Fantastisch am Mic. , gute Leistungen im Ring und Wrestler mit großer Ausstrahlung. Ich fand ihn trotz allem vor seiner großen Pause einen Tick besser."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Riley Mathewswrote on 30.05.2008:[10.0] "Neben The Rock hör ich ihn am liebsten am Mikrophon. Also am Mic genial im Ring ebenfalls einen der besten und er hat auch noch eine Gesangskarriere am laufen. Eine klare eins für den "King of the World"."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Frutzwrote on 25.05.2008:[10.0] "Begnadeter Entertainer, am Mic ist er einer der Besten, im Ring, sofern er es denn zeigen darf, ein herausragender Techniker, was die WWE manchmal aus ihm macht, versteh ich nicht, er gehoert nach oben in den ME."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Carnevalewrote on 22.05.2008:[10.0] "Seine Rückkehr (und insbesondere die Orton Fehde) war etwas enttäuschend, da hätte ich mehr erwartet. Aber mit jeder Woche gefällt mir Jericho besser. Hatte fast ein wenig vergessen mit der Zeit, was er für ein klasse Worker ist. Sein Stil gefällt mir wahnsinnig, dazu hat er mit dem Codebreaker einen Finisher der mir ebenfalls sehr zusagt. Allgemein seine Signatures Moves: Eine Klasse für sich. Nur - ja es klingt komisch - seine Frisur ist einfach etwas zu Bubi-mäßig. Vor allem wenn man den alten Jericho kennt."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Haribowrote on 14.05.2008:[8.0] "Verfolge ihn seit er 1996 in die WCW kam. Sehr gut im Ring wie am Mikro, aber das letzte Quentchen zum absoluten Topstar fehlt ihm irgendwie."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AngleClockwrote on 12.05.2008:[10.0] "Erfolgreiches Comeback mit einem noch besserem Wrestling können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Blazewrote on 18.04.2008:[10.0] "Einfach King Of The World. Super Matchqualität und ausgezeichnetes Mic Work."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: homicidal cena michaelswrote on 18.04.2008:[10.0] "Ein Klasse Wrestler, der aufgrund seiner Leistungen wieder einen Titel bekommen sollte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Fran7iCwrote on 12.04.2008:[10.0] "Guter Klassicher Wrestler immer wieder mit super Returns."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jericho Onewrote on 10.04.2008:[10.0] "Mein absoluter Held des Wrestlings seit wCw Monday Nitro! Bei der WWE hat er dann seinen verdienten Maineventpush gekriegt! Schade, dass er bei seinem Comeback nicht den World Heavyweight Champion geworden ist! Aber vielleicht schafft er es ja nochmal... C`mon Baby!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: nightfallwrote on 10.04.2008:[10.0] "Ich fand ihn zu seiner Anfangszeit bei WCW totlangweilig, aber das hat total geändert. Toller Wrestler, super am Mic. Einer der Besten. Schade find ich eigentlich nur, dass er von der WWE ein bisschen falsch eingesetzt wird."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ultimate-warrior-xwrote on 03.04.2008:[10.0] "Gut im ring und genial am Mic. Einfach ein super Gesammtpaket."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: CoLoGn3 KeVwrote on 27.03.2008:[10.0] "Mein absoluter Favorit! Warum pusht die WWE den nicht ins ME? ! Super im Ring und der wohl aktuell beste Mic-Worker im Wrestling-Business!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Ruppiwrote on 27.03.2008:[8.0] "Kenne ich noch ein wenig aus der WCW, wo er mir damals sehr gut gefallen hat. Seine erfolgreichste Zeit in der WWE hab ich nicht erlebt, weshalb ich ihn nur seit seiner Rückkehr bewerten kann. Am Mic einfach grandios und im Ring ebenfalls auf allerhöchstem Niveau. Mich stört derzeit einzig sein etwas farbloser Charakter. Liegt sicher auch an der Geschichte um seine Rückkehr, die mich ziemlich enttäuscht hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Larethwrote on 17.03.2008:[10.0] "Auch nach dem Comeback absolut sehenswert, hoffe er bekommt seinen Push bald wieder."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lethal Combinationwrote on 15.03.2008:[10.0] "Am Mic Gott im Ring einer der besten, da gibt es die Bestnote!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Instant Classicwrote on 13.03.2008:[10.0] "Simply The King Of The World - der beste Micworker aller Zeiten, Ausstrahlung ohne Ende und dazu noch fantastisch im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: victoriawrote on 20.02.2008:[8.0] "Er hat seine besten Zeiten schon hinter sich und ist, wie ich finde, nach der langen Pause einfach nicht mehr der Selbe. Sollte meiner Meinung nach vielleicht doch besser für junge Talente den Platz freimachen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Joeevil123wrote on 19.02.2008:[8.0] "Endlich einer der mal wieder frischen Wind in die WWE bringt!  Hat seit seinem Comeback ordentliche Matches auf die Beine gestellt. Weiter so!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: McChickenwrote on 04.02.2008:[8.0] "Im Ring sehr gut und auch am Mic, aber irgendwie fehlt ihm das gewisse Etwas."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Maxskywrote on 03.02.2008:[10.0] ""Welcome to Raw is Jericho! This is not a mirage. This is real. This is here. This is now. This is the second coming of Y2J! You remembered. I want you to take out your cell phones. Text your friends. Take a picture. Shoot a video. Send an email Call them all and tell them that the sexy beast is back, baby! And I promise to ignite you, to excite you, to delight you, and I invite you to strap on your seatbelts, ease the seat back, click it into gear, and go into overdrive because from this point forward it’s 100% entertainment. 100% electricity. 100% Jericho! " Kurz und Knapp ist das für mich einfach nur Top"
Rating: 10.0
Sentiment: 0.21394230769230768
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Haukewrote on 19.01.2008:[8.0] "Stark im Ring, Gut am Mic. Aber irgendwie springt der Funke nicht so ganz über. Nach dem schnellen Run ist er wohl auf der Midcard gut aufgehoben."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Sandman16wrote on 17.01.2008:[10.0] "Im Ring sowie am Mikro fantastisch. Ich freu mich das er wieder da ist, denn Jericho gehört einfach in den Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AnFuwrote on 05.01.2008:[8.0] "Y2J ist back! Und die lange Pause merkt man ihm auch an! Früher klasse und ich hätte auch Bestnote gegeben, zum Beispiel sein Match gegen Shawn Michaels, klasse. Aber seit seiner Rückkehr gefällt er mir gar nicht mehr. Schwaches Auftreten, sein Comeback war dann nicht so umwerfend und sein neuer Finisher ist der Höhepunkt. Mit JBL im Ring sollte er wieder zu seiner alten Form zurückfinden, denn sein Versuch direkt im Titelmatch misslang."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: King of Queenswrote on 05.01.2008:[10.0] "DAS Total Package der Wrestlingwelt. Wohl kein anderer Wrestler konnte solch großartige In-Ring Skills kombiniert mit diesem absolut großartigem Mic-Work unter einen Hut bringen. Selbst mit halber Kraft wäre er wohl besser als die meisten Wrestler der WWE. Es ist einfach faszinierend, was dieser Mann alles kann und erschreckend, dass er kein Dauer-Main Eventer gewesen ist. Schaut man sich seine Leistungen am Mic und im Ring an, kommt man nicht drum herum, sich diesem Mann den Status von z. B. Triple H zu wünschen. Verdient wäre das wie bei keinem anderen Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Remootwrote on 05.01.2008:[10.0] "Unglaublich.. vor einen halben Jahr waren sie noch alle am Saveus Y2J schreien und nun wird er ihn stücke kritisiert. Lächerlich... der Mann wurde zurecht als einer Top Männer in diesem business angesehen. Für mich einer der grössten Komplettpakete der Wrestlingwelt."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Stone Cold Andywrote on 04.01.2008:[4.0] "Der mit am Abstand meisten überschätzte Wrestler aller Zeiten. Seine guten Leistungen im Ring kann ich nicht abstreiten, aber die von so vielen Fans gelobten Mic- und Charisma- Skills sind meiner Meinung nach überhaupt nicht vorhanden. Wenn er mal in einer unterhaltsamen Fehde war, dann war das nur einem Rocky oder Hunter zu verdanken. Für die Ring- Skills gibts noch 4 Punkte."
Rating: 4.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: EvenflowDDTwrote on 31.12.2007:[8.0] "Y2J weiß wie man Hype macht. Ob es sein Debüt war, die Y2J Milleniumsuhr oder seine Jericodes... Jedes Mal war ich hin und weg... Manche sind der Meinung sein derzeitiges Micwork wär schlechter, sein Micwork hat sich nur verbessert. "Me Want Title Match" beweißt dies."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Foerstawrote on 30.12.2007:[10.0] "Endlich ist RAW wieder JERICHO... nach seinem Comeback muss man feststellen, dass er nicht an Qualität verloren hat und noch einen neuen Finisher mitgebracht hat... find eihn einfach charesmatisch super!"
Rating: 10.0
Sentiment: 0.09294871794871792
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Y2J Michaelswrote on 29.12.2007:[10.0] "Neben HBK mein Lieblingswrestler. Super Mic Work und sein Talent im Ring ist auch nicht zu unterschätzen. Insgesamt ein geiler Wrestler der alles kann."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: MA Excellentwrote on 29.12.2007:[8.0] "Jericho ist Entertainment pur und kann auch im Ring überzeugen. Aus meiner Sicht ist er mit einer 1 jedoch overrated. Er steht definitv nicht auf einer Stufe mit Shawn Michaels, Bret Hart, The Rock usw. Da fehlt mir im Ring doch etwas die Flexibilität, seine Matches sind recht vorhersehbar und können mich auch technisch nicht 100 % überzeugen. Was mich jedoch voll überzeugt ist alles, was er im Bereich Entertainment zeigt. Da ist er immer für eine Überraschung gut und sehr wortgewandt. Für mich eine klare 2."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: AMMOwrote on 20.12.2007:[8.0] "WOW! Am Mikro unglaublich, und im RIng besser als viele andere. Für mich ein Grund wieso ich ein paar der letzten RAW Folgen geschaut habe, und auch den PPV!"
Rating: 8.0
Sentiment: -0.08173076923076925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Baxiwrote on 18.12.2007:[6.0] "Derzeit kann ich ihm nur eine gute 3 geben, er ist immer noch ein guter Wrestler mit hohem Unterhaltungswert, aber im Vergleich zu früher hat er meiner Meinung nach extrem nachgelassen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DrBreswrote on 16.12.2007:[8.0] "Muss zugeben, dass ich seinen ersten WWE-Run aufgrund einer Wrestling-Abstinenz nicht mitgekriegt habe, was er in der WCW für Matches abgeliefert hat ist allerdings erster Güte. Doch bisher hat mich das Comeback von Jericho nicht wirklich überzeugt, man ahnt was er kann, hat im Moment (noch) nichts im Main-Event zu suchen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rock is Jerichowrote on 06.12.2007:[6.0] "Also ich weiß nicht so genau, Chris Jericho ist ein Ausnahmeathlet, ist Weltklasse am Mic, ABER er gehört bei mir nicht in die Sparte: WOW was ein Klasse Superstar! Er konnte nie an Legenden wie The Rock, Taker usw. rankommen, weil ihm irgendwas fehlt... für mich ist er auch nicht der Retter vor Randy Orton er ist einfach ein Wrestler der nach 2 1/2 Jahren mal wieder Bock hatte mehr Geld zu verdienen und zurück in die WWE gekommen ist. Dafür gibts ne 3+ mit * ;-)"
Rating: 6.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: HHH-Stephwrote on 04.12.2007:[10.0] "So, jetzt ist Chris also endlich nach 2 1/2 Jahren wiederzurück im Wrestling. Ich kann nur sagen, dass er eine Bereicherung für die WWE ist. Seine Fähigkeiten sprechen auch für sich: Y2Js In-Ring Skills sind sehr gut und hat schon einige klassische Matches bestritten, Ausstrahlung besitzt er auch wie kein Zweiter, er kann sowohl den Heel als auch den Face verkörpern und am Mic können ihm nur wenige etwas vormachen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Schandmaulwrote on 04.12.2007:[6.0] "guter Wrestler, aber imo sowohl im Ring als auch am Mic völlig überbewertet. Kriegt von mir ne 3+"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Lancylwrote on 26.11.2007:[10.0] "Einer der komplettesten Wrestler aller Zeiten! Außerdem sticht er heraus, indem er nicht so vollgepumpt ist wie der Rest. Deshalb 10. 0!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: The Champwrote on 21.11.2007:[10.0] "Einer der besten Micworker ever, ein TOP-Wrestler mit prima Charisma!  Da kann man nicht mehr zu sagen als: RAW is still Jericho!"
Rating: 10.0
Sentiment: -0.2884615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: -X-Factor-wrote on 20.11.2007:[10.0] "Chris Jericho ist [einer] der beste/n Superstar/s in der geschichte der WWE!  Welcome back, King of the World!"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: BenZenwrote on 04.11.2007:[10.0] "Jericho ist ein absolutes Komplettpaket. Der Mann ist ein Gott am Mikrophon und zudem in der Lage hervorragende Matches abzuliefern. Kaum einer konnte mich so konstant über so viele Jahre begeistern, egal in welcher Liga er angetreten ist. Zum Glück wird man ihn wohl bald wieder bewundern dürfen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Jickswrote on 01.11.2007:[10.0] "Im Ring einer der Allerbesten und am Mikro DER Allerbeste! Go Jericho Go!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Thomas Carlsonwrote on 28.10.2007:[10.0] "Ich sehe ihn nicht als Retter der WWE da die eh nicht viel mit ihm anfangen können. Das ist aber WWE Booking was keiner versteht. Er ist ein sehr guter Wrestler aber auch ein sehr guter Entertainer. Genau das was die WWE eigentlich sucht aber nie richtig gebrauchen konnte. Hätte man es anders angestellt wer weiß wie oft er den Titel geholt hätte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Benny110106wrote on 28.10.2007:[8.0] "Floppte leider als Champ, aber trotzdem einer der besten Wrestler aller Zeiten aus Kanada. Er schaffte es in 3 Liga zu überzeugen und ist nun der heißeste Free-Agent im Biz. Ich hoffe er kommt wieder und zeigt uns allen, dass er eine 1 verdient hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bhanduwrote on 28.10.2007:[10.0] "Perfekte Kombination aus gutem Wrestler (wobei es wesentlich bessere gibt, neigt hin und wieder zu Schlampigkeit) und gutem Entertainer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: NJackwrote on 27.10.2007:[10.0] "Der Mann, der mich damals wieder zum Wrestlingfan machte. Als er die Arena der WWF betrat, hatte ich so einen Mark Out. Geiles Mic-Work, hammer In-Ring-Skills und einer der besten im Geschäft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Winnie The Poohwrote on 24.10.2007:[10.0] "Ohne Zweifel einer der Besten! Im Ring vielleicht nicht gaaaanz so gut wie ein Triple H oder Kurt Angle, gleicht das aber am Mic 100%ig aus. Ich finde am mic gibt es keinen Besseren als ihn. Seine Promos sind immer einwandfrei. Ich hoffe er kommt bald zurück. Diesmal wieder mit einen dicken Push, denn er zieht Leute, ohne Zweifel"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Wuschl 85wrote on 20.10.2007:[8.0] "Klasse am Mikrofon, so unterhaltsam wie kein anderer. Im Ring sehe ich ihn nicht ganz so stark dennoch überdurchschnittlich gut. Sein Lionsault hat mir schon immer gut gefallen. Ich hoffe er kommt bald zurück, denn er gehört in die Wrestlingwelt und sonst nirgends."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Renwrote on 17.10.2007:[10.0] "Nicht nur einer der besten Techniker der Welt sondern auch noch ein Gott am Mic. Humor hat der Typ, Ringfähigkeiten auch zur Genüge, in Japan war er sehr schön anzusehen, in der WCW und der WWF/E ebenfalls. Ich hoffe das er bald wieder zurück kommt und uns rettet. RAW IS JERICHO"
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Detoxxwrote on 13.10.2007:[10.0] "Fantastischer Techniker und super Mic-Work. Allerdings passt er einfach nicht zu den World Titles. Seine vielen Einsätze als verhasster CW Champ bei WCW waren klasse und zu weglachen."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Goretexwrote on 08.10.2007:[10.0] "Für mich der perfekte Wrestler! Bei Y2J passt einfach alles zusammen - seine WrestlingSkills, Mic-Fähigkeiten, sein Charisma und seine Ausstrahliung, einfach alles! Deswegen note 1 für den Ayatollah of Rock'n'Rollah!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Shawn Sandiegowrote on 05.10.2007:[10.0] "Eines ist ganz klar: Wenn, dann gehört Y2J an die Spitze einer Promotion und sonst nirgends hin! Jericho ist wahrlich "Larger than Life". Ich hoffe doch sehr auf ein baldiges Comeback! SAVE US, CHRIS! ;-)"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jerseyhoolwrote on 30.09.2007:[10.0] "meine nr. 3 der besten aller zeiten: im ring - klasse! am mic - unantastbar! gimmick(s) - einwandfrei! naeher als er kommt keiner an das praedikat "perfekt" heran! punkt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: dariawrote on 29.09.2007:[10.0] "einer meiner Lieblingswrestler, hat alles, was nötig ist, tolle Ringskills, Superausstrahlung"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Christopherwrote on 22.09.2007:[10.0] "Genau wie The Rock ist er einer, der einfach alles hat, was ein spitzen Wrestler braucht"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Alan Smitheewrote on 12.09.2007:[10.0] "In meinen Augen eins der wenigen Rund-um-Glücklich-Pakete. Seine Promos sind die besten (teilweise mit ausnahme von Rocky) und was seine Fähigkeiten im Ring angeht... tja was soll man da sagen er ist der Mann der 1004 Moves."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Bullit69wrote on 08.09.2007:[8.0] "Zählt zu den besten, die jemals einen Ring betreten haben! Und dieses Mic-Work... wow... seine Battles mit The Rock am Mic wahren einfach genial!"
Rating: 8.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: DannyGeigwrote on 06.09.2007:[10.0] "Jericho Rules. Musim Geil, Moves Spitze, Charisma Top, Micwork eines der besten an Jericho stimmt einfach alles."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Austin 316wrote on 26.08.2007:[8.0] "sehr guter wrestler mit guten mic-skills. Hoffe das er bald von seiner pause zurück kommt"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Rashomonwrote on 04.08.2007:[10.0] "Einfach die bestmögliche Kombination von Wrestler und Entertainer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Grissomwrote on 03.08.2007:[10.0] "Einer der besten überhaupt. Sowohl wrestlerisch als auch am Mic. Einfach nur Top. RAW IS JERICHO!"
Rating: 10.0
Sentiment: 0.10576923076923075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: scotty619wrote on 31.07.2007:[8.0] "The First Undisputet Champion is cool come back to the WWE"
Rating: 8.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: shannonmoorewrote on 28.07.2007:[10.0] "Unglaublich der Mann. Seine Promos sind von einer unglaublichen Qualität. Ob den verbitterten den hasserfüllten oder den beleidigten Heel. er kann alles spielen. Und als Face na ja..... auch gut aber als Heel Gold wert. Die WWE dachte wohl sie könne auf ihn verzichten jetzt sieht man wie gross die Lücke im Roster ohne ihn ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Azraelwrote on 04.07.2007:[10.0] "Sehr gute In Ring Skills und sehr gutes Mic Work, hoffentlich kommt er bald zurück."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ShaneOwrote on 28.06.2007:[8.0] "Sehr guter Worker! Einer meiner absoluten Favs. Leider wurde er in der WWE ziemlich unten gehalten. Am Mic ist er Top - im Ring auch ganz gut. Wurde leider viel zu oft sinnlos verjobbt."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Steven McWheelerwrote on 27.06.2007:[10.0] "Nach The Rock, der beste MicWorker allerzeiten! Wrestlerisch einfach Spitzenklasse und Charisma bis zum Umfallen! Höchstnote cause I'M A JERICHOHOLIC"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Die Gurkewrote on 24.06.2007:[10.0] "Einer der besten Mic-Worker aller zeiten und zudem noch eine Augenweide im Ring, außerdem noch ein extrem ansprechendes Heel-Gimmick. Das absolute Wrestling Komplettpacket."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Ein unglaublich guter Entertainer! Sensationell am Mic und im Ring auch hervorragend! Leider hatte er nur ein richtig gutes Jahr, nämlich 2001! Ansonsten war er meist nur Uppercard! Kaum zu glauben, dass er der erste Undisputed Champion war... Doch seine Fähigkeiten sprechen für sich! Auch ein künftiger Hall of Famer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mr Lovewrote on 24.06.2007:[10.0] "Chris Jericho war einfach nur top am Mic, hatte sehr viel Ausstrahlung, war bei den Fans sehr beliebt, hat seine Karriere rechtzeitig, aber eigentlich auch zu früh beendet, denn er war ein super Wrestler und Technicker, er hätte es noch ein paar Jahre geschaft, unterhaltsam war er auch. Aber wenn er glaubt mit Musik und seiner Band Fozzy mehr verdienen zu können, dann soll er es machen, würde mich freuen ihm zumindestens bei Wrestlemania 24 mal wieder im Ring zu sehen, hatte wirklich spaß gemach"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: ABOOgeymanwrote on 24.06.2007:[10.0] "Begnadeter Wrestler und Mic-Worker. Seine band Fozzy ist auch genial!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Trevedaswrote on 24.06.2007:[10.0] "Im Ring sehr gut. Charisma und MicWork absolute Spitze. Und seine Promos, vor allem mit Steph, waren alle mindestens so unterhaltsam wie Rockys oder Austins"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Matt Hardywrote on 24.06.2007:[10.0] "Völlig zu Recht first ever Undisputed Champion - Hoffe stark auf eine baldige Rückkehr und eine Fehde gegen Edge!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: raven1610wrote on 24.06.2007:[10.0] "Ein Rundum perfekter Wrestler. Er hatte alles was man zu einem riesen Star braucht. Sehr schade , was die WWE am Ende seiner Karriere mit ihm angestellt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Chris Cagewrote on 24.06.2007:[10.0] "Ein technisch hervoragender Wrestler, der zurecht erster einstimmiger Champion wurde. Schade das er letztlich so für Cena jobben musste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: hostrodwrote on 24.06.2007:[10.0] "Nach Eddie Guerrero meine klare Nummer zwei - fehlt mir übrigens mindestens genau so im Wrestling-Geschäft. Hoffentlich kann er sich noch mal zu einem Comeback durchringen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: jupp365wrote on 24.06.2007:[10.0] "Ich fand den Mann schon immer genial. Er ist im Ring wirklich gut und seine Promos sind auch spitze. Hoffentlich kehrt er im Herbst zurück und kann sich noch einmal einen großen Titel sichern!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Garvinwrote on 24.06.2007:[10.0] "Einer der komplettesten Wrestler unserer Zeit. Er hat alles, was ein großartiger Wrestler mit sich bringen muss. Eine Rückkehr würden wohl alle sehr begrüßen. M. E. hätte er sehr viel mehr gepusht werden müssen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Y2J - das steht für fast perfektes Mic-Work und ebenso gutes Wrestling! Habe seine Matches immer mit großer Freude gesehen. Auch seine Promos sind/waren genial."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Raywrote on 24.06.2007:[10.0] "Ein absolut grandioser Wrestler. Grandios im Ring und göttlich am Mic. Einer der komplettesten und besten Wrestler, die noch im wrestlefähigen Alter sind. Eine Bereicherung für jede Liga."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Mediwrote on 24.06.2007:[10.0] "Gut, manchmal fair und manchmal der Ober-heel, da mag man sagen was man will. Jedoch stehen die Leistungen an erster Stelle und seine sind immer vom feinsten gewesen (der Lionsault ist eine meiner Lieblingstechniken). Ich hoffe, dass er irgendwann nochmal zur WWE zurückfindet."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Hypocrisywrote on 24.06.2007:[10.0] "Sports Entertainment. Kein worker deckt beide Bereiche dermaßen ab wie Chris Jericho. Hoffe, dass sein WWE-Abgang nicht für immer ist. Ich würde gerne Jericho gegen Vinnie Mac sehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=758&gimmick=Chris+Jericho
Comment: Doerbenwrote on 24.06.2007:[10.0] "total package, mit the Rock der geilste Micwoker aller zeiten. Besonders ein Interview wo beide gleichzeitig anwesend waren hat mich begeistert. Y2J aka Lionheart werde ich aber auch immer mit folgendem Satz verbinden "Thank you Stephanie, you are the breast. OH OH uhm.. I mean the Best". was er einst in einem promo zu der Million Dollar Bitch sagte"
Rating: 10.0
Sentiment: 0.22916666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: CDProsProwrote on 17.01.2024:[10.0] "The greatest wrestler in Big Japan Pro Wrestling history and one of the best powerhouse wrestlers ever. The standout heavyweight whom no other can handle. Till the bells troll upon the damned roster of Big Japan Pro Wrestling. Okabayashi Yuji!"
Rating: 10.0
Sentiment: 0.4125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Lalo Camposwrote on 16.08.2023:[10.0] "The greatest wrestler in Big Japan Pro Wrestling history and one of the best powerhouse wrestlers ever. He is a MOTYC machine, every year has great matches with anyone and anywhere. My three favorite matches from Okabyashi are against young wreslters (Nomura, Takeshita and Aoki) that shows the williness of Yuji to pass the torch to the new generation."
Rating: 10.0
Sentiment: 0.5051948051948052
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: TheOneAndOnlyCactuswrote on 03.04.2023:[9.0] "An iconic figure in Big Japan Pro Wrestling, Yuji is a hard-hitting son of a bitch. A charismatic and aggressive powerhouse, he is often overlooked as he never really wrestled in a big league, which is a shame. Okabayashi is a true independent legend."
Rating: 9.0
Sentiment: 0.17857142857142858
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Lakhiarfarhad91wrote on 30.07.2022:[9.0] "Yuji Okabayashi is one of the best worker on the planet. A guy who is incapable of having a bad match and consistently put on quality matches. Also a great tag team wrestler with Daisuke Sekimoto."
Rating: 9.0
Sentiment: 0.3375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: NikoKillbainwrote on 01.01.2022:[9.0] "Oozes chraisma and can control crowds as well as anyone in Japan. His KO-D Tag Champion run with HARASHIMA was ok, the best match coming when he lost to Konosuke and Shunma. Then he had a late year run to rival anyone, with D-OH Grand Prix draws against Konosuke (brilliant) and HARASHIMA (pretty good), and a follow-up title match that felt like a modern-day epic. Don't expect to see as much from him in DDT but he's a brilliant star to bring into any company."
Rating: 9.0
Sentiment: 0.41363636363636364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Wrestling Foreverwrote on 22.12.2021:[9.0] "Nicht nur unfassbar stark er ist auch wie ein unüberwindbare Mauer. Auch ist er längst eine Japanische Legende und sehr beweglich mit gefürchteten Chops."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: sami07wrote on 26.11.2021:[8.0] "A very good wrestler, I really enjoy what he does. Very stiff and does huge impact techniques but I think he is a bit overrated for what he is : he sure is one hell of a wrestler but not as perfect as people say. It's usually the same moves but that does the work so I have no problem with it he always entertains me, he is definitely one of the best in his style"
Rating: 8.0
Sentiment: 0.36814285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Kungwrote on 14.05.2021:[9.0] "Big Yuji might be the best-kept secret in all of puro over the past few years. He's tremendous in the ring. He's super charismatic. And he works well both as a badass in BJW or a jovial tag team partner in DDT."
Rating: 9.0
Sentiment: 0.04523809523809521
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: VosBosswrote on 23.04.2021:[10.0] "Highly underrated and overlooked. He's been so great for so long from what I've seen going back through some of his matches."
Rating: 10.0
Sentiment: 0.2275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Same Old Same Oldwrote on 13.10.2019:[9.0] "Yuji Okabayashi over the last few years has push him to the brink of being in my current top 10 wrestler, an impressive body of work, a powerhouse of brute strength, grizzly slaps this side of WALTER and what I like to call "aggressive charisma". Even before his standout year of 2019 (I mean seriously, it's been phenomenal) , Okabayashi's 2015 run with the BJW Strong World Heavyweight title put him on the map for me during a period where I was less aware of the non-NJPW scene and thus BJW's Strong division. Also as one half of BJ Strong with the impeccable Daisuke Sekimoto, Okabayashi is also a solid team worker. The one thing I will ding however is his very audible and sometimes distracting breathing/selling. Otherwise, fantastic wrestler!"
Rating: 9.0
Sentiment: 0.1867063492063492
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: KENTAfanwrote on 31.08.2019:[10.0] "This year has been Okabayashi's most successful year. Countless classic matches. He's demonstrating just how good I knew he has always in. I would put him on the same level as Sekimoto now. One of the best wrestlers out there."
Rating: 10.0
Sentiment: 0.44523809523809527
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: InactiveGuruwrote on 01.06.2018:[8.0] "One of the 2 men that come to mind when I think of Big Japan Pro Wrestling. A hard hitting monster of a man, if you enjoy hard hitting matches look no further, You've found your new favourite."
Rating: 8.0
Sentiment: -0.007828282828282832
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: My Bloody Doobwrote on 25.02.2018:[9.0] "If Sekimoto is the heart and face of Strong BJ, then Okabayashi is the strength and spirit. The dude is an explosive monster who can demolish anyone in his path with his incredible strength. Of course he doesn't have the world wide recognition that his tag team partner does, but together they are one of the best tag teams in this decade."
Rating: 9.0
Sentiment: 0.2866666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: OKABAYAHAwrote on 11.11.2017:[10.0] "Amazing one of a kind wrestler. I do not know how anyone in the world could ever dislike him. He is easily one of the greatest wrestlers in the BJW Strong division. More people need to know of his excellence, in my opinion he is better than Sekimoto"
Rating: 10.0
Sentiment: 0.580952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Valerionwrote on 08.03.2013:[10.0] "Harte Clotheslines, monströse Shoulderblocks und krachende Chops... man merkt wer diesen Mann trainiert hat, steht in keinster Weise in Sekimotos Schatten! unheimlich beeindruckender Top Rope Splash der auf seinem höchsten Punkt scheinbar den ganzen Ring in Schatten hüllt! Die Ringschlacht mit Bad Bones beim Carat 2013 war für mich das persönliche Highlight des Events besser gehts nicht!"
Rating: 10.0
Sentiment: -0.12499999999999989
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Marcywrote on 04.03.2013:[8.0] "Aufwertung um einen Punkt. Hat mir beim Carat 2013 sehr gut gefallen. Okapi ist ein mehr als glaubwürdiger Big Man und bringt den Fighting Spirit fast so gut rüber wie sein Mentor Sekimoto."
Rating: 8.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Phoenix Downwrote on 24.03.2012:[8.0] "Okabayashi ist schon lange aus dem Schatten seines Trainers herausgetreten und zu einem saustarken Heavyweight Wrestler geworden. Überzeugt immer wieder aufs neue."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: MaikBaaderwrote on 30.09.2011:[9.0] "Starkes Kraftpaket, der alles und jeden deadliftet. Erinnert mich ein wenig an Akiyama. Nicht wegen dem Aussehen oder dem Wrestlinstil, sondern weil beide rookies waren und selbst als rookie unglaublich gut. Ich kann einfach nicht glauben, dass Okabayashi nur 3 jahre dabei ist, denn er wrestelt jetzt schon so als wäre er länger als einer dekade dabei."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Matt4Wrestlingwrote on 05.03.2011:[7.0] "Steht seinem Trainer in nix nach, nur er sollte seinen eigenen Weg gehen und dementsprechen auch agieren!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Rise Againstwrote on 25.05.2010:[7.0] "Gefällt mir ganz gut, allerdings ist da noch etwas Platz nach oben. Aber er ist ja auch noch relativ neu im Wrestling."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: C van Damwrote on 13.05.2010:[7.0] "Muss noch einiges lernen, vor allem im Single Bereich, überzeugt aber im Team B2 mit Daisuke völlig."
Rating: 7.0
Sentiment: -0.07142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Soerenwrote on 18.03.2010:[7.0] "Krillin rockt. Hat mich wirklich sehr überzeugt, sehr sympatisch!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=7249&gimmick=Yuji+Okabayashi
Comment: Raywrote on 08.03.2010:[7.0] "Sein Carat-Match war eher durchschnittlich, aber im Team mit Daisuke hat er mehr gezeigt, blühte mehr auf und hat mich durchaus überzeugt. Er kann noch einiges von Daisuke lernen und kann davon nur profitieren. :)"
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Zak22wrote on 29.07.2024:[2.0] "Ok, ok, I know, I'm probably very, very wrong in my opinion on Johnny Saint but, I just... well.... really don't rate him that much. I am most familiar with Saint's work in Joint Promotions on ITV in the UK and I don't enjoy him that much. Johnny Saint definitely had lots of talent but I find his so-called "entertaining" antics just distracting. And the fact he is seen as the face of UK ITV wrestling, really damn annoys me, compared to the likes of Mark Rocco, Marty Jones and Steve Grey.... Johnny just wasn't as good in my personal opinion. Also seeing old, washed up Johnny Saint in Japan moving at x0.25 speed with poor psychology and doggy "scientific" strategy is just embarrassing and the clips trend on Twitter and I have to fight for my life arguing that the UK scene was actually good. Maybe I've not seen Saint's best and maybe its not for me or I just don't get it but oh well.... defo not for me and I'm not entertained."
Rating: 2.0
Sentiment: 0.26527777777777783
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: DangoDaisukiwrote on 13.02.2022:[7.0] "Habe einiger seiner Matches gesehen, ist definitiv sogar im Alter noch ganz okay. Bonuspunkte gibt es für alles was er geleistet hat um das Wrestling voran zu bringen."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: JEK 1991wrote on 04.02.2019:[9.0] "Very entertaining and skilled. Only wrestled in Europe. His moves are amazing. Never seen a wrestler just go under someone's legs and attack them from the behind. He's fast! Today he is the WWE's general manager of the United Kingdom."
Rating: 9.0
Sentiment: 0.23571428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: RatingsMachinewrote on 14.10.2018:[9.0] "Johnny Saint was a tremendous technical wrestler, one of the biggest names in the 70s era of World of Sport, and you can see his influence in the style of a guy like Zack Sabre Jr.."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Bigchiefmartinwrote on 16.11.2016:[10.0] "Johnny Saint is one of the pro-wrestlers that simply must be seen to be understood and appreciated. A self-proclaimed "escapologist, "Saint spent a good many years developing his skills. Saint's one-of-a-kind style. As one of the greatest technical wrestler ever! With crazy Technique and Counters most be at the top of the list in those and along with top of the line move set! Johnny Saint stood out in a way that few could. He was one of the key lightweights dominated the World Lightweight title for the better part of twenty-five years. Several years ago, he enjoyed a career revival thanks to the spread of tapes and videos of his matches and people espousing his greatness. Johnny Saint is like no other and while he never traveled widely stayed most of his career in the U. K and was limited due to his size, his work stands alone. for his amazing unique technical skills and counter ability what be the greatest in the history of wrestling!"
Rating: 10.0
Sentiment: 0.25254120879120884
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Damianwrote on 14.04.2015:[6.0] "Checked out some of his stuff last night. Good wrestling technician but not great. No wrestler should wrestle over the age of 60 so he loses points cause of that."
Rating: 6.0
Sentiment: -1.3877787807814457e-17
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: The Man of 1004 armbarswrote on 29.10.2013:[10.0] "Wie kann man ihn denn nur eine 0 geben? Da hat wohl der User vor mir noch nie etwas von ihn gesehen oder gehört was man auch an seinen Kommentar merkt. Johnny Saint war ein hervorragender Wrestler/Catcher der sogar heute noch im hohen Alter immer noch fähig ist gute Leistungen im Ring zu bringen was manche seine Kollegen nicht schaffen (siehe Roddy Piper, Terry Funk u. a. ). Er gehört meiner Meinung nach als einen der Technicksten Wrestler die es je gegeben hat, das einzige Problem ist nur das er nie den grossen Erfolg bekommen hat den er verdient hätte. Seine World of Sports Kämpfe sind auch heute noch ein Genuss sie anzuschauen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: ARIZAwrote on 15.06.2012:[10.0] "Unglaublich was Saint damals leistet und auch unglaublich wie gut der alte Mann heute noch ist. Natürlich kann man ihn heute nur noch gegen Leute wie Quackenbush oder Johnny Kidd einsetzen, aber ich bezweifel stark, dass 90 Prozent der heute aktiven Wrestler in seinem Alter überhaupt noch in den Ring kommen."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: leolondonwrote on 26.01.2012:[10.0] "The greatest of the technical wrestlers from the World Of Sport era"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Giantswingwrote on 21.08.2011:[10.0] "Ich hoffe doch nur, dass Saint einige Leute trainiert, damit dieser wunderschöne WoS-Stil nicht ausstirbt. Saint ist ein unglaublich gott und in dem was er macht einfach unglaublich gut. Es ist immer eine schöne Entspannung für mich von dem ganzen Headgebumpe und den Bumps in Light tubes. Unglaublich spaßig der Typ, selbst noch im hohen Alter. Ein Meister, ein Gott."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Pius123wrote on 08.08.2011:[8.0] "Ich kann mich nur vor den Leistungen des Johnny Saints verbeugen. Große Klasse."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: treeofworldswrote on 01.08.2011:[10.0] "Kaum einer verkörpert den World of Sport - Style so sehr wie Johnny Saint. Eine wahre Legende, nicht nur für europäisches Wrestling sondern weltweit, wie ich meine. Habe bisher kein einziges Johnny Saint Match gesehen, egal ob von 1978 oder 2008, dass nicht zumindest mehr als gut war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Miloswrote on 13.06.2011:[10.0] "Eine Genie! Seine Matches gegen Quackenbush sind einige der Besten europäischen Kämpfe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Mizisawesomewrote on 31.12.2010:[10.0] "Wrestling in Perfektion. Sehe mir sehr gern seine Matches an. Eine echte Inspiration."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: The Showstopperwrote on 13.11.2010:[10.0] "Wer 52 Jahre lang im Geschäft aktiv ist (natürlich mit der längeren "Pause") und es am Ende immer noch schafft, unterhaltsame Matches und für sein Alter beeindruckende Aktionen zu zeigen, der hat nichts anderes als die Höchstnote verdient. Johnny Saint kann mit seinem aktuellen Repertoire immer noch so manchen jüngeren Wrestler alt aussehen lassen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Denzwrote on 08.05.2010:[10.0] "Ich bin durch Johnny Saint auf Chikara Wrestling gekommen und sah, was er in diesem hohen Alter noch drauf hat, wie zum Beispiel über Wrestler wie Dave Taylor springen kann. Dazu haben seine Moves den feinen britischen Stil, was mir sehr gefällt. Meiner Meinung nach nicht nur eine Legende in England, sondern Weltweit. 10 wohlverdiente Punkte für Johnny Saint."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Hennewrote on 09.04.2010:[8.0] "War sicherlich zu seiner Hochzeit ein guter, was ich von ihm in den letzten Jahren (wXw, CHIKARA) gesehen habe, fand ich allerdings ziemlich langweilig."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: TheUndertakerwrote on 07.03.2010:"Der Kerl bestreitet mit knapp SIEBZIG Jahren noch Wrestling Matches? Und das anscheinend noch gute? DAMN! Keine Bewertung da von ihm noch nichts gesehen."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Obermackerwrote on 15.02.2010:[7.0] "Der Catchopa hat echt ein paar feine chain-wrestling-aktionen drauf, Konter, die man heute nicht mehr oft sieht. Aber jedermann da draussen weiß, daß Johnny Saint nach ner fetten clothesline nie wieder aufstehen würde. Aus Respekt vorm Alter laß ich mich doch noch zu 7 Punkten hinreißen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Aquifelwrote on 08.02.2010:[10.0] "Ich habe zwar noch nicht so viel von ihm gesehen, aber sein technisches Können, das immer auch einen gewisse "Freude am Wrestling" versprüht, kann man nicht verkennen. Und dass der Mann das mit fast 70 immer noch so präzise durchführen kann... unglaublich!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: THE GAME 4-EVERwrote on 21.12.2009:[10.0] "Sowohl in den 70ern, 80ern, 90ern und diesem Jahrtausend der beste Purewrestler von der Insel. World of Sports ist unglaublich und dieser Mann ist ein Grund dafür. Selten ach Niemals jemanden gesehen der so technisch begabt war!"
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: StefanKwrote on 03.12.2009:[10.0] "Er ist d e r Techniker. Mit seinen nun schon 67 Jahren zeigt er allen noch, was man als Techniker drauf haben sollte. Hochachtung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: BenZenwrote on 17.11.2009:[8.0] "Macht sehr viel Spass ihm zuzusehen und hat zudem noch eine grundsympathische Aura. Unglaublich was der in einem so hohen Alter noch an Leistung abrufen kann. Sein Stil ist halt sehr speziell, aber darin ist er weltklasse."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Eddiewrote on 02.06.2009:[10.0] "Wrestlinglegende hier in Europa, und das was er gegen Quack heute immer nocht zeigt, dem gebührt Respekt, 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Mick Funkwrote on 16.05.2009:[9.0] "Ich gebe zu, ich kenne nur sein Match vom Carat, aber wenn er in dem Alter noch so stark ist, muss er früher unfassbar gewesen sein. Zudem eine sehr sympathische Ausstrahlung. Den Stil kann man sich sicher nicht ewig geben, aber extrem unterhaltsam ist er schon."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Excellence of Executionwrote on 13.01.2009:[10.0] "Sein Stil ist/war in der Tat sehr exzentrisch und insofern nicht jedermanns Sache. Aber meine Sache ist es auf jeden Fall! Johnny Saint's technische Extravaganz ist wirklich Klasse. Ich habe auch einige seiner Matches aus jüngeren Tagen gesehen. Ganz großes Tennis^^!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Brainbreakerwrote on 26.09.2008:[9.0] "Sein Gentelman-Wrestling ist heute definitiv nicht mehr Main-Stream-würdig, aber für die Smartmarks immer noch unterhaltsam anzuschauen. Auch ich lass mich von seiner Konterkunst gerne ne gewisse Zeit begeistern, auf die Dauer wirds mir aber zu viel."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: wXw Fanwrote on 25.07.2008:[10.0] "Ein Gott, alles andere als 10 Punkte sind Quatsch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Brahma Bullwrote on 19.05.2008:[7.0] "Sehr guter Mann. Technisch sicherlich top. Für eine Top-Bewertung fehlt aber das gewisse Etwas und das bringt er nicht mit."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Knurkselwrote on 13.04.2008:[10.0] "Ich war zwar nicht beim Carat gesehen, aber alles was ich bei youtube, etc. von ihm gesehen habe, rechtfertig eine 10 von 10..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: ultimativboesewrote on 30.03.2008:[10.0] "Alte Männer im Wrestling.. Ich dachte das wäre nur den Nostalgieeffekt gut.. Aber wie der Kerl im Ring abgeht ist absolut krass *_*"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Mediwrote on 26.03.2008:[10.0] "Verflucht war ich skeptisch gegenüber ihn zu sehen. Aber ich muss sagen: Verdammt noch eins, ich war kaum so froh mich geirrt zu haben. Technik für solch einen Menschen ist echt unglaublich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Ibanezwrote on 19.03.2008:[10.0] "Einer der Größten, die dieses Business je gesehen hat!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Beckswrote on 11.03.2008:[10.0] "HOLY SHIT! Was war das bitte am Samstag gegen Mike Quakenbush? Ich hätte mir auch noch weitere 2-3 Runden anschauen können, es hat einfach Spass gemacht, wie ein 65 Jähriger so eine Technik noch drauf hat. Thank you Johnny Saint, this is Wrestling! 10 Punkte, was anderes kann es fast schon gar nicht für diesen genialen Mann geben."
Rating: 10.0
Sentiment: -0.056249999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Sabu316wrote on 11.03.2008:[10.0] "Geht auf die 70 zu und bringt im Ring mehr als 90% der jungen Leute. Genial der Mann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Soerenwrote on 10.03.2008:[10.0] "Kann hier keine andere Note geben. 10 Punkte, unglaublich der Herr!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: Kruemelwrote on 10.03.2008:[10.0] "Für dieses Alter einfach phänomenal. NIE im Leben gedacht, dass er noch so gut ist. Gott Charisma, wahnsinns Konter. Eine Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=4531&gimmick=Johnny+Saint
Comment: FiveStarwrote on 09.03.2008:[10.0] "Einfach eine wahre Legende des puren, technischen Wrestling :) Sein Auftritt gestern in Essen war unvergesslich. Johnny Saint gehört mit Abstand zu den besten!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Willie 19200wrote on 10.11.2024:[10.0] "Akiyama is the 5th pillar and honestly I'd put him over Akira Taue. His matches with the rest of the pillars were amazing and he always put on great matches in AJPW and NOAH. Although he's in his 50s he can still have amazing showings against people like Eddie Kingston, Bryan Danielson, and many others. His 30+ years of wrestling have been amazing and he's nothing but expiring for pro-wrestlers today and the future."
Rating: 10.0
Sentiment: 0.5285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Brando Calrissianwrote on 02.11.2024:[10.0] "Akiyama is somebody who I feel like doesn't get as much love as the Four Pillars of Heaven. To me, Akiyama is the unofficial 5th pillar. His very long tenured career packed full of incredible matches puts him up there as one of the best. Even today, after 30+ years of wrestling an incredibly physical style with devastating matches, he can still go out there and have great showings against people like Eddie Kingston and Bryan Danielson and Atsushi Kotoge and all of the tag matches he primarily wrestles in I guess to protect him from his shortcomings. But even then, Akiyama can hit just as hard and take just as much punishment as the younger stars and it just adds to his mythos"
Rating: 10.0
Sentiment: 0.23277777777777783
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Zak22wrote on 15.09.2024:[9.0] "Only familiar with him in his original All Japan run and early NOAH, and to say the least he was absolutely incredible at that time. Akiyama was explosive, exciting and hard hitting, his matches with the four pillars were usually incredible. He was a top guy."
Rating: 9.0
Sentiment: 0.28583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: woolyshamblerwrote on 21.07.2024:[9.0] "better than all of the AJPW pillars except for kobashi, especially considering his longevity and consistency. love you uncle jun!"
Rating: 9.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: JediSaiyanMaster1203wrote on 04.07.2024:[10.0] "Whenever the discussion of wrestlers who have had the best rookie year, many argue the likes of Kurt Angle and Brock Lesnar, but the real ones will also throw in Jun Akiyama among those men and argue they're just as good as the rest, or even better. While I don't know who to choose personally who had the best rookie year, so I won't answer that question, but I can totally see why someone would choose Jun Akiyama. Seriously, the fact that this man was able to skyrocket to the top in less than 5 years of his career and showcase that he could hang with All Japan's Four Pillars of Heaven is hard to comprehend, he could even be argued for the greatest underdog in professional wrestling once AJPW stopped making him the fall guy in tag matches. Then he would go on to be a more experienced wrestler by the time he wrestled in NOAH, having amazing matches with everyone from the former AJPW guys like Kobashi to NOAH guys like KENTA, he truly came into his own in NOAH if you ask me. Then he goes on to wrestle for DDT where he's the veteran that all the young guys have to truly push themselves to beat him and showcase how good they are since Jun is the measuring stick for the company. Whatever role he has in a company, he's played them all super well, it amazes me how this man is still going and has the ability to wrestle at the age of 54. Overall, Jun Akiyama is one of the greatest professional wrestlers of all time who's showcased he can be a great tag team specialist and solo competitor, a true legend in this profession we all love."
Rating: 10.0
Sentiment: 0.38638888888888884
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: LaBelle24wrote on 27.05.2023:[10.0] "Maybe the greatest to ever do it! Whether he was working as the fiery underdog during his days in All Japan, the mature and experienced fighter in NOAH and around Japanese wrestling in the 2000s, or now as the veteran gatekeeper of DDT, he's always found a way to consistently put on incredible matches and tell stories in the ring. He's underrated because even those who know him and sing his praises may not fully appreciate how good he was during his career. His match with Shibata is one of the best I've ever seen, and he's had classics with just about anybody he faced."
Rating: 10.0
Sentiment: 0.5277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: benh2wrote on 11.01.2023:[9.0] "A fantastic wrestler. He had some vicious offence and his late 90's AJPW and subsequent NOAH work was amazing. Even in his 50's he's still smoother than most."
Rating: 9.0
Sentiment: 0.03333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: GriffinXwrote on 12.02.2022:[10.0] "Still one of the very best to ever do. He's slowed a bit but not shocking given how old he is and how long he's been active. His run in DDT has been great as he showed he can still put on a high level match when he needs to."
Rating: 10.0
Sentiment: 0.33952380952380956
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: NikoKillbainwrote on 30.12.2021:[7.0] "Didn't think I'd enjoy his veteran gatekeeper role in DDT but it's actually been very good. His title win vs Endo remains one of my favourite DDT matches this year, but his defenses against Higuchi and HARASHIMA didn't do enough for me. His matches with Takeshita (KO-D Openweight and KO-D Tag) were both very good, and his tournament appearances were solid (Ultimate Tag League especially). Looking forward to his guiding role with Endo."
Rating: 7.0
Sentiment: 0.30200000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: benny5bellyswrote on 03.12.2021:[10.0] "One of the best yet still underrated wrestlers of all time. The fact he is still so good in 2021 despite the unbelievable miles on the clock is mind."
Rating: 10.0
Sentiment: 0.48333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Lalo Camposwrote on 22.11.2021:[10.0] "One of the geatest wrestlers of all time, and one of the greatest veterans of all time, his stuff in AJPW, NOAH and DDT are legendary"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Hawksrule996wrote on 14.05.2021:[10.0] "I did it watch much of his early work obviously I heard about but never saw it and then he comes to DDT at 50 years of age and I tried to keep my expectations low and I thought he would not be the guy he used to be but I was shocked at how good he still is a little slower maybe but still just as effective I. The ring the matches he has had speak for themselves with the match against Takeshita being the best of them so far"
Rating: 10.0
Sentiment: 0.18125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Kungwrote on 13.04.2021:[10.0] "I'm pretty sure I don't need to explain why Jun Akiyama is one of the best Japanese wrestlers of all time."
Rating: 10.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: ProWrestlingGuy316wrote on 30.03.2021:[10.0] "Akiyama ist für mich neben Kensuke Sasaki eine der japanischen Legenden, die sehr stark unter Wert verkauft werden. Konnte seine Klasse in mehreren Dekaden unter Beweis stellen und liefert auch im Jahr 2021 auf hohem Niveau ab."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: pierreMinnewrote on 14.02.2021:[10.0] "This guy is just a living legend. He was and he is one of the bests in the world. At 51 years old, he stills do enormous performance, like against Takeshita at Ultimate Party 2020 or against Endo at Kawasaki Strong 2021. Awesome wrestler, from the beginning of his career to the end, Jun Akiyama is fantastic."
Rating: 10.0
Sentiment: 0.3222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Ma Stump Pullerwrote on 20.12.2020:[9.0] "A brilliant technical wrestler that was only really hindered booking wise by the fact that he was around when some of the greatest to ever enter a ring in general were also at their top. Akiyama came in as basically a super rookie and very quickly got recognized as a phenomenal natural talent, a guy whom could innovate pretty well with young guys like him or with the major league stars. I did always find him awkward for the first few years in terms of his striking and pacing but he eventually found a niche in a lot of varied knee strikes and attacks. A great heel in his later years but is underrated as a underdog face during those rookie years: his selling was really on top form for those. Ultimately what hurt Akiyama the most was that he just was always booked as the B guy when it mattered, nearly always coming up short in the top title bouts with Misawa and co, and the crowd just couldn't connect with a guy who always choked like him. Having Akiyama lose to guys like Ogawa within five minutes was just bad booking. Regardless, the guy's still a legendary quality workhouse, a killer heel that could just wreck a guy in the ring without a single sign of restraint. I don't get the argument that he didn't have charisma considering he got some amazing crowd reactions from both sides of the coin either: guy could have been a main event star if the whole AJPW/NOAH spilt nonsense and Motoko Baba always lowballing him never happened. Undoubtfully a legend of the ring regardless."
Rating: 9.0
Sentiment: 0.2507395382395382
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: ElPolloLocowrote on 05.10.2020:[9.0] "The best heel to have come out of Japan, period, and one of the top ten heels of all the history of pro-wrestling. In a way he is a throwback to the glory days of lucha libre when heels were supposed not merely to be the bad guys, but great workers as well: Akiyama in full "killer mode" was a true marvel to behold because he was not just so good in the ring, and outside of it, but looked downright scary. You know, with people like Minoru Suzuki you just know they are playing the part of the psychopath well. Akiyama trascended that and just looked like something had really snapped inside him and he just wanted to hurt his rival, badly, giving him superhuman skills and reflexes. Amazing and incredible: basically a Fujiwara on steroids. The only problem I have with him is his tenure as AJPW promoter that largely coincided with what are arguably the promotion's darkest days and he carries his fair share of the blame."
Rating: 9.0
Sentiment: 0.25912698412698415
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Jetlagwrote on 02.09.2020:[10.0] "Akiyama wurde gerne als Enttäuschung verschrieen, da seine Big Match-Führung in seiner Prime nicht mit Misawa und Konsorten mithalten konnte. Dass er jedoch bereits ab 1996 in einigen der besten Matches aller Zeiten stand steht jedoch für sich. Ab 2000 etablierte sich Akiyama dann doch zum Heavyweight in der obersten Riege mit sehr vielseitigen Matches, der das Niveau verdammt lange halten konnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: PuroresuLoverwrote on 14.05.2019:[10.0] "Jun Akiyama is one of the greatest, no wonder why he is one of my favorites of all time. His matches against Kobashi and Marufuji are on another level that normal human beings can't comprehend."
Rating: 10.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: RatingsMachinewrote on 22.09.2018:[8.0] "Akiyama was a really good worker, sometimes great, and it's a shame that he didn't have the charisma to connect with the fans in a manner that would have allowed him to carry a promotion."
Rating: 8.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: jamzell00wrote on 17.08.2018:[10.0] "Still the fucking man. Jun had arguably the greatest rookie year in wrestling history and even in 2018 he's still one of the best in the world. Jun is a grumpy old man nowadays and it translates over into his matches where he beats the life out of everyone. Greatest examples of this are his matches against Miyahara and Marufuji where he hates the fact they're alive."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: taabr2wrote on 12.09.2017:[9.0] "Considerred by some as the unoffical "fifth" pillar during the awesomeness that was AJPW in the 90s, Akiyama is undoubtably a great wrestler. I just don't think that he was on the same level as the four pillars though (yes, even Taue)."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Blood Pumpwrote on 07.04.2017:[9.0] "#4 as far as the greatest of the 90s AJPW alumni is concerned behind Kobashi, Misawa & Kawada. Jun was perhaps the most intense of the pack and easily the most versatile, but I feel with his versatility he sacrifices some of the crowd connect-ability that the other three have in some way or shape. As they say, less is more, but he isn't hampered too badly by it. His work in NOAH is arguably just as good as his work in All Japan."
Rating: 9.0
Sentiment: 0.21180555555555558
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Luv all wrestlingwrote on 03.09.2016:[10.0] "When he was younger, he was amazing, as a older vet he put on classics, and as an old grizzled man he has crazy harf hitting matches and has put over the new generation of AJPW while also keeping himself a relevant power player."
Rating: 10.0
Sentiment: 0.11471861471861473
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: richeyedwardswrote on 16.03.2016:[10.0] "One of the very best, so many great matches and one of the best faces in peril ever. Despite he was not a member of the four pillars he was integral to the second half of the 90s and the early years of noah."
Rating: 10.0
Sentiment: 0.46190476190476193
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: TrevPuroFanwrote on 18.11.2015:[10.0] "Not giving Jun Akiyama the full ten points is criminal imo. The guy is basically the greatest ring technician to come out of Japan, and has a number of classics on his name. Even in 2015 he's still going at the age of 46. Jun is amazing."
Rating: 10.0
Sentiment: 0.31
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: eldenaaaaawrote on 02.09.2014:[10.0] "The master of the Exploder Suplex, and one of those wrestlers that don't need a lot of moves for doing great matches."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Matzinhowrote on 12.08.2014:[10.0] "Einer der konstantesten Typen im business, dazu bei seinen zahllosen Wurf-Variationen mit einer wahnsinnigen Explosivität und Wucht gesegnet. Wenn Akiyama in einem Einzelkampf steht ist der Gegner fast egal - der zieht jeden zu einem guten Kampf."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Kenshin Uesugiwrote on 27.03.2013:[8.0] "Tot gesagt leben länger, nach dem langem Formtief kommt nun doch der sehnsüchtig erwartete zweite Frühling! Das Akiyama es im Inneren immer noch drauf hatte wusste man ja, da er ab und zu noch glänzte. Aber seit dem er Triple Crown Champ wurde ist er wieder da, der Mann der als junger Kerl am liebsten gleich ohne Angst sich mit Kawada strikte, der ohne Furcht auf Misawa losging, der immer wieder von Taue brutal umgeknietet wurde nur um schmerzverzehrt auf zu stehen und ihn mit einem Expolder auf die Matte zu donnern. Jener Wrestler der bei NOAH, einst wie bei Kawada und Misawa, Kobashi wie einer vom Teufel getriebener hinterjagt um ihm endlich zu bezwingen. Akiyama hat seine alte Klasse zurück und so macht es Spaß ihm zu sehen."
Rating: 8.0
Sentiment: -0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Serif3289wrote on 24.01.2013:"new faction coming up soon with Jun Akiyama, Yoshinobu Kanemaru, Atsushi Aoki, Kotaro Suzuki & Go Shiozaki they're going to be called "Burning""
Rating: No rating found
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Leonewrote on 12.09.2012:[10.0] "An incredibly good wrestler, but also quite an unlucky one in a way.  He was the youngest of the AJPW famous five in the 1990s, and unlike the other 4, he never wrestled Jumbo Tsuruta when Jumbo was in his prime.  He also didn't hold the Triple Crown until 2011, 11 years after he stopped working there full time to join NOAH.  In NOAH, he was (and is) a main-eventer - But despite being GHC champion and Triple Crown Champion, 2 of his reigns ended in less than 5 minutes, after being booked to look dominant for a number of months before that.  He is a fantastic tag team wrestler, with a number of 5-star matches to his name, and he is also an innovator, with the Exploder (T-Bone) Suplex, Wrist-Clutch Exploder Suplex and the Blue Thunder Driver being moves that he effectively created for Pro Wrestling.  With age, comes experience, and Akiyama has more experience, memorable matches and accomplishments than a lot of other 20 year careers."
Rating: 10.0
Sentiment: 0.28484848484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Phoenix Downwrote on 01.05.2011:[9.0] "All die Verletzungen, all die Schicksalsschläge und all die zermünbenden Titelverluste scheinen nichts an diesem Mann und seinen Fähigkeiten zu kratzen. Er ist immer noch eine Macht im Ring und der letzte Vertreter des klassichen Kings Road Stils. Ein großer Mann ohne Frage"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Fountain of Misinformationwrote on 26.03.2011:[8.0] "Der Lack ist inzwischen irgendwie ab und man kann sich nur verwundert die Augen reiben, was aus dem Mann geworden ist. Wo ist der Mann mit dem ewigwährenden Feuer und der grenzenlosen Leidenschaft geblieben, was ist aus dem Rookie geworden, der in jungen Jahren bereits auf der Augenhöhe mit den alten Hasen war? Vielleicht liegt es an den vielen Jahren im Geschäft und den Verletzungen? Akiyama ist heute leider nicht mehr das, was er einmal war. Edit zur Bewertung vom 22. 12. 2009: Hat definitiv sein längeres Tief überwunden und ist seit gut einem Jahr wieder obenauf."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Berlin Dragonwrote on 18.09.2010:[8.0] "Einer der großen Japans , der aber wird für mich nie mit den 4 Himmelssäulen auf einer Stufe stehen wird , unabhängig ober er nun die triple-crown holte oder nicht. Er ist , oder war , zwar einer der besten im Ring , aber wirklich überzeugt hat er mich auf Grund von mangelnder Ausstrahlung nicht zu 100% , dewegen auch ''nur'' 8 Punkte. Trotzdem hatte er eine großartige Karriere mit einigen Klassikern und ich hoffe , dass er diese bald ausklingen lässt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: RickRollwrote on 23.04.2010:[10.0] "Der beste Wrestler der nie Triple Crown Champion wurde; So könnte man Akiyama wohl am besten beschreiben. Ist im Ring wirklich ganz große klasse, konnte schon bei seinem Debüt begeistern und schon 1 jahr später war er einer der besten Wrestler im Business. Heute nicht mehr das was er früher war, ist aber auch verständlich nach all den verletzungen. Ich hoffe das Akiyama so langsam ans aufhören denkt, denn er hatte eine tolle Karriere, auch wenn der größte Championship in seiner Sammlung fehlt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: homicidal cena michaelswrote on 18.02.2010:[8.0] "Guter und konstanter Wrestler, der manchmal klasse Matches hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Mankirawrote on 13.06.2009:[10.0] "Glatte 10! Bad Ass im Ring, sehr schönes Moveset und sein No-Selling wenn Hashi und co. choppen ist göttlich. Sehe ich SEHR gerne"
Rating: 10.0
Sentiment: -0.6999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: STRIGGAwrote on 02.01.2009:[6.0] "Akiyama wirkt inzwischen so, als hätte er gar keine Lust mehr, überhaupt noch in den Ring zu steigen. Somit komme ich bei ihm, trotz alter Leistungen, nicht über eine 3 hinaus."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: LexLuger4everwrote on 27.04.2008:[8.0] "Hat nie den vollen Durchbruch geschafft, obwohl viele es prophezeiten, sobald die Legenden abtreten. An guten Tagen ist er überragend, hat er aber keine Lust, hätte man sich ein Akiyama Match auch sparen können. Mit anderen Worten: Der Mann ist für mich ne Art Wundertüte, aber da das Positive in der Regel überwiegt, gibts ne 2."
Rating: 8.0
Sentiment: 0.22727272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Rancorwrote on 01.02.2008:[6.0] "Hat mich nie vollkommen überzeugen können. In den letzten Jahren in meinen Augen auch klar schlechter geworden."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: D-Stylewrote on 07.12.2007:[8.0] "NOAHs Bad Ass. Geniales No Selling (gewollt), stiffe Offensiven und schönes Moveset. Note GUT"
Rating: 8.0
Sentiment: -0.6999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: SternessDustOmegawrote on 05.12.2007:[10.0] "Trotz GHC-HW Titelrun(s) noch nicht da wo er hingehört. Bisher (leider) noch nicht als Ace von NOAH etabliert, was wohl daran liegt das Misawa und Kobashi noch aktiv sind. Trotzdem: Für mich absolut überzeugend im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: dariawrote on 27.10.2007:[8.0] "einer von den japanischen Wrestlern, der mir richtig gut gefällt, Klasse-Techniker!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1001&gimmick=Jun+Akiyama
Comment: Carlito ICWwrote on 18.09.2007:[8.0] "Innovator of the Ecploder! Riesen Heavyweight und starker Wrestler."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: BiosJoshiBarwrote on 10.10.2024:[10.0] "Of course I'm going to give the most viral joshi a 10 everything she does is just pure gold, Stan the Popping Sugar Rabbit"
Rating: 10.0
Sentiment: 0.35714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: mostlyaccuratewrote on 18.07.2024:"She is a talented wrestler that deserves more attention from people as she's so easy to get behind. She isn't perfect but definitely one of my favourite women in wrestling today"
Rating: No rating found
Sentiment: 0.37222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: singlemalttheorywrote on 13.05.2024:[9.0] "Mizuki is an increible underdog babyface who makes Riho look like Dick The Bruiser. As good as she is, though, I can certainly see how even a non-Cornette fan could find her selling a bit off-putting."
Rating: 9.0
Sentiment: 0.45714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: UBVenuswrote on 24.04.2024:[10.0] "Mizuki is everything a TJPW wrestler should be. The way she presents herself makes her easy to cheer for and lovable. She can get herself over, anywhere, anytime. I don't think I have ever seen a Mizuki hater besides keemstar lame ass. Her in ring ability sets her far above the rest of the roster with her incredibly flashy but effective moves she seems to hit with ease. Her bubbly personality and in ring work create the closest thing to a masterpiece. She truly is amazing dude. Cannot wait to see her in another title picture, because she deserves it more than anyone else!"
Rating: 10.0
Sentiment: 0.2064814814814815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: teenagehonvedfanwrote on 24.12.2023:[9.0] "The fact that TJPW do not seem to trust her despite her matches being solid and her being over with home Japanese crowds as hell baffles me."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: MVCfanwrote on 22.12.2023:[8.0] "On a technical level, she is lacking, yes, but she in a smaller promotion he has no wider impact on wrestling culture in Japan or the wider world. This being said, she is a credit to her coaches. 10 is a bit high because her output is hurt by booking. Yes, this true she in her prime her coach or two of them attest were having 1520 matches when each of them were in their primes weather tag or singles. Its startling to spin that way for her but now Yuka is gone i hope she still gets this to get more Ring time like her coaches in their own prime days 7.6/10 will mistlike go up but never to 10 sicne. As much as i like her she will never be a possible GOAT level GAL."
Rating: 8.0
Sentiment: 0.14555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: skillgullwrote on 11.12.2023:[10.0] "After starting to watch TJPW she has quickly become one of my favourite wrestler to watch currently. Due to her ridiculous size difference and overall likeability, she makes you want to cheer for her no matter what. Her selling is immaculate and aided by her lack of size, this leads to every move she takes looking like it could kill her, particularly against large opponents. Awesome, one of the best of TJPW"
Rating: 10.0
Sentiment: 0.25066137566137564
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: robvanspunkmeyerwrote on 05.08.2023:[10.0] "Please note that this is my first rating for a wrestler. I simply do this to show appreciation to world's finest female. She was the best in 2022 and most likely is in 2023. Excellent matches at least since the Reika Saiki title fight in 2017. Eternal underdog character due absurdly small size, yet never unbelievable fighter. A beacon fo positivity and humor. Incredible agility, incredible finishers and signature moves in Cutie Special and Whirling Candy. A perfect piece in the TJPW puzzle!"
Rating: 10.0
Sentiment: 0.3571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: Kamilahclanwrote on 24.05.2023:[7.0] "A very fun wrestler to watch that is also very easy to root for and has an exciting moveset. She's cool."
Rating: 7.0
Sentiment: 0.4008333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: twilightdreamwrote on 07.05.2023:[10.0] "Excellent wrestler and storyteller in the ring. Mizuki is my favorite in TJPW. I hope they book her title reign well because she deserves it."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: velwrote on 27.04.2023:[9.0] "Mizuki keeps on impressing against all odds. Being so light, she manages to make her attacks look so impactfull. Ad still she has the most spectacular arsenal in Tokyo Joshi. Really happy her work paid off, as she is the last of TJPW bigest stars to get the PuriPuri title."
Rating: 9.0
Sentiment: 0.45999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: benny5bellyswrote on 06.04.2023:[9.0] "My current favourite wrestler in TJPW. She pretty much always delivers to a very high level for a modern joshi"
Rating: 9.0
Sentiment: 0.17160000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: wrestlejackalwrote on 01.04.2023:[10.0] "Mizuki is probably my favourite wrestler right now across any promotion. When I was introduced to her in 2018 when she first won the Princess Tag Team Championship with Yuka Sakazaki (as Magical Sugar Rabbits), I was enamoured. She wrestles with great fluidity, and brings a lot of passion to the ring every match. Her bridge when performing the Cutie Special is top notch, and Whirling Candy is easily in the top 5 of best current wrestling maneuvers. Always a joy to watch."
Rating: 10.0
Sentiment: 0.4932900432900432
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: DCitywrote on 05.01.2023:[10.0] "Mizuki's tag team partnership with Yuka Sakazaki needs little introduction; the Magical Sugar Rabbits have great chemistry and never fail to put on a show. Mizuki herself is an absolute workhorse, the kind of wrestler who feels like they can get a good match out of anyone. She's very charismatic and has a great array of moves - She doesn't break out her signature 'Whirling Candy' very often but it's always special when she does. That move defies belief and I still can't figure out exactly how she does it even when watching slowed-down footage. Ring psychology is another strong point of hers; Mizuki is excellent at telling her story in her matches as momentum shifts back and forth, her selling is so good that you never know with certainty who's going to win, even when the victor is a foregone conclusion on paper. This is the kind of wrestler that any promotion would die for. Mizuki consistently delivers on everything you would ever want from a performer."
Rating: 10.0
Sentiment: 0.468577694235589
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: GriffinXwrote on 30.01.2022:[9.0] "Mizuki is a joy to watch in the ring she is so smooth and near perfect with everything she does. She rally does feel like she can be the top name in TJPW at some point"
Rating: 9.0
Sentiment: 0.56
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: Lalo Camposwrote on 22.11.2021:[9.0] "A very good wrestler, one of the best wrestlers of the TJPW roster right now and her team with Yuka Sakazaki is really good to watch"
Rating: 9.0
Sentiment: 0.7239285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: jubileewrote on 18.08.2021:[10.0] "Whirling Candy is a sight to behold. But even beyond that she has so much to offer as a singles and tag wrestler. I think in time she will be a big singles star, she's certainly already on the road to that now and has only been getting better each year. Her match against her partner Yuka Sakazaki was overlooked as one of the best matches of last year."
Rating: 10.0
Sentiment: 0.27346938775510204
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: automaticawrote on 06.05.2021:[10.0] "She has the best move in all of wrestling right now with Whirling Candy and her tag team with Yuka is one of the best in the world today. Someday she'll get that singles title reign."
Rating: 10.0
Sentiment: 0.7619047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: Kungwrote on 28.04.2021:[8.0] "Mizuki was actually one of the wrestlers who helped me get into TJPW. She's always had this indescribable quality that makes her an intriguing performer to watch on every show. While she's maybe not the greatest singles competitor, she more than makes up for it in the tag team division. In Tokyo Joshi alone, she's been a part of two quintessential tag teams, one with Maki Itoh and the other with Yuka Sakazaki. All and all, I think Mizuki is a great performer."
Rating: 8.0
Sentiment: 0.41250000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: Grissomwrote on 20.04.2021:[9.0] "Mizuki ist einfach großartig und ein der Aushängeschilder von TJPW. Sehr sympathisch aber auch ziemlich evil wenn sich die Gelegenheit ergibt. Im Ring eine der besten des Rosters und auch speziell im Tag Team mit Yuka Sakazaki als die Magical Sugar Rabbits immer ein Highlight jeder Tokyo Joshi Show. Ihr Title Match gegen Yuka Sakazaki zählt wohl bis dato zum besten Match der Liga."
Rating: 9.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: nWo-Joshi-Guywrote on 06.04.2021:[10.0] "Originally I did not particularly like her, that changed very quickly though after seeing her about two times; she is amazing. Mizuki may not be 10/10 in terms of wrestling ability alone, even though she is very good, but professional wrestling is of course just as much about gimmick/character work; in which she excels. She is very entertaining and some of her moves, such as the Whirling Candy, are amazing. She is great at selling as well; sometimes it looks like she has instantly collapsed/become lifeless. Her matches with Yuka were fantastic and I think it was kind of a shame she didn't dethrone her."
Rating: 10.0
Sentiment: 0.39892857142857147
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: laldilawrote on 13.01.2021:[6.0] "I have never quite been able to get into Mizuki's work. She's got a very remarkable career so far and almost definitely has more accolades in store for her, but I don't find her matches to be as interesting as some of the other wrestlers in the company nor is her character work or gimmick as memorable (again, especially compared to other people in the company. )"
Rating: 6.0
Sentiment: 0.28250000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15843&gimmick=Mizuki
Comment: Yapperman3wrote on 28.08.2019:[10.0] "the popping sugar rabbit is a very versatile wrestler not too dissimilar to your fast devil types like Riho or Tsukushi. Excellent in both single or tag settings and also has long queues for her autographs"
Rating: 10.0
Sentiment: 0.25571428571428567
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: zacharymahabirwrote on 10.02.2025:[10.0] "This dude has everything. And the natural charm, to boot. He should win a Noble Prize in the category of "big pretty boy fucker who wrestles well". In all seriousness, I love his speed in conjunction with his offense. So much potential to do a lot in the business."
Rating: 10.0
Sentiment: 0.32142857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: 77mega6wrote on 19.01.2025:[10.0] "Konosuke Takeshita is the type of wrestler who doesn't just perform--he transcends. Every time he steps into the ring, it feels like you're watching something special, as if he was born to do this. The combination of power, agility, and technique he brings is breathtaking, and his adaptability makes him a standout no matter the opponent. What's so impressive about Takeshita is how he blends raw athleticism with deep storytelling. He can hit you with suplexes and strikes that look like they'd knock out a bull, then seamlessly shift into chain wrestling that feels like an art form. He's a throwback to the best of puroresu, but he also fits perfectly into today's global wrestling landscape. Takeshita has this uncanny ability to connect with the crowd, whether he's playing the underdog, standing toe-to-toe with legends, or delivering epic heel moments. His passion is contagious--you can see it in his eyes, his movements, and the way he treats every match like it's the biggest stage. And let's not forget that blue thunder bomb--every time he nails it, the crowd goes wild. It's rare to see someone so young carry themselves like a veteran, but Takeshita already feels like a generational talent. He's not just a future world champion; he's a cornerstone of wherever he wrestles. Watching him rise is like being in the front row of history, and it's exciting to think about where he'll go next. If you're not a fan yet, trust me--it's only a matter of time. Konosuke Takeshita isn't just good. He's the kind of great that makes you remember why you fell in love with wrestling in the first place."**"
Rating: 10.0
Sentiment: 0.33234890109890103
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Lukeathonwrote on 13.01.2025:[9.0] "What a wrestler. I don't think so far I've seen a Takeshita match and it's let me down, 9 times out of 10 it always exceeds expectations, he's a genuine machine of a wrestler and I like that he's managed by Don Callis as a mouthpiece, but I think that could be built upon more, have Callis himself be scared of Konosuke to build up his character as much as you can, there's potential for Takeshita to become a major success in the American market provided he is booked right, which is not something most male wrestlers from Japan can say, sky's the limit for him and I hope he hits all the heights possible."
Rating: 9.0
Sentiment: 0.16866605616605618
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: NothingGreatAboutwrote on 12.01.2025:[9.0] "Takeshita è uno dei wrestler del panorama attuale che mi diverto di più a guardare. Ha un ottima presenza sul ring e sa fare tanti tipi di incontri diversi, la sua offensiva è estremamente credibile e quando lo vedi nella card sei abbastanza sicuro che sarà lo show stealer. Aspetto a dargli dieci perché può ancora fare una run da face davvero incredibile."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: SpectorLKMwrote on 12.01.2025:[10.0] "I asked myself a question today, who is my favorite wrestler? It's Takeshita. At his best, one of the most fun, if not the most fun wrestler to watch in the world. His match with Ishii from Dynasty is amazing and that match with ELP, that is out of this world good. The Ospreay match oh my god the Ospreay match bangs so hard. When he is at his best, no one gets me on my feet like Konosuke Takeshita, whether its those german suplexs, that raging fire, the catching Blue Thunder Bomb, OR THOSE FUCKING CATACLYSMIC FOREARM STRIKES, this man does it all so well."
Rating: 10.0
Sentiment: 0.3648809523809523
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: suNnwrote on 11.01.2025:[10.0] "After Konosuke's showing in the 2024 G1 Climax, and stellar post-G1 performances against Mortos, Mike Bailey, Josh Alexander, Ricochet, Hobbs, Ishii and Shingo Takagi; I'm willing to admit that Takeshita is currently the greatest active talent going right now. He's a total package that can do it all. A multi-champion for a reason."
Rating: 10.0
Sentiment: 0.23605442176870747
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: MEDaminewrote on 05.01.2025:[10.0] "What a star, he's currently one of my favorites in AEW, one of the best wrestlers in the world in the ring + incredibly charismatic, a future world champion, and it should happen few months after he loses the International title"
Rating: 10.0
Sentiment: 0.14285714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: justwrestlingwrote on 05.01.2025:[10.0] "Need AEW to keep pushing this beast. One of the best wrestlers on the roster and has incredible charisma. Want to see him be an AEW World Champion in the future."
Rating: 10.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: NickGHCwrote on 05.01.2025:[10.0] "Future world champion for sure. Incredible athleticism and charisma. This was HIS summer with an incredible run on G1 climax 34!"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: LGL19wrote on 27.12.2024:[10.0] "One of the very best in the world today. Never has a bad match and one of my favourite's to watch. Truly a generational talent, hope he gets a world title run soon."
Rating: 10.0
Sentiment: 0.15000000000000008
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: TheNomadMagicianwrote on 21.12.2024:[6.0] "Wrestlerisch gut, Charisma beschränkt vorhanden und keine Promoskills. Ich gucke genrell kein japanisches Wrestling, bei AEW konnte er mit starken Matches überzeugen, darüber hinaus wirds schwierig. Man sieht ihn nicht jede Woche, was für einen Champion schon kritisch wird."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Oldboywrldwrote on 15.12.2024:"[10.0] this guy is crazy talented he have it factor in him he can win it all in njpw just imagen him vs okada our tanahashi our naito in 40 min match in wk mainevent our him wining g1 climax hes not belong in usa save this guy he can be a goat for him self."
Rating: No rating found
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: JuanLocowrote on 14.12.2024:[8.0] "The guy is very good, but it will be difficult for him in the United States because he doesn't know the language, but I wouldn't mind seeing him as world champion. If one day he signs with NJPW, he will easily be their new superstar."
Rating: 8.0
Sentiment: 0.2449242424242424
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: V0icesAreLouderwrote on 08.12.2024:[10.0] "I think he is a top 3 wrestler in world that hasn't be presented as such ETC: Needing to cheat against a returning Adam Cole and needing to cheat to beat Ospreay. I get the reasons but I think a guy as good as him shouldn't need to. He definitely needs better booking and should presented like Gunther."
Rating: 10.0
Sentiment: 0.33999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: LJAwesome 03wrote on 25.11.2024:[9.0] "Takeshita lives by the moniker of "The Alpha"! He's such a beast with so much experience under his belt starting at a 16 years to still being a top-tier performer at 29 years old and he's career is only blossoming further as he continues! He's a perfect embodiment of high-flyer, technician, & striker all rolled into one and doesn't seem to be slacking in any of his matches pulling off such eye-catching moves like his signature Blue Thunder Bomb! I'll continue to be impressed by Takeshita as he's longevity for wrestling will be in his favor!"
Rating: 9.0
Sentiment: 0.22999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Warriorheart12wrote on 18.11.2024:"Konosuke Takeshita ist derzeit mein absoluter Lieblingswrestler! Seine Glaubwürdigkeit wird nur noch von seinen Aktionen überstrahlt. Die Frequenz seiner Top Leistungen sucht in diesem Jahr wirklich seines gleichen. Seine Entwicklung schreitet stets Vorrang und ich bin gespannt auf alles weitere!"
Rating: No rating found
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: SoaKaswrote on 09.11.2024:[10.0] "Really good but I'm not seeing what everybody else sees. I don't know what it is but I can't compare him to a young Ibushi or even Okada as some people have done in the past. He's definitely a good act but he has yet to impress me. EDIT: His matches with Ospreay and MJF in particular have impressed me. And his G1 run solidifies the thought that he's an incredible talent that sadly is in the wrong company."
Rating: 10.0
Sentiment: 0.2574074074074074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Dweeeabwrote on 27.10.2024:[10.0] "The best wrestler in the world right now imo.Takeshita can absolutely do it all, technical exchanges, high flying spots, insane back and forth sequences & even comedy. I believe you can find amazing matches from every year in his career (yes even the beginning) but the run he has been on from 2023-2024 he has been on an insane level. Every match he has I seek out and Im not disappointed, he was even the standout in the g1 this year having amazing match after amazing match. I cant wait to see more and more matches from him."
Rating: 10.0
Sentiment: 0.2014795918367347
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: thedr7qwrote on 20.10.2024:[10.0] "I enjoyed his work as a Japanese babyface when he first joined AEW. Incredibly hard hitting and athletic wrestler. I would have rated him an 8/10. But as a heel? He is such a natural heel, especially against highflyers. He comes across as a hard-hitting beast. One of my favorite wrestlers in the world right now."
Rating: 10.0
Sentiment: 0.14933862433862435
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: CatchCaro22wrote on 17.10.2024:"This guy has it allcharisma, technical skill, and raw power. He can adapt to any style and has the potential to be a world champion in a major promotion. After an impressive G1 performance with a five-star match, he's proven himself as one of the best in the world. A 10/10 talent with the chance to become the biggest Japanese wrestler in North America someday."
Rating: No rating found
Sentiment: 0.2616758241758242
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: GreatAetherBosswrote on 17.10.2024:[10.0] "Face, heel, tweener, whatever he does he makes it gold. Takeshita quickly became a pillar of the future of the company and anywhere he goes he makes magic happen. Can do just about anything you could imagine, and the excitement in each match he's in always pays off. He genuinely deserves a shout in the conversation of being the best in the world today, and I won't be surprised if that timeframe of debate largely widens in the coming years."
Rating: 10.0
Sentiment: 0.36394557823129253
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Vortex434wrote on 16.10.2024:[10.0] "There's been a lot of talk about certain people being the best wrestlers in the world and this man should be in that conversation he has star written all over in all caps no less, he's got the size, agility, moveset and just exudes charisma and yet he's still only 28 years old, I remember when he first turned heel in aew Don callis proclaimed him the best Japanese wrestler claiming that he was better than okada, tanahashi, mutoh and many others quite frankly I think when it's all said and done he might be mentioned in the same breath as them if not eclipse some of them. Everything this man does is pure gold his moveset isn't exactly the fanciest in the world but dammit he makes them look like they are! his arching German suplex is the best around without a doubt and he even makes you slightly believe that his blue thunder bombs could very much end a match just because of how beautiful they are despite how many times they've been kicked out of. If this year comes to an end without Takeshita as international champion then something is wrong with the world. Edit: months after I initially rated Take a 10 he has finally won the international championship and I couldn't be any happier for him he absolutely deserves it, this man is a freaking beast his striking ability is second to none and for my money now that Danielson is semi-retired he is the single best rope to rope wrestler in the world yes better than Osprey better than ZSJ and better than freaking Okada and if it weren't for Jay white he would be my personal favorite active wrestler today."
Rating: 10.0
Sentiment: 0.2598101673101673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: NoaHS106wrote on 16.10.2024:[9.0] "Einer meiner Lieblings Wrestler, sehr stark im Ring, hat seit seinem Heel Turn eine Ausstrahlung wie kaum ein anderer und auch einen sehr guten Look. Freue mich auf seine Zukunft und ich hoffe er wird gut eingesetzt um es irgendwann ich den Main Event zu schaffen."
Rating: 9.0
Sentiment: -0.016666666666666677
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: RaysBruwrote on 27.09.2024:[9.0] "Booking limits him, despite being one of the best young wrestlers today. Currently, they're teasing a match with Ospreay, which should give him a title run until the world title picture becomes available to him."
Rating: 9.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: jsbortswrote on 08.09.2024:[10.0] "This guy has everything. He oozes charisma, he's a technician when he needs to be, a powerhouse when he needs to be, and truly can do it all. He needs to be a world champion some day in a major promotion and has a chance to be the biggest Japanese professional wrestler ever in North America some day."
Rating: 10.0
Sentiment: -0.009375000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: ThatHouseCDNwrote on 05.09.2024:[10.0] "This year is the big year where Takeshita makes a ton of moves forward. I can see him and Osprey feuding near the end of the year with the Callis feud brewing."
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Lord AdGnalDivwrote on 26.08.2024:[10.0] "Last year I called Gabe Kidd the MVP of the G1 and gave him a 9 with the promise to upgrade that to a 10 once he had some five-star matches. Konosuke Takeshita was, without a single doubt, the MVP of this year's G1 and he had a five-star match during the tournament. He's one of the best in the world right now. 10/10 for the former decathlete."
Rating: 10.0
Sentiment: 0.24285714285714288
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Orchardwrote on 09.08.2024:[10.0] "This guy is him, the alpha is gonna go down with the puro greats just needs that push to put him at the top of the card"
Rating: 10.0
Sentiment: 0.17222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Willie 19200wrote on 08.08.2024:[9.0] "Terrific performer that's been held back by some just down right bad booking decisions. He is so fun to watch in-ring and I love watching him wrestle, but he just never get's put over in matches. He's doing really well in the G1 Climax this year and I hope when he returns to AEW he get's treated the way he deserves."
Rating: 9.0
Sentiment: 0.05376984126984129
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: BigPeanutGuywrote on 08.08.2024:[10.0] "Years of embarrassing booking is holding Takeshita back from being the best wrestler on the planet. The most consistent man by a country mile in this year's G1, an unbelievably diverse wrestler who can do whatever it is you need of him. His incredible matches against Hirooki Goto, Darby Allin, Swerve Strickland, Yuya Uemura and Yota Tsuji would be at the top of so many wrestlers catalogue for their whole career. For Takeshita? That's just 2024."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: birdmanswagwrote on 06.08.2024:[10.0] "This guy is ridiculously good at such a young age. He will go down as an all time great with the likes of Bryan Danielson imo. everything he does in the ring looks so smooth, I have yet to see a bad match from him and he might be my favorite current wrestler of any company. His match vs Ospreay is probably my favorite but I also enjoyed the MJF one on Dynamite. love his forearm/elbow strikes they look so stiff and devastating. Takeshita is just fucking awesome and any time he wrestles you should seek out his matches they are absolutely worth your time."
Rating: 10.0
Sentiment: 0.20188492063492064
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: bigotownsendwrote on 27.07.2024:[10.0] "A future AEW World Champion, its basically impossible for Konosuke Takeshita to have a bad match and its only a matter of time before he breaks out of his current spot in the midcard and cements himself as a main eventer. Hes also had a brilliant run in the G1 Climax 34 so far. The skys the limit for Takeshita and may the Cinnabon gods shower him with endless cinnamon rolls."
Rating: 10.0
Sentiment: -0.03611111111111108
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Joe907wrote on 21.07.2024:[10.0] "One of the most talented wrestlers today. Height, agility, and strength he uses them to his advantage and puts on epic matches. His moveset is super good. Great abilities all-round"
Rating: 10.0
Sentiment: 0.5222222222222221
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: IoIyowrote on 20.07.2024:[10.0] "Has absolutely everything, absurdly appealing look combined with a crazy high workrate that makes him my bet to be the face of whichever major company he decides to spend his prime years with in the very near future"
Rating: 10.0
Sentiment: 0.06464285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: KingSlenderwrote on 16.07.2024:[9.0] "One of the most overwhelmingly athletic guys in the biz rn. Every move Takeshita does whether it be a German suplex, an elbow shot or a running knee has so much finesse and just plain OOMPH behind it. To me all marks of someone clearly dedicated to the craft of this sport. Sadly I think because of the language barrier he doesn't quite get the push he deserves but I think his natural ability and charisma should be able to transcend that soon and he'll start getting some real title pushes. (9/10)"
Rating: 9.0
Sentiment: 0.0896103896103896
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: cozyheartachewrote on 01.07.2024:[10.0] "The run that Takeshita is about to go on after he turns 30, will put him in greatest of all time debates."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: PositiveMirror11wrote on 30.05.2024:"Absolutely lethal. This guy has presence. It's crazy, because I know how great he is, but I have watched wrestling so long, I forget just how IT Takeshita is. But then you watch his matches and you, mid-match, remember just how damn good and threatening he is as an opponent to any champion. Sky's the limit for him. If he can just grasp basic English, or integrate Japanese into his promos and just talk, he'll have that brand in the palm of his hand. Immensely talented."
Rating: No rating found
Sentiment: 0.19444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: May11wrote on 27.05.2024:[9.0] "He is doing great work in both DDT and AEW. He is one of the best wrestler in the world right now. I dont know why AEW is not pushing him hard, he is better than half of their roster."
Rating: 9.0
Sentiment: 0.35456349206349214
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: WrestlingGuruwrote on 26.05.2024:[7.0] "A great in rign wrestlers, there's no denying how good Konosuke is inside the ring but I am hoping that being a aprt of the Don Callis famiyl really helps him connect to the American audience and he needs more than jsut being great in the ring to get ahead in the U.S. Rooting for him."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Rassle Fanwrote on 01.05.2024:[9.0] "If there's anything holding him back it's the language barrier but since he's had Don Callis as a mouthpiece that's not a problem. Since he's come back to AEW he's been on a completely different level. I wish the booking was more favorable to him because he's in great match after great match but keeps losing them. Eventually he's going to need a big win to avoid fan apathy. As it stands, he's still one of the best active wrestlers anywhere."
Rating: 9.0
Sentiment: 0.3766666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Juanca1210wrote on 09.04.2024:[10.0] "One of my favorite wrestlers in the world, and a very underrated performer, the in ring level of Takeshita and his moveset puts him among the top 10 wrestlers in the world today. April 8 of 2024. I hope that Takeshita reaches his goals in his career. AEW has a rough diamond on his roster, in the american wrestling tv shows the charisma and mic skills are more appreciated than the ring style. But I would like to see Konosuke Takeshita be succesful."
Rating: 10.0
Sentiment: 0.2571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: JediSaiyanMaster1203wrote on 31.03.2024:[10.0] "No matter if he's in DDT Pro-Wrestling or All Elite Wrestling, Konosuke Takeshita is the man! He might just be the best wrestler under the age of 30, he's that good. Konosuke Takeshita is so fluent in the ring, he's so smooth with how he wrestles and moves around, the athelticism and strength he combines is amazing, how he can easily pull off moves like they're nothing never gets old to watch. He might even rival the likes of Bryan Danielson and Gunther for some of the best strikes currently, his flying knee looks so incredible everytime he hits it that I would totally be fine if he made it his finisher. I'm all fine with Don Callis being his manager, as long as he puts him over PROPERLY instead of just talking about himself. Anyways, it's nice to see Konosuke get around the language barrier and get over with the American audience, seriously, this guy is too good to be held back and not be pushed to the moon. If the cards are in his favor and with the right booking, him and Don Callis could be this generations The Great Muta & Gary Hart. Overall, incredible wrestler with amazing strength and skill, also has aura/charisma."
Rating: 10.0
Sentiment: 0.4116977225672878
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: thewrestler1440wrote on 31.03.2024:[10.0] "Takeshita in the Ospreay and Omega matches was very good and I enjoy his style very much. Easily one of the best of modern times"
Rating: 10.0
Sentiment: 0.5886666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: SagBellywrote on 28.03.2024:[9.0] "Awesome wrestler. Great technique, fast, so strong, it's going to be a joy to see how much higher he's going to go"
Rating: 9.0
Sentiment: 0.5805555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Cass93wrote on 26.03.2024:[10.0] "This guy has it all, charisma, size, in-ring ability, everything he does is great, he has to be pushed to the moon."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: TripleCrownwrote on 17.03.2024:[8.0] "Very, very good. I would love to rate him higher but he's still fairly young and I feel he has a lot of room to grow and become an elite wrestler. The biggest thing that stands out is his size, he's not the typical Japanese wrestler, he's fairly big and he wrestles like somebody who is a Junior Heavyweight. I really feel like he has the potential to be a 10 rating in the future, I can't wait to see how he grows in AEW and hopefully he can do some stuff in NJPW. Takeshita in a G1 Climax would be so damn fun to watch and I think it would do him good to wrestle that many matches in a short amount of time, simply due to the fact it would give him more experience. Personally, I think he's a guy who will 100% be a heel, he doesn't really have the look that could help him thrive as a babyface, unless he becomes one of those "cool" babyfaces in the future."
Rating: 8.0
Sentiment: 0.21091666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Wrest lingaddictionwrote on 19.02.2024:[9.0] "This man is amazing, after following his career for the past 5 years I can safely say he deserves to be a world champion. Has had amazing matches with some of the top stars in the world and is the reason I got into DDT in the first place, Takeshi is the present and future of this business. The sky's the limit for this top tier athlete!"
Rating: 9.0
Sentiment: 0.28250000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: edmondthecat7wrote on 19.02.2024:"Takeshita is a great technical wrestler. He has beat many top stars in AEW but for some reason, he has no momentum. He is great, but his booking is weak."
Rating: No rating found
Sentiment: 0.37083333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: mxkamiwrote on 11.02.2024:[10.0] "If you're an AEW hater, I feel bad for ya holding that against Takeshita. I've enjoyed his work for years, where he was just a sexy guy who wrestled like a madman in DDT, to his first North American indie run where he killed it everywhere he went. Look, size, ability, moveset, in ring flow. I get it, if you take points due to him not talking a whole lot in North America. But that's why you give him a mouthpiece (even if it's currently Callous). He truly is an impressive young talent, who will continue to grow. I am terrified of what this man will be capable of when he actually hits his prime (which, during this generation of pro wrestling, seems like people don't hit until they're 37 or older)."
Rating: 10.0
Sentiment: 0.12611111111111115
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Blakeiokwrote on 10.02.2024:[10.0] "This guy is insane! His whole AEW tenure has impressed me, especially his match with Darby Allin earlier this year and his match with Kenny Omega at All Out 2023. Amazing signing for AEW and I hope he gets a title soon."
Rating: 10.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: BallOfYharnamwrote on 06.02.2024:"Konosuke Takeshita is probably the most promising wrestler in the world under the age of 30. I have found his recent booking in AEW to be shocking, as theres no reason to waste his time with a faction that lost all relevancy months ago. An incredible in-ring talent and a natural babyface, Konosuke Takeshita is a world champion in the making. (9/10)"
Rating: No rating found
Sentiment: 0.07142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: anonymousgmwrote on 02.02.2024:[9.0] "Konosuke is a future world champion. He has a great look, oozes natural charisma, and his moveset is top tier."
Rating: 9.0
Sentiment: 0.24000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: MichaelDaviswrote on 22.01.2024:[9.0] "If all is right in the world, Konosuke Takeshita will be a world champion. The fact AEW has done little to nothing of note with him since he beat Omega twice is baffling."
Rating: 9.0
Sentiment: 0.04910714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: UltimoMutawrote on 18.01.2024:[9.0] "My favorite match archetype right here. An underrated banger and a match I was personally waiting for all year after the Don Callis turning on Kenny Omega thing. Kenny Omega in a big match on a ppv? Consider the show stolen and give him match of the night every single time. This was a high octane match that felt like a G1 Climax encounter. Omega took some nasty bumps in this one. It's a stiff, explosive match full of high impact offense and it never slows down. Even the Don Callis interference was done well. Omega's unselfishness isn't talked about enough. Guy is always putting people over and making them look excellent while doing it. This was the biggest win of Takeshita's career and one of the best clean wins over a huge star in AEW's history. It's a shame Takeshita hasn't done much since."
Rating: 9.0
Sentiment: 0.2147953216374269
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: danzitorockwrote on 06.01.2024:[9.0] "Takeshita is a phenomenal athlete, the guy's ring-skill is pretty awesome, he can do it all. At a very young age, he has already shown incredible abilities, and established himself into one of the most gifted wrestlers around. The number of incredible matches he delivered at DDT is impressive."
Rating: 9.0
Sentiment: 0.6311111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: SockyDocky8wrote on 13.12.2023:[7.0] "Takeshita is an average wrestler at best, no doubt he deserves to be in a top promotion but he lacks the charisma to be a great wrestler. He wrestling ability is decent but he could add a bit more to his arsenal. AEW kind of pushed him to the moon with him defeating Omega but havent done anything with him since."
Rating: 7.0
Sentiment: 0.48809523809523814
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: skillgullwrote on 17.11.2023:[8.0] "I haven't seen any of his DDT stuff, however based off his stuff in AEW he has been really good. In ring his amazing and is naturally charismatic and suave. I can't rate him higher because of poor booking and lack of DDT knowladge."
Rating: 8.0
Sentiment: 0.32999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: GoldLigerwrote on 09.09.2023:[8.0] "In all honesty, I didn't quite see the hype for Takeshita in DDT. He clearly had the physical attributes to be a higher-card singles guy and he was a solid worker, but it felt like he wasn't matching the spot he was given by DDT as their ace to succeed the likes of HARASHIMA, Ibushi, & Omega. Outside of certain matches where he gelled with his opponent and told the right story, I found his work a little underwhelming, particularly in his very inconsistent limb selling and sometimes awkward match pacing, even in shorter tournament matches. His power offense is insane and always pops me when he pulls it off, but that can't be all you bring to the table. In AEW though, I think he's much more in his element. As a fresh face on the roster he was putting in some really great sprints on TV, and turning heel with Callis gave him something of substance to work with before being "guy who has good match on Dynamite" got too stale. His style matches the faster pace of AEW's TV-focused product that usually lacks filler barring a commercial break heat segment, and very few guys (outside of masters like Danielson who've made it work) will really expose that issue with limb selling he probably still has. I think he made the right call coming to AEW from DDT, and I can see him having a great run there before eventually returning to his home promotion a changed man."
Rating: 8.0
Sentiment: 0.0762991718426501
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: crs285wrote on 06.08.2023:[8.0] "Takeshita is a really good talent. He had a really good run in DDT. Surprised none of the bigger Japanese companies got to him before AEW did as I think he could have been a main event player. In the ring he does everything right and I can't remember a Takeshita match I did not enjoy. He is still young and has a lot of potential. His run with Callis has been much better than his face run. Thinks he needs a manager in the US at this point in time."
Rating: 8.0
Sentiment: 0.2138528138528139
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: deceivrwrote on 17.07.2023:[8.0] "The amount of times I laughed at him because of his name before seeing him would make me feel like Satan; I wasn't laughing by the time I saw him kick ass in 2017. For starters, Takeshita was brought up as the next big thing right from the get-go despite him having the build of a hickory stick. As soon as he bulked up and started to adapt to the conditions that he was in, Takeshita was ready for the big time. His run in DDT is, arguably, the greatest in company history; his matches with the likes of Shuji Ishikawa, Jun Akiyama, Tetsuya Endo and Kota Ibushi are some of the greatest in company history. When he signed with AEW to a dual contract, I was 50/50; were they going to make him their Okada and put him in neat spots, or would they brick them down? Thus far, we still don't know; he still is literally fresh to the fullest extent and there is no rot in this man. Right now, it seems quite neat to state that he is still the future of the business, whether it be in a positive or negative is completely up to the hands of time."
Rating: 8.0
Sentiment: 0.23394660894660896
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: bishowrote on 24.06.2023:[10.0] "The next big thing of Japanese wrestling of course. I can imagine him being a star like Tanahashi and Okada. He has the talent of wrestling which not many have. his matches are an example of what wrestling should be. don't know if he can cut good promos or not. but when he says those Japanese short sentences on Dynamite. he looks cool and badass af. Don Callis will take care of the segments and these things. but when it comes to the in-ring work. he is one of the best today"
Rating: 10.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: incujoniwrote on 11.06.2023:[9.0] "Takeshita is a very talented wrestler, charismatic and good at selling, as well as using his size advantage. He really is an allrounder since he also moves fast as hell and does some pretty impressive stunts. His recent heel turn is pretty intriguing so I expect to see some new tricks from him and I hope AEW doesn't mess this up. Really miss him in DDT though, he was one of the stars."
Rating: 9.0
Sentiment: 0.343951048951049
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: F0ZZYwrote on 21.05.2023:[8.0] "Takeshita is one of the best at his age IMO. He moves in such a versatile and quick manner that it is sometimes hard to keep up with him. He is the future of professional wrestling and should hold some kind of mid card title in the next year or two."
Rating: 8.0
Sentiment: 0.19351851851851853
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: CoachWwrote on 17.05.2023:[10.0] "I have a feeling we're going to look at Takeshita as one of the best in the world very soon. He's a powerhouse who moves around the ring like a lightning bolt, and he has a natural charisma that transcends the language barrier."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Leth99wrote on 17.05.2023:[7.0] "I like him, I don't think he's a 9 or an 8 though. He's a great wrestler that any company should keep close"
Rating: 7.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: nizzyhizzywrote on 10.03.2023:[10.0] "Where do I start with Takeshita. The future of the business for sure, There's nothing bad I can say about him, he's one of my favorites right now."
Rating: 10.0
Sentiment: 0.021428571428571463
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: ChrisPrattAsMariowrote on 04.03.2023:[9.0] "He is the future of AEW. Amazing babyface, phenomenal worker, and a great moveset from Takeshita. I've only seen him in AEW and his one match against Higuchi but his run has been so great so far that it makes me want to go out and see his old stuff. My favorite match of his is against Kazusada Higuchi in DDT."
Rating: 9.0
Sentiment: 0.3777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Daigotsuwrote on 15.01.2023:[9.0] "Takeshita is something else. It's like watching a star in the making, a guy who has the feel of a future all-time great that you're getting to see in his prime. He's really top-tier; I would buy shows just to see Konosuke Takeshita wrestle in them. Promos? Characters? Couldn't care less. This dude is incredible in the ring and that's what I'm here to see."
Rating: 9.0
Sentiment: 0.3466666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Puro113wrote on 15.01.2023:[9.0] "Fantastic young wrestler with all the crucial tools needed to succeed. The former future Ace of DDT, Takeshita has made a big splash in AEW over the past year, having great matches with the likes of Claudio Castagnoli, Bryan Danielson, Mike Speedball Bailey, Eddie Kingston, Jon Moxley and others. He has an electric in-ring presence and a special connection with the crowd. This kid is the future."
Rating: 9.0
Sentiment: 0.14071428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: CoolKylewrote on 12.01.2023:[7.0] "Takeshita is a big deal because hes a Japanese heavyweight who is young and has a lot of time in ring already. He has some polish and technique but has not reached his full potential in many ways. Fans glob on to that. He also has an odd, relatable personality. Hes basically the next Okada in many US fans eyes, or at least should be. Takeshita always worked a very "go-go-go" style in DDT. It was normally frustrating to watch him dismiss the little things some of his opponents wanted to work into a match in order to get into a big trading spots sequence or go full steam ahead. I've liked his US work much more than his DDT work in the past 4 years or more. Dude has to tools to do anything he wants in a wrestling ring, I'm more than happy to see him wrestle different opponents and see what he ends up becoming in two or three years."
Rating: 7.0
Sentiment: 0.17690972222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: MDavis2001wrote on 05.01.2023:[9.0] "Takeshita is the future. Smooth as butter in the ring and has a natural star aura. The sooner western fans learn that wrestlers can have "I want to be the best" as their gimmick and that mic skills don't draw like they think they do, the better. When Omega and Takeshita inevitably collide, Cagematch will feel it."
Rating: 9.0
Sentiment: 0.2857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Benwerderwrote on 01.01.2023:[10.0] "Einer der besten Wrestler der Welt. Jetzt schon! Hoffe er wird ein Star bei AEW. Man muss jetzt nachdem Mox Match weiter machen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: mano007wrote on 31.12.2022:[6.0] "Good in ring talent and a star in the making. I see a young claudio in the making. Hopefully unlike claudio, he develops a promo."
Rating: 6.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: texasyoshwrote on 23.12.2022:[9.0] "In my initial rating I said that Konosuke was a star in the making. Well, he is an absolute star. Great size, great look, and a great sense in the ring. DDT and AEW have a fantastic talent."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: KENTAfanwrote on 15.12.2022:[10.0] "It? s preposterous how talented this guy is. I? m just blown wwwy by him every time I see him perform. His explosiveness, fire, facial expressions, charisma, and just all around in ring IQ is off the charts. He can put on a classic whenever he wants. Would love to see him get picked up by AEW at some point or at least get a title run as he? s done a remarkable job with them lately."
Rating: 10.0
Sentiment: 0.21458333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Enriquepollazzowrote on 10.12.2022:[8.0] "Good matches. Very good matches in fact. There are like 160 people here rating him 10/10. That's absurd. He can be better so how is he a 10/10? He needs some character work and maybe more impact and realism on his punches and kicks. Then he can be 10/10. He's been around a year and he's 10/10? What about when he gets way better? The same rating? You see."
Rating: 8.0
Sentiment: 0.37285714285714283
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Wrestling Foreverwrote on 29.11.2022:[9.0] "Einfach in der USA aktuell das heißeste Eisen unfassbar wie lange seine US Tour schon geht und wo er überall auftaucht. Inzwischen gibt es auch im AEW Shop ein T-Shirt von ihm. Bei DDT ist schon unfassbar stark. Edit 29.11.2022 Riesen Gewinn für AEW das er nun unter Vertrag ist und man wird ihn sicher auch weiterhin in vielen Indy Ligen sehen."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: xnviuswrote on 27.11.2022:[10.0] "Takeshita's a star in the making. only 27 years old. phenomenal in-ring work. one of the best young wrestlers from Japan. just recently signed an AEW contract. and he's wholesome as fuck. how can you not love him?"
Rating: 10.0
Sentiment: 0.13125000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: No Onewrote on 19.11.2022:[10.0] "Konosuke Takeshita is this generation's Mitsuharu Misawa. Every time I watch Konosuke's matches and I see his poise, his seriousness, the way he carries himself, and his offensive moveset (such as the Elbows & the Flying Corkscrew Lariat), I am deeply reminded of Mitsuharu Misawa. There is nothing wrong with that as Misawa was The Man. I also see Konosuke in much the same light. Konosuke Takeshita is also The Man. He is definitely one of the best professional wrestlers under the age of 30 in the world today and he has to be the very best native born Japanese wrestler under the age of 30 as well. He is also a member of 37KAMIINA, which is the most dominant faction in DDT and they somewhat remind me of The Elite. When Konosuke's career comes to a close (which is sure to be decades away), he is bound to have a jaw dropping resume of great to instant classic matches and he will have achieved a true Hall of Fame career as well. UPDATED: To see Konosuke translate so well to North American Mainstream wrestling also makes me happy, and further cements why he really is The Man. I also realized that he does remind me of the legendary Jumbo Tsuruta as well. UPDATED x2: Dude, AEW signing Konosuke is a very, very big deal. My eyes widened reading it. As of right now he is perfect for the AEW All-Atlantic Title. AEW just acquired one of the Top 2 best wrestlers under the age of 30 (the other one is none other than Will Ospreay, what a dream match that is, BTW)."
Rating: 10.0
Sentiment: 0.31215106732348114
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: DammitChristwrote on 12.11.2022:[10.0] "I guarantee that I'll be validated by giving this guy a ten already 5-7 years from now. I've seen at least a dozen of matches from Konosuke Takeshita over the past year (in AEW), and I can already tell that he's one of the best wrestlers in the industry (or at least HIGH up there atm). Takeshita isn't even 30 years old yet, and he's had minimal exposure to a major wrestling company like AEW or NJPW too. He's only going to continue getting even better as an overall performer, which is a mindblowing but yet exciting thought since he's already tremendous enough in the ring."
Rating: 10.0
Sentiment: 0.10038888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Spankywrote on 26.10.2022:[10.0] "Simply put I view Takeshita as the future Okada. I do not think many will argue with me on that. He has everything you could want in a wrestler he can cut fire promos in English!"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: BESTBOUTBOYwrote on 12.10.2022:[9.0] "takeshita is by far one of the most exciting wrestlers working today his recent stretch on the american indies have showcased a dynamic and charismatic performer who can have great matches with a variety of opponents such as "hangman" adam page, "taigastyle" lee moriarty and "speedball" mike bailey. on top of great fundamentals and a good moveset he also has an innate ability to get any crowd behind him. selfishly I hope that he stays in AEW and can become the star he seems destined to become at such a young age."
Rating: 9.0
Sentiment: 0.21250000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Kungwrote on 23.08.2022:[10.0] "He's been a 9 for a long time, but his past few months have been as good as anyone in the world. He's not just one of the best wrestlers going today, but he's also only 27! An unreal talent who is only getting better."
Rating: 10.0
Sentiment: 0.2125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: eltetechoriwrote on 07.08.2022:[10.0] "Takeshita is a pure talent, a great fighter like the top of a pine tree, it is worth watching every fight of him because he always ends up showing off in his own way, I love the way he fights and I hope to see more of him in the USA in companies like AEW, he is a great one."
Rating: 10.0
Sentiment: 0.5267857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: totallynotjwrote on 23.07.2022:"This is a genuine star in the making here. His charisma is fresh, and almost every match of his has pretty much been a 3.5+ since coming to the US. AEW was my first introduction to this guy, and I'm beyond astonished of this guy."
Rating: No rating found
Sentiment: 0.27999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: KSupreme3wrote on 21.07.2022:[10.0] "This guy is a bonafide star. There? s a aura about Takeshita that? s hard to explain. One thing I highly respect about this man is his work ethic. One day he? s wrestling at a hole in a wall, next day he? s wrestling Jon Moxley on Dynamite. If he keeps it going, he? s well on his way to become a legend someday."
Rating: 10.0
Sentiment: -0.043888888888888894
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: jamzell00wrote on 17.07.2022:[9.0] "Takeshita has always been great and everyone knows this but just seeing how big of a star he is in America makes me smile so much. The dude came back this year and has gotten over big in every single one of his matches. Hope this causes people to go watch his other work and just DDT as a whole"
Rating: 9.0
Sentiment: 0.14484126984126985
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: JustDanwrote on 14.07.2022:[10.0] "I? ve only seen him in AEW, and I get blown away a every time. He? s so good. The handful of matches hes had in AEW has made me interested and I? ll probably look out for his matches once he returns to Japan as well"
Rating: 10.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: cmalienwrote on 09.07.2022:[9.0] "Takeshita is just so great. Everything he does, the way he executes moves is so crisp and impactful. So far during his US excursion he lit the indie scene on fire and makes me go out of my way to catch his matches. I would love to see more character work from him but so far he has absolutely won me over."
Rating: 9.0
Sentiment: 0.3062500000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Wright15wrote on 28.06.2022:[10.0] "During the five years after the departure of Omega and Ibushi from DDT, Konosuke Takeshita showed flashes of greatness and had a fair number of excellent matches, including a couple outstanding bouts. But it was not until 2021 that he really started to be awesome on a consistent basis. And by that, I mean performing at an elite level night after night, no matter where on the card he is. You might think that after his best year in 2021, he would regress a bit when on tour in America. But his campaign stateside has been even more productive than his work from last year. He is easily one of the ten best in the world today. If he were in New Japan, he would be winning the G1 and wrestling Okada in the dome. As is, he has the ability to expand DDT even further."
Rating: 10.0
Sentiment: 0.43169981060606066
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: AnthoTheKIDwrote on 23.06.2022:[9.0] "Takeshita is indeed "The Future". 27 years old and he has everything. The look, the size, the charisma, the moves. A very solid 9 that can be a 10 soon or later. A diamond."
Rating: 9.0
Sentiment: 0.025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Rocky7wrote on 19.05.2022:[9.0] "One of the very best young wrestlers from Japan, but rather than coming through the traditional big company dojo routes, Konosuke Takeshita was inspired by and joined DDT, following in the footsteps of his idols Kota Ibushi, Kenny Omega and El Generico. A multiple time KO-D Openweight Champion, he's done almost everything there is to do in DDT by the age of 26, and now he's starting a run in All Elite Wrestling, recently having great showings against Jay Lethal and Hangman Adam Page. He's got almost everything, great athleticism, he's tall, he's handsome, and he's already being compared to some Japanese legends. A great US run will only add to his legend."
Rating: 9.0
Sentiment: 0.2857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: GriffinXwrote on 12.02.2022:[10.0] "An excellent work who is hitting that perfect stride. Still young he can a lot of things but now enough of a vet he knows when to save and when to fall back to something. DDT gets a bad rep just comedy. But Takeshita reminds us why it also has produced some excellent talent over the years. Frankly he just needs a big platform to show fans how good he is. Maybe he goes to AEW full time, maybe CyberFight moves him to NOAH or does more with DDT"
Rating: 10.0
Sentiment: 0.3590909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: NikoKillbainwrote on 01.01.2022:[10.0] "Of all the annointed aces in Japanese wrestling (Kiyomiya, Miyahara etc.), Konosuke is the most suited for the role. He's gotten so much bigger over the years, adding a power game to his agility and striking. His KO-D Tag Championship match vs Eruption was a great start to the year, but then he took off, winning three tournaments. Konosuke also had a great tag match at CyberFight, a random but good AEW appearance, and started a great KO-D Openweight Title run vs Akiyama, Brookes and Okabayashi. In most cases, people would hate one wrestler being so showered in achievement, but this is truly the age of Takeshita, and he's up to the challenge."
Rating: 10.0
Sentiment: 0.26153846153846155
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Grissomwrote on 22.11.2021:[9.0] "Konosuke Takeshita hat sich langsam zu einen der besten Wrestlers seiner Generation gemausert. Er ist das ACE von DDT und mit 26 noch bei weitem nicht am Höhepunkt angelangt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Lalo Camposwrote on 12.11.2021:[10.0] "The Ace of DDT and he is not The Future anymore, he is The Present, "BIG LEAGUES, please sign him..." he is already in the big leagues"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Wuzong Shenwrote on 25.10.2021:[10.0] "A real genius, full of creation, always brings you surprises. The best Japanese wrestler under 30. Just think about it, he is only 26 and some of his matches have already been all-time classic. Yes, he doesn't have a charming gimmick, but you can always expect something new in his match, and he is still full of possibility."
Rating: 10.0
Sentiment: 0.3225589225589226
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: BlakeFR37wrote on 08.05.2021:[10.0] "BIG LEAGUES, please sign him. Gave him a persona, gave him the Title, he will and he can carry a Company. Takeshita, I love you man."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: axebombertsurutawrote on 18.04.2021:[9.0] "Phenomenal ring work, one of the best workers in the world right now. Always a great match, has great potential to get over in the west."
Rating: 9.0
Sentiment: 0.5642857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: ExcitingProWrestlin3wrote on 16.03.2021:[10.0] "What really sells Konosuke Takeshita for me or a lot of people is just his sheer skill, talent, and ability at the age of 25. Sure he could use some work in terms of psychology in selling, but he's ended up forming an incredible legacy and again HE'S TWENTY-FIVE. He still has almost a decade until he hits his prime, he and Kiyomiya are ridiculously talented at such a young age, it makes me wonder how amazing they'll be in their prime, but let's not get too ahead of ourselves. Anything can happen in wrestling. We have to just wait and watch him grow."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: TJPW is Legitwrote on 17.08.2020:[10.0] "It'd be a little unfair to simply call him the Okada or Tanahashi of DDT, because Konosuke Takeshita has forged a niche all of his own. Seriously, he's one of the most brutal non-death match wrestlers in Japan, I thought he killed Tetsuya Endo no less then six or seven times when they wrestled at the Peter Pan event in 2019, and he was absolutely brutal to HARASHIMA in their recent title match. But it's not just his move set, it's his selling that makes him be able to switch from a brutal killer to a babyface I can root for. I've heard people complain about how he's over pushed, but I feel like he deserves every championship he wins for being DDT's steadfast ace."
Rating: 10.0
Sentiment: -0.09749999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Makai Clubwrote on 12.10.2019:[8.0] "As someone who struggled to consistently get me interested in him at first, he has improved strides. Improving from someone who was bereft of charisma and had a stretch of meandering matches into someone who has shown a bit of personality and is now an extremely consistent wrestler. Still has a way to go but you can't deny his quality matches now."
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: arrancarwrote on 21.04.2018:[8.0] "I'm not someone who constantly follows DDT nor Takeshita, but every rare occasion that I watch him he always impresses the hell out of me. He's so young and already putting on such amazing performances. He occasionally has a few issues with long-term selling, but heck, what young wrestler doesn't? Everything else about him is fantastic. He has a great offence that mixes acrobatics and full-on power. I also think he displays his passion and determination extremely well. His real-time selling is also very good, since his facial expressions and bumps really do a great job showing how battered he can get, making him into a very sympathetic figure. I understand that Takeshita has quite a few detractors within the DDT audience, and I definitely see that in the sense that the crowd doesnt exactly go crazy over him atm. He's still so amazing for his age though, so I'm sure these such things will work themselves out with time and that he'll eventually win over the DDT fans entirely."
Rating: 8.0
Sentiment: 0.23630434782608695
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: JDZwrote on 08.03.2018:[9.0] "Takeshita possesses super mat skills. He is charismatic. His character is developing. He is the present of DDT and he is the future of wrestling"
Rating: 9.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Tejas Cloverleafwrote on 13.01.2017:[9.0] "He had a break-out year last year, won the KO-D Openweight Title, and had some great match-ups with Miyamoto, Endo, and Ishikawa. He has such an explosive and unpredictable style in the ring and what he lacks in charisma, he more than makes up for in his execution."
Rating: 9.0
Sentiment: 0.22666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: HeadCheesewrote on 28.07.2016:[8.0] "A good wrestler that is able to put on really good matches, I see him inprooving a lot in the future"
Rating: 8.0
Sentiment: 0.475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13073&gimmick=Konosuke+Takeshita
Comment: Matzinhowrote on 13.02.2014:[7.0] "Behaltet den Jungen im Auge! Mit läppischen 18 Jahren hat der schon ein paar gute Matches auf dem Buckel. Besonders die Schlacht mit Nakajima hat mir sehr gut gefallen. Ich glaube, aus dem wird was. Hat auch für einen Japaner eine gute Größe und Körperbau."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: wanderingobscuritywrote on 09.02.2025:[10.0] "I consume a LOT of wrestling media, and I can very comfortably say that Masaaki Mochizuki is strongly in the conversation for greatest wrestler of all time. The sheer number of matches, the consistency, the presence, the talent, the longevity, the fact that he hasn't fallen off at all, and never taken any kind of extended break, his absolute ace-level charisma... I don't think there's a total package veteran like Mocchy anywhere else in the world. 10/10 and absolute S-tier wrestler."
Rating: 10.0
Sentiment: 0.3281481481481482
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: GriffinXwrote on 13.01.2024:[8.0] "Even at 53 he's still more than able to keep up with the younger guys in the Dragon Gate and NOAH roster. The more you watch him the more fun he becomes to watch."
Rating: 8.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: Bushidospirit22wrote on 16.03.2021:[10.0] "One of the underrated legends in the history of Japanese wrestling. Probably my all-time favorite Dragon Gate wrestler along with Shingo, and he can still go even at 51."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: pecohajwrote on 12.03.2021:[10.0] "An absolute legend, one of the best workers the business has ever seen and still diving over the top rope at 50 years of age. His tag run with Yoshida is one of the best runs I have seen in Dragon Gate. His kicks are so incredibly stiff and look great. This man elevates everyone who is in the ring with him."
Rating: 10.0
Sentiment: 0.5476190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: BDDwrote on 09.03.2020:[10.0] "Mochizuki is one of the best veterans today, and is one of my favorites at Dragon Gate. He's 50, but he fights like he's 20, he always gives his all in his matches, his kicks are incredible, and of course they served as inspiration for several other younger wrestlers, and he also has great submissions, which fit perfectly with your style,"
Rating: 10.0
Sentiment: 0.496875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: Makai Clubwrote on 10.05.2019:[10.0] "Seriously one of the best wrestlers in the world. Any big match he is in, I'm dropping everything to watch it. Something I don't see for most people. Maybe someone like Kazuchika Okada, Daniel Bryan or Katsuhiko Nakajima. All guys whom I think very highly of. Mochizuki is someone who proves age is just a number. Not only does he tune out this high quality performances, his career has a litany of great matches. Tons of versatility too with stints in Battlarts, New Japan for a tour or two. One of the more influential wrestlers of our time as well, as far as Dragon Gate as a whole is concerned."
Rating: 10.0
Sentiment: 0.2746946386946387
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: jamzell00wrote on 23.04.2018:[9.0] "He has more fire and gives more effort than some 30 yr olds in wrestling. You cannot tell me this man doesn't love this shit with a burning passion"
Rating: 9.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: My Bloody Doobwrote on 23.02.2018:[10.0] "THE most underrated older vet wrestler from Japan STILL working to this day. His strikes are stiff as hell, he elicits pure fire in all of his matches, and just kicks so much ass. The Shibata of Dragon Gate if I had to use a comparison. Normally I would be turned off from older guys holding top titles, but Mochizuki is the exception."
Rating: 10.0
Sentiment: 0.09814814814814815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: Kaswrote on 19.02.2018:[10.0] "One of the best in the world at near 50, Mochizuki is perhaps the most underrated wrestler today. Great worker and has a certain charisma that can really get the crowd behind him."
Rating: 10.0
Sentiment: 0.34489795918367355
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: Headlockwrote on 15.06.2017:[10.0] "Mochizuki ist 47 Jahre und hat einen ähnlichen Karrieregang wie ein Kenta Kobashi, Keiji Muto, Hiroshi Tanahashi, Kurt Angle und Hiroyoshi Tenzan, sprich eine Karriere voller Hugh Profile matches aber anders als die 5 genannten Männer, ist Mochizuki noch genauso agil und fit wie vor 25 Jahren und das ist keine übertreibung Yuji Nagata wirkt neben Masaki Mocchizuki wie Yoshiaki Fujiwara, Denn Mochizuki ist der Iron Man von Wrestling"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: BrentDelivinewrote on 09.06.2016:[10.0] "Mochizuki is probably one of the best veterans in Puroresu. He's absolutely incredible with his kick and submission game, he can break out some really athletic stuff for a 40 something year old and he can bring the comedy when its needed. Love Mochizuki, one of the absolute best."
Rating: 10.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: Val Cdnwrote on 04.02.2015:[10.0] "People talk about Kazuchika Okada, Hiroshi Tanahashi.. But doesn't talk about Masaaki Mochizuki, who is a fantastic athlete too, and a little bit underrated in my opinion. He has great in-ring psychology and in-ring skills and has a certain amount of charisma. He's 45 years old, but still can deliver great matchs ! The thing about this guy is that he can kick your head off at any moment, he is a pure stricker."
Rating: 10.0
Sentiment: 0.36301020408163265
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: AboutToCrashwrote on 18.08.2014:[10.0] "This guy is 44 years old and still leaves dust to every single wrestler in DG. Fuck, he can wrestler in stiff matches and kick the living hell out of his opponet(best kicker ever). and sometimes has a slow, melodical with awesome psychology and storytelling, using an high quality mat and chain wrestling. he also nice in his aerial assaults. This man stands with the greatest in-ring wrestlers as far as puro goes. One of my biggest dream matches is Mochizuki vs KENTA."
Rating: 10.0
Sentiment: 0.19742857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: 3Mendouswrote on 12.07.2013:[10.0] "One of the best wrestlers that ever took step in the DG ring. Mochizuki has the best and the stiffest kicks in the wrestling Business today."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: ARIZAwrote on 11.04.2011:[10.0] "Absolut großartig dieser Mann. Trotz seiner 41 Jahre immer noch einer der besten bei Dragon Gate. Ich liebe es einfach wie er ohne Rücksicht seine Gegner mit seinen Kicks zerstört."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: Matt4Wrestlingwrote on 11.01.2011:[10.0] "Ein wahrer Könner! Vom Shoot- bis Amateur-Style beherrscht er alles sehr gut, eine ehre ihn mal Live gesehen zu haben!"
Rating: 10.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=2899&gimmick=Masaaki+Mochizuki
Comment: STRIGGAwrote on 26.12.2008:[9.0] "Mochizuki ist mittlerweile schon so etwas wie ein alter Hase im Geschäft, kann aber nach wie vor mit den Top Indy Leuten mithalten. Auch gegen Heavyweights wie zuletzt im Fire Festival 08 gesehen überzeugt er mit seinem Mix aus Technik und Shoots."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: InfamousLoaGOATwrote on 06.02.2025:"Greatest commentator of all time, has so much iconic calls nowadays such as Taker/HHH wm 28, simply brilliant."
Rating: No rating found
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: dinkopoetwrote on 13.01.2025:"I truly think Jim Ross is one of the greatest, or if not, THE greatest announcer in WWE history. I will soon be rating this man a 10/10. I just watched Undertaker vs Mankind inside Hell in a Cell and holy cow, his commentary is just WOW."
Rating: No rating found
Sentiment: 0.4916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Kislozeljewrote on 04.01.2025:[0.0] "I don't get the obsession with Jim Ross. the most boring commentator, his knowledge is meh, he dosen't focus on the match, his podcast makes you wanna crash asleep. i really beg that someone explaines the phenomenon and obsession over him.. Oh and him repeating same and same lines over and over is also boring, and I know he was written the script but really, with such monotone voice, without any energy. And not just talking about him in AEW, even back in WWF/WWE he wasn't any better. Really Mauro Ranallo puts a lot more passion, a lot more knowledge, even if it's written you can still see that the guy knows a lot more than the written scrip. Or can't belive to say this but even Micheal Cole is far better commentator than Jim Ross, yes I'm praising Micheal Cole so what."
Rating: 0.0
Sentiment: 0.10625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: nothingleftinsidewrote on 01.01.2025:[10.0] "Impossible to give this man anything but a 10; he's the greatest wrestling commentator of all time, for both color and play-by-play. He always brought much needed credibility to anything he was calling. A long and storied career, he started in mid-south under watts and eventually became the guy for WCW and most famously, WWF. He's also got one of the best minds for the business, as well as being the most beloved talent relations guy, a role that almost everyone else was despised in. He has lost his edge as of recently and is thankfully being used more sparingly, but sometimes he sounds like he doesn't give a shit anymore. Pretty much ever since his wife died you can tell his heart isn't in it. This compared to the rest of his career is marginal though, he honestly most likely doesn't have much time left on this earth. His podcast is good too, as is his bbq sauce and other smoked meat-related products. Straight up, he is in his own category on the call- there's Jim Ross, and then there's everyone else."
Rating: 10.0
Sentiment: 0.29583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Phrygowrote on 07.11.2024:[10.0] "I'm not familiar with his current work in AEW, but JR would need to spend 50 years weekly commentating back alley fights between homeless people to even start to taint the legacy he's built within the business, and considering he's 72 years old, I think we're safe."
Rating: 10.0
Sentiment: 0.08249999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: jsbortswrote on 11.09.2024:[10.0] "Best color commentator of a generation and one of the biggest reasons for WWE's success in the Monday Night Wars. A great wrestling mind and one of its great contributors"
Rating: 10.0
Sentiment: 0.7250000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Nudlewrote on 26.08.2024:[10.0] "Although his current work doesn't hold a candle to his prime, can you blame him he's 72 years old, but he is still easily the greatest commentator of all time. No one else comes close."
Rating: 10.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: trexyyywrote on 15.08.2024:[10.0] "He's the GOAT, the voice of the WWF for years, the greatest color commentator to grace the sport of wrestling.. His time spent in AEW since it's inception has not hindered his legacy or his ability."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "JR is one of the greatest commentators to ever do it. His voice is so iconic, and a lot of older wrestling fans cherish the moments they shared with JR on the call."
Rating: 9.0
Sentiment: 0.5555555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: devourblastwrote on 02.07.2024:[10.0] "Say what you will about his role in AEW, I don't think that should impact his legacy as he deserves nothing but the highest regards for play by play announcing in wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Pigeon Scratchwrote on 29.04.2024:[10.0] "One of the best commentators of all time, one of a kind, often imitated but never duplicated. I genuinely think he elevated almost every match he commentated for, with so much compassion and emotion with every syllable that he enunciated. One of the best parts of the Attitude Era, one of the most knowledgeable in the sport that's only rivaled to people like Mike Tenay and Joey Styles, one of the most universally beloved, and severely underappreciated by the higher ups of companies like WCW and WWE, especially the former and more specifically Vince McMahon in the latter. I also genuinely think he still does a good job in AEW, even if he's at the end of his career and clearly showing his age in commentary. There really is no one like him. Thank you Ross."
Rating: 10.0
Sentiment: 0.37500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ThatMobiwrote on 16.04.2024:[10.0] "What else is there to say about Good Ol JR, the best to ever do it, most iconic voice in wrestling, his chemistry with anyone was always great especially with Jerry Lawler. Ross is also great at calling, so creative and energetic."
Rating: 10.0
Sentiment: 0.5888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Dntbamarkwrote on 08.04.2024:[10.0] "One of, if not the greatest announcers in the history of wrestling. His voice is so synonymous with professional wrestling as it's been apart of several iconic (and sometimes not so-iconic) moments across the wrestling landscape for decades."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: TripleCrownwrote on 03.03.2024:[10.0] "I mean no disrespect to previous announcers, but Jim Ross is the greatest to ever do it. Jim Ross on commentary can make a moment 100x bigger than it already is, he can make wrestling feel "real" and his passion for calling matches really puts him above everybody else. People like to credit Austin, McMahon, Rock, etc., for making the Attitude Era so fun to watch. But to me, all of that would be meaningless if you didn't have the legendary Jim Ross on commentary throughout the whole ordeal. Got treated awfully by the WWE throughout his career, lots of disrespect by people towards the end who thought he couldn't do it anymore due to his age and whatnot. Might not be the same JR today as he was 15+ years ago but his voice alone is still something that can make AEW feel that little more legitimate."
Rating: 10.0
Sentiment: 0.06927083333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: HardcoreRobbo2k97wrote on 31.01.2024:[10.0] "Jim Ross is the Greatest Wrestling Commentator of all time as his voice and storytelling has and will always be magical while watching matches unfold in front of his very eyes. He knows how to tell a story in the matches that he commentates with such passion that it drives fans to the action that's in front of them in an arena or on a TV screen. Jim Ross also knows the psychology of wrestling, which he uses to turn generic matches into masterpieces that people always remember because of Jim's impact on his commentary. Jim Ross in his prime days turned everything he touched into pure and solid gold with his work ethic, his drive, his passion for the industry because Jim motivates people and inspires them to become better versions of themselves with their presentation in the ring and improving their promo skills on the mic and during backstage segments. He is the Golden Voice of Magic that Pro Wrestling has become today, everyone can see what differences he's made to everyone he's come across during his time in the business because they've turned into world class wrestlers thanks to Jim's wisdom, guidance and support when talent turn to him for advice. 10/10 Rating"
Rating: 10.0
Sentiment: 0.29285714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: BigMacwrote on 06.01.2024:"[10.0] Jim Ross: The Voice of Wrestling Excellence Jim Ross, often referred to as "Good Ol' JR, " is not just a commentator; he is the heartbeat of professional wrestling. With a career spanning decades, Ross has become synonymous with the industry, earning his place as the definitive voice of wrestling excellence. One of the standout qualities of Jim Ross is his unparalleled storytelling ability. Whether it's a high-octane championship match or a heartfelt personal struggle, Ross has the unique gift of enhancing the emotional connection between the audience and the squared circle. His gravelly voice carries the weight of every moment, turning ordinary matches into unforgettable experiences. Ross's expertise goes beyond mere commentary; he possesses an innate understanding of the psychology of wrestling. His keen insights into the motivations and strategies of the competitors add depth to the narrative, elevating the overall viewing experience. It's not just about the moves in the ring; it's about the drama, the passion, and the relentless pursuit of victory, all masterfully conveyed through Ross's commentary. What sets Jim Ross apart is his authenticity. His genuine enthusiasm for the sport is infectious, making even the most casual viewer feel the intensity of the moment. Whether it's the shocking return of a legendary wrestler or the climax of a heated rivalry, Ross's reactions mirror the collective sentiments of the audience, creating an atmosphere that transcends the screen. Jim Ross's legacy extends beyond his time in the commentary booth. His iconic catchphrases, such as "Business is about to pick up" and "Slobberknocker, " have become ingrained in wrestling culture, demonstrating his impact on the industry. Moreover, Ross's contributions behind the scenes, including talent scouting and talent relations, showcase his commitment to nurturing the next generation of wrestling superstars. In conclusion, Jim Ross is not just a commentator; he's a maestro orchestrating the symphony of professional wrestling. His voice is the soundtrack to countless unforgettable moments, and his passion for the sport is unwavering. Whether you're a lifelong fan or a newcomer to the world of wrestling, Jim Ross's commentary is an essential ingredient that enhances the magic of the squared circle. He is, without a doubt, the voice of wrestling excellence."
Rating: No rating found
Sentiment: 0.1548076923076923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: JediSaiyanMaster1203wrote on 18.11.2023:[10.0] "Jim Ross is the greatest commentator of all time, hands down. In his prime, you could really feel his passion and you got the sense that he means every word he's saying. Countless phrases that are iconic and still quoted to this day by fans from "Bah gawd! " "Stone Cold! Stone Cold! Stone Cold! " "he's gotta be dead! " "that jezebel" and countless others that can be mentioned. His work in WWF has held up remarkably, to the point that people are arguing that his commentary duo with Jerry Lawler is as important to the Attitude Era as the Steve Austin and The Rock feud. While his commentary work in AEW has shown that he is past his prime, that shouldn't overshadow his decades long work that has left an undeniable impact on the business."
Rating: 10.0
Sentiment: 0.001296296296296302
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: andytuga86wrote on 28.09.2023:[10.0] "Wise, cult and cunning, the great Jim Ross went through a lot in his life. One of the most respectable and humble guys in the History of this business, he is best Commentator of all time. I'm not very aware of his work in AEW, but that duo with Lawler was iconic and he will always be remembered for that."
Rating: 10.0
Sentiment: 0.4115384615384615
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: chibimattywrote on 28.08.2023:"It's unclear whether it's part of his work-schtick or not, but his snide, passive aggressive comments during broadcasts about what annoys him about his company's product are getting a bit grating. Sure he's entitled to his opinions, but they are taking the viewer out of the show"
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "I still like Gorilla Monsoon and Bobby Heenan as the best commentary team of all time personally, but Jim Ross has probably called more big matches than anybody else in wrestling history. Good Ol JR lived the era of the late 80's NWA/WCW all the way through the mid 2000's of the WWE, so he called the action in the overall era of pro wrestling."
Rating: 8.0
Sentiment: 0.2222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Dartrookwrote on 31.05.2023:[5.0] "He was great back in the day but now he is one of my biggest problems with AEW. Having a miserable old man who shits on the product on commentary doesn't really help with the enjoyment of the show. When he isn't burying talent on air, he is talking at a snails-pace during an intense sequence."
Rating: 5.0
Sentiment: 0.05000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The Sick Lebowskiwrote on 18.05.2023:[10.0] "Der beste Kommentator meiner Generation und einer der ganz, ganz Großen aller Zeiten. Er schafft es perfekt, die Gefühle, welche die Wrestler in den Matches durch ihre Aktionen produzieren wollen, über seine Stimme und Worte an die TV-Zuschauer zu übertragen."
Rating: 10.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Leth99wrote on 16.05.2023:[10.0] "Yeah, his work with AEW is kinda meh, but you have 40 other years to look at and think "Damn, that's a good commentator""
Rating: 10.0
Sentiment: 0.2875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Conquistador37wrote on 14.04.2023:[8.0] "Heavy edit: 11 for the play by play in general. 10 for saving WCW's ass more often than not. 10 for being the polar opposite of King Lawler in the commentary booth. Negative 12 for ALL OF THE SCREAMING AND YELLING in the early days. Negative 11 more because "Red Ass JR" ruins every damn podcast he does. That leaves us with an 8."
Rating: 8.0
Sentiment: 0.010606060606060612
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: John Brandowrote on 09.03.2023:[10.0] "Jim Ross- der beste Kommentator, den es in der WWE gab. Zahlreiche Momente wurden von ihm saustark begleitet. Ein cooler Typ und totaler Wrestling-Fachmann. Good God almighty!"
Rating: 10.0
Sentiment: 0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: benh2wrote on 11.01.2023:[9.0] "His Mid-South and WCW work was unrivalled at the time. WWF at first really hindered his abilities because Vince didn't care for his usual style of play-by-play. Having said that, once the Attitude Era took off he was invaluable to getting certain angles over with his commitment, exuberance and staunch support of the babyfaces. I didn't really think he was all that good in WWF/E on a weekly basis but some of his calls were iconic. He's been useless in AEW but I won't let that tarnish his legacy too much."
Rating: 9.0
Sentiment: 0.12380952380952379
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: KENTAfanwrote on 15.12.2022:[10.0] "In his prime, JR was the best announcer this industry bar none. Granted, that? s just my opinion, but he was undeniably the voice of the Attitude and Ruthless Aggression Eras (along with King) which were personally my favorite periods in the history of WWE. His passion for the sport was always abundantly evident, his commitment to kayfabe so staunch that it would make you believe things were legitimate. His presence as a commentator would instantly elevate match quality, which is an extremely rare trait. Even in old age, he? s obviously not quite as sharp as he once was, but he still manages to be entertaining and is still better than the vast majority of commentators, though that might be nostalgia speaking somewhat. Either way, he is in my opinion the greatest commentator of all time hands down."
Rating: 10.0
Sentiment: 0.20496031746031748
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: TheLegendaryEricwrote on 06.11.2022:[10.0] "Although he's no longer as sharp as he once was on commentary and most likely never will be again, he's a great asset to have on any commentary table and during his prime made any great moment a thousand times better."
Rating: 10.0
Sentiment: 0.41250000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: JTIwrote on 24.09.2022:[6.0] "It seems like since joining AEW Jim Ross has been intentionally doing everything in his power to piss away all the good will he's gotten in the wrestling industry over the last four decades. Ross was the voice of my childhood, making incredible moments in pro wrestling that much better. Arguably the best play-by-play guy in the history of wrestling (pre-AEW). But now he's just this jaded, bitter old man who doesn't even like the product he's calling. (and if you don't think he's jaded or bitter, try listening to his podcast for ten minutes) On every pay-per-view and TV episode of AEW since its inception, three and a half fucking years now, JR has found at least one opportunity to say some sideways shit about the in-ring product, usually questioning a wrestler's decision-making process and making them look foolish, which is the opposite of what a commentator is supposed to do. If not that or some passive-aggressive remark to Excalibur (who actually enjoys his life), then it's the constant borderline (sometimes blatant) racism and misogyny that embarrasses everyone and turns off potential fans. Dude's still calling heel women jezebels here in the ass-end of 2022. Thing is, he's still just an old redneck who grew up in the 50's in Bumfuck, Oklahoma and genuinely doesn't think what he says is ever offensive, that it's just people being soft and always (always) (ALWAYS) taking everything out of context. In other words, the wrestling world has passed him by and we're far past the point where he's damaging an otherwise mostly great wrestling company. Another side-effect of all this (although this might also just be because he's getting old) is that his commentary just isn't that *good* anymore. He constantly makes mistakes or stumbles over his words, and he doesn't seem to have that Good Ol' JR spark anymore. Whether that's due to apathy or old age, or some combination, that's anyone's guess. Either way I wish he'd just retire already, for his own sake."
Rating: 6.0
Sentiment: 0.12676767676767678
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: crs285wrote on 06.09.2022:[10.0] "Over 40 Years in the business and while not as sharp as he once was still can elevate moments on commentary. He will be remembered as the greatest commentator of all time."
Rating: 10.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Okaro143wrote on 05.09.2022:[8.0] "Jim Ross is one of the best commentators of all time. His reactions are legendary and his voice just gives fire to the match. Recently though, I kinda hate him at AEW, he makes way too many mistakes and many times don't even know names of the wrestler whose matches he is calling so an 8."
Rating: 8.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: znezaaljwrote on 25.08.2022:[10.0] "He is undoubtably the greatest commentator of all time. The passion, emotion, his voice, so iconic. Obviously he is not 1999 JR but still as of today he is a pretty good commentator. He has his botches here and there, but who does not? A legend of wrestling."
Rating: 10.0
Sentiment: 0.49000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: PavelDragunovwrote on 24.08.2022:[9.0] "A commentator who devoted himself to commenting and to this day he is working on wrestling content and his contribution to the Play-by-Play style of Commenting is difficult to overestimate. The man is the voice of millions of matches and how much I watch him, he always pleased me and I saw in him an individual personality and an original commentator. It is a pity that his health deteriorated early, and now he is not as good as before, but still his love for business awakens only positive emotions."
Rating: 9.0
Sentiment: 0.18202479338842972
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Luna100wrote on 02.08.2022:[4.0] "I am not a big fan of most his run in the WWF and AEW and utter trash in NJPW. He is good but not fantastic, the worst on the AEW team and if I ran AEW I would not give him another contract. I listened listened to his Chi-Town Rumble commentary and I really disliked it. He has only gotten worse over the years and now makes constant makes, he may have been useful on getting eyes on AEW for the first few months, but after that he draws nothing and mainly subtracts due to his legend status."
Rating: 4.0
Sentiment: -0.013888888888888897
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: arrancarwrote on 11.07.2022:[4.0] "JR is a bad announcer at the moment, and even in his 'prime' he was vastly overrated. Yes, he would hype matches up with his "BY GAWD" calls and such, but the way he would so desperately exclaim his catchphrases with his trademarked 'excited' delivery was really off-putting at times, as if he was artificially trying to make the match better by getting LOUD and over-exaggerating the events he just witnessed. He was also often far too in love with providing very random analogies which never added anything to the match in front of him, instead seeming to just be a way for him to try show off some minimal intelligence by simply comparing the match or a move/action to anything else he could think of, no matter the topic. When he was simply calling the action and walking the fans through the match stories, he was always good, but his attempts at producing extra excitement often felt overkill. Now, those negatives I had were of JR during his prime, but I still considered him a pretty good commentator compared to most others, since his worst moments, despite being bad, weren't consistent enough to be a major issue. It's been his work in recent years which has now lowered him to a 4/10 in my eyes. And yeah, he's 70 years old now, but if he's still doing that job then I'm gonna criticise him when he does it poorly. Firstly, with NJPW and AEW he was/is clearly just collecting a cheque. He often never bothered to learn which wrestlers were which, he didn't know what the ongoing stories were, and he actively criticised the matches with his passive aggressive and overly critical comments (which, even if they were valid criticisms, he still shouldn't have done because his JOB is to enhance the viewing experience for the viewer, not make them think "oh what I'm watching doesn't make sense, thanks JR! "). JR these days also constantly trips over his words or mis-times his delivery, and he'll also just forget key details or sometimes go down random rabbit holes instead of trying to simply commentate normally. He has maybe only 1/10th the enthusiasm he used to have, and you can sense that he doesn't really respect the sort of wrestling that AEW offers. That being said, the guy still lovessssss to get himself on camera for a hype video or documentary, where he'll often try to sound quite profound and poetic with his observations and opinions, as if he thinks what he's saying is really interesting and that the way he speaks is really engaging. He just comes off as pompous, and I could imagine he acts that way because he thinks his history in the wrestling business makes him an authority on it. He's another AEW signee only around based on name value alone. I still respect his mostly good efforts back in the day, but he doesn't add much now. He detracts from the product almost every time he speaks, and he should really hang it up before he tarnishes his legacy even further."
Rating: 4.0
Sentiment: 0.05938786008230453
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: NoSellwrote on 13.06.2022:[2.0] "I'm 22, I didn't listen to him when he was on his prime. His current work is appalling. He seems disinterested, is constantly talking shit about the matches instead of adding anything of value to them and of course the worset thing are the misogynistic and sometimes borderline racist comments when japanese wrestlers like Shida or Takeshita are in the ring. He actively makes the product worse and I look forward to the day he sods off from AEW. Beyond awful."
Rating: 2.0
Sentiment: -0.2604166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: CommisarRobewrote on 09.06.2022:[10.0] "An absolute icon of Wrestling commentary, from his over excited reactions, to often sounding genuinely worried about a wrestlers well being after a gnarly bump. Sure he's slowed down a bit with his commentary at AEW but he is still good ol reliable JR."
Rating: 10.0
Sentiment: 0.33657407407407414
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: TSwiftywrote on 19.05.2022:[6.0] "Once upon a time Jim Ross might've been a contender for the best English commentator in the world. He had good chemistry alongside Lawler during the Attitude Era and Ruthless Aggression era. He would always overexaggerate things far too much but generally he was good. His downfall over the last numbers of years has been painful to watch. His NJPW commentary was terrible and he didn't even care enough to learn to names of the wrestlers. His AEW work has been mostly dreadful. He's constantly making mistakes and sometimes he just speaks gibberish. He makes analogies and comparisons that make no sense whatsoever to point where you have no idea what he's referring to. He goes down random 'rabbit holes' like another user below said. JR still has some valid criticisms of modern wrestling and I respect him for sticking to his guns on them, but this is also a detriment. You could tell he doesn't enjoy AEW's style of wrestling and that would be perfectly fine if he wasn't the one calling it. I think a commentator should hook you into a wrestling match's atmosphere and not take you out of it and JR does much of the latter."
Rating: 6.0
Sentiment: -0.018518518518518514
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: WrestlingFan892wrote on 11.05.2022:[10.0] "The best Wrestling play by play commentator in history in my opinion. He is good at everything and despite his age he continues to give us vibes of good Wrestling such as AEW."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: KroKrowrote on 23.04.2022:[10.0] "The greatest Play by Play commentator in Pro Wrestling history. He's called so many iconic matches and moments throughout wwe and Pro Wrestling history."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Jason Phoenixwrote on 15.04.2022:[10.0] "The best Play-by-Play Commentator, maybe ever. Even when not on top form, still better than anyone else I've heard."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: LoloFareswrote on 07.04.2022:[6.0] "I really don't know where all this love for Jim Ross's Commentator comes from. For me, the last time I saw him, even at a good level, was since the '90s in the WWE otherwise, and after he was almost released in 2013, listening to his Commentator became very boring, and I don't blame him frankly, at this age and illness. but as you know he does not have to be on this place at all!"
Rating: 6.0
Sentiment: 0.07999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: GriffinXwrote on 10.02.2022:[10.0] "For many Jim Ross is THE voice of wrestling the man has called so many big moments and put his stamp on them. Even today a big older and not as sharp as he once was he still has some gems"
Rating: 10.0
Sentiment: 0.17361111111111113
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: sxltsnxffxdaewrote on 03.02.2022:[10.0] "this is the voice of the WWE attitude era(concurrently the best era) and now it is the voice of AEW. this is awesome"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: rishabhwrote on 03.02.2022:[10.0] "He was really the voice of the WWE in the Attitude Era. The emotion he put in during his commentary made the matches and moments much better and the way he would tell the stories on commentary were amazing. His pairing with Lawler was great and made the shows more enjoyable. I agree that he isn't the same anymore and his commentary has been bad in AEW but it's stupid to judge him based on his last 3 years when he has been doing it for decades."
Rating: 10.0
Sentiment: 0.16000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Ruthless Attitudewrote on 21.12.2021:[10.0] "Without a doubt JR is the greatest play-by-play commentator bar none. Largely underappreciated by the WWE and Vince McMahon, but beloved by the fans and in his prime made big moments feel that much more special. Not quite as great today in AEW still clearly has a passion for the business."
Rating: 10.0
Sentiment: 0.2968253968253968
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: FerFerFer123wrote on 25.09.2021:[5.0] "I cant talk about his WWE run couse i sawit on my first lenguage but his AEW demostrated he has massive dinosaur behaviour like when he treated Sony Kiss as a she. IMO the weakest part of the 3 Dynamite comentators team"
Rating: 5.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Ma Stump Pullerwrote on 22.07.2021:[8.0] "Jim Ross is basically the wrestling equivalent to Doctor Jekyll and Mr Hyde: for the amazing calls he had in NWA/WCW, as well as his iconic work in the WWF as lead commentator and respected backstage worker, you have his pretty ugly work in NJPW where he stank on the whole promotion by clearly half-assing everything and not even bothering to remember the names of the wrestlers. Even in AEW where he shows signs of passion and of his old self, he just feels like he's going through the motions most of the time. Can't blame him considering he's been in the business for far longer than many: burnout is a real thing, especially when you have emotional baggage: but it doesn't excuse his objective quality of his calls. He trails off at times and doesn't seem to connect with a lot of the material presented to him."
Rating: 8.0
Sentiment: 0.15333333333333338
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Daigotsuwrote on 19.06.2021:[10.0] "JR is the voice of American wrestling. Awesome commentator who is a true master of his craft. Sure, his current AEW work shows that he's slowed down, but even a JR who's lost a few steps is still better at commentary than most people's A-game."
Rating: 10.0
Sentiment: 0.2771604938271605
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Kungwrote on 01.06.2021:[10.0] "The single greatest play-by-play commentator to grace this wonderful sport. His calls will live forever for perfectly matching the moment, and his ability to find talent is just as strong. The man's been through so much and yet he's still just as special today as he was the first time I heard his voice."
Rating: 10.0
Sentiment: 0.47837902837902835
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: medousewrote on 14.05.2021:[10.0] "One of the most recognizable voices in wrestling history. He was calling the greatest matches during WWF-WWE best years. Even though he suffered some health issues and his face is partially paralysed, he still manages to do what he does best and he does it like that for years. The recent years of his career are not the most successful from wrestling fan point of view, but come on... he's almost 70. He did hell of a job throughout the years. Eveything has to come to an end someday."
Rating: 10.0
Sentiment: 0.5444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Suzukigunwrote on 23.04.2021:[10.0] "He may not be nearly as good as he once was, but in his prime, he was one of the best ever. Few could evoke emotion in the booth the way he could. An absolute legend of the business."
Rating: 10.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: AmarantCoralwrote on 22.04.2021:[8.0] "Such is the legend of Jim Ross that I cannot rate him any lower than I have done. He is, for my generation, the undisputed voice of pro wrestling. But his work in AEW is a disservice to his legacy, so much so that his poor run as one of the more lesser-performing commentators in network wrestling must be reflected in his score. His professionalism has given way to uncharacteristic breaks in kayfabe, and all too often he shirks his responsibility of putting over wrestlers in favour of seemingly mocking the product he is employed to call. The first two acts of the career of the man under the black hat are iconic and I remain grateful for and in awe of his catalogue of work, but after a certain point you have to question whether the value of his voice alone is still resulting in a net positive, in the face of the detriment to the product his words are causing, and whether it wouldn't be better to hang up the Stetson."
Rating: 8.0
Sentiment: 0.16589925226288862
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: AnBwrote on 22.04.2021:[9.0] "Good old JR. I never quite understood how he managed to make words considering how little he moved his mouth. His voice is a part of wrestling for me and he always did pretty good at building hype, but I distinctly remember not being a fan of some of the times he got more involved with the storylines."
Rating: 9.0
Sentiment: 0.33749999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: THATSGOTTABEKANEwrote on 12.03.2021:[10.0] "Jim Ross commentated wrestling during my childhood. His voice is just embedded inside my head together with Iconic moments and matches he's commentated. He does seem out of place in AEW but that doesn't really affect my score for him."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: AJStylopzwrote on 09.03.2021:[7.0] "Good'ol JR! JR is one of the best commentators I've had the pleasure of listening to while I watched WWE matches as a child. He was always great, and he seems genuinely one of nicest guys ever. (I take back what I say LOL)"
Rating: 7.0
Sentiment: 0.6458333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: StrongStyle2020wrote on 05.02.2021:[6.0] "A great announcer during the Attitude Era, but a very mediocre one outside of that. Over the past 10+ years, he seems checked out, and going through the motions. For as many great calls as he has made, sadly he has made 10x as many awful ones by this point. Mid South and early NWA he was adequate, but certainly had not reached the level of '97."
Rating: 6.0
Sentiment: 0.06520146520146522
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Wrestling Foreverwrote on 06.09.2020:[10.0] "Für mich einer der besten Kommentator die es im Wrestling jemals gab. Leider durch seine Krankheit im Gesicht gezeichnet aber trotzdem versteht man ihn sehr gut. Sein Podcast ist auch richtig stark und er hat auch eine richtig gute Blogseite. Kommentierte immer sehr emotional vor allem wenn sein Freund Steve Austin gewann wurde er besonders laut. J. R. hinterlässt in der WWE als Kommentator eine Lücke die man nicht schließen kann. Edit 28. 04. 2019 Bedanke mich nun für Jims Zeit bei der WWE. 26 Jahre sind sehr lang und Jim hat da viel erlebt auch Storyline Entlassungen, schlechte Matches und so weiter. Immer noch ein Top Kommentator. Edit 06. 09. 2020 Finde ihn bei AEW als Kommentar auch richtig stark."
Rating: 10.0
Sentiment: 0.024999999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Matt Mackswrote on 06.09.2020:"Although it pains me a little bit, seeing as Jim Ross was and is one of my favourite commentators ever and responsible for so many awesome moments in the WWF Attitude era and even further back when he started in the WCW/NWA, making Ric Flair matches so incredibly exciting to watch. But all of that fire, all of that passion seems to have vanished over years and years of becoming jaded in WWE and simply becoming old and no longer understanding modern pro wrestling. There are still a lot of instances where he is AEW's voice of reason and is able to contribute a lot to the story in the ring, but it usually requires at least one performer in the ring that Ross either likes or at least " gets" . In many other situations during the weekly broadcasts he appears old, out of touch or even blatantly dismissing of the wrestlers' performance. While his partner Tony Schiavone has the same issues, Schiavone at least keeps himself in the background, while Ross usually takes the reigns of the commentary direction away from anyone else. Undoubtedly, he is one of the legendary commentators in the business. But it is also time for him to not only mention his self-awareness of his age, but also to act on it. // Update: Removing my rating because of his disrespectful and in some instances downright sexist commentary the last few weeks. I do not enjoy hearing Jim Ross anymore, AEW."
Rating: No rating found
Sentiment: 0.09953703703703708
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Lixyxwrote on 06.09.2020:[5.0] "I never got the praise he got, he had some catchphrases, some good expressions, but that's about it. I would rate him 7/8 in WWE, but the work he is doing in AEW is so awful, he makes me want to listen to Michael Cole."
Rating: 5.0
Sentiment: -0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ElPolloLocowrote on 10.01.2020:[8.0] "He used to be very good, bringing some sort of big time sports commentary to pro-wrestling. I personally prefer Gordon Solie but when Jim Ross was firing on all cylinders he was really really good. But then his motivation went south already when he was working for WWE and has been going steadily south. His NJPW stint was truly unprofessional and the sooner AEW tells him to deliver the goods or go back home the better. Jim Ross has been a great addition to pro-wrestling, has been part of countless memorable moments (Mick Foley vs The Undertaker to say but one) but his time is clearly over. To quote Jim Cornette "Of course Frank Sinatra is a legend, but how many records did he sell last year? "."
Rating: 8.0
Sentiment: 0.32128205128205123
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: gigiferwrote on 14.11.2019:[5.0] "he was a great commentator until he left wwe. for the first time. Remember his commentary for Mae Young classic it was awfully bad. Now Jim Ross is done. His commentary is getting worse and worse every show."
Rating: 5.0
Sentiment: -0.022916666666666627
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: JuliTheCage87wrote on 24.10.2019:[6.0] "Bester Kommentator, den das Wrestling-Business jemals gesehen hat. Er besitzt nicht umsonst so einen Legenden-Status. UPDATE: Muss jetzt leider abwerten. Auch wenn er eine absolute Legende ist, sollte er dem Kommentieren den Rücken zuwenden. Sehr monoton und einschläfernd, bringt momentan mehr Commentary-Botches als Josh Mathews und die Atmosphäre von früher ist auch nicht mehr da. UPDATE 2: Uff, bitte hör' auf."
Rating: 6.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[9.0] "Perhaps the best ever. His voice is certainly tattooed to my mind. It's good hearing him again in AEW & he was taken off WWE WAY too early. Ross & Lawler is my favorite duo & they worked well with one another."
Rating: 9.0
Sentiment: 0.5028571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Cow Manwrote on 24.05.2019:[10.0] "Bah Gawd, Jim Ross is one of the greatest commentators in wrestling! His work has always been great, but he probably did his best stuff during the Attitude Era in the WWF. The raw emotion in his voice as he commented on the action is something that most commentators today can't match. Good God Almighty, this man deserves a 10!"
Rating: 10.0
Sentiment: 0.4888621794871795
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: JEK 1991wrote on 30.10.2018:[10.0] "Excellent ringside announcer. He was always entertaining the fans on Monday Night Raw. He was the babyface and Jerry Lawler was a the heel. Best ringside announcing team. He would say "Stone Cold! Stone Cold". His voice was recognizable. As a wrestler he was horrible but his 10 rating is for his announcing. I miss this guy. Excellent announcer."
Rating: 10.0
Sentiment: 0.1299145299145299
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: RatingsMachinewrote on 11.10.2018:[9.0] "Jim Ross was one of the best announcers of all time, and whether or not you consider him the best comes down to personal preference. But time has not been kind to Jim's ability, and it has been a good few years since Jim should have called it quits."
Rating: 9.0
Sentiment: 0.42063492063492064
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Steamboat2511wrote on 29.09.2018:[10.0] "Schlicht und ergreifend DIE Stimme des Wrestlings und Kommentatoren-Legende. Kein anderer Kommentator hat je vor oder nach ihm so ein Big-Match-Feeling entstehen lassen, wie JR. Viele Matches sind durch seinen Kommentar noch ein wenig besser geworden bzw. geadelt worden. Unzählige geschichtsträchtige Situationen und Matches sind mir mit seinen Worten in Erinnerung. Er hat der WWE im verbalen Sektor Epik, Dramatik und Leidenschaft verliehen. Am genialsten sicherlich im Zusammenspiel mit dem King. Stimmfarbe, Emotionen (oft sorgfältig zum Höhepunkt/Finish hin gesteigert), Leidenschaft fürs Wreslting, Sachverstand, Eloquenz, die Fähigkeit spontan die richtigen Worte zu finden und sein Sinn für die großen Momente sind nur einige seiner vielen Stärken."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Dragon Fighterwrote on 17.05.2018:[7.0] "He is one of the best if not the best commentators in wwe history. He is an icon during the attitude era and ruthless aggressive era for sure. His passion and skills were tremendous without a doubt. He added more story and emotion into matches I agree. However, I give him 7 because of his downfall in the last few years. I don't blame him for his wife's death but since then he become very annoying. He is more of a WWE guy and tends to defend this company no matter how awful its booking is. Furthermore, his performance at NJPW shows in the US was awful and soulless. He didn't know shit about their wrestlers. So yeah, he is a legend but I still have to deduce some points for some obvious reasons."
Rating: 7.0
Sentiment: -0.040476190476190506
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: CHN325wrote on 01.02.2018:[9.0] "Second to only Bobby Heenan when it comes to the commentary table. A true legend of the business and a genuinely nice guy."
Rating: 9.0
Sentiment: 0.2375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: taabr2wrote on 10.09.2017:[10.0] "The voice of the Attitude Era! Jim Ross is one of the best announcers in wrestling history and arguably the greatest of all time."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Headlockwrote on 02.07.2017:[4.0] "Wäre er nur in der WWE/WCW gewesen hätte er 8 Punkte bekommen, Aber bei New Japan als Englischer Kommentator komplett schlecht! Besonders bei denn G1 USA Specials! Wo er in jedem Match einen Wrestler mit einem anderen vertauscht hat, wenn man denn kleinen Luchador nicht mit dem großen Blonden Power Wrestler auseinander halten kann, sollte man in den Ruhestand gehen"
Rating: 4.0
Sentiment: 0.2130681818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Lee Vilenskiwrote on 20.06.2017:[10.0] "It's funny, at time of writing, Jim Ross is down as the 27th best wrestler of all time according to CageMatch; on par with Edge.   With that being said, he has probably had the most influence of anyone not named Vince McMahon over major wrestling matches, and made even the worst ideas work just with his commentary alone."
Rating: 10.0
Sentiment: 0.10949074074074076
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Summerslam Fan 01wrote on 05.03.2017:[10.0] "Legende.  Jim Ross ist einfach die Stimme des Wrestlings, es wird nie wieder so ein guten Kommentator wie ihn geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: coolserazwrote on 22.02.2017:[10.0] "Greatest play-by-play commentator ever.  Not just for when he got hyped. The way he got indignant when heels attacked the babyfaces made the babyfaces more sympathetic and the heels extra devious."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Longa-46wrote on 24.08.2016:[10.0] "Da braucht man nicht lang diskutieren - Jim Ross war der beste Kommentator in der WWE. Seine einzigartige Stimme und Kommentare drücken ihn aus. Einige Momente hat er wirklich sensationell kommentiert. Lawler und Ross - legendäres Team am Pult. Zack, 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Super Mastodonwrote on 14.03.2016:[10.0] "The greatest wrestling commentator of ALL TIME! He could even be one of the greatest commentators in all of sports history! JR is just great and there will never be anyone like him ever again!"
Rating: 10.0
Sentiment: 0.8333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: MAGICIANwrote on 22.01.2016:[10.0] "Kurz und knapp der beste Kommentator der WWE Geschichte. Einzigartige Stimme, einzigartiges, impactvolles und stimmungsvolles Commentary. Eine Legende. Good God almighty."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: rockcitizenwrote on 20.01.2016:[10.0] "Legende. Mir fällt hier nichts Negatives ein, ich fand ihn immer super, sehe Monsoon und ihn auf einer Stufe."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Kick Out City Bitchwrote on 30.07.2015:[10.0] "A competent commentator who is respected by everyone in the business, beause he has the right eye for talent. His markout moment are legendary every '90's-early '00's kid needs to love him. He is the guy behind the desk, doesn't matter in which company.   BTW: His podcast is the best wrestling podcast that exists."
Rating: 10.0
Sentiment: 0.48095238095238096
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: rxted rkowrote on 22.04.2015:[10.0] "Eine Legende unter den Kommentatoren. Er hat mit seinem Beitrag unzählige Momente unvergesslich gemacht oder sie zumindestens perfektioniert. Selbst die langweiligsten Matches hat er aufgewertet. Er konnte einfach Müll in Gold umwandeln. Es wird wohl schwierig sein für alle WWE-Nachfolger, diesen Mann zu toppen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Viper99wrote on 04.04.2015:[10.0] "Jim Ross ist einfach der beste WWE Kommentator aller zeiten! Er hatte so viele Großartige Momente der WWE Geschichte kommentiert wie zb. Mankinds sturz vom Käfig oder Austins Turn bei Wrestlemania. Immer wenn ich an diese Momente denke, denke ich an Jim Ross! Außerdem finde ich Jim Ross wirklich sympatisch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: zackwoowoowooryderwrote on 11.02.2015:[10.0] "Jim Ross ist und bleibt die Stimme der WWE und daran wird sich auch nicht ändern. Ein Mann den ich extrem mochte und auch von seiner Art her super fand. Und er ist so ziemlich der einzige Kommentator der WWE der wirklich immer Neutral war."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Y2J316wrote on 28.11.2014:[10.0] "Bester Kommentator aller Zeiten. Ich finde er kann auch schach für Millionen zu einem ereignis wie ein WM-Finale machen. Schade das vince ihn immer wieder los werden wollte. Ich hätte ihn gerne heute noch anstatt Cole."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Phenomenal91wrote on 27.07.2014:[10.0] "It's hard to get wrestling fans to agree unanimously on ANYTHING, but if there's one thing we all agree, it was that Jim Ross was the greatest play by play announcer of his generation, and possibly the greatest of all time. He always called the action with passion, insight, and occasionally humor, and was entertaining every time. Even though, for some reason I'll never figure out, the WWE insisted in placing him in embarrassing storylines, requiring him to get in the ring, and even openly mocking the Bell's palsy that almost ended his career, he stayed loyal to them for the better part of 20 years. That is a loyalty and commitment to the sport you love and the company you work for that you probably won't find anywhere else in the wrestling world. Now that JR's no longer actively involved in the corporate politics of WWE, he's giving insight into wrestling through his podcast, a longtime insider's view from the outside. I miss his commentary. I miss him. He said we haven't seen the last of him in a big time wrestling project. I certainly hope that's true."
Rating: 10.0
Sentiment: 0.22625661375661377
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: alcoholicmetalmayhemwrote on 20.04.2014:[6.0] "Keine Ahnung. Versteh den Hype nicht so ganz. Ganz stinknormaler Kommentator. Zu diskutieren welcher Kommentator besser ist, ist ohnehin Blödsinn. Was macht ihn besser wie einen anderen Kommentator?  Hat in seinen Rollen die er in den Fehden hatte gelegentlich überzeugt."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Lord Regalwrote on 15.01.2014:[2.0] "Ich finde JR ziemlich langweilig und seine Rollen kann er meiner Meinung nach auch nicht gut spielen. Meiner Meinung nach einer der schlechtesten WWE Komentatoren."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: TheUnderTakerwrote on 30.12.2013:[10.0] "Bester Play-by-Play Wrestling-Kommentator aller Zeiten. Diverse Bgründungen haben Andere besser formuliert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: koeddylaemmlewrote on 29.09.2013:[10.0] "For me Jim Ross is not only the voice of the, he is the voice of wrestling. Jim Ross made so many moments even more spectacular through the emotion he conveyed... something that is noticeably missing from the current product."
Rating: 10.0
Sentiment: 0.23333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: KobashiKentawrote on 05.09.2013:[10.0] "@Fabi89: Die "boyhood dream" line war von Vince, nicht von JR.  Zur Bewertung: Die wichtigsten Punkte wurden bereits genannt, sein Wrestling-Sachverstand, seine Stimme, seine Begabung besonderen Momenten diesen letzten "epischen" Touch zu verleihen machen ihn zum besten und wichtigsten WWE-Kommentator aller Zeiten. Beim ebenfalls bereits genannten 3-Way Match bei Wrestlemania XX liefert er die beste Kommentatorenleistung ab, die ich jemals gesehen hab. Mehr Emotion geht nicht!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: HighlightHEELwrote on 23.08.2013:[10.0] "Für mich unter den Wrestling-Kommentatoren, was Howard Finkel unter den Ringsprechern ist. Ein Gott in seinem kleinen Reich. Seine Stimme, sein Fachwissen und die Emotionen, die er transportieren kann, lassen ihn absolut unvergesslich werden. Bei so vielen großen Momenten macht seine Stimme im Hintergrund das Geschehen noch epischer. Ich würde ihn jederzeit Vollzeit zurück holen, wenn ich könnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Alex Maedawrote on 03.08.2013:[9.0] "Lebt sehr von Stimme, Emotionen und Authentizität. Hat den Sport geprägt wie wohl kein anderer Kommentator, aber für die Höchstnote haben mich seine ständigen Phrasen irgendwann zu sehr genervt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Antimasterwrote on 29.07.2013:[10.0] "Der Kerl ist einfach der beste Kommentator, den es gibt. Wie er epische Momente rüberbrachte, das wird es kein zweites Mal geben, zudem auch fachlich oberes Nivau."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Scuzzlebuttwrote on 30.06.2013:[10.0] "Was soll man noch groß über ihn sagen. Er ist einfach der beste der jemals am Kommentatorentisch der WWE platzgenommen hat. GOOD GOD ALMIGHTY! GOOD GOD ALMIGHTY! THAT KILLED HIM! AS GOD AS MY WITNESS, HE IS BROKEN IN HALF. Einfach nur eine Legende."
Rating: 10.0
Sentiment: 0.1866666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Lecterwrote on 05.06.2013:[10.0] "Best the business has ever had. Only guy with the ability to make truly legendary WWE calls, which is a darn shame."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: believeintheshieldwrote on 02.05.2013:[10.0] "Der Beste Kommentator den die WWE zu bieten hat. Eine legende an der Seite von Jerry Lawler. Mitreißende Kommentare und immer einen passenden Spruch auf lager, das ist es was Jim Ross auszeichnet, daher 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "One of the greatest announcers of all time, if not the greatest. He really brings the emotion and drama to a match with his commentary."
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Tobi23wrote on 07.11.2012:[10.0] "The best there is, the best there was, and propably the best there ever will be"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: cmkanewrote on 03.10.2012:[10.0] "Eine Legende und der beste Kommentator aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: FSFLYwrote on 20.09.2012:[10.0] "Er ist der beste Kommentator den die WWE seit ihrer Entstehung hat und sein Markenzeichen die rote Mappe und der Hut und sein Sauce ist die beste der Welt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: VanderVaartwrote on 24.04.2012:[10.0] "Der beste WWE-Kommentator aller Zeiten. Weder langweilig, noch hektisch. Ruhig und Sachlich. Genau so soll es sein. Mit Lawler ein nahezu perfektes Team. Allerdings sollte der Unfug gelassen werden, einen Menschen, der leider eine Gesichtslähmung hat, in den Ring zu steigen. Außerdemhat er zu viel unnötige Körpermasse. Da ist es besser, wenn er nur Kochbücher herausbringt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Sirius Van Grathwrote on 25.03.2012:[10.0] "Jim Ross ist der beste WWE Kommentator aller Zeiten! Er kommt zwar meiner Meinung nach nicht an Joey Styles ran, ist aber trotzdem einfach "Good ol' J. R. ""
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Marlowewrote on 20.02.2012:[10.0] "Der beste Wrestling-Kommentator aller Zeiten. Nur für sein Theme würd ich ihm gerne nen Punkt abziehen^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Fabi89wrote on 02.11.2011:[10.0] "Bester Mann am WWE Pult, der genau das richtige Gespür für die sprachliche Begleitung einer Wrestlingshow an den Tag legt. Hat zahlreiche besondere Momente erst zu dem gemacht, als was sie heute erinnert werden. Man denke nur an Foleys Sturz vom Hell in a Cell Käfig oder Shawn Michaels "boyhood dream"."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Y2John Cenawrote on 14.10.2011:"Meiner Meinung nach ist Jim Ross der beste Kommentator überhaupt. Er besitzt das nötige Fachwissen, kann auch die Moves richtig benennen und, das gefällt mir am meisten bei ihm, konzentriert sich auf die Matches anstatt sich mit einem anderen Kommentator über irgendetwas total unwichtiges zu streiten."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Kitanoyamawrote on 16.09.2011:[10.0] "Auch wenn er manchmal nicht gut zu verstehen ist, was sicherlich von seiner Gesichtslähmung stammt, ist er einer der besten seines Fach, wenn nicht der beste. Er besitzt viel Sachverstand und weis stets genau was zutun und zusagen ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Rated R Punkwrote on 06.09.2011:[10.0] "Für mich der Vorzeige Kommentator! Eine Pflicht bei jeden WrestleMania da schon alleine sein Kommentieren verdammt episch ist! Jim Ross glänzte immer durch Fachwissen und war stets Professionel. Zurzeit baut er ein bisschen ab, aber das fälllt finde ich nicht besonders zur Last."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: WWE4evermaybewrote on 20.08.2011:[10.0] "Dieser Typ ist eine lebende Kommentatoren-Legende. Er macht mit seinen emotionalen Kommentaren ein 5 Sterne zu einem 6 Sterne-Match."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: FriarFergusonwrote on 16.05.2011:[10.0] "Eine Wahnsinnstimme, lässt Wrestling seriös, ernsthaft und sehr bedeutungschwer wirken. Dazu Sätze wie etwa "a man with only one leg cannot be WWE Champion, no offense to John Cena or any one legged man". Der Beste Kommentator im Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The Big Jackwrote on 26.02.2011:[10.0] "Für mich der beste Kommentator der letzten 20 Jahre. Und er hat es einfach immer noch drauf! Wenn man ihn bei der Old Shool Ausgabe sieht und hört, das ist einfach ein Genuss. Wie er und LAwler Cole einfach ignorieren. Göttlich! Und auch als Agent ist er sicherlich viel wehrt."
Rating: 10.0
Sentiment: 0.0625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: TheRatedRLegendKillerwrote on 09.02.2011:[10.0] "Neben Heenan der beste Color-Kommentator aller Zeiten. Hat Ross sich erstmal in Rage geredet, ist es einfach ein Genuss ihm zuzuhören. Siehe Wrestlemania XX (Main Event): Schade, dass er als Kommentator nicht mehr zu hören sein wird, aber ich bin mir sicher, dass er als Talentsucher auch ein Talent ist :)"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Rallewrote on 30.01.2011:[10.0] "Kommentatoren beim Wrestling sind ein bisschen wie die Musik in Filmen. Ohne sie geht es nicht, wenn sie schlecht oder unpassend ist, stört sie das Filmerlebnis. Gute Filmmusik unterstützt was man zu sehen bekommt und steigert das Filmerlebnis. - Jim Ross hat es geschafft mit seiner Art zu kommentieren und seinen Emotionen jedes Wrestlingmatch aufzuwerten. Sein "Oh my god! " hat sich bei mir ins Gehör eingebrannt. The best of all time."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Mizisawesomewrote on 03.01.2011:[6.0] "Ich versteh nicht warum Ross als einer der besten Kommentatoren angesehen wird. Er benennt moves fast schon generell falsch. Und ich bin auch kein Fan seines Südstaaten-Akzents. Mich nervt es mehr Ross zu zuhören als, dass ich es gut finde. Aber ich will ihn hier auch nicht ganz niederreden, denn einwas konnte er immer perfekt: Die Emotionen der Situationen, die stattfanden authentisch rüberzubringen. Wenn jemandem ein Rohr über den Kopf gezogen wurde war Ross völlig außer sich. Wenn etwas trauriges stattfand sank seine Stimme so, dass die Situation wirklich vollkommen ernst rüberkam. Und als er mit Tazz zusammen Smackdown kommentiert hat, war das eines der besten Moderatoren-Teams ever. Natürlich war das beste Team Ross und King, keine Frage. 6 Punkte für die Emotionalität, 4 Punkte Abzug für die oben genannten Sachen."
Rating: 6.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: skoeswrote on 06.12.2010:[10.0] "JR ist und bleibt der beste Kommentator im Wrestling-Business, was er auch bei der "Old-School"-Ausgabe von RAW vor kurzem wieder unter Beweis gestellt hat. Während andere Kommentatoren teilweise vollkommen emotionslos kommentieren oder einfach nur nerven (Michael Cole), weiß JR genau, wann man seine Stimme anheben muss und wann man auch eher ruhig bleiben kann. Die WWE täte gut daran, ihn wieder - wenn auch nur ab und zu - am Pult einzusetzen. Volle Punktzahl!"
Rating: 10.0
Sentiment: -0.2884615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Baldrickwrote on 16.11.2010:[10.0] "Kapitel 1 in jedem Kommentatorenlehrbuch: Jim Ross! Smarter Witz und eine wohltuende Abgeklärtheit lassen JR auf ewig das Mass aller Dinge der Play-by-Play Gilde bleiben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Muutzwrote on 16.11.2010:[10.0] "Was hab ich mich gefreut J. R. in der Oldschool Raw ausgabe wiederzusehen. Schade das er nicht mehr am Kommentatorentisch ist. Eine Legende und der BESTE."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: D-Stroyer DeLuxewrote on 20.10.2010:[10.0] "Jim Ross ist die eine, die einzige, die wahre Stimme der WWE... Wie Edge es so treffend ausgedrückt hat "I'd rather listen to a recording of JR than to Michael Cole live! " JR ist der beste Kommentator, den die WWE je hatte, wobei Tazz dicht folgt. Seine Aufnahme in die HoF ist mehr als gerechtfertigt."
Rating: 10.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The Ramwrote on 26.09.2010:[10.0] "Der beste Wrestling-Kommentator den ich kenne. Ich liebe seine Sprüche und find es schade das er nicht zurück kommt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Perry Coxwrote on 20.08.2010:[10.0] "Es ist unglaublich schade, dass JR nicht mehr kommentieren wird. Er ist für mich die Ikone der Ringkommentatoren und sollte ein Vorbild für jeden sein, der denselben Weg einschlagen will. Immer loyal und verlässlich und am Pult kaum zu ersetzen."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Franjisewrote on 07.07.2010:[10.0] "The greatest announcer of all times! Keine Frage, Jim Ross ist DER Wrestling-Kommentator. Emotional, mit dem nötigen Fachwissen ausgestattet und zu jeder Zeit den richtigen Kommentar. Mr. BBQ-Man (wie ihn Santina mal so schön bezeichnete) wird auf ewig eine Legende am Mikrofon und in diesem Sport sein."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The Viperwrote on 03.07.2010:[10.0] "Unfassbarer Kommentator. Eine absolute Legende mit Jerry Lawler wohl das beste Duo, das es jemals gab und es überhaupt geben wird"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Papa Popanzwrote on 03.05.2010:[10.0] "Der Mann ist eine lebende Legende am Mic... hoffentlich lässt ihn die WWE net ziehen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: RockerDropperwrote on 30.04.2010:[3.0] "Furchtbar. Er hat Ahnung vom Wrestling, ja; aber als Kommentator ist er imo unterste Kanone. Ich höre seinem Genuschel einfach nicht gerne zu, ich finde ichn nicht unterhaltsam und kann sein ganzes Auftreten nicht wirklich leiden.  Tony Shiavone, Jerry Lawler, Jesse Ventura, Bobby Heenan, Vince MacMahon... ja selbst Randy Savage habe ich lieber zugehört.  Aber jedem das seine! :)"
Rating: 3.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: KASHwrote on 30.04.2010:[10.0] "Einfach der beste. Besser als Monsoon, besser als Heenan, besser als VKM, Heyman, Ventura und alle neumodischen. Der klassiker unter den Kommentatoren und die stimme der Attitude Ära. Denke mit Jim Ross verbindet man einfach die besten und spektakulärsten Momente im Main Stream Wrestling bzw. im ganzen Wrestling. Glaube kaum das irgendwelche Japanerfans coole Momente mit seinem einprägsamen Zitat in Verbindung bringen können. Jim Ross ist die heimliche, aber dennoch präsente Stimme des Wrestling."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Cloverwrote on 06.04.2010:[10.0] "Ich liebe es, ihm zuzuhören! Wenn er sich in Rage redet, gehts richtig rund! Da wirkt alles, was man sieht, doppelt so gut! Er ist für mich der beste Kommentator ÜBERHAUPT. Hoffentlich zieht die WWE ihr Ding nicht durch, ihn irgendwann komplett zu ersetzen... gute Besserung ihm."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Exist 2 Inspirewrote on 03.04.2010:[10.0] "Der wohl mit Abstand beste Kommentator den ich je gehört habe! Fände es wirklich schade wenn er jetzt nicht merh weiter kommentieren würde!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Italian Straight Edgewrote on 24.03.2010:[10.0] "Er ist nicht mein Lieblingsannouncer, aber er ist auf jeden Fall der beste Wrestling-Kommentator der Welt. Und sicher auch einer der besten aller Gezeiten. Punkt."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Moyawrote on 14.03.2010:[10.0] "Verdient in der Hall of Fame. Er schafft es, aus einem guten Match ein großartiges werden zu lassen. Viele große Momente der Wrestlinggeschichte verbindet man automatisch mit seiner Stimme und seinem Kommentar. Hoffentlich kann er noch weitermachen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: shoopdawoopwrote on 10.03.2010:[10.0] "Bah gawd! He's busted wide open! Hard right hand to the midsection! Good god almighty! He's going on the top rope king!"
Rating: 10.0
Sentiment: 0.24424603174603174
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Eddiewrote on 06.03.2010:[10.0] "Ich glaub bei JR muss eigentlich gar nicht viel gesagt werden!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The Cripplerwrote on 26.02.2010:[9.0] "Er ist nicht einer der Besten......... Er ist der Beste ! Die Stimme des Wrestlings!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: MikeBSwrote on 15.02.2010:[10.0] "JR hat mehr oder weniger meine Jugendzeit kommentiert ;-) Viele, viele Matches und Erinnerungen hängen kausal mit seiner einzigartigen Stimme zusammen. Soviele Spots oder Finisher hängen einfach an seinen Lippen. Einfach der richtige Kemmentator zur besten Zeit."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Anti-Championwrote on 14.02.2010:[0.0] "Hat weder Austrahlung noch eine dominante Stimme, sein Stil als Kommentator ist einfach nicht zu ertragen. Hört sich an wie ein typischer Radiokasper, nur ohne eigenen Stil."
Rating: 0.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Hulksterwrote on 10.02.2010:[10.0] "Der beste Wrestling Kommentator Weltweit. Er kennt sich im Gegensatz zu seinen Deutschen Kollegen mit den Wrestlingattacken aus. Ich hoffe wir sehen ihn bald als Kommentator wieder."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Schandmaulwrote on 10.02.2010:[2.0] "Kann ihm nix abgewinnen. Langweilt mich als Kommentator. Weiß nicht wie ich es weiter beschreiben soll. Ich kann ihm zuhören, ja. Aber seine Stimme fesselt mich nicht. Ich kann ihm fachlich nichts vorwerfen, aber seine Art zu kommentieren.... wobei ich positiverweise zugeben muss, er stört mich nicht wenn ich mich auf ein Match konzentrieren will."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: RoHSupporterwrote on 25.01.2010:[10.0] "JR ist eine Legende des Sports Enterainment und deshalb bekommt er eine hochverdiente 10 von mir!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: TheROCKwrote on 22.01.2010:[10.0] "Jeder Wrestling Fan über 20 und älter wurde mit dieser Stimme groß. Allein seine Stimme lässt mich immer noch von besseren Wrestling-Zeiten schwärmen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: RIKYwrote on 13.01.2010:[10.0] "DIE Stimme der WWE. Good ol' JR hat die Fähigkeit jedes Match zu einem Highlight zu machen. Ich hoffe auf seine baldige Rückkehr."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Aesopwrote on 20.12.2009:[10.0] "Einer der besten Kommentatoren überhaupt. Seine Leistung ist zwar nicht mehr so gut wie früher doch er ist immer noch einer der besten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: downtown2wrote on 16.12.2009:[5.0] "Ein sehr geradliniger Veteran, der als Saubermann fast nicht wegzudenken ist. Er scheint alle Infos auf Knopfdruck abrufen zu können, ist aber auch ein übler Patriot und leicht verstaubt dazu."
Rating: 5.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Fountain of Misinformationwrote on 22.10.2009:[7.0] "War mal ein exzellenter Kommentator, hat über die Jahre aber wirklich stetig abgebaut und neigt heute zu den ständig gleichen Phrasen (Shelton Benjamin athletischen Hintergrund, die Hand- und Schuhgröße von Big Show usw. ) und Standard-Sprüchen, mit welchem er gut 80% seines Kommentares füllt und streckt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: element-41wrote on 04.10.2009:[9.0] "Er ist seit Jahren DIE Stimme der WWE. Er gehört auf jeden Fall in die Hall of Fame. 9 Punkte!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: NewGuywrote on 03.10.2009:[10.0] "Wüsste nicht was es an ihm auszusetzen gäbe! Seit Jahren die Stimme der WWE, eine der wenigen Dinge, die unverändert gut bleibt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: 108 Sternewrote on 25.09.2009:[5.0] "Ätzender Typ, mit einer Persönlichkeit, die einen in die Mattscheibe schlagen lassen will. Fachwissen und langjährige Erfahrung hin oder her, aber der Mann ist für mich einfach der mieseste Kommentator und Experte, den ich je gehört und gesehen habe."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Basket Casewrote on 15.09.2009:[10.0] "Der beste Kommentator ever und das egal mit welchem Partner."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: DJ MaSchwrote on 13.09.2009:[9.0] "Nicht merh so gut wie früher in der NWA/WCW oder zu Beginn seiner WWF Zeit trotzdem noch immer der beste Play-by-Play Kommentator im Mainstream Bereich."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: MattBornewrote on 06.09.2009:[10.0] "Wirkt auf mich stets authentisch und überzeugend mit seinem Wissen, die Splittung von Jr. und dem King, fand ich aber alles andere als schön, da ich sie zusammen sehr gut fand. Hoffe für ihn, das er bezüglich seiner Zukunft die richtige Entscheidung trifft, ich würde ihn auch gerne bei Tna sehen. Bin aber genauso froh, wenn er bei der WWE bleiben würde."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: alfredwrote on 03.09.2009:[10.0] "DIE Stimme der WWE, auch wenn er in letzter Zeit öfters mal unpassende Movebezeichnungen von sich gibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: 123 kidwrote on 03.09.2009:[8.0] "Er ist mit Matt Striker wirklich der beste Kommentator bei WWE."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Turboladerwrote on 30.08.2009:[10.0] "Einer, der sich seinem Job voll hingibt. Der beste Kommentator der WWE ever."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Alorionwrote on 24.06.2009:[10.0] "Einer der einzigesn Kommentatoren der WWE der es schafft in einem während einem Match keine Moves falsch zu benennen und überzeugt mit Fachwissen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Legdropswrote on 19.06.2009:[7.0] "Leidenschaft, Wissen und einen gewissen Unterhaltungsgrad möchte ich dem guten JR nicht absprechen. Mitreißen kann mich sein Kommentar allerdings nicht."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Bloodywrote on 19.05.2009:[10.0] "Good Old JR der beste der besten mehr braucht man wohl da nicht zu sagen ;)"
Rating: 10.0
Sentiment: 0.3499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: REYMVPwrote on 18.04.2009:[6.0] "Finde ihn nicht so gut, weil er manchmal sehr undeutlich spricht!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The-Game91wrote on 04.02.2009:[10.0] "Meiner Meinung nach der größte Kommentator den die WWE jemals hatte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Father Nelsonwrote on 01.02.2009:[9.0] "Always loved good olŽ J. R. ! But itŽs time to retire for good."
Rating: 9.0
Sentiment: 0.7583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: michawrestlingfanwrote on 15.01.2009:[10.0] "Da brauch man echt nicht viel zu sagen. Er ist einfach der beste Kommentator den es gibt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Jakeswrote on 21.12.2008:[10.0] "Fand voll lustig wie er immer schrie : Oh no ! Not the FU xD"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Jar Jar Binkswrote on 21.12.2008:[10.0] "Kein Kommentar! ;) Nein also mal im Ernst. Dieser Mann ist einfach der beste Kommentator, den es im Moment gibt. Er schafft es immer wieder ein Match spannend zu machen oder interesante Informationen rüber zu bringen. Für mich der vollkommenste, ja sogar perfekte Kommentator.  What a Slubberknocker!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ScrWwe94wrote on 21.12.2008:[10.0] "Ich liebe seine tollte Calls. Einfach unglaublich wie faszinierend er kommentiert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: nicojansonwrote on 29.11.2008:[10.0] "Die Legende am Kommentartorenpult schlechthin, unglaubliches Wissen über diesen Sport und einfach toll, ihm zuzuhören. Besser gehts nun wirklich nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: LordTrailerwrote on 11.11.2008:[9.0] "Legendär! Er hat die großen Momente in vielen Ligen kommentiert und wohl den ein oder anderen Wrestler dadurch over ("Austin wins, Austin wins") gebracht. Aber er muß aufpassen, dass er nicht zu einer Karikatur seiner selbst wird, eben weil er so viele Catchphrases geprägt hat."
Rating: 9.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Amazing Bluewrote on 11.11.2008:[10.0] "Er ist definitiv der beste, aktive Wrestling-Kommentator auf diesem Planeten. Er kann immer rüberbringen, was er soll/will und es hat sich über die Jahre einfach gezeigt, dass er für die WWE nicht ersetzbar ist."
Rating: 10.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: lp4everwrote on 26.10.2008:[10.0] "Was anderes als 10 Punkte für J. R. kommt für mich nicht in Frage. "Business is about to pick up! ""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Animal360wrote on 24.10.2008:[10.0] "Good old J. R. ist einfach Legendär der wohl nie zur Debatte stehen wird."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Unrated Superstarwrote on 07.10.2008:[10.0] "Sehr viel besser als Jerry Lawler und auch IMO kompetenter als der King. Bildete mit Foley für kurze Zeit das perfekteste Kommentatoren-Team schlechthin, aber auch mit Tazz hat er einen guten Kollegen an seiner Seite. Frag mich nur, warum die WWE zeitweise versucht hat ihn aus der WWE zu werfen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: GeneralUwewrote on 26.08.2008:[2.0] "Einfach nur nervtötend. Kommentiert viel zu übertrieben und wirkt oft lustlos. Ich kann den Hype um ihn einfach nicht verstehen."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: nacho83wrote on 17.08.2008:[10.0] "Die Stimme der WWE. Allein schon die Tatsache, dass die WWE niemanden findet, der Jim Ross Platz einnehmen kann der dabei so ein hohes Niveau beibehält, zeigt wie stark er am Mikrofon ist."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Rated-RKOwrote on 13.08.2008:[10.0] "Für mich mit Abstand der beste Kommentator der WWE und nicht zu vergleichen mit den Salamigehirnen Carsten und Günter."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Fanthaizawrote on 07.08.2008:[10.0] "Einer der beiden besten Kommentatoren die WWE hat (auch wenn einer sich nur noch um die Website kümmert), strotz vor Fachwissen und auch historischen Kenntnissen und er bereitet sich PERFEKT auf die Matches und Shows vor. Ein ganz Großer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Cartman099wrote on 30.06.2008:[10.0] "Bester Kommentator aller Zeiten! Er wird uns bei Raw fehlen.  Schade um einen so grandiosen Menschen."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ecw foreverwrote on 22.06.2008:[10.0] "Der Kommentator überhaupt und einer der grössten "Wrestling-Minds" der Geschichte des Pro Wrestlings, so sehe ich dies, seine Blogs sind zwischendurch immer wieder nett, und seine Matchempfehlungen sind immer top, hinzu kommt noch die riesen Symphatie die ich für ihn habe."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: e-trom995wrote on 15.06.2008:[10.0] "Sehe ich genau so. Jim Ross muss eine 10 bekommen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Riley Mathewswrote on 01.06.2008:[4.0] "Dadurch das er der erste Kommentator war der in die WWE-Hall of Fame gekommen ist muss er ja gut sein. Ich persönlich höre weder hn noch Jerry Lawler gern.  Persönlich würde ich ihm eine 5 geben aber da er in der HoF ist kriegt er eine 4. Für mich ist der beste US-Kommentator Joey Styles."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Garvinwrote on 15.04.2008:[4.0] "Davon abgesehen, dass ich JR nie wirklich leiden konnte, hat er sich in den letzten Jahren dramatisch verschlechtert. Er hat sicher ein Fachwissen, von dem sich manch einer seiner Kollegen durchaus eine Scheibe abschneiden könnte, doch er wirkt auf mich zu lethargisch."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: nightfallwrote on 10.04.2008:[10.0] "Der Kommentator an dem sich alle anderen messen lassen müssen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ZuluBunsenwrote on 23.03.2008:[8.0] "Ja, er hat seine Aussetzer und vielleicht ist er unterdessen zu alt für den Job, trotzdem bleibt Ross immer noch einer der besten Kommentatoren, die bisher Matches kommentieren durften. Eine Legende seines Fachs welche aber in den letzten Jahren Abnutzungserscheinungen gezeigt hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Rated R Champwrote on 20.03.2008:[10.0] "Schlicht und einfach der beste Play by play Kommentator, nicht nur der WWE sondern der ganzen Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Juvicidewrote on 11.03.2008:[10.0] "Es gibt niemanden aus dem Wrestlingbusiness, den ich aufgrund seiner menschlichen Persönlichkeit mehr respektiere als Jim Ross und einen solch genialen Kommentator wie ihn, der die Matches und vor allem die Big-Matches mit so viel Feuer und Leidenschaft kommentiert wie er, wird es kein zweites Mal geben. Trust Me."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Excellence of Executionwrote on 10.03.2008:[10.0] "Für mich gemeinsam mit Gorilla Monsoon der beste pbp Kommentator ever!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Grissomwrote on 17.02.2008:[8.0] "Fand ihm vor ein paar Jahren etwas besser, aber er ist immer noch der beste Kommentator den die WWE hat. Er kann die Matches gut"Erzählen" und weiß immer, wann der richtige Zeitpunkt ist auch mal lauter und emotionaler zu werden."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Mick Funkwrote on 26.01.2008:[10.0] "Der Kommentator überhaupt. Hoffe er macht es noch lange."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Zichowrote on 20.01.2008:[10.0] "Für mich der beste Kommentator und Color-Kommentator denn die WWE je hatte. Seine Emotionen reißen einen bei großen Matches noch mehr mit und daher Bestnote für JR"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Bullit69wrote on 13.01.2008:[10.0] "Er is der Beste! Und mit Jerry im Schlepptau bilden sie das beste Kommentatorenteam!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: jimpanse1980wrote on 06.01.2008:[10.0] "Durch seine ruhige, fast erzählende Kommentierweise ist er legendär geworden. Sicher der Beste im Business"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: DrBreswrote on 16.12.2007:[8.0] "Hat sich verdient gemacht, was eine gute Benotung gerechtfertigt. Klar: JR hat nachgelassen, er hält sich aber tapfer, wenn man bedenkt mit welchen Gesichtsproblemen er zu kämpfen hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: jerseyhoolwrote on 02.12.2007:[10.0] "Unzweifelhaft einer der besten am Kommentatorenpult - ich wuerde nur Gorilla Monsoon noch ein Stueckchen weiter nach oben hieven. Nichts desto trotz untrennbar mit dem Wrestling verbunden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Maxi22wrote on 06.11.2007:[4.0] "JR ist nur noch ein Schatten seiner selbst. Sicher, für Big Matches ist er immer noch gut, aber sonst klingt er so, als würde ihn nicht mehr interessieren, was im Ring passiert. Im Vergleich zu früher (Attitude) hat JR stark abgebaut."
Rating: 4.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Thomas Carlsonwrote on 28.10.2007:[10.0] "Wie oft wollte man ihn schon von dem Pult weghaben. Vinnie hat es oft genug versucht aber irgendwie sitzt Ross doch fast jedesmal neben Lawler. In der WCW war er gut aber da gab es damals noch Wrestling. Hat sich dann zu einem guten Sports Entertainment Kommentator entwickelt. Vergessen wir mal seine erzwungene Heel Zeit oder das er im Office manchmal fragwürdige Entscheidungen getroffen hat. Ist eine Legende und solange er lebt wird er sicher Kommentator bleiben."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: dariawrote on 27.10.2007:[8.0] "sicher von den derzeitigen Mainstream-Kommentatoren der Beste"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ghostwrote on 19.10.2007:[10.0] "Ganz klar bester Kommentator der WWE/WWF! Es gibt einfach keinen besseren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The-Real-Diablowrote on 07.10.2007:[10.0] "Gibts nichts mehr zu zu sagen... der wahrscheinlich beste Kommentator aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Neuhofwrote on 02.09.2007:[10.0] "Genialer Kommentator; zwar sind einige Kommentare etwas markig, aber ich gehe davon aus, dass das die Vorschriften sind, die den WWE-Angestellten gegeben werden (btw auch bei Zapf, Schäfer, etc. ). Hat mehr als nur einen eigenen Stil, ist u. a. durch seinen Dialekt nicht gerade der typische 08/15 Announcer. Alles in allem: 1!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: shannonmoorewrote on 19.08.2007:[10.0] "Der Mann hat ne Stimme und ne Überzeugunskraft dem würde ich auch Yu-Gi-Oh! abkaufen wenn er sie hyphen würde."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Hunter2007wrote on 14.07.2007:[10.0] "Er hat die Stimme, die die Matches so aufregend machen. Es gibt keinen besseren als J. R. ... What a Slobberknocker!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Sabu316wrote on 12.07.2007:[10.0] "Ein Gott am Mikrofon. Gute Matches kann er zu sehr guten Matches machen und schlechte Matches kann er mit seinem Kommentar auch erträglich gestalten. Was er wirklich wert ist hat man gesehen als die WWE kurz auf ihn verzichtete."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: real americanwrote on 12.07.2007:[10.0] "Unglaublich guter Kommentator! Seine Klasse zeigt sich schon darin das die WWE ihn verschwinden lassen wollte weil er ihnen zu hässlich ist und ihn dann aber sofort zurück holte weil er mit seinem Fachwissen, seiner Liebe zum Busines und seinem guten Draht zu praktisch jedem im Lockerromm einfach unersetzlich ist."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: ReY-mYsTeRiOwrote on 24.06.2007:[10.0] "er hat zu 100 % verdient in der hall of fame aufgenommen zu werdenJ. R IS THE BEST"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Meiner Meinung nach der mit Abstand beste Kommentator aller Zeiten! Außerdem gibt es nur ganz ganz wenige, die solch eine Leidenschaft für das Business haben wie er! Daher ein überaus verdienter Hall of Famer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: MasterOfPuppetswrote on 24.06.2007:[10.0] "Manche Matches wären ohne seine Stimme niemals so in Erinnerung geblieben... He is the one and only.... Jim Ross."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Crusherwrote on 24.06.2007:[10.0] "Ich find ihn echt klasse! So einen guten Kommentator wird es nicht so bald wieder geben. Hat mich echt für ihn gefreut, als er in der Hall of Fame aufgenommen wurde!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Mr Wrestlemaniawrote on 24.06.2007:[10.0] "JR ist der beste kommentaor aller zeiten! SLOBBER KNOCKER"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Hardcoremaniacwrote on 24.06.2007:[10.0] "Einfach der beste! Dieser Mann ist echt großartig, an ihn kommt keiner ran. Die Aufnahme in die HoF hat er sich eindeutig verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Blue Meaniewrote on 24.06.2007:[10.0] "Zusammen mit Lawler der Beste Kommentator. Er bleibt (meistens) objektiv, kann dennoch mit seiner Fachsprache ala "Gouverment Mule" oder "Slobber Knocker" unterhalten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: Carlito Cenawrote on 24.06.2007:[10.0] "Die Kultfigur des Kommentars - ich sag nur mal Slobber Knocker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=439&gimmick=Jim+Ross
Comment: The Mountiewrote on 24.06.2007:[10.0] "Dass die WWE ihn zurückholen musste, obwohl sie ihm zu alt, hässlich und unmodern ist, sagt alles: Keiner kann Good Old JR am Pult das Wasser reichen."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Conquistador37wrote on 08.11.2024:[7.0] "Not really my style - because I prefer people that help elevate others more than themselves but he absolutely helped make Big Van Vader/was inarguably the pivotal moment in Vader's career. Hansen also brought Lex Luger to Luger's pinnacle and their feud is underrated gold. I feel there was also strong chemistry and "eyes glued to the screen" stuff with Rick Martel. If he had a bigger hand in putting over other workers I would rate him even higher but I think he squandered his talent in the name of personal greed, still a solid 7 though - making Vader ranks high with me and good Stan Hansen can be excellent."
Rating: 7.0
Sentiment: 0.2513095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Zak22wrote on 07.11.2024:[8.0] "To make some things clear, I'm only really familiar with Stan's work in All Japan (and like 2 AWA matches), Stan had a varied career and I have some gaps. Stan was not a slick, stylish wrestler, Hansen was a big, brutal, mean bastard and I love it. Hansen's work was stiff and hard hitting which made his matches quite special and he often played the role of what I call the "test", by this I mean that if someone wanted to be a star in All Japan, they had to pass the "Hansen Test", both in kayfabe and in shoot, could they take and overcome a beating by this brute, and it makes for some good in-ring storytelling. I keep calling Hansen a brute or brutal but that is a good thing and shouldn't detract from the fact that Hansen was a pretty good worker who could work a decent pace with younger guys. Hansen is one of, if not the greatest Gaijin in Japanese wrestling history. Legend."
Rating: 8.0
Sentiment: 0.11785714285714284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: TPGwrote on 30.10.2024:[9.0] "Stan Hansen is a name of legend. Very occasionally would he have an off day, and he could deliver classic after classic when he's on-form. The Western Lariat, even today, it a finisher to be feared. I think that he's best at playing the heel, and that run is more fondly remembered. I heard that Hangman Adam Page has cited Stan Hansen as one of his inspirations, and he sure as hell picked the right guy. Both have these dominant and violent cowboy characters, as well as a similar wrestling style."
Rating: 9.0
Sentiment: 0.18190476190476185
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: kaeleighwrote on 26.09.2024:[9.0] "MOVEZ sind geil aber manchmal braucht es einfach nur eine krachende Western Lariatooo! Stan Hansen macht mit so wenig so viel. Kaum ein Wrestler schaft es durch seine Aura und Legende ein Puplikum so in seiner Hand zu haben wie die Lariat!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: JediSaiyanMaster1203wrote on 21.08.2024:[10.0] "To me, the best cowboy wrestler, no doubt in my mind. Here you have a man who was struggling to get over in America, trying to find his place as a star, decided to go over to Japan and-arguably-became the greatest gaijin wrestler of all time. This man is as tough as you can get, someone who's not afraid to get stiff with his opponents and can really curate a fantastic big hoss type match where he and his opponent trade bombs. A very underrated style of wrestling if you ask me, nothing quite like watching big men (fat or muscular) just going at it, bumping into and/or slamming eachother, hitting powerhouse moves or just straight up striking eachother. Stan Hansen is in that special type of category of wrestlers like Minoru Suzuki who are at their best when they become obstacles for their opponents, a test of strength kind of wrestler, someone who their opponents keep trying to take down with hard hitting moves and see if they can do it. And how can I forget to discuss what Stan is also known for, The Lariat. To me, the best lariat comes from Stan Hansen, many have done great ones, but his is so brutal looking and he really gives it his all. I also have to bring up, his look was great as well. Coming out with the cowboy hat, the vest (that Steve Austin most certainly took notes from), the chaps, swinging a bull rope around while chewing tobacco made him look like a total badass and a very believable cowboy, he nailed the look to a tee, oh and he's very charismatic. Overall, a good contender for best wrestler from Texas (which is saying A LOT, considering how many greats come from that state) and best gaijin wrestler (again, BIG compeititon for that title and he could hold it), there will never be another Stan "The Lariat" Hansen."
Rating: 10.0
Sentiment: 0.35131519274376416
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: KobashiChopMewrote on 03.08.2024:[8.0] "Hansen is the best of the cowboy gimmicks out there, current day included. That said, a lot of his work most people will find boring. Me, personally, I am a fan of how he worked, but I can understand how it can also not be peoples cup of tea."
Rating: 8.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: ABQMIKEwrote on 25.04.2024:[10.0] "The last outlaw gunslinger. He was the ultimate American in the Puro scene. His lariat was The Lariat, violent, brutal, and beautiful."
Rating: 10.0
Sentiment: -0.1375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: cartercr12wrote on 26.02.2024:[10.0] "So good, so freaking good in the ring. His booming voice and hard hitting style. The perfect American in Japan. Basing off his matches with Baba and Andre. One of very few people who could actually wrestle with Andre. An old school gem, one of the best. Such a good gimmick and look."
Rating: 10.0
Sentiment: 0.33166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Luna100wrote on 01.12.2023:[7.0] "I got tired of Hansen quickly in my 90s All Japan Pro Wrestling watch, he can go hard occasionally, but way too often is dull as hell, and did not jell well with the style too well, especially against Mitsuharu Misawa - who had one of the worst rivalries I have watched through (truly terrible at times)."
Rating: 7.0
Sentiment: -0.33125000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: SavageTygerwrote on 28.09.2023:"LOVE Stan Hansen! An absolute machine that never seemed gassed whether he fought 5 minutes or 30 minutes it was non-stop, hard-hitting action. Hansen and Brody is the most dominant tag team of all time IMO and both guys were massive draws everywhere they went."
Rating: No rating found
Sentiment: 0.285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: MattHallwrote on 14.07.2023:[9.0] "This motherfucker can fucking Lariat the shit out of you and knock your head off of your body. Haven't seen much of his career, but he is an icon in Japan, and had a run with the AWA heavyweight title, His match with Hogan in 1990 was very good. The Lariat is one of the best finishers in wrestling."
Rating: 9.0
Sentiment: 0.26199999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Giantfan1980wrote on 07.06.2023:[7.0] "If you need a guy for a slobberknocker, then this guy is the wrestler you call! Saw a few of his matches here in the US but he made his bones over in Japan and that's pretty unusual for an American wrestler to spent most of his career in Japan and become one of the most well known wrestlers of his day and could possibly be the best of the "cowboy" gimmicks. LARIATO!"
Rating: 7.0
Sentiment: 0.23888888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Puro113wrote on 02.02.2023:[10.0] "You gotta love Stan Hansen. The big tough Texan set the template for modern day hoss matches, and his work in Japan is legendary. Probably the best brawler to ever do it."
Rating: 10.0
Sentiment: 0.38518518518518513
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: benh2wrote on 13.01.2023:[9.0] "Nobody could brawl like Stan Hansen could. Absolutely perfect in the big gaijin heel role and was a great adversary to all the babyface heroes. He was on the stiff side thanks to his partial blindness but that suited the Japanese style of the time and right through the 80's and into the early 90's he was excellent."
Rating: 9.0
Sentiment: 0.30714285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: TheWrasslinHardcorewrote on 24.12.2022:[9.0] "Stan Hansen is one of the best brawlers of all time. His matches are always entertaining and have an element of realism and brutality to them due to his stiff strikes. His match with Kenta Kobashi is truly one of the best matches I? ve ever seen. If I saw more Stan Hansen I could easily give him a 10 but I? ll stick to a 9 for now"
Rating: 9.0
Sentiment: 0.44200680272108844
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: SquilliamFancysonwrote on 12.06.2022:[7.0] "An intimidating brawler, good at being a gaijin heel, and decent at psychology. Not spectacular, but was able to contribute to great moments."
Rating: 7.0
Sentiment: 0.37333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: UWF Rules Enthusiastwrote on 21.04.2022:[7.0] "Stan Hansen was a very good brawler, but he was somewhat limited because of him purely being a brawler. His move set was not very diverse. However, he was good at what he did, and he was involved in some great matches."
Rating: 7.0
Sentiment: 0.4088095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: GriffinXwrote on 02.02.2022:[10.0] "Hansen's role as the big wild and dangerous American in Japan drew a lot of money. The man managed to work with so many different types in his career and make it work."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: benny5bellyswrote on 17.01.2022:[10.0] "The last gunslinger in town. I love Stan. Every little thing he does just adds so much to any given situation."
Rating: 10.0
Sentiment: 0.128125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: XXDoubleHHXXwrote on 11.01.2022:[10.0] "Did this guy ever have a bad match' Or a bad promo' The answer is no. He's a hard hitting cowboy that is determined to make it look as real as possible and succeeds, the guy will lariat you to death just for crowd cheers."
Rating: 10.0
Sentiment: -0.1983333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: MrJabroniCamelClutchwrote on 02.09.2021:[10.0] "Most likely Japan most beloved and legendary gaijin , has had quality matches with the likes of Kobashi , Kawada , Tenryu and Giant Baba .... an icon of puro."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Kungwrote on 26.03.2021:[9.0] "Every gaijin wrestling in Japan for the rest of time will be rightly compared to "The Lariat". I'm not sure if he's the greatest American to wrestle there, but he's in the Top 3!"
Rating: 9.0
Sentiment: 0.33214285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Ma Stump Pullerwrote on 21.02.2021:[9.0] "Hansen was fantastic: never got a good grove in the early days but his later work was intense, unique, and unlike anyone else at the time. His brawling style mixed in with his size and presence made for remarkable matches when paired with a strong babyface as the monster foreigner, able to beat them down and grind them into submission with his ability to just stiff his opponents to death. Guy was such a heel that he turned all the other way and became a huge hit in Japan, one of their biggest stars for a pretty long while. Even today I'd say he's definitely still there in the top five in terms of popularity. Hansen wasn't perfect and a lot of his matches can be hit or miss: not everyone is able to convert Hansen's way of working into tangible good matches and he notably wasn't particularly strong when the other guy isn't a convincing face and many of his matches devolve into heatless arm work, but Hansen for the most part, either in a chaotic tag team with Brody or terrorising the Super Generation Army is great viewing, and even Hansen in his later years as a banged up and very limited vet is interesting in how he presents himself as a more vulnerable but still capable of smashing someone's head in version of himself. To this day I think no one has touched Hansen in terms of overall package, and I'm not sure we'll ever see someone like him again."
Rating: 9.0
Sentiment: 0.2647974101921471
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Ratewrestlewrote on 12.07.2020:[8.0] "Fantastic wrestler in AJPW, for years Hansen become the go man and you can understand why. He was just no nonsense and put brute strength. The Lariat is still one of my favourite moves"
Rating: 8.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: JokeyZockeywrote on 16.09.2019:[10.0] "Der größte und beste Gaijin aller Zeiten! Gemeinsam mit den Four Corners of Heaven machte er das Puroresu in den 80ern und 90ern zu der großen Attraktion, die es heute ist. Dieser riesige Texaner hat definitiv einen Anspruch auf den Titel ''Härtester Hund der Wrestling-Neuzeit'', was er alles in seinen Matches austeilte (und einsteckte) war teils einfach nur pervers, vor allem natürlich die legendäre LARIATOOOOO! Doch Hansen war nicht nur hart, sondern auch wirklich ein extrem starker Wrestler. Viele grandios gute Matches gegen wie bereits erwähnt die Four Corners of Heaven und weitere Gegner, der Cowboy lieferte eigentlich immer ab. Im Gegensatz zu vielen seiner Konsorten hörte er auch rechtzeitig den Schuss und hinterließ so eine wirklich beeindruckende Legacy, die schließlich auch nichts anderes als 10 Punkte zulässt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Zo-Zuwrote on 09.09.2019:[10.0] "One of the best wrestlers, certainly the best brawler, to have ever stepped into the ring. Everything Hansen did he did with gusto, investment and gravitas. Often imitated, never duplicated, a true one-of-a-kind act. My favourite wrestler of all time."
Rating: 10.0
Sentiment: 0.6410714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: JEK 1991wrote on 24.07.2019:[10.0] "Great performer in the ring. He is legendary in the AWA and Japan. Great heel! He was one of the first wrestlers to bleed."
Rating: 10.0
Sentiment: 0.7625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: PuroresuLoverwrote on 08.06.2019:[10.0] "King of Lariat, supreme heel, and the Ultimate Cowboy: Stan Hansen! Hansen is the representation of old-school wrestling and Puroresu, the man is simply awesome."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: RatingsMachinewrote on 23.10.2018:[8.0] "Stan Hansen is definitely an acquired taste, because he doesn't do anything overtly fancy that immediately grabs your attention. But stick with him, and you'll be rewarded a classic old-school brawler, who has been part of some great matches."
Rating: 8.0
Sentiment: 0.32222222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Makai Clubwrote on 14.10.2018:[10.0] "A legend of the entire sport. From his iconic entrance to his stiff style including his lariat which is iconic by itself. Fantastic brawler with many classic matches in the USA and Japan. All time legend IMO."
Rating: 10.0
Sentiment: 0.2646258503401361
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: jamzell00wrote on 13.04.2018:[10.0] "I don't know what it is about Stan but good god I love him. His super stiff style along with his intense presence made for some unforgettable matches and moments. The fact he may be the most beloved gaijin of all time despite almost killing crowds during his entrance is some amazing stuff. Yes he did tend to get blown up easier than most all time greats but his body of work is still great.  He is the reason I love Kobashi so much and that alone is enough for me"
Rating: 10.0
Sentiment: 0.4370748299319728
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: taabr2wrote on 11.09.2017:[10.0] "In my opinion the greatest gainjin in Japanese wrestling history. Hansen was an awesome brawler and played the bully heel role to perfection. Also the guy has easily the best lariat I have ever seen."
Rating: 10.0
Sentiment: 0.6866666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Squared Circlewrote on 30.08.2017:[8.0] "Really enjoyed watching him perform.  Hard hitting, stiff style with intensity.  Although, he was better in tag teams as he would lose steam after awhile and get sloppy in singles matches.  That costs him a point and of course the botch that almost ended Bruno's career drops a point."
Rating: 8.0
Sentiment: 0.015476190476190477
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Blood Pumpwrote on 04.04.2017:[9.0] "Had the best clothesline (or Lariat) in the business whether he was in the states or Japan. Stan cemented himself as a hard hitting worker who put on some of the most physically brutal matches known to man. His bout with Vader is a hard watch but a perfect example."
Rating: 9.0
Sentiment: 0.17361111111111108
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: NastyYaffawrote on 01.01.2017:[10.0] "A legend - Stan Hansen is one of the greatest wrestlers of all-time, amazing offense, great selling when needed to - a total beast."
Rating: 10.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Mizzle Assault Antwrote on 01.05.2016:[10.0] "An absolute all time great, honestly he has a case for the best ever. His physicality is next level stuff, his aura is amazing, the intensity and violence he can bring is off the charts. He had a wonderful career in Japan but has many classics all around the world. He helped to shape modern puro more than most people realize. A legend in every way."
Rating: 10.0
Sentiment: 0.5363636363636364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: mdkarlwrote on 30.10.2015:[10.0] "Hansen wasn't politically compatible to work in a North American promotion for very long.  AWA actually gave him their title in hope he could save their dying company and Hansen said thank you but then promptly headed to Japan for a tour leaving AWA humiliated and forced to strip the title from him in absolute embarrassment.  In the ring, Hansen didn't care who he was wrestling... he was going to be stiff.  He took it as well as he gave it, but his matches were always going to be worked realistic.  This made Hansen a huge favorite with certain audience.  In Japan, Hansen would rank as one of their top 10 wrestlers of all time.  In a company like WWE after the Hogan Era, Hansen would have really struggled to be much more than a mid-card act like Vader did.  Personally, I love this type of wrestler and grade him a 10 but acknowledge that he never could have main evented one of the very large North American companies."
Rating: 10.0
Sentiment: 0.1182581453634085
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Viper99wrote on 11.04.2015:[10.0] "Kann "Tons of Spunk" nur zustimmen. Hansen ist wohl DER beliebteste Gaijin schlechthin. Dazu noch die unglaubliche Matchpsychology und die starken In Ring Leistungen egal ob als Stiffer Brawler, Grappler oder so als "High Flyer"."
Rating: 10.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Tons of Spunkwrote on 11.04.2015:[10.0] "Das japanische Publikum muss gewusst haben, dass in diesem Texaner das Kämpferherz eines Japaners schlagen muss: Je mehr Matches ich mir von Stan Hansen ansehe, desto mehr stockt mir der Atem, was dieser Berg von einem Mann im Ring alles zeigen konnte: Hansen war natürlich berüchtigt als stiffer Brawler, aber auch als Powerhouse, der hier und da auch mal durch die Luft segeln konnte, überzeugte er auf ganzer Linie. Außerdem hatte Hansen großartige Qualitäten als Seller und Matchmaker, der jeden Gegner (auch in der Niederlage) toll aussehen lassen konnte. Er fand immer den richtigen Ton für die jeweils erzählte Matchstory und brachte dabei auch maximalen Einsatz. Auch fällt mir beim besten Willlen kein anderer Wrestler ein, der mit 140 kg so außerordentlich konditionsstark war: Mit Mitte 40 noch 20+ Minuten voll aufdrehen zu können, ist einfach unglaublich. Selbst die Four Corners mussten sich regelmäßig abschinden, wenn sie gegen ihn in den Ring stiegen - und das auch im Kampf um die Publikumsgunst: Zur Hochzeit seiner Popularität wurde Hansen nicht weniger geliebt, als die Lokalmatadoren. Er machte den Sack rechtzeitig zu und hinterließ ein großartiges Lebenswerk, das noch heute als Paradebeispiel dient, wie unterschiedlich eine amerikanische Wrestling-Karriere in Fernost verlaufen kann. Hut ab, Fuchinkan!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Wrassler9000wrote on 31.08.2014:[10.0] "Stan Hansen was one of those guys that made Japanese Puroresu watchable in Japan. Although he was born an American, people consider him a Japanese legend. He definitely deserves this rating."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Alex Maedawrote on 08.09.2013:[10.0] "Zusammen mit Vader der beste Gajin aller Zeiten. Die menschliche Definition von Intensität und Glaubwürdigkeit. Lariato!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Leonewrote on 13.12.2012:[10.0] "Stan "The Lariat" Hansen.  When it comes to wrestling, this is a man who rivals Stone Cold Steve Austin as being the greatest badass from Texas.  When working in America, he was a strong heel, but his potential was barely scratched there.  In Japan, to this day, Stan Hansen remains one of the best gaijin wrestlers they've ever had.  His entrance was awesome.  Due to his poor eyesight, his stiffness was accidentally legendary.  His Lariat finisher was as stiff as the swing of a baseball bat.  He is on the list of men who have body slammed the Andre The Giant.  When he was into his 40s, he was putting on some of the best matches of his career.  Great respect for the guy.  Fun to watch, and he was great on the mic as well."
Rating: 10.0
Sentiment: 0.37775297619047615
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Katschewrote on 08.08.2012:[10.0] "für mich der beste brawler aller zeiten! seine schlachten in den neunzigern bei all japan warem klasse!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Rated R Champwrote on 29.12.2011:[10.0] "Muss man zu Hansen noch groß etwas sagen? Nicht umsonst stand der Mann in Japan mal auf einer Stufe mit Kobashi & Co. Die Killer-Lariats kamen ja scheinbar von einer Sehschwäche, die ist mir aber in seinen Matches sonst nie aufgefallen und das ist auch schon ne Leistung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Kenshin Uesugiwrote on 26.05.2011:[10.0] "Wer Stan Hansen nicht mag, der mag auch kein Wrestling das ist ganz einfach so. Wer es schafft als Texaner in Japan so geliebt zu werden, wer so oft die Triple Crown hielt und dabei noch so cool und natürlich auszusehen, Wer der Inbegriff einer fiesen Schlägertype wird, wer selbst jetzt noch auf dem gesamten Globus kopiert wird, der ist wahrlich eine Legende. Wenn es schon solche dämlichen Chuck Norris Witze oder so gibt, dann auch über den Mann vor dem eben dieser, Vin Diesel, Jason Statham, Schwarzenegger und Sylvester Stallone reiß aus nehmen würden. Aus den einfachen Grund weil sie befürchte müssten das Stan „The Lariat“ Hansen ihnen die Schädel abschlägt ! ;)"
Rating: 10.0
Sentiment: 0.34375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: jerseyhoolwrote on 29.09.2010:[8.0] "Der Mann, der dem guten Vader das Auge aus der Höhle prügelte & selbst so gut wie ein an Grauem Star erkrankter Luchses sieht. Stiffer Worker, was aber durch seine Sehschwäche etwas gemildert wird. Zweifelsfrei zu recht eine Legende in Pro Japan Wrestling!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Boggenauerwrote on 19.08.2010:[10.0] "Ich habe mir nun einige alte Matches von Hansen angeschaut und ich finde das dieser Mann echt Unglaubliche In-Ring skills hat sein Lariat sah wirklich unglaublich gefährlich aus, immer wenn er den Lariat ausgeführt hat hab ich geschaut ob dem gegner noch der Kopf an der richtigen Stelle sitzt. Einfach Krasse Leistungen von Hansen deshalb von mir 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Eddiewrote on 29.10.2009:[8.0] "Old School Heel, der für meine Begriffe aber etwas zu langsam wrestlet.. Aber man kann ihm schon gut zugucken, 8 Punkte."
Rating: 8.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: hatebreederwrote on 19.10.2009:[10.0] "Nach seiner Western Lariat steht niemand so schnell mehr auf. Wahrscheinilch der erfolgreichste und bekannteste Gayjin aller Zeiten! Lariattooooo~ !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Gustelwrote on 07.08.2009:[10.0] "Allein die Story mit den Augen is mir 10 Punkte wert, zum schießen das Ganze."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Nachtfalterwrote on 03.07.2009:[9.0] "Ich habe ihn in Japan sogar den im Ring ja nun wahrlich nicht übermäßig talentierten Hulk Hogan zu einem richtig guten Match ziehen sehen, was schon einiges über Hansens Fähigkeiten aussagt. Keine Bestnote nur, weil er den letzten Schritt zum Topstar in den Staaten nie geschafft hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Baszdmegwrote on 05.09.2008:[10.0] "Mein Lieblingsamerikaner auf japanischem Boden; die Stiffness wollten viele kopieren, aber nur die wenigsten haben es geschafft. 10 Punkte für DIE Gaijinikone!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Pulpulwrote on 31.03.2008:[10.0] "Der wohl beliebteste Gaijin aller Zeiten. Unfassbar was Hansen für Reaktionen hervorgerufen hat. Seine Art im Ring aufzutreten, einzigartig. Ich verneige mich vor einem der Größten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: LexLuger4everwrote on 24.02.2008:[8.0] "Seine Erfolge in Japan sprechen Bände, da besitzt er sowas wie Legendenstatus! Ansonsten wurde er in den Staaten oftmals fehleingesetzt, so z. B. in der WCW in den frühen 90ern. Er ist dafür bekannt, einer der härtesten Brawler zu sein, die man jemals gesehen hat und nach seinem Lariat steht niemand mehr auf. Da würde wohl sogar JBL vor Neid erblassen, aber der hat ja wieder andere Stärken!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Wolfpacwrote on 20.12.2007:[8.0] "Ich mag ihn aber eins verstehe ich nicht: Wenn z. B. ein Ahmed Johnson einen Wrestler verletzt heißt es sofort das er gefeuert werden soll und ein schlechter Wrestler sei, aber wenn Hanson jemandem den Hals bricht ist das cool?"
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Hirnklopswrote on 20.12.2007:[10.0] "Die kultigste Kante, die jemals einem Menschen den Hals gebrochen hat. Hansen war ein Halbgott in Schweiß und Blut, und Chuck Norris hat bei ihm gelernt. Sex, Drugs & LARIATS~!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Moshpit-Hooliganwrote on 12.11.2007:[10.0] "Einer der härtesten Wrestler aller Zeiten. Er wurde oft kopiert doch nie erreicht (nix gegen JBL, aber er ist auch nur eine Stan Hansen Kopie). Dazu wohl beste US Wrestler in der Geschichte von AJPW."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=440&gimmick=Stan+Hansen
Comment: Rashomonwrote on 23.07.2007:[10.0] "Unglaublich einflussreicher Wrestler. Noch heute ist das Lariat der wohl meistgebrauchte Finisher in Japan. Und auch in Amerika gab es viele Leute, wie beispielswiese JBL, die von ihm beeinflusst wurden. Einer meiner All-Time Favourites bei den Schwergewichten..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Brando Calrissianwrote on 01.11.2024:[10.0] "One of the greatest to ever do it, but is often forgotten about or not mentioned. A real shame as Go Shiozaki is absolutely incredible in the ring and can get any crowd behind him as the incredible underdog he is despite being so gifted in the ring. I don't know what else to say about him other than...go watch his matches. He's great!"
Rating: 10.0
Sentiment: 0.496875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: nabigoyewrote on 28.08.2024:[10.0] "Einer der besten Wrestler der Welt (zumindest bis vor ein paar Jahren). Großartige Chops. Legende bei NOAH, muss für mich gleichzeitig immer mit Marufuji genannt werden. Sein 20/21 GHC Titelrun war großartig. Zudem hab ich irgendwie ne starke Connection zu ihm."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Joe907wrote on 21.07.2024:[10.0] "One of the best wrestlers in the world. Shiozaki's chops look very painful. Consistently been of the best in-ring workers all-round since the mid-2000's. The way he structures his matches are excellent. Good story-teller. Even in his 40's, he puts on awesome matches. He held NOAH on his back and will be remembered as a legend."
Rating: 10.0
Sentiment: 0.505
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Zak22wrote on 11.06.2024:[9.0] "Really talented wrestler who has had some fantastic matches over the years, he does have some of the "I chop you, you kick me" booking which I don't like but his talent is undeniable."
Rating: 9.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: DangoDaisukiwrote on 01.10.2023:[7.0] "Für mich ist Shiozaki schon immer ein Oberer Midcarder, der sehr stark gepusht wurde. Charisma ist in meiner Meinung wirklich fast gegen 0 und vom Kämpfen her sehe ich ihn gerne, aber nicht in langen Main Events, da ich mich dann etwas langweile da er mich nicht komplett catcht."
Rating: 7.0
Sentiment: 0.05555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Wrest lingaddictionwrote on 18.05.2023:[10.0] "Shiozaki has some of the most painful looking and sounding chops in the business. Works well as both a tag team wrestler and a singles wrestler. You can't deny the greatness that is Go Shiozaki and the level of presteige that he's brought to NOAH and the GHC Heavyweight Championship."
Rating: 10.0
Sentiment: -0.09999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Wrestling Foreverwrote on 02.05.2023:[10.0] "Absolute Legende wie Naomichi beide sind bei NOAH Triple Crown Champion. Kam auch wieder von einer langen Verletzung zurück, wo man auch sicher dachte das war es mit Go Karriere."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: TheOneAndOnlyCactuswrote on 03.04.2023:[10.0] "NOAH's Strong Arm is an amazing striking babyface, with tons of charisma and great selling ability, combined with an expert understanding of wrestling psychology. An intense fire, determination in his eyes, you really want to root for him, which was important as his prime started when NOAH was in its darkest period. Shiozaki was one of the greatest wrestlers of the 2010s, is still going strong today, and I would argue is one of the greatest of all-time."
Rating: 10.0
Sentiment: 0.5566666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: BadAssTranslateTradingwrote on 20.03.2023:[9.0] "While Go's career has taken a different path than many would have visioned for him, its hard to deny that hes been a fantastic performer everywhere hes been. His original NOAH run, going from Kobashi's son to the next top heavyweight was great, his All Japan run was great, and his 2015-present NOAH return has been the best of all of them. Whether as an ace, a challenger, or a tag guy, Go has an awesome hard hitting moveset and always puts forth his best effort."
Rating: 9.0
Sentiment: 0.4455128205128205
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Logue38wrote on 28.02.2023:[10.0] "He is the best in the world. His chops, selling, match structures, excellent babyface charisma, etc. He's one of the best wrestling storytellers of all time."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Shioharawrote on 18.01.2023:[10.0] "Best wrestler in the world (a tie between him and Miyahara) and has been for years now. Kenta Kobashi's style remains alive thanks to him. Single handedly carried NOAH during the pandemic era. Go Shiozaki IS NOAH"
Rating: 10.0
Sentiment: 0.30714285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: calebmullingsrasslinwrote on 20.09.2022:"Go Shiozaki is in my opinion the best wrestler in the world. Still in his prime at 40 you could pit Go against any competent wrestler and get a banger of a match. He's what I aspire to be when I wrestle."
Rating: No rating found
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: dnmtwrote on 17.08.2022:[10.0] "Despite some quirks and stutters early on (that were mostly outside of his control), Go Shiozaki is arguably the greatest wrestler of his generation. Someone who embodies the spirit of what we all love about Pro-Wrestling NOAH - their history, their intensity, their determination - and keeps that aura about him every time he steps in the ring. I don't know of any other wrestler who so perfectly incarnates a promotion and all it entails. From the Kobashi style to the Misawa gear, there is a reason no one even bats an eyelash when he says "I AM NOAH"."
Rating: 10.0
Sentiment: 0.41250000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: jamzell00wrote on 01.06.2022:[10.0] "That title match in 2018 against Sugi changed him and the tag run with Nakajima solidified him as an all timer to me. He finally unlocked that 2nd gear in him and became so fun and captivating to watch. He had always been an amazing wrestler but he wasn't the guy to carry a company. Then in comes 2020 and him beating Kaito for the belt. Starting his best run ever with the phrase "I am NOAH". He put them on his back and was determined to bring NOAH back to the top.The company may not look the best right now with its booking but he deserves so much credit for getting more eyes on the current NOAH product during a pandemic no less. Completely different guy nwow"
Rating: 10.0
Sentiment: 0.2793154761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: benny5bellyswrote on 02.02.2022:[9.0] "As anyone ever had louder chops than Go. He has been with NOAH through a lot of a lean years and carried them during the first year of the pandemic"
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: GriffinXwrote on 19.01.2022:[10.0] "Go was always one of those guys that was very good but seemed just short of great. Than his last GHC title run he put NOAH on his back at a bad time for the company and the world and carried it to better time. Along the way he broke into that great level"
Rating: 10.0
Sentiment: 0.28875000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Lalo Camposwrote on 20.09.2021:[10.0] "One of the best wrestlers that I have ever seen, the last pupil of Misawa and the second best pupil of Kobashi (the 1 is KENTA)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Ma Stump Pullerwrote on 02.06.2021:[9.0] "I didn't feel Go very much in his early years: very much bland, not a lot to him beyond a generic appearance and okish wrestling. I never quite got on board like Kobashi and the rest of his peers who thought he was going to be a top tier ace and groomed him that way, and I do feel like that damaged his rep in later years, because he just wouldn't make that expectation in terms of numbers. He'd always have that shadow of burden as being the top guy and, while I feel like he was a fairly good performer and still to this day has strong elements of storytelling and pacing that few can protest to have in his matches, he's definitely gotten a lot better from those days, refining his style and look to match his status as the face of NOAH for years to come. His 2020 title run was, for the most part, quite good barring some of his longer matches which I find he doesn't do well. Go is suited for 30 minute matches where his selling is not too exaggerated and prolonged to be unrealistic, but long enough that he can sell damage effectively. He's great at putting over threats and showing subtle changes to his style. He can brawl, work technical, his offence looks fantastic for the most part, and he's a solid tag specialist as well. He's a student of the game no doubt, the only real issue is that most of his career hasn't been his 2020 peak, and Go has had his fair share of mediocrity to go around, unlike Tanahashi or Suwama who even in their weak years as aces have still pulled out some great bouts."
Rating: 9.0
Sentiment: 0.16776041666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Golden Loverwrote on 28.03.2021:[9.0] "In my opinion the best wrestler in 2020, he was such a boss during his title reign knocking out a banger in basically every big match. Can't wait for his comeback."
Rating: 9.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: ExcitingProWrestlin3wrote on 16.03.2021:[10.0] "Go Shiozaki is a prime example of a protégé of one of the greatest of all time that turned out fantastically. Sure he may seem like a carbon copy of Kobashi at some points, but most of the time, he seems to be forming a niche and legacy of his own as one of the many faces of NOAH. He is NOAH, for he has helped ascend it from it's darkest of times along with the rest of the talented roster. If I had made this comment in 2019, I would've likely given him an 8 or a 9, but his 2020 run has allowed me to fully understand the extent of which he can go. He really cut down on a lot of weaknesses people point out about his in ring skills, and truly has provided some of the greatest matches of COVID era wrestling. #WEARENOAH!"
Rating: 10.0
Sentiment: 0.4844444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: PokemonGoShiozakiwrote on 09.03.2021:[10.0] "My man. Dude revitalized NOAH and really put it back on the map with his recent title reign, which had banger after banger."
Rating: 10.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Bushidospirit22wrote on 01.03.2021:[10.0] "His recent title reign was probably the best championship reign since his mentor Kobashi's reign as GHC Champion. Every single title match during his reign told a unique story and all were amazing in their own way. Wrestler of the year in 2020."
Rating: 10.0
Sentiment: 0.4172619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: ShiningWizard109wrote on 27.02.2021:[10.0] "Go Shiozaki has always been a personal favorite of mine, however, he really proved it to the world in 2020. His GHC Heavyweight Championship reign went above and beyond, and can truly be considered as one of the best reigns of the belt. He is the iron man for NOAH during this pandemic, and gives his heart in each match he has."
Rating: 10.0
Sentiment: 0.33999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: dinosaurjrwrote on 05.02.2021:[6.0] "Shiozaki isn't bad but to me he has never been able to fill the shoes of his master. He's always a solid upper midcareer than can be pushed to the main event when need be however he isn't very charismatic and In the ring he's just good and occasionally great"
Rating: 6.0
Sentiment: 0.2645833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: ZSJGunWwrote on 03.02.2021:[10.0] "One of the best of the world. This man is just pure gold. His current title reign is being just one of the best I've ever seen. He just can't stop creating masterpieces."
Rating: 10.0
Sentiment: 0.5535714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: pierreMinnewrote on 28.01.2021:[10.0] "Am I really forced to tell why I give this guy a 10 ? I don't think so since he put classics after classics last year. And the better thing he was always a great wrestler ! From his wXw work at the end of the 2000's to today and even back in 2004 with Kenta Kobashi, he always impressed me in a ring. His match against Nakajima last novembre is one of my favorite matches ever. Very charismatic guy. Fantastic babyface. A true machine and one of the bests storyteller ever. That's why I'm giving him a 10."
Rating: 10.0
Sentiment: 0.3727272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: AndoCommandowrote on 23.11.2020:"I've never been that fond of Go Shiozaki. While he's not an imitation of his trainer Kobashi as other wrestlers turn out to be, I still found him more of a downgrade to his contemporaries. That being said, 2020 has easily been Shiozaki's best year and if you've been following NOAH at all, makes a strong case for WOTY. Even the more controversial, artsy matches he's been a part of I still appreciate for being bold and ambitious during a time where many failed to adapt. Great performances against the likes of Kenou, Marufuji and Nakajima."
Rating: No rating found
Sentiment: 0.3244047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: elcompactowrote on 10.11.2020:[10.0] "2020's male MVP with not much competition. Every singles match I've watched this year, from Kiyomiya to Kenoh has been very good at worst and MOTYC at best. One of the most consistent wrestlers in the world today."
Rating: 10.0
Sentiment: 0.22285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: laldilawrote on 29.03.2020:[7.0] "I've yet to see the much heralded Fujita match from today, but my experience with Shiozaki is that he's pretty solid but nothing spectacular. For as much success as he's had, I can't really find any match or moment in particular to point to to say this is what makes him great or why you should care. He's a good hand for Noah to have for sure but I don't think I'd consider him great or a favorite for me."
Rating: 7.0
Sentiment: 0.41805555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: TOUGH AND HARDwrote on 23.12.2019:[7.0] "A worthy student of the greatest wrestler of all time, but also somewhat of an imitation. Though he never peaked as high as (Kobayashi) Kenta, Shiozaki has had a more consistent journey, and has yet to decline physically. Frankly, I think the way people use numbers on this website is absurd, and I think things like 9s and 10s should be reserved for complete wrestlers who rank among the absolute greatest of all time (eg. Misawa is a 9, and the more charismatic Kobashi is a 10). Shiozaki is more than good. He's great. However, he is not quite excellent, is not a draw, has many world title reigns to his name but is nearly just-another-guy in a promotion that can barely draw a thousand people. Shiozaki is a (sometimes upper) mid carder in a promotion on life-support, a promotion that spurned him for trying to make his way in the world and still hasn't fully opened its arms to him again. I wish he had gone to New Japan years ago, where he'd have more worthy competition to hone himself against."
Rating: 7.0
Sentiment: 0.27188178077066966
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: arrancarwrote on 26.09.2019:[9.0] "Shiozaki is currently one of my favourite wrestlers. It's very rare to find a wrestler who is excellent at not only wrestling but also portraying a character. Shiozaki has an air of royal arrogance about him, and in that sense he reminds me of Vegeta from Dragon Ball Z. Shiozaki's use of facial expressions is some of the best I've ever seen. He reacts to every single action that takes place in the ring. This isn't to say he goes over the top with big smiles or scowls to every little thing that occurs, but I can always tell what he is thinking after every single action he, his tag partner, or his opponent(s) take. It's incredibly immersive to see someone's emotions so clear, as I feel like I can really empathise with what he's going through. The main idea Shiozaki seems to communicate is pride. He looks absolutely disgusted when someone tries to even suggest they might be stronger than him, and his fiery reactions show how enraged he becomes at the idea of not being the best. When Shiozaki has a suitable opponent, he will exude a great sense of intensity as if he wants nothing more than to completely destroy them and prove his dominance. Even though the NOAH fans struggle to get behind him ever since he briefly left for AJPW, Shiozaki still manages to wow them with his brutal chops and great visual storytelling abilities, winning them over to some extent by the end of his matches. It's not hyperbole when I say that I see a lot of Kobashi's best qualities in his pupil."
Rating: 9.0
Sentiment: 0.2121608946608946
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: InactiveGuruwrote on 31.05.2018:[8.0] "Superb. he isn't perform but no one is but Go will give you his all every single time. You never have to worry about the match quality with Go. Superb performer."
Rating: 8.0
Sentiment: 0.6428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: My Bloody Doobwrote on 23.04.2018:[9.0] "The direct pupil of the legendary Kenta Kobashi, Go Shiozaki might not be remembered for living up to his senpai's great career, but he did build himself and NOAH enough to at least be remembered as a a wrestler who had amazing potential. He didn't have the same Western appeal that a few of his contemporaries had, KENTA and Marufuji, and I wouldn't even say he had as big of personalities as those guys either, but what he lacked in personality he made up for in his pure fighting spirit. He wouldn't always be the toughest or most skilled guy in the room, but no one could match him in his ability to give it his all no matter what. I think he would've left a greater impact if his big push hadn't come at the same time as Misawa's death, but at least for a few years he tried to carry on the legacy of NOAH even into it's recent dark days. If there's one thing that Shiozaki can live up to in Kobashi's name, it's the fire inside of himself."
Rating: 9.0
Sentiment: 0.10002705627705628
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: LrockBesnarwrote on 11.04.2018:[10.0] "This guy really has a star light. I think NJPW is exactly where he needs to continue his career. I do not know if there is room for him or not. Maybe he does not want to go, but i think Shiozaki's place is NJPW. It's still early for him. Go Shiozaki is a real puroresu star. He should not spend his career and his life with nonsensical tag matches."
Rating: 10.0
Sentiment: 0.23000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Makai Clubwrote on 27.03.2018:[9.0] "People have said that he is generic and boring and I'm utterly shocked by those comments, Go is the far from generic. He is arrogant without being over the top with it but he has morals and he is disgusted by those who stray from the purity of wrestling. Whether it's his subtly smile when he comes up against and opponent who he thinks is beneath him or his scowl against people who he dislikes. He is an excellent wrestler as well. I'm loving his new look with him going all bald."
Rating: 9.0
Sentiment: -0.0057851239669421154
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Chekerwrote on 06.05.2017:[7.0] "I find Go just a tiny bit overrated. I'm rarely impressed by his work - with a great wrestler he can have a great match, but with a lesser talent he's just okay. He's got a lot of intensity, I'll give him that."
Rating: 7.0
Sentiment: 0.5166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: eldenaaaaawrote on 02.09.2014:[10.0] "Shiozaki is about experienced as they come for someone who's never wrestled for the WWE; he honed his skills in the NOAH dojo and he became somewhat of a protege of legendary grappler Kenta Kobashi."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Matzinhowrote on 28.07.2014:[10.0] "Auch wenn sich das im Matchguide hier nicht niederschlägt - Shiozaki hat seit 2007 bestimmt 10 bis 15 überdurchschnittlich gute, sehenswerte Matches pro Jahr abgeliefert. Er ist einer der besten Schwergewichtler der Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Lecterwrote on 06.06.2013:[6.0] "Shiozaki's decent. Good look, decent charisma, fine in-ring work though no classics yet. Not quite sure what he's done to warrant a 9+ average, though."
Rating: 6.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Valerionwrote on 04.12.2012:[9.0] "für ganz klar einer der besten Japaner, und mMn bei NOAH die Nummer 1, er ist charismatisch, groß, stark und hat sehr viel Impact. weiß durchaus zu gefallen!"
Rating: 9.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Fountain of Misinformationwrote on 07.03.2012:[8.0] "Klar, ein klasse Wrestler und vielleicht aktuell die besten Chops im japanischen Wrestling, aber im Vergleich zu beispielsweise den New Japan-Stars wirkt er immer noch wie vor fünf Jahren, wird so nie einen "eigenen Charakter" haben oder "wie ein Star" wirken und genau das wäre notwendig, wresltlerisch ist ja alles da, aber dies alleine reicht in seiner Position eigentlich nicht mehr aus."
Rating: 8.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Top-Hardywrote on 12.07.2011:[9.0] "Klasse Wrestler und zurecht eines der Aushängeschilder von NOAH. Einziger wirklicher Star aus dem NOAH Dojo und dazu noch super charismatisch. Ist jetzt durch den Titelgewinn hoffentlich entgültig an der Spitze in Japan angekommen und hat das Zeug einer der Größten zu werden."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Hennewrote on 14.03.2011:[10.0] "Erstaunlich charismatisch für einen Japaner. Dazu ein guter Wrestler, hat mich überzeugt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Raywrote on 14.03.2011:[9.0] "Von 8 auf 9, weil... mir kein Grund einfällt es nicht zu tun. Denn es gibt keinen!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Double Jwrote on 12.03.2011:[10.0] "Neben Hiroshi Tanahashi und Daisuke Sekimoto und vielleicht noch CIMA der beste Wrestle Japans. Unvergleichlich hart, gute Ringübersicht, symphatisch, DER MANN in Noah!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Hu-Manwrote on 24.02.2011:[10.0] "Außnahmetalent aus Japan. Ich liebe seine Chops und bin immer wieder begeistert von seinen intensiven Auseinandersetzungen im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Matt4Wrestlingwrote on 20.02.2011:[9.0] "Besitzt eine durchaus gute Technik, nur scheint er oft die Geduld im Ring zu verlieren, wodurch er sich Fehler erlaubt, die einfach unnötig sind. Wenn er mehr an sein Temperament im Ring arbeiten würde, könnte man ihm in einem Atemzug mit Kobashi nennen!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Sandmannwrote on 04.05.2010:[9.0] "Sehr guter Wrestler der mich immer unterhalten konnte bei ROH. Auch wenn seine Zeit mit Sweeneys Truppe nicht so wirklich passte. In den Matches war er immer ein Garant für Topleistungen und sehenswerte Matches. Hoffe er kommt noch mal zurück"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: rv27wrote on 08.03.2010:[10.0] "Gefiel mir sehr gut bei den beiden ROH Events wo ich in der Crowd war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Super Dragonwrote on 28.01.2010:[8.0] "Ein sehr talentierter worker der in ein paar jahren eine große Zukunft in Japan haben wird."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: alexshelley84wrote on 07.01.2010:[10.0] "Großartiger Worker und auch einer der wenigen Japaner die Charisma besitzen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: DJ MaSchwrote on 06.01.2010:[9.0] "Mitlerweile schon mehr als ein Talent, ist mit seien 27 Jahren schon unfassbar weit. Rein wrestlerisch kann man ihn schon zur Weltklasse zählen, an der Ausstrahlung haperts noch ein bisschen, aber auch da ist er auf dem besten Weg. Hat sich ja auch in Amerika schon einen Namen gemacht. Der Mann ist DER kommende Top Star in Japan und die Zukunft von NOAH."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Anti-Championwrote on 22.12.2009:[9.0] "Mit Mitte/Ende 20 schon eine feste Größe, Super Wrestler.  Freue mich schon auf die kommenden Klassiker in den nächsten Jahren :)."
Rating: 9.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Eddiewrote on 07.10.2009:[8.0] "8 Punkte derweiln für Shiozaki, da sein Match gegen Saito doch ansehnlich war. Er macht spaß, doch die Distanz zu Misawa, Kobashi und Co. ist schon noch groß, da sehe ich einfach noch Potenzial in ihm. Noch ein oder zwei Titelverteidigungen mehr gegen Main Eventer und ein Punkt gibts drauf."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Psycho Shooterwrote on 24.06.2009:[9.0] "Definitiv ein zukünftiger Star im Wrestling Geschäft, wenn er es nicht schon ist. Er hat sich in letzter Zeit fantastisch entwickelt und startet jetzt 2009 richtig durch mit konstant starken Leistungen und richtig guten Kämpfen. Ich bin sehr gespannt, was aus ihm als GHC Champion wird, das Zeug zu einer guten Regentschaft hat er allemal."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: ShakDragoonwrote on 19.01.2009:[9.0] "Definitiv ein sehr guter Wrestler, der sich mittlerweile auch in den USA einen Namen machen konnte. Ich denke aber die wirklich großen Titel sind für ihn nur in Japan drin."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: XSigiXwrote on 19.01.2009:[8.0] "Im Ring wirklich gut und unterhaltsam. Als Heel und Mitglied von Sweet'n'Sour Inc. bei ROH leider völlig unbrauchbar, da er teils zu sehr wie ein Face agiert und mit Hero im Team meines Erachtens null Chemie hat. Seine Japanauftritte kann ich nicht beurteilen."
Rating: 8.0
Sentiment: 0.09999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Blazewrote on 03.01.2009:[8.0] "Neben Morishima, Tanahashi und vielleicht auch Goto der zukünftige Star der Heavyweight Division. Wrestlerisch ist er sehr gut und kein langweiliger Brawler wie viele Heavyweights. Im Gegensatz zu Mori und Tanahashi fehlt bei ihm aber noch irgendwas um ganz an die Spitze zu gelangen. Für mich ist das einerseitz die Ausstrahlung, andererseitz auch sein Look. Die anderen drei kommen schon noch gewaltiger daher. Trotzdem wird er es sicher zum World Champion schaffen und hoffentlich auch weiterhin zusammen mit Maru, KENTA und Mori Abstecher zu ROH machen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Herr der Kritikwrote on 30.12.2008:[7.0] "Mann der Zukunft und imo einer der derzeit besten Schergewichter. Abwertung wegen dem RoH-Aufenthalt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: 150pwrote on 14.12.2008:[9.0] "Hat als Heel zwar seine Schwächen, braucht auch noch ein bisschen, um mit diesem Gimmick bei der ROH Crowd over zu kommen, ist jedoch gerade in seinen Japan Matches einer der besten in diesem Sport."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Tomkowrote on 23.11.2008:[9.0] "Japanische Technikmaschine, die mich bisher in noch keinem Match enttäuscht hat! Wird seinen Weg gehen!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: dariawrote on 26.05.2008:[9.0] "erstmal noch die 8 - muss ja noch Platz nach oben sein - aber in jedem Fall der zukünftige japanische Superstar. Auch hier mal das neue System genutzt und auf 9 Pkt korrigiert."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Hirnklopswrote on 11.05.2008:[10.0] "Rockt. Mehr fällt mir einfach nicht ein, außer: Rockt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Eaterwrote on 11.05.2008:[9.0] "Fantastisches Talent. Wird es in wenigen Jahren an die Spitze der japanischen Topligen geschafft haben, bis dahin noch mit Potential nach oben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[9.0] ""Nur" 9 Punkte, es muss ja auch noch Luft nach oben geben. Es würde mich gar nicht wundern, wenn Shiosaki irgendwann auf der selben Stufe wie Kobashi und Misawa steht. Die personifizierte Zukunft NOAHs."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: affenmannwrote on 11.04.2008:[7.0] "Er ist zweifellos sehr talentiert, aber ich sehe da doch noch einiges an Luft nach oben und Verbesserungsmöglichkeiten."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Aaronwrote on 04.03.2008:[8.0] "Shiozaki ist DAS Talent in Japan schlechthin und kann mit etwas mehr Erfahrung vllt. auf den Spuren eines Kenta Kobashi wandern!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: The Showstopperwrote on 26.01.2008:[10.0] "Ein Mann, der bei seinen Auftritten in Deutschland immer wieder überzeugen konnte. Hat alle Anlagen, um das nächste Ace von NOAH zu werden, wenn die Legenden abtreten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: D-Stylewrote on 07.12.2007:[8.0] "NOAHs Zukunft. Aufstrebender Megastar, und er wird was ganz Großes werden; denn er gibt sich verdammt Mühe. Note 2 mit Tendenz nach oben"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: SternessDustOmegawrote on 06.12.2007:[10.0] "Phantastisch im Ring. Ich hoffe das er von schwereren Verletzungen verschont bleibt die nächste Zeit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Baszdmegwrote on 20.08.2007:[10.0] "Ziemlich genialer Wrestler, die Zukunft Japans und mit Sicherheit früher oder später mal ein GHC Champion. Dazu kommt noch eine breite Fanmasse, besonders hierzulande."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: PuroDragonwrote on 29.07.2007:[10.0] "Die Zukunft von NOAH, man schaue sich nur seine Matches mit Murat oder Danielson an, außerdem ist der Junge erst 25"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Carlito Cenawrote on 24.07.2007:[8.0] "Der Mann ist zu beachten, er wird in Zukunft eins der japanischen Aushängeschilder."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Blue-byte92wrote on 24.06.2007:[10.0] "Als ich ihn das erste mal hab wrestlen sehen , hat er mich so überzeugt wie es bisher bei keinem anderem Wrestler der Fall war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Soerenwrote on 24.06.2007:[10.0] "Hat mich live verdammt überzeugt und eine herauszuhebende Leistung vollbracht, was mich auch zu keiner anderen Bewertung als die Note 1 bringt!"
Rating: 10.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Kruemelwrote on 24.06.2007:[10.0] "Unfassbarer Wrestler. Einfach nur geil ihn live zu sehen, wenn man weiß, dass dieser bald komplette Shows in Japan ausverkaufen wird."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: STRIGGAwrote on 24.06.2007:[8.0] "Go zeigt einen der schönsten Moonsaults, die ich je gesehen habe. Natürlich sind seine weiteren Fähigkeiten alles andere als zu verachten. Wie schon hier erwähnt: Der Mann für die Zukunft."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Pulpulwrote on 24.06.2007:[10.0] "NOAHs zukünftiger Top Mann. Go gehört die Zukunft."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1871&gimmick=Go+Shiozaki
Comment: Sabu316wrote on 24.06.2007:[10.0] "Der zukünftige Star der Szene. Er ist jetzt schon sehr sehr gut im Ring und dabei hat er noch einige Jahre vor sich. Wird sicherlich noch einige denkwürdige Matches bestreiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Fabibiwrote on 31.08.2024:[6.0] "Bruno was a good babyface and managed to connect with the New York area crowds. He was however nothing special in the ring, even for his time he was far from being the best. His ability to draw is undeniable and we don't have huge amount of footage from his career."
Rating: 6.0
Sentiment: 0.4489177489177489
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: cioranwrote on 20.09.2023:"Reminds me of Hulk Hogan a lot, great look, very limited moveset, superb ring psychology, good at selling, consistent. Over with the crowd at MSG. Except a mildly better worker, much worse talker. His early matches seem to not have been recorded anywhere and the later ones honestly aren't recorded well until the mid 70's which is near the end of his career (though he comes back a few times in the early-mid 80s), so I'm not going to give him a rating. My father watched Bruno growing up (he wanted to name me Bruno but my mother wouldn't let him) and legitimately believed this guy was the greatest thing ever. I don't get it, but maybe his 60s stuff was better or maybe he was just a product of his time. Or maybe it doesn't carry over from MSG to watching it on TV. IDK. My uncles thought pretty much the same thing as my father. In the 60s the only guy more over with Italian-Americans was the Pope. I've never seen a match of his I thought was great, but none of them were bad either. For a 50-something year old guy even his match with the Honky Tonk man was fun and the first time I remember seeing him. I'm probably missing context on a lot of the feuds."
Rating: No rating found
Sentiment: 0.23544973544973544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: swissarmybazookawrote on 08.09.2023:"His work is a byproduct of the era he wrestled in. Many modern fans won't understand it and dismiss him. Bruno however, is one of the biggest attractions ever in wrestling. He carried the WWWF in the stages when they needed someone like him most. WWE has tried many times to have someone carry the title like him but it's simply impossible to have someone in the modern era be on top for that long and keep the level of popularity he did. Truly one of the greats There will never be another Bruno Sammartino."
Rating: No rating found
Sentiment: 0.21041666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Khalid Acewrote on 16.07.2023:[7.0] "Bruno is respected by the wrestlers & fans so that counts for something I guess. his work with WWF but boy he was terrible. He didn't have one match that I can recommend to anyone because he's unwatchable in the ring. However his work beforehand was solid."
Rating: 7.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Giantfan1980wrote on 07.06.2023:[6.0] "Just based on historical importance, Bruno should be in the top 10 wrestlers of all time. He is from the era just before mine so I was never high on the 60's-70's style."
Rating: 6.0
Sentiment: 0.13999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: greaterdalewrote on 01.06.2023:[10.0] "Usually I tend not to rate wrestlers based on how popular they were, but with Bruno you kind of have to? The man was champion for 7 years and drew HUGE in the New York territory. I've watched his matches before and I thought they were fun considering the era. Yeah there's a lot of punching in his matches, but that's never really bothered me, like don't get me wrong, I'm all for flippy fast paced moves, but Bruno's was able to do so much with a limited moveset, and more isn't always better. But yeah a lot of his rating is going to be based on his huge drawing ability and mammoth sized title reins. 10/10"
Rating: 10.0
Sentiment: 0.22766233766233765
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: crs285wrote on 13.04.2023:[10.0] "Legend in the ring. His in-ring work was really good for the time with insane strength, and he connected perfectly with his audience. He carried the early WWWF as their champion for an insane length of time."
Rating: 10.0
Sentiment: -0.040000000000000015
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: greenlawlerwrote on 05.03.2023:[5.0] "Let's be very clear. Bruno was really popular. He was not great in the ring. The WWE machine continues to control the narrative. There are dozens of better wrestlers who don't have the advantage of being as protected, popular as Bruno. Any one who gives Bruno a ten is not objective at all."
Rating: 5.0
Sentiment: 0.20428571428571426
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Conquistador37wrote on 02.12.2022:[5.0] "Dude is BORING. I was never, will never be a fan of "The New York style" but Bruno was definitely less awful than most in that territory. His commentary was sometimes ok enough but he often seemed LOST. Overrated overhyped but not total crap; again BORING. there is worse, but: "BORING" is the most apt description. 4.5 rounded up. (and YES I watch things for "how they were", I'm straight up saying it: New York/WWWF/McMahonland's in ring pace was B! O! R! I! N! G! and Bruno is just another example of that.)"
Rating: 5.0
Sentiment: -0.15063231497099905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "One of the most revolutionary wrestlers ever, he was a valuable gem to the old days of pro wrestling. Incredible wrestler and incredible guy."
Rating: 9.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: face painted legendwrote on 01.11.2022:[10.0] "I say it all the time, he was the perfect storm for his time. If you were to have all of the stars align at once to make the perfect performer for an era it would be bruno in his. The WWWF, ran by Vince McMahon Sr at the time, had a large Italian American demographic coming to the shows, and being the smart man that he was Sr. capitalized on that by not just bringing Bruno who was a larger than life, hard working, blue collar, Italian American superman more the less in both look and what he was capable of doing in to the territory, but relying on him for so many years to be his world champion. And man did it ever work. 4, 000 something days as the world heavyweight champion, set the record for number of times selling out madison square garden, a real life hero to many people at the time, etc. Now obviously, a lot of what he did as far as promos, in ring work, etc, wouldn't translate to today at all. However, for his time, it was exactly what was needed for that territory, and the demographic that they were looking to draw at the time. I am glad he made peace with WWF/E before he died and got celebrated like he should be in his final years. Nothing but love and respect for the living legend."
Rating: 10.0
Sentiment: 0.232093253968254
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: TheOneAndOnlyCactuswrote on 13.09.2022:[10.0] "The longest reigning WWE Champion of all time, and a record that will simply never be topped, Bruno Sammartino was a hero for Italian-Americans, but his popularity went beyond this community. The Italian Superman was a draw everywhere, but especially MSG, where people kept filling up the garden to witness the prowess of this powerhouse. A bonafide legend."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: DuthtyBabehwrote on 27.08.2022:"He was, quite simply, one of the greatest professional wrestlers of all time, and there was a reason he was called ? The Living Legend.? Bruno Sammartino was always open to talk, and some of our favorite al-time stories are archived below. Bruno? s eldest son, David, didn? t have the career his father did, but has his own unique take on the business too"
Rating: No rating found
Sentiment: 0.3678571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Ozzywrote on 07.08.2022:[9.0] "Though Bruno wasnt exactly charasmatic or elegant in his in ring ability, he was one of the most important wrestlers in WWE or rather WWWF history. Everyone knows of his 2803 day reign as historic and record holding, and his combined WWWF world title reign of 4040 days, tis a staple of what made WWE what it is today, he was the John Cena or Hulk Hogan of his day, going through everyone in his path from legends such as Gorilla Monsoon, Ken Patera, and Baron Mikel Scicluna to his ex tag partner turned rival in Spiros Arion and possibly greatest rival in Larry Zbyszko. Bruno paved the way for what wrestling is today by bringing the forefront of popularity to the most successful promotion to date"
Rating: 9.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: CMX-7wrote on 20.05.2022:[10.0] "Bruno Sammartino - Absolute Legend! of early Pro Wrestling, we can proudly say that he is the ICON of all Wrestling. Many fans of the current wrestling product (I call them snobs) who write that the matches are slow and terrible, although it did not occur to these people that the business was going in a different direction at that time. Bruno Sammortino is a worthy person who deserved the honor of being the first!"
Rating: 10.0
Sentiment: 0.09958333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Thibaultwrote on 19.05.2022:[6.0] "Bruno Sammartino was even slower than Hulk Hogan and his acting was very straightforward. He was used as a superhero to please the kids of his time, but I don't think you can make him into a wrestling giant like Lou Thesz, Rikidozan, Buddy Rogers, etc."
Rating: 6.0
Sentiment: 0.1625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: TigerDiverwrote on 11.04.2022:[9.0] "Bruno Sammartino lives and breathes wrestling. This man sold out Madison Square Garden more times than I could count and was a massive international draw at one point in the pinnacle of his career. There's a reason the whole MSG venue went complete and utter silence when he lost the WWWF Title for the first time. Yes, that's how much the fans loved him. Yes, that's how big of a deal he truly is. His late 80s 'special attraction' run doesn't hold a candle to his heyday, but even then so, I still think he's fun to watch nevertheless. I will knock him a bit on his in-ring work, which was a little too kicky-punchy, more of the same stuff for me. But the fact that he did so little and gathered ten times the amount of reaction of guys today speaks volumes for itself. Couldn't be a more fitting term for him than "The Living Legend.""
Rating: 9.0
Sentiment: 0.17160714285714282
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: GriffinXwrote on 08.02.2022:[10.0] "If not Bruno there is a chance the WWWF would of survived after leaving the NWA. The simple fact is the man carried that company for so long. 11 total years as champion because he was such a huge draw. The man was the blue print for the long running face champion"
Rating: 10.0
Sentiment: 0.04285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: ALFwrote on 11.07.2021:[10.0] "Der beste World Champion vor Wrestlemania:War immer ein fairer Wrestler. Ausstrahlung, Super Body - ohne Steroide! Hatte eine super Fanbasis ... Zusammen mit Hulk Hogan, Ultimate Warrior, Superstar Billy Graham und Undertaker mein Wrestling Mount Rushmore! ""
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Kungwrote on 20.06.2021:[10.0] "The legend of all legends in WWE history. He had the look, the gravitas, and the near-unanimous support from the fans in New York, and he may very well be the greatest champion WWE has ever had."
Rating: 10.0
Sentiment: 0.4454545454545455
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: BUIOOMEGAwrote on 13.10.2020:[10.0] "Legend of the legends, immortal. He raise the standard for the major drawer of the history, his model of success will make famous the likes of Hulk Hogan and John Cena as well. An icon. Forza Italia!"
Rating: 10.0
Sentiment: 0.246875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[10.0] "You want to talk about a wrestling god, here you go. A pioneer and someone who prided himself in taking the business seriously. Helped get wrestling into the mainstream."
Rating: 10.0
Sentiment: -0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: LandonRyanWyattwrote on 03.02.2019:[10.0] "The greatest star in the old WWWF. Bruno was the Hogan of his time, everywhere he went, he drew. Bruno basically owned MSG for the majority of the prime of his career. A true legend in the business."
Rating: 10.0
Sentiment: 0.4833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: jajt1989wrote on 10.11.2018:[7.0] "The crowd love him and he always put on a show. Definitely didnt have a massive move set but that didnt matter when your selling out crowds and the crowd is always going nuts for you."
Rating: 7.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: JEK 1991wrote on 31.10.2018:[10.0] "A legend definitely. One of the last wrestlers to not use steroids. He was strong naturally and can pick up the 600 lbs Haystacks Calhoun. He sold out Madison Square Gardens many times and was exciting to watch. I am glad that he is in the WWE Hall of Fame. I know Vince JR blacklisted him for many years but that has ended. This man was like Hulk hogan and way better than him."
Rating: 10.0
Sentiment: 0.31481481481481477
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Steamboat2511wrote on 02.10.2018:[7.0] "Im Grunde vor meiner Zeit und somit ist eine Wertung mit Vorsicht abzugeben. Sein Standing für das Wrestling ist enorm groß und kaum zu überschätzen! Er ist eine wahre Legende der alten Schule und wird für immer in den Analen dieses Sports stehen. Seine Ringfähigkeiten (freilich ohne sie mit dem heutigen Stil zu vergleichen) gefallen mir jedoch in den wenigen Matches die ich gesehen habe nicht so gut, wie die einiger Zeitgenossen und so gibt es einige Abzüge."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: RatingsMachinewrote on 22.09.2018:[10.0] "By his own admission, Bruno wasn't the worker that some his contemporaries were. But he didn't need to be, because his strength was in connecting with the fans in way that those same contemporaries were unable to do. And Bruno was good enough at what he could do in the ring that the fans were with him every step of the way."
Rating: 10.0
Sentiment: 0.15999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: BIGWACKENHUTwrote on 01.09.2018:[10.0] "The virile Everyman. Strong, potent and sporting a bold 70s haircut. As a child I viewed Bruno as a hairy, slightly paunchy man in a baggy speedo. He didn? t look like he could hold a candle to chiseled body builder types that populated the 1980s wrestling landscape. It was much later that I learned he was stronger, braver and far more potent than anyone who ever laced up a pair of boots. It was at that point I noticed his bulk and girth. This was a big, brutal, durable man with staying power.  To the unpracticed eye his matches may seem lethargic and lacking the technical virtuosity that we see today. But what his matches possessed was a level of ? realism? that resonated with the audience. Surely, no one would except Larry Holmes would attempt to take out a foe in a real fight with a drop kick. But stomping and punching, wrenching knees and imposing your superior will power with tests of strength. This is a logical approach to professional wrestling.  His matches are less cookie cutter than many of the greats- despite the limited move set and his excessive length. The lack of high spots actually adds to the realism. His charisma is off the charts. The modern product would benefit from the sort of visceral, brawling style that he used. Is Bruno the greatest wrestler ever? He has to be in the conversation and a strong case can be made."
Rating: 10.0
Sentiment: 0.16520952380952383
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Rabidwrote on 20.04.2018:[10.0] "Maybe not the best worker at the time and he wasn? t the flashiest, but Bruno Sammartino will probably be the WWE? s biggest draw for its history. Bruno sold out Madison Square Garden so many times, I? ve lost count. His matches with guys like Larry Zybsko and Gorilla Monsoon are legendary. Bruno Sammartini was a wrestler who was larger than life, a character who connected with millions and he was a childhood hero for many. Without him, there is no Hulk Hogan, without him there is no John Cena. Without him, WWE may have never been the phenomenon it is today. Thank you Bruno for your contributions to the business and RIP."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: ItalStal624wrote on 08.11.2017:[10.0] "Bruno transcends any rating, in my opinion... he was larger than life, a Superman, a hero and a role model... he was a champion inside and outside the ring... he was my hero when I was 12, and almost 50 years later, he still is... I can barely watch the current product, but I am always up for watching Bruno take on Toru Tanaka, Gorilla Monsoon, or Waldo Von Erich :)"
Rating: 10.0
Sentiment: 0.09166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Luv all wrestlingwrote on 23.09.2016:[10.0] "A multi time Madison Square Garden sell out, Bruno was the reason WWF had the opportunity to overthrow the territory system. He also wrestled quite well and is a neat throwback to watch nowadays."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Squared Circlewrote on 10.12.2015:[10.0] "Belongs with Hogan, Flair and Andre on the Mount Rushmore of wrestling.  His first championship run was insane.  Then after the Pedro Morales interlude, he was right back at it.  Sold out Shea Stadium, Madison Square Garden, Boston Garden and Japan.  He even crossed over for some good work with another legend Harley Race.  The guy had main event written all over him.  Even when he was retired, he'd get back in the ring and sell the place out.  Simply fantastic."
Rating: 10.0
Sentiment: 0.10029761904761904
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: KimboSlicewrote on 08.09.2015:[10.0] "einer der besten Wrestler, die jemals lebten. Er steht nicht nur für einen Rekord, den man niemals brechen wird, sondern auch für Leistung und Talent. Ein Mann, der seinen Namen in der Wrestling Welt unsterblich gemacht hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Brianjacksonwrote on 10.04.2015:[9.0] "One of the most legendary wrestlers in history, his ability to sell out Madison Square Garden almost every month for over a decade is a remarkable achievement. He was the first true WWWF Champion and made New York the successful territory that would go on to become the WWE."
Rating: 9.0
Sentiment: 0.5337662337662338
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Lifethhrdwrote on 31.12.2014:"10 The Greatest Champion of All-Time. As big a gentleman as he was a champion. Bruno was a great "scientific"wrestler but could also brawl with the best of them"
Rating: No rating found
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Torshavnwrote on 23.08.2014:[10.0] "Il leggendario Bruno Sammartino is one of the most famous, most important and well-respected wrestlers in the world, and rightfully so. Although he is not known for being the best talker in the industry, as some feuds of his show he wasn't bad at all on the mic. Combine that with a great presence, a great in-ring ability, and there's Bruno Sammartino for you. No wonder this guy was a huge draw in the Northeast."
Rating: 10.0
Sentiment: 0.4666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Basket Casewrote on 30.01.2014:[10.0] "Eine ganz große Legende des Wrestling. Toller Wrestler, großes Charisma, nicht umsonst war er so lange WWE Champion."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: yanuswrote on 15.12.2013:[8.0] "Overrated by people that think, that the wwf or wwwf was the biggest company in the world before 1984. He was a great draw, but only for a local territory - the champions of the AWA and the NWA were much bigger names in the wrestling world than Sammartino. I'm also not the biggest fan of his in-ring work. Nonetheless, you have to judge him highly because of his drawing ability in New York and his great presence."
Rating: 8.0
Sentiment: 0.27090909090909093
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: RJLwrote on 03.12.2013:[10.0] "One of the founding fathers of pro wrestling as we know it."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Elitemasterwrote on 28.10.2013:[10.0] "It's incredibly, on how this wrestler is very good, I like Bruno Sammartino."
Rating: 10.0
Sentiment: 0.905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Randy Owrote on 03.05.2013:"Dieser Mensch scheint eine schwierige Person zu sein. Am meisten über diese Person wundert mich jedoch das er und ich zitiere:"-verstieß seinen Sohn David, nachdem er herausfand, dass dieser Steroide einnahm" aber Arnold S. ein enger Freund ist. Sein leben lang Prinzipien haben und sie dann brechen und zur WWE zurückehren nach dem ihm angeboten wurde, sein Leben zu verfilmen. Finde ich persönlich alles andere als Bewunderns Wert.  Ob er ein Guter Wrestler war, kann ich nicht sagen. Edit: Daher das ich ihm seine schöne Wertung jedoch nicht herunterziehen möchte gebe ich lediglich mein Kommentar ab."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Irri Busenbenderwrote on 19.02.2013:[10.0] "Die größte Legende aller Zeiten in der WWE. Endlich da wo er hingehört.. in die Hall of Fame"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: chaoswrote on 14.02.2013:[10.0] "Was kann man über diesen Mann sagen was noch nicht gesagt wurde? Nichts!  Er ist eine absolute Legende und endlich in der Hall of Fame!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Sirius Van Grathwrote on 15.10.2011:[10.0] "The Living Legend ist der perfekte Name für ihn! Ohne ihn wäre das Wrestling wohl nie so populär geworden.  Sammartino verdient die 10 Punkte absolut, weil er wirklich ein WRESTLER ist. In seiner Ära waren nicht alle Main Eventer Ring-Feuerwerke. Siehe Hogan oder Warrior. Aber Bruno Sammartino ist einfach nur klasse!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Raywrote on 02.09.2011:[10.0] "Es ist Bruno Sammartino, eigentlich sollte der Name allein ausreichen. Er ist eine Legende, er hat Wrestling revolutioniert!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Manu Adamswrote on 22.07.2010:[8.0] "Er ist die ''Living Legend'' und war auch zu seiner Zeit ein klassen Wrestler nur hatte er wirklich kaum Mic Work und versprach sich desöfteren, weshalb er für mich eigentlich als Kommentator der WWF Championship Show völlig ungeeignet war, hat aber auch zu seinem Vorteil McMahon viel reden lassen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Italian Straight Edgewrote on 04.10.2009:[10.0] "Mein Landsmann war zweifelsohne einer der besten Wrestler ''of all times''. Nicht umsonst war er insgesamt ganze 11 Jahre WWWF Champion (heute: WWE Champion). Dazu konnte er ganze 176 Mal als Headliner der damaligen WWWF (heute: WWE) für eine ausverkaufte Halle sorgen. Sehr schade, dass er etwas gegen das Mainstream-Wrestling und die WWE hat und deshalb nicht in die WWE Hall of Fame aufgenommen werden möchte."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Eddiewrote on 08.06.2009:[10.0] "Genialer Wrestler zu seiner Zeit, er war nicht umsonst knapp 8 Jahre der Champ, und das in Folge. Wohl ein Rekord für die Ewigkeit, es sei denn Eddie Steinblock ist noch länger aktiv.. Aber das ist ein anderes Thema.. Für Sammartino 10 Punkte, zu seiner Zeit war er das non plus ultra der Catch Szene."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: theflo438wrote on 12.10.2008:[10.0] "DER CHAMP IST HIER. 11 Jahre WWWF Heavyweight Champion und ein wahrer Pure Wrestler, der auch das heutige Produkt der WWE verabscheut. Er war wohl ein Fighting Champion."
Rating: 10.0
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: ecw foreverwrote on 02.09.2008:[10.0] "Sammartino war nicht der über Wrestler für die ihn viele halten, und ich ihn auch hielt. Er war eine Charismabombe mit soliden Skills, sein Mic kann ich nicht beurteilen, aber sein Charisma war sau stark."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: ZuluBunsenwrote on 21.03.2008:[10.0] "Eine lebende Legende dem man viel zu verdanken hat. Man mag seine Meinung zum heutigen Produkt teilen, es bleibt aber ein Fakt, dass er eine der wichtigsten Persönlichkeiten des Business ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: LexLuger4everwrote on 25.02.2008:[8.0] "Fast 8 Jahre am Stück WWWF Champion gewesen, was natürlich ein Rekord für die Ewigkeit bleiben wird! Seine Matches waren gut, sonst kam er bei mir aber nie über den Status eines ganz normalen Wrestlers hinaus."
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: AnFuwrote on 16.01.2008:[10.0] "Cooler Typ, dazu einen unglaublichen Rekord augestellt. Bestnote!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Bullit69wrote on 13.01.2008:[8.0] "Finde es toll, dass er derart gegen Steroide und Ähnlichem is!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "Der Champion welcher am längsten den Titel der WWF hielt. Eine unglaubliche Leistung in all den Jahren die Spannung der Titelmatches aufrecht zu halten. Deshalb von mir ne 1!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: The Yetiwrote on 01.11.2007:[10.0] "Acht Jahre am Stück Champion, danach noch einmal 4 Jahre am Stück. 10 Punkte sind eine Beleidigung für jemand, der zurecht ''Living Legend'' genannt wird. Auf YouTube gibt es einiges von ihm zu sehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: shannonmoorewrote on 22.08.2007:[10.0] "Vileicht der größte aller Zeiten wie ich finde, dazu tragen seine großen Erfolge genau so dazu bei wie seine Ansichten und dass er diese auch wirklich einhält. Denn selbst ein der WWE ach so feindlicher Bret Hart kam als er in die WWE Hall of Fame aufgenommen werden sollte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Blade Bourdeauxwrote on 02.07.2007:[10.0] "Das Sinnbild einer Wrestling-Ära, die er selbst geprägt hat. Und ein Mann mit Prinzipien. Gäbe es hier eine Note 0 würde ich sie ihm geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: SkipImpactwrote on 24.06.2007:[10.0] "Ich bin froh dass er doch wieder einen Blick ins Business wirft und ROH unterstützt. Ich habe nicht viel von ihm gesehen, das was ich gesehen habe war jedoch sehr gut. Seine Erfolge, sein Charisma, seine geschichtliche Wichtigkeit und seine Prinzipien verdienen auf jedenfall 10 Punkte. Vielleicht hat er in anderen Bereichen schwächen von denen ich nichts weiss, jedoch bewerte ich nach bestem Wissen und Gewissen und das sagt mir 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: ABoyenswrote on 24.06.2007:[10.0] "Macht seinem Spitznamen alle Ehre - er ist die wahre "living legend"! Was er geschafft hat wird wohl kein anderer Worker mehr erreichen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=243&gimmick=Bruno+Sammartino
Comment: Hirnklopswrote on 24.06.2007:[10.0] "Die coolste Sau, die jemals einen WW(W)F/E - Ring betreten hat. Der Kerl hat mehr Charisma in einem Haar als das gesamte ECW - Roster. Wer kann, sollte sich Kämpfe von ihm besorgen, der Mann hat mehr als gerockt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Keithnelson18wrote on 11.02.2025:[10.0] "Ilja Dragunov is easily one of my favorite wrestlers in the world right now. Almost every match Ilja has had since he's been in WWE have been bangers, with people like Gunther, Dijak, Bron Breakker, Carmelo Hayes, Ricochet, JD McDonagh, & etc. The man is also an amazing seller, he deserves either the Intercontinental Championship or World Championship in the near future."
Rating: 10.0
Sentiment: 0.31984126984126987
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: zacharymahabirwrote on 10.02.2025:[10.0] "Might be one of the most intense...people ever, fuck the "wrestling" part, he's just the physical embodiment of intensity. Nothing but greatness for someone like Ilja"
Rating: 10.0
Sentiment: 0.033333333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: WillOspreaywrote on 07.02.2025:[10.0] "Dragunov is currently in my top 3 favorite wrestlers in the world right now, its a shame to see that he got hurt and will be out for a while. what got me hooked into him was his intensity, selling ability, and pure wrestling. when he's going on the offense deep in a match it can look like he's mauling his opponent and doing whatever he can to win. and when he's taking all the offense from his opponents, (WALTER, Dijak, etc) he can make them look like he's in legitimate pain and being brutalized without overselling, and he even sells his own offense which is something we rarely see in the modern times. 10 points to the future intercontinental (and hopefully world) champion!"
Rating: 10.0
Sentiment: 0.33999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: venuswrote on 25.01.2025:[5.0] "A very hit-or-miss wrestler. Liked his matches in wXw, the WALTER matches in NXT are some of the best wrestling I've seen but after that, he just became a parody of himself. Comes off as very dork-like with him acting like a shonen anime protagonist with villainous verbiage as a gimmick. His selling comes off way too cartoonish for me. He's still capable of producing good (vs. Breakker in a #1 contender's match for Zayn's IC title on RAW). I like that he has a falling forearm as one of his finishers, good ring-gear and I like his indie-like entrance. Extremely talented yet overrated wrestler."
Rating: 5.0
Sentiment: 0.406923076923077
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: ItsLugerwrote on 20.01.2025:[10.0] "One of the best active wrestlers in the world in my opinion. Everything Ilja does is the definition of intense, from his promos to how he always carries himself and looks, and to of course his in-ring. He is one of the best sellers in the business, he's able to sell everything to make it look like he is in excruciating pain but somehow isn't over the top. When it comes to match catalogue, he has his instant classics with WALTER in NXT, in my opinion, each other's greatest rivals. I haven't seen most of his indie matches but I've seen his matches with Shingo, against him and as a team, WALTER and Timothy Thatcher, and Tyler Bate, each and everyone absolutely excellent. Ilja had an amazing trilogy with Carmelo Hayes, which really brough the best out of Melo and really made him a star. On top of this Ilja in his last year in NXT was able to get not 1, not 2, but 3 incredible matches out of a very green wrestler in Trick Williams, something that hasn't really been done since then and is just absolutely incredible. There are few wrestlers in the world who despite being excellent themselves, would be able to bring out those series of matches out of someone who doesn't even have a full page of matches yet, I think you would genuinely be in Kenny Omega and Konosuke Takeshita territory in that regard. I fully believe that if Ilja had not been injured, he would have had a case for TV wrestler of the year for 2024, seeing as his matches on TV already before he was injured were some of the best for the company for the year."
Rating: 10.0
Sentiment: 0.456264367816092
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Its Clobbering Timewrote on 13.01.2025:[9.0] "Ilija is that guy he's one of my favorite wrestlers currently. Every Match Dragunov has had is an banger and the level of intensity that he does with every move is amazing. Ilja can have a good match with anyone he's never had a bad match. His Matches that he Vs Walter In NXT UK & Takeover 36 are some of my favorite and best matches of all time. I can't wait to see what more he has in store for the future."
Rating: 9.0
Sentiment: 0.34444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Arthurrxzzwrote on 07.01.2025:"Dragunov is the perfect combination of pure wrestling, with the emotion of entertainment, a monster!"
Rating: No rating found
Sentiment: 0.6339285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: MEDaminewrote on 05.01.2025:[10.0] "A Future legend, I love his fighting spirit sm, and he's one of the best in the whole world, every program he had (like Gunther/Walter, Dijak, Trick and Carmelo) was great, you can put him against any opponent and he will still be enjoyable to watch"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: GameBoyAbysswrote on 19.12.2024:[9.0] "The brightest up-and-comer on the main roster, and it's such a shame he was injured in mid-2024. Mark my words, next year will be the year of Dragunov, his enthusiasm and passion for wrestling is infectious, and in a few years he could very much be in the position of best in-ring worker in the company, which I'd say is currently held by his rival, GUNTHER."
Rating: 9.0
Sentiment: 0.17523809523809522
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: AceHagannwrote on 27.11.2024:[7.0] "While not the most fruitful call to the main roster in WWE, Ilja shouldn't be dismissed so easily. He gives it his all in the ring, making his matches feel very intense, brutal, even. Not much to say in other areas, but he is still an overall good performer."
Rating: 7.0
Sentiment: 0.10666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Wrestlingfan0808wrote on 31.10.2024:[10.0] "Intensity intensity intensity. Hes one of the few wrestlers that make this shit look real. A very Bright future ahead despite the latest setback. One of the best wrestlers in the world"
Rating: 10.0
Sentiment: 0.335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Rosyawrote on 29.09.2024:[7.0] "Everything Ilja did in NXT was perfect, but when it came to be part of the bigger picture, he looks weaker. I'm not quite sure whether it's a bad booking or comparison with other superstars who look bigger and brighter. The fact is Dragunov has lost himself, so he urgently needs a long-term story to show his abilities if he's ready to shine on huge TV shows or he isn't that format"
Rating: 7.0
Sentiment: 0.15937500000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Galmondiwrote on 22.09.2024:[10.0] "The best seller in the world, he's selling everything like he's being shot. Other than that he's also amazing in the ring, has presence, charisma, he's believable and he's a futur world champion."
Rating: 10.0
Sentiment: 0.49375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Crofallwrote on 11.09.2024:[10.0] "Ilja is one of the few people I always stop whatever I am doing and mind meld with the computer, phone or screen he is on. Ilja has a hall-of-fame worthy set of matches at 30. He makes every move he takes or does feel like an absolute gunshot, I pray the stars align for this man to become a world-champion in the coming years."
Rating: 10.0
Sentiment: 0.1111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: jsbortswrote on 08.09.2024:[8.0] "I think Ilja is a very talented person athletically, but I find his theatrics to be extremely off putting and distracting, and it prevents me from enjoying things the way that I should for how much pain he's putting his body through. The issue is he's always trying to show me how much everything hurts that I can't focus on any move of offense, it feels that every single time I'm watching his matches I'm just watching him get destroyed until he overpowers the guy thats destroying him with no explanation as to why Ilja is a threat."
Rating: 8.0
Sentiment: 0.20193877551020406
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Dsetwrote on 04.09.2024:[3.0] "Don't understand the hype this guy gets. Seems like he could work well as an underdog but the way hes booked as a threat is just unbelievable. Constantly overpowering people twice his size with no reason behind it just takes me out of the matches completely. He has some undeniable talent but the way hes portrayed and the way he wrestles is just hard to watch for me. Feels like another wrestler that is getting over solely on booking and nothing else. Hopefully something changes and he takes inspiration from other people his size and develops a more "realistic" stlye in the ring at some point but at this point it just makes any match hes in hard to watch for me. Best of luck to him but right now I could not take him seriously as anything beyond a mid-card filler when him and the company give me no reason to do so outside of booking him to win."
Rating: 3.0
Sentiment: 0.08290816326530612
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Willie 19200wrote on 28.07.2024:[10.0] "Ilja puts in always put 150% effort in to his matches and never fails to deliver some of the best matches I've ever seen. His matches with Gunther and Carmelo Hayes are some of NXT's best put on matches and I love to re-watch them from time to time. Definitely in my top 10 in-ring competitors right now."
Rating: 10.0
Sentiment: 0.5892857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Joe907wrote on 21.07.2024:[10.0] "Ilja gives everything he has in the ring. He is one of the best sellers. Highly talented and brings the intensity to every match. He is athletic, technically sound, and is hard hitting. He'll bring the best out of anyone."
Rating: 10.0
Sentiment: 0.5616666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Cletxawrote on 15.07.2024:[9.0] "I have witnessed the majority of his career. He makes me so excited in the ring. A special wrestler who lives in the moment. Especially the times of NXT UK and wXw were tremendous. He is a big potential, I hope WWE uses it well. I hope he will compete with Gunther in Wwe as soon as possible."
Rating: 9.0
Sentiment: 0.1522108843537415
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: XNoWayKemoSabeXwrote on 05.07.2024:[10.0] "I've yet to be disappointed by a Dragunov match. No matter the opponent, Ilja always seems to go balls to the wall, making his matches pure adrenaline-filled fun to watch. He is currently one of my favorite wrestlers to watch."
Rating: 10.0
Sentiment: 0.05285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: arihenrique11wrote on 22.05.2024:[9.0] "This guy has everything to be LEGENDARY! He makes good matches with anyone, his microphone skills are good and his charisma is above average. I find it incredible all the blood he gives for the company he works for, he is exceptional"
Rating: 9.0
Sentiment: 0.5452380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: blastermertwrote on 14.05.2024:[9.0] "Ilja is definitely to become one of the all time greatest, I love watching his brutal to bloody, high-maneuver, versatile performances and not even that, but his in-ring acting and entrance is flawless. I enjoy seeing those exploded veins on his temple when he gets furious, a Kurt Angle quality in-ring acting in my opinion. I hope he becomes what he deserves, and the future set before our eyes lays out a perfect booking for him."
Rating: 9.0
Sentiment: 0.20227272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: bogurtwrote on 14.05.2024:[9.0] "Ilja is on his way to becoming on of the greatest of all time. There is a intense brutality to his wrestling style with his passion and charisma both in and out of the ring showing why he'll continue rising now that he is on the main roster."
Rating: 9.0
Sentiment: 0.45416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: WrestlemaniaConnorwrote on 13.05.2024:[7.0] "He is amazing in the ring but we need to know him a bit better first and then maybe he will be champ win royal rumble or maybe even win king of the ring so lets so what happens. He is amazing in the ring but we need to know him a bit better first and then maybe he will be champ win royal rumble or maybe even win king of the ring so lets so what happens."
Rating: 7.0
Sentiment: 0.5900000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: MarcusRNMwrote on 11.05.2024:[10.0] "One of the most talented in ring wrestlers to ever step foot in a WWE ring. A soon to be star on the Main Roster and probably a future Grand Slam champion. His matches with Gunther/Walter were so good and I cannot wait for them to be revisited on the Main Roster."
Rating: 10.0
Sentiment: 0.3904761904761904
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Frank Shooterwrote on 09.05.2024:[10.0] "There are plenty of words I can use to describe Ilja Dragunov, but the one that is more true than anything else is SPECIAL. This dude is capable of making you invest either a big Main Event style match or the simplest of squashes with his character and in-ring work, one of the best I've ever seen. As Michael Cole said on his match against Ricochet, he is not intense, he is INTENSITY. His H-Bomb finisher is one of the best I've seen, really convincing and terrifying. He is also notable in the mic and character work and he presents himself with the image of what a traditional World Champion level star is, sharp dressed, honorable and confident. There is no way he couldn't be a future World Champion in WWE one day, he is a generational talent."
Rating: 10.0
Sentiment: 0.24055059523809522
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: gamzeewrote on 07.05.2024:[10.0] "one of the greatest of all time for my money. the platonic ideal of intensity inside of a wrestling ring."
Rating: 10.0
Sentiment: 0.95
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: SirDuckDuckwrote on 07.05.2024:"Truly incapable of having a bad match. Not only does he make himself look great in the ring, he is also able to make his opponent look like a star as well. His intensity in the ring is truly outmatched"
Rating: No rating found
Sentiment: 0.15000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: DarekPetrelliwrote on 28.04.2024:[10.0] "I know, it may seem like an exaggeration, but for me it's 1) Shawn Michaels 2) Bryan Danielson and 3) Ilja Dragunov. He's still very young and yet he has an incredible catalog of matches, very few people manage to drag you into a match like he does. His charisma is unmatched. Usually I don't like over the top characters but with Dragunov I make an exception because he nails that too."
Rating: 10.0
Sentiment: 0.15333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: UltraNano54wrote on 27.04.2024:[10.0] "Out of all the guys to come from NXT UK, I feel Ilja has grown the most and has benefited the most from NXT UK. Within the next decade, I could even see this guy becoming a world champion because he has just that much potential if they book him right."
Rating: 10.0
Sentiment: 0.2892857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: jcheng777wrote on 25.04.2024:[10.0] "One of the most brutal and dangerous wrestlers on the planet. Massive fan of his in ring style, which is wildly entertaining. Would love to see a main roster title run this year."
Rating: 10.0
Sentiment: 0.027380952380952384
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: TheEnigmatic1wrote on 24.04.2024:[10.0] "Ilja Dragunov is one of the best wrestlers in the world and I hope the main roster does him good, He has some of the most realistic looking matches ever between his feuds with Gunther, Carmelo Hayes, Dijak. So many amazing matches where he sells each match as a fight and he has the best facial expressions where he looks like he is in legit pain. Then even when looking at him in promos and segments he has so much charisma and he is confident when talking because he knows how good he is, He makes every match feel like a big match. I hope he wins a Major title on the main roster because he is way too good to waste."
Rating: 10.0
Sentiment: 0.3923611111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: lukatesa21wrote on 21.04.2024:[10.0] "I can't remember him having a boring match, what a wrestler, hope he wins titles on the main roster."
Rating: 10.0
Sentiment: -0.17777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Juanca1210wrote on 09.04.2024:[10.0] "One of the best pro wrestlers in the world. His selling, his moveset and the drama that he puts in the ring makes Ilja a very special performer in the world. WWE has a great athlete on his roster. In only 5 years of WWE career, he gave two of the best matches in WWE history against WALTER, AKA GUNTHER. The future of Ilja looks very good. The Ilja's matches of NXT in 2023 were fantastic, the combats against Dijak, The fatal 5 way for the NXT NA championship, Trick Williams, Corbin and Breakker. And his feud with Carmelo Hayes is one of the best trilogies of 2023. I have a lot of expectations in Ilja, and I will follow his adventures in the main roster."
Rating: 10.0
Sentiment: 0.5740952380952382
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Froschiwrote on 06.04.2024:"Er ist so ein guter Performer und ein sehr guter Seller. Die beiden Matches mit Gunther waren eine 10 von 10."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Tonostrawrote on 04.03.2024:[10.0] "Ilja Dragunov is, to me, the most perfect wrestler WWE has right now. If I had to put a picture next to the word "Intense" in the dictionnary, I would put a picture of Ilja Dragunov. This young russian born wrestler speaks english in such a delicate way, it makes him even more scarier when he gets in the ring. I love to describe him as a "I'm gonna f you up but you are gonna f me up in return" man. The kind of guy who will give everything he has in the ring, but will also receive as much as he gives. His feud with WALTER was something special, and they both told a great and believable story. Ilja can go far in the main roster, and I can't wait to see a third match with Gunther, this time on the grandest stage of them all. 10/10, this guy is just above everything else."
Rating: 10.0
Sentiment: 0.2623582766439909
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: JediSaiyanMaster1203wrote on 27.02.2024:[10.0] "Ilja Dragunov is the best guy in NXT right now, this man is an amazing wrestler in the ring, his psychology, storytelling, body language, look, facial expressions, it's all off the charts. This man could very well be a top star in WWE, if "The Fed" believes in him, can pull off "David vs Goliath" style stories off perfectly. Similar to Eddie Kingston, this man doesn't realize that wrestling isn't real, LOL!"
Rating: 10.0
Sentiment: 0.44821428571428573
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: bigotownsendwrote on 10.02.2024:[10.0] "Ilja Dragunov has cemented himself in best in the world status and hes done that and more all the while being relegated to NXT which, despite its overall incline in quality in the past year or so, isnt the go-to wrestling show for work-rate. Dragunov is a machine, its been said to death but its because its true. He is the most intense professional wrestler currently working and can have the best match on any given night. His bombastic and impassioned personality compliments his hard-hitting move-set with an arsenal of manoeuvres that feel like they could end a match at any time. Its not just been in the past few years that hes been this good though, hes been on the top of his game for years whether it be his wXw run or proving that pro wrestling is an art form with his series of matches with Cara Noir in Progress, all the way to his match with WALTER at NXT TakeOver 36 which as it stands is still one of my favourite matches of all time. The fact that he is only 30 is mental, he still has his best years ahead of him and I can see him being a major player once he makes his well-earned leap to the main roster."
Rating: 10.0
Sentiment: 0.24395833333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Captain Memowrote on 05.02.2024:[10.0] "The most intense wrestler in North America. Maybe the world. He's absolutely brutal and elevates everyone that faces him."
Rating: 10.0
Sentiment: -0.05833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: salenronaykwrote on 23.01.2024:[10.0] "He has done everything perfect. In ring, story telling, psychology, you name it and Ilja will give 120%. Its been amazing watching him grow over the years."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: CatboyMathuswrote on 31.12.2023:[10.0] "Probably in the top 5 of the best wrestlers in the world right now, his intensity is unmatched, he now has really decent mic skills and I belive that Ilja doesn't know the difference between shoot and wrestling, he is perfectly doing his job and he hasn't reached his peak yet !"
Rating: 10.0
Sentiment: 0.5904761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: ivxnb15wrote on 01.11.2023:[10.0] "One of the best in the world today this guy is an amazing wrestler and has a banger theme He never fails to entertain the crowd its a crime he still not on the main roster but glad he has FINALLY won the nxt championship well deserved I love this guy. He definitely has a bright future ahead."
Rating: 10.0
Sentiment: 0.3716666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Eldinwrote on 26.10.2023:[10.0] "Ilja Dragunov's in-ring abilities are nothing short of awesome. His prowess is his unbelievable offensive, impeccable selling, and a consistent ability to deliver the best matches on any card. He is undeniably one of the best talents in the industry at this moment, and his future looks promising."
Rating: 10.0
Sentiment: 0.4388888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: celticinvaderwrote on 11.10.2023:[10.0] "My favourite male talent in WWE for the past few years. A Dragunov match is brutal to watch, with rough offensive moves and superb selling. He looks like hes taking so much pain, but delivering it too. His Mad Russian persona comes through every time too, and its such an entertaining character to watch talk, move, and wrestle. Cannot wait to see what else is done with him."
Rating: 10.0
Sentiment: -0.03181818181818183
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Lutwiejwrote on 11.10.2023:[10.0] "Ilja Dragunov is one of the wrestlers that make me cringe in pain when I watch their matches. His unbelievable offensive is magnificent, he's one of the best strikers in the game right now. His selling is pure art, watching him sell is like watching a man being put through unbelievable torture. He's matches with Hayes or WALTER are one of the best WWE matches of modern era. Amazing. 10/10 for me."
Rating: 10.0
Sentiment: 0.33999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: SockyDocky8wrote on 09.10.2023:[10.0] "Ilja Dargunov has submitted his name in being in consideration for the best wrestler in the world! He has one of the brightest futures in the industry and lets just hope that when he gets his call up to the main roster that he gets treated the right way and is given a chance to shine like we know he can!"
Rating: 10.0
Sentiment: 0.5079365079365079
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: derpwrote on 25.08.2023:[10.0] "One of the most talented wrestlers in the business right now and that I've ever seen, always is able to make mediocre or bad competitors look good, amazing at selling, his way of expressing pain and making everything look like a real fight, has immaculate charisma, and his psycho character are the cherry on top and makes him an incredible wrestler."
Rating: 10.0
Sentiment: 0.33506493506493507
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Gold Fistswrote on 02.08.2023:[10.0] "Ha... I said that Gunther and AJ Styles were tied for the title of best wrestler in the WWE at the moment, but now it's a three way including Ilja Dragunov. I can't help myself after seeing his match with Carmelo. I honestly wish it was Gunther vs. Dragunov III at SummerSlam instead of Gunther vs. McIntyre, but oh well, it'll still be great. No wonder this has been Dragunov's highest rated year."
Rating: 10.0
Sentiment: 0.8000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Immortan Scottwrote on 31.07.2023:[10.0] "An impossibly talented wrestler. He's worthy of a ten but it still feels too soon to rate him that high. If he keeps having amazing matches, he's guaranteed to earn that and I very much look forward to that day. UPDATE: screw it, that match with Carmelo Hayes at Great American Bash was so great that I'm bumping him up to ten already."
Rating: 10.0
Sentiment: 0.36533333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: GoldenIceboxwrote on 24.07.2023:[10.0] "Ilja Dragunov is everything I want to be as an actor. This man just knows how to really boil professional wrestling down to an art. His selling is immaculate, second to none I believe, and his most well known attribute. He has levels of charisma befitting of a man who has earned every ounce of the respect and admiration he deserves and more, and his understanding of psychology and workrate is something that could only come straight out of the playbook of someone who doesnt just want success, but rather someone who CHASES it."
Rating: 10.0
Sentiment: 0.18271604938271604
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Itayboiwrote on 12.07.2023:[10.0] "Top 10 maybe top 5 workers in the wwe with an insne and spicel kind of charisma and a stack of grate matches in the past and of dream ones loking forwards, whatnis there not to like"
Rating: 10.0
Sentiment: 0.3375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: TheOverridewrote on 14.06.2023:[10.0] "I can confidently say that Dragunov is overall my favorite wrestler right now. Watching his matches is a pain and I mean that in a good way; It might make Shawns Michaels fans angry but Dragunov is for me the best seller in history; His cries of pain, the way his body reacts to the damage, makes me feel like he really got hurt; And the way he connects his attacks, makes me believe that he is fighting for real. In the ring he is the most complete, he can go technical, brawler, strong style and even the occasional high flyer movement. His promos are with great passion, and his character as an honorable warrior but with anger issues is great. I haven't seen him as a heel, but I assume he would be a total psycho. I hope he makes it to the top of WWE."
Rating: 10.0
Sentiment: 0.24602607709750565
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Egyptian Dragonwrote on 31.05.2023:"One of the best in the world today. He is the biggest underdog in wrestling today alongside Orange Cassidy , he may be the next big thing and the next Daniel Bryan. He wrestled five-star matches with the likes of WALTER and Dijak. I hope he wins the world title someday."
Rating: No rating found
Sentiment: 0.26
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: arkhamoutlaw10wrote on 30.05.2023:[10.0] "The best seller in WWE at the moment. Really makes you believe that it hurts, in a way that most other wrestlers can't come close to replicating."
Rating: 10.0
Sentiment: 0.39375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Penta Suzukiwrote on 16.05.2023:[10.0] "For my money, Ilja Dragunov is currently one of the best wrestlers in the world and one of my absolute favourite to watch. He's an incredible worker who makes everything look good and brings intensity and believability to every situation. His offense is stiff, brutal and perfectly executed. Meanwhile, his selling is masterful, in fact, I don't think there's anyone better at it in the Industry right now. He's a good, authentic promo, charismatic, great conveyor of emotion and has a unique look. Just a complete all-rounder who many would say is currently wasted on the small stage of NXT, but as I don't watch main roster WWE anymore, I'm delighted to have him there and it will be a sad day when he leaves."
Rating: 10.0
Sentiment: 0.3429606625258799
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Storyline Guywrote on 21.04.2023:[10.0] "My favourite from NXT UK. Ilja Dragunov for me is one the best in ring talents in WWE. He had stupendous matches over the last 4-5 years be it on the independent scene, NXT UK or NXT. An amazing technician with great moveset that allows him to have amazing matches with any type of opponent. He does not talk much but the way he speaks with great intensity and emotion is enough to sell the feud/match. Dragunov = Intensity, passion, emotion...be it in ring psychology, promos, mannerisms, facial expressions, style, character he just makes you feel it. Dragunov has mastered the art of wrestling. I hope he achieves great things in WWE"
Rating: 10.0
Sentiment: 0.43636363636363645
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: AyoWrasslinwrote on 19.04.2023:[10.0] "HE IS HIM. Ilja is just that guy, and I knew he was him upon first seeing him. As soon as I see a european wrestler who doesn't where knee pads you know he is that guy. Just amazing hard-hitting action. 10/10 / Recommendations: vs WALTER[Takeover 36 & 10.29.20] vs Devlin [ ALL ], vs Breakker & McDonagh [Halloween Havoc '22], vs Roddy [4.7.22], NA Title 5-way [Stand and Deliver '23]"
Rating: 10.0
Sentiment: 0.23750000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: kmccoy83wrote on 13.04.2023:[7.0] "I've tried to like him, but I just can't get behind this guy. No doubt, he has a bit of talent. He just has a weird look to me and doesn't in the least begin to intimidate in the style his brawling would seem to want to dictate."
Rating: 7.0
Sentiment: -0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Chellxmerr28wrote on 05.04.2023:"I happened to get acquainted with Dragunov back at WxW, at first he hooked me with his usual, classic look and at the same time unusual behavior, his facial expressions were beyond his image, and then it was time to see him in the match and I will say one thing, I was fascinated, I liked Dragunov's style so much, I simply adored such styles, it was something! I was so afraid that big companies would not accept him and he would get lost, but I'm glad that this is not the case and he did not get worse in the big promotion, he continued to dictate his style, I can't wait for Dargunov to thunder over NXT again. I hope he will also be lucky in the main roster, such a talent should not be omitted"
Rating: No rating found
Sentiment: 0.07719298245614035
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: JeanneLafont94wrote on 01.04.2023:[10.0] "The world does not deserve Ilja Dragunov, it is fantastic and deserves a bigger platform than NXT. I think back to Sheamus, Drew McIntyre or even Cody Rhodes. Im totally fascinated by him."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: KKeanelwrote on 01.04.2023:[9.0] "Yeah, that's what I love. Intensity, passion and psychology which he puts in his matches is absolutely outstanding. Alongside Gunther, type of guy who convinces my mind to think "what is he doing in WWE? ""
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Enriquepollazzowrote on 27.11.2022:[10.0] "This guy is friggin fantastic! He is like some diamond in the rough. You could take him right now and plug him into the top of AEW, NJPW, WWE or anywhere and hed have brilliant matches and be awesome with his character. He is a 10. It's ridiculous he isn't pushed more."
Rating: 10.0
Sentiment: 0.40654761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: TheOneAndOnlyCactuswrote on 14.09.2022:[10.0] "The Tsar of professional wrestling brings incredible intensity like no one else today, and brings realism like few have done in the modern day. You can feel his passion for the business. He has great facial expressions, mannerisms, moves etc. If I had to show someone who is the Quintessential wrestler amongst the current active ones, it would be him."
Rating: 10.0
Sentiment: 0.20833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: FamousBirdwrote on 19.08.2022:[10.0] "Dragunov is a world-class wrestler, full package, intensity, athleticism, consistency, connection with the crowd, promos, flexibility to do either technical, submission or absolute belter hard-hitting matches. Had an amazing title run that unforunately ended with an injury, just a superb talent."
Rating: 10.0
Sentiment: 0.43000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: JoshuaWrestling63wrote on 13.07.2022:[9.0] "Ilja ist einfach mega Hab ihn das erste mal 2015 bei der wXw live gesehen und anfangs wusste ich noch nicht unbedingt was ich von ihm halten soll.. Doch nach und nach hat er mich überzeugt Nicht nur mit seinen können im Ring Sondern auch sein gimmick.. Es ist sehr speziell und sowas mag ich Es ist cool das er es jetzt zur wwe geschafft hat ich hoffe das sie ihn nicht wie manch andere kaputt machen"
Rating: 9.0
Sentiment: 0.24318181818181817
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: PhenomenalGunwrote on 27.06.2022:[9.0] "What an absolute unit. No one, and I mean no one can make this sport look as believable as Ilja does. His intensity, the passion, his expressions, his mannerisms, everything, you can feel it through the screens that this guy's life is professional wrestling. He has some of the best matches with just about anyone and is actually solid on the mic, pretty useful to have a guy that can speak fluent English, German, and Russian around. He's a multi-talented star and if they want to, they can have him killing it on the main roster by next year. I can't give him a 10 yet because he hasn't reached the status of legend but if he continues at this rate he undoubtedly will. UNBESIEGBAR!"
Rating: 9.0
Sentiment: 0.16955128205128206
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: texasyoshwrote on 19.06.2022:[9.0] "This dude is fuckin crazy. Every bump he takes he sells like death. He is the ideal Euro babyface that never gives up. Fantastic."
Rating: 9.0
Sentiment: 0.23333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: jamzell00wrote on 27.04.2022:[10.0] "Did not know how crowds outside of germany would take to him but I'm so happy he's a beloved guy in the wwe. One of the few guys I will make an effort to seek out in the company because he's that damn good. Happy for the guy"
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Okaro143wrote on 20.02.2022:[9.0] "Ilja Dragunov is a superstar in the making. He has been great consistently delivering good to amazing matches whenever i see him in the ring. The sky is the limit for him as he has all the makings of a World a Champion. It's upto management on how high his accomplishments will be."
Rating: 9.0
Sentiment: 0.502
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Ukrainialitywrote on 11.11.2021:[10.0] "Idealniy wrestler. Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai! Davai!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Dy1789wrote on 18.10.2021:[9.0] "Ultimate fiery babyface. Very intense and believable against someone like Walter. Charismatic and will get everyone behind him. Long live the czar."
Rating: 9.0
Sentiment: 0.13519480519480517
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: GenerationalCreatorwrote on 24.08.2021:[10.0] "simply amazing, Ilja Dragunov is a unique talent since her wXw days, excellent matches and rivalries, especially against Cara Noir and WALTER, one of the best WWE signings in thesimply amazing, Ilja Dragunov is a unique talent since her wXw days, excellent matches and rivalries, especially against Cara Noir and WALTER, one of the best WWE signings in the the last few years and it will certainly generate good results for the company as it is already generating."
Rating: 10.0
Sentiment: 0.47602040816326535
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: marexcelwrote on 01.08.2021:[10.0] "Wie viel Intensität darf es sein? Ja! Ilja! Am Bildschirm schon immer absurd, aber seit ich ihn live gesehen habe, hat er mich absolut in seinen Bann gezogen. Irre Aura, stark im Ring und als Persönlichkeit im WWE-Umfeld nochmal richtig gereift und auf dem Weg ein europäischer Top-Star zu werden. Hoffentlich traut man sich das Ende August. Er bringt mittlerweile das gesamte Paket mit und das so abgerundet, dass es eine Unterhaltungsgarantie gibt, wenn er auf dem Bildschirm ist. Promos und Segmente funktionieren, die Matches sind oft einfach stark und er schafft es sehr konsequent, seinen Stempel aufzudrücken und damit auch schwächere Gegner in den sehenswerten Bereich zu holen. Ganz groß und da geht noch mehr."
Rating: 10.0
Sentiment: -0.19090909090909092
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: pierreMinnewrote on 27.03.2021:[9.0] "I love Ilja Dragunov, even if I didn't saw him in wXw. He is incredibly athletic, one of my favorites in WWE. His style is what I love, this guy can give a very good match to every opponent, like not too much people can do."
Rating: 9.0
Sentiment: 0.602
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Brett1980wrote on 21.01.2021:[8.0] "Is very durable. Always makes a good comeback after looking dead. Very eccentric and his facial expressions are believable. Stands out as different."
Rating: 8.0
Sentiment: 0.17142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: EUJBFTYwrote on 22.07.2020:[10.0] "Ilja is one of my favorite current wrestlers. His eccentric demeanor adds an intensity to his matches and I can't wait for his title match with Walter when/if NXT UK comes back!"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Pinkd56wrote on 23.06.2020:[7.0] "There's an element of nostalgia remaining for when Ilja was the most exciting worker in Europe. Unfortunately his work has increasingly shown signs of being rather formulaic and those sparks of excitement we had are now gone. Leave NXT UK for your own good."
Rating: 7.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: BDDwrote on 09.04.2020:[10.0] "Dragunov is a very good wrestler, one of the best in Europe, he is charismatic, and his facial expressions are very interesting, his matches are generally very good, considering even reaching the MOTYC level, as they are always very intense and very physical too."
Rating: 10.0
Sentiment: 0.5287499999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: joelbevanwrote on 11.03.2020:[9.0] "I'm a massive fan of Dragunov, I love his intensity, in-ring skills and his entrance is also fantastic. The facial expressions he pulls really add to a match too, and he is able to keep his character the entire time he's in the ring. For some great Dragunov matches, watch his trilogy with Cara Noir, his match with Jordan Devlin and his match against Chris Brookes from last year's SSS16."
Rating: 9.0
Sentiment: 0.2666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Nerfair1wrote on 23.02.2020:[10.0] "I LOVE the character and the intensity of Dragunov. He's also a great technical wrestler. His matches against WALTER and Cara Noir are particularly good. I see a great future for this guy."
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Fan-since-1990wrote on 18.10.2019:[10.0] "Für mich eines der absoluten Highlights bei NXT UK. Macht mächtig Freude, ihm im Ring zuzusehen. Verdammt guter Wrestler, spannende Moves, gut am Mikro und dazu auch noch äußerst sympathisch, wenn man ihn backstage trifft. Klasse!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Unsaintedguywrote on 29.08.2019:[9.0] "I'm really invested in this guy. He's smooth and his facial expressions after every bump are golden."
Rating: 9.0
Sentiment: 0.22500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: KyleEnjoysWrestlingwrote on 01.08.2019:[8.0] "Ilja Dragunov is one of the younger stars of today who I am really interested in going forward. The first thing that caught be right out of the gate is that he's a Russian babyface. In American wrestling, an age old trope is the evil Russian character, so to see a Russian portrayed as a good guy is a welcome change of pace. Next is obviously his intensity & odd mannerisms. Despite being small, he hits hard & will never back down from someone the size of WALTER. I think he's an awesome addition to NXTUK, which is where he is currently rising in stock. My only criticism is that I think his finisher often looks weak & I think he should change it up."
Rating: 8.0
Sentiment: 0.04986197377501725
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: DeathByElbowwrote on 07.05.2019:[10.0] "Für mich der Breakout Star in Europa seit Jahren. Immer konstante leistungen bei WXW gezeigt, das er mitlerweile welt weit gebookt wird und nun auch bei NXTUK ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Sebastian Vwrote on 13.03.2019:[9.0] "Alles an Ilja ist sehr gut. Im Ring ist er unglaublich konstant, zeigt nie schlechte Matches und hat schon einige richtig gute Matches gezeigt sei es gegen Walter im Caratfinale 2017 oder am Tag 2 des Carats 2018. Er mischt Strong Style und Technik mit gutem Characterwork und starkem Storytelling sowie gutem Crowdwork. Die Crowd kann er sowieso sehr gut in seinen Bann ziehen, da er sehr charismatisch ist, sein Gimmick toll verkörpert und einfach eine Main Eventer und gleichzeitig doch Underdog Ausstrahlung hat, obwohl er auch der Überlegene sein und dabei glaubhaft ist. Auch sein micwork ist inzwischen sehr intensiv und eindringlich geworden. Alles in Allem ein sehr guter Wrestler, einer der besten Europas und daher 9 Punkte."
Rating: 9.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: netti patewrote on 23.12.2018:[9.0] "one of the - if not THE best - in Europe; I was a big fan of his Ivan Drago" (from the rocky movie) gimmick"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Cal Vamwrote on 15.08.2018:[10.0] "To be honest, I wasn't really impressed by him when I first saw him at 16 Carat Gold in the triple threat match against Bad Bones and WALTER. I didn't get what the fuss was about, but the more I watched him, the more I became interested in him. I searched for his background and soon realized that this man is all about great character work. Seriously, how can you not get behind this guy? He's putting everything into his matches and I love him more everytime I see him compete. Great in-ring psychology with almost everyone and capable of great storytelling.  I absolutely hate the fact that I missed a chance to see him live a few years ago."
Rating: 10.0
Sentiment: 0.24461279461279462
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Oliver95xwrote on 30.03.2018:[9.0] "Habe bisher nie ein schlechtes Match von ihm gesehen. Ich finde er hat Charisma und ich bin immer wieder beeindruckt was er einsteckt. Einer der besten die die wxw zu bieten hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Malay Boywrote on 29.03.2018:[10.0] "Ilja is very charismatic and energetic wrestler. I have a goosebumps when watch his entrance. He has very hard style wrestling skill and watch him fight with stiff wrestler is very exciting."
Rating: 10.0
Sentiment: 0.1893095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: TheLoudMouthwrote on 04.01.2018:[9.0] "Ein unfassbar guter Worker in Diensten der wXw, der sich über die Jahre kontinuierlich verbessert hat. Ein absoluter Charismabolzen mit ebenso starken Leistungen im Ring und am Mikrofon. Das Beste: er hat mit gerade einmal 24 Jahren immernoch unglaublich viel Potential, dass er hoffentlich ausschöpfen kann."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Wrestling Foreverwrote on 08.12.2017:[9.0] "Der Unbesiegbare bei wXw, seit er sich von Bones den wXw Shotgun Championship geholt hat, hat er kein Match verloren und da waren starke Gegner schon dabei neben Bones auch Tischer einer seiner Lehrer. Er ist auch noch sehr jung hat aber schon sehr viel drauf und man hört total an seiner Sprache er kommt aus Russland. Nur gibt es hier Probleme das ich fast nichts von ihm verstehe da er nur Russisch sprich. Untertitel bei seinen Promos würde ich sehr begrüssen. Edit 06. 01. 2017. In der aktuellen Shotgun Ausgabe hat man gehört er kann Deutsch und das richtig gut. Die Cerberus Zeit ist nun für ihn vorbei nun kommen neue Aufgabe. Die erste große die zweite Käfigschlacht bei wXw Back to the Roots XVI. @Sweeney Weiß ich auch es hat mir nur überrascht das er das so gut kann. Er ist ja Russe und da habe ich das nicht so erwartet und klar ist er nicht mehr der Unbesiegbare aber trotzdem immer noch ein sehr starker Wrestler. Edit 8. 12. 2017 Ich empfehle euch Ilja Dragunov ganz privat (Teil 1) auf YouTube anzuschauen. So ehrlich sah man ihn nie zuvor und ja sein Deutsch ist perfekt. Ohne Russischen Akzent erfährt man wieder so viel über ihn auch wie viel Scheiße er durchmachen musste."
Rating: 9.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Gloverwrote on 20.03.2017:[9.0] "His performance in this year's 16 Carat alone has given me an incredible impression of Ilja Dragunov. His energy and fire are infectious from his entrance to the finish of his matches and everything in-between. He can brawl like hell and deliver some fantastic offense, but more than anything he can tank hits like almost nobody else. After 16 Carat, Ilja is one of the main reasons why I want to follow wXw more closely."
Rating: 9.0
Sentiment: 0.49333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: DerMilanowrote on 16.03.2017:[8.0] "Einer der besten Wrestler den die wXw aktuell hat. War am Anfang nich sonderlich von ihm begeistert, hat sich aber stetig gebessert und im Jahre 2016 eine Reihe von sehr guten Matches geworkt (Käfigschlacht, Carat gegen Bailey, in Köln gegen Walter und beim Tourfinale gegen Bones). Allerdings braucht er einen Gegner, der ihn durchs Match zieht wie z. B. Walter. Daher zur Zeit noch nichts für den Main Event (World Title), sondern eher für den Shotgun Title."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: King of Darknesswrote on 12.03.2017:[10.0] "Ilja ist einfach klasse. Super stark im Ring mit einem super geilen Finisher! Er hat so so viel Charisma und überzeugt sowohl von der Ausstrahlung als auch am Mikrofon. Der Split vom Cerberus tut ihm gut und der Sieg im 16 Carat Gold Turnier wird ihn nach oben befördern. Das Gimmick eines russischen Kämpfers ist genial."
Rating: 10.0
Sentiment: 0.18333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Sweeneywrote on 02.03.2017:"@Wrestling Forever in der Bloopers ausgabe hört man, er kann viel besser deutsch als in der von dir besagten Shotgun ausgabe. Zudem wurde er schon klar besiegt. Carat 2016."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: 1893wrote on 27.10.2016:[7.0] "Der irre Ilja ist das mit Abstand beste Mitglied des Cerberus. Gibt immer Vollgas im Ring und gehört trotz seines jungen Alters wrestlerisch schon zu den Topleuten der wXw. Sein Charisma kommt auch immer besser durch."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: CGNRavenswrote on 28.08.2016:[7.0] "Ilja geht ab! Gefiel mir mit Svetlana besser als mit Polak, aber auch beim Cerberus ist er der beste im Bunde und wirkt völlig irre, so wie es sein muss. Er hat immer noch Luft nach oben, ist blutjung aber im Ring schon solide bis gut. Körperbau ist auch besser geworden - 22 Jahre jung! Das muss man sich auf der Zunge zergehen lassen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: BulletClubwrote on 19.04.2016:[9.0] "Bei Ilja ist noch so viel Luft nach oben und genau deswegen ist es schwer ihn zu bewerten wie ich finde. Man würde ihm am liebsten 10 Punkte geben aber ich denke Ilja hat noch einen langen und großen Weg vor sich."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: MaxWxWwrote on 18.03.2016:[8.0] "Hat mich beim 16 Carat überzeugt. Richtig gut ob im Tag Team oder alleine, einfach einer besten bei der wXw momentan."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: BlueDiamondwrote on 18.03.2016:[8.0] "Hat sich sowohl im Ring, als auch vom Körperbau prächtig entwickelt und macht mit seiner Zugehörigkeit zu Cerberus sowie in seiner Funktion als Tag Champion einen guten Job. Beim Carat konnte man sich sicher sein, dass wir von ihm in den nächsten Jahren noch Großes bei der wXw zu erwarten haben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: DNPwrote on 21.12.2015:[7.0] "Als Teil von Cerberus bekommt man nun ein Charisma zu sehen, welches ich zumindest bisher so von Ilja nicht kannte. Er passt perfekt zu der Gruppe und zu Adam Polak. Vom Ringkönnen her selbst erachte ich ihn jetzt schon als einen der Besten von wXw. Dragunov hat auf jeden Fall eine große Zukunft vor sich!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Viper99wrote on 12.06.2015:[8.0] "Ein Mann für die Zukunft. 22 Jahre Alt und ein wirklich guter Worker! Sein Gimmick ist Okay, aber in Ring ist er super."
Rating: 8.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Deezywrote on 06.06.2015:[9.0] "I can't believe how good he is at just 22 years of age. His toughness is incredible, bearing in mind that he took nothing away from his stiff style full of headbutts even after a skull injury."
Rating: 9.0
Sentiment: 0.43392857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Miranda7wrote on 28.05.2015:[10.0] "Mein absoluter Favorit! Er spielt fast perfekt und hat in den letzten Jahren auch kampftechnisch viel verbessert. ILJA! ILJA! ILJA!"
Rating: 10.0
Sentiment: 0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: SRwrote on 13.05.2014:[8.0] "DER Newcomer des Jahres 2013 im deutschen Wrestling. Bringt sein Gimmick fantastisch rüber und ist gut im Ring. Zurecht der erste wXw Shotgun Champion gewesen. Dann der Rückschritt durch die scheinbar langanhaltende Verletzung, mittlerweile aber schon wieder bei der GWF in Dresden aufgetreten. Kann es kaum erwarten, ihn wieder in Oberhausen begrüßen zu dürfen. Für mich einer der Wrestler, von denen ich mir in Zukunft großes erhoffe."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: affenmannwrote on 23.12.2013:[6.0] "Hat ein absolut geniales Gimmick, welches er auch super rüberbringt, und ist für wrestlerisch schon ziemlich weit, wenn man sieht, wie wenig Erfahrung er erst hat. Am Körperbau sollte allerdings noch gearbeitet werden."
Rating: 6.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Son of Libertywrote on 15.12.2013:[9.0] "Ich habe bisher noch kein schlechtes oder nicht unterhaltsames Match von Dragunov gesehen.  Leider momentan verletzt... Hoffentlich bald wieder gesund und fit.  Ich bin gespannt auf seine Zukunft im Wrestling."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Goldeneyewrote on 03.12.2013:[8.0] "Was für ein Gimmick! In Deutschland aktuell einmalig und damit für jede Veranstaltung eine besondere Attraktion. Bringt mit seiner Mimik das Gimmick wirklich gut rüber und die Verbindung mit dem Publikum stimmt. Toller Run als Shotgun-Champion den er aktuell hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Dreamforcewrote on 25.11.2013:[5.0] "Er spielt seine Rolle sehr gut und seine nette Ringbegleiterin unterstützt die Wirkung nochmal deutlich. Was die Fähigkeiten im Ring angeht, war er nicht überragend, aber auch nicht schlecht."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: cookie monsterwrote on 22.10.2013:[9.0] "Einer der sehr talentierten! Vorallem in dem Alter. Überzeugt sehr mit Gestik und Mimik, wrestlerisch ist er einer der großen Namen für die Zukunft. Mit Sveti rundet es das ganze perfekt ab. Wird in Zukunft auf jeden fall was sehr großes. Denn Talent hat er massig!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Weskerwrote on 07.10.2013:[8.0] "DRAGUNOV! DRAGUNOV! Was für ein junger Gott! Hat natürlich vom Wrestlerischen her noch einiges zu lernen, die letzten Performances haben aber gezeigt, wie gut er unterhalten kann und dass er einfach tolle Matches abliefert. Und er ist noch so verdammt jung! Spielt seine Rolle nahezu PERFEKT und zeigt im Ring echten Kampfgeist, was sofort auf das Publikum rüberspringt. Bin ziemlich gespannt, was für eine Zukunft auf diesen russischen Titanen wartet. Hier gebe ich gerne 8 Punkte, weil er einfach begeistert. Und das soll Wrestling doch am Ende des Tages tun, oder?"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Blue Meaniewrote on 20.08.2013:[8.0] "Unterhaltsames Gimmick, das er überragend spielt und optimal von seinem Valet Swetlana Kalashnikowa ergänzt wird. Wrestling Skills sind - grade angesichts seines Alters und Ringerfahrung! - klasse! Kommt mit 19 schon sehr souverän rüber und wenn er so weiter macht, ist eine Verpflichtung durch WWE eigentlich nur eine Frage der Zeit!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Matt4Wrestlingwrote on 19.08.2013:[8.0] "Ich bin zwar der Meinung, dass sowjettische Gimmicks mittlerweile out sind, oder sein müssten, aber es kommt darauf an wie man sie verkauft. Mit seinem Valet an seiner Seite und seine, für sein Alter, hervorragender Wrestling-Stil, passen einfach. Natürlich gibt es hier und da noch was zum verbessern, was er bis jetzt mit Charisma mehr als nur ausgleicht, aber ich sehe noch großes Potential. Top!"
Rating: 8.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: That 70s Blokewrote on 19.08.2013:[7.0] "Definitely one of the most promising rookies of Europe, only 19 years of age and he's already capable of stealing the show!"
Rating: 7.0
Sentiment: 0.19
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: LeonAusBOTwrote on 19.08.2013:[8.0] "Sensationelles Gimmick, mit Svetlana Kalaschnikova die passende Begleitung. Aus der Hinsicht schonmal Top. Durfte ihn nun ein paar ma in OB wrestlen sehen und es gefällt mir ziemlich gut. Der Höhepunkt natürlich das Match zwischen ihm und Blunt um den Shotgun Titel. Das war sensationell. Befindet sich auf dem richtigen Weg, da kann noch ordentlich was draus werden!"
Rating: 8.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=13179&gimmick=Ilja+Dragunov
Comment: Eddiewrote on 09.05.2013:"Ein Jahr Ringerfahrung und hat das Gimmick des Jahrhunderts. Cooler Typ dem ich natürlich keine Wertung bis dato gebe, allerdings könnte er mit seiner netten Begleitung die Entdeckung des Jahres werden. Und er schubst gerne Fans beim Entrance. Starker Mann."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Keithnelson18wrote on 11.02.2025:[7.0] "I'm 50/50 on Ospreay, he can either make me excited during a match or pissed off during a match. The dude can have a good match, but most of the time he doesn't sell when needed to or he no sells too much. If it's for a burst of energy, I accept that, but when he does it over and over in the same match, I get annoyed. Another thing, Dave overrates his matches half the time. Besides that, he's a good wrestlers and can have a good match, if he quit no selling, he would've gotten a higher score from me."
Rating: 7.0
Sentiment: 0.28583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: wrestlingswiftiewrote on 10.02.2025:[5.0] "The internet's current golden boy, Ospreay is 50/50. While he is capable of having a good match, it's gotta be with someone who REALLY can mesh well with his style. For example, I consider his matches with GUNTHER, Kenny, or Danielson to be some of his best... But if he's in there with someone like Ricochet, someone who will try to outdo his stupidness, the match becomes bullshit. I also find his matches hard to build suspense when he constantly gets up after a beatdown from the dominant wrestler. He even just legit no-sells at times, which wouldn't bother me if he didn't do it in every match, followed by a video-game looking sequence. Also, his usage of big moves is a big pet peeve for me, because he doesn't know WHEN to do them. He's one of the most 50/50 wrestlers ever, when he's good, it's excellent... But when he's bad, total crap."
Rating: 5.0
Sentiment: 0.17552083333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DDTINCwrote on 28.01.2025:[10.0] "One of those guys who can just put on a 5 star classic with anyone, whether it's Bryan Danielson or shota umino. Without a doubt the best wrestler of the past 5 Years and he is only 30."
Rating: 10.0
Sentiment: 0.22916666666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WillOspreaywrote on 23.01.2025:[10.0] "This man has been my favorite wrestler out of ANY wrestling promotion since revolution 2024. he has been putting out banger after banger, he already has multiple classics that being against Swerve at Forbidden Door, PAC at ALL OUT, and i will never forget the spectacles he put on against Bryan and Okada. i get that his style isn't for everyone, but you gotta admit he's a huge draw for AEW, his high flying and fast paced style is one in a million and he will go down in history as one of best to ever do it. it is virtually impossible to have a bad match against him. every PPV match that he has competed in is mustsee. he is only 31 years old and already established himself as possibly the best in the world."
Rating: 10.0
Sentiment: 0.14136752136752137
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: dsv the raterwrote on 21.01.2025:[10.0] "This guy is the best high flyer of all time, no joke, he's the only one who manages to surprise me with every match I see of him, it's impressive, surreal, top 5 best in the world right now without a doubt"
Rating: 10.0
Sentiment: 0.5244642857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Lukeathonwrote on 13.01.2025:[10.0] "Will Ospreay is a wrestler of 2 halves for me, the first half is when you see him wrestle on TV, while you are at home, and you think "There is NO way this guy can kick out of all of this" and it takes you out of the match a little, but by the end he's done so many cool moves at such a frantic pace with no error that you cant help but think, this guy is kinda cool. Will Ospreay's 2nd half is when you watch him live - in person. Because literally any complaint flies out the window, his wrestling style gets crowds to come alive, his move set gets the biggest reactions by far and more than anything, he makes you have an amazing time because you don't have the time in the audience to think about anything other than Will Ospreay wrestling at 90mph in front of you. To me, Ospreay is a genuine spectacle, maybe not a spectacle of Pro-wrestling as a whole but in terms of getting crowds going and perfecting his style, he's well and truly levels ahead."
Rating: 10.0
Sentiment: 0.1411405723905724
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JLHarmanwrote on 13.01.2025:[10.0] "I'll make it simple, Will Ospreay is one of the best wrestlers in history! And since January 4, 2019 he's THE best In-Ring wrestler and still is in 2025. Yes, there are many excellent wrestlers in the business, but no one has the consistency of Ospreay. It's virtually impossible to have a bad match when Ospreay is part of it. He's one of my top 3 favorite wrestlers of all time, and it wouldn't surprise me if in the years to come he reached number 1 !"
Rating: 10.0
Sentiment: 0.3620370370370371
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TWBwrote on 08.01.2025:"Osprey is absolutely one of the best in the world today. I get that his style is not for everyone but you can't deny that what he does in the ring is pure magic."
Rating: No rating found
Sentiment: 0.47857142857142854
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: darkflame4527wrote on 05.01.2025:[8.0] "Will Ospreay is one of the most exciting wrestlers on the planet, with his athleticism (mainly his agility) off the charts compared to 99.9% of wrestlers in the world. His high octane style of wrestling is objectively captivating and has produced sensational matches (favorites being vs. Oku, Danielson, and Omega) on a seemingly weekly basis. He still we always be known as the one Dave Meltzer has glazed the most with almost every match of his this year being >5* which is so unrealistic. The whole >5* thing defeats the system's purpose, but alas. His promo work is really average though. His promo trying to roast Triple H generated a lot of hate from the fans, as his animosity towards Hunter seemed pretty unwarranted as he probably wasn't even mentioning him on the Pat McAfee show. His best work has always been in NJPW, the indies, and just anywhere other than AEW. Yeah his matches in AEW have been stunning, but as a "wrestler" as a whole, his work has downgraded. I remember his promo against Kenny Omega in NJPW last year and my goodness, the raw emotion during that was amazing. He has devolved heavily from that and is losing so much respect from a lot of people. One of the best in the ring, but a complete afterthought in every other aspect of being a wrestler which is pretty unfortunate."
Rating: 8.0
Sentiment: 0.15046533713200383
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AceHagannwrote on 30.12.2024:[9.0] "Will is a genius in the ring. While he tends to base his matches on flashy maneuvers, he doesn't really need them. He is great at adapting his wrestling style based on his opponent. Charismatic, great with the crowd. He is always a highlight on a card."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: 25ChopsofDeathwrote on 30.12.2024:[10.0] "His 2024 alone gives him this rating but he's been evolving into a legend for quite some time now. One of the best sellers in the business and has good chemistry with just about any wrestler he's paired with. His WK 17 match with Kenny Omega might be my favorite match of all time and it's mainly because of his performance. Excited to see more of his legendary career in AEW"
Rating: 10.0
Sentiment: 0.605952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: HeavenlyHalberdwrote on 19.12.2024:[10.0] "Will Ospreay has been the best wrestler in the world for at least 5 years as of the time of this writing, and with his absolutely insane catalogue of great (including tons of all-time great) matches, in my mind he's cemented himself as one of the greatest wrestlers of all-time and he's still in his prime. Only a handful of other wrestlers have the amount of great matches he does, and Ospreay has done nothing but continue to innovate and improve throughout his career."
Rating: 10.0
Sentiment: 0.3305555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: coppercowrieswrote on 19.12.2024:[10.0] "Ospreay used to have some holes in his game that lowered my ranking for him a bit, but since joining AEW he has absolutely evolved and excelled. The mic time has made him a great talker and very comfortable, and he's finally got that crowd connection that eluded him a bit in New Japan. His matches are a great combination of power and spots, have calmed down into something more psychological, and when paired with another great performer always deliver."
Rating: 10.0
Sentiment: 0.29098255280073465
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BoltMelon1wrote on 17.12.2024:[10.0] "Best in the world. Most exciting wrestler of all time. Could easily become the greatest wrestler of all time. Best finisher in wrestling (Hidden Blade), best theme song in wrestling. Don't really know what else to add. He is a generational talent."
Rating: 10.0
Sentiment: 0.5851851851851851
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ZephsPancakeswrote on 12.12.2024:[10.0] "Potentially the greatest wrestler of this generation. Will is a person who I've had the pleasure of watching progress over the course of around 8 years currently and have seen him progress from one of the most spectacular high flyers of all time into a much more complete wrestler, blending many styles into his work. His transition from a junior heavyweight to a heavyweight is probably the best of all time I would argue, he has maintained influence from the likes of Marufuji and Hayabusa whilst also changing his game from the high flying "flippy" offense most people discredit him as only being, to a more high octane fast striking style with elements of high flying blended in. The most reliable "big stage" wrestler in the world currently and heralded by critics for good reason. His style may not be for everyone but most people write him off for what he used to be, instead of focusing on what he is today."
Rating: 10.0
Sentiment: 0.3266666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: justwrestlingwrote on 12.12.2024:[10.0] "Generational wrestler in my opinion. Every paper view match he delivers. Since joining AEW his mic skills has improved and he has natural charism. Need to see him be AEW champ in 2025. Some people will hate on his style but I enjoy it. His matches always got the crowd the loudest and most engaged. In 2024 he had lots of great matches from Danielson, Fletcher, Swerve, Takeshita, to the triple threat match at Wrestledream."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: SimpleJack316wrote on 05.12.2024:[10.0] "Will the thrill. A living legend. This man deserves a 10, hell make it an 11. I mean...if you want an idea on just how all-time elite this guy is(when its all said and done he's going to be one of the greatest pro wrestlers ever, hands down. Maybe THE best) just take the AEW PLEs for example since the second they signed Ospreay. Every one of them i mean EVERY SINGLE ONE take a guess at who has the highest rated(whether its WON or Cagematch or whatever source you can find) match on the card....you guessed it....Ospreay. Doesn't matter who he's facing. What the stipulation is. Where the match is on the card. He's the #1 attraction. He's the best part of the show. Month after month. PLE after PLE. He's still so young and already has as many classic/5 star/highly rated/critically acclaimed matches as legends like Kenta Kobashi and Bryan Danielson. The fans don't lie. The masses have spoken. This guy is BIG TIME. If he eventually makes the move to WWE(which i believe he's always resisted because of their policy on having him live in the USA) he will be THE guy. The next Stone cold/Rock type level of popularity. He's got a banger theme song. Great mic skills/promo work. Looks the part/has cool looking attire. He can play a PERFECT heel if he needs to(see match against Kenny Omega at Forbidden Door for example), to go along with being more over as a face as just about anyone ever. And above all else he's the single most exciting and entertaining in-ring performer this sport has ever seen. Bar none. He's set the bar at an entirely new level with the way he wrestles. His offensive arsenal/move set is unlike anything anyone has ever seen before. The pace and intensity at which he delivers his moves...to go along with the accuracy AND degree of difficulty. Its stuff of legend. He's just so freakin' cool. Everything about him. Even the catch phrases and nick names. The look and the style. That little crown thingy he does with his hands. The performance. Everything is cool. Fans eat it up. Anyone who watches and comes away thinking "all he does is flip around and he doesn't sell enough"....just know you're the extreme minority here. Maybe you're missing something/looking for the wrong things. Idk. Because when I watch all i can think of is how this man took the sport of pro wrestling, something I had already been in love with for decades, and gave me a whole new perspective on it/rekindled my childhood joy and fascination. He's special. A generational talent. And its an honor to watch him do what he does."
Rating: 10.0
Sentiment: 0.2615535608182667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: VitaminJ19wrote on 02.12.2024:"Not personally a fan of a lot of his work. A lot of it is repetition and doing moves for the sake of doing moves. I have mostly watched his AEW work, which I have found very frustrating at times to sit through with the extreme lack of selling and move spamming. Will Ospreay is the quintessential wrestler that evokes the modern era of "doing moves for the sake of doing them without thinking of why they are doing them""
Rating: No rating found
Sentiment: 0.011
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: davo2027wrote on 01.12.2024:[10.0] "Best in ring worker in the business. A very underrated seller. Great at telling stories in ring. Once in a generation performer. Any promotion would be lucky to have this guy. One of one."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: cheesewrote on 25.11.2024:[3.0] "The most repetitive wrestler I have ever seen. He has never wrestled a different match during his aew career no matter how different the beginning is, he will revert to doing the same sequence to pop the crowd. He can hardly pop the crowd without big moves, he has a lot of potential but instead he decides to wrestle like hes trying to keep the attention of a 3 year old. Its awing how people think hes the goat when he throws wrestling out of the window and decides he wants to wrestle like he's from an anime. He cant even sell a limb if he wanted to, against danielson he hits a hidden blade with the arm that was worked the entire match and for fletcher, although he sells about 5 moves, he immediately goes back to using his normal moveset with moves that involve his neck and shoulders because of his nuance to adapt to anything."
Rating: 3.0
Sentiment: 0.01726190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Maniaofmaniawrote on 13.11.2024:[7.0] "I like will's work alot but he is also far from the best in the style that goes to the prime of people like Dragon kid and cima Hayabusa and Sasuke. Hell, he even uses move named for one of them. os this loose him innovation points but other wise his match output level if not with in question output rating 90/100 innovation rating. 60/100 150/200 Total rating 75/100 or 7.5/10 round down 7"
Rating: 7.0
Sentiment: 0.15531517094017094
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Willie 19200wrote on 10.11.2024:[10.0] "This is one of the greatest high flyers in the world and an amazing technical performer. Every time I see a Will Ospreay match I'm speechless. This is a man who is 30 years old with some of the best matches with people like Okada, Naito, Omega, Ricochet, Danielson and so many others. I'm excited to see whats next for Ospreay in AEW and hope that he succeeds in his career."
Rating: 10.0
Sentiment: 0.44350000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Chr1st0phwrote on 28.10.2024:[10.0] "I think people who say he's just flips and tricks are missing what really makes Ospreay one of the best in the world right now. People can say he uses "no selling" too much, but I think he uses it to an extent that makes the match a lot more enjoyable. Would I be sad if he dialed the times he did it down, no in fact I would be a bit happier. However, when he does do his "HAAAAAAAAA" into the air and hit a hidden blade, he is always down for a while. It's adrenaline. I also believe he's a talent that can be in the midcard right now, and then next PPV cycle be a main title contender and I wouldn't bat an eye. When he say's he's the best I truly believe it, same with Kenny Omega. Look at his match catalogue this year so far in AEW. Takeshita at Revolution, Danielson at Dynasty, Roderick Strong at Double or Nothing, Swerve at Forbidden Door, MJF on Dynamite and All In, PAC at All Out, Young Bucks at Grand Slam (with Fletcher), Ricochet on Dynamite, Ricochet/Takeshita at Wrestledream. All of these matches were either my favorite match or my second favorite match on that card."
Rating: 10.0
Sentiment: 0.21223544973544972
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Wanglerwrote on 27.10.2024:[9.0] "Not keen on his Oi Oi Saveloy Mockney muppet persona and his songbook is League 2 standard heard across England every Saturday 3 pm. He's also fairly crap on the mic - yes you are, Bruv. But there's little denying that Osprey's immense in the ring with almost any opponent and his array of offence is as strong as anyone around. As the old adage used to go, put Flair / Steamboat in the ring with a mop and they could produce a watchable 20 minute match, same currently applies to Osprey."
Rating: 9.0
Sentiment: -0.05677083333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TypicalDuckywrote on 23.10.2024:[4.0] "To give him credit, this AEW run has been more enjoyable than I expected (bar the MJF matches). Ospreay isn't even the worst wrestler to work his style; he's arguably the best at it. The problem is I find his style unbearable to watch. I quite enjoy him when he's doing his fun spots with nothing past the surface level, but any time he attempts to delve below, it's impossible for me to find any enjoyment in him. God forbid Ospreay from doing a limb-work-based match. The way he structures his more serious matches is really not good. Most evident of this is something like the third Oku match, which has a solid 5 minutes that gets lost in a weirdly structured match that has conflicting ideas at the core of it. Thankfully for me, this AEW run has had a lot of fun TV tag matches; I actually wish we got him in them a lot more, as he is a very solid tag worker. Even then, him being good in these only comes from him being an incredibly explosive wrestler who functions well as a hot tag and not him having any sense of good structure and pacing. Because that's his problem, it's not really the no selling (although that also sucks), it's not the flips, it's the fact that his match structure is incredibly unappealing. He either does a match that is built around big spots, claiming to tell a story with them, or a match with his atrocious melodramatic acting. Obviously, there are exceptions. The Danielson match is pretty good, but most of the time, I really don't find this man entertaining in big matches, which is, unfortunately, what he wrestles in most of the time."
Rating: 4.0
Sentiment: 0.11585365853658541
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Daydreaminwrote on 23.10.2024:"Genuinely one of the best wrestlers I have ever seen, his matches are usually very high quality and he carries himself like a star."
Rating: No rating found
Sentiment: 0.5359999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RaidersFan4wrote on 23.10.2024:"Will Ospreay is one of the best wrestlers Ive seen awhile his matches between 2022-2024 are the best Ive ever seen in my life hes truly one of a kind wrestler and will continue to do amazing things in the future"
Rating: No rating found
Sentiment: 0.64
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TreyHalowrote on 17.10.2024:[10.0] "My current favorite wrestler and genuinely a trailblazer of his style whether you love him or hate him, at the end of the day there's only Will Ospreay and all the "clones" can't even really exist right now without being compared to him, and what makes him so special is that none of the those aforementioned clones really measure up to them (as much as I do think some of them are overhated), he's one of the greatest talents of this generation and in a lot of ways he changed how I view wrestling, I used to view it in a "whatever I don't like is bad" way as if there is a definitive right or wrong way to do it, when in reality wrestling is a subjective ART that can be approached in millions of ways and nobody does the "Ospreay way" even remotely as well as Will himself, and it's very likely nobody ever will, he kept my love for the game alive in 2019 when I was dwindling on wrestling entirely, so it's only right I give him a 10 now, especially considering his match catalog is legitimately endless, so for all of that, I bestow a beautiful perfect 10/10..."
Rating: 10.0
Sentiment: 0.14960317460317463
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: NoaHS106wrote on 16.10.2024:[9.0] "Für mich ist er der Beste Wrestler im Bereich seines Stils den er Wrestelt. Auch Promotechnicch ist er seht stark auch wenn da noch ein wenig Luft nach oben ist. Und zu seiner Aura muss ich wohl nicht sagen."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Essalimwrote on 08.10.2024:[9.0] "Ospreay is one of the most innovative and athletic wrestlers in the world. His ability to execute incredibly complex and risky high-flying maneuvers with precision is world-class. When it comes to mic skills, though not his strongest asset, Ospreay has grown on the mic over time but i still wanna see him doing better and better when he grabs the mic. What I dont like about Ospreay? His selling, and sometimes he exaggerates his flying moves to the point that he takes them out of the context of wrestling and enters into a show and a circus."
Rating: 9.0
Sentiment: 0.33999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BiosJoshiBarwrote on 07.10.2024:[2.0] "I'll be honest: the "Hybrid High Flyer" style no longer captivates me. When I first delved into independent wrestling around 2007, it was thrilling and fresh. Fast forward 15 years, and this style has stagnated, showing little evolution or variation. Matches featuring Will and similar wrestlers often feel repetitive, lacking any real change or innovation. I recognize that Will faces a significant amount of criticism from certain fans, and I worry I might get grouped into that sentiment. However, I'm not here to claim that "it's not wrestling" or that this style should vanish. My concern is that this approach has dominated modern wrestling, with Will leading the charge, and it feels like a missed opportunity for growth and diversity in the sport."
Rating: 2.0
Sentiment: 0.1651275510204082
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Nootnootwrote on 03.10.2024:[9.0] "As a pure athlete, there are a tiny number of wrestlers who come anywhere close to Ospreay. His conditioning, physical stamina and match pacing are all top tier, and that is worthy of praise. I find myself sucked into his matches as though Im watching an Olympic masterclass in gymnastics and athletics combined. This can be a double edged sword, and some of his matches might trend towards formulaic- he has a style, he executes that style well and he sticks to it- but it makes sense from a performance perspective for him to stick to what hes good at, especially since its a style that so many others try to emulate. Its a style I enjoy, so Ill rate it highly, but similarly? There are some valid critiques, rather than bad faith blind criticism for the sake of criticism. His promo work has improved a lot on the mic ever since stepping up to heavyweight wrestling and embracing an authenticity in his personality post injury return and babyface turn in NJPW. I find his best opponent to be ZSJ- the two men drag each other out of their respective comfort zones in a way few others do. Ill never be bored watching Will work, because for pure spectacle and surprising amounts of substance , hell never disappoint. 9/10 for me"
Rating: 9.0
Sentiment: 0.06387619047619049
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RaysBruwrote on 26.09.2024:[10.0] "Will Ospreay is the best wrestler right now, able to adapt to nearly any style and opponent. He portrays emotion well, making his promos feel authentic and allowing me to become invested in his matches."
Rating: 10.0
Sentiment: 0.47714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Breakdawallzwrote on 20.09.2024:[9.0] "[9.0] Will is one of those wrestlers that you look at and just say wow how does he even do that. When it's all said and done I truly believe that he will go down as one of the top 5 wrestles to have ever lived."
Rating: 9.0
Sentiment: 0.14814814814814814
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: NPCwrote on 20.09.2024:[9.0] "Arguably one of the best wrestlers that i have ever seen on my tenure as a wrestling fan, his moves are brutal and perfectly executed. Him and Kenny Omega are a match made in heaven with their matches. However, the only thing that he's kinda lacking is his promo skills. But overall a phenomenal (no pun intended) wrestler."
Rating: 9.0
Sentiment: 0.2708333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Saladbagelwrote on 20.09.2024:[9.0] "Will Ospreay never seems to have bad matches. His in-ring talent is exceptional. He's not a 10/10 since he's not a complete package just yet (although he has been improving his promo game over the years), so a 9/10 will suffice here."
Rating: 9.0
Sentiment: -0.1208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: maven loverwrote on 20.09.2024:[5.0] "I'm deeply baffled by the way contemporary culture sees this guy as the next coming of Jesus Christ. I would be foolish to rate sub-5, because he's clearly talented; his high-flying, Omega-esque style can be very beautiful at times, & when (& only when) he is paired with someone he meshes well with he can really bang out a fun, solid 20 minute affair, but Will Ospreay is not a wrestler without his problems and issues. He never sells, his promos are weak, he spams big moves, he kicks out of big moves all the time; his matches never breathe, he's the epitome of a "non-psychology worker" in modern society, & his recent "Omg it's Meltzer, yeah! " & "Nobody is on my level" comments are the last sort of thing that AEW needs right now. He can be fun in ring, but this rating just seems unreal to me."
Rating: 5.0
Sentiment: 0.16337535014005602
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: trickwillywonkawrote on 17.09.2024:"Extremely talented in the ring and a future legend. He is alright when it comes to presence and talking although that doesn't hurt his appeal. The only thing holding him a bit back for me personally is the booking, hopefully it will improve in the future. As it stands, he is a future pro wrestling GOAT."
Rating: No rating found
Sentiment: 0.09999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: missilemilwrote on 16.09.2024:"Honestly, the GOAT of the current wrestling landscape. He has not had a bad or even average match with anybody yet since debuting in AEW. Everything he touches gets a serious match feel, and you cannot duplicate that."
Rating: No rating found
Sentiment: -0.11666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Icekommanderwrote on 09.09.2024:[10.0] "As of the moment I'm writing this, probably the single wrestler that I am most excited about watching. While I can respect knocking him a point or two because you don't like his out-of-ring work, for me the number one quality I am looking for in my wrestling is having great matches and nobody is more electrifying in 2024 than Will Ospreay."
Rating: 10.0
Sentiment: 0.4207142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: travis807wrote on 08.09.2024:[10.0] "He's the consensus Best In The World for a reason. Not since RVD have I had the pleasure of watching a wrestler so ahead of his time in terms of what he can physically do in the ring. Will has also proven himself to be a great promo and storyteller. I've lost track of how many times I've thought "that's the best match I've ever seen" in the last couple years. He's the best."
Rating: 10.0
Sentiment: 0.6142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: jsbortswrote on 08.09.2024:[10.0] "Yeah, i'm not sure why he gets so much hate. Will Ospreay is probably the peak (at this point in time) of a high flying wrestler, having adjusted well to remove a lot of the things that create discomfort watching him (i.e. landing on his neck for no reason constantly), and having developed really well off styles of the past. Ospreay clearly has a really huge appreciation for wrestling before him and incorporates a lot of wresting history into his presentation, so it really feels like almost every match he has is a love letter of sorts to wrestling. He is not my favorite style of wrestler, but he is undeniably incredible at what he does, and if I'm going to show any person who doesn't watch wrestling a match, he's one of the first three or four wrestlers I'd show them."
Rating: 10.0
Sentiment: 0.14357142857142854
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: danzitorockwrote on 06.09.2024:[9.0] "One of the most divisive and influential wrestlers of his generation, I really like Ospreay, I think the real problem is the guys that try to copy him, but the original is very good. I'm not a fan of everything he does, but his capacity of working great matches is undeniable, it's a shame that he gives too much for people that are absurdly beneath him, I don't like this, but it's his choice, it shows how much of a generous and unselfish person he is, he's always trying to have great matches and showcase his opponents the same way he does to himself. His major flaws are the selling and the lack of improvisation, Ospreay has a strict formula of things that work, and a lot of his matches feel the same, sometimes it become more about the athleticism and moves than story and emotion, and I'm not the biggest fan of that. With that said, I like a lot of his works, and I don't know if this is an unpopular opinion, but I like him as a character even more than I do as a wrestler, I think he can speak very well and it's really versatile when it comes to fit in any role. Started as a skinny highflyer, but over the years gained a lot of muscle and added power moves into his arsenal, becoming a very complete wrestler. He was always very appealing."
Rating: 9.0
Sentiment: 0.32273809523809527
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Kevichellawrote on 20.08.2024:[10.0] "Im not a fan of giving out 10s when theres always room for improvement, but to me, giving Will Ospreay a 9 would feel like Im undervaluing him. His in-ring work and story telling is exceptional. Kenny Omega is my favourite wrestler for the same reasons as Will (and their matches together wow) but its very likely that Will may take my number 1 slot."
Rating: 10.0
Sentiment: 0.19166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BULLETCLUB4EVERwrote on 12.08.2024:[10.0] "The greatest wrestler right now! He remember to me the TNA AJ Styles. He is also amazing at the promos. Happy to see him in AEW"
Rating: 10.0
Sentiment: 0.6892857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: CorpusSkiptotelicumwrote on 10.08.2024:[9.0] "Probably the highest ceiling of any wrestler ever. It's been said many times, but if you could build a wrestler in a computer, it would be him. Hell of an athlete, everything he does looks good. Mechanically sound, crisp, explosive, solid technical ability, high impact and looks like it hurts. Pretty much fearless in the ring and capable of the most insane spots and bumps you could imagine. Incredible progression since his ultra flippy early years into a heavyweight style. There's a big difference between him and other US workrate guys like Adam Cole and Johnny Gargano, they may do the same moves in theory, but the execution from Ospreay is many tiers above. The questions around Ospreay have always been about his head. He takes the Kenny Omega type maximalism and drops it on almost every match he's in. It's no recent criticism of his, but in making every match an "epic", sometimes they blend together when you've seen too many of them. His selling is also spotty at best, there are many of his better matches that would be taken to another level if he was more consistent. His matches sometimes lack structure and turn into back and forward bombfests. If he could learn to do these things consistently, he'd be one of the greatest ever. For me personally, he's just so good at execution that I still enjoy pretty much all his matches even with all the problems they tend to have. Now that he's in an american promotion and has dramatically improved in things like promos, I have hope that he can finally start bringing things together. He's still pretty young and has a long way to go."
Rating: 9.0
Sentiment: 0.24962499999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: nabigoyewrote on 01.08.2024:[6.0] "Leider ist Will Ospreay überhaupt nicht mein Fall. Er ist ein super Athlet und kann tolle Moves zeigen aber das wars denn für mich leider auch. Wenn auch nicht so schlimm wie vor einigen Jahren, gefällt mir dieses flippy floppy immer noch nicht. Mal, klar ganz nice, aber allgemein ist es mir einfach zu viel. Selling ist ebenfalls schwierig, da egal welcher Move, kaum den Impact hat, den er haben sollte. Zudem stört mich das jedes Match dieses "Epic feel" haben muss, wodurch einfach große Moves gespammed werden ohne Impact zu haben und in der häufigkeit die besonderheit verlieren. Ich kann verstehen warum viele ihn gut finden, aber meins ist es einfach nicht."
Rating: 6.0
Sentiment: 0.3444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: namisuzwrote on 30.07.2024:[8.0] "Will Ospreay is a skilled and athletic performer, known for his high-flying moves and dynamic matches. However, his reliance on these high-risk maneuvers can sometimes come at the expense of storytelling and ring psychology. He often undersells his opponents' moves, which can take away from the match's overall realism. Recently, there have been noticeable mistakes in his performances, which highlight the need for more precision and consistency. While he has the potential to be one of the best, focusing on these areas could enhance his overall presentation and longevity in the industry."
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: SigmaAngeloAsteriawrote on 28.07.2024:[7.0] "I do not understand why he is so highly rated. He is good in the ring, but a lot of other wrestlers can outshine him. Decent promo, he can talk, even though some of his promos are awful. And he has that problem of no-selling, which makes sometimes finishers look completely redundant. If he sells a little bit more, he'd definitely get an 8 or 9, but for the moment, just a 7"
Rating: 7.0
Sentiment: 0.0015740740740740672
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: felixshanewesternwrote on 27.07.2024:[10.0] "In years to come we might very well see Will Ospreay as the greatest to ever do it. For now, he's one of the best wrestlers in the world, who is constantly improving. He has one of the best match catalogues ever, is a decent promo, and has strong presentation."
Rating: 10.0
Sentiment: 0.5428571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: A 64wrote on 24.07.2024:[10.0] "The fact that this man can put 5 star classics very often in a very small period of time yet he's just in his early 30s is genuinely scary. Future GOAT for sure."
Rating: 10.0
Sentiment: -0.00416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: XNoWayKemoSabeXwrote on 24.07.2024:[10.0] "The Billy G.O.A.T himself! I've only really seen his AEW work and some clips from NJPW but this dude is legit built different. His most recent matches with MJF and Swerve are just a testament to the fact that this dude can GO! He's (in my opinion) the best in the world right now."
Rating: 10.0
Sentiment: 0.2836734693877551
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Aspionwrote on 22.07.2024:[10.0] "(Sorry english is not my firtst language) Probably the best highflyer in history, Im still waiting for his big moment with some main title and long rain (expect revpro)"
Rating: 10.0
Sentiment: 0.10277777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: woolyshamblerwrote on 21.07.2024:[4.0] "this guy stopped being good around when he was moving up from junior heavyweight to heavyweight in NJPW. i never want to see ospreay in a 40 minute main event because of his well-documented problems with doing believable moment-to-moment selling. his crazy athleticism works against him because he performs his moves _too_ perfectly, given the grueling nature of a main event heavyweight match. a wrestler for the social media age, ospreay's wrestling is not best watched as part of a full match, but as contextless 10 second clips posted online for engagement."
Rating: 4.0
Sentiment: 0.1816666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Hazelyzewrote on 19.07.2024:[6.0] "He's freakishly athletic, yeah. His entrance theme is great, yeah. And when in there with someone like a Danielson or Omega or Takagi or another on that level, he can make some magic happen. But I often feel a sense of... inauthenticity in his work that I never really felt with other super highly acclaimed workers. Often his matches feel less like a flowing story and more like a checklist of things to make fans believe he is the greatest in the world. And unlike an Omega, he does not have a protected finisher. Everyone kicks out of the Hidden Blade. Everyone kicks out of the Storm Breaker. I seem to recall even the Tiger Driver got a 1-count kickout, which makes the current "why am I so violent" story feel again, inauthentic."
Rating: 6.0
Sentiment: 0.16124999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Dkexwrote on 18.07.2024:[10.0] "Er mag ja ein A... sein, aber wenn man das bewerten müsste, hätten hier einige Wrestler ganz andere Punktewertungen. Im Ring ist er absolut fantastisch und gilt legitim als einer der Besten der Welt, vielleicht sogar der beste Wrestler der Welt. Dazu hat er eine Tonne an Ausstrahlung, seine Micskills sind nicht überragend, aber richtig gut. Das Macht ihn zu einen der besten Gesamtpakete im Wrestling aktuell. Er hat schon soviele denkwürdige Matches geworked, das es schon verrückt ist, und der Mann ist erst 31. Er ist eine zukünftige Legende im Pro Wrestling, ohne Zweifel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Joe907wrote on 16.07.2024:[10.0] "Overall the best wreslter of this generation. Will Ospreay is the most talented wreslter ever. He can do it all. Lucha, British, Japanese style. He can hit you with an os-cutter, hidden blade, or stormbreaker. He has a lot of matches that are just mind-blowing awesome. He is just on another level bruv."
Rating: 10.0
Sentiment: 0.3791666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: SlapViperLLCwrote on 14.07.2024:[4.0] "Will Ospreay is a generational talent, Ill give him that but he hasnt surprised me or even pop me when watching AEW and throughout his career as well. Hes the type of guy that wants great matches but also wants the ratings and reviews from others that some say it really doesnt matter. I wish he worked on his skill and grappling while also trying to separate from his remaining high flying spots and risking anymore damage to himself that he hasnt or will receive in the future. And his promo skills, good talker but he keeps repeating the same words like bruv, that really gets a bit tiredsome after the third week but that could be just me. Entrance is at least a plus, I will admit his theme has been stuck in my head for awhile now, hopefully they dont change it in the future. In closing, I wish him nothing but the best in his career in AEW and beyond but I will say that I will not be becoming a fan anytime soon and maybe never."
Rating: 4.0
Sentiment: 0.200625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JBruce1018wrote on 11.07.2024:[9.0] "Very few issues with Ospreay, but promos and selling are it. However, before I was able to watch him more often, I wouldve thought he was a no-sell king and the worst promo of all-time, which hes neither of those. I dont particularly love his style of storytelling in the ring, but this chap definitely can tell a story his way. I also find him pretty charming in his out of the ring interviews, which I wish he was able to carry over to his promo work. Ill keep watching him and this score could definitely go up as I see more and I cant imagine that it would fall with how outstanding he is in between the ropes."
Rating: 9.0
Sentiment: 0.16846153846153847
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: gabsdaverowrote on 02.07.2024:[9.0] "Hes amazing. Absolutely stunning. The only issue I have with him is his lack of selling in every match, and being kinda reckless with his grappling moves. Other than that, and hes one of the best ever. Still many years to come, , what a dude!"
Rating: 9.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: likethemousewrote on 01.07.2024:[10.0] "My personal favourite wrestler and he also almost single handedly got me back into pro wrestling over the past year. His moveset is so impressive and executes them all so smoothly its such a treat to watch. Future AEW champion 100%"
Rating: 10.0
Sentiment: 0.1348214285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Cletxawrote on 01.07.2024:[9.0] "Ospreay is a tremendous wrestler. I feel its quality every time I watch it. He can do very good work even with wrestlers far below his level. But there is one problem, it doesn't sell at all, and this is very damaging to realism. We know he can sell, but he does it very rarely. He deserves 10 points for his skills in the ring, but because of this aspect, he is not completely perfect. Not 9, not 10, completely 9.5."
Rating: 9.0
Sentiment: 0.21904761904761902
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Hatefwrote on 21.06.2024:[10.0] "without a doubt, one of the best of all time! his in-ring skills are really sick and stunning and it makes almost all of his matches very enjoyable! he can give every single wrestler, their best match of their entire career. bro is in his early 30s and has accomplished lots of things with tons of banger matches! usually, wrestlers with very high ring skills are not very good at promos or on the mic but Will, is also very good in those things and he's proven it since he joined AEW!"
Rating: 10.0
Sentiment: 0.2742734573119189
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: FrightenedRabbitwrote on 18.06.2024:[10.0] "Still young, right now probably the best wrestler in ring, pretty charismatic, the future of this guy is really brilliant"
Rating: 10.0
Sentiment: 0.4336734693877551
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RealGrapsThomsenwrote on 09.06.2024:[8.0] "Dont get me wrong, Ospreay is a good wrestler, but one thing that really holds him back for me is how he does not sell at all. He can cut a good promo and he can do great moves, but it can just be so frustrating when he gets dropped on his neck multiple times only to either kick out at 1 or just simply pop up like nothing happened at all."
Rating: 8.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: StardomIconwrote on 04.06.2024:[6.0] "I mean this sincerely, but if I was a teenager, Will Ospreay would be my favorite wrestler. When I was younger, I equated professional wrestling with cool moves. As I got older though, I realized wrestling is so much more than spamming moves. Like a great musical album, I prefer pacing and actually enjoy downtime, as it makes the big moments stand out more. I like heartfelt promos, evolving character work, and watching people overcome adversity. With that being said, Will is just not my cup of tea, although I wouldn't argue with anyone who loves to watch him. Using Bret Hart's criteria of rating a wrestler by look, promo, and in-ring ability, here goes. Starting with look, Ospreay performs well in this category. Although his gimmick seems to never change, his look is suitable for his style. His promo work isn't for me, but I don't think that's where he is focused anyways, as the majority of his ability to get over stems from his in-ring athleticism. There's no denying Ospreay is an all-time great athlete, but his matches just don't hold much meaning for me. It doesn't look like he is trying to win a fight as much as he is trying to show off new flips and highly choreographed counters. Also, I've never seen anyone win a match following a handspring moonsault to the outside of the ring, no matter how flashy it looked. I would have liked to have seen Will in WWE just because I would like to see him take on new challenges. I'm glad he can have better quality, long matches in AEW, but I would have liked to seen him evolve. Could he handle more complex character work or evolving storylines? Could he get over with a new audience? Ospreay is entertaining to watch in AEW, but it's not much different than his NJPW work. So in conclusion, Ospreay is a generational talent, but wrestling is so much more than spamming flashy moves. The best wrestlers evoke emotions out of audiences in a myriad of ways, and I'm not sure if Ospreay is capable of that."
Rating: 6.0
Sentiment: 0.2553156565656565
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: mr-peanut-butterwrote on 01.06.2024:"I find it incredible that people sit behind a keyboard and critique Ospreay, claiming he does too much of this or too little of the other. If you cannot sit back and just enjoy the absolutely amazing things this guy can do in the ring then you are probably just jaded by the constant negativity that surrounds modern wrestling. I think Ospreay is incredible, i have had the fortune to see him wrestle live and he's even more impressive up close. Must watch for me whenever I know he's wrestling on a PPV."
Rating: No rating found
Sentiment: 0.29456168831168833
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Yokoyamawrote on 29.05.2024:[10.0] "He still has an amazing future in front of him, but we can already confirm that he is going to be remembered as one of the greatest wrestlers of all time"
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: gamzeewrote on 27.05.2024:[10.0] "one of the greatest of all time and an incredibly multifaceted and talented artist. when he retires, the wrestling world will weep."
Rating: 10.0
Sentiment: 0.8666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WrestlingGuruwrote on 26.05.2024:[10.0] "Will Ospreay will go down as one of the ebst high flyers of all time but he isn't just that. He can wrestle all styles in wrestling, it's jsut high flying is definitely his strong suit. I wrongly assumed he was a one trick pony and he proved me wrong and i'm glad he did. Everything Ospreay does is perfect. His promos are also much ebtter tahn they have any right to be. What a talent. A generational talent, he's no joke."
Rating: 10.0
Sentiment: 0.14395382395382395
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GhassaneJabriwrote on 20.05.2024:[10.0] "As of the day I'm writing this, Will Ospreay is easily the best wrestler in the world. Not only has he earned his title of Mr. 5 Stars, but he's easily the most reliable athlete for big matches. His extremely high-flying style was very cool, but his transition to one that relies more on technicality has caused his wrestling to be incredibly fitting for any of the great athletes he faced somehow. He is incredibly fluid and brutal when he needs to and his performances are always incredible to witness, and he proved it time and time again against some of the best wrestlers of his generation (Kenny Omega, Shingo Takagi, Bryan Danielson, Okada...)."
Rating: 10.0
Sentiment: 0.36811111111111117
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Matugawrote on 13.05.2024:[8.0] "Extremely impressive and well-rounded wrestler, but it feels like at some point his matches have become slightly formulaic although still incredible due to the sheer athleticism and technique on display. To be frank, although the AEW audience eats up everything he does, I personally would prefer a bit more variety and experimentation because although the Danielson match was amazing, I would've liked for it to be a more Danielson style match than what it ended up being."
Rating: 8.0
Sentiment: 0.3975
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WrestlemaniaConnorwrote on 13.05.2024:[8.0] "I saw a video of him doing his crazy moves Im impressed by how hes doing and when he comes back he will be Winning more than ever."
Rating: 8.0
Sentiment: 0.27999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: OldSchoolFan3098wrote on 10.05.2024:[8.0] "Will is a talent that has grown leaps and bounds since he debuted. While his in ring work is very good, he has at times not delivered when it comes to his promos. The quality Will has in his matches has been amazing especially since he graduated up to the heavyweight class. His recent work has been great as his match at Dynasty was one of the best I've seen in a long time. As a fan, when you see a talent being able to have a great match no matter the opponent, you have to respect that. I think he has a bright future not only in AEW but also in any other company he might participate in."
Rating: 8.0
Sentiment: 0.3950000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: leonconnelly652wrote on 09.05.2024:[6.0] "Amazing athlete it's just something about his ring presence that bothers me. Its like a lack of aura of something he doesn't seem like a badass warrior to me, he's a guy who can do cool flippy shit not much more to me. And His facials can be incredibly cringe and overacted"
Rating: 6.0
Sentiment: 0.27999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: An Wrestling Guy12wrote on 04.05.2024:[10.0] "Ospreay. The best wrestler right now. Every match of him is ******. The guy has the best matches. Nothing lower than a 10. If there was an 19, I would give him that."
Rating: 10.0
Sentiment: 0.7619047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ahdude36wrote on 03.05.2024:[10.0] "At that age, already being the current best wrestler in the world and having beaten the majority of the top guys in the business(that he's able to currently). Absolutely incredible. His aura on TV is ridiculous with the crowd. He can do almost any type of wrestling and pull of some of the most insanely cool moves you will ever see."
Rating: 10.0
Sentiment: 0.4270833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Pigeon Scratchwrote on 29.04.2024:[10.0] "Already one of the best wrestlers of all time. Incredibly charismatic, a massive amount of personality, and someone so incredibly special and one of a kind, who genuinely puts in his all in every match he's a part of. A massive inspiration for neurodivergent people too. I've only recently started watching him and he's become one of my absolute favorites in under a quarter of a year."
Rating: 10.0
Sentiment: 0.3057142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: CoRdelwrote on 25.04.2024:[10.0] "Following this lad since his early years in NJPW, where he was just the greatest high-flying alongside Ricochet. Seeing him becoming heavyweight and being involveld in many more matches with pillars of modern japanese wrestling. Now, just travelling the globe to elevate everyone and create banger matches. Ospreay is already a legend."
Rating: 10.0
Sentiment: 0.34375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: devwilwrote on 24.04.2024:[9.0] "(From 2022) Ospreay is... like... 9.49/10 for me, if we're rounding. As far as his abilities in the ring go, I don't think there's much of an argument against him as a virtually perfect performer; I almost always LOVE his matches. My problem is there's just always something missing from him as a "character": I don't really love what I've seen of his United Empire stuff; he was decent as a super earnest babyface, but I think that's slightly limiting too. At risk of playing into their feud too much, the difference between Omega and Ospreay is that Omega is a really entertaining personality both during matches and outside of matches. Conversely, Ospreay--at this point--just isn't charismatic enough for me to throw the full 10/10 at him. But he's shockingly still young enough that he could still land on a character/personality that pushes my rating to 10! (2024 update) I'm not changing my rating but I'm more confident than ever that he will never be a 10 for me. He's just too unpleasant of a personality (beyond any face/heel dynamics)."
Rating: 9.0
Sentiment: 0.16349206349206352
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: jcheng777wrote on 24.04.2024:[10.0] "A complete package in the ring. His heel run has completely elevated him to a completely new level. Possesses probably the most explosive and electric in ring repertoire currently and will likely be a top 5 in ring worker of all time when its all said and done."
Rating: 10.0
Sentiment: 0.19090909090909092
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: nizzyhizzywrote on 23.04.2024:[8.0] "I changed my mind about Will Ospreay after the match with Danielson, it reminded me how much I loved this dude as Jr Heavyweight and despite him doing a lot of the same stuff over and over again, I don't really mind it as much anymore. Dude's a hell of a talent, a great asset to any company he signs with."
Rating: 8.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Daigotsuwrote on 23.04.2024:[10.0] "Will is the total package. He's got great babyface energy and can connect with the crowd. And his in-ring work speaks for itself. For most of the 2020s he's been the best wrestler in the world by some distance. Electrifying style that can mesh with anybody."
Rating: 10.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: wildothedildowrote on 23.04.2024:[10.0] "I honestly believe when it is all said in done. Will will have an amazing claim to being the best wrestler who had ever lived. The man is legit on a different level in terms of in ring work and has become an amazing promo. The dude seems to love wrestling so much. I understand that his style is not everyone's cup of tea but when it is said and done he will be an undeniable great."
Rating: 10.0
Sentiment: 0.5375000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Scott Blaculawrote on 23.04.2024:[7.0] "There are some things about Ospreay I find undeniably good. I really dig the intensity he can bring to his matches. He has some pretty remarkable cardio. HIs agility and precision are outstanding. He can even be fairly charismatic on the mic. With all those good things being said, when watching his matches, I am often struck by one prevailing thought: I kind of wish he'd pull back some. By that I mean I wish he would, at times, work a bit more conservatively. Much of that intensity I like can be overdone a bit for my taste, often leading matches where he feels akin to spamming special moves in a fighting game. The athleticism is impressive, but it has the effect of much of his matches feeling less like a well told story and more like an acrobatics exhibition. There are two matches where I think he's performed his style in a why I found very appealing. One was his match against Walter (Gunther) and the other was (most of) his match against Kenny Omega at Forbidden Door 2023. I want to like his work more, but I'm left thinking much of his matches are the same."
Rating: 7.0
Sentiment: 0.3121190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: CSTLWwrote on 23.04.2024:[10.0] "Undisputed best wrestler in the world, already one of the best in the ring all time, and hes not even 30. The way he is able to incorporate high-flying moves without making it look like guys are waiting to catch him is incredible. To those who call him a flippy flop wrestler, you are blind to his amazing hard-hitting offense outside of his other-worldly acrobatics. One of the best choppers in the game right now, his strikes are cringy (in a good way) and the hidden blade is still one of the most brutal-looking moves in history. He really has it all. Even if he had the charisma of a wet towel, he would still get a 10 from me solely based on how good he is in the ring. Hell, even take away his aerobics and he would still be at least a 9. Will Ospreay is a legend, and were not even halfway into his career. [EDIT] the best wrestler in the world today and anyone who doubts it takes wrestling way too seriously."
Rating: 10.0
Sentiment: 0.3466165413533835
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: sarahlicitywrote on 23.04.2024:[10.0] "You can say what you like about his personal conduct, but when it comes to between the ropes, Ospreay is simply undeniable. Like Omega, like Okada, like Danielson, it is incredibly hard, if not completely impossible, for Ospreay to put on a bad match. The man is only 30 and yet he's got a catalogue of amazing matches that rivals the "good matches" catalogue of many insanely talented wrestlers. In the past twelve months alone: Danielson, Takeshita, Alexander, Umino, Bailey, Sabre Jr, Tsuji, Naito, Omega II. You might look at Dave Meltzer's star ratings and think he's too generous to Ospreay, but no, he's the real fuckin' deal."
Rating: 10.0
Sentiment: 0.14930555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: bigotownsendwrote on 21.04.2024:[10.0] "He is what he says he is. Puts 110% into every single match and is one of the very best workers going today. One of the only complaints I ever used to see about Ospreay was his mic work, and even then he has improved tenfold and has more than come into his own as a fantastic promo. He has the potential to become the ace of AEW in the coming years and its not out of the realm of possibility that he could become a huge draw for them considering every single one of his matches is must-see. Ive seen this guy go from a skinny kid doing flips on the indies to one of the best professional wrestlers in the world in the span of about 6 or 7 years. There is only going up for Will Ospreay (hes elevated, you might say)."
Rating: 10.0
Sentiment: 0.3214285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Punkman21wrote on 11.04.2024:[10.0] "Ospreay is a fantastic wrestler. Incredibly athletic, his moveset is out of this world, and I'm extremely excited for the future of his career. Certainly AEW's MVP going forward, alongside Swerve. His promos are engaging enough, but in the ring is where he truly shines. Can't give him anything less than a 10."
Rating: 10.0
Sentiment: 0.26532738095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RaySivanuiwrote on 10.04.2024:[7.0] "He's very athletic. I've watched a bunch of his matches, from Walter, to Omega, to Dunn. One thing that some of these guys do that makes it hard for me to put them up there at the top is no-selling. There's too many instances where he gets hit, puts his head down, and when whoever he's facing runs to the ropes it's like he never got hit at all and he charges them. I've been a wrestling fan since Hogan and Warrior and Rude and King Haku. If big hits don't register, I immediately think "this is fake". Years later today, I grew up obviously and I know it's all fake, but don't try to convince me it's real by doing fake things like no-selling. If you want the audience to buy your "work", sell like it's real."
Rating: 7.0
Sentiment: -0.04623015873015874
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Kevlar1787wrote on 04.04.2024:[10.0] "Will Ospreay may be the single best wrestler on the planet today. Not only can he have some of the greatest matches you can see today with other top-tier talent, he can even draw out incredible performances from wrestlers below him on the talent scale. His evolution as a performer from that first Ricochet match I watch has been truly astounding. His promo style is unique and engaging, and his character work is simple and relatable. The absolute total package of a wrester in the modern era."
Rating: 10.0
Sentiment: 0.3377551020408164
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Jacksonwrote on 03.04.2024:"Great wrestler. Amazing matches against Kenny Omega, Kazuchika Okada and Zack Sabre Jr. Great theme song too"
Rating: No rating found
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DENDYwrote on 29.03.2024:[7.0] "Ospreay is a weird one for me. I genuinely dislike the guy due to behaviour outside the ring surrounding Sid Scala, and in the ring Im not sure if hes as good as people say. Hes undeniably incredibly athletic, but it can feel like hes cosplaying other, better, wrestlers often. When I see an Ospreay match I will often see the best bits of other bouts with better workers, but just pushed together without the psychology. I never really buy his selling or facial expressions, his promos will often just be borderline unwatchable also. Ill avoid including my personal feelings toward him as a guy who I dont think should be where he is in the industry due to the defence of an abuser like Scala and the blacklisting of talents who spoke out against him, as horrific as those things are, but I still don't feel I could rate him higher than an 7. His best matches are always with workers who are better and more charismatic than him, hes the worst when were supposed to root for him, hes just too unlikeable."
Rating: 7.0
Sentiment: 0.12083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Lalo Camposwrote on 25.03.2024:[10.0] "One of the best wrestlers of all time, he will receive his flowers at the end of his legendary career, but he is one of the best on the planet today, if not the best on the planet."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: May11wrote on 18.03.2024:[9.0] "He is one of the most talented wrestler. He can also cut good promos. And i am also excited to see him on weekly tv."
Rating: 9.0
Sentiment: 0.56875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: jjcharg77wrote on 18.03.2024:[9.0] "I need to see ore of him cause ive seen highlights of him pre aew and only his aew run so far but hes looking like legit thee best wrestler in the world. miles ahead of anyone in any company"
Rating: 9.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TripleCrownwrote on 17.03.2024:[10.0] "I hate to rate him so highly, simply because I just don't like him. But I would be incredibly stupid to let my personal feelings about him cloud my judgement on his ability as a professional wrestler. He is truly one of the best ever. Does he do some stupid things in-ring that could really, really hurt himself? Yeah, but Mitsuharu Misawa is my favourite wrestler of all time and he did the exact same thing. Ospreay has innovated a lot of moves and put on incredible matches. The only thing I could really put him down on is his promos, personally I don't think he's very good, he has charisma but his work on the mic isn't up there, yet. Would've done better going to WWE in my opinion, as they would reel him in a little bit and improve on the small shortcomings. At least in AEW he's able to do what he wants, wrestle the way he wants, and I guess that's the most important thing as a performer."
Rating: 10.0
Sentiment: 0.10267777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ultravioletshiroiwrote on 11.03.2024:[10.0] "Will Ospreay is one of the best wrestlers ever. He can execute high flying moves, strikes and grapples flawlessly. He can sell like a million bucks and he regularly wrestled 5 star matches in Japan and his match against Chris Jericho in AEW. He has also proven in AEW that he pretty good mic skills. He's truly a jack of all trades."
Rating: 10.0
Sentiment: 0.5183333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: morgomirwrote on 08.03.2024:[10.0] "He is actually the best pro wrestler in the world. No matter who his opponent is, in every company, the match will be great. He's probably the best recruit for All Elite Wrestling. He's a high flyer, with also powermoves et brawling styles, a total package. Only 30 years old, and a lot of legendary matches, a lot of 5-stars + matches."
Rating: 10.0
Sentiment: 0.4511111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MichaelB137182wrote on 08.03.2024:[9.0] "This rating system shows exactly the issue with some wrestling fans on Cagematch. My dude legitimately hasnt had one bad match this year. And maybe 3 non bangers and a handful of classics. The best bout machine currently in wrestling, taking over from Kenny Omega. 9 more months left of the year, this guy will be cemented as an all time great if he sticks to the pace he is going at currently. Absolutely amazing wrestler."
Rating: 9.0
Sentiment: 0.30625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: satumwrote on 07.03.2024:"Overrated and uninspiring . You could rearrange any of Ospreay's sequences in a match and it would be the same match . No story being told . Sure , the moves are cool and impressive but personally I dont see much special about him . He certainly does these moves the best though out of anyone else . He is impressive in that sense . Not what I look for in pro wrestling though ."
Rating: No rating found
Sentiment: 0.4912698412698413
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: PorcoRosso1wrote on 07.03.2024:[2.0] "One of the most unlikeable wrestlers I've ever seen. His best matches are him receiving a pasting by the other guy and his worst matches are when I'm supposed to root for him. I just can't do it. He's such a vile man. His offense is insane but it's tainted cause I can't enjoy any of it because of the person performing. Sometimes if you turn your brain off it's cool though. The man should be a contender at best and never hold the gold of a promotion. He's too unreliable and also not very bright. He's had plenty of good matches but those are less common nowadays. Bad wrestler overall. I think the real reason why I dislike Will is because like MJF I never feel an authentic aura of someone wrestling in a struggle but rather a person playing a performative piece. As an example Terry Funk I believe when he wrestled he was crazy, but with Will, I don't get any of that just some dummy doing cool moves and giving weird facials. I know he can sell and work over a limb and he's fine doing those things, but as time has gone on and he's been put in more positions of power in different companies with no one to correct him I feel he's gotten even more performative."
Rating: 2.0
Sentiment: 0.07315705128205129
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ohchxrliewrote on 04.03.2024:[10.0] "Will Ospreay is the best wrestler in this current generation. It can be in NJPW or now in AEW. He's a one of a kind wrestler that I believe only history will truly point out just how brilliant he is."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Divus Rolexuswrote on 02.03.2024:[10.0] "For a long time (until 2020) I was very skeptical about Will Ospreay. I thought he was a good junior heavyweight but really overrated. Then he solidified himself in the Heavyweight division in NJPW and I started to change my mind about him. Since 2022, he's on a roll putting great matches on great matches. I do think he changed the image people had of him, he really was a real pain until the United Empire. I couldn't think about him as a face, I just wanted to slap him. But then he completely accepted the full heel character and he developped the unique aura he has today. Currently, he's a face for me, I'm totally rooting for him in much of his matches. His in-ring work is also perfect, he does everything excellently and no one can take him that. At only 30 years old, he still has a bright future and can become one of the GOATS in the coming years."
Rating: 10.0
Sentiment: 0.30125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DB1091wrote on 28.02.2024:[9.0] "Unquestionably, Will is one of the greatest wrestlers in the world right now. He consistently produces high level performances and thrilling in-ring contests with a variety of wrestlers around the world, and his matches are always must see spectacles. He will no doubt translate this to AEW, where there is a number of dream matches for him to have. His in ring technique has been fine tuned over time and he is not simply a spot monkey or flippy guy, as may be the perception to some. He does tell very good stories in his matches. One concern for him now reaching a global TV audience is that his idea of a character or promo outside of his wrestling seems to be to yell bruv a lot and swear, and this will quickly become tedious on weekly television. Hopefully there are people he can work with as he moves to AEW now to further develop that side of his ability and then he truly does enter the realms of being talked about as one of the best of all time."
Rating: 9.0
Sentiment: 0.2703809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JimboJobsonwrote on 28.02.2024:[10.0] "What is left to say about this man? He is the perfect professional wrestler in every way and you should go out of your way to watch his work."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: YagameTheRealKingpinwrote on 25.02.2024:[10.0] "Ospreay mit Abstand einer der besten Wrestler sowohl Aktuell als auch All-Time. Er beweist jedes Mal aufs Neue das er mit absolut jedem ein hochwertiges Match worken kann. Zu dem kann er auch so mit seiner Mimik und Gestik soviel übertragen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Hyunminleewrote on 23.02.2024:[10.0] "One of the greatest wrestlers of all time. He built different. He is made for wrestling. He was amazing when he was junior heavyweight. His highflying moves were unbelievable and he made lot of bangers. The match with Ricochet and Shingo Takagi will be remembered forever. After he became heavyweight, he became one of the best all-rounders. His grounding skills and striking skills are great and he still using unhuman highflying moves. And he made too many bangers. His NJPW and Europe indies runs were so amazing. Not only in-ring skills, he is very charismatic and he can do great promos. I think he is one of the icons in this generation. But I dont want him to overdo. I wanna see him longer in the wrestling. Nevertheless, he is obviously one of the greatest of all time."
Rating: 10.0
Sentiment: 0.5142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DanyloFilipokwrote on 22.02.2024:"One of the best if not the best wrestlers of our generation. Although he started as a typical highflyer in PROGRESS and first few years in NJPW, in the last 3-4 years he absolutely carried as a wrestler who can be the great face and even greater heel. Almost every fight is a banger. He has one of the best move sets in the industry. Never understood people's hate for this man. 10/10"
Rating: No rating found
Sentiment: 0.32575757575757575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GM56 Championwrote on 16.02.2024:[5.0] "He's so-so. He's capable of doing great high flying moves and sequences, but his constant screams and weird promos annoy me. He's insanely overrated and so are his matches. He's worked wonderful matches with Omega, but he's also capable of ruining matches with his crowd pleasing schtick (like his match with Sabre at Royal Quest). As far as I'm concerned, a not too charismatic flashy guy, but with tendency to ignore the psychology and drama which is a terrible mistake to do. I'm not into him so far"
Rating: 5.0
Sentiment: 0.004615384615384613
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Cepek44wrote on 11.02.2024:"Will came a very long journey in his career, from being a spot monkey and a high flyer who could do all sorts of aerial manouvers at any given time, then turning into heavyweight, mixing his high flying skills with some hard-hitting strikes, becoming the wrestler he is today. And today, he's easily one of the best wrestlers in the world. I feel like there's still something missing for him to be labeled as #1 guy in all of pro wrestling, but he's definitely in the top 5. He's putting on banger after banger everytime he gets inside the ring, no matter who he is facing. He can cut a hell of a promo and get you invested in a certain match just by this promo and the story he tells in it. He has proven himself in every aspect of the game and for that, he should have everybody's respect. As I'm writing this, his time in NJPW is over. I hate that he's leaving, but I wish him all the best in AEW."
Rating: No rating found
Sentiment: 0.17161564625850342
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BruceMarcos524wrote on 04.02.2024:[10.0] "The best gaijin in NJPW after Kenny Omega. One of the best pro-wrestlers in the planet and one of the best athletically gifted performers in history. At first when he was a Junior Heavyweight, I thought that he was just another spot monkey who relied on acrobatics and circus moves to make the match exciting, one of the examples is when he squared off Ricochet in BOSJ in 2016. But upon promoting to the Heavyweights, Ospreay improved and became the best wrestler of his era. Given that he has the entire encyclopaedia of great matches of his career, Ospreay bringing his 100% on every match against Kenny Omega, Shingo Takagi, Kazuchika Okada, etc. He is so good even at his worst he is a 4-star performer. No wonder this guy has currently the most number of 5-star and above matches in wrestling history. Ospreay is also known for being one of the most brutal guys in the ring as he is willing to take nasty and dangerous spots to himself and to opponents. A total package guy with tons of arsenal of moves. His finisher, the Stormbreaker, is one of the most beautiful visually performed finishing move in my opinion. The Hidden Blade however is the stiffest move and one of the most dangerous moves in pro-wrestling as you don't know when he's going to hit it because you cannot see it coming. Just one of the cons of his career is the toll of his body in the long run. Because of his 200% effort he put on his body, I am worrying that he might retire at an early age due to injuries taking effect. I just hope he needs to slow down in the future so that we could appreciate him for a long time. But there is no denying that the level of work rate and athleticism Ospreay has is greater than most of the wrestlers today."
Rating: 10.0
Sentiment: 0.16049382716049382
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: KEIwrote on 01.02.2024:[10.0] "BILLY GOAT. Probably my favorite wrestler at the moment. One of the best wrestlers of all time. His ability to show incredible matches time after time is mind boggling. 10 out of 10."
Rating: 10.0
Sentiment: 0.7999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: LIGEwrote on 25.01.2024:"OSPREAY, I love you. You are the number one in the world, and you will always be the number one wrestler in my heart!"
Rating: No rating found
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: The Quick Manwrote on 13.01.2024:[10.0] "Nobody put on as many match of the year candidates of the past two years than the Billy GOAT himself. Debated on whether to give him a 9 or a 10 but 2023 Will Ospreay was simply on a level few wrestlers can hit even once in their entire career."
Rating: 10.0
Sentiment: 0.06388888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: arrancarwrote on 10.01.2024:[9.0] "Like a few wrestlers I once considered all-time greats, Ospreay has sadly dropped over the last few years. He's still one of the best in the world and even my consecutive WOTY for 2022 and 2023 (simply for his high match output), but I've found myself becoming numb to his structuring and psychology. He used to be a pure high-flyer and was fantastic at that, but then he developed his game as he took on size and became one of the genuinely most explosive and intense wrestlers in the world with his insane strikes and power moves, all while funnelling his world-class athleticism into less high-flying-based efforts. There's also the fact that his overall selling has massively improved since his early days, making his matches far more character-driven. This all basically makes Ospreay the 'perfect' wrestler, physically excelling in every single form of offence he attempts and being more than adequate in the various 'wrestling fundamentals' areas. This has been the case ever since about 2019 when he first began his ascent out of NJPW's junior division. The reason I think lesser of Ospreay despite his incredible abilities and record is that he's simply become far too predictable for me to enjoy his matches or individual performances nearly as much as I used to, and with his strongest points now no longer impressing me as strongly, his few outright flaws that I've previously overlooked have also now become more prominent and thus more annoying. I've sprinkled these thoughts into various reviews of Ospreay matches I've left on this site, but my main issue with Ospreay now is that EVERY match he has -- whether it's against a multi-time World Champion, an up-and-coming star, or just a random indie wrestler -- will turn into an 'epic' 50/50 back and forth of big moves, counters, finishers, and near falls. Now, that sounds pretty awesome on paper, but do you ever just gorge yourself on fast food? That's what this is. Seeing all these crazy back-and-forth trades and teases makes sense when it's in a major feud and/or on a massive stage (i.e. an event like the G1 finals, Wrestle Kingdom, etc.), but Ospreay chooses to do this basically every time he steps into a ring, at least for his singles matches. The first time you see Ospreay go all out against a top NJPW star, it's possibly one of the greatest matches ever, but when you see him just do a slightly condensed version of that exact same performance only a month later against a random US indie dude, it starts to feel a lot more hollow, and that trend continues with each consecutive iteration. This structuring issue wouldn't be as annoying if Ospreay at least made effort to not copy-and-paste ALL the exact same spots and sequences from one match to the next, since you KNOW with Ospreay matches these days you're getting about 90% of: slingshot crossbody splash to the outside, 'pip pip cherio' flying elbow, Kawada kicks, backflip push kick into enzuigiri, hook kick, Cheeky Nandos Turnbuckle Kick, octopus hold, handspring into flipping enzuigiri, spinning backbreaker, Spanish Fly, sit-out powerbomb (often out of a Spanish Fly counter to a lariat) OsCutter, Marufuji-esque across-the-ring flying low kick once opponent enters from outside the ring, etc. And that's just his signature moves, which isn't to mention his various finishers, or now sadly ex-finishers, like his Hidden Blade, Tiger Driver 91, and Leap of Faith, all of which are fantastic moves that have now lost almost all their appeal because they've quickly turned into cheap near falls just to pop the crowd, which is another example of the negatives of Ospreay's excesses. Yes, each wrestler has their formula and their signature moves, but I'm struggling to think of someone who does EVERYTHING they can EVERY single match in almost the EXACT same order like Ospreay. He's almost the opposite of Kento Miyahara, since he does way too much stuff and tries to be too varied, which in turn comes around to him actually not being that varied or creative. You can't deny that Ospreay is the absolute opposite of selfish, since he always allows his opponents to show off their own abilities alongside him as best they can. Now, I know this is seen as a positive because of how wrestling used to suffer from every wrestler only ever looking out for themselves, but I think Ospreay is *too* charitable, since this is what results in us getting all these copy-and-paste 50/50 'epics' every week. These matches are theoretically meant to put Ospreay's opponents over, even in defeat, because they're proving they can hang with Ospreay. I counter with: if *everyone* can take Ospreay to his limit, "taking Ospreay to his limit" means absolutely nothing. Imagine if Ospreay only ever got taken to those 50/50 epic trading sequences a few times a year? That would then be a lot more meaningful and would actually give us reason to care about those wrestlers who did so, especially if they were far lesser-known wrestlers. Instead, Ospreay gets taken to his limits every other week, and no-one truly benefits in the long term as a result. For me, a true wrestling legend should be capable of putting on compelling matches without having to purely rely on their physicality and athleticism, but by having truly compelling 'filler' work (i.e. character work, selling, and low-level offence) in between their pure moves, and I'm starting to think Ospreay simply isn't capable of that. He's indeed given some great selling performances before, both in terms of real-time selling and long term limb-selling, but those are few and far between, plus even then I've become more annoyed by how over-animated his expressions, vocalisations, and movements can be. Ospreay is still capable of having truly amazing matches, but now those are ones that fully step outside his usual formula. I'm hoping Ospreay makes the necessary changes to truly become one of the greatest of all time, but with the success of his current methods I'm not sure that's too likely."
Rating: 9.0
Sentiment: 0.11406092171717168
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: thedman0310wrote on 08.01.2024:[3.0] "The most overrated man in professional wrestling. I have no clue why people like Ospreay so much when there are so many other wrestlers who can do his style better. His promos suck, he has no psychology, and he spams big moves like he's playing one of the SmackDown games. His match with Ricochet getting popular led to Ospreay becoming the ultimate "GIF wrestler" prioritizing cool moves over working a decent match. He gets carried like he's a reusable grocery bag. If it wasn't for guys like Ricochet, Shingo, or Omega, he'd still be toiling as just another British indy worker. He's also a total prick in real life. If you want an amazing high flyer, watch Ricochet, El Hijo Del Vikingo, or Rey Mysterio. Hell, just watch Nick Wayne, he's basically just a better Ospreay than Ospreay."
Rating: 3.0
Sentiment: 0.2612037037037037
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RaixnQuinzowrote on 07.01.2024:[10.0] "One of the best of all time, match ratings and match quality prove that. He is always fun to watch and when he's on the screen you always wonder what he's going to do next."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AEWPoewrote on 06.01.2024:[10.0] "[10.0] "There are certain Wrestlers that have come along and defined Pro Wrestling. Will is one of those guys, currently the best in ring Pro Wrestler the sport has to offer! There are other names yes of course but for me he is the Billy GOAT! The AEW Chapter that is coming in 2024 will be Elite Bruv! ""
Rating: 10.0
Sentiment: 0.25474330357142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Pinkd56wrote on 26.12.2023:[9.0] "Best British wrestler of all time in terms of match quality. Growth of his skillset in his short career is astonishing."
Rating: 9.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Wrestling Foreverwrote on 25.12.2023:[10.0] "Klasse Mann einer für die Zukunft irgendwann war es nur eine Frage der Zeit bis PWG ihn bookte er hat sich durch seine Matches aufmerksam gemacht. Danke auch an wXw den ohne wXw hätte ich sicher nie etwas von Will mitbekommen ist auch so bei Damian O Connor, Marty, Zack und noch weitere Wrestler aus England und Irland. Zurück zu Will sehr over egal wo er auftritt, tolles Gimmick, muss großer Assassins Creed Fan sein. Sehr guter High Flyer von ihm wird man noch viel sehen. Edit 08. 06. 2016 Aufwertung von 9 auf 10 Punkte. Will ist echt der Wahnsinn und nun hat er wieder was geschafft erster und jüngster Brite der das NJPW Best Of The Super Junior gewonnen hat. Gratulation an Will. Edit 12. 01. 2017 Wieder mal ein Edit 2016 war für Will ein fantastisches Jahr. Nun ist das Jahr 2017 und er hat sich wieder verändert. Er ist nun blond und wird wieder bei neu gegründeten Ligen auftauchten und natürlich bei den bekannten. Er ist ja nach wie vor unglaublich begehrt. Edit 14. 04. 2020. Habe sogar ein Match aus seiner Ace Pain Zeit gesehen schon da hatte er solch schwierige Moves drauf. Will verbessert sich von Jahr zu Jahr. Aktuell vermisst er auch Japan sehr weil er nicht hinfliegen darf Gründe sind bekannt. Edit 25.12.2023 die Jahre hat sich Will wieder gesteigert. Er ist ein Wrestler der so viele Matches vom WON im (*****) und darüber bekommen hat das man es nicht mehr begreifen kann. Und 2024 wird sich auch wieder viel bei Will ändern denn er kommt zu AEW mit einem Vertrag. 2024 wird er aber auch noch einen Vertag mit NJPW haben einen Doppelvertrag."
Rating: 10.0
Sentiment: 0.4358333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JediSaiyanMaster1203wrote on 27.11.2023:[10.0] "Bruvs! Will Ospreay is a total god in the professional wrestling world, this man is one of those wrestlers who could give 10% effort and put on a 5 Star Match with the easiest of ease. This man is among the all time best high flyers in the ring, his athelticism is insane and he always finds ways to come up with unique moves with no problem, he makes every springboard move look effortless. He's even improved on the mic, watch his "You're either going to pass this torch or I am going to take it from you" promo and you'll see what I mean, he's came a long way. Has charisma to him, the aura he brings and how he carries himself like a star is nice to see that you don't often see from a lot of guys nowadays. Not to mention, his drip game is on point, always having awesome ring and entrance gear whenever he shows up, he's always looking like a star, which is kind of missing nowadays. He recently signed with AEW, and I look forward to seeing what he does now and hope he becomes world champion sometime down the line and becomes a big star, having bangers with everyone on the roster (especially Bryan Danielson, make it happen Tony! ) Overall, Will Ospreay might just be England's best wrestler they've ever had, he's a truly gifted performer."
Rating: 10.0
Sentiment: 0.16084722222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: OnurP1wrote on 19.11.2023:[10.0] "Will Ospreay is the best in-ring performer in the current wrestling landscape. He can do many different styles and has a versatile moveset. His promo game has also improved quite a lot compared to the past, he has become a great all-rounder. He's no longer just a junior heavyweight high-flyer, he's more than that. He is now the better than everyone else when it comes to match quality and has been that way since the pandemic. He'll become a star wherever he goes."
Rating: 10.0
Sentiment: 0.2944444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: theelevatedonewrote on 18.11.2023:[10.0] "My absolute favourite wrestler of all time (this account is named after him). I watched him come up on the British Indies back in the glory days and he has gone from strength to strength ever since. So many classic matches, so much charisma, hes the closest thing I have to a hometown boy in wrestling, which makes me love him even more. 2023 has been his year, putting on bangers in every major promotion possible. I will continue to watch his career with excitement"
Rating: 10.0
Sentiment: 0.21291666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: cioranwrote on 16.11.2023:[8.0] "Current flavor of the moment ICW wrestler which is why the reviews are all either 10/10 "OMG BESTEST" or 2/10 "This guy is overrated". Much of the criticism and some of the praise is accurate though. He's legit good and among the best of the aerial workers outside of Mexico. IMO, most of their top of the card aerial workers are substantially better than him, but they're also lighter and he's not wrestling the luchador style, but more indie or X-style. But missing some key things. Strong worker but very hit or miss on a lot of stuff. Extremely technically competent flippy style guy with a dash of British strong style which makes it look substantially less ridiculous than most of the modern flippy stuff. He's become substantially more selfish as a worker too, refusing to lose much and wanting titles and getting in "his stuff". In a lot of ways, he's a blank canvas and his matches seem heavily dependent on who's he's wrestling. Reminds me of a young Jeff Hardy or AJ Styles, except they were both at least passable on the mic and Styles was a much more proficient and less selfish wrestler. When WO has a good match it's great and when he doesn't it's still OK but usually plodding and goes on too long. Arguably a spot monkey with limited in-ring psychology. Like vintage Hardy, solid, but not great, physique. He's shorter and lighter than billed and it will be evident in the Fed. Poor to non-existent gimmick, which seems to be "I'm really good at stuff". Has arguably the worst mic work of any serious, working pro wrestler consisting mostly of "Oi" and "Bruv" and a bunch of stuff I think is some kind of English dialect. Among the most difficult to understand wrestlers from my perspective as an American and I don't think he can ever get over in the WWE barring speech coaching as I genuinely have no idea what he's saying 9/10 times, but who knows. He's over in England and the UK, so they obviously can understand him. IDK how much of a problem that is in the rest of the world. Wrestles a lot of the same spots. Not going to age well as you can't do this style and spots he does beyond 35 and his mat work is limited and his mic work is non-existent. Should have paid more attention to Shelley than Styles as he is able to do better and more consistent flippy work. The Kenny Omega and Mike Bailey matches were excellent and legit 5 star affairs. The Walter match was mediocre, which is where you can see the limitations in his mature style, since we've seen Walter/Gunther able to work well with lightweights like Ilja Dragunov. Disregard the scores on a lot of his matches, ICW loves him atm and will give anything he does 7/5 stars. Wait until he joins WWE or AEW instead of NJPW and the indies and everyone in ICW hates him for more honest reviews. The guy's good for this aerial style, but he's not Brett Hart or a luchador."
Rating: 8.0
Sentiment: 0.18295376121463078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AyoWrasslinwrote on 15.11.2023:[10.0] "The GREATEST Wrestler in the world today. The perfect mix of epic technical professional wrestling shown in his bouts against ZSJ and he also displays top notch high flying abilities shown in every single match he has. 10/10 Recommendations: vs ZSJ [New Beginning in Sapporo 2020, High Stakes 2020, NJ Cup '21], IWGP Jr. Title 4-Way Match [WK 12], vs Tanahashi [G1 Climax 29], vs Ibushi [WK 13, G1 Climax 29, Sakura Genesis '21], vs Oku [High Stakes '22], vs PAC [High Stakes '19], vs Okada [NJ 46th Anniversary, WK 15, WK 16, G1 Climax 32, G1 Climax 33] vs Jay White [War of the Worlds '17] vs Ricochet [ALL], vs Mysterio [ WCPW World Cup] vs Fenix [WrestleCon '17], vs Shibata [ New Beginning in Osaka '17], vs Omega [WK 17, PWG BoLA, Forbidden Door], vs Jericho [All In: London], vs Naito [G1 33]"
Rating: 10.0
Sentiment: 0.25294990723562155
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WrestlingBullwrote on 06.11.2023:[2.0] "If there is one guy I don't understand the hype for, it is this guy. He has no charisma, all of his promos are atrociously bad, I still remember the one he did to build his match against Okada during the pandemic and it was legit one of the worst thing I've ever seen and I have been watching wrestling for almost 20 years. He is the epitome of what, unfortunately, wrestling has become in 2023, if you have seen one of his matches, you have seen them all, the exact same forced epic formula, no psychology, over-choreographed, 30 to 45 min just for the sake of it, 20 nearfalls, 20 dangerous moves, sells like death for a couple minutes then magically stand up to hit another flashy move which absolutely ruins what he was doing a few moments prior."
Rating: 2.0
Sentiment: -0.23846153846153847
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: bigben123wrote on 02.11.2023:[5.0] "Beneath the flashy moves and crazy sequences, there is hardly anything to grasp. Once or twice a year, he will absolutely string everything together to formulate a match that is thrilling and logical but for the most part, it's a frustrating mess. He is very inconsistent and works best as a blank canvas for other wrestlers to feed off. Wrestling Will Ospreay is like a litmas test for your abilities as a pro-wrestler. Kenny Omega, Orange Cassidy, Jon Moxley and Tetsuya Naito are all examples of this and even so, the match is still dragged down by Ospreay's performance either ways and I find that I normally enjoy the match for the exact opposite goal they strived towards."
Rating: 5.0
Sentiment: 0.047222222222222214
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: skyesversionwrote on 30.10.2023:[10.0] "Will Ospreay is arguably the best wrestler in the world right now. He's a great high-flyer who can also be technical when he wants to. His only flaw is his mic work to be honest and that's because of his strong British accent. But other than that he's absolutely amazing. I could watch like 100 Will Ospreay matches back to back and I wouldn't get bored. That's how amazing he is. I know some people think that his matches are horrible because all he does is flips but he's called the "Aerial Assassin" for a reason."
Rating: 10.0
Sentiment: 0.1808779761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Okaro143wrote on 30.10.2023:[10.0] "One of my favourite wrestlers ever. Unfortunately, a very controversial and polarizing figure. Personally I think that he is the best in ring performer in the history of professional wrestling. His athleticism is through the roof, His moveset is limitless. I personally Love Ospreay but I see a lot of pundits and fans that don't really connect with him. Many hate his Wrestling style and some hate his personal life. Be that as it may, his wrestling ability is at the top."
Rating: 10.0
Sentiment: 0.17409090909090916
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WOOPSwrote on 01.10.2023:[0.0] "I dunno why I ever gave him 8, probably because 3 years ago he actually tried to branch of his junior ways but now he really just regressed back to being a spot monkey with matches that lack everything except a bunch of moves. Yes, he's genuinely a great athlete who can perform those moves incredibly well but he trades em for any substance or psychology behind these moves. I can't see the point of his matches because they're not wrestling matches, these are just circus spectacles performed by a very talented gymnast. Will lacks in mic department and in my opinion, he has absolutely no charisma. I'm so over just spotfests at this point, I want to see some sense in my wrestling. If I'd want to see just cool moves being performed, I'd play 2k games, at least they're more fun than Ospreay's formulatic movespams."
Rating: 0.0
Sentiment: 0.23923076923076925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: KENTAfanwrote on 02.09.2023:[10.0] "It's funny. A couple of years ago, back in 2021, when NJPW was pushing him as a top star and he was picking up so many wins against guys like Shingo, I didn't like him as much. I resolved to believe that he was taking away from other talents. Fastforward 2 years later. Ospreay has come back from a career-ending neck injury, and has solidified himself as one of the greatest of all time, and I am 110% on board. He can have a classic with anyone. His presence and arsenal of moves are on par with anyone, in fact very few can compare. Ospreay is currently 30 yrs old, and he is without question the greatest wrestler of this generation. I humbly apologize for the 9/10 rating I gave him a few years ago. He is without a doubt an 11/10, the greatest wrestler in the world today."
Rating: 10.0
Sentiment: 0.23509259259259252
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: deceivrwrote on 25.08.2023:[4.0] "In a great consideration to his talents instead of personal troubles and incidents, he is far from the best wrestler in the world. To me, he is the definition of the phrase "same old". The way he works matches is not that impressive to me; high-flying move, "strong style" moves, random cheap shot or taunt, terrible finisher (Hidden Blade), repeat. There are bits, however, that make me feel very impressed for his aerial ability, especially in his younger years. In contrast to today, his younger version is by far his best, one that was no stranger to high-flying technical prowess, ala Tiger Mask. Today, his singles matches, at best, are not one-and-done, but more one-and-far-too-much. His strong suit, for me, is having to be worked by another competitor. It is perfectly A-OK if you like his style or his persona of work, but it is very much a far-cry from a style that needs to be suited for somebody like me. It is also to note, opinionated of course, that Ospreay desperately tries way too hard to be like the greats of by-gone eras; he is, among many other characteristics, a selfish type of worker in terms of praise and overall effort. One thing to also note is the very troublesome nature of himself backstage and on media. He has, of course, done wrong (everybody has), but, overall, he has just gotten to a level where brushing aside anything that he has done in a backstage manner is ludicrous. He has given time to defend troublesome figures, such as his friends Paul Robinson and Scott Wainwright, who had done very devious deeds, but had to be stuck right to Ospreay to avoid further scrutiny and negative press and, ultimately, a full blackball from the industry. It is a great thing that one of those said people, Wainwright, had been kicked out of the industry. He had also done some very foolish deeds in regards to the debated Pollyanna/blackball controversy, the Sadie Gibbs harassment scandal, among other discretions, wherein that he would deliver, what many consider to be, half-arsed apologies. Scamming money intended for family members is also one that tends to be a topic of discussion. These troubles, however, must not make one person be automatically disliked, no matter how much of it is true or factitious. Ospreay, ultimately, is a wrestler who is flawed, but not as flawed as his personal troubles that make me cringe every time that I see him. It is not "asinine" to dislike Will Ospreay; it is valid, like disliking any other type of professional wrestler."
Rating: 4.0
Sentiment: 0.15056956115779646
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: NoNowrote on 22.08.2023:[10.0] "Just the GOAT of this all game. He has the best moveset in the man's wrestling. His match of his is against Michael Oku last year made me love him, and since i watch all this match. This man is largely responsible for the lack of my love for wrestling."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: KittyAlpha2424wrote on 22.08.2023:[10.0] "2023 is officially the year where Ospreay takes the throne as the best wrestler in the world. Despite his insane work rate, this man fires on all cylinders in every match, which speaks on his many capabilities in the ring not including his super athleticism which he is formally known for. Will has seriously revved up his physique and with it, his ability to project a 'fighting spirit' fueled by excellent psychology and emotions, something that people detracted him for in the past. Matches such as his two with Kenny Omega and his recent bout with Tetsuya Naito are perfect examples of just how damn good he is now. Much like Okada, you can drop him into either major American promotion right now, and it wouldn't be believable or even appropriate (as far as booking decisions go) for him to lose. He is on a different level right now. And, as a wrestling fan who indeed cares about the wrestler's health, I fear Ospreay's massive workload is going to take a toll on him too soon; I truly hope that not be the case though. Nonetheless, he has more than just world-class athleticism and grit to tell an excellent story in the ring. Easy 10."
Rating: 10.0
Sentiment: 0.2840525793650794
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheOneAndOnlyCactuswrote on 18.08.2023:[7.0] "Will Ospreay is undoubtedly a phenomenal athlete, one of the most gifted that I have ever seen in the ring. He is more than that though, as he also possesses a large bag of moves in his arsenal, that he adapted for his heel persona. He also will bump like a boss and is very expressive when he wrestles. But, the people who said he has improved in his storytelling... I mean yeah he has, kinda, but is still very flawed in that department, as his match with Okada in the G1 Climax showed. Plus, he is very reckless, a danger to himself and other performers. Edit: Revised my rating. I think I was a too harsh with a 3. My feelings towards him have remained the same after his second match with Kenny Omega, but 7 is a fairer rating."
Rating: 7.0
Sentiment: 0.16359890109890113
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheOverridewrote on 16.08.2023:[10.0] "The people who say that Ospreay has no selling or psychology and that he only does spots, they have never seen a match of him, they do not pay any attention or they have only seen his fights from 5 years ago. Ospreay has a unique aura for someone of his physique and has reached a level where every defeat of his is as impressive as seeing Okada or Roman Reings lose. He can work any style: aerial, striker, technical, hardcore, a mix of everything, nothing escapes him. Like I said, he has great microphone skills and the only reason I can think of someone would say he's no good is because they don't like his accent. He is one of the best at the moment and he is only 30 years old, so he will go even further."
Rating: 10.0
Sentiment: 0.24375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Vanstylerwrote on 13.08.2023:[10.0] "Probably the best wrestler in modern era. He's just the best at everything he does (High Flyer, grappling, submission, technique), it doesn't matter who his opponent is, he just shines and makes the best of him. But don't believe me, believe all the 5 star matches that he made."
Rating: 10.0
Sentiment: 0.672
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Anthony Leonewrote on 06.08.2023:[10.0] "One of the greatest wrestlers in the world. He's so fun to watch and never has a bad match. He can wrestle any styler, even as he's starting to age, with all his injuries, he's still such a great wrestler. The United Empire is such a cool faction and with Ospreay at the head, they're easily one of my favorite factions in the world."
Rating: 10.0
Sentiment: 0.26833333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Iceqwrote on 01.08.2023:[10.0] "Es ist schon witzig wie viele Leute noch immer ein ganz falsches Bild von Ospreay haben, wie als wäre er der selbe Wrestler aus dem Jahr 2016. Der Mann war schon damals gut, aber hat sich seither so unfassbar entwickelt. Würde jetzt ganz klar meinen, dass er der beste Wrestler der Welt ist, da er mit jeder Mann ein MotN haben kann und das jede Woche, auf ganz verschiedene Arten und Weisen. Dabei darf man nicht vergessen, dass er gerade mal 30 Jahre alt ist und er mittlerweile mit seinem Stil sehr zurückgefahren ist und so hoffentlich ein paar Jahre länger aktiv sein kann, auch wenn er heutzutage auch noch die ein oder andere gefährliche Aktion zeigt. Bin echt gespannt, wo es ihn noch hinführen wird in seiner bereits legendären Karriere."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MOXHAVOCwrote on 28.07.2023:[10.0] "Will Ospreay is one of the best wrestlers in the current era. He possesses a perfect blend of various wrestling styles, with high-flying maneuvers. The list of high-quality matches he has given till now is unbelievable, especially considering he is only 30 years old."
Rating: 10.0
Sentiment: 0.23125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: costa95wrote on 26.07.2023:[10.0] "Billy the GOAT is Amazing, he is great in the ring, his accent make him more badass, and he is on his prime so young."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MasteroftheMatchGuide99wrote on 18.07.2023:[10.0] "A man who is horribly underrated and I ain't just saying he is because I like him. Will Ospreay is like taking all the skill of Angelico, Jack Evans, the Hardys, and the combined charisma of WWE's greats (Looking at you Austin, Rock, and Hogan) and combining it all into a very capable wrestler. He has been a great driving force for high-flyers and risk takers as well as a good example of adapting to other styles and gave us 2 of the best matches of 2023 with Omega at Wrestle Kingdom (which is Japan's Wrestlemania) and Forbidden Door II (which is AEW's Starcade). I bet he could even be a major force in WWE, since high-flying has diminished after the death of 205 LIVE. Ospreay is without a doubt a great wrestler and ranks way up there in entertainment. He will surely be deserving of Match of the Year, and when he retires, we will lose a great wrestler. AEW, WWE, and Japan all want him. They should all have him, and all deserve him."
Rating: 10.0
Sentiment: 0.36671487603305786
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Malarkianwrote on 18.07.2023:[10.0] "If you don't like Will Ospreay in 2023 it's because you've made the conscious choice to not like him. Which is fine, you don't HAVE to like him but anytime I see someone say Will is just a spot monkey high-flyer with no psychology I know to disregard it because they obviously haven't watched a match of his in 5+ years. He does everything well, rarely (if ever) takes a night off, elevates every match he's in, and has done wonders for the British independent scene. He's also by all accounts worked a lot on himself as a person and all interviews I have seen with him he comes across as humble hardworking, and grateful. People giving him a rating of 3 and 4 is asinine."
Rating: 10.0
Sentiment: 0.07083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: John Brandowrote on 09.07.2023:[9.0] "Will Ospreay ist zu meinem absoluten Lieblingswrestler geworden. Schon allein die Rivalität gegen Omega zeigt, zu was er imstande ist. So wurde ich auch zum großen Fan des Jungen. Er gehört zu den besten der Welt, den Beweis hatte er endgültig bei Forbidden Door erbracht. Ich bin "nur" bei 9 Punkten, da Will eigentlich ja noch so jung ist und eine längere Sportler-Karriere allenfalls noch vor sich hat. Die Mauer zur "10" wird aber sehr bald fallen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: hbkronoswrote on 07.07.2023:[7.0] "I strongly agree with the people saying that he has a lack of in-ring psychology and character work. He does some cool spots and moves, but sometimes less is more."
Rating: 7.0
Sentiment: 0.2791666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: crs285wrote on 04.07.2023:[7.0] "Ospreay is a cool move spot guy. His selling and psychology need work. At times with the right opponent, he can put it all together for a great match. He is good on the mic but usually makes a better face than heel."
Rating: 7.0
Sentiment: 0.3976190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GeneBlastKyodaiwrote on 02.07.2023:[7.0] "Like the previous commenter said, will Is great and intense, but he is a guy playing a character that doesnt suit him, he is a great wrestler, but he shouldnt be playing a character thats like a mob boss because he just comes off as a whinging baby especially when he does those elbows to the back of the head. He needs to play a face. Playing a heel is not for him and it limits him. Only look at his face performances vs his heel performances to know my words are true."
Rating: 7.0
Sentiment: 0.24791666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: duketsao7wrote on 02.07.2023:"I am totally apalled by the Meltzer wagon. Will is entertaining and intense for sure, but basic stuff like punches, kicks, psychology of rest between moves, timing, selling, facials are far more important than flashy and strong-style Japanese moves. Bret Hart did those things like the master that he was. Has Ospreay ever done them as well? Hell nah. A good to great talent. But an Eddie Guerrero was far better."
Rating: No rating found
Sentiment: 0.27142857142857146
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Egyptian Dragonwrote on 30.06.2023:[10.0] "The most phenomenal wrestler in the ring i have ever seen in my entire life. He is exceptional. amazing, extraordinary, talented and great. by the time he retires, he is going to be the greatest wrestler of all time."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: znezaaljwrote on 29.06.2023:[10.0] "While I understand why many dont like his high-flying style, which might shift focus from the contests storytelling, there is no denying that Ospreay is one of the best wrestlers working today. Having transitioned from light heavyweight to heavyweight has also signified a change in his wrestling style, having partly left behind many of his continuous flips to instead focus in working more deliberate, narratively coherent bouts (clearly exemplified in his matches against Omega). I believe Wills ceiling is still ahead of him, and as he progresses in his career well get to see the best version of the Kingpin. Lets hope he stays in NJPW for years to come."
Rating: 10.0
Sentiment: 0.41
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ItsToniTime89wrote on 29.06.2023:[10.0] "Will Ospreay ist für mich einer der besten Wrestler der Welt. Er macht nahezu jedes Match zu einem Showstealer und es ist immer wieder eine Freude, wenn er in den Ring steigt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Neon Aussiewrote on 27.06.2023:[10.0] "Quite possibly the greatest wrestler of the current time. Typing this the night after he had one of the most incredible matches Ive ever witnessed against Kenny Omega at Forbidden Door. In the top 5 for best wrestlers of the 2020's, now he just needs to win some World Heavyweight Championships"
Rating: 10.0
Sentiment: 0.5875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: PacMannWrestlingFanwrote on 24.06.2023:"Billy Birdman is overrated and formulaic to death. The Shingo Takagi/Birdman trilogy ruined my enjoyment of seeing his matches outside of being a piece of shit bringing in his sex pest friends."
Rating: No rating found
Sentiment: -0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Doof Warriorwrote on 22.06.2023:[10.0] "His transition from lightweight to heavyweight couldn't have gone better. His talent is really undeniable. Who knows how long he'll be able to operate at the level he's at but he's in contention for the best today."
Rating: 10.0
Sentiment: 0.43
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: gargoylesmainwrote on 07.06.2023:[10.0] "It's hard to argue that this dude isn't the best in ring worker in the world right now. He has grown exponentially from his early days of frenetically flying around the ring, calmed down and matured both as a person and in his wrestling style, using a much more grounded offense. He sold his ass off for Kenny at WK17, and did the best promo and character work of his career. His only weakness for a while was in character work and connecting with the crowd, but I think he's come a long way in that as well."
Rating: 10.0
Sentiment: 0.2653880070546737
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Jaedynr5wrote on 23.05.2023:[10.0] "the best wrestler in the world right now, the way he's evolved from flippy somewhat characterless face to an amazingly well-rounded heel, it's a shame that most people haven't given him another opportunity after his match with Ricochet and just lump him into the "boring high flyer" pile when he's become something far more than that, every match he has is must see, and he's on the track to being the Best Bout Machine for the 2020s, and the fact that he isn't even 30 yet makes everything i'm saying far more impressive"
Rating: 10.0
Sentiment: 0.3954761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheLegend27wrote on 11.05.2023:[10.0] "Will Ospreay is an amazing wrestler due to his exceptional athleticism, innovative moveset, and ability to tell compelling stories in the ring. His high-flying style, combined with his technical skills, has earned him a reputation as one of the most exciting wrestlers in the industry today. All in all, an amazing wrestler, throughly enjoyed his work, and hope to see more in the future."
Rating: 10.0
Sentiment: 0.36180555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: lilrorowrote on 06.05.2023:[10.0] "Best pro wrestler ever He is probably the best performer and promotion in New Japan Pro-Wrestling right now. Physical ability, intelligence as a professional wrestler, humanity, visuals, everything he has is just awesome."
Rating: 10.0
Sentiment: 0.5031539888682746
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Jambowrote on 25.04.2023:"He's by far the most overrated wrestler there is today. His matches feel heavily choreographed to the point where it looks like a circus act. He also had some good matches, but he then does things that pull you out of the immersion like no selling or doing moves that make no sense. His mic skill is pretty bad. I don't remember if he ever hurt other people, but he had a bunch of incidents where he injured himself pretty seriously while doing pointless high-risk moves that didnt add anything to the match."
Rating: No rating found
Sentiment: 0.019166666666666672
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheCoolGuywrote on 19.04.2023:[3.0] "All of his matches look so choreographed and his in ring psychology is terrible. I cant recall a single memorable promo of his or a single time he sold a move. Hes popular with some people for some reason so thats gotta stand for something right? This man is now talking about retirement at 29. Sacrificed his body for star ratings instead of trying to be the best wrestler on the biggest stage. 10/10 in the Tokyo Dome 3/10 in reality."
Rating: 3.0
Sentiment: 0.17755102040816326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AJ The Guywrote on 18.04.2023:[10.0] "Will Ospreay has proven me and many of his doubters wrong over the years. I thought he was all flash and no substance when he first arrived on the scene in NJPW as a junior. I hoped that he would develop into an all-around worker like AJ Styles before him, and he did just that and then some. This guy is must-watch and it's a shame that people still associate him with that Ricochet match from 2016. He's grown so much since then, adding masterful striking and power to his game. His matches are paced very well and he carries himself like a star. He's right up there with the best of the best and it's time we all just accepted it."
Rating: 10.0
Sentiment: 0.3529761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: IronStarwrote on 11.03.2023:[10.0] "Will Ospreay is the best man wrestler in the world. He has the best moveset in the man's wrestling. He is extremely talented pro wrestler. Present and future of pro wrestling. He is just too good. I am sure about he will win IWGP World Heavyweight Championship at WK 18 main event"
Rating: 10.0
Sentiment: 0.5407407407407407
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ChrisPrattAsMariowrote on 04.03.2023:[10.0] "29 years of age with the resume that he has is absolutely insane. Tied with the most 5 star matches (It's another man's opinion but still a credible source) in such a short time is incredible. He can perform in Kings Road, high flying, and strong style matches with a wide array of moves. My favorite match of his is against Kenny Omega at Wrestle Kingdom 17."
Rating: 10.0
Sentiment: 0.17933333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Xwrestlingx2003wrote on 27.02.2023:[10.0] "William Peter Charles Ospreay, King of 5 star matches, He is amazing in the ring, I enjoy watching him every time, He can put up a good match even with weak or average wrestlers."
Rating: 10.0
Sentiment: 0.23500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Wright15wrote on 02.02.2023:[10.0] "No wrestler in history has had as many great matches in their entire career as Will Ospreay has had by age 29, and it is not even close. Ever since 2014, in every match, whether he is working in front of a crowd of 100 people at a RevPro spot show, or in front of 40 thousand people in the Tokyo Dome, he has given everything his body has to offer. As a result, he has already dealt with scary neck issues, but he has learned in the last couple years to adjust to a moderately more safe style. He is also one of the most athletic wrestlers ever, as he can pull off moves that would seem inconceivable to most other workers. His timing and pacing are superb, his heel work is viscous, and his fire-ups as a face are gripping. His promo ability used to be inconsistent (sometimes fantastic, sometimes terrible), but he has become more and more consistent over the past year. Before even reaching the age of 30, he has already cemented himself as arguably the greatest in-ring performer of all-time and as one of the all-time greats."
Rating: 10.0
Sentiment: 0.29342105263157897
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: eBentowrote on 25.01.2023:[9.0] "Will Ospreay is arguably the greatest in-ring athelete the United Kingdom has ever produced for pro-wrestling. He's nimble, athletic, quick, high ring IQ and has that all important ability to tell a story through emotional ring work. He isn't perfect as a character, but his in-ring prowess MORE than makes up for it. Check out any match of his in the last 4-5 years, you're gauranteed to have a great time."
Rating: 9.0
Sentiment: 0.4659259259259259
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Tyler72wrote on 22.01.2023:[9.0] "One the best performers, who's also getting better and better. Will Ospreay has seen a fairly large improvement in how convincing his performance is, especially seen at last year's match with him against Tetsuya Naito, and later at 2023's Wrestle Kingdom where he fought Kenny Omega. Lots of agility, charisma and power throughout all of his matches that completely separate him from any other wrestler."
Rating: 9.0
Sentiment: 0.26892857142857146
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Bongowrote on 14.01.2023:[10.0] "In the last few years, there is no wrestler on this planet that has come even close to the body of work of Will Ospreay. Every single match he puts on is must see and a number of his matches already live in history as some of the best ever. The most important part in all this though, is that he is still not even 30 years old! Even typing that out doesn't feel real. In the future, seeing as he's already this close, there is no doubt in my mind that Will Ospreay will be remembered as one the greatest of all time."
Rating: 10.0
Sentiment: 0.2809031877213695
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: benh2wrote on 12.01.2023:[9.0] "Ospreay's output in recent years has been phenomenal. Works harder than anyone and never phones it in. He was a bit of a spot monkey in his early days but outgrew that long before everyone realised he did. He still has a little way to go in terms of structuring a match and long-term selling; he's already put on some of the greatest matches of recent times so if he can improve this final bit too then he will be pretty untouchable."
Rating: 9.0
Sentiment: 0.13295454545454546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Platinumpiggwrote on 08.01.2023:"[10.0] Simply the best. The frequency this guy puts out match of the year contenders is simply unprecedented and unbelievable. After the 2022 Will had its impossible for me to rate Ant higher than him. And after wrestle kingdom 17, he looks to still be the goat in 2023."
Rating: No rating found
Sentiment: 0.15555555555555559
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WhatIsLooveeewrote on 06.01.2023:[10.0] "Will Osprey has done a lot of work on himself. At first he was just a talented high-flyer, but he gradually progressed and now that he has moved to the heavyweight division, as for me, he has earned the title of one of the best wrestlers in the world at the moment. He is extremely athletic, good at selling and is able to tell a story in the ring through his actions and facial expressions. Will has outgrown the status of an indie talent and has become a really hot big star who has a number of matches on his account that can be considered a real classic, for example his recent massacre with Kenny Omega. Without a doubt, 10 points."
Rating: 10.0
Sentiment: 0.29375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: texasyoshwrote on 05.01.2023:[8.0] "I think Ospreay is an inconsistent wrestler, but you can't deny he has tremendously grown as a professional wrestler over his career. Whether as an incredibly high-flying junior heavyweight, to his much-grounded work as he graduated into the heavyweight division, Ospreay has had a catalog of great matches over his career. That said, I DO find some flaws with the way many of his matches are structured. Seemingly none of the offense becomes relevant in the final stretches of Ospreay's matches, with countless reversals that amount to not much. If you've seen one of those matches you've seen them all. That said, Ospreay has been able to move away from this, and it makes much better matches. Ospreay has the potential to be one of the best of his generation."
Rating: 8.0
Sentiment: 0.3794871794871795
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MostlyIncompetentwrote on 04.01.2023:[10.0] "Obviously this is coming off the back of his match with Omega, but at this point calling him anything less than one of the greatest wrestlers in the world is lunacy. 6-7 years ago, you could make the argument that his matches were just spotfests, but even then there was plenty of real psychology that the naysayers just ignored. But now, it's undeniable that he's one of the greatest to ever do this, and for me he's one of the 4 or 5 greatest wrestlers of all time."
Rating: 10.0
Sentiment: 0.4333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Vukowrote on 17.12.2022:[10.0] "This guy was a big deal in the junior division in NJPW but his transition in heavyweight + his heel turn Okada was the best moment for him to be probably one of the best 10 wrestlers for this modern era. I just regret that his reign as IWGP World Heavyweight Champion was short because of an injury. But fuck, he's gonna wrestle Kenny Omega at Wrestle Kingdom 17 and have another 5 stars (this guy is 29 years old but he is at 2 matchs or 1 to be the wrestler with the most 5 stars matchs)."
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: KSupreme3wrote on 06.12.2022:[10.0] "Love him or hate him, this guy is going to go down as one of the best to ever tie up a pair of boots one day, especially in this modern pro wrestling landscape. The man is an absolute workhorse, and it? s clear that Meltzer is high on Will. It? s rare to see someone keep such a consistent quality in their work, and it? s been such a honor to see his career unfold. He? s fought some of the greatest wrestlers in the world and I must imagine what his upcoming 1-on-1 with Kenny Omega is gonna be like. Ospreays future is shining very bright."
Rating: 10.0
Sentiment: 0.22902777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Shadow Explosionwrote on 30.11.2022:[2.0] "My rating got deleted cause this site had a weird glitch at the time. Anyway I don't like this guy. I don't think he's a the dirt worst in ring guy but he's certainly gotten worse since everyone hyped him up as one of the greatest Jr. Heavyweights, and now he does stupid ass spots that make no sense, it's even more bewildering that he does those same spots in nearly every match, just like the Shingo matches that all feel the same. He's infected the indy scene with so many clones that want to be him and do his moves like that stupid springboard cutter. His selling is at god awful right now, he used to be really good at selling too but it's just become comical, I laugh everytime he sells that he's in pain because of ridiculous he sounds. He's very athletic but it never translates into the match because it feels like he's just showing off and doesn't want to have a good match. I think the best way to describe Will Ospreay is that he wrestles like he's in a Phase 4 Marvel Movie. High Octane and Comical, but doesn't tell good stories or has anything worth of substance."
Rating: 2.0
Sentiment: 0.11306666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Enriquepollazzowrote on 27.11.2022:[9.0] "Well..He's certainly too freaking good to give any less than a 9. I never liked this guy. He used to yell and his voice would crack. Now though. He has like Jay white and other njpw young lions aged pretty well. Into a better character anyway. Not just some guy. So what will he do character wise from here? Id say he needs to scale back the neck breaking match style and work on character. But he's pretty successful as it is! #1 in njpw is better than one of many guys in aew and midcard in WWE."
Rating: 9.0
Sentiment: 0.2475074404761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: amaiwrote on 27.11.2022:[6.0] "i can? t lie i? ve never been the biggest Ospreay fan, i can appreciate how much he? s progresses from the flippy days but i guess he? s just not for me"
Rating: 6.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Mcbolskywrote on 22.11.2022:[10.0] "Dude is the present and the future of modern wrestling. Can work any style, with anyone. His high flying has toned down and he's started becoming more versatile as a performer and him leading UE is great too. He's gonna be World Champ once again next year and will start to become one of NJPWs top top guys with Okada, Umino, Naito, and Jay White."
Rating: 10.0
Sentiment: 0.2462037037037037
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MainEventMasterwrote on 11.11.2022:[10.0] "Will Ospreay is everything a pro wrestler should be, looks like an absolute star, wrestles like an absolute star, IS an absolute star. Might be considered in the GOAT conversation when its all said and done."
Rating: 10.0
Sentiment: 0.20000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: lionheartedclmtwrote on 08.11.2022:"I'm not putting a rating to this because my own personal biases about Ospreay outside of the ring would prevent me from giving a fair rating. Ospreay is perhaps one of the best wrestlers in the world right now, I will not argue against it. However, he has a lot to do before convincing a lot of people of that. His style is still very junior based and heavily focused on reversals of moves, which, while not a bad thing, does lead to a lot of sequences or even entire matches that do not land. And as mentioned before, his behavior on public internet spaces and outside of the ring, particularly in the British wrestling scene, are unbecoming of someone who is touted as what could be the foreign ace of the second biggest wrestling company in the world."
Rating: No rating found
Sentiment: 0.20455182072829128
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DEDEwrote on 05.11.2022:[6.0] "Sehr guter Wrestler das muss man objektiv einfach zugeben. Allerdings liegt genau hier Ospreays Problem, jedes Match muss mit biegen und brechen episch werden ob es dazu passt oder nicht. Seine Promos sind zudem absolut schlecht und wirken furchtbar aufgesetzt. Am Ende lande ich dann eben leider bei befriedigend. Menschlich ist er leider ein ziemlicher Ausfall, dies werte ich allerdings hier nicht mit."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Inserthere750wrote on 17.10.2022:[10.0] "very athletic, very cute, but hes British so hes not getting a 10 from me(JK). All jokes aside hes a very entertaining wrestler and one of the best if not the best foreigners on the New Japan roster in 2022."
Rating: 10.0
Sentiment: 0.5194805194805194
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: xnviuswrote on 08.10.2022:[9.0] "one of the most entertaining wrestlers today. when it's all said and done he'll easily be a 10. flippity shit wrestling >>>"
Rating: 9.0
Sentiment: 0.30833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BAILE3wrote on 04.10.2022:[10.0] "Best wrestler in the world right now, and my current wrestler of the year. Tore it up in AEW and had an expectedly great G1 run."
Rating: 10.0
Sentiment: 0.5214285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: OnlyHalfTheEffinShowwrote on 14.09.2022:[6.0] "I feel like he's a very good wrestler if you like that oversaturated indy style of work where it's a million moves and flips a minute and no time to sell, but besides that near as I can tell he's just a douchebag. Rages on twitter, shoots on people in matches and apparently blackballs people from companies."
Rating: 6.0
Sentiment: 0.35333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: LivingLegendwrote on 14.09.2022:[0.0] "One of the most overrated wrestlers ever, possibly the MOST overrated. Ridiculous, over-choreographed spot-fests, ridiculous facials, his bumping is Shawn VS Hogan levels of overkill, his offense has no rhyme or reason, he's a black hole of charisma, can't cut a good promo to save his life, and to top it all off he's gotten people blackballed from wrestling promotions because he needed to protect his rapist friends. Absolutely awful in every facet of wrestling."
Rating: 0.0
Sentiment: 0.040740740740740744
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: KGPlaywrote on 28.08.2022:[10.0] "In my opinion he is the best wrestler in the world. I love watching every his match. He is just perfect wrestler. I hope, he will become AEW World Champion one day."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Benwerderwrote on 28.08.2022:[10.0] "Einer der besten Wrestler der Welt, wenn nicht sogar der beste. Ein Wrestler der irgendwann einer der größen sein wird. Früher spotty, jetzt hat er eine unglaubliche matchpsychologie und liefert immer. Von der matchqualität die er ständig abliefert, würde ich sagen, dass er der beste Wrestler 2022 (bisher) ist"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: No Onewrote on 26.08.2022:[10.0] "Haters are gonna hate, but Will Ospreay is The Man. He is already one of the greatest in-ring performers of all time. Everything he does in the ring is well timed & brilliant. He manages to tell different stories in every match. Legendary feud with Jimmy Havoc, and incredible rivalries with Marty Scurll, Zack Sabre Jr, KUSHIDA, & Hiromu Takahashi. He now has found himself in an unexpected legendary rivalry with the mighty Shingo Takagi. He has already put on way too many matches that will withstand the "Test of Time". When he shows up to wrestle he generates an immediate extra sense of excitement. Was a great heroic Babyface. Is now an excellent arrogant, "In love with himself" Heel. Is the rightful heir to the spot left by Kenny Omega as NJPW's true "Gaijin ACE". Popularized The Hidden Blade & The OsCutter. Can have a great match with anyone under the sun. Gives it his all with each outing, and his body is paying a heavy price for it, which brings his career longevity into heavy concern. Already is one of the best Jr. Heavyweight wrestlers to transition to the Heavyweight division in NJPW history. Should ultimately challenge Kenny Omega for being the greatest Gaijin Wrestler in NJPW history. One of the most accomplished wrestlers under the age of 30 in professional wrestling history. UPDATED: Every single thing that I said about Will Ospreay still holds very true. Also, at this point, based on his numerous accolades, it is also safe to start calling him by a new nickname, "The Five Star Match Machine" Will Ospreay. Which also does sound similar to "The Best Bout Machine" Kenny Omega."
Rating: 10.0
Sentiment: 0.39437909709338287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: PentaEL0Miedowrote on 24.08.2022:[10.0] "The best wrestler in the world at the moment. Does it in England in Japan and in America. My lock for Wrestler of the year in 2022"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Muggowrote on 23.08.2022:[10.0] "I'm very surprised that Ospreay has such a low rating, not that a 9.05 is bad by any means, but being under 30 and having 44 matches (at the time of writing) rated a 9 or higher on this site, you'd expect his rating to be around the 9.5 mark. But, It isn't and I don't understand why. He's obviously one of the best wrestlers in the world, His promo skills are decent, although promo's aren't as important in Japan compared to the US. He's one of the best heels in wrestling today and he's got a lot of charisma and has a good look. He's even shed his skin from his early years as a Spot monkey, and is one of the best storytellers in NJPW in 2022."
Rating: 10.0
Sentiment: 0.28547619047619055
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Prince DY8wrote on 21.08.2022:[10.0] "In my opinion one of the best wrestlers in the world right now. He deserves beat Okada but NJPW didn't allow that. I hope he'll win it next year. He deserves more than that."
Rating: 10.0
Sentiment: 0.5171428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ROCKETMANwrote on 21.08.2022:"Amazing heel... One of the best heels right now in the world. His post match interviews are always gold and he never fails to crack me up"
Rating: No rating found
Sentiment: 0.5339285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WrestlingFan892wrote on 18.08.2022:[9.0] "He is very young and unbelievably good, in Japan he has made memorable matches. As a heel he is very good, he was a high-flyer for years, but he has managed to mix various wrestling styles nowadays. In the promos he needs to improve but for the rest he is one of the best wrestlers today."
Rating: 9.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: CutterClubwrote on 11.08.2022:[6.0] "I have issues giving Will anything higher than a 6. His mic work is atrocious and his in ring work is either absolutely awe-inspiring or cringey. He tries to use the smarmy bad guy character to mixed results (it either plays off and he seems smarmy and cheeky, or it doesn't and he appears as an unintelligent jackass). All of that being said, you can't balk at his in-ring work when its on point. If he can get a better grip on promos and actually flesh out his character beyond being a meme who oversells or calls people pussies, then he can easily become one of if not the best in the game."
Rating: 6.0
Sentiment: -0.05128205128205126
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: zags7000wrote on 09.08.2022:[10.0] "He has really come into his own in the last couple of years and taken up the mantle as best foreign wrestler in Japan after Omega left. Omega left big shoes and I don't know if Ospreay has reached that level just yet, but I think he's getting close. He's tremendous in the ring and a pompous arrogant heel that makes you root against him. Not the strongest in the promo department but also underrated. He gets a lot of criticism here for that but it's not nearly as bad as some say. Annoying as hell (in a good way) and always great and can tell a story with the best of them. He transitioned well from highflyer in his early career to a safer heavyweight superstar and didn't lose anything that made him special. All around, one of the best."
Rating: 10.0
Sentiment: 0.3244397759103641
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JoshuaWrestling63wrote on 13.07.2022:[10.0] "Vor 6 Jahren hab ich ihn die 9 Punkte gegeben.. Aber mittlerweile geht's nicht anders als die 10 zugeben. Der hat sich nochmal krass gesteigert.. Seine Matches sind einfach unglaublich gut und ich hab lange keinen mehr gesehen der so krasse kick outs hinbekommt wie er."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Matt Mackswrote on 29.06.2022:[10.0] "Ospreay is the total package for a modern superstar wrestler. In 2022 his style is flashy, but not senseless and his character work, crowd interaction at this point is able to match his athleticism and in-ring acumen. Ospreay is on the small list of wrestlers who I could literally watch wrestle every day without getting bored."
Rating: 10.0
Sentiment: -0.09166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: hazynoodleswrote on 28.06.2022:[10.0] "One of the best wrestlers in the world. Unique offense, incredible sequences and very high-speed. At 29 years of age he has not hit his limit."
Rating: 10.0
Sentiment: 0.61875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: UltraNano54wrote on 15.06.2022:[7.0] "He has improved a lot over the years but he has to learn that yelling a lot is not the same thing as selling. His better matches are the ones when he tones down the flippy nonsense which he has done slightly better in his current heavyweight days."
Rating: 7.0
Sentiment: 0.1688888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: eltetechoriwrote on 12.06.2022:[10.0] "Talent where there is, a great future that still has ahead, is a fighter that if you let him creativity makes you wonders in a ring, it's worth seeing, quite a lot."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: NoSellwrote on 30.05.2022:[10.0] "Best wrestler in the world bar none and one of the greatest in ring performers of this generation. He's still only 29 folks."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: jamzell00wrote on 17.05.2022:[6.0] "He can still be great when he has someone who works to his strengths but after that he's somehow gotten worse to me. I adore the Shingo series but since my rating in 2018 I havent enjoyed any of his big matches catching up on them. Him being a heel is literally just acknowledging he's a POS outside the ring and going from there. He went even harder into the marufuji cosplay in ring and its been hit or miss ever since."
Rating: 6.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Sussybackaamoguswrote on 01.05.2022:[10.0] "He's a great pro wrestler no matter what people say. His character is indeed kind of confusing but you can't deny his qrestling abilities."
Rating: 10.0
Sentiment: 0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Mutant34wrote on 01.05.2022:[9.0] "the hate over ospreay is going way beyond these ratings. Of course he's not a GOAT, but he's one of the best today and has a great range of moves, as well as a great appearance that combined with good facial expressions give him an inevitable charisma"
Rating: 9.0
Sentiment: 0.35714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MadManJaxonwrote on 18.04.2022:[10.0] "The BEST wrestler in the world and it's not even close. There is no one as good as Ospreay in this planet. Best in ring performer, so much charisma, knows how to tell story while in the ring and so much more."
Rating: 10.0
Sentiment: 0.68
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Therminatorwrote on 14.04.2022:"Will Ospreay is deffinetly not my favorite wrestler but I appriciate the work he does. Vader feud and match was one of the most entertaining things I have seen in indy wrestling."
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Brutish Dandywrote on 13.04.2022:[9.0] "His matches are a bit much for me, often feeling like they need a good five minutes shaved off of them, but that's the style of the day and nobody does it better than Ospreay does. Him moving up to heavyweight was inevitable and he's slowly becoming a personal favorite of mine with his dickhead behavior and more strike-based style."
Rating: 9.0
Sentiment: 0.35624999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Miloswrote on 13.04.2022:[2.0] "Flippy stuff and choreographed exchanges with unnecessary no-selling, that's all Ospreay has to offer. While he was still bearable as a junior heavyweight, him transitioning to heavyweight and entering the IWGP Heavyweight Title picture let him bring out the worst Gedo-ism has to offer. Not giving him 0 because he actually looks like a wrestler and is impressively athletic."
Rating: 2.0
Sentiment: -0.09999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GreatAether531wrote on 08.04.2022:[8.0] "Will Ospreay is an anomaly. He's a hell of a talent, and his run from 2017-2019 saw him having all-time in-ring performances and showing he's rounded out to be quite an excellent talent in the ring rather than just a gif machine. That being said, his heel run has shown he doesn't have the personality of a star at all. His attempts to be 'cool' or 'badass' often feel phony and leave him coming across as a geek. Normally, when a wrestler as good as Ospreay doesn't have a good personality, it's a product of them being bland or dull, but in the case of Ospreay, I've recently found him actively annoying or obnoxious in a way that undermines my interest to see his matches even when I know I'll most likely love watching it. I also can't help but notice he's slowed down considerably since bulking up despite still wrestling a style that requires him to go balls to the wall in a way that he can't anymore. He still gets a high rating because his matches remain great enough and because the previous run in Japan was just so exceptional, but I don't think I've ever seen such a wide gap between character and in-ring ability before."
Rating: 8.0
Sentiment: 0.18791005291005294
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Luna100wrote on 01.04.2022:[10.0] "He is one of the best going today, he has become a lot more versitile. He is probably the best British wrestler ever. His match quality is top notch and he has a large amount of charisma."
Rating: 10.0
Sentiment: 0.5357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GabrielBOD22wrote on 07.03.2022:[10.0] "My favorite wrestler right now, and he'll be one of the main reasons why I will be a professional wrestler. He is absolutely outstanding, can have a good match with, almost anyone. My biggest problem with Ospreay is that his mic skill wasn't really good, but over the years I really saw an improvement there. Hopefully, this is not his ceiling. He's just 28, so he really has a lot of time to reach awesome levels."
Rating: 10.0
Sentiment: 0.4352380952380953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ZFIELDwrote on 10.02.2022:[1.0] "At this point, Will Ospreay is an empty vacuum of a wrestler. He's incredibly athletically gifted and can have a decent match with the right opponent but left to his own devices his matches are spot fests hampered by an overused bloated style that focuses entirely on excess. He is entirely artificial. There is no heart to any of his matches, he does his moves, they don't mean anything, and after a while it becomes tedious. At best he can be used as a foil for someone else's story. On top of that his facial expressions, selling and his movements, in general, are incredibly corny and fake. I don't think he has ever attempted something cool and not come across as lame. There is no subtly to him, he's a maximalist wrestler and extremely overindulgent. There is nothing to him or his matches below the surface."
Rating: 1.0
Sentiment: 0.12605519480519478
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Minorsmile09wrote on 07.02.2022:[10.0] "I've not seen him much on the mic, but he's a FANTASTIC wrestler. He can do it all, he can wrestle technically, he can fly high like almost no other, and he can use absolutely brutal looking strikes. He's put on countless classic matches and isn't even 30 yet. I know some people don't like him due to some dirt sheet backstage politick stuff, but it honestly isn't something I much care about when rating wrestlers. Unless he's a giant asshole to literally everyone like HBK was in the 90s, who cares and why is it something people are trying to be a private detective for. Lol. Will Ospreay is awesome."
Rating: 10.0
Sentiment: 0.21182291666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Strong Zero Machinewrote on 05.02.2022:[10.0] "February 2022 at just 28 years old Ospreay is one of the best ever! 17 5+ stars matches! It's simply impressive!"
Rating: 10.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GriffinXwrote on 23.01.2022:[10.0] "Ospreay is simply a fantastic wrestler. The last few years he transformed from a great highflyer to a damn good all-rounder with amazing high-flying skills. When it comes to the action in the ring few are better than him right now"
Rating: 10.0
Sentiment: 0.29857142857142854
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: nWo-Joshi-Guywrote on 23.01.2022:[10.0] "I think you might have to be British (like I am) to truly appreciate how obnoxious Ospreay's personality is lol. But remember he is playing a wrestling character and it is not real-life. Some people have trouble distancing the two. Anyway, he is an incredible performer, capable of things nobody else is. Stormbreaker is one of my favourite finishers."
Rating: 10.0
Sentiment: 0.33999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: njpwawwewrote on 03.01.2022:[10.0] "One of the best wrestlers of the day hopes that he will score well in the G1 event. He is worth this score. This guy has proved time and time again that he's the best lightweight of the day, playing between the lightweight and the heavyweight, and that wrestler can do that to Will."
Rating: 10.0
Sentiment: 0.7666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: NikoKillbainwrote on 01.01.2022:[10.0] "Leading a heel NJPW faction could've been too big a stretch for Ospreay, but he's nailed it to this point. Starting the year with two of the company's MsOTY vs Okada and vs Kojima, he then went on a great run to the Championship, beating ZSJ, SANADA, Shingo and Ibushi in hugely entertaining matches. He then upped it further with his defense vs Shingo, but then his year went on ice, mainly due to covid. 2022 will have as big an Ospreay component as last year."
Rating: 10.0
Sentiment: 0.146875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Darkdreams88wrote on 15.11.2021:[9.0] "Ospreay is amazing both in the ring and out of it. He has been great from the first match I seen him in, but has improved tremendously with experience, especially over the last two years. His timing is amazing now when it comes to the "Holy Shit" moments that he is known for as well as when to turn that off and slow the match down for a little. I love his promos and he seems to have a great time doing them, especially when playing a heel. When I am watching his matches, everything else dies as they are just to good and you never know what awesome moment he will create next! When meeting him outside of wrestling, he was extremely nice and was a lot of fun to talk to and would take the time we needed to enjoy the moment. The crazy part is he is still so young and is not in the prime of his life yet! I cannot wait to see where else he goes and what else he achieves in his career. I also cannot wait for the day that I get to see him wrestle live on the east coast of the US!"
Rating: 9.0
Sentiment: 0.23898884680134683
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: benny5bellyswrote on 11.11.2021:[9.0] "Ospreay is on another level to all but a select few wrestlers operating today. His detractors are mostly going on gifs of his match with Ricochet 5 years ago. Unlike most of the flippy dudes across the wrestling world when he does hit his high spots they actually look like they have impact. He has also developed striking to his game that look more stiff than a lot of the purists faves. There is still the odd dumb spot in his matches. He is up there with Dynamite Kid as the best ever British export. He has a resume of matches that are up there with the best of today's wrestling.Just remember the golden rule of enjoying Wills wrestling....block him on Twitter."
Rating: 9.0
Sentiment: 0.21788515406162465
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Nobuo98wrote on 14.10.2021:[5.0] "Will Ospreay is a gifted athlete, he performs his holds beautifully, but that is where all his virtues end, he is completely unable to sell his opponent and generally does not care about it, for him the main thing is to show his best side, not caring about the opponent"
Rating: 5.0
Sentiment: 0.3444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ABTyrsonwrote on 18.08.2021:[10.0] "Just so friggen talented. His series of matches with Shingo in particular in NJPW have been the stuff of legend."
Rating: 10.0
Sentiment: 0.4333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: FightForeverwrote on 29.06.2021:[10.0] "Will Ospreay was the best in the world up until he tragically got injured, derailing what was likely going to be an amazing reign. Nevertheless, he has had countless classic matches with an amazing moveset and always excites me. A great face and heel, and a masterful worker, Ospreay is truly deserving of a 10"
Rating: 10.0
Sentiment: 0.5296296296296297
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: WrestlingStuffwrote on 21.06.2021:[10.0] "He combines strong hard hitting style and aerial techniques at best. William Ospreay has a lot of potential to be par with Tanahashi and Okada's legacies, he just needs to injure himself less."
Rating: 10.0
Sentiment: 0.195
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BEER CATwrote on 09.06.2021:[4.0] "The dodged bullet. Will Ospreay is an elite athlete and a master of a certain sort of moveset-based style that can pop any crowd in the world in the short term. Long term, it's poison. The tricks don't hit the same the 100th time you've seen them, and Will is a negative asset in almost every other facet of the game. He sells via overdramatic indicating, usually for a few seconds, he is not cut out for character work, he can't promo, has maybe the worst facial expressions in the world, his style is proven to be unsafe and unsustainable, and he deserves to be viewed as a bigger backstage liability than he's treated as. His best rivals (Shingo, Okada, Scurll, Kushida, ZSJ) have contextualized his melodrama well enough to get some good ones out of him, but he was never the better worker in any of those matches."
Rating: 4.0
Sentiment: -0.012394957983193285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ExcitingProWrestlin3wrote on 07.06.2021:[3.0] "I am genuinely sorry for any Will Ospreay fans, but dear lord is he over dramatized and overrated. He's an unbelievably talented, almost god-tier athlete, but his character and psychological work is just an eyebrow raiser. His recent run and match against Okada did help uplift and make me think he has a brighter future, but prior to that, I'm often finding myself very confused, his promo work isn't all that great either."
Rating: 3.0
Sentiment: 0.06
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Lennoxwrote on 22.05.2021:[10.0] "I think his move up to heavyweight really made me like him a lot more. Sometimes I have my problems with his performances but when it clicks I can't deny he's one of the best today."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: chopsueywrote on 13.05.2021:[10.0] "His style isn't always my preference but I can't deny the talent with his athleticism and match quality. His character is a great dickhead heel right now and the United Empire feels like a big main event faction."
Rating: 10.0
Sentiment: 0.31309523809523815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AmarantCoralwrote on 25.04.2021:[10.0] "It's easy to criticise Ospreay's character work when his primary promotion is one whose presentation language does not line up with his mother tongue. Beyond this, NJPW is a sports-based pro wrestling promotion. Will has adapted his style to his heavyweight frame and is now the quintessential allrounder. He's a once in a generation athlete and I have to believe pretention and/or misplaced anger has a lot to do with the recent reframing of a previously almost universally-appreciated talent who's only sharpened his ability in the time it's taken for his detractors to come to their new opinions."
Rating: 10.0
Sentiment: -0.01212121212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JBWrestlingwrote on 18.04.2021:[10.0] "Its amazing how much he has accomplished at such a young age. He still has nearly a decade and a half of prime left. The sky is the limit."
Rating: 10.0
Sentiment: 0.12916666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Targetwrote on 15.04.2021:[5.0] "I thought I should write an extended review. I do not like Will Ospreay as a performer in many ways. To begin with, he is a liar. I remember him saying before WK 14 that he had plans to continue to develop the welterweight division. He told everyone that the welterweights were just as good as the heavyweights. That the welterweights under him would be in the main event of the WK. His words made sense at the time and I even began to understand him at that moment. And then what? He lost the title and then he was promoted to heavyweight. He simply fooled everybody. He said words, but he didn't back it up with action. Let's go over the execution. The main disadvantage of Ospreay is that he always has the same formula for matches, which is that he'll surprise people with acrobatics and big holds. At first you like it, but when you watch another Ospreay match, you're sure to see what you've seen before. On top of that, Ospreay has an unspoken charisma, which makes him hard to see as a face. I've seen him play the spotfielder's hil and I liked it. But he's a bad face. Then, I don't like Ospreay stealing moves just because he wants to. There's no backstory or anything like that. Take Chris Heero. I don't think I need to explain why he uses his elbows in this fashion. Why does Ospreay use them? Because he wants to. A man once said that wrestling has a history, but Will Ospreay is a bad wrestler, so he has no history. Ospreay's not bad in terms of being a wingman wrestler. He needs a stooge in the match to lead him, but the main problem is that Will himself is constantly stealing attention, which makes one not notice the story. That's what I was saying, he can't work different styles. Then, the level of his matches is not a puroresu. Look at the fight with Takagi. It's a spotfest that the same NJPW fans spit on when they see AEW's matches, yet they give that spotfest a 10/10. I think that says something. I could go on and on about Ospreay, but I think all I've written is enough to give you an impression of him."
Rating: 5.0
Sentiment: 0.11284722222222228
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: GoodGoodSnapwrote on 14.04.2021:[10.0] "Rating will always be for the performer, and it is impossible to deny Will Ospreay as one of the best going today. Unreal athleticism, especially given his height, and unlike many high flyers has an incredible knack for selling and allowing big moments to hang in the air at just the right moment. Will go down as one of the most important figures in directing the stylistic changes that professional wrestling has gone through in the past 10 years."
Rating: 10.0
Sentiment: 0.21334554334554337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: symolagwrote on 09.04.2021:[10.0] "He's one of the best in the world right now period. He's able to combine high flying wrestling and technical wrestling. Thanks to the increase in muscle mass, he is also demonstrating great strength in the ring. His win over Kota is well deserved. Explosive."
Rating: 10.0
Sentiment: 0.4682142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Makoto92wrote on 08.04.2021:[1.0] "William is one of the most overrated wrestlers in the world. Even when he turned heel, he didn't forget about spotfests, although he tries to disguise these under very primitive drama. No matter how he changes and what he tries to change - he always remains as a decent high-flyer with almost zero charisma."
Rating: 1.0
Sentiment: 0.13333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: KyleEnjoysWrestlingwrote on 24.03.2021:[8.0] "He's one of those internet darlings who I mostly found to be very overrated. That said, when he turned heel & bulked up not long ago, I started to come around. Before I always saw him as mostly a spot monkey. Sure he was a better spot monkey than most; but still -- that just doesn't do it for me. But he's now showing more personality, charisma, & in ring range."
Rating: 8.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Bushidospirit22wrote on 16.03.2021:[1.0] "I don't think there's a more overrated wrestler than Will Ospreay. As far as I can remember, I've only seen one Ospreay match that I actually enjoyed (Wrestle Kingdom 12). Everything he does in the ring is either so overtly convoluted or overacted, that it completely takes me out of any match he's in. Every match he's in also seems like it has to be about him, either getting his moves in or overselling his opponents' moves, that they get almost nothing from wrestling him. His work feels like I'm watching a stuntman from a bad 80s Hong Kong action flick, and there are probably over a dozen guys on the lucha indy scene who can do his high flying moves better than he can. In addition to his ring work, he's a vacuum of charisma, and his promo work, especially since his big heel turn, is all-time cringe-inducing bad."
Rating: 1.0
Sentiment: 0.04243589743589747
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: sanjurowrote on 29.01.2021:[7.0] "Ospreay put so much together in 2019 that it looked like he'd finally learned how to back up his undeniable athletic skills with the storytelling and passion that actually makes a wrestler great. Then he backslid in the worst way, his heel turn exposing all of his deficiencies as a character and giving him free license to make his matches even more about his showboating than before. When paired with an opponent who matches his dynamic flying with the sense of wanting to maul him (Chris Hero, Matt Riddle, Shingo even ZSJ and now Okada), he looks like the best in the world. Otherwise, with the exception of Hiromu (who can run circles around Will in every possible way as both a worker and a creative mind and persona), it's pure acrobatics that never add up to anything. That 2019 fire he showed on his rise up the junior ranks makes me think he still has it in him to be genuinely great. For now, though, the disconnect between his off-the-charts athleticism and his rock-bottom charisma and understanding of what "the work" truly means holds him back."
Rating: 7.0
Sentiment: 0.22761904761904764
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AlexLennonPWwrote on 21.01.2021:[10.0] "Have the people who have rated 0-3 ever seen a Will Ospreay match? Because you can't watch his bouts with Takahashi, Okada and Ibushi without being wowed. It's a shame a promotion through him under the bus, which is information that doesn't seem to have reached everyone."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: SoaKaswrote on 12.01.2021:[10.0] "Ich mochte ihn in der Junior-Division schon immer gerne, aber er hat mir noch nie so gut gefallen, wie jetzt aktuell in seinem Heel-Run als Heavyweight. Ich gehörte zwar auch zu denen, die ihn anfangs als unnötigen Spotmonkey gesehen haben, aber mittlerweile hat er auch deutlich bewiesen, dass er diese Spots nicht benötigt und ein sehr guter Wrestler ist. Wer Ospreay noch immer als Spotmonkey sieht, sollte sich sein WK15 Match gegen Okada ansehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TsurutaOHwrote on 13.12.2020:[7.0] "One of the most consistent wrestlers we have today, with undeniable skills but who at the same time suffers from an uncomfortable heel interpretation, an abuse of overselling, and that often he does things just because he can, he trying to shoot is ridiculous and it bothers me a lot how "edgy" he becomes and irresponsible, I still remember how he almost broke Ibushi's nose, he was making a good start to the year, but currently it is a little difficult to keep up with him, who knows he might improve his performance as heel."
Rating: 7.0
Sentiment: -0.09708333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: klauswrote on 30.11.2020:[10.0] "Ich verstehe nicht, warum er teilweise so schlecht beurteil wird. Es gibt sicherlich Gerüchte ausserhalb des Rings, die meines Wissens nach überhaupt nicht bewiesen sind. Als Wrestler jedenfalls gehört er meiner Meinung nach zu den Besten seiner Zunft. In seinen Interviews gibt er sich auch sehr autentisch, jedenfalls nicht abgehoben und arrogant."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AndoCommandowrote on 24.11.2020:"From 2019's WOTY to an utterly atrocious heel stint where he now talks like a meme Kenny Omega and can't be arsed to sell moves half the time."
Rating: No rating found
Sentiment: -0.4333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: rainmakerpunkwrote on 07.11.2020:[10.0] "Best highflyer in history, his move set has to be the most impressive ever, he's honestly an underrated storyteller which you could see in his WALTER, ZSJ, and Okada matches, among others, he's a jaw dropping performer and one I always love to see in the ring"
Rating: 10.0
Sentiment: 0.72
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: elcompactowrote on 16.10.2020:[3.0] "I'm really not a fan of Ospreay's in ring style. His "look at how good I am at the flippies" match formula has long become tiresome. He's a very selfish worker, only out to make himself look good - on a level I've never really seen before. If you're a fan of the spotfest style of wrestling with a ton of illogical offense then you'll likely enjoy the work of young Billiam. Not at all for me though."
Rating: 3.0
Sentiment: 0.04545454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: shittylittlerasslinwrote on 15.10.2020:[4.0] "To be honest, he doesn't buy any of my interest. Comparing him to the likes of Fenix or PAC, which I consider pretty talented highflyers, he is just more natural as a gymnast. I think he misses the wrestling fundamentals' points and is not a very good professional wrestler. For those who appreciate spot feasts, he is adequate. However, for the professional wrestling purists (which I don't consider myself as such), he's pretty weak. For me, an average wrestler with very good physical skills, defying gravity and so."
Rating: 4.0
Sentiment: 0.20327350427350427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: zephyrwrote on 10.10.2020:[3.0] "Ospreay seems to think of himself as the coolest person to ever step in a wrestling ring. And every time someone gives a positive opinion on him, that belief gets stronger and he adds more pointless "cool" stuff to his matches that actually look awful. His offense STILL lacks impact after all these years and he doesn't really look good doing anything other than ridiculously choreographed counters and jumps. The more I see of him this year the less I like him. One of the most overrated wrestlers in the world."
Rating: 3.0
Sentiment: 0.0847902097902098
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: arkhamoutlaw10wrote on 05.10.2020:[0.0] "One of the worst wrestlers in the world, the most overhyped by far. While he's capable of being carried if he tones down his worst impulses, his ego has only increased in the last year since becoming a heavyweight and he's giving less respect to his opponents. The total burial of Tomohiro Ishii, the no sell of SANADA's Paradise Lock, making the Hiromu return match at the Dome all about himself, he's a complete trainwreck of a wrestler right now. His facial expressions are the worst in wrestling right now, a truly atrocious actor and his promos are unbearable. His moveset is abysmal, with the Stormbreaker being one of the weakest and least invigorating finishers in modern wrestling, and every time he goes for it, the matches get dragged down. He cannot lead a match as he either does reversal spams throughout or he does slow terrible offence to build a match without any realisation of how to pace. In addition, the fact that he openly admitted to blacklisting a sexual assault victim in the British wrestling scene means he should not be trusted in any locker room."
Rating: 0.0
Sentiment: -0.1242826617826618
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ElPolloLocowrote on 28.09.2020:[7.0] "Another infuriating character cut from the same cloth as Randy Orton: when Will Ospreay is properly motivated he is absolutely incredible, amazing, fantastic. Look at all those matches with the likes of Marty Scurll, Kushida, Shingo Takagi, Dragon Lee... this man will keep you glued in front of the screen with an incredible combination of insane athleticism, speed and amazing moves. But when he's not motivated he will give in to his worst instincts, a terrible combination of poor overselling, goofy facials and theatrics and somewhat poorer attempts at playing 80's King's Road AJPW. It's a shame that promoters have often given in to these tendencies just to keep him happy because one can only imagine what a consistent and consistently evolving Will Ospreay would be."
Rating: 7.0
Sentiment: 0.07058823529411766
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: qveenovhellwrote on 25.09.2020:[2.0] "There's more to being good than being a flippy boy. Ospreay is one of the most overrated performers of his generation. Being an awful person doesn't help my opinion of him, for sure, but even before I knew he was a bad person I already found his matches flat and uninteresting. He sacrifices substance for style."
Rating: 2.0
Sentiment: 0.06785714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Zakaria Guiguiwrote on 22.08.2020:[10.0] "I saw Ospreay wrestling for the first time live last year and mamma mia I didn? t know where I was ! This guy is unreal I? ve never seen things he? s used to do before he? s honestly on another level of wrestling ! I just love highflying style it? s my favorite and I loved it more since I met him! I always know he? s gonna give a big performance in matches but I always like what the hell am I seeing right now ! ? I hope everyone will have the chance to see him at least once wrestling you? ll never forget him !"
Rating: 10.0
Sentiment: 0.31304604486422666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Ma Stump Pullerwrote on 06.08.2020:[8.0] "I can't really put Ospreay any higher at the moment, if only because of his relatively inconsistent selling and lack of proper heavyweight bouts to go off of in order to judge how effective he could be at that level. That being said, he's gotten a LOT better over the last few years, moving from his flip monkey style (that, while fun to watch, was ultimately wrecking his body) into a more mat based technique, which preserves his career for longer and ultimately allowed him to actually slow down a bit, which was a huge problem for his earlier stuff, when his matches happened so fast that there was no real time to sell or really do anything to build up the match. That being said, the slower style does lead to some long stalling with rest holds, and he does have a habit of taking really unnecessary risky bumps when it really doesn't add anything to the match at hand. He's not terrible in any massive way, but I imagine that with more ring experience, he'll be much better than he is at the moment."
Rating: 8.0
Sentiment: 0.1283730158730159
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Yumichi95wrote on 31.07.2020:[10.0] "Impressionnant surement 1 des seul catcheur a qui je met 10 et on a intérêt a en profiter car je pense que d ici 2023 sa carrière sera terminer tellement sont corps prend de risque."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Yazmanwrote on 21.06.2020:[10.0] "One of the best wrestlers in the world today. An intense dedication to his craft - whether in front of 300 people or 30, 000 people, Ospreay does everything he can to put on an excellent match for the fans. As a heavyweight now he will surely prove that he belongs in the top tier of the sport."
Rating: 10.0
Sentiment: 0.64
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: haroldanthony3wrote on 14.05.2020:[10.0] "Eight years to his career his talents and skills are at a level where every match he has in any location, against just about any other wrestler or wrestlers in either singles, or tag matches have a great change of being great. He has achieved success in every promotion that he's has had somewhat of a regular in or been able to be a part of the storylines. He has adapted his style in an attempt to preserve his body for him to have a longer career. He has also been able to positively improve other wrestlers careers by associating with him such as saving Paul Robinson's career twice and being influenical in getting Robbie Eagles, and El Phantasmo into New Japan."
Rating: 10.0
Sentiment: 0.27396694214876033
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: VillainClubwrote on 28.03.2020:[10.0] "Sein 2019 war Fantastisch. Als Junior Wrestler bei New Japan hat er alles erreicht. Auf seinen Heavyweight Run freue ich mich schon."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: kaantheviperwrote on 13.02.2020:[9.0] "When I saw him back in 2016 I didn't took him seriously. He was a spot monkey and I didn't had any huge hopes for him. Slowly he changed my mind by giving me some of the best matches I've ever seen. Every other day he evolves and adds something to himself. He has a bright future for sure."
Rating: 9.0
Sentiment: 0.17916666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Cleanerwrote on 06.01.2020:[10.0] "Unglaublich, dass der erst 26 ist und schon einen Wrestlingstil geprägt hat - ohne darauf beschränkt zu bleiben. Denn wo oft nur "Flippy-Shit" und Geschrei statt echtem Selling war, hat sich der Junge in Japan wirklich zu einem Top Wrestler entwickelt. Seine Art sich im Ring zu verhalten, seine ganze Präsenz, wirkt mittlerweile viel erwachsener, reifer und kämpferischer. 2020 wird man ihm wohl auf die ganz große japanische Schwergewichtsbühne holen und ich bin sicher, dass er dort mithalten und noch besser werden kann."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Leon101wrote on 05.01.2020:[10.0] "Der mit weitem Abstand beste High-Flyer den es je gab. Mittlerweile auch weit von dem puren Spotmonkey entfernt. Im Ring ist er einer der besten der Welt, in Sachen Characterwork und Storytelling wird er ebenfalls immer stärker. Alles andere als eine 10 wäre fatal."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: LatinoHeat93wrote on 26.12.2019:[10.0] "Hat sich in diesem Jahr nochmal Stark gesteigert vorrallem bei New Japan hat er nach dem Abgang von Omega die Rolle des Top Gaijin erfolgreich übernommen und hat bewiesen das er mehr als ein High Flyer ist und auch im Heavyweight Bereich mitmischen kann. Wohl eines der besten Gesamtpaket die es IM Business gibt!"
Rating: 10.0
Sentiment: 0.1590909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: 20SaiDa19wrote on 26.12.2019:[10.0] "Ospreay has continued to improve year on year and if he carries on this way he could very well end up an all time great. His 2019 has been phenomenal and as of right now I don't think anyone really comes close to touching him, as far as being as consistently good in-ring as he is. His style has also evolved and nowadays his matches are more strike based, although he is still more than capable of having flippy spotfests when he feels the need to. Will's selling has also improved a lot over the last 18 months and the screaming that once used to annoy me, is no longer an issue I have with him."
Rating: 10.0
Sentiment: 0.3738095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheFrenchDisasterwrote on 18.12.2019:[9.0] "In 2019, Will Ospreay silenced many haters, he has confirmed himself as one of the best wrestlers in the world today. The 2019 edition of the Best Of The Super Juniors marked a change in Ospreay's in-ring personality as he focused more on mat-wrestling and he does not jump in the ropes every 2 seconds anymore. He delivered many 5+ star matches and is a great champion."
Rating: 9.0
Sentiment: 0.5703703703703704
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JokeyZockeywrote on 02.12.2019:[10.0] "Vor gut fünf Jahren noch ein krasser Spot-Monkey, der fast nur durch Akrobatik glänzen konnte, heute der wahrscheinlich neue beste westliche Wrestler der Welt! Ospreay's Entwicklung in den letzten Jahren bzw. seit er regelmäßig(er) bei NJPW auftritt war einfach phänomenal. Er schaffte es mit der Zeit, seine Flugkünste mit dem pragmatischen Puroresu-Stil auf der einen und einer grandiosen Storytelling und Selling-Fähigkeit auf der anderen Seite zu verknüpfen, was ihn nach Omega's Abgang dieses Jahr zur neuen Best Bout Machine (bei NJPW) gemacht hat. Unzählige Hochkaräter im BoSJ und G1, vor allem natürlich das Match gegen Shingo, sowie einfach mittlerweile die Präsenz eines fast-schon Veteranen, der Jung aus Essex hat sich einfach gemacht. Er wird in den nächsten Jahren (sofern er, toi toi toi, von großen Verletzungen verschont bleibt) einer der großen Eckpfeiler im NJPW-Kosmos sein!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheV2wrote on 01.10.2019:[7.0] "2-3 years ago I wouldn't have seen any potential in him. He's mostly known for his tremendous athletics, which makes him able to do almost anything as a high flyer. However he used to be very generic as a complete package. He didn't develop at all in his character work, which was almost Low Ki level not existent. And his moves were just visuals that didn't have any value for a wrestling match. However especially in New Japan he has improved a lot in recent times. He works his matches more strategically. It's still a choreographic feeling, but you get his intention of winning the match. His character truly lives now, huge development! So as a whole he still is rather a 6 to me yet. But this is one of the biggest developments I've seen. You can truly feel the improvements from time to time. And this incredible passion and his work-rate can be rewarded with a 6. 5/10."
Rating: 7.0
Sentiment: 0.2977373737373738
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Zo-Zuwrote on 09.09.2019:[7.0] "In the canon of hyperathletic flippy dudes crawling all over the current wrestling scene Ospreay is the least obnoxious, mostly because he actually does possess some decent selling and fundamentals. It's a shame he sometimes lets his excesses get the better of him. Grounded by a more believable presence he can be brilliant, but some of his matches are overworked Cirque du Soleil shit."
Rating: 7.0
Sentiment: 0.25666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ArrogantDanwrote on 03.09.2019:[7.0] "There's no doubting that Will Ospreay is a talented wrestler, and yes, probably one of the most talented in the world. Has he ever been a better high-flyer than Ricochet? Or Fenix? Or Místico? Probably not. I don't know if it's entirely fair of me to be down on him for his booking in NJPW, but my God. His time as solely a junior heavyweight was defined, not only as one of the top talents, but also as a loser when it counts. He just couldn't quite best Kushida for the longest time. Marty Scurll beat him so often, he did a "death-and taxes" promo about his inevitable victories. Admittedly he got the better of those two at, and after, Wrestle Kingdom 12... then lost to Marty who lost to Kushida a few months later. He canonically feared Taiji Ishimori throughout BOSJ 25, who was the new hotness who beat Ospreay in the block. When Hiromu beat Ishimori, WIll was cocky and confident that he could beat Hiromu again at Dominion. Then he lost. Despite all this, he had a pretty good legacy when he began to compete against heavyweights. Beating a former junior for a shot the NEVER Openweight was a pitch perfect stepping stone for him. Beating Ibushi was maybe a little much, but hey, I could believe Ibushi was headed to bigger and better things, and it did Ospreay a huge favour in making him look like he belonged with the big boys. I was into him in the New Japan Cup, and super ready for him in the G1 - think of all those fresh match-ups! Then BOSJ 26 came, and despite the losses of talent to injury and the WWE, NJPW made it the biggest one yet. It was the fact that they were missing Hiromu, Kushida, Despy, and ACH that made me forgive putting Ospreay back in the division he'd had his back to for months. Then he never lost clean. Then he won his block. Then he beat the guy who, unprecedentedly, went undefeated in a ten-wrestler block. Then he won the championship. Then he held the belt throughout the G1 where the title shots he could dole out with losses were pointless"
Rating: 7.0
Sentiment: 0.2667964365881033
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: taabr2wrote on 31.08.2019:[9.0] "Will Ospreay is the best and most mind blowing high flyer in an era where everyone is a crazy high flyer. However what I find most impressive about him in that in the past year how much he has matured as a worker. He has toned down the reckless spots and shown to be pretty good at other styles in wrestling. Watching his evolution has been great and he is still evolving. Outside of the WWE circle Ospreay is definitely one of the more well known names in professional wrestling and he was a big part of the UK independent exploding in recent years. I got a feeling though bigger things is in store for Ospreay and I think anything is possible for his career going forward."
Rating: 9.0
Sentiment: 0.20606280193236712
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: UsualSuspectwrote on 16.08.2019:[10.0] "Greatest high flyer of all time. He started including a great amount of psychology and selling in his matches around 2018. I think he belongs in the top 3 best wrestlers of 2019."
Rating: 10.0
Sentiment: 0.692
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JOEvsISHIIwrote on 15.08.2019:[9.0] "Ospreay is extremely athletic and probably the best high flyer in the world. His selling and technical wrestling, while still not great, are improving at an extremely high rate and pretty soon I'll be able to give him a 10."
Rating: 9.0
Sentiment: 0.193125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: NEVERoverweightChampionwrote on 10.08.2019:[8.0] "Quite the opposite from the comment below, I like him more now. He's doing less flippy shit and improved in the last year, I think he gained confidence, his selling is better (way less screaming and others... weird crying dog noises ? ) and he gained some weight too so he looks better.  I agree he isn't the most believable guy as a tough striker but I prefer to see him doing that than non stop flippy high spots against heavyweights. That said, while he's not just a flippy monkey anymore he still does a lot of useless or weird flippy moves and I agree on his constant posing (and facial expressions) that are ridiculous and just too much. That's his "trying too hard" side. I know a lot of people see him as IWGP Heavyweight Champion material but I don't see him at that level yet. He doesn't have the character, the attitude, nor the presence or the charisma of a top heavyweight wrestler at all. So he still has a lot to do before getting to the next level but I don't think it's impossible for him. He has a good intensity, is pretty consistent at his level (let's say he's a reliable wrestler, he's a good hand) and he can have a real banger if he's with someone that can force him to tone it down or force him into a dynamic that makes more sense or is clearer like against Shingo or against Okada with whom he has the most evident story right now.  He is a great athlete who can do very spectacular stuff so I understand that he wants to show that sometimes, but he still needs to tone it down a bit, especially as a heavyweight and he needs to learn how to work smarter, even for his health it would be better. To summarize, right now I can buy him as a Junior Ace but he struggles to definitely convince me as a top level heavyweight, or at least I'm not that hot on him as most people seem to be. There's still a lot of little things that bother me in most of his matches but I like him, he sure is a talented guy with a lot of passion for what he does, no doubt about that."
Rating: 8.0
Sentiment: 0.14901785714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheGorgis309wrote on 30.07.2019:[9.0] "Some may not like his spotty style of pro wrestling, but his matches are always spectacles and damn pretty to look at. And it's also hard to dismiss him considering how much he's given to wrestling (he is physically shattered human at the age of 26 due to numerous injuries). With all this considered, I have to give Ospreay a glowing review, I mean what other performer of the last 20 years has been as consistently good in the ring for as long as Ospreay? There may be a few, but in my eyes, Ospreay leads that class."
Rating: 9.0
Sentiment: 0.003525641025641022
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: wrestlinggenius247wrote on 25.07.2019:[10.0] "Best in ring performer in the world, no one else currently competes consistently at the level ospreay does and he does so badly wracked with pain. better than okada better than omega."
Rating: 10.0
Sentiment: 0.25833333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Ferdinand Fisawrote on 21.07.2019:[10.0] "Ospreay is the best in the world and there is no reason to dense that. He always delivers amazing Matches and has become crazy charismatic and awesome in and outside of the ring"
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: LeafKingwrote on 17.07.2019:[4.0] "I want to call him overrated. To be fair though I understand his appeal... but that appeal doesn't attract itself to me at all. I like high spots just fine, but this guy, while a more talented acrobat than most high spot guys, just overdoes it to a disgusting degree. His selling also makes me cringe and his personality is extremely off putting. He's had a few very good to great matches, but I will never like this guy."
Rating: 4.0
Sentiment: 0.2934722222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: seirahwrote on 27.06.2019:[10.0] "the first wrestler i changed my mind. for me he was just a "generic flippy guy", but his matches vs ibushi and vs shingo show me that this guy is argubly the best in ring worker at the time, good job little guy"
Rating: 10.0
Sentiment: 0.3525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Fab96wrote on 09.06.2019:[8.0] "I'm not Will Osprey's number 1 fan. With that said, I think we can all agree on the fact that he is one of the best (if not the best) Jr Heavyweight of all time."
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Garrettwrote on 06.06.2019:[10.0] "I had to change my rating of him from 9 to 10 after watching BOSJ 26. Rocky Romero, Bandido, El Phantasmo, and Shingo Takagi are serious MOTY candidates, other than those he also has had tremendous matches against Ricochet, Hiromu Takahashi, Jimmy Havoc, Okada, Jay White, and eternal rival Marty Scurll. I also like how he combined his high flying move set with a flavor of strong style. I would go so far as to say Will is the best high flyer of all time and is poised to move up with the Heavyweights."
Rating: 10.0
Sentiment: 0.19203703703703703
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Aurtletheturtlewrote on 05.06.2019:[10.0] "Best in the World. People saying that his matches have declined in quality must be watching a completely different company or just be blind in general. Ospreay has elevated his ability to the point where he can carry anyone to a star making match, his performance during the 26th Best of the Super Juniors rivals Okada's 2017 G1 Climax run. Ospreay can do anything and everything within the ring, he sells like utter death, he can create counters for moves that should be impossible to do, he has the high flying abiltiy of Hayabusa and the striking of Naomichi Marufuji, he never botches. Simply unmatched and unrivaled right now."
Rating: 10.0
Sentiment: 0.18019841269841272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ZestyZuluWarriorwrote on 05.06.2019:[8.0] "If you like "flippy wrestlers" and "flippy matches" then you'll like Will Ospreay. If you don't well then... you won't like Willy Ospreay. It's pretty cut and dry. I find him entertaining and find myself getting invested in a lot of his matches. I will agree with some previous commenters that his matches have declined but I still find them fun. mostly."
Rating: 8.0
Sentiment: 0.21944444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: My Bloody Doobwrote on 21.05.2019:[10.0] "Incredibly talented for his age. Like Ibushi, he is an enigma who came out of nowhere and quickly made an impact in New Japan only 4 years into his career. His meteoric rise gave way to a backlash from those down on his style, but he has still continued to impress me even to this day. It's special watching a guy evolve through the years, and as long as he keeps chilling on the high spots, a dedication to longevity will pay off some day."
Rating: 10.0
Sentiment: 0.018128427128427112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: PuroresuLoverwrote on 19.05.2019:[9.0] "Will Ospreay is pretty good! His transition to a flippy-dee-floppy-dee-fluppy-dee guy to a hard hit is awesome! 6 months ago I doubted that one day, Ospreay would ever be an Heavyweight in NJPW, but now... I can see him in the G1 Climax making a lot of MOTYC. I hope that happens before he leaves."
Rating: 9.0
Sentiment: 0.4583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AJStylopzwrote on 10.04.2019:[9.0] "Ospreay is someone who can either be fantastic or go overboard with spotty selling and flippy shit. I think he can one hell of a bumper and seller and can look great in a match with everyone but he still needs to work on certain stuff. Overall I think he is great"
Rating: 9.0
Sentiment: 0.2520408163265306
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Louis Frankfurt 1899wrote on 09.04.2019:[10.0] "Will Osprey gehört im Ring zu den besten Wrestlern der Welt. Fast jedes Match von ihm macht Spaß und er gehört zu den Wrestlern die ein mit Moves am häufigsten Sprachlos machen. Einfach Wahnsinn was Ospreay im Ring zeigt vorallem in dem Alter. Dazu kommt das er auch Matchpsychologie und Seeling inzwischen richtig konsequent beherrscht. Gehört auf jeden Fall in meine persönliche Top 5 der besten Wrestler"
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TylerWhitewrote on 07.04.2019:[9.0] "Im Ring einer der absolut besten Wrestler unserer Zeit, wenn er dabei ist, kann man eigentlich davon ausgehen, dass es ein gutes Match wird. Außerhalb des Ringes ist er vielleicht nicht ganz so starkam Mic, aber das braucht er aktuell in NJPW auch gar nicht wirklich, doch er ist sehr charismatisch und hat die natürliche Face-Ausstrahlung. Es gibt glaube ich keinen spektakuläreren Highflyer akutell. Moves, die du dir nicht einmal vorstellen kannst, haut er raus.  Noch dazu ist er noch sehr jung und hat eine noch größere Karriere vor sich. Ich schätze er wird noch eines der großen Aushängeschilder von NJPW werden."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: AsterDaviswrote on 25.01.2019:"Not really my kind of wrestler but I saw his match against Drew in WCPW and I thought he was fantastic. Some of the stuff he does is still slightly eye-rolling to me like the stuff with Ricochet and Ibushi but it's all down to taste. Amazing wrestler but not my thing."
Rating: No rating found
Sentiment: 0.07555555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Cibswrote on 07.01.2019:[7.0] "Probably the most spectacular wrestler on the planet at this moment. I think Ospreay is good but not great as many think, although he is still young and over the years can improve in areas where he clearly has problems; especially at the time of selling and making sense of all those endless jumps."
Rating: 7.0
Sentiment: 0.21944444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RatingsMachinewrote on 01.11.2018:[9.0] "Will Ospreay is a tremendous performer, even if his style clearly infuriates those who have a very narrow view of what wrestling is."
Rating: 9.0
Sentiment: 0.05777777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JessePinkman1998wrote on 02.09.2018:[9.0] "Es macht einfach Spaß einem Will Ospreay zuzusehen. Er ist eigentlich der typische Highflyer ABER viel besser. Seine Moves sind spektakulär und innovativ. Vor 2 Jahren hätte er von mir 7P gegeben aber er hat sich in allen Belangen enorm verbessert. Und der Typ ist halt auch erst 25. 2018 sind es 9/10 für mich mal sehen wie es in 2 Jahrem aussieht"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Cal Vamwrote on 15.08.2018:[7.0] "Not a big fan of "flippy shit", but I have to admit - Ospreay is a master flippy shitter (not meant as an insult). From time to time, he delivers some absolute killer matches (my favorites are against Havoc, Scurll and Galloway), but he also has a lot of spotfests - pointless spotfests, but that usually doesn't prevent me from watching them. When I watch Ospreay wrestle, I either have a good time watching a great match, or I have a good time watching a solid circus. On the other hand, his selling is not exactly the best and being forced to listen to his screaming is like a million knives stabbing my ears."
Rating: 7.0
Sentiment: 0.11071428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Sebastian Vwrote on 06.06.2018:[9.0] "Im Ring ist er absolut unantastbar für mich und in meinen Augen im Moment der beste High Flyer der Welt. Er ist unfassbar beweglich, dynamisch, schnell, innovativ, sauber und vor Allem zu keinem Zeitpunkt ein Spotmonkey. Unglaublich guter technischer Wrestler und eine Matchpsychologie wie sie nur wenige haben. Außerdem ist er ungemein konstant und zeigt nie ein einziges schlechtes Match. Vom wrestlerischen her eine glatte 10. Aber dennoch ist er niemand, der in meiner persönlichen Top 10 auftaucht, da mir das vom Charisma her für einen absoluten Topstar noch zu wenig ist. Ja er strahlt absolut was aus und zieht auch Reaktionen besonders in Japan aber sein ganzer Charakter ist mir immer noch irgendwie nicht ausgreift genug, sein Gimmick ist nicht wirklich aussagekräftig. Beim Micwork ist er auch absolut gut aber nicht überragend unterhaltsam, kein Catchphrase der mitreißt oder unfassbar einprägsame Promo. Er ist dennoch in beidem gut und deshalb 8 Punkte. Insgesamt macht das für mich 9 Punkte, da zu den 10 die angesprochenen Aspekte fehlen."
Rating: 9.0
Sentiment: 0.33
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Gothic Bloodletterwrote on 03.06.2018:[10.0] "Will is one of my favorite wrestlers. The British miracle - on another it you will not name in any way. Osprey is the brightest representative of the modern British generation, along with Zak Sabre Jr. A fantastic athlete, capable of everything. His natural talent, coupled with incredible enthusiasm, allows Will to literally blow up the crowd. It has a desire, enthusiasm, a spark that allows you to steal the hearts of absolutely all spectators in the arena. Godfather. ;)"
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: The Phenomenal 1551wrote on 14.05.2018:[9.0] "Der gute Will hat in den letzten Jahren eine grandiose Entwicklung durchlaufen. Zuvor reiner Spotwrestler und High Flyer, ist er mittlerweile ein technisches Gesamtpaket der Extraklasse. Und dann ist der Kerl erst 25 Jahre jung und schon so verdammt gut. Gerade seine letzten Performances bei NJPW legen dafür Zeugnis ab. Auch sein Selling, das vorher häufig ein Kritikpunkt bei ihm war, ist mittlerweile konsequent und richtig gut. Ospreay liefert aktuell richtig ab und hat ein sehenswertes Match nach dem nächsten. Das kann gerne so weiter gehen."
Rating: 9.0
Sentiment: 0.33
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: LrockBesnarwrote on 07.05.2018:[10.0] "The best high-flyer after Ricochet. He's very talented. Very charismatic. He did 3 5-star matches, even though he was 24 years old. He is moving very fast. He is doing great matches and trying to win the attention of the audience but there is a lot things that he has to pay attention to. He's taking a lot of risk. If he is seriously injured, it may cause his entire career to end. You know that British wrestlers always play heel because of their characteristics. But Ospreay looks very clean. I think he is a very good babyface, even though he is British. It will may be irrelevant for you, but i think he is more talented than Zack Saber (who has overpushed along 1-2 years). I think Ospreay is best English wrestler after Pete Dunne."
Rating: 10.0
Sentiment: 0.4040740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Viper99wrote on 23.04.2018:[10.0] "Ich verfolge Ospreay nun schon seit 2015 als er fast nur bei den RevPro "Weeklys" zu sehen und finde seine Entwicklung sowohl großartig als auch Erschreckend. Er mauserte sich vom relativ Charismalosen High Flying Publikumsliebling zu einem sehr guten High Flyer welcher dann auch für PWG auflaufen durfte bis hin zu einem der Key Player in der Japanischen Junior Division. Er ist heutzutage einer der besten und konstantesten Worker die es auf diesem Planeten gibt! Er ist einfach ein Garant für ein gutes Match und das gerade mal mit 24 Jahren. Er wird nach seinem Rücktritt lange in Erinnerung bleiben, als einer der besten und Innovativsten Worker sowie zuvor schon ein Liger, Benoit oder Dynamite Kid."
Rating: 10.0
Sentiment: 0.13
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: coolserazwrote on 08.04.2018:[9.0] "Amazing wrestler. Absolute human highlight reel. Unfortunately, he is not going to last long with his breakneck pace every single match and I am afraid the damage is already done. Regardless, he has provided us a lot of great memories so far and I hope he keeps providing them to us."
Rating: 9.0
Sentiment: 0.12285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Vylkhinwrote on 07.04.2018:[10.0] "Puts on classic over classic over classic. Amazing wrestler, always entertaining, sells his opponents's holds like no one, unbelievably athletic and talented."
Rating: 10.0
Sentiment: 0.2928571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Even Flowwrote on 27.12.2017:[10.0] "Has potential to be something big. Really puts on a spectacle with his high flying moves. Really sound technician(though he tends to not show it much). He seems to be constantly improving on his weaknesses: Mic skills were poor at the beginning but are much better now (Still not great) and his selling."
Rating: 10.0
Sentiment: 0.066
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Spartak87wrote on 12.12.2017:[10.0] "Will Ospreay is an amazing talent. He looks a bit like the heir apparent to AJ Styles, especially AJ's earlier work. A high flyer who can mat wrestle as well. He has had some incredible matches. And he has gotten even better since he joined NJPW. His matches with Ricochet and KUSHIDA stand out as well as the match he had with AJ."
Rating: 10.0
Sentiment: 0.36833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Dragon Fighterwrote on 11.11.2017:[9.0] "King of flips. He is not for everyone. Of course, if you love flips, dives, you should watch this guy. I understand someone dislike him. At times, he can overkill flips and dives, which annoys you. I don't have much problems with those. Amazing talent for sure. I have seen he elevated guys like jay white, flips gordon, chris brookes, robbie eagles from Aussie. That's great. He is very young and can improve in the future. The only thing many fans and i dislike is obvious : his selling- very hit and miss. It doesn't matter if you ignored it. That's why i only give him 9."
Rating: 9.0
Sentiment: 0.26384615384615384
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: The Big Blue Machinewrote on 28.10.2017:[10.0] "One of the best junior heavyweight in the world, Will Ospreay is like a dancer: his elegance and his agile movements makes his match seem nearly unreal, like something from a videogame. The more I see, the more I love this guy."
Rating: 10.0
Sentiment: 0.3875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: sign squadwrote on 27.06.2017:[10.0] "Haha, sorry ich kann nicht mehr vor Lachen. Manchmal ist dieses getrolle einfach nur super lächerlich. Eine 2 für Spektakulär aber konstantes Overselling gegeben von einem DIE Hard Dragon Gate Mark. Das kann man sich nicht ausdenken. Ospreays Timing ist fantastisch, seine Spots sind fast immerzu perfekt und seine ganze Art wie ich sie bei PROGRESS und New Japan sehe feiere ich hart. Dabei bin ich echt kein wahnsinnig großer Spotmonkey-Fan. Aber einige haben's halt drauf."
Rating: 10.0
Sentiment: 0.0130050505050505
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: ParisTheSpiderwrote on 08.06.2017:[10.0] "Will Ospreay zeigt immer wieder verrückte Sachen im Ring. Sein Match mit Ricochet hat mir sehr gefallen. Im Ring ist Ospreay einer der besten High-Flyern aktuell."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheGreatestManRed22wrote on 03.06.2017:[10.0] "Yes He got a lot of haters. Ospreay is awesome he is not a spotmonkey as many say. He showed and continues showing his mature more and more. His career in NJPW has helped to be one of best highflyer in thew world right now. His selling has improved same that his offensive. I say that in a few years he will improve even more."
Rating: 10.0
Sentiment: 0.4185714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TooSweetPhilwrote on 03.06.2017:[10.0] "Ein weiteres riesiges Britisches Talent in Will Ospreay. Für sein Alter hat er schon extrem viele sehr gute Matches geworkt und ist damit in so einigen Indy Ligen zum Veteranen geworden. Bei CHAOS nun als schöner Newcomer, dazu immer tolle Homecomings in England. Komplett überzeugend im Ring und dafür 9 Punkte. EDIT: Nein, ich habe gerade sein Match gegen KUSHIDA vom BOSJ gesehen und mal ehrlich. Wer jetzt keine 10/10 gibt, dem fehlt etwas, Ospreay sellt nun auch immer konsequenter und deutlicher. Er wird innovativer und kann aus jedem Move irgendwelche noch spektakuläreren Variationen entwickeln. Für mich sind das jetzt ganz deutlich 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Prophet of Disasterwrote on 27.05.2017:[9.0] "Will Ospreay is amazing.  He is arguably the best high flyer in the world right now, but has proved during his heel work that he is a good mat based wrestler too.  I think he's really good at playing the dick heel character, and hope that he does this more in the future.  He has a lot of potential as he is so young, although his high risk style isn't good for his body and I hope this doesn't cut his career short."
Rating: 9.0
Sentiment: 0.37736263736263737
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Blood Pumpwrote on 06.04.2017:[7.0] "One of the most beloved Cruiserweights of our time but not for me. Hes super fast and can do things in that ring I never could but hes just not as good as a lot of other lightweight wrestlers in the ring. Hes a spot caller (and aside from that talks way too much in his matches as is), rushes spots, and hasn't proven to me he can be compelling without his acrobatics which, say what you will about Ricochet, Ricochet can. Will has proven a handful of times he doesn't know how to work a match with someone who doesn't spam spots. I won't outright say his matches are ruining the idea of wrestling but I do wish he'd at least try to make his bouts a bit more dramatic."
Rating: 7.0
Sentiment: 0.2340909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JordanACEwrote on 14.03.2017:[8.0] "The brits are just dominating wrestling at the moment and Will Ospreay is one of those guys who leads the brits! Just the best high flyer in the world, being only 23 is unbelievable!"
Rating: 8.0
Sentiment: 0.21187499999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Lardo Parcelwrote on 27.02.2017:[8.0] "Lots of raw talent. He's not even 25 and he's already competing for major championships all over the world. He's still improving. His psychology's getting better, his abilities are getting better, and his mic skills are developing rather quickly. I can't wait to see how good he can be in 2 years."
Rating: 8.0
Sentiment: 0.31084401709401704
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Chekerwrote on 14.02.2017:[9.0] "Will Ospreay is fucking incredible. Great wrestler, one of the two best high fliers on this green Earth (I'd say tied with Ricochet), carries himself pretty nicely, whether as a heel or face. He just gets wrestling. If he doesn't kill himself until then, he absolutely will be *THE* best wrestler in the world in a couple of years."
Rating: 9.0
Sentiment: 0.5233333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Rattlesnake3-16wrote on 14.02.2017:[9.0] "From backyard wrestling to the top of the Indy, Ospreay has already achieved in only four year a great career. 2016 was awesome with a five stars and the junior cup. I hope the best for him for the future"
Rating: 9.0
Sentiment: 0.5499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TheWrestlingFanwrote on 13.02.2017:[10.0] "Ospreay is no doubt a highly-touted potential. He's athletic and able to pull out some magical high risk moves everytime he competes. However, I really hope he will slow down his in ring style a little bit and do more selling, especially after some big moves that could legitimately damage someone, such as piledriver, superkick, or powerbomb.   Having watched his recent matches in New Japan, he has proven me wrong when he fought Shibata for RevPro British Heavyweight title. He shows he can radically change his in ring style into a more grounded style that is combined with strong style essence. He is definitely up there as the next legendary Jr. Heavyweight wrestler."
Rating: 10.0
Sentiment: 0.1326972101972102
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Southwestwrestlefanwrote on 30.01.2017:[8.0] "Hes good just not for me, if you like flips and highflying hes for you just not sold for me. sorry will! but i do like some of his matches."
Rating: 8.0
Sentiment: 0.03749999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DylanTBAwrote on 09.01.2017:[9.0] "Will Ospreay is incredible, there's no other way to put it, his high flying, exciting offence, his speed, his hard hitting moves such as his running knee to the head, he has it all- well, apart from his mic skills, never ever put Ospreay on the mic, that Essex accent kills my ears. He's had numerous incredible matches, such as with Ricochet for example, and continues to improve with every move, At 23, he has years and years left in him and I hope to see him win the IWGP championship at some point."
Rating: 9.0
Sentiment: 0.2573484848484849
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: hrikygwrote on 01.01.2017:[9.0] "Ospreay is one of the best high flyer in the business today. He is a great spot wrestler. People may say that he is a spot monkey or something like that. But they have to understand that doing these spots are not easy also and i feels that he has improved his mat wrestling skills also after going to NJPW. He shows real determination with great timing and skills. I gives him a 4. 5 outta 5 for his in-ring skills and a 4. 5 outta 5 for his selling."
Rating: 9.0
Sentiment: 0.38476190476190475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: LSEstrelawrote on 01.01.2017:[7.0] "Ospreay is raw talent, and the sky is the limit for him, but he still has so much to learn... The selling, the psychology, is absolutely... meh."
Rating: 7.0
Sentiment: 0.05641025641025641
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Luv all wrestlingwrote on 26.10.2016:[10.0] "His selling still is not the best, but he has had so many motyc, crazy unique moves, and has grown to become such a great performer, Will Ospreay deserves nothing less then a 10 for the quality of his work today."
Rating: 10.0
Sentiment: 0.27261904761904765
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Rasslin Ruleswrote on 16.10.2016:[10.0] "Mit seinem spektakulärem und schnellen Stil macht er in der Wrestling-Welt und darüber hinaus auf sich aufmerksam. Er ist sehr charismatisch und sein Selling gefällt mir sehr gut. Das Argument des fehlenden Realismus finde ich lächerlich. Wrestling wird schon seit den 60ern nicht mehr "realistisch" dargestellt. Zudem ist Ospreay ja noch jung und ich glaube er wird als Revolutionär noch einer der ganz Großen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: TrevPuroFanwrote on 11.10.2016:[0.0] "I'm sorry, but Will Ospreay just doesn't do it for me. I hate his spot after spot style, maybe I don't have a problem with these type of wrestlers, but the way he no sells every move or damage his opponent does to him, is annoying. For example, he just turns 360 and lands on his feet after a superkick from Marty Scurll. Ospreay is the true definition of a spot monkey."
Rating: 0.0
Sentiment: -0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: DevilsSkywrote on 04.09.2016:[7.0] "A very talented man who's set to dominate the Cruiserweight seen,  Ospreay certainly has good athleticism and is a young star. I've never heard him on the mic before, so I won't leave my opinions there, only thing I'm worried about is his future in the business. If he wants to make it long term, he's going to have to improve on the more technical side of things and his selling, for a 30 year old or 40 year old would unlikely be able to do "flippy shit", especially if he got injured or something."
Rating: 7.0
Sentiment: 0.16089285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: The Chosen Onewrote on 14.07.2016:[2.0] "Sure Will Ospreay has had some great matches with the likes of AJ Styles and Zack Sabre Jr but he uses this style of wrestling that I find cool but then gets old and boring after a while and thats what most of Will's matches are like. Take his match with Ricochet for example they did a bunch of cool stuff but then it gets boring ten minutes in."
Rating: 2.0
Sentiment: 0.06666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Obermackerwrote on 14.07.2016:[6.0] "Britischer Hüpfakrobat, der in seinem Bereich defintiv vorne dabei ist, aber Null Charisma und Micwork ziehen ihn runter und wenn man natürlich auf einen Bererich des Wrestling so beschränkt ist (noch dazu darauf besteht, daß man unbedingt seinen Stil gehen muß), dann bleibt er ein Nischenwrestler. Gegen Heavyweights stinkt er natürlich voll ab, sein Glück jedoch ist, daß das Cruiserweight-Wrestling in England und Japan eine starke Tradition hat. Mit andauernd riskanten Spots ist natürlich seine Dauer von Vorhinein in diesem Business begrenzt! An alle Smarks: Enjoy it while it lasts!"
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: mrjoshdudewrote on 14.07.2016:[9.0] "Probably the fastest rising star in a long time. Obviously the guy is crazy talented and cuts a fantastic promo which is all impressive as it is but even more so when you take his age into account. I doubt it'll be long before I move my rating to a 10, he's got plenty of years left in him and yet has done so much already in 2016 if he can keep things up the way he is he'll be on everybody's radar."
Rating: 9.0
Sentiment: 0.21000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Mandzukic9wrote on 21.06.2016:[7.0] "Aufwertung von 5 auf 7 wird fällig: In seinem Stil macht ihm keiner was vor. Es ist unfassbar wie weit er für sein Alter ist. Spätestens das Match gegen Ricochet bei NJPW sollte auch den letzten Zweifler von seinen IR-Fähigkeiten überzeugen: Das war pure Werbung für unseren Sport!  Dennoch kann ich ihm keine acht Punkte geben. Dafür ist er als Gesamtpaket einfach noch nicht überzeugend. Insgesamt wirkt er doch relativ farblos und wenn er nicht wrestlen würde wie ein junger Gott, würde ihn auch keiner wiedererkennen. Dazu kommt teilweise grauenhaftes Selling. Vielleicht sollte er sich mal mit seinem Kollegen Marty Scurll zusammensetzen und ein bisschen was an sich verändern. Wenn er den WWE-Vertag haben möchte der ihm scheinbar winkt, muss er auch noch einiges an Eisen in die Luft stemmen.  Ich finde dass eine 9er oder 10er Wertung zu diesem Zeitpunkt noch unangebracht ist. Der Kerl ist 23 und wir können froh sein wieder mal ein so tolles junges Talent zu haben, welches jetzt schon unglaublich stark ist, sich aber noch gewaltig steigern kann und wird."
Rating: 7.0
Sentiment: 0.03392857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Zedwrote on 10.06.2016:[6.0] "Das ist also dieser Will Ospreay, den alle so hart bejubeln. Aber wieso? Am fehlenden Charisma und Micwork liegts ja wohl nicht. Die nicht vorhandene Ausstrahlung kann auch nicht diese Jubelstürme auslösen. Wieso also rechtfertigt sein Kampfstil eine solche Wertung? Wo hat der denn was besonderes an sich, was nur wenige andere haben? Guter In-Ring Worker, aber absolut nichts besonderes, und schon gar keine Rechtfertigung um ihn so hoch zu loben."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BrentDelivinewrote on 09.06.2016:[8.0] "Reading rating comments that values Ospreay under the 5 points mark make me cringe a little. Can't be proud a 23 year old man has gotten such popularity and wrestling on such a big stage from the sounds of it. INCREDIBLY talented, one of the best wrestlers WWE hasn't got their greasy fingers on yet. I dare say he will be the UK equivalent to Tanahashi by the time he's 29."
Rating: 8.0
Sentiment: 0.3015625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Awesome1wrote on 01.06.2016:[8.0] "if you are a fan of pro wrestling and you haven't seen Will Ospreay before than you need to see this guy. At only 23 he has become one of the best high flyers in the world today but still lacks story telling and mic skills. my only real concern is that Ospreays whole move set is a spot fest"
Rating: 8.0
Sentiment: 0.25999999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Zavacwrote on 09.05.2016:[9.0] "He is a phenomenal high flyer but need to improve about the story telling and selling. His match with marty scurll is one of the greatest of all time."
Rating: 9.0
Sentiment: 0.5533333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Jobbswrote on 25.04.2016:[7.0] "Will Ospreay is a hit and miss type of guy for me. He is definitely recognized as one of the best high flyers in the world but his matches sometimes can be a bit much. I feel like he has very little understanding of psychology and storytelling in his matches but his matches w/Havoc, Scurll, Styles, & KUSHIDA have really showed that he can sell and have a story filled match but his matches w/Ricochet and Sabre are the types of matches that I'm not really into though. Overall though he's got a very promising career in my view."
Rating: 7.0
Sentiment: 0.187625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: meatrockit83wrote on 17.04.2016:[10.0] "Will Ospreay is a special talent.  Every time out, he's better than he was previously.  He's not just a high-flyer, he's a great seller and a capable technician.  And he's not "sloppy" or "reckless" with his flying; always on point.  Virtually no one is as good as he is at his age and experience level; a prodigy, if you will.  Ospreay, Sabre, Jr. , and Scurll are the new wave of British wrestling.  He may not be long for NJPW and it'll just be a matter of time before he's wowing us in WWE."
Rating: 10.0
Sentiment: 0.293517316017316
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Brainbreakerwrote on 15.04.2016:[8.0] "Ospreay ist ein verdammt guter! Mit seinen gerade einmal 22 Jahren darf er bereits in Japan worken. Das schafften in dem Alter nur wenige Gaijins - und das soll was heißen. Sein Stil ist unterhaltsam, präzise und leidenschaftlich. Er macht den 450° so routiniert wie andere einen Missile Dropkick. Aber da liegt auch das Problem, was ich mit ihm habe (und was ein nicht unbeträchtlicher Teil der Community hier zu haben scheint): Ospreay lebt von seinen inflationär eingesetzten Spots. Damit kann er Storytelling und In-Ring-Psychologie überspielen, aber nicht ausmerzen. Es wäre wünschenswert, wenn er in den kommenden Jahren sein Standardrepertoire eingrenzen könnte, damit er das Besondere auch nur zu besonderen Anlässen auspacken muss. Auch aus gesundheitlichen Gründen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: MaxWxWwrote on 14.03.2016:[10.0] "Überrangender Typ super sympathisch und dazu unglaublich unterhaltsame Matches. Ein äußerst spektakuläres Move-Set und sein Charisma machen ihn für mich zu einem der besten High Flyer Europas. Dazu ist er erst 22 Jahre alt."
Rating: 10.0
Sentiment: 0.24666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: craigohwrote on 17.02.2016:[10.0] "this young man is Gold, technically great in the ring with some of the finest High Flying wrestling in the World (and I mean that) "the aerial assassin" has had such awesome matches in the last 12 months against Mark Haskins, Mark Andrews, A. J. Styles and Jimmy Havoc (the latter being a 5 star classic of British wrestling, if able to definitely watch this match) really impressive on the mic for a young wrestler as well. needs to be signed by a major company because this kid has got everything to be a global star."
Rating: 10.0
Sentiment: 0.22354166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: BlueDiamondwrote on 21.01.2016:[9.0] "Er ist im Moment einer der Topleute bei Rev Pro und im Eurowrestling. Gesegnet mit einer spektakulären Athletik, Charisma für die Fans und konstant guten In-Ring Leistungen 2015 und 2016. Wünsche ihm nur das Beste für die Zukunft, da er das Potential zum Topstar hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: RainmakerF7wrote on 23.10.2015:[10.0] "Ospreay is an amazing high flyer. He's got great skills and he is oozing with charisma. His recent match with Kazuchika Okada was epic and put him on my map. Good luck Will, I hope you will do well and I hope we will once see You at the top.."
Rating: 10.0
Sentiment: 0.40857142857142864
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: steviecwwrote on 16.06.2015:[9.0] "Stand-out of RPW and Progress, Ospreay couldn't be more on the up following a series of incredible matches with Matt Sydal, AJ Styles, Rocky Romero, Zack Sabre JR, Amazing Red, Jimmy Havoc, Marty Scurll and Noam Dar. Delighted he'll be at PWG's BOLA this year. Hope to see him appear for ICW someday soon too."
Rating: 9.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: JamesHarrisonwrote on 15.03.2015:[10.0] "Will Ospreay is for sure the best Highflyer in Europe hands down. He always puts on a great performance anywhere he goes. He's got a great future and will make it to the bigtime no problem what so ever!"
Rating: 10.0
Sentiment: 0.49074074074074076
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Matt4Wrestlingwrote on 02.01.2015:[8.0] "Top Charisma und Top-High Flyer, der nur noch nicht zu wissen scheint, wann es am besten ist für ihn die Bremse zu ziehen! Außer High Flying müsste er sich noch mehr Boden-Manöver aneignen, was besser für ihn wäre, falls er irgendwann nicht mehr fliegen kann!"
Rating: 8.0
Sentiment: 0.4125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Blue Meaniewrote on 08.12.2014:[7.0] "Sehr solider Highflyer, der in Oberhausen bei wXw sehr schnell over war. Vllt. teilweise etwas zu spotlastig, aber dafür zumeist sauber in seinen Moveausführungen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=14028&gimmick=Will+Ospreay
Comment: Boris The Menacewrote on 07.04.2014:[5.0] "Greg Burridge claims Ospreay is one of the best workers in the UK at the moment, I really don't see it. At the moment I see a decent high flyer that has a lot of work ahead of him to become one of the top workers in the UK."
Rating: 5.0
Sentiment: 0.40533333333333327
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Pinkd56wrote on 01.09.2024:[3.0] "Duran appeared to be a very good actor on LU, but has been shown up with the lower production values of MLW. I think it is very difficult for a non-wrestler to get much more than this score as a result."
Rating: 3.0
Sentiment: 0.2533333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: benny5bellyswrote on 20.02.2024:[6.0] "He was good in a promotion that was heavily edited and probably had multiple takes. Anyone who has the misfortune of watching MLW will know it is increasingly diminishing returns and there is really not much there outside of the unique atmosphere and presentation of Lucha Underground, he is not the only person to exposed once out of the production studio wrestling promotion. Very much lightening in a bottle that had little longevity."
Rating: 6.0
Sentiment: 0.09416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: crs285wrote on 13.04.2023:[9.0] "Dario Cueto was the star of Lucha Underground. He played the role of evil businessman perfectly. He made the show with his charisma and abilities on the mic. He is also improving MLW"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: GriffinXwrote on 27.03.2023:[4.0] "So damn Corny. I get the guy is an actor and likely told to play it that way by the companies he is in but that doesn't make it good. He commits the biggest sin of a non wrestler he takes away from the actual in ring talent"
Rating: 4.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: WhatIsLooveeewrote on 09.02.2022:[10.0] "One of the best evil boss characters and one of the brightest characters in the history of Lucha underground. Initially, a little-known average actor who had never been previously associated with wrestling was able to become an incredibly convincing and charismatic fanatic owner of his own temple who obsessed with violence. This role just perfectly suited Luis and brought him fame. At the moment, he's probably the only (or at least definitely the main one) reason to watch MLW Azteca."
Rating: 10.0
Sentiment: 0.115625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[8.0] "Such a shame that Lucha Underground never got a swan song. Cueto was a character that brought the whole show together. I know he's an actor, but I'm surprised he hasn't popped up elsewhere to reprise his role as a manager in a different company. I suppose El Rey owns the rights to the character, which might make it difficult, but if he ever has the possibility of wrestling those rights away, I'd love to see him as a manager of a Spanish speaking talent in the future."
Rating: 8.0
Sentiment: 0.037500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: cpatchjwrote on 04.03.2018:[7.0] "He's a good actor and he plays his role well, but in the grand scheme of wrestling history, I think he's a solid 7."
Rating: 7.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Johnny Ampedwrote on 12.09.2017:[10.0] "ich schließe mich meinen Vorrednern an und gebe El Chefe die höchste Bewertung. Bei Luis Fernandez-Gil handelt es sich um einen Darsteller, der die Kunst des Schauspiels in vollen Zügen beherrscht. Er ist eins mit seinem Charakter und das merkt man durchgehend. Gil stellt seinen Charakter völlig authentisch und unterhaltsam dar und geht vollkommen darin auf. Ich als Zuschauer merke das und bin völlig begeistert. Mimik, Gestik, Micwork, Optik, einfach alles passt. El Chefe for the win!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: taabr2wrote on 11.09.2017:[10.0] "For his role on Lucha Undergroud Dario Cueto is quite good. Definitely a big reason why is the fact that he is an actual actor who know how to play a television character."
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Hypocrisywrote on 16.04.2017:[7.0] "Dario Cueto gefällt als schrieriger El Chefe. Jedoch lassen einerseits die kurze Zeit im Business und andererseits das wenige an Spontanität eine bessere Bewertung noch nicht zu."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: ApexOfEvolutionwrote on 28.12.2016:[9.0] "Die Personifizierung von Lucha Underground. El Jefe trägt die Show wie kein anderer mit seinen großartigen schauspielerischen Fähigkeiten. Die 10 Punkte gebe ich nur deshalb nicht, da ich ihn vorher gerne mal irgendwann als klassischen Manager sehen möchte um zu sehen, wie er sich da schlägt. Aber das hat ja noch Zeit. Ich hoffe Dario Cueto bleibt LU noch lange erhalten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Cleanerwrote on 06.09.2016:[10.0] "Allein die Idee, keinen Wrestler sondern einen professionellen Schauspieler für eine solche Rolle zu verwenden ist klasse. Cueto hat sich über die zwei Staffeln als absolutes Aushängeschild von LU bewiesen, seine Promos sind jedes mal ganz große Klasse. Er füllt die GM-Rolle definitiv "sehr gut" aus"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: mrmctommywrote on 23.08.2016:[9.0] "One of the better personalities in televised rassling. It helps that he's a legitimate actor, but he also has a natural knack for presentation and showmanship."
Rating: 9.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Luv all wrestlingwrote on 13.08.2016:[10.0] "Dario Cueto gets a 10 for his great acting, every line he delivers is on point and gets you to feel what he wants you to feel."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Mizzle Assault Antwrote on 03.08.2016:[10.0] "An actual professional actor who understands how to work a crowd on the mic... this dude is an incredible find. Honestly anyone who can't see the major value in this guy must be nuts. One of the best GM type characters ever but he's so much more. Fantastic character, fantastic performance."
Rating: 10.0
Sentiment: 0.44027777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Carrot Junkiewrote on 01.07.2016:[10.0] "Cueto is fantastic.  Great actor, great promo, and a surprisingly strong manager for Matanza.  One of the most interesting, developed, and three-dimensional characters in wrestling right now.  Hell, he's probably the best character to come from a non-performer since Paul Heyman."
Rating: 10.0
Sentiment: 0.5354497354497355
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: The Sick Lebowskiwrote on 14.05.2016:[10.0] "Natürlich, er ist professioneller Schauspieler, aber Wahnsinn, wie gut er die Rolle als gestörter, schmieriger "El Jefe" spielt. Die Segmente mit ihm sind absolute Weltklasse, und für einen Schauspieler lässt er sich vor den Kameras auch recht gut hin- und herschubsen. Ganz dicke zehn Punkte!"
Rating: 10.0
Sentiment: -0.23214285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: killowenskillwrote on 04.05.2016:[6.0] "I sincerely do not understand why Dario such high ratings. The role he is not top class, playing some kind of mumble that gives game to anyone who threatens him. And the actor's performance is not at the highest level. I like Lucha Undeground, but work Cueto does not impress me."
Rating: 6.0
Sentiment: -0.023333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: NastyYaffawrote on 19.04.2016:[7.0] ""El Jefe" is a solid on-screen boss of Lucha Underground. Not on the level of the best GM's/bosses in wrestling (Vince), but he is good."
Rating: 7.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Klabauterwrote on 16.03.2016:[10.0] "Die wohl beste Autoritätsfigur im Wrestling-Business. Das wird sehr, sehr interessant, wenn er seinen Platz im Tempel zurückerobert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: JuliTheCage87wrote on 15.01.2016:[9.0] "Also wenn der Typ nicht klasse ist... Anfänglich dachte ich, dass die Sprachprobleme bezüglich seines Englischs den Charakter schnell sterben lassen würde, allerdings ist er mit der Zeit zu einer festen Größe in Lucha Underground herangewachsen, was Mic-Performance und Story-Telling angeht. Er versteht es, innerhalb von wenigen Sätzen einen riesigen Inhalt widerzugeben, was natürlich auch an der Grandiosität von Lucha Underground liegt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: DanTalksRasslinwrote on 05.12.2015:[9.0] "Though Lucha Underground is his first role in wrestling, the man now known as Dario Cueto has been a film and TV actor for well over a decade and brings that experience to his role as a fantastic "evil boss" character.  Cueto has the mic skill and acting chops to pull off his role, and plays it just over-the-top enough to always be entertaining.  I look forward to seeing how his character develops."
Rating: 9.0
Sentiment: -0.049999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Frompartsunknownwrote on 14.10.2015:[10.0] "Dario Cueto hat so viel Charisma, das reicht für eine ganze Kleinstadt. Hinzu kommen natürlich seine unglaublich coole Stimme und sein großartiges Schauspielerisches Talent. Er ist für mich die beste reine On-Air-Autoritätsperson an die ich mich erinnern kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: NewBreedwrote on 11.10.2015:[10.0] "Bei ihm weiß man gar nicht, ob er eine Rolle spielt oder einfach so ist. Genau so sollte es sein und es ist göttlich wie er Heat zieht. So sollte ein GM einer Wrestling-Promotion sein, auf seinen Vorteil und den der Promotion bedacht. Perfekt! Noch keinen Besseren gesehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: KimboSlicewrote on 19.08.2015:[10.0] "Überragend, großartig, göttlich... sucht euch etwas aus. Dario Cueto ist mit weitem Abstand eine der besten On-Air-Personen. Spielt seine Rolle mehr als authentisch und es macht einfach Spaß ihm zuzuhören und zuzusehen. Es stimmt einfach alles: das Aussehen, der Akzent, die Stimme, die Rolle... ganz großen Respekt an den Darsteller, welcher hinter der Rolle Cueto steckt. Einen Charakter so glaubhaft zu spielen als jemand, der in der Wrestling-Welt neu ist, ist verdammt stark. Einer meiner liebsten Charakter bei Lucha Underground."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Heel MaSchwrote on 07.07.2015:[10.0] "Einfach überragend in seiner Rolle, kann man nicht besser spielen. Dario Cueto ist mit Abstand DIE beste On-Air-Autoritätsperson sämtlicher Wrestlingligen 2015."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: MusSanwrote on 28.06.2015:[10.0] "Der Typ ist einfach genial. Der Paul Heymen von Lucha Underground. Spielt seine Rolle einfach ueberzeugend."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Akeldemawrote on 14.05.2015:[10.0] "El Jefe ist im Moment einfach der genialeste Heel im Business. Sein Mic-Work ist exzellent, sein Auftreten einwandfrei. Der Moment wie er sich einfach einen Drink holt, obwohl El Parton gerade durch das Fenster in sein Büro geworfen wurde zeigt wie genial dieser Charakter ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: jchiofalwrote on 30.04.2015:[10.0] "After years of having the heel GM being tired, and repetitive, Dario Cue to breaks from the mold. Brilliant heel that you love to hate, with such a smooth attitude. Everything he says and does it deliberate, and to the point."
Rating: 10.0
Sentiment: 0.049999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: sign squadwrote on 05.03.2015:[10.0] "Klar, der ist so gut in seiner Rolle, weil er gelernter Schauspieler ist. Aber verdammt, er ist SO fantastisch. Die perfekte Besetzung eines Heel-Besitzers, der mit dem dreckigsten Spanischakzent insbesondere im Zusammenspiel mit Konan mir extrem gut gefällt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: Maryanwrote on 04.03.2015:[8.0] "I review him as I have seen him on Lucha Underground. The heel promoter that dislikes the babyfaces and pays the heels to do his dirty jobs for him... Pretty interesting but I hope Puma or Mundo will beat him off one day as of a storyline would go."
Rating: 8.0
Sentiment: 0.05000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9189&gimmick=Cesar+Duran
Comment: HHH Pedigreewrote on 28.02.2015:[8.0] "Cueto is a realy good authority figure. He is powerfull, he speaks English and Spanish (He is from Spain, yeah). Alos, he isn't a Carter or a McMahon, he is an old School Authority Figure. He is the power above everything else, he isn't a wrestler and he isn't feuded with the wrestlers. That's cool."
Rating: 8.0
Sentiment: 0.19166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: GonzoAppreciatorwrote on 12.11.2024:[10.0] "Easily my favorite deathmatch guy of all time. Kasai has absolutely no inhibitions when it comes to insane spots and has done everything short of dying in the ring to entertain his bloodthirsty audiences. Just take one look at his back to see how much he's given in the wrestling ring."
Rating: 10.0
Sentiment: -0.1285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Trixsha Havoc 58wrote on 03.09.2024:[10.0] "Jun Kasai es mí luchador deathmatch favorito de todos los tiempos, el realmente tiene una excelente habilidad a la hora de luchar y su nivel de intensidad y tolerancia al dolor son realmente increíbles. Este tipo es realmente un loco que no le teme a nada y realmente admiro la pasión que tiene por la lucha libre, solo debes mirar su espalda para saber que este hombre es legítimo y peligroso, no cualquiera estaría dispuesto a continuar una lucha luego de haberte roto por completo el codo al punto de se te note el hueso. También es muy carismático y sabe cómo dar una excelente promo. Kasai es el GOAT del deathmatch y uno de los mejores luchadores japoneses de la historia."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: EyeSocketCrunchwrote on 18.07.2024:[10.0] "My #1. Other wrestlers may be better on the mat or better on the mic but none of them will ever hold a candle to the presence that Jun Kasai has. One of the strongest. and most dedicated performers still working today. He has somehow endured 25+ years of severe, body shattering torment, and is still able to bring it like a man half his age. If I see his name on a match, chances are I'll enjoy it. A world class look, world class charisma, and a world class tendency to bump like an absolute freak. He is one of the reasons I love professional wrestling. You might not agree with what he decides to put his body through, but I find it absolutely beautiful that he chooses to, and that he does it for us."
Rating: 10.0
Sentiment: 0.34166666666666673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: butthead42069wrote on 17.07.2024:[10.0] "The single greatest deathmatch wrestler of all time in my book. Dude can work a great match without weapons but knows how to use those weapons to elevate the match to the next level. His psychology is next-level - particularly in the deathmatch space - knowing exactly what his role in each match is and how to use the format to push the storytelling to its absolute height without taking things unnecessarily far given his opponent. From car crash clusterfuck matches (Kasai/Matsunaga vs. Gage/Zandig) to next-level ultraviolence (Kasai vs. MASADA @ Pain in Limit 2012) to technical, psychological matches that push his opponent to the brink (his masterpiece of a match vs. El Desperado), he can do it all. Creative, psychological, technically sound, and charismatic enough to get any crowd chanting for him. He's everything deathmatch should be and more."
Rating: 10.0
Sentiment: 0.271577380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: AS173wrote on 30.05.2024:"A prime example of why death match wrestling deserves no place in the business. Jun Kasai's hideously scarred body is a testament not to his devotion and incredible dedication, as many here claim, rather it is nothing more than a testament to the sheer idiocy of the death match scene. That this masochistic idiot should be held up by his fans as a paragon of wrestling skill only demonstrates that the bar for excellence has fallen too low to measure. Jun Kasai is 49 at the time of writing this comment. If he lives to see 60, I will be surprised."
Rating: No rating found
Sentiment: 0.09999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Suggarwrote on 14.02.2024:"On the Mount Rushmore of Death Match. Up there with the likes of Onita & Hayabusa in terms of innovation. He is a hardcore wrestler out of passion and not out of need, bloothristy bastard. One of my personal favorite active wrestlers."
Rating: No rating found
Sentiment: 0.12222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: The Quick Manwrote on 13.01.2024:[9.0] "Potentially the GOAT of the Japanese deathmatch scene. Endlessly charismatic, absolutely insane, and always pops the more bloodthirsty fans of the wrestling world. His saga with El Desperado also did wonders in introducing him to new fans who don't keep up with the deathmatch scene."
Rating: 9.0
Sentiment: -0.0037878787878787984
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: thedman0310wrote on 28.12.2023:[10.0] "This dude is an absolute fuckin lunatic. Not only is he willing to do some insane things to himself and others, but he's also a phenomenally talented wrestler. It's a damn shame we never got a singles match between him and Sick Nick Mondo."
Rating: 10.0
Sentiment: -0.09404761904761906
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Grapefruit Juicewrote on 13.12.2023:[10.0] "My personal favorite wrestler, exceptional deathmatch talent, technical abilities as well so he can go in a normal match. Jun Kasai the Crazy Monkey has given his body to the ring and will always be my GOAT."
Rating: 10.0
Sentiment: 0.0952380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Vanstylerwrote on 01.12.2023:[8.0] "Oh boy, I love Kasai. Always enjoy his matches and he's probably the craziest individual in the business. Not a perfect score because all his matches consists in dealing 20 finishers, breaking 200 light tubes and still kick out. Anyways, BIG RESPECT for this man and all he had done in his career."
Rating: 8.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Wrest lingaddictionwrote on 16.11.2023:[9.0] "This man is mental... The "Crazy Monkey" is deathmatch royalty being a multiple-time champion in companies like FREEDOMS which specialise in deathmatches and also being apart of NJPW's first deathmatch. what a career for someone who has LITERALLY left it all in the ring"
Rating: 9.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: tmxiconwrote on 04.05.2023:[7.0] "As high of a rating as I'm going to give anyone who is primarily a deathmatch wrestler. Kasai is a capable wrestler who I will give credit to devoting himself entirely to his specific vision of pro wrestling. That said, it's not close to being my flavor of pro wrestling and my rating reflects that."
Rating: 7.0
Sentiment: 0.152
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: mano007wrote on 31.12.2022:[7.0] "Jun kasai is a legend of the industry who is someone who is past his prime. But his deathmatches were a sight to behold."
Rating: 7.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Supacat15wrote on 23.09.2022:[7.0] ""Jun Kasai is a terrific wrestler who amused us for many years, but I'm only awarding him a 7 because of recent performances.""
Rating: 7.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: dnmtwrote on 17.08.2022:[10.0] "Jun Kasai is one of the all-time greats, period. He's more charismatic than virtually anyone else in the country. An amazing aura and presence, Kasai is something like what a crazed 8-year-old boy would make a pro-wrestler be if they had never seen pro-wrestling and had to imagine one. "Yeah, he's covered in scars and his name is Crazy...Monkey? And he wears pilot goggles and jumps off balconies onto people! " Just everything great about pro-wrestling wrapped up in one person. A pioneer for an entire sub-genre as well and someone who laid the foundations for death match wrestling as the true art form it now is. It's sad that he's been lumped in the death match bin by some who would refuse to even watch him, but they truly don't know what they are missing out on. Joke's on them. No death match, no life."
Rating: 10.0
Sentiment: 0.27499999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: CLUCKwrote on 27.06.2022:[7.0] ""Crazy Monkey" Jun Kasai one of the legend of hardecore deadmatch, i enjoy watching him wrestling in deathmatch alot"
Rating: 7.0
Sentiment: -0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: LIGERISMwrote on 21.06.2022:[10.0] "Jun Kasai is an enigma. No one has done more for deathmatch wrestling than Jun Kasai and no one has performed deathmatches for as long and at such a high level as Jun Kasai. Kasai has consistently produced classic deathmatches for 20 years. No one else can even come close to claiming that. Being a great deathmatch wrestler is one thing, but Kasai's in-ring talents have shown time and time again as he has been able to hold his own in every non-deathmatch promotion he's worked for. A legend by every definition of the word."
Rating: 10.0
Sentiment: 0.3251851851851852
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: yunuskayabrandwrote on 03.08.2021:[3.0] "actually i would congratulate this guy for his efforts, but this guy is just crazy he is so sadistic when i see him in the ring it makes me sick to my stomach"
Rating: 3.0
Sentiment: -0.4380952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: XXDoubleHHXXwrote on 03.08.2021:[10.0] "He is the very definition of hybrid. His wrestling skill in both Deathmatches and normal singles matches, but what amazes me is how far he is willing to go to impress the audience putting his own body in the worst situation."
Rating: 10.0
Sentiment: 0.04999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: ExcitingProWrestlin3wrote on 16.06.2021:[6.0] "A deathmatch legend of unparalleled proportions, sure, but I usually rate off of current form, and the toll on his body has taken, most certainly, though I still see him as a satisfactory wrestler who can still rumble."
Rating: 6.0
Sentiment: 0.19285714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Khalid Acewrote on 31.12.2020:[7.0] "Jun Kasai is a great wrestler who entertained us all those years but I am only giving him a 7 because of what I've seen from him lately."
Rating: 7.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: medousewrote on 29.10.2020:[10.0] "My common sense tells me to rate him 8 or 9, but my heart is screaming 10! My final score is a tribute for all the insane shit this guy ever done in his wrestling career. The fact he still walks and talks is a real miracle. I've seen him doing things no man would survive. Crazy Monkey fears no man, no weapon, no height. Jun Kasai is a true deathmatch legend."
Rating: 10.0
Sentiment: -0.20937499999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: laldilawrote on 15.06.2020:[10.0] "Initially had him at a 9, probably because there are deathmatch guys I personally like more, but that's really insane because he's an absolute legend in the field and one of the best to ever do it. I'm so glad he's back in action. There are few wrestlers with a better look; his back alone is absolute carnage and he somehow always bringing it despite taking the amount of punishment he's taken. A legend."
Rating: 10.0
Sentiment: 0.13846153846153847
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: RatingsMachinewrote on 25.10.2018:[8.0] "Jun Kasai is one of the better death match wrestlers out there, although he sometimes takes things a little too far."
Rating: 8.0
Sentiment: 0.13749999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Zeocrymerwrote on 15.08.2018:[10.0] "My favorite deathmatch wrestler (and one of my favorites in general) of all time. No other person in his field can truly capture the endearing charisma and absolute manic energy like Jun Kasai. The guy looks like he should be a touring bassist for Marilyn Manson in the early 2000's, his body is all scarred up, and even to this day he still does these insane deathmatches. Even beyond all the guy is just an excellent high flyer and an absolutely tremendous comedy wrestler. Kasai is the full package and that much more. A modern day legend, and the standard by which all deathmatch wrestlers should aspire to reach."
Rating: 10.0
Sentiment: 0.2111309523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: IsThisWrestlingwrote on 08.03.2018:[10.0] "The ultimate God of deathmatch wrestling, no matter what country you're talking about. Nobody will ever reach the caliber of the great "Crazy Monkey" Jun Kasai!"
Rating: 10.0
Sentiment: 0.03437500000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: The Chosen Onewrote on 27.06.2016:[10.0] "I have so much respect for this man. If you look at his torso and back it is just scared up like hell. He is definitely the best death match worker in Japan and maybe the whole world. He is actually a pretty solid technician and acrobatic as well. He has had some great matches and my favorite is with him and Masada."
Rating: 10.0
Sentiment: 0.3277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: craigohwrote on 17.02.2016:[7.0] "Jun Kasai, probably the best Deathmatch worker Japan has ever seen, as put his body on the line so many times for the fans it's hard not to give him respect (although I'm not a huge Deathmatch fan, I can still respect the guys who can make the matches have good psychology and story) and Kasai can do that, the guy has an amazing understanding of ring Psychology and although his technical wrestling isn't his strongest element, he can still put a good match on (nothing exceptional - but still able to entertain the crowd). another key point is his look, the guy looks so grungy (in that Prodigy and mid nighties underground music culture look) and his scars, that it kinda gives him a unique and stand out image. his work is worth a watch especially for Hardcore and Deathmatch wrestling fans"
Rating: 7.0
Sentiment: 0.32333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Zedwrote on 21.08.2015:[10.0] "Heiliger Harry ist das ein Verrückter Typ. Was ich von ihm gesehen habe bei Freedoms und CZW kann man kaum in Worte fassen. Einfah abartig krank, auf der anderen Seite dann doch wieder unterhaltsam, wenn ihm seine Gegner BBQ Spieße in die Stirn bohren und er unter Kasai Chants in die Kamera grinst. Einfach ein genialer Typ. Gibts eigentlich einen Grund wieso er nicht mehr für BJW antritt ?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: HongKongPhooeywrote on 06.08.2014:[10.0] "Jun Kasai is without a doubt the best deathmatch wrestler ever. His psychology really is top notch and when you watch a match of his you can't help but get sucked in. Even his non hardcore stuff from Zero-1 is really entertaining if you can find it. Kasai is really a secret gem in wrestling and will go down as ne of the most underrated workers of this generation."
Rating: 10.0
Sentiment: 0.3240740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Perko27wrote on 01.08.2014:[10.0] "Kasai is one of the greatest deathmatch wrestlers that has ever lived, his matches are so entertaining and he has given his body to the fans. It's sad that he hasn't and proberbly won't hold the BJW Deathmatch Title."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: herthajasperwrote on 06.01.2014:[9.0] "Der verrückteste Wrestler der Welt seine Matches sind einfach nur krank."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: itagorehorrorwrote on 24.12.2013:[9.0] "Jun Kasai is amazingly fun to watch. The energy he brings to matches, as well as involving the audience, is amazing and his willingness to take insane bumps is awesome. One of the stars of BJW that will always provide an awesome show. The Japanese crowd loves him and they have every reason to."
Rating: 9.0
Sentiment: 0.3166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Sick Boywrote on 03.04.2013:[10.0] "Für mich als DM-Fan zurzeit das Nonplusultra in diesem Bereich. Wie er es schafft das Publikum mitzuziehen ist der Wahnsinn!"
Rating: 10.0
Sentiment: -0.8928571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Gredzillawrote on 17.03.2013:[10.0] "Mein Lieblingswrestler. Ehrlich. Als ich Big Japan das erste mal sah, sah ich den Typen da. Und normaler Weiße wenn ich Deathmatchwrestler sehe denke ich ja viele Narben aber als ich den sah, dachte ich mir "Was zur Hölle muss man anstellen um so auszusehen! " Als ich dann das Match, und danach viele andere sah, wars um mich geschehen. Das istn typischer Wrestler aus der japanischen Deathmatchszene wie ich sie mir vorgestellt habe. Ich will nicht wissen wo er seine Zähne verloren hat, oder wobei. Hab gehört er soll sich bei nem Match auch nen offenen Bruch geholt haben. (hab das Match aber nie gesehen und DAS will ich auch ned sehen) aber der Typ is einfach Hardcore in Person. Jemand der sich in ein Rassierklingenbrett donnert und dann mit Kenzans zugepflastert wird und dann auch noch mit ner Fliegerbrille blutüberströhmt da steht und lacht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Obermackerwrote on 23.01.2013:[7.0] "Bin zwar normalerweise kein Fan von Trash(Hardcore)Wrestling, aber dieser "Affe" ist schon unterhaltsam. Wie lange er den Stil noch gehen kann, is ne andere Frage!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Valerionwrote on 10.10.2012:[9.0] "Sieht aus wie aus einem Horrorfilm entsprungen, liefert absolut teuflische Matches und noch teuflischere Spots die sonst so gut wie keiner überleben kann ab. dafür 8. 0 Punkte. +1 für die Fliegerbrille!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: affenmannwrote on 06.02.2012:[9.0] "Großartiger und verrückter Deathmatch-Wrestler mit einzigartiger Aura, der auch durchaus Fähigkeiten in normalen Kämpfen zeigen kann."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: STRIGGAwrote on 24.01.2012:[10.0] "Jin Kasai hat so viele Facetten. In erster Linie ist er natürlich Death Match Wrestler, doch ist er nicht nur auf diese Sparte festlgelegt, sondern kann auch durch Technik, Spots und Comedy-Elemente überzeugen. Das Gesamtpakat Kasai ist für eine Promotion einfach unglaublich vielseitig einsetzbar. CRAZY MONKEY~!"
Rating: 10.0
Sentiment: -0.33125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Matt4Wrestlingwrote on 22.01.2012:[10.0] "Crazy? Absolut! Er hat in seinem Hardcore-Style soviel Technick, dass man genau hinsehem muss um nix zu versäumen, auch wenn er manchmal dann nur in Unterhose wrestlet oder seinem Gegner zum Abschied ein Kuss mit auf dem Weg gibt! Ein totales Packet, wechsle bloss nicht zum normalen Wrestling!"
Rating: 10.0
Sentiment: -1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Rated R Champwrote on 01.04.2011:[8.0] "Der Kerl ist wohl absolut einzigartig. Er hat Ausstrahlung und ist ein grundsolider Wrestler, aber dazu hat er einen absoluten Knall, der ihn wohl früher oder später in den Rollstuhl befördern wird. Aber auch wenn ich prinzipiell kein Freund von Death Matches bin, ist Kasai einfach beeindruckend, er versteht es, zwischen der ganzen Brutalität immer auch eine Geschichte im Ring (oder halt daneben) zu erzählen. Zudem sind seine Matches wirklich eine absolute Attraktion."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Kumbaowrote on 15.10.2010:[10.0] "Kann mich den ganzen Lobhuddeleien nur anschließen. Macht selbst jenseits der Deathmatches eine großartige Figur, aber gerade in dieser Matchart spielt er all seine Trümpfe aus. Hart, kreativ, witzig, talentiert, großartige Ausstrahlung... die Liste ließe sich ewig fortsetzen. Einer meiner absoluten Lieblingswrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Jay Burgerwrote on 17.08.2010:[10.0] "Kasai ist neben Ito und Miyamoto aktuell der einzige Death Match Wrestler, dem ich ohne Probleme 10 Punkte geben würde. Zwar kann er kein Match so gut führen wie Ito und kann nicht durch so unglaublich viele Spots und Moves welche perfekt sitzen wie Miyamoto zeigen, aber Kasai hat in diesem Bereich eine art Aura wie sonst keiner, seine Matches sind intensiv, er schreckt vor keinem Move zurück, nichtmal von 7 Meter Sprüngen ohen Schutzmatte, und hat unglaubliche Schmerzresistenz. Kasai ist für mich das Sinnbild aller Death Match Wrestler und er schafft es, das Matches nie langweilig werden und das (meistens) ohne irgendwelche unnötigen Risiken einzugehen. Auch er versteht es, Matches langsam anzugehen und er haut in der Schlussfase alles raus, was er hat um das Publikum zu begeistern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: RickRollwrote on 18.04.2010:[9.0] "Harter und zugleich auch verrücker Hund der nicht lighttubes braucht um im Match zu überzeugen, sondern er kann auch ohne irgendein einsatz von Waffen gute Matches zaubern. Kann den technischen und High Flying stil gehen, aber natürlich auch den Hardcore Stil. Einer der besten Deathmatch Worker und schon jetzt eine lebende (Hardcore) Legende."
Rating: 9.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: T-Waynewrote on 31.03.2010:[9.0] "Crazy Monkey.... yep, dieser Name trifft voll und ganz auf ihn zu, jedoch im positiven Sinne. Ist mein persönlicher Lieblings-Deathmatchworker, weil er (was viele andere Deathmatchwrestler nicht besitzen) ein gutres Moverepertoire hat und zu seinen Hardcore-Skills auch noch gute Technik-Skills hat. Und das, was er seinem Körper antut, um andere Leute zu unterhalten ist in der Tat "crazy"."
Rating: 9.0
Sentiment: -0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Eddiewrote on 16.03.2010:[9.0] "Das geile an Kasai ist, dass er nicht nur mit Barbed Wire und Lighttubes um sich werfen kann und damit den Gegnern weh tun kann, sondern er kann auch wirklich wrestlen, was ihm kaum jemand zutraut. Dafür gibt es von mir 9 Punkte, da ich sowohl auf Death Matches stehe, als natürlich auch auf technical Matches."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: micha92wrote on 14.02.2010:[10.0] "Total krank was er im Ring anstellt und zudem ist er noch ein genauso guter Techniker wie Deathmatchwrestler, weshalb er nur 10 Punkte kriegen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Aquifelwrote on 14.12.2009:[9.0] "Verrückter Hund der Jun Kasai. Sieht wild aus, hat hohen Wiedererkennungswert und als Death Match Wrestler rockt er einfach. Rein wrestlerisch kann er nicht mit Ito mithalten, ist aber trotzdem auch grundsolide, wenn nicht besser, was ihn in den Death matches noch besser macht."
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: kingbogwrote on 22.11.2009:[9.0] "völlig wahnsinniger death matcher. irrwitzige bumps und ein sehr cooles gimmick. der pearl harbor splash ist einfach legendär"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Hypocrisywrote on 31.05.2009:[8.0] "Wahnsinnig innovativer Death Match Worker mit dem Hang zum Fliegen aus großen Höhen; ich glaube er nennt das Pearl Harbor Splash."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Mick Funkwrote on 12.05.2009:[8.0] "Einer meiner Lieblingsworker im Bereich Deathmatches. Großer Wiedererkennungswert."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Kingpin39wrote on 24.10.2008:[10.0] "Mit Abstand der krankeste Deathmatch Wrestler denn ich je gesehen habe. "Long live Kasai""
Rating: 10.0
Sentiment: 0.043181818181818175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Baby Duckwrote on 11.06.2008:[9.0] "Ich hab bisher nur wenig von ihm gesehen, aber was ich gesehen habe war krank. Wahrscheinlich einer der besten und härtesten Hardcore Wrestler die es derzeit gibt Ein Typ bei dem man bei jeder Aktion glaubt das wars jetzt"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Baszdmegwrote on 20.04.2008:[10.0] "Wohlt nicht mehr ganz beisammen im Kopf, aber das zeichnet ihn wohl aus. Wie ich finde einer der besten japanischen DMler überhaupt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Masadawrote on 08.03.2008:[10.0] "GROßARTIG! Vereint alles , was ich bei nem Wrestler haben will."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Moshpit-Hooliganwrote on 15.11.2007:[10.0] "Der Deathmatch-Worker aus Japan. Eigentlich braucht man nur ein Wort zusagen... SICK! Und das sollte ein Deathmatch ja wohl sein. In seiner Art zu Wrestlen hat er ganz klar ein "Sehr gut" verdient."
Rating: 10.0
Sentiment: -0.8928571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: mdbnasewrote on 25.10.2007:[8.0] "Sehr unterhaltsam und auch technisch ok! ... und auch ein schöner Rücken kann entzücken!"
Rating: 8.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: shannonmoorewrote on 07.08.2007:[4.0] "Irre....... bitte sofort auf die Battle Royal Insel."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=736&gimmick=Jun+Kasai
Comment: Moonbloodwrote on 02.07.2007:[10.0] "PEARL HARBOR SPLASH~! Kasai ist 'ne verdammt coole Sau und macht jedes Match allein durch seine Anwesenheit sehenswert. Seine Technik geht absolut in Ordnung und in Death Matches ist ihm sowieso nur schwer was vorzumachen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RratedShawnterwrote on 10.02.2025:[10.0] "Optisch 10/10 (moneypieces waren crazy) Outfit auch crazy (vorallem die hot topic Mäntel) In-Ring abillity war auch 10/10"
Rating: 10.0
Sentiment: -0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: dhruboezitwrote on 26.01.2025:[10.0] "I liked Edge. The Edge that was in the Brood, wrestled against the Dudleys and the Hardys, had an affair with Lita, cashed in on Cena, and was in a tag-team with Randy. That's the Edge that everyone likes in fact. He's a legend, no doubt. 12 world world champion (yet most of his title reigns are forgettable, short-lived and almost like ball-play). But he was a great in-ring worker and a dependable main eventer for WWE during his prime. He's a very versatile wrestler in my opinion, considering his tag-title run. Buuuuut now he's washed. He's old, aged badly, has bulging bug eyes and can't cut a good promo anymore. He's ruining his legacy by wrestling these nonsensical matches in bingo halls in AEW. Not to mention, "Cope" is a horrific name. I'll still give him a 10 because he's always going to be the Rated R Superstar for me, from the WWE, and from the Ruthless Aggression era."
Rating: 10.0
Sentiment: -0.01944444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CrandonMartin2001wrote on 25.01.2025:[10.0] "Edge has had an incredible ability to evolve and excel at every stage of his career. As one-half of an iconic tag team with Christian, he helped create some of the funniest and most charismatic moments on the mic, while delivering countless classic matches that defined an era. Transitioning into a singles star, Edge became the ultimate foil to John Cena--a "Green Goblin"-like nemesis who thrived in making every rivalry feel personal and unforgettable. His emotional return to WWE in 2020, after a near-decade-long retirement, remains one of the greatest comebacks in wrestling history. Even in AEW, despite some mishandling, Edge is still a spectacle to watch because of who he is--a true legend whose presence alone commands attention and respect."
Rating: 10.0
Sentiment: 0.3226190476190475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Lukeathonwrote on 13.01.2025:[10.0] "So... Cope? I cant really knock his career, to me he's had brilliant characters, brilliant runs, brilliant in-ring work, has a love for the business, the only thing which I'll critique him for is for him having quite rubbish ideas, from his vision of the Judgement Day to... Cope, I wouldn't trust him running a show. From the amazing rivalry with Cena where he cashed in Money In The Bank, to his destiny feud with Christian, to having the best ever WWE Saudi Arabia match with Seth Rollins to his electric returns in 2010, 2020 and 2023, to a whole heap of other things, Adam Copeland is an all-timer wrestler. If you don't agree...then cope with it."
Rating: 10.0
Sentiment: 0.46136363636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Nudlewrote on 12.01.2025:[6.0] "Barring the worst name change in wrestling history, he's good, but he's actively hurting his legacy with his current run. I genuinely believe that he was never THE guy, just the guy that works with THE guy. He's a great heel, but a boring babyface. He's also clearly a massive backstage politicker. Bro barely puts anyone over, when he obviously should. He beat the entire House of Black while injured, granted the injury wasn't part of the story but seriously way to bury their entire stable."
Rating: 6.0
Sentiment: -0.04880952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MEDaminewrote on 07.01.2025:[10.0] "I really like Edge Copeland, AEW run aside, he's one of the greatest in the century, he's really good in the ring with an amazing match catalogue, really great in the mic, and incredibly charismatic, imo he's in top 5 the best heels in WWE history"
Rating: 10.0
Sentiment: 0.6625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ozwernwrote on 07.01.2025:[7.0] "Recent name change is ridicilolus but aside that obviously had a great career. But this AEW run just isn't working for me. Instead of being in the main event, center of attention, he should be putting over young talent. Just not really into what they've been doing with him. Hopefully it'll improve."
Rating: 7.0
Sentiment: 0.12380952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: tmxiconwrote on 18.12.2024:[7.0] "Edge/Adam Copeland has never really been an exceptional worker, but he usually holds his own. He's not the kind of guy who elevates lesser workers, but when he was surrounded by guys who stood above him in that regard, he has proven himself as a guy who can rise to the occasion."
Rating: 7.0
Sentiment: 0.21666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Conquistador37wrote on 11.12.2024:[10.0] "I've been rewatching his career and so far we are into Summerslam 2001. Edge was one of the top reasons to watch WWF from the time he arrived 'til this period. And I know he's going to keep doing great things. I'm loving reliving this. Looking forward to the next few years where he keeps shinning and growing in a myriad of ways. I haven't seen anything after his return mind you, so that entire era has been discounted. EDIT: We are now at the end of 2004/beginning of 2005 and being sidelined with so many injuries has only IMPROVED his overall because now, his mic skills are unparalleled and his in ring story telling is second to none. This is where his career truly took off and it wasn't stalling to begin with. One of the greats."
Rating: 10.0
Sentiment: 0.20909090909090908
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: wrestlingswiftiewrote on 04.12.2024:[6.0] "I find him overrated, but he's not all that bad. When given good circumstances or a great partner, he can put on a compelling program. (See his recent feud with Christian or the well-known cheating scandal against Matt Hardy.) But by himself... He's mediocre."
Rating: 6.0
Sentiment: 0.08571428571428573
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AceHagannwrote on 26.11.2024:[8.0] "Adam's AEW run has been nothing but disappointing. Forgettable for the most part. And while not as bad, his last WWE run wasn't much of a highlight. Edge's run in his earlier years is an entirely different matter. One of the best heels at the time. An awesome "love to hate" kind of wrestler."
Rating: 8.0
Sentiment: 0.09230769230769233
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Nolan Greenwrote on 21.11.2024:[9.0] "One of the best heels in WWE history and involved in one of the best feuds in WWE as well with John Cena. His Ultimate Opportunist gimmick was great and delivered the best spear in the business, even better than Goldberg. However, I think Christian was the better of that team and Edge as a babyface when he came back in 2004 wasn't great. It took a while for Edge to become a good worker, but when he did, he could walk and talk and return from injury after injury until he broke his legs doing something stupid. What the fuck. Christian for the win."
Rating: 9.0
Sentiment: 0.3933333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DanParkeswrote on 21.11.2024:[6.0] "He was great in his early years, then he became a legend during his Rated R superstar and Ultimate Opportunist years... sadly his career was cut short but he came back... and it was great at first, but then he had to go over everyone, and maybe it would have made sense back in his prime and you can give some slack to The Miz and Seth Rollin feud because they can bounce back. He should not have gone over Judgement Day right after he was kicked out especially Finn Balor and especially on his way out of WWE. I know a lot of people love him but the way he came into AEW, and he just had to go over Christian who has been working his butt off on possibly the greatest run of his career for Edge/Copeland to just come in and take it away, just leaves a bad taste in my mouth. I would have probably given a 7-8 if we didn't take his last run in WWE and his AEW run into account."
Rating: 6.0
Sentiment: 0.13345864661654136
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BananaOilwrote on 23.10.2024:[7.0] "The biggest (non-injury related) tragedy of Edge's career is that he's so good at playing a heel that everyone started to love him and now he's been stuck as a babyface for the last 12 years despite honestly not being a very good one. Edge's original run as the Rated R Superstar was generational. From about 2005 to 2012 he was absolutely untouchable and the most entertaining guy on any given show. He could have a good match with anyone, good promo with anyone, and had consistently good booking that kept his matches exciting cause you didn't know how he was gonna cheat next. Unfortunately, since turning face back then, and now post-return, he's become very bland. I would have loved him to be a wily babyface that still cheats on occasion but does it to heels instead ala Eddie Guerrero; but instead he just says grit a lot and is just kind of a cool dad character. Which is fine, I'm still happy he got to come back and his matches aren't bad, but it's such a stark dropoff compared to his glorydays that I have to average it out to a 7."
Rating: 7.0
Sentiment: 0.2458928571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TripleCrownwrote on 14.10.2024:[8.0] "One of the very few saving graces of WWE during the mid to late 2000s. Edge was a fantastic wrestler, who, with the right opponent, could draw a lot of money. He is perfect as a heel, especially during the timeframe I mentioned. The minute he had to retire and whatnot, it's quite obvious the fans would never look at him the same (i.e a huge heel) and would love him as a babyface. Had a lot of memorable matches, moments, the guy had done it all. Mic work is excellent, not on the same level as The Rock or Steve Austin, but definitely up there for sure. Wasn't a big fan of his early 2000s push, again, that time he was just a natural heel and trying to make him a babyface was never going to work. The TLC spot from WMX7 will be remembered forever, absolutely iconic moment. Can't really comment on his recent WWE/AEW runs as, to be frank, I dip in and out of the product so I can't really rate him fairly on that. All in all, he was a great wrestler, great kryptonite to John Cena."
Rating: 8.0
Sentiment: 0.2856043956043956
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JackBurtonsTruckwrote on 14.10.2024:[9.0] "Copeland was the highlight of WWE for me as a teen. From the Brood to his first retirement, I was there for all things Edge. His match with the Hardys and the Dudleys is in my top 5 all time without a doubt."
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jsbortswrote on 11.09.2024:[9.0] "Adam Copeland/Edge is a really good TV character and has had some really fun matches throughout his career in a variety of different roles. He doesn't have the top level catalogue that others have mostly due to working in the same company for such a long time; however, he reached the top of that company in many ways, was a many time earner of their top prize, has had the best match at multiple of that company's biggest shows and main evented them as well. Shame his career was shortened by injury, and shame that his AEW run, which was pretty good, came at the other side of 50 and with another injury added to it. Slowly also became one of the best promo guys and has a really great eye for putting stories together."
Rating: 9.0
Sentiment: 0.3246031746031746
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Fabibiwrote on 31.08.2024:[7.0] "Edge is a great sports entertainer, he has charisma and good mic skills. He is decent in ring but paired with the right opponents he had memorable matches. He won important matches like the Royal Rumble and Money In The Bank and he had legendary moments (TLCs, live sex celebration, first MITB cash in, return at Rumbe 2020, ect...). Edge isn't the best in the ring but he made the most out of his opportunities to build a legendary career."
Rating: 7.0
Sentiment: 0.5615620490620491
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Chosen Onewrote on 28.08.2024:[8.0] "Edge... Er war unterhaltsam mit und gegen Christian, aber hat mich um die erste Brand Extension herum nicht mehr begeistert und seinen Höhepunkt in der Ruthless Aggression Era gehabt, der ich leider nichts abgewinnen kann. Dennoch, als WWE Champion und als "Opportunist" war er ziemlich cool. Sein Moveset war ganz nett. Am meisten mochte ich ihn aber für seinen Look, seinen Entrance, seinen Charakter, seine Mic Skills und die Storylines, in der er verwickelt war. Er hatte irgendwie etwas an sich in seiner Blütezeit. Auch durch seinen Kleidungsstil fiel er mir auf."
Rating: 8.0
Sentiment: -0.21666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ceasara63wrote on 04.08.2024:[9.0] "Edge, aka Adam Copeland, is one of my personal favorite professional wrestlers ever. This man has so much talent, and is so versatile. He can be a great face, and an even greater heel. He's more than capable of having great matches, even nowadays as he is in his early 50's. He's a great main eventer, mid-card guy, tag team wrestler. His promo abilities have gotten better the further into his career he's gone; he can be serious, he can do comedy. I'm not sure there's a performer in professional wrestling history as well-rounded as he is. Countless classic matches, countless classic rivalries, countless classic championships runs and not to mention being one of the pioneers of the Tables, Ladders and Chairs match; Copeland has carved out such an amazing legacy for himself that he continues to build upon. After it seemed for a long time that he wouldn't be able to finish his career on his own terms, I'm really happy that he's been able to come back and give us a brilliant second run, both in WWE and AEW. He's been doing some of the best work of his career against guys like Rollins, a proper rivalry with Christian Cage after all this time, etc., I can't wait for him to come back."
Rating: 9.0
Sentiment: 0.27117117117117123
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "Edge was the first wrestler I ever remember watching when I was younger. For that, I will always hold him in such a high regard. While I personally do not like that his career is, more than likely, going to end in another company outside of WWE, I cannot deny for a second that this man is so goddamn good at what it is that he does, and seemingly only gets better as he ages. He was gone for nearly 10 years and came back and got better. I don't know how he does it."
Rating: 9.0
Sentiment: 0.18066666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: 2pt0EcoBoostFusionwrote on 01.08.2024:[9.0] "Man, what a career this man has had. Adam Copeland may have not been the biggest draw for his generation, but he sure was an inspiration for many wrestlers and wrestling fans, especially since he's returned back in 2020. His accolades list is incredible and he has proven to be a formidable face and heel when he plays either of those characters. Adam's feuds with Randy Orton and John Cena were fun to watch as well. In-ring, Adam Copeland was very solid and he still has it in the ring despite being away from the ring for many years and having spinal stenosis which is a brutal injury for any wrestler. Since signing with AEW, he's been great and has had good programs with everyone he has worked with, the injury he received at Double or Nothing was unfortunate and it's a bummer he's going to miss Wembley this August. All in all, Very happy Adam is still around the industry, wrestling needs more people like Adam Copeland."
Rating: 9.0
Sentiment: 0.28833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JPowers10wrote on 31.07.2024:[9.0] "-One of the best heels in WWE history. Had some solid moments as a face as well. One of the most iconic moments in Royal Rumble history with his return. Cool character and had a specific look that made him memorable. Great promo. He was a part of one of the greatest tag teams in WWF history. He isn't a 10 because I haven't been a fan of his work in the past 2ish years."
Rating: 9.0
Sentiment: 0.44000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Johanwrote on 26.07.2024:[5.0] "I don't see it, I don't think I ever saw it, WWE was ruthlessly behind him in a time where internet was primitive, fans hadn't changed much and they had no competition, his wrestling is good and cool but nothing impressive, his offense never looked good, his mic work is good too but again, there is nothing amazing, and now from 2022 forward I'm gonna rate him just a 5...because he is washed in the ring, isn't the cool wrestler he once was, his promos have become bland and generic and he has been going over everyone bar fucking Roman Reigns who still needed help to win, if it was prime Edge I would've considered 8, but washed Edge is a 5."
Rating: 5.0
Sentiment: 0.32564102564102565
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: woolyshamblerwrote on 21.07.2024:[6.0] "edge was my childhood favorite wrestler, but actually having gone back to watch him in 2005/06 really soured my good memories. edge was an entrance and a look, woefully cringey on the mic and unconvincing between the bells. edge had no business being pushed over christian, but being in the WWF and being tall and sexy, he was pushed anyway. his only watchable stuff has been in AEW, he's actually been really fun and showing fresh fire that he never showed elsewhere. i would score him 5 but will go to 6 based on sex appeal alone"
Rating: 6.0
Sentiment: 0.18181818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JBruce1018wrote on 11.07.2024:[7.0] "Edge/Adam Copeland is a fine performer, but never should have been the breakout star of the Edge and Christian tag team. His slight frame, poor finisher and goofy facial expressions in match would have been done during the Ruthless Aggression era, but his affair with Lita and ability to carry that over into his new heel persona saved his career, IMO. Honestly, one of the weakest main event faces ever and one of the best scumbag, main event heels ever. For someone that I never really GOT on why they were cheered, I thought that he portrayed the perfect counter to what John Cena was and while Randy Orton is Cenas greatest in-ring rival, Edge was by far Cenas perfect foil as far as character work goes."
Rating: 7.0
Sentiment: 0.2510942760942761
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: darkflame4527wrote on 29.06.2024:[10.0] "Adam Copeland/Edge has been improving in different areas since his return in 2020. His in-ring work has overall been more believable. now us witnessing a spear that doesn't look like he's cuddling his opponent, more like throwing them to the ground. His promos work has been the best in the business for years and his legacy as both a singles performer and as a tag team specialist gives him a hall of fame career in both routes. 31 total titles in the WWE with him getting two titles in a year in AEW is UNDENIABLE."
Rating: 10.0
Sentiment: 0.35714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: twinkertonwrote on 24.06.2024:[7.0] "Edge is a pretty good wrestler. He's well past his prime at this point and probably shouldn't be wrestling with his injury history, but he's still capable of putting on an OK match. His character work and promo ability have carried him to a very good career, even if his in-ring work was deciding average."
Rating: 7.0
Sentiment: 0.30857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Zak22wrote on 16.06.2024:[8.0] "A Edge vs Cena DVD got me into wrestling as a kid, so Edge has a lot of nostalgia for me. Edge was a talented wrestler with good charisma, he was excellent in tag wrestling and made the step up to world champion well. Only criticism would be that some of his rivalries lacked great in-ring work. Maybe he was overshadowed by Orton and Cena."
Rating: 8.0
Sentiment: 0.64
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: bbdtmemewrote on 03.06.2024:"He's really one of the most dedicated and passionated performers ever. His heel persona is one of the most credible and well interpreted in WWE history: he had the talent to bring an actual immoral event in his life and use it as a launching pad for his solo run since the split with Christian. In fact, he was an innovator in the Tag Team Division together with Christian especially through TLC matches and dangerous matches like that and then again with Randy Orton (Rated RKO was an awesome heel couple). In his solo run, he was also one of the Smackdown! 6 that in the early 2000s helped create an amazing show week after week under the booking of Paul Heyman. His feuds with John Cena, Undertaker and Foley are today some of the most memorable ones in WWE. Despite his first retirement happened at an early age, mainly caused by the heavy bumps he took in the "extreme years", he managed to come back in WWE in 2020 where he was more of a locker room leader with some good storylines but during his AEW stint he's giving to the fans everything he has as a TNT Champion in his 50s with amazing spots and really good promos thanks to the creativity freedom he's been given by Khan. So, I think he's one of the most talented talkers in the business for suuuure and an overall good athlete and narrator in the ring, especially in "alternative" stipulations."
Rating: No rating found
Sentiment: 0.28305555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rassle Fanwrote on 05.05.2024:[9.0] "One of the greatest wrestlers and entertainers ever. His career path and trajectory are top shelf. I was very surprised he left WWE but I also realized he's at the gravy part of his career. He's still clearly motivated but everything he does now is just the sweet topping and it's great to see him relaxed and having fun."
Rating: 9.0
Sentiment: 0.39749999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MasteroftheMatchGuide99wrote on 04.05.2024:[10.0] "Whoever saw this guy coming? When he saw a Mania the first time, he was just a moderately handsome teen with a kick-ass mullet in Toronto. Nowadays, he's recognized as one of the GOATs. He's in a rare class of people who have defeated John Cena, main-evented a Wrestlemania, beat the Undertaker, accomplished the Grand Slam of titles and the Grand Slam of stips (at least 1 Elimination Chamber, King of the Ring, MITB, and TLC Match), and held the "Big Gold." In fact, whether as Edge or Adam Copeland, this guy is really fun and awesome to watch. In WWE, he said "YOU MUST HATE ME! " and boy did we. Then in AEW "Love me" and boy do we. This man has played the system like a fiddle and is still giving 110% even though his body says "You can't" because his ego says "Yes, he can! " Edge deserves all his accolades because he made sure to be a believable guy. I respect him highly and give him deserved praise for his work."
Rating: 10.0
Sentiment: 0.2521875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MarkMcMarkington2wrote on 02.05.2024:[7.0] "Ive always preferred his less successful tag team partner known as Christian. Edge had a role similar to Triple H, he was the guy that worked with THE guy. But hes not as good at that role as HHH was. I dont think anyone has a more over inflated kayfabe resume than Edge too. He won 11 world titles in WWE. I honestly dont know why."
Rating: 7.0
Sentiment: 0.3404761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SoaKaswrote on 02.05.2024:[7.0] "Sadly I'm too young to have experienced him in his prime. I only really know the Edge past his return and he doesn't do anything for me. 7 points out of clips and matches from once upon a time but he really doesn't move me in a single way. The fact that he is working on THIS level while being 50 (! ) years old is incredibly impressive, however."
Rating: 7.0
Sentiment: 0.14350649350649353
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: mryne9wrote on 21.04.2024:"Not quite the elite of the elite, but certainly one of the most memorable performers in history. Tag team royalty who was able to separate himself from the tag-team division and establish himself as a Hall of Fame level singles competitor as well."
Rating: No rating found
Sentiment: 0.4285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bean1985wrote on 07.04.2024:"Hes one of the greatest of the last 2 decades but compared to the likes of HBK, Angle, Hitman etc, he is in a lower tier.. Liked him more as a heel, but he was not 97 HBK or villain Angle of early 00s"
Rating: No rating found
Sentiment: 0.44000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: tosiekwrote on 02.04.2024:[10.0] "Edge is one of the greatest talent of the era. His work through 2000s is just his best all the stuff and always delivered with a great match. If he didn't retire he would become the goat. But since his return he's doing some fine stuff in aew before he retires"
Rating: 10.0
Sentiment: 0.8041666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BruceMarcos524wrote on 26.03.2024:[8.0] "He is one of the best villainous WWE superstars in history due to his edginess, no pun intended, and his savage remark against his opponents. He rose up to the ranks from being a mid-card guy to becoming one of the marquee draws in sports entertainment. His time as a tag team with Christian was great, one of the three tag team pillars during the Attitude Era. Unfortunately, his career went lay low after their split. He was struggling at the cooldown years, but it is until 2006 when Edge became one of the most important guys in WWE of the late 2000s. His rivalry with John Cena was his best feud of his career as he truly reached the magnitude of success during their feud. Edge found a way to finally reach the main event status that he was longing for 8 years in the company without some certain connection from the higher-ups. Unfortunately, most of his world title reigns are short, I think not even a single title reign even reached 100+ days. Also, his finishing move is one of the least believable and the weakest Spears in the history, due to the nature of the move is only effective for big powerhouse wrestlers. Although his Con-chair-to is one of the most brutally devastating spots to ever perform. Edge had one of the most remarkable returns last 2020, believing that he may never wrestle again. Although his second WWE run is very lacklustre and most of his matches are way too dragged down possibly due to being extra careful while performing in a match due to his recent injury. His run in AEW so far is good but I don't want to further review on it since he only got signed a few months ago. One of the hardest working performers in WWE and one of the most decorated WWE superstars in its own history."
Rating: 8.0
Sentiment: 0.17943409247757075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MarshalAtlanticwrote on 22.03.2024:[7.0] "He no doubt carries a lot of history, prestige, and weight to his name, but the core of his worth was never all there for me. Never came across as a top guy or especial talent. An all around decent wrestler, and played his spotlight company role perfectly, but not outstanding to me in any way, except perhaps in that all-rounded serviceability."
Rating: 7.0
Sentiment: 0.3433333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ultravioletshiroiwrote on 15.03.2024:[9.0] "Edge was a great wrestlers who always put on good to great matches in the WWE and he's still around today and still in great shape. He had the charisma, the skills and the entrance to be a star. He was also really good as a tag team partner."
Rating: 9.0
Sentiment: 0.76
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: houseofcopelandwrote on 09.03.2024:[10.0] "My GOAT. Edge was the first wrestler I ever saw back in 2008 during the Road to Summerslam. His chilling promo to Vickie Guerrero was entrancing and since then, I have firmly been an Edgehead. After his unfortunate retirement in 2011 post Wrestlemania 27 (the less said about that the better), I went back to watch his entire career and fell in love. Once he returned in 2020, it was like he never lost a step. Now in AEW and still kicking ass, I truly hope he gets at least one more proper title run (preferably as an unhinged heel in the House of Black but we ain't talking about that right now) and gets to call it a career on his terms."
Rating: 10.0
Sentiment: 0.013492063492063491
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Dirty Diegowrote on 06.03.2024:[9.0] "Edge still revalent to a degree this present day has pretty much done it all by 2011 when I thought he retired he already reached legendary status, his early years tagging with Christian were magic in my top 5 tag teams of all time not just because of their classic matches their standout ones being the TLC matches with the hardyz and Dudleys but their humerious promos and comedy segment that made them must see characters to watch in 2000 , the stuff they did with Kurt angle and mick Finley was hilarious , He broke out as a single star a year later and you could see then he was a future top star, he got injured then he came back and became the rated r superstar, , he had a great feud with John cena that tlc at unforgiving 2006 sticks out as well as with the undertaker main eventing wrestlemania 24, Edge was a top single star from 2006-2011 as deserved, he came back in 2020 and had some great matches with Seth Rollins and Randy orten now he is giving back to the Buisness hopefully helping young talent in AEW to make the company grow"
Rating: 9.0
Sentiment: 0.22251984126984126
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Neoabsurdistwrote on 10.02.2024:[9.0] "Edge: Ringwork: 9/10, Micwork: 7, 5/10, Gimmick: 8, 5/10, Charisma: 10/10, Potential/Einfluss: 10/10 Ingesamt: 9/10"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Horrorshowwrote on 02.02.2024:[9.0] "One of my personal GOATs. Edge/Adam is great, can never truly hate the guy. His spear isn't the best, But he's got undeniable charisma about him and a great personality."
Rating: 9.0
Sentiment: 0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bloodshot03wrote on 31.01.2024:[8.0] "Edge has been around for a long time now, and at this point he is a hall of famer for American wrestling. I still will occasionally rewatch the TLC matches, and his Rated R Superstar character was great stuff as well. I remember when he debuted there was a vignette which used some lyrics from a Nine Inch Nails song Mr Self Destruct - this caught my attention immediately! And all these years later I think he has had a good but short career at AEW. I hope to see one more tag run with Christian!"
Rating: 8.0
Sentiment: 0.23888888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: hamstermatchwrote on 03.01.2024:"Boring. I just dont have a lot to say about him. He does not bring anything new to AEW and his storyline with Christian is largely carried by Christian and assumed nostalgia. His wrestling is not very interesting. Maybe he just needs some time to adjust to a new environment but its good he was not given the TNT belt at this time because he could not carry a championship. Booking nostalgia acts for a modern promotion is not very exciting. Some viewers just want to watch wrestling without doing hours and hours of research into old matches and storylines first."
Rating: No rating found
Sentiment: 0.03577672327672327
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MVCfanwrote on 13.12.2023:"As much as this guy is good to sometimes great worker. The fact that you have for your number two most important prize in your promotion, your feud has it to main guys a total age of 100 booking like this show. Why both all big three promotions new Japan, while no quite as bad as WWE and AEW cannot bring younger fans when you have people old enough to their grandparents fighting in the upper card. I'm using my comments on older workers to display my issues with wider booking and why i think the average age viewership of pro wrestling is so high. and not trending down for both AEW and WWE is above the average age of the US nation by about 5 years at leat some are Graceful eb enough to pull back from the title pictures [dragon for example] my rating for Copeland issues with booking aside 7.75./10 had some very good matches in his time most of them of the spot driven hardcore style."
Rating: No rating found
Sentiment: 0.1493392255892256
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: greaterdalewrote on 11.12.2023:[9.0] "Edge is great but not quite a 10/10 for me personally. He's had good success as a baby face and of course he was an awesome heel too. I'm really glad he's been able to have a career resurgence after unretiring he had a great run in WWE and now he's off to AEW to show he can make it outside of the WWE system. I honestly do think Christian Cage is the better of these two wrestlers, but it's pretty damn close as they're both stellar."
Rating: 9.0
Sentiment: 0.4428571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TotemKiller1wrote on 08.12.2023:[5.0] "If you were to genetically engineer a wrestler to perfectly fit in the WWE system the result would be someone similar to the artist formerly known as Edge. Copeland in his prime was perhaps the most average in ring worker in the world, since then having significantly slown down nowadays he's decidely below average in that aspect. When it comes to his promo ability and character work he's at least decent at that, but not spectacular. His run outside of WWE has been so far kind of bad (which unfortunately is not surprising).If there is one thing, which is a constant in Copeland's career, whether in WWE or AEW it is the fact that he's not a draw."
Rating: 5.0
Sentiment: 0.03741830065359478
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: deserterdragonwrote on 29.11.2023:[4.0] "Edge is the ultimate WWE system guy, a success story for a hype machine that can turn consistent adequacy (at best) into one of the 'best wrestlers of all time' purely through endlessly repeating a handful of moments and spots. Outside of his tag team work (consisting of, at most, 3 genuinely good matches), actually watching Edge weekly as a singles guy reveals a completely mundane wrestler, with an all-time terrible moveset, who's completely incapable of mimicking the humanity, spontaneity, or charm of a genuinely great hardcore worker, or mimicking the big match feel and storytelling of even a great WWE system guy like Cena. In between the bad matches, he cuts some bad, usually misogynistic, scripted promos. One of wrestlings great mirages: the more you look into it, the more you realize there's nothing there."
Rating: 4.0
Sentiment: 0.19663561076604558
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "I'm not gonna lie, I cried when Edge retired in 2011, one of the saddest days for me as a professional wrestling fan. Anyways, Edge is one of my personal favorites and one of the most legendary wrestlers in history. A man who's accomplished so much in historic career, competing mostly in WWE until in recent years where he decided to see if the grass is greener over in AEW. He took off as a tag team guy with his, real life, best friend Christian, taking part in a very influential run as a duo and rivalry with The Hardyz and Dudleys. Edge eventually turned to a singles competitor, his run in 2001 was so well received that he won the WON award Most Improved (if that means anything to you). He also took part in the "SmackDown Six" where he had amazing matches involving Chris Benoit, Kurt Angle, Rey Mysterio, Eddie & Chavo Guerrero. He took time off to heal from his (first of many) neck injuries, he did come back and hit his stride in the mid 2000s when he was paired with Lita, one of the best on screen heel couples, where he feuded with Matt Hardy, then went on to become the first Money in the Bank winner and cashed in successfully against John Cena for the WWE Championship, one of the best moments in history. His run in the late 2000s is among the best heel runs of all time, Edge is so natural at being a heel that you couldn't make him a face during this time. He did retired from another neck injury in 2011, and was out for years until 2020 when he returned to WWE to compete in the Royal Rumble match, one of my favorite moments in my life as a wrestling fan, it felt too good to be true. While his return run in WWE has had some hiccups, it was a mostly good run thanks to his feud with Seth Rollins and still showcasing he can go. His current AEW run is going fine, though it's only been a month since he started. Overall, I love Edge ever since day 1, one of my all time favorite guys, top 10 for me, no doubt in my mind that he's one of the GOATs.I mean, what's cooler than being known as "The Rated R Superstar"?"
Rating: 10.0
Sentiment: 0.35274122807017533
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: crs285wrote on 19.11.2023:[10.0] "Edge was one of the best pro wrestlers of his generation. In the ring he was better than most of his peers at every level yet he was somehow even better on the mic and getting a crowd to react a certain way to him whether heel or face. His injury in his prime was depressing and then for his return made him even more beloved."
Rating: 10.0
Sentiment: 0.41428571428571426
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DangoDaisukiwrote on 24.10.2023:[7.0] "Seine beste Zeit hatte er meiner Meinung nach als Tag Team zusammen mit Christian. Mehr als ein Tag Team Wrestler habe ich in ihm nie gesehen und ich habe auch nie den Hype um ihn verstanden. Trotzdem war er mir immer noch lieber als andere die viel zu viel gepusht worden sind. Er ist generell trotzdem ein relativ guter Wrestler."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: IBladeDailywrote on 17.10.2023:[8.0] "Edge has had some great moments and great matches. However, I have never bought him as the top guy of his own era, much less any other era. He's grown a lot as a storyteller, was definitely in the upper echelon of 2000's WWE but it was largely a down period and creatively uninspired."
Rating: 8.0
Sentiment: 0.1752777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheWatcherwrote on 22.08.2023:[10.0] "I'm not giving many pro wrestlers a 10/10 but I can definitely say without a doubt, if it wasn't for Edge I wouldn't be in this whole mess in the first place. He was the first pro wrestler I saw when my dad put on SmackDown in late 2010. We also found his action figure at a local grocery store that night and bought it, great memories. Incredible work whether it was heel or face work, jumping off a 20 foot ladder, or promo skills I mean this guy had it all. The rockstar "Rated-R" theme fit him so well. I got the chance to see him perform in real life 2 weeks before he retired on SmackDown and he can really work a crowd and wasn't even in the match that night. I found old DVDs after that night of him and Christian, The Hardyz, and the Dudley Boyz ladder matches and yeah let's just say Edge helped re-innovate pro wrestling in the early 2000's. I also credit him to getting me back into pro wrestling during a dark time in my life when he returned at the Royal Rumble in 2020. That pop he received on his return was just insane and probably top 10 all time and not only that but it was motivating and chilling in a good way. Every match he had or has currently (2023) feels important and I feel entertained which is harder to say about other pro wrestlers these days. Edge easily goes in my personal top 5 and probably even top 10 in terms of GOATs amongst the business."
Rating: 10.0
Sentiment: 0.13244949494949496
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: FattitudeErawrote on 21.08.2023:"Rated R Superstar / Ultimate Opportunist Edge is up there as one of the best heel runs in WWE history. His character work, in ring style and consistent high quality of matches are a highlight of the Ruthless Aggression era. He left a noticeable hole in the WWE when he retired in 2011 and I am delighted for him to have had the chance to return against all odds during his most recent run. If this is the end, its the end of an era and Edge will be missed once again. Legend."
Rating: No rating found
Sentiment: 0.17888888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ViolenceBretwrote on 09.08.2023:[10.0] "One of the greatest bad guys to ever enter the ring, when Edge ways playing by the rules and being an all around swell-guy, it was bland. Not that it was horrible, but it just didn't seem organic. Once the Matt Hardy and Lita dirty laundry became present, we saw a great personality shift in Edge. As a tag-team wrestler, nobody was better, as Christian Cage provided a lot of foundation for their matches. Once the duo split things were a little rocky, as the cool guy with sun glasses just seemed overplayed. For whatever reason it seemed like Edge was getting injured every 2-weeks, thus his on-screen time was rare. Yet once he fully recovered and it was revealed he was truly the ultimate opportunist, things were great. His matches against John Cena were prime professional wrestling, and he held the world heavy weight title well. Once the injuries piled up and it was time to call it a day, Edge had a great career. But surprise surprise, through the magic of stem cells and falling on a bike, we saw an unexpected return. Old man grizzled Edge is pretty cool all things considered, his fight with Randy Orton was excellent. To describe the appeal of Edge, he's kinda like a combination of Jake the Snake Roberts and Hollywood Hulk Hogan. In other words, awesome. 10/10."
Rating: 10.0
Sentiment: 0.19883333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BigshowYTwrote on 27.07.2023:"A great slime ball in his original run before his retirement, he could is a great contender for the greatest Canadian wrestler alongside Bret and Owen Hart, Chris Benoit, and others. His role with both Lita and Vickie is disgusting in the right way to gain heat on him. He is the villain and was great with Randy Orton. When he returned from wrestling at the Royal Rumble it could be said that his return was the greatest ever. He is also a championship machine, he won a lot of tag team titles and main event titles in a balanced, sleezy way. His finisher, the spear, is perhaps one of the greatest wind-ups before the delivery, the way he goes mental pushing his hair back with one hand up signaling the end is true dramatic storytelling. His revival of his wrestling career is just as good, if not better than his original run. He faced off in dream matches we thought we would never see again or see ever such as: A.J Styles, Randy Orton, Finn Balor, Roman Reigns, and Seth Rollins. In general he is one of the greatest heels, one of the greatest storytellers, and one of the greatest wrestlers of all time."
Rating: No rating found
Sentiment: 0.40541125541125544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KroKrowrote on 16.07.2023:[10.0] "One of the greatest heels of the 2000s, Edge is good talker, a great all-rounder in the ring, Hes a great character worker, and as a great theme song. 10/10"
Rating: 10.0
Sentiment: 0.82
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: bigredtalk89wrote on 07.07.2023:[8.0] "One of the greats, probably the best rival of Cena's main event run, he's always been a great performer. I think he unfortunately suffered some from the move to PG programming, but his legacy stacks up against the best of them."
Rating: 8.0
Sentiment: 0.49333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KTG1515wrote on 03.07.2023:[7.0] "Edge is good, if not very good, but I've never seen him as great. He's cleary a great wrestler and worker in general, but never resonated with me too much."
Rating: 7.0
Sentiment: 0.3801282051282051
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: face painted legendwrote on 25.06.2023:[9.0] "Had one of the most notable meteoric rises that I can ever recall in WWE because it happened organically and by way of hard work. He won every accolade that there was to win in the company and it felt like he won them all when he was suppose to win them, and how he was supposed to win them. He always knew when and how to reinvent his character to stay up with the times. Same with the alignment changes , when he was a face he was the guy you wanted to cheer for , when he was a heel he gave people a reason to call him whatever derogatory name that they'd call him. Also had many incredible feuds, memorable moments, and banger matches over the years. The one thing I admire most about him is everything he said he was going to do, he did it despite all of the injuries, obstacles, and set backs that he faced over the years."
Rating: 9.0
Sentiment: 0.45486111111111116
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: danzitorockwrote on 20.06.2023:[9.0] "Whether in the singles or tag team division, Edge is a great performer and one of the great legends of North American wrestling. My favorite version of him is definitely the heel one, but he can work any alignment really well, he's an extremely talented wrestler."
Rating: 9.0
Sentiment: 0.42857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Giantfan1980wrote on 07.06.2023:[7.0] "Edge had the look, but I found him somewhat lacking on the mic and his move set of spamming the spear over the years grew old on me."
Rating: 7.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Draculamurawrote on 05.06.2023:[7.0] "Fand ihn immer interessant, aber nur besserer Durchschnitt und am Mikrofon auch nicht alles überragend."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Wrasslinfan619wrote on 24.04.2023:[10.0] "Oh man Edge, he's done it all and he's one of the best not only heels of all-time, maybe even faces of all-time, but imo one of the best period. He's had so many classics, tons of matches with Cena that were awesome, the Foley match all the Taker matches as well. Plus the feud with Rollins, and even the match with Balor, plus the TLC matches, matches like this prove why he's one of the best ever."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AyoWrasslinwrote on 13.04.2023:[10.0] "My GOAT and the Greatest Heel of all Time imo. This man's career was over and somehow made an impossible return and was even better at everything. He is 49 years old pulling out Avalanche Edgecutions and Canadian Destroyers. Better on the mic and inring and an even better storyteller. HE IS HIM 10/10 Greatest of all Time / Recommendations: vs Cena [ Unforgiven '06, Backlash '09], vs Rollins [Summerslam '21, Crown Jewel '21], vs Balor [Extreme Rules '22, Mania 39], vs Orton [Backlash '20], vs Bryan & Reigns [Mania 37], vs Taker [SummerSlam '08, Mania 24], vs Foley [Mania 22], Elimination Chamber '05, vs Hardy & HHH [Armageddon '08]"
Rating: 10.0
Sentiment: 0.3510416666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DeanAndrews95wrote on 10.04.2023:[9.0] "Edge der Rated-R Superrrrstarrr gehört zu meinen absoluten Favoriten, Seine Zeit Hochphase zwischen 2006-2011 war Spektakulär und Spannend zugleich. Das Erste Matsch was mich zu einem Fan von ihm gemacht hat war gegen Mick Foley, egal gegen welchen Gegner er gekämpft hat er hatte die Ringkontrolle und eine gewisse Präsenz wie ein Schatten. Sein Comeback ist in Ordnung bis Gut er ist der Meister des TLC Matsches und ein Opportunist Sondergleichen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: sverkhchelovekwrote on 08.04.2023:[6.0] "Christian puts over Jungle Boy, Edge defeated Finn Balor (3 times over a year). One of the most overrated and selfish guys in the business. But hey, TLC matches were great."
Rating: 6.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Oswuoldwrote on 06.04.2023:[10.0] "What to Say... Incredibile? Mad? Extremly important? The man that put importance on TLC? A man that defined this business? *****"
Rating: 10.0
Sentiment: -0.11249999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: cobrenzoswrote on 08.03.2023:[9.0] "One of the best heels ever, he wasn't a bad face too, very charismatic too maybe he wasn't the best in the ring but still he has a lot of awesome matches even after his comeback in 2020 at 47+ years old, personally one of my favorite wrestlers ever"
Rating: 9.0
Sentiment: 0.44375000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: John Brandowrote on 07.03.2023:[9.0] "Edge-für mich einer der besten Heels im Business. 2008 war er so bockstark, dass ich mir immer gewünscht habe, er möge verlieren. Gerade natürlich gegen den Taker unvergleichlich. Ich bringe Edge eigentlich immer mit seiner Rolle als Opportunist in Verbindung, seine Zeiten als Face waren aber auch nicht verkehrt. In der WWE mit Christian ein wahres Dream-Team gebildet, als Einzelwrestler ja der Rekordhalter des Schwergewichts-Titels gewesen war er im Ring ein Konterer, der seinesgleichen sucht. Alles in allem ein starkes Gesamtpaket, seiner großen Bedeutung für die WWE kann er sich sicher sein. Ich vergebe "nur" starke 9 Punkte, denn am Ende hat er einen Platz in meiner Top25, nach ganz oben zu den absoluten Big-Playern verorte ich ihn allerdings nicht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: OnlyHalfTheEffinShowwrote on 15.02.2023:[9.0] "Edge is the guy that honestly grabbed my attention to wrestling in the first place. My very first memory of pro-wrestling was a promo he cut with Vickie Guerrero on Smackdown, in the midst of his feud with the Undertaker, right after they successfully lobbied Teddy Long to ban Taker's Hell's Gate submission move, in 2008. And boy oh boy, I barely knew anything about WWE, pro wrestling as a whole or who Edge was but he made me hate him in that promo. Edge as a whole has always been nothing short of an amazing worker, but somehow it was always his character work that made him the top heel. Like, fucking hell man did Edge make it easy to hate him. A decade later, and he manages to pull a Roddy Piper and turn that pure, concentrated heel heat and become one of the most loved legends in WWE's history."
Rating: 9.0
Sentiment: 0.16791666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: fruggmanwrote on 19.12.2022:[9.0] "Edge was my favorite wrestler as a kid, his first run in WWE is an almost storybook-like career trajectory that anybody would be lucky to rest on. From his early work as an innovative tag team specialist to his workhorse character on Ruthless Aggression SmackDown he showed promise as a solid in-ring talent despite not having much of a character. Then, his heel turn as the ultimate opportunist made him an all-time great with world championship reigns and a repulsively evil heel character that made his rivals come out looking infinitely better. If Edge had stayed retired after his 2011 WHC reign interrupted by a career-ending neck injury, his legacy would have been cemented. Against all odds, he somehow was able to return in 2020 without missing a step. His recent in-ring work in 2022 has been somewhat lacking given the wear-and-tear on his body but I am looking forward to how he ends his career in WWE."
Rating: 9.0
Sentiment: 0.09888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KSupreme3wrote on 16.12.2022:[10.0] "the Rated R superstar is somebody who I didn't expect to be as big as a star as he ended up being. After he left the Brood with Christian, they became one of the hottest tag teams in the WWF/E. Their matches against the Hardyz and the Dudleys are now iconic and groundbreaking. I thought he was just infinitely better with Christian by his side, because they had such great chemistry. I genuinely believed they were really brothers (which disappointed me greatly when i found out it was kayfabe). Once Edge went on his unforgettable heel turn, he became a bonafide star, whether we liked it or not. the Opportunistic Edge made me sick to my stomach each time he did something outlandish, and was able to draw massive heat every single night. Always knew his way around a mic and could cut a really good promo at any given time. I'm so happy to see that he can still compete despite his past career ending injury. Plus, his theme song is too fucking good. 10/10"
Rating: 10.0
Sentiment: 0.2506493506493506
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "He can be a great tag team wrestler, he can be a great singles wrestler, he can be a great face, he can be a great heel. Need I say more?"
Rating: 9.0
Sentiment: 0.74
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Enriquepollazzowrote on 27.11.2022:[9.0] "He did so much cool shit as a tag team member. I think he may have been the best tag team member ever. Those matches with 3d and hardys were amazing for their time and very innovative and he did everything in singles after. Probably a 10 but not one of my faves."
Rating: 9.0
Sentiment: 0.48
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: eltetechoriwrote on 12.11.2022:[10.0] "Superstar Rated R has always been a great exponent of wrestling for me and for many of us who grew up in his era. I've always loved him."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: li0nsaultwrote on 10.10.2022:[10.0] "There's no need to talk about how great the Rated R Superstar gimmick was, but I think people don't appreciate babyface Edge enough. He was charismatic as hell from the start, and I believe Edge would've been successful without a heel turn. Of course, this gimmick change skyrocketed his career and made him a true icon. He's also a master storyteller. I can see that some people think that his in-ring skills are average, and that's a reason not to give him a 10. However, I think Edge excels at what a sports entertainer should do, and that's enough to give him the highest score."
Rating: 10.0
Sentiment: 0.32142857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheOneAndOnlyCactuswrote on 29.09.2022:[10.0] "Before the Rated R Superstar Gimmick, I thought he was going to be a mid-carders for life, as he was a good worker but pretty bland personnality wise since the start of his solo run. But his transformation made him into a true icon and he grew more confident on the mic over the years. Combine that with his great tag team run with Christian, and even with Randy Orton, and he deserves nothing less than a 10"
Rating: 10.0
Sentiment: 0.34666666666666673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Flame233wrote on 22.09.2022:[10.0] "I cannot say or write anything that has not been said about this guy. He had the single greatest comeback to WWE in history, not just because he is a legend, but because even the next generation of WWE fans, that even though hasn't seen his prime, wanted him to return, genuinely missed him and rooted for him. And you can see that he has missed us too. He is a part timer, and yet he puts almost weekly fights. The textbook definition of a WWE Legend."
Rating: 10.0
Sentiment: 0.3321428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AlDente01wrote on 22.09.2022:[10.0] "I'm glad to watch the video of his comeback a few times a month and get the goosebumps every time - we've had one of the most amazing moments of the last decade. I will not write about his skills in the ring and behind the microphone, because we all know that. But it's really amazing that I can put on the usual weekly show and possibly Edge will fight. And it will not be a Goldberg-style fight - just a decent, full-fledged duel. After so many years and such a serious injury, Edge gives us the highest quality sports entertainment - for this eternal respect deserves."
Rating: 10.0
Sentiment: 0.1630952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CommisarRobewrote on 04.09.2022:[9.0] "Edge is undeniably an icon of the WWE, his mastery of the spear, his tag team domination and triumphant return after injury are all amazing features of Edges career. In the present day he is still as good as ever and always puts on a great match, icon."
Rating: 9.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: milos1605wrote on 22.08.2022:[9.0] "One of best wrestlers on WWE roster. His tag team run with Christian is iconic, but they didn't deserve to win every TLC match. They rebuilt tag team division in WWE, together with Hardys and Dudleys. His solo run 2001-2005 was okay, had some great matches, but he needed to turn heel and it happened. As veteran of ladder matches and potential main eventer he was right choice to win first ever MITB, despite Shelton was best in that match by far. His cash-in is probably best ever, even better than Rollins's one. Unfortunately, he lost title too early. Imagine Cena and Edge closing WrestleMania. They had great chemistry and their rivalry felt natural. TLC match at Unforgiven was great. Rated-RKO was amazing team, two most disrespectful guys in wrestling teaming against two rule-breakers in shape of DX was great, one of last good feuds before PG era. His year long feud with Undertaker was one of best ever. Edge did so many things to Undertaker, and they finally met at Mania in one of most underrated matches ever. And ending of feud at SummerSlam was legendary. His run 2009-2011 was very good. Retirement promo in 2011 was really heartbreaking. Return at Royal Rumble is one of best ever, and that would be great even if he didn't continue to wrestle. Feud with Randy Orton was good and feud with Roman and Daniel was great. Seth Rollins was awesome in their feud and they had amazing trilogy. HIAC match was better than Rhodes vs Rollins, really violent. Dream match with AJ Styles didn't met my expectations, but it still was very good. Judgment Day thing is wasted, but it's not late to correct it. I'm really interested to see what would happen with him in future."
Rating: 9.0
Sentiment: 0.4547315096251266
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Yigitdenizkulwrote on 15.08.2022:[10.0] "Edge is one of the greatest wwe wrestlers off all time he is so good as a heel so good as a babyface he is definitly one of the most complete superstars off all time and he is also my favorite wrestler ever"
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Benwerderwrote on 02.08.2022:[9.0] "Eine absolute Legende! Sein 2020er Comeback war mit dem Punk Comeback eines der größten der Wrestling Geschichte und denn hat er sich in seiner Karriere durch so viele grandiose Matches (mit Christian, gegen Taker..:) viele Fehden die unglaublich gut waren (Takee, Cena? ) absolut verdient gehabt. Rein vom In-Ring Geschehen ist er als Part-Timer noch absolut auf ehemaligen Niveau und ist sogar besser in Shape! Mag aktuell nur nicht so ganz sein Charakter, zuerst Judgment Day und jetzt Friede freude Eierkuchen im wieder einen Face zu haben. Mag denn Ultimate Opportunist Edge deutlich lieber. 9/10 für einen grandiosen Wrestler und Storyteller!"
Rating: 9.0
Sentiment: 0.21875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RatedRjabroniwrote on 31.07.2022:"Edge is the GOAT! His best run was in 2006. So crazy he came back from injury and now is still better than 90 percent of current roster."
Rating: No rating found
Sentiment: 0.18
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: sbg2022wrote on 11.07.2022:[10.0] "Edge at his age, could run circles, squares and triangles against most wrestlers right now, if not all of them. His run with Christian was the stuff of legend. But what he did in his later career, managed to surpass it."
Rating: 10.0
Sentiment: 0.19642857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: robrob77wrote on 09.07.2022:[9.0] "Edge is 47 right now and he is much better than a lot of wrestlers, he is a true icon, a legend. Edge is awesome in several ways."
Rating: 9.0
Sentiment: 0.42714285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: PhenomenalGunwrote on 27.06.2022:[8.0] "Edge is a great wrestler no doubt about it. He is a prime example of the opportunistic and sadistic heel that so many have tried to emulate but failed. His heel work is convincing and he has always had a look that suits his character. One glaring flaw has always stood out to me, and that's that I've never seen a match of his that didn't use weapons, tables, ladders, etc. that was actually good. His in-ring work has always been what was lacking and I've never found his actual matches that compelling. That aside, he's a fantastic heel, and his best work has been as a heel, especially most recently with judgement Day which is why the booking to have him kicked out and turn face is so perplexing. It's WWE's own fault they only had 3 major babyfaces on RAW, and now one of them's a heel, one is injured, and the last they're not doing much with like they should be. Either way, although Edge is a fantastic heel, he's definitely not a GOAT, and not even in the conversation for being one of the greatest of all time. Maybe I need to go back and watch his stuff from the Ruthless Aggression era, but his matches since he's returned have not impressed."
Rating: 8.0
Sentiment: 0.22746655518394646
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: lindercrestwrote on 03.06.2022:[7.0] "Edge is an all-time favourite for a lot of people. I like him and agree that he's a legend, but he's not one of my favourites."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Thibaultwrote on 19.05.2022:[7.0] "Edge has exceptional charisma and good technical skills, but he does not belong to the circle of very great in-ring performers. He occupies an important place in the history of wrestling, without incarnating a legend in my eyes."
Rating: 7.0
Sentiment: 0.5533333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LilKazu69wrote on 10.05.2022:[6.0] "I used to be a big fan of Edge before his retirement, and I'm eternally grateful that he is back doing what he loves, but man, his matches since coming (except the one with Seth) have been Chinese water torture. I wish he just changes the formula for his matches. I would rate him 9 pre-retirement and 4 since coming back."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ryanmichael25wrote on 18.04.2022:[9.0] "Edge blocked me on twitter & im not sure why and I? m pretty sad bc I? ve always been a huge fan. Oozes charisma, plays a fantastic heel, brilliant on the mic, and a great storyteller in the ring. Genuinely so talented. In my personal opinion he? s one of the best performers I? ve ever seen. Bummer he blocked me tho so that? s why he? s not getting a 10. I like this new shtick with Priest too by the way."
Rating: 9.0
Sentiment: 0.30303030303030304
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CMX-7wrote on 13.04.2022:[10.0] "Watching him in his current WWE run) He's like wine getting tastier and richer over the years. His matches are amazing + his matches are starting to be in the top 10 in any given year! I love his new dark gimmick aka "Ministry of Darkness 2.0"! Bottom line: He is great in any era, like Jericho he is able to adapt to any environment and show amazing matches!"
Rating: 10.0
Sentiment: 0.3723863636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ChopChopChopwrote on 04.04.2022:[7.0] "He's always had a little something, I mean, definitely a main event performer but... He's just so overrated. Seriously, he has been playing the same thing for 15 years and never improved. Not to mention the fact that he has been constantly pushed to the moon,"
Rating: 7.0
Sentiment: -0.11111111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: WrestlingFan892wrote on 01.04.2022:[10.0] "One of the wrestlers who best connected with the public in history. Mic-skills, charisma, entertaining to watch, and has always done incredibly well as both face and heel, I think his theme now fits the persona very well. Not to mention that as a tag team he has become one of the best with Christian, he will be an unforgettable wrestler."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AEWInspectorwrote on 21.03.2022:[10.0] "Great wrestling, a living legend, Edge is without a doubt my favorite of all time and it's great to be able to watch him live since I started following him from 2012, and I never imagined he could come back, and there's not much to do say this guy is fantastic, even with almost 50 years old he manages to deliver great fights and his skills with the microphone are a chapter apart, there's no way to have a different note"
Rating: 10.0
Sentiment: 0.32803030303030306
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SquilliamFancysonwrote on 11.02.2022:[9.0] "Edge was brilliant in the Attitude Era as a tag wrestler, brilliant in Ruthless Aggression as one bastard of a heel, and since his comeback he's become a fiery babyface with the ability to be a dark, violent, sadistic tweener when it's needed."
Rating: 9.0
Sentiment: -0.030000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: arrancarwrote on 07.02.2022:[6.0] "Edge was a competent "WWE-style wrestler" at best, meaning he had a pretty generic offence and limited psychology. He had to rely on backstage skits and over-the-top heel work to win fans over. Fair play to him for becoming as relatively big as he was/is in wrestling despite his wrestling itself being so mediocre. I'll admit that some of the character work in his heel runs has been fun, but he hasn't had a large enough number of great or very good matches to justify me rating him higher."
Rating: 6.0
Sentiment: 0.30016806722689077
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: hirsty97wrote on 02.02.2022:[10.0] "Edge can play both a face and a heel tremendously well. He's capable of working as a tag team and in comedy. He's a good promo hand and capable of wrestling hardcore style matches. In other words he's versatile and has a great moveset and look. His return arc since 2020 has exceeded expectations. He is an overachiever as he is one of the most decorated wrestlers in WWE history, I wouldn't rank him among the all time greats like Flair, Austin or Sting but I see him as more of an upper-mid carder."
Rating: 10.0
Sentiment: 0.25648148148148153
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: rishabhwrote on 31.01.2022:[10.0] "He was among my first favorite wrestlers when I started watching wrestling and still is one of my favorites. He could go from being the most despised heel to the most loved babyface in no time. He could put on great matches, cut excellent promos and had great character work. Simply put, there is no one like Edge."
Rating: 10.0
Sentiment: 0.5611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ONESTOPwrote on 27.01.2022:[9.0] "So damn great to see his 2. run. every time Edge is in the ring i canšt stop watching. hope he still have 4-6 more years left"
Rating: 9.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: benny5bellyswrote on 16.01.2022:[5.0] "I have just never got the love for Edge. He is a perfectly fine worker and at times a good promo. I tend to prefer his much earlier work especially his comedy stuff. His comeback has been a real damp squib"
Rating: 5.0
Sentiment: 0.30277777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CaptainCharisma1997wrote on 17.12.2021:[8.0] "Really good heel in his day and 1/2 of possibly the best tag team ever. Held back by his inability to play a good babyface and the fact that his career basically sucked from when they paired him up with Vickie through to his first retirement. I'm honestly surprised his rating is so high on here, that period where Vince put the world title on him 11 times in 5 years was generally pretty insufferable for the most part. If the two of them were treated equally there's no doubt in my mind Christian would have ended up the bigger star."
Rating: 8.0
Sentiment: 0.28153846153846157
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Phenomenal Nightmarewrote on 07.12.2021:[9.0] "Edge, the rated R Superstar, a great wrestler and WWE legend, has had ironic fights and great moments like winning many world and tag team championships, The MITB Briefcase and the Royal rumble 2 times. I got a little sad when he retired in 2011 and happy when he returned in 2020."
Rating: 9.0
Sentiment: 0.37916666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: FACEElmo295wrote on 06.11.2021:[8.0] "In 2006 Edge was my most hated wrestler, that's due to how well he did his job at being a despicable heel. Edge and Christian were great at being goofy, and Edge was clearly the one who had more going for him. It's no wonder WWE pushed him thanks to his look and charisma. I've always felt Edge is a superior heel compared to being a babyface, and sometimes his matches do lack something for me from time to time. That said his heel run from 2005 to 2009 was excellent, not been too big on Edge ever since his return, and his face runs haven't really caught much of my attention."
Rating: 8.0
Sentiment: 0.2625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Muggowrote on 03.11.2021:[10.0] "Edge is one of the greatest heels ever, and likely the best of the 21st century. He has the looks, pretty good ring work, the mic skills and the charisma, so it's no wonder why he became that good. He also could play any type of heel whether it be cocky, vicious or a comedy heel. He has always felt off as a babyface, which is the main reason why he never became the guy in wwe, but the only other negative of Edge is that he's injury prone, but that's mainly down to the abundance of gimmick matches, which is his forte."
Rating: 10.0
Sentiment: 0.14543650793650795
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kaswrote on 31.10.2021:[6.0] "Never really understood what people see in him. He's got a decent work rate and he's a good tag guy, but everything else is mediocre."
Rating: 6.0
Sentiment: 0.06666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SlapViperLLCwrote on 26.10.2021:[10.0] "Usually when you are young you'll cheer the good guys/faces and boo the bad guys/heels. Edge was the only wrestler, no matter if they were heel or face I cheered. He has so much range throughout his character that it makes him one of the best. When he's a heel he can play that sinister and vicious heel or he can play more of a comedic effect. Him being face felt a bit weird but he can still cut great promos better than 90% of wrestlers today. In terms of workrate I felt as if Christian was the better wrestler but Edge was better all around and Edge still wasn't a terrible worker. People say he only shined in gimmick matches where I will say that was his forte but then you have to look at his matches like: V. Taker Mania 24, V. Rollins at Summerslam, V. Bryan and Reigns Mania 37 anything that he did apart of the Smackdown 6, and many more matches. I also hate to say this, because it is a very serious issue...him with the neck injury makes his selling feel way more realistic. I don't mean that as "Oh you need an injury to sell better". I mean that as wrestlers want to make wrestling look as real as possible, correct' So you take a guy who left wrestling for 9 years because he was forced to retire because of his neck and now he's back at wrestling and many stories in his returning matches have surrounded his neck and head and he sells it like he's legit in pain (He might actually be.) then it makes Edge's matches feel so much more real. Edge is truly the complete package and he is easily one of the greatest wrestlers to ever step foot into not just WWE, but to wrestling in general."
Rating: 10.0
Sentiment: 0.09337606837606838
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Pete Gallowswrote on 14.10.2021:[6.0] "Again, one of those guys that I just do not see what others see. I know Cornette raves about him, I just do not see what the hype is all about. I am glad he is healthy enough to wrestle again, I am happy for him, I hope he stays healthy, but I am not a fan of his work."
Rating: 6.0
Sentiment: 0.45999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: wewantpunkwrote on 05.10.2021:[9.0] "Damals als Mark habe ich Edge gehasst und das ist ein gutes Zeichen dafür wie gut sein Heelwork war. Im Nachhinein und nach vielen Wiederholung wurde ich ein unheimlich großer Fan. Ein unfassbar cooles Erscheinungsbild, Entrance und In Ring Psychologie. Er versteht sein Handwerk. Die Spätphase ist super, aber schmälert nicht seine Wertung. Alleine die Undertaker Fehde war ganz großes Kino."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AlexLikesJoshiwrote on 15.09.2021:[6.0] "While his comeback was a touching moment Edge hasn't been great since his comeback and a lot of people have probably been reminded why he was the guy on the B-Show in his prime"
Rating: 6.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Eggi1304wrote on 07.09.2021:[7.0] "Edge ist ein solider In-Ring Worker. Aber eben auch nicht mehr. Ebenso am Mic ist er sehr solide, jedoch auch dort nicht in der absoluten Elite anzusiedeln. Das alles in allem kann einfach keine 10 Punkte ergeben. Wie gesagt er ist gut, aber nicht sehr gut. Deswegen 7 Punkte."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: vaventwrote on 23.08.2021:[10.0] "In my mind, Edge is the complete package. I don't agree at all with the people who say he's not great in the ring. Simply look at any of his recent matches, at the age of 47 no less, for evidence of this- compelling stories, different moves and strategies in every match. His promo skill is incredible. He's able to make the things he says sound incredibly believable in a way few others can do in wrestling. Always bringing the heat, innovating when he doesn't have to, Edge is certainly one of the best of the last 20 years."
Rating: 10.0
Sentiment: 0.2265079365079365
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Erdrickwrote on 09.08.2021:[7.0] "A solid hand as a heel, able to convincingly play a violently deranged, self-absorbed opportunist, but never really clicked as a babyface. Edge is surprisingly basic in the ring for someone who's achieved as much as he has, really only shining in gimmick matches."
Rating: 7.0
Sentiment: 0.03749999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Enchantiumwrote on 21.07.2021:[9.0] "Edge is a familiarised name when it comes to the term of professional wrestling as he is a Hall of Famer for a reason, the guy is great on the mic, great singles match competitor, tag team competitor and multi-man competitor. He was over as a singles competitor specially with countless singles title match victories, countless tag team title victories with Christian, and won two Royal Rumbles (2021/2010). His career has been brilliant but had a massive hiatus due to a career ending injury which was upsetting considering how big of a star he was but he is back and has a collection of new stars to face since most competitors from 2010 have left the company meaning Edge has new competition and is left with many dream matches which are bound to happen."
Rating: 9.0
Sentiment: 0.22804834054834056
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BrayanLaPrewrote on 06.07.2021:[8.0] "Edge was about as successful as they come during his run with WWE. He's obviously one of the best tag team wrestlers ever, which plays heavily into the positive of his rating. I personally found his singles run to be a bit hit-and-miss, but he had some great matches over the years and delivered some excellent promos, as well. Never my personal favorite, but certainly deserving of at least an 8."
Rating: 8.0
Sentiment: 0.3213286713286714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: zags7000wrote on 03.07.2021:[10.0] "One of the more complete superstars in WWE history. He's been in some of the best tag teams in history, most notably with Christian which was one of my favorite acts growing up. As a singles star, he's capable of great matches as well. One of the more charismatic superstars as well and someone who can be an interesting babyface while also one of the best heels. He can be funny while being serious and emotional in the right times. I don't think he gets enough credit but in WWE history, few check all the boxes the way Edge does."
Rating: 10.0
Sentiment: 0.34749373433583963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Daigotsuwrote on 19.06.2021:[8.0] "I was always a big fan of Edge. His tag team run was obviously one of the foundational runs in WWE tag team history. He also had a very strong career as a singles guy. Good worker, good promo, good character. All around excellent wrestler."
Rating: 8.0
Sentiment: 0.5233333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kungwrote on 09.06.2021:[10.0] "If you're anywhere near my age, then you know just how amazing Edge has always been. He's in my favorite non-main event match in WrestleMania history (TLC 2), he was in my favorite tag team growing up (Rated RKO), his returns in 2010 AND 2020 are among my favorite moments in modern WWE history, and his passion and love for this business make him eternally likable. God I love Edge."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ClickyBicky2000wrote on 14.05.2021:[6.0] "Never got the Edge hype. He had some excellent matches during his tag run with Christian but I never found him all that interesting during his single/world title pushes. I don't know what it is but I could never get into him."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The A-Listerwrote on 08.05.2021:[9.0] "Great as a face, great as a heel. Great tag team wrestler, kinda ovverrated as singles competitor. I like his 2nd reign, although I think he didn't need that 2nd Royal Rumble."
Rating: 9.0
Sentiment: 0.4800000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: uziwrote on 30.04.2021:[8.0] "Edge is really in the top 50 on here? Kind of crazy to me. Great wrestler all round but he's the best what of all time? In ring? On the mic? Draw? Gimmick? I don't see it."
Rating: 8.0
Sentiment: 0.32857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: FrelixUZwrote on 25.04.2021:[10.0] "My Favourite of all time, I was devastated when he retired and when he returned I almost died of happiness, Excellent wrestler, very good technical in ring and can have a good match with anyone, I like his moveset and he has done everything you can do in this business. Gret charizma and one of the best on the mic of all time. Great expressions and amazing storytelling ability."
Rating: 10.0
Sentiment: 0.7137499999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Grekkowrote on 12.04.2021:[10.0] "A legend in the business, Edge has done it all. 2x Royal Rumble winner, Multiple times World Champion, the catalyst for Money In The Bank and TLC's success. He also WAS Smackdown for a period of 3-4 years in the late '00s. Great promo skills, a complete nutcase when it comes to his own safety, amazing charisma and look, probably the best facial expressions in a wrestler. He can sell ice to an Eskimo."
Rating: 10.0
Sentiment: 0.34444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: King of Strong Stylewrote on 09.04.2021:[10.0] "Edge ist einer der größten Stars der WWE und noch dazu ein absolutes Gesamtpacket er ist stark im Ring am Mic fantastisch und hat Charisma und noch dazu Schauspielerische Qualitäten und bringt sein Gimmick als Heel aber auch als Face immer rüber, auch wenn ich ihn immer lieber als Heel gesehen habe. Für seine Karriere muss man einfach 10 Punkte geben."
Rating: 10.0
Sentiment: 0.11666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: NahuelVerawrote on 07.04.2021:[10.0] "This guy is one of the reasons i love professional wrestling. My favorite Wrestler of my entire life, one of the best heels wwe has ever had and a man that deserves all the respect of the world. Thank you Edge."
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RickyHendowrote on 11.02.2021:[9.0] "One of the main players in the ruthless aggression era, had many great matches (although a lot relied on gimmicks). Loved his tag team with Christian and very happy to see him back"
Rating: 9.0
Sentiment: 0.2708333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: redcloudwrote on 03.02.2021:[0.0] "The overrated superstar. Note how all his best matches are gimmicked to hell. One of, if not the worst spears and all his offense looks awful. His tag team run with Christian was his peak and he was floundering badly until he decided to cheat on his wife with his friend's girlfriend. Being an awful person pays off!"
Rating: 0.0
Sentiment: -0.44999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Wrestling Foreverwrote on 02.02.2021:[10.0] "Adam hat mittlerweile mit dem Wrestling abgeschlossen. Er vermisst es nicht und wird nicht zurückkehren hat er auch auf eine Frage auf Twitter geantwortet ob er zurückkommt. Nein wird er nicht er genießt seine Zeit mit Beth und der gemeinsamen Tochter auch ist er inzwischen Schauspieler. Zu Aktiver Zeit gab es Zeiten da hab ich ihn gehasst vor allem in der Fehde mit dem Undertaker. Trotz des damaligen Hasses auf Edge hab ich anerkannt wie gut er war. Einer der besten Wrestler aus Kanada er hatte klasse Trainer, er ist ein rießen Spaßvogel. Edge durch lief lange den Under und Midcard Status eher er 2006 zum Main Eventer wurde. Edge hatte viele starke Matches und Fehden, musste auch mit vielen Verletzungen kämpfen eine führte dann zum Karriereende. Wer ihm 0 Punkte gibt hat das Edge Gimmick und seine Art des Wrestlings nie verstanden. Edit 02. 02. 2021 mich hat Edge Rückkehr 2020 überrascht, jetzt hat er auch den Royal Rumble zum zweiten Mal gewonnen, dann war er auch der dritte dem das mit der Startnummer 1 gelang."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Uweuwesenwrote on 25.01.2021:[8.0] "In einer der schwächsten Phasen der WWE war Edge der absolute Star und Champion. Jedoch hat Edge nicht viele Facetten und war auch am Mikrofon nicht der beste. In meinen Augen ist er ein Stück weit überbewertet. Im Tag Team jedoch eine Art Legende!"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Old ride long linewrote on 17.12.2020:[8.0] "Edge and Christian easy 10. Edge on his own meh. Don? t let the absurd number of heavyweight titles he won fool you the guy was only a main eventer for 5 years before injury cut short his career. He had good matches but I think wwe fucked up his push to mainevent status after his tag team runs. I? m not sure if it was the same for guys who saw hbk and Bret heart be apart of tag teams for years before being elevated to main event status, but I watched edges whole career and for me personally to watch him go from tag team god to heavyweight champion in a little more than a year was bad booking in my opinion. Don? t get me wrong he had good matches, and charisma for days. and I could just be a hater but to me there was not enough time for my brain to get behind him as a big time title contender to a 9 time heavyweight champion. Regardless his matches with cena, taker, orton, Rey, Bautista, hhh, and especially Jericho have plenty of replay value. After rereading this I? ve decided I? m definitely a hater when it comes to edge and those 9 titles in 5 years lol I just think when a guy holds the belt for 3-4 months minimum it helps generate that extra heat to want to see him lose or win."
Rating: 8.0
Sentiment: 0.0682471264367816
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: eleddie2914wrote on 28.10.2020:[10.0] "No words to describe how great Edge is he is a legend and his comeback was sick. His match with orton was awesome and his past work makes him what he is a GOAT."
Rating: 10.0
Sentiment: 0.20892857142857146
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ilovewrestling1995wrote on 20.10.2020:[7.0] "Edge is a very decent wrestler but no way he is 9/10 . you kinda overestimate him . yeah his mic skills are 10/10 and especially when he was heel , he was awesome but his moveset is so basic and his in ring work is just average (expect from his hardcore and ladder matches ) ."
Rating: 7.0
Sentiment: 0.21333333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ma Stump Pullerwrote on 13.10.2020:[8.0] "It's hard to place Edge at a accurate level because his quality of wrestling changed so much: while some say Edge is a "bad" wrestler, that's completely untrue, especially if you look at him during his early days and early to mid 2000's work: he was actually a pretty damn solid worker who was surprisingly agile (keep in mind that Edge also isn't the smallest guy around) and could keep up with guys like Rey, Angle, etc. He did have to scale things down due to multiple injuries (especially to the neck) and his later years didn't have him as agile, but Edge knew what he could and couldn't do and made the best out of his battered body at that point. Promo wise, he's great, probably one of the most solid heels during the late 2000's who was not only deviously smart but wasn't afraid to murder someone in the ring if he needed to so. Perfect foe for Cena as well and got some of the better matches out of him. To say he wasn't a fantastic tag team specialist when the wealth of solid work he did with Christian, Orton, Benoit, Rey Mysterio and even in the short lived Team ECK is ludicrous. That being said, Edge suffered from the same problems that Christian did, namely always being below the top guys and being a great dance partner in the ring but not being a legitimately interesting champion for the most part, not helped by him consistently bouncing the belt after winning it and never really having a career defining run with it, which reduces his stock significantly. I have enjoyed his work since coming back through: hopefully he keeps up the solid promo work and gets some great matches before finally hanging up the boots."
Rating: 8.0
Sentiment: 0.20243882275132277
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Viniciouswrote on 26.06.2020:[8.0] "Great, yes, but in the upper echelon of main eventers, I never saw it in Edge. The definition of a B+ player. Nowhere near guys like Flair, Hogan, or The Rock. Obviously, now that he's returned he has a chance to build his legacy, and the things he's done at the age 46 has been excellent. Five more years of A+ promos and good in-ring work, maybe he get's into being the best close to guys like Jericho and Bret Hart."
Rating: 8.0
Sentiment: 0.4740740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: mjboyerwrote on 15.06.2020:[10.0] "Quite possibly my all time favorite. His return run only further proves to me why I love him so much"
Rating: 10.0
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Conorwrote on 22.05.2020:[10.0] "Probably the wrestler I associate most with the big gold belt in WWE. Edge could really do it all. He and Christian formed a tremendous tag team. And his singles runs in both the mid card and the main event were just excellent. No one could cut a promo quite like Edge either. He could be very dark and brooding as a heel, but he also had brilliant comedic timing when it was called for. One of the best to ever do it."
Rating: 10.0
Sentiment: 0.35500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BGAwrote on 12.05.2020:[7.0] "I don't know why but I never took to Edge like a lot of wrestling fans did. I was a much bigger fan of his tag team career than his singles, never warmed to him as a singles competitor. Always felt he lacked something."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Wrestlefan20wrote on 11.05.2020:[9.0] "He's proven to be an amazing heel. Not really that good of a face. His promo skills are also pretty good. Both a really good singles and tag-team wrestler. He's accomplished a lot, but a lot of his world championship reigns were transitional."
Rating: 9.0
Sentiment: 0.43571428571428583
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AAA3000wrote on 07.03.2020:[10.0] "Es gibt natürlich technisch bessere, aber auch bedeutend schlechtere. Sein Spare ist legendär, seine Bühnenpräsenz, sein ganzes Auftreten all das Drumherum da holte Edge schon immer alles raus. Für mich ist er einer der besten Heels und wenn es rein um die Präsenz geht mein Lieblingswrestler. Ja, noch vor Stone Cold und noch vor The Rock. Aber nur knapp!"
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JustAWrestlingFanwrote on 03.02.2020:[10.0] "One of the greatest bad guys in the history of wrestling. At his peak he drew so much heat and he played up to it amazingly to ensure a crowd reaction. He also knew how to play a symphatic face. I loved his ultimate oppurtunist phase with the money in the bank briefcases and the elimination chamber moment. Amazing in both singles and tag team matches."
Rating: 10.0
Sentiment: 0.3428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KENTAfanwrote on 29.01.2020:[10.0] "One of the greatest, and often most underrated, in WWE history. Edge has always been an outstanding wrestler, with even more impressive charisma and mic skills. The guy can, and has, done it all. He's a legend, simple as that. I was still 12 years old when he retired, and his departure took away a part of my childhood honestly. His return at this year's Rumble was one of the most amazing things I've ever witnessed in wrestling, and his promo on Monday night was just as good. Edge took up acting during his time away from the ring, and it was definitely noticeable. 10/10"
Rating: 10.0
Sentiment: 0.4615384615384616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Erik1031wrote on 28.01.2020:[10.0] "When you break it down, Edge has had one of the greatest careers in wrestling. One of the few who can say had a HOF singles and tag team run. Him and Christian were so good together and they helped innovate tag team wrestling in the early 2000s. As a singles star though, Edge took off. He was one of, if not, the best heel of his era. In 2005-2006, nobody had more heat than him. As a face, he was a beloved figure. He just felt so cool and charismatic. He won every belt imaginable in WWE and feuded with every big star at one point or another. Involved in some all time great rivalries with Cena & Undertaker. He's kinda underrated as a performer and has had or was involved in plenty of classic matches. Saddened when he had to retire but his return at the Rumble was epic and I'm glad he gets to go out on his terms now."
Rating: 10.0
Sentiment: 0.3788194444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Vindicator1996wrote on 28.01.2020:[10.0] "I grew up watching Edge being the ultimate heel. He was capable of delivering great matches, at least for the average level of the era, but more than this he was a larget than life character. Also, his beginning teaming up with Christian is memorable."
Rating: 10.0
Sentiment: 0.19374999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Anton9278wrote on 27.01.2020:[10.0] "An amazing wrestler who is an idol for me. Cool matches, promos and segments. Great feuds. Great legacy. In connection with the rumors of his return to the Royal Rumble, I remembered his departure, a farewell speech. His departure took part of my childhood. And when the first words of his musical theme were voiced in the Royal Rumble, I really have tears!"
Rating: 10.0
Sentiment: 0.43571428571428567
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JEK 1991wrote on 03.11.2019:[10.0] "One of my favorites of all time. Great worker. He knew how to excite a crowd. Unfortunately neck injuries caught up to him."
Rating: 10.0
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: redekkerwrote on 15.08.2019:[9.0] "In my opinion the most entertaining overall wrestler out of the "Big 3" tag teams of the early 2000s. Outstanding on the mic, put on some of the best matches year after year for a decade. Maybe the absolute worst spear in wrestling though. His other offense didn't look amazing either, after all his neck problems, but it's offset by his charisma and general heel persona."
Rating: 9.0
Sentiment: 0.19375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[9.0] "Awesome as a tag team with Christian and really broke through the glass ceiling when he found his Rated-R gimmick. His terrible looking spear is part of the reason I can't bring myself to give him a 10 though. Every time he hit that move I just wondered why he used it. It may sound like a little thing, but it really did take away something from his overall package. But even that being so, he was still an joy to watch all the way throughout his career."
Rating: 9.0
Sentiment: 0.15694444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheGorgis309wrote on 10.06.2019:[8.0] "Edge was good in the ring, had a fantastic look, electric charisma, and his mic skills had you hanging on his every word.  His heel persona felt so devious and opportunistic. Everyone always says he's not that good in the ring because of his spear, which I admit is bad, but if you look at his earlier work he was doing flip sentons, hurricaranas and twisting headscissors. His ring work did take a hit after his neck injury, but the guy was still talented. In my opinion, he was slightly overexposed, I mean 11 world titles in less then 5 years is incredibly excessive, but I feel like he earned his pushes."
Rating: 8.0
Sentiment: 0.09041666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ElPolloLocowrote on 24.05.2019:[8.0] "I am rating Edge exclusively based on his promos. In the ring he ranked somewhere between inadequate and nothing special and many of the feuds he was involved in were typical of the Ruthless Aggression Era (bad) but each time he opened his mouth he was funny, witty and entertaining. One of the very few workers I consider a match for Jericho when it comes to promos, which coming from me is a pretty big accolade."
Rating: 8.0
Sentiment: 0.020952380952380976
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: zephyrwrote on 20.03.2019:[8.0] "Great look, AMAZING talker, natural heel. Not the greatest wrestler but generally knew how to work around that by being a cowardly heel."
Rating: 8.0
Sentiment: 0.51
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tomaswrote on 07.03.2019:[9.0] "The fact that people here are giving Edge a 0/10 is just mental. Sure, he was never a Bret Hart, HBK, Eddie or Angle in the ring, but he was very decent and did take part in great tag team matches in 1999-2001 (especially the TLC stuff), in fantastic matches almost every week in the 'SmackDown Six' time in 2002 with some of the greatest wrestlers ever like Angle, Benoit and Eddie. In latter years, he participated in some of John Cena's first great matches in his career and had a great feud and series of matches with Undertaker in 2007-08. A solid 8. 5 (9) for Edge."
Rating: 9.0
Sentiment: 0.3888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Steamboat2511wrote on 29.11.2018:[9.0] "Edge als Gesamtpaket gehört zu den besten Wrestlern überhaupt. Seine Matches waren fast immer unterhaltsam und überzeugten mit Technik und Ringpsychologie. Wie kaum ein zweiter hat er den Sprung vom legendären Tag Team Wrestler zum legendären Singels Wrestler geschafft. Verschiedene Matches bleiben dem Fan für immer im Gedächtnis (WM 17, 22, 24). Wie Jericho (und einige andere) konnte er perfekt sowohl Heel als auch Face verkörpern. Am Mic zeigte er sich ebenfalls auf höchstem Niveau und so gehört der Rated-R-Superstar zwangsläufig in meine Top 10."
Rating: 9.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Stott Onewrote on 27.11.2018:[9.0] "THE RATED R SUPERSTAR! My brother and sister were HUGE marks for John Cena. And I was the Edgehead. His promo work was dripping with sleaze and he could make a crowd go crazy with hatred. One of my favorite heels of the 2000s, I was so sad to see him leave so soon. Also, before he became my favorite thorn in Cena's side, he was putting on tag team classics. Not just with Christian, though they are awesome, but also his teaming with Rey Mysterio was one of my favorite parts of early Smackdown tag division along with Los Guerreros and Benoit/Angle"
Rating: 9.0
Sentiment: 0.21111111111111114
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Aurtletheturtlewrote on 20.10.2018:[6.0] "Perhaps the most overrated wrestler of all-time. Edge was comfortable being a snivey heel with okay cheap heat promos and not much else. He featured perhaps the worst incarnation of the spear in pro-wrestling history and not to stop there, his weak moveset left much to be desired and only decreased from his believability as a world champion. Midcard at most."
Rating: 6.0
Sentiment: 0.05208333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Oliver95xwrote on 27.09.2018:[10.0] "Edge hatte einige sehr gutes Matches und kaum einer war so gut am Mic und hatte so viel Charisma wie er."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RatingsMachinewrote on 22.09.2018:[6.0] "Edge is so, so overrated. He worked so light as to make it obvious that he wasn't coming close to touching his opponent. I'm not saying he had to hit the other guy as hard as he possibly could, but Edge took it so far in the other direction that it made his offence looks terribly weak; his punches looked more like a guy flapping his arms than throwing a punch. His interviews were OK; they weren't great, but they got the job done."
Rating: 6.0
Sentiment: 0.15694444444444447
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: pappahousewrote on 04.09.2018:[9.0] "Einer der besten Wrestler aller Zeiten, eine Intensität im Ring die ihres gleichen sucht.  Den Beef den er mit Matt Hardy wegen LIta hatte und daraufhin folgende "Live-Se*-Show" verhindern hier die zehn Punkte. Ich war damals echt geknickt, als er sein Karriereende bekannt geben musste. Ein gutes Beispiel, dass man es doch von einem Tag-Team-Wrestler zu einem etablierten Single-Wrestler schaffen kann."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: InactiveGuruwrote on 01.06.2018:[9.0] "One of the best heels to ever work in wrestling, you honestly couldn't say he was one dimensional as he plays the comedy jester tag team extremely well with Christian when the time called for it. I won't explain Edge in detail as let's be honest we all know who he is."
Rating: 9.0
Sentiment: 0.41500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Shiza kunwrote on 23.05.2018:[8.0] "As a kid, I probably hated no one more than Edge, which to me goes to show his amazing ability as a heel in the late 2000's. The "Ultimate Opportunist" aspect of his gimmick was amazing, with great examples of this being his MITB cash-ins and stealing Kofi's spot in the Elimination Chamber at No Way Out 2009. He was never as interesting as a babyface unfortunately, even though I will admit his return at the 2010 Royal Rumble had me marking out the most I ever have during a live show. All of his most memorable matches have been either gimmick matches, tag-matches, or a combination of the two, and in those, he never stood out as the most amazing in-ring performer, so for me, what makes me rank him as highly as I do is his character work. Unfortunately, his career was cut short, but it helped elevate his best friend Christian to take his spot, which to me, is absolutely beautiful."
Rating: 8.0
Sentiment: 0.2157438016528926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CHN325wrote on 01.02.2018:[8.0] "Great wrestler, great tag team worker, terrible spear. Made a great transition from tag team specialist into main event heel. Great mic work."
Rating: 8.0
Sentiment: 0.39444444444444454
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sheepwrote on 17.12.2017:[10.0] "Die Bedeutung von Edge für die WWE der letzten 10 Jahre ist unmöglich zu überschätzen. Eine herausragende, an denkwürdigen Momenten reiche Karriere hatte er ja schon hingelegt, als er noch mit Christian gearbeitet hat. Auch sein Match gegen Shawn Michaels beim Royal Rumble 2005 ist mir im Gedächtnis geblieben. Im Ring war er sicher kein Gott, aber sehr ordentlich und nie langweilig.  Der Moment, wo aus dieser tollen Karriere eine einmalige wurde, ist dann natürlich der erste Cash-in des Money-in-the-Bank-Koffers Anfang 2006 gegen John Cena. Ab da spielt der Mann in einer eigenen Liga, was Storytelling und Charakterentwicklung betrifft - und eigentlich ist auch die WWE von diesem Moment an eine andere.  Was er von da an alles unglaubliches tun durfte, muss man nur aufzählen.   Die Etablierung der später fast zu Tode recycleten, aber seinerzeit geilsten, weil dreckigsten Methode, einen Titel zu erringen.  Die Live-Sex-Celebration, die bis heute ihresgleichen sucht... in was auch immer.  Der Spear gegen Mick Foley durch einen brennenden Tisch.  Der Sturz durch mehrere Tische im TLC-Match gegen John Cena.  Der bestürzende Angriff auf den Undertaker nach dessen Steel-Cage-Match und damit der erste Teaser der späteren Jahrhundertfehde.  Die Rückkehr als Kameramann und der Beginn der für mich unvergesslichen Taker-Storyline.  Die Affäre mit Vickie, die aus einem weiteren hinterhältigen Heel den goddamn dirtiest SoB in the game machte.  Das unglaubliche Finish des Triple-Threat-Matches bei Armageddon 2007.  Das Match gegen Taker bei WM24, eines der besten des Deadman.  Der Sturz des Undertaker durch vier Tische und die Scheinbeendigung von dessen Karriere.  Das Cell-Match beim Summerslam 2008, eines der besten Matches, das ich je gesehen habe.  Die folgende Auseinandersetzung mit Triple H und Jeff Hardy.   Die WWE sagt oft: "Anything can happen here! " Solange es Edge gab, stimmte das. Er konnte alle Gesetze brechen, die wir für unkaputtbar hielten. Er fehlt mir."
Rating: 10.0
Sentiment: -0.09999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Summerslam Fan 01wrote on 15.12.2017:[8.0] "Edge ist und bleibt etwas Überbewertet.  Klar er ist als Heel einer der besten wenn nich sogar unter den Top 10 Ever.  Aber ansonsten ? Privat hörte man ja mit der Lita/Hardy Geschichte nix Positives über ihn, kann ja sein das er sich geändert hat. Hat in meinen Augen keine Ausstrahlung, aber ein guten Psychoblick der dieß ausgleichte, Fehden gegen den Taker, Cena und Tag Team bleiben Unvergessen.  Also ist absoluter HOF aber in meinen Augen nie ein wirklicher Topstar"
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheV2wrote on 20.11.2017:[10.0] "Edge ist mein absoluter All-Time-Favorit und wohl einer der besten und einflussreichsten Heels überhaupt.  Der Hauptgrund für meine Begeisterung für Edge ist auf jeden Fall sein Charisma und die Art und Weise, wie er sich zu einer einzigartigen Heel-Persönlichkeit entwickelt hat. Als Face waren seine Leistungen ebenfalls zufriedenstellend, aber als Heel ist er eben ein Zucker-Rivale für jeden Face. So hat er auch die Karriere von zum Beispiel Cena, als auch die Karriere von Jeff Hardy sehr positiv beeinflusst.  Im Ring ist er für den heutigen Wrestling-Standard kein Top-Performer. Genau so wenig ist das ein Untertaker und genau so wenig wird das auch ein Cesaro zum Beispiel im Vergleich zum Wrestling-Standard in 20 Jahren sein. Man sollte finde ich die Leistungen auch an den Erwartungen der dementsprechenden Zeit bewerten. So waren auch die Matches von Edge immer unterhaltsam aufgrund seiner Persönlichkeit. Edges Persönlichkeit wurde immer sehr gut in seinen In-Ring-Handlung reflektiert.  Insgesamt ist Edge vielleicht nicht der erfolgreichste Wrestler schlechthin, aber er ist für den Erfolg von sehr vielen WWE-Legenden mitverantwortlich. Man kann sich Edge bei so vielen Leuten einfach nicht wegdenken."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ianlapierrewrote on 04.11.2017:[6.0] "Completely overrated. Yes, I know, he was a great wrestler. His tag team work is some of the greatest work the business has ever seen. Yes, I know, he was a good heel champion later in his career. I never regarded him as one of the best main eventers. I regarded him as one of the worst main eventers during one of the weakest periods in wrestling history. And to make matters worse his career was cut short by a career ending injury."
Rating: 6.0
Sentiment: 0.23030303030303026
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DCFC95wrote on 26.10.2017:[10.0] "One of the greatest heels of the Ruthless Aggression Era. Edge was excellent on the mic as an evil heel and believable as a marketable babyface. He was involved in excellent feuds with Taker , Cena and DX and more than capable of putting on a 5* match. 10/10."
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "I'll say it: Edge was the best heel of the 2000s, even better than Triple H. No one was a heel heat magnet as him, and despite some repetitiveness in his promo, Edge always captured the audience's hate. Also, Edge has always been very versatile, being able to evolve from an hardcore specialist to an in-ring storyteller. His feud with John Cena and Undertaker are simply masterpieces, as he was able not only to have incredible matches with them, but also to be on their level at the mic. Edge is, without a doubt, one of the best wrestlers in the history of WWE."
Rating: 10.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: xPETERxwrote on 15.09.2017:[6.0] "Ach, der gute Rated-R Superstar, der mit Cheating eine beachtliche Zahl an World-Title gewinnen konnte. Ich fand den Spear als Finisher immer unglaubwürdig. Wenn man jenen mit dem Gore, oder dem von Reigns vergleicht. Schwach. Ausserdem hat er Matt gescrewed! Am besten gefiel er mir noch im TagTeam. Am Mic wohl sehr gut und auch entsprechendes Schauspiel-Talent. Allerdings machte es nie Klick was sein Move-Set im Ring als Singles Wrestler anging."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: taabr2wrote on 10.09.2017:[9.0] "Edge was a great talent in wrestling but not really an all time great in my opinion. He was a good tag wrestler and a great brawler. His best role is when he was playing the heel to top faces like John Cena, Batista and Undertaker."
Rating: 9.0
Sentiment: 0.6428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ChristianMB1wrote on 27.07.2017:[9.0] "Unarguably delivered the greatest "cheating heel" performance. His selling, ring psychology and mic work were all legendary. He was so believable and easy to hate during his prime. The only thing that keeps him out of the GOAT discussion is his slight underperformance as a babyface."
Rating: 9.0
Sentiment: 0.280952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Arousalswrote on 17.04.2017:[7.0] "A good performer, able to reinvent himself at the proper times. I think he got way more than what he deserved in terms of titles and accolades, but that's the nature of the game in WWE (and after all, he was supposed to be "The Ultimate Opportunist")."
Rating: 7.0
Sentiment: 0.21666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Blood Pumpwrote on 07.04.2017:[8.0] "One of my favorites back in the day but looking back Edge was really just amazing on the mic. Hes a good in ring talent and some of the matches hes been a part of are some of the best matches and moments in history. The TLC match at WM X-7 in general is a bonafide 5 star in my eyes and his work with Guererro (particularly the Ladder match) and Angle are fantasic singles examples but I can't think of too many times where he himself carried a match. Hes always had something to add and deserved the main event push he got, but I would hardly call him top 50 let alone 25."
Rating: 8.0
Sentiment: 0.29930555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RonAyyyyyyyywrote on 28.02.2017:[10.0] "Edge is one of the all time greats, a good face and an absolutely fantastic heel, and a very good in-ring worker too, especially in hardcore matches. As a heel, no matter who he faced, he was always able to take the feud to the next level thanks to his ultra-intense attacks and promos. Edge really shone prior to the PG switch though, when he was able to show what he was willing to put his body through to get over or to steal the show. Pretty much any main event match that doesn't involve Batista is great in a storytelling sense, but his triangle ladder matches and his feuds with John Cena and the Undertaker have produced some of his best work."
Rating: 10.0
Sentiment: 0.3797916666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring: Klar war Edge ein guter, aber eigentlich würde ich ihn nur 8 Punkte geben, aber immer wenn ich an ihn denke, muss ich an die 2 Spears denken bei WM 17 und 22 die ihn unsterblich gemacht haben deshalb 1+ Punkt. 9/10 (50%)  Promos/Schauspieltalent:Er konnte Perfekt den Ultimate Opportunist spielen und das merkte man an seinen Promos. 10/10 (25%)  Charisma/Statur/Gimmick:Hier leider nur etwas besserer Durschnitt. 7/10 (25%)  Sind dann insgesamt 8, 75 Punkte für den Rated R Superstar.  = 9 Punkte"
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MarkyMark0wrote on 16.01.2017:[9.0] "Ah Edge, one of my all time favorites. Edge was a great heel as well as a good face. His run with Christian totally reeked of awesomeness and they put on some great matches with the likes of the Dudley Boys, APA, Hardy Boys and so many more. Christian turning on him during the Invasion story line was probably one of the best things that happened to him as later on he'd go on to have a tremendous run as a singles competitor. He really hit his stride when he became the Rated-R Superstar Edge. His promos were great and he was able to play such a slimy heel that you loved to hate and he could really go in the ring when he wanted to. Edge will go down as a great and him being in the Hall of Fame proves just how good he really is."
Rating: 9.0
Sentiment: 0.351207729468599
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: rjsbx11wrote on 08.01.2017:[10.0] "Edge is my favorite wrestler of all time, however, I'll give him an honest evaluation.  Edge was such a unique wrestler with a great personality and character. He is one fun heel and he totally embraced the cowardly yet opportunist antiques so well. He's kind of the veteran version of Seth Rollins. In his earlier career, he was quick for a guy his height and had diverse moveset. A great tag specialist, his risk taking and bumping took a few notches off his career which ultimately made him a good yet inconsistent worker in his later years. However, he supplanted diminishing ability by being an awesome talker and a damn good heel. A little overbooked in terms of titles, he established himself as a reliable main eventer who could draw heat and interest into any feud (including one that helped legitimize John Cena). While a personal favorite, he's just a outside that top tier rank of greats."
Rating: 10.0
Sentiment: 0.2675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rasslin Ruleswrote on 04.01.2017:[8.0] "Er hat zwar echt immer super unterhalten und mit dem was er hatte (begrenztes Moveset, fehlende Athletik, ... ) echt immer das beste rausgeholt, besonders als Heel. Einfach ein sympathischer Typ, dem ich den Erfolg auch gönne, auch wenn die Anzahl der Titel und Erfolge vielleicht etwas hoch ist. Trotzdem gehört er am Ende des Tages nicht zu den ganz großen für mich"
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SuTonwrote on 11.12.2016:[5.0] "One of the better promos during the late 2000s, a level of intensity when spewing his hatred for whomever that helped sell matches, but not on the level of mic workers like a Jericho, Punk, or Guerrero who can control crowds in the palm of their hand. As an in-ring worker, he shined best during gimmick matches and always displayed a satisfactory level of talent outside of them; he's someone I thought was never a good despite great matches with some of the best workers of all time. He's almost always clearly the worst in those cases and his shit offense sticks out so heavily. Edge also tended to play a weak babyface. He was good for a laugh as partner with Christian, but he didn't have much range outside his tired "ultimate opportunist" shtick and could never generate as much heat as when with Vickie/Lita."
Rating: 5.0
Sentiment: 0.09875000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rattlesnake3-16wrote on 09.11.2016:[10.0] "Simply the best heel of the 2000's, he had great storylines particularly with taker and cena ... and is stricking spear remains the best the company had known... the rated ten superstar edge !"
Rating: 10.0
Sentiment: 0.49444444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Alex Maedawrote on 20.10.2016:[10.0] "Edge war ein großartiges Total Package, sowohl als Tag Team-Wrestler als auch im Einzelbereich sehr erfolgreich. Als Heel super am Mic, sogar als Comedy-Babyface ganz unterhaltsam, nur sein letzter Face-Run hat mich ein wenig enttäuscht. Ansonsten lieferte Edge im Ring zahlreiche denkwürdige Momente, seien es die waghalsigen TLC-Spots, sein erster Cash-In oder die Matches gegen Cena oder den Undertaker. Insgesamt eine überragende Karriere eines Ausnahmetalentes, das die WWE sichtlich vermisst."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Snedgewrote on 15.10.2016:[3.0] "Schon als Kind konnte ich nicht verstehen, warum er und Christian in so kurzer Zeit 7 Tag-Team-Championships halten durften. Die beiden waren dünne feminin wirkende Langhaarige, die ich einfach nur pfui und unlustig fand, obwohl sie damals Face waren (und ich war als Kind eigentlich immer auf Seiten der Faces). Gangrel war cool, aber seine beiden Gefolgsmänner mehr als überflüssig. Warum durfte Edge so gut wie jede Fehde (außer gegen Cena natürlich, wie jeder) gewinnen? Gegen Gangrel, Christian, die TLC-Matches, Kurt Angle, Lance Storm, Randy Orton, gegen Kane sogar mehrmals und natürlich Matt Hardy! Und sein Spear ist der schlechteste, den ich kenne. Von der Privatperson Adam Copeland fange ich lieber gar nicht erst an (spannt seinem besten Freund die Freundin aus und McMahon findet das auch noch geil -, -). 3 Punkte gebe ich für die TLC-Matches, für einige In-Ring-Techniken und weil er als Heel mit Lita wirklich effektiv Heat gezogen hat."
Rating: 3.0
Sentiment: 0.30999999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheOneWhoKnockswrote on 09.10.2016:[10.0] "Jesus, what is it with all the negative backlash from some people on here regarding Edge? Edge was an incredible talent. One of the greatest heels of all time, this man knew how to get heat against anyone. He was so good at it he managed to get the crowd fully behind John Cena, something not many have managed to achieve. And besides that feud, his feuds and matches with the likes of Undertaker, Jeff Hardy, Mysterio, Kurt Angle, Eddie Guerrero and many others were all brilliant, he was a master at ring psychology and his promo skills are vastly underrated. As "The Rated-R Superstar" he was one of the greatest ever microphone workers. His tag team with real life best friend Christian also remains one of the greatest tag teams of all time in terms of both ring work and entertainment value, and in terms of entertainment value almost nothing tops his heel partnership with on screen "wife" Vickie Guerrero between 2007-09. Edge is a legend and fully deserving of all his accolades."
Rating: 10.0
Sentiment: 0.45666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: steviecwwrote on 07.09.2016:[9.0] "Saving grace of the WWE main-event scene during some fairly terrible times, not to mention a remarkable and well earned rise through the WWE, mid-card and Tag Team divisions. He won almost everything there was to win, WWE Championship, World Heavy Championship, US Championship, IC Championship, King of the Ring, Money in the Bank, Royal Rumble, Triple Crown, Grandslam and more."
Rating: 9.0
Sentiment: 0.17
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: NHJ2190wrote on 17.08.2016:[7.0] "Das Paradebeispiel eines Wrestlers der nach jahrelangem Erfolg in der Tag Team Division den Sprung in den Main Event geschafft hat. Insgesamt im Ring absolut im oberen Drittel anzusiedeln. Ich mochte sein Gimmick als Ultimate Opportunist. Allerdings gibt es 2 Kritikpunkte: Ich fand die Frauengeschichten mit Lita und Vicky Guerrero einfach nur nervig und am Micwork hatte er bis zum Ende hin noch deutlich Luft nach oben. Nichtdestotrotz ein verdienter Worker mit einem viel zu plötzlichem Karriereende. EDIT: Muss 1 Punkt abziehen, da er mir in der Attitude Era neben Christian als Tag Team übel aufgestoßen ist und ziemlich genervt hat."
Rating: 7.0
Sentiment: 0.05555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Strezemannwrote on 10.08.2016:[7.0] "In the ring, Edge had weak offense and was pretty dull to watch on weekly television for the last half decade or so of his run, though every couple of months he'd throw caution to the wind and deliver a very strong match. Despite not being that exciting a worker on a day-to-day basis, it was impressive that he kept going for so long and managed to get as over as he did even, all following serious neck surgery. Prior to his surgery, and even on a couple of very memorable occasions later in his career, he'd take some insane risks and really put it all on the line to entertain. On top of that, he was always one of the better characters on WWE TV, starting with him having surprisingly strong comedic timing right off the bat to playing a very strong heel because of the fallout of a real-life occurence, to playing a very entertaining mad man that I think many 'crazy' personalities have since been inspired by. The staggering number of underwhelming matches he had keeps me from giving Edge a great rating, but he sure did have a number of great, memorable ones, too."
Rating: 7.0
Sentiment: 0.18513492063492062
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ApexOfEvolutionwrote on 02.08.2016:[10.0] "Meiner Meinung nach der beste Wrestler aller Zeiten! Seine Fehde gegen den Undertaker hat mich damals wieder zurück zum Wrestling gebracht. In der Kombination mit Vicky Guerrero fand ich ihn damals wahnsinnig unsympathisch (und das ist positiv gemeint! ) Habe mir dann im Internet auch ältere Matches angesehen und fand ihn fast immer großartig. Technisch sauber, jede Aktion absolut glaubwürdig. Hätte noch einige Jahre großartiges Wrestling bieten können. Sehr schade, dass er aus gesundheitlichen Gründen nicht weitermachen konnte."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KevinZaynwrote on 24.07.2016:[10.0] "Er ist der Wrestler, den ich echt am meisten vermisse. Er war so ein grandioses Talent. Für mich persönlich ist er auch nach CM Punk das Zweit Beste Gesamtpaket, das es jemals gegeben hat. Er hatte einfach alles drauf und konnte sowohl als HEEL als auch als FACE überzeugen. Auch wenn es in die Comedy Schiene ging war dieser Mann absolute Weltklasse, 10 Punkte für den Rated R Suuuuuperstar"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ErycK24wrote on 04.07.2016:[9.0] "Edge was a very skilled wrestler. It is very unfortunate that his career came to such a sudden end when Edge still had a ton of wrestling in him. He performed amazingly in many fantastic matches."
Rating: 9.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Okaro143wrote on 29.06.2016:[9.0] "Edge is one of my favourite wrestlers. I really like his character as the ultimate opportunist. When he retired, I was really sad. He is one of the best to step in the ring and has one of thebest gimmicks of all time with good in-ring abilities."
Rating: 9.0
Sentiment: 0.27999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JordanACEwrote on 27.06.2016:[10.0] "The Ultimate Opportunist is one of the most iconic wrestlers in the past 10 years, from his legendary feuds with John Cena to his amazing feud with Chris Jericho, he was always entertaining. A true legend of the business."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Sick Lebowskiwrote on 14.06.2016:[10.0] "Gehört zu meinen Lieblingswrestlern der jüngeren Vergangenheit. Schade, dass er seine Karriere schon recht früh beenden musste. Im Ring ziemlich stark, am Mikro auch gut und in manchen Skits z. B. mit "Bruder" Christian und Kurt Angle zusammen absolute Weltklasse. Lange Zeit einer der Wenigen, auf die ich mich während des WWE-Schauens gefreut habe, ihn zu sehen."
Rating: 10.0
Sentiment: -0.1785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Grisham1986wrote on 04.06.2016:[7.0] "A very, very good contemporary heel. Edge had a similar backstory to Austin, who got a little inconsistent in the ring after a terrible neck injury and - at the same time - reached the proverbial stardom with a new character. However, I can't help but think most of his resumee, title-wise, is unjustified, especially between 2008 and 2009. Still, I can't really dislike Edge. Most of his matches with Cena and Undertaker were legitimately among the most entertaining in the late 2000s."
Rating: 7.0
Sentiment: 0.1375378787878788
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: thetruenaitchwrote on 20.05.2016:[9.0] "One of the best talkers, greatest workers and rightfully most decorated superstars in WWE. His 2002 run is simply flawless and could still bust out high-quality performances for eight years, and constantly at that, after an almost career-halting neck injury."
Rating: 9.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: WrestlingNerdwrote on 06.04.2016:[10.0] "Ich mochte Edge schon immer. Fing als Tag Team Wrestler an, im Team mit Christian einfach genial... ich sag nur 5 second Pose! und danach auch als Singles Wrestler eine WUcht. Er hat wirklich den Sprung aus einem Tag Team hin zum guten bis sehr guten Einzelwrestler geschafft.  Bei ihm passte einfach alles, meiner Meinung nach. Fängt beim In-Ring Können an, geht über die Musik und den Auftritt und das Charisma bis hin zu seiner Art. Wenn man ihn so in Interviews hört oder bei Shows, merkt man er ist ein absolut lustiger und Sympathischer Typ. und er schaffte eins, was nicht viele umbedingt schaffen, er funktioniert perfekt als heel aber auch als Face. 10 Points for the Rated-R-Superstar Edge!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Longa-46wrote on 09.03.2016:[10.0] "Edge ist einer der besten Heels, allgemein ein klasse Gesamrpacket. Grandios am Mic, seine Promos waren auch immer gut und Charisma hat er auch sehr viel. Er funktioniert als Heel sowie auch als Face einfach perfekt. Egal ob im legendären Tag Team mit Christian oder als Single Wrestler. Man muss nur mal an die Fehden mit dem Taker, Foley oder auch John Cena denken. Einfach grandios. Schade dass er zurücktreten musste, er war einer der Besten in der WWE."
Rating: 10.0
Sentiment: -0.03571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LegendaryDeadmanwrote on 02.03.2016:[10.0] "Kann meinen Vorrednern nur zustimmen.   Der (! ) perfekte Heel, dazu als Face auch gut funktioniert später.  Er ist einfach Mr. World Heavyweight Champion. Wenn man mal an die klasse Jahre um 2007 zurückdenkt.  Tolle bis unvergessliche Matches auch im Tag Team Bereich, vorallem mit Christian.  Am Mic für mich mit einer der besten aller Zeiten.  Im Ring gut, aber nicht perfekt.   Will dafür aber dennoch keinen Punkt abziehen. Er hat mich einfach über Jahre sehr gut unterhalten. Schade dass er so früh in den Ruhestand musste... Hätten noch 5-10 gute Jahre mit ihm werden können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheLoudMouthwrote on 17.02.2016:[10.0] "Edge... was soll man groß zu ihm schreiben? Neben Chris Jericho der beste Heel derzeit, den die WWE zu bieten hat. Großartige In-Ring Skills, starkes Micwork und anständige Promos. Glatte 10 Punkte. (Bewertung vom 30. 10. 2009) --- UPDATE: Sehr, sehr schade, dass Edge seine Karriere frühzeitig beenden musste. Einer der besten Heels, die ich jemals erleben durfte. Authentisch, tolles Micwork, gute In-Ring-Skills. Er hat sein Gimmick als Ultimate Opportunist wirklich perfekt rüber gebracht, war zudem auch als Face mehr als ordentlich. Danke für die tollen Wrestling-Momente, Mister Copeland!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MAGICIANwrote on 11.02.2016:[10.0] "Edge ist einer der besten Worker, der besten Heels und allgemein der besten Superstars, die die WWE je hatte. Ob im sehr unterhaltendem Tag Team mit Benoit, ob als Heel mit Lita oder zusammen mit La Familia, einfach großartig. Auch als Face konnte er glänzen. Ein tolles Gesamtpaket. Im Ring ist er ebenfalls sehr gut und einfach nur awesome am Mikrofon. Seine TLC Matches, sowie seine Fehden mit dem Undertaker, Mick Foley oder John Cena werden wohl nie vergessen sein. Auch die Ausstrahlung.... er hatte einfach alles, was man zur Spitze in diesem Business braucht. Volle 10 Punkte. Eine großartige Karriere."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Pizzafahrerwrote on 25.01.2016:[10.0] "Nenne mir einen Wrestler der durchweg alles mitbringt, was man in diesem Business braucht: The Rated R Superstar Edge! Man was habe ich Ihn immer gefeiert. Dass seine In-Ring Karriere aus und vorbei ist, ist definitiv ein Verlust.  Dafür ist die Vorfreude auf seine Network Show mit Christian um so größer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Zedwrote on 08.01.2016:[10.0] "Edge hatte eine beeindruckende Karriere. Vom Jobber aus Ontario zum Mehrfachen World Champ und Hall Of Famer.  Er zeige damals schon nach dem Split der Brood dass er Charismatisch ist und eine Menge drauf hatte. Im Tag Team mit Christian an einigen der besten Tag team Matches beteiligt, und ich meine damit nicht nur TLC Matches. Schien dann allerdings in der Midcard zu versauern und seine Karriere stagnierte etwas zwischen 2003 und 2005.  Dan kam die Fehde mit John Cena und der Aufstieg in das Main Event. Dort zeigte er als Heel wieviel Potentiel wirklich in ihm steckte.  Schade dass er sich nicht selbst sein Karriereende aussuchen konnte, jedoch scheint es ihm ohne das Wrestling auch gut zu gehen."
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: awesomepunkwrote on 03.12.2015:[10.0] "Edge war einer der besten Wrestler, den es je gab. Vom Charisma bis hin zur Leistung im Ring war er einfach Klasse und hat alle seine Rollen super gespielt. Sein gezwungener Rücktritt war ein ganz ganz großer Verlust für die WWE und für das Wrestling."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Phenomenal91wrote on 09.11.2015:[10.0] "He was a modern day legend. Very sad that it came to such a sudden and untimely end. But what a journey! From "our nuts rule all" to the Rated R Superstar, Edge had so many highs during his short but long career it's dizzying to think about. He is truly what the ideal modern day wrestler was, a 10 in all departments, capable of anything and everything in the ring. And on the mic, he could make you laugh or piss you off so badly you'd want to throw a brick at the TV just to shut him up. But it was never boring when Edge was out there, good or bad. He richly deserves his early entry into the Hall of Fame and I'm glad to see him enjoying his retirement with an acting career. Anything less than a 10 is an injustice. He was a legend in his time, and now one beyond it too."
Rating: 10.0
Sentiment: 0.128968253968254
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Der Rated R Superstar war auch einer der Besten. Edge ist eine Legende, dass er für immer aufhören musste finde ich sehr sehr schade."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jacobphillipswrote on 13.09.2015:[10.0] "had it all. good on the mic, great heel, over 30 championship reigns in wwe, excellent matches and was by far one the most entertaining stars in wwe history. his extreme spots were awesome to watch"
Rating: 10.0
Sentiment: 0.559375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: PWCwrote on 20.06.2015:[10.0] "My favorite wrestler of all-time and one of the very few I'll give a 10 to. Great look that would wear cool trench coats to the ring. Edge has done it all. Edge had sickening ladder matches with Christian in 2001. Edge won the very first Money In The Bank Ladder Match in 2005, before the match type itself hardly matters anymore. His live sex celebration with Lita in January 2006 was the most watched episode of Raw for the year. His feud with Matt Hardy in 2005 was great and there actually a GOOD reason why everyone hated Edge so much in 2006. After Lita was left go, it actually made sense why Edge was together with Vickie, and so on and so forth. Edge was the first person to create a custom belt (besides John Cena) with a cool Rated R title belt and so on and so forth. Not to mention an individual with an actual theme song with Alter Bridge. Thank you Edge! Thank you Edge!"
Rating: 10.0
Sentiment: 0.11090132090132089
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MusSanwrote on 20.05.2015:[10.0] "Bei seiner aktiven Zeit war er mein lieblings Wrestler. Schade das es seine Karrire beenden musste. Einfach eine wrestling Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jbbhammywrote on 15.05.2015:[10.0] "Amazing wrestler, great career, deserved all the World Titles he got. Still to this day, I believe, had the best Spear in the WWE. Shame he had to retire due to injuries and things. He was involved in some of the best matches of all time. His feud with the Undertaker in, I think 2008, was one of the best feuds ever and produced some amazing matches. He always delivered as a wrestler and on the mic and at one time, I truly hated him even though I knew he was good and that's exactly what you want from a heel."
Rating: 10.0
Sentiment: 0.4925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: robertothefirstwrote on 02.05.2015:[10.0] "Edge ist einfach der beste Heel Allerzeiten! Egal ob mit Lita, Vikie oder auch alleine er konnte mich immer total überzeugen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Joel DXwrote on 26.04.2015:[10.0] "Einer der Fassettenreichsten Wrestler. Sehr gut als Heel, aber auch als Face Top. Man brauch sich nur seine legendären Ladder-Matches anzugucken. Er war sowohl am Mic als auch wrestlerisch sehr gut, zudem sehr charismatisch. Er war nicht nur als Singles-Wrestler Top, auch im Tag-Team mit Christian oder mit Randy Orton konnte er überzeugen"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Viper99wrote on 20.03.2015:[10.0] "Es ist einfach so traurig das dieser Mann seine Karriere so früh beenden musste. Er war einfach ein Großartiger Entertainer! Er war ein Gesamtpaket! Er hatte Charisma, Er war Großartig am Mic, Fantastisch im Ring und wohl der beste Heel der Modern Era! Aber auch früher im Tag mit Christian hat er grandiose Matches gegen ua. Die Hardys oder die Dudleys gehabt. Edge ist so ein Wrestler der Perfekt scheint! Und meiner Meinung nach war er das auch!"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ganymedwrote on 04.03.2015:[10.0] "Positiv ist seine Ausstrahlung als Heel und seine schauspielerische Leistung. Seine Ausstrahlung hat was, seit seinen Anfängen in der Brood hat er mich in der Hinsicht begeistert. Auch seine Schauspielkunst war überragend, sei es als Comedy-Part im Team mit Christian oder als arroganter, feiger Heel. Lediglich als Face war er in der Hinsicht langweilig, aber da er meist eh als Heel unterwegs war, sehe ich darüber hinweg.  Punktabzug gibt es für seine Arbeit im Ring. Rein ringtechnisch fand ich ihn ziemlich langweilig, lediglich in seinen Anfängen als Tag Team Wrestler konnte er mich überzeugen.  Edit: Gerade mal meine Bewertungen überprüft, weiß nicht, wie ich darauf gekommen bin, Edge mit befriedigend zu bewerten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Y2J316wrote on 28.11.2014:[8.0] "Guter Wrestler und habe ihn auch immer gerne gesehen. Seine Fehde mit Cena 06 bleibt da doch im Gedächtnis hängen. Später mit Vickie kams mir zwar hoch aber trotzdem mag ich ihn. Schade das er seine Karriere vorzeitig beenden musste. Auch zurrecht in der Hall of Fame."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Muyo90wrote on 23.11.2014:[9.0] "Als Tag Team Wrestler mit Christian schon phänomenal, das wahrscheinlich beste Tag Team was die WWE je hervorgebracht hat. Seine Solokarriere hat das dann nochmal übertroffen. Trotz seiner athletischen Ausstrahlung konnte er gegen jeden Main Eventer mithalten und hat unfassbare Matches gezeigt. Zwei die mir besonders in Erinnerung geblieben sind: Das HiaC Match gegen den Undertaker und das TLC Match gegen John Cena.  Ein großartiger Athlet."
Rating: 9.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KASHwrote on 26.09.2014:[9.0] "Edge war immer ein Sonderling in der WWE Main Event Welt. Für mich war er um 2002/03 vom Standing her dort, wo er hingehört. Im Ring war er durchaus gut, Charisma ist auch auf guter Höhe vorhanden, aber irgendetwas fehlte mir bei ihm zum großen Sprung nach oben und zum vollem Anerkennen der Seriösität. Allerdings bietet das Wrestling das Potenzial, dass nicht immer "der beste" der Champion wird, sondern es auch der trickreichste sein kann. Das "Ultimate Opportunist"- Gimmick hat ihn dann doch noch zum perfekten Main Event Charakter gemacht. Einen wie ihn wird es dann doch lange nicht mehr, vielleicht auch überhaupt nicht mehr geben (Da nur noch mono World title vorhanden)."
Rating: 9.0
Sentiment: 0.1111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: 8BitLegendwrote on 21.09.2014:[8.0] "Edge ist ein super Typ und hatte eine vergleichsweise kurze, dafür sehr bemerkenswerte Karriere. Unterm Strich fand ich ihn ein klein wenig overpushed. In der Liga eines Shawn Michaels oder Undertakers habe ich ihn nicht gesehen, allerdings war er teils sogar erfolgreicher in den 2000er als die beiden genannten. Es ist schade für uns Fans, dass er so schnell aufhören musste, aber gut für ihn, dass er rechtzeitig die Reissleine gezogen hat."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DolphRyderHawkinswrote on 16.07.2014:[10.0] "Absolutely Incredible Wrestler Maybe The Best I EVER SEEN I Think All The Titles He Won Were Deserved"
Rating: 10.0
Sentiment: 0.95
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: zackwoowoowooryderwrote on 22.04.2014:[10.0] "Für mich einer der besten die je in diesem Business aktiv waren. Seine In-Ringqualitäten sind unbestreitbar, aber auch am Mic eine Legende, fand ihn immer sehr lustig und unterhaltsam, egal ob als Heel oder als Face. Eine Szene die ich nie vergessen werde, war die Szene, wo er zusammen mit Jillian am Glücksrad "Right Round" von Flo Rida singt, eine richtig lustige Szene. Leute wie Edge gibt es nicht zweimal, jemand der sich so für die WWE eingesetzt hat und auch junge Talente gefördert hat, aber ist trotz seiner Erfolge immer auf dem Boden geblieben ist und dafür respektiere ich ihn."
Rating: 10.0
Sentiment: 0.042857142857142844
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Edge and Christianwrote on 20.04.2014:[10.0] "Langsam aber sicher gehen die großen Stars der WWE und man muss hoffen das die WWE wieder ein paar Talente findet und auch fördert.  Edge war genial.  Ob als Tag Team mit Christian, das mein Lieblingsteam war, als Heel wo er mir außer mit Vickie damals immer gut gefiel oder als Face wo er z. B. gegen Del Rio die Fans mit Christian auf seine Seite zog und einfach nur irre lustig war.   Ich fand es damals echt schade, dass er aufgehört hat und es ist wohl bezeichnend was an ihm verloren ging, wenn ich sage, dass ich wenige Monate später aufgehört habe Wrestling zu schauen.  Jetzt nach drei Jahren Abstinenz vom Geschehen schaue ich wieder vile seiner alten Matches und hoffe, dass er wieder einige Auftritte, z. B. als Host, Kommentator oder Manager hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Klinsi89wrote on 10.02.2014:[10.0] "Dieser Typ hatte einfach verdammtes Charisma. Wusste mich immer zu überzeugen und war lange Zeit mein Lieblingswrestler. Durfte auch ziemlich viele Erfolge feiern: Royal Rumble, King of th Ring, Money in the Bank und diverse Titel als Single und Tag Team Wrestler."
Rating: 10.0
Sentiment: -0.07142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RepoManwrote on 10.01.2014:[6.0] "Für mich absolut überbewertet, klar er ist ein Allroundtalent vorallem am Mic, nur wurde das Gimmick schnell nervig."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: edge4everwrote on 25.12.2013:[10.0] "Mich wundert es nicht das Edge leider seine Karriere beenden mußte bei den Spots die er gezeigt hat. Er ist und bleibt mein lieblings Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ratedrkowrote on 25.12.2013:[10.0] "The Ultimate Opportunist, der wohl beste Wrestler, der jemals in der WWE gearbeitet hat!  Er wurde soviele Jahre lang unterschätzt und es hat es später allen gezeigt!  Edge war mit einer Leidenschaft beim Wrestling wie kaum ein anderer!  In jedem Match hat er alles gegeben, selbst Wrestler mit schlechten Skills konnte er zu Höchstleistungen treiben.  The Rated R Superstar hatte einfach das Gesamtpaket. Grandiose Promos, Storys und Matches!  Wenn dieser Mann keine 10 Punkte verdient hat, dann hat es sicherlich keiner.  Ein unglaublicher Verlust für die Wrestlingwelt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: yanuswrote on 15.12.2013:[5.0] "Edge is a wrestler, who I have real problems to properly rate. Good look, but a poor physique. Good on the mic, but also declined drastically in that regard in the last years of his career. Charismatic, but his mimic and expressions were sometimes ridiculous. Average at best in the ring - only very good in hardcore or gimmick matches. Overall,  Edge has as many positives as negatives, so a 5 rating appears to be fair."
Rating: 5.0
Sentiment: 0.28844444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: tgwrote on 26.11.2013:[10.0] "Edge ist jemand, den man in Anbetracht der aktuellen WWE-Shows einfach nur vermissen kann. Bis 2005 bzw. Anfang 2006 hatte ich persönlich nicht einmal die größte Ahnung, was in diesem Mann schlummert. Mit seinem damaligen Titelgewinn gegen Cena und allem, was in den folgenden Jahren um und mit diesem Mann in den Shows passierte, avancierte er aber schnell zu einem meiner All-Time-Faves im Mainstream-Wrestling. Überragender Heel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Undertalkerwrote on 11.11.2013:[10.0] "Schade, dass er seine Karriere so plötzlich beenden musste! Er war ein Komplettpaket! Auch wenn er in seiner Beliebtheit nie an die ganz ganz großen des Business herangereicht hat, war in Edge doch, egal ob es um Charisma, In-Ring-Skills, Micwork oder Staraura geht, einfach alles zu finden. Er war ein in seinem gesamten Auftreten einzigartiger Worker, der nach seiner verkorksten Rückkehr im Jahr 2004, etwa ein Jahr später als Rated-R-Superstar, das für ihn passende Gimmick fand. In diesem konnte er seine Stärken vollstens ausleben und uns unvergessliche Momente und Matches bescheren. Am stärksten wird mir wohl für immer die Zeit bei Smackdown in Erinnerung bleiben, in der er seine wöchentlichen Intrigen rund um General-Managerin Vickie Guerrero spann und so ständig versuchte, das für ihn Günstigste herauszuholen. Für mich war dies die beste Charakterzeichnung seiner Ultimate-Opportunist-Attitüde."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Daneraswrote on 03.11.2013:[9.0] "Ich habe ihn nicht gemocht. Aber ehrlich, seine Gimmicks waren nicht langweilig! Sondern spannend! Ich habe mich ab und zu wegen ihn aufgeregt. Er hat uns gute Unterhaltungen gegeben. Er kämpfte auch sehr schnell, und hatte viel technisch darauf! Er hüpfte auch gut, und war flink! Schade für seine Karriere. Ich hoffe, er kann trotzdem weiterhin im Wrestling mitwirken, bsp. als Coach, oder was auch immer. Viele können sicher von ihm viel lernen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ProRedstonewrote on 02.11.2013:[10.0] "Als Heel und als Face einfach großartig, einer der bester Worker die es je gab ...."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheWALLwrote on 27.10.2013:[10.0] "Ohne ihn wäre ich kein Wrestling Fan. Er hat mir gezeigt das Wrestling der beste Sport der Welt ist. Un dafür bekommt er 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: WCW Foreverwrote on 19.10.2013:[10.0] "War ein ganz großer der in jeder Rolle zu überzeugen wusste, sehr schade das er nicht mehr in den Ring kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jun Kasaiwrote on 14.10.2013:[10.0] "Guter Wrestler mit viel Charisma und enormem Talent am Mikro, der zu fast jedem Zeitpunkt seiner beeindruckenden Karriere zu überzeugen wusste: Ob im genialen Team mit Christian, seiner Zeit als Midcarder oder später im Mainevent. Ein großer Verlust für die Wrestlingwelt und ein würdiger Hall of Famer."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: goofy1991wrote on 12.10.2013:[10.0] "Für mich das volle Paket: am Mic extrem stark, viel Charisma, gut im Ring, sowohl im Tag-Team als auch als Singleswrestler. Leider musste er seine Karriere viel zu früh beenden."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: koeddylaemmlewrote on 19.09.2013:[9.0] "A simply amazing career cut far too short, but when you give as much as Edge gave on a weekly basis you'd be pretty freakin' messed up too. Edge left us with so many memorable moments and will always be remembered fondly by fans even though a large majority of his success came as a smug heel."
Rating: 9.0
Sentiment: 0.26642857142857146
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "War mein Lieblingswrestler bevor er aufgehört hat, alleine schon das Match gegen Mick Foley ist schon eine 10 Wert, einer der besten Heels den die WWE jemals hatte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[10.0] "Vom Tag Team Champion über diverse IC-Titelgewinn in den Wrestling-Olymp. Was er erreicht hat, macht so schnell niemand nach, auch wenn die Gürtel in der WWE immer weniger wert erscheinen, so glänzt Edge mit einem Royal Rumble Sieg, dem erfolgreichen Einlösen des ersten Money-in-the-Bank-Koffers sowie dem Sieg des KotR-Turniers! Zu Recht ein Hall-of-Famer!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: HighlightHEELwrote on 20.08.2013:[10.0] "Mein absoluter Liebling zu meiner Zeit als Mark. Auch danach noch mein absoluter Liebling. Und, nebenbei, mein All-Time-Fave. Im Ring ganz oben dabei. Sein Rated-R/Ultimate Opportunist Gimmick ist vermutlich mit das Beste der neueren Zeit. Ach ja, zu seiner besten Zeit war er der absolut beste Heel im Business. Als Face immer noch gut, aber niemals so überragend wie als Heel. Sehr gute Fehden, z. B. gegen John Cena. Eine geniale, gegen den Undertaker. Sein Micwork in seiner Hochzeit ist eines der wenigen, was für mich an Chris Jericho (mein Mic-Fave) dran kommt. Leider in der Spätphase seiner Karriere durch seinen verdammten Nacken ein wenig eingeschränkt. Nach seinem Rücktritt hat mich erst der "Summer of Punk" wieder dazu gebracht, WWE zu gucken. Edge, I still miss you!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Palace of Wisdomwrote on 14.08.2013:[10.0] "Edge. Einfach nur Edge. Er spielt für mich in einer Liga mit den größten. Dieser Mann hat mir so viele wunderbare Wrestling Erinnerungen geschenkt und meiner Meinung nach, immer alles gegeben. Sein Karriereende kam viel zu früh und er fehlt mir noch heute. Im Ring und am Mic über jeden Zweifel erhaben. Einer der besten Heels aller Zeiten und jemand dem man die Liebe zum Wrestling immer geglaubt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: gil3boywrote on 11.08.2013:[10.0] "Great wrestler and mic talker, he was one of the guys that put their bodies on the line the most. He deserves every title he won! LEGEND"
Rating: 10.0
Sentiment: 0.7125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Chris1201wrote on 06.08.2013:[10.0] "Mein All-Time Favourite! Zurecht! Ein sehr guter Wrestler mit sehr guten Mic Fähigkeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Boris The Menacewrote on 20.07.2013:[5.0] "I just never understood what wrestling fans found in Edge, an average worker at best that has no place in any Hall of Fame out there."
Rating: 5.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sir Vida Loca IIIwrote on 07.07.2013:[6.0] "Meiner Meinung nach einer der überschätztesten Wrestler der letzten Jahre. Am Mic war er zwar immer sehr unterhaltsam, im Ring war er jedoch höchstens durchschnitt. Allein die ganze TLC und Ladder Matches welche Edge gerne zugesprochen werden, wenn man sich dies anschaut sollte man mal drauf achten, er bekommt immer am wenigsten ab. Natürlich ist dass schlau von seiner seite aus, auf der anderen darf man ihn zumindest in diesen Klassikern dann aber keinen zu großen Lob zukommen lassen, weil er absolut austauschbar gewesen wäre."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: alsdncjswo34wrote on 04.07.2013:[10.0] ""Langsam aber sicher gehen die großen Stars der WWE und man muss hoffen das die WWE wieder ein paar Talente findet und auch fördert. Edge war genial. Ob als Tag Team mit Christian, das mein lieblings Tag Team war, als Heel wo er mir außer mit Vickie damals immer gut gefiel oder als Face wo er z. B. gegen Del Rio die Fans mit Christian auf seine Seite zieht und einfach nur irre lustig ist. Ich finde es schade das er aufhört aber es ist besser als das wir ihn in einem halben Jahr im Rollstuhl sehen. Ich hoffe das er einen Platz hinter den Kulissen oder auch als Kommentator oder so bekommt damit er uns allen erhalten bleibt. Edge I miss you! ""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Valerionwrote on 14.06.2013:[10.0] "Edge ist das totale Package! Er kann wrestlen, hat einen guten Körper und war ein Gott am Mikrofon und des Schauspiels.  Mein absoluter All-Time-Favourit! Hat bewiesen das man es entgegen der Meinung aller mit dem 100% Willen bis an die Spitze schaffen kann! Der Rücktritt war ein schwarzer Tag in der Geschichte des Wrestling! Thank you Edge!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DaNiwrote on 13.06.2013:[7.0] "Ein Superstar der die neue Ära sicher prägte. Seine Laddermatches waren grandios, auch seine Fehden gegen John Cena und die Soap um Lita waren gut verkauft. Leider mag ich Edges In-Ring Stil nicht besonders. Der Stil ist eigenartig und besonders aber eben nicht meins. Mit guten Kontrahenten hat er dennoch sehr unterhaltsame Matches abgeliefert."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Lecterwrote on 06.06.2013:[8.0] "Very good promo, very charismatic, very into his role. Had good matches on occasion, but a pretty weak moveset and some soft-looking offense. Still carved out a great career for himself."
Rating: 8.0
Sentiment: 0.44785714285714284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: PercyWatsonwrote on 22.05.2013:[10.0] "Klasse im Ring und am Mic. 2007/2008 bin ich angefangen Wrestling zu schauen, Edge in der Fehde gegen den Undertaker war wohl der Hauptgrund es weiter zu verfolgen. Schade das er seine Karriere beenden musste. Vielleicht kommt er irgendwann als GM oder in anderer Rolle zurück. Ich würde mich freuen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheIbarwrote on 03.05.2013:[10.0] ""Thank you, Edge! " For me Edge is the greatest professional wrestler of all time. When I was a kid, I saw him on WWF SmackDown TV Show in 2000 (and that was extremely awesome to become a fan of professional wrestling in Russia when pro-wrestling wasn't as global as now) and from the first show I've seen to WWE WrestleMania 27 he made me proud of being a professional wrestling fan. And it's so awesome that I caught Edge and Christian times, because that was the funniest, the most entertaining, simply one of the best teams in wrestling history. Edge has provided so many brilliant and fantastic moments and matches along with Christian, The Hardy Boyz, The Dudley Boyz, Lance Storm, Rhyno, Owen Hart, Michael Hayes, Gangrel, Test, William Regal, APA, Kurt Angle, Chris Jericho, Chris Benoit, Eddie Guerrero, Vickie Guerrero, Randy Orton, Ric Flair, Shawn Michaels, Mick Foley, Batista, The Big Show, Kane, The Undertaker, Rob Van Dam, Rey Mysterio, John Cena, Lita, Triple H, Jeff Jarrett, Dolph Ziggler, Alberto Del Rio, Curt Hawkins, Zack Ryder. His charisma, his in-ring abilites, his mic skills, his truly Rated R actions, his rivalries, his passion for this business, his work rate, his cutting-edge promos, his matches – all of these made Edge what he is today – one of the greatest Hall Of Famers in the history of this industry. Words can't describe how perfect this man is for me. I just want to thank him for his illustrious career in WWE."
Rating: 10.0
Sentiment: 0.48333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: believeintheshieldwrote on 02.05.2013:[10.0] "Er hat mir im Ring richtig gut gefallen und hat seine Rollen immer voller Elan gespielt. Vor allem im Tag Team mit Christian hat er mir gut gefallen Meiner Meinung nach hat er sich 10 Punkte verdient"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Mountiewrote on 01.04.2013:[10.0] "Edge hat im Ring nicht die Extraklasse eines Michaels, eines Angle, eines Danielson erreicht, noch hatte er die körperlichen Voraussetzungen, die ihm eine Riesen-Karriere garantiert hätten. Als Gesamtpaket war er aber eben doch eine Klasse für sich. Er hat mit vollem Körpereinsatz jeden Charakter, den er hatte, zum Leben erweckt und mit dem als Rated-R Superstar seine Vollendung erreicht, die ihm auch eine vollendete Karriere bescherte. Er hat alles erreicht, was es zu erreichen gab - und dabei immer Freude bereitet. Das frühe Karriere-Ende hat ihm einzig die Phase genommen, in der er wie Michaels oder der Taker um seinen eigenen Mythos ein umjubeltes Alterswerk hätte aufbauen können. Schade, aber nicht zu ändern. Danke, Edge."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: sebi7wrote on 28.03.2013:[10.0] "schade das er nicht mehr aktiv ist ein unglaublich charismatischer typ ist das und den spear beherrscht niemand so glaubwürdig wie er"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Epischer Namewrote on 20.03.2013:[10.0] "Einer meiner absoluten Lieblingswrestler. Er hat einfach alles :Das aussehen, das Charisma und natürlich konnte er mich einfach sehr gut unterhalten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Eagle Whiskeywrote on 06.03.2013:[4.0] "Pluspunkte gibt es für sein wrestlerisches Können. Minuspunkte für seine Angsthasen Gimmicks mit Vickie G. Ebenso für seine gesamte Person. Seine Performances am Mikrofon sind ohne Emotionen und gähnend langweilig. Seine Schauspielerischen Fähigkeiten sind gleich Null, seine Rollen spielt er dementsprechend unglaubwürdig. Für mich ein total überschätzter Wrestler."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jack Slaterwrote on 02.03.2013:[10.0] "Einer der wenigen die mich sowohl als Face als auch als Heel zu überzeugen wissen. Da ich eigentlich eher der Fan von Heels bin und Edge da wohl einer der besten überhaupt ist, seine In Ring Performances auch immer gut waren, sein Charisma sowieso genial ist und er auch am Mic was kann. There you go 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Diggertakerwrote on 14.02.2013:[9.0] "Great heel, great tag, great career, great move-set. But I think Spear doesn't fit him... maybe as a secondary move and almost a finisher like Triple H's spinebuster..."
Rating: 9.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated R means Attitudewrote on 03.02.2013:[10.0] "Absolut genialer Mann hat über seine ganze Karriere hinweg keinesfalls gelangweilt, und immer gute Matches gezeigt. Dazu noch einige sehr sehr starke Fehden gehabt. Zum einen gegen Cena, gegen Matt Hardy und natürlich gegen Undertaker. Aber auch die Tag Team Matches mit Christian waren absolut stark. Die TLC Matches gegen die Dudleys und die Hardys sind heute noch absolute Lieblingsmatches von mir. Musste seine Karriere ja leider viel zu früh beenden. Allerdings wäre er meiner Meinung nach in einer anderen On-Air Rolle durchaus gut aufgehoben. Sein Mic-Work ist nämlich ebenfalls weltklasse."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: HeelJenniwrote on 05.01.2013:[10.0] "Eine Legende an den man sich in der Wrestling Welt auch noch in ein paar Jahren erinnern wird. Ich war immer ein sehr großer Fan von ihm, egal ob als Face oder Heel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Yoyowrote on 21.11.2012:[10.0] "With dedication, passion, and tons of hard work, the Rated R Superstar left his mark in the world of wrestling, specially during the brilliant last five years of his career."
Rating: 10.0
Sentiment: 0.1930952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tobi23wrote on 05.11.2012:[10.0] "Für mich auf einer Stufe mit dem Undertaker! Als Face und als Heel überzeugend, technisch und charismatisch weltklasse, am Mic eine Grante. Einer der Besten der letzten 10 Jahre!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JuliTheCage87wrote on 28.10.2012:[10.0] "Immernoch einer meiner Lieblinge auf ewig. Im Ring wie am mic sehr gut, aber seine Ausstrahlung und die Gimmicks haben ihn zu dem gemacht, was er schlussendlich war: perfekt. Er hatte auch immer die richtigen Partner/Manager/Begleiter, sei es Lita, Vickie oder der andere Teil des besten TagTeams der WWE-Geschichte, CHRISTIAN."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LM Punkwrote on 30.08.2012:[10.0] "Ein top Entertainer der letzten Jahre. Sein Verlust ist heute noch bemerkbar in der WWE. Das Loch das er hinterlies ist noch nicht geschlossen, Er hatte doch sehr gute Feden die die WWE-Shows intressant gemacht haben. Bei ihm stimmte immer die Action im Ring, die Promos, einfach ein super Gesammtpaket."
Rating: 10.0
Sentiment: 0.3111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Hankinswrote on 22.08.2012:[10.0] "Ich glaube der unumgängliche Rücktritt hat seinem Legendenstatus sehr gut getan. Er ist in einer Zeit abgetreten, wo er auf dem Zenit seines Leistungsvermögens war und somit bleibt er bei Fans als fantastischer Wrestler und Entertainer in Erinnerung. Ich habe ihn wirklich gerne gesehen und hoffe, dass er seine "Rente" genießt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: dudemanbearpigwrote on 18.07.2012:[10.0] "Edge is easily one of the best wrestlers of the past decade, having been involved in many memorable matches and storylines. But the best thing about him is how he evolved throughout his career. He went from pseudo-Goth midcarder to comedy tag team wrestler to smiling pretty boy babyface to Rated R Superstar to respected veteran. It's a shame his career had to end when it did, but it was an amazing career."
Rating: 10.0
Sentiment: 0.44814814814814813
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Franziwrote on 03.07.2012:[9.0] "Absolut einer der Besten. Schade, dass seine Karriere so früh zu Ende ging."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: VanderVaartwrote on 27.06.2012:[9.0] "Schade, dass seine Gesundheit nicht mehr mitmacht. "Glücklicherweise" erst kurz nach Wrestlemania.  Am Mic und im Ring eine feste Größe. Verdient erarbeitet hat er es sich durch spektakuläre TLC-Matches. Edge ist einmal durch einen Drogentest gefallen. Danke MITB schaffte der "Ultimate Opportunist" es als Heel an die Spitze und nutzte dann seine Chance auch. Edge hätte viel mehr Geld mit Filmen verdienen können, aber er lehnte zum Glück ab. Legendär sein grandioser Auftritt im "Mind of Mencia" 2006 als Kommentator im "The Royal Religious Rumble"."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Axel Browdywrote on 26.06.2012:[10.0] "Einer der besten Wrestler der jeh in einem WWE Ring stand, zu dem finde ich er ist verdient in der Hall of Fame gelandet. Er ist einfach mein Lieblingswrestler, und meiner Meinung nach ist er einer der größten, und besten Wrestler die es in der WWE gab!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: alewrote on 24.04.2012:[10.0] "Es gab eine Zeit früher als ich 12 oder 13 war, eigentlich noch totaler Mark und alle haben Edge gehasst, nur ich fand ihn immer richtig gut. Ob als Face oder Heel, den er am besten verkörpert, Edge bringt alles für einen Top Main Eventer mit. Seine In- Ring Skills waren immer gut, nur noch getopt von seinen sagenhaften Promos, meiner Meinung nach, mit Chris Jericho und CM Punk der beste Micworker in den letzten 10 Jahren (Rocky und SCSA mal ausgenommen). Edge war einfach mein Alltime Favorite und mir hats wirklich Tränen in die Augen trieben, als er seine Karriere beenden musste (Damn ninjas cutting onions). Zusammengefasst mehr als verdiente 10 Punkte."
Rating: 10.0
Sentiment: 0.14166666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Prodirwrote on 24.04.2012:[10.0] "Edge ist seiner Linie treu geblieben, er hat sich seit seinem Debüt kaum verändert, was Wrestling-Stil, Promo-Stil, aber auch Rafinesse und Verstand angeht. Auf diesen Worker war immer Verlass, auch in schlechten Zeiten, denn einen Stich konnte er immer setzen. Sei es Extreme, ein Showstealer, ein Schocker oder eine Überraschung. Ohne Edge wäre die WWE nicht da, wo sie bis kurz vor 2012 stand. Seine Promos sind immer dann gut, wenn sie gut sein sollen. Steht er vor dem match of the Year, dann liefert er auch ein Match of the Year. Egal, ob Heel oder Face, seine Promos, seine Mimik, seine Gestik, sein Handeln zieht immer irgendeine Reaktion, und wenn er schon welche erhält, dann massiv. Er mobilisiert und war bisher das größte mediale und unterhaltende Zugpferd der WWE. Seine Karriereende kam dazu abrupt, doch gebührlich verabschiedete man ihn und gibt ihm nun 10 Punkte."
Rating: 10.0
Sentiment: -0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: xirxes69wrote on 08.04.2012:[10.0] "One of the most entertaining superstar in this decade, especially when he was a heel.  I will put him in top 50 wrestler of all times .. and top 10 heel of all times"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: NoHomewrote on 20.03.2012:[9.0] "Zu seiner aktiven Zeit einer der besten und spektakulärsten Wrestler der WWE. Super Worker am Mic absolut solide. Schade das er seine Karriere beenden musste."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kid Rockwrote on 09.03.2012:[10.0] "Edge hatte ohne jeden Zweifeln eine der wohl abwechslungsreichsten und komplettesten Karrieren in der jüngeren WWE-Vergangenheit, brachte mit jeder Rolle die er im McMahon-Imperium darstellte, ob als nerdiger Comedy-Heel im E & C-Gespann, unberechenbarer Psycho-Heel, oder in seiner Paraderolle als Ultimate-Opportunist, einen enormen Unterhaltungswert mit sich und sorgte auch innerhalb des Seilgevierts, wenn auch nicht auf Weltklasse-Niveau, für konstant starke Kost. Mich hat der Mann jedenfalls schon immer begeistern können, auch wenn nicht jede Phase seines WWE-Runs nach Plan verlief (allen voran der substanzlose als konturloses Babyface nach seinem Comeback 2004). Schließlich fand er 2006 als Rated-R-Superstar seine beste Rolle, sorgte mit fantastischen Fehden gegen Mick Foley, John Cena, Shawn Michaels etc. für großartiges WWE-TV ehe seine Karriere den qualitätstechnischen Höhepunkt in seinem Run als Top-Heel von Smackdown 2007 und 2008 und der Fehde gegen den Undertaker fand. Seine Risikobereitschaft und sein Einsatzwille die uns schließlich die unvergesslichen TLC-Kämpfe zur Jahrtausendwende brachten, bleiben dabei fast schon eine Randnotiz. Sein zwangsläufig daraus resultierendes Karrierende ist tragisch, keine Frage, aber die vom charismatischen und unendlich talentierem Kanadier gezeigte Vernunft, sich für seine Gesundheit zu entscheiden und seine großartige Karriere dafür zu beenden, macht ihn für mich sogar noch sympathischer als vorher. Die HOF kann kommen!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Marlowewrote on 20.02.2012:[10.0] "Hat mir als Heel am besten gefallen, ich habe ihn gehasst. Schade, dass er aufhören musste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Icebreakerwrote on 23.12.2011:[10.0] "Der Rated R Superstar ist einer DER Topathleten der WWE. Bei ihm stimmt einfach alles: der Look, der In-Ringskills, das Micwork etc. Es macht einfach Spaß diesem Mann zu zu sehen, man sieht ihm seine Leidenschaft fürs Wrestling einfach an. Ohne ihn wäre die WWE bei weitem langweiliger. Sympathisch und cool kommt er daher und überzeugt sowohl als Face als auch als Heel, als Einzel- oder Tagwrestler. Als Heel sucht er natürlich seines gleichen und nur wenige können sich mit ihm messen, aber mich störte einfach das er in den letzten Tagen als Heel zu wenig zeigen durfe. Seine Titelverteidigungen waren ständig nur DQs, Edge durfte in den letzten Monaten als Heel einfach zu wenig zeigen, deswegen freue ich mich jetzt das er Face ist. Doch mir ist es egal was er ist, er fasziniert einfach. Einer meiner absoluten Lieblingswrestler."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: EnemyOfJusticewrote on 04.12.2011:[10.0] "Als Heel habe ich ihn in meiner Markzeit so gehasst, das soll schon was heißen. Hatte seine beste Zeit mit der "Familia", aber vorher und auch nachher immer ein Einschaltgrund. Ich denk, man braucht nichts mehr über die außergewöhnlichen Qualitäten Adams zu sagen. Thank you, Edge... Adam Copeland! Ich vermisse ihn wirklich und wünsche ihm noch ein schönes Leben und würde es begrüßen, wenn er häufiger mal die WWE besucht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Teekaywrote on 27.10.2011:[8.0] "Ist leider aufgrund seines Gimmicks oft unter seinen Möglichkeiten geblieben. War aber ein Klasse Heel."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheCMMizNexuswrote on 06.10.2011:[10.0] "Im Ring stark, Charisma ohne Ende und stark am Mic dazu : 10 Punkte"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MaikBaaderwrote on 23.09.2011:[7.0] "Guter Wrestler mit einigen wirklich guten Matches. Als Single Wrestler gut, allerdings fand Ich Ihn als Tag-Team Wrestler doch besser. Ändert aber nichts daran, dass er sein Job als Singles Wrestler gut rübergebracht hat. Schwanke zwischen 7 und 8 (7. 4 P). Da dies hier nicht möglich ist runde Ich mal ab."
Rating: 7.0
Sentiment: -0.07142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DanielBryan1986wrote on 22.09.2011:[10.0] "Edge sah ich bereits seid seiner Tag Team Zeit mit Christian. Mir gefielen die TLC Matches zwischen den Dudleys, E&C und den Hardys nur bedingt. Als sich das Team E&C trennte dachte ich alles klar Midcarder. Allerdings in der Fehde mit Kurt Angle überzeugte er mich ebenfalls. 2004 und 2005 war eher der schleichende Main Event Aufstieg der leider nach dem MITB Einlösung durch Over Cena beim Rumble gestoppt wurde. 2006 wurde dann doch noch sein Jahr. Für mich ein Allrounder der einfach in der WWE ein großes Loch hinter lässt."
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rey2004wrote on 05.09.2011:[10.0] "Top Superstar - Sehr guter Team Wrestler noch bessere Singles Wrestler. Glaubwürdiger Main Eventer ob Heel oder Babyface. Auf einer Stufe mit den Allerbesten!"
Rating: 10.0
Sentiment: 0.35416666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated R Punkwrote on 04.09.2011:[10.0] "Als Heel war er einfach genial! Die Story damals gegen den Undertaker ist für mich Legendär! Edge hat einfach auch lange das SmackDown Roster getragen als Heel und mit ihn wurde es NIE langweillig! Auch als Face konnte er überzeugen (abgesehen von dieser Spear! Spear! Spear! Sache, die hat mich extrem aufgeregt) Edge hat sich auch wirklich hochgearbeitet vom Tag Team Wrestler zum dauer Main Eventer (nenn mir einen Wrestler der sich wirklich so hochgearbeitet hat) Am Mic rockt er extrem und auch seine Ring Skills sind für WWE Verhältnisse gut."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CM Punk und Edgewrote on 26.08.2011:[10.0] "Mit Punk mein absoluter Lieblingswrestler. Es gab einfach nichts was er nicht konnte, ich habe mich immer gefreut wenn er zu sehen war, denn dann hieß es: klasse Promos und/oder starke Matches. Ganz klare 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: swaswa96wrote on 22.08.2011:[10.0] "Einer der schmerzvollsten Verluste der WWE in den letzten Jahren. Er wird bestimmt mehr vermisst werden als Batista oder Chris Jericho."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: GTS Punkwrote on 16.08.2011:[10.0] "Besser geht es nicht. Sei es Mic-Work, In-Ring Qualität oder Unterhaltingwert.  Die WWE hat einer der besten Wrestler aller Zeiten verloren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Wuschl 85wrote on 16.08.2011:[9.0] "Ich finde seine Rolle als Heel einfach nur genial. Sein Micwork ist erste Sahne und momentan ist er für mich so ziemlich der interessanteste Worker im Kader der WWE. Edge konnte mich schon früher mit seinen tollen TLC-Matches begeistern (vor allem auch im Tag-Team mit Christian). Die Rolle des Heel passt zu ihm, schon allein auf Grund der wahren Tatsache mit Lita und Matt Hardy. Seine wrestlerischen Skills sind unbestritten hochwertig aber ich denke auch noch etwas ausbaubar. Ich sehe in ihm noch viel Potential wenn ich z. B. das Match von WM 22 sehe, außerdem ist er immer für eine Überraschung gut. (siehe Vickie Guerrero) Ich gebe mal 8 Punkte, da er noch viel ungenutztes Potential hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tribbel Eitschwrote on 14.08.2011:[9.0] "Ich fand Edge in der Rolle als Face okay. Nicht schlecht, schließlich konnte er ein Match stets spannend gestalten, hatte Charakter und Persönlichkeit und stellte dementsprechend gute Promos auf die Beine. Komplett begeistert hat er mich jedoch als Bösewicht, da war er meiner Meinung nach stets einer der besten seiner Zunft. Sein vorzeitiges Karriereende ist schade. Die Entscheidung war vom gesundheitlichen Standpunkt aus jedoch absolut richtig."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: WWE4evermaybewrote on 12.08.2011:[9.0] "Der Rated-R-Superstar weiß, wie man die Leute unterhält. Seine MitB-Cash-Ins waren mega. Seine Fehden gegen Cena und Taker waren göttlich. Und natürlich seine Promos, vor allem die des Psychos Edge, einfach unnachahmbar. Punktabzug gibt es, weil er mir als Face überhaupt nicht mehr gefallen hat. Außerdem sind seine Ring-Fähigkeiten auch nicht die volle Punktzahl wert, aber trotzdem, er fehlt der WWE. Vielleicht gibt es doch noch Hoffnung auf ein Comeback. Never Say Never."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Brainbreakerwrote on 04.08.2011:[9.0] "War ohne Frage einer der absoluten Top-Stars der Liga und ein perfekter Heel, wenn er gerade einmal Psycho-Edge sein durfte, was jedoch nur selten vorkam. Stärkste Phasen waren die Zeit kurz vor seiner Verletzungspause, als er schon am Mainevent kratzte und mit Rey, Angle und co regelmäßig Topmatches zauberte; dann als Ultimate Opportunist in einer Dauerfehde gegen Cena 2006 und in der Story gegen den Taker 2008.  Seit seiner Rückkehr Ende 10 war Edge ein wenig im Leerlauf eingefahren und konnte mich als Face nicht sonderlich überzeugen, wenngleich er immer ein Garant für gute Matches war. Insgesamt ein Superstar, der sich eine zukünftige HoF-Aufnahme redlich verdient hat. Für ne glatte 10 mangelte es ihm an schauspielerischer Wandelbarkeit, die dann einen HBK, Jericho oder Rock doch noch weiter abheben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The last Outlawwrote on 02.08.2011:[8.0] "Also, zu Edge muss ich sagen, das er für mich Persönlich einer der Besten Heels war, die Fehde mit dem Undertaker war spannen und vorallem unterhaltsam. Ich habe mich jedesmal geärgert wo er mit La Familia rauskam und den Taker alles mögliche in den Weg gestellt haben. Schade und traurig, das er seine Karriere beenden musste. Dafür war sein Abschied schön."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Darkiwrote on 29.07.2011:[10.0] "Schade das er seine Karriere so früh Beenden musste. Er war wirklich ein sehr guter Wrestler. Vor allem in der Fehde mit den Undertaker hat er besonders geglänzt. Wo er am ende den Psycho gespielt war einfach nur genial. Und im Ring war er sowieso immer sehr sehenswert.  Wirklich schade, er hat auf jeden Fall ein großes Loch hinterlassen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Michael Shawn Hickenbottomwrote on 29.07.2011:[10.0] "Ich ziehe den Hut vor Edge (ebenfalls wie vorm Undertaker^^) . Aber er hat sich in über 12 WWE Jahren zu einem der besten Superstars entwickelt. Sein Karriereende erschütterte jeden Wrestlingfan."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JohnOlafBlackwrote on 26.07.2011:[10.0] "hat für mich eine Ära geprägt, super am Mic, super Charisma, Matches waren nie langweilig mit ihm im Ring!"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: tosi82wrote on 23.07.2011:[10.0] "Seine ganze Karriere ist einfach nur 10 Punkte wert. Allein was für Matches er hingelagt hat, vs Taker vs Jeff vs Foley, ... dazu kommen noch Klasse TLC & Tag Team Matches. Am Mic als Heel ist er einer der beste, aber auch als Face macht er sich gut. Er gehört in die Hof!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: NHJ2102wrote on 11.07.2011:[10.0] "The Rated R superstar... ein unglaublich guter Wrestler! Am Mic auch sehr unterhaltsam, genial storylines gefiel mir als single Wrestler bedeutend besser als beim Tag Team wobei da auch begnadete Matches abgeliefert wurden.. schade das er aufhören musste"
Rating: 10.0
Sentiment: -0.07142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Orton7wrote on 26.06.2011:[10.0] "Edge ist einer der besten Heels aller Zeiten... Ich bin mal gespannt, wie er sich als Face nach seiner Rückkehr schlägt... EDIT: Volle Punktzahl bleibt auch nach seinem Karrierende... Ein ganz Großer ist von der Bühne verschwunden und ein herber Verlust für die Wrestlingwelt...."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Donald Duckwrote on 23.06.2011:[9.0] "Als Heel war er einfach göttlich am Mic. Da kann man sagen was man will. Einer der besten aller Zeiten. Als Face dagegen, war er einfach nur miserabel."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: nVVo-Fanwrote on 12.06.2011:[4.0] "Total überschätzt finde ich. Im Ring hat er mich enorm gelangweilt. Einzig am Mic war er ganz passabel."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kraeschwrote on 25.05.2011:[10.0] "Ein kompletter Wrestler / Superstar. Super am Mic. Super Mimik. Super im Ring. Dazu an einigen der denkwürdigsten Spots und Matches zumindest der WWE Geschichte beteiligt. Finde es toll, dass er als WHC Champion abtreten durfte, denn er hat es absolut verdient! THANK YOU Edge."
Rating: 10.0
Sentiment: 0.3611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Fabi89wrote on 19.05.2011:[10.0] "Edge kann ohne Zweifel behaupten, alles aus seiner Karriere herausgeholt zu haben. Hat wohl den Paradeweg für einen WWE Star hingelegt. Ausgehend von einem Debut als Tag Team Wrestler, als welcher er Geschichte geschrieben hat, konnte er sich mit der Zeit als interessanter, frischer Teil der Midcard etablieren und sich dann Stück für Stück in Richtung Main Event bewegen. Im Ring immer ansehnlich, lag seine größte Stärke jedoch darin, die jeweilige Rolle bis in das letzte Detail glaubhaft zu verkaufen. Als opportunistischer Heel grandios, später aber auch in der Face Rolle absolut gewinnbringend für die Shows. Es ist schade, dass er seine Karriere derart abrupt beenden musste, er hinterlässt jedoch unzählige tolle Erinnerungen. Einer zukünftigen Rückkehr in einer Autoritätsrolle oder dergleichen sollte zudem wohl nichts im Wege stehen."
Rating: 10.0
Sentiment: 0.02083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tabowrote on 19.05.2011:[8.0] "Goodbye Edge! Schade drum. War einer der ganz großen. Obwohl er ab und zu etwas link und mit Sicherheit nicht immer fair "gekämpft" hat zählt/zählte er doch wohl zu den bekanntesten der WWE"
Rating: 8.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Johnny-Tennerwrote on 16.05.2011:[10.0] "Ich bin Froh den großten Teil seiner Karriere verfolgt zu haben, er war immer einer den ich immer wieder gerne sah. Zu keinem Zeitpunkt fand ich ihn langweilig. Egal ob wegen seinem Genialen Gimmick, seinem Aussehen, seinen Theme, ein schlichtweg genial Wrestler der beim verfolgen seine Karriere immer eine Geschichte erzählt. Edge der Tag Team Wrestler, Der Rockstar der als Opputunist einer der Erfolgreichsten Wrestler seiner Zeit würde, der mit seinem Legendenstatus dann zum Face turnt und sich feiern lässt. Er hat immer überzeugen können er konnte am Microfon die Fans unterhalten, sowie im Ring eine Geschiche erzahlen. 10 Punkte für eine tolle Karriere und dafür das er mich jede Sekunde unterhalten hat. Er zählt zu den Wenigen Glücklichen den ich immer mit 10 Punkten belohne und ganz bestimmt Ewig in Erinnerung behalten werde."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Savior10wrote on 14.05.2011:[10.0] "leider hat er seine karriere beenden müssen , denn er war sowohl als heel und als face sehr stark!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: badboyswrote on 06.05.2011:[10.0] "Einer der besten Wrestler aller Zeiten geht in den Ruhestand, leider mit Edge geht mit Abstand mein persönlicher Lieblingswrestler von der großen Bühne, der alles hatte Charisma, in ring skills, mic work und ein sehr guter wrestler war. Edgehead for Life."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Charismatic Enigmawrote on 02.05.2011:[10.0] "Er war einer der komplettesten Wrestler/Sports-Entertainer, den es gibt. Technik, Intensität, Mic-Skills, Schauspieltalent. Im Team mit Christian einfach nur awesome und auch alleine in den letzten Jahren ein Garant für spannende Matches und unterhaltsame Storylines. Sei es in der La Familia vs Undertaker Story als genialer Heel, oder zuletzt als spaßiger Publikumsliebling. Er hat alles erreicht und kann erhobenen Hauptes abtreten. Thank you, Edge!"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated R Champwrote on 28.04.2011:[10.0] "Edge schaffte es (ähnlich wie Chris Jericho), trotz klarem Main Eventer Status, nie restlos an die Spitze der WWE. Doch genau wie bei Jericho sehe ich den Fehler dabei nicht bei ihm, da er wirklich alles mitbrachte was es im Geschäft braucht. Im Ring war Edge zwar nicht erste Liga, aber dennoch ein starker Wrestler, der immer für gute und unterhaltsame Matches zu gebrauchen war. Am Mikro war der Mann sowieso top und zählt wohl zu den besten Heels, die die WWE jemals hatte. Edge brachte einfach ein Gesamtpaket, wie man es nur sehr sehr selten findet und die Tatsache wie lange und wie oft er sich für die WWE aufgeopfert hat verdient einfach Respekt."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheUndertaker1986wrote on 28.04.2011:[3.0] "Ich weiss nicht was die Leute hier alle an Ä-T-S-C-H so toll finden?  Dieser Mann hat vielleicht gute fertigkeiten am Mikrofon aber sonst? Wrestlerisch nicht unbedingt das gelbe vom Ei und seit jahren gehört er nur noch zum B-Personal der WWE. Das sieht man ja alleine daran das Edge die letzte Zeit im B-Brand verbrachte. Klar war er vor 2 Jahren noch bei RAW aber wieviele Titel gewann er dort? Hab diesen Mann noch nie so sehr gemocht und ich werde es wohl auch nie. Einzig seine Fähigkeiten am Mic bringen Edge noch zu 3 Punkten wobei hier eher 2. 985 eher angemessen wäre... Edge Goodbye... Ich werde dich NICHT vermissen. Weder als Rated R Superstar noch als Adam Copeland alias Edge. In diesem Sinne eine angenehme Rente Ä-T-S-C-H"
Rating: 3.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CemeteryKeeperwrote on 27.04.2011:[10.0] "Edge gehörte schon immer zu meinen absoluten Faves. Als Heel hat man ihn absolut gehasst, aber auch als Face konnte er wunderbar Überzeugen. Edge hat Geschichte geschrieben! Erste TLC Matches, erstes Money in the Bank Match, die meisten Tag Team Titel Errungen und insgesamt die meisten Championships innerhalb der WWE errungen. Hut ab vor dieser Leistung!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: FriarFergusonwrote on 25.04.2011:[5.0] "Durch seinen frühen Rücktritt völlig überbewertet. Nicht schlecht im Ring und am Mic, aber doch weit von dem entfernt, was andere in ihm sehen. Gerade als face langweilig."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Mathias Rekaschwrote on 23.04.2011:[10.0] "Es liegt natürlich nahe, dass man einen Mann zeitnah nach seinem Rücktritt mit der Bestnote ehrt, doch Edge hat sich diese wahrlich verdient. Nachdem nach seiner Rückkehr nach seiner schweren Verletzung der Facerun absokut in die Hose ging, erfand man ihn komplett neu und spätestens mit dem Gewinn des ersten MITB-Koffers begann er seine Legende als Singles Wrestler zu kreieren. Schon im Tag Team mit Christian konnte er mich sehr gut unterhalten und hat viele Klassiker kreiert. Ich bin froh, dass ich ihn bei seinem wahrscheinlich letzten WWE-Auftritt in Deutschland in Kiel die Ehre erweisen durfte. Er reißt eine Lücke, die man erst langsam wird schließen können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Dennizwrote on 22.04.2011:[10.0] "Super Wrestler in allen belangen. Thank you Edge !"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: -Sylar-wrote on 17.04.2011:[10.0] "Einfach einer meiner Lieblingswrestler. Sowohl am Mic als auch im Ring immer Bestleistungen. Diesen Mann kann man nicht aufhalten... naja bis auf Verletzungen. Hoffentlich ist er bis zum Rumble wieder fit denn ohne den Rated R Superstar ist die WWE nicht mehr das selbe. Edit: Als Face leider nicht so gut wie als Heel, sein dauerndes Spear geht mir auf die nerven -. - THANK YOU EDGE !"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Baptizatorwrote on 15.04.2011:[10.0] "Alles außer die Höchstpunktzahl wäre einfach Unangebracht für diesen tollen Wrestler.. Grandiose Comedy Segmente und Matches zusammen mit Christian.. Die Tolle Fehde gegen den Undertaker... Das sicke Hardcore Match gegen Mick foley.. Und naürlich die ganzen Ladder und TLC Matches, die er so einzigartig gemacht hat.. Um all das zusammenfassen muss man eigentlich nur eines sagen: THANK YOU EDGE! THE ULTIMATE OPPORTUNIST,  THE RATED R SUPERSTAR HAS LEFT THE BULDING.."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: troppiewrote on 15.04.2011:[10.0] "Gründe für eine Höchstwertung wurden hier schon vielfach genannt, deswegen belasse ich es bei einem simplen: thank you Edge"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Titanwrote on 14.04.2011:[10.0] "Edge steht gemeinsam mit Chris Jericho an der Spitze der Heels bei World Wrestling Entertainment. Er ist technisch sehr versiert, zeigt 1A-Matches und ist mit einem Mic-Work ausgestattet, dass man nur noch mit den Ohren schlackern kann. Jedoch wirft ihn seine Verletzungsanfälligkeit immer wieder ein Stück nach hinten und zudem ist Edge auch nur wirklich als Heel zu gebrauchen; Edge als Face ist zwar nett gemeint, aber zahlt sich längerfristig nicht wirklich aus für die Fans."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Italian Straight Edgewrote on 13.04.2011:[10.0] "Wohl einer der komplettesten Wrestler der jemals bei WWE unter Vertrag stand. Strotzt vor Charisma, Ausstrahlung, bringt Gimmicks fantastisch rüber. Im Ring ebenfalls sehr talentiert. Ich erinnere mich noch gern an das Jahr 2007. Ich war seinerzeit kompletter Mark und hasste Edge so sehr wie die Kids heute jeden, der gegen John Cena antritt. Weiterer Beweis dass er in der Tat nach "Awesomeness reeked". Das E&C-Team natürlich der Hammer und alles was mit ihnen zu tun hatte gehört zu meinen Edge-Lieblingsmomenten. Später alles (wirklich alles! ) erreicht, was es zu erreichen gab und das zu Recht. 11-facher World Champion hört sich zwar etwas übertrieben an, kann aber damit leben. Meine persönliche Lieblings-Era von ihm war wohl 2006 mit Lita, womöglich dank der Hammer-Fehde gegen Cena. Überzeugte als Heel und als Face. Es ist eine wahre Tragödie, dass dieser Mann seine Karriere frühzeitig beenden musste und womöglich nie wieder in den Ring steigen kann. Musste auch paar Tränen zu vergießen als er seine Abschiedspromo hielt. Die Hall of Fame ist sicher. Er gehört ohne Frage zu den besten WWE-Workern aller Zeiten und an dieser Stelle muss gesagt werden: THANK YOU EDGE! WE'LL MISS YOU."
Rating: 10.0
Sentiment: 0.15625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jerseyhoolwrote on 13.04.2011:[10.0] "Mr. "Diabolisches Grinsen"! Alleine sein Gesichtsausdruck in vielen situationen macht ihn sehenswert. und da sowohl Mic-Work als auch Ring-Skills auf hohem Niveau anzusiedeln sind - alles richtig gemacht, WWE! Mal ausnahmsweise kein Talent verschwendet.... EDIT April 2011: Und wieder einmal holt das wahre Leben die Show schneller ein, als WWE lieb sein kann. Danke an Mr. Copeland! Danke für spektakuläre Matches, danke für überraschende Titelgewinne, danke für die "5 Second Pose"! Wir werden dich vermissen! Viel Glück für den weiteren Lebensweg! Gez. Deine Fans."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: bigdaniel1992wrote on 12.04.2011:[10.0] "Edge ist und bleibt für mich, der größte Superstar den WWE hat. Seine In-Ring Leistungen sind beständig gut und seine Promos zeugen von Elektrizität, Spannung und Charisma. Seine unvergesslichen Matches gegen Eddie Guerrero, Chris Benoit, HBK oder auch gegen den Undertaker zeigen deutlich was WWE an ihm hat. Einen Mann, auf den man in schweren Zeiten immer bauen kann. Seine Gimmicks sind beständig interresant. Egal ob nun als Rated R-Superstar jede erdenkliche Chance nutzt, sich als Vickies Ehemann Titel erschleicht oder als psychopath alles was ihm im Weg steht zerstört. Er ist und bleibt unantastbar.  Das hab ich vor 2Jahren geschrieben.  Jetzt im Jahr 2011 tritt Edge also zurück. Ich war den Tränen nahe. Durch ihn hab ich mich für das Wrestling begeistern können. Mein erster PPV war New Years Revolution 2006. Ich bin damals ausgemarkt. Es folgten all die schönen Erinnerungen. Die Zeit mit Lita gegen John Cena, Wrestlemania 22 gegen Mick Foley, Rated-RKO, La Familia, Fehde gegen Jeff Hardy, Royal Rumble Sieg und die anschließende Fehde gegen Jericho, insgesamt 11 World Title. Mit Edge verliert die WWE einen ganz großen Superstar. Ein Moneymaker wie er im Buche steht. Auch wenn man es sich früher nicht eingestehen wollte: Man schaltete den Fernseher oft nur wegen ihm an.  Ich bedanke mich beim Ultimativen Opportunisten, dem Rated-R Superstar für all die schönen Jahre. THANK YOU EDGE!  Wir sehen uns in der Hall of Fame ;)"
Rating: 10.0
Sentiment: 0.2102272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Y2J Problemwrote on 12.04.2011:[10.0] "Turn out the lights... Selten hat mich eine Meldung so geschockt, wie die seines Rücktritts. Man kann ihm nur Respekt zollen, für die Entscheidung aufzuhören, bevor er gelähmt oder sogar tot ist. Über seine Leistungen brauchen wir garnicht anfangen zu sprechen, höchstens eine handvoll können mit ihm mithalten! Viel Glück auf deinem weiteren Lebensweg, Adam Copeland! ... the show is over!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Neuhofwrote on 12.04.2011:[10.0] "Was soll ich zu diesem Mann noch sagen? Imo nicht nur wrestlerisch die Nummer 1 der WWE (und nebenbei auch in der Weltspitze noch sehr hoch anzusiedeln), auch noch ein Gott am Micro, der wahrlich seinesgleichen sucht. Großer Pluspunkt ist noch dazu, dass er immer sehr motiviert ist. 1!  EDIT: Ja, und das war es nun. Mein (neben Michaels) Dauerfave hat aufgehört. Vielen, vielen, vielen Dank, Adam Copeland, du wirst als einer der größten in Erinerung bleiben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: dsierwrote on 12.04.2011:[10.0] "Danke Edge für all die tollen Momente, die 5-Sterne Matches, die genialen Fehden, die super Zeit im Tag-Team mit Christian, die Neuerfindung des TLC, die Zeit, in der wir dich hassen durften, die Zeit, in der wir dich lieben durften und dafür, dass du mein absoluter Favorit und Lieblingswrestler warst und bist. DANKE."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Boggenauerwrote on 12.04.2011:[10.0] "Wirklich Schade ein Zwangsrücktritt für Edge ist wirklich Bitter hätte er das nicht mit seinem Genick gehabt hätte er noch locker ein paar Jahre geschafft was wirklich sehr schade ist, der Kerl war als Heel wie auch als Face einer der Unterhaltsamsten Worker der gesammten WWE konnte im Tag Team und Einzelbereich überzeugen, am Mic unglaublich gut und total Charismatisch. Zu seiner Heels Zeit als ich noch jünger war hab ich es einfach geliebt ihn zu hassen das hat den Kerl so besonderst gemacht egal wie er gespielt hat er hat es fantastisch gemacht, er bleibt mir in unglaublich vielen guten Matches und Fehden als einer der besten Worker der WWE in errinerung, vielleicht was ich auch hoffe wird man ihn noch in einigen Gastauftritten in der WWE sehen denn am Mic kann er eindeutig überzeugen. So Klasse wie Adam Copeland war so geht er auch in den "Wrestling" Ruhestand deshalb kann ich gar nicht anderst und gebe dem Rated R Superstar volle 10 Punkte, für diese bewundernswerte Karriere."
Rating: 10.0
Sentiment: -0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: wolverinewrote on 12.04.2011:[10.0] "Einer DER unterhaltsamsten Worker aller Zeiten - angefangen als Part eines DER drei Tag Teams meiner Jugendjahre - Egde & Christian vs. Dudley Boyz vs. Hardy Boyz. Diese sechs Tag Teams hatten noch wirklich großartiges Tag Wrestling geboten.  Über seine Midcard Karriere bis zum Durchbruch und zum Gewinn seiner ersten WWE Championship - in dessen Regentschaft der WWE Titel sogar "Rated R" wurde. Edge hat in seinen Matches immer die überraschenden, unvorherrsehbaren Mänover gezeigt, doch was in meinen Augen noch weitaus nachhaltiger in meiner Erinnerung bleiben wird, waren seine oftmals unerwarteten, und somit einfach (Es sei an dieser Stelle einfach mal so erwähnt) "HAMMER-Momente", in denen er ein ums andere Mal überraschend seinem Namen als "Ultimate Opportunist" gerecht geworden ist und sich wieder einen der ganz großen Titel sichern durfte - eben "Rated R Superstar""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: xXxwrote on 12.04.2011:[10.0] "Er hat mich als Heel immer so richtig ausmarken lassen aber selbst dann konnte ich nicht anders als ihm zuzugestehen dass er gut ist , wenn er sich mal wieder einen Title erhaschte, den dann jedoch stark verteidigte. Charisma in hohen Dosen, exzellentes Mic-Work, eigentlich nie langweilige Matches und immer klasse Promos. Meine drei Lieblingsmatches aller Zeiten beinhalten auch jeweils ihn, selbst wenn er eines davon verlor. Starker und facettenreicher Worker und Entertainer. Thank you Edge!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: gangster316wrote on 12.04.2011:[10.0] "Egal ob Heel oder Face, er hat immer eine gute Figur abgegeben!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: UndertakerChriswrote on 12.04.2011:[9.0] "Einer der unterhaltsamsten und talentiertesten Wrestler aller Zeiten. Bleibt für mich zwar etwas überhyped, dennoch kann ich sonst nichts an ihm aussetzen. Seine Storys spielte er unglaublich. Sowohl in seinen Promos, als auch während seiner Matches. Der "ultimate opportunist" zeigte jedes Mal, was er drauf hat. Besonders beeindruckend fand ich seine Fehde gegen den Undertaker 2007-2008, was gleichzeitig mein Einstieg ins Wrestling war. Großartige Matches, selbst wenn ich damals, noch in der guten, alten Mark Zeit, kein Edge Fan war. ^^ Ich hoffe einfach, dass das nicht alles war, dass wir von ihm gesehen haben. Auch, wenn er innerhalb der nächsten 2 Jahre sicher nichts mit der WWE zu tun haben wird, bin ich sicher, dass wir ihn in diesen Wochen nicht zum letzten Mal gesehen haben. Auch, wenn es nicht aktiv im Ring ist, eine sonstige Rolle käm garantiert sehr gut an. Danke Edge für all die genialen Momente."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ryklon Stephenswrote on 12.04.2011:[10.0] "Eine Wrestlingkarriere mit so vielen unglaublichen Momenten, großartigen Matches und auch leider vielen Verletzungen geht zuende. Einer der besten Wrestler dieses Jahrtausends hört auf. Ich bin traurig, aber zolle Edge meinen Respekt für die Entscheidung aufzuhören. Die Entscheidung war wohl nicht ganz leicht. Vielleicht sehen wir ihn ja noch mal wieder. Das wäre ein Traum."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kankurowrote on 12.04.2011:[10.0] "Edge war und wird immer einer meiner absouluten Lieblingswrestler bleiben. Er hat über all die Jahre hinweg für viele tolle Momente gesorgt. Es ist schade, dass er auf diese Weise abtreten muss. Bleibt nur noch zu sagen: Danke für alles, Adam!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Opalawrote on 12.04.2011:[10.0] "Unglaublich schade das er zurücktreten musste. Gehörte immer zu den Unterhaltsamsten Wrestlern der letzten Jahre."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Whole Fucking Showwrote on 12.04.2011:[10.0] "Am Mic unübertroffen und im Ring für absolute Klassiker verantwortlich (vs. Hardy Boyz, Dudley Boyz, Undertaker etc. ), kurzum: Einer der Besten aller Zeiten. Steht für mich auf einer Stufe mit Rock, Austin, HBK, Bret Hart und Flair."
Rating: 10.0
Sentiment: -0.06666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TeeHaawrote on 12.04.2011:[10.0] "Adam Copeland ist auf Jahre hinweg einer der Besten seiner Zunft. Sein Psycho-Gimmick passte ihm wie angegossen - sein Micwork und seine Mimik sind auf Höchstniveau. Wer die Matches um Edge und Christian vs. Dudleys vs. Hardys nicht gesehen hat, sollte das nachholen... die Fehde mit dem Undertaker verdient eine eigene DVD. 10/10 klare Sache!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Paierowrote on 12.04.2011:[10.0] "Habe ihn die letzten 4 Jahre live verfolgt, er gehörte von Anfang an zu meinen Lieblingen! Tolle Matches tolle Promos einfach pure Unterhaltung!"
Rating: 10.0
Sentiment: 0.21915584415584416
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Dediwrote on 12.04.2011:[10.0] "Edge einer der besten Wrestler der letzten Jahren . Er hat immer gute Matches gezeigt . Ein guter Heel beste Fehde gegen den Undertaker.  Danke Danke Edge für diese tollen Jahren Thank you !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bananaramawrote on 12.04.2011:[10.0] "Einer der Gründe, warum ich WWE die letzten Jahre verfolgt habe. Immer unterhaltsam, gute Matches, was will man mehr?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Maxiennewrote on 12.04.2011:[10.0] "Danke Danke Danke.  Es waren immer wieder schöne Matches mit ihm. Sicherlich einer der besten den die WWE hatte zu heutigen Zeit.  Es gab zwar immer wieder Phasen wo ich ihn nicht mochte. Aber die Leistung die er im Ring gezeigt hat waren immer riesig. Die WWE verliert durch ihn einen der wichtigsten Männer den sie hatten. Ich hoffe doch das die WWE versucht ihn weiterzubinden im Hintergrund als Scout für neue Talente weil er weiß wie es geht Talente zu finden.  Damit nochmals Danke Danke Danke Edge für viele wunderschöne Stunden Wrestling und Promos auf höchstem Niveau."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Golgotawrote on 12.04.2011:[10.0] "Bei einer solch kontinuierlich großartigen Leistung, ob nun im Ring, am Mic oder Backstage - bleibt einem gar nichts anderes übrig, als eine glatte 10.  Edge war einfach überall einsetzbar. Großartig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Cenafan 09wrote on 12.04.2011:[10.0] "THANK YOU EDGE! HE MADE A GREAT JOB IN THE LAST 19 YEARS. WE WILL ALL MISS YOU. Wieso müssen immer die Guten zuerst gehen. THANK YOU EDGE FOR EVERYTHING!"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: HesBackwrote on 04.04.2011:[10.0] "Einer der besten Heels überhaupt. Ich bin im allgemeinen eher Face/tweener Fan, aber Edge hehe ja der bringts^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: C0nspiracywrote on 27.03.2011:[8.0] "Egal ob im Team oder alleine Edge ist ein solider Wrestler der fast alles beherscht von High Flying , Spotwrestling , sowie Matwrestling, Er hat einen guten Entertaiment Faktor. Fazit: Eine bereicherung für jeden Arbeitgeber."
Rating: 8.0
Sentiment: 0.18
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Lions Denwrote on 10.03.2011:[6.0] "Ich finde ihn weder am Mic noch im Ring wirklich beeindruckend. Klar hatte und hat er seine Momente, aber er ist definitiv keiner, der mich wirklich mitreißen kann."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jeffrey Nero Hardywrote on 04.03.2011:[10.0] "Genialer Wrestler. Als Heel war er wirklich der beste der ganzen WWE und zog beeindruckende Reaktionen auf sich. Als Face macht er auch alles richtig , ist aber besser als Heel. Ansonsten Mic und Ring-Skills sind immer noch top."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: exxterwrote on 27.02.2011:[10.0] "Damals wie heute ein Top Star und sein Gimmick gefällt mir zur Zeit soooo gut, nur weiter so Edge :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Dark Tomekwrote on 27.02.2011:[10.0] "Edge ist einer meiner Favoriten. Fand die Zeit als er mit Christian noch am Anfang im Tag Team war ziemlich cool. Zudem mag ich seine Entrance Musik, die meiner Meinung nach bei einem Wrestler extrem viel ausmacht."
Rating: 10.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Smi-48wrote on 15.02.2011:[9.0] "Ein über die Jahre gereifter und an Charaktertiefe kaum zu überbietender Worker. Die Tatsache, dass er alle Stufen - vom MidCard Tag-Team bis zum MainEventer - durchlaufen hat, macht ihn so glaubwürdig. Ein Prachtexemplar an Entwicklung, ein wahrer Heat-Magnet. Konkurrenzlos guter Heel, derzeit der Maßstab aller Dinge. Ein leichtes Manko ist, dass er durch sein Oportunisten-Gimmick manchmal schwächer dargestellt wird, als ihm meiner Meinung nach gut tut, zusätzlich scheint ihm in der jüngeren Vergangenheit eine latente Verletzungsanfälligkeit nachzuschleichen. Nachtrag: Geht es nur mir so oder baut er im Ring massiv ab? Sein Spear verkommt zur Lachnummer und auch die Bewegungsabläufe erscheinen unrund - werde ich mal im Auge behalten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RIKYwrote on 08.02.2011:[10.0] "Es wird mal Zeit DEN Heel schlechthin zu bewerten! Als Heel ist er eine gestandene Grösse an die nur ein Triple H und Chris Jericho (als Heels) herankommen! Seine Mic-Skills, seine Performance und sein Charisma sind hervorragend! Als Face sehe ich ihn nicht so gerne, im Moment (02/2011) sehe ich ihn auch nicht als Face sondern eher als Tweener (Aktionen gegen Kane mit Bearer). Man sollte aber auch bedenken dass sein Status auch einer gewissen Storyline-Ex-Frau zu verdanken ist und seinem Ruf als Ultimate Opportunist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Awezomewrote on 07.02.2011:[9.0] "Einer der größten Wrestler aller Zeiten. Der Mann hat schon im Tag Team mit Christian fasziniert und als der Ultimate Opportunist hat er als Main Eventer die WWE gerockt. Leider, leider, leider zerstörte die PG Era den Rated R Superstar. Als Face nur noch durchschnitt und körperlich auch nicht mehr auf höchsten Niveau. Hoffentlich zeigt er noch ein 5-Sterne Match bei WM und das am liebsten gegen Christian.  9 / 10 Punkte; ohne PG wären die 10Pkt möglich gewesen"
Rating: 9.0
Sentiment: 0.041666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CenationFanwrote on 05.02.2011:[9.0] "Ich finde Edge ist schon ein mehr als sehr guter Wrestler, seine TLC-Matches sind absolut klasse... aber manchmal kommt er mir irgendwie komisch rüber. Aber trotzdem find ich ihn gut."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Zamunerwrote on 02.02.2011:[10.0] "Super Mic-Work, stark im Ring, perfekter Schauspieler. Ich kann mich noch gut an die Heel-Zeit 2008 erinnern, Edge vs Undertaker hat dafür gesort, dass ich in diesem Jahr jeden PPV gesehen habe und mich endgültig wieder an das Wrestling gefesselt. Diese Zeit ist leider vorbei, genauso wie Edge & Christian vs Hardy Boyz vs Dudley Brothers. Doch Edge schaffte es immer wieder sich neu zu entwickeln. Sicher schafft er das auch als Face und selbst wenn nicht, als Heel ist er unbezahlbar. Vielleicht mal wieder als Psycho-Edge, wie er kurz auftrat 2008 gegen Mick Foley, der Chickenshit-Heel ist etwas abgenutzt."
Rating: 10.0
Sentiment: 0.04444444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Overlordwrote on 01.02.2011:[9.0] "Einer meiner absoluten Lieblingswrestler. Hat mich spätestens nach seiner Fehde mit Cena und deren Match bei Unforgiven absolut überzeugt und hat seinen Spot zurecht inne. Im Ring sowie am Mic einfach klasse und sicherlich einer der Besten, den die WWE zu bieten hat. Sein aktueller Face-Run weiß zu gefallen und man sollte Edge nicht so schnell wieder zum Heel turnen, auch wenn er so sein volles Potential ausleben kann. Leider lässt er es seit Bekanntgabe seines potentiellen Karriereendes doch etwas langsamer angehen, sowohl im Ring als auch am Mic. Nichtsdestotrotz einer der unterhaltsamsten Wrestler der WWE und zu Recht der aktuelle World-Champ bei Smackdown."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheRock 7 Champwrote on 30.01.2011:[10.0] "Edge, einer der Top Superstars in der WWE. Am Mic sicherlich auch einer der besten in der WWE und auch im Ring liegen seine Skills richtig hoch."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: rey mysterio 104wrote on 30.01.2011:[10.0] "Edge ist seit einigen Jahren vollkommen zurecht im Mainevent. Ob als Heel, der nur auf seinen Vorteil aus ist, oder so wie jetzt als Publikumsliebling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: GamePrincewrote on 27.01.2011:[10.0] "Edge ist einer der alles perfekt beherrscht. Am Mic ist er super, im Ring genau so und als Heel war er jahrelang meine Nr. 1 - bis halt Chris Jericho kam. Auch als Face ist Edge brauchbar, denn allein seine Matches machen ihn immer sehenswert.  Tolle Matches, Tolle Fehden ... einfach ein super Typ!"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: NaGoyahwrote on 23.01.2011:[9.0] "Sowohl als Heel als auch als Face ein guter Worker, und einer der besten der letzten 10 Jahre"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Yannick009wrote on 21.01.2011:[10.0] "Momentan einfach der beste Wrestler der WWE. Mic-Skills ebenso top!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TaraTerrellwrote on 21.01.2011:[10.0] "Für mich der beste Wrestler in diesem Buisness ! Sowohl gut im Ring als auch am Mikrofon. Mein absoluter Lieblingswrestler in jeder Hinsicht < 3"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Mario095wrote on 17.01.2011:[10.0] "hab ihm letztes Jahr live gesehen also für mich einer der besten Wrestler der Welt"
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: svenheinrichwrote on 15.01.2011:[10.0] "Einfach der beste Micworker den die gesamte wwe zu bieten hat"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Lampard4000wrote on 10.01.2011:[10.0] "Super Heel, super Wrestler, super Mic-Work, was will man mehr?"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Auditorewrote on 10.01.2011:[10.0] "Ihm kauft man einfach alles ab. Bitte hör niemals auf Adam Joseph Copeland."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: thereisonlyonewrote on 04.01.2011:[10.0] "Einfach der beste und realistisschte heel in der Geschichte der WWE!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KingOfTheRingwrote on 31.12.2010:[10.0] "Einfach genauso unterhaltsam wie talentiert. Er kommt überzeugend rüber und keiner seiner Titelgewinne war bisher unberechtigt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Schmidi2121wrote on 26.12.2010:[10.0] "Einer der besten Wrestler die je einen WWE Ring betreten haben.  Außerdem wahrscheinlich einer der Überzeugensten Heels überhaupt.  Seine Promos sind auch wahnsinnig Unterhaltsam.  Einfach ein Perfekter Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LowJomoKiwrote on 25.12.2010:[10.0] "Zum Teil auch 10 Punkte für seinen unglaublichen Unterhaltungswert, sowohl als face aber noch mehr für mich als Heel mit seinen unglaublichen Schockermomenten und Cheats die er nutzt. Seine Promos sind klasse und im Ring ist er auch stark wenn auch nicht ganz mein Favorit... völlig verdient 10."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: teekay86wrote on 25.12.2010:[8.0] "Einer der besten Heels im Roster der WWE. Sehr Charismatisch, gut im Ring und sich nicht zu schade Bumps zu nehmen. Ich hoffe jedoch, das er auch nach seiner Verletzungspause einer von "den Bösen" bleibt, da ich ihn mir als Face nur schwer vorstellen kann."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Matt4Wrestlingwrote on 20.12.2010:[9.0] "Ein sehr solider Worker, wenn nur nicht immer sein Verletzungspech dazu käme! Hinzu kommt, dass er oft versucht, zu sehr als ultimativer Face, sollte er die Rolle mal haben, rüber zu kommen. Da wünscht man sich gleich wieder er sei Heel (die Rolle beherscht er besser)! Er müsste für beide Rollen endlich seine Mitte finden, dann wäre er außer der ultimate Opputunist, wirklich ein ULTIMATE!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AlexPrimewrote on 15.12.2010:[10.0] "Edge- der wohl momentan beste Wrestler den die WWE zu bieten hat.  Geniales Micwork, Gute- Sehr Gute Ring-In Skills und Charisma.  Über die Jahre hatte er teils die genialsten Gimmicks der WWE und er wusste auch immer in jeder Rolle zu überzeugen.  Als Heel überzeugt er wie kein anderer, und auch als Face macht er seine Sache gut !  Auch als World Champion war er immer glaubwürdig- egal ob er sich jetzt seinen Titel feige erstohlen hatte oder ihn fair erkämpft hat. Der Mann ist genial und ich bin froh, dass ich mit ihm in Sachen Wrestling aufwachsen durfte."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Necronwrote on 08.12.2010:[7.0] "Verkörpert für mich irgendwie die erste Generation der neuen Superstars, mit denen ich eben nicht mehr aufgewachsen bin. Für mich ist er zu schmächtig und seine Matches sind sich zu ähnlich... weiß auch nicht - ist halt nich so ganz mein Fall."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jack Londonwrote on 23.11.2010:[10.0] "Ein weiterer Superstar aus Kanada, tolle Ring-Skills, tolle Mic-Work, ein toller Finisher, legendäre Fehden ob mit oder ohne Partner, Edge prägt das Main Event seit Jahren und hat nichts anderes als die volle Punktzahl verdient."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Finnish Nightmarewrote on 10.11.2010:[10.0] "Der Mann kann einfach alles und hätte einen Triple H schon längst ausgestochen wenn er den selben Körperbau und Stephanie hätte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Woerpwrote on 09.11.2010:[10.0] "Ich muss meine Bewertung über Edge von damals 8 auf ganze 10 Punkte heben, denn mittlerweile ist er für mich zum Inbegriff eines perfekten WWE Wrestlers geworden. In diesen Club kommen nicht Viele rein, und auch nicht alle davon bekommen von mir 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated R Userwrote on 06.11.2010:[10.0] "Edge hat die WWE im letzten Jahrzehnt definitiv geprägt. Ob als Tag Team Wrestler (als die Tag Team Division noch eine Bedeutung hatte), indem er, zusammen mit Christian, den Hardys und den Dudleys das TLC Match hervorbrachte, sowie das Ladder Match generell revolutionierte. Oder auch in der Singles Division, wo er uns vor allem im Main Event mit genialen Fehden beispielsweise gegen Cena oder dem Undertaker unterhalten hat. Ein zukünftiger Hall of Famer, der, nach dem Rücktritt von Shawn Michales und der Pause von Chris Jericho, aktuell das beste Gesamtpaket der WWE darstellt."
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Cheffewrote on 01.11.2010:[10.0] "Edge hatt sich im letzten Jahrzehnt, meiner Meinung nach zu einem der Besten Wrestler aller Zeiten gemausert. Im Ring ist er Technisch super, und am MIC ist er ein GOD !  Hoffe das er dem Sport noch lange erhalten bleibt!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: GabberGizmowrote on 28.10.2010:[10.0] "Für mich ist Edge einer der Besten und Komplettesten Wrestler der letzten Jahre ! Er ist unterhaltsam und hat jetzt schon einen Legendenstatus aufbauen können. Weiter so Edge !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: dnstoniewrote on 20.10.2010:[9.0] "Super Entertainer, und das nicht nur im Ring, sondern auch am Mic. Leider passt er nicht mehr richtig in die derzeitige WWE. Der Ratet-R- Superstar wäre eher was für TNA... doch das wird nie passieren. So wird er sich wohl auch weiterhin damit abfinden müssen auf Laptop-GM's einzudreschen oder ähnlichem Blödsinn."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Fat Mikewrote on 15.10.2010:[9.0] "Einer der besten Heels des Mainstream-Wrestlings. Edge ist im Ring wirklich gut und am Mic ein wahrer Gott."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CM Dannywrote on 13.10.2010:[10.0] "Von Beginn an war ich ein Fan von Edge. In der Brood/Ministry hat er mir nicht so gut gefallen, weil er nur einer von vielen war. Seine erste Sternstunde kam dann jedoch im Team mit Christian. Die zweite Sternstunde folgte an der Seite von Lita. Im Moment wünsche ich mir einen richtig langen Titlerun für ihn, das Gimmick des Ultimate Opportunist sollte das doch möglich machen. "Rated R" darf er ja leider nicht mehr sein, das wäre ja nicht kinderfreundlich. Edge macht Bret Hart ganz schön Konkurrenz als bester Kanadier im Business."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DJ MaSchwrote on 13.10.2010:[9.0] "Ein Weltklasse Schauspieler, Entertainer und Heel. Auch seine wrestlerischen und rednerischen Fähigkeiten zählen ohne Frage zu WWE Spitze. Leider hängt Edge seit seinem Comeback beim Royal Rumble ein wenig in der Luft und wie es mir scheint ist er auch ein wenig behäbig geworden."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Ramwrote on 26.09.2010:[9.0] "Also da ich mich ja lange selbst als Edgehead bezeichnen konnte weiß ich seine Leistungen im Ring als auch am Mic zu schätzen aber was ihn für mich wirklich ausmacht ist seine Ausstrahlung.  Wenn sein Theme ertönt und der Rockstar die Halle betritt ist auf eimal kurz vergessehen das man eigentlich für den Gegner ist. Man muss ihn einfach feiern ob man will oder nicht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Pyromaticwrote on 17.09.2010:[10.0] "Zurecht im Mainevent. Hat eine starke Entwicklung hingelegt und ist neben Jericho einer der besten Heels der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kitanoyamawrote on 01.09.2010:[10.0] "Edge ist ein hervorragender Techniker und macht auch bei seinen Promos eine sehr gute Figur. Er kann jede Rolle sehr gut spielen, wenngleich er als Heel durchaus besser rüberkommt wie als Face. Abgerundet wird dies durch seinen genialen Entrance der nur noch vom Undertaker übertroffen wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SelfEsteemwrote on 26.08.2010:[10.0] "Edge geniesst bei mir eine Aufmerksamkeit wie sonst nur Miz und das vollkommen zurecht! Im Ring ist Edge eigentlich immer grundsolide, aber wenn man ihn lässt ist der Mann gold wert. Ich wa selten so von einem Match gefesselt wie vom Mainevent von Wrestlemania 24. Sein Micwork ist ganz weit oben anzusiedeln, irgendwo auf einem Level mit Jericho oder Cena, was ja eigentlich schon genug Lob ist. Mit seinem Micwork verbunden ist seine größte Stärke: Charisma und Glaubwürdigkeit. Der Mann lebt sein Gimmik von Kopf bis zum Fuß und da kann ihm auch keiner das Wasser reichen. Alles andere als die Höchstnote wär natürlich unangebracht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SES-Memberwrote on 20.08.2010:[10.0] "Wenn Er will kann er viel Heat auf sich ziehen und das ist auch gut so. Am Mic ohne Frage klasse und seine Matche wie zum Beispiel gegen den Undertaker oder auch Y2J waren einfach klasse. Viel Charisma und einfach jmd der seine Rolle klasse spielt. 10 Punkte für Joseph Copeland"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheRatedRLegendKillerwrote on 19.08.2010:[10.0] "Einer der besten Heels aller Zeiten! Mit seinem immensen Schauspielkönnen kann er sowohl den irren Psychopath, als auch den smarten Lover von guerrero oder Lita spielen. In Ring Skills ist er einer unter den top 5 der WWE, Mic Work der beste der Welt(! ) und charismatisch wie es nur geht, Wahnsinn. Einer meiner absoluten all-time Favourites..."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Lowflyerwrote on 18.08.2010:[10.0] "Für mich ist Edge der beste und kompletteste Wrestler der letzten Jahre, der in allen Belangen nicht nur unglaublich versiert sondern auch unterhaltsam ist, wie kein Zweiter. Auf dem Zenit seiner Schaffenskraft, hat er schon einen Legendenstatus aufbauen können. Edge wird mir sicherlich als DAS prägende Gesicht meiner Zeit als Wrestling Fan in Erinnerung bleiben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Fichtelmeierwrote on 18.08.2010:[10.0] "Edge gehört zu absoluten Elite der WWE, Stark am Mic, unfabar starke Gestik uud Mimic, dazu bockstark im Ring. einfach ein super Gesamtpaket."
Rating: 10.0
Sentiment: 0.06666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sloverwrote on 18.08.2010:[10.0] "Edge, einer der besten, die die WWE hat. Ist stark am Mic, hat gute Ringfähikeiten. Er ist einfach genial."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Blacc84wrote on 18.08.2010:[9.0] "Seine Gestik ist einfach genial. Gerade in der Fehde mit dem Undertaker hat er mir gefallen man musste ihn einfach Hassen. Im Ring hat er auch was drauf."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Dean Winchesterwrote on 17.08.2010:[10.0] "Edge is einfach toll.  es macht einfach spaß dem ultimativen opportunisten zuzuschaun!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Vanniwrote on 17.08.2010:[10.0] "Der perfekte Heel, ein klasse Schauspieler, stark am Mic, überzeugend im Ring. Das ist Edge, ein Mann, der mittlerweile aus dem Main Event der WWE nicht mehr wegzudenken ist und da auch hingehört. Ihm gehört sicherlich unter anderem die Zukunft in der Promotion - und das ist auch gut so."
Rating: 10.0
Sentiment: -0.016666666666666677
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Y2Mikewrote on 15.08.2010:[10.0] "The Rated R Superstar ist absolut genial. Mit Chris Jericho der beste Mann, den die WWE zur Zeit hat. Er hätte sich mal einen längeren Titlerun verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jericho is excellencewrote on 14.08.2010:[10.0] "Edge ist einer der wenigen Worker der WWE, die wie kaum ein anderer für konstant hohe Qualität stehen. sein Micwork ist klasse, und vor allem seine Mimik und wie er sich bewegt. Das Paradebeispiel hierzu ist für mich das Hell in a Cell Match gegen den Undertaker. Während seinem Entrance ist ihm der Wahnsinn quasi ins gesicht geschrieben, und man nimmt es ihm zu 100% ab. Ich liebe es einfach wenn er dieses wahnsinnige Flackern in den Augen hat, und auch seine Gestik in der Ringecke vor dem Spear. Edge ist einfach ein total Package, zu der tollen Mimik, dem Micwork und dem Charisma kommen noch die starken technischen Fähigkeiten, dank denen er schon so manchen Klassiker auf die Bretter gezaubert hat. ohne ihn wäre die WWE nicht das selbe, allein schon wie er die TLC-Matches revolutioniert hat. Das Ultimate Opportunist-Gimmick ist eines der geilsten , die ich je gesehen habe. All diese Eigenschaften, gepaart mit seinem sehr tollen Look machen ihn zurecht zu einem der erfolgreichsten Wrestler aller zeiten.  Edge ist wohl einer der besten Heels, die das Business je gesehen hat, reisst mich mit jeder Promo mit, und hat so ganz nebenbei den mit Abstand besten Theme-song. Alles andere als 10 Punkte ist daher meiner Meinung nach nicht gerechtfertigt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: anglejoewrote on 14.08.2010:[10.0] "Edge wurde ab 2006 immer mehr zu meinem Fav-Wrestler. Top Heel mit Super Mic-Work und exzellenten Wrestling Skills. Einfach eine EINS"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Finlay Thornwrote on 10.08.2010:[10.0] "War lange Zeit meine Nummer 1 und auch wenn er das heute nicht mehr ist, finde ich ihn trotzdem nach wie vor super! Edge ist für mich einer der besten Heels aller Zeiten, am Mic gefällt er mir fast immer und an seinen Matches habe ich auch nur selten was auszusetzen. Er ist einer, den ich immer wieder gerne sehe."
Rating: 10.0
Sentiment: 0.30833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: milliwrote on 04.08.2010:[10.0] "Er ist neben Chris Jericho einer der Wrestler, die so viel für ihr Heel Image getan haben, dass ein plötzlicher Faceturn einfach unglaubwürdig wirkt. Deswegen ein guter Move der booker ihn wieder zum Heel zu machen. Die Storyline die ihn zum Face machen könnte müsste sehr groß angelegt sein und ein für ihn einschneidendes Erlebnis enthalten. Meiner meinung nach ist so etwas aber unnötig weil man ihn als Bösewicht einfach nur genießen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: WrestlingFanDuisburgwrote on 03.08.2010:[10.0] "Im Ring super, am Mic auch und Charisma hat er auch. Als Heel vor allem als Ultimate Opportunist richtig starker Heel. Als Face auch nicht schlecht, als Heel zieht er aber deutlich mehr an Reaktionen."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheRock902102wrote on 18.07.2010:[9.0] "Einer der Top 3 Wrestler+Worker in der WWE momentan.  Seine Matches legen die Messlatte enorm hoch, selten n schlechtes Match gesehen,  seine Promos sind einfach nur grandios am Mic gibts kaum bessere..  Seine Fehde gegen John Cena gefiel mir besonder gut, vorallem weil immer erstklassige Matches herauskamen...  Sicherlich bald wieder Champ"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: HBK1986RKOwrote on 17.07.2010:[9.0] "Sehr, sehr guter und modernern Athlet. Leider etwas verletzunganfällig aber das kommt mit dem Alter."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Blazewrote on 16.07.2010:[6.0] "Ganz passabler Wrestler und sehr guter Mic Worker, der unbezahlbar für seine Company ist, aber dennoch dem Standard Alttagstrott eines Mainstreamwrestlers verfallen ist."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: P92wrote on 09.07.2010:[10.0] "EDGE begeistert mich sowohl im Ring mit technischen Manövern, als auch mit extremen Hardcore-Aktionen(Gute-Alte-Zeit).  Am Mic ist er auch einzigartig mit seinem unverwechselbaren kanadischen Akzent. Außerdem wird er bei mir als "favorite Wrestler" gehandelt, da er mit seinem Gimmnik "Ultimate Opportunist" (siehe No Way Out 2009) überzeugt."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: FuXwrote on 07.07.2010:[10.0] "Eine Bewertung ist eigentlich fast unnötig. Edge hat in den letzten Jahren wirklich durchgehend gute Arbeit geleistet und sich seinen Platz an der Spitze wirklich verdient. Das Einlösen gegen Cena war der größte Moment seit Jahren und sein absoluter Durchbruch. Gut das er wieder Heel ist, da sein gesamtes Auftreten einfach nicht zu einem "Guten" passt. Er wirkte als nicht-ar***loch etwas gehemmt."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: morph80wrote on 30.05.2010:[10.0] "Wenn jemand als Heel die Crowd auf seiner Seite hat, dann hat er es wirklich drauf. Gut dass sein Facerun nicht allzulange war, denn er verkörpert den perfekten Heel und sollte das auch erstmal bleiben. Ist ein perfekter Entertainer und wird uns hoffentlich noch viele gute Fehden bescheren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: JeriMizwrote on 22.05.2010:[10.0] "Edge ist nach Jericho einer meiner Liebsten Wrestler, Ob face oder Heel, Edge muss man einfach lieben. Er ist Stark im Ring, und versteht es Richtig gut seine Rolle zu spielen.. zuletzt als face und dann der relativ überraschende Heel-Turn einfach Großartig"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Straight Edge Jerichoholicwrote on 21.05.2010:[8.0] "2005.. 2008... da hat er mich unterhalten teilweise auch 2009 aber momentan find ich den iwie langweilig kp wieso ^^ jednfalls überdurchschnittlich gut, mic work stimmt auch = 8 Punkte"
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Erasedwrote on 21.05.2010:[9.0] "Einer der wenigen, der kontinuirlich gute Leistungen bringt. Bringt seine Rolle wirklich überzeugend rüber und ist dabei auch im Ring noch überdurchschnittlich gut, was man ja heute nicht mehr unbedingt überall findet."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: STRIGGAwrote on 19.05.2010:[9.0] "Großartiger Wrestler und Entertainer, der sich mit noch einigen Jahren im Rampenlicht wahren Legendenstatus aufbauen kann."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MarcTrixwrote on 17.05.2010:[10.0] "Er ist ein spitzen Wrestler, als Heel einfach Weltklasse, aber als face farblos. Er ist von den Mic-Fähigkeiten fast auf dem gleichen Level wie Chris Jericho.. auch Weltklasse."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Edge96wrote on 11.05.2010:[10.0] "Super am Mic, genial im Ring, Tolles Charisma. Für mich gemeinsam mit Chris Jericho der beste Mann in der WWE."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: InUteroHeartwrote on 05.05.2010:[10.0] "Was soll man über Edge sagen,  neben Randy Orton meine absolute Nummer 1 in der WWE!  Seine Promos sind mehr als klasse und sein Ringkönnen steht meiner Meinung nach auch außer Frage!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Cripplerwrote on 04.05.2010:[9.0] "Er ist einer der besten Wrestler den die WWE zu bieten hat. Unglaublich gut im Ring und sehr gutes Micwork."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sandmannwrote on 04.05.2010:[8.0] "Als Rated R Superstar war Edge genial (mit Lita zusammen). Im Moment find ich ihn eigentlich recht langweilig. Der Beginn seiner WWE Karriere als Mann aus dem Publikum begann auf jeden Fall schon sehr vielversprechend. Mit der Brood war er in einem der coolsten Stables aller Zeiten und sein Tag Team mit Christian war einfach unglaublich. Auch als Singlewrestler stellte sich schon bald der Erfolg ein, wobei ich ihn immer noch lieber als Heel sehe als als Face."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Momotoswrote on 02.05.2010:[8.0] "Hat sich die 10 durch seinen miserablen Face Run versaut, dennoch einer der besten, den die WWE zur Zeit hat ... allerdings nur als Heel einsetzbar, diese Rolle füllt er allerdings perfekt aus. Aber für mich muss ein Top-Wrestler in jeder Rolle funktionieren. Was bei ihn als Face nicht geklappt hat. dennoch starke 8 Punkte"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RickRollwrote on 01.05.2010:[7.0] "Guter Wrestler mit einigen starken Matches, gesegnet mit gutem Micwork, der jedoch nur als Heel (gut) funktioniert."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Damon Strikerwrote on 01.05.2010:[10.0] "Schon immer einer meiner Favoriten! Im Ring überdurchschnittlich, mit überragendem Charisma ausgestattet und am Mikro einer der besten! Fast alle seine Fehden und Matches sind mir positiv in Erinnerung geblieben. Besonders an seine Zeit zusammen mit Lita als "Mr. Money in the Bank" bzw. "Rated R Superstar" denke ich gerne zurück. Leider sehr verletzungsanfällig."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Moyawrote on 18.04.2010:[8.0] "Edge ist irgendwie ein spezieller Fall. Er hat schon Qualität, kann gute Matches abliefern und ab und an auch mal gute Promos abhalten. Seine Tag Teammatches gegen die Dudleys und gegen die Hardys waren teilweise echt grandios. Auch alleine hat er schon das eine oder andere gute Match abgeliefert. Gut fand ich seine Heelzeit mit Vickie Guerrero. Was ich an ihm kritisiere ist das er als Face nicht mehr so grandios ist als als Heel, und das er mir zu viele World Title gewonnen hat. Ingesamt macht das dann einen ganz guten Worker, den ich aber nicht als Top-Star sehe."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Eazyewrote on 16.04.2010:[9.0] "Sehr guter Techniker, gute Promos und bisher gute Gimmicks. Als Tag Team mit Christian immer gut, man erinnere sich doch noch an die tollen Matches und Segmente, als EInzelwrestler und Maineventer auch sehr gut. Was mir aber bis heute noch ein Dorn im Auge ist sind diese vielen World-Titelruns, die einfach zu kurz waren und er selten einen Titel clean verteidigt bzw. gewonnen hat(Sein Ultimate Oppurtunis GImmick verhinderte das ja ein wenig, aber diese vielen TItelwechsel und selte clean gewonnenen Titel... ). Ansonste blüht er auch langsam in seiner Face Rolle, gefällt mir sehr gut. Wenn er mal einen langen TItelrun haben wird, der mir auch in der Erinnerung bleiben wird, liegen 10 Punkte problemlos drin."
Rating: 9.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: PunkZEROwrote on 15.04.2010:[10.0] "Überragende In-Ring Skills, Top Charisma und ein MicWork, dass im positiven Sinn jenseits von gut und böse liegt. Als Face noch etwas ungewohnt und man merkt, dass er sich in der Rolle noch nicht so recht wohl fühlt, aber immer noch besser, als der Grossteil seiner Kollegen."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: THE GAME 4-EVERwrote on 11.04.2010:[9.0] "Als Face leider lange nicht so gut wie zu seiner Heel Zeit. Dennoch einer wenn nicht der Top Worker bei der WWE! Charisma und Mic Work leiden nunmal nicht unter einem schlechten Face Turn."
Rating: 9.0
Sentiment: 0.11249999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Parlaelwrote on 05.04.2010:[9.0] "Als Face nicht so klasse, aber dennoch überzeugend. Einzig und allein sein "Spear, Spear, Spear! "-Gehabe nervt ein wenig. Vielleicht wird das noch mit der Zeit, ich zweifle jedoch dran. Super Micwork, im Ring Klasse, super Ausstrahlung. Mal sehen wie er sich weiter gegen Jericho und Swagger schlägt, vielleicht ist da ja noch ein Punkt drin."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Carnevalewrote on 02.04.2010:[9.0] "Sein Charisma, sein Mic Work, seine In-Ring Skills und allen voran wie er sein Gimmick verkörpert - Weltklasse. Ein absoluter Top Heel - und genau das ist das Problem: Bisher gefällt er mir als Face gar nicht, seine Mimik und Gestik passt nicht zum Face Charakter, auch seine Promos. Daher nur noch 9 Punkte, als Heel klare 10."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: cmPunKwrote on 31.03.2010:[10.0] "Spear, Spear, Spear, Spear! Einfach gut der turn vom Super-Heel zum Face. Obwohl ich ihn als Heel mit Vickie am besten fand. So finde ich ist er wrestlerisch begabt. Klasse am Mic-Work. Einen langen Titel Run hätte er auch mal verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Franjisewrote on 31.03.2010:[10.0] "Keine Frage. Mic-Work, Ring-Work, Charisma. Alles was ein Main Eventer braucht hat Edge. Er steht verdient da wo er ist, und ist einer derjenigen, die jahrelang arbeiten mussten, um es in den Main Event zu schaffen. Dazu hat er sich immer wieder neu erfunden. Rated R Superstar, Ultimate Opportunist... All das ist Edge. Ein verdienter Main Eventer."
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Viperwrote on 30.03.2010:[10.0] "Finde ihn als Heel zwar besser, aber die 10 Punkte hat er sich trotzdem verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Batistawrote on 28.03.2010:[10.0] "Bei ihm gilt das gleiche wie bei Chris Jericho! Blos find ich Edge im Ring stärker und Chris ist am Mic ein bisschen besser aber beide sind auf absolutem Top Niveau wie ich finde^^ Edge ist einfach klasse!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: antihiphop2002wrote on 28.03.2010:[9.0] "Einer der top Heels unserer Zeit! Hat sicherlich noch das ein oder andere gute Jahr vor sich. Währe er nicht so anfällig für Verletzungen währe er seit 5 oder 6 Jahren ununterbrochen der wahrscheinlich beste Heel der Welt."
Rating: 9.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Future Divas Championwrote on 24.03.2010:[10.0] "Einer meiner Lieblinge, wenn nicht sogar mein Lieblingswrestler in der WWE überhaupt. Klasse Gimmick, als Heel unglaublich überzeugend, am Mic einfach nur grandios und auch als Face garnicht schlecht (sehe ihn persönlich einfach lieber als Heel. ) Ich hoffe, dass er noch sehr, sehr lange dabei sein wird, aus ihm könnte man noch ganz viel rausholen. Überings mein Favorit für eine Mentoren-Rolle in der nächsten NXT-Staffel!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Wizz21wrote on 15.03.2010:[10.0] "Ausgezeichnete In-Ring Skills, Top Charisma, genial als Heel und immer noch sehr gut als Face. Für mich neben CM Punk und Chris Jericho derzeit der Beste den WWE zu bieten hat."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: reiminhowrote on 15.03.2010:[10.0] "Edge hat einfach alles was ein Wrestler benötigt. Er hat das Charisma und die mic-skills um eine gute Fehde aufzubauen und die in-ring skills um mit fast jedem Gegner ein gutes Match auf die Beine zu stellen. Er hat seine aktuelle Position in der Card zu 100% verdient. Die Rolle als Heel hat er unglaublich gute beherscht, meiner Meinung nach sogar besser als die aktuelle Face Rolle wobei diese bisher auch schon sehr überzeugend ist. Ich erwarte noch einiges von ihm."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KevinMichaels79wrote on 14.03.2010:[10.0] "Hat alles, was ein zukünftiger Hall-of-Famer braucht: Starkes Ringverständnis, großartiges Mic-Work und Ausstrahlung. Einer der wenigen WWE-Stars, die sich nicht abnutzen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DaRkwrote on 12.03.2010:[10.0] "Edge is BACK. Was soll man zu diesem großartigen Wrestler nur schreiben? Seine wrestlerischen Künste sind einfach beeindrucked. Auch am Mic überzeugt er einen. Das Comeback war auf jeden Fall weltklasse!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Gretchen2010wrote on 11.03.2010:[10.0] "meiner Meinung nach, einer der besten. Er ist super im ring und die Geschichte mit seinem Spear, Spear, Spear, Spear, Spear, Spear ist auch total lustig. Deswegen gebe ich ihm die volle Punktzahl."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MJ Goldbergwrote on 09.03.2010:[9.0] "Guter Wrestler, stark am Mic, als Heel der wohl beste!"
Rating: 9.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: the king of kingswrote on 08.03.2010:[10.0] "Also für mich klar, er ist der beste Heel. Die Fehde mit dem Undertaker war auch richtig klasse. Jedoch mit Rey konnte er wenig anfangen wie ich finde. Er hat super Aktionen drauf wie den Spear und den Edgecution. Und seine Segment sind immer interessant."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: gunniwrote on 07.03.2010:[9.0] "In seiner freakigen extremen Art mit dem Hang zum leicht wahnsinnigen ist er der perfekte Superstar. Er weiß überall zu überzeugen ob im Ring oder außerhalb. In einer Kolumne einer Bekannten Wrestlingzeitschrif, wird in der aktuellen Ausgabe gesagt, dass es in der letzten Dekade zwar viele Maineventer gab, aber es fehlte der "Über-Superstar". Und das kann meiner Meinung nach Edge werden, er hat das gewisse Etwas was einem, egal face oder nicht, in den Bann zieht!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Unrated Superstarwrote on 06.03.2010:[10.0] "Einer meiner absoluten Top-Favoriten! Er hat das Zeug, um die Nachfolge von The Rock und Stone Cold antreten zu können. Sein Mic-Work ist einfach klasse, im Ring zeigt er Qualitäten, die man bei manchen hoch gehandelten Wrestlern vermisst. Hinzu kommt noch enormes Charisma! Könnte mit Cena, Orton und CM Punk die zukünftige WWE-Spitze darstellen. Derzeit die absolute Nr. 1 bei SD! neben dem Taker und Jericho! Außerdem schafft er es grandios die ganzen Marks mit seinen "unfairen" Siegen bzw. Titelgewinnen zur Weißglut zu bringen! Schon alleine dafür gibt's die 10! Aber nun versucht die WWE ihn krampfhaft zum Face zu turnen und die Fans zu stupiden "Spear"-Chants zu animieren. Als Tweener würde Edge deutlich besser funktionieren."
Rating: 10.0
Sentiment: -0.130859375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: rv27wrote on 06.03.2010:[10.0] "Göttlich. Super Wrestler + Geniales Micwork = Edge Er ist echt immer Unterhaltsam ob man ihn hasst oder mag."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CharismaticEnigmawrote on 28.02.2010:[10.0] "Er ist ganz einfach einer der Besten und hat die 10 Punkte verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: breunig88wrote on 28.02.2010:[9.0] "Er ist für mich einer der besten Wrestler überhaupt! Zwar nicht DER beste aber einer der Besten"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: VanZan82wrote on 28.02.2010:[9.0] "Geile Promo's, geile Matches.. gutes Auftreten.... Fehde mit Chris bisher sehr cool.... auch als Face wirklich gut!"
Rating: 9.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CenaSuckswrote on 26.02.2010:[8.0] "Egde ist zurück! Eine eindrucksvolle Rückkehr am Royal Rumble und als Face gefällt er mir viel besser, deshalb hebe ich meine Wertung von 6 auf 8 Punkte!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Manu Adamswrote on 13.02.2010:[10.0] "Edge gehört derzeit zu den besten Wrestlern. Hat unglaubliches Micwork, ist bzw. war ein grandioser Heel und ist im Stande hervorragende Matches abzuliefern. Mal sehen wie er sich gegen Chris Jericho oder vor allem wie er sich als Face schlägt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Exist 2 Inspirewrote on 09.02.2010:[10.0] "Edge ist toll, ob als Heel oder Face, aber besonders als Heel kann er überzeugen. Wrestlerisch gut und sein Mic Work ist sowieso genial. Hat die letzte Dekade in der WWE deutlich mitgeprägt und zählt wohl schon heute zu den Legenden im Mainstream Wrestling. Das einzige was stört sind seine vielen und vorallem kurzen World Titel Regentschaften."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Aquifelwrote on 08.02.2010:[9.0] "Neben Jericho definitiv einer der besten Leute der WWE. Nicht nur top im Ring, sondern auch am Mic. Einziges Problem: Ich finde "Chickenshit Heels" an sich totlangweilig zumindest wenn sie so inflationär auftreten wie in der WWE. Edge meistert diese Rolle zwar, dennoch wäre es mal schön, seinen Charakter nicht wie einen Verlierer dastehen zu lassen, der nicht ein einziges mal clean oder ohne Hilfe gewinnen kann. Mal sehen, was er jetzt so vollbringen darf, nach seiner Verletzungspause."
Rating: 9.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Desperadowrote on 07.02.2010:[10.0] "Als Rated R Superstar in den letzten Jahren immer ungemein unterhaltsam. Ob in der Zeit mit "Ehefrau" Vicky oder davor mit Lita (hier noch einen Tick mehr). Währenddessen hat Edge eine vielzahl an grandiosen Matches bestritten und auch die Fehden, in die er gebookt wurde waren eigentlich immer geil. Hervorzuheben sind hier natürlich die Fehde mit Cena und die mit dem Undertaker. Nun nach jahrelangem Heel Dasein, turned man den Ultimate Opportunist zum Face. Ich bin mal gespannt, wie das klappt... Auf jedenfall weiterhin 10 Punkte für Edge der im Ring und am Mic einfach immer überzeugt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Anti-Championwrote on 06.02.2010:[4.0] "Das Ultimate Opportunist Gimmick war ja schon vor dem Rumble ausgelutscht, mehr als einen weiteren 4 oder 6 Wochen Titlerun von Edge wird es eh nicht geben. Der Übergangschampion in Perfektion. Die Glaubwürdigkeit sackt von Jahr zu Jahr mehr ab."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Edgececutionwrote on 06.02.2010:[10.0] "Endlich ist er wieder zurück und Smack Down ist wieder um einen Top Wrestler reicher"
Rating: 10.0
Sentiment: 0.17222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Reiskartoffelwrote on 06.02.2010:[10.0] "Edge kommt zurück, und plötzlich kriegen SD und Raw viel bessere Shows hin. In meiner Mark Zeit hätte ich Edge am liebsten umgebracht, wenn er Batista imemr den Titel gekostet hat. Und jetzt versteh ich: Edge war ein verdammt guter Heel. Jetzt ist er nach langer Zeit mal wieder Face. Ich glaube, er wird da auch verdammt gut sein. Edge ist einfach der beste immoment, egal in welcher Hinsicht (finde ich)."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BMwrote on 03.02.2010:[10.0] "Gimmick TOP - MicWork - TOP - Moves - TOP - Entrance - TOP - Unterhaltungswert - TOP!"
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: tobiasthegreatone1wrote on 02.02.2010:[10.0] "Super Typ. Er spielt sein Gimmick so gut. Ich kauf ihm das total ab. Sein Stil ist zwar unspektakulär, aber seine Matches sind toll und spannend. Verdienter Maineventer bei SmackDown. In meinen Augen einer der besten World Heavyweight Champions, der dem Titel auch sehr gut tut. Ergänzung: HAMMMMMMMMMEEEEEEEEEEEER GEIIIIIIIIIIIIIIL! Edge is Back! Ich hätte es nicht gedacht das er so früh wieder kommt. Aber egal ich freue mich das er wieder da ist"
Rating: 10.0
Sentiment: 0.1111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: kotelettwrote on 01.02.2010:[10.0] "Willkommen zurück Edge! Er ist einfach der beste in jeder Hinsicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated R Deadmanwrote on 24.01.2010:[10.0] "Edge ist der beste Wrestler der WWE (mit Christian), hat ein klasse Gimmick, und holt auch gegen Cena (der immer fast nur langweilige Matches hat gute raus)"
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheROCKwrote on 22.01.2010:[10.0] "Awesome. Heel des Jahrzehnts (mit HHH & Jericho). Ganz großer im Ring."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ShakDragoonwrote on 19.01.2010:[9.0] "Vorallem als Heel ein sehr guter Worker, mit ordnentlichem Mic-Work und mehr In-Ringskills als die meisten anderen WWEler... meiner Meinung nach, ist sein Gimmick-Bruder aber sogar noch einen Tick besser. Ich hoffe Edge kann zum Royal Rumble erfolgreich zurücckkehren."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Quackeltikkiwrote on 04.01.2010:[10.0] "Edge ist meiner Meinung nach momentan einer der besten heels. Ich finde man merkt leider sehr deutlich, dass er zur Zeit fehlt. Außerdem bin ich sowieso absoluter edgehead! Habe mir neulich "a decade of decadence" zugelegt und es bisher keine Sekunde bereut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Denzwrote on 04.01.2010:[10.0] "Edge konnte mich als Face schon überzeugen, jedoch macht er seine Arbeit als Heel bzw. als Ultimate Opportunist viel besser. Am Mic ist er mit Chris Jericho auf dem gleichen Level. Besonders gefallen hat mir seine Fehde mit dem Undertaker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: chryzzwrote on 01.01.2010:[10.0] "Er ist mit abstand mein Lieblingswrestler. Er hatte in den lezten 3 Jahren Grossartige Feheden mit John cena , Batista, und dem Undertaker"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: mugel 187wrote on 01.01.2010:[10.0] "Der Beste im Business zur Zeit. Um ihn kann man eine ganze Organisation aufbauen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Larskanonewrote on 30.12.2009:[10.0] "Klar einer der größte Stars in der WWE nach der Jahrtausendwende und auch einer der besten aller Zeiten, mit klasse Fehden, klasse Promos und klasse Matches"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RatedRJuliwrote on 29.12.2009:[10.0] "Er und Jericho machen Smackdown erst sehenswert. Klare 10 Punkte für ihn"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kenshin Uesugiwrote on 23.12.2009:[9.0] "Der beste Heel seit Jahren. Ohne Frage bei ihn stimmt alles, das Gesamtpaket ist gut bis sehr gut. Allederings stört mich seine zu kurzen Title-Runs, kaum gewonnen muss er ihn schon wieder abgeben . Das zieht seine Leistung stark herab. Edge könnte besser eingesetzt werden. Ich hoffe die WWE ändert da mal was."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Aesopwrote on 18.12.2009:[10.0] "Einfach nur ein klasse Wrestler. Früher im Tag Team mit Christian war er genial und hat die Tag Szene aufgemischt. Seine Leistung in den TLCs war schon genial doch dann der Sprung in den Main event. Einfach super. Im Ring ist er gut und hat so viel Charisma wie kaum ein anderer. Das Gimmick ist genial und er zieht mehr Heat als so ziemlich jeder andere Wrestler, ausgenommen von Jeriho."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: downtown2wrote on 16.12.2009:[10.0] "Wenn man überhaupt etwas an Edge bemängeln kann, dann die Verletzungsanfälligkeit. Alles andere gehört zum Besten, was es gibt. Exzellente Match-Führung konnte man von ihm sowieso schon immer erwarten, trotz der zahlreichen Verletzungen. Sein extrem widerlich gespielter Heel-Charakter ist meines Erachtens nach die bester Rolle eines Bösewichts, die ich je gesehen habe. Mein persönlicher Favorit derzeit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Detrituswrote on 13.12.2009:[10.0] "Der Mann hat einfach alles was ein Wrestler heutzutage braucht: eine fast unübertreffbare Fähigkeit im Ring und natürlich am Mic. Dazu eine Ausstrahlung die seines Gleichen sucht. Im Moment kann kein aktueller Supperstar ihm das Wasser reichen (wenn es um den komplettesten Wrestler geht)"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: XtremeEnigmawrote on 12.12.2009:[10.0] "Tja, was soll man da noch sagen? Extrem gute Ausstrahlung, Mimik usw passt einfach alles. Am Mikro ein Gott, meines Erachtens nach sogar noch etwas besser als Chris Jericho, welcher natürlich auch eine Klasse für sich ist. Im Ring meines Erachtens nach einer der besten Wrestler der WWE, sehr vielseitig und manchmal spektakulär. Bin gespannt, ob man ihn wirklich Face turnt, aber von mir bekommt er verdiente 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: chaoswrote on 23.11.2009:[10.0] "Ein absolut kompakter Wrestler, weil er ein Top Face wie auch einen super heel spielen kann, und obendrein sehr gut am Mic und im Ring ist."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Prince of darknesswrote on 22.11.2009:[10.0] "Ich kann ihn zwar nicht sonderlich gut leiden vergebe hier dennoch die 10 Punkte weil er viel mehr Talent hat wie zum Beispiel ein The Rock und das wird er uns nach seiner Rückkehr beweisen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Papa Popanzwrote on 21.11.2009:[10.0] "Für mich einer der besten Performer des letzten Jahrzehnts, sowohl innerhalb, als auch außerhalb des Ringes, am Mic und seine Stories sind glaubwürdig. Geiler Typ Hoffentlich wird er schnell wieder fit"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LebendeLeichewrote on 18.11.2009:[10.0] "Einfach ein genialer Wrestler! Hoffentlich ist er bald wieder im großen geschehen dabei."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ultrakaoswrote on 06.11.2009:[10.0] "Edge ist eine klasse für sich. Er ist der Beste Heel der WWE allerzeiten. Am Mic genial und ein Super Techniker. Sein Heel gimmick bringt er 1a rüber und trotzdem wird ihm zugejubelt. Hoffe auf beldige rückkehr aber dann leider wohl als Face"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Last Ridewrote on 04.11.2009:[10.0] "Absoluter Topmann, in allen Bereichen. Dass mal die ein oder andere Mimik übertrieben wirkt, kommt in den besten Familien vor. Ich freue mich schon auf sein Comeback, er wird SD gut tun, sofern er nicht wider erwarten bei RAW aufschlägt."
Rating: 10.0
Sentiment: -0.11538461538461539
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Remootwrote on 03.11.2009:[8.0] "Von vielen Überschätzt... lebt von einem guten gimmick und davon immer die richtigen Gegner zur richtigen Zeit zu haben (Foley, Undertaker, Cena) Ein guter Worker keine Frage.... aber nicht auf einer Stufe wie der Taker oder HBK."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: reaperwrote on 27.10.2009:[10.0] "Er hat es einfach drauf. Seine In-Ring Fähigkeiten, sein Micwork alles perfekt. Mal abwarten wann er zurückkommt. ich für meinen teil bin schon echt gespannt darauf"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Cloverwrote on 23.10.2009:[9.0] "Mick Foley hat es einmal gesagt und ich stimme zu: Edge ist als Heel einsame Spitze! Technisch sowieso gut und daher auch nach seiner Rückkehr wieder oben dabei! Allerdings ist seine Aktion mit Lita unverzeichlich - der war zu der Zeit selbst verheiratet... und dann auch noch die Schnalle vom Kumpel klauen (was ja auch im realen Leben Fakt war) ... schämen soll er sich auf ewig (rein menschlich beurteilt). 9 Punkte für den Rated R Superstar."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Triple Awrote on 22.10.2009:[10.0] "Der Heel der WWE ist ein klasse Mann am Mic und zwar so was von überragend, dass man ihm sogar in seiner Heelrolle Mitleid schenkt, wenn er sich über irgendwas beschwert. Im Ring trotz seiner Größe überaus beweglich und technischer Hochstandard. Kann echte Klassiker liefern und ist zudem der Meister der Mimik und Gestik. Es würde mich nicht wundern, wenn er nach seiner In-Ring Karriere als GM oder Kommentartor eingesetzt wird oder vielleicht sogar nach Hollywood geht. Dieser Mann ist schon fast das Paradebeispiel für einen Entertaimentheel und kann bei Gimmick Matches sein ganzes Potential ausschöpfen. Nur der Spear ist als Finisher irgendwie ein wenig lahm, da sollte er mal einen richtigen Sensenmove, d. h. nach dem ist wirklich Sense höchstens bei Wrestlemania oder ähnlichen nicht. Alles in allem der Mann bei Smackdown neben Taker und neuerdings Jericho."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Joe111wrote on 21.10.2009:[10.0] "Grandios! Super Wrestler, super micwork und nie langweilig! Einer oder sogar der besten Wrestler von heute."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: homicidal cena michaelswrote on 09.10.2009:[9.0] "Er ist ein sehr guter Wrestler und Micworker und hat Ausstrahlung. Er könnte zwar mehr Muskeln haben aber nicht so schlimm. Er weis wie man Matches leitet und anderen etwas liefert."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: cartmanwrote on 07.10.2009:[10.0] "einfach genial. super mic-work. und nach dem ich mir die dvd angeschaut habe, bin ich ein noch größerer fan. seine tag-team-matches mit christian spitzenklasse. zuletzt war das wrestling nicht mehr auf diesem niveau, aber das hat die edge mit charisma locker flockig wieder wett gemacht."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: element-41wrote on 04.10.2009:[10.0] "Der mit Abstand beste "Dauerheel" der WWE. Er hat eine riesen Ausstrahlung, macht richtig gute Promos und was das wichtigste ist, er ist stark im Ring. Alles in Allem einer der Besten Wrestler, den die WWE je hatte. Deswegen sind 10 Punkte das mindeste!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Edgecutionerwrote on 01.10.2009:[10.0] "Kurz und knapp: mit das Beste, was WWE seit Jahren zu bieten hat. Eine sagenhafte Karriere, sympathischer Kerl, technisch klasse, am Mic klasse... EDGE ist auf dem besten Weg, der beste und erfolgreichste kanadische Wrestler aller Zeiten zu werden. RATED R-SOME!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Paulinawrote on 30.09.2009:[10.0] "Geniales Mic Work, Super Segmente und ganz netts Wrestling, das alles liefert Edge. Er war als Heel einfach Göttlich und mit ihn wurde SD nie langweillig, er war für mich eine Zeit lang der Heel der WWE und hoffe das er als Face mehr ziehen kann als damals 2004, Seine titelgewinne waren zum größten Teil unnötig, diese vielen Gewinne haben jedoch zum größtenteil sein Gimmick ausgemacht"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Big Bad Booty Babywrote on 25.09.2009:[10.0] "Für die meisten ist es Chris Jericho, für mich ist es Edge: das "Total Package". Er ist super im Ring, liefert grandiose Matches ab, er kann geniale Promos halten, die ich auf Grund ihrer Intensität noch etwas besser als die von Jericho finde und er hat ein geniales Gimmick, das er mittlerweile perfekt verkörpert und darstellt. Bei ihm passt einfach alles zusammen. Sein Wrestlingstil, sein Auftreten, sein Charakter; einfach alles!"
Rating: 10.0
Sentiment: -0.0708333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Basket Casewrote on 14.09.2009:[10.0] "In den letzten Jahren einer der Besten des Business. Ich bin gespannt wie es nach seinem Comeback weitergeht, ob er wirklich Face turnt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: schneiderwrote on 09.09.2009:[10.0] "Absolute Superstarausstrahlung und -gimmick! Einfach ne coole Sau! Nur lasst ihn bitte nicht als "Schwachstruller-Face" zurückkehren. Hab da so ein ungutes Gefühl nach seinem letzten Auftritt via Titantron, im Wortduell mit Jericho. Lieber wär es mir wenn er zwar als Face zurückkehrt, jedoch sich knallhart an Jericho für dessen Aussagen rächt..."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Scotty Westwrote on 05.09.2009:[10.0] "Wie ich dieses Gimmick hasse. Die zehn Punkte gebe ich, weil er wirklich immer gute Arbeit leistet und dieses Ultimate Opportunist Gimmick ist wirklich sehr interessant, weil sehr oft unerwartete Ereignisse eintreffen. Obwohl ich hasse, wenn dies passiert, find ich den man toll, weil wirklich mein Interesse weckt die nächstes Show zu schauen, nur um zu sehn wie er mich wieder auf die Palme bringt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: billygunnwrote on 03.09.2009:[8.0] "Also, wie soll ich sagen?  Im Ring perfekt, am Mic der beste im Moment für mich, sehr unterhaltsam und man kann nicht sagen das er the "OverRated-R" Superstar ist!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: 123 kidwrote on 03.09.2009:[10.0] "Es gibt keinen anderen Wrestler der mich so fasziniert wie Edge. Er kann alles machen was er will und ich finde es immer noch klasse. Ein ganz gorßer, der wirklich alle guten Eigenschaften eines Wrestlers besitzt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Turboladerwrote on 29.08.2009:[10.0] "Der beste Heel überhaupt, weiß am Mic zu überzeugen und hat auch einiges im Ring drauf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kroatewrote on 24.08.2009:[10.0] "Verfügt über ein sehr überzeugendes Gesamtpaket. Einer der besten Wrestler, den die WWE momentan zu bieten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The-Game91wrote on 10.08.2009:[10.0] "Edge dominierte über Jahre das Smackdown Geschehen. Er ist ein Top Heel und hat klasse Ring Fähigkeiten, am Mic grandios... Eben typisch Kanadisch."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: WWE Chairmanwrote on 07.08.2009:[10.0] "Mit Jericho und Orton einer der top 3 heels, gutes mic work und im ring auch super einer der besten die die WWE je hatte"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tamjukwrote on 28.07.2009:[10.0] "er hat einfach alles drauf klar er darf nicht zeigen was er kann aber das ist ein generelles Problem. In seiner Rolle ist er perfekt. 10 Punkte Period"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Schandmaulwrote on 26.07.2009:[7.0] "Gut, aber überbewertet. Am Mic fand ich ihn in letzter Zeit (vor seiner Verletzungspause) ziemlich langweilg, aus der Story mit Vicky war für mich auch schon lange die Luft raus bevor sie beendet wurde. Dennoch einer der sicher besten bei WWE."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Gustelwrote on 21.07.2009:[10.0] "Nach Y2J einer der Besten(meiner Meinung nach). Klasse Promos und im Ring knallts auch. Sollte er nach der jetzigen Verletzung zum Face werden wirds spannend ob er das auch so hinbekommt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: D-generation-Swrote on 11.07.2009:[10.0] "Der beste aktive Wrestler, mehr kann man dazu nicht sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: wweinspectorwrote on 09.07.2009:[10.0] "Für mich der beste aktive Wrestler. Am Mic kann keiner ihn schlagen, nicht mal Chris Jericho. Und im Ring traumhaft! Und dazu noch einer der besten Heels in der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Psycho Kanewrote on 06.07.2009:[10.0] "Ohne jeden Zweifel der Ultimate Opportunist. Unzählige Heavyweight Titel in den letzten 2 Jahren (glaub 5 x World Champion und 2 x WWE Champion), dazu die meisten Tag Team Titel gewinne. Cooler Typ, sehr guter Wrestler, einfach Super!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: PhilippPascalUndertakerfanwrote on 04.07.2009:[6.0] "In der Ministry Zeit echt cool und auch der Biker Taker mochte Edge noch. Umso schader fande ich es als man sie in eine Fehde packte und irgendwie war es auch unlogisch das Edge solange durchhalten konnte und ging nach einer gewissen Zeit auf gut Deutsch gesagt, nur noch auf die Eier. Irgendwann konnte man Edge nicht mehr sehen meiner Meinung nach. Jedoch Wrestlet er gut und ich mag ihn jetzt wieder ein wenig seit er Vikki fertig macht ich hoffe das er bei seinem Comeback sich endlich ganz von ihr abwendet und sogar eventuell mit Taker zusammen arbeitet? Naja wohl kaum das die den Top Heel weggeben :D aber ich denke Edge< --->Taker ist ausgelutscht deswegen auch nur eine drei. Eben weil die Fehde am Ende keine Spannung mehr hatte."
Rating: 6.0
Sentiment: 0.6166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: 3durch16wrote on 03.07.2009:[10.0] "meiner Meinung der zurzeit bester Wrestler. Er hat ein perfektes Mic-Work und hat auch eine gute Ringtechnik."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: pildaYwrote on 24.06.2009:[10.0] "Jetzt endlich ohne Vicky! Aber unabhängig davon 10 Punkte, da er einfach alles hat was einen Spitzenwrestler ausmacht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Alorionwrote on 24.06.2009:[10.0] "Mit Chris Jericho bei weitem der beste Heel im Geschäft. Schafft es immer weider durch gute Promos/ Matches das Smackdown Mainevent zu retten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Neubauteneinsturzwrote on 19.06.2009:[10.0] "Edge ist einfach klasse. Er ist einer der besten, die das Business zu bieten hat und gibt einen herrlichen Heelchampion ab. EDIT: Obwohl ich Edge-Mark bin, muss ich Jinx recht geben. Edge ist vor allem in Promos oftmals unfreiwillig komisch. Aber gut unterhalten fühle ich mich dennoch^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Freitag Nacht Koestlichkeitwrote on 17.06.2009:[10.0] "Überragendes Entertainment! Im Moment mein absoluter Lieblingswrestler. Als Face beschissen, als Heel ohnegleichen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jinxwrote on 15.06.2009:[4.0] "Irgendetwas hat mich an ihm immer gestört und seit man mit Jericho den direkten Vergleich hat, kann ich es benennen: Edge ist einfach zu albern. Das Rated-R-Gimmick hatte ja sowieso nur Biss solange Lita noch an seiner Seite war. Nach ihrem Abgang war es dann nur noch auf dem Papier existent und heute, nach der Sache mit Vicky, ist es eigentlich nur noch lächerlich. Alles was er tut, tut er in übertriebenen Stil. Dadurch wirkt er oft unfreiwillig komisch, was unterhaltsam sein kann. Oft wird dadurch aber eine Promo plötzlich in eine Richtung gelenkt die die Spannung vermissen läßt. Er ist halt kein Orton der mit einem gemeinen Blick die Kameralinse zu Eis erstarren lassen kann. Auch hat er die Angewohnheit in einem Match an der falschen Stelle das Tempo herauszunehmen z. B durch posing etc. Sonst im Ring natürlich gut, aber das sind andere auch (wenn man sie denn läßt). Fazit: wenn man kein Edge-Mark ist muß man in der richtigen Stimmung sein um sich gut unterhalten zu fühlen. Sonst sieht man sich lieber einen Jericho an."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: CMFabewrote on 15.06.2009:[10.0] "Mein aktueller lieblingswrestler. Er ist einfach zurzeit das perfekte Gesamtpaket. Das war besonder 06-08 zu sehen. Er ist der geborene Heel während er mir als Face (zum Glück schon lange nicht mehr) ziemlich auf den Sack ging. Seine Mtach sind immer gut bis sehr gut und seine Promos zu denen muss man nichts mehr sagen. Diese ganzen nervigen Marks die mich immer wieder fragen warum Edge mein lieblingswrestler ist gehen einem nach der Zeit ganz schön auf die Nerven."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Perry Coxwrote on 14.06.2009:[10.0] "Edge ist sogut wie auf dem Höhepunkt seiner Karriere angekommen. Erfolgreicher geht kaum noch, aber genau das ist es: Die Titel. Erst gewinnt er sie und einen Monat später verliert er sie wieder, dann gewinnt er den Titel wieder und beim nächsten PPV verliert er ihn wieder. So kann es mit einem wie Edge nicht dauerhaft weitergehen. Er braucht bei nächster Gelegenheit einen vernünftigen, langen und überzeugenden Titel-Run. Wie oft hat er beispielsweise den World Heavyweight Title in 5 Runs gehalten? 6 oder 6 1/2 Monate? Es wird Zeit für eine kleinere Neuausrichtung seines Charakters. Momentan hat er einen Titel nicht so nötig, deshalb könnte man sich z. B auf eine längere Story mit einem Chris Jericho geben, wenn dieser mit Rey fertig ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: stinger89wrote on 03.06.2009:[10.0] "Der wohl beste Heel überhaupt im Buisiness... Auf Grund des Bookings manchmal zu abgedreht, aber generell: Sau unterhaltsam. Immer wieder hasse ich den Kerl, also spielt er seine Rolle gut ;-)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Eddiewrote on 02.06.2009:[8.0] "The Ultimate Opportunist gefiel mir schon in seinen Tag Team Anfängen. Die Matches die er mittlerweile oft zaubert sind wirklich meist sehr schön anzusehen, doch auf einem Level wie The Rock, HBK, Taker oder Bret ist er NOCH nicht, 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Soapywrote on 27.05.2009:[6.0] "Sicher immer noch einer der besten Heels der WWE, aber das Gimmick wird wirklich langsam langweilig. Frischer Wind muss her!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: mrfantasickwrote on 25.05.2009:[10.0] "Er ist einfach der beste Heel in der WWE seit langem."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: PetePetePetewrote on 25.05.2009:[10.0] "Momentan der überzeugendste Maineventer neben Y2J. Sowohl am Mic wie auch im Ring ist er konstant top. Gute Matches zeigt er gegen praktisch jeden, schauspielerisch ist er meiner Meinung nach der beste in der WWE und in Sachen Micwork gab es seit Jahren kaum einen besseren. Auch wenn er seit Vichie nicht mehr an seiner Seite ist klar weniger Heat zieht. Er ist halt einfach zu cool, das sehen nun selbst die Marks. :-D"
Rating: 10.0
Sentiment: 0.6166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Rated R Superstar EDGEwrote on 11.05.2009:[10.0] "Naja er ist der perfekte worker. Im Ring ist er verdamt gut, hat Carisma und über sein Mic Work muss man nichts mehr sagen. Was mich an ihm stört sind die vielen Runs als World champ. Ich meine 9 in gut drei Jahren. Wen das so weitergeht ist er in 10 Jahren 25 facher Worldchamp. Ich finde die WWE könte ihm den Titel ruhig mal länger lassen. So wie vor Wrestlemania 24 wäre gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jar Jar Binkswrote on 10.05.2009:[10.0] ""Ultimate Opportunist" Diesen Namen trägt Edge wohl nicht umsonst. Er trägt immer wieder den World Title. Warum und zurecht? Er bekommt den Titel zurcht, obwohl ich auch gern neue Champs sehen würde, aber als Champ ist Edge am Besten. Er spielt seine Heel Rolle grandios, der Beste neben Orton, sein Mic Work ist schwer in Ordnung und technisch ist er sowieso ausgezeichnet und da Vicky weg ist, darf er endlich wieder alleine durchstarten --> ganz klar 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: T-Waynewrote on 10.05.2009:[10.0] "Meiner Meinung nach ist er der beste Mann der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Randy85Ortonwrote on 05.05.2009:[10.0] "Mein Lieblingswrestler neben Randy Orton! Geile Ringpräsenz, geile Matches und lustig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: NewGuywrote on 03.05.2009:[8.0] "Tja 9 Runs sind schon heftig für 3 jahre! Aber naja er ist ein guter Heel! Mir gefällt nur nicht, dass er durch seine vielen "gestohlene" Titel recht schwach wirkt. Aber man merkt er darf auch schon ab und zu austeilen, so schlimm wie bei Santino Marella ist es bei weitem nicht ;-)"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: MemphYwrote on 28.04.2009:[7.0] "Meine Güte hat der sich gemausert.. echt eine starke präsenz in der wwe und mit vielen titel runs ... edit : Mir reichts langsam, wie kann ein Wrestler in 3 Jahren 9mal WHC werden? DAS IST BULLSHIT!  ich verstehe ja , dass er der beste , vielseitigste heel usw. ist , aber 9 runs ... 9 !"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Randy Orton xXx Edge xXx MVPwrote on 22.04.2009:[10.0] "Klare 10 Punkte da Edge der beste Heel seiner Zeit ist. Mich würde es freuen wenn er auch mal Legal Titel gewinnen würde. Sein Moveset ist gut, seine Mimik klasse und er schafft es ja auch immer wieder ganze Hallen zum buhen zu bringen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KingofKings1991wrote on 21.04.2009:[10.0] "Edge ist ein sehr guter Techniker. Ihm sollte die WWE größere Aufgaben geben und ein weiteren Titel dazu."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: REYMVPwrote on 19.04.2009:[10.0] "Für mich ist Edge momentan der beste Wrestler der WWE. Aber ich hätte gern ein Turn zum Face! Mit Vickie usw. ist es langweilig geworden. Und mal wieder bei Wrestlemania 25 sein Titel verloren, dass geht langsam aber sicher auf die Nerven. Aber zum Glück wurde er nicht gedraftet, denn Edge ist für Smackdown sehr wichtig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Blackbirdwrote on 18.04.2009:[10.0] "Edge ist neben Jericho der beste Heel der WWE. Sein Micwork ist dem von Jericho beinahe ebenbürtig und auch im Ring hat er einiges drauf. Allerdings gewinnt er mir zu viele Matches, indem er irgendein Hintertürchen nutzt - was allerdings gut zu seinem Gimmick passt. Zudem ist er für mich derjenige in der WWE, der außerhalb des Rings am vielseitigsten und überraschendsten ist (Elimination Chamber '09, Titelgewinn gegen Jeff und HHH). Hat zudem eine richtig geniale Mimik drauf. Keine glatte 10, aber auch keine 9, deshalb bekommt er knappe 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheGamewrote on 16.04.2009:[10.0] "Einer der besten Heels der WWE. Er ist außerdem ein sehr guter Wrestler mit exzellentem Micwork. Verdiente 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: yokosbrotherwrote on 13.04.2009:[10.0] "Edge verdient seine aktuelle Stellung in Smackdown. Er hat in den letzten Jahren viele tolle Leistungen gezeigt und sich dabei wenig geschont. Es ist ein Wunder, das in den TLC Matches vor knapp 10 Jahren er sich nicht umgebracht hat. Auch stimme ich dem Kommentar von Matt Macks zu. Ich will mehr von Edge."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Matt Mackswrote on 12.04.2009:[10.0] "Es wird Zeit für Edge, einen neuerlichen Charakterwandel durchzuführen. Die Zeit als Chickenshit-Heel an der Seite von Vickie Guerrero war auf verschiedene Weise enorm unterhaltsam, dennoch kann es nicht so weitergehen wie bisher. Auch die vielen Titel von Edge nehmen langsam komikhafte Formen an, auch wenn seine Präsenz und seine qualitativ hohe Konstanz am Mikro und im Ring diese vielen Titelwechsel einfacher verzeihen lassen. Was ich mir wünsche, ist eine Periode des Psychopathen Edge, der letztes Jahr kurz vor SummerSlam für ein paar Wochen wütete. Ein solcher Edge würde mir gefallen, auch wenn außer Shawn Michaels eigentlich kein frischer Gegner mehr im Main Event für den Rated R Superstar bereitsteht. Obwohl... Shawn Michaels vs. Edge? Book it, Vince."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: manager1977wrote on 07.04.2009:[8.0] "Nicht mein Typ Wrestler. Für mich zu wenig Ausstrahlung. Aber sehr medienwirksam. Verkauft sich super. Kommt aber bei weitem nicht an andere Wrestler ran."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheUndertakerwrote on 02.02.2009:[10.0] "DAS Perfekte Gesamtpaket der in jeder Rolle glänzt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The-Real-Diablowrote on 02.02.2009:[9.0] "Er spielt seine Rolle zwar perfekt, aber sein Gimmick stört so allmählich doch ein klein wenig. Man sollte aus ihm den Psycho-Heel machen, der auch selbstständig Matches gewinnen kann, so wie man es am Ende der Taker Fehde schon angefangen hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RatedRKO84wrote on 31.01.2009:[10.0] "Am Mic ist er einfach super er zieht immer unglaublich viel Heat auf sich, auch wenn ich der Meinung bin dass die Storyline um ihn und Vickie Guerrero langsam ausgelutscht ist, dennoch im RIng gehört er ebenfalls zu den besten in der WWE. Und dann innerhalb von drei Jahren 7 World Title Gewinne in der WWE, das kann nicht jeder ;-)."
Rating: 10.0
Sentiment: 0.29166666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RobbyUnitedwrote on 25.01.2009:[10.0] "Edge ist in der WWE von der Heel Seite wohl kaum zu übertreffen In Ring Fähigkeiten Top, Mic Work top was will man mehr."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: vida-locawrote on 23.01.2009:[8.0] "Sicher einer der besten Heels den die wwe momentan hat, trotzdem finde ich dass edge auch etwas überschatzt wird. Dass die wwe ihn kein einziges world/wwe championship match richtig gewinnen lässt wird sich eines tages rechen.... auch den Spear den er als Finisher zeigt ist viel zu soft und daher unglaubwürdig."
Rating: 8.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tomkowrote on 06.01.2009:[10.0] "Hat einfach alles, was ein Main-Eventer braucht! Den Look, die Fähigkeiten, eine unglaubliche Mimik und ein perfektes Heel-Work."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Smoky63wrote on 05.01.2009:[10.0] "Einfach bombe der Typ, der Großteil seiner Matches gefällt mir... auch als Hardcore Wrestler überzeugend, ich denke, das TLC Match (wenn es iwann mal zustande kommt) gegen Jeff könnte ein Klassiker werden..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Azarothwrote on 05.01.2009:[10.0] "In seiner Rolle als Rated R Superstar kann Edge das ausspielen, was er von allen Heels der Company am meisten hat, nämlich sein Charisma. Dass seine wrestlerischen Fähigkeiten da oft nicht vollständig zur Geltung kommen, sollte man als World-Wrestling-Entertaining(! ) Fan schon in Kauf nehmen. Zwar hat der Psycho-Edge der gegen Ende der Undertaker-Fehde einmal angedeutet wurde auch so seine Reize, jedoch bringt Adam Copeland auch in seiner "ultimate opportunist"-Rolle gerade bei PPVs auch im Ring Top-Leistungen. Eine andere Note als 10 Punkte kann man hier mMn nicht vergeben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: nicojansonwrote on 01.01.2009:[10.0] "Ist einer der besten. Tolle Story um den Undertaker letztes Jahr und einfach einmalig im Ring, wenn er mal alles zeigen dürfte. Tolles Charisma und als Heel einfach unschlagbar. Auch damals als Tag-Team Wrestler hatte er deutlich verdiente Erfolge mit Christian und seit seinem Wandel zum Rated R Superstar hat er das gefunden, wpzu er ins Wrestlinggeschäft gekommen ist, um die WWE Zuschauer zu Unterhalten. Klasse Typ im Ring, aber Persönlich ein ziemliches Arschloch(siehe Matt Hardy, dem er ja Lita ausgespannt hatte). Aber trotzed noch immer verdient da, wo er ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sallywrote on 31.12.2008:[5.0] "Wrestlerisch ist Edge wirklich kein schlechter Typ, aber in seiner Storyline mit Vicky kommt er ja kaum dazu sein Talent zu beweisen. Als er noch gegen z. B. John Cena eine Fehde hatte gefiel er mir um einiges besser."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Jakeswrote on 21.12.2008:[6.0] "Mag ihn irgendwie nicht der hat so ne schmutzige art :) Aber trotzdem super wrestler deshalb 6 punkte"
Rating: 6.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: spawnforeverwrote on 17.12.2008:[10.0] "Als Heel kommt er super rüber , für den world title ganz gut geeignet aber gleich 6 mal in ca. 3 jahren. naja dass war ja dass booking aber so würde ich sagen einer der besten die es gibt. Ringintiligenz, improvisation und wie er dass gimmick rüber bringt , obwohl ich ihn gerne wieder als Face sehen würde, aber sonst einfach pefekt"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ScrWwe94wrote on 17.12.2008:[10.0] "Unglaublicher Heel, der immer eine gute Show abliefert. Überraschungs Rückkehr 2008 bei der Survivor Series wo er sich den WWE-Title sich sichern konnte, welchen er aber wieder bei Armageddon an Jeff Hardy abgeben musste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kane15wrote on 11.12.2008:[9.0] "DER Superheel in der WWE... ohne ihn wärs irgendwie langweilig :)"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KSkevkevwrote on 06.12.2008:[7.0] "Es kotzt mich einfach an das er seine Titel noch nie ehrlich gewonnen hat! Ansonsten kann ich ihn eigentlich leiden."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: michawrestlingfanwrote on 28.11.2008:[10.0] "Der beste Heel im Geschäft. Er hat den Erfolg einfach verdient und mich freut es, dass er zurück ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Miteamexicowrote on 27.11.2008:[10.0] "Er ist einfach einer der Besten in diesem Geschäft. Er bring immer klasse Leistungen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Maikwrote on 24.11.2008:[10.0] "Also ich muss sagen Edge gefällt mir von Jahr zu Jahr besser... Als er bei RAW war, war er bis zum Ende nicht gerade Erfolgreich. Zumindest nicht so wie er es verdient hatte! Aber jetzt bei SmackDown hat er oft genug bewiesen das er es verdient im Main Event zu stehen und auch mal länger den Titel zu halten. Er hat seit dem er bei SmackDown ist (2007) bereits 4 mal sich den höchsten Titel des Brands gesichert, super Matches mit Batista und Undertaker gehabt und durfte sogar WrestleMania headlinen zusammen mit dem Undertaker. Außerdem mag ich den "Psycho-Edge" zudem der Undertaker ihn gemacht hat. Alles in allem hat er sich die 10 Punkte 100%ig verdient!"
Rating: 10.0
Sentiment: 0.09829059829059827
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Ayatollah of RocknRollahwrote on 24.11.2008:[10.0] "Ein Phänomen! Er kann jede Crowd gegen sich aufbringen und steht nicht umsonst an der Spitze der WWE auf Seiten der Heels. Er ist der Beste im Business im Moment und sorgte mit dem Undertaker dafür, dass SmackDown! mich fast ein halbes Jahr weit mehr interessiert hat als RAW. Seit seinem Heel-Heel-Turn macht er einfach noch mehr Spaß mit seinem Psycho-Gimmick. Er wird auf lange Sicht der beste Heel bleiben, da er auch am Mic, bei der Ausstrahlung und den Ringskills nahezu keine Schwächen aufzeigt."
Rating: 10.0
Sentiment: -0.015384615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Animal360wrote on 24.11.2008:[7.0] "Wieder Champ, Klasse Entertainer aber sein Gimmick vom Bösen buben ist mir zu "ausgelutscht" deshalb nur 7 pkt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Hitman-Hartwrote on 24.11.2008:[10.0] "Ich bin Edge Fan seit ich ihm zum ersten Mal im Ring gesehen habe. Sehr viel Charisma, gutes Mic Work und seine In-Ring Skills sind wirklich klasse! Er hat einfach alles drauf. Ein kompletter Wrestler. Leider... ja leider gibt es einen Knick in seiner wirklich guten Karriere... und der Knick begann mit Vicky Guerrero. Was soll das? Was möchte die WWE damit bezwecken? Wollen sie Edge unglaubwürdig darstellen? Als ein Weichei der es nicht alleine hinbekommt Champion zu werden? Ich finde es wirklich schade das die Fehde mit dem Undertaker ziemlich versaut wurde. Sowas hat die Fehde um beide Wrestler nicht verdient. Edge sollte sich von seinen Edgeheads und vorallem von Vickie Guerrero lösen und endlich wieder zeigen was er kann! Richtig gut Wrestlen und Entertainen! Daher bekommt Edge jetzt noch eine 2 von mir. Ansonsten klar eine 1... aber erst wenn er wieder der gute alte Edge ist ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: mdbnasewrote on 23.11.2008:[10.0] "Sowohl als Face als auch als Heel überzeugend. Guter Wrestler, gutes Mic-Work, glaubhaft und immer unterhaltsam. Daher bleibt keine ander Möglichkeit... 10pts."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: undertaker619wrote on 23.11.2008:[10.0] "Edge ist der beste Heel der ganzen WWE und wird hoffentlich bald wieder WWE Champion sein!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: domi1984wrote on 17.11.2008:[10.0] "Edge hat ein tolles Mic Work und im Ring ist er klasse. Neben Jericho mein Fav. bei der WWE. Klare 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The System Failedwrote on 14.11.2008:[10.0] "Er ist definitiv der Beste Heel der WWE. Seine Promos sind jedesmal nahezu perfekt, er hat eine unglaublich starke und unverwechselbare Mimik und Gestik und schafft es schon vor dem ersten Wort mehr Heat zu erzeugen, als jeder andere Wrestler. Auch im Ring ist er klasse und sehr abwechslungsreich. Absoluter Top-Worker, der jeden der 10 Punkte mehr als verdient hat!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rocky-Takerwrote on 12.11.2008:[10.0] "Einfach nur Hammer. Der Mann versteht sein Fach und weiss zu Unterhalten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: hostrodwrote on 11.11.2008:[9.0] "ohne Worte - er lebt seine Heel-Rolle einfach. Den Punkt Abzug gibts nur wegen der manchmal zu theatralischen Mimik, wenn er sauer ist."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LordTrailerwrote on 09.11.2008:[10.0] "Edge Leistungen sind nicht nur hervorragend sondern auch unheimlich konstant. In einer Zeit in der es Heels nicht leicht haben, beständig als solche wahrgenommen zu werden, bleibt nur die 10. Wrestlerisch (in der WWE) und vom Charisma her einfach eine Bank."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Zizouwrote on 06.11.2008:[4.0] "Hat mir zuletzt in der Vickie-Storyline im Gegensatz zur Batista-Story gar nicht mehr gefallen. Zu übertrieben und als Psycho-Edge nicht mein Fall. Das Gimmick müsste für meinen Geschmack in eine andere Richtung entwickelt werden."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: squadra3wrote on 06.11.2008:[9.0] "Hat mir früher nicht wirklich gefallen, aber aktuell ist sein Gimick perfekt auf seine Fähigkeiten abgestimmt. Hoffe das sich bei seiner Rückkehr da nichts ändert!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Semcoolwrote on 02.11.2008:[10.0] "DER Heel in der WWE da er seine Rolle als Psycho-Edge genial spielt und absolut mein Lieblingswrestler ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Johnnywrote on 25.10.2008:[10.0] "Ich habe noch nie einen Wrestler mit einer besseren Ausstrahlung gesehen!  Heal hin oder her, der Charakter "Edge" ist einfach außergewöhnlich, sodass ich nichts anderes als 10 Punkte vergeben kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: alkoholiKAwrote on 17.10.2008:[10.0] "Ein Perfekter Worker. Genial im Ring (was viele manchmal übersehen) und am am Mic. Zudem ein extrem guter Schauspieler, spielt die Rolle als feigen Angsthasen perfekt. Man bedenke nur manchmal seine Gesichtsausdrücke wenn er in seinen Promos durch die Musik vom Undertaker oder Batista unterbrochen wird^^ Bester Heel der WWE!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: edge141wrote on 07.10.2008:[10.0] "EDGE ist auf jeden Fall einer der besten Wrestler der WWE! Er hat alles was ein guter Wrestler braucht. dazu ist er einer der besten heels und ein super Schauspieler !"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: El Reywrote on 07.10.2008:[8.0] "Einer der aufstrebenden und zugleich zwielichtigen Worker. Er ist als Champion glaubwürdig aber sollte mehr Matches clean gewinnen. Hinter den Kulissen mag ich ihn eher nicht so sehr weil ich ein großer Matt Hardy Fan bin aber bei dieser Geschichte war Lita nicht ganz unbeteiligt"
Rating: 8.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: E-T-Wrestlerwrote on 06.10.2008:[10.0] "Edge ist ein perfekter Wrestler, der mit viel Technik und effizienz seinen Gegner besiegt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SeEn2005wrote on 05.10.2008:[10.0] "Ein unglaublich guter Wrestler, der eine tolle Leistung bei seiner Fehde gegen den Taker gezeigt hat. Ich hoffe, sein Können wird von der WWE gut weiter genutzt, denn es wäre schade, wenn so ein Talent vergoldet wird ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RBoss90wrote on 01.10.2008:[10.0] "Edge im letzten Jahr der Hauptgrund gewesen, warum ich SmackDown! so aufmerksam verfolgt habe. Lieferte sich mit dem Undertaker eine Fehde, die in die Geschichtsbücher eingehen wird, schon dadurch, dass sie über ein Jahr dauerte und trotzdem nie langweilig wurde. Im Ring kann er auch mich schwachen Wrestlern gute Matches abliefern und er verkörpert sein Rated R Superstar Gimmick perfekt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Scotty 2 Hottywrote on 01.10.2008:[10.0] "Genialer Heel, der sowohl am Mikrofon als auch im Ring zu überzeugen weiß. Im Ring hat er über die Jahre hinweg zwar ein wenig nachgelassen, dafür steigerte er sich aber stetig am Mikrofon. Ein weiterer Punkt, der die vollen 10 Punkte für den Rated R Superstar rechtfertigt ist, dass er so gut wie jede Matchart mitgehen kann. Egal ob Hardcore, Ladder, TLC oder ein einfaches Singles Match, Edge überzeugt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ghostwrote on 29.09.2008:[7.0] "The (ove)R-rated Superstar - Edge. Obwohl ich ihn eigentlich ziemlich gut finde, in der Heel-Rolle vermag er zu überzeugen, fand seine Fehde mit Cena besonders gut - finde ich aber dass er etwas overrated ist. Gerade die sehr lange dauernde Story mit Vicke Guerrero hat mir kaum gefallen, und ich begreiffe nicht ganz wieso die Grimassen und Heel-Gestiken von Edge als das beste was es gibt bezeichnet wird - ist mir schleierhaft, da es doch ziemlich an der Grenze zu schlecht geschauspielert ist."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: SirFlubbi42wrote on 29.09.2008:[10.0] "Der beste Heel den ich bewusst mitbekommen habe. Ist einfach genial was seine Entertainerfähigkeiten angeht. Im Ring hat er im Tag Team und mittlerweile ja auch solo, nicht nur überzeugt, sondern sogar Standards gesetzt. Ein komplettes Paket an Spielfreude, Athletik und korekter Einstellung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: StoneColdRevowrote on 28.09.2008:[10.0] "Wer ist der beste Heel im ganzem Jahr? Das ist wohl Edge. Er ist gut im Ring und hat ziemlich gutes Mic-Work."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: GoddeKSCwrote on 26.09.2008:[10.0] "Edge ist einfach der beste Heel der Liga zur Zeit! Das sieht man schon alleine an der Tatsache, dass Edge nur im Ring stehen muss um Buhrufe zu ergattern wie es sie schon lange nicht mehr gab! Im Ring top und eine Schauspielkunst, dass sich die Hollywood-Stars bald Sorgen machen müssen!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: HCN007wrote on 21.09.2008:[10.0] "Edge ist wohl ein extrem guter polarisierender Heel, der eigentlich jede Sparte eines Heels bedienen kann. Die TT-Zeit mit Christian, dann der Split bishin zu den MITB-SLs und die Fehden gg. Foley, Cena, Batista und den Undertaker haben gezeigt, dass er nicht nur einer der größten ist, er ist momentan das Beste, was die WWE zu bieten hat. Top im Ring, Top am Mic, Charisma und Ringpräsenz ohne Ende und wohl der beste Schauspieler der WWE."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Theron083wrote on 19.09.2008:[10.0] "Edge gehört für mich zu meinen absoluten Favoriten. Er ist ein klasse Wrestler und ein extrem guter Heel. Besser gehts einfach nicht find ich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Julezwrote on 07.09.2008:[10.0] "Er ist ein Top-Wrestler und ein großartiger Heel. Wenn man nur an die TLC-Matches zurückdenkt, bekommt jeder Fan eine Gänsehaut. Die Fans lieben es, ihn zu hassen. ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Niklas1106wrote on 04.09.2008:[10.0] "Erstklassiger Schauspieler, der seine Rolle glaubhaft verkörpert. Wrestlerisch kann ich keinen Schwachpunkt an ihm finden. Er ist ein guter Maineventer und momentan der Heel der WWE schlechthin."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: King of Queenswrote on 04.09.2008:[10.0] "Um die 10 Punkte kommt man bei Edge einfach nicht mehr vorbei. Die jüngsten Promos sind genial, die Matches mit dem Undertaker saustark, seine schauspielerischen Fähigkeiten einzigartig. Edge verkörpert mit Jericho momentan DEN Heel der WWE und wird sich mit weiterhin konstanter Leistung sicherlich noch mehr als einmal WWE-Champion nennen dürfen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tripple-Dwrote on 29.08.2008:[10.0] "der top heel der letzten jahre! super mic-skills mit nahezu perfekter gestik und mimik... obwohl ich eigentlich kein großer fan von EDGE bin, muss ich das nahtlos annerkennen - 10 punkte"
Rating: 10.0
Sentiment: 0.47916666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Blue Meaniewrote on 25.08.2008:[10.0] "In den letzten Monaten hat er einfach nur überzeugt und das in allen Belangen. TOP"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: carlos4wrote on 24.08.2008:[7.0] "Derzeit der klar beste Heel von Smackdown... Bei RAW seh ich Jericho & Orton vom Potential her auf einer ähnlichen Stufe wie Edge. Ich find seinen Gimmickwandel durchaus gut, da es mittlerweile schon direkt genervt und nicht mehr überrascht oder ähnliches hat, als Hawkins & Ryder oder andere zum Ring kamen und ihm halfen. Allerdings weiß ich nicht, ob mir das Psychopathen- Gimmick gefällt, da ich Übertriebene Gestik nicht mag und das grad bei Edge oft übertrieben ist, weshalb ich auch einiges an Punkten abziehe. Er hat gute schauspielerische Fähigkeiten, aber für mich ist weniger oft mehr, grad in Punkto Gestik & Mimik."
Rating: 7.0
Sentiment: -0.11538461538461539
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Wise Warriorwrote on 22.08.2008:[7.0] "Obwohl bei mir Entertainment weit über dem Wrestlerischen steht kann ich Edge keine wirklich hohe Wertung geben. Der Edgemeister ist ein charismatischer Clown und am Mikrofon unschlagbar, aber für mich sind seine Single-Matches eine wahre Qual. Ich kann mich nicht erinnern, ob er neben dem Speer noch einen anderen offensiven Move beherrscht..."
Rating: 7.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Frutzwrote on 18.08.2008:[10.0] "In den letzten Wochen und Monaten hat Edge sich zu meinem absoluten Top-Heel entwickelt. War ich nach meiner Rückkehr noch skeptisch, was seinen Status betraf, bin ich mittlerweile nur noch begeistert von ihm. 5-Sterne-Promos wöchentlich, im Ring seit je ein starker Wrestler und mit einer Fähigkeit für Mimik und Gestik ausgestattet, die beängstigend gut ist. Er ist der Top-Star im SD-Rooster und einer der Garanten dafür, dass sich das blaue Brand ganz allmählich vom B-Show-Status befreit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: nacho83wrote on 17.08.2008:[9.0] "Das einzige, was ich spontan kritisieren kann, ist die Tatsache, dass der Mann ein wenig sehr verletzungsanfällig ist. Ansonsten eines der grössten Talente, die in der WWE gerade vorhanden sind."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DarkIcewrote on 15.08.2008:[9.0] "Ich würde am Liebsten 9, 5 geben, geht nur nicht^^ Die WWE hat in ihm einen, und dafür dürft ihr mich verfluchen, Anti-The Rock. Gutes bis Sehr Gutes Micwork, klasse In Ring Action (sofern zu sehen). Er ist im vergleich zu Rock einfach nur verhasst. Für mich derzeit der beste bei SD"
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Yetiwrote on 15.08.2008:[10.0] "Für mich ist Edge derzeit DER Wrestler der WWE und DER Grund, Smackdown zu gucken. Jede Woche eine Hammerpromo, interessante Story + Charakterentwicklung, schauspielerisches Talent und gutes Wrestling. Edge ist wirklich das Maß aller Dinge. Mir fällt kein besserer Heel ein. Wenn es ums Heelsein geht, sag ich nur eins: Triple H kann einpacken!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: wwegirlwrote on 13.08.2008:[9.0] "Sehr gut hoch gearbeitet! Manchmal einfach nur nervig und overrated aber er spielt seine Rolle sehr gut!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated-RKOwrote on 12.08.2008:[10.0] "Zur Zeit der beste Heel der WWE er macht seinen Job super deswegen ist er ja mein Favorit bei SD! er hat einfach das Talent Heat auf sich zu ziehen."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: sono fagunwrote on 06.08.2008:[10.0] "Der Topheel der Firma, er ist einfach der ultimative Bösewicht, ein super Schauspieler und Wrestler. Mimik, Gestik und Ausdruck: top! Die Storyline mit Vickie stört mich zwar, reicht aber nicht für einen Punkt Abzug."
Rating: 10.0
Sentiment: 0.47916666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Stephanwrote on 05.08.2008:[9.0] "Ich mag ihn nicht besonders aber er ist ein ganz großer was sein Micwork und und seine Faces angeht mich stört ein wenig die Geschichte mit Vicky aber das hat sich ja jetzt wohl erledigt obwohl ich ein Old Scool Fan bin und Ihn nicht mag trotzdem 9 Punkte für seine gute Arbeit"
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rookie of the Yearwrote on 04.08.2008:[10.0] "Für mich momentan einer der überzeugendsten Wrestler der WWE. Man nimmt ihm sein Gimmick voll und ganz ab. Technisch hängt er zwar manchmal etwas hinterher, aber das tut seiner guten Arbeit keinen Abbruch, finde ich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Edibaswrote on 04.08.2008:[10.0] "Derzeit das beste Gesamtpaket im Wrestlingbusiness. Er kann in jedem Gebiet überzeugen, egal ob im Ring oder am Mikro. Charisma besitzt Edge ohne Ende und ist derzeit einfach der beste Mann im Business."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Legendkiller rated rkowrote on 04.08.2008:[10.0] "So, meiner Meinung nach ist Edge der wohl beste Worker, den die WWE zu bieten hat!  Einen besseren Heel gibt es zurzeit nicht, er hat auch schon Triple H bei weitem überholt, denn die letzten 2 Jahre drehten fast nur um den Rated "R" Superstar, sein Micwork ist einfach einsame Spitze, man kauft ihm seine Promos, da er sie sehr realistisch rüber bringt und Konkurenz brauch er zurzeit nicht fürchten, denn in SD! beherscht er das geschehen. Wenn ich mir allein schon seine Mimik und Gestik angucke allein bei der Hochzeit! Wie er alles rübergebracht hat und seine miesen Aktionen, einfach herrlich, als Triple H reinkam und Edge sich verhalten hat. Einfach großartig, er ist für der wohl einzigste Grund warum ich SD! einschalte. Er bringt auch Faces perfekt rüber, weil er den Heat der Fans magisch anzieht. Und er ist nicht nur ein großartiger Schauspieler, nein!  Im Ring überzeugt er auch!  Ein grund mehr warum ich mich auf das Hell in a Cell beim Summer Slam freue, denn er wird dort"
Rating: 10.0
Sentiment: 0.6103515625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Batista619wrote on 30.07.2008:[10.0] "Der wird sich noch öfter die wichtigsten Titel der WWE umbinden. Super Wrestler. super am Mic super wrestlerischeres Können und er hat ein Riesen Charisma."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated-R Starwrote on 29.07.2008:[10.0] "Der BESTE Heel aller Zeiten. Spielt seine Rolle mehr als perfekt. Mehr gibts auch nicht zu sagen. 10 Punkte plus..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Swanton-Bombwrote on 27.07.2008:[10.0] "Viel Charisma, exzellente Ring-Skills, tolles Mic-Work, super Heel, genialer Schauspieler und noch vieles mehr. Ohne Zweifel 10 Punkte!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: flo99wrote on 27.07.2008:[10.0] "DER Heel der WWE. An ihn kommt im Moment nicht einmal Chris Jericho an. Am Mic gehört er für mich nicht zu den Allerbesten, ist aber sehr gut, Charisma hat er auch und er liefert die besten TV-Matches des Jahres(v. a. gegen CM Punk, Big Show und Matt Hardy)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Raptorwrote on 23.07.2008:[10.0] "Bester Heel der WWE, ganz einfach hier 10 punkte zu vergeben"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Main Eventwrote on 20.07.2008:[10.0] "Edge ist wirklich einer der besten Wrestler der Welt. Er kann auch unheimlich gut schauspielen und sein Mic Work ist auch beachtlich."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kane123wrote on 14.07.2008:[10.0] "Er ist der beste Heel den WWE hat........... und mic-work ist wirklich super............... Wrestlerisch hat er auch was drauf"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Movadowrote on 13.07.2008:[9.0] "Er ist nach Meinung vieler, auch nach meiner eigenen, der beste Heel den die WWE zur Zeit hat. Besser noch als Orten. Er könnte, nein er wird eines Tages den Rang eines Ric Flairs haben. Schon allein seine Leistungen am Mic, seine ganze Gestick und Mimik, die Art wie er die Storylines Umsetzt, einfach einer der Besten die bisher gesehen habe. Ganz zu schweigen von den In-Ring Qualitäten, er kann fast alles. Der einzige Grund warum ich keine 10 geben kann ist einfach die Tatsache das es noch Luft nach oben gibt. In ein paar Jahren wird er mehr als eine 10 verdient haben."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Adam-Copelandwrote on 10.07.2008:[10.0] "Er liefert alles... Toller Heel, gute Mic Arbeit, Tolle Matches! Das einzige was Edge derzeit fehlt ist der Gürtel :D!  Leider findet die Hochzeit jetzt doch statt, ABER die soll ja vom Undertaker unterbrochen werden! Hoffe es wird eine ähnliche Fehde wie gegen Kane."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: hanseplastwrote on 06.07.2008:[10.0] "Zur Zeit der beste Heel den es in der WWE gibt. Allein sein Mic-Work, seine Mimik und seine Körperspache in den Promos sind schon genial und seine (Wrestling)aktionen sind auch top. Ein unglaublicher Typ, den man einfach nur hassen kann als mitfiebernden Wrestlingfan!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Peisistratoswrote on 05.07.2008:[10.0] "Dank seiner momenaten Form als Heel hab ich meine Note abermals verändert und vergebe Edge nun die Höchstnote. Er gefällt mir als Heel immer besser, gerade jetzt, da jetzt auch noch eine psychopathische Komponente in seinen Handlungen hinzukommt!  Bitte mehr davon!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kevichenkowrote on 02.07.2008:[10.0] "Edge ... ja sehr guter Heel. Spielt seine Rolle als Heel extrem gut. Sehr gutes Wrestling und sehr gutes Mic-Work ... volle Punktzahl ! Auch wenn ich ihn nicht sonderlich mag^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bandiwrote on 02.07.2008:[10.0] "Für mich der derzeit beste Heel der WWE, absolut überzeugend macht keine Fehler im Ring und Gestik einfach Weltklasse Bin gespannt wie es mit seiner "Familia" weitergeht"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: THEROCK316wrote on 01.07.2008:[10.0] "Er ist der PERFEKTE Heel Auch wenn die Sache mit Vickie jetzt langsam vorbei sein koennte und er alleine arbeiten oder mit einer schoenen Frau zusammen betruegen koennte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Phenomwrote on 22.06.2008:[10.0] "Bei meiner glaube ich 5. 10 Punkte Bewertung werde ich bestimmt bald wieder eine Warnungsemail bekommen, aber hier ist das einfach nicht anders möglich. Denn wer hat mehr Charisma, Austrahlung, und bessere Mic skills als Edge? Genau, keiner! Im Ring ist er ebenfalls ein Ass, hat jeden einzelnen seiner Titel verdient, und sollte meiner Meinung nach niemals aufgegeben werden. Bitte WWE, dieser Mann muss einfach mal in die Hall of Fame. Nunja, gut das sein Potenzial zur Zeit auch genutzt wird, ich wünsche ihm viel Glück!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The-SwiZZlerwrote on 18.06.2008:[10.0] "Einer der Besten der letzten Zeit.. Super Mic-Work, Super Technik im Ring, Kann auch mal ins Extreme gehen... Alles was ein Top-Star braucht.... World Title absolut gerecht erhalten !"
Rating: 10.0
Sentiment: 0.17013888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Nedgewrote on 13.06.2008:[10.0] "Edge ist ein ziemlich kompletter Wrestler. gutes Gimmnick, gutes Mic work und gute Ringfähigkeiten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Riley Mathewswrote on 10.06.2008:[10.0] "Definitiv der Top-Heel der WWE. Viel Charisma, Klasse Micwork und er ist auch ein guter Techniker und hat natürlich schon viel harte Bumps (speziell in den TLC-Matches) hingelegt. Schade nur das die Technik etwas leidet wenn er ein Heel ist aber darüber sehe ich jetzt mal hinweg."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: andrekoenigwrote on 08.06.2008:[8.0] "Edge ist ein Wrestler der schon viel in seiner Karriere überstehen musste. Er war bei jedem TLC Match dabei und hat sich eigentlich immer verletzt, was bei diesen Matches eigentlich kein Wunder ist. Der Rated 'R' Superstar verkörpert die Rolle als Heel perfekt und wirkt auch immer glaubwürdig. Der größte Markel bei Edge ist: das wenn er der Heel ist, seine Technik darunter leidet. Er zeigt zwar ansehnliche Matches, aber wenn er ein Normales Match bestreitet schaft er es selten ein 4 Sterne Match zu kreieren."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jimpanse1980wrote on 05.06.2008:[10.0] "Update: Edge ist The Man bei Smackdown und der beste, weil frischeste, Heel, seit langem. Kann jede Art von Matches gehen, wirkt immer überzeugend. Von seinem Charisma und seinem Micwork brache ich hier nicht weiter zu sprechen. Auch in Zusammenarbeit mit "La Familia" ganz großes Kino"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DeadHeadwrote on 04.06.2008:[10.0] "Er ist der beste Heel der WWE, er hat eine sehr gute Technik und er schafft es auch immer wieder sehr gute Matches abzuliefern. Das ist die 1. ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: xXShawnMichaelsXxwrote on 03.06.2008:[10.0] "Einfach ein sehr guter Wrestler er weiß was er macht und entertaint mit seinem Heel Gimmick"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rob the bobwrote on 24.05.2008:[9.0] "Er hat mich in letzter Zeit Vollkommen überzeugt. Er macht seinen Job gut und ist sehr authentisch. Er kann auch was, nicht wie der rest, der von der WWE gepuscht wird.. mal gucken wies mit dem Wahren "Mr. Money in the Bank" weitergeht.."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sockewrote on 23.05.2008:[10.0] "bester Heel in der WWE, legendäre TLC-Matches, als Single-Wrestler sogar noch besser, logo 10 Punkte, nur die aktuelle Story mit Vickie & dem Taker nervt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Deadman walkingwrote on 20.05.2008:[8.0] "Okay bleiben wir fair auch wenn Ich ihn völlig unsympatisch finde und die Fehde mit dem Taker nervt nur noch, er ist ein Top Wrestler mit tollen Moves."
Rating: 8.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DirtiestPlayerwrote on 08.05.2008:[10.0] "Perfekter Heel. Perfekte Ausstrahlung. Nur seine Story mit Vickie Guerrero gefällt mir in letzter Zeit nicht so gut. Wünsche mir eher jemanden wie z. B. Layla an seiner Seite. Wäre noch mehr etwas fürs Auge. Aber egal, trotzdem ganz klar Note 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheBigBwrote on 29.04.2008:[8.0] "Auch wenn ich Edge nicht mag , er ist ein Riesentalent im Ring , sehr gute Technik und sehr überzeugende Reversals die er zeigt , das Ratet R Superstar - Gimmick passt sehr gut zu ihm . Ich muss Edge doch sehr loben , obwohl ich Undertaker-Fan bin . Leider gibt es nur die Note 2 da die WWE Edge zu einer Witzfigur gemacht hat , ich finde die Affäre mit Vickie Guerrero einfach nur lächerlich !"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LexLuger4everwrote on 22.04.2008:[10.0] "Ob man Edge mag oder nicht, muss man zweifellos anerkennen, dass er sich seit 2005 zu DEM Heel der Company gemausert hat! Edge ist für mich von der Entwicklung her der Mann der letzten Jahre: überragende Mic-Skills, an Mimik und Gestik einfach nicht zu überbieten und auch im Ring ziemlich stark. Wenn er keine 10 Punkte bekommen soll, dann bekommt sie niemand."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: X-Raywrote on 17.04.2008:[10.0] "Ein Vollblutwrestler. Gibt immer mehr als 100%! Sei es am Mic oder im Ring oder Backstage. Er kann nichts mehr verbessern, daher Rated 10 Superstar!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rob Van Duesenschrauberwrote on 15.04.2008:[9.0] "Hat in den letzten Jahren eine irrsinnige Entwicklung hinter sich. Edge ist jetzt nicht umsonst ein Main Eventer und da gehört er jetzt auch hin."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Fran7iCwrote on 12.04.2008:[10.0] "Starker Wreslter mit super Attitüde zum Leben. zZ. Bestes und sehr erfolgreicher Wreslter. Mein #1 Favorit"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Die Gurkewrote on 10.04.2008:[9.0] "Mein 2t liebster Heell nach Jericho. Gute In-Ring Skills und gutes Mic-Work, allerdings finde ich sein Heel-Gimmick manchmal etwas übertrieben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Blade Bourdeauxwrote on 10.04.2008:[9.0] "Man merkt ihm einfach an, dass er seinen Traum lebt. Der derzeit beste Heel der WWE, eigentlich zu schade für die aufgezeichneten Shows von SD, aber da kann er wenigstens in seiner Rolle glänzen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: nightfallwrote on 10.04.2008:[9.0] "Eine Kleinigkeit stört mich an ihm. Ich kann aber nicht genau sagen was. Ansonsten einer, wenn nicht der, Beste(n) aktuelle Sports Entertainer."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ditrhavwrote on 10.04.2008:[5.0] "Ich verstehe nicht und werde es nie verstehen was die Smarks an diesem Kerl finden. Gerade sein so oft und viel gelobtes Charisma kann ich nicht entdecken. Von der Mimik her halte ich ihn für einen ganz schlechten Schauspieler, sein Micwork ist aber in Ordnung. Wrestlerisch mag er einiges drauf haben, allerdings sieht man davon in letzter Zeit nicht mehr allzu viel, da Mr. Copelands Gimmick darin besteht sich die Siege zu erschleichen ohne viel einstecken zu müssen. Wenn der Mann endlich mal wrestlen darf und eine ordentliche Storyline bekommt bin ich gerne bereit mein Urteil zu revidieren, aber so gibt es zunächst nur eine mittelmäßige Note."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ultimativboesewrote on 30.03.2008:[6.0] "Alle lieben ihn.. alle finden ihn toll. "Bester Wrestler der WWE usw" Er ist in meinen Augen gut.. aber auf dauer ziemlich nervtötend"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ultimate-warrior-xwrote on 29.03.2008:[10.0] "Einfach nur genial was Edge abliefert. Schade nur, dass er aufgrund seines Gimmicks als feiger Heel im moment nicht alles zeigen kann wass in ihm steckt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Urbaner1982wrote on 26.03.2008:[10.0] "Edge ist der Old School Heel schlechthin. Leider doch in letzter Zeit ein wenig abgebaut. Ich erinnere mich da noch an den Hair v. s. Hair Match gegen Angle. Ganz groß! Und aufgrund seiner Vergangenheit, auch ne 1. Hoffe inständig, dass er irgendwie den Title behält..."
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Hunter2007wrote on 21.03.2008:[10.0] "Die WWE hat heute kaum einen besseren Heel als Edge. Im Ring ein Talent, am Mic wird es bei ihm nie langweilig! Er ist einfach in jeder Hinsicht genial, egal was er macht. Er schafft es, dass man ihn so richtig hasst und ihn dennoch bewundert. Sowas ist schon selten bei Heels zu sehen. Auch in WWF-Zeiten hat er ordentliches bewirkt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: edge-head92wrote on 15.03.2008:[10.0] "Gegenwärtig der beste Wrestler der WWE!  Sowohl im Ring als auch am Mikro."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheBastion90wrote on 15.03.2008:[10.0] "Als Heel Wunderbar, als Face eher Fade. Klasse Mainevent Fehden mit Unterhaltungswert. Ein Mann mit Charisma, Ausstrahlung und Fähigkeiten im Ring. Zwar des öfteren durch Verletzungen zurückgeworfen, aber immer wieder zurückgekommen und wie es mir scheint jedesmal ein Stückchen besser!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Instant Classicwrote on 13.03.2008:[8.0] "Ein guter Wrestler mit viel Charisma, der seinen Gott-Status bei den Smarks allerdings einfach nicht verdient hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: AnFuwrote on 02.03.2008:[10.0] "Edge ist genial, hat sich den World Heavyweight Title fast direkt nach seiner Verletzung wieder umgeschnallt und ist das auch völlig zurecht! Er verkörpert sein "Rated R"-Gimmick perfekt und benötigt jetzt nicht mal mehr die geniale Lita an seiner Seite. Sein Charisma ist klasse und am Mic ist er sowieso einer der Besten. Bestnote und aus!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Giant2wrote on 28.02.2008:[6.0] "Also, tut mir Leid, ich kann mit Edge absolut nichts anfangen. Er wird, weil kein Besserer da ist in diese Position gepresst und hochgejubelt. Nein, da sind Orton und auch Kennedy besser."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: kikibuwrote on 28.02.2008:[4.0] "Entertaiment mag ja wichtig sein, aber Er vergisst halt worum es wirklich geht beim Wrestling."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Kaefigtierwrote on 26.02.2008:[10.0] "Er ist momentan einer der besten Worker der WWE. Sein Gimmick ist genial. Edge ist sehr charismatisch und ein sehr glaubwürdiger Heel. Wrestlerisch ist er auch top. Ich finde es nur schade, dass er den Titel bei Wrestelmania voraussichtlich an den Undertaker verlieren wird."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Tee777wrote on 19.02.2008:[8.0] "Hatte ihm zuerst ne 5 gegeben aber er wird immer besser vorallem sein Finisher ist klasse! Zurecht Champion freue mich auf das Wrestelmania Match mit dem Undertaker!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Joeevil123wrote on 19.02.2008:[10.0] "Der Imo beste Wrestler der WWE. Hätte ich vor ein paar Jahren niemals gedacht , hat aber eine enorme Entwicklung vollzogen. TOP!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Fumaryuwrote on 07.02.2008:[10.0] "Edge gehört zu den Großen der WWE. Gute Schauspielerei, aber auch gute wrestlerische Fähigkeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Father Frostwrote on 07.02.2008:[10.0] "Edge ist momentan DER unterhaltsamste Wrestler bei Smackdown und WWE überhaupt! So lange musste er in der MidCard darben und jetzt, and der Spitze, haut er so dermaßen auf die Kacke, dass es eine wahre Freude ist. Den Heel gibt er so wunderbar fies und hinterhältig (mit der richtigen Note Selbstironie)- schade nur, dass er seine derzeitigen Matches auf Teufel komm raus unfair gewinnen/verlieren muss. Ein bisschen könnten die Autoren auf seine Fähigkeiten Rücksicht nehmen, die kommen leider zu kurz. Jemandem mit seinem Charisma wünsche Ich noch eine lange Titelregentschaft!"
Rating: 10.0
Sentiment: -0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Baxiwrote on 30.01.2008:[10.0] "Er ist sicherlich einer der unterhaltsamsten Wrestler in der WWE, hervorragend am Mic und seine ring-Fähigkeiten waren zumindest mal sehr gut. Im Moment verstehe ich nicht warum man ihn JEDES Match durch DQ gewinnen lässt, Heel in oder her. Obwohl es nach seiner Verletzungsgeschichte verständlich ist das es keine so riskanten Matches mehr gibt wie in seiner WWF Zeit, denke ich aber das er immer noch mehr könnte als er derzeit im Ring zeigen darf. Wenn ich dann mal von der aktuellen Phase absehe hat er meiner Meinung nach immer noch ein "sehr gut" verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: D3adm4nwrote on 29.01.2008:[10.0] "DER Top-Heel zur Zeit. Da kann HHH so viel intrigieren wie er will, zur Zeit führt am WHC kein Weg vorbei."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Redmoskau9wrote on 22.01.2008:[10.0] "Ohne Ihn würde ich schon lang kein Smackdown mehr gucken. Er brachte einfach frischen Wind rein. Sein Gimmik ist ihm auf den Leib geschnitten. ^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Muutzwrote on 19.01.2008:[10.0] "Mir gefällt dieser Heel-Gimmick von Tag zu Tag mehr. Seine Mikeskills sind für mich auch besser als manch anderer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ibanezwrote on 07.01.2008:[10.0] "Ne Glatte 1... Wrestlerische Fähigkeiten, Micwork, Entertainment.... alles Top!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Stone Cold Andywrote on 04.01.2008:[10.0] "Einer der besten Heels und überhaupt besten Wrestler des 21. Jahrhunderts. Ein tolles Heel- Gimmick, gute Leistungen im Ring und am Mikrophon- das alles macht Edge zu einem absoluten Topstar."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: mr sledgehammerwrote on 04.01.2008:[10.0] "Genialer Wrestler. Genialer Heel. Früher ein sehr überzeugender Face. Ausgezeichnete In-Ring-Skillz und talentiert am Mic. 10 Punkte für den Rated-R-Superstar sind wohl das Mindeste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Champwrote on 04.01.2008:[10.0] "Gehört zu den Besten im Biz. Starker Wrestler und stark am Mic! Spielt seine Rolle als Heel perfekt. Von ihm können andere Heel-Champs noch einiges lernen."
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "The Rated R Superstar ist zur Zeit einer der besten Wrestler der WWE und hat sich den Run als Champ verdient-hoffentlich kann er den Titel lange halten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: yogywrote on 01.01.2008:[10.0] "Hoffentlich bleibt er jetzt mal länger Champion-mindestens bis zur WM. Er hat sichs verdient und sein Rated-R Superstar Gimmick ist echt klasse!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Rated HHHwrote on 01.01.2008:[10.0] "Wie ich finde bester heel in der wwe. Wrestlerisch auch gut und am mic wird er auch immer besser."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: KIIIIING NIKITAwrote on 28.12.2007:[10.0] "Hervorrangeder Wrestler mit grandiosem Micwork. Ich kann ihn nur zu seinem Aufstieg ins Mainevent beglückwünschen. Von einem Tag team Wrestler zu einem Übergangschamp(gegen CEna) zu dem HEEL von Smackdown überhaupt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RhinoRaineswrote on 25.12.2007:[10.0] "Aktuell wahrscheinlich der beste Heel im Biz! Ein sehr würdiger World Champion, der hoffentlich endlich mal einen längeren Titlerun bekommt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TheAdaawrote on 24.12.2007:[8.0] "Er kann wrestlen keine Frage, aber warum zum Geier wird er so schwach dargestellt? In meinen Augen ist er ein großartiger Heel, der aber total falsch gebookt wird. Er benötigt ständig Hilfe, liegt in Matches hinten an und gewinnt nur durch Glück. Wie gesagt, in meinen Augen geht die WWE das Booking von Edge falsch an."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Meanbeastwrote on 09.12.2007:[10.0] "Klasse Heel, einer der Besten seit langem, kann auch wrestlerisch gesehen TOTAL überzeugen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Pulpulwrote on 28.11.2007:[8.0] "Auch wenn er wrestlerisch irgendwann einfach auf der Stelle stehen geblieben ist, hat er sich doch zu einem absoluten Superstar in der WWE entwickelt. Mittlerweile hat er diese Superstar-Aura die man braucht um an der Spitze der WWE zu überleben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Baldrickwrote on 26.11.2007:[10.0] "Der mit Abstand beste Schauspieler im Roster. Dazu unter den Top 5 In-Ring Performern. Ein geborener Heel."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Heatwrote on 26.11.2007:[10.0] "Wer hätte das gedacht, dass Edge alleine so geil ist. Mich hat er schon mit Christian zusammen fasziniert(wahrscheinlich weil ich jung war und er in ner Royal Rumble Gilberg so lässig aus dem Ring geworfen hat aber naja, reden wir nicht drüber) und tut es als Singles Wrestler nur noch mehr, die WWE hat das richtige getan, und auch in der Zukunft, werden sie viel von Edge haben, hoffe ich doch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Schorschwrote on 26.11.2007:[10.0] "Der wohl beste Mann im WWE-Roster derzeit. Immer unterhaltsam, ob im Ring oder am Mic."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: devilsoldierwrote on 20.11.2007:[10.0] "Einer der Besten, im Team mir Christian einfach genial, selten so gelacht bei Promos. Wird immer besser!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Joe710wrote on 18.11.2007:[10.0] "Ich muss ehrlich sagen, dass mir Edge erst seit seinem WWE Titelgewinn richtig gut gefällt. In dieser Rolle und als Rated R Superstars blühte er regelrecht auf. Dieser Bursche könnte eines Tages, einer der größten WWE Stars aller Zeiten werden. Ich wage sogar zu behaupten, dass er womöglich die Siegesserie des Takers bei Wrestlemania 24, dieses Jahr beendet ;-)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: aulitwrote on 04.11.2007:[10.0] "Wie wertvoll er inzwischen ist merkt man erst jetzt, wo er lange Verletzt ist. Er hat alles was man zum Superstar braucht. Inklusive der Leidenschaft und Hingabe. Ich hoffe für ihn, dass er von schweren Verletzungen verschont bleibt. Dann wird er uns noch einige Jahre unterhalten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: John of Gauntwrote on 29.10.2007:[10.0] "Für mich der beste Heel in der WWE. Verkauft sich perfekt und hat auch wrestlerisch einiges drauf. Da kann man sich nur aufs Comeback bei Survivor Series freuen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Benny110106wrote on 28.10.2007:[8.0] "Seit nunmehr 10 Jahren ein Garant für starke Matches in der WWE. Hat es von einer Bump-Maschine zum Megastar geschafft. Er wird uns noch viel mehr zeigen und das wollen wir auch sehen !"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Matzelwrote on 22.10.2007:[10.0] "einer meiner absoluten Favs. toller wrestler und toller schauspieler. dass einzige was mich ein bischen stört, ist dass er manchmal zusehr den angsthasen raushängen lassen muss."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: V12-Viperwrote on 17.10.2007:[10.0] "Technisch sehr begabter Wrestler, Top-Heel und für WWE unverzichtbar"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Oli10wrote on 01.10.2007:[10.0] "Einer der besten Wrestler der heutigen Zeit! Super im Ring, tolles Auftreten und genialer Einzugssong!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Medeawrote on 29.09.2007:[10.0] "Edge vereint ein unglaubliches Charisma mit sauberen Moves und einer sehr unterhaltsamen Mimik. Er spielt eindeutig in der Oberliga und ist für mich der beste Wrestler der jüngeren Generation! Ich hoffe auf eine möglichst schnelle Rückkehr, da er meiner Meinung nach eine Bereicherung für jede Storyline wäre."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Schockwrote on 28.09.2007:[10.0] "Aktuell absolut HOT -- Intensität, Charisma und wrestlerisches Können! ... eben Rated R!"
Rating: 10.0
Sentiment: 0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: dariawrote on 18.09.2007:[10.0] "einer der ganz wenigen Gründe für mich, noch mal bei der WWE reinzuschauen - Spitzentechniker, supercharismatisch - sehr verdient on top, obwohl es verdammt lange gedauert hat"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bhanduwrote on 15.09.2007:[10.0] "WWE's Total Package. Guter Wrestler, guter Talker, Ausstrahlung im Überflüß - einer der besten Heels, die WWE in den letzten Jahren hervor bringen konnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Noreiuswrote on 14.09.2007:[10.0] "einer der besten heels überhaupt! am mic klasse, schafft es auch als heel zum Teil Komik in seine Storylines zu bringen (z. B. mit Kane). sein stil is sowiseo top und ich finde er hat auch prima schauspielerische qualitäten. also, gebt dem mann den whc titel zurück wenn er wieder da is! der beste champ! rated r-superstar 4 life!"
Rating: 10.0
Sentiment: 0.9765625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: LizardKingwrote on 09.09.2007:[10.0] "Hammer! Ich kanns kaum erwarten dass er wieder zurückkehrt. SPielt die Heelrolle perfekt! Super im Ring. Und abgesehen von all diesen Talenten hat er neben punk und orton das mit abstand beste entrancetheme"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DannyGeigwrote on 06.09.2007:[10.0] "Als Heel einer der besten nur hat er mal einen langen Titelshot verdient. Auch einer der besten Tag Team Wrestler überhaupt. Edge wird der neue TRiple H wenn er denn nicht schon als Heel viel besser ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Manuelwrote on 06.09.2007:[10.0] "Der Rated R Superstar bekommt endlich sein Gold das im ansteht"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Damnmasterwrote on 21.08.2007:[8.0] "Guter Wrestler! Allerdings hat mir nicht gepasst, wie er sich den Titel vom Undertaker geholt hat!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: real americanwrote on 20.08.2007:[10.0] "Edge ist der Top-Heel der Gegenwart, da kann HHH Backstage noch soviel versuchen ihn untenzuhalten, der Rated-R Superstar ist im Ring Klasse und auch am Mic auf extrem hohem Niveau. Die Cuttin Edge Segmente und unterhalten mich immer und die Zeit im Tag Team mit Christian sollte man nicht unterschlagen da grade die TLC Matches ein absolutes Must See sind. Er kann die WWE in den kommenden Jahren zweiffellos mittragen."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Alan Smitheewrote on 08.08.2007:[10.0] "Seit seinem Heel turn ist der "Rated R Superstar" meine absolute Nr. 1 !"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: shannonmoorewrote on 28.07.2007:[10.0] "Obwohl der Sprung nach ganz oben für ihn recht schnell ging fand ich ihn nie überpusht. Es enstanden in den letzen Jahren wenige neue wirkliche überzeugende Maineventer aber der hier ist ein ganz grosser geworden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bullit69wrote on 25.07.2007:[8.0] "Guter Wrestler! Könnte aber noch an seiner Statur arbeiten... is noch zu undefiniert!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Mick Funkwrote on 19.07.2007:[10.0] "Bester Heel zur Zeit in der WWE. Überragendes Charisma, tolle Mimik, solide Technik, gut am Mic. Sollte nur mal wieder bißchen Krafttraining machen da sein Körperbau doch sehr nachgelassen hat in den letzten Jahren. l"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: BigVanVaderwrote on 16.07.2007:[10.0] "Z. zt einfach der MVP der WWE. Der Rated R Superstar zieht mich in seinen Bann ein umŽs andere Mal und bekommt endlich seinen verdienten World Heavyweight Title Push. Ich hoffe, dass Edge uns so noch lange erhalten bleibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: scotty619wrote on 10.07.2007:[10.0] "Der Ratet R Superstar gefällt mir besser und besser früher war er für mich nur ein Wrestler aber als er den WWE Champion würde war er mein held"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Azraelwrote on 04.07.2007:[10.0] "Edge hat einfach alles. In Ring Skills, Charisma wie kein zweiter und über die Mic Skills braucht man gar nicht zu diskutieren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Thomas Carlsonwrote on 30.06.2007:[10.0] "Was soll ich noch dazu sagen. Er ist einfach großartig in seiner Rolle."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Svaniwrote on 30.06.2007:[10.0] "Edge hat den Top-Heel einfach im Blut, technisch kann man ebenfalls nicht meckern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: ShaneOwrote on 28.06.2007:[8.0] "Sehr guter Heel, jedoch (immer diese Vergleiche) im Vergleich zu Christian wirkt er ein bisschen blass. Ein verdienter Champ und ein guter Worker ist er aber auf jeden Fall."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Steven McWheelerwrote on 27.06.2007:[8.0] "Irgendwie Overrated... Ich seh ihn nicht im Mainevent! Er hat so geile Matches um das Jahr 2000 rum geliefert, mit Christian, welcher sich gewaltig entwickelt hat im Gegensatz zu ihm... Seine damaligen Leistungen retten ihm 8 Punkte, da ich ihn In-Ring zu unglaubwürdig finde, jedoch abseits als guten Heel schätze"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: DrBreswrote on 27.06.2007:[10.0] "Perfekter Heel - in Sachen Charisma, Glaubwürdigkeit und Entertainment-Faktor einfach Top. Auch im Ring immer eine gute Figur."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Ywainwrote on 25.06.2007:[10.0] "Ein Klasse-Wrestler und mit das Beste, was die WWE derzeit zu bieten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: HHH-Stephwrote on 24.06.2007:[10.0] "Richtig geiler Wrestler. Er ist im Moment der Topheel der Liga. Hat sich den WH Title redlich verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Adrammelechwrote on 24.06.2007:[8.0] "Ein guter Entertainer den ich sehr sympatisch finde! Ich glaube er hat eine lange Zukunft in diesem Sport wenn er auf dem Boden bleibt und keinen Höhenflug bekommt. Ich mag ihn, auch wenn er dem Undertaker auf so unfaire Weise den Titel abnahm, aber "thatŽs the show"!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: cena-hbkwrote on 24.06.2007:[8.0] "Ein toller Wrestler und ein toller Champ aber er könnte ruhig etwas mehr zeigen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Foerstawrote on 24.06.2007:[10.0] "Ganz hohes Niveau in Sachen Umsetzen des Gimmicks udn Kampfstil, ebenfalls starker Mic-Performer. Name ist Dauerzustand - BE ON EDGE - (indem er die Koffer vom Money in the Bank erfolgreich einsetzt)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Spartan 24 I7wrote on 24.06.2007:[10.0] "Auch wenn er immer wieder Wrestler die ich noch lieber ansehe "unfair" besiegt(Undertaker) gibts wegen Spear und seinem Gimmick die 1"
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Mr Lovewrote on 24.06.2007:[8.0] "Edge ist einfach einer der Top Heels der WWE, der auch noch ein paar Jahre vor sich hat. Bei Smackdown wird er es sicher einfacher haben als bei RAW. Seinen Titel hat er sich auch verdient. Er spielt seine Rolle einfach gut und hat auch gute Micskills"
Rating: 8.0
Sentiment: 0.1346153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Trevedaswrote on 24.06.2007:[8.0] "Gut im Ring, besser im MicWork, genial bei den Promos. Sollte er so weiter machen gibt es auch die 10 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: RatedRKOwrote on 24.06.2007:[10.0] "Mein Liebling derzeit (abgesehen vom taker). Seine Aktionen und sein "feiges" verhalten, seine ironie und seine hinterhältigkeit.... die rolle ist ihm auf den Leib geschrieben. Wrestlerisch hat er auch was drauf. Also gimmick bestens, fähigkeiten sehr gut. -BACKLASH TITELWECHSEL-"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Amurebkuwrote on 24.06.2007:[10.0] "Ich mag Edge nicht! Er hat einfach diese Art die ich nicht leiden kann. Genau deswegen bekommt er diese starke Bewertung. Er ist einfach ein absoluter Top-Heel! Den Titel hat er sich verdient. Seine Matches sind immer sehr ansehlich und er gibt auch immer alles. Zudem super starke Promos! Tolles Mic-Work!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: TugayGwrote on 24.06.2007:[8.0] "Also der perfekt heel; shafft die Fans immer sauer zu machen^^ Im Ring auch gut, aber auch bei ihm gibt es bessere. Charisma hat der Bursche auch. Wenn ich könnte würde ich ihm 9 Punkte geben, aber naja dann ehrer 8 als 10"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Eines der größten WWE Talente, 21 Title ... einfach Spitze!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sebastian Bogowrote on 24.06.2007:[10.0] "Ich finde ihn sowohl als Einzelwrestler aber auch früher im Tag Team mit Christian einsame Spitze. Er macht die WWE für mich interessant. Er ist mittlerweile schon so weit, schwächere Wrestler zu einem sehenswerten Match zu ziehen. Über sein Charisma und seinem sehr guten Unterhaltungfähigkeiten muss man doch gar nicht erst streiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Undertaker13wrote on 24.06.2007:[8.0] "Top Heel (neben Triple H) der WWE aber irgendwie kann ich ihn nicht leiden. Wahrscheinlich deshalb weil er glaubt das er der Beste ist, es jedoch aber noch nie richtig bewiesen hat."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: The Showstopperwrote on 24.06.2007:[10.0] "Einfach der perfekte Heel: gute In-Ring Skills, solides Mic-Work, dazu noch ein Gimmick, das wirklich zu ihm passt. Sein WHC-Run ist zwar aus der Not geboren, aber nicht unverdient und definitiv eine Bereicherung für Smackdown."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Matt Hardywrote on 24.06.2007:[10.0] "Der beste Heel der WWE! Er hat Charisma ohne Ende, sein Mic Work ist genial und im Ring gehört auch nicht gerade zu den schlechtesten! Schade, dass er den Titel schon zwei mal nach kurzer Zeit wieder abgeben musste..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Wrestling For Lifewrote on 24.06.2007:[10.0] "Edge gehört zusammen mit Triple H zum besten Komplettpaket, was WWE zu bieten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Chris Cagewrote on 24.06.2007:[10.0] "Einer der besten Heels überhaupt, und auch einer der besten World Champions der letzten Zeit. Er überzeugt in seiner Rolle einfach so verdammt gut, was auch die Ratings von RAW zeigten als er noch Champ war. Mit Lita verlor er zwar den wichtigsten Bestandteil seines Gimmicks, aber mit Randy hat er einen Partner gefunden der das wieder ausgleicht. Trotzdem hat er es nicht verdient so von der WWE verheizt zu werden."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Bomberman2000wrote on 24.06.2007:[10.0] "Als World Heavyweight Champion einfach der Bringer schlechthin."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Milhousewrote on 24.06.2007:[10.0] "Im Moment trotz John Cena, Triple H oder Shawn MIchaels der MVP von RAW."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: jupp365wrote on 24.06.2007:[10.0] "Edge hat mich seit dem Beginn seiner WWE Karriere begeistert. Hat seinen Titel genau zur rechten Zeit gewonnen. Musste lange draufhin arbeiten und wusste den Titel wahrscheinlich mehr zu würdigen als Leute die nicht so lange im Buisiness sind wie er und den Titel viel eher erhalten haben. Er ist der beste Heel den die WWE derzeit hat!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: timbo7111wrote on 24.06.2007:[10.0] "Gucke erst seit kurzem wieder WWE, aber Edge hat mich voll begeistert. Absoluter Vorzeige-Heel, den bringt er sehr gut rüber. Ausserdem noch sehr intensive Matches. TOP!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: -Y2J-wrote on 24.06.2007:[10.0] "Eindeutig das beste, was die WWE zur zeit zu bieten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Garvinwrote on 24.06.2007:[10.0] "Derzeit mein absoluter Lieblingswrestler. Bringt alles mit, was einen guten Wrestler auszeichnet und ist unbestritten einer der Stützpfeiler für die WWE, auch in den nächsten Jahren. Seine Entwicklung in den letzten Jahren ist phänomenal. Sein Gimmick erste Klasse. Der Rated-R-Superstar hat nichts anderes als die Höchstnote verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Litawrote on 24.06.2007:[10.0] "Edge is und bleibt mein absoluter Liebling in der WWE... ! Er spielt seine Rolle des Rated R Superstars perfekt.. ! Seine Fehde gegen Kane, Mick Foley , John Cena oder jetzt mit Rated RKO vs. DX ist einfach unglaublich.. ! Er ist ein wahrer Champ.. ! Es ist immer wieder schön ihn gewinnen zu sehen.. ! Auch wenn er seine Matches unfair gewinnt wie zB beim Summerslam gegen Cena finde ich ihn wirklich super.. ! Edge und Lita waren das schönste TV paar das ich je gesehen hab .... ! Edge ist und blei"
Rating: 10.0
Sentiment: 0.01041666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Mediwrote on 24.06.2007:[8.0] "Ich weiß nicht woran es liegt, aber zu 100% hat er mich (noch) nicht überzeugt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Carsteinwrote on 24.06.2007:[6.0] "sicher kein schlechter Wrestler aber in der Internet Community doch etwas overrated. Technisch solide, aber sicher kein Benoit, auch mic work mäßig solide aber ned mehr. Eigentlich ganz braver Durchschnittsworker der Uppermidcard. Mehr aber auch nicht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Dav1d1anwrote on 24.06.2007:[10.0] "danke! Für die tollen Match gegen Cena! DU hast Lita/Raw wieder cool gemacht!"
Rating: 10.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: suntan superstarwrote on 24.06.2007:[10.0] "mister money in the bank! Konstant gute Leistungen im Ring und die Fähigkeit die Menschen in der Halle immer gegen sich aufzubringen, machen Edge zum wahrlich perfekten Heel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Doerbenwrote on 24.06.2007:[10.0] "einer der wenigen Mainstreamworker die ich wirklich gut finde, bin absoluter mark von ihm und würde mir sogar wieder einen WWE PPV antun, wenn Edge den titel gewinnen und einen langen Run haben darf;-)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Sandman16wrote on 24.06.2007:[10.0] "Edge ist einer der besten Wrestler in der WWE. Hat unglaublich viel Charisma und sein Mic-Work ist auch sehr stark. Er kann der WWE noch viel bringen wenn er richtig eingestzt wird. Ein neuer Push auf den WWE-Title wäre nur gut!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Babuswrote on 24.06.2007:[10.0] "Einfach genial - Wrestlerisch schon so gut, dass er auch mit schlechten Worken gute Matches zeigen kann und am Mic, egal ob als sympatischer Nerd im Team mit Christian oder als bitterböser Main Event-Heel, einfach nur spitze. - Wahrlich ein Rated-R Superstar."
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: darksaber999wrote on 24.06.2007:[10.0] "DER Heel der WWE in den letzten Jahren. Gut am Mikro, große Portion Charisma, und sehr gut im Ring. Man liebt es ihn zu hassen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=932&gimmick=Cope+
Comment: Hennewrote on 24.06.2007:[10.0] "Sowohl im Tag Team mit Christian damals sehr erfolgreich, als auch jetzt endlich als Singles Wrestler. Für mich der WWE Wrestler des Jahres 2006."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: relentlessETwrote on 28.01.2025:[9.0] "The heart and soul of Big Japan Pro-Wrestling's Strong Division. When I first saw Sekimoto, I thought this isn't a real person. Turns out the size of his muscles match up with his wrestling ability. Comedically large, but with the strength, explosiveness and agility of a rugby player, Sekimoto is one of the most unique wrestlers I have ever seen, and for him to consistently stay on top of his game for 25 years is incredible. I rate him a 9 because although he is an incredible wrestler, he's a little lacking when wrestling smaller guys, and sometimes in those same matches he would sell unconvincingly. His best matches are always against heavyweights the same size or bigger than him. Nonetheless, absolute legend and I hope to watch him again live someday."
Rating: 9.0
Sentiment: 0.2635741341991342
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Lakhiarfarhad91wrote on 30.07.2022:[9.0] "Daisuke Sekimoto is legit one of GOATS. A guy who really thrives in both singles and tag team wrestling. He is so charismatic and a crowd favourite. He can play a great underdog and an aggressor."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: JoshuaWrestling63wrote on 14.07.2022:[10.0] "Ich Kenne ihn eigentlich hauptsächlich aus der wXw und habe auch ein paar kämpfe live gesehen. Der hat ne Ausstrahlung das ist unglaublich, obwohl er mit 1, 75 nicht wirklich groß ist hat der ne Power.. Seine matches sind immer ein Highlight"
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Wrestling Foreverwrote on 20.03.2022:[10.0] "Was für ein Powerhouse ich liebe seine Schlachten gegen WALTER aber nicht nur die auch ist er einfach ein klasse Trainer. Wo einer seiner erfolgreichsten Schüler in Japan klar Yuji Okabayashi ist. Neben seiner Kraft ist er auch unfassbar beweglich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: benny5bellyswrote on 03.01.2022:[8.0] "A big beefy lad who has big beefy meat slapping matches, sometimes that is all you want in your pro wrestling"
Rating: 8.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: hitakiwrote on 09.08.2020:[9.0] "top tier strong japanese wrestler, this guy is built like a rock and the stamina he got during the matches is unmatched"
Rating: 9.0
Sentiment: 0.3111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: mjboyerwrote on 22.06.2020:[9.0] "One of the best powerhouse wrestlers to ever do it. Not too many guys like him in the puroresu scene."
Rating: 9.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Weltmonarchwrote on 18.06.2020:[10.0] "Bestes Powerhouse was ich je live gesehen habe. Eigentlich schade, dass er eigentlich fast immer in seiner BJW-Blase geblieben ist. Hätte ihn mal gerne eine längere Zeit woanders gesehen (ROH, NJPW)."
Rating: 10.0
Sentiment: 0.16818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: KENTAfanwrote on 10.09.2019:[10.0] "Sekimoto is 38 now but he's still going stronger than ever. I can see him wrestling into his late 40s, maybe even more, if he wants to. Regardless, despite being relatively unknown to mainstream wrestling fans, he will undoubtedly go down in history as one of the greatest wrestlers of all time. No exaggeration. I have never seen a man of Sekimoto's size fly around the ring like he does, executing missile dropkicks better than most high-flyers while throwing around people twice his size like they're nothing. And on top of that, he has incredible ring IQ and can bring out the best in just about anyone he's paired with. He is just a once in a lifetime wrestler, plain and simple."
Rating: 10.0
Sentiment: 0.36643990929705217
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Hwordwrote on 27.02.2019:[10.0] "My favourite active wrestler. An impressive powerhouse and underrated grappler with a mastery over the basics. Always does his best to make his opponents look good, even when defeating rookies or juniors in dominating fashion. In the midst of his 20th year and putting out classics every other week."
Rating: 10.0
Sentiment: 0.4069444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: RatingsMachinewrote on 25.10.2018:[8.0] "Daisuke Sekimoto is a great powerhouse wrestler, and is a lot of fun to watch when he's having hard-hitting matches."
Rating: 8.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: My Bloody Doobwrote on 25.02.2018:[10.0] "The face of the Big Japan Pro Wrestling Strong Division and arguably the best powerhouse in the world right now. The only other man who comes close to him would be Shuji Ishikawa. Together with Yuji Okabayashi they are at least in the top 5 best tags teams in the world of the last decade."
Rating: 10.0
Sentiment: 0.1812770562770563
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: HUNTERBC88wrote on 16.07.2017:[10.0] "He is a very good wrestler and as far as I know, he is the only male Japanese wrestler that was born in the 80s and made his debut in the 90s."
Rating: 10.0
Sentiment: 0.202
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Viper99wrote on 18.06.2017:[9.0] "Sekimoto ist für mich einer der besten Männer im Asiatischen Raum. Dies beweist er immer wieder bei Big Japan und All Japan und selbst in der WXW hat er es als Unified Champion mehrmals bewiesen. Er ist für seine Masse einfach unglaublich flink und beweglich und ist vom Style her ein komplettes Gesamtpaket, welches jeden Stil mitgehen kann. Großartiger Wrestler."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: deathsitcomwrote on 22.12.2016:[10.0] "Deisuke Sekimoto ist ein in Stein gehauener Berserker, ein Monolith, ein Mann, der jeden Ring durch seine bloße Anwesenheit ausfüllt. Er ist so breit wie hoch und vernichtet dich mit German Suplexes und chops, die am anderen Ende von Raum und Zeit noch widerhallen. Eine wandelnde Quantensingularität des wrestlings und zudem einer der ganz wenigen Menschen, die erhaben einen Vokuhila tragen können. Wir senken unser Haupt vor dieser Urgewalt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Luv all wrestlingwrote on 11.09.2016:[9.0] "Daisuke Sekimoto is a jacked, strong style beast capable of striking your face off, blocking harder hits and has a great crowd connection/charisma. One of the best practitioners of modern day strong style."
Rating: 9.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: The Sick Lebowskiwrote on 22.05.2016:[10.0] "Ganz, ganz starker Power Wrestler. Ich kenne ihn hauptsächlich von der wXw und seine Schlachten gegen Big Van Walter sind grandios. Wundert mich echt, dass er "nur" bei Big Japan ist und nicht schon längst bei einer der größeren Ligen wie New Japan."
Rating: 10.0
Sentiment: -0.1444805194805195
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Gloverwrote on 15.11.2015:[10.0] "Absolutely unbelievable monster of a man, and one of, if not the best hoss on the planet today. He just has that spark in him that makes any moment he's in the ring a great one. What really puts him over the top is that not only is his offense fantastic and the way he carries himself perfect, but he can sell with the best of them on top of that. Plus his German Suplexes are immaculate."
Rating: 10.0
Sentiment: 0.4681818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: CJ Duskwrote on 14.05.2015:[9.0] "The Japanese Hulk! He may only be 5'9 but this man is a true powerhouse. A master of Strong Style who always puts on intense hard hitting matches."
Rating: 9.0
Sentiment: 0.11527777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: ThySmithywrote on 07.11.2014:[9.0] "One of the strongest wrestlers on the planet. Daisuke has one of the best Big Man movesets in professional wrestling history and the athleticism that he has is simply outstanding , Hopefully he has a run in NJPW some day because he is way to good to be doing smaller Japanese promotions for the rest of his life"
Rating: 9.0
Sentiment: 0.32857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: apc24wrote on 23.01.2014:[9.0] "Though Daisuke is from a death match promotion, he really knows how to work matches that can be compared to the All Japan days in the 90's"
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Blue Meaniewrote on 17.06.2012:[10.0] "DON'T FUCK WITH DAISKE! Diese Erfahrung mussten schon viele Wrestler machen, die von Sekimoto per Deadlift German oder Lariato getötet wurden.  Einer der besten Powerhouse Worker Japans, wenn nicht gar weltweit. Zusätzlich aber auch agil und technisch nicht unbegabt. Mit seinen Matches kann man i. d. R. eig. nie etwas falsch machen. Update 2012: Mittlerweile zurecht AJPW Regular. Tag Team Titel dort schon gehabt und ein Match um die Triple Crown dürfte auch hoffentlich nicht mehr lange auf sich warten lassen. Z. Z. definitiv einer der besten der Welt!"
Rating: 10.0
Sentiment: -0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: ARIZAwrote on 15.06.2012:[10.0] "Aktuell einer der besten Männer in Japan. Etwas schade, dass er bei aus dem BJW-Dojo stammt und der Liga immer noch sehr verbunden ist. Es wäre einfach schön ihn bei den großen Ligen New Japan oder All Japan im Main Event zu sehen."
Rating: 10.0
Sentiment: 0.1515151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Kenshin Uesugiwrote on 05.10.2011:[8.0] "Hm, ein etwas kleiner bulliger Japaner der Technik, Sauberkeit und Beweglichkeit in einem vereint ? Und noch dazu alles und jeden kraftvoll durch die Gegend wirft und schleudert ? Das erinnert mich an jemanden, im Grunde ist Sekimoto einer neuer Kensuke Sasaki ! Nur das er noch kürzere Beine hat und kleiner ist. Jedenfalls der Mann der maßgeblich dafür verantwortlich ist, das dass Wort " deadliften " im Umlauf gebracht wurde."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Miloswrote on 27.07.2011:[10.0] "Der beste Wrestler der zwei vergangenen Jahre. Er hat grossartige Tag Team Matches mit Yoshihito Sasaki und Yuji Okabayashi sowie unzaehlige legendaere Kaempfe in BJW, DDT, ZERO1 und AJPW gehabt. Ich finde seines Match gegen Masa Takanashi 2010 MOTY und seine KO-D Openweight Title Macht ist die beste von viele gute Regenshaften des DDTS."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Mick Funkwrote on 07.07.2011:[5.0] "Überzeugt mich bei den letzten Auftritten, die ich gesehen habe leider überhaupt nicht mehr. Meiner Meinung nach auch etwas überbewertet durch seine Auftritte bei wXw."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Obermackerwrote on 02.05.2011:[8.0] "Beeindruckendes Kraftpaket mit ein bisschen zu kurzen Beinen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Double Jwrote on 10.04.2011:[10.0] "Sekimoto weiß immer vollkommen zu überzegen, ein tolles Powerhouse mit viel kraft. Ich hoffe er findet seinen weg zu größeren Ligen wie New Japan oder Noah, verdient hätte er es vollkommen! Edit: Ich weiß nich genau, warum ich ihm nich volle Punktzahl gegeben hab, drum änder ich das mal^^"
Rating: 10.0
Sentiment: 0.08522727272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Matt4Wrestlingwrote on 17.01.2011:[10.0] "Ein brawler, ein techniker, guter Tag Team Wrestler, sagt ihm was er machen soll, er hälte mit! Ein allrounder, was er oft genug unter Beweis gestellt hat und sicherlich weiterhin tun wird!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: cagefighterwrote on 02.01.2011:[10.0] "Echt ein atemberaubender Wrestler. Ich liebe es das in Japan mehr Wert auf den Kampf gelegt wird und genau da glänzt er wirklich und das nicht nur durch pure Kraft , sondern auch mit etwas athöetik und guter Psychologie"
Rating: 10.0
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: MaKnowrote on 23.08.2010:[8.0] "Sekimoto ist ein echtes Kraftpaket - im Ring macht er wahnsinnig viel Spaß, insbesondere weil er so viele verschiedene Stile mitgehen kann! Das einzige, was die Wertung etwas nach unten drückt ist der Mangel an großen Kämpfen und Titeln. Schade, dass er bis dato noch nicht einmal für NOAH im Ring stand, in deren Kader würde er sich, denke ich, ziemlich gut machen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Rise Againstwrote on 25.05.2010:[10.0] "Unglaubliche Kraft, und trotzdem sehr beweglich. Er ist vielleicht nur halb so groß wie manche, dafür aber doppelt so breit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Marcywrote on 07.05.2010:[9.0] "Seitdem ich ihn beim Carat sehen durfte bin ich noch beeindruckter von ihm. Der Mann hat eine solch enorme Präsenz wenn er nur im Ring steht, das ist wirklich unfassbar. Muss man erlebt haben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: RickRollwrote on 28.03.2010:[9.0] "Ein absolutes TIER. Schafft es selbst mit nur 2 Moves, (obwohl er mehr besitzt) ein ansehnliches MAtch zu kreieren.  Unglaublicher Wrestler der genau meinen Geschmack trifft. Dazu ist auch er in Deathmatches klasse, LEIDER gibts ihn wirklich zu wenig im Bereich deathmatches, aber das ist ok, denn dann ist es etwas "besonderes" wenn er den Deathmatch stil wrestelt, denn er DEFINITIV beherrscht."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Eddiewrote on 28.03.2010:[8.0] "Daisuke hat so eine unglaubliche Ringpräsenz dass es kracht. Er hat Power, baut ein Match logisch und gut auf, und kann viele Stile mitgehen, egal ob es von Anfang an brutal zur Sache geht, ob es um Submissions geht oder ob er auch ein wenig Tempo ins Match bringen muss, er kann es und er tut es. Und außerdem, wer hat denn bitte schon Walter gedeadliftet? 8 Punkte bisher für Daisuke!"
Rating: 8.0
Sentiment: -1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Soerenwrote on 18.03.2010:[9.0] "Deichkind hat mich nach seinem 2. Carat noch mehr überzeugt seit seinem 1."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Raywrote on 08.03.2010:[10.0] "Ich war schon vorher ein großer Fan des guten "Daiskes", aber seit dem 2010er Carat verehre ich ihn abgöttisch. Er hat eine unglaubliche Intensität, Kraft und ist einfach mit jedem seiner Blicke imposant. Dazu kommt, dass er zum HmmmBap der Young Bucks die Welle mitmacht. :)"
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: NextOne86wrote on 05.10.2008:[9.0] "Einer der besten Japaner in den letzten Jahren, sehe ihn sehr gerne, hat noch eine große Zukunft vor sich... Göttlich Daiskeee~!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Kaffoe 666wrote on 12.08.2008:[9.0] "Tolle Mimik, toller Wrestler. Kann n Japan noch ein großer Star werden, ich seh ihn gerne!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: Matt Hardywrote on 09.05.2008:[8.0] "Hab ihn jetzt ein paar mal gesehen und Sekimoto gefällt mir extrem gut. Sehr überzeugendes und glaubhaftes Auftreten, dazu eine sehr geile Mimik. Auch im Ring gefällt er mir mit seinen tollen Suplessen und hoher Intensität ziemlich gut. SEKIMOTO~!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1602&gimmick=Daisuke+Sekimoto
Comment: STRIGGAwrote on 01.01.2008:[8.0] "Er wirkt wirklich wie ein junger Masato Tanaka, der im Ring stets das rüberbringen zu vermag, was elementar ist: Man sieht ihm den Siegeswillen an, die nötige Verbissenheit und eine tolle Mimik leisten ihr übriges. Ich freue mich auf viele weitere großartige Matches von ihm."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Piruelwrote on 11.02.2025:[10.0] "The goat, the reason I am a wrestling fan. Words can't describe how much this man means to me, my childhood hero."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: danzgalliwagwrote on 04.02.2025:[10.0] "The first Ring of Honor guy to make it in WWE. And ever since then, he has been convinced that he is the best wrestler in the world. Now, in his later years, he comes face to face with guys whose stories are a lot like his. But nobody's story is the same. Life is a series of choices, and at the end of the day, it's where you're at right now that you have to be at peace. CM Punk has not always been at peace with where he's been at. And that's why every decision he has ever made led him back to the WWE--the right place and the right time."
Rating: 10.0
Sentiment: 0.2633928571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: V0icesAreLouderwrote on 03.02.2025:[9.0] "Punk is a polarizing as they come and it's amazing and horrible at the same time, part of wrestling is getting a reaction and he does that perfectly. His promo game is unmatched, now he has big ego and we all know that and it works and it doesn't at times and it's very clear when it doesn't (the entire Hangman feud). Now he is good in the ring, good, not great. And especially now at his age with the amount of injuries he has had. Personally I'm sick of him, I haven't found him entertaining since 2013, I was not excited for his return, I know I'm a minority on that and I can acknowledge a lot of people are. All in all, I am not a CM Punk fan, he just hasn't done anything that I like in a long time, but that crowd loves and that's what matters."
Rating: 9.0
Sentiment: 0.05488839285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rassle Fanwrote on 02.02.2025:[5.0] "CM Punk's fans are the MAGA of wrestling. Meaning, they will jump off of a cliff to defend him. A comment on Instagram some time ago summed it up perfectly "This man can never do any wrong". Punk is a wrestling populist and he knows this and capitalizes perfectly on the fans who are incapable of examining his career and behavior critically. "He wasn't fired from (redacted) he quit! ". Now, can he wrestle? Yes. Is the best in the world at it? No. He is one of the greatest promos ever in the tradition of Roddy Piper and Terry Funk. You believe everything he says because he believes everything he says. He's been involved in some fantastic feuds with Raven, John Cena, Samoa Joe, Homicide, MJF, and Eddie Kingston just to name a few. He's a lock for the Hall of Fame. He's just too much of an insufferable and disingenuous blowhard (so much for reproductive and trans rights in WWE eh, Phil), to rate him any higher."
Rating: 5.0
Sentiment: 0.39545454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wrestlingswiftiewrote on 01.02.2025:[8.0] "I'll never forget his first go-around in wrestling. From his days as a scrawny little misfit from Chicago in IWA, to his days as the (original) devil in ROH, to his legendary WWE run, CM Punk has cemented himself as one of the greats in the modern era. I'll have to knock a couple of points off because of his current run, though... Not the Punk that I remember."
Rating: 8.0
Sentiment: 0.27291666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Lejzywrote on 27.01.2025:"CM Punk, one of the best wrestlers ever, and still has so much left to give. Every match he's in is a straight-up banger. His comeback got me back into wrestling. Pure love."
Rating: No rating found
Sentiment: 0.34285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dhruboezitwrote on 26.01.2025:[10.0] "One of the greatest - especially on the mic. Punk always knew how to engage fans and that worked like a charm for his career. Post 2011 he's among the most recognizable wrestlers on the face of the planet and a very polarizing figure - but a massive draw nonetheless."
Rating: 10.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CrandonMartin2001wrote on 25.01.2025:[10.0] "CM Punk is one of the most polarizing and captivating figures the business has ever seen. Much like LeBron James, you either love him or hate him--but for me, it's all love for Punk. His career startedin Ring of Honor, where he helped elevate the independent wrestling scene to a new level. His iconic ROH World Championship "Summer of Punk" is still talked about today. When he went to ECW under WWE's umbrella, Punk showed he could hang on a global stage, bringing his straight-edge rebellion and in-ring talent to the mainstream. The feud with Jeff Hardy was nothing short of brilliant. It's one of my favorite feuds not just of the 2000's but of all time. Their matches were emotional, personal, and unforgettable, solidifying Punk as a top-tier performer. Then there's the "Pipebomb." In my opinion, the greatest promo of all time, where Punk blurred the line between reality and storyline like no one before or since. It wasn't just a promo; it was a cultural reset for WWE, making fans feel like they were seeing something raw and unfiltered. It turned Punk into a phenomenon overnight and proved he was one of the best talkers in the history of the business. Punk's AEW run was polarizing, much like his career as a whole. While it ended on bad terms, you can't deny how fun it was to see him back in the ring, delivering great matches and cutting fire promos. His return after seven years away felt like a moment the entire wrestling world had been waiting for, and for a while, he made AEW must-watch television. Now that he's back in WWE, it feels like a full-circle moment. He's thriving again, showing the world why he's one of the best to ever step in a ring. Love him or hate him, CM Punk is a generational talent, and his legacy as one of the all-time greats is undeniable."
Rating: 10.0
Sentiment: 0.21892482517482517
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Brutish Dandywrote on 16.01.2025:[7.0] "Exceptional on the stick but just kinda basically good in the ring. Not bad, per se, but not amazing either. Far better as a heel than a face. Swiped half of his moves from KENTA and then ducked him for a decade. Childless, middle-aged atheist hated by all his former associates who's lauded for doing things he didn't do. Like Cody Rhodes on Opposite Day."
Rating: 7.0
Sentiment: 0.09499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Madripoorwrote on 13.01.2025:"I used to own t-shirts of this guy but he's become everything he swore he hated: a corporate puppet that puts in minimum effort and still gets pushed over younger talent, the same talent he "wanted to help". Now he will get the Wrestlemania main event he deserved 10 years ago, stealing it from people who worked for it every day, just like The Rock took it from him. How the tables have turned."
Rating: No rating found
Sentiment: -0.02222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mister Cute Facewrote on 11.01.2025:"[9.0] One of the best of this generation, and that's saying a lot. We're lucky we get to see him again. It's like he never missed a step. [5.0] 9/4/2023 Edit: I hate making this edit. this dude is a clown and a cancer to locker rooms. Super talented in the ring, super crappy in the back. His attack on his own show is so pathetic. This dude is unhinged and needs help. He has attacked people physically, on the mic, and has over inflated himself in his own eyes. He even hates Regal. Enjoy retirement Phil. You've definitely earned it. / 2024.01.16: now he's back "home"? Give me a fucking break. I know most punks walk into Walmart and say "aaaah home! ""
Rating: No rating found
Sentiment: 0.17794117647058824
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: darkflame4527wrote on 06.01.2025:[10.0] "One of the most influential talents in pro wrestling history, both in and out of the business. he revolutionized the way we see wrestlers today, how we view the business as a whole. he also has been credited by many as the driving factor behind the culture change in the WWE locker room, incentivizing him to come back and help put wrestling mainstream, like in the attitude era. love him or hate him, it is undeniable that he is one of the most legendary and most important individuals that we have ever seen."
Rating: 10.0
Sentiment: 0.2636363636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MEDaminewrote on 04.01.2025:[10.0] "A captivating figure in the world of professional wrestling. His matches are a masterclass in storytelling, seamlessly blending technical wrestling with high-impact maneuvers. And Imo the second-best mic talker (just behind Cena), his "pipe bomb" promo is legendary, and his ability to connect with the audience is unmatched. Imo If he didn't stop wrestling for like 7 years, he would have been the undisputed GOAT of Pro Wrestling as a whole."
Rating: 10.0
Sentiment: 0.21428571428571425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rosyawrote on 03.01.2025:[9.0] "I can't deny what contribution CM Punk made to the development of WWE. I think many people already understand that if it weren't for the confrontation with John Cena, it's unlikely the men and women from indie wrestling would have succeeded in WWE. But I would like to say this: Punk, saying that he came for the money, is a little disingenuous, because money has no smell, and CM Punk could have returned to the company under the leadership of Vince McMahon. First of all, CM Punk returned to wrestling as he wanted attention from the audience, the absence of people around him that he could not stand, and only then did it come to money. Although I would even add ambition before the last point, and it is clear how CM Punk wants to finish HIS story with the main event of WrestleMania. And the debut in the elite company was a failed experiment before returning home. Everything happens"
Rating: 9.0
Sentiment: 0.001388888888888884
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HappyNekoowrote on 01.01.2025:"Meu wrestler preferido. Vi pouca coisa da era pré wwe dele mas o que vi gostei muito. Assim que possível vou atrás do que ainda não vi."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: actionjaxonwrote on 30.12.2024:[10.0] "My second favourite wrestler and the wrestler who i think for now is the best wrestler in the world.Great in the ring great on the mic and even great on commentary no buddy can touch him in my opinion.His feuds with john cena, samoa joe and drew so many more are epic.He can be great babyface and also a great heel.A lot people say people like bryan danielson bret hart kurt angle and seth rollins are the best wrestlers in the world which i get why people would say that they are great wrestlers and if you think they are the best thats all right they are great and you can have your own opinion.But in my opinion cm punk is the best wrestler in wwe and in the world! ."
Rating: 10.0
Sentiment: 0.7123809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MonkeyFacedKillawrote on 30.12.2024:[10.0] "Despite it being the internet age where there are no secrets left unexposed in the pro-wrestling world, CM Punk manages to blend real-life drama with pro-wrestling flawlessly. You're not really sure when there's real heat or when the wrestler CM Punk starts and the person Phillip Brooks ends which is something wrestling should be all about - suspension of disbelief. He's been able to bring this believability to every program he has been in since his return. You can tell that he's thought deeply about each of his promos and matches, which make up a large portion of my top 10 favorites of all time. GOAT."
Rating: 10.0
Sentiment: 0.27053571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Michael Shawnswrote on 30.12.2024:[10.0] "One of the most important and controversial wrestlers going today. Love him or hate him, he always seems to bring people into professional wrestling, and whenever he's gone, people go away. He's a great wrestler, an incredible talker, and contributed to some of wrestling's most important moments. Of course, with age, his abilities don't harken you back to his prime days (which people wax lyrical about a little too much), but he's one of the few things where his presence alone is the reason why people watch WWE. Very few wrestlers have that sort of magnetism about him."
Rating: 10.0
Sentiment: 0.22683333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: anarchovampwrote on 27.12.2024:[9.0] "At his peak, CM Punk was arguably the total package as a wrestler, not only one of the best workers around despite his physical limitations, but an incredible storyteller both in and outside of the ring. Had some of the greatest individual runs of all time, in Ring of Honor with iconic rivalries against raven that launched him into superstardom, the legendary Summer of Punk in WWE, and even as recently as his rivalries with MJF, Drew McIntyre, and CM Punk. In many ways, Punk's career mirrors that of a fellow Chicago icon in Michael Jordan. Both were legendary stars who left in their prime, before returning after failing to make an impact outside of their field, before eventually leaving again and coming back for one last run. Of course, for Jordan, his final run with the Washington Wizards is notable for being by far the worst part of Jordan's career, and I have to say, I feel somewhat similar about his WWE return. This isn't to say either were bad, Jordan was still at least a borderline all star, and Punk can still put in good and even great work, like the aforementioned McIntyre feud, but like how Jordan went from averaging 30 to taking a couple of a games to get to 30, Punk, whether it's due to an older, more damaged body, his potentially shaky job security, or some other factor, almost seems to be stuck in second gear, especially in promos. The scathing punk has now been replaced with a more composed and professional CM Punk who openly claims that his number 1 goal is to make money. Punk is obviously allowed to feel this way in real life, but when he's portraying what's practically the same character he has had since that faithful 2011, it does frankly strike as a bit hollow. So while, like Michael Jordan in the early 2000s, punk is still a valuable wrestler and can even channel what made him elite in the past, even a slight drop off will be noticeable when you were at one point the Best in the World."
Rating: 9.0
Sentiment: 0.1492753623188406
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Braden Pittmanwrote on 21.12.2024:[10.0] "CM Punk has made me cry exactly twice. Once on November 18th 2012, at Survivor Series. At this time I wear John Cena shirts to school and have a creepy amount of his posters. My poor father found it right to spend his birthday money from his parents to buy us 2 nosebleed tickets to watch John Cena dethrone CM Punk and once again become WWE champion. I donned my lime green wristbands and baseball cap, and got ready to celebrate. I was the biggest John Cena fan in Indianapolis that night, As you could guess, that didn't end up happening. Towards the end of the match The Shield debuted, a monumental and historical moment in hindsight, costing Cena the bout. I broke down watching Punk escape with the title. As we walked to the car through the muggy midwestern downpour I whined to my dad that I had just had "the worst night of my life". The second time CM Punk made me cry was on August 20th, 2021, when he returned to wrestling after 7 long years. CM Punk is the best in the world. 5/5 stars."
Rating: 10.0
Sentiment: -0.08356009070294783
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nikinho66wrote on 20.12.2024:[10.0] "The Best in the World. For those that could be interested, please take a look at the documentary about him made in 2012. I had a massive lot of respect and admiration for Punk back at the time, as a kid i idolized him, loved every time he was in the ring, holding a mic or whatever else he could do but this documentary just uplifted everything about him. This guy has it all, an underdog that became an undeniable phenomenon of wrestling, man from these matches at ROH, to the debuts in WWE, you could only feel the fire that literally burned inside of him, he loves this industry he loves wrestling, talking, doing promos, he loves learning and teaching, i still don't get why people do not see him as a legend, he makes the crowd moves, pop like no one else. Someone that is that controversial is just someone that actually speaks the truth and is being genuine, he loves this industry but he doesn't often play by its rules, thus why some call him "the most controversial superstar of all-time" but this is what adds this touch that makes him even greater. The story of a kid that was fan of wrestling, genuine to himself, a punk-rock amateur and even metalhead that only wanted to do what he loved and inspired so many people. His influence is actually wild, just as him. And the most sincere thank you to the legend, the greatest of all time Paul Heyman for believing so hard in this man that he actually appeared on my TV a random monday night and that i've been a fan since that moment and forever on. BITW forever. XXX"
Rating: 10.0
Sentiment: 0.2733974358974359
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fuchinkanwrote on 12.12.2024:[10.0] "I hated you, but when you returned to Pro Wrestling, I cried as if I had loved you since childhood. I became interested in ROH because of watching your matches. I became interested in Old School Wrestling because of your passion for it. I followed AEW because of you. I became a WWE fan because of you. I became a metalhead because of you. This Fire Bronse is specifically yours. You are the best in the world."
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: kelseywrote on 04.12.2024:[9.0] "CM Punk is excellent on the microphone, good in the ring, he had an amazing gimmick and he can draw money. CM Punk's weakness is his in ring skills but even then he is still good. CM Punk was given chances more than other people but he shone in that spot."
Rating: 9.0
Sentiment: 0.5625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: maven loverwrote on 01.12.2024:[10.0] "A fantastic, passionate worker whose stellar 2000's-era WWE/"ECW" work will always stand out to me as formational in my wrestling fandom. Can work face or heel equally well, is excellent at moving around the ring with purpose / getting the small things right, & did a great job shaking off the ring rust after the 7-year haitus. Has already spent the few years he's been back to put out solid efforts with people like MJF, Samoa Joe, Ricky Starks & Drew McIntyre, the later of which was pretty much a '24 WWE highlight. Isn't afraid to speak his mind in an industry with too many people whom nod their head & refuse to even try to say "fuck that, this is stupid." I think that it's a good thing that his mic/charisma skills are even better than his ring skills, because this assures that after in-ring retirement, he will be guaranteed television presence (manager, commentary, etc), should he desire it. I sure know I would. Super excited for what the future holds for this guy."
Rating: 10.0
Sentiment: 0.14776190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mj2609wrote on 28.11.2024:[10.0] "One of the most influential wrestlers of all time along with being one of the greatest talkers of all time. Was never a favourite of the management and always turned bad creative given to him interesting in the early part of his WWE career. Made himself a superstar with the pipebomb and didn't look back after that. MITB 2011 is still one of the greatest matches I have seen. Left in 2014 and became even a bigger star and kind of a cult figure bcoz of his mystique and legacy he left. Although widely speculated, he came back to AEW in 2021 with one of the greatest returns of all time and was part of some of the best feuds and segments in the company (Eddie Kingston and MJF). Whatever happened was unfortunate on both sides. BUT then made another of one of the greatest returns of all time and came back to the place that he left 10 years ago and also got sued for it. Unlike his 2021 return, no one knew about this, even on the internet.His return started off-track bcoz his injury but his feud with Drew Mcintyre is locked in for the best feud of the year imo and the Hell in a Cell match is also a big contender for match of the year. One of my all-time favs since 2009."
Rating: 10.0
Sentiment: 0.31363636363636366
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AceHagannwrote on 26.11.2024:[9.0] "One of the best talkers in the history of the business. His promos always feel packed with emotion, and they can sway you however Punk wishes. To top it off, he is a great in-ring performer."
Rating: 9.0
Sentiment: 0.7666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Taibhsewrote on 22.11.2024:[10.0] "CM Punk - the guy who rekindled my childhood wrestling fandom with the second "Summer of Punk" in 2011 after I'd fallen out of love with it for several years, then somehow got me back into wrestling *again* a decade later with his AEW return. Since then, he has continued to be what he always was - controversial, iconoclastic, and inimitable. He's great in the ring and peerless in feuds and promos. He is a true original and however many he inspires there will simply never be another him, ever."
Rating: 10.0
Sentiment: 0.27954545454545454
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Larixkhwrote on 19.11.2024:[5.0] "How complicated it is to rate Punk in 2024.. at one time I would have given him 10 and today he still does good work, but here it is.. this guy is a complete moron who thinks he is above everyone.. and the worst is that his fans are ready to do anything to defend him and justify even when he is wrong. I can get past certain behavior outside of kayfabe but not for CM Punk, he has disappointed me too much, too many times and I do not want to be one of the people who defend a guy capable of attacking a guy backstage in a neutral position just because he does not agree and feels superior."
Rating: 5.0
Sentiment: -0.06160714285714283
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ItsAllAWorkAnywaywrote on 13.11.2024:[8.0] "CM Punk envisions himself as the Macho Man, but might be best described as this generation's Ultimate Warrior - Someone who crafted their gimmick on the indies, exploded at the WWE level, yet fell out of favor with leadership because he felt his own celebrity was larger than the promotion who ultimately created him. John Cena? He managed to get movie deals and TV deals as a result of wrestling. CM Punk? Got a couple of UFC fights in, did some spoken panel stuff, and buried the promotion who wanted him to be their centerpiece all before returning to the WWE as an attraction wrestler/gatekeeper. Good for him for realizing where his bread was buttered, but it definitely removes the allure that he can draw on his own."
Rating: 8.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: smuielthepunkwrote on 15.10.2024:[10.0] "THE BEST ON THIS MICROPHONE, IN THAT RING, EVEN IN COMMENTARY! NOBODY CAN TOUCH ME! Theres nothing much to say THE BEST WRESTLER IN THE WORLD"
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: hfield07wrote on 14.10.2024:[10.0] "Look - 9, In Ring - 10, Mic - 10. Punk is the total package. Unique in the ring and out, does all the small things right. You catch things watching his matches multiple times you didn't see the first time. He creates stories."
Rating: 10.0
Sentiment: 0.11011904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Philnoxwrote on 11.10.2024:[10.0] "The wrestler who calls himself "The Voice of the Voiceless" and "The Best in The World". Is he all of that? I don't know. But it definitely is an indisputable fact that CM Punk is one of the most known wrestlers still active today, and one of the last ones you could truly call a "draw" without making any kind of overstatement. He can still go in the ring in 2024 and can still put out very good matches, and is definitely a wrestler who will be remembered for all time."
Rating: 10.0
Sentiment: 0.35958333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RaysBruwrote on 11.10.2024:[8.0] "I still hesitate to rate Punk higher because, although he's a great wrestler and promo, I don't think he's the best in the world. Despite his long-standing claim of being the "Best in the World, " I believe he falls short of that title. However, he excels at making you feel and creating an authentic experience. I respect his ability to draw crowds and fill arenas. I'm evaluating him as a wrestler, not as a person, but it's unfortunate that his flaws and personality sometimes overshadow his talent."
Rating: 8.0
Sentiment: 0.43571428571428567
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JoKu2311wrote on 10.10.2024:[10.0] "My first rating on a wrestler and it has to be CM Punk. I don't know if I would still love the sport as much as I do now, had he not made me a super fan in 2011. Before that, I was too young to understand how good Punk was even in the late 2000s in WWE. The summer of Punk is the best thing that I could have imagined as an 11 year old and I still frequently watch the hype video for MitB 2011 to this day. It was the first time I was completely hooked in a wrestling storyline and saved years of otherwise pretty bland WWE shows. When he left in 2014, I was so sad and lost all hope to see him in the ring again. Then he returned and I was instantly more excited to watch wrestling as a whole again. His promos can be solid gold and he rarely disappoints in the ring even if he does not perfectly match the current idea of amazing wrestling. His recent Hell in a Cell match against Drew showed how capable he still is of putting on great matches. He is no Ospreay etc. but he is an absolute legend. I can understand people who dislike him but I am one of those who love him as a wrestler."
Rating: 10.0
Sentiment: 0.21005747126436786
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KMacwrote on 07.10.2024:[6.0] "Decent in the ring for his age but he messes up a lot and when he botches it looks really bad. Punk isn't even good on the mic anymore either which was his strongest attribute before he came back. He was an 9 in his prime but corporate Punk isn't that guy anymore."
Rating: 6.0
Sentiment: 0.03333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sbprodwrote on 07.10.2024:[10.0] "2nd favorite of all time. Im 21 now and remember MITB 2011 like it was yesterday. He the greatest promo of all time, and an exceptional in ring performer with incredible psychology. Don't know what else to say, just greatness"
Rating: 10.0
Sentiment: 0.6133333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sxltsnxffxdaewrote on 06.10.2024:[10.0] "it's very funny to see how people, because of one incident, are ready to almost tear Punk to pieces. people forget about everything that punk gave us in the 2010s-2014s. and the AEW run was also good, . And he's still THE BEST IN THE WORLD upd. 2024 no one could have imagined that in 2024 he and Drew would be able to make a potential feud of the year"
Rating: 10.0
Sentiment: 0.45416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PunkedIconXwrote on 26.09.2024:"[10.0] Definitely my favorite wrestler of all time, from his early work in ROH summer of punk work, to his ses work, to the summer of punk in 2012 and his AEW run. Ive loved punk for a very long time. LONG LIVE CM PUNK"
Rating: No rating found
Sentiment: 0.22022727272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Maniaofmaniawrote on 24.09.2024:"Outside his matches with Joe, Hero, Raven and at push Homicide are his only matches I would rate high highly in the first part of activity as a pro wrestler. the only good match in the second run was the dog collar match with MJF he does not have the catalogue of matches of Misawa, Han, Toyota Pirata 1980s' Flair et al. I have never and will never care about promos, so that does not boost punk up for me. for me to him anything more than a 5 would be Disingenuous for me. He had a few good matches on the indies noting of note for me in either run in WWE and one good match in AEW."
Rating: No rating found
Sentiment: 0.24749999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: danzitorockwrote on 24.09.2024:[10.0] "CM Punk is my favorite wrestler of all time, without a doubt... I chose to support him as a kid, but it's when you're an adult that you realize how crazily good the guy actually is, and start to think about how right your younger self was to pick him to have as an idol. I'm glad I chose Punk, I knew he was incredible, otherwise I wouldn't root for him, but I didn't knew how right I was at that moment, Punk is fabulous as a wrestler, unique, unpredictable, smart, charismatic... truly the best in the world. There's a story that says John Cena called Punk 'the last territory wrestler', and I think he's absolutely right, Punk has many characteristics that you don't see much around anymore, and it's just a blast to watch him do anything, super influential guy, he completely dictates the landscape of the business. What I always say about Punk, is that no matter weather you love him or hate him, it's almost impossible to be neutral about him, everything he does is interesting, it makes you wanna watch, because anything can happen, he's magnetizing. A very divisive guy, specially as a person, it's impossible to deny that he makes wrestling much more exciting, he's just a mega star, with a lot of legendary matches and feuds out there. I couldn't know that as a kid, but it's really relieving to have a guy to identify with and share values and perspectives about wrestling, and Punk is that guy, I love how he doesn't forget the past, the people that forged the way and did some pretty awesome things, he was heavily influenced by some legends, and that's why the legends love him and respect him back. Punk is always the subject, he's a rebel for nature, a revolutionary, very vocal and with a strong personality, that's why he's the most loved and the most hated. Long live Chicago Phil, my undeniable GOAT."
Rating: 10.0
Sentiment: 0.24145698051948047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: babarazam1wrote on 22.09.2024:[10.0] "Will always be one of my favourite wrestlers ever the greatest ever to pick up a microphone and in his prime was great in the ring as well despite never being that gifted athletically. There will never be anyone like him ever and they will NEVER make me hate him."
Rating: 10.0
Sentiment: 0.37499999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Galmondiwrote on 22.09.2024:[10.0] "Amazing performer in and out of the ring. One of those guys we will still talk about in 200 years. A genius. Maybe the best talker in history. I'm glad he decided to come back and i'm glad he's back in WWE."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ChadCashwrote on 19.09.2024:"Punk was the best promo of his generation and if that title doesnt go to MJF today then it goes to Punk again. Punk is also one of the best in ring story tellers I have seen. I am so greatful that Punk came back to wrestling because everything he has been involved with since his return has been fantastic. He clearly has a great wrestling mind and I hope we see him involved in creative somewhere once his career winds up."
Rating: No rating found
Sentiment: 0.5428571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Spirealwrote on 17.09.2024:[10.0] "Punk may not be the wrestler that made me like wrestling, but he's certainly the one that got me hooked. Everytime he's disappointing me, he just pulls me back in. His programs with Jeff Hardy, Cena, The Undertaker, , MJF and now McIntyre are memorable because he's that good in the mic and in the ring. The other great thing about him is his coolness factor, how he embodies straight-edge and stood out in WWE like no one else could during his initial run. His best years might be behind him but he still feels relevant."
Rating: 10.0
Sentiment: 0.2262987012987013
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AlexInTheBoothwrote on 15.09.2024:[10.0] "Simply put one of the greatest Professional Wrestling minds and performers of all time. From his work in ROH to his great run beginning in WWECW and finally culminating in the WWE summer of Punk. He was already one of the greatest of all time before returning in 2021. But then the return happened. Beginning with Darby, and ending with Joe at ALL IN. Punk's run in AEW was something to behold for someone like me who was getting back into wrestling when he returned. You can argue that his body is on the decline and his in-ring work begs for something more, but his mind has not slowed down at all. I'm very excited to see what he does behind the scenes after he hangs up the boots."
Rating: 10.0
Sentiment: 0.30290404040404045
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ISimon1912wrote on 10.09.2024:[8.0] "First of all, I don't like CM Punk, I started watching wrestling at the end of 2013, meaning I only caught the end of his first run before the 7 year hiatus. But then, being older and wanting to see more about him, I researched more about his career and went to see his impeccable work in ROH, including the legendary trilogy against Joe in 2004 and the feud against Hero in the indies, then comes the run in WWE that begins not so well, but from 2009 onwards the man begins, in my opinion, his prime starting in the feud against Jeff Hardy and reaching its peak in the infamous pipebomb and the classic at MITB in 2011. After the end of that run and the controversial form he left the business turned him into a martyr until his return to AEW which was my turning point in my perspective, Punk is talented, has good ring work, all timer promo and is a draw, in AEW although there is something very good in the feud against MJF , the most memorable was his numerous problems backstage that resulted in his departure and a return to WWE (the same one that said he would never return), this return makes me hate this guy, currently the promos he does are not funny, the matches are ok (if he pushes too hard he gets injured), and what was once "Voice of the voiceless" is now a WWE puppy because he knows that if he messes up, it's over for him in wrestling, if it weren't for these events I would even rate it with a 10 for influence, but I can't stand him or his sick fans who think this rest of the wrestler is the most incredible thing they've ever seen (maybe in 2011, but remember that was almost 15 years ago)"
Rating: 8.0
Sentiment: 0.24687074829931974
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: travis807wrote on 09.09.2024:[8.0] "Unfortunately in 2024, Punk is barely serviceable in the ring without a ton of smoke and mirrors. On the mic, hes as good a speaker as hes ever been. But his words carry less weight than ever. The magic of Punk was that he had an unwavering conviction that youre convinced is real. Hes been reduced to a good, not great, character whose appeal draws in large part out of being a curiosity. Thats the gentlest I can put it. But you have to give him credit for his past work. Who knows, maybe Punk will manage to find that guy again, if even for one night."
Rating: 8.0
Sentiment: 0.10476190476190472
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jsbortswrote on 08.09.2024:[8.0] "Great on the mic for many many years, one of the best in understanding the psychology both in ring and out of ring about how to put a match together. I think Punk was actually at his best in the WWE when he was able to use a lot of MMA influences to put together what worked fights should look like as MMA grew more popular. I think that's CM Punk's best contribution to wrestling outside of some legendary promos. His in-ring legacy is his ability to further define what wrestling should look like on American television during the MMA revolution. That being said, I think even back to his Ring of Honor days, Punk's always been well below average athletically, and not capable as his counterparts in speed, quickness, strength, agility, or technical movement. Punk hasn't been an innovator of any moves inside the ring but often has done other's moves in a less crisp and less intense way. He's learned how to get the absolute most out of his athletic ability and lack of physical tools, but his ring work leaves a lot to be desired and his entire moveset consists of moves others before him have done much better. His 7 year hiatus robbed him of a lot of what was left of his physical prime, and his work in-ring since his return has been an all around disappointment considering his injuries and his lack of conditioning, understandable at his age. Punk's best in-ring work was often cited as his ROH days, but even in his Samoa Joe matches, widely regarded as his best ROH work, I find them to be tedious rewatches that only shine due to the absolute abomination that was mid-2000's North American wrestling, as opposed to a lot of great ROH matches at that time. With all that being said, he has an undeniable success that I cannot denigrate, despite certainly not being someone who understands his appeal in a broader sense. Punk is able to turn even your disinterest in him into something worth talking about, and able to turn that into eyes on a product- which is truly the ultimate aim of any wrestler. for that he deserves to be considered very successful, but frankly he's just not one of the all-time greats."
Rating: 8.0
Sentiment: 0.26562816616008106
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: McGuireShowwrote on 06.09.2024:"Legitimately the lightning rod for pro wrestling fans, love or hate him, CM Punk is often an easy conversation starter for wrestling fans. After his hiatus, he has managed to come back where he left off - generating headlines and ratings."
Rating: No rating found
Sentiment: 0.02666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RVLTIONVGG01wrote on 31.08.2024:[10.0] "Simply the Best in the World, thanks to him I got hooked on wrestling when I was 6 years old back in 2007 and his career has proven me right. Words are unnecessary. 10/10"
Rating: 10.0
Sentiment: 0.16938775510204085
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Chosen Onewrote on 28.08.2024:[7.0] "Als Anführer der Straight Edge Society fand ich ihn erst interessant - da aber dann auch wirklich interessant. Die Fraktion hab ich gefeiert, auch wenn sie nie weit genug ausgebaut wurde. Da hätte mehr gehen können. Die Geschichte mit Nexus war komisch. Der Summer of Punk war dann aber wieder legendär. Er hat die Dinge ausgeprochen, die Fans sich gedacht haben und war so ein Sprachrohr für alle. Sein AEW Run war okay. Sein jetziger Run überzeugt auch leider weniger. Er ist sehr washed, auch am Mic. Punk kann weit überdurchschnittlich gut talken, kommt an sein altes Ich aber nicht heran. Das liegt einerseits an seiner neuen Art und andererseits, dass er kein Rebellen-Image mehr hat; er kämpft nicht mehr gegen die Maschine an, sondern ist ein Teil von ihr. Es spricht sich ja auch rum, wie gut er sich auf einmal mit allen Backstage verträgt und ich habe auch das Gefühl, dass so gewollt ist."
Rating: 7.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nudlewrote on 26.08.2024:[10.0] "I am biased to the point that if you called me a cult member I might agree, but this guy has been my idol since I was young. Love him or hate him, he's one of the biggest stars in modern wrestling and is top 3 ever for me."
Rating: 10.0
Sentiment: 0.09999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Xzaviiiwrote on 21.08.2024:[6.0] "The thing we can say is that "Cult of Personality" really suit him, thats what he does to his fans. Punk is actually really good in the ring and good also on the mic. So why im putting 6 and not 10 ? Because all of his drama, Punk doesnt look like a good person. First of Hangman Page, then brawl out and finally, of course, Jack Perry. Even the comments Rollins said on him, all of this make me hate this man. I dont understand how the fans are still behind him and not see a patern between all of these drama, Punk is in all of these. Also, Punk is 45, he is a veteran and supposed to be "mature", he should not get into these kinds of bullshits and should not choking a 26 years old kid who didnt even hit his puberty yet (Yes, I seriously believe Jack Perry did nothing wrong), thats not what a "mature" veteran should do. Also I 100% believe the words of Hangman and Rollins, this guy is probably toxic as hell and it wouldnt surprise me."
Rating: 6.0
Sentiment: 0.054444444444444434
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CicconeYouthwrote on 21.08.2024:[10.0] "CM Punk is the best in the world for a reason... The milestone he created at Money in the Bank 2011 remains a historic moment in professional wrestling, and very few people have been able to provoke something with such a profound moral and even philosophical impact. Beyond that, he's also an outstanding wrestler, incredible on the microphone, and has the perfect look to complement his wrestling style"
Rating: 10.0
Sentiment: 0.3186111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Joelwrote on 20.08.2024:[9.0] "I really enjoyed this (9) CM Punk rundown. It's one of the best I've seen in a while. However, I'm a bit disappointed that some of the promos are not up to date and don't match the current day. I wish this could be fixed. Overall, I love this a lot as CM Punk is one of my all-time favorites. I admire not only his work but also how he carries himself as a person."
Rating: 9.0
Sentiment: 0.16875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ITGfromDiscwrote on 09.08.2024:[10.0] "I think you have to give CM Punk a 10/10. ROH was the emergence of Punk, showing indie audiences that he was one for the future with feuds with Raven, Joe, and Cabana. WWECW showed a slightly less edgy character, but worked hard to gain the trust of management and main roster fans, eventually holding the ""ECW"" title. His Smackdown run resulted in a great feud with the most popular wrestler of the late 2000's, Jeff Hardy. A 3x WHC champ, his 2 runs with the WWE title served as a reminder of his polarity, with his Pipebomb promo inspiring a new generation of wrestlers. When he came back to wrestling in 2021 after 7 years away, he got back in the swing of things, but his AEW title reigns were short and controversial, as was his time there. Now, he's a veteran of the game, trying to imprint his legacy in WWE before injuries catch up to him once more. Overall, he's a controversial wrestler, who left wrestling at the near top of his game, but he's making up for it now with his runs in the 2020's. 10/10 wrestler, a surefire hall of famer, and one of the greatest wrestlers of the 21st century by far."
Rating: 10.0
Sentiment: 0.14802489177489178
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BrainChickenwrote on 09.08.2024:"CM Punk deserves a 10 (from me) for being a game-changer in wrestling. His promos, especially the iconic "Pipebomb, " are unforgettable and have revolutionized the industry. In the ring, his technical skills and storytelling abilities create compelling matches. His rebellious persona and genuine passion make him relatable and inspiring. Punk's authenticity and impact on wrestling are why he's one of my favorites."
Rating: No rating found
Sentiment: 0.35714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fabio Garganowrote on 09.08.2024:[9.0] "He completely changed the game and paved the way for many independent wrestlers who potentially didn't have the physique or in-ring abilities that WWE was looking for at the time. Punk was one of the first to break his rules. And by arriving at the highest level, he proved that he could stand up to the greatest of all time, whether in the locker room, on the microphone or in the ring and demonstrated in turn that he too could to be one of the greatest of all time. I'm only going to talk about Wrestling. Sooner or later, One day or another, everyone will understand the wrestler that CM Punk was."
Rating: 9.0
Sentiment: 0.24500000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 12psiwrote on 08.08.2024:[10.0] "Okay, so Punk is without a doubt my favorite wrestler of all time. His ability to sell a story and a gimmick throughout his time in the WWE was truly unmatched, with his in-ring ability and stamina leaving little to be desired as well. The personal elements, frankly, I think also make him a defining Wrestler of an era that has been all about truly blending kayfabe and reality, something he has done second to none. Lastly, I would emphasize that his WWE arrival came at the perfect time to help shape the defining feud of the defining superstar of this era (Cena feud 2011-13)."
Rating: 10.0
Sentiment: 0.25892857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wrest lingaddictionwrote on 05.08.2024:[10.0] "Possibly the biggest draw in pro wrestling history. His in-ring work for much of his career, while not brilliant, was never bad, and has unteachable levels of promo skills that 99% of wrestlers just can't get to."
Rating: 10.0
Sentiment: 0.02499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KobashiChopMewrote on 03.08.2024:[9.0] "Punk is, in my eyes, one of the best talkers ever. Many people will try and downplay his career after what happened with AEW, but it's very hard to deny how much this man has done for pro wrestling. It just goes to show how good he is when they sold out the rampage where he returned on the back of a RUMOUR he was coming back to wrestling. It shows how good he is when he had fans chanting his name in wrestling arenas for years after he had left."
Rating: 9.0
Sentiment: 0.3023148148148148
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cletxawrote on 31.07.2024:[10.0] "he doesn't need to wrestle to become a legend. He can back the company even when he can't wrestle. Perhaps the most important wrestler in history."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ceasara63wrote on 30.07.2024:[9.0] "CM Punk is one of my favorite professional wrestlers of all time. I think his promo abilities are unmatched, one of the best guys on the microphone in the last thirty years. He has so much passion, so much energy, and that especially shines through when he's got something really good for him to sink his teeth into. And his wrestling ability is on par as well, he's had a countless number of classic matches over the years, and despite his constant injuries nowadays, he's still able to go at a very high level. His storytelling abilities are amazing, he's had so many compelling feuds, most of them many blood-feuds, for example; MJF in AEW, Raven in Ring of Honor, etc., and he's super good at pulling you in and making you feel. And plus, he has left an indelible mark on professional wrestling. For that, I'm going to give Punk a 9/10."
Rating: 9.0
Sentiment: 0.3230909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Zak22wrote on 29.07.2024:[8.0] "Very talented wrestler who has insane PR, he isn't the greatest of all-time and people only see him that way because he was in WWE with mid workers. Punk was great in ROH, he had a great feud with Chris Hero and he was a bright spot in a dark age in WWE but Punk is a bit of a prick and it has effected his work with him not always doing business right. And Punk has had some pretty mid-years throughout his career. One of the best in WWE history but not wrestling history."
Rating: 8.0
Sentiment: 0.3829761904761904
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BizarroMaskwrote on 27.07.2024:[8.0] "Maybe he is an assh*le in real life , but if you should judge only the wrestler and not the person behind , he has incredible gimmick and create a personna who is easy to hate and loves. Not the greatest in ring but that's only what miss him to be maybe the greatest of all."
Rating: 8.0
Sentiment: 0.25925925925925924
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: bigredtalk89wrote on 25.07.2024:[8.0] "Good, but vastly overrated in the ring. I think his strength lies in his promo skills, and while not bad in the ring, I don't think he was ever close to being what he thinks he is. I also don't think his promos are quite as good as his fans think they are, but I understand he's divisive and that the people who love him LOVE him."
Rating: 8.0
Sentiment: 0.4583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Aspionwrote on 23.07.2024:[4.0] "(Sorry english is not my firtst language) In ring fine but on microphone awesome but also so problematic guy and we need to remember all bad thing that he do i mean everyone do something stupid in his live but this guy just trying to do more then the others like its some freaking tournament a;so in AEW run and actual in WWE he doesnt look good at in ring level, and I have hope that he not not going to make any problem at WWE right now and also they not going to push him to much for the good sake of the company"
Rating: 4.0
Sentiment: 0.11616032776747064
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: woolyshamblerwrote on 21.07.2024:[10.0] "there is no one in wrestling today who is better at getting people to talk about him and stay invested in him. CM punk, accept no substitutes."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ReverseFlash2002wrote on 18.07.2024:[10.0] "CM Punk is one of my all time favorites and I love just about everything he does. Hes promos feel like hes talking to you and feel real. Hes had so many memorable matches over the years with guys like Cena, Danielson, UnderTaker, MJF, Joe Hero, Raven & Moxley. He will forever be my favorite of all time and always has the most top notch stories in any promotion."
Rating: 10.0
Sentiment: 0.4571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Diohwrote on 14.07.2024:[8.0] "CM Punk is an iconic figure in the world of professional wrestling. With a career marked by moments of great impact, Punk has stood out not only for his skills in the ring, but also for his provocative persona and his unparalleled ability on the microphone. Among the main themes of his career are his straight edge philosophy of life, his memorable feuds with other renowned wrestlers, and his unique fighting style. CM Punk has developed several personas throughout his career, each with a defining characteristic. His "Straight Edge" gimmick deserves an 8, standing out for its authenticity and ability to resonate with a specific audience, especially his offensive way of dealing with Jeff Hardy. The "Best in the World" persona gets a 10, being widely recognized as one of the most convincing and impactful in wrestling history, communicating with the audience, not a super hero Cena and not an Omega Heel Orton. The "Heel Punk" against Undertaker was also effective, with a score of 7, showing the most assholish side a heel can have. Ratifying all his roles, Punk knows how to be a fucking Punk. Punk is widely recognized as one of the best in wrestling in terms of trashtalk and promos. His skill on the microphone deserves a 10, standing out for his ability to engage the audience, build narratives and unsettle his opponents with sharp words. Punk's greatest highlight is simply THE POWERBOMB THAT CHANGED THE WHOLE WRESTLER, EVERYONE LEARNED FROM PUNK THAT MUSCLES AND STRENGTH DON'T MATTER IF YOU'RE A DOOR ON THE MIC. CM Punk has been involved in some of wrestling's most intense rivalries. The feuds against Chris Jericho (score 9) and Jeff Hardy (score 9) are particularly notable, both for the feud with Jericho abusing Punk's lifestyle and his past, and for the exchange of roles with Jericho against Hardy, where Straight Edge feuded with Junkie Jeff, marked by emotional confrontations and high-level fights. The rivalry with John Cena gets an 11, and is considered one of the most important and exciting in WWE in recent times.Some of Punk's rivalries haven't reached the same level of success. The feud with Rey Mysterio, for example, deserves a 4, failing to capture the same attention and intensity as other Punk rivalries... Although CM Punk is a highly technical and charismatic wrestler, his athleticism is considered a weak area, with a score of 4. Since the beginning of his career, he hasn't had anything positive, he wasn't a high flyer, he wasn't a powerhouse and much less technical. However, CM Punk's finishing moves are iconic. The GTS (Go to Sleep) gets a 10, being a visually impressive and effective move. The Anaconda Vise submission deserves a 9, proving that moves that almost everyone uses these days are quite convincing in his hands. CM Punk is undoubtedly one of the most influential and polarizing wrestlers of his generation. His skill on the microphone and his ability to create memorable characters place him among the big names in professional wrestling. However, his lack of athleticism and some less impactful rivalries are points that could be improved. Compared to others in the same category, Punk stands out for his originality and cultural impact, but some technical limitations prevent him from achieving complete excellence. I started wrestling, in its consumed form in 2010-2012, where Punk was post nexus and the beginning of the MITB rivalry against Cena, I never understood how great he became at the time, but now almost 14 years later, I see that without him as a great pillar during this era of wrestling, many current events that we see mainly in WWE, would not appear, especially Rollins and Roman (The Shield) and the huge leverage for NXT, love it or hate it, without him, much of today would not be possible."
Rating: 8.0
Sentiment: 0.21206414797323886
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: OctagonEnjoyerwrote on 06.07.2024:[8.0] "A wrestler who while I still like, his recent actions have made me reject him as one of my GOATs. Don't get me wrong, I've liked Punk for most of his career. His run in ROH is legendary, his first WWE stuff was ok, but then you got stuff like his feud with Jeff Hardy and the SES (my favorite incarnations of Punk). And while I wasn't watching wrestling with him during his prime BITW WWE title run, looking back I agree looking more into that era that the stuff that happened here was great. Just like how I agree WWE fucked him on that first run, and I agree with him and his name being used as a martyr figure and chanting it to put WWE in its place. And when he came back to AEW I was happy and excited, and there was some good stuff there like the Darby stuff, the Mox feud, the Eddie Kingston feud, and that one Daniel Garcia match on Rampage. But looking back at it now and especially since the incidents (which sadly are a big part of his legacy now and that I'll get to), 2022-2024 CM Punk is one of my least favorite wrestlers in modern wrestling. Having slow and boring Anthony Fantano review-level "bret hart tribute" matches with he botches a lot (he botched the same move twice in a row for A PPV MAIN EVENT FOR THE WORLD TITLE). I watched some of Bret Hart's stuff, and he wasn't slow and boring. And then we get to the backstage stuff (lemme make this clear before I say it I am NOT a big young bucks/elite/jack perry fan so this has nothing to do with bias, and if they were FULLY in the wrong I would shit on them), where he comes off as a hypocritical crybaby ("if you have a problem with me meet me in the back" THEN YOU AND YOUR FANS GET DEFENSIVE WHEN THEY MEET YOU IN THE BACK? ), not caring about non his camp people or the company's PR despite being given a lot (the Rocky III rant being on the day where they announce essentially "his" show), and playing the victim and blaming everyone else except the injury prone 45+-year-old man with anger issues that can't keep his hands to himself ("the young bucks took a victory lap" despite being booed for an incident that has nothing to do with them as Perry was a punk endorsed guy). Also, his fanbase becoming one of the most annoying wrestling fanbases, acting like the man can do no wrong and still thinking it's 2011 and CM Punk is in his prime, and his actions being a PART (mind you A PART, not the entire reason) why internet wrestling discourse has been so terrible with AEW. Making me root for when he comes back so my boy Drew can kill him and Punk inevitably gets injured again. In conclusion, Are there worse wrestlers out there? YES. Are there worse human beings in the wrestling business out there? YES. But that doesn't mean Punk gets off scoff-free. A great wrestler with a tainted legacy."
Rating: 8.0
Sentiment: 0.019166666666666693
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: louiscornwrote on 28.06.2024:"The Greatest to ever do it, the reason I fell in love with wrestling. No one compares to him on the mic, and he backs this up with great in ring skill"
Rating: No rating found
Sentiment: 0.7666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: brb75wrote on 25.06.2024:[10.0] "Sure, he is not at his peak right now and he is getting older, but anyone saying that he didn't bring a lot of people back into wrestling, myself included, is a liar. Right under the Rock and Rowdy Piper when it comes to mic work and he was also one of the best wrestlers in the world for a while. Sure his personality can be hard to deal with it, but he has an attitude and i definitely respect that. Anything other than 10 for his entire career is a blasphemy."
Rating: 10.0
Sentiment: 0.21103896103896105
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Sick Lebowskiwrote on 18.06.2024:[8.0] "Punk ist ein Großmeister am Mikro und im Ring überdurchschnittlich. Aber eben auch nur überdurchschnittlich. Natürlich kann er mit den richtigen Gegnern absolut fantastische Matches hinlegen, keine Frage. Aber ich sehe in ihm nicht den absoluten Megastar, wie es viele sehen."
Rating: 8.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Reccaswinthwrote on 07.06.2024:[8.0] "CM Punk is a great wrestler but his legacy is tarnished by his ego and poor attitude which bleeds into everything he does inside the ring and out. Punk is a great upper midcarder and transitional champion - and he has proven so in Wrestling's most prestigious and successful promotions, but he is not nor will he ever be 'the guy'. He is not what Sting was to WCW, what AJ Styles was to TNA, or what Steve Austin was to the WWE. Normally this wouldn't matter to me, however Punk's entire persona in and out of Kayfabe is that he earnestly believes he deserves to be 'the guy'. Whether it's Ring of Honor, WWE, AEW, or even UFC Punk acts as though he is God's gift to wrestling. The problem is that he isn't. Sure he can wrestle but he's no Misawa or Michaels, and sure he can talk but he's no Dusty Rhodes. Maybe at one point he had the opportunity to be just as good as or even better than the all-time greats but when he started to face adversity at what was the peak of his career he gave up and made a jackass of himself in the MMA world - something that I found particularly offensive as it lends credence to the stereotype that Professional Wrestlers are not legitimate athletes. He clearly did not learn his lesson when he returned to Wrestling via AEW and I still don't think he has even though he's crawled back to the WWE. Hopefully CM Punk will at least finish his Wrestling career without further humiliating himself or the business."
Rating: 8.0
Sentiment: 0.22833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TurdFergusonThe2nd1wrote on 04.06.2024:[7.0] "Great promo for sure and has passion to be at the announce table, but it's hard to say whether or not he should still be competing in 2024. I was a huge Punk fanboy from 2007 onwards until he left but the injuries and demand for more aren't really warranted now. I'm slightly more interested in the show if he's involved, but it's not the same as it once was. He's still worth watching for historical purposes."
Rating: 7.0
Sentiment: 0.26319444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Taper1994wrote on 02.06.2024:[10.0] "With WWE becoming a monoploy in the US scene during the 2000s, there was very little options for alternative in the US so a ton of small independents started to draw attention and no one was drawing attention like CM Punk. From his matches with Chris Hero in IWA in 2002 and his bitter personal feud with Raven in ROH in 2003, CM Punk was making waves as one of the best performers in pro fessional wreslting only he was doing it at the smaller stages. After have a legendary throligy with Samo Joe in ROH in 2004, CM Punk was given the call to the big league of WWE (which also lead to another fantastic story in 2005 when Punk won the ROH title and threatened to go to WWE with the belt without droping it). Of course it's well know how much of a tumultuous run Punk had in WWE, labelled as a 'Heyman guy', not having the right look, Punk finally getting the right push in 2009 and delivering an excellent feud with Jeff Hardy only for WWE to have Undertaker cut him off at the knees because he wouldn't toe the company line. CM Punk fully believed he was going to leave WWE that night on 27th June 2011 when he sat crossed legged on that stage and cut the now famous pipe bomb promo. That promo single handely launched CM Punk into superstardom and following up with the excellent match with John Cena at Money in the Bank 2011 where Punk won his first WWE title put Punk solidly in the #2 slot behind Cena. And despite being 2, Punk 3rd reign with the WWE title was still longer than any of Cena's reigns. Regardless of being given all that, Punk was unhappy with the politics of WWE and left the company bitterly in 2014. It was such a bitter dispute that Punk left pro wrestling for years and only came back when an alternative finally rose up with AEW in 2021. Punk's return saw AEW draw their biggest numbers ever, and Punk himself delivered a classic feud with MJF to boot but once again Punk's backstage behviour reared it's ugly head and by 2023 he was back in WWE again after causing shit in AEW. Punk might be a political shit steerer but he is a damn entertaining pro fessional wreslter. The best in the world? Nah, ignoring guys like Bret Hart or Hiroshi Tanahashi who have careers under different circumstance, I already think Bryan. who had a similar career trajectory to Punk is better but Punk is great enough for a 10 from me."
Rating: 10.0
Sentiment: 0.1483599290780142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Willie 19200wrote on 20.05.2024:[10.0] "CM Punk is my favorite wrestler of all time. CM Punk is a guy who shined in every company he was in, from the original "Summer Of Punk" in Ring Of Honor, to CM Punk with the ECW title, To his 2011-2013 in WWE with the title, to leaving wrestling in 2014 and come back 7 years later in AEW. Except it all went down hill in AEW, the beginning was really good, feuding with Darby Allin and MJF, and then he won the title, got injured, won the belt again, disrespected the elite, was out of action for over 6 months, just to come back have banger matches with Ricky Starks and Samoa Joe, and then got fired for fighting Jack Perry. Now he's suffering another injury after returning to WWE. Whether you like him, hate him, agree with him, or disagree with him, He will still have a place in the wrestling history books as one of the greatest and controversial characters in wrestling history."
Rating: 10.0
Sentiment: 0.2063131313131313
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: doobwrldwrote on 18.05.2024:[10.0] "Most certainly one of the most influential wrestlers ever, not only just for the independent scene, but for WWE itself. Hell, one could even argue AEW in some way shape or form. Its amazing to see how many people are consistently inspired by this man, and for rightful reasons. One of the coolest professional wrestlers to be honest, and such a talented individual in the ring who can work pretty much any style. Microphone skills do not need to be notated, as he is easily on the shorthand all time when it comes to promo. Rooted in controversy, sure. Hes a human, were all going to have our grievances and our moments, but there is no denying just how much impact Punk has had on not just this generation, but wrestling as a whole."
Rating: 10.0
Sentiment: 0.2873809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pigeon Scratchwrote on 17.05.2024:[9.0] "CM Punk is such a controversial character and has been for over a decade now, even before his departure from WWE in 2014. This is especially true in recent years, when it comes to his AEW run, how it ended, and his surprise return to WWE. I am not gonna deny that CM Punk absolutely has some issues he's gotta work on, especially backstage. Still, I can't help but love him, and I can't help but be biased in some way. I genuinely do think if it wasn't for CM Punk, WWE wouldn't be as good as it is now. If it wasn't for 2011, I think the following decade would've been very different and frankly worse in a lot of ways. While it wasn't just him, he definitely helped in bringing a change in how WWE looked at its roster, and he brought in business during his time on top. And damn it, at least back then he was damn good in the ring. So yeah, my rating is definitely slightly inflated due to just liking him as a person (well, for the most part, I think he was a knob in AEW), and with a focus on how his voice and actions led to so much good."
Rating: 9.0
Sentiment: 0.2123015873015873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: gilmoregirlswrote on 17.05.2024:[7.0] "Satisfactory entertainer. Great on the mic with believable conviction. Uncoordinated in the ring, though. Physique and look are up and down but mostly good. Sometimes his micwork feels overly workshopped. Seems to have a maladjusted attitude and constant chip on his shoulder. His in-ring work is almost entirely forgettable because of how wonky he is in the ring. One of his crutches is to CONSTANTLY evoke legend names during his promos so the viewer subconsciously associates his starpower with the mentioned-legends. Sorry, bro. You ain't in the same league as Dusty, Funk, Piper or Macho Man. This guy is very, very manipulative and subversive. It was very obvious that he was trying hard to get fired from AEW so he could return to a revamped Vince McMahonless WWE. Check out his UFC matches if you want a good laugh and to see how uncoordinated he is in the realm of fighting. His "impress me" attitude is pretentious and abrasive. His modern ringwork, in WWE and AEW, is pretty bad. This guy is coasting on the nostalgia of the "Summer of Punk"."
Rating: 7.0
Sentiment: 0.026798941798941794
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nocarnybarneywrote on 16.05.2024:[7.0] "Lack of consistency and wrestling ability brings him down a good bit for me. He's been a top guy for like a cumulative total of 5 years of his entire career when you subtract injuries and backstage shenanigans he always seems to find himself in. Can't name a lot of memorable matches, but can name memorable feuds and promos he's done. I give him this rating because in some ways he is incredibly disappointing by not living up to his potential"
Rating: 7.0
Sentiment: 0.1604938271604938
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: tlaustinwrote on 09.05.2024:[7.0] "A younger me would've given him a 10, but once you get into fights with every single person you encounter in the real world, you have to realize at some point that you're the problem. I also don't think his WWE return has been very good--AEW fans were already aware that his body was falling apart after his famously botched shotgun lariat and many injuries, and one of the first things he does in his WWE comeback is tear his triceps on Drew's Future Shock. So. 10 for his indie legacy + charisma + incredible first moments in WWE that you almost certainly know about if you're on this site, -2 for being one of wrestling's most toxic people on the planet, -1 for being injury prone yet still threatening (and sometimes succeeding) in stealing spotlight from better wrestlers due to politics. The best thing I can say about him right now is that he helped carve out Drew Mcintyre's best character yet. He should head to the sunset sooner rather than later before he does more damage to the industry or himself."
Rating: 7.0
Sentiment: 0.32636054421768707
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: colinmcevwrote on 30.04.2024:[7.0] "CM Punk is a good wrestler who is great at cutting promos and is just an absolute elite-level shit-stirrer. Not great, in my humble opinion, but you have to give him this much: he's never boring. (It's really funny how bad his UFC run was, but that's neither here nor there...)"
Rating: 7.0
Sentiment: 0.07500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CoRdelwrote on 25.04.2024:[10.0] "This guy is my favorite of all time. Say whatever you want about Punk but his work has always been amazing. A great career, really good and unique in-ring style, and of course one (if not the one) of the best on the mic."
Rating: 10.0
Sentiment: 0.6625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jcheng777wrote on 25.04.2024:[9.0] "Notwithstanding his controversies, Punk has always managed to deliver excellent storylines or matches, despite slowing down in the latter since his return which has been marred by several injuries. One of the best mic workers of the last 20 years and served as the trailblazer for Indy wrestlers in the WWE, a legend which will likely be immortalised in the HOF once its all said and done."
Rating: 9.0
Sentiment: 0.2634920634920635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CurlyHairMetalPunkwrote on 23.04.2024:[8.0] "CM Punk as a professional wrestler is flawless on the microphone and conjures up the intensity of his childhood hero Roddy Piper, and in the ring while he is not an absolute perfectionist like Bret Hart, CM Punk is still quite good despite some slight sloppiness. Where CM Punk falls short is in his look as he gives off high school indy wrestler vibes. Kevin Nash was correct in his assessment that CM Punk needed to take a shower, hit the weights, and get a clue. Undoubtedly CM Punk created quite a legacy for himself. Forget watching his ROH stuff, go watch his WWE stuff with Jeff Hardy, Rey Mysterio, John Cena, Chris Jericho, Daniel Bryan, Undertaker and Brock Lesnar."
Rating: 8.0
Sentiment: 0.2847619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: skyblueswrote on 18.04.2024:[10.0] "My favourite wrestler of all time. I remember watching WWE as a kid, and I didn't really get invested until I saw CM Punk. He is obviously a great talker, and can make any storyline memorable simply on the microphone, but I also love the stories he tells in the ring during matches. His matches capture my attention unlike any other wrestler. He knows how to capture a crowd and keep them in the palm of his hand. His work on the indies is legendary, his feuds with Raven and Samoa Joe are forever etched in wrestling history. He really did change the game in WWE, and gave some of their biggest stars their best matches (ie. John Cena, Undertaker). When he returned to wrestling in 2021 and signed with AEW I started watching wrestling again and I'm glad I was able to see so many of the great matches he's put on since his return. His match with Eddie Kingston is one of my favourites to come back to and rewatch. His feud with MJF is the best in the history of AEW. Although the build was messy, his matches against Moxley were sick. The early Collision run was also tons of fun, and culminated in his final match in the company against Samoa Joe at All In (which was my MOTY last year, great professional wrestling). Now, he is back in WWE. I was skeptical at first, but the feud with Drew McIntyre is set to be some legendary stuff and I can't wait to see that play out. His injuries have been unfortunate, but I think people are tougher on CM Punk than they are on literally every other wrestler for their injuries. I hope he has a speedy recovery and he can get back in the ring soon. CM Punk has been my guy for as long as I've watched wrestling and I can't imagine anything changing that."
Rating: 10.0
Sentiment: 0.23236607142857138
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: bzgameswrote on 12.04.2024:[8.0] "One of the few wrestlers too good for a booker to hold down. No matter where he went he quickly rose to the top as premier star. A savvy in-ring worker and perhaps the greatest promo in wrestling's history to boot; CM Punk is a living legend for the industry. Sadly, this past two years of lackluster in ring outings and constant drama has soured me and many others on CM Punk. He's one of the best ever, but I can't help but feel like he should've been THE best ever."
Rating: 8.0
Sentiment: 0.2995726495726496
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: forwardtodeathwrote on 11.04.2024:[5.0] "The CM Punk of old truly embodied the punk rock ethos, but just like many aging punk rockers he decided to take the golden pathed road of hypocrisy for the almighty dollar. There's really no shred of punk left in the man, just a shell of former performer whose body has fallen apart despite people 15 years his senior having successful runs. His modern value is purely based off of nostalgia, cult following and controversy which makes him less the modern Bret Hart and more the modern Hogan, someone shoved down our throats and is way past his prime, someone who claims to stand for one thing but represents the polar opposite. I think Punk's favorite band Minor Threat put it best; small man, big mouth."
Rating: 5.0
Sentiment: 0.1482056590752243
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DEDEwrote on 11.04.2024:[2.0] "CM Punk war für mich sehr sehr lange einer meiner absoluten lieblings Wrestler, über seine Runs bei ROH / WWE bis zu seinem Abgang muss man sicherlich keine Worte mehr verlieren. Leider hat er in den letzten zwei Jahren seine Legacy Leider absolut zerstört und mich als Fan so oft enttäuscht und mittlerweile verloren. Er war schon immer eine schwierige Person, aber was er sich in den letzten zwei Jahren geleistet hat ist in meinen Augen nicht mehr tragbar. Ein absoluter Egoist, der sein Ego über alles stellt und immer anderen Leuten für sein Fehlverhalten die Schuld gibt. Er shootet über fast 10 Jahre bei jeder Gelegenheit gegen die WWE und wirft dann seine eigenen Prinzipien mit dem neuen Vertrag über Bord. Dementsprechend hat er für mich jegliche Glaubwürdigkeit verloren und die Ehemals Größe Stärke das micwork fällt für mich weg. Im Ring sicherlich aufgrund des Alters auch nur noch bestenfalls durchschnittlich. Eine Verletzung jagt die nächste, mit Best in the World hat das alles nichts mehr zutun. Ein Wrestler der so verdammt schwierig ist und mich so oft und massiv enttäuscht hat kann ich keine andere Note geben. Es tut mir selbst weh, mit dem Punk von damals hat das alles nichts mehr zutun und er zerstört massiv seine Ehemals legendäre Legacy durch Geldgier, Fehlverhalten und Widersprüchen in seinen eigenen Prinzipien."
Rating: 2.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ThatWrasslinGuywrote on 07.04.2024:"CM Punk is the best wrestler in the whole 21st century. I don't really know what to say He is an all-timer 10/10"
Rating: No rating found
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: arisenbywrote on 06.04.2024:[5.0] "[5.2] The CM Punk of the early-to-mid 2010s was practically a god. He was a man on top of his game in the biggest promotion in the world, reigniting interest in it during one of its worst times and a permanent highlight of a show that tended to verge on unwatchable. Sure, he was never quite as good in-ring as his fellow early ROH alums, but he made up for it by being one of the best talkers in the wrestling world, arguably a top 10 of all time, and was in a place where he could rest on that. The CM Punk of 2024 is none of that. He has retained his world-class skills on the microphone but realized the business had moved on from him and was bitter over it. His second AEW run and subsequent return to WWE just made it apparent that Phil Brooks has become a toxic, self-important parody of everything that made him great. All of this might have been forgiven if he was still decent in the ring, but he isn't. The in-ring work was always a weak point for Punk, but he has slowed down and can't stay healthy for the life of him. Of the two years since Double or Nothing 2022, almost half of that time has been spent on the shelf. What good he has in his legacy is simply not enough to override his current-day mediocrity, or how hard he has seemingly intentionally worked to destroy any goodwill he had with all but the most casual of fans, who have nothing to frame his impact but the hushed reverent tones of those remembering a man who is now a shadow of himself."
Rating: 5.0
Sentiment: 0.09362139917695471
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ClawIzukawrote on 04.04.2024:[2.0] "CM Punk did a lot for indy wrestling, even after going to the WWE. He was the guy all us indy fans wanted to see succeed because it meant our other favorites had a chance. He made it to the top of the mountain and then it call came crumbling down. I get why he left the WWE, and after years being away he finally came back. Unfortunately his comeback was just terrible. Going straight to the top, getting hurt, causing issues and just overall being someone I just wanted to go away. The "lets shoot on each other" promos got boring fast, especially when he was the one to get his feelings hurt. The matches were not up to par at all for a guy at the top of AEW at the time and he looked like didn't belong in the ring with Hangman. Even the MJF stuff was just saying insider bullshit, which I'm sure some people loved but I just started to skip over it. Then he left in disgrace and left an entire company worse off than when he arrived, only to go back to the place he spent years bad mouthing because they almost killed him just to immediately get hurt again."
Rating: 2.0
Sentiment: -0.04465020576131687
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ultravioletshiroiwrote on 03.04.2024:[8.0] "CM Punk is hard for me to rate. On one hand I think he had one of the best promo skills in the history of WWE. He could wrestle a good match too and hang with the top guys in WWE. He had 5 star matches with John Cena, Randy Orton and Undertaker. His in ring psychology is among one of the best and he has tons of charisma. He deserves to be as over as he is but if anything goes against him it's his attitude. CM Punk is very hotheaded and at times just a total jerk, sometimes for seemingly no reason like his beef with Elijah Burke. He also ruined a part of his legacy by going to the UFC to try and do what Brock did except failing miserably two times in a row before retiring, and I was rooting for him as a wrestling fan to win those matches."
Rating: 8.0
Sentiment: 0.32314814814814813
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hazelyzewrote on 02.04.2024:[10.0] "Still the best in the world. Still the most compelling character in wrestling right now. Amazing how he was gone for 7 years, but promo-wise he hasn't lost a single step. One of my personal GOATs. Has had classic rivalries everywhere he went. Joe in ROH, Cena in WWE, the Brock stuff, the Taker stuff, and the MJF feud in AEW. Yes he's controversial and not everything he says I agree with. But as a character and a wrestler, second to none for me. *****"
Rating: 10.0
Sentiment: 0.33309523809523806
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Amaury08wrote on 01.04.2024:[0.0] "I appreciated CM Punk a bit when he arrived at AEW in 2021, having only known him through videos but it's one of the biggest disappointments in professional wrestling. Besides the fact that he was burned in the ring, his so-called real promos turned out to be a damp squib, this man is a liar and a definite manipulator. He intentionally tackles and emits false information with a total rewriting of the events that happened. He destroyed a locker room, making pro-punk and anti-punk, putting himself at the center of everything. No punk you didn't leave all elite, you were fired following your abusive behavior. Currently, in 2024, he is doing more harm to the world of professional wrestling than anything else, he is injured and does not perform, he takes advantage of the media and interviews to criticize his colleagues in the business. There were a few matches of his that I enjoyed during his comeback run, but the man behind it doesn't excuse the poor and deplorable wrestling behavior."
Rating: 0.0
Sentiment: -0.030555555555555558
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sarahlicitywrote on 27.03.2024:[8.0] "This is a hard rating to make, because for a long time, Punk was one of my favourite wrestlers, and, like many of his fellow RoH Golden Age alumni (see also: Joe, Danielson), the template for what a wrestler in the 2000s should be. But at some point, possibly in the twilight of his famous 434-day title run, the shine of the industry started to decline for Punk, and it started to show. The 434-day title run, after all, showed that Punk was at the top of the game and a money machine for WWE, but Vince had to be Vince, and he didn't capitalise fully on that. It wasn't just sour grapes that Dwayne was in the main event of WrestleMania, after all; like many champions before and since who weren't the Anointed One (see also: Foley, Edge, Rollins...) Punk was an afterthought. And at some point after WrestleMania XXIX, you can see the enthusiasm leave his body in real time. Maybe if he stuck to his retirement in 2014, he could've gone out on the moral high ground and his legacy as the Best in the World would be secure. But then he came back, and we thought all was well. Certainly, the first couple of feuds to shake off the ring rust gave us hope. But as Nolan's Harvey Dent once said, you either die a hero or live long enough to become the villain. The justified bitterness to the corporate suits in WWE turned to his fellow wrestlers, and, to turn a phrase, he became everything he despised; a Cubs man turning into the New York Yankees. A man who paved the way in cutting shoot promos started getting upset when people would cut them against him. His narcissism backstage ballooned to the point that if you weren't 100% behind him, then you were effectively banned from appearing on the same TV show. And at the same time, the magic in the ring was noticeably absent. Maybe the industry advanced without him, because he clearly didn't have the spark he once had. And, of course, we have to mention Brawl Out and Brawl In. Look, if there's backstage problems, and one man is at the centre of all of them, then maybe that one man is the problem. Even if he was goaded by others, he's older than all of them and therefore should really be the wiser man. So with nowhere to go to, he jumps the shark and goes back to the company who made him wrestle half to death before unceremoniously firing him on his wedding day. Granted, McMahon's fall from grace might've smoothed over the cracks, but they're still visible, and I think I'd have more respect for this iteration if he just admitted that. At the end of the day, the CM should never stand for "company man", which is what he is in 2024, with the Voice of the Voiceless we grew up loving far away in the rear view mirror. Punk still holds a special place in my heart, which is why it pains me to give him a rating lower than a 10, but I still have to be realistic, he's just not the same guy he was."
Rating: 8.0
Sentiment: 0.16153075606563977
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 2pt0EcoBoostFusionwrote on 18.03.2024:[6.0] "This rating review is probably going to ruffle some feathers, but I could care less. CM Punk, although at one point was very talented in-ring and had some phenomenal mic skills (and to this day for some credit, still does), has fallen a little off the edge in terms of just about everything, and I fault that to him being his own worst enemy. The only reason why CM Punk still has a job in wrestling is due to his drawing power, which is immense. Besides the drawing power he has however, CM Punk has been quite iffy to watch since coming back to wrestling in 2021. CM Punk has been injured multiple times since coming back and has had some slow in-ring moments and a few botches. Not to mention some very infamous moments like "Brawl Out" and the All In 2023 incident, I can go on and on about the infamy, but I don't want to exactly discredit CM Punk, hence the 6 point rating (the highest rating I will give him), which is mainly due to his regression as a wrestler due to perhaps age catching up (I do sometimes say age is just a number). CM Punk is a very important wrestler, no doubt about that, but he is way past his prime and it is showing a lot, not to mention he's got a massive ego and is considerably one of the biggest egomaniacs in all of wrestling."
Rating: 6.0
Sentiment: 0.015253623188405787
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Its Clobbering Timewrote on 13.03.2024:[10.0] "CM Punk is the Best in the world and its not even close he changed the game and is one of the most important wrestlers ever"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Vanstylerwrote on 11.03.2024:[8.0] "Same as Marty Scurll, a super talented guy with a trash personality. It's no surprise that many wrestlers end up having personal issues with this individual, he's an insatiable ego machine.But that aside, he's had a legendary career with incredible matches worth reliving. His current career, on the other hand, has aged as badly as milk"
Rating: 8.0
Sentiment: 0.216025641025641
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TripleCrownwrote on 03.03.2024:[8.0] "The perception of CM Punk has changed a lot in recent years, which is understandable given the whole AEW stuff. A lot of people take what happened in AEW way too seriously, he still put on a lot of great matches and was undoubtedly their biggest star. People seem to forget that CM Punk was the best thing going for a long, long time. Made WWE bearable during late 2000s and early 2010s. People say his stuff in-ring is sloppy, which I must admit sometimes it can be. But the important thing is that he doesn't stink out the joint whenever he wrestles. Took a lot of inspiration from Japanese wrestlers. Which, again, some people take great offense to. Haven't even mentioned his mic work yet, which is something he is quite possibly most known for. He'd still be a star regardless of his ability on the mic, but having that charisma really made him into a top name in professional wrestling. Recent injuries appear to show that his body is in a decline, I really don't think he has much longer left as a professional wrestler. Won't talk about the UFC stuff because it isn't relevant to his ability as a professional wrestler. Shame he felt the need to take that much time off post WWE but that's just life."
Rating: 8.0
Sentiment: 0.18600000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mxkamiwrote on 23.02.2024:[6.0] "Punk was my favorite wrestler for several years. He was different from the others on the cookie cutter WWE roster when I saw him, so I was drawn to him. Then, I got older. Punk's reputation became more known to me as I got more into Indies, and I started to think he was problematic and a partaker of his own Kool-Aid. He has NEVER been a workrate guy. Yeah, yeah... Something, something Chris Hero IWA 90-minutes, blah blah blah. Those matches are so overrated. As is Punk. His behavior in AEW was juvenile, preaching to the choir how guys would get chances, he wanted to put people over. People could come to him. Starts cutting promos on people. Someone does it to him, a newsworthy occurrence happens. Repeat that a couple more times, and he's fired. Don't even try to predict which side I take in Brawl Out, because I rarely watch AEW and can't stand the Bucks. Oh, wooooooooooooooooooooooooow, he's *SUCH* a good promo! I mean, formerly. Yeah. His words ring hollow now, and other people have far more in the tank on the stick than Punk, and without having to reach into their bag for every sentence. He's old, he's injury prone now, he's cranky, he has nothing in the tank anymore, and he's seeming more and more tone deaf by the day. I wish I felt the same as I did in 2011. But I don't. And I just don't care anymore."
Rating: 6.0
Sentiment: 0.184963768115942
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GreatAetherBosswrote on 15.02.2024:[8.0] "It's strange, rating Punk. Biased as a Chicagoan, biased as someone who loves a good promo, biased as a fan of what he once was, nowadays I don't see that as much. I remember being at the United Center when he came back, and let me tell you every video, every clip, every single documentation of that night when Cult of Personality hit doesn't do any justice to the noise. The roof blew off the building, fell back to Earth, then blew off again. We couldn't hear ourselves much less the music playing, and no one dared leave their seats until he was done talking. It was cathartic in a way, bringing the circle whole, ending a long drought of no CM Punk in wrestling. It was great seeing a childhood hero in a ring again, especially since when he was wrestling before I barely watched. I wasn't a big wrestling fan until after he left in 2014 but I still knew how big he was. But nostalgia can't exist when what makes you nostalgic is right in front of you, and after the highs of his return started wearing down, so did his body seemingly. Injuries can and have messed up careers in the past, but with Punk, he's just cursed it seems. Win the AEW Title? Break your foot in a freak accident days later. Come back and have a weird build to a main event reclaiming of your title on PPV? Tear your triceps. Come back to WWE and make it to the final 2 of the Royal Rumble and put yourself in the conversation for a world title match? Oh hey tear the other tricep while you're at it. Throw in the Brawl Out incident and the Brawl In incident and you got a really weird career since 2021 alone, never-mind his past run from 2011-2014 with the WWE and the ups and downs of that. At the end of it all, Punk is a whirlwind of a wrestler and even more-so as a person. Either you love him or you hate him, and it feels like he forces no in betweens. I dare make the attempt to be in between the two. One of the best talents I have seen, an icon on the mic who makes crowds go more silent than anywhere else, and a leader when he needs to be that can make seemingly anything thrown at him work out. However, we can't look past how he's been as a person since coming back, and even before to an extent. Time will tell how things go with WWE since he's out for who knows how long, but here's hoping I can come back to this and say he's worthy of a 10."
Rating: 8.0
Sentiment: 0.0429265873015873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BigPeanutGuywrote on 14.02.2024:[10.0] "The best to ever do it. The best finisher, the best in ring charisma, the best mic work, unbeatable in ever single aspect of being a professional wrestler. Go ahead and cry about it."
Rating: 10.0
Sentiment: 0.6714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: juiceisloosewrote on 09.02.2024:"Everything happening in the past few years from his AEW run to his run in WWE now, has proved to me that Punk should retire once and for all. His situation in AEW and even before in other companies he was previously involved in does not make him look good and I think that people are tired of defending him and his antics. Sure, he was good in his time but his toxic behavior should not be tolerated anymore just because he has this "legendary" status in the bussiness. This man has admitted on video that he has bullied and deliberately hurt a woman in the ring who was trying to get in the business and said that if it was any other wrestler but him, she would've just been fucked and thrown aside. And he now claims that he's an advocate for women in wrestling? Sorry but I just can't defend this piece of shit of a human being with his history of misogyny and other hateful shit. I really really hope I won't have to see him in any area of wrestling in the near future."
Rating: No rating found
Sentiment: 0.01622807017543859
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CDProsProwrote on 09.02.2024:[0.0] "Narcissist crybaby and very out of touch, shame he hates Hulk Hogan because hes a bigger primadonna than he is. Good he keeps getting hurt because it is telling him to go quit again. Not a nice person. Not a nice person and he steals things into making his aura. Keeps stealing the spotlight with promos from the 70s among the ridiculous tops he wears. Kinda sucks into marketing himself too, just has nothing other than cheap stuff, only original thing is his straight edge lifestyle. He takes everything like own cities stars, his finishers are KENTAs and Tenzans. His great act was in 2011 where he is famous for moaning about WWE into a storyline. In fact he is boring to sum him up, he is boring and gets no respect from me personally. Not the only one."
Rating: 0.0
Sentiment: 0.021929824561403525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: VictoriaDTwrote on 27.01.2024:[6.0] "Punk is great at pretty much everything when it comes to being a wrestler. But, these past couple of years it has become increasingly clear that he is an extremely toxic backstage presence. It doesn't seem to me that he cares all that much about wrestling and his return has been mostly about money, which is fine, but that just makes it feel all the more fake and transparent. It's not about AEW Vs. WWE, that's too childish for me. It's about integrity, living by your word, and being a good person. I don't see that in Punk at all, I hope he redeems himself, but at the moment he just isn't there."
Rating: 6.0
Sentiment: 0.19935897435897437
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kynarionwrote on 27.01.2024:[10.0] "To me he is everything I want in a wrestler - insane mic skills, great in ring work, outstanding presence - whatever role he is in, he excels magnificently, but I would say he really shines as a heel, an effortlessly dislikable villain. The Straight Edge Savior gimmick was a standout moment from him, very memorable. He's a truly one of a kind wrestler, from his indie days to superstardom, I don't think there will ever be a wrestler quite like CM Punk again. Has had many great feuds and I personally consider his feud with Raven in ROH to be one of the best of all time"
Rating: 10.0
Sentiment: 0.40384615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SLM248wrote on 24.01.2024:[10.0] "CM Punk is without a doubt my favorite wrestler of all time. I know he is controversial to some but, to some extent that's what drew me towards him. He is exactly the wrestler a young boy like me needed to see to draw me to watching pro wrestling. Without CM Punk I would not be a wrestling fan right now."
Rating: 10.0
Sentiment: 0.3371428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BruceMarcos524wrote on 20.01.2024:[9.0] "I know most of the people nowadays are 50/50 with CM Punk giving by his recent situations. But there is no denying that CM Punk is one of the most important wrestling stars of the last 20 years. Controversial but no doubt second's biggest draw in wrestling next to John Cena of the last 20 years. He has no catchphrase to remember, but his content of his promos is what it should remembered. One of the first indie darlings who broke barrier in the WWE. One of the guys who exposed the politics in the business, as his "Pipebomb" is considered one of the best remembered promos in wrestling history. In-ring skills he has solid fundamentals, and he can even go with more talented stars like Bryan Danielson or AJ Styles. But no question one of the biggest pros of CM Punk is his promos. When CM Punk speaks, people listen as you might get something interesting coming from his mouth. Most of the people wanted to hear what CM Punk has to say so a lot of people only tuned in to Raw or Smackdown just to hear Punk talk and providing reality check insults to his opponents. AEW did a tremendous job bringing Punk's passion back in wrestling but unfortunately Punk wasted his run there because he cannot deal with the people in the backstage professionally. Now he's back in WWE, let's see how long Punk would last until he will suffer another breakdown. Despite of his recent issues, still he has millions of supporters who backs him. Overall, CM Punk is an above average wrestler with excellent microphone skills. Huge asset and a draw to whichever promotion he works on."
Rating: 9.0
Sentiment: 0.18492618492618493
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Chosen1EJB05wrote on 17.01.2024:"10.0 Fantastic on the mic, A master in the ring, A rare sight of being able to be an effective face and heel. There will never be another like Punk. Never"
Rating: No rating found
Sentiment: 0.44999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: shilderwrote on 14.01.2024:[10.0] "Talk about putting ass to seats. Punk will sell out an arena in a heart beat. This guy has the "IT" factor every wrestler tries to find. His hard work ultimately paid off far later than it should have. If you are here and you don't know about CM Punk just go to youtube and let the rabbit hole begin. Enjoy."
Rating: 10.0
Sentiment: 0.018055555555555547
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Quick Manwrote on 13.01.2024:[7.0] "I've been a CM Punk mark since 2006, but his AEW run totally soured me on him. He's only average in the ring nowadays, carried by some undeniably fantastic promo work and stories. Time will tell if his WWE return can save him for me or if I truly am firmly off the Punk bandwagon in 2024."
Rating: 7.0
Sentiment: 0.013888888888888886
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Dntbamarkwrote on 10.01.2024:[8.0] "Fantastic promo, decent-in-ring worker who could work as a babyface and/or as a heel. I initially wasn't much of a fan of his work until he did the SES thing where he became something of a cult leader as well as his heel work with Jeff Hardy. I think Punk was a guy who got better and better the more opportunities they gave him to succeed, unfortunately he was never going to overtake guys like John Cena or Randy Orton and get that shot at the top spot. Even when he was WWE Champion, he never felt like he was the top guy and he was always playing second or third fiddle to whatever storyline SuperCena was doing at the time. His WWE exit and subsequent retirement was something we all saw coming, he was at a point where he needed to walk away and get away from the business for the betterment of his health and sanity. He tried his hand at UFC and despite never actually winning a match, he still went in there and gave it his all which is more than I can say for some of the guys on here knocking him for that. Punk's AEW run started off great but eventually grew tiresome due to his constant involvement in controversies and injury issues, the post All-Out Scrum incident was embarrassing to Punk and he shouldn't have lowered himself to that level when dealing with the "wrestlers" in that company. The highlight of his AEW run was his program with MJF and I was hopeful to see what he would do with the "Real World Champion" storyline but unfortunately his blow-up at All-In and subsequent departure from AEW screwed any chance of seeing where that story could go. When it comes to his AEW run, I don't blame Punk for it going sour, that company has a clear issue with leadership and TK is someone whose easily manipulated by wrestling carnies like The Bucks, Omega and their little kliq. It's a shame that they all couldn't settle their differences and make an angle out of the thing but like I said, thats on TK and AEW. The biggest issue I have with Punk is that he's a politiker, he's someone whose not happy unless things go his way. I've heard countless stories of guys who knew him in ROH and WWE and introducing someone like that into a company that has clear leadership issues was never going to work. With his recent WWE return, I wasn't a fan of his return promo. Punk's on his best behavior here, you can tell he's trying his best to be a good soldier, I hope it works out for him and I hope they don't try to screw him around and brings things back to where things were when he left the company."
Rating: 8.0
Sentiment: 0.1564950980392157
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheLegendaryEricwrote on 01.01.2024:[9.0] "CM Punk has always been a decent in-ring worker and has delivered some fantastic promos throughout his storied career. However, his ego has ultimately driven him down and he becomes bitter when he doesn't get what he wants in the industry which makes him extremely difficult to deal with if he can't put personal feelings aside. Overall, he's certainly done well in the industry and will definitely be remembered as an outspoken 'cult of personality', but recent evidence has shown this unfiltered outspokeness has also proven detrimental to him as well. Edit: Despite, the amount of controversy he brings, you can't deny he is a massive draw wherever he goes and when he's at his best he provides great storytelling as well as the occasional banger match. 2 more point."
Rating: 9.0
Sentiment: 0.14855275443510738
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JoeyConundrumwrote on 01.01.2024:"The best in the world, in the ring, on the microphone, even on commentary, no body can touch him. The greatest of the modern era, the true face of the pg era. He changed wrestling forever."
Rating: No rating found
Sentiment: 0.6375000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: kewf1988wrote on 24.12.2023:[10.0] "CM Punk is probably the Roddy Piper of the 2010s, but substantially better in the ring, as he consistently put out MOTY candidates, especially during his reigns as champion. But he is more known for his promos, especially the pipebomb in June 2011, which is still relevant to this day. He probably could have been the face in the company after the pipebomb, but his attitude probably prevented that, as he is way more antisocial than John Cena."
Rating: 10.0
Sentiment: 0.3071428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Seth Pilgrimwrote on 12.12.2023:[10.0] "He's the best on the mic, no doubt about that. That last promo, on smackdown tribute to the troops, was a masterpiece from A to Z. In-ring, i'll have to wait to see him back in action as i don't watch AEW (even though i saw his last match there, vs Samoa Joe at Wembley and it was pretty good. He's not the most skilled there, but as far as i remember he delivers, he has the intensity and the mojo that's needed."
Rating: 10.0
Sentiment: 0.315
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: god is a mythwrote on 11.12.2023:[7.0] "Let me drop a pipe bomb on Punk - The man should have been a standup comic rather than a wrestler. I am obviously exaggerating. His promos are good but he has never been an in-ring great. His big matches disappoint me. His two time limit draws with Joe bored me to death, his matches with Cena were in WWE which are not known for work rate. When he came to AEW he botched multiple moves in his match with Adam Page when he became champion for the first time. Every time you put him in with a good worker he comes off as second best. If you judge wrestlers by how good they are in the ring he is crazy overrated because of how well he talks."
Rating: 7.0
Sentiment: 0.2538461538461539
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: greaterdalewrote on 11.12.2023:[10.0] "CM Punk is an excellent talent that has had awesome matches and legendary promos. He's not exactly the best backstage presence and very much politiced a ton in AEW. But most top stars generally do. I will always love that his last moments in AEW was holding a pro transgender sign moments after lunging at his billionaire boss (not the smartest move but very ballsy.) My favorite match was his dog collar match with MJF and his match with Brock Lesnar at summerslam 2013 was quite good too. I'm glad he's getting another shot in WWE, his early promo work has been hit or miss and we haven't seen him in the ring yet, though its obvious he was good at doing that style a decade ago. I'm very much looking forward to the eventual Roman vs CM Punk match up and that should make big money. I would do that in a year and turn Roman babyface for that because I think there's big money in heel CM Punk in a while after they ride the initial welcome home babyface schtick."
Rating: 10.0
Sentiment: 0.4106521739130435
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ForeverHeelwrote on 04.12.2023:[0.0] "Oh Man, Leute jetzt wird es hart für mich. Ich kann diesen Comeback Hype von Phil Brooks ja und nicht "CM Punk" nicht verstehen. Ich bin nicht hier, um Freunde zu finden. Ich bin hier, um Geld zu machen hatte er im O-Ton in die Kamera in Nashville reingelabert. Einer der seine Identität für Machtelite verkauft hat, dass MJF und Eddie Kingston bei AEW in den Promos Brooks sagten. Das was Brooks vor zehn Jahren als er noch ein Außenseiter war mit guten Promo mit sogenannten Pipe Bombs zu catchten ist nun er selbst geworden. Der John Cena vorgeworfen hatte er könnte nicht wrestlen und nur wegen des Geldes weil mehr als andern verdiente ist das Doppelmoralisch. Ich bin kein Cenafan und er gehört nicht zu meinen Liebingiswrestlern, aber er hatte 2015 einen guten US-Title-Run. Reigns, Cena, und Lensar haben etwas was einen Phil Brooks fehlt Kämpferherz und Leidenschaft. Leute wie LA Knight, Austin Theory oder Damian Priest haben sich stark entwickelt und sind In-Ringtechnisch wie so am Mic besser geworden, es würde mich nicht wundern wenn sich die ersten Newcomer oder Youngstars sich über seine moralische Denkweise beklagen. Und ja hasst mich dafür das meine Meinung über den großen Helden "CM Punk" was er nicht ist, er ist ein Lügner und ein Heuchler der nur ein Legends Contract will, um in die Hall Of Fame reinzukommen um und noch mehr Money zumachen."
Rating: 0.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Enchantiumwrote on 04.12.2023:[9.0] "CM Punk will forever be considered a controversial name wherever he dabbles his foot. Despite that, he will always be one of the best names on the microphone. He manages to make anyone look like a beginner on the mic with his quick-thought-out insults and smart, quick-witted lines. His wrestling is good and technical, and it always works well for people with different styles, maybe apart from someone who does stupid and unnecessary flips. It is nice seeing him get the same pop as when he left, and it is great to see him back in the place where he actually belongs. A place without an incompetent booker. I really hope his next journey in WWE will be as enjoyable as his previous ones."
Rating: 9.0
Sentiment: 0.14987468671679202
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Are Youwrote on 03.12.2023:"CM Punk is one of the most controversial and charismatic wrestlers in the history of professional wrestling. He has a strong personality, a sharp tongue and a rebellious attitude that make him an icon for many fans. CM Punk is a great talent and an excellent performer, who knows how to entertain and excite the audience with his skills in the ring and on the microphone. He is also a fighter who is not afraid to express his opinion and challenge the status quo, even if it costs him opportunities or problems with the company. He is an example of someone who follows his dreams and passions, without letting himself be discouraged by difficulties or criticism. However, I also think that CM Punk has some flaws and some questionable attitudes. He can be ungrateful, disloyal and hypocritical, changing sides or opinions according to his convenience or interest. He is someone who thinks he is superior to others and who does not accept defeats or failures well."
Rating: No rating found
Sentiment: 0.3965277777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Undertaker4everwrote on 01.12.2023:[10.0] "Einfach The Best In The World. Freue mich das er endlich wieder bei der WWE zu sehen ist. Dachte mir nämlich nach seiner AEW Entlassung das war es jetzt mit seiner Wrestling Karriere aber wie gesagt ich bin wirklich gespannt auf sein WWE Comeback da ich schon früher ein riesen CM Punk Fanboy war."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nudel1701wrote on 29.11.2023:"Passend zu seiner Rückkehr zur WWE gebe ich mal meinen Senf dazu. Subjektiv gesehen ist es immer noch surreal, dass Punk wieder da ist. Er ist seit Beginn meines Fandaseins mein absoluter Lieblingswrestler (an das Standing bei mir kommt nur Bryan Danielson ansatzweise ran). Natürlich ist er objektiv gesehen ein schwieriger Charakter, jedoch denke ich, dass die WWE ihn für einen letzten großen Run in seiner Wrestlingkarriere so gut es geht hinbekommen wird und natürlich ist das auch von Phil persönlich abhängig. Ich wünsche mir einfach, dass alles gut geht und wir noch 4 - 5 Jahre Spaß an dem Wrestler CM Punk haben dürfen, denn das ist zweiflesohne dass, was ihm am besten liegt und hier auch die meiste Beachtung finden sollte. Klare 10 Punkte von mir."
Rating: No rating found
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: alidoyduwrote on 29.11.2023:"CM Punk is back baby. this is the most fabulous thing that has happened since edge's return. So we are lucky. watch and enjoy only. dont be sob"
Rating: No rating found
Sentiment: 0.2722222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MegaSPSwrote on 29.11.2023:[10.0] "cm punk is one of the best ever. he was always one of, if not, the hottest act in every company hesworked in whether it be wwe, aew, roh, iwa mid south, whatever the company is, punk was the star for a reason. always really good in ring and even better on the mic. he quit wrestling in 2014 and for 7 and a half years straight fans chanted his name practically weekly. he returned to wrestling making his debut in aew, which put aew on a huge pedestal and had some of the biggest stories in the company until he got fired. his recent return to wwe after 10 years is the biggest thing to happen to the company in a long, long time. everywhere punk goes theres money and he's the reason behind it."
Rating: 10.0
Sentiment: 0.19393939393939402
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tomas Cunhawrote on 28.11.2023:[10.0] "Absolutely brilliant wrestler. When he speaks, you listen. When he appears, you watch it - hate him or love him. Has created countless memorable moments and matches throughout his wrestling career. CM Punk will unquestionably be remembered forever by wrestling fans."
Rating: 10.0
Sentiment: 0.22000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CorpusSkiptotelicumwrote on 28.11.2023:[4.0] "A mixed bag is the best way to put Punk's career as a whole. Not the most gifted athlete but as master of structuring, selling, and overall intelligent psychology, he was one of the best wrestlers in the world for quite a while, from ROH to the first WWE exit. And as a wrestler and even as a character, some of his best work was done in ROH, with the original summer of punk being in the shortlist for best storylines of all time. His time in the E started off slow with some interesting bits like the straight edge society, but truly came into its own after the pipebomb. Some of the best segments and matches in company history come from those three years. After coming back to AEW, everything was going right. The MJF rivalry, and especially the short Kingston feud are some of the best work of his career. As it tends to happen though, Phil Brooks screws CM Punk and heavily taints his legacy. No matter what he does in the WWE, the damage is done. I think his collision return promo is a great encapsulation of who he is currently. "Tell me when I'm telling lies? " As good as he is, CM Punk is one of the biggest charlatans in wrestling history. He calls himself Punk, but there's nothing 'Punk' about Phil Brooks. He says that he's all for women's rights but he's on tape joyfully degrading and admitting to exploit and physically assault a woman, something he's never addressed. He talks big about workers rights and then he signs for a callous company that fired more than a hundred wrestlers in the middle of a pandemic. He calls other wrestlers soft and then proves that he can dish it out, but can't take it back as it took a single cheeky remark by Jungle Boy for him to blow up and get violent. If he was actually 'punk', if he truly loved wrestling like he says he does, he'd do what someone like Jon Moxley does, indie dates for the love of the game. Instead he jumps from one billionaire to another, from vince to dana white to tony khan to whoever owns the wwe now. Its a real shame because he truly is a talented performer. The only true statement in that whole promo was that he's grown older, which he follows up with the biggest lie, that he's wiser. The man clearly has a shit ton of unresolved issues, he's erratic like if Kanye was a wrestler. This dude in his first AEW promo said that he needed to be healed spiritually, mentally and emotionally to return... you think that he's a healed man as he walks back to the WWE? no fucking way mate. And yet, the spell he has on people is undeniable. One more hype return and everyone forgets everything else... like it never happened. Cant even be that mad, its impressive. A real cult of personality."
Rating: 4.0
Sentiment: 0.25349071832122677
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wrasslinfan619wrote on 26.11.2023:[10.0] "I posted this without A comment A few months ago but I'm gonna post one now, oh CM Punk. Backstage issues makes him set out to kill his reputation, he's doing none of that in my eyes. But this is about CM Punk the wrestler, I understand rating him low cause his backstage issues but I just can't. He's always been one of my favorites, and he's one of the most influential wrestlers to ever do this. WWE, AEW, ROH, The indies, at one point TNA he's done it all and he's been great in every promotion. His best run was in my opinion his 2011-2013 run in WWE, but he's had amazing runs in AEW and ROH as well. Not only is he slept on in the ring its for A good reason, top 10 microphone worker and he might even be top 5 in my opinion. Overall he's in my opinion one of the best of this generation and I'd debate any generation. Edit: Oh hey he's broke the internet only days after I posted this, welcome back Punk you've earned this 10."
Rating: 10.0
Sentiment: 0.41333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JediSaiyanMaster1203wrote on 17.11.2023:[10.0] "CM Punk is my favorite wrestler to emerge from the independent scene from the 2000s, a man who feels like he was for the old school territory days and was brought up in the wrong generation. He's easily in the top 10-15 best talkers on the microphone, he's so good that people believe 100% everything he says whether it's his fans or detractors. While he may not be the best in ring wrestler, he's a great storyteller and worker who can put on great matches. CM Punk has so much charisma, that he could read a phone book and make it entertaining. Everywhere he's gone, he's had legendary runs in every promotion whether it's ROH, WWE, AEW, etc. having great feuds from Samoa Joe to MJF, he's a perfect storyteller. Overall, a total package of a performer in my eyes no matter his size and was the man who has been instrumental in bringing people's interest in wrestling back."
Rating: 10.0
Sentiment: 0.46491228070175433
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: devxntewrote on 14.11.2023:[10.0] "I'm going to preface this by saying CM Punk is my favorite wrestler of ALL TIME. That being said, CM Punk is one of the last wrestlers who are actually the complete package. He can easily get people invested into what he's doing, he knows how to work the fans, he has a great understanding of in ring psychology as well as being able to give tribute to older wrestling with a modern twist to them. He has been apart of some of the greatest stories that AEW has ever seen, and throughout his career he has been able to make the most out of what was given to him. He's polarizing for a reason and he's a top 3 draw in professional wrestling today because of how good he is. His character work is damn near flawless, his ringwork is great, Punk just gets it. His match catalogue is amazing, I'm going to try to go in order for listing what I consider to be his classic matches, His series with Chris Hero, His dog collar match with Raven, his trilogy with Samoa Joe, All of his matches against Danielson, vs The Briscoes, His match against Aries to kick off the summer of punk, His matches against Jeff Hardy, His matches with Cena (Including the MITB 2011 and the Raw 2013 ones) The Undertaker match, Jericho in 2013, Lesnar at Summerslam, His match against Kingston, his matches with MJF, his match with Moxley at All Out, the renewal of the Samoa Joe feud. Just fantastic. And that's just matches that I think are bonafide classics and don't include just "good" matches that he may have had or matches that I personally think are great (the Adam Page match or the TLC 2011 match comes to mind). Not only that but boy can he tell a story. The feud with John Cena, he made the Kevin Nash thing watchable, the Chris Jericho story was probably the best story at WM28 minus Rock-Cena and then the next wrestlemania having the best story and match with Undertaker. His feud with the Rock was rock's best work when he returned. His feud with Rey Mysterio, his story with Jeff Hardy which was a precursor to the Straight Edge Society. and of course his two summer of punks. Again, he is one of the last wrestlers who gets it. He knows how to make people feel and he knows how to straddle the line between real and "kayfabe" (I hate using that word to be honest). This is why I am giving him a 10. And it's sad that we're seeing a decline in his rating due to backstage stories that in the grand scheme of the wrestling business, aren't that bad lol."
Rating: 10.0
Sentiment: 0.3270950594121325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: skyesversionwrote on 12.11.2023:[8.0] "I mean...I can't say that he's a bad wrestler. That would be like me saying that John Cena is a bad wrestler. They're both great, but have gotten into a few backstage messes. I've only heard of one from John Cena so that's enough talking about him. We're talking about the magnet that CM Punk most likely has strapped to his back. Like he draws attention and he's not even an active wrestler right now! Like it's crazy but honestly not surprising. He also draws lots of heat. Just to name a few, The Elite backstage altercation, the Pipebomb Promo (scripted or not it still counts), and the All In thing with Jack Perry. He's a problematic person but a great talent. It's weird."
Rating: 8.0
Sentiment: -0.05788690476190472
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MrCheesyPotato37wrote on 11.11.2023:"Polarising. One of the greatest mic workers of all time. Has changed the wrestling business forever. Has had countless classic matches too. All round top tier wrestler."
Rating: No rating found
Sentiment: 0.29333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GrecoRomanYeomanwrote on 27.10.2023:[10.0] "The best in the world. Name another wrestler that can ignite such strong feelings in the wrestling community. Love him or hate him: you'll turn on the TV just to see wtf he's doing. He's been great in the ring throughout his whole career, especially during his ROH/WWE runs. His time in AEW was great, he's even the reason I started watching it in the first place, but it was rough. Punk's aging, injuries, and constant drama really impacted his in-ring work and everyone's perception of him. However, I really enjoyed the ROH callbacks during his recent run with Samoa Joe. Very sad way for his career to (most likely) end in such a stupid way by making Tony "fear for his life backstage". It will be great and hilarious if he makes a WWE return, but if he does Impact or NWA then maybe I'll have to start paying attention to those promotions!"
Rating: 10.0
Sentiment: 0.16340579710144928
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MarshalAtlanticwrote on 19.10.2023:[7.0] "Punk was a decent and entertaining wrestler to watch in the 2000's. He had skill, character, and an underdog appeal. He of course also very important to American wrestling. That being said I could never personally find him compelling enough in the ring to rank him among the greatest. He's not a guy I was ever specifically excited to see in a match. Him promo work was undeniable but I haven't found him exceptional beyond that. His AEW run was pretty underwhelming too, with just a few noteworthy matches and a whole lot of backstage drama. Still, he has his place, and I can't deny his overall career has been pretty good."
Rating: 7.0
Sentiment: 0.231078431372549
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Excellence of Executionwrote on 05.10.2023:[8.0] "Punk ist ohne jeden Zweifel ein echt Guter, der alles mitbringt, was ein WWE Main Eventer braucht. Vor allem am Mic ist er überragend. Nicht nur verbal sondern von der gesamten Präsenz her. Allerdings funktioniert er im momentanen WWE Umfeld als Heel WEIT besser. Als Face muss er sich immer dem handzahmen WWE Schema dessen, was ein PG Face ausmacht, unterordnen. Und das macht viel von seinem Gimmick bzw. seinen Möglichkeiten zunichte. Ziemlich überbewertet finde ich Punk allerdings im Ring. Da ist er zwar keineswegs schlecht, jedoch nicht halb die Offenbarung, die am Mic ist. Gerade in größeren Matches hab ich ihn schon öfters botchen sehen. Alles in allem ein starkes Gesamtpaket - wie gemacht für die WWE. Ich finde ich es aber teilweise etwas überzogen, wie sehr er im Netz abgefeiert wird. Mit seinen beiden Ausflügen in die UFC, bei denen er wirklich überhaupt nicht gut aussah, hat er sich definitiv keinen Gefallen getan. PS.: Ebenso wenig mit dem Theater bei AEW."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Awes0max13wrote on 04.10.2023:[10.0] "Absolutely one of the best ever to ever step in the ring, CM Punk is one of those few wrestlers that draws raw, guttural reactions from fans because of his polarizing personality, his venomous promo skills, and versatile in-ring skills over the years. Punk was a highlight of the early 2000s independent scene with a defined character and crisp in-ring skills that put him on par with other greats of the era, before becoming a unique & solid hand in WWE. Punk continued to show off his adaptability and talent with great matches and stand-out characterization (his run as a cult leader for the SES was a major highlight at the time) before going white hot with one of the best promos of all time. Even with ups and downs, Punk had an aura about him, a guarantee that he would put out great matches with a variety of opponents and could hit the nuclear option at any moment, something that continued even during his hiatus from in-ring action. He got right back in step during his AEW comeback with some quality matches but sometimes couldn't quite match up with other great talkers in the promotion before his eventual release. A 20+ year career with significantly more highlights than lowlights and the ability to present himself in a once-in-a-lifetime package in the ring and on the microphone is worth celebrating, even if his reputation outside the ring is not the most stellar. Punk has brought me a lot of joy over the years and I'm glad I went on the roller coaster that was his career because there's never been quite anything like it in wrestling and probably won't be again in my lifetime. One of a kind, for better or for worse."
Rating: 10.0
Sentiment: 0.2831043956043956
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: robbyplahawrote on 28.09.2023:[10.0] "My favorite wrestler off all-time with Triple H this man made me the huge wrestling fan I am today. I do hope he returns, as Survivor Series in Chicago is looming we might see him back in the square circle again. CM Punk has major accomplishments in every promotion he been in, ROH, WWE & AEW."
Rating: 10.0
Sentiment: 0.24062499999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SavageTygerwrote on 27.09.2023:"The most polarizing professional wrestler of all time IMO. People either love him or hate him, I don't think there is any in-between and he doesn't care either way. Punk has always been 100% authentic for better or worse and I will always take authentic over passive-aggressive tweeters of the modern-day generation any day"
Rating: No rating found
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ECWCWWEAEWwrote on 22.09.2023:[9.0] "Punk is one of my favorite wrestlers of all time, and yet recent events has caused me to not know for sure how to feel about him over all. His backstage personality, his inring persona and who he seems to be outside of the wrestling world all seem completely unrelated and yet he is all 3 of those vastly different personalities. Oh well I guess. his matches are still phenomenal and his mic work will always be second to none"
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SIRasdf23wrote on 21.09.2023:[9.0] "*NOTE* This is based purely on CM Punk's ability as a wrestler and not his activities outside of the ring (even if those activities occasionally force themselves INTO the ring) You cannot deny that Punk is one of the most talented wrestlers of his generation. Even in his last days with AEW, he could hold a crowd in the palm of his hand with his match and promowork. He's one of the few wrestlers who can truly say he played a key role in reshaping how many people enjoy wrestling nowadays. Heck, you can even argue that AEW itself was founded by Punk's rebellious attitude against what had basically been a monopoly on the wrestling business that WWE had in the 2000s/2010s. And, he got to prove that he still had it when he came back to AEW. He had, arguably, some of the greatest matches and storylines of his entire career in AEW, it's just such a shame that his attitude and ego eventually led to the whole thing shattering into dust over time."
Rating: 9.0
Sentiment: 0.22095238095238096
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: staabi2hottywrote on 21.09.2023:[10.0] "Pepsi Phil Brooks. My oh my, how the fickle internet wrestling community used to love you and how we used to chant your name as an act of rebellion at WWE events. How you have single handedly been the only wrestler to make me interested in watching WWE when it went PG, had the most iconic promo of our current generation in which you said things that no one else could say, and most talent has felt but never had the balls or the amount of charisma or ability to get over to be able to cut a shoot promo on a PG program in the early 2010s where Vince was in everyone's ear directing things to be exactly the way he needed them CM Punk was the one man to stick it to him which is also exactly what he did to the Elite and was the most over thing to happen in AEW history i would say everyone cared about AEW more than WWE for a minute but ultimately CM punk has been blackballed by AEW much like back in 2014 with WWE for the most part and hell there's rumors now that he could return to WWE now but who knows. Yes CM punk certainly has drama surrounding him and problems keeping his mouth shut. But come on guys, have you never had a moment in your life where you are just sick of the BS and you are sick of the way people are talking to you and you just want to punch them in the face? Punk is the guy you can vicariously live that action through, he is the embodiment of a modern day stone cold steve austin, the character who puts up a middle finger to his boss, his rivals, his former friends, and society alike.. Only thing is he is straight edge which kinda makes him nothing like steve austin and his own character at the same time yeah! Don't listen to the fickle IWC, Punk is a legend and should be looked at as such. Is he Top 10 wrestlers all time? Hell no, but he is one of the most influential of our generation."
Rating: 10.0
Sentiment: 0.15884262796027504
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DangoDaisukiwrote on 18.09.2023:[6.0] "CM Punk wird immer schlechter im Ring und von dem was er momentan leistet hat er keine hohe Punktzahl verdient. Aufgrund seiner Indy und WWE Vergangenheit gebe ich ihm gerade noch 7 Punkte. Edit: Nach dem ganzen Hin und Her, auch dem schlechteren Wrestling eine leichte Abwertung auf 6 Punkte. Ich hoffe für CM Punk dass er irgendwann wieder zur Besinnung kommt."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MasteroftheMatchGuide99wrote on 17.09.2023:[5.0] "I used to be a big fan of him, but this guy has a huge problem with creating a toxic work environment and seems to burn bridges no matter where he goes. As good as he is in the ring, his attitude has severely soured me on him, especially because I can't tell if he's trying to cause problems or if he just doesn't care. In wrestling, skill is half the job, and the other half is personality. His volatile behavior is the main reason why I have him at halfway. In other respects, he certainly has been a good wrestler, but over time, his body seems to have broken down and he's much slower than he was in WWE and ECW. I understand he's older than that time of his career, but as charismatic as he is, his body seems to be in the category of "writing checks that the body itself can't cash." Like I said; fantastic wrestler, charisma maestro, but his attitude and fragility are both too big of a negative to ignore."
Rating: 5.0
Sentiment: 0.08543650793650794
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ptomlinson98wrote on 13.09.2023:[9.0] "Probably the most important Western wrestler of his generation. Never the best in-ring but stood out a mile in WWE as an excellent technician. Was doing his best ever work in AEW, handled his physical limitations really well and became an even better in-ring storyteller as his body began to fail him a little. Such a captivating talker, didn't ever really feel like it was a wrestler cutting a promo but a man who gives a shit, talking freely. If his final contribution to the wrestling world was a feud with Samoa Joe that ended in front of 81, 000, what a way to go. I respect his inability to compromise on his beliefs but can't help but think he'd have a 10/10 career if he could've gotten out of his own way a little towards the end."
Rating: 9.0
Sentiment: 0.23125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GoldLigerwrote on 10.09.2023:[7.0] "Punk is one of the most important American wrestlers ever. Not the best, certainly not in the ring, but most important. This guy covered in tats that lived the gimmick of never taking drugs in an industry known for abusing them and came up on the indies made it to the top of the largest wrestling company in the world and their first big competitor since the death of WCW on the back of excellent mic work and connecting with a lot of fans in a way most people just didn't, all while being one of the first to open doors thought permanently shut in WWE and beyond. That said, Punk's influence doesn't mean he's a 10, nor does his promo work no matter how good it was. As an in-ring guy, Punk was good, but never great, and his best matches often involve some of the greatest in-ring workers of all time in their prime elevating him; I found his AEW run had some of his best work because he actually slowed down and worked more psychologically instead of doing as much indie stuff that only ever looked good in his youth in ROH. The only exception would be his mystical chemistry with Cena; the two of them were ideal opponents. Finally, there's the elephant in the room. Punk's always rubbed people the wrong way, and in some ways that added a lot to his character, but what he pulled backstage in AEW is just not something I think is excusable. There's politicking and then there's fighting people in the locker room over petty disputes, and him getting his own show where he got to dictate who would and wouldn't be in the locker room somehow didn't even solve the problem. If Punk's last moments in pro wrestling were a feud with Joe that ended in an excellent match in front of 81k in Wembley, then hey a lot of guys have gotten way worse send-offs, but there's so much more he could've accomplished if he had just swallowed his pride and uncurled his fists. As a talent I would say an 8, with a point for his mark on the industry and two off for his backstage behavior in AEW."
Rating: 7.0
Sentiment: 0.3134564509564509
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wildothedildowrote on 08.09.2023:[8.0] "As a character on screen, Punk is undeniable but his toxicity backstage ruins what could have been one of the best characters in wrestling history. He has the gift of gab but is a winey manchild who thinks that everyone else is the problem when the only time issues arise he is the constant in all the backstage drama."
Rating: 8.0
Sentiment: 0.2125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ThatHouseCDN780wrote on 08.09.2023:"8/10 - CM Punk is probably one of the most naturally oozing charismatic wrestlers of all time. The negative is that because everyone tells him he's the best in the world; he now acts like he's the best in the world. Petty personal feuds and big timing everyone has finally caught up with him lately. 8/10 for skill and 3/10 for ego"
Rating: No rating found
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mshulman5wrote on 06.09.2023:[7.0] "I don't like CM Punk. He's a drama queen and it follows him everywhere he goes. Everything has to be what's best for Punk... That said he's obviously a highly skilled mic guy. His best wrestling days have long past but he can still put on a solid if not slower paced match and look decent. He was never an A+ guy in the ring. He's a 7 on a good day. I do see there's a lot of Punk marks on this site though... smh... 9.26 average rating is hilarious."
Rating: 7.0
Sentiment: 0.3416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wcwfanwrote on 05.09.2023:"There are very few - if any - active wrestlers with the magnetism of CM Punk. When he's on screen, he's very hard to ignore. There are better technical wrestlers for sure but he can still go. Capable of telling a brilliant story through his promos and matches and I think his feud with MJF is my favourite story AEW's done by a distance. Its a shame how it ended between Punk and AEW - for all the rumours, very little of the saga played out in public so its hard to judge who was in the right and wrong, but his behaviour at the All Out 2022 press conference was the height of unprofessionalism - it made him, Tony Khan and AEW as a whole look absolutely terrible and I think it'll take a lot of work and time for the brand to recover."
Rating: No rating found
Sentiment: -0.014813492063492051
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: travis-404wrote on 05.09.2023:"10/10 CM Punk is a special talent, truly one of the greats in a generation full of them and yet above all he managed to stand out. Punk is a wrestler I've looked up to for most of my life. At the end of the day what makes him so special is why we've been robbed of him for so many years, his ego above all else is why he is so good, that swagger he walks with, that charisma he talks with make him a highly combustible man and never has that been seen more clearly than his most recent run in AEW. But even that was unable to dim the flame that Punk with his old school sensibilities brought to the Modern World of Wrestling."
Rating: No rating found
Sentiment: 0.2308403361344538
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: methodatlaswrote on 03.09.2023:[3.0] "CM Punk's return to professional wrestling after a 7-year hiatus was nothing short of spectacular. Like many, I was there at AEW Fight For The Fallen in 2021, chanting "CM Punk" at the top of my lungs. The energy, the anticipation, and the subsequent euphoria that followed his debut on Rampage in Chicago were palpable. Every hair on my arm stood on end, and it felt like the wrestling world had shifted on its axis. But what followed this grand return was a series of unfortunate events and decisions. The drama that unfolded, both in the ring and behind the scenes, left many of us puzzled. The CM Punk that we had once championed now seemed embroiled in controversies that threatened the very fabric of his legacy. The audacity of asking for stock in AEW upon returning from his first suspension was a head-turner for sure. Was it the same Punk we knew from before, or had time away transformed him into a more demanding and perhaps more entitled superstar? While he didn't get the stock he demanded, being handed his own TV show seemed to be a compromise, but also an acknowledgment of his star power. However, the crescendo of his disputes with AEW management led to a contract termination on grounds that were legally justifiable, saving AEW from any financial obligations. It's disheartening to see how someone, who had such a triumphant return, had it all unravel so quickly. Whether you're a fan who loves to hate Punk or one who hates to love him, his impact on the business can't be denied. Maybe, as time heals wounds and perspectives shift, we'll once again cheer for the straight-edge superstar. But for now, it's a farewell tinged with a mix of admiration, disappointment, and hope for better days. Until then, goodbye, Punk. See you in the squared circle... maybe in another seven years?"
Rating: 3.0
Sentiment: 0.1660493827160494
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: No Onewrote on 03.09.2023:[10.0] "One of the greatest promo artists in pro wrestling history. His "Pipe bomb" promo is legendary. One of the main guys that built Independent Wrestling into a cult phenomenon. One of the first wrestlers to ever be called a "ROH Legend". His feuds with Chris Hero, Raven, Samoa Joe, & John Cena are legendary, and his matches against them will all withstand the "Test of Time". Amazing storyteller. Highly charismatic. Is considered a "Real One". Was pretty much the first Independent Wrestling Legend to become a major success in the WWE. His matches against The Undertaker, Brock Lesnar, Daniel Bryan, & Jeff Hardy in the WWE also stand out as memorable. His WWE World Title reign between 2011-2013 is highly memorable. What he does in AEW will be very interesting & should be exciting. He is the ultimate "Prodigal Son" of pro wrestling. UPDATED: Similar to The Ultimate Warrior, CM Punk is a Legend. However, it is a strange legacy, as a lot of controversy nearly overshadows his legacy. CM Punk's name will also probably have a lot of question marks surrounding it when Hall of Fame discussions arise. His ROH Hall of Fame induction may even be the only one that he ever receives."
Rating: 10.0
Sentiment: 0.31116666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HammertonWaywrote on 02.09.2023:"For someone who built a career by making backhanded comments to those he didn't like on live television, it is highly hypocritical that he couldn't take those comments himself from others. Had been toxic for the company for over a year and has finally been fired. Good riddance."
Rating: No rating found
Sentiment: 0.24909090909090909
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Lyracwrote on 18.08.2023:[6.0] "Honestly. While i believe that Punk is indeed a great wrestler and can amazing with microphone. His childish personality just ruins it all for me. Since return i dont see anything special in him. While he can still wrestle 3.8 star on a good night him having a bad attitude doesnt help. After all he is 44 years old now and should act more maturely. Even when he was crowned the main champion of a company he still did stupid things. Like who the fuck starts having backstage fights when they're supposted to be the 'Main Man'? Im happy that his run with the main belt is over and i hope he never gets his hands on it ever again. Again he is still a unique and great wrestler but his personality, ego, inmature acts just ruins everything."
Rating: 6.0
Sentiment: 0.1916071428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MDavis2001wrote on 14.08.2023:[6.0] "Hit his in-ring prime during his ROH days and is a Hogan-esque egomaniac, but can still put on a good match when he isn't attempting avalanche hurricanranas and buckshot lariats. Not in my top 10, maybe not even in my top 100, but still deserves props for bringing in new fans with the pipebomb promo back in 2011."
Rating: 6.0
Sentiment: 0.3672727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Scapwrote on 12.08.2023:"Here is one guy that kept me interesting in wrestling has an adult. He spits great promo that feel genuine, no just a comedy routine like but something that feels like a real person might say if they were really articulate. Also great in the ring, it's rare that someone his size can rely this much on psychology, he doesn't have the flashiest style, he doesn'T do flips but he knows how to build a match that keeps fan entertained and accomplish what ever the goal of the match was(getting someone over, furthering an issue, ect) He brought me back as a fan with his famous pipe bomb promo and brought me back again when he came to AEW."
Rating: No rating found
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ViolenceBretwrote on 11.08.2023:[9.0] "CM Punk is easily one of the most complicated men in the wrestling industry. To get the elephant out of the room, he was completely right about The Elite, yet Tony really should have showed more back-bone to both parties. Regardless of drama, CM Punk has done things his own way. Like Roddy Piper before him, Punk's greatest strength is his wit and command over the English language. In WWE he caused a slew of controversy for simply speaking truth, and in Ring of Honor he was a heat magnet for crowds. On the independent scene, he demanded attention and was captivating. Once Punk made the jump to WWE, an internet darling was born and the fans had someone new to root for. He was the antithesis of John Cena for better or worse, but at that time he was the antidote we all needed. Having burned nearly every bride imaginable, Punk was free of WWE and could do anything he wanted. Naturally he went into MMA and well... he came back to professional wrestling fast. AEW at times feels like the resurrection of WCW, and old stars returning is just half the fun. Despite being prone to injury, Punk is always a good main event champion that can tell stories. Regardless, he loses some points for that previously mentioned MMA run which was just sad. He might have borderline personality disorder, he might be antisocial, but hey, there is nobody else like him. 9.9/10"
Rating: 9.0
Sentiment: 0.1651291237498134
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: celticinvaderwrote on 05.08.2023:[9.0] "Prime CM Punk might be the best ever on the mic, anti-establishment in the best way possible, and reminiscent of Stone Cold Seve Austin sometimes. Lots of fun to watch in the ring too, dude CARRIED the PG era in his heyday and the Summer of Punk is one of my favourite storylines ever."
Rating: 9.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KKeanelwrote on 02.08.2023:[8.0] "Punk is that type of guy who you would love to watch on a TV screen on a weekly basis, but if you would be part of his enviroment, he would quickly change your mind. Normally I'm not review private character or actions of people here, but his toxic character made people sick generally everywhere he was. As a wrestler? Brilliant. His ROH, 2009-2013 WWE and first 9 months in AEW runs were absolutely insane. As a talker? I don't need to talk about pipebomb and other fantastic stuff. But as a co-worker or guy whose actions I know? I have a very big problem. TK's big gift in form of 2-hour long Saturday program for Punk only to avoid not favourable co-workers is impressive and I hope that good start of this show and interesting Phil's stuff will last longer that his previous good things done in wrestling."
Rating: 8.0
Sentiment: 0.15249433106575966
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gold Fistswrote on 24.07.2023:[7.0] "He's very smooth both in the ring and on the mic but he probably shouldn't spend any more than five more years in the business. Three points off for being one of the most notable backstage crybabies of all time."
Rating: 7.0
Sentiment: 0.504
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Matt51295wrote on 20.07.2023:[4.0] "Wrestling equivalent of "Old Man Yells at Cloud". He had some good matches in ROH but I really don't get the love. Just a dude who claims to be anti-establishment yet has a hissy fit when someone breaks his rules."
Rating: 4.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: John Brandowrote on 17.07.2023:[9.0] "Ich halte es für schwierig einen CM Punk zu bewerten, der wirklich eine "besondere" Persönlichkeit im Wrestling-Zirkus darstellt. Einerseits kann ich verstehen, dass es die Leute aufregt, wenn er zu riesigen Ego-Ausbrüchen neigt und sich einfach nicht in den Dienst der Mannschaft stellen will. Er überwarf sich mit der WWE, obwohl er dort eigentlich immer Sonnenlicht genoss. Nicht umsonst war er lange dem Wrestling ferngeblieben. Auf der anderen Seite kann man aber auch nicht abstreiten, dass Phil Meilensteine für die Geschichte des Wrestlings schuf (Summer of Punk, Colt Cabana, Gürtel-Regentschaft). Im Mikrofon verfügt er über eine dermaßen hohe rhetorische Intelligenz, dass es ein Genuss ist, ihm zuzuhören. Im Ring ist er auch für den ein oder anderen Klassiker gut. Letztenendes habe ich mich für 9 Punkte entschieden, da ein CM Punk, so schwierig er möglicherweise auch sein kann, sicherlich seine Daseinsberechtigung hat und er auch irgendwo nicht mehr wegzudenken sein wird aus den Wrestling-Geschichtsbüchern."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DillonAAAAEWWWEwrote on 16.07.2023:[10.0] "CM Punk is one of the GOATS has had amazing matches with everybody can wrestle any style amazing promo guy can do legit everything you want he is an all timer"
Rating: 10.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DhruvChouhanwrote on 10.07.2023:[7.0] "I wanted to give a 7.5 but thats not an option. To me he is more of a 7 than an 8 so i am gonna underrate him here a bit. A very good wrestler with high peaks but consistency wise does not touches the elites of his generation."
Rating: 7.0
Sentiment: 0.5674999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MattHallwrote on 10.07.2023:[10.0] "I've always loved his ring attires, especially his SummerSlam 2011 ring attire. Should've been a lot bigger in the WWE during his tenure there, he is also smooth in the ring and on the mic."
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KTG1515wrote on 03.07.2023:[6.0] "Depending on what CM Punk you get, you might get a great wrestler. His true strength is on the mic, while his wrestling has always been overrated, but solid. His antics outside the wrestling ring is what hurts him here, but is a captivating personality nonetheless."
Rating: 6.0
Sentiment: 0.32999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NEVERoverweightChampionwrote on 29.06.2023:[6.0] "He is alright, surely a great talker with charisma but he is also extremely overrated in the ring and maybe one of the worst athlete I've seen for someone booked as a main event talent."
Rating: 6.0
Sentiment: -0.039583333333333325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Megastar309wrote on 27.06.2023:"One of the best on the stick & fantastic in the ring, Punk truly has it all. However, I feel his only limiting factor is his attitude backstage. For me, his backstage problems are the only reason his isnt a 10/10 wrestler. Nevertheless, Punk is incredibly entertaining."
Rating: No rating found
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MMS200055wrote on 25.06.2023:[9.0] "We must never confuse, one thing is that the wrestler is unprofessional or controversial in his speeches, the other is that he is very good in the ring, creating great rivalries, having quality micskill and consequently high popularity. Without a doubt CM Punk has his place in wrestling."
Rating: 9.0
Sentiment: 0.45899999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SoaKaswrote on 23.06.2023:[8.0] "Based on his current status, that is the most I can give. He's a total legend and the first wrestler I ever liked when I was a kid. However, there's age and there are injuries that drag his rating down. Also I'm tired of the shoot-style promos and I hope he goes back to being a great mic worker like he was for the majority of his career."
Rating: 8.0
Sentiment: 0.14944444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Egyptian Dragonwrote on 19.06.2023:[10.0] "One of my favorite wrestlers of all time and one of my childhood idols. No one can ever beat him when it comes to holding mics and talking. He is a great performer and one of the most charismatic wrestlers of all time. His classic rivalries and matches to the likes of John Cena, Samoa Joe, Jeff Hardy, etc. are considered of the greatest of all time."
Rating: 10.0
Sentiment: 0.5777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: comewhatmay927wrote on 18.06.2023:[5.0] "This guy used to be a ten for me, but his behavior post WWE has been abhorrent. I dont know what a multi-millionaire with a hot wife, who reads comics, goes to concerts, and eats muffins for a living has to be so pssed off about. His matches have been bland, or outright stolen from better wrestlers since his return, and his latest comeback promo was underwhelming and repetitive. Might be time to pursue that acting career, Phil. You used to be someone I looked up to, now your misery just makes me sad."
Rating: 5.0
Sentiment: -0.04074074074074073
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: crs285wrote on 18.06.2023:[8.0] "One of the more controversial men in this century in terms of active pro wrestlers. Have had issues backstage in both WWE and AEW. In the ring he is good with a great moveset and is the best in the world on the mic. Has a great connection with most crowds. His MMA run hurts his image he tries to play of being a legit striker in the ring."
Rating: 8.0
Sentiment: 0.5129629629629631
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: InsertFunnyNameHerewrote on 18.06.2023:[10.0] "CM Punk as a wrestler is nothing short of world class with fantastic mic work, a legacy of great matches and multiple events sold out off of his name. Probably one of the 5 best wrestlers of the last 20 years"
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Lunawrote on 16.06.2023:[10.0] "My favourite wrestler of all time and I doubt that will ever change. Made me fall in love with wrestling in 2009 and then brought that feeling back in 2021. A special performer and an enthralling person. On the mic he is unmatched by 99% of the industry (the 1% being MJF), in the ring he has always been incredible and has changed his style perfectly as the years have gone. For better or worse there will never be another wrestler like CM Punk."
Rating: 10.0
Sentiment: 0.40816326530612246
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Giantfan1980wrote on 07.06.2023:[7.0] "Never was the biggest fan, but it's hard to argue against him. I'm not going to sit here and try and vote bomb the guy to be edgy."
Rating: 7.0
Sentiment: -0.29583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LGL19wrote on 04.06.2023:[10.0] "CM Punk is the greatest ratings draw in years. No matter how you may feel about him or think about him you can't deny he brings eyes to whatever product he's on. My personal opinion on CM Punk is that i think he is one of the GOATS. His mic work is impeccable and it's authentic and his in ring work and story telling has always been second to none."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JaybirdJaredwrote on 30.05.2023:[5.0] "His whole first run came when I was away from wrestling for 16 years. When I started watching again, his reputation preceded him. He was probably a 9 before retirement. Since then, he has been unprofessional, prone to botches, and full of his own hype. A cancer to any locker room he is in. He won the AEW Championship at their biggest show, and in the press conference, buried the company and his old friend who had not been booked in months, because he has poor impulse control and believes his personal BS is more important than advancing his role or his industry. His career kinda mirrors that of Michael Jordan, and his AEW stint has been like Jordan with the Wizards, and his gripe bomb has been like Jordan being a horrible executive. Best days so far behind him, but still believes his excrement does not stink."
Rating: 5.0
Sentiment: 0.13076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Dancerwrote on 26.05.2023:[10.0] "Been excellent everywhere he goes (except for UFC). Top 10 best promo guy ever and certainly welcome on my TV screen. When Punk took the big break from 2014-21, he was still one of the most talked about guys in the whole sport, that's the impact that he had. Giant draw but his ego and the Brawl Out will forever taint his legacy. A complex figure for sure, but it would be very hard to not rate him a 10."
Rating: 10.0
Sentiment: 0.34734848484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: gargoylesmainwrote on 21.05.2023:[8.0] "As a performer his career has been overall fantastic. His pre-retirement work was really memorable, both on the mic and in the ring. I'd say a 9 on the mic and a 7 in the ring. His return in AEW is a very mixed bag though, and has sullied his legacy, with promos that border on cloying and botchy ring work that shows his age."
Rating: 8.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pinkd56wrote on 20.05.2023:[10.0] "At this point, CM Punk is the only true star/draw in American professional wrestling of the 2010s and 2020s."
Rating: 10.0
Sentiment: 0.11249999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: adam johnsonwrote on 03.05.2023:[7.0] "gave him a 9 before and that was before he came back to wrestling he should of stayed away instead of being a whiny weeb causing beef for no reason so a 7 now"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wadexerowrote on 18.04.2023:[10.0] "The absolute best, best worker in Roh best worker in WWE and one of the best even as a natural athlete in his mid 40's in AEW. His mic skills are elite and only comparable to Austin and The Rock. Even at this point in his career he is an asset to any company."
Rating: 10.0
Sentiment: 0.5375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HumanJerkywrote on 08.04.2023:[10.0] "Best in the World! Was amazing as the leader of the Straight Edge Society, was fantastic on the indies with a legendary feud with Raven and a beauty of trilogy with Samoa Joe."
Rating: 10.0
Sentiment: 0.64
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PunkPariahwrote on 17.03.2023:[10.0] "CM Punk is my favorite wrestler of all time. Dude got me as into wrestling as I am. People are gonna act like they know him and are gonna pretend that they care about/are affected by a fight he had, that's fine whatever. In reality he's one of the greatest in ring story tellers of all time, arguably the best on the mic of all time, and he can work a hell of a damn match that's for sure. CM Punk has achieved enough to put him down as one of the biggest draws in pro wrestling history and he doesn't have anything left to prove. My favorite for a reason and he keeps proving why he is one of the greatest of all time"
Rating: 10.0
Sentiment: 0.4761111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: texasyoshwrote on 15.03.2023:[10.0] "orig written, 5/20/22 Punk gets it. He's so smart in the ring even at this stage of his career. He's had an unbelievable career with a book full of great work. Hats off. updated 3/14/23: lmao you guys legit have serious derangement syndrome by being able to separate the "art with the artist" with CHRIS BENOIT but not phillip brooks. i dont know what to tell you man. sorry he buried your favs, hell even my favs, but let's be serious for a minute"
Rating: 10.0
Sentiment: 0.11640211640211644
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Puro113wrote on 09.03.2023:"I will not be giving a rating to CM Punk at this time. I just wanted to share this anecdote. CM Punk returning on AEW Rampage is probably my favourite wrestling moment ever. Watching it live made me experience emotions I don't think I've ever felt as a wrestling fan. Genuine excitement, optimism, catharsis and joy. Punk was always a shining light during his WWE days and always one of my favourites. He was a guy who lots of people looked up to. To say that I am disappointed in what happened with the media scrum is an understatement. It was a slap in the face to all the fans who coveted his return for nearly a decade, and it risked permanently destroying the reputation of the only mainstream competitor to WWE in 20 years. Such a childish and disrespectful act that has put a dark shadow over his legacy, and destabilised an entire company. I still hope that Punk can find his way back to AEW, as ultimately, wrestling is better for his involvement. But he has a lot to atone for."
Rating: No rating found
Sentiment: 0.0690909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: M3n747wrote on 02.03.2023:[9.0] "I can't say anything about his time in others promotions, but his feud with MJF was the biggest reason to watch AEW for me. The entire storyline was executed pretty much flawlessly and I'm really glad I got to see it as it unfolded. In fact, not too long after the feud ended and Punk disappeared from AEW programming, I lost interest and stopped watching their shows - but I know that if Punk were to return, so would I."
Rating: 9.0
Sentiment: 0.33999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: coppercowrieswrote on 19.02.2023:[7.0] "Wild on the mic, and responsible for some of the most talked about moments in wrestling. Most of his points from me come from his ability to talk and work the crowd, as I never considered him a top tier in ring performer. His initial feuds in AEW were entertaining, and told a clear story. Sadly, he looked sloppy and gassed in the last couple matches he worked, and appears to be injury prone now. After the gripebomb, it'll be interesting to see how he's viewed by the industry in a few years."
Rating: 7.0
Sentiment: 0.13717948717948716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Xwrestlingx2003wrote on 06.02.2023:[10.0] "CM PUNK, He has everything a wrestler needs, he is a complete Package, Punk's mic skills is commendable and this makes him better than others, He has shown interesting feuds and matches over the years, 10 for punk"
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: yourherowrote on 29.01.2023:[10.0] "There was a time when he was the best in the world. He still has S-tier promo skill but is only a shell of himself in the ring, repeatedly getting injured before he can get his groove back. His body of work is too good for me to put him below a 10."
Rating: 10.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: manicpanicwrote on 29.01.2023:[4.0] "Definitely an outlier opinion, but as someone who only really watched him in his AEW era, i just don't get the hype. It felt like everything he did was alluding to how great he is/was, but when it came down to showing that he just didn't match up to the expectations"
Rating: 4.0
Sentiment: 0.1688888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Okaro143wrote on 22.01.2023:[10.0] "Insanely popular and rightfully so. Had a brilliant run on ROH and an excellent feud against Joe for the RoH Title which also produced imo the best ROH match when Punk and Joe wrestled a 60 min time limit draw in 2004. Left ROH and went to WWE's ECW brand where he became the face of ECW. Left ECW and became a 3 time World Champion before feuding with John Cena in 2011 in what could and should have been an era defining feud. It was During his feud with Cena, Punk turn heads by cutting a pipebomp promo and crossing forbidden door boundaries of professional wrestling. Since then, he has only gotten popular and put himself over despite being made to play second fiddle to The Rock and John Cena. He would burn out while working for WWE and got into a lot of controversy but the fans always loved him. Joined AEW in 2021 after 7 years of quitting wrestling and became the top draw of professional wrestling. Caused another big stir after winning his second AEW Championship and again left. Very controversial figure but no doubt insanely popular and a huge name in pro wrestling."
Rating: 10.0
Sentiment: 0.3388095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LMCwrote on 18.01.2023:[7.0] "Very good wrestler. If it wasnt for his ego hed have achieved so much more in pro wrestling. His wwe run was good. As was his time doing ROH and the indies."
Rating: 7.0
Sentiment: 0.7033333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: benh2wrote on 17.01.2023:[9.0] "An excellent in-ring worker; good moveset and selling and great psychology (which is a premium nowadays). Has even more talent on the mic and his promos are executed with such conviction that you always listen and always end up believing what he's saying, whether he's babyface or heel. Had a memorable end to his ROH run then once he found his feet in WWE hit it out of the park. Even after many years he returned to AEW and showed he could still draw money and put on matches more meaningful than most others."
Rating: 9.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Daigotsuwrote on 15.01.2023:[8.0] "By the time Punk got to AEW, he was older, and his body was starting to break down. But he still pulled out some very good matches against the right opponents. He's more about storytelling than workrate, and he's a very good storyteller. His charisma is obviously elite; Punk really is a top notch promo and character guy. It's a shame how it ended, but history will be kind to Punk's AEW run, I predict."
Rating: 8.0
Sentiment: 0.3716825396825397
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mcbolskywrote on 11.01.2023:[3.0] "Wow what a fall from grace huh? 10/10 WWE career followed by a 0/10 AEW career, insane. His character work from 2011-2013 was absolutely amazing and he really garnered a cult like following, I myself was included. Then he went to UFC, got smoked there. Acted a little bit and had that stint on backstage. THEN WE COME TO AEW. Man I was excited for him to be back I really was. But once I found out that he broke his foot from jumping into the crows after winning at double or nothing, I knew that was the beginning of the end. AEW works a crazy style and for him to be in the ring with the likes of Sammy Guevara, I could see the writing on the wall. The post media scrum at All Out was the final nail on the coffin and TK did absolutely nothing about Punk openly burying the company."
Rating: 3.0
Sentiment: 0.02583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KuczyPLwrote on 07.01.2023:[9.0] "There's no denying that Punk is one of the best and most important wrestlers in the last twenty years. And I'll admit - although I don't condone Punk's actions after All Out 2022 (where he might have just shown his true colors), I can't take away his impressive in-ring skill and mic work. The latter is when Punk shines the brightest. There's a huge amount of promos by him that not only they kept the fans interested in what Punk had to say, but also they played a huge role in Brooks' best rivalries in his career (like the ones with MJF or John Cena). To close out this comment, while I 100% blame Punk for his actions at the conference post-All Out, you just can't forget he's the guy that just knows how to entertain viewers and make his feuds watchable."
Rating: 9.0
Sentiment: 0.44166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Collywobbleswrote on 01.01.2023:[10.0] "I do not understand the people who have taken personal offense to the shit CM Punk pulled in 2022. Tribalism to that degree is just bizarre. That aside, Punk is one of the most compelling figures and characters wrestling has seen. Commands attention like few ever have, always one of the most gripping acts on a show. The promos speak for themselves, tons of good matches and rare star-power. Wrestling is more interesting when Punk is around."
Rating: 10.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WhatIsLooveeewrote on 29.12.2022:[9.0] "You can argue for a long time about Punk's personality, remember his scandals, but he is very good as a wrestler. Punk was an innovator and one of the few indie wrestlers who had achieved great heights in the largest wrestling company by that time. CM Punk is an amazing speaker, as can be judged by his speeches in WWE, when he was one of the best villains and by the amazing microphone battles with Maxwell Jacob Freedman i AEW and the only attraction to him now is that he is constantly referred to the past, not developing as a character. He has a number of great matches both on the indie scene and in bigger companies, he is able to stir up interest to rival and tell a good story. Cm Punk is an extremely talented performer who reveals himself particularly well as heel and, despite all the conflicts and rumors associated with him, he has contributed to the development of the industry."
Rating: 9.0
Sentiment: 0.34870370370370374
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MetalZillawrote on 25.12.2022:[0.0] "Just a disgrace to the great sport of professional wrestling. One of those things that makes you embarrassed when someone finds out you're a wrestling fan. How can anyone legitimately say this guy is a good wrestler... or rather, a wrestler, at all? Its a joke. and people wonder why pro wrestling numbers are going down."
Rating: 0.0
Sentiment: 0.36111111111111116
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: fruggmanwrote on 19.12.2022:[8.0] "CM Punk is someone who when locked in and creatively energized can create magic. In ROH he became legendary for his mic skills and MOTY candidates against Samoa Joe and Raven, so much so that WWE scooped him up. Despite clashing with Vince McMahon and Triple H, he was able to become a multi-time world champion and got himself over with nearly everything he was given. Retrospectives of Punk's WWE run tend to focus on his 2011 Summer of Punk era, but he did some stellar work with the Straight Edge Society faction and his infamously intense rivalry with Jeff Hardy in 2009. During the Summer of Punk, he began to openly speak about his frustrations with WWE creative and being in his view underutilized. In 2011, this was justified, losing his feud with Triple H at the height of his overness seemingly out of spite. However, Punk still was not happy even after being given a 13-month-long WWE Championship reign due to never main eventing WrestleMania. This ultimately resulted in his walkout of the company and his 7-year long sabbatical from wrestling. This is where I think Punk began to lose it, he created a narrative to his fans of being mistreated and self-mythologizing that further fueled his ego and narcissism. His unbelievable return to wrestling with his AEW run was fantastic for the most part, only to once again be thwarted by Punk's backstage issues. I hope CM Punk can have one final storyline to go out on, but if not I think I would be fine with his retirement."
Rating: 8.0
Sentiment: 0.1982638888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Enriquepollazzowrote on 10.12.2022:[10.0] "Love him or hate him he does everything well and had a really good run in AEW. He enhanced every guy he got in the ring with and let them all take their shots at him while giving it back. He earned my respect. Someone needs to remove all the 1's and 0's here. Obviously those are not acceptable ratings."
Rating: 10.0
Sentiment: 0.07999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: arrancarwrote on 04.12.2022:[6.0] "I preface this by saying that my rating and my comments have not been swayed (at least not significantly) by the recent drama surrounding Punk's backstage actions and IRL personality. Punk was one of my favourite wrestlers as a kid when I first saw him with WWE's ECW reboot. His MMA-inspired look made him look badass and legitimate, and that was before I even knew what MMA was. I also just loved how confidently he presented himself, further adding to his aura. I sadly fell out of wrestling around 2009, so I totally missed Punk becoming a big star around that period. I've since gone back to see some of Punk's best work from that period in WWE, plus I've seen most of his ROH/indie work, and of course his whole AEW run, and I have to say... Punk has never been very good in the ring. I think most people are probably aware of that and just excuse it because of his character work and mic work, which I'll admit is definitely very good and occasionally great... but in such a physical medium as wrestling, for me to really consider Punk a 'great' wrestler I would need to see far better in-ring work from him. He's just noticeably unathletic and double-left-footed in his movement and move delivery. It's nothing terrible like with what you see with genuinely bad wrestlers, but it's definitely noticeable when compared to the other wrestlers on the various rosters Punk has been a part of throughout his career. That doesn't mean that Punk doesn't still have some very good or even great in-ring moments in the matches throughout his career, and even now he will have a few moments that are really cool, but they're never consistent enough to the point where I could comfortably say that he's a great worker. To get past his lack of, well, any real in-ring skills, he would mostly rely on lots of decent but extremely dry technical work or decent but low-effort brawling, which never made him the most exciting wrestler. I'll say his in-ring work is more appropriately qualified as mostly just 'good' at best, but there were definitely matches and periods where his performances could be only described as 'alright' or 'fine' at best, and sometimes even just outright poor. I might actually say that his AEW run featured some of his best wrestling work, since he had the experience at that point to know how best to pace himself and tell in-ring stories that covered up his lack of pure in-ring skill, compared to how often mediocre he was in ROH and WWE just be default of being in those companies longer and thus having more time to eventually disappoint. I've got to give him congrats for becoming as big of a wrestling star as he is without really having a high-quality level of wrestling skill, but I personally prefer wrestlers who are best known for their actual wrestling, and not because they can just talk well. Talking is still a very valuable skill, but it doesn't supersede in-ring work for me."
Rating: 6.0
Sentiment: 0.24832354859752118
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "Because of his recent actions, people are iffy on him, but looking back, he is still one of the greatest ever, the matches, the promos, my god. One of the most unique wrestlers we may never see again."
Rating: 9.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nothingleftinsidewrote on 30.11.2022:[9.0] "I'm not sure if 8 or 9 is the better call here, and I do think he's an all time great, but he's such a wiener and tarnished his legacy which keeps him off Mt. Olympus. One of the best talkers of all time, he's limited athletically but a great storyteller in the ring; he's had many 30+ min matches (good ones at that). He looks undersized but his gimmick is kind of an in-your-face reminder of why he looks undersized. Great babyface or heel, somehow much more layered and nuanced as a babyface- it's hard to manufacture babyface support when you're such a natural dickhead like Lockport Phil. No other singular wrestler represented the American indie scene of the 2000s- there's a reason why people wept at his return in 2021. No other singular American wrestler represented so much of the identity of the hardcore wrestling fan in the past 20 years. When he was on the screen, it really did feel like the good old days again. It really did feel like you were finally seeing a guy you believed in making an impact and speaking for you, providing the kind of wrestling TV that you had yearned for for so long. Perhaps the best executor of worked shoot angles; an irony that was his downfall. Well, that and his whole ego. He had people chanting his name at wrestling shows for all seven years he was gone, and they probably still will for years to come. In his final run, even though he didn't loose, he did a good job of making younger guys look better- he's capable of elevating and getting the best out of guys like Cena, Brock, Undertaker, and even guys like Eddie Kingston. He even made the WWE title, probably the most prestigious title in wrestling, mean more when he had it, which I think is a rare feat. A complete run in AEW would have been the crowning achievement, but rampant unprofessionalism (including his own) doomed him before he started. A+ talker, A- worker, C look."
Rating: 9.0
Sentiment: 0.28914731102231095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: hectorfwrote on 25.11.2022:[7.0] "porque en su era en wwe era muy bueno pero en aew era muy politiquero y hacia muchos botches es solo mi opinion"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Vukowrote on 24.11.2022:[5.0] "At the beginning of his carrer, ROH, WWE, CM Punk was clearly a fucking good wrestler. But his transition to MMA was a bad idea (and for sure, it was his only way to continue to do something because there was no other compagny to book him). But when he cames to AEW, the only best storyline was with MFJ for me. He was obligated to be carried in the ring by the other and with a ton of injury when he was AEW World Champion + the backstage incident with The Elite and what he said in press conference -> He buried himself."
Rating: 5.0
Sentiment: 0.1796875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: elsh33pwrote on 19.11.2022:[5.0] "One of the all-time greats as both a character worker and a speaker in general, but I always found him incredibly overrated as an actual pro-wrestler once he set foot in the ring. He's probably the most triumphant example of someone who was over back in the day, established an enduring fanbase that kept his hype going long after he left the business, and then didn't really bring anything for newer or previously unengaged fans when he came back. Pretty much every future run by an unretired legend is going to be measured against his, and that probably won't be to his benefit considering how it ended. But at least we got the angles with Kingston and MJF."
Rating: 5.0
Sentiment: 0.1130952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: whiterice47wrote on 14.11.2022:"1/10 The man is a mark for himself. He believes his own hype so much he chose to start his MMA career at the highest level, fought one of the worst fighters (Mike Jackson) and failed."
Rating: No rating found
Sentiment: -0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KesagakeOKwrote on 13.11.2022:[10.0] "Perhaps not the most athletic competitor in ring, but easily the best ring psychologist and promo working today. Any program or match he touches is immediately better for having him as part of it."
Rating: 10.0
Sentiment: 0.6083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: VanguardWhowrote on 11.11.2022:[10.0] "Tempted to half-jokingly subtract a point for his weird elbow drop and for spawning a whole generation of wrestling fans who think they're as cool as him (2022 EDIT: or for ending his big miracle return run in the dumbest way imaginable, but let's all be honest, being a relatively harmless self-absorbed dweeb in the wrestling industry is like being a shoplifter in Alcatraz), but I could never in good faith rate Punk below a 10/10. Don't get me wrong, even as a huge Punk fan, I'll wholeheartedly admit that if there's any wrestler who could be described as the bare minimum of a 10/10, it'd be him. His ring work got a little janky towards the end of his career, his physique was never the best, there were some odd inclusions in his moveset (including significant parts of his latter-day offense being, essentially, an unlicensed KENTA tribute act); if the 10/10 rating is supposed to imply perfection, he might be the most imperfect 10/10 ever. None of this changes that he was one of the most important and influential wrestlers of the 21st century, that he was one of the greatest mic workers that wrestling has ever seen regardless of on-screen role, and that even if his best in-ring days were behind him going into his WWE run, there were absolutely still points before that where he was up there with some of the greatest in-ring workers in the history of American wrestling, and points in his WWE career where he still made genuine magic happen despite his physical abilities not being at their peak, against a variety of opponents. There have been better and more consistent in-ring workers with greater longevity, there have been more muscular and athletic wrestlers with more believable physiques and impressive conditioning, but as far as I'm concerned, the list of people in the history of American wrestling who matched Punk in aura, in presence, in believability as a character, and in simply making professional wrestling feel special, especially going into the 2010s, is a very short list indeed. Flawed in individual areas? Absolutely. As a complete package? Transcendent."
Rating: 10.0
Sentiment: 0.25712991718426503
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CMX-7wrote on 01.11.2022:[10.0] "CM Punk is my favorite wrestler, he has always attracted attention with his persona, his excellent microphone skills and his cool acting charisma is brilliant! His career and his great moments like Summer of Punk 2005 and 2011! or his great Pipe-bomb which is forever iconic in the world of Pro Wrestling and don't forget his great feuds and matches against Samoa Joe, Jeff Hardy, John Cena, Raven, Rey Mysterio and and of course the leadership of WWE (Well, you understand:) ) , we will remember him as the Indie Legend who first reached the top of the WWE by creating a revolution and restructuring! His return is in 2021 with a magical applause, of course, he will go down in the history of the best returns, I love his feud with MJF ! ) Now I will insert my thoughts about the current situation, for a start, CM Punk BANNED me on Instagram for my opinion, but this is a separate story)) After the news about Punk, it seems to me more and more that he deliberately created a scandal around his person in order to get out of the wrestling business, don't get me wrong, but this is a brilliant plan, it was clear from his face that he was tired of all this, and he decided to end his career in his native Chicago and at the same time take away the title from the undefeated wrestler AEW - MOX, and then leave with a lot of hype.. this is my stupid theory, I may be wrong... Despite all this, Punk deserves 10 points, for his contribution to the business with his great promos and matches, and I no matter how toxic and resentful a whiner he is, his career and his work deserves attention."
Rating: 10.0
Sentiment: 0.35337301587301584
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CutterClubwrote on 01.11.2022:[10.0] "Excellent in the ring (especially in his prime), untouchable on the mic, and has a deeply devoted cult following. Review bombing him over a backstage dispute with three clowns is not a fair assessment of his career or wrestling ability which is what these ratings are for."
Rating: 10.0
Sentiment: 0.13
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LoboXwrote on 31.10.2022:"Cm punk is one of the best wrestlers I have seen but. I don't like CM Punk as a person. He goes for business for himself. He should apologize to the fans. I hope he can change. It is never too late."
Rating: No rating found
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kbnuevewrote on 26.10.2022:[10.0] "Don't care if he is a dick or not, Punk is without a doubt one of the greatest wrestlers of all time. In his year in AEW, he has always been the most interesting wrestler and the main reason to watch Dynamite. God tier storyteller and phenomenal on the mic and in the ring, noone can deny this"
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: li0nsaultwrote on 23.10.2022:[9.0] "Let's forget about what he could've been done behind the scenes, Punk is one hell of a talent. A guaranteed member of my Mount Rushmore regarding mic skills, wonderful in-ring performer, and a master storyteller. A major turning point in the history of wrestling."
Rating: 9.0
Sentiment: 0.22083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: killowenskillwrote on 08.10.2022:[10.0] "The "fans" who give absolutely low ratings to the wrestler, based on behind-the-scenes intrigues that are known only because of insiders, and which can be either complete lies and bullshit, as has happened many times before, or can be a plot basis for future feuds, are so funny. Punk has always seemed to be a complicated person, but his love for wrestling is perfectly expressed in his detailed and wonderful matches, which are almost unparalleled even now, after 7 years of vacation, not particularly frequent performances, and after recovering from a new injury. I don't care about his sides outside the ring, he's not a rapist, not a racist, not a homophobe, not a sexist and not a mean asshole who traumatizes his coworkers, so people should not care. UPD: Behold, people are beginning to rejoice at his injury, and that he is prone to damage. How low do you have to fall to be considered a wrestling fan and write things of this level? And all because of what? Because of the altercation between the wrestlers, which should not concern the fans in any way, not to mention the fact that there is no reason to believe any one particular version? As well as the fact that behind the scenes the Punk could really be under pressure because of Cabana's position in the promotion? Never before have individual representatives of the community seemed so disgusting to me. UPD 2.0: sidz2298, CrossFaceX, simonitro, who has Shawn Michaels rated at 10, is a funny dudes, like Shib Vicious, as well as the already listed CrossFaceX, who rated at 10 to Chris Benoit. If you think that you can seriously evaluate a wrestler by behind-the-scenes scandals, then stick to your great ideology and don't be hypocrites, lol."
Rating: 10.0
Sentiment: 0.11445949883449885
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wuzong Shenwrote on 29.09.2022:[2.0] "I guess after what happened after All Out 2022, more and more people knew what kind of person Punk really was. He was just famous for his shoot promo, which is getting boring after so many years. His match wasn't so good, especially after he came back to AEW. However, what really make me feel sick and disgusting is his behavior out of the ring. He once said he hate wrestling and won't come back again, but he did, for the money, I guess. He claimed that he came back to help young talents, but that was a lie, too. He betrayed his friend Colt. He destroyed an important PPV, which almost held for him, in his hometown. He caused trouble in each and every place he went. I don't believe any word he said, and I don't want to see him again. He was successful, but now he just makes me feel disgusting."
Rating: 2.0
Sentiment: 0.01122448979591837
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ItsToniTime89wrote on 27.09.2022:[6.0] "Vor einem Jahr hätte ich dem guten Phil noch volle 10 Punkte gegeben, da ich selbst seit seiner WWE Zeit großer Punk Fan bin. Aber seit einigen Wochen trübt sein Ego und sein Verhalten meine Einstellung über ihn. Sich über eine Company und deren Promoter stellen, das geht selbst als CM Punk gar nicht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Spankywrote on 26.09.2022:[10.0] "My comment cant do CM Punk justice. Anything u could want in a wrestler is there and in spades. He is untouchable on promos, he is right up there with Mick Foley or The Rock. He is a very polarizing individual and a lot of people hate the guy but there is no denying his talent. It's insane how over he is with the fans in modern wrestling. His return to wrestling was phenomenal and the best moment in AEWs young history. One of the best returns OF wrestling. The reaction he got then may never be replicated in wrestling ever again. I recommend listening to his ROH shoots because they give great insight into his wrestling mind before he went to the WWE. The fact that he was able to have great matches with Brock Lesnar or Undertaker and Rock while completely demoralized really shows how much passion he puts into the industry. Not to mention the fact that he worked for months with a staff infection. In my opinion, he should retire. And spend the rest of his years with his wife and dog Larry. In case you couldn't tell CM Punk is my favorite wrestler and the fans and bookers of the future will definitely remember him. And id say for the better."
Rating: 10.0
Sentiment: 0.2542857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheOneAndOnlyCactuswrote on 22.09.2022:[10.0] "I'm judging strictly on how he is... or I guess was since he is past his best, as a wrestler. And he is one of the best of his generation. Very versatile between the ropes, capable of playing multiple facets of the face and heel dynamic, a great promo guy able to command attention with a mic, whether in promos or on commentary. Like him or not, you can't deny his talent."
Rating: 10.0
Sentiment: 0.38333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheEnigmatic1wrote on 20.09.2022:"Punk Has ruined his own legacy, at first his AEW run was very fun and it was really cool to se him work with the younger guys and he is still one of the best workers of all time. but since he seems to be such a Bret Hart fan he picked up one of harts worst traits his bitterness and inability to just shut up some times."
Rating: No rating found
Sentiment: 0.19874999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kid Rockwrote on 09.09.2022:[10.0] "Ist CM Punk einer der größten und technisch versiertesten In-Ring-Techniker aller Zeiten? Keineswegs. Kann CM Punk zuweilen ein egozentrischer und cholerischer Arsch sein, mit der Neigung, verbrannte Erde zu hinterlassen? Absolut. Und dennoch, selbst wenn es komplett persönliche Befangenheit ist, kann ich nicht anders als Punk 10 Punkte zu geben, da mich dieser Mann, vor allem seit 2011 und seinem Durchbruch als Main Event Superstar im Mainstream-Wrestling, auf seinem bisherigen Pfadt emotional mitgerissen hat, wie kaum ein anderer Akteur im Geschäft vor, oder nach ihm. Was ich bei CM Punk besonders schätze, neben seinen großartigen Fähigkeiten am Mikrofon, seinem Gespür für In-Ring-Psychologie und einer schönen "Old-School"-Mentalität für den Sport, ist schlicht und ergreifend seine "Realness"....seine Authentizität, seihe Ehrlichkeit und sein damit verbundenes echtes Charisma als Wrestling-Persönlichkeit...etwas was, wie ich immer gerne erwähne, für mich solche Charaktere wie Mick Foley, Steve Austin oder Eddie Guerrero zu absoluten Größen im Pro-Wrestling aus der Masse hervorstechen ließ...Es hat seinen Grund, warum Punk, wie er in dem vergangen Jahr bei AEW gezeigt hat, einer der letzten wirklichen Zugpferde im Buisness und dabei nach wie vor einzigartig ist. Jener letzter (und vieles spricht dafür, dass es der letzte sein könnte) Run bei der Khan-Promotion war für mich ein schönes Alterswerk, welches sich Punk im nochmal aufbauen konnte und ein, gerade nach dem traurigen WWE-Abgang 2014, doch noch insgesamt würdiges und befriedigendes Karriereende. Klar, mit Anfang/Mitte-40 und einer hohen Verletzungsanfälligkeit, hat Punk In-Ring nicht mehr die Hütte abbrennen können (und dabei dennoch einige wirklich starke Matches noch zeigen können), doch speziell mit der MJF-Fehde, konnte der Second City Saint nochmal sein Wert als versierter und charismatischer Veteran mit It-Faktor unter Beweis stellen (etwas was ein Chris Jericho im Vergleich, so sehr er sich abstrampelt, schlicht nicht mehr zu zeigen vermag). Die Umstände seines aktuellen Abgangs sind absolut unschön und es war klar, dass diese die Fanschaft nochmal ordentlich spalten würden (und den zahlreichen CM Punk-Hatern im Netz nochmal ordentlich Futter liefern würden). Andererseits, wird die Wahrheit immer in der Mitte liegen, genauso wie die "Schuldfrage". Klar hat Punk mit seinem Verhalten nicht wirklich was zur Deeskalation des Ganzen beigetragen, allerdings spricht es wiederum für ihn, dass er sich keinen Bullshit gefallen lässt und am Ende des Tages offen und ungeschönt für das Einstehen wird, an was er glaubt. Und das ist etwas, was hoffentlich irgendwann mal selbst die selbstgerechtesten Gutmenschen unter den Smart-Marks zumindest respektieren könnten. Falls es dies gewesen sein sollte....vielen Dank Punk für die gute Zeit."
Rating: 10.0
Sentiment: 0.041666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pete Gallowswrote on 09.09.2022:[10.0] "Cm Punk is highly likely an insufferable prick in real life, I also absolutely hate how pathetic he was in the UFC, a total loser, who would close his eyes every time he punches a punching bag (he still apparently successfully hit that stupid faced looking young buck moron). Seriously, did you guys watch that documentary about Punk on YT before his UFC debut? He was about as coordinated as a fighter as a toddler is at dancing. Abysmal. Despite of him being a total prick, or thanks to it, thanks to him being a prima-donna, an egotistical jerk, he? s at least interesting, unlike almost everyone else currently in the business. I have stopped watching wrestling on regular basis in early 2000, when WCW went to sh1ts, I have watched it every once in a while, when there was enough commotion going on. Other than that retarded Vince Mcmahon retirement recently, this is the first time in years, when some event lived up to the expectation. I was very entertained by Punk? s pipe bomb, what was it, 8 years ago? And now..the media scrum..I hoped it was an angle, but unfortunately, it was seemingly too good, to be just an angle. I love how Eric Bischoff was criticising Punk, as if Controversy suddenly couldn? t Create Cash! I still hope they? ll turn it into an angle, to make some serious money out of it, but Punk being an injury prone jerk that he is, he of course once again let his mouth write a check, his ass could not cash. Because he is a physical anti-talent, which is a real shame. If he was about a third as good, as he acts like he thinks he is, he would be the best ever. Can you imagine any other business, where an employee/? a contractor? , or whatever he is, publicly sh1ts on the company? s management, the vice presidents? and then these vice presidents walk to him and want to confront him, very likely physically and they all start to fight? That? s more entertaining, than last 10 years of on screen pro wrestling combined. As a wrestler, he? s really not that good, as an actual fighter, he? s a total loser, but still good enough, to (allegedly) take out a young buck with one arm, but his self-assured whining is so entertaining, that I have to give him a 10."
Rating: 10.0
Sentiment: 0.04869281045751636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Shib Viciouswrote on 08.09.2022:[2.0] "Punk is coasting by based on who he used to be as opposed to the wrestler he is now. One of the best sellers around but his offence is lacklustre, he always has a high profile botch or two in him seemingly every match and whilst good on the mic, now that he is not acting as the voice of the fans regurgitating their complaints from online forums, he is clearly nowhere near as good as his legacy would suggest. And now it's clear the man is a straight up narcissist pos who is fortunately made of glass so we perhaps won't have to put up with him much more. "Fragile Mind, Fragile Ego, Fragile Body""
Rating: 2.0
Sentiment: 0.28285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TalesOfSymphoniawrote on 08.09.2022:[0.0] "Certified lockerroom cancer, currently in the process of attempting a coup in AEW. He and his boys are attemptiting to steer AEW from what it's supposed to be. Never particularly impressive in-ring and has to be carried by better workers. His two terrible AEW titles runs have seriously hurt the AEW world championship, Hangman Page, Jon Moxley, and AEW as a whole. His simply isn't worth all the trouble he causes."
Rating: 0.0
Sentiment: -0.12916666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LivingLegendwrote on 08.09.2022:[0.0] "CM Punk is the definition of overhyped. He was never that good of a wrestler. He wasn't bad, but his best matches involved heavy carry jobs from his opponent. His main selling point is his mic work, which is really good. Any positives this man has are thrown out the window when you take a slight peak behind the curtain. CM Punk is a hypocritical, egotistical mark for himself. He cares about nobody besides himself. He has a long history of being a diva, but just this past year he has: went off script on live TV after Hangman Adam Page took a super vague dig at him that nobody in the world remembered until Punk brought it up on TV. He pushed one of his co-workers into a demotion (nearly unemployment). He went onto a media scrum as the world heavyweight fucking champion and completely buried multiple wrestlers, including 3 EVPs, and then had a legit fight with them like an angsty high school student. In conclusion, CM Punk is an egotistical, hypocritical, washed up has been who leached off of the last ounce of relevancy he had after walking out of WWE and may have killed an upstart wrestling company. I hope to never see his crybaby mug in a wrestling ring again."
Rating: 0.0
Sentiment: 0.016484848484848467
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jamzell00wrote on 08.09.2022:[10.0] "One of the main reasons I'm still a wrestling fan today. In 2011 he made me realize how much I loved this shit and his return did the same thing. He's one of the few reasons I kept up with both the wwe during his run there and currently AEW. This version of him now is clearly not the same guy he was athletically in ring but he knows it and it works for his matches. This is from a guy who wasn't athletically gifted to begin with. Add on him still being an amazing promo and yeah he's one of my favorite wrestlers ever and one of my favorite going today. Edit: The coincidence in when some of these ratings dropped is too funny even for me. Get over yourselves for fucks sake lol"
Rating: 10.0
Sentiment: 0.25476190476190474
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CrossFaceXwrote on 07.09.2022:[0.0] "I don't usually write comments, but I think I have to write this time. CM Punk is the most selfish, hypocritical, self-conscious egotist. This man is like a child who can't change his habits at all with age and has delusions that he thinks the world is all his own. Look what he did in AEW, he let both the fans and his co-workers down. I don't care about his achievements, now he looks like nothing but trash to me. I hope he never shows up in the professional wrestling industry again. Seriously."
Rating: 0.0
Sentiment: -0.005555555555555559
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: flightaker321wrote on 05.09.2022:[10.0] "Punk just speaks whatever comes to his mind I can't hate on him for that, oh and he's also an all time great promo and a pretty damn good worker. His current Aew has been great outside of him getting hurt, in WWE he had great matches and feuds with the likes of Hardy, Bryan, Taker, Cena, etc. Haven't seen his ROH but I'm sure that was great."
Rating: 10.0
Sentiment: 0.38499999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: McGravedigger98wrote on 05.09.2022:[7.0] "Seit über 13 Jahren bin ich Fan von CM Punk und kenn ihn schon seit seiner Ring of Honor Zeit. Auch nach 8 Jahre außerhalb des Wrestling Business liefert er immer noch grandiose Matches ab, die mich bei jedem PPV begeistern. Nur steht ihm leider ab und zu sein Ego im Weg, was man aktuell leider sieht."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GwenCube64wrote on 05.09.2022:[8.0] "One of the best in his prime, pretty solid in his current run. Probably the greatest return in modern wrestling history, has one of the greatest promos in wrestling history, an overall great talent that I do think gets overhyped a little bit by nostalgia."
Rating: 8.0
Sentiment: 0.40625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ElJasonwrote on 24.08.2022:[8.0] "Ein wahnsinns cooler Dude, von dem ich schon seit seinem ersten Heel Run 2009 Fan bin. Auch wenn man bei seinen Matches teilweise noch die Abwesenheit vom Wrestling Business merkt, er liefert klasse Matches ab und ist zurecht AEW World Champion"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Makoto92wrote on 19.08.2022:[1.0] "If I was living in 2011, I might have considered CM Punk to be the best wrestler in the world and in the universe, but I started watching wrestling long before his famous "pipebomb", so to me he's just another indie guy. The current Punk is the worst thing I've seen in the last few years in wrestling in general. He is in the bad shape and he thinks it's normal. None of his singles matches in AEW are without a lot of references to his matches from the company, which he slurps over and over and over. It's very hard to watch and I honestly think that the people who still like Punk are the real heroes."
Rating: 1.0
Sentiment: 0.012202380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ozzywrote on 17.08.2022:[9.0] "CM Punk is my third favorite superstar of all time, he can talk, he can wrestle, he can do just about anything you ask of him. CM Punk is one of the greatest on the mic, jis promos in WWE during his fued with Jericho were top notch, the pipebomb was no doubt the best promo WWE had in 10 years not delivered by Paul Heyman, and going into his work with Paul E, the 2 had a chemistry that couldnt be hidden, one of the best wrestler and manager duos other than Pual and the Beast. His wrestleing ability was one of the best of his time from his time in ROH, to WWE and even in AEW he can still keep up with the younger guys. the only reason i give him a nine is because he wasnt as talented or as momentous to wrestling as some of the other guys like Taker, or Jericho, HBK or anyone along those lines in my opinion. but CM Punk is still one of the greatest of his generation."
Rating: 9.0
Sentiment: 0.4488095238095239
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Benwerderwrote on 31.07.2022:[10.0] "Im Ring definitiv gut, aber seine Ausstrahlung, sein Micwork, seine dadurch vielen brillianteb Storys macht ihn zu einem der größten stars der 2000er, 2010er und auch 2020er, da er nirgendwo nachgelassen hat. Freue mich aufs Comeback!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sbg2022wrote on 02.07.2022:[10.0] "He's the reason why wrestling was so great within the last few years. He's the reason why WWE was great in 2011."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WOOPSwrote on 09.06.2022:[7.0] "A tough one to rate cause when I was like 10 years younger, I was his huge fan and Punk was definitely the best in the business but now he is so damn bad. He is past his prime (not like Hardys but still), all his feuds look like he lives in the last, when he was relevant. He puts down young talents like Darby, Max, Adam constantly and this is just frustrating. Bryan Danielson is the good example of the opposite but quite similar story: lots of injuries, coming back from a long break, but Bryan is just built different lmao, always was relevant. Too bad Tony Khan is the biggest CM Punk sucker, but oh well."
Rating: 7.0
Sentiment: 0.028502415458937204
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PorcoRosso1wrote on 06.06.2022:[3.0] "Cody Rhodes wrestled a match with a torn pec. Kenny wrestled for years with Vertigo, no knees, no use of his shoulders, and a hernia. Cm punk stubs his toe, gives up the big one and lets everyone down again. Once he was the most compelling wrestler in the world but the past 7 years have revealed him to be what he is a man who is insecure and wants to be known for his accomplishments in anything other than the one thing he is good at pro wrestling. He failed at all those things and if he didn't fail they were eclipsed by the past achievements that ate him alive and turned him into even more of a scumbag. The whole colt cabana thing is just sickening honestly imagine being friends with someone for years and then just ditching them when you said you would help them out. If you like this current run of his you gotta like the person because Punk was never an athlete and his body has deteriorated to the point he can't do a lot of the things he used to do. When he's able you can get at best 15 minutes of him before he starts to fade and everything becomes clearly labored. I don't like Punk as a person so there really isn't much to get outta his matches for me. He is a good promo and he has realized his passion for sport again but his happiness came at the expense of the young talent of this company, and nothing ever came of Darby from that match with Punk and even MJF is in this weird shoot-work angle which is a rip off of the summer of punk stuff. Honestly, just a chore having him around and influencing everything the way he has. Hopefully, he's gone long enough for Tony to give up on him that would be fitting for his career TBH."
Rating: 3.0
Sentiment: 0.12564814814814815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NeoSwas36wrote on 04.06.2022:[9.0] "What CM Punk did for wrestling is remarkable. He put the indies on the map, produced too many good matches there, was talked about in the WWE for years after he left, and he's doing great in AEW. A good wrestler and a great promo. 9/10"
Rating: 9.0
Sentiment: 0.6071428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mjp28wrote on 04.06.2022:[4.0] "He was pretty entertaining on the mic, and told a decent story in the ring, however his moveset was lackluster, and was too small and 'skinny fat' to be believable as a condender to the world championship, let alone the actual champion. Baring maybe Kevin Nash, I don't think there is another wrestler that is as nauseatingly high on themselves as Punk; especially relative to their ability. Best in the world? Is he---or his fans for that matter----serious? Doesn't hold a candle to Styles, Omega, Rey, Eddie, and dozens of others when it comes to acrobatics; Angle, Benoit, Hart, Hennig, and dozens of others when it comes to technical ability or realism; and Okada, Tanahashi, Michaels, Hart, and dozens of others when it comes to match psychology. Then there's ring presence, power, look, etc. all of which he is even worse off for. The man is the epitome of overrated, and on top of that try hard. Best in the world? Maybe at having a cry, and a bitch & moan, but thats about it."
Rating: 4.0
Sentiment: 0.22392857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Saint2212000wrote on 03.06.2022:"One of the greatest and most influencial wrestlers of his generation. Very easily, one of the most compelling characters in pro wrestling. Has it all, whether it be Charisma, Mic skills or In ring ability. Although he has gotten a bit slow in his old age, he makes up for it with his smart mathces involving a lot of in ring psychology. Has had a great career winning World Championships in every promotion he has worked for and when he finally puts down his boots for good, he will be remembered as one of the bests to have ever done it."
Rating: No rating found
Sentiment: 0.36323565323565327
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Big daddy hhfwrote on 02.06.2022:"He is a legend. A Great heel a great babyface and a hero. he can make a fire when he pick that microphone and he can do it in the ring too"
Rating: No rating found
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LaothFriuswrote on 30.05.2022:[10.0] "He might botch once in a while but his ring and mic work are amazing, can carry programs by himself and was an important wrestling part of history on 2011."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: zags7000wrote on 10.05.2022:[10.0] "Amazing on the mic and in the ring and produced some classic matches and promos. He was able to get people to believe in him and get the crowd to react to him more than many (especially compared to his peers in his generation). So much so that it gets annoying at times with his chants after he left. Yes, it's annoying and he is too full of himself in real life that you want to rate him lower. However, some things you can't deny, and him as one of the best of his era is one of those things. His feud with John Cena and the match at MITB remain the high point for WWE in the last 20 years. You can also say his match with Samoa Joe is the greatest in ROH history. Since coming back he has picked up where he left off. Still an amazing promo and, after an initial ring rust, he has added to his classic matches with one after the other."
Rating: 10.0
Sentiment: 0.1917424242424243
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dtrain1291wrote on 04.05.2022:[10.0] "Easily one of the most compelling characters in wrestling history. Changed wrestling landscape in 2011, rewarded with long but ultimately disappointing title reign. Electric comeback in AEW. One of the few true draws in wrestling once again."
Rating: 10.0
Sentiment: 0.10476190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WrestlingFan892wrote on 01.05.2022:[8.0] "Giving it a 10 seems too much for CM Punk. He is a complete wrestler, one of the best mic talkers in history, a lot of charisma, intensity, pride, even good in tag teams. But he has never stood out for his physicality and has always been a wrestler with little strength. Currently speaking, if he wrestles for more than 20 minutes he looks very tired and his physique is currently even worse than years ago, he has been neglected a lot, I really like CM Punk because he has always been a very good face, I can say the same as heel, but he is not a perfect wrestler."
Rating: 8.0
Sentiment: 0.1430357142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mushroomsoupwrote on 17.04.2022:[7.0] "Overrated, both by his fans and himself. He's collected many titles and honors so far: ROH World Championship, 2x MITB winner, 3x WHC, a 434-day (! ) reign as WWE Champion, faced The Rock, was the last challenger to Taker's streak before it was broken... And you can't even say he wasn't worthy of it, his promo skills are really the best in the world, and like it or not, he was responsible for arguably the greatest storylines of both ROH and WWE in this century. But, he still managed to crap on that legacy. His hypocritical and cocky attitude backstage according to dozens of people in the industry, this fake idea that he was a godlike never before seen wrestler when he was only pretty good in the squared circle, his narrative of being undervalued by WWE, despite being a 434-day world champion, when guys like BD, Owens, Bálor and even Ziggler have more talent than him and haven't had 1/2 of the success that Punk had there, and of course, those 7 years he spent acting like the ultimate Mr. Know It All of wrestling and firing shots at people who were actually doing something good for the business, all of those things made me lose some respect for CM Punk. I'd give him a 6 for this confusing career, but I gotta say, he's made wrestling more interesting since he signed for AEW, with his fantastic feud with MJF and his promos that are always very entertaining. And he actually seems to be cool now, so at least Punk is back and doing great right at this moment."
Rating: 7.0
Sentiment: 0.19614845938375347
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: macieggkwrote on 14.04.2022:[10.0] "I'm judging him only from the time of his AEW debut and then I thought that although it was the best moment in history of wrestling, our expectations shouldn't be very high. He hasn't been wrestling for 7 years and isn't too young, but holy shit. Week in a week CM Punk is proving that he's stil the best in the world, and he's better than ever before."
Rating: 10.0
Sentiment: 0.3725714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Eiven fight newrote on 06.04.2022:[10.0] "Nach seinem Abgang habe ich auch kein Wrestling mehr verfolgt. Seit seiner Rückkehr verfolge ich es wieder. Ausschließlich AEW. CM Punk hat natürlich eine andere Aura als vor acht Jahren. Nicht mehr der Rebell. Aber für mich immer noch sehr faszinierend und einzigartig. Mein absoluter Liebling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jorgeisthe1wrote on 07.03.2022:[10.0] "The Best in the World. Nothing more, Nothing less. His matches always have an aura around them. He is a fantastic wrestler, a GOD on the mic, and seems like a decent human being. His matches against, Cena, Taker, Samoa Joe, and most recently MJF, are 5-star classics."
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rivermanwrote on 02.03.2022:[9.0] "Understands wrestling on a very deep level. Hence, he is able to craft very engaging stories in the ring. However, that talent is eclipsed by his ability to craft them outside of the ring. One of the most engaging talkers wrestling has ever seen and transformed himself from a good hand to a superstar for that reason"
Rating: 9.0
Sentiment: 0.3742857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Dendowrote on 21.02.2022:[8.0] "This guy gets credit for reshaping pro wrestling as we know it not once but twice. First as one of the most iconic and influential independent acts of his generation and again as a breakthrough star who shook things up in the world of corporate TV wrestling. The number of CM Punk wannabes and imitators that followed in his wake tells you something about the way his in-ring style and overall persona resonates with hardcore wrestling fans. He's the Stone Cold of the 21st century."
Rating: 8.0
Sentiment: 0.08125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Punk is a god tier promo, brilliant storyteller, and has overlooked technical abilities. The absolute best on the microphone, in the ring, even in commentary... just not at MMA..."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: I Am Phenomenalwrote on 10.02.2022:[10.0] "He was once my favorite, my hero. 11 years later... he remains my favorite (and hero)! I love everything about the guy. CM Punk is 43yo and still can put one hell of a show on the microphone, in the ring, even in commentary."
Rating: 10.0
Sentiment: 0.40625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rodriwrote on 06.02.2022:"One of the most captivating wrestlers and one of the most important personas in the history of pro-wrestling. His wrestling style changed since is returned but is still really good."
Rating: No rating found
Sentiment: 0.5199999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: rishabhwrote on 31.01.2022:[10.0] "When the WWE was barely watchable and the product was the total shits, this man stepped up and made it better. Even before the WWE his work in ROH was very good and he is one of the best wrestlers to come out of ROH. His pipebomb promo is still one of the most iconic promos of all time. Even in 2013 when he wasn't really enjoying what he was doing, he still put on fire matches. He could get the best of any opponent and worked well with whichever wrestler he wrestled. His matches with Samoa Joe, John Cena, Brock Lesnar are still some of my favorites. He came back and he hadn't lost a step and doing great in AEW. So glad he's back."
Rating: 10.0
Sentiment: 0.4815384615384615
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PhenomenalGunwrote on 14.01.2022:[6.0] "Never got the hype for this guy. His mic skills never interested me since it always sounded like he was whining about the same thing over and over, his career peaked when he did the pipe bomb, which retrospectively, was more entertaining for the shock value rather than being a promo of any real substance. He definitely can't go like he used to because his recent matches have been flops in-ring wise. Just being honest here. Hey, I'll give him credit, he made the PG era slightly less boring, he got reactions from crowds that were insane, and I'll even say he used to be a good in-ring worker in WWE, but I'm still sitting here waiting for him to move the needle in AEW, hmm...."
Rating: 6.0
Sentiment: 0.06987179487179487
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: giovypotiwrote on 30.12.2021:[10.0] "CM Punk, in my opinion, is one of the best wrestlers ever. He is the reason why in the early 2010s, I started to follow wrestling again. One of the best of all time with the microphone, very good also in the ring. It is incredible how WWE did not realize what they had."
Rating: 10.0
Sentiment: 0.7819999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CaptainCharisma1997wrote on 16.12.2021:[10.0] "I've given a lot of thought to this, but I truly believe that CM Punk is the greatest talent in wrestling history. I hesitate to call him the GOAT only because of how short his time on top wherein he was doing his best work was, but it's possible that he can eventually claim that title as well now. Either way, he's the best performer in the history of the wrestling industry. The absolute best talker ever; his conversational promo style is so much more organic and real than everyone else's that I essentially look at him as the Marlon Brando of wrestling. One of the best wrestlers ever, and shockingly underrated as an in ring talent. For some reason people never float his name when they're talking about the best performers strictly from an in-ring perspective, but idk why; his catalog speaks for itself and there's only a small handful of guys that I'd feel comfortable saying were better or equal to him in that regard or that can do psychological storytelling on his level. Simply the man."
Rating: 10.0
Sentiment: 0.3204545454545455
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wrestling Foreverwrote on 15.12.2021:[10.0] "Es dürfte klar sein Phil ist einer der diskussionswürdigsten Wrestler aller Zeiten, geliebt, gehasst, überbewertet und so weiter. Erster Kontakt mit ihm durch das Power Wrestling Magazin. Nix von seiner Indy Zeit da gewusst, er wurde gelobt auch das er einer der nächsten Mega Star sein kann was er dann bei der WWE wurde, jedoch hat das schon lange gedauert. Hat sich wegen fehlenden Indy Matches längst, geändert ich habe inzwischen zig Indy Punk Matches gesehen, ich kenne auch den Summer Of Punk von 2005 und so vieles was er auch vergessen hat. Seine WWE Zeit hatte Höhe und Tiefen was seine aktuelle AEW Zeit angeht. Er ist fit, er liefert gute Matches ab und er zeigt auch das er immer noch talken kann."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: michmoose21wrote on 15.11.2021:[10.0] "My first favorite wrestler. Awesome promo and great storyteller and one of the greatest ever imo. Cannot wait for his AEW run"
Rating: 10.0
Sentiment: 0.71
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ToastyLogiwrote on 13.11.2021:[10.0] "CM Punk is the total package. He's got the mic skills, look, in ring work, and has had amazing rivalries over the last 10-15 years. So glad he's back to wrestling in AEW. Hasn't missed a beat either."
Rating: 10.0
Sentiment: 0.22000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: FACEElmo295wrote on 11.11.2021:[6.0] "He was worth taking a punt on in WWE due to the fact he bought something different to the table. He has a unique look, but not one that could draw the masses back to the product. His microphone skills are incredibly good, everyone talks about the pipe bomb and that is great, but he had so many classic promos from 2009 until 2013. The feud with Cena really added something to WWE, but his 2011 - 2013 WWE Title run was really lacklustre due to bad booking. Punk does have good matches, but some just miss their cue. I feel CM Punk is very overhyped, he had a certain IT Factor to him, but isn't a big star and his wrestling ability gets overrated. Great talker, his look isn't the best for gluing people to their TV screens, and his wrestling skills whilst good feel too indie-arrific for WWE. AEW ain't overtaking WWE anytime soon with Punk and Danielson as their two biggest signings this year."
Rating: 6.0
Sentiment: 0.2952976190476191
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jorhorgewrote on 19.09.2021:[10.0] "THE GOAT. CM punk is the Goat one of the best in history his microphone was incredible, possibly the best heel in history or if not one of the best. You can match Punk to a random one and they make you a 5-star match."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: kamitron12wrote on 13.09.2021:[10.0] "Man...What can I say about this man that hasn't already been said. I wish there was an option to go above 10 because I would pick it in a heartbeat. I'll start with ring skills. CM Punk should honestly be up there more when in the discussion for Greatest Wrestler of All Time. He was DAMN good in the ring, and as shown from his Darby Allin match, can still put on a more than good match despite not having wrestled for SEVEN AND A HALF YEARS."
Rating: 10.0
Sentiment: 0.4791666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DDM1405wrote on 12.09.2021:[9.0] "He may not be the GOAT, but Punk is easily my favourite wrestler of all time. He is phenomenal on the mic because it feels like he believes every word he says. His gimmick makes you believe in him since he merges his real personality with his wrestling persona perfectly. In the ring, whilst his work has never been exactly smooth or clean, he knows how to lay out a match to tell a good story whilst making it all look believable, and after 7 years gone it seems like he still has that ability."
Rating: 9.0
Sentiment: 0.5125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bad Jobberwrote on 10.09.2021:[4.0] "overrated. he talks good, sure. but people want him to bury talent when they say that is bad for every other wrestler. fans, get off of punk's crotch. like come on guys, he is not as good in the ring. he's not the second coming of christ, stop hyping him"
Rating: 4.0
Sentiment: 0.0535714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: aggeLwrote on 04.09.2021:[10.0] "Best wrestler ever, in my personal opinion atleast. Has had a hell of a career in the Indies and WWE, can't wait to see what he does with AEW, I hope they book him well cause they got gold on their hands. Amazing promo skills, and amazing in-ring talent. For anyone who disagrees with me regarding the latter, then simply watch the CM Punk VS Samoa Joe Trilogy from ROH. All 3 matches are just beautiful , and he certaintly kept it up with his run in WWE. His ROH promos were amazing, and then his promo game in WWE just became like 150 times even more amazing, just international gold. Please don't screw this up AEW."
Rating: 10.0
Sentiment: 0.36250000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: elvikingo29wrote on 30.08.2021:[7.0] "Played this anti-authoritarian character (as a heel or face) that was absurd in the wwe especially. However, he's a God to some people. He was smarter than them, making them believe he always had a chip on his shoulder, despite being a millionaire later on. The mic being referred to a pipe bomb in his hands is absolutely an appropriate metaphor, nevertheless, he's all talk. His character doesn't work for some of us because he can't physically back up his arrogant attitude. As someone considered one of the best, (self-proclaimed best in the world) he's definitely not as good as any of his contemporaries. Comes across as a puny weak punk, made worse after his embarrassing attempt at mma - still evident on his nose every time you see him. The thought that he's dangerous is laughable. He started incorporating more mma-based moves into his offense; combining that with his persona makes for the least interesting kind of wrestler to me: a total wannabe that can't make me buy into his illusion. His promo tales have been mildly interesting from a literal standpoint, but again, unbelievable character given the setting. The fans don't even know what "cult of personality" or "voice of the voiceless" actually means, and talking about stuff like propaganda in storylines, or using bad fight techniques, only works on dumb audiences that don't understand real life. It's a sad fact that wrestling fans respect people like him more than the likes of Kenny Omega."
Rating: 7.0
Sentiment: 0.02142857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: vaventwrote on 23.08.2021:[9.0] "One of the best there's ever been on the mic, just incredibly good at conveying his message and controlling a crowd. I wish I could give him a 10 for that alone, but there is the whole in-ring component of being a wrestler, and I believe he's only around an 8 in that regard. Good at telling stories, great at the basics, but doesn't really do anything in the ring that makes him stand out as one of the greatest to ever do it. Still, he's had a greater impact on the wresting world than perhaps anyone else in the last decade."
Rating: 9.0
Sentiment: 0.51
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Residentwrote on 21.08.2021:[10.0] ""The Best In The World" No one else in modern Wrestling can capture the fans quite like him. Had the 6th longest WWE Title reign of all-time and while MMA didn't work out so well, he's one of the best Pro wrestlers of all time. From early days in Second City Saints wirh Colt Cabana in IWA Mid South ans Ring of Honor all the way up to his time in WWE and his return in AEW. Very few can touch him on the mic or in the ring. It's great to see him back in a Wrestling ring where few are as good as him."
Rating: 10.0
Sentiment: 0.30363636363636365
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: raspymortenwrote on 21.08.2021:[10.0] "... Man, it happened. It only took little under half an hour of him being back, for me to remember why CM Punk's one of the greatest professional wrestlers ever. Nobody has more control over an audience than him."
Rating: 10.0
Sentiment: 0.17797619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: eltetechoriwrote on 13.08.2021:[10.0] "He is one of my favorite fighters, without a doubt he had a very interesting role, and finally important, in the McMahon company, it was a joy to see him for several years leaving Cena in the shade."
Rating: 10.0
Sentiment: 0.4699999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: marexcelwrote on 05.08.2021:[10.0] "Best In The World. Mehr als nur ein Nickname in meinen Augen. Schafft es mit Promos und In-Ring-Action gleichermaßen mich in seinen Bann zu ziehen. Die früheren IWA MS und ROH-Werke fehlen mir sogar teilweise, aber das, was ich gesehen habe, reicht einfach, um von seiner Art und seinem Können Fan zu sein. Freue mich sehr, wenn sein Comeback bald ansteht und ich hoffe, dass er sich damit würdig vom Business verabschieden kann, welches er so stark geprägt - in den Indys, aber auch in seinem WWE-Run."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WhatTheHeckleswrote on 04.08.2021:[7.0] "A decent wrestler with some good mic skills, CM Punk is a name that has been on the lips of the internet for years now, as everything seems to point to his return according to the fans. while as cool as it would be to see the current rumors about him coming to AEW would be great, I don't know if he'll still have the same impact or ring skill as he did during his previous tenures in wrestling before going to UFC."
Rating: 7.0
Sentiment: 0.2642857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: yunuskayabrandwrote on 03.08.2021:[6.0] "this man is a name that has left a mark on wwe. But it doesn't appeal to me and doesn't have a lot of extra moves in the ring, and it's overrated by fans."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BK7Neunzigwrote on 30.07.2021:[9.0] "Punk konnte in seinen starken Phasen die ganze Show alleine rocken. Alter Schwede, hat der Mann geile Promos drauf... Mit Heyman an seiner Seite war das einfach nur zu böse. Denn das war für mich auch der beste Punk - der Heel, den man entweder hassen oder lieben muss. Dass der Mann jemanden nicht erreicht - keine Chance. Als Wrestler war er für mich persönlich nie all zu spektakulär. Natürlich hat er mit fähigen Gegnern auch die ein oder andere unvergessliche Schlacht geschlagen. Aber, zumindest rein wrestlerisch, hat er jetzt auch nicht all zu oft die Hütte abgerissen. Langweilig war er jedoch nie. Ich werde seinem Comeback auf jeden Fall stark entgegenfiebern und bin extrem gespannt, ob ich mich vielleicht sogar noch um einen Punkt nach oben korrigieren muss."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BrayanLaPrewrote on 23.07.2021:[10.0] "Perhaps the most divisive wrestler of the past decade, CM Punk is a legend of the highest order, IMO. If the goal is to elicit a real and emotional response, then there were few in the history of professional wrestling who were better than Punk. Whether he was The Voice of the Voiceless, the leader of the Straight Edge Society, The Best vs. The Beast, the Best in the World or a punk with bleach-blonde hair and basketball shorts, Punk knew how to engage the crowd as well as anyone ever has. Multiple classic matches, even more definitive feuds, and a mark on the industry that has already lasted a generation. 5 star wrestler, 10 out of 10."
Rating: 10.0
Sentiment: 0.2858974358974359
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AllEliteRobotnikwrote on 29.06.2021:[10.0] "10 years later and his infamous Pipebomb promo speaks nothing but the cold hard truth about WWE and Vince McMahon. He is the GOAT."
Rating: 10.0
Sentiment: -0.3479166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mjs2212wrote on 23.05.2021:[8.0] "I've come to appreciate CM Punk more as he rose to prominence. I didn't really understand all the hype behind him when he was first starting out in WWE, but after 2011, my mind changed completely. I wouldn't go as far as to say he is my favorite wrestler ever, maybe even slightly overrated, but he has earned my respect through his great rivalries with The Undertaker, Rey Mysterio, and John Cena. His relationship with Paul Heyman was amazing to watch as well, and I wish that we actually got more of it because they had great chemistry. It's too bad he walked away from wrestling so abruptly and that is always going to bother me about Punk. However, he's a solid performer and one of the most important figures in the 2010's."
Rating: 8.0
Sentiment: 0.2229166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Damian Gibsonwrote on 29.04.2021:[10.0] "One of the best of all time, on the mic and in the ring. Looked cool. Funny. Great sense of self and his "character". Understood wrestling psychology better than most. Truly the Best in the World."
Rating: 10.0
Sentiment: 0.6285714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wewantpunkwrote on 13.04.2021:[10.0] "Einen absolut tollen In-Ring Stil und grandios am Mikro. Es fällt mir echt schwer was negatives zu CM Punk zu sagen. Er kann super Promos liefern und kann auch fantastische Matches über die Bühne bringen. CM Punk ist definitiv "Best in the world" in dem was er tut."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AndoCommandowrote on 19.03.2021:[10.0] "One of the most intricate workers I've ever seen. Seriously, it's a shame he never got the appreciation he deserved after outselling Cena."
Rating: 10.0
Sentiment: 0.08333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JBoogieRom28wrote on 12.03.2021:[10.0] "CM Punk is arguably the greatest wrestler on the mic to ever step foot in WWE. For most of his WWE career, he was underused. 2011 was his outbreak and he made people want to watch not just him, but wrestling in general. He is truly an icon in wrestling history."
Rating: 10.0
Sentiment: 0.5166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sammy Suriwrote on 09.03.2021:[6.0] "He definitely is a little overrated and he's a selfish guy who jumps ship when things go south. He was there wrestling everyday as long as things were nice for him and he was champion, soon as it was others' turn he wasn't willing to be on the losing side of the show although others did it for him because it was entertaining to the fans and. I guarantee you as soon as he come back to wrestling his hype bomb momentum will disappear and becomes just another talented entertaining wresler. If he didn't believe in the company why did he need their audience and platform to attack them? Without the company he wouldn't be a record World Champion and wouldn't be able to demand more. He's one of the most hypocritical characters who knows how to manipulate average IQ public, though very entertaining and undoubtedly talented."
Rating: 6.0
Sentiment: 0.2536764705882353
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ProWrestlingGuy316wrote on 15.02.2021:[10.0] "Mein absoluter Lieblingswrestler, was vermutlich mein ganzes Leben lang so bleiben wird. Punk war einfach unglaublich vielfältig: im Ring sehr gut, extrem charismatisch, konnte Heel und Face gleichermaßen gut mimen und ist einer der besten Redner im Wrestling aller Zeiten (in meinen Augen der beste). Obwohl er in mehreren Rollen glänzte und auch bei Leuten, die sich vom Wrestling abgewendet haben, das Interesse kurzzeitig wieder geweckt hat, wurde er bei WWE nie als absoluter Top Star eingesetzt. Er durfte nicht einmal einen Main Event bei Wrestlemania bestreiten, obwohl es sich kein Zweiter mehr verdient hat. Was soll man da noch sagen? Triple H und Vince McMahon haben ihre Jasager bzw. alle, die ihnen in den Hintern kriechen, besonders gerne."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RickyHendowrote on 11.02.2021:[9.0] "Would've been a 10 if he'd stayed in WWE for longer. His run in 2011 is my personal favourite of any wrestler, he was just untouchable on the mic. Also loved his stuff in ROH"
Rating: 9.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: autopsy12wrote on 10.02.2021:[6.0] "I'm sorry but I have never seen the appeal of this guy. He could talk and wrestle, sure, but one of the top ten all time greats? I really don't think so. Everything I've seen from him I have also seen many others do better. He isn't bad obviously but he gets way overrated and I still to this day think he has the most obnoxious fanbase of any pro wrestler ever."
Rating: 6.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kungwrote on 03.02.2021:[9.0] "CM Punk was easily the best promo guy in WWE during the 2010s and one of the best in-ring. His ability to draw the crowd in night after night is probably the reason why so many fans keep chanting his name seven years after he left for the final time. He was the one guy who could adequately rival John Cena's stranglehold on the WWE until Daniel Bryan blew him and everyone out of the water a few years later. Also, he was a hell of a Ring of Honor Champion."
Rating: 9.0
Sentiment: 0.3407407407407408
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Old ride long linewrote on 18.12.2020:[8.0] "I just can? t with cm punk. His character was great until it wasn? t. He went from face to heel but the whole straight edge thing got stale after awhile it? s like he forgot he was on live tv every week and that his schtick would eventually get old. Should have either switched to part time or He needed to evolve his character. He does have a lot of classics and I recommend going back to rewatch but he is not GOAT material."
Rating: 8.0
Sentiment: 0.1095959595959596
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: medousewrote on 29.10.2020:[10.0] "It's hard for me to find another wrestler, who could compete with CM Punk in mic skills. I remember so many great promos he did in WWE. His feuds with Jeff Hardy, Jericho or John Cena were great. He was always unpredictable. He shocked the wrestling world with so many crazy things he's done, you would never expect anyone else to even pull it off. For example he left the company with WWE championship and he finished one of the RAW episodes with the biggest red pill WWE universe ever had to swallow. The best entrance themes, the best attitude, the best work ethics. He is The Best In The World."
Rating: 10.0
Sentiment: 0.3073931623931624
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: eleddie2914wrote on 28.10.2020:[9.0] "Cm punk an awesome superstar he had great matches and great world title runs. Punk's momentum was killed in 2014 which led to his departure but before that punk was the best in the world."
Rating: 9.0
Sentiment: 0.6799999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ilovewrestling1995wrote on 21.10.2020:[10.0] "One of the best technical and best on the mic wrestlers of the world . his heel work and his matches were always so perfect ."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Legend003wrote on 06.10.2020:[9.0] "Zu seiner Hochzeit (2011-ca. 2013/14) der unterhaltsame und beste Superstar. Starke Promos und Matches und zeigte unglaubliches Charisma. In-Ring Work war auch ziemlich stark. Leider hat WWE falsche Entscheidungen getroffen (Titelwechsel ad Rock, Entlassungsdatum, ? ), deshalb sehe ich keine Rückkehr mehr."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BUIOOMEGAwrote on 05.10.2020:[10.0] "One of the best of his generation, of the entire WWE history and the real revolutionist of the 00's wrestling."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ma Stump Pullerwrote on 25.09.2020:[8.0] "Punk pre WWE was consistently pretty good: his run in ROH was fun and established his ability to tell good stories in the ring right off the bat, as well as passionate promo work which endeared him to the fanbase. His weakest point was actually his in ring work as Punk had a habit of doing rather awkward moves or stuff that just didn't look impactful. His influences from KENTA are pretty damn obvious, but he couldn't really hit as hard as him, or have that intensity he had, so the effectiveness of such moves really didn't show well. In WWE, Punk's quality sorta bounced up and down based on his motivation at the time: if he was trying to prove himself with a big event or push with a guy he liked, he'd give it a proper shot (his work with Cena, Bryan, Lesnar etc) then he could be fantastic, but at other times it felt like he was just phoning it in and not giving a shit, which led to rather mediocre matches and unremarkable years. Sure, Punk could talk for days and was deeply engaging when given the tools to work with, but he wasn't a good draw as WWE Champion and his face work always felt disingenuous- me personally, he always seemed to prefer being a heel and it suited him a lot more than vice versa. Disenchantment in his later years there would make his matches seem a lot less impressive as well- don't really have any that stand out at all. Punk was good, but he definitely wasn't great, and acting like he was beyond some amazing top quality matches and a worked shoot promo when the vast quantity of his matches were good at best is disingenuous."
Rating: 8.0
Sentiment: 0.23492063492063492
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gathawkwrote on 16.09.2020:[7.0] "Hands down one of the best talkers in modern wrestling era, I could listen to his promos for hours. Pretty ok in the ring, knows how to tell a good story, although tends to botch a move from time to time."
Rating: 7.0
Sentiment: 0.41574074074074074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PuroresuLoverwrote on 24.08.2020:[7.0] "CM Punk was a good wrestler, but very overrated. His peak was in ROH, but still, he was not one of the BITW as people claim. His selling is pretty weird and poor, he executes his moves in a very awkward way too, but sometimes, they can look very beautiful and even brutal. He has a very great mic-skill and a good arsenal, but like I said, he executes it in a very weird way. Still, I would pay to watch one last match."
Rating: 7.0
Sentiment: 0.05374999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JuWFEAEwrote on 29.06.2020:[9.0] "Punk ist einer der wohl besten Mic-Worker aller Zeiten. Trotzdem war er nie mein Lieblings-wrestler. In-Ring find ich ihn auch ganz gut, obwohl er schon lange nicht mehr gewrestled hat. Leider gab es ein Paar Botches an die ich mich sehr negativ erinnere."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Viniciouswrote on 26.06.2020:[10.0] "Personally one of the best wrestlers to ever do it. His work on the microphone and in the ring made him "must see" TV in my book."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jie En Mawrote on 20.06.2020:[10.0] "Apart from the fact he's my idol, my inspiration & my favourite of all time (which I may be bias), he's one of the best example what a in-ring performer should be. So great at portraying his character, whether as a face or a heel. One of the best (if not the best) in terms of mic skills, his in-ring work was decent, his charisma and personality gained him a huge fan base and the immortal support from hardcores. Be honest, he wasn't perfect. 9. 5 will be the better score for me, because he wasn't as big of a draw like rock and austin and some other guys, an outspoken individual that divided people's opinion, whether you will like him or hate him. Nonetheless, still one of the best all-round performer in the history of this industry."
Rating: 10.0
Sentiment: 0.3827777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Iceqwrote on 09.10.2019:[10.0] "Eines der besten Gesamtpakete aller Zeiten. In-Ring-technisch gehörte er zu den besten, jedoch sind es seine Promos die in von allen Unterscheiden. Seine Pipe Bomb ist meine persönliche Lieblingspromo und sein Match mit Cena von MitB 2011 ist das beste in den letzten 10 Jahren in der WWE. Schade das er wahrscheinlich mit dem Wrestling abgeschlossen hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[10.0] "CM Punk was the first indie darling to enter WWE after years of the essentially being blacklisted & Punk changed the game. He was a breath of fresh air even before his career defining "pipebomb". I loved what he did with his cult-like character & wish we got more from that stable. He was sound in the ring & great on the mic."
Rating: 10.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kingtaeyeonwrote on 20.07.2019:[9.0] "Great worker put up with a lot of crap towards the end of his career that unfortunately soured the taste of wrestling. I'd be selfish to say I hope he comes back to wrestling one day even if it's behind the scenes with AEW or ROH. Could have been nice to see him in BosJ or G1"
Rating: 9.0
Sentiment: -0.08571428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DanTalksRasslinwrote on 12.07.2019:[9.0] "Punk was certainly among the best talents of his era, both in terms of in-ring ability and psychology, and his excellent promo skills.  He had an excellent run in ROH, which included the better version of the "Summer of Punk" storyline, and also did very well for himself in WWE, though he wasn't quite able to convince the company - even when he was champion - to fully invest in him as top star.  His biggest flaw may well have been his apparent ability to be his own worst enemy backstage, and the way in which his WWE run - and wrestling career in general - doesn't sit well with many fans."
Rating: 9.0
Sentiment: 0.3934065934065934
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TylerWhitewrote on 23.04.2019:[10.0] "CM Punk ist einer der wirklich besten Wrestler aller Zeiten und eines der besten Gesamtpakete aller Zeiten und zwar auf so vielen verschiedenen Ebenen, die man nun Aufzählen könnte. Zunächst einmal ist Punk einer der großen Indy-Wrestler der 2000er Jahre, der sich schon in den Indys einen großen Namen machen konnte und durch seine Allround Fähigkeiten und auch seine In Ring Skills auffiehl. Seine teils extrem langen Matches mit Chris Hero sind absolut großartig und seine Matchserie mit Joe bei ROH ist bis heute eine der besten aller Zeiten und alle drei sind die wohl besten Matches aus seiner Karriere. Unter den vielen Namen der Indys war er dann mit der erste, der den Weg zur WWE geschafft hat. Nach einem mittelmäßigen Start bei ECW wurde es dann immer besser mit zwei MITB Wins und World Title Runs, ehe dann der Summer of Punk 2011 kam, was der Höhepunkt seiner WWE Karriere war. Besonders als Micworker konnte er dort nochmal zeigen, dass er einer der besten Aller Zeiten ist, was sein Gesamtpaket so genial macht. Doch war ist eigentlich die Lehre aus dem Summer of Punk? Sicherlich war es für alle die Smart Marks großartig zu sehen wie CM Punk ihnen die Worte aus dem Mund nimmt und all das furchtbare an der WWE ausspricht und damit wirklich einen Grad an Realismus in die WWE bringt. Und sicherlich gehört die Pipebomb Promo zu einer der besten überhaupt und seine Fehde mit Cena zu einer der besten der neuen Ära. Doch die traurige Lehre daraus ist doch, dass sich eigentlich trotz alledem gar nichts geändert hat. Die Ganze Story könntest du heute nochmal bringen und sie wäre noch genauso aktuell wie damals. Die WWE ist wirklich leider too big to fail, sie können die Kritik an sich selbst in dieser Deutlichkeit in ihr Produkt selbst einbauen und trotzdem ändert sich gar nichts, weil sie es nicht nötig haben. Schade, denn Punk war wirklich jemand, der das Wrestling Verändern wollte und könnte. Er hätte der ME bei Mania 28 sein MÜSSEN!"
Rating: 10.0
Sentiment: -0.02767857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LunarGrey1wrote on 29.01.2019:[10.0] "His IWA -MS/ROH promos and matches are just as good if not better than his WWE stuff, one of the greats in my opinion"
Rating: 10.0
Sentiment: 0.22499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: zephyrwrote on 08.01.2019:[8.0] "World class promos and character and consistently good in-ring work. Wouldn't personally consider him one of the all-time greats but he was certainly a capable and entertaining wrestler."
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cibswrote on 08.01.2019:[10.0] "A diva and weeping baby, BUT... also an incredible wrestler. CM Punk is one of the most charismatic men I've seen in all these years, he connected with the audience naturally and also in the ring was tremendously good. Very versatile and never boring."
Rating: 10.0
Sentiment: 0.48571428571428577
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kaswrote on 10.12.2018:[10.0] "I dislike the recent notion that Punk was not popular during his WWE run (which could be a response to the also ridiculous notion of him being the most popular wrestler since Stone Cold) because the fact of the matter is without Punk a lot of WWE's roster simply would not be wrestling there. He showed that an indie star lacking the preferred body type could get over to the point of becoming one of the top guys in the entire company and is often said by many people to be the reason they got back into wrestling. On top of this, he's an all-time great promo, a fantastic storyteller, good technical wrestler, has a good moveset, and always had an interesting character. Fantastic wrestler."
Rating: 10.0
Sentiment: 0.2531746031746032
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Stott Onewrote on 30.11.2018:[9.0] "Amazing all-around performer. Great mic skills. The ability to work well as either a Face or a Heel. He's had a number of great matches in his career and I hope his failure in MMA doesn't sour him on eventually returning to wrestling."
Rating: 9.0
Sentiment: 0.32222222222222235
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Steamboat2511wrote on 29.11.2018:[9.0] "CM Punk gehört auf jeden Fall zu den Wrestlinggrößen dieser Tage. Letztlich ist er einer der besten Wrestler der Welt. Technik trifft intelligente Matchführung. Am Mic gehört er zu den besten überhaupt, wie er am markantesten im Sommer 2011 bewiesen hat. In dieser Zeit konnte er auch endlich zu einer der größten Persönlichkeiten überhaupt heranreifen, mit teilweise unglaublichen Reaktionen der Fans. Ich hätte ihn gerne (länger) an der Spitze der Company gesehen und würde mich sehr über seine Rückkehr freuen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Amico Leonardwrote on 16.11.2018:[9.0] "Cm punk is one of my favorite sport-entertainers ever (I have a Tatoo on my left arm dedicated to him). One of my greatest role models in real life , and one of the first (if not the first to my memory )that bringed his real persona as the whole thing to create his gimmick: he is in real life a straight edge a punk rock fan and he was in real life upset with WWE back in 2011 when he did his infamous ? shoot promo ? that made him a legend. He is to our era what Stone Cold was for Attitude Era, a pioneer a revolutionaries that took the company to the next era (the nowdays era is called ? reality era? started with CM Punk rise in 2011). Probably the greatest talker of all times, his promos are legendary sometimes I playback them to remember me how great they were. Some of his feuds are part of history and are some of the best rivalry ever made in WWE , the one against Jeff Hardy or Rey Mysterio in the first half of his carrear and the most famous ones with John Cena , Orton Undertaker or Chris Jericho. Also his matches are some of the best ever and some of my favorite matches ever with the opponents that I cited before. His ring work is excellent he wasn? t the best athlete or the best body ever but he was probably one of the best (if not the best) storyteller of that period with incredible facial expression and in ring genius to create counters and jaw dropping moments in the ring. I loved also his ROH period were probably his athletic ability were even better allowed to do less scripted matches. The only reason I not give him 10 is becouse in reality he was a meteor in the buissness , becouse most part of his carrear he wasn? t a main eventer and , I am sad to say it, becouse his ? post WWE?  actions and statements were really bad. He he spat in the dish where he ate and denied wrestling most of that, in a matter of fact, for a jealousy against Daniel Bryan that in 2014 was more over than him. I Compare in some way his carrear to Bret Hart one, great but worst ending ever."
Rating: 9.0
Sentiment: 0.356439393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KINGwrote on 09.11.2018:[10.0] "He could do everything. One of the few not annoying WWE babyfaces, great heel as well, eccellent entertainer and fantastic wrestler, the most underrated on the roster till his 2011 push, he deserved everything he got, his programs with Jericho and Undertaker were WM main event material but the WWE had other options. His sad departure can't shadow a stellar career and I hope he stays coherent by never coming back."
Rating: 10.0
Sentiment: 0.19924242424242422
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RatingsMachinewrote on 11.10.2018:[8.0] "CM Punk was a really good worker; not quite great, but close to it. But his biggest strength was his mic work, where Punk was one of the best. As the 'Pipe Bomb' showed, if you gave Punk the chance to talk about a subject that he passionately believed in, you would get a fantastic promo."
Rating: 8.0
Sentiment: 0.44722222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: taabr2wrote on 06.10.2018:[10.0] "One of the best talkers in wrestling history who has a good argument for being the best mic worker of his generation. CM Punk was also a great wrestler although. Punk had great charisma which is what carried him to the top of professional wrestling."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Summerslam Fan 01wrote on 10.09.2018:[6.0] "Der Mann der die WWE ohne Worte verließ, Phil Brooks war immer unzufrieden selbst als er 434 Tage Champion sein dürfte, musste er seinen eigenen Run kritisieren. Dann Jamnert er rum war er nicht im Main Event von Wrestlemania stehen darf und ein The Rock oder The Miz schon, die ja seiner Ansicht nach nicht auf seinem Level sind, Punk muss in einem klar sein die Company wird immer machen was am besten für sie ist, ein Rock zueht viel mehr Aufmerksamkeit und Kohle als ein Punk ist einfach so , auch bei einer Katastrophalen Leistung gegen Cena. Und kaum ist er nicht Champ seit einem Jahr ist er weg, haben Leute wie Dolph Ziggler die seit Jahren nicht mal ansatzweiße den Spot bekommen haben den Mr. Ego Cm Punk hatte heulend die Tasche gepackt? NEIN In meinen Augen hat der Typ absolut Unprofessionell gehandelt. Am Mic näturlich Gold aber im Ring war er nie so groß wie er selbst dachte, sah nie wirklich durchtrainiert aus. Und scheint Privat auch ein ziemlicher Ar... zu sein"
Rating: 6.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sheepwrote on 05.08.2018:[5.0] "Ein bisschen mehr Demut und Dankbarkeit und ein bisschen weniger Ehrgeiz hätten ihm gut getan. Zumindest, wenn man seine Fähigkeiten mal realistisch und ohne den Mordshype betrachtet. Nie zuvor hat ein Wrestler ein solches öffentliches Fazit gezogen, wie Punk es getan hat, und folglich misst sich seine gesamte WWE-Laufbahn nun nachträglich an seinen Worten. Klar, die WWE hat Mist gebaut, dieser Arzt sogar gewaltig großen, und dass Vince und Hunter hinter den Kulissen schlecht mit ihm umgegangen sind, mag ich angesichts des Bookings in seiner Zeit an der Spitze gar nicht leugnen. Seinen Zorn diesbezüglich verstehe ich. Dennoch muss ich immer wieder mit den Zähnen knirschen, wenn ich höre, wie er darüber jammert, für ihn sei nie Platz gewesen, keiner habe ihn je unterstützt und was für ein verkanntes Jahrhundertgenie er doch war. Wir sprechen hier von dem einzigen Mann, der je zwei MITB-Matches hintereinander gewinnen durfte. Ein Mann, der 434 Tage lang Champion bleiben durfte. Und ja, ich will sogar so vermessen sein, zu behaupten, dass Punk im Ring bei weitem nie so großartig war, wie er selbst, Paul Heyman und die ganze Wrestling-Welt ihn fand. Ich kann mich an kein einziges Match erinnern, indem er mich wirklich so begeistert hat, wie es etwa Triple H, Batista oder Edge wiederholt getan haben. Entweder hat er im Build-up und den Promos so gute Arbeit geleistet, dass die Aufregung das Match tragen konnte (etwa mit der SES), oder das Match fand in Chicago statt (MITB 2011), oder sein Gegner war selbst so herausragend, dass Punk nur mithalten musste (Summerslam 2009 gegen Jeff Hardy). Punk war ein Wrestler (mit Betonung auf: war), der Storytelling und Psychologie draufhatte, zweifellos. Aus dem Kontext der Storyline herausgelöst waren seine Matches aber selten über Durchschnitt, häufiger darunter. Und jetzt hat er sich zwei Mal in der UFC verhauen lassen, und der Hype? Der lebt noch vier Jahre später. Ich hoffe, er kommt zurück - und beweist mir, dass ich falsch lag."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Shiza kunwrote on 23.05.2018:[8.0] "As a Chicago native, I can confirm this man is a cult hero of sorts for many. And rightfully so, since CM Punk was certainly an amazing performer, both in-ring and on the mic. In his early WWE years, I didn't particularly care for him, especially his run as leader of the Straight Edge Society. However, his run in 2011 that got a lot of people talking genuinely got me hooked back into wrestling and made me wonder what would happen next. Unfortunately, WWE booking killed the white-hot angle once the Kevin Nash/HHH storyline was introduced, but even after this, Punk had a solid run as one of top guys, especially during his 434-day title reign in which he had several classic matches. What I found even more impressive was his ability to flawlessly transition from face to heel. Ultimately, I never personally connected with him on the level of other guys like Daniel Bryan. So while not necessarily one of my favorites, I cannot deny his skills and versatility and am looking forward to checking out some of his work pre-WWE."
Rating: 8.0
Sentiment: 0.19583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Oliver95xwrote on 23.05.2018:[10.0] "Im Ring und am Mic einer der besten. Er hat Charisma und es gibt nichts an ihm wrestlerisch gesehen auszusetzen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mikawo91wrote on 21.04.2018:[6.0] "CM Punk ist ohne jeden zweifel einer der besten Wrestler den die WWE je hatte, allein von seinen In-Ring-Skills verdient Punk volle 10 Punkte. Das viele Fans ihm eine Träne hinterher heulen ist verständlich. Ich, für meinen Teil mochte Punk zum Ende nicht mehr so sehr wie zu Beginn. Bis zu seinem Heelturn im Jahr 2009 gegen Jeff Hardy war Ich ein großer CM Punk Fan. Zugegeben in seiner Anfangszeit als Heel mit seiner Gruppe, die Staight Edge Society, und als er sich an die Spitze des Nexus intrigierte, und die Gruppe dadurch spaltete, fand Ich Ihn noch sehr unterhaltsam, aber danach begann sein langsamer Abstieg. Das von vielen hochgelobte WWE Championship Match gegen John Cena bei Money in the Bank 2011, fand Ich eher langweilig. Sein Streit mit Ryback, das Gejammer über ein Wrestlemania Main Event, sein Diven-haftes auftreten Backstage, sein gleichgültiges Verhalten gegenüber seinen Fans, und seine Differenzen mit Vince McMahon und Triple H gingen mir nur noch auf die Nerven. Das viele hoffen das CM Punk sein Comeback in der WWE oder in einer anderen Wrestling-Liga gibt, halte Ich für unwahrscheinlich, da weder Punk selbst, noch die WWE oder eine andere Wrestling-Liga Interesse an einer Zusammenarbeit zeigen."
Rating: 6.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MitsuharuMisawawrote on 31.03.2018:[6.0] "I do not consider him as one of the greatest of all time. I do not believe he was involved in so many great matches as people seem to think. But I admit he is very good on the mic."
Rating: 6.0
Sentiment: 0.8025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: andrewmossighiwrote on 28.03.2018:[10.0] "CM Punk has to be one of the greatest professional wrestlers of all time, because he was the best professional wrestler in the world during his prime. Punk was a perfectionist; someone who prides himself on being nothing but the best in almost every, wrestling category there was. In the ring, he was able to outperform or carry a match to a classic with just about anyone he worked. As a storyteller, Punk could make a believer out of anyone who saw his matches live or through a television screen. On the microphone, Punk was one of the most excellent talkers in the history of the business. Period. The reason why I glorify Punk is because he was never afraid to express his mind in regards to others (Vince McMahon, Ryback, Triple H). Grant it, some of what he said in Colt Cabana's Podcast might have been fabricated, but for the most part, Punk was ambitious, and he was willing to sacrifice everything to become the top star of WWE despite the restrictions set on him due to his status as a former indie star. FACTS!"
Rating: 10.0
Sentiment: 0.37779106858054223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: G23G23Gwrote on 07.03.2018:[10.0] "Meiner meinung nach ein sehr guter wrestler und micworker. Er hat auch einen sehr guten finischer den gts der richtig glaubwürdig ist. Und an alle die ihn hier haten wir bewerten hier doch den wrestler und nicht die privatperson."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: turkeltonwrote on 17.02.2018:[5.0] "Ich verstehe die hohe Wertung nicht. Okay ich gebe natürlich gerne zu seine In-Ring Fähigkeiten und sein Mic-Work verdienen 8/9 Punkte, aber er scheint Backstage mit einen Hogan, Nash oder jungen Michaels vergleichbar zu sein. Was bei mir aber hauptsächlich die Wertung runter reißt ist der Punkt das er seinen ganzen Fans, in meinen Augen, den dicken Finger zeigt. Es läuft nicht wie er es will - er haut ab oder macht nicht mit. Seine Fans wollen ihn wieder sehen ggf in einer anderen Liga - interessiert ihn scheinbar auch nicht, er taucht ja nirgends auf. Ich verstehe auch die Leute nicht die so einer Personen noch hinter her trauern oder in Arenen ihn mit irgendwelchen Chören ehren. aber jedem das seine"
Rating: 5.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CHN325wrote on 02.02.2018:[7.0] "I liked Punk, just maybe not as much as others. Great mic skills, worked his ass off to get where he was. Maybe thought a litte too much of himself."
Rating: 7.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: josepedropintowrote on 26.12.2017:[10.0] "The man who got me back into wrestling. Usual route: at 11 years old started watching, by 14 logged out out cause I found out it was fake and it wasn't connecting any more. I never left it completely, there was still the random Stone Cold, Bret Hart or Mick Foley match on youtube. Then, one day, there it was: a one hour video with Punk's pipebomb and all the segments leading up to Money in the Bank 2011. I watched that in awe. Then I watched the match. And I've been watching ever since."
Rating: 10.0
Sentiment: -0.12777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PrinceJrwrote on 03.12.2017:[10.0] "Ich vermisse ihn wirklich sehr. Er war das Beste, was WWE zu bieten hatte in der PG Era. Obwohl er besser als Cena war in quasi allem, Wrestling, Mic Skills, Pops ziehen, wurde er so stark wie möglich zurückgehalten, um Cena stark aussehen zu lassen. Selbst in seiner 434 tägigen Titelregentschaft hat er fast gar keine PPV Main Events bestritten. WWE hat es soweit gebracht, dass er seine Leidenschaft und Liebe fürs Wrestling verloren hat und fast gestorben wäre im Ring. Hoffentlich entscheidet sich Punk nochmal in den Ring zu steigen egal wo außer WWE, dennoch wird er auch nicht jünger."
Rating: 10.0
Sentiment: 0.03333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: freddnwrote on 17.10.2017:[7.0] "Bewies schon bei ROH; IWA Mid South, FIP und anderen Independentligen seine Klasse und bot dort bereits spektakuläre Fehden und Aufeinandertreffen mit Chris Hero, Raven und Co. Startete recht vielversprechend bei WWE und nahm in der ECW von Anfang an eine prominente Rolle ein, wenngleich seine Position hier sehr schwankte. Insbesondere als Face hatte er sehr mit dem kleinen Spielraum als Babyfaceworker zu kämpfen. Nach dem Heelturn wurde er einer der besten Heels des Kaders. Sein unrühmlicher Abgang schmerzte viele Fans. Der folgende UFC-Ausflug war seinem Namen hingegen nur schädlich."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "One of the best wrestler of all time.  His controversial figure has made one of the most talked superstar in the world, and you know, controversy creates cash.  Despite him being one of the finest wrestler WWE has ever seen in the ring, I have always believed that Punk was even better at the microphone, and that his oratorical skills could have made him an incredible politician, had he not chose to be a pro-wrestler.  What a shame he is wasting himself with MMA."
Rating: 10.0
Sentiment: 0.4928571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: steviecwwrote on 01.10.2017:[10.0] "One of the greatest professional wrestlers of all time. His stock has fallen with some WWE faithful but he had stunning matches, defied expectations and finishes his career having amassed reigns with the WWE Championship, World Championship, ECW Championship, ROH Championship, ROH Tag Team Championship, WWE World Tag Team Championship and WWE Intercontinental Championship, as well twice winning the MITB match, winning a plethora of independent championships and enjoying a run in the prestigious PWG promotion. A Hall of Fame worthy career that helped pave the way for numerous "Indie darlings" to reach top spots in WWE and NXT."
Rating: 10.0
Sentiment: 0.3575757575757576
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheJoker5wrote on 22.09.2017:[10.0] "Awesome wrestler and talker, he had the mastery of psychology behind the fight and knew how to lead Undertaker to a 4. 25 Match."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ChristianMB1wrote on 27.07.2017:[7.0] "Good mic work although at times inconsistent. I had the feeling virtually all of his promos either built up a ton of heat for his matches or completely flunked and killed the feud"s momentum. His ring work is above average, He had good storytelling, but he had a rather small move-set that was never overly impressive. Had he not retired so early and under such circumstances he would surely earn an 8 from me (and possibly even a 9 if he did well for the last 6-7 years of his full-time career)."
Rating: 7.0
Sentiment: 0.19230769230769232
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ConkerPikaKidwrote on 25.07.2017:[8.0] "Oddly, for whatever reason I used to hate him, but now that he's gone from the wrestling scene I have started to like him, which is surprising considering that I used to say that he's the worst wrestler in the world.  Punk was a one of a kind wrestler, with great charisma, excellent finisher, and amazing theme song.  It's not up to me if he wants to come back to the wrestling scene, but I would appreciate if it happened, even if it was just a one night deal."
Rating: 8.0
Sentiment: 0.19333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Redpalmer12wrote on 24.07.2017:"WWE killed CM Punk's passion, love, heart, and spirit for wrestling 2013 and 2014 he started to lose that passion WWE begs him to comeback they're that desperate for Punk to come back its funny to me that Vince and his bitches begs Punk to comeback guess what wwe and Vince ya brought that on yourselves screwing punk not to mention... WWE house show and on the road schedule was just too much for punk, but he still had the courage to do it for us and PERFORM FOR US THE FANS THE WRESTLING FANS WWE and Vince McMahon is the example and assholes mostly Vince McMahon firing punk on his wedding day and won't give younger talent a chance, but if WWE does care about talent how come they let Punk wrestle with staph infection he even told doctors about it yet they didn't do shit honestly Punk lost the Passion, Love, Heart, and Spirit for Wrestling WWE killed it all I have to say is fuck Vince McMahon and his retarded company"
Rating: No rating found
Sentiment: 0.010714285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ajaxwrote on 06.06.2017:[9.0] "A lot of people are rating Punk based on his attitude as a person, which is completely asinine. This is about rating Punk as a wrestler, and as a wrestler he was a star, probably one of the top guys WWE has had since it went PG. People are pointing to the Pipe Bomb as his only good promo, they obviously haven't been paying attention, Punk has been one of the masters of the promo since RoH, up there with Austin, Rock, Hogan or Flair. In ring he was the perfect balance between the safe and brandable 5 moves of doom and the blistering offence of the indies. Punk as a character constantly evolved, from a literal punk to the Saviour to the Best In The World. If there is any negative it's that he's had one or two sloppy moments. He's a legend that we'll look back on in the same vein as Bryan."
Rating: 9.0
Sentiment: 0.2371794871794872
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Super Bratwrote on 09.05.2017:[8.0] "CM Punk was a good wrestler with exceptional mic skills. Like most of WWE's larger talents, Punk's best work was during the years previous to his WWE start."
Rating: 8.0
Sentiment: 0.4333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheWrestlingFanwrote on 12.04.2017:[10.0] "One of best all rounder wrestler that ever step foot in squared circle. Outstanding in ring skills and excellent mic worker. Hopefully he will return to wrestling one day"
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Lariatooowrote on 05.04.2017:[3.0] "Undeniably the hottest thing in years during his prime. I also enjoyed his previous work during the SES storyline and yes, even some of his work in WWECW. However he's a person who believes his own hype and during the end of his tenure (even if he was hurting) he was sloppy and was uninteresting. An important part of WWE during 2011 and a good wrestler throughout his career in ROH and WWE, however he is wildly overrated."
Rating: 3.0
Sentiment: 0.24523809523809526
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Blood Pumpwrote on 30.03.2017:[8.0] "While he is an impeccable talent, I feel Punk never fully reached his height. He came close with his feuds against Joe and Cena but he had the potential to be one of the best not only of the indys but by WWEs standards if only he'd stick it out a few years longer. Punk was always great on the mic, but I could never get over some of his flaws in ring. He was ambitious enough to make a five star classic sure but he was also usually sloppy in his execution and that sloppiness shows even in his more acclaimed bouts. Again he made up for it with ambition and some good ideas but I don't agree with the notion of him being 'The Best'."
Rating: 8.0
Sentiment: 0.33666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: XLVChampionwrote on 03.03.2017:[10.0] "Mein absoluter Lieblingswrestler. Zu seiner aktiven Zeit der beste im Ring und am Mic. Hoffe, dass er eines Tages zurückkehrt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Owenwrote on 02.03.2017:[5.0] "While he was a decent wrestler, his bitter, ungrateful attitude costs him points, in my opinion. He whines that he isn't appreciated by the WWE, so he quits. The man was WWE champion for over a year, headlined wrestlemania twice and was paid millions of dollars. How much more appreciation does he want?"
Rating: 5.0
Sentiment: 0.19166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LordGabrielwrote on 26.02.2017:[3.0] "I liked him when he was in SES but then he become selfish and thought he was the best (in real life) , also very overrated with his mic skills which he said his frustrations, then he walked away cause he wasn't put in the Main Event... like a kid... good luck in UFC boy.. maybe you will win one match..."
Rating: 3.0
Sentiment: 0.39583333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Champlifewrote on 13.02.2017:[10.0] "Der Beste den es gibt, Der beste den es gab, Der beste den es je geben wird ! Würde ihn gerne wieder sehen in der WWE"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: triplexwrote on 27.01.2017:[10.0] "My all time favorite Pro Wrestler, CM Punk is the best wrestler in the world, in and out of the Ring, and i have to say that if anyone tell's the oposite probably is just a hater, because no one done more in ring than this guy!"
Rating: 10.0
Sentiment: 0.7083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Real Raterwrote on 22.01.2017:[10.0] "Ring: Egal wo, der Typ hat einfach im Ring, gerockt egal ob WWE oder in den Indy Ligen. 10/10 (50%) Promos/Schauspieltalent:Für mich mit The Rock der beste allerzeiten, hat sich 2011 einfach unsterblich gemacht. 10/10 (25%) Charisma/Statur/Gimmick:Sein Gimmick war super und Charisma hatte er auch trotzdem nur 8/10 Punkte. (25%) Sind dann insgesamt 9, 5 Punkte für den Straight Edge Superstar, ob er The Best In The World ist, keine Ahnung aber im Ring und Promos halten, gibt es nur ganz wenige die in seiner Liga mitspielen, vielleicht bleibt er der einzigste US Wrestler, dem ich 10 Punkte gebe.  = 10 Punkte"
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Chekerwrote on 06.01.2017:[10.0] "I always thought CM Punk was underrated, only now is he getting the credit he deserves. Punk was an incredible promo and an excellent wrestler, a total package any company would love to have on its upcard. He helped pave the way for guys that would've previously been considered "too small" or "missing the look" to make their way into the WWE, and I think that influence will become even more obvious (if it's not enough already) as the years go by. I miss this guy often."
Rating: 10.0
Sentiment: 0.20757575757575755
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rasslin Ruleswrote on 04.01.2017:[7.0] "Hatte zwar grandiose Matches, jedoch ist er meiner Meinung nach im Ring etwas überbewertet. Oft war die Ausführung einfach zu unsauber. Am Mic ist er bekanntlich ein Gott. Allerdings hat er ein riesiges Ego, was der Grund dafür ist, warum er nicht einer der ganz großen ist. Jetzt kann er sich ja gerne bei der UFC die Kariere komplett ins lächerliche ziehen"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Aj Bagi Ajaxwrote on 03.01.2017:[10.0] "Ich hoffe einfach nur das CM Punk irgendwann mal in die WWE zurückkehrt. Dieser Typ hat einfach die Ausstrahlung, die Mic skills und die nötigen In-ring Kenntnisse, um dauerhaft für Spannung in der WWE zu sorgen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NastyYaffawrote on 01.01.2017:[10.0] "One of my all-time favorites, and a guy who I truly believe is a part of the elite - one of the greatest wrestlers of all-time. He could do it all - fantastic on the mic, charismatic, great babyface worker, tremendous heel worker, fantastic psychology & character work."
Rating: 10.0
Sentiment: 0.5722222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ClaudeSpeedwrote on 07.12.2016:"Was macht ihn besser als Hulk Hogan oder Kevin Nash ? Promos schön und gut, konnten die beiden Beispiele auch grandios und hatten auch tolle Matches. Aber was macht diese Backstage-Bitch so besonders ? Weil er im Live-TV gegen seinen Arbeitgeber shootet ? Die Leute die den Backstage-Politkern der alten Garde schlechte Bewertungen gegeben haben aber Punk 10 Punkte geben sollten mal in sich gehen und sich fragen ob ihre Bewertungen Sinn ergeben."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AtticusFinchwrote on 25.11.2016:[10.0] "Best in the World wasn't just a nickname for Punk, it was the truth. The guy had it all, spanning from his indie days to his final WWE days. He played the cool rebel and he played the arrogant asshole. He played the underdog and the cult leader. On the mic, no one could touch him. He could go toe-to-toe with some of the greats and in some cases, he was better. When it came to wrestler, he was excellent. He toned down a lot of his indie moveset and it's understandable as to why. But he managed to make it work. One thing I feel that rarely gets brought up is how well he was able to express emotion in his facial reactions. Non-verbal speaking is key to acting and when it comes to sports entertainment, there aren't a lot of great actors. It stuns me when I see people call him overrated. He had it all (even if he was skinny-fat). It's a real shame if he truly is finished with wrestling, but never say never."
Rating: 10.0
Sentiment: 0.29962962962962963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Luv all wrestlingwrote on 10.11.2016:[10.0] "Great charisma, presence, and almost always has a great match, CM Punk is a prime example of an average build guy being larger then life using hard work and mad skills."
Rating: 10.0
Sentiment: 0.0888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Squared Circlewrote on 09.11.2016:[1.0] "And now you know why I never liked this guy.  I give him one point for his mic skills.  He had an intensity about him on the mic, but it was a complete oversell.  I never thought for a minute this guy could beat anybody in a straight up fight, not to mention some of the gigantic legends that he is rated above on the site.  Now we know, he can't fight to save his life.  Well, I guess now the rest of you know.  He never had any believability to his character and that just make him straight up annoying.  I see my comment was critiqued.  I thought I was clear, but I'll elaborate.  It was always hard for me to buy in that this character was a tough guy when I felt 2/3's of the area would whip his tail."
Rating: 1.0
Sentiment: -0.06805555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jokiller2wrote on 20.10.2016:[10.0] "A great wrestlers. 5 stars in the ring, 5 stars on the mic. His 434 day reign is my favorite of all time. The storyline agains Cena back in 2011 is my favorite ever, and it was all because of his mic skills. He has everything I want from a wrestler... except retiring at a pretty young age.... Oh and BTW why is there a guy talking about that he can't fight. Bro, that's WWE not UFC -_-"
Rating: 10.0
Sentiment: 0.35833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Chrissiwrote on 07.09.2016:[10.0] "Einer meiner absoluten all time Favs! Zum ersten Mal wurde ich auf ihn aufmerksam in seiner überragenden Fehde mit Jeff Hardy 2009. Ehe 2 Jahre später mit seiner legendären "Shoot-Promo" und dem daraus resultierendem "Summer of Punk" das absolute Highlight folgte. Seit dem kann/konnte ihm niemand mehr in Sachen "Gesamtpaket" das Wasser reichen (wobei einige im aktuellen Roster das Potential dafür haben). Wrestlerisch meistens auf einem sehr hohem Niveau und am Mic ein absoluter Gott. Ich kann mich ein keine einzige schlechte Promo von CM Punk erinnern... er war und ist einfach ein grandioser Talker. Und obwohl er nicht mal diesen so typischen "Look" eines Stars hatte, war er trotzdem ein absoluter Topstar. Es ist sehr schade ihn in der aktuellen Wrestlingwelt nicht mehr bestaunen zu können."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Dr Middywrote on 05.09.2016:[10.0] "One of the guys who actually brought me back to watching wrestling full time. Punk had it all, the ability to tear the house down in a match with his immensely good storytelling abilities, the mic skills to captivate a crowd, and the charisma to tie it all together. When he was on his top game, you could see the passion he had for the business, and the drive he had to be one of the best. The list of matches he had that I love is so long, and it's such a shame that passion will probably never come back. Nevertheless, he has left a hell of a legacy on the business that I hope he at least can be proud of."
Rating: 10.0
Sentiment: 0.1962962962962963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Interceptorwrote on 03.09.2016:[7.0] "Meiner war er nicht. Aber das musste er auch nicht. Was er an Leistung brachte, war sehenswertes Entertainment. Über seinen Abgang kann ich nichts sagen, will ich auch nicht. Nur eines: Manches hat mich an ihm genervt, aber schade fürs Gesamtpaket."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: croatiantwat1950wrote on 22.08.2016:[10.0] "The best thing to hapoen to WWE in PG era. I loved his in-ring psychology, his near legendary promos and many of the feuds. In 2011, he brought so much fans back into wrestling with the pipebomb storyline, myself included. I freaking miss this guy, no matter how much he bashes wrestling. I hope he succeedes in UFC."
Rating: 10.0
Sentiment: 0.4625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: test85wrote on 18.08.2016:[8.0] "CM Punk ist ein guter Worker, aber bei weitem nicht "The Best in the World". Für mich sind und waren u. a. Y2J, HBK, Hart, Hennig & Styles im Ring besser. Aber sowas ist eben bei der Klasse Geschmackssache. Mich stören die vielen Kicks die er immer zeigt. Zwar sind diese nicht so nervig wie das ewige gechope von Flair aber mir sagt dieser Stil eben nicht zu. Seine lange Regentschaft liest sich auf den Papier gut, war aber ab einen gewissen Zeitpunkt nicht mehr gut. (Ich glaub das war nach NoC und man hatte das Gefühl er hätte den Title nur mehr um von Rock beim RR entthront zu werden) Großen Respekt auch das er einfach so die WWE verlassen hat. Aber das meiste was er danach gesagt war Bullsh... und es gab doch einige Aussagen die ich nicht nachvollziehen kann. (Wegen Verletzungen kürzer treten - UFC wird dich sicher weniger mitnehmen. Habe genug Geld gescheffelt - Kann aber keine Krankenhausrechnung bezahlen usw. ) Glaube aber das man sicher wieder einmal in der WWE sehen werden. Aus ähnlichen Gründen wie Flair & Hogan."
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SweetestThing2wrote on 13.08.2016:[10.0] "The best in the world he was and he proved it each and every time he went out and performed in that ring and on that mic. His in ring ability was perfect and had a way to mix technicality and psychology in one nice blend. Sure the guy is an asshole and sure he truly believes that he is the best in the world but dammit if he did not prove it each and every time. CM Punk's mic skills were about as perfect as you can get. Punk spoke with passion, conviction and logic. One of the amazing parts about Punk was the gimmick never came off as a gimmick like Steve Austin before him it felt like an extension of himself. A rebel with a cause, A cause to take down anyone in his path to not only proving he was the best but that he was better then you with his straight edge lifestyle and the discipline really showed. The kick ass kick pads and the cool trunks with the all the different colors and the stars and i especially loved his Randy Savage and Bret Hart tribute attires which shows what kind of wrestling fan he is and shows he still can be humble even when everyone else around him thinks he is an egotistical jerk with no care in the world for anyone but himself. CM Punk was special because he lit a fire under World Wrestling Entertainments ass when they needed it the most and kept me around when i was so close to tuning out of wrestling forever. His pipe bombs were some of the best promos ever cut and his feuds with the likes of Jeff Hardy and John Cena will forever be etched in wrestling history. This was a man that gave bullshit and never took it. Played by his own rules when everyone else were followers. The straight edge savior also managed to ask WWE the real questions. The questions of what if we tried, what if we were daring. CM Punk to me is one of the most ballsy and honest wrestlers that ever graced a pro wrestling ring and even if Philip Brooks himself pisses me off sometimes i can't help but remember that when he said he was the best in the world he meant it."
Rating: 10.0
Sentiment: 0.5232709750566893
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gad Chablewrote on 11.08.2016:[10.0] "Die Wertung bleibt gleich, aber ich möchte das Ganze mal etwas allgemeiner - völlig unabhängig von der damaligen Kontroverse beschreiben: Punk ist für mich DAS perfekte Wrestling-Komplettpaket. Es gibt zwar einige begnadete Wrestler, die sich mit ihm im Ring messen können, aber was Charisma angeht, gibt es kaum jemanden auf seinem Level. Der Typ ist echt sowas wie ein Demagoge und weiß Wörter genauso wie sein langjähriger Mentor Paul Heyman auf solch eine starke und prägnante Weise einzusetzen, dass er gewissen Angles und Segmenten immer wieder dieses "GANZ BESONDERS"-Siegel aufdrücken konnte. Dieser Mann hat etwas ganz Besonderes, das man im Wrestling so vielleicht nie wieder sehen wird. Abseits davon hat er einen absoluten Star-Appeal und ist in jeder Hinsicht einfach ein "Character", wie man so schön sagt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Brandon Pichawrote on 09.08.2016:[10.0] "Have always been a fan of CM Punk.  Always found him very entertaining and energetic.  The only wrestler like him in WWE today is probably Seth freakin' Rollins.  WWE will never have another CM Punk."
Rating: 10.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Devitciiuwrote on 30.07.2016:[10.0] "I remember the first time I saw the GTS. Wow. Punk was the man but I was afraid the WWE and Vince would destroy him. In the end, I guess they did but just in a different way than most of the other wrestlers."
Rating: 10.0
Sentiment: -0.010714285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kick-Out-At-Twowrote on 04.07.2016:[4.0] "Für mich einer der überbewertesten Wrestler aller Zeiten. Der beste der Welt ? In was ?  Am Mikro ? Da war er wirklich obere Liga , aber besser wie Jericho , Heyman , Stone Cold und Co. ? Im Leben nicht.  Im Ring ?  Man muss Ihm eingestehen das er aus vielen Sparten gute Sachen konnte , aber nach wirklichem Einschlag sah das nie aus. Sein Finale oft äußerst Unsauber und bei schweren Jungs am Rande seine Kraft. Mimik ebenfalls nicht mein Fall. Charakterlich wohl untere Schublade in seiner Gehässigkeit zu Kollegen.  Anstatt seiner zum Ende hin miesen Statur mal wieder ein Fitnessstudio zu gönnen konnte er wohl den Hals nicht vollbekommen ("Ich dachte, es würde MEIN Jahr werden! ) und das nach seiner Rekord-Titelhaltung.  Kein Verlust für die WWE."
Rating: 4.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BastiTakes0ver3Dwrote on 27.06.2016:[10.0] "@Shango Haha ja genau kla er macht alle in UFC platt und Lesnar sowieso hahaha ich lach mich schlapp danke das du mich zum lachen gebracht hast."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SE Finestwrote on 09.06.2016:[10.0] "2016 and people still chant his name. Only Triple H fanboy hate this guy . Great in the ring, fantastic on the mic, totally should return and then main event Wrestlemania."
Rating: 10.0
Sentiment: 0.09444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Carrot Junkiewrote on 06.06.2016:[8.0] "Though he was tremendously overhyped and occasionally sloppy in the ring, there was a power and verve behind everything Punk did that is sorely lacking in wrestling today.  I thought his fourth-wall breaking character went too far after his feud with Cena (on-screen kayfabe breaking is proven to be bad for the business), but he was an electrifying speaker with great ring psychology.  His ability to sell in particular is something I miss."
Rating: 8.0
Sentiment: -0.016666666666666653
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ErycK24wrote on 05.06.2016:[10.0] "Cm Punk is the best wrestler of the 2010's its a shame that Vince's dumb ass would push guys like Roman and Batista over Punk. WWE has lost its edge since losing Punk."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Grisham1986wrote on 04.06.2016:[4.0] "Truthfully, I never found out what was the big deal with Punk, mostly in-ring. He portrayed his gigantic ego on screen and had the verbal skills, and I wholeheartedly agree he had the skills to pull it off. But apparently, a lot of folks are really convinced that he was the best ever in ring just because his gimmick demanded he told everyone so. Now, I admit that even (or should I say mostly? ) in ROH, Punk was a reallygood storyteller, a good storyteller who however didn't really excel in the more concrete aspects of being a pro-wrestler. Punk was no powerhouse, no technician, no high-flyer. And I wouldn't even say he was a brawler, clearly, but rather some sort of mild all-rounder. Sloppy executions and very apparent move-calling have always made his matches an on and off thing as far as quality is concerned, and Punk was rather capable to cover it by working the crowd in a good way. I find his series with Bryan a tad overrated as well, and his recent speeches about how he labeled everything he did before as "fake" and how MMA is the "real thing" kind of unpleasant."
Rating: 4.0
Sentiment: 0.18615942028985513
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ApexOfEvolutionwrote on 31.05.2016:[10.0] "Habe ihn 2014 "nur" 9 Punkte gegeben, da mir sein Finisher nicht gefiel. Das muss ich nun revidieren, da das Gesamtkunstwerk CM Punk mit etwas Abstand betrachtet noch genialer wirkt. Seine Promos aus 2011 gehören zu den besten überhaupt. Dazu technisch nahezu perfekt und spielte seine Gimmicks brilliant, wobei er mir als unangepasster Face immer besser gefiel. Und ja, man kann ihn für seinen plötzlichen Rücktritt 2014 kritisieren, da er die fehlende Anerkennung doch auf einem sehr hohen Niveau beklagt hat. Immerhin war er der WWE Champion mit der längsten Regentschaft der letzten Jahre. Aber passt das alles nicht auch irgendwie zur Person Phil Brooks, die wohl auch im echten Leben ein unangepasster Typ ist? Vielleicht ist er auch ein infantiler, narzisstischer Egomane, aber das macht ihn und das Gimmick CM Punk nur noch interessanter und glaubwürdiger. Ich hoffe, ihn in ein paar Jahren nochmal in einem Wrestling-Ring zu sehen."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JordanACEwrote on 31.05.2016:[10.0] "is there anything left to say about this guy?  Mic Skills - 10. In Ring Skills - 10. Story Telling - 10. Punk was the complete package.  Always was and forever will be one of my favorites."
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dkexwrote on 27.05.2016:[9.0] "Also ich muss sagen seine Zeit bei der WWE hat mir sehr gut gefallen, er wusste sowohl als Heel und auch als Face zu überzeugen, gerade seine Mic Skills stechen doch ziemlich hervor. Vom Charisma her ist er sicherlich einer der größten der letzten Jahre. Auch im Ring konnte er mich zumeist sehr gut unterhalten, zugegeben, den GTS fand ich nie besonders gut. Abgesehen davon hatte er sicherlich bessere In-Ring-Fähigkeiten als einige andere die ganz oben stehen/standen. Privat mag man von ihm halten was man möchte (sein Gemoser nach seinem Ende bei der WWE war schon etwas unnötig) aber ich möchte CM Punk hier als Wrestler bewerten, und daher fällt das nicht in meine Wertung.  Sein Gimmick fand ich klasse und konnte es eigentlich immer überzeugend darstellen.  Einerseits ist es wirklich schade dass er nicht mehr bei der WWE ist, auf der anderen Seite muss man zumindest nicht mit ansehen wie er im laufe der Jahre abbauen würde (bei dem ein oder Anderem leider immer wieder zu beobachten)"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DropTheSoapwrote on 25.05.2016:[5.0] "I have always found him overrated and I'll probably always will... No worthy catchphrases, average physique, and just decent on the ring, with poor execution. Moreover, I'll always remember how he talked way too much in a lot of his big matches (see Rock vs. Punk, for one, or some of his matches against Cena) when he had the job to carry the opponent. His luck was one and one only: Punk was a huge wrestling fan who happened to be a fan of the industry (and more than anything of himself), hence he could play the part of the man ostracized by the system pretty believably in the crowd's eyes."
Rating: 5.0
Sentiment: 0.11818181818181817
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jobbswrote on 28.04.2016:[10.0] "One of my favorite wrestlers ever. He just brought it every time he stepped in the ring and he produced so many classics as well and has made a huge impact in wrestling. His matches vs Hero, Bryan, Joe, Cena, & his match with Lesnar at SS 2013.  are some of the best ever and ones I highly recommend as well. He could do it all in the ring and adapted to the style of the opponent he was wrestling that particular night. I honestly couldn't hate this guy even if I tried as well. Just one of the best ever."
Rating: 10.0
Sentiment: 0.39185185185185184
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Zedwrote on 13.03.2016:[7.0] "Keine Ahnung was alle an ihm fanden, ich famd ihn zu Indy Zeiten schon hart überbewertet. Seine Mic Sills waren ja ok, jedoch spulte er diese Nummer immer wieder ab, bis man es nicht mehr hören konnte. Im Ring war er zumindest solide, in den Indys hat er mir etwas besser gefallen. Fand die Finisher immer lahm, sowohl den GTS als auch die Anaconda Vise. Und sein Abgang spiegelt das von ihm was ich so Privat auch von ihm gehört habe, sehr unprofessionell. Dennoch ein ordentlicher Athlet gewesen mit ein paar netten Phasen und einer großen Fanbase, jedoch nie meinen Geschmack getroffen."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: James Dean Wrestlingwrote on 09.03.2016:[9.0] "I'd be lying if I said I didnt miss this guy. CM Punk was a treasure. I had a small taste for him when he was coming up WWE wise (06-10), but like others, once 2011 hit, he hit his stride. His work in the indys was well enough. As most of our favorites are over the years.  But that 2011-2013 period was a good time. Sure there were a lot of things internally that went wrong but CM Punk was quite the talent. When he could, he could deliver great promos. When he could, he would do a good deal in the ring. Miss him but happy for his future. I hope to see him make one more walk down that ramp."
Rating: 9.0
Sentiment: 0.3067460317460317
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheLoudMouthwrote on 17.02.2016:[10.0] "Eines der größten Komplettpakete im gesamten Wrestling-Business. Überragend im Ring, überragend am Mic, überragendes Maß an Charisma, überragendes Gimmick. Völlig unverständlich, dass er in der WWE nicht dauerhaft nach seinem Können eingesetzt wurde. Viel Erfolg im MMA, Mister Brooks!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MAGICIANwrote on 16.02.2016:[10.0] "Erstmal zum Allgemeinen: In RoH super, in der WWE göttlich. CM Punk weiß genau, wie man Spotlight und Aufmerksamkeit ziehen kann. Er ist im Ring einer der besten, die es jemals gab. Am Mikrofon ist er ohne Zweifel DER beste Superstar, den es je gab. Ich habe nie jemanden gesehen, der so eine unfassbare Ausstrahlung in seiner Stimme hat und der so unfassbar gute Promos abhält wie CM Punk. Das Charisma, das er an den Tag legt, ist einfach unfassbar. CM Punk hat in seiner Prime Time in der WWE mal eben die 3 besten Promos abgehalten, die dort jemals ausgestrahlt wurden, er hat 4*+ Matches am laufenden Band gewrestled, hat ein Moveset, mit denen man ein ganzes Roster füllen kann, eine Ausstrahlung wie kein Zweiter... Er hat die WWE ab 2011 praktisch alleine gecarried... Einfach ein großartiger Worker, insgesamt einer der 3 besten Wrestling Superstars, die es jemals gab. Schade, dass ich hier nicht mehr als 10 Punkte vergeben kann."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gherdezwrote on 03.02.2016:[10.0] "Just the best wrestler of the last decade. A complete one, also got kick-ass mic skills, always amazingly portrayed his gimmick no matter what the situation was. A top face or a top heel, it's the same for him, even tho I feel he gives the best of himself while showing off as heel. Best in the world."
Rating: 10.0
Sentiment: 0.5222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: callousedwrote on 28.01.2016:[10.0] "One of the best workers of the last decade. Great promo skills. A true legend if he wouldn't have walked out."
Rating: 10.0
Sentiment: 0.5375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Aceonwrote on 23.01.2016:[10.0] "Top Gesamtpaket, hatte alles was ein Maineventer braucht. Wurde dann auch endlich mal ordentlich von WWE eingesetzt auch wenn die Rückkehr von The Rock ihn direkt wieder eine Reihe nach hinten schob.  Im Endeffekt einer der besten Worker aller Zeiten. Dass er so "früh" zurückgetreten ist, lässt darauf schließen, dass er auch etwas im Kopf hat"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: awesomepunkwrote on 13.01.2016:[10.0] "Einer der besten Wrestler den die WWE in den letzen Jahren gesehen hat. Schon zu seiner Zeit bei der ECW hat er mir in seinen Matches sehr gut gefallen. Die Matches wurden im laufe seiner Karriere immer besser und auch am Mic hat er sich in der Zeit stark verbessert. Charisma hat er schon immer gehabt."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JeMewrote on 11.01.2016:[9.0] "Es gibt wirklich Leute hier, für die sollte es keine Möglichkeit geben zu bewerten. *hust* Shango *hust* Auch bezogen auf deine sonstingen Bewertungen (Sid 10 Punkte? :D)  CM Punk gehört zu den talentiertesten Wrestlern des neuen Jahrtausends und hat sowohl am Mic wie auch im Ring Klassiker abgeliefert. Ein Pro-Wrestler der mit fast jedem Gegner ein gutes Match worken konnte, und der fast gänzlich auf alberne Catchphrases verzichtete. Selbst einem The Rock konnte er am Mic die Grenzen aufzeigen."
Rating: 9.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Harlequinwrote on 11.01.2016:[10.0] "My personal favorite wrestler of all time. He shattered the barriers of kayfabe culminating into me becoming the mark I am today. He SINGLE-HANDEDLY turned around the WWE at a bleak time, something that John Cena is unfortunately unable to do, but I guess WWE just can't see that. An allrounder that is capable of telling a story in the ring, his previous work of course outshines his last days in the WWE however. His charisma is all you could ever ask for in a wrestler. 100% wholesome and believable, with an absolute sharpened steel tongue capable of putting the industry's greats to shame. Thank you, CM Punk."
Rating: 10.0
Sentiment: 0.034848484848484844
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SteveTheBeastwrote on 27.12.2015:[10.0] "Punk ist einfach Best in the World. Schade, dass er seine Wrestling-Karriere niedergelegt hat, aber so freue ich mich noch mehr auf seine ersten UFC Fights :)"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: roy-harperwrote on 12.11.2015:[10.0] "Best in the World! Nicht nur zur WWE-Zeit der Beste am Mic, sondern sein ROH-Run unvergessen und auf höchstem Niveau!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RooneyDXwrote on 19.10.2015:[10.0] "Einer der besten Techniker. Ich weiß nicht ob er wirklich in der wwe fehlt, denn sie ist voll mit Talenten, trotzdem Cm Punk war einer der besten, ob er je zurückkommt. Neu."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sascha Legendkillerwrote on 16.10.2015:[8.0] "Cm Punk ist meinen Augen auf eine Stufe Ric Flair gut, aber nicht Weltklasse. Er ist nicht der Beste der Welt kann das, aber gerne (falls er je zurück kommt) weiterhin behaupten. Der alte Cm Punk gefiel mir besser."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cojotewrote on 13.10.2015:[10.0] "The best all around wrestler of his generation. The Best in the World. His matches versus Samoa Joe are incredibles. His match versus John Cena is great, the best match in WWE for a decade. A man that show MMA skills in ever match. A great ring story-teller, one of the best ever. One of my five favorite wrestlers ever with Bret Hart, Sting, Eddie Guerrero and Bryan Danielson: a dream team, that never will happen, to Survivor Series. A great entertainment and wrestler. Thanks for all this years and for your extraordinary career, CM Punk."
Rating: 10.0
Sentiment: 0.7433333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Six Three Timeswrote on 13.10.2015:[10.0] "Punk is, by a wide margin, the most skilled all-around performer since The Rock. Equally capable of putting together a 5 star match and a pitch perfect promo, he had no weaknesses, unless you count an inability to put up with criminally negligent and stubborn management as a weakness. His feud with Cena that produced the legendary pipebomb, his match with the Undertaker, his matches with Samoa Joe, all go to illustrate what a supremely unique talent this man was."
Rating: 10.0
Sentiment: 0.3638888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ts14wrote on 22.09.2015:[10.0] "Hab CM Punk leider nie im TV gesehen da ich zu der Zeit eine WWE bzw. Wrestling Pause eingelegt hatte. Jedoch muss ich sagen was ich auf Youtube gesehen habe hat mich echt begeistert. Guter könner, der leider nicht sein ganzes können in der WWE zeigen durfte aber der zweifelslos zu den besten seiner Zunft gehört. Und seine Promos waren durchweg einfach super. Sein Shoot gegen die WWE oder die Promo mit Triple H im Ring, hat mir einfach gefallen. Deswegen 10 Punkte für Punk."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hardcorewrote on 14.09.2015:[10.0] "The best wrestler of the so-called Universe era. With good technical skills, great mic skills and oozing charisma he was the wrestler to watch during his WWE period. Its a shame his career ended the way it did cuz he was really a guy you loved and hated at the same time"
Rating: 10.0
Sentiment: 0.31250000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jacobphillipswrote on 13.09.2015:[9.0] "one of the best wrestlers of the modern era who fully deserved his 434 day title reign. one of the best on the mic in wwe history. his promo's were truly engrossing and never afraid to speak his mind. his in ring skills were good and nearly always put on good matches"
Rating: 9.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Habeldiwrote on 02.09.2015:[10.0] "Für mich einer der ganz großen. Egal ob im Ring oder am Mikrofon, Punk wusste immer, wie er Reaktionen vom Publikum bekommen konnte, Positiv wie Negativ. Egal wie er von der WWE eingesetzt wurde, ob als Anführer einer Straight-Edge-Sekte oder als Anti-Helden und Sprachrohr der unterdrückten Masse, es wirkte immer so, als würde das, was er in den interviews, Segments und Promos abliefert seiner wirklichen Meinung entsprechen und keine Rolle oder Skript, welcher ihm diese Vorschreibt. Dieses Können, sich in die Charakterzüge seines Gimmicks so hineinzuversetzen und es so natürlich rüber zu bringen gehört meiner Meinung nach zum ganz großen Kino und sichert Punk in Kombination mit seinen In-Ring Fähigkeiten einen Platz unter den Besten der Besten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Strikerwrote on 25.08.2015:[0.0] "10 Punkte für seine Fähigkeiten und sein Charisma. Seine Story Lines hatten immer etwas besonderes und er hat es immer wieder geschafft mich zu beeindrucken. - 10 Punkte dafür, dass er uns angelogen hat. Von wegen er ist körperlich in der Lage nicht mehr weiterzumachen. Sein persönlicher Krieg gegen die WWE kotzt mich auch langsam an. OK es gibt sicher Probleme zwischen den Parteien und die WWE ist sicher auch nicht fehlerlos, ganz im Gegenteil. Er soll mal nicht so tun als hätte ihn die WWE wie den letzten Dreck behandelt. Er war für sehr lange Zeit Champ, hatte super Matches gegen den Undertaker und eine Klasse Fehde gegen Cena. Das er nicht Dicke mit seinem Arbeitgeber ist sahen wir auch in den Story Lines, das ist uns allen bewusst. Irgendwann muss man auch anderen Talenten Vorrang geben und ein bisschen im Hintergrund abtauchen. Ich würde mich freuen wenn er sich entscheiden würde noch mal zurückzukommen, was nur zu 0, 001% wahrscheinlich wäre, aber zurzeit fehlt er nicht wirklich. Es gibt einige die sehr angepisst über ihn sind und ich bin einer davon."
Rating: 0.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Josh76wrote on 20.08.2015:[7.0] "CM Punk is a good wrestler and has some pretty good promos but overall I didn't like his character. He goes from a Straight Edge Savior and then to the Rock hating cheap wrestler that needs Paul Heymand there to help. Than he walks away from it all to go to UFC? ! Not the angle I would go."
Rating: 7.0
Sentiment: 0.3916666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ShooterMcShootwrote on 10.08.2015:[10.0] "Was one of my favorite guys. Honestly, it was too bad how his career ended. A real shame. I'm not a UFC fan so I doubt I'll watch his fights, but I wish him well."
Rating: 10.0
Sentiment: 0.15000000000000008
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: beaverandbuttholewrote on 06.08.2015:[10.0] "While the CM Punk circlejerk that still exists is very annoying, I can see why people love Punk. Sadly, I got into wrestling basically as Punk was about to leave. However, to put it simply, Punk could be the greatest all-around wrestler ever. Outstanding on the mic and in the ring."
Rating: 10.0
Sentiment: 0.09999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hunter Dunnwrote on 17.07.2015:[10.0] "Any one giving him under a 5 is sour. He was an incredible wrestler with a few 5 star matches under his belt, and many others that could be argued as deserving it. Very good on the mic and could manipulate any fan. Very good in the ring, could put on a great match with anyone. Both an incredible heel and babyface. He was the only person that was able to make an impact the way he did in the PG era, he started a revolution that the company dropped the ball on. ROH or WWE, he was the best in the company while he was there"
Rating: 10.0
Sentiment: 0.5558333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: hankthetankwrote on 02.07.2015:[10.0] "CM Punk is an incredible talent who had the ability to make you love or hate him. His promos as a person leaving WWE and as he leader of the SES were great.  His wrestling was also very good and he was willing to stand up to Vince when he wanted out.  I hope he returns to Wrestling one day."
Rating: 10.0
Sentiment: 0.4266666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rikishiwrote on 22.06.2015:[10.0] "Das komplette Paket. Am Mikro der Beste, den es gibt, im Ring gehört er definitiv auch zu den Besten und Charisma besitzt CM Punk auch einiges. Da kann es nur die volle Punktzahl geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kevin434wrote on 14.06.2015:[10.0] "BEST IN THE WORLD, so nannte er sich... ZURECHT! Dieser Mann hatte alles, Charisma, Ausstrahlung, Im ring ein mega Worker, und sein einmaliges Mic Work. Dieser Mann konnte mit jedem ein gutes Match worken, sein storytelling ist mega gut, und er war der mann der endlich mal die die Eier dazu hatte und was gesagt hat was in der WWE alles schief läuft, das er aufgehört hat verstehe ich, schaut ihn doch mal an, es geht ihm so viel besser, und wenn es ihm besser dadurch geht dann muss man das akzeptieren, danke für alles Punk! #BITW"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MrDXW1213wrote on 13.06.2015:[10.0] "CM Punk is one of the few guys in recent memory to really draw me in with his promos. He was a wizard with the microphone and could make you love him or hate his guts all in one promo. His technical ability, while not the best, or better than Danielson or Benoit more specifically, he is great. He has two 5 star single matches to show for it. His run on the indies was very memorable. His extremely long matches with Hero, Joe, and other were just amazing. His first Summer of Punk was great. His first few years in the company was ok. But after he turned Heel against Hardy and had that fued and became a preacher for straight edge, he was great. The Nexus thing sucked, Once the Summer of Punk II happened, he was just money from there on. Bottom-Line, I think Punk is a once in a lifetime talent. One whose wrestling career ended to early, but I do have to agree with him when when he says he's the best.... well one of the best in wrestling history."
Rating: 10.0
Sentiment: 0.3281428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ezewrote on 02.06.2015:[7.0] "Ich respektiere den Wrestler CM Punk, vielleicht könnte ich mich sogar als Fan seiner Arbeit einordnen.  Er war ein frischer Wind in einer Generation ohne die klassische Star Power, weshalb der Titel " The Best in the world" auch viel zu hoch gegriffen ist.  Seine wrestlerischen Fähigkeiten möchte ich ihm auch gar nicht absprechen, allerdings stößt mir immer der Gedanke seines Abgangs zwischen die Anflüge von Respekt und Ehrfurcht.  2 Begriffe die dem Mann Phil Brooks leider unbekannt sein dürften.  Mit seinem Abgang spuckt er seinen lang jährigen Fans inŽs Gesicht und nutzt jede Gelegenheit finanzielle Vorteile aus diesem zu ziehen.  Grundsätzlich kein falscher Ansatz, allerdings ist es mir suspekt dass er sich bei seiner Bezahlung und den Storylines der Vergangenhet immernoch beschwert hat."
Rating: 7.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Szene Nordwrote on 01.06.2015:[10.0] "Einer meiner Alltime-Favourites. Tooles Charisma, super Mic-Work, In-Ring Skills und Psychologie WELTKLASSE... schade, dass er vom Wrestling zurückgetreten ist."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Triple Hwrote on 13.05.2015:[10.0] "Man kann über CM Punk streiten. Er scheint privat kein einfacher Mensch zu sein. Ich fand sein "Voice of the Voiceless" Gimmik nicht schlecht. Erst als er mit Paul Heymann zusammen gearbeitet hat gings für ihn in der WWE irgendwie bergab. Das er aber nach dem Ausscheiden aus der WWE dann noch weiter stänkern musste halte auch ich für überflüssig. Trotzdem kann ich dafür aus sportlicher Hinsicht keinen Punkt abziehen, denn als Wrestler ist Punk einer der Besten der letzten Jahre, den die WWE gesehen hat. Und auch wenn sich Cena Fans jetzt angegriffen fühlen, er hatte recht mit seiner Aussage, das er nur deswegen schon so lange der Posterboy der WWE ist, weil er Vince besser in den Allerwertesten kriechen kann. Ich hoffe sehr, das er sich eines Tages wieder mit der Promotion versöhnen wird, was aber sehr schwierig sein wird, wenn Paul Michael Levesque weiterhin CEO bleibt, denn ich glaube das nur der Senior CEO in eines Tages wieder in die Arme schliesen könnte, da er wohl doch eingesehen hat, das mit Punk auch Fehler seitens der WWE gemacht worden sind."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: OmegamonX1229wrote on 29.04.2015:[10.0] "Truly among the best of the best. Great technical skill, excellent on the mic, with a charismatic if not controversial personality. His outspokenness and personal drive and ambition as a performer rightly establishes him as among the all-time greats. It is a shame and a travesty that WWE killed his passion for wrestling, and did not utilize him to his maximum potential."
Rating: 10.0
Sentiment: 0.37370129870129865
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: thenoah1wrote on 12.04.2015:[8.0] "One of the best promo guys I've seen, and his in-ring capabilities are even greater. I'll admit unfamiliarity with his indie career (though I've long championed Punk/Joe II to be the best American match ever performed (or at least in the top two)), but his WWE days show him to be an absolutely awesome technician, making classics with the likes of Cena, Lesnar and Bryan, among so many others, short though his run was."
Rating: 8.0
Sentiment: 0.3772727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GTS Punkwrote on 14.03.2015:[10.0] "Punk wird immer einer der Besten des Wrestlingsgeschäfts bleiben. Bei ihm stimmt einfach das Gesamtpaket. Er hat den unbändigen Wilen und den Ehrgeiz etwas zu erreichen und zu bekommen was er haben will. Punk ist am Mikrofon mit Heyman, Rock, Jericho und Triple H in einem Atemzug zu erwähnen und im Ring technisch brilliant. Er kann einfach Geschichten erzählen. Was Punk aber besonders erfolgreich gemacht hat, waren seine vielen vielen Facetten. Als kleiner Rebell 2007 angefangen, der die Fans unterhalten will hat er sich 2009 zu einem unsympathischen, ekelhaften und großartigen Heel als Heilsbringer der SES weiterentwickelt. Danach als New Nexus sektenähnlichen Anführer hat er den Weg nach oben ins Main Event anforciert. 2011 mit der großen Storyline mit Cena, HHH und McMahon und dem Summer of Punk- hach das war Balsam für die ach so geschundene Wrestlingseele. Dann wieder als Heel- pardon bester Heel aller Zeiten unterwegs. Lange Rede, kurzer Sinn. Alles was Punk anfässt wird zu Gold. Er fehlt der WWE und wird ihr immer mehr fehlen, so ein wahnsinnig brillianter Performer läuft nicht alle Tage rum."
Rating: 10.0
Sentiment: 0.40101010101010104
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Blade Bourdeauxwrote on 08.03.2015:[8.0] "Ich denke schon, dass er seinen Weg machen wird. Das was ich bisher von ihm gesehen habe, ist in jedem Fall vielversprechend. Aber, den Beweis ganz großer WWE-Klasse muss er noch antreten. Von der reinen Statur her, tritt er in Konkurrenz zum HBK. Das ist zwar eine hohe Hürde, doch wenn ich ihn mit 8 oder mehr Punkten bewerte, muss er genau da für mich hinkommen. Wird in jedem Fall spannend.  Update 2011: Ein Punkt rauf, er ist im Ring noch nie in Zweifel gewesen aber als böses Heelmind ist er fast Gold wert. Sein hinterhältiges Gimmick vereint für mich den Manager der alten Tage (Heenan) mit dem gemanagten Work wie Flair. Update 2015: Ein verbitterter Typ mit maßloser Selbstüberschätzung bleibt am Ende übrig. Für den Abgang der in 1 Liga mit dem Warrior oder anderen Quittern fällt "nur" noch 8 Punkte"
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: pfuschiwrote on 07.03.2015:[8.0] "Punk was one of the best in modern wwe days, very sad that all turned out as it has.  maybe he could have been a great one."
Rating: 8.0
Sentiment: 0.3375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mandzukic9wrote on 27.02.2015:[10.0] "Er mag ja seine Ecken und Kanten haben, aber er ist einfach ein einmaliger Charakter in der Wrestling-Welt. Bin mir außerdem sicher, dass seine Karriere noch lange nicht zuende ist.  Sein "best in the world"-Gimmick ist einfach unglaublich cool. Am Mic ist er ohnehin einer der Besten und im Ring kann er auch mit den größten Gurken überhaupt gute Matches aus dem Hut zaubern."
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ProGraps2018wrote on 17.02.2015:[9.0] "There isn't much I can say about Punk that hasn't been said already. He was a great worker, and one of the more entertaining people to watch every week, whether a heel or face. Though a lot of his WWE stuff was rehashed from his time on the indies, I'm ok with that because it worked."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mantafahrerwrote on 29.01.2015:[10.0] "Hahaha, CM Punk hat keine Ausstrahlung und ist schlechter als Cena? Ich kann mir nichtmal ein Paralleluniversum vorstellen, wo das möglich wäre, absoluter Nonsens, persönliche Meinung hin oder her. Kann Punk überhaupt nicht ausstehen, finde er ist ein egoistisches Schwein bis zum Abwinken, aber ich muss ihn als Wrestler bewerten und da kann man in Anbetracht des Charisma, der Skills im Ring und am Mikro sowie den Einfluss auf die Wrestling-Welt nicht weniger als die Höchstpunktzahl vergeben."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Akeldemawrote on 29.12.2014:[10.0] "Einer der besten Worker aller Zeiten. Bereits zu ROH-Zeiten absolut klasse, aber erst in der WWE wurde er zur Legende. Top Mic-Skills (einer der Besten überhaupt), tolle In-Ring Fähigkeiten, war involviert in großartigen Fehden (z. B. John Cena 2011) und hatte im Gegensatz zu vielen anderen Kollegen unglaubliches Charisma. Weniger als 10 Punkte kann und will ich nicht vergeben."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ggultra2764wrote on 25.12.2014:[10.0] "The complete package of an excellent pro wrestler. He had a varied moveset, was one of the best mic workers in recent years and could work well as both a face and heel. A shame the WWE was rather clueless at points with how to effectively utilize the talents he offered up."
Rating: 10.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: tobimexicanwrote on 25.12.2014:[3.0] "Promos sind etwas was er kann. Und ja er besitzt eine Gute Technik. Aber ich kann diesen Jammerlappen nicht ab. Er Erinnert mich an einen Talentierten Ultimate Warrior, bei ihm hab ich das gefühl das das Best of the World geschreie ihn zu kopf gestiegen ist. Würde mich nicht wundern wenn er bald seinen realen Namen auch bald in Punk ändert."
Rating: 3.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tzarwrote on 21.12.2014:[10.0] "The absolute complete package as a wrestler, a man of a strong personality in real life.  One of the few best."
Rating: 10.0
Sentiment: 0.2888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Heel MaSchwrote on 16.12.2014:[10.0] "Für mich DER Wrestling Star der letzten zehn Jahre. Zu Beginn seiner WWE Karriere noch ein farbloses Babyface, dass von seinen guten Matches und seiner Reputation die er sich als "King of Indies" über Jahre vorallem durch seine Auftritte bei ROH und IWA-MS erarbeitet hatte lebte. Nach seinem ersten Heel Turn konnte er seine tolle Ausstrahlung und vorallem sein weltklasse Mic-Work auch endlich auf der großen Bühne präsentieren. Nach seiner legendären Pipebomb Promo und dem Summer of Punk 2011 stieg er dann in Sphären auf in denen ihn die Internetfans schon seit Jahren gesehen hatten. Das trotz des historisch langen Titelruns nicht der verdiente Wrestlemania Mainevent rausgesprungen ist meiner Meinung nach ziemlich schade."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NightShadowWarriorwrote on 12.12.2014:[10.0] "Super Wrestler Mic Work TOP aber er muss jetzt darunter leiden das "Dwayne" zurück kommt und seine Filme vermarktet"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Eagle Whiskeywrote on 02.12.2014:[8.0] "Für mich als Powerhouse Fan ist Punk etwas zu mickrig. Dennoch stellt er natürlich eines der besten Gesamtpakete im Wrestling dar. Leider gefiel mir die Rollen die er in der WWE spielen musste fast nie!"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Muyo90wrote on 23.11.2014:[9.0] "Ich muss zugeben, dass ich lange Zeit kein wirklicher Freund von CM Punk gewesen bin. Das lag keineswegs an seinen Ring-Skills. Aber irgendwie gefiel mir sein Gimmick überhaupt nicht. Das änderte sich dann als Leader der New Nexus: Ab dort an hab ich ihn gefeiert, da er dort reihenweise Top Promos abgeliefert hat. Seine Matches waren stets auf hohem Niveau, sodass man mit Fug und Recht behaupten kann; CM Punk war einer der besten seines Faches. Leider hat er viel zu früh aufgehört.  10 Punkte gäbe es für ein WWE Comeback ;)"
Rating: 9.0
Sentiment: 0.29545454545454547
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Arrow-Squadwrote on 03.11.2014:[6.0] "Konnte mich nie wirklich packen. Er war sehr gut am Mic und hat seinen eigenen Look, aber im Ring fand ich ihn immer sehr langweilig."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Geronimowrote on 02.11.2014:[6.0] "CM Punk ist ein sehr guter Wrestler, keine Frage. Aber was er Privat abzieht ist ja wohl unter allerster Sau ! Er verklagt die WWE, nur weil er im neuen WWE 2k15 ist ? Das ist doch einfach lächerlich. Der Mann hat genug Geld und es ist sogar eigene Promo für ihn und er verklagt die WWE ?   Lächerlich !   Wrestlerstil: 9 Punkte.  Privat: 0 Punkte !  Insgesamt: 6 Punkte."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Viper99wrote on 29.10.2014:[10.0] "Er ist einfach der Best in the World! Er ist genial am Mic, erstklassig im Ring und einer der sich 24/7 lang den Ar*** für die WWE aufreißt. Er wird im moment zwar als Mädchen dargestellt das nur rumheult, ABER er hat auch guten Grund rumzuheulen. Er wurde einfach seit Jahren ignoriert. Er musste seine 434 Tage als Champion an The Rock verschenken. Er stand noch NIE im Main Event bei Wrestlemania, aber The Miz darf rein(Miz ist warlich kein schlechter aber schlecht im vergleich zu Punk). Really WWE Really.  Trotzdem alles in allem ist er der beste Worker in der WWE und meiner Meinung nach neben Cena das Face der WWE"
Rating: 10.0
Sentiment: 0.39166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JasonSummerswrote on 01.10.2014:[10.0] "He is best in the world he has great moves because of wwe he left wrestling what a shame for wwe they never learned how to use a wrestler"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Y2J316wrote on 28.09.2014:[10.0] "Kann dem Bodenwischer nur 10 Pkt. geben. Er brachte viel frischen Wind in die WWE zurück. Mochte seine Matches und seine Mic skills waren auch super. Schade das er die WWE verlassen hat. Hoffe das er eines tages nochmal zurück kommt."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: EvilPriestwrote on 17.09.2014:[4.0] "Not very fast nor agile, bad high flyer but decent technical wrestler with good promos. He acted like a little bitch with his departure, WWE doesn't need this guy. He doesn't deserve the hype he's got, there are hundreds of better wrestler than him, in PWG he would look ridiculous right now..."
Rating: 4.0
Sentiment: 0.09223859473859473
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 8BitLegendwrote on 07.09.2014:[6.0] "War als WWE Wrestler körperlich bereits auf dem absteigenden Ast, machte dies aber durch seinen smarten und kontroversen Charakter gut und war dennoch in der Lage das ein oder andere gute Match zu zeigen. Leider besteht ein Teil der Kontroverse auch daraus, dass Punk auch real wenig umgänglich ist, wie er es nicht nur über Social Media, sondern auch durch seinen unrühmlichen, egoistischen Abgang letztlich bewiesen hat. War Voreiter einer Generation von Indie-Wrestler wie Sami Zayn oder Cesaro in der WWE, diese haben ihn in vielerlei Hinsicht bereits überflügelt, so dass Punks Vermächtnis letztlich die Kontroverse um seinen schwierigen Charakter bleiben wird."
Rating: 6.0
Sentiment: 0.11666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Man of Steelwrote on 22.08.2014:"Ja, der Liebling der IWC der Riesen Pops bekam und sich dann wie eine DIVA ohne Snickers verzogen hat weil es nicht nach seinem gusto ging... Ja schön er muss Verletzungen auskurieren, das muss ein Bryan auch und kann trotzdem Stellung beziehen. Für einen großartigen Wrestler und eine ebenso großartige Diva gibts nicht mehr als 5... Edit: da er ja nun wohl wirklich aufhört.. nö, einfach nur nö..."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: zackwoowoowooryderwrote on 20.08.2014:[10.0] "Zurecht "The Best in the World". Einer von wenigen die es geschafft haben in der Indie-Szene zu den Topleuten zugehören und dann auch noch beim Marktführer sich an die Spitze zuwrestlen. Seine Fähigkeiten am Mic werden von keinem überboten und auch im Ring gibt es nicht viele die besser sind als er. Schade das er aufgehört hat."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: stytcheswrote on 14.08.2014:[10.0] "The Best in the World - auch wenn er unterdessen den Ring verlassen hat hinterlässt er eine unglaubliche Karriere die ich quer durch die Indies bis in die WWE verfolgen durfte. Mein Favorit der 00er und 2010er Jahre, ohne Frage."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Phenomenal91wrote on 26.07.2014:[10.0] "I'm changing my original rating for this man because I don't think I'm doing him justice. Not only is this man a great wrestler who is the total package, he also did the impossible: he went from indy superstar to ruler of the WWE all on his own terms, never once compromising his vision or integrity. No garbage storylines, no hogging the spotlight, no backstage politics-he conquered the WWE and did it all when the stuffshirt "higher ups" didn't believe he could or should. He's an inspiration. I hope he's not done with wrestling forever, but I admire and respect him for everything he's done for the sport. He'll go down in history as one of the greatest. Long may he be the Voice of the Voiceless."
Rating: 10.0
Sentiment: 0.21527777777777782
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bolievewrote on 23.07.2014:[10.0] "Was soll und kann man zu CM Punk sagen? Ja, er ist aus meiner Sicht der beste der Welt, ohne jeden Zweifel!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Johnmydietsodawrote on 16.06.2014:[10.0] "CM Punk isn't the most athletic guy around. He's not big. But he's very good. He is absolutely money on a microphone, one of the best I've ever seen. Though I find him to be a better heel, he is great as a face or a heel. Despite not being naturally athletic, he worked at his craft, and became a great in ring performer anyways. He's not some freak of nature or a blue chip athlete with a great pedigree. He's a dude who loved wrestling and worked hard at it. He's got charisma, and great story telling ability. He is the whole package in my opinion. He's a special talent, and one of the greats. He has a special chemistry with John Cena as well, as they showcased many times, most notably at MITB in 2011, and on Raw in Feb 2013 with Cena's mania title shot on the line. I hope we see him in a WWE ring again someday. If not, he's still one of the all time greats."
Rating: 10.0
Sentiment: 0.4286595150880865
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Surviv0rwrote on 15.06.2014:[10.0] "Der hat mit seinen Abgang ein Riesenloch im WWE-Roaster hinterlassen. Er ist unterhaltsam, ein sehr guter Techniker und mobilisiert die Massen. Seit er weg ist gucke ich bei RAW und Smackdown nur noch ab und an rein. Zu viel 0815."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hirnklopswrote on 12.05.2014:[7.0] "Abwertung. Das "Complete Package" der WWE zeigte zum Ende hin mehr als deutliche Abnutzungserscheinungen, und wenn der Walk-Out keine Storyline ist, dann MUSS ich ihm Punkte abziehen. Das hätte man anders regeln können, und nicht Tausenden von Fans den Rücken zudrehen. Klar, man kann ausgebrannt sein, aber dann sollte man halt 'ne Auszeit nehmen, gelber Urlaub vom Doc. Aber ich kann mich irren, und es war eine Story, Punk kommt bald wieder und hat die Welt getrollt. Dann geb' ich ihm 20 Punkte, und wenn ich dafür die Seite hacken muss. Wofür ich erst mal wieder meine Skills auffrischen müsste. Wenn ich sowas tun würde."
Rating: 7.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Steenericowrote on 11.05.2014:[9.0] "Schade, dass CM Punks Durchschnittwertung so runtergezogen wird, nur weil er eine eigentlich nachvollziehbare Entscheidung (sofern natürlich die genannten Gründe für diesen Schritt stimmen sollten, wovon ich aber mal ausgehe) getroffen hat. Punk ist ein toller Wrestler mit hervorragendem Mic Work, der sowohl in der WWE als auch in den Indys für viele tolle Momente gesorgt hat. Ich gebe ihm neun Punkte, die er sich durch seine Leistungen mehr als verdient hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wwefan98wrote on 11.05.2014:[9.0] "einer der besten Wrestler überhaupt. Ich verstehe nur nicht so ganz warum er mit seiner Aktuellen rolle unzufrieden war. Ich meine er hat doch alles ereicht was man bei der WWE ereichen kann da ist es doch mal nicht so schlimm wenn man dann mal etwas in dei Minecard gesetzt wird. Aber so Ringtechnisch einer der besten und am Mic sowiso."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sign squadwrote on 28.04.2014:[7.0] "So CM Punk is a solid talker, he is charismatic, he is also an above average worker, but he is one of the worst wrestlers you have ever seen? Sure sounds like a perfectly valid explanation. Punk ist in der Tat erschreckend unsportlich für jemand in seiner Position. Da Sportlichkeit glücklicherweise kein KO Kriterium ist, bleibt da seine große Klappe, die sehr amüsant ist. Seine Arbeitseinstellung ist stark abhängig von dem Programm, in dem er steckte. Jetzt ist er raus, kommt vielleicht nicht wieder, tja, kannst nix machen. Warum man aber als finanziell abgesicherter Wrestler nicht einfach einen Schlußstrich ziehen darf, ohne dafür diese extrem unreflektierte Schelte von der "IWC" zu kassieren ist für mich nicht wirklich begreifbar. Als Pro-Wrestler hab ich ihn fast immer (außer bei TNA oder ECW V3. 5) gerne gesehen."
Rating: 7.0
Sentiment: 0.09444444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Flang2806wrote on 21.04.2014:[10.0] "Geilster wrestler aller zeiten , ich hoffe er kommt zurück aber das glaube ich nicht das wär eine zu geile storyline"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Chris1201wrote on 17.04.2014:[9.0] "Nicht umsonst als einer der Besten gehandelt. Im Ring mehr als gut. Am Mic war er einfach unglaublich stark."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Shogun1996wrote on 14.04.2014:[10.0] "CM Punk one of best wrestlers in the planet NOW. His mathes is beautiful and wonderful! His mic skills is awesome! He - BEST IN THE WORLD!"
Rating: 10.0
Sentiment: 0.97
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Yesyesyes98wrote on 12.04.2014:[10.0] "One of the best superstars of all time in my opinion. He is flawless on the mic and is simply outstanding in the ring."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DanielBryan1986wrote on 31.03.2014:[8.0] "CM Punk hatte es Anfangs schwer in der ECW. Auch nach Sieg bei Wrestlemania 24 im Money in the bank sollte es nicht funken. Für mich machte er erst 3Jahre nach Debüt eine gute Rolle. 2013 nur gutes match gegen Undertaker und 2014 der unrühmliche Abgang."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Shankwrote on 26.03.2014:[10.0] "Great wrestlers, entertainer, story teller, promo cutter. Great at everything. There is a reason why legends respect him."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Slyderwrote on 18.03.2014:[10.0] "Ich versteh' nicht, wieso man CM Punk nach dem, was grad passiert bewertet. Ob er nun noch bei der WWE unter Vertrag steht und auftritt oder nicht, hängt doch wenig von der Wertung ab, oder? Hell, wie'n Tunnel die Menschen hier.   Mich hat CM Punk über die Jahre immer sehr gut unterhalten. Jede Storyline mit ihm, war einfach perfekt umgesetzt (Obwohl ich die von ca. 2007-2009 mit dem WHC nicht ganz so geil fand). Wer CM Punk also nach aktueller Storyline "disliked" sollte sich vielleicht mal "Best In The World", die DVD von CM Punk geben. Diese DVD erspart mir jetzt einiges an Schreibarbeit. :P  Natürlich hoffe auch ich, dass alles gerade Storyline ist und er nicht wirklich geht. Falls das aber nicht der Fall sein sollte, "CM Punk bei ROH" "CM Punk bei der UFC" "CM Punk bei TNA". Mehr muss ich nicht schreiben, oder?"
Rating: 10.0
Sentiment: 0.5166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: rockcitizenwrote on 10.03.2014:[10.0] "Best. In. The. World. Mehr braucht man zu ihm eigentlich nicht zu schreiben."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DieOffenbarungwrote on 09.03.2014:[10.0] ""Best in the world"... vermutlich nicht, aber sicher nicht ganz unbegründet. Wollte hier eigentlich nur 9 Punkte geben, da mir im Ring noch etwas fehlt! ;) Aber wie könnte man jemand weniger geben der so hart arbeitet! ? So oft Heel geturnt und dann wieder Face, gefällt mir in beiden Rollen sehr gut. Aber nicht nur von den Rollen überzeugend, ebenfalls am Mikro. Bei beiden würde ich ihm eine klare 10 geben, im Ring nicht immer perfekt, daher hier die 9! Insgesamt sind das immer noch die 10 und die hat er verdient."
Rating: 10.0
Sentiment: 0.6953125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JeffHardy3107wrote on 04.03.2014:[10.0] "Punk ist einer der besten Wrestler der WWE zurzeit. Bzw. einer der besten, den sie in letzter Zeit HATTEN, weil er ist ja nicht mehr da.. und wird ja voraussichtlich auch nicht wieder kommen, schade. Riesiger Verlust. Klar, gibt es im Roster noch welche, die etwas besser sind, aber sicherlich nicht viele. Und am Mic ist er einfach krass, ein Genie. Für mich das beste Gesamtpaket zur Zeit. Unterhielt mich die letzten 2 Jahre am meisten von Allen und hat durchaus die 10 verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: spesiniwrote on 28.02.2014:[10.0] "One of the best wrestlers ever. He combines awesome mic skills and awesome in-ring skills. His feuds are always awesome (vs Lesnar, vs Undertaker, etc. )."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Foleysbabytoywrote on 26.02.2014:[10.0] "Phil ist zur Zeit einer der besten In-Ring Akteure in den gesamten USA. Am Mic halte ich ihn darüber hinaus für einen der Topleute "of all the time". Er hat Ausstrahlung, ist authentisch und besitzt sogar eine eigene Meinung (und wo gibt es sowas schon? ). Ganz klar das beste, dass die WWE zu bieten hat/te"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jay arewrote on 16.02.2014:[10.0] "He is indeed the best in the world. He's been a very good wrestler for a very long time. One would hope he is able to smooth out his WWE relationship eventually and return there, although I would not mind seeing him wrestle for other promotions either."
Rating: 10.0
Sentiment: 0.4366666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Matzinhowrote on 09.02.2014:[7.0] "Punk ist eine echte Charisma-Bombe und am Mic ein Genie. Schon zu Indy-Zeiten fand ich, dass er prädestiniert für die WWE ist. Leider hat das auch für seinen Wrestling-Stil gegolten. Der hat mir noch nie zugesagt. Zu unglaubhaft, zu spot-lastig, zu unsinnig. Selbst die Matches, die allgemein empfohlen werden oder von Meltzer gut bewertet sind haben mir nicht zugesagt. Ich hatte teilweise Mühe, nicht einzuschlafen. Insgesamt ein guter Entertainer."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: eldenaaaaawrote on 08.02.2014:[10.0] "cm punk is one of the best wrestlers right now and one of the main reason I watched wwe"
Rating: 10.0
Sentiment: 0.48412698412698413
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DudeLove177wrote on 04.02.2014:[10.0] "Einer der Besten die es gab. Stehe voll zu seiner Meinung. Was soll das, da kommt irgendein Ehemaliger seit langem wieder und gewinnt den Rumble. (Ins gemachte Nest setzten! ) Ob The Rock oder Brock alle schauen mal rein und werden dann gepuscht. Sollten Sie mal lieber den richtigen puschen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pratchett79wrote on 31.01.2014:[10.0] "Er mag für manche nicht der Beste sein, den es gab, gibt und geben wird, aber er ist so gut... so verdammt gut in dem was er tut. Ich sehe gerne zu wie er in den Shows Wrestling und Entertainment lebt und nehme ihm dabei einfach alles ab weil er es authentisch rüberbringt. Und darum geht es doch letztlich bei dieser Sportshow-Wrestling... die Bereitschaft alles dafür zu geben gut zu unterhalten sollte von den Offiziellen mehr gewürdigt werden wenn es so erfolgreich klappt wie bei ihm!  Von daher - auch wenn vielleicht ein Dean Malenko besser am Boden war, die reinen CatchPhrases von Rock am Mic mir immer noch mehr Gänsehaut erzeugen, ein Foley einfach irrer war, ein Undertaker legendärer ist, ein Cena... nun gut - der ist in allem schlechter ;-) - meine 10 Punkte gehen an CM Punks Gesamtpaket!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KnockoutKid13wrote on 28.01.2014:[10.0] "Perfect mic skills, awesome wrestling manuevers, charisma... itŽs simple THE BEST IN THE WORLD!"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: J0KERwrote on 23.01.2014:[10.0] "The Best in the World CM Punk! Er trägt den "BITW" Titel zu recht was Punk in den letzten Jahren auf die Beine gestellt hat ist einfach der Wahnsinn! Abgesehen davon das er einen bestimmten Charisma hat den ich nicht irgendwo zu ordnen kann ist er auch ein super Wrestler im Ring! Am Mikrofon ist er das Beste den die WWE seit 10 Jahren hatte keiner weiss zu überzeugen wie Punk es tut die Mimik die er hat ist einfach super. Ebenso hat er fast alles erreicht was Titel angelangt und hat ebenfalls ein Title Run die über 400 Tage angedauert hat. Respekt! Fehden gegen Cena, Y2J, Hardy, Heyman, Orton waren Weltklasse er ist in der heutigen WWE das beste was man derzeit neben Bryan den Fans anbieten kann. Ein Mann denn man umbedingt im Ring als auch am Mikrofon geshehen haben muss! Stichwort: Pipe Bomb!"
Rating: 10.0
Sentiment: 0.53515625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CmPunk2803wrote on 14.01.2014:[10.0] "10 verdiente Punkte für den besten Mic Worker der WWE und weit drüber hinaus. Dem nicht genug im Ring gehört er auch zur absoluten Spitze. Best in the World !"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: coolm619wrote on 11.01.2014:[10.0] "Man.. What can I say about CM PUNK ? There's no need to say anything about him... It's known already... HE'S THE BEST IN THE WORLD god dammit. His charisma is brilliant and in-ring skills are just amazing, he can work with almost everyone and make a hell of a match with anyone."
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: herthajasperwrote on 06.01.2014:[9.0] "Der beste aktive WWE Wrestler mit guten Mic-Skills und technisch hochwertigen Wrestling"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: yanuswrote on 05.01.2014:[9.0] "One of the biggest talents in the wrestling industry. Punk has everything - charisma, presence, mic-skills and in-ring skills. So why no 10 ? Well the guy seems to half-ass his way lately in the ring (since Summerslam 13), he gets more and more sloppy. Besides that, after his huge push in 2012 the guy is still a very mediocre draw."
Rating: 9.0
Sentiment: 0.005555555555555536
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CmNag66wrote on 05.01.2014:[10.0] "Für mich wahrlich The Best in the World haut ein fantastisches Match nach dem anderen Raus am Mic sowieso sensationell und auch an Charisma mangelt es ihm ganz sicher nicht, für mich das perfekte wrestlerische Gesamtpaket. Er macht für mich jede WWE Show interessanter und ist einer der Gründe überhaupt noch WWE zu gucken. Außerdem ist er seit Jahren auf einem Wahnsinnig hohen Niveau unterwegs. Er kann sowohl als Face als auch und besonders als Heel vollends überzeugen vor allem sein Heel Run 2009 war meiner Meinung nach einfach nur großartig und der Grund warum er mein Lieblingswrestler ist. Es war definitiv kein Zufall das dieser Mann den längsten WWE Championship Title Run der letzten 25 Jahre hatte, denn er ist einfach der Beste."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SharpestToolwrote on 01.01.2014:[8.0] "I wish 8. 5 was an option. CM Punk has been one of my favorites since his IWA days preceding his ROH tenure, forgettable TNA run, and an up and down WWE journey.   This was easily a 9 if we were rating Punk up until his match with Jericho that was his first following his WM loss to 'Taker. I legitimately thought that what seemed to be an obvious decline regarding in-ring performance was part of some "Punk is rusty" storyline.   Nope.   He has been 60% of the wrestler he was just months prior as of that match with Jericho. He's starting to realize that his body can't hold up, and frankly, I won't be sorry to see that god-awful homage to Savage in the form of a flailing elbow become more of a rarity. The sloppy GTSs, flying calf kicks, springboard clotheslines (etc) need to be eliminated or touched up.   His mic work became outstanding starting with his feud in ROH with Raven, and is another facet of his game I would hate to see continue to decline. His anti-authority shtick was getting old BEFORE creative gave that gimmick to half of the mainevent roster, and the Paul Heyman feud dragged on far, far too long. This is an area where I hope and assume I'll see improvement, or at least a reversion to his elite status.   I would hate to see Punk tarnish his legacy permanently."
Rating: 8.0
Sentiment: -0.06980676328502416
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: cookie monsterwrote on 27.12.2013:[9.0] "Seit Indy Zeiten verfolge ich CM Punk, und die Shoot Promo hat echt was gerissen und die WWE etwas bedeutsamer und Glanzzeiten wieder rausgehauen. Seine Matches sind einfach genial besonders in ROH hab ich ihn extrem gern gesehen. Mic Skills hat er auch genug. Top Punk immer weiter so :)"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LS Incwrote on 25.12.2013:[10.0] "CM Puck has always been a great wrestler and a fantastic entertainer so my rating must be so high."
Rating: 10.0
Sentiment: 0.45333333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JourneybyTrainwrote on 22.12.2013:[8.0] "CM Punk is one of the best wrestlers of his generation, both in the ring and on the mic."
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: apc24wrote on 17.12.2013:[10.0] "He's Best in the World for a reason. This is proven by what he puts in the ring and how hard he's worked to make it to the top."
Rating: 10.0
Sentiment: 0.40277777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RJLwrote on 13.12.2013:[10.0] ""The Best in the World" is certainly a well deserved title to this man. Day in and day out he proves why, he is in fact, one THE best wrestlers to ever step foot insinde a wrestling ring whether it'd be in ROH, TNA, WWE, or any other place in the world!"
Rating: 10.0
Sentiment: 0.47160714285714284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LordOfLimitwrote on 12.12.2013:[10.0] "Der Mann mit dem besten Mic-work der zurzeit in der WWE aktiv ist. Im Ringbist er auch ziemlich gut. Als Face finde ich ihn am besten aufgehoben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Garvinwrote on 09.12.2013:[10.0] ""In Punk we trust! " - Genau so sieht es aus. Er weiß, was er kann und was er tut. Er ist nicht der beste der Welt, da gab es andere vor ihm, die wrestlerisch besser sind oder waren. Natürlich muss man ihm zu Gute halten, dass er in einer Zeit im WWE Main Event agiert, in der er durchaus nicht alles von dem abrufen kann, was er tatsächlich kann. Auch die Zeichen der Zeit machen bei einem CM Punk nicht Halt. Dennoch unbestritten eines der besten Talente, dass die WWE in den letzten Jahren zu bieten hatte. Am Mikrofon macht ihm sowieso keiner was vor. Daher ein klarer Fall von 10 Punkten."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: tgwrote on 26.11.2013:[10.0] "Die größte Hoffnung die man bei WWE seit fünf Jahren hatte. Schon zu Independent-Zeiten einer meiner absoluten Lieblingsworker, ist Punk mittlerweile wohl so etwas wie der 'Retter' des Mainstream-Wrestlings geworden. Und wem wäre so etwas zuzutrauen, wenn nicht ihm?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Dreamforcewrote on 25.11.2013:[10.0] "CM Punk ist unbestreitbar einer der größten Wrestler dieser Zeit und hat sich einen Platz in der Hall of Fame sicherlich schon längst verdient. Er zeigt im Ring eine unglaublich große Performance und ist ungeschlagen wenn es um Promos geht. Seinen Job als WWE Champion hat er grandios gemeistert und weiß Fans zu fesseln."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: showstoperwrote on 21.11.2013:[10.0] "For a long time he was the only reason to tune into Raw every week."
Rating: 10.0
Sentiment: -0.09358974358974359
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DrPillemannwrote on 16.11.2013:[10.0] "Der beste und wichtigste Wrestler dieses Planenten derzeit. Ausstrahlung, Charisma, Beliebtheit, In-Ring-Skills, Mic-Skills. CM Punk bringt das gesamte Paket. Ist zusammen mit Daniel Bryan derjenige, der mich wieder zur WWE zurückgebracht hat. Auch wenn ich ihn nach der Heyman-Fehde bitte, bitte, bitte in den nächsten 10 Jahren ohne Kendo-Stick sehen möchte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BretHart83wrote on 15.11.2013:[10.0] "CM Punk:Best in the World? Ich sage:Definitiv!  Weiß zu überzeugen. Egal ob als Face oder als Heel. Wobei er mir persönlich als Face besser gefällt.  Sowohl im Ring als auch am Mic großartig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Silaswrote on 13.11.2013:[10.0] "" I've proved to everybody in the world that I am the best on this microphone, in that ring and even on commentary. Nobody can touch me....... "  Es ist genauso wie er es sagt. BEST IN THE WORLD"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Undertalkerwrote on 11.11.2013:[10.0] "Ihm ist es gelungen, sich von einem typischen Vince-McMahon-Charakter zu scheiden und dennoch den Durchbruch zu schaffen. WWE war anfänglich nicht stark daran interessiert ihn zu pushen, aber er zwang sie dazu. Dies gelang ihm meiner Ansicht nach, da er einen eisernen Willen besitzt, sich nicht verbiegen lässt und wie 2011 im Summer-of-Punk gnadenlos das sagt, was er denkt. Obwohl er eben eher den Eindruck eines Indy-Wrestlers vermittelt, hat Vince durch Punks Attitüde daher letztlich doch das, was er haben will: und zwar einen Charakter, der ganz anders und größer ist, als der einer gewöhnlichen Durchschnittsperson (Larger-than-Life). Wrestlerisch weiß er genau, welcher Move zu welchem Zeitpunkt passt und versteht es somit, eine Geschichte im Ring zu erzählen. Was die In-Ring-Skills betrifft, ist das die wichtigste Eigenschaft überhaupt. Unterm Strich hat er sich die Höchstpunktzahl redlich verdient!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SoRoNwrote on 11.11.2013:[10.0] "zurzeit der mit abstand beste allrounder (ring/mic skills, auftreten, charisma) keiner kann ihm zurzeit das wasser reichen! best in the world trifft es zurzeit schon ziemlich genau!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Goldberg82wrote on 10.11.2013:[10.0] "Im derzeitigen WWE-Roster wird CM Punk seinem Gimmick "Best in the World" gerecht. Er hat zu recht die längste WWE-Champion Regentschaft seit Hulk Hogan bekommen. Beim Summerslam 2013 gegen Broke Lesnar hat er mich wieder begeistert. Dies war ein sehr gutes und intensives Match, was beide Worker over gebracht hat. Zu dem kommen seine legendären Matches gegen Chris Hero im Indy-Bereich als auch bei RoH gegen Samoa Joe. Im Ring gefällt er mir sehr gut; die vielen Kicks, der Go To Sleep, seine Aktionen vom obersten Seil, die an den Macho Man angelehnt sind und seine hohe Beweglichkeit. Sein Start in der WWE war eher schwierig, da CM Punk als ehemaliger RoH-Champion erstmal von der WWE zur OVW gesteckt wurde. Gut, dass er mit Paul Heyman einen starken Fürsprecher hatte, welcher Ihn im WWE-Brand ECW und bei der OVW auch stark gefördert hat."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ProRedstonewrote on 02.11.2013:[10.0] "Einer der besten Wrestler die es je gab ! Für mich der Stone Cold der PG Era."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Clutcher-SBwrote on 02.11.2013:"Simply The best in the world he has proven it day in day out, he is no debate the best wrestler 2008-2013."
Rating: No rating found
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LeonAusBOTwrote on 22.10.2013:[9.0] "Sehr guter Micworker, guter Wrestler, gibt aber bessere Wrestler. In der WWE nicht zu Unrecht sehr erfolgreich. Geht mir aber mit der Dauerpräsenz irgendwie auf den Keks"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gazzawrote on 20.10.2013:[10.0] "CM Punk ist mein persönlicher Lieblingswrestler. Am besten gefallen mir seine überragenden Skills am Mic. Er ist einfach sehr charismatisch und hat einen Humor, der mir sehr gut gefällt. Abgesehen davon ist Punk im Ring auch einer der besten im amerikanischen Mainstream Bereich. Außerdem imponiert mir die Straight Edge Einstellung von Punk."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WCW Foreverwrote on 17.10.2013:[10.0] "Ob Als Heel oder Face, Punk überzeugt immer. Er ist einfach THE BEST IN THE WORLD!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DJ MaSchwrote on 05.10.2013:[10.0] "Ja was soll man zu Punk noch sagen? Er ist schlicht und einfach der beste der Welt. Keiner schafft es Emotionen am Mic und im Ring so gut zu vermitteln wie er. Durch seine Intensität wirkt alles viel realistischer als bei jedem anderen WWE Superstar. Im Ring ist der "Second City Saint" schon länger über alle Zweifel erhaben und seit seiner Pipebomb im Sommer 2011 hat er uns nun auch am Mic unzählige Promoklassiker geliefert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hazzanfallwrote on 19.09.2013:[10.0] "Ich mochte Punk schon immer, aber seitdem die WWE sein Potenzial erkannt hat und ihn richtig einsetzt, bin ich richtiger Fan von ihm geworden. Vor allem einer der wenigen der sowohl als Face und Heel überzeugen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: koeddylaemmlewrote on 19.09.2013:[10.0] "CM Punk changed WWE, opening the gates for many of the big indy names to finally get their shot in the big leagues... And has it paid off! Phenomenal all around talent who always brings something special to the table."
Rating: 10.0
Sentiment: 0.2261904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MultiXerowrote on 29.08.2013:[8.0] ""Im the best in the World" das behauptet er immer von sich selber. Nun, ich selber kann dem nicht zustimmen. Das er ein guter Wrestler ist steht wohl außer frage, man braucht sich nur im Matchguide umzusehnen. Und auch am Mic ist er manchmal unterhaltsam, aber imo nur manchmal, denn ich finde, dass seine Promos ziemlich eintönig sind. Und auch er selbst kommt mir ziemlich Arrogant vor, das zeigt er immer wieder. Aber dennoch muss man einfach einsehen, dass er neben Cena wohl das Aushängeschild von der WWE ist. Ne solide acht von mir."
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ZenHyenwrote on 28.08.2013:[10.0] "Absoluter Lieblingswrestler. Top am Mic. Top im Ring."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ImACMPunkGuywrote on 28.08.2013:[10.0] "Einfach unglaublich dieser Typ, was er immer abliefert ist Klasse. Klasse Charisma, ein Gott am Mic und im Ring einer der größten, wenn nicht sogar DER größte den es jemals gab und geben wird. Nur Michaels kann ihm im Ring das Wasser reichen. Ein zukünftiger WWE Hall of Famer, da bin ich mir sicher."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[10.0] "Am Anfang begeisterte mich Punk nicht sonderlich, zwar war auffällig, dass er irgendwie anders war, doch haute mich das noch nicht aus den Socken. Gegen Ende der SES hatte er mich dann in seinen Bann gezogen, und auch als Leader von New Nexus konnte er überzeugen. Zu Recht einer der am längsten regierenden Champions der Geschichte, top In-Ring-Leistung wie auch top Mic-Work. Charismatisch mit einer guten Einstellung, unterhält auf höchstem Niveau und liefert mich die besten Matches der Company ab, egal, ob nun gegen Cenas, Lesnars oder Bryans und co. ;-)"
Rating: 10.0
Sentiment: 0.34659090909090906
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheWALLwrote on 26.08.2013:[10.0] "Man kann meine Bewertung von 10 Punkten nur mit einem Satz erklären. Best in the World! Punk kann alles Perfekt.  Er ist der Aktuell Beste Wrestler auf der Welt."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: UnforgivenSicknesswrote on 23.08.2013:[10.0] "CM Punk hat alles was einen Wrestler ausmacht. Charisma, gutes move-Set und die nötige Motivation. Noch besser wäre es wenn er noch ein Kommentator ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HighlightHEELwrote on 21.08.2013:[10.0] "Ich werde CM Punk sicher nicht zum besten Wrestler aller Zeiten erklären. Im Ring ist er das auch im aktuellen Roster nicht, da es Daniel Bryan gibt. Am Mic ist er es in Jerichos Abwesenheit sehr wohl. Seine Promos sind immer glaubwürdig, er versteht es, seine Emotionen in diese einfließen zu lassen (weshalb er wohl im "pissed"-Modus am Besten ist) und die Crowd mitzuziehen. Das, was er im Sommer 2011 geleistet hat, bis er es nicht mehr leisten durfte, war großartig. Guter Face, der sich seiner Fans wohl stets sicher sein darf. Als Heel vor allem in der SES stark, sein Run mit Heyman wurde leider von seiner Popularität so ziemlich gekillt. Die Tatsache, dass er im Ring fast jeden zu einem besseren Match ziehen kann plus seine Pipebombs machen ihn wohl dauerhaft zum Nr. 2 oder 3 Babyface bzw. Heel (hier könnte er auch Nr. 1 sein) der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: FallingStarwrote on 21.08.2013:[10.0] "Best in the World. Do I need to say more? In all honesty one of the most complete performers not only today, but of all time! Great in the ring, can wrestle a technical match or a wild brawl. Believable both as face and as heel. Awesome on the mic. Loads of charisma."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SecondC1tySaintwrote on 20.08.2013:[10.0] "Für mich definitiv der beste überhaupt. Egal um was es geht ob es um die In-Ring fähigkeiten geht , die Mic skills oder sonstiges er kann einfach alles. CM Punk ist für mich so ziemlich der beste beweis dafür das , wenn man einen Traum hat und dafür arbeitet man ihn auch erreichen kann. Und auch , wenn er ungerechtfertigt nicht im Main Event steht sind seine Matches meist trotzdem das Match des Abends so wie bei Summerlsam zuletzt gegen Brock Lesnar."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: voicelesswrote on 12.08.2013:[10.0] "CM Punk ist der warscheinlich beste Wrestler der Welt. So gut wie Shawn Michaels oder Kurt Angles finde ich ich seine Rinskills zwar nicht (was warscheinlich daran liegt, dass er bei der WWE höchstens ein Drittel seines Könnens zeigen darf - ich kenne nur 3 seiner ROH Matches) aber bei den Micskills ist er für mich der beste aller Zeiten. CM Punk ist einer, der es schafft das Publikum für sich zu gewinnen, oder Heat zu bekommen ohne hirnlose Catchphrases, die einem auf die Nerven gehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MrFisch5wrote on 01.08.2013:[10.0] "Alter Schwede vor der epischen Promo vor Money in the Bank fand ich ihn nicht wirklich stark, lag vllt auch daran das ich noch jünger war, aber seit diesem Moment, seit dieser Promo welche wohl die beste und ausschlagskräftigste Promo der Neuzeit war ging es steil nach oben. Im Ring top und am Mic ebenso einer der allerbesten und für mich hat er jetzt schon einen wahnsinnigen Legendenstatus erreicht. Denn mir kommt es so vor das die WWE ihn und Cena jetzt schon fast auf gleichem Niveau stehen hat, denn er bekommt jetzt auch Matches gegen Rock, Lesnar, den Undertaker und ich bete zu Gott hoffentlich auch gegen Steve Austin bei WM 30. Das wäre dann mal ein Match was wirklich den Begriff , , Once in a Liftime'' verdient hätte."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Alex Maedawrote on 30.07.2013:[10.0] "Auch wenn es teilweise schon sehr albern ist, wie seine Die Hard-Fans bei auch nur der kleinsten Kritik an die Decke springen, muss man einfach sagen, dass CM Punk der wohl mit am härtesten arbeitende Wrestler in der WWE ist. Das behauptet er selber, da stimmen ihm auch seine Kollegen zu (zumindestens die Leute, die sich auf der Best in the World-DVD zu Wort melden) und das nehme ich ihm auch als Fan ohne zu Überlegen ab. Man merkt einfach bei jedem seiner Auftritte, wie viel Herzblut er in seine Arbeit steckt, egal ob er eine Promo hält, egal gegen wen er im Ring steht, egal welches Gimmick/welche Gesinnung er gerade verkörpert und egal, ob er im Opener (was zwar aus dem jetzigen Standpunkt sehr unrealistisch wirkt, aber wir haben schon genug Beispiele erlebt, die vom World Champ zum Edeljobber degradiert worden sind) oder Main Event steht.  Klar, Herzblut und harte Arbeit allein reicht nicht immer, aber dass der gute Mann ein Allround-Talent ist, muss ich hier wohl nicht noch extra betonen. Zu Recht ganz weit oben hier bei Cagematch und hat sich seinen Hype, sei er manchmal noch so übertrieben, über Jahre lang hart erarbeitet."
Rating: 10.0
Sentiment: 0.3888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Alex91wrote on 23.07.2013:[10.0] "Er hält einfach fast immer geniale Promos und ist dazu im Ring noch einer der besten. Auf jeden Fall auf einer Stufe mit Shawn Michaels"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: babakondawrote on 21.07.2013:[10.0] "The Best In The World for real. Nobody can do it like Punk. He has everything what makes a perfect wrestler. Charisma, Moves of every type and maybe the best on the mic."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TripleAwrote on 12.07.2013:[10.0] ""BEST IN THE WORLD" mehr braucht man eigentlich garnicht über Punk sagen. Im Ring sehr gut und am Mic quasi unschlagbar!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Darkiwrote on 07.07.2013:[8.0] "Ganz großes Kino was er zurzeit da am Mic abliefert.  Also ohne ihn wäre Raw nur halb so gut.  Ein Punkt gibt es aber abgezogen, weil er mich seit seinen Kampf gegen Jeff Hardy in Jahre 2009 im Ring nicht mehr begeistern konnte. Edit: Muss mal die Wertung von neun auf acht nach unten korrigieren. Zwar sind seine Matches meisten immer noch gut bis Sehr gut, aber in Sachen Promos hat er gewaltig nachgelassen. Immer zu behauptet er, er wäre der beste der Welt. Wäre mal schön, wenn er eine Promo bringen würde, wo er dieses nicht behauptet. Das langweilt doch nach ein Zeit sehr. Acht punkte."
Rating: 8.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sir Vida Loca IIIwrote on 06.07.2013:[10.0] "Meiner Meinung nach der aktuell beste Wrestler. Im Ring gehört er mit zu den besten und sein Mic-work überzeugt sowieso. AUch wirkt er, sofern sein Gimmick dies zulässt - immer Authentisch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Ruwrote on 02.07.2013:[10.0] "Truly the Best in the World in the ring, on the mic, even at commentary. Nobody can touch him!  Even a heel turn failed to ruin his popularity with "CM Punk" chants ringing out against greats like The Rock and the Phenom himself, the Undertaker!"
Rating: 10.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Swarley Stinsonwrote on 28.06.2013:[10.0] "Auch, wenn ich ihn früher nicht leiden konnte, so ist er doch mittlerweile einer der Besten Wrestler ever. Er hat eines der besten Micworks und ist ein absolut hochleistungs Allrounder. Er holt immer das beste aus jedem seiner Gegner raus. Legen.. wait for it.. där'es match bei WM gegen den Taker. Muss auch früher oder später wieder der WWE Champ sein. Super Gimmick und Ausstrahlung, er Elektrisiert, wie einst The Rock."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: lesnabiswrote on 27.06.2013:[4.0] "The best cheater of the wold 2012. Some wrestlers like Sammartino or Cena has worn the WWE belt with honor or dignity, the 2012 PUNK's reign's championship matches has been tainted with a lot of external interventions and cheats. Starting as a hero the megalomania psychotic character he chose ruined great part of his popularity.  If Cagematch want to be so trick in his rating difficult to understand why they are not deleting the 59 guys who rated 0 the 11 times WWE champion John Cena."
Rating: 4.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DaNiwrote on 25.06.2013:[10.0] "Eine glatte 10! Konnte seinen Weg lange Zeit verfolgen, mittlerweile ist er einfach einer der größten Wrestlingstars weltweit. Ein Typ, der ohne unnatürliche Muskeln und große Powerhouse Skills ganz oben mitspielen kann ist sowieso eine seltenheit. Nun schafft Punk es auch noch seinen Stil den anderen Gegner aufzuzwingen. Was er beispielsweise aus Cena rausholt ist einfach bombastisch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AlanArcadewrote on 14.06.2013:[10.0] "Einer der besten Wrestler, die es heutzutage im Business gibt. Ich habe CM Punk seit seiner Ankunft in der WWE beobachtet und hoffte immer, dass er eines Tages WWE Champion wird und er wurde nicht nur Champion sondern auch der längste, des letzten Jahrzehnts, was ich mir bei John Cena nur zu träumen erhoffte. Schade, dass das Ganze einfach so wegen Cena vs Rock weggeworfen wurde. Es ist eine Schande..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: marcogiannelliwrote on 11.06.2013:[10.0] "the best in the world! my favourite wrestler after The Undertaker"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AdRwrote on 24.05.2013:[10.0] "CM Punk ist einfach ein Gott des Wrestlings. Momentan der beste in der gesamten WWE. Er funktioniert als Face genauso wie als Heel. Seine In-Ring Skills sind genauso wie seine Mic Skills überragend. Es ist nur ein bisschen schade, dass er aktuell als ein Feigling dargestellt wird. Das ist aber noch lange kine Rechtfertigung für einen Punktabzug. 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Unrated Superstarwrote on 18.05.2013:[10.0] "Nach Edges Abgang mein absoluter Favorit in der WWE (Lesnar tritt ja nur Teilzeit auf)! Neben Jericho und Daniel Bryan gehört er immer noch zu den glaubhaftesten Charakteren, die man momentan in der WWE vorfindet. Sein Straight Edge Heel-Gimmick in der Fehde gegen Jeff Hardy hat mir schon gut gefallen und auch sein Werdegang nach der legendären Pipe Bomb-Promo ist beachtlich (auch wenn seine lange Titelregentschaft von Hollywood Rocky beendet wurde). Mal schau'n mit was Punk uns demnächst wieder überrascht!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: rapha0702wrote on 15.05.2013:[10.0] "Es ist nicht nur ein Gimmick, für mich ist CM Punk wirklich "The Best in the World".  Er ist ein perfekter Techniker und hat mit die besten Mic Skills in der WWE"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheIbarwrote on 03.05.2013:[10.0] "When CM Punk first came into WWE, he was so fresh that nobody knew what to do with him. But Paul Heyman took this talented young man under his wing and right now we have first-class superstar. He had something special, something that other guys didn't have. And he little by little made his way to the top of professional wrestling. Coming from an indy promotion, CM Punk showed the whole world that he can be one of the hottest professional wrestlers in WWE. And he remains one of the hottest superstars right now. His promos are cutting-edge and his matches are outstanding. For me the best period in his career was the feud against Jeff Hardy and the whole unimaginably good Straight Edge Society times. He was the cult of personality back then. And, for sure, we still see the cult of personality in his eyes."
Rating: 10.0
Sentiment: 0.27517006802721095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: believeintheshieldwrote on 02.05.2013:[10.0] "Der zurzeit beste Wrestler den die WWE zu bieten hat! Hervorragende Ringfähigkeiten und gute Schauspielkünste. Er ist sehr Überzeugend in seiner Rolle als Heel, hat mir aber auch als Babyface gefallen, daher 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BrahmaBullwrote on 17.04.2013:[10.0] "Man dieser Typ hat einfach echt alles um in diesen Business erfolgreich zu sein! Und das ist er allemal! Ausstrahlung /Charisma, In-Ring Skills, perfektes Micwork! Zur Zeit das beste was speziell die WWE zu bieten hat. Daher bekommt er von mir völlig zurecht 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Freyr33wrote on 16.04.2013:[10.0] "CM Punk ist für mich einfach ein wunderbares Komplettpaket.  Gute Mic-Skills, gute In-Ring Skills, sowohl als Heel als auch als Face optimal. 10/10"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: the headlinerwrote on 11.04.2013:[10.0] "Das beste was die WWE momentan zu bieten hat, guter face, guter heel, guter athlet und der beste mic- worker momentan."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: derboerner90wrote on 10.04.2013:[10.0] "CM Punk darf sich vollkommen zurecht als "Best in the World" titeln.   Die Ringfähigkeiten suchen ihresgleichen und außerdem ist er am Mic einfach unschlagbar!   Sowohl als Face als auch als Heel eine feste Größe der WWE und momentan einer der wenigen Gründe Wrestling noch zu verfolgen....   Zu den Kritikern die sein teilweise "Angsthasen-Image" kritisieren (als Heel) : Man sollte bedenken das alles gescripted wird und das sicher nicht seiner Art entspricht!   BEST IN THE WORLD!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HooliNerdwrote on 10.04.2013:[10.0] "Das beste Beispiel wie es funktionieren kann in der Wrestling-Welt. Ein Gott am Mic und im Ring. Er hat alles erreicht und das schon mit Mitte 30. Best in the World!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: corbywrote on 09.04.2013:[10.0] "Er unterhält mich am besten kann mir jede Fehde geben sowie Matches. Gut bis Fantastisch im Ring. Am Mic gut und sonst ist überall zu gebrauchen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KevinMichaels79wrote on 28.03.2013:[9.0] "Das beste Gesamtpaket, dass es momentan in der WWE gibt. Ein zukünftiger Hall-Of-Famer."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: gil3boywrote on 19.03.2013:[10.0] "One of the greatest heels of all time. He is very talented and knows MMA. Before he debuted in WWE, he won his first world title in Ring of Honor. When he debuted in WWE he was a fan favorite in ECW, later on he won the ECW heavyweight title. He also won the World Title, WWE title, Tag Team title and Intercontinental title in WWE. He is one of the greatest WWE champions of all time having a 400+ title reign. He possesses great mic skills and makes good promos."
Rating: 10.0
Sentiment: 0.645
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mizisawesomewrote on 13.03.2013:[8.0] "Hier ist die traurige Wahrheit: Punk ist lange nicht mehr so gut wie er vor 2-3 Jahren noch war. Seine Promos sind das einzige was beständig gut geblieben ist. Doch körperlich sieht er überhaupt nicht mehr wie Wrestler aus. Wenn man da an sein WWE-Debut denkt: Da sah er wirklich noch ordentlich durchtrainiert aus, aber jetzt: Na... ja. Aber auch im Ring hat er arg nachgelassen. Für mich nur noch 0815-Matches in der letzten Zeit. Das mag vielleicht an seinem Aufstieg liegen. Aber ich als einer der größten Punk-Fans aller Zeiten erlaube mir einfach mal meine Bewertung runter zu korrigieren. Aber unter 8 wird sie auch nie gehen, dafür hat er zu viel geleistet in seiner Karriere."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dudemanbearpigwrote on 10.03.2013:[10.0] "Best in the world isn't just a catchphrase, it's the truth. It's a shame WWE has never truly appreciated him, since even during his 14-month-long WWE title reign, he was taking a back seat to John Cena most of the time, and they made him lose the title to a part-timer in order to give Cena the big WrestleMania win."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Titansrevengerwrote on 06.03.2013:[8.0] "Punk seems like an underated 9, but I think that he is a high 8. He is somewhere in between an 8 and 9 given that is even possible. I believe that the common denominator is that Punk is really.. really good when he steps between those ropes. He has such an eclectic style of moves, that are interchangeble and extensive. He seems to bring out the right stuff at the right time. If it's time for a tap out, bring out the anaconda vice, if it's time for a ko unleash the GTS, or simply use a roundhouse kick. CM Punk is the best wrestler that the WWE has seen in sometime. He has proven that he can wrestle just about anyone and have a good to great match. His matches against John Cena are proof of this. His mic work is simply brilliant, he can talk on end for hours and not bore. His achilles heel might be his lack of size, because lets face it the guy is pretty scrawny. However his tatooed body unique and interesting and adds to his character. The guy just has so much in his favor, he's going to be hovering around the main event for along time."
Rating: 8.0
Sentiment: 0.33461640211640215
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jake Westwrote on 28.02.2013:[10.0] "Wie kann man CM Punk nur 0 - 7 Punkte geben mit der Begründung er langweilt einen oder er hat im Ring nichts drauf. Was soll das. Cm Punk hat das geschaft was sonst keiner geschaft hätte seid 2011, nicht einmal Super Cena. Er hat eines der bestn Raw matches aller Zeiten gezeigt trotz eines Infekts. Er ist zurzeit auch einer der besten Wrestler die es gibt. Sein Mic Work ist sehr gut. Und mir persönlich hat er den Spas am Wrestling zurückgehohlt. Von mir aus hätte er ruhig weiter Champion sein können und bei Wrestlemania gegen Cena antreten, dort gewinnen dann den neuen Gütrel vorstellen und mindestens bis zum Summerslam Champion bleibn. Es ist ein Witz 1, 5 Monate Raw ohne Champion und dann Cena als Champion. Und jemand hat geschrieben er hat kein Charisma, schau dir mal Raw an und hör auf Scheise zu erzählen #CMPunkBestInTheWorld"
Rating: 10.0
Sentiment: -0.08974358974358976
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jack Slaterwrote on 28.02.2013:[10.0] "Völlig gleich ob man Ihn nun mag oder nicht. Weniger als 9 ist mal gar nicht drin. CM Punk ist technisch herausragend, sehr athletisch und generell in seiner In Ring Performance kaum zu überbieten. Dazu hat er, was einigen großartigen Technikern leider fehlt. Charisma und sehr gute Mic Skills. Nicht jede Promo gefällt, aber das passiert auch den Besten. Lustig finde ich eher, wie angestrengt er versucht als Heel durchzugehen aber einfach viel zu beliebt beim WWE Universe ist um das zu schaffen. Zwar bin ich keineswegs ein Fan von Punk, aber er ist einfach "sehr gut" - heißt also ich finde ihn ebenfalls zu gut um ihn nicht zu mögen und ich freue mich bereits riesig auf das Match gegen den Taker ! Wie gesagt, weniger als 9 ist überhaupt nicht drin. 10/10 sind absolut gerechtfertigt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: UndertakerChriswrote on 21.02.2013:[10.0] "Um es kurz zu halten, Punk ist momentan einer der Besten, wenn nicht sogar DER Beste. Er lieferte seit 2009 durchgehend die besten Fehden ab und holte aus jeder alles raus! Sei es gegen Hardy, Mysterio, Cena, Del Rio, oder die Zahnfee. Es ist wohl auch kein Zufall, dass Letzterer eine niedrigere Bewertung hier auf CM hat als Punk.  Über ein Jahr und mehr als 400 Tage WWE Champ, das muss mal jemand nachmachen [dürfen]. Dazu kommen großartige Leistungen trotz mangelnder Beachtung von Seiten der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Machisiowrote on 18.02.2013:[10.0] "Zurzeit das Beste was die WWE zu bieten hat! Für mich ganz klar the best in the world!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Diggertakerwrote on 13.02.2013:[9.0] "CM Punk is the best wrestler of 2011 and 2012. Indie-like impactful move-set and WWE-like charisma and mic-skill. Even when he wrestled on the independent circuit, he had a mic skill better than many of the WWE. He's also the guy who gave an adjustment in the situation that Cena had left in WWE. But there's something about him I don't like and don't know what is."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: N8y Modianowrote on 13.02.2013:[10.0] "Top Mic-Work, Super In-Ring-Skills, weiß als Face und Heel zu überzeugen. Ein ECHTER Wrestler und kein 'Superstar'"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fabi89wrote on 11.02.2013:[10.0] "Überragende Erscheinung im Wrestling-Zirkus. CM Punk hat in den vergangenen Jahren außergewöhnliche Leistungen am Fließband abgeliefert und sich seinen Platz in der WWE-Spitze absolut verdient. Tolles Micwork, starkes Wrestling, tonnenweise Charisma und einen Sinn für Details - Punk ist ein begnadetes Allround-Paket."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Irri Busenbenderwrote on 06.02.2013:[9.0] "Er ist ein wirklich sehr sehr Realer BUUUU.. deswegen 9 Punkte von mir und jetzt DW"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Wohl das Beste, was die WWE momentan zu bieten hat. Technisch unglaublich vielseitiger Mann, der nicht nur im Ring, sondern auch in Promos punkten kann. Er überzeugt in nahezu jedem Match und war verdient der längste amtierende WWE Champion seit Jahren. Er wird sicherlich auch noch die nächsten Jahre an der Spitze der WWE stehen und das zurecht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Woerpwrote on 03.02.2013:[10.0] "Vor 2006 kannte ich Punk nicht, da ich erst später ROH kennen gelernt habe (danke Flosch). Als er bei WWE ECW anfing, war er der Grund da mal öfters reinzuschauen. Ich mochte ihn immer mehr, denn Punk überzeugte im Ring und am Mic (wenn er mal was sagen durfte). Als er dann sein erstes MitB Match gewann bzw den Koffer gegen Edge einlöste, bin ich ausgemarkt. Nach dem Title-Run hatte ich Befürchtungen, dass man ihn fallen lässt. Aber er hat sich aus dem Loch hochgearbeitet, alle im Weg liegenden Steine weggekickt. Seit seiner Fehde gegen (den von mir verhassten) Jeff Hardy gehörte er zu den wenigen Gründen, warum ich WWE treu blieb. In 2010/2011 hat er es dann geschafft, dass CM Punk mein absoluter Lieblingswrestler seit Stone Cold ist. Seit über zehn Jahren Wartezeit also hab ich wieder einen All Time Favoriten. Der Einzige der da noch rankommt, ist Daniel Bryan. CM Punk = Best in the World!"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AirStarwrote on 31.01.2013:[10.0] "Wohl einer der besten Wrestler die je einen Wrestlingring betreten haben. CM Punk vereint einfach alles was ein Superstar haben muss. Perfektes Mic Work, Super In-Ring Skills und natürlich noch die perfekte Ausstrahlung für sein Gimmick. dazu passt natürlich die Gimik und Gestik bei ihm genauso wie sei Gottgegebenes Charisma."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gomphwrote on 31.01.2013:[10.0] "Ist seit langer Zeit mein Hauptgrund überhaupt noch WWE zu gucken. Im ring ein äußerst talentierter, vielseitiger Wrestler der in der Lage ist mit jedem Gegner ein gutes Match abzuliefern und sich mit allem Recht "Best in the World" nennen darf. Am meisten gefällt mir jedoch sein Mic-Work. Seine Promos sind erfrischend anders verglichen mit dem anderen Kram der jetzigen Era. Er ist ein verdammt guter Redner, der gerade als Heel meiner Meinung nach sehr authentisch wirkt. Gerade jetzt im Moment, wo er selbst Rocky am Mic blass aussehen lässt, spricht dafür das er einer der Besten am Mikro überhaupt ist. Ich könnte im stundenlang zuhören! Auch wenn die WWE sein Potenzial erst spät erkannt hat ist er doch jetzt - gerade nach dem langen Titelrun - auf dem besten Weg sich langfristig als Top-Star zu etablieren. Ich freu mich drauf, ist bestimmt noch weiter Luft nach oben!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sandman16wrote on 20.01.2013:[10.0] "Ein großes Talent, gar keine Frage. Verfügt über Charisma, ist sehr gut im Ring - auch wenn er da bei der WWE noch nicht alles/soviel zeigen durfte - und am Mic kann er auch überzeugen. Er hat ganz bestimmt eine große Zukunft vor sich und ich bin gespannt drauf, wie sein weiterer Weg verlaufen wird. Update: Sensationell wie sich Punk entwickelt hat, seitdem ich den Kommentar hier veröffentlicht habe. Das Beste was die WWE seit langen zu bieten hat und das wird auch zukünftig erst mal so bleiben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: fcwieslawrote on 18.01.2013:[10.0] "Seitdem er angefangen hat mit der Straight Edge Society finde ich ihn einfach nur Geil... Sagenhaftes MicWork! Vorher nicht so, aber jetzt hat er den Dreh raus... Im Ring ist er auch sehr gut und deswegen sehe ich eine gute Zukunft für ihn! Edit: Tatsächlich der Beste der Welt... Naja zumindest aus WWE-Sicht... Seine Promos zünden immer, er hat keinen Filter zwischen Hirn und Mund... Hat meist tolle Matches und ist eben einfach mal der längste Champion der letzten 26 Jahre verdient... Einfach Grandios. Daher die volle Punktzahl."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Heatwrote on 09.01.2013:[10.0] "Best in the World? Aktuell ja! Matches, Promos, Segmente, einfach alles was er macht macht er sehr gut. Für mich sind es die Kleinigkeiten in seinen Matches und Promos, die ihn höchst authentisch machen."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dennis131wrote on 05.01.2013:[10.0] "CM Punk einer der besten momentan in der WWE.  Er hat die 10 Punkte verdient"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HeelJenniwrote on 05.01.2013:[10.0] "Ein sehr guter Worker den ich nicht mehr missen möchte. Er weis ganz genau wie er mit dem Publikum umzugehen hat und seine Leistungen im Ring ist auch spitze (auch wenn ich glaube dass er bei WWE nicht 100% von seinem können zeigt).  Ich hoffe das ich ihn irgendwann mal bei einer Indy Show erleben darf, auch wenn dafür zurzeit die Chancen nicht sehr hoch sind."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Avactzwrote on 28.12.2012:[10.0] "Pipe Bomb! 2012 = year of cm punk. A lot of great matches and promo he made in this year proved that he is the best in the world. Respect."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mar-Twrote on 06.12.2012:[10.0] "CM Punk ist ohne Frage das Beste was die WWE zur Zeit zu bieten hat und scheinbar hat auch die Company es endlich begriffen. Vom 5 Sterne Match mit Cena zu einer Titel Regentschaft von über einem Jahr - gespickt mit tollen Promos, tollen Matches und einem grandiosem Heel Turn per GTS gegen The Rock- hat er sich 10 Punkte verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Titanwrote on 28.11.2012:[10.0] "CM Punk ist einer der vielseitigsten Entertainer der WWE, auch wenn er nicht immer optimal eingesetzt wird. Seine Matches gegen seine Gegner waren klasse, obwohl man storylinetechnisch gerne mal ins Klo greift. Die Geschichte rund um die Straight Edge Society und Big Show hätte man sich in meinen Augen klemmen können. Dafür gefällt mir, dass man ihn zum Leader des New NeXus gemacht hatte, trotz mieserabler Darstellung zu Anfang der New NeXus Storyline. Punk gibt immer 100% und aufgrund seiner technischen Feinheiten im Ring und seiner Ringpsychologie schafft er es, ein gutes Match auf die Beine zu stellen und hinzu kommen noch seine Mic-Skills, die mich jedes Mal aufs Neue unterhalten. Es gibt nicht viele Entertainer, die ein gutes Komplettpaket abgeben wie CM Punk. Die 1-Jahr-Regentschaft spricht da für sich..."
Rating: 10.0
Sentiment: 0.11818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Klabauterwrote on 23.11.2012:[10.0] "Punk ist einfach "The Best in the World".   Er überzeugt im Ring und am Mic.  Sein Heelturn und seine Zusammenarbeit mit Paul Heyman sind dazu noch das i-Tüpfelchen.  Allerdings darf sich sein Heel-Gimmick in nächster Zeit nicht mehr nur auf das "Respect"-Getue beschränken, sondern es muss dann auch wieder was "Neues" kommen...   Im Moment hat sich Punk aber die 10 Punkte mehr als verdient."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: swantom98wrote on 20.11.2012:[9.0] "Als erstes möchte ich sagen, dass CM Punk ein sehr großes Talent ist und seine Sache im Ring und am Mic sehr gut macht. Dennoch gibt es nur 9 Punkte da mir sein derzeitiges ŽŽBEST IN THE WORLD``nicht gefällt und er 24 h von Respekt labbert. Da fand ich sein straight edge Gimmick z. B. in seiner Fehde gegen Jeff Hardy sehr viel reizvoller.  Aber die 9 Punkte hat er sich Dank seiner genialen Mic-Skills und seinen In ring Skills verdient.  Vielleicht gibt es die 10 Punkte noch, wenn er sein Gimmick ändert."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JuliTheCage87wrote on 18.11.2012:[10.0] "Was soll man zu ihm noch sagen? Von der Indy- zur Mainstreamlegende, grandiose Promos und bessere MicSkills als Mick Foley, Steve Austin oder The Rock. Er wäre zu Attitude- oder Ruthless-Agression-Ärazeiten wahrscheinlich als ihr größter Star hervorgegangen, da er ein genialer Techniker ist und die WWE bei ihm als einer der wenigen Wrestler weiß, wie man ihn bookt. Die Segmente sind echt zum Dahinschmelzen und er ist immer noch der, der mich an der WWE festhält, trotz PG. Best Wrestler In The World, und das zurecht!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BestInTheWorld96wrote on 25.10.2012:[10.0] "Er ist das beste was die WWE derzeit zu bieten hat. Stark am Mic und die In-Ring Skills sind herrausragend (auch wenn er oftmals nicht sein ganzes Repertoir zeigen darf). Völlig verdient ''The Best in the World''!"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Greedy7wrote on 12.10.2012:[10.0] "Der aktuell beste Wrestler der Welt. So wie CM Punk sich selbst zitiert: The best in the world! Seine Mic-Fähigkeiten sind jetzt schon legendär, die selbst Rockys fast in den Schatten stellen. Seine In-Ring Skills sind perfekt, sowie die von Daniel Bryan. Ausstrahlung und Charisma hat der Junge einfach, da kann man nichts sagen. Das einzige was mich momentan ein bisschen stört ist, dass die WWE ihn als einen ängstlichen Heel hin stellt, bitte man kann doch nicht Mr. McMahon nicht stärker wirken lassen als den Champ, aber das ändert nichts, dass CM Punk einfach nur AWESOME ist.  Ps. WWE lasst ihn solange Champion sein wie es nur geht, am besten bis zur nächsten Wrestlemania."
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: tobiwrote on 04.10.2012:[10.0] "Er macht einfach momentan den Unterschied aus. Beherrscht wrestlerisch diverse Stile, ist zudem äußerst charismatisch, mit Ecken und Kanten, in seiner jeweiligen Rolle also stets glaubwürdig. Sein Move-set und sein Erscheinungsbild gefallen mir zudem sehr. 10 Pkt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: goofy1991wrote on 02.10.2012:[10.0] "Für mich das aktuell kompletteste Gesamtpaket. Im Ring ist er sehr stark, am Mikrofon einer der besten überhaupt und auch vom Charisma her absolute Spitze."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cartman099wrote on 14.09.2012:"Sehr geehrtes Cagematch-Team.  Ich bin zwar ein großer Fan von eurer Seite und gebe sie von Zeit zu Zeit an meine Bekannten/Kameraden weiter, die sich ebenfalls mit dem Wrestling befassen wollen. Dennoch möchte ich anmerken, das euer Kommentar "tatsächlich jedoch handelt es sich um einen freundlichen Tribut an den größten Käfig der Welt (Vielen Dank, Punk! )" mir nicht ganz so gut gefällt, weil es sich in meinen Augen wie ein hochnäsiges Eigenlob liest. Da ich nicht weiß wer die Profilseite zu Ihm angelegt hat, muss ich es wohl oder übel hier hinein schreiben und bitte darum, das ich bei einer kommenden Reaktion eurerseits entsprechend benachrichtigt werde."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: diamond dustwrote on 06.09.2012:[8.0] "Ich finde CM Punk ist sicher einer der besten Wrestler der Gegenwart, wenn er mich persönlich auch nie überzeugt hat. Das liegt vor allem daran, dass er gegen "Monster" oft noch weniger glänzen kann, als das andere seiner Zunft können. Dennoch charismatisch und am Mic eine Macht. Alles in allem eine 8 und noch Luft nach oben!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: S04TIMwrote on 01.09.2012:[10.0] "CM Punk ist einfach ein Gott in allem was er macht. Und nennt sich völlig zurecht 'Best in the world'. Er ist immer und immer wieder unterhaltsam"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LM Punkwrote on 30.08.2012:[7.0] "hat noch nicht das optimum aus seiner Karriere gemacht. Dass er als WWE-Champ oft nicht im Main-Event steht sagt rechtfertigt meiner Meinung nach 7 Punkte. Aber er hat noch Zeit. Im Ring und am Mikro im Augenblick das beste was die WWE hat. Aber er wurde in den letzten Jahren nicht immer gut eingesetzt."
Rating: 7.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: deralexwrote on 23.08.2012:[10.0] "Hoffe dass sein heelturn richtig durchgezogen wird!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Killazwrote on 23.08.2012:[10.0] "CM Punk ist für mich der beste Wrestler. Er hat es überall drauf: im Ring, Mikrofon und sogar als Kommentator! Sein Storyline im Sommer letztes Jahr war die absolute Spitze, er hat es geschafft mit Cena ein 5 Star Match zu machen was man bei der WWE nicht seit den 90 Jahren gesehen hat. Ich hoffe sein Reign als WWE Champion wird so lange dauern wie es geht, seine Matches wo er den Titel verteidight waren alle außer den bei SummerSlam sehr gut. CM Punk ist einfach der Beste der Welt :D"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CMPunkVotVwrote on 22.08.2012:[10.0] "Zur Zeit, einfach der beste, es macht immer wieder Spaß ihm zuzugucken bzw. zuzuhören. Einfach nur der Best in the World. Und nein ich bin nicht so Punk verliebt wegen meinem Namen, ich mag auch durchaus andere "Wrestler"."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Seven c7awrote on 22.08.2012:[10.0] "The Best In The World mehr kann man nicht sagen es gibt in der wwe keinen der jetzt zuzeit besser ist als cm punk"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: cmkanewrote on 20.08.2012:[10.0] "CM Punk ist einfach der beste Wrestler der Welt.  Sowohl im Ring als auch am Mic mehr als überzeugend.  Als Babyface leider mit etwas weniger Biss in den Promos/Segmenten als früher, aber das ändert sich hoffentlich nach seinem möglichen Heel-Turn (oder zum Tweener ala Stone Cold Steve Austin) wieder"
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TxRattlesnakewrote on 07.08.2012:[10.0] "Z. Z. einfach nur der Beste. Sowohl am Mic als auch im Ring, auch wenn er in letzter Zeit nicht mehr sein komplettes Repertoir im Ring zeigen durfte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nouriwrote on 28.07.2012:[10.0] ""Best in the world" Vielleicht stimmt das derzeit sogar, er steht berechtigterweise so lange als WWE-Champion an der Spitze des Unternehmens. Er ist nicht nur einer der besten Athleten überhaupt innerhalb des Seilgevierts, sondern auch am Mikrofon überragend und sehr charismatisch."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Brainbreakerwrote on 23.07.2012:[10.0] "CMPunk ist mit Sicherheit in Post-Attitude-Ära DER Prototyp eines hochklassigen, erfahrenen ehemaligen Indy-Wrestlers, den die Internet-Smarks lieben und liebten, der zur WWE wechselte und dort nicht nur einen langen, schwierigen Aufstieg gemeistert hat, sondern in einer Position angelangt ist, die nur wenigen Wrestlern im McMahonschen Universum vorbehalten bleibt: Die Möglichkeit der eigenen Kreativität am Mic und im Ring freien Lauf zu lassen. Und im ersteren liegt seine Stärke. Punk hat die Macht des Mic, mit dem er die Fans kontrolliert, nach belieben zwischen Face- und Heelrolle wechseln kann. Im Ring ist er dagegen Anhänger der alten Schule: Kein High-Spots a la JoMo, lieber saubere Technik und Authentizität. Dabei gelang Punk lange Zeit nicht der Spagat zu einem ebenso runden Storytelling, zu dem er erst in den letzten Jahren gefunden hat. EDIT: im vergangenen Jahr der einzige Grund, weshalb ich PPVs geschaut habe, wo er eine Granate nach der anderen abliefert. Jetzt hat er die 10!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Leonewrote on 05.07.2012:[10.0] "I watched CM Punk's matches in ROH & NWA TNA back in the early 2000s and really liked the guy, hoping for big things.  Due to his size and his personality, you wondered if he would ever make it to "the big time", fast forward at least 5 years later, he has become a multiple time world champion, had some fantastic feuds with a number of wrestlers, developed 1 of the best characters the WWE has had (and needed) in years.  And other than Edge, I personally think he is John Cena's best opponent.  He has come a long way from being a tag team wrestler and mid-carder in the indies, and I hope to see more great matches from him for years to come."
Rating: 10.0
Sentiment: 0.21578947368421056
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Franziwrote on 03.07.2012:[10.0] "Die Zukunft der WWE. Egal ob im Ring oder am Mikrofon in Interviews, er überzeugt als Heel und Face. Sein Shoot gegen Vince bleibt legendär. Hoffentlich sehen wir noch mehr von ihm in den nächsten Jahren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Monday Night Wars85wrote on 25.06.2012:[6.0] "Ich weiß nicht warum CM Punk so absahnt? ! Ich kann mich mit der neuen Generation der WWE nicht anfreunden. Ich finde ihn overrated genau so wie Cena. Es liegt wohl daran, dass er mir nicht als Gimmick fehlen würde, so fern er mal nichtzu sehen ist. Was sein Rating allerdings hier hoch pusht ist zu einem sein Straight Edge Lebensstil und "go to sleep" gefällt mir."
Rating: 6.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LeBelle1wrote on 21.06.2012:[10.0] "Bei CM Punk stimmt einfach alles. Er hat das Gesamtpaket von sehr gutem Wrestling, Micwork und Ausstrahlung und er ist so wie er ist. Deshalb die volle Punktzahl!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ARIZAwrote on 15.06.2012:[10.0] "Egal ob bei ROH oder anderen Indys oder heute bei der WWE. Punk ist ein Meister im Ring und am Mikro. Etwas anderes als die Höchstwertung ist für mich unmöglich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Luke1984wrote on 12.06.2012:[10.0] "Was soll man da noch viel zu ihm sagen? In allem was er tut sogut wie perfekt. Die WWE kann froh sein, so einen wie ihn zu haben. Der letzte wirklich seriöse Newcomer im stätigem Main Event."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 7TheEwrote on 02.06.2012:[9.0] "Schon seit seinem Beginn bei WWE einer der besten auch heute noch mit die besten Promos und gutes Wrestling!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sascha311wrote on 02.06.2012:[10.0] "Zur Zeit ist CM Punk einfach an der Spitze der Wrestling Welt und somit einer der Besten Wrestler der Welt und für mich ist er einfach einer der besten World Champions aller Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jericho is excellencewrote on 22.05.2012:[10.0] "Derzeit der beste Worker der US-Mainstream Szene. Im Gegensatz zu vielen Jungs die aus den Indies hochkommen ist Punk nicht nur im Ring unbestrittene Weltklasse, sondern ist auch am Mikrophon zu den Allerbesten zu zählen. Wenige Wrestler haben je den Ausdruck "Total Package" so verdient gehabt wie Punk. Der erste Face-Run war gut, als Heel zeigte er seine ganze Klasse und mit seinen 2011er performances Pipe-bombte er sich dann in die Riege der Greatest of all time. Seit Jahren der Grund Nummer 1 WWE zu gucken."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Remixxismwrote on 20.05.2012:[10.0] "Mit Punk wird es nie langweilig. Er ist für mich so der Clown in der WWE. Am Mic ist er einfach genial und auch im Ring hat er die besten Voraussetzungen um zu gewinnen. In der Fehde mit Jericho hat mir Punk eindeutig besser gefallen, schon allein weil er nicht immer das gleiche macht. Mal ist er der Lustige, mal der Böse. Immer abwechslungsreich!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Undertaker95wrote on 14.05.2012:[10.0] "Die Entwicklung einfach genial , wo er in der ECW war hätte ich nie gedacht das er so weit kommt aber er hat es geschafft Suuper !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kenji-sanwrote on 06.05.2012:[10.0] "Bei CM Punk stimmt einfach alles. Er verbindet gutes technisches Wrestling mit sehr guten Promos. Er ist einer der wenigen WWE-Superstars mit denen man sich selbst identifizieren kann. Seine Fehde mit Chris Jericho ist eine der besten die er gehabt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NoHomewrote on 01.05.2012:[9.0] "Sehr Guter Wrestler, Unterhaltsamer Worker, Guter Micworker -> Update: Mittlerweile gefällt mir dieser Kerl immer mehr die Fehde mit Cena, jetzt die Fehde mit Y2J großes Kino!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BenniRKOwrote on 23.04.2012:[9.0] "CM Punk ist in den letzten Jahren auf ein gleiches Level wie Chris jericho gestiegen, da Ihm Niederlagen wie 2010-2011 nichts mehr ausmachen.  Er ist derzeit immernoch einer der Interessantesten Charaktere der WWE da er im Gegensatz zu Leuten wie Cena oder Orton Ecken und Kanten hat und somit kein „Superheld“ sondern jemand ist mit dem man sich vergleichen kann und jemand der nahbar ist.  Sein wrestlerisches Können ist ohne Frage mehr als gut, wobei er in seiner Indiezeit noch etwas besser war oder besser gesagt durfte er da mehr zeigen.  Darum würde ich CM Punk 9 von 10 möglichen Punken geben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ZZRuebewrote on 22.04.2012:[10.0] "Punk ist Punk - und das ist gut so. :-)) Er kommt IMMER authentisch rüber,  hat Charisma + Ausstrahlung (ich habe ihn nur einmal live erlebt, aber der Funke springt sofort über) - zusammengenommen mit seinem wrestlerischen Können finde ich, ist's 'ne ZEHN! :-D"
Rating: 10.0
Sentiment: 0.5568181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Prodirwrote on 15.04.2012:[10.0] "Eigentlich benötigt er keine Bewertung, denn es bedarf zu keiner, aber der Formsache wegen: Sein Run in der WWE begann gefühlt im Jahr 2009 nach dem Sieg in der Fehde gegen Jeff Hardy, nach mehreren Ups and Downs kam dann Money in the Bank 2011 und Punk steht automatisch als Symbol der Revolution. Typisch Punker. Best in the World? Aber natüüüürlich, mein lieber Johann. Da ich aber seit der letzzten Stunde alle Bewertungsphrasen und -metaphern genutzt habe, erlaube ich mir diesen Kommentar: Yes, you do have anybody's attention now!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mintaquewrote on 11.04.2012:[10.0] "Hats im Ring drauf und ist am Mic echt klasse. Schön das ihm die WWE jetzt den Status gibt den er verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MicCheckwrote on 07.04.2012:[10.0] "Keiner verbindet Ernsthaftigkeit und Comedy so gut in seinen Promos wie CM Punk. Keiner bringt Emotionen sowohl am Mic als auch im Ring so gut rüber wie er. Wie er Johnny Laurinatis dauernd auf die Schippe nimmt ist einfach nur genial.  Er brachte mich mit seinem Pipebomb-Gimmick dazu, RAW wieder regelmäßig anzuschauen und ist derzeit einer der wenigen Gründe, warum ich überhaupt noch die WWE verfolge. Kurz gesagt: The best in the World."
Rating: 10.0
Sentiment: 0.3846153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Alex Riley 4 wwe championwrote on 19.03.2012:[10.0] "Am Mic und im Ring der beste Wrestler in der WWE! Er spricht seine Meinung offen aus und ich bin dankbar, dass er geblieben ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Saschwrote on 12.03.2012:[10.0] "Gefällt mir persönlich nicht so gut in der Rolle des Heel liegt aber eher daran das er mir zu symphatisch für diese Rolle ist, da ich ihn lieber als Face sehe. Spielt seine Rolle als Heel aber auch sehr gut er kann zu einem der ganz ganz großen meiner Meinung nach werden. Wrestlerisch hätte er sich ne 10 verdient. Mal sehen was noch kommt.  Hehe, und wie vor zweieinhalb gesagt einer der ganz großen! weiter so!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Alorionwrote on 04.03.2012:[10.0] "Gefällt mir seit langer Zeit sehr sehr gut. Am Mic top und auch im Ring sehr stark."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Man of Warwrote on 22.02.2012:[8.0] "@Mirko, hast du schon mal was von Meinungsfreiheit gehört? "Kogoro Mori" gibt einen plausiblen Grund warum er ihn nicht mag und dieser Grund entspricht sogar der Wahrheit. Egal was er oder auch ein Jericho machen, das sage Ich als wirklich großer Fan von Jericho, hier ist es immer richtig. Von euch hört man immer nur "er ist gut im Ring und am Mic blablabla". Von mir bekommt er nur 8 Punkte denn mit einem Shawn Michaels kann er einfach nicht mithalten und seine Promos sind nicht unbedingt die abwechslungsreichesten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Golgotawrote on 13.02.2012:[10.0] "Versiert am Mikrofon, unglaublich gut im Ring und auch privat sehr sympatisch. Einer der Größten seiner Generation! Gefällt mir als Heel besser, aber auch als Face ist er großartig. Er bringt einfach alles autentisch rüber."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: EnemyOfJusticewrote on 02.02.2012:[10.0] "Best in the World! Ob als Straight Edge Superstar oder eben als der Beste der Welt und Revolutionär, ich mag den Menschen Phil Brooks und CM Punk einfach. Promotechnisch wohl auf Platz 1, im Ring das wohl beste Gesamtpaket jetzt, Charisma ohne Ende, zeitweise hatte er unangenehmen Phasen, doch CM Punk ist zu jeder Zeit wohl der Beste, den die WWE hat und haben wird!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fighter Daronwrote on 02.02.2012:[8.0] "Jericho's successor in all aspects, inring working, mic, charisma and IWC overrating."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CM Yodawrote on 01.02.2012:[10.0] "Für mich momentan einer der Hauptgründe beim Wrestling bleiben. Einfach authentisch, lebt sein Gimmick und ist so immer glaubwürdig. Ein super Techniker und am Mikro ein Gott. Nach seine Promoserie im Sommer 2011 habe ich ihn endgültig ins Herz geschlossen. Auch wenn das Storyline war, es war ein Stück weit auch die Gedanken- und Gefühlwelt CM Punks. Wann immer ich ein Interview lese, wirkt es werder gekünstelt noch aufgesetzt. Für mich einer der besten seiner Generation , vielleicht der kopletteste den das Wrestling im Moment zu bieten hat - the best in the world! ;)"
Rating: 10.0
Sentiment: 0.5277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Manolowrote on 30.01.2012:"Im Ring hervorragend, auch wenn es da noch Wrestler gab und gibt, die ein Stück weit besser sind/waren. In der WWE aber der beste Wrestler nach Bryan Danielson und im Gegensatz zum ehemaligen American Dragon ist Punk auch am Micro absolut spitze. Für moch hat er definitiv das stärkste Gesamtpaket im US-Mainstream."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Senajwrote on 27.01.2012:[10.0] "Er hat alles was es braucht um an der Spitze zu sein. Sein ganz eigener Stil macht ihn zu etwas ganz Besonderem.  Momentan ist er vielleicht wirklich der beste Wrestler der Welt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nohmetalheadwrote on 19.01.2012:[10.0] "Momentan der beste aktive Wrestler im Mainstream Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Alex Tremewrote on 16.01.2012:[10.0] "Phillip hat mich schon in seiner ECW-Zeit sehr von sich überzeugt. Er ist als Heel, aber auch als Face ein guter Worker. Mic-Skills hat er alle Male und technisch ist er auch begabt. Ich sehe eine große Zukunft mit der WWE. Und wenn nicht, dann hat ROH einen Topstar mehr. CM Punk 4 life. 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dragonulteowrote on 06.01.2012:[10.0] ""The Best Wrestler in the world" that is what the WWE Champion, CM Punk, says and i agree with him that he is a great superstar"
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Iksuepsilon83mwrote on 25.12.2011:[10.0] "Nachdem ich anfangs dachte, kein schlechter, aber auch keiner, den man immer sehen möchte und später von ihm ziemlich genervt war, habe ich jetzt erst gemerkt, dass er eigentlich nur schlecht gebookt wurde und man jetzt erst sieht, wie genial er wirklich ist!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: skoeswrote on 08.12.2011:[10.0] "Am Mikro (mittlerweile) ein absoultes Ausnahmetalent (da auch spontan, er spielt mit dem Publikum), und auch zu reihenweise guten Matches fähig.  Absolut überzeugend und daher die Bestnote"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: chicagomadepunkwrote on 26.11.2011:[10.0] "CM Punk schafft es immer wieder eine hammer Promo rauszuhauen, ist ein super worker und schafft es als einziger RAW interessant zu gestalten! Da kann ich nichts anderes als 10 Punkte vergeben!"
Rating: 10.0
Sentiment: -0.013621794871794907
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MaecksPiwrote on 20.11.2011:[10.0] "Momentan der beste und interessanteste Wrestler in der WWE !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Roode66wrote on 06.11.2011:[10.0] "Einer der besten und charismatischten Wrestler der WWE, einer der besten Micworker der WWE und der beste Heel, den die WWE seit Edge und Jericho zu bieten hat. Lediglich als Face weiß man anscheinend nicht, wie man mit ihn umzugehen hat, aber das ist generell eine große Schwäche der WWE. Aber momentan überzeugt er ja noch in seiner Rolle, auch wenn man den Hype um Money in the Bank herum und die Story gegen Cena, Nash, Hunter und co teilweise wieder in den Sand gesetzt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MadDogwrote on 31.10.2011:[10.0] "Best balance between character and in-ring work to come in the 2000s."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: stallownagewrote on 29.10.2011:[10.0] "Was soll man zu CM Punk noch großartig sagen? Die Charisma-Bombe in Person, der beste Promoguy der Liga, wenn nicht sogar ligenübergreifend in Nordamerika und auch im Ring eine verlässliche Größe. Erhielt im Sommer endlich DEN Push zum absoluten Main Eventer und bot zahlreiche Momente, die sogar mit Attitude-Highlights locker mithalten konnten. Hat außerdem momentan so ziemlich das geilste Shirt seit Austin 3:16 oder der nWo am Start. Wird nach dem kurzen Triple H-Intermezzo auch sicher bald wieder im Titelrennen etabliert sein und Wrestlemania mit der WWE Championship betreten. Kann man ne 11 geben?"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheIronSheikwrote on 28.10.2011:[10.0] "Sehr genialer Mann. Er hat alles, was man braucht, Charisma, kann am Mic überzeugen und ist dazu noch Klasse In-Ring.  -10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Shankswrote on 27.10.2011:[10.0] "Punk hatt sich wirklich durchgebissen und nun steht er mit ganz oben. Seine Fähigkeiten im Ring und am Mic sind einfach großartig.  Für mich der beste Wrestler zurzeit, ich hoffe das es so weiter mit ihm geht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: StrongGreatSelfishwrote on 27.10.2011:[10.0] "Mic-Technisch ein Gott, Ringmässig ein Gott, Ausstrahlung ist mit den kurzen haaren viel eher da, als mit den langen.  Der Kerl kann Matches auf die Beine stellen gegen z. B Chris Hero, John Cena, Bryan Danielson... ganz egal.  Der Mann verdient seine 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheRatedRLegendKillerwrote on 25.10.2011:[10.0] "CM Punk bringt eine gewisse Frische in den Main Event RAWs, die die WWE schon seit langem benötigt. Ein fantastisches Mic-Work, gepaart mit einer ordentlichen Menge an Charisma und genialen In-Ring Skills, machen CM Punk zu einem der interessantesten Wrestler/Sports Entertainer aus der "kleineren Riege" seit Chris Jericho. Punk ist mit wöchentlichen Top-Leistungen mittlerweile der Hauptgrund sich Raw anzuschaun und macht sich damit für die WWE schier unentbehrlich. Hält der Push des Straight Edge Superstars noch eine Weile an und geht der Aufbau weiterhin so gut, hat man in Punk einen neuen Main Eventer gefunden, der mit seinen Promos auch Pay per Views verkaufen kann. Hail to the Punkster!"
Rating: 10.0
Sentiment: 0.08605769230769231
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MVPforeverwrote on 22.10.2011:[10.0] "Ein Promo-Gott. An sein Match gegen Cena bei MitB wird man sich wohl noch länger dran errienern können. Auch im Ring ist er einer der Besten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nguyen2103wrote on 21.10.2011:[10.0] "CM PUNK ist einfach nur Göttlich und mein Vorbild in sachen Lebenstil. Der Typ hat einfach alles, er hat den Look, kann Wrestlen und ist einfach nur eine PIPEBOMB am Mic. Solche Wrestler gibst nur selten, vor allem diese drei genannten Eigenschaften. Das macht ihn einfach komplett. Ich sehe ihn nicht als besten Wrestler der Welt aber den Komplestesten Wrestler, der Welt. Nach seiner Karriere könnte er alles machen, Kommentator, Trainer oder sogar Headbooker. Traum wäre, wenn er Booker wäre und Danielson als Trainer für die WWE fungiere."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nerowrote on 19.10.2011:[10.0] "CM Punk. Ja, was soll man noch sagen, eigentlich ist alles klar: Er ist aktuell der beste Techniker im WWE-Roster. Er ist aktuell der beste Micworker im WWE-Roster. Er ist aktuell der beste Kommentator im WWE-Roster. Er hat am meisten Charisma im aktuellen WWE-Roster. Er ist sowas von over. Er hat die beste Mimik im WWE-Roster. CM Punk kann ohne Zweifel behaupten, er sei der Beste der Welt, ohne zu lügen. Mehr gibt es zu Punk nicht zu sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JeriMizwrote on 18.10.2011:[10.0] "BAM, da ist der Punk den ich sehen will! Micwork und seine Gestik, einfach alles drum und dran ist Göttlich, er kann Wrestlen und ist einfach Mr. Rebellion! Jetzt gibts wieder keinen Zweifel an den 10Punkten! PS: Ice Cream Bars!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: what89wrote on 13.10.2011:[10.0] "Ich war nie CM Punk Fan, aber da ich seit MitB wieder das Tagesgeschehen verfolge muss ich feststellen, dass er das Beste ist, was die WWE momentan zu bieten hat.  Klasse am Mic, sehr gut im Ring und außergewöhnliches Charisma, verpackt in einer bisher geilen Storyline.  Deshalb momentan 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rio123wrote on 11.10.2011:[10.0] "Der Stefan Raab des Wrestlings. Der Mann hat Charisma, Mic-Skills, In-Ring Skills und alles was er anfasst wird zu Gold!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Crushingwrote on 11.10.2011:[10.0] "Einfach der beste Superstar in der WWE zurzeit. Im Ring unglaublich gut, Mic-Skills sind ausgezeichnet. Als er 2010 als Kommentator fungierte, war er einfach nur ein Gott im Kommentieren. 10 Punkte, sehr gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mustafawrote on 09.10.2011:[10.0] "Was soll ich nur sagen. Er ist der aktuelle David Guetta der WWE. Er mischt sozusagen die Szene richtig auf. Ich hätte nie gedacht, dass er irgendwann mal ein Maineventer wird, weil er als Anführer des New Nexus so richtig schlecht dargestellt wurde. Die Fehde gegen Randy Orton war ja mal für'n A****. Und dann als er der No. 1 Contender war ist er sozusagen explodiert. Seine Promos waren göttlich, seine In-Ring Skills haben sich verbessert (NICHT DAS FRÜHER AUCH SCHLECHT WAR) und das allerwichtigste er durfte Vince McMahon, Triple H, Kevin Nash und John Cena in den Arsch treten. Jetzt muss er nur gegen Alberto Del Rio fehden und den Titel gewinnen und natürlich ohne die Beteilung von John Cena. Mehr habe ich nicht zu sagen. 10 saubere Punkte."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: dsierwrote on 08.10.2011:[10.0] "Ich muss zugeben, dass ich vor seiner Sommerfehde gegen Cena kein großer Punk Fan war. Ich fand ihn sogar überbewertet. Aber jetz hat er mich vollkomen überzeugt und ich bin der Meinung, dass CM Punk derzeit der beste Worker innerhalb der WWE ist. Super Micwork, super In-Ring Skills, Ausstrahlung und Charisma ohne Ende. Nichts als 10 Punkte für CM Punk!"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: KoZywrote on 07.10.2011:[10.0] "Auch wenn er schon lange dabei ist kommt seine Karriere erst jetzt so richtig ins Rollen meiner Meinung nach. Zusammen mit Randy Orton und John Cena die Zukunft der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ShakDragoonwrote on 04.10.2011:[10.0] "Er ist für mich Chris Jericho's legitimer Nachfolger: Charismatisch und extrem talentiert... ein absolutes Total-Package, der bei WWE hoffentlich auch nur im entferntesten ähnlich gute Matches, wie bei ROH zeigen darf! Die Fans scheinen seine Leistung zumindest allmählich zu würdigen, wenn man sich die Merchandiseverkäufe ansieht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sirius Van Grathwrote on 02.10.2011:[10.0] "CM Punk ist ein Gott im Ring, am Mikrofon und hat eine Menge Charisma!  Und hinzu kommt noch sein Lifestyle! Deswegen 10 Punke."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: hhhwrote on 25.09.2011:[10.0] "CM Punk hat mir mit seiner Promo die er vor Money in the Bank bei RAW gehalten hat aus der Seele gesprochen (was das Thema WWE anbelangt). Die Art und Weise wie er mit dem Mic umgehen kann verdient mindestens 10 von 10 Punkten!  Auch sein wrestlerisches Talent, welches er im Ring zu Tage legt ist zu begutachten.  Ausserdem find ich, dass bei ihm ein Gimmickwechsel genau zur richtigen Zeit kam, denn ich könnte mir den Summer of Punk nur schlecht mit einem Straight Edge Heel Punk vorstellen."
Rating: 10.0
Sentiment: -0.04423076923076924
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ragewrote on 24.09.2011:[10.0] "hat alles was ein wrestler braucht.... hat ein sehr gutes mic work und im ring ist er unglaublich... hat viele moves drauf auch wenn er nich alles zeigen kann/darf"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WhiteHummerDriverwrote on 16.09.2011:[10.0] "Nachdem ich 2004-2005 durch immer mieser werdende WWE und vor allem Cena-Überschuss absolut den Glauben ans Wrestling verloren hatte, war Punk einer derjenigen der mir wieder Freude am Wrestling gegeben hat. Nicht nur waren seine Matches in ROH sehr geil, nein vor allem ist dieser Typ für mich der charismatischste Wrestler den ich seit den goldenen Zeiten von Austin, Rock und 90er Jahre Heel-HBK gesehen hab. Die heutigen Stars wie Cena und Orton haben für mich keine große Ausstrahlung weil sie auf mich wie Fließband-Roboter wirken. (Cena hat im Gegensatz zu Orton - der wie ein Produkt eines WWE-Zuchprogramms wirkt - wenigstens ein natürliches Charisma) Punk hingegen überzeugte mich allein schon mit seiner Mimik beim Entrance zu Joe vs Punk 2 als ich ihn das erste mal sah. Dazu kamen endgeile Promos jedesmal wenn er das Mikro in die Hand nahm (hauptsächlich als Heel 2003 und während des Summer of Punk 2005), tolle Leistungen im Ring sowohl im Einzel- als auch im TagTeambereich, und extrem unterhaltsam am Kommenatorenpult (was er offenbar auch bei WWE nicht verlernt hat).  Dazu eine knallharte Ich-sag-was-ich-denk-Einstellung mit der man entweder umgehen kann oder nicht, die ich jedoch respektiere.  Und mit seinen Promos im Sommer hat er nun endlich das erlangt was ihm schon seit 2009 zusteht: ein (scheinbar) fester Platz im Main Event.  Micskills+Ringskills+Charisma = für mich eins der besten Komplettpakete dieser Generation im Us-Wrestling."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: VanderVaartwrote on 13.09.2011:[10.0] "Er nimmt keine Drogen (Alkohol, Zigaretten, ... ) und erfüllt somit seine Vorbildfunktion.  Vor der Kamera erläutert er sein Straight-Edge-Gimmick, wenn auch ironischerweise meist nur als Heel. ("I am better than you"). Er ist der ROH-Wrestler, welcher es in der WWE bisher am weitesten gebracht hat. Punk hat viele "stiffe" Moves im Reportoire, obwohl es nicht sehr spektakulär wirkt, aber eben effektiv. Trotzdem muss ihm die Zukunft in der Entertainment-Liga gehören, da er sich auch nicht davor scheut sich die Haare schneiden zu lassen oder eine Maske zu tragen. Nun darf er endlich auch offiziell Face sein. Argumentativ gesehen, war es aber schon die ganze Zeit. Die Ratings sind zwar nicht sonderlich gestiegen. Im Internet hat CM mit seinen "Shoots" dafür aber eine unglaubliche Aufmerksamkeit erreicht. Sollte er nach seiner Karriere Kommentator werden und es wird nicht schlechter als der Testlauf, dann sieht die Zukunft für ihn sehr rosig aus."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Baldrickwrote on 09.09.2011:[10.0] "Mir hat Punk als Face durchaus zugesagt, aber was er als Heel und sogar als Tweener zeigt, ist grossartig. Man lässt ihn endlich machen. Und Punk liefert. Genau das ist für mich, was einen guten zu einem sehr guten Wrestler macht. Überdurchschnittlicher Performer im Ring und mitverantwortlich für einen der besten Charaktere und Storyline der letzten zehn Jahre!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rey2004wrote on 05.09.2011:[10.0] "The Straight Edge! Sehr guter Wrestler, guter Performer - Superstar!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated R Punkwrote on 04.09.2011:[10.0] "Nach mehreren Anläufen schaffte er es nun endlich komplett im oberen Bereich der WWE Fuß zu fassen (das wäre ihn schon damals in SmackDown auf dauer gelungen wenn er nicht hinterher für den Undertaker gejobbt hätte und man diese Kacke mit der SES abgezogen hätte) Aber mittlerweile ist CM Punk DER Grund die WWE zu schauen und ich wollte mich schon verabschieden als nicht klar wurde ob Punk einen neuen Vertrag unterschrieben hat. Und auch jetzt überzeugt er auf ganzer Linie und haut lauter geile Promos raus! Ich hoffe man lässt Punk nicht wieder fallen und behält ihn auf dauer im Main Event!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ringsidewrote on 03.09.2011:[10.0] "CM Punk ist einer der größten hoffentlich sehen wir ihn noch lange Zeit in der WWE und auch wieder als Champ! Vor allem überzeugt er durch seine Mic Skills und Ringfähigkeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CMPunk17wrote on 02.09.2011:[10.0] "Er sollte das Gesicht der WWE sein meiner Meinung nach ist er der beste wrestler auf der Welt weil er das perfekte Gesamtpaket hat, in der Attidude Erä währe er besser gewesen aber auch jetzt kann man gar nicht genung von ihm kriegen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MC Punkwrote on 02.09.2011:[10.0] "The best in the world! Sicherlich ist das etwas übertrieben aber CM Punk ist zweifelsohne einer der Besten. Großartiges Micwork und klasse In-Ring Skills. Er hat die WWE fast schon revolutioniert und ist im Moment ganz klar DER Mann der Promotion, denn seit Punk im Main Event steht ist es wieder deutlich interessanter geworden.  Ganz klar ein zukünftiger Hall of Famer."
Rating: 10.0
Sentiment: 0.45555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kitanoyamawrote on 01.09.2011:[9.0] "Er ist einer derjenigen die ihren eigenen, tatsächlichen Lebenstil sehr gut in der WWE repräsentieren und darstellen können. Außerdem hat er sich über die Jahre hinweg kontinuierlich gesteigert, besonders was sein Micwork angeht. Sein Wrestling ist zwar nach wie vor nicht das ansprechenste, aber er gibt eine rundherum überzeugende Figur mit sehr guter Qualität ab."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Navidwrote on 31.08.2011:[10.0] "Er stellt im Moment das Beste dar was die WWE zu bieten hat. Was ihm noch fehlen würde wäre ein Wrestlemania Mainevent. Hoffentlich sehen das die Booker dieses Jahr ähnlich.  UPDATE: Ich schrieb die obrigen Zeilen Ende Januar 2011 und trotz überragender Leistungen wurde er bei Wrestlemania nicht auf die ihm gebührende Position gesetzt. Unfassbar welchen Hype man um ihn und den "cult of personality" aufbaute und wieder versaute. Dennoch hat er seinen Legendenstatus sicher und wird von mir wie vielen anderen nie mehr vergessen werden. Im Moment was das Gesamtpacket angeht "the best in the world"."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Schandmaulwrote on 30.08.2011:[5.0] "Mal ein kleines Update. Ich weiß nicht warum ihn alle so toll finden. Im Ring ist er solide, am Mic ok. Aber mehr seh ich da wirklich nicht. Ich finde seine Micskills bei weitem nicht so toll wie sie gemacht werden. Gerade seine legendäre Rede bei RAW fand ich einfach nur ok, aber nicht mehr. Dazu gefällt mir sein Wrestlingstil nicht sonderlich. Mit anderen Gegnern ok, aber ich hab in der WWE noch kein Match mit ihm gesehen das mir richtig gut gefallen hätte."
Rating: 5.0
Sentiment: 0.3173076923076923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheCMMizNexuswrote on 27.08.2011:[10.0] "He's God. Ob im Ring oder am Mic der beste der WWE im Moment .....  Pipebomb :D"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CMPunkGRGDXwrote on 27.08.2011:[10.0] "Ich bin Fan der ersten Stunde und ich finde es großartig wie die WWE ihn pusht. CM Punk ist einer der, wenn nicht sogar der beste Wrestler bzw Superstar im Business der heutigen Zeit. Sein Stil, Gimmick, Mic-Skill übergossen mit spitzenmäßiger Ring-Performance - Das ist es was mich an ihm fasziniert. Ich hoffe, dass er seine beste Zeit noch vor sich hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CM Punk und Edgewrote on 26.08.2011:[10.0] "Einfach in allem das beste was die WWE heute zu bieten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Danninhowrote on 26.08.2011:[10.0] "Bin schon sehr lange Punk Fan und ich fande ihn bei RoH einfach genial, als er dann zur WWE ging wurde er meiner Meinung nach nie wirklich gut eingesetzt immer mal wieder was gutes doch wieder fallen gelassen die jetzige Rolle ist genau das was Punk braucht, enn jetzt ist er auf dem Level wie ich ihn kenne einfach göttlich und wenn die Booker das so weiter machen hat er das Zeug der Austin der neuen Generation zu werden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: swaswa96wrote on 22.08.2011:[10.0] "Meiner Meinung nach der beste im Ring und am Mikrofon, der heutzutage in der WWE ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheAdaawrote on 20.08.2011:[9.0] "Schon in den Indys war Punk eine Klasse für sich und nicht umsonst hat er sich dort bereits eine loyale Fanbase aufgebaut. Als er dann in die WWE kam wurde er unten gehalten, musste vieles über sich ergehen lassen und der Durchbruch wollte einfach nicht kommen. Das hat sich mittlerweile geändert und Punk hat sich an der Spitze festgesetzt. Mit genialen Mic Skills, herausragenden Wrestlingskills und ein enormes Charisma helfen ihm dabei momentan RAW im Alleingang zu tragen und dafür brauch er nicht einmal den Titel. Punk ist momentan das heißeste Eisen der WWE und das zu Recht. Er hat es sich verdient."
Rating: 9.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Damon Strikerwrote on 19.08.2011:[10.0] "Sehr guter Wrestler mit der nötigen Ausstrahlung und einem tollen Charakter, den Punk immer wieder aufs neue weiterentwickeln zu können scheint. Hat mit seinen tollen Promos in letzter Zeit bewiesen, dass er auch auf diesem Feld ganz oben mitspielt. An der Höchstpunktzahl führt kein Weg vorbei!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wwefan4everwrote on 19.08.2011:[10.0] "CM Punk ist einfach nur weltklasse pur. Seine Shoot-Promo hat er extrem gut over gebracht und seine Technik ist der hammer. CM Punk schon immer einer der besten Worker der Welt klasse!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jack Casadywrote on 15.08.2011:[10.0] "Momentan der beste Wrestler der WWE.  Cooles Outfit, geile Einstellung, klasse Wrestler!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JohnOlafBlackwrote on 15.08.2011:[10.0] "hat sich über die letzten Jahre zu einem der absoluten Top-Performer der WWE gemausert!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bananaramawrote on 14.08.2011:[10.0] "Ich habe ihn schon immer für recht talentiert gehalten, auch wenn mir sein Gimmick vorher nie so recht zugesagt hat. Aber in letzter Zeit hat er immer wieder bewiesen, dass er sich hinter den Großen des Business nicht verstecken braucht. Er bringt alles mit, was man braucht. Charisma, einen eigenständigen Charakter, In-Ring Skills und Mic Work was einen unterhält. Zudem ist er der erste, der es geschafft hat mit Cena ein 5 Sterne Rating auf die Beine zu bringen, was nicht mal ein Michaels geschafft hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sloverwrote on 13.08.2011:[10.0] "CM Punk ist zurzeit der Worker, der am meisten Stimmung in die Halle und gutes Wrestling abliefert. Seine Promos sind einfach genial und Matches immer sehenswert. Er wird (hoffentlich) eine neue Ära in die WWE holen. Zurzeit passt einfach alles und deswegen 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: the-ayatollahwrote on 10.08.2011:[10.0] "The Voice of the Voiceless must be heard!  Absolut genial im Moment. Er kann der nächste ganz große revolutionäre Superstar werden, der Messias den die Wrestlingwelt im Moment dringend nötig hat. !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JTGTheManwrote on 09.08.2011:[10.0] "Kann allen nur zustimmen. Der Mann IST das Wrestling Pur. Technisch super, klasse Moves, Charisma und Mic-Skills explodieren nur so vor Genialität. Der Mann weiß echt wie manŽs macht. Mein persönliches Highlight dieses war und wird auch definitiv MitB sein und bleiben. Allein die Crowd hat das Match schon mind. zum wichtigsten des Jahres gemacht. Alles in Allem ein großartiger Wrestler an den sich die Wrestling Welt auch noch in 100 Jahren erinnern wird."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jaytodadeewrote on 07.08.2011:[10.0] "Der Kerl bringt einfach alles mit. Sensationelles Micwork, Charisma, Technik, ein Hammer Gimmick, ... . 10 Punkte - ohne wenn und aber!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SinMysterio1904wrote on 07.08.2011:[10.0] "also er einer der besten der je in der wwe war / ist sehr guter techniker und ein perfekter allrounder außerdem ist er auch super am mikro 10 PUNKTE"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Basti1989wrote on 04.08.2011:[10.0] "Als Boss der Straight Edge Society hat er mich eher genervt. Was er aber seit ein paar Monaten im Ring abliefert ist ganz großes Kino. Lässt man ihn aus der Story mit Cena als Sieger hervorgehen und ihn Tweener sein, dann wird er ein Mann sein, der in 10 Jahren solch einen prägenden Eindruck hinterlassen hat, wie seinezeit The Rock oder Steve Austin. Und wenn man es geschickt anstellt, dann kann man Del Rio und Punk in eine Fehde packen, Cena seine Auszeit nehmen und dann bei WM gegen Rock - ohne Titelbeteiligung - antreten lassen. Punk muss derjenige sein, der den Platz im Dauer-Mainevent einnimmt. Edge war so jemand und Michaels oder der Undertaker - je nachdem, wer gerade fit war. Denn außer Cena, Orton und Mysterio hat man keine Alternativen und so besteht immer die Gefahr der Langeweile."
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MrDestinywrote on 04.08.2011:[10.0] "Super Mic-Skills, super Wrestler, super Gimmick und hammer Heel"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: StoneColdStunnerwrote on 03.08.2011:[10.0] "Genialer Wrestler, mehr hab ich dazu nicht zu sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Mountiewrote on 02.08.2011:[10.0] "Lebte in den ersten WWE-Jahren als Babyface von guten Matches, seiner Frische und dem teils absurden Hype um ihn. Seit er Heel ist, hat er sich aber gefunden und glänzt mit einem starken und - wie er mittlerweile auch bewiesen hat - variablem und krisenfesten Charakter. Auch wenn ich mich immer noch über einige übertriebene Ausläufer des Internet-Rummels um Punk amüsiere, ist jetzt einfach festzustellen, dass Punk auf dem ersehnten Spitzenplatz in der Liga angekommen ist - und das völlig zu Recht. Nachdem er die Fesseln des Straight-Edge-Gimmicks abgelegt und 2011 endgültig die Decke durchbrochen hat, fehlt mir nach langem Sträuben auch die Argumentationsgrundlage seine Wertung nach oben zu begrenzen. Weil Punk aber trotzdem immer noch etwas mehr gehypet werden muss, als er ist, noch die Zusatzbemerkung: Punk ist immer noch längst nicht der neue Austin oder Rock (und erst recht nicht größer) und auch nicht die Ablöse für John Cena. Wer mit solchen Namen hantiert, geht von einem Mann aus, der die Liga tragen würde - und das hoch. Ob Punk das kann - der Beweis ist noch anzutreten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Papa Popanzwrote on 02.08.2011:[10.0] "Mann das ist ja mal endlich nen geiler Typ Egal ob Heel oder Face UPDATE:Best in the world today"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Marco2911wrote on 01.08.2011:[10.0] "Zurzeit einfach perfekt. Am Mic ist er perfekt. Im Ring sehr sehr gut. Hat Charisma. Er weiß zu unterhalten. Man kann nur die 10 Punkte geben. Best in the World"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tribbel Eitschwrote on 31.07.2011:[10.0] "Es fällt mir schwer, CM Punk zu bewerten, ohne in Euphorie zu verfallen. Ich versuch's trotzdem: der Mann ist einfach unbezahlbar gut. Der Mann kann wirklich unfassbar gut reden, hat ein wahnsinnig cooles Auftreten UND kann auch noch wrestlen. Best in the World!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wuschl 85wrote on 31.07.2011:[10.0] "Toller Typ. Sein Gimmick kommt glaubwürdig rüber. Könnte einer der großen Stars der Zukunft werden. Hoffe nur das er behutsam zum Main-Eventer aufgebaut wird. Ich denke es besteht viel Potential nach oben deshalb gebe ich noch keine 10 Punkte. Einer der interresantesten Wrestler derzeit--> So jetzt ist es soweit es gibt die 10. Inring-perfomance, Charisma, Promos. Die Punk-Ära beginnt und hält hoffentlich an........"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Auditorewrote on 28.07.2011:[10.0] "Er ist einer der Wrestler die man auf ewig sehen will, die perfekt zuferlässig sind und die immer wieder um Trubel um ihre Person sorgen können. Außerdem im Ring und am Mic unfassbar stark. Wer so gut ist, machts mir leicht ruhigen Gewissens 10 Punkte zu geben."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RoadRunnerwrote on 28.07.2011:[9.0] "Für mich erst seit seinem Heel-Turn im Zuge des Cash-In interessant, da ich zum einen seine Vorgeschichte nicht kannte und zum anderen auch erst dann sein Mic-Work vor Augen bzw. Ohren geführt bekommen habe. Von den Promo-Skills ne klare 10 und auch die InRing-Skills sind durchaus auf dem obersten Level anzusiedeln - was für mich noch fehlt, ist der Draw-Faktor, bei dem er sich aufgrund der jüngsten Ereignisse auch auf dem Weg in die BellaEtage befindet. Aber da er dort aus meiner Sicht noch nicht angekommen ist und sich über einen längeren Zeitraum dort bewährt hat, reicht es (noch) nicht für die Maximalwertung."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The-SwiZZlerwrote on 27.07.2011:[10.0] "war seit dem anfang seiner wwe-karriere ein fan von punk.. super ring und mic-work ! leider bei seinem einstieg bei ECW am anfang nur ein nebencharakter.. aktuell der beste in der wwe, für mich vom mic work her auf einer wellenlänge mit the rock und vom ring-work her auf dem gleichen level wie shawn michaels... für mich absolut 200 punkte wert !"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cranewrote on 26.07.2011:[10.0] "Für mich ist CM Punk zurzeit der beste Wrestler den die WWE hat. Seine Promofähigkeiten sind einfach überragend und im Ring braucht er sich auch hinter keinem zu verstecken. Hoffentlich hat die WWE das jetzt endlich erkannt. Die Fehde gegen John Cena ist einfach genial aufgezogen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The last Outlawwrote on 26.07.2011:[10.0] "Cm Punk, hat mich damals schon begeistert, als er noch in der ECW gekämpft hat, sein Lebensstil gefällt mir besonders gut, und die Entwicklung die er in den letzten Monaten , vorallem in den letzten Wochen hatte unglaublich, als ich gelesen hab CM Punks vertrag geht zu ende und er wil nicht verlängern, dachte ich : schade war echt nen Wrestler den ich gern gesehen hab, doch dann kam die Bombe was jetzt abgeht ist unglaublich spannend"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: latinoheat4everwrote on 25.07.2011:[10.0] "Ein echt genialer Worker am Mic sowie im Ring. Klasse Matches hat er auch genügend gezeigt und am Mikrofon steht er den besten wie The Rock in nichts nach... wenn man ihn lässt. Insofern hat er bewiesen, dass er einer der Größten der Neuzeit werden kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bangjaminwrote on 25.07.2011:[10.0] "Ein Revolutionär der Neuzeit. Jahrelang bin ich davon ausgegangen: Okay, es wird nix spannendes mehr kommen. WWE verfällt zu nem ollen Kiddies-Programm! Aber dieser Mann hat es wirklich geschafft die WWE so interessant zu machen wie lange schon nicht mehr und das auch mal außerhalb des WWE Universums! Er ist Gold wert und das trägt er zurzeit auch völlig zurecht. Er hat einfach alles, was ein vollkommener Wrestler der Wrestling-Neuzeit braucht: Mic-Skillz, Ausstrahlung und ein riesiges Move-Repertoire (auch wenn er leider in der WWE [noch] nicht alles auspacken durfte bisher)."
Rating: 10.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: zeroegwrote on 23.07.2011:[10.0] "Ein großartiger Wrestler, der am Mic einer der besten ist wenn nicht sogar der beste."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LowJomoKiwrote on 23.07.2011:[10.0] "Bemerkenswert, ein Wrestler der von der Statur her eigentlich nicht direkt zur WWE passt: eher schmächtig und klein, kann nicht mit Powerhouse Aktionen punkten und braucht aber trotzdem weder Maske noch ein überirdisches Gimmick um sich als Champion in der WWE zu etablieren. Wrestlerisch ist er klasse und seine Mic-Skills sind spitze auch als Kommentator finde ich richtig unterhaltsam. 8 Punkte. Ich erhöhe aufgrund der letzten Geschenisse auf 10, denn momentan gibt es kaum einen Superstar der diese 10 Punkte mehr verdient hat als Punk."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: tosi82wrote on 23.07.2011:[10.0] "Punk ist pures Gold für die WWE. Was er aus sich in den letzten Jahren gemacht hat ist echt top. Durch seine 2 MitB Siege konnte er sich im ME etablieren und man sieht jetzt was man davon hat. Hammer Promos, Hammer Matches und er weiß wie man mir den Fans umgehen muss um sie auf seine Seite oder gegen sich zu bekommen. Vllt wird er der neue Stone Cold, wer weiß."
Rating: 10.0
Sentiment: -0.04999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kaepplewrote on 22.07.2011:[10.0] "CM Punk scheint im Augenblick das Wrestling in den USA ganz alleine auf seinen Schultern zu tragen - und dabei ist er doch eigentlich der arbeitsloseste WWE Champion aller Zeiten. Im Ring hat er mich immer begeistert, egal in welcher Liga er angetreten ist. Bei seinen Promos war ich oft hin- und hergerissen - manche trafen genau ins Schwarze, andere ließen mich weitgehend kalt. Aber dieser Sommer 2011 ist geprägt von seinem Namen, seinen Promos, seiner brillanten Mimik und Gestik, dem Hype um seine Figur, seinen Twitter-Meldungen und Youtube-Videos. CM Punk hat dem Wrestling mit seinen kürzlichen Auftritten ungeheuer viel gegeben. Und mich ein bisschen mit der WWE versöhnt, die mit ihm gemeinsam hier so viel richtig gemacht hat. Starker Wrestler, fantastischer Charakter - volle Punktzahl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mephistowrote on 21.07.2011:[10.0] "Er war schon immer mehr als nur großartig, aber mit der aktuellen Entwicklung und all den Geschehnissen macht er sich unsterblich :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gorthaurwrote on 21.07.2011:[10.0] "Nach seinem Heelturn in der WWE hat sein Charakter deutlich mehr Tiefe gewonnen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ruuviwrote on 21.07.2011:[10.0] "In letzter Zeit ist er zu einem meiner Lieblingswrestler geworde, da er einfach mal Dampf in dem doch recht lahmen Amy-Wrestling gebracht hat. So eine ein guter verkauf einer Storyline sollte gewürdigt werden, dazu ist seine Leistung im Ring gut und seine Mic arbeit brilliant."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Michael Shawn Hickenbottomwrote on 21.07.2011:[10.0] "In meiner persönlichen Top 10 ganz weit oben! Dieser Straight Edge Superstar ist genial!"
Rating: 10.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CM Punk Fanwrote on 21.07.2011:[10.0] "Er ist nicht umsonst mein Liebling, er hat Ausstrahlung, gewisse Fähigkeiten, fast alles. Ich gebe ihm deswegen 10 Punkte , weil ich es sehr Weltklasse fand, wie er gegen John Cena gekämpft hat."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Falki87wrote on 21.07.2011:[10.0] "Ich verfolge seine Karriere schon seit seiner Zeit bei ROH und bin froh, dass er nach den quälenden Jahren bei SD endlich den Durchbruch geschafft hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: shoopdawoopwrote on 21.07.2011:[10.0] "10 Punkte denn: Ihm gehört die Zukunft des Mainevents"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: spankywrote on 20.07.2011:[10.0] "Er hat sich gegen meine Erwartungen zum absoluten Top Heel etabliert und überzeugt in dieser Rolle fast vollkommen.  edit: Nun ist er endgültig am Gipfel angekommen! --> "The Best In The World""
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: downtown2wrote on 19.07.2011:[10.0] "Toller Wrestler und wahnsinnig am Mikro, dazu äußerst wandelbar. Seine bisherige Laufbahn machte einfach Spaß und die Straight Edge Einstellung dürfte ihn bei den Offiziellen weit nach vorne bringen. Der Durchbruch als absoluter Mega-Star dürfte gelungen sein, er ist nun neben Cena das Gesicht der Promotion. Mit seiner Ausstrahlung und Einstellung kann er eine neue Ära prägen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NHJ2102wrote on 19.07.2011:[6.0] "Der überbewertetste Wrestler den ich jemals gesehen habe"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Obermackerwrote on 18.07.2011:[7.0] "Als heel um Vieles besser als als fahles face, aber den push durch Sonne, Mond und Sterne kann ich nicht 100% nachvollziehen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Booker Cwrote on 18.07.2011:[10.0] "Punk ist einer der besten Micworker die es in der WWE gibt, aber den großen Hype um ihn verstehe ich nicht ganz. Punk ist sehr gut, aber im Gegensatz zu ein paar anderen Wrestlern, überschreitet er diese Grenze, wie ich finde, nicht. Im Ring ist er gut, aber nicht mehr. Das liegt aber wohl auch daran, dass ich nur seine WWE Zeit kenne. Edit: Im Ring hat er nun auch mich überzeugt und was Punk momentan abliefert ist weltklasse - 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Benji1706wrote on 18.07.2011:[10.0] "Natürlich hat Punk in den letzten paar Wochen sehr viel Hype und vor allem Geld generiert. Aber sch... geil war es trotzdem!  Zur Zeit stellt er eigentlich alles da, was seit Jahren gesucht wird. Ein CHARAKTER! Ein WRESTLER! Ein Mann mit ECKEN und KANTEN! KEIN Superheld! ... ich glaube so langsam merkt WWE, welch ein Talent sie in den letzten Jahren praktisch verschwendet haben.  Aber nicht nur in WWE, sondern auch in ROH hat Punk sensationelle Sachen gemacht (Matches gegen Joe etc. ) und es ist kaum zu glauben, dass Phil erst 32 Jahre alt ist. Prepare world... a PUNK is comin!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: oschihubertwrote on 18.07.2011:[10.0] "Auf dem Weg nach Oben. Wenn er jetzt nichts falsch macht kann er in die Liga eines Austin/Rock/Hogan/Cena aufsteigen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: chaoswrote on 18.07.2011:[10.0] "Dieser Typ einfach absolute spitzenklasse in jeder Sekunde!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: y94wrote on 18.07.2011:[10.0] "@tamam So ziemlich jede WWE Ikone von Steve Austin über Triple H, Edge, The Rock, Shawn Michaels und Bret Hart hat etliche Jahre und etliche Anläufe gebraucht um den ganz großen Durchbruch zu schaffen. Spätestens nach dem vergangenen PPV kann sich CM Punk in diese Liste einreihen. Qualität setzt sich nun einmal langfristig durch, auch in der WWE.  Edit: Und nein, nicht jeder x-beliebige Worker hätte derartige Promos durchziehen können. In der gesamten Wrestlingszene gibt es bestenfalls eine handvoll Personen, die über vergleichbare rhetorische Fähigkeiten wie Punk verfügen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated R Userwrote on 18.07.2011:[10.0] "@Tamam Die Antwort auf alle deine Fragen - die ich nicht als rhetorisch betrachte - ist: Weil er nicht gepusht wurde. 10 Pkt. alles andere kann ich an dieser Stelle nicht vergeben!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Stockwrote on 18.07.2011:[10.0] "Eine lange Erklärung für 10 Punkte ist wohl nicht nötig. CM Punk hat spätestens in den letzten Wochen bewiesen, dass er der beste Wrestler/Superstar auf dieser Welt ist!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tamamwrote on 18.07.2011:[5.0] "Ohne Frage ist er klasse am Mic und genial im Ring. Aber dieses übertrieben obergehype zurzeit geht mir so ziemlich gegen den Strich. Da wird ein CM Punk vor Austin, Rock, HHH gestellt ? ! Was ist los mit euch "Internetfans" ? Wie schnelllebig ist das Buisness denn geworden ? Habt ihr alle vergessen wer die großen der großen sind die die WWE mit egal was sie machten getragen haben ? !  Was hat Punk den bitte geleistet ? Ein Titelrun der in die Hose ging ? Etliche Fehden die in die Hose gingen ? Wenn er so großartig wäre wie immer alle sagen - warum versauerte er dann bei Smackdown in der Midcard ? Warum verliert er 1 Jahr lang bei einem PPV ?  Und jetzt haut er eine Shoot Promo raus die hier auch total überwertet ist weil Promos die einen Fehdenhintergund hatten, die eine Zeit geprägt haben, sich hinter diese Shoot Promo stellen müssen ? Ich wette das die Hälfte des Rosters eine annährnd gute Shoot Promo gebracht hätten, hätten sie die Freiheiten gehabt wie Punk ! ;) Die Promo mit Vince und Cena war dagegen echt großartig !  Trotzdem darf man seine vorhandenen Fähigkeiten nicht außer acht lassen ! Aber hört auf diesen Typen so weltklasse darzustellen ! Er ist ein einfacher Heel wie ein The Miz, ein Del Rio mit riesen Fähigkeiten. Aber hat er der Company irgendwas großes beschert ? NEIN !"
Rating: 5.0
Sentiment: 0.30517578125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ChristianHwrote on 17.07.2011:[10.0] "DER beste Wrestler der Welt und unglaublicher Mic-Worker. Mittlerweile auf einer Stufe mit Austin anzusehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: al2010exwrote on 17.07.2011:[10.0] "Sehr guter Wrestler (auch wenn er durch PG und die WWE limitiert ist), ausgezeichnetes Micwork, großartiger Look und ein interessanter Charakter. Der kompletteste Wrestler der WWE. Außerdem mein absoluter Lieblingswrestler. Wenn er geht dann ab zu NJPW :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Danicheckwrote on 17.07.2011:[10.0] "Hab im Cageboard wegen der Sache nachgefragt. Es liegt ein Datenbankproblem vor und sollte demnächst behoben werden. Zieh meine Wertung und Vermutung zurück, hab ja wie gesagt im CB nachgefragt, für mich hat sich das alles geklärt. Ich bewerte ihn erst wieder, wenn das Problem gelöst ist. Edit: OK, jetzt bewerte ich. 10 Punkte für ihn, weil er ein Top-Wrestler, Top-Micworker und eine super Austrahlung hat. Schade, dass er eine Pause macht, aber er hat sich das verdient!"
Rating: 10.0
Sentiment: 0.4583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Smi-48wrote on 14.07.2011:[10.0] "Ich fand ihn unerträglich als Face, zu overhyped ... bis ... bis ... na, Ihr wisst schon, bis er sich zum universellen Heel mit wahnsinnigen Promos entwickelte. Von da an variierte er seine Leistungen im Ring, sprang auf zwieleichte Taktiken wie überzeugende Maneuver gleichzeitig an und macht im Moment einfach nur von vorne bis hinten Spaß. Dass er sich von seiner Demontage zum Jahreswechsel blendend erholt hat, macht ihn nur noch stärker. So leicht wird Punkaus den Weeklys nicht wegzudenken sein, so einfach werden seine Promos nicht ersetzt werden können. Und weil Straight Edge einfach bedeutet, dass er besser als wir ist, erlaube ich es mir, den finalen Punkt bis zur Höchstwertung noch hinauszuzögern - der Junge muss ja noch Ziele haben ... vieleicht dann mal ein überzeugender Run als Face ... Orton macht es gerade vor. EDIT: 10 Punkte. Juli 2011."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Blackbirdwrote on 14.07.2011:[10.0] "Update: Die letzten Wochen beweisen wohl eindeutig, dass alles außer 10 Punkte für Punk eine Frechheit wäre."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Play2Xwrote on 14.07.2011:[10.0] "Es kann doch nicht sein, dass ich diesem Wrestlinggott noch keine Wertung gegeben habe? ! ? Super In-Ring Skills, Einer der besten Mic-Worker die es bis jetzt gab, immer glaubhaft... Als Kommentator große Klasse... Was will man bitte mehr... Einer der Letzten aus einer Riege großer Wrestler! Wie ich diese(n) Wrestler vermissen werde!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Biersackwrote on 13.07.2011:[10.0] "CM Punk zeigt in den letzten Wochen wie gut er wirklich ist, wenn man ihn richtig einsetzt. Besser gehts nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: affenmannwrote on 12.07.2011:[10.0] "Spätestens durch die Fehde mit Cena dürfte er auch im Mainstream den Main Event-Status zementiert haben. In den Indies war er schon großartig, aber seine Entwicklung zum absoluten Nonplusultra der WWE war noch beeindruckender zu sehen."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: hong kong phooeywrote on 11.07.2011:[9.0] "beeindruckender Wrestler, der immer für Stimmung sorgt - ob am Mirco oder im Fight!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: El Reywrote on 09.07.2011:[10.0] "CM Punk ist wohl der beste Wrestler der Welt.  Sein "Gimmick" ist er selbst, er ist Wrestling-Fan wie du und ich, und einer der besten Performer der Welt.  Diese Kriterien machen ihn zum vollkommenden Wrestler der neuen Generation. Wenn man ihn lassen würde, wäre er sogar noch besser."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LyrixFTWwrote on 08.07.2011:[10.0] "Der Hauptgrund meines Cagematch Accounts, ich muss diesen Mann einfach mit 10er Wertung von mir sehen! Seit er in der WWE ist und annähernd Micspace bekommen hat mein absoluter Liebling, und der einzige Grund warum ich mittlerweile Wrestling abseits von WWE & NOAH ansehe. Der mit abstand beste Mann der letzen 4 Jahre in der WWE, ein super Techniker mit High Flying EInflüssen und nebenbei der beste Heel seit Ewigkeiten, vllt sogar der größte Amerikanische Heel allerzeiten! Mittlerweile hat Punk wohl Legendenstatus, auch für WWE-only Fan's durch seine unglaublich Promo am 27. Juni. Der einzige der im auf technischer Ebene etwas anhaben kann ist wohl Danielson, den ich aber absolut uncharismatisch (Wenn auch fehlgebookt) und ehrlich gesagt etwas overrated finde... Aufjedenfall das absolute Spitzentalent, und DAS Total Packkage der WWE. Schade das er geht :( Aber noch hoffe ich!"
Rating: 10.0
Sentiment: -0.04083333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tobster254wrote on 07.07.2011:[10.0] "CM PUNK !  In dieser Zeit ein PERFEKTER HEEL CM Punk hat absolut überzeugt!  Sein Mic work ist sehr gut und endlich wieder mal eines was charakter hat und welches in Erinnerung bleibt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Marinhowrote on 03.07.2011:[10.0] "Für mich einer der Komplettesten Wrestler die es momentan im Buisness gibt!  Klasse Matches Klasse Promos Klasse Mic work"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Paierowrote on 02.07.2011:[10.0] ""I'm the BEST wrestler in the world! " Da steckt eine Menge Wahrheit drin! Hinzu kommen exzellente Promo-Skills, auch als Kommentator mehr als gut!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jerseyhoolwrote on 01.07.2011:[10.0] "Ich verfolge CM Punk seit seiner Zeit bei ROH & habe immer gehofft, dass er eines Tage bei WWE landen wird. Nachdem er nun bereits den World Title halten durfte & ich jedes Mal innerlich frohlocke, wenn der Punkster zum Mikro greift, sehe ich mich in meiner Vermutung bestätigt, dass er wohl die übergrossen Fusstapfen von Shawn Michaels ausfüllen könnte. In seiner derzeitigen Tweener Rolle brilliert er Woche für Woche (und freiwillig buht diesen Mann ohnehin niemand mehr aus, wie man aus den lauten, stetig wiederkehrenden "CM Punk" Sprechchören erhören kann) und veredelt damit jede Show. Zwar nicht ganz in einer Liga mit Michaels, aber nichts desto trotz einer der grössten Charismatiker, die das Mainstream Wrestling derzeit zu bieten hat. *EDIT* Nach seiner Shoot-Promo bei RAW habe ich noch mehr Respekt vor diesem Mann. Einer der grössten Charismatiker beim Marktführer & trotzdem auf dem Absprung! Er zieht sein Ding durch & das verdient Anerkennung. In einer Zeit, in der Individualität ohnehin nichts mehr wert ist, ist jemand wie Punk ein Juwel. Bleibt nur zu hoffen, dass wir ihn nach seiner verdienten Auszeit bald wieder im Ring sehen...."
Rating: 10.0
Sentiment: -0.2884615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cena4Lifewrote on 30.06.2011:[10.0] "Der Mann begeister mich mehr und mehr, seit ich ihn kenne. Hatte ne längere Wrestlingpause (1990-1999 aktiv verfolgt, 2000-2007 gar nicht verfolgt, 2008-2009 etwas verfolgt, 2009 - jetzt so aktiv wie nie verfolgt), daher kannte ich ihn nicht solange. Aber von meiner anfänglich skeptischen Meinung bin ich mehr und mehr abgerückt und wage nun zu behaupten, dass er der kompletteste Wrestler in der WWE ist und dass sein Verlust die WWE mehr trifft, als alle bisherigen. Ausgenommen HBK, aber dass sein Ende mal kommt war abzusehen. CM Punk währe dauerhaft richtig gebookt, die totale Lebensversicherung in dieser schwierigen Zeit. Der Mann ist ein GOTT am Mikrofon, ist top im Ring, holt selbst aus schwächeren Gegnern ein gutes Match raus und vor allem nimmt man ihm genau das ab, was er sagt bzw. spielt. 10 Punkte sind zuwenig!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HBK1986RKOwrote on 30.06.2011:[10.0] "Einer der besten aktuell und wenn er weiter macht wird er auch weiter größer und stärker mit seinem SE-Style."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PunksAwesomewrote on 30.06.2011:[10.0] "CM Punk ist einfach ein Alleskönner, er kann aus jedem Match ein sehenswertes machen und am Mikrofon ist der Mann ein Gott. Egal welche Rolle er spielt, man kauft ihm alles ab, er ist einfach das Gesamtpaket."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JohnnyCashwrote on 30.06.2011:[10.0] "Bin inzwischen von einer 7 auf eine 10 gegangen. CM Punk gehört zu den ganz Großen im Geschäüft, das muss man einfach sehen. Ob am Mic oder im Ring gibt es aktuell kaum Wrestler, die ihm das Wasser reichen können. Er hat das Potential der nächste Austin oder HBK zu werden, auch weil er den Mund Backstage aufmacht & seine Kompetenzen wohl langsam mehr anerkannt werden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The lonesome death of Hattie Carrollwrote on 29.06.2011:[10.0] "The best there is! Und wenn er den Titel gewinnen und mehr als nur einen "Summer of Punk" ausrufen darf, auch gern "the best there ever will be"."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Charismatic Enigmawrote on 29.06.2011:[9.0] "Muss meine Bewertung dringend mal anheben. Auch wenn die Stories um ihn herum nicht immer zum Erfolg verdammt waren, versteht er es immer und überall brilliant zu unterhalten, egal ob gerade die Ringglocke geläutet hat, oder er ein Micro in die Hand bekommen hat."
Rating: 9.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fischy667wrote on 28.06.2011:[10.0] "Einer der komplettesten Wrestler die es im Moment im Business gibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Chris Herowrote on 28.06.2011:[10.0] "Hammertyp! Kann alles, was man als Superstar in diesem Business braucht, um der Beste zu sein! Und er ist NOCH BESSER!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TeeHaawrote on 28.06.2011:[10.0] "Ringleistung => Check! Promos => Check! Charisma => Check! Was anderes als ne 10/10 kann ich beim besten Willen nicht vergeben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: cartmanwrote on 28.06.2011:[10.0] "Momentan einer der besten in der WWE. Glaubwürdig. Geiles Mic-Work. Sehr gute In-Ring Skills. Zeigt trotz PG Ausrichtung und WWE Limitierung sehr gute Matches."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tabowrote on 28.06.2011:[9.0] "Momentan einer der ganz großen, schade dass sein Vertrag mit der WWE bald endet. Zuvor will er sich aber noch als World Haevyweight Champion feiern lassen, und ich freue mich schon sehr auf dieses Match^^"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hu-Manwrote on 28.06.2011:[10.0] "Der beste Heel im Pro-Wrestling. Wäre Jericho noch aktiv, würden sie sich den Titel teilen. Der Mann ist einfach unglaublich. Technik, In-Ring Psychologie, Mic-Work und Charisma in Hülle und Fülle. Das Musterbeispiel für einen richtig guten Charakter im "Sports Entertainment"."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Johnny-Tennerwrote on 25.06.2011:[10.0] ""CM Punk ist der Jesus der Neuzeit und Straight Edge die neue Glaubensrichtung. ""
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WWE4evermaybewrote on 24.06.2011:[10.0] "Tja, was soll man zu ihm noch sagen? Er ist ein Garant für gute Matches und tolle Promos. Der momentan kompletteste Wrestler in der WWE. Hoffe natürlich, dass er erhalten bleibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Y2Mikewrote on 24.06.2011:[10.0] "Ich muss ehrlich zugeben, dass mir CM Punk während seiner WWE Zeit nicht sonderlich zugesagt hat. Dies ist anscheinend daran gelegen, wie ihn die WWE eingesetzt hat. In seiner derzeitigen Rolle gefällt mir Punk äußerst gut. Sein ganzer Charakter wirkt auf mich (vorallem am Mic) viel natürlicher und authentischer. Bleibt nur zu hoffen, dass ihn die WWE auch in Zukunft so gut einsetzt. (9 Punkte).  Update: CM Punk hat lange genug bewiesen, was für ein großartiger Performer er ist. Zurzeit der beste Worker im gesamten Mainstream! (10 Punkte)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mick Funkwrote on 21.06.2011:[10.0] "Ím Moment das größte Komplettpaket, das in der WWE aktiv ist und das Highlight von fast jeder Raw Sendung. Die Fehde gegen Cena könnte unter Umständen ganz großes Kino werden. Hoffentlich wird das nicht verbookt und hoffentlich kann man Punk in der Company halten."
Rating: 10.0
Sentiment: -0.015384615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Undertakemaintwrote on 17.06.2011:[10.0] "Der Kerl ist am Mic, sowie im Ring einfach der Hammer, die WWE sollte sich mal überlegen ihn besser einzusetzen, und noch mal eine Fehde gewinnen zu lassen. Verdiente 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: lostwrote on 16.06.2011:[10.0] "Ganz klar 10.  Für mich einer der Besten überhaupt!  Weltklasse im Ring, Genial am Mic."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bluminho 93wrote on 07.06.2011:[9.0] "Cm Punk gehört für mich definitiv zu den besten aller Zeiten. Nur schon wenn man bedenkt, was er bei seiner Statur bei WWE erreicht hat, muss man einfach den Hut vor ihm ziehen. Es stimmt einfach Alles bei ihm: Die Wrestlerischen Fähigkeiten, Micwork, Charisma, seine Darstellung als Heel. Einfach nur Top. Den einzigen Punktabzug bekommt er von mir wegen seiner Face Zeit in der WWE. Er war mir da schlicht zu farblos und schon nach wenigen Monaten nach seinem ECW Debut uninteressant. Doch dies kann natürlich bei Weitem nicht über seine restlichen phänomänalen Leistungen in diesem Sport hinwegtäuschen. Daher bekommt Punk von mir wohlverdiente 9 Punkte."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Neuhofwrote on 22.05.2011:[10.0] "CM Punk ist der wohl unterhaltsamste Wrestler, den man zurzeit im kompletten Wrestling findet. Nicht nur, dass er im Ring exorbitant stark ist (wenn auch etwas arg häufig leicht überbewertet wird), Punk's Können, sobald man ihm ein Mikrofon in die Hand gibt, ist besser, als alles, was ich seit Jahren sehe. Ob als Messias-ähnlicher Stableleader, Face-Singles-Wrestler, oder auch Kommentator, Punk ist einer der allerbesten."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Schiggywrote on 08.05.2011:[10.0] "Auch wenn er schon 1 Jahr absolut beschissen dargestellt wird, CM Punk hat nichts anderes als die volle Punktzahl verdient. Ein klasse Worker, habe mal bei der Survivor Series 2005 ein Plakat gesehen, auf dem stand: "CM Punk is the new Shawn Michaels. " Das kann ich so unterschreiben. Er hat alles: klasse In-Ring Fähigkeiten, mit dem er absolut geile Matches auf die Beine gestellt hat (sowohl in der WWE, als auch im Indy Bereich); geniales Mic-Work, gerade als Heel kann er mich hier immer wieder aufs neue unterhalten; Ausstrahlung und einen Charakter, der sich von den anderen abhebt. Für seinen Straight-Edge Lebensstil kriegt er vollsten Respekt.  CM Punk hat das Zeug zu einem klasse World-Champion und hat es einfach nicht verdient sich für jeden Face hinzulegen. Ich mein, Punk hat jetzt seit einem Jahr kein PPV Sieg mehr.. really? really? Derzeit würde ich die Auszeit, über die gemunkelt wird, begrüßen. Lasst ihm 2 Jahre Zeit sich zu erholen und sich zu finden und dann sehen wir einen besseren Punker als je zuvor!"
Rating: 10.0
Sentiment: 0.19318181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Opalawrote on 05.05.2011:[10.0] "Er brauch eine andere Fehde sonst geht er noch unter. Sonst ist er Perfekt im Ring und am Mic. 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ballswrote on 30.04.2011:[10.0] "CM Punk hat einfach alles: die In-Ring Skills, die Fähigkeiten am Mic, das richtige Gimmick und einen guten Look. Woche für Woche reißt er sich mit sehr guten Leistungen den Allerwertesten auf und muss dafür für Orton jobben. Dass er sein Gimmick wirklich lebt macht Punk noch authentischer. Leider wird CM Punk in der WWE oft verheizt und ich kann verstehen, wieso er sich ausgebrannt fühlt. Punk ist nicht so wie ein 08/15 WWEler, er äußert sich zu den Dingen, die ihm nicht gefallen und provoziert auch mal seinen Arbeitgeber mit Colt Cabana Shirts oder der Sache mit den Entertainern/Wrestlern. Das alles macht Punk zu einem genialen Wrestler und verdient die Höchstnote."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Dennizwrote on 22.04.2011:[10.0] "Das beste was die WWE zu bieten hat. Mic Work und Ring Skills 1A... besser gehts nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated R Champwrote on 09.04.2011:[10.0] "CM Punk agiert mittlerweile schon seit etlichen Jahren auf einem konstant großartigen Level. Zu ROH Zeiten war er, mit tollen Leistungen am Mic und im Ring, zurecht einer der größten Stars der Indy Szene und er hat es als einer der ganz wenigen Indy-Lieblinge auch geschafft, sich in der (gänzlich anderes ausgerichteten) WWE zu etablieren. War er dort zu Beginn als Face noch etwas farblos ist er mittlerweile wieder seit einigen Jahren in der Heel Rolle unterwegs, in der er einfach brilliert. Punk ist einfach eines der besten Gesamtpakete die das Geschäft zu bieten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Babuswrote on 06.04.2011:[8.0] "Lange war ich der Meinung, dass die WWE-Leistungen CM Punks im Internet auf Grund seines Messiah-Rufs aus Indy-Zeiten massiv überbewertet werden würden. Zu seinen Face-Zeiten war er trotz Straight Edge-Gimmick eher farblos, seine ersten PPV-Matches mit Morrison oder Chavo meist enttäuschend und überhaupt wirkte sein Stil mitunter wie ein Fremdkörper im WWE-Universum. Mittlerweile muss man aber sagen, dass Punk und seine Promos aus der WWE eigentlich nicht mehr wegzudenken sind. Ich halte ihn zwar weiterhin nicht für den größten Redner unter der Sonne, aber Punk hat es in einer Zeit, in dem die meisten WWE-Gimmicks sehr simpel gestrickt sind, verstanden seinen Charakter konsequent weiterzuentwickeln, sodass er heute die vielleicht interessanteste Figur im WWE-TV ist. So macht mir Punk wirklich eine Menge Spass. Es bleibt zwar immernoch das kleine Manko, dass ich Punk im Ring kaum besser als den Durchschnitt finde - aber vielleicht kann er mich hier ja auch noch ein zweites Mal überraschen."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rob Van Duesenschrauberwrote on 01.04.2011:[10.0] "Vor über 3 Jahren habe ich zu Punk einen Kommentar abgegeben und die Bestnote verteilt. Daran hat sich bis dato nichts verändert. Punk war der Grund, warum ich angefangen hab Indy-Wrestling zu schauen und heute ist er der Grund wieso ich Raw anschaue. Großartiger Wrestler, großartiger Entertainer, einer der besten im Business."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Elvis6wrote on 20.03.2011:[9.0] "Zurzeit der Heel schlechthin in der WWE. Seine erstes Jahr war wohl vergeudet. Erst mit dem Turn kam er richtig rüber. Dieses leicht Geistesgestõrte Gimmick bringt wohl kein anderer so gut wie er. Hoffe er darf mal wieder im Titelgeschehen mitmischen. Promos, Auftreten u Wrestlingskills top. Und anscheinend auch privat ein cooler Typ. Mein Hauptgrund Raw zu schauen"
Rating: 9.0
Sentiment: 0.1346153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Y2John Cenawrote on 05.03.2011:[10.0] "Super Mic-Work, er spielt sein Gimmick sehr überzeugend -IMO der beste Heel der WWE. Im Ring wesentlich stärker als der Durchschnitt. =>10 pkt."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jack Londonwrote on 21.02.2011:[10.0] "Toll am Mikro, toll im Ring, eigentlich auch ein tolles Gimmick, aber im Moment fehlt ihm die richtige Fehde.  EDIT: Punk ist der beste Entertainer, den das Mainstream-Wrestling hat. Punk ist großartig im Ring und darf das nun auch auf der großen Bühne beweisen, er ist großartig am Mic und auch seine Gestik ist die eines wahren Superstars. Kurzum: Punk hat alles, was es braucht, um einer der ganz großen zu werden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Matt4Wrestlingwrote on 15.02.2011:[9.0] "Mal gepusht, dann nicht, mal ganz Groß, dann total unbedeutend-hat das ein CM Punk verdient? Im Independent-Bereich hat er schon lange überzeugt, warum muss er sich dann von WWE immer zwischen ganz schlecht und herrausragend hin und her einstufen lassen? Wenn er endlich mal sein ganzes potentiall ausschöpfen darf oder dürfte, würde man sehen, was alles in CM Punk steckt!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RIKYwrote on 14.02.2011:[10.0] "Straight Edge means I am better than you... Und genau DAS beweist CM Punk jede Woche auf's neue! Er ist im moment einer DER Top-Heels der WWE!"
Rating: 10.0
Sentiment: 0.490625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CenationFanwrote on 05.02.2011:[8.0] "Ein guter Wrestler mit großartigen Mic-Skills. Als Anführer der "Straight Edge Society" hat er mir überhaupt nich gefallen, aber seid er der Anführer des "New Nexus" ist, gefällt er mir als Hell auch wieder viel besser."
Rating: 8.0
Sentiment: 0.16818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: troppiewrote on 05.02.2011:[10.0] "Klasse Wrestler, unglaubliches Micwork, sehr viel Charisma, kurz gesagt Total Package und damit 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: wolverinewrote on 03.02.2011:[9.0] "Punk versteht es zu unterhalten und ist sehr wandelbar was seinen Look angeht - seine In-Ring Skills sind hervorragend, genauso wie sein Mic-Work. Sein Booking im Rumble hat mich hingegen verärgert, aber vermutlich hat es seinen Sinn erfüllt - es wird mich daran erinnern, dass Punk 2011 ähnlich wie 2010 eine DER beherrschenden Figuren im Rumble war. Angesichts so einer Präzens dürfte es nur noch eine Frage der Zeit bis zum Rumble Sieg sein."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Zamunerwrote on 02.02.2011:[10.0] "Er ist da angekommen wo viele ihn immer gesehen haben. Er überzeugt mit sein Promos und seinen Matches Woche für Woche, aber speziell die Promos sind herausragend. Punk gehört in diesem Bereich in eine Kategorie mit Jericho. Leider kann man ihn in vielen Punkten mit Jericho vergleichen. Beide sind eigentlich mit das Beste was die WWE zu bieten hat / hatte. Aber Punk wird wohl nie in die Riege eines Rock, Austin, Shawn Michaels, Undertaker, Triple H, Cena aufsteigen und eine Show alleine tragen können. Ich sehe hier das gleiche Problem wie bei Jericho: Manchen ist es einfach nicht vergönnt ganz nach oben aufzusteigen, auf die letzte Stufe im Olymp. Sich darüber zu streiten warum das so ist ist müßig. Ich freue mich über jede Fehde mit ihm, jedes Match und jede Promo... wie bei Jericho."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GamePrincewrote on 27.01.2011:[9.0] "Einfach ein super Typ. Am Mic sehr stark und im Ring hat er auch viel drauf. Aber er kann sich noch steigern ... da ist auf jeden Fall noch Luft nach oben. 2010 fing mit seiner Fehde gegen Rey gut an, aber ein Big Show und sein Gesundheitszustand ruinierten leider sein Jahr. Jetzt hoffe ich, dass er 2011 wieder zeigen kann, was in ihm steckt!"
Rating: 9.0
Sentiment: 0.04444444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Yannick009wrote on 21.01.2011:[9.0] "Super Techniker mit den nötigen Mic-Skills. Freut mich dass es nach seiner Verletzung endlich wieder da ist! Kann Raw allein aufwerten."
Rating: 9.0
Sentiment: 0.09294871794871792
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Big Jackwrote on 20.01.2011:[9.0] "Ich finde CM Punk ist die Zukunft. Gerade jetzt, wo man nicht mehr so sehr sein Straight Edge Gimmick benutzt, gefällt er mir wieder. Wrestlerisch echt super und am Mic, meiner meinung nach sowieso der Beste in der WWE!"
Rating: 9.0
Sentiment: 0.20555555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Akkuswrote on 19.01.2011:[10.0] "Einfach für mich der einzige WWE Charakter den ich interresant finde. Seine Mic Künst esind genial. Seine Mimik göttlich un dim Ring auch nicht von schlechten Eltern. Nachdem man mit der SES sein Gimick fast gegen die Wand gefahren hat ist die neue Rolle noch geiler. CM Punk ist der Grund warum ich mir jeden Montag Raw ansehe!"
Rating: 10.0
Sentiment: 0.003846153846153851
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CharismaticEnigmawrote on 19.01.2011:[10.0] "Was soll man viel über CM Punk sagen : Er ist im Ring einer der besten, den die WWE im Moment im Roster hat und sein Mic-Work kann sich auch mehr als nur sehen lassen ! Als Heel ist seine Ausstrahlung auch deutlich imposanter als als Face, wobei ich ihn sowohl als Face, als auch als Heel mag. Ein kompletter Wrestler, der der WWE hoffentlich noch lange erhalten bleibt und dem WWE-Universe viel Freude bereiten wird ! eine glatte 10 !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: chryzzwrote on 18.01.2011:[10.0] "Als heel mehr als Goldwert. Als Face auch überzeugend dennoch als heel besser. Punk gefällt mir derzeit sehr gut. Bei ROH ebenfalls. Nur als face fand ich ihn etwas alngeweilig deshalb "nur" 9 punnkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Detrituswrote on 17.01.2011:[10.0] "Ganz großen Respekt vor seiner Einstellung. Wenn man dann auch noch solche Matches abliefert wie Punk und auf die Einnahme von Schmerzmitteln verzichtet, kann er eigentlich nur ein Vorbild für die ganze Welt des Sports sein. Im Ring ist er einer der Besten seines Fachs und hat es verdient weiterhin einer der Topstars der Liga zu sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheRock 7 Champwrote on 16.01.2011:[10.0] "Sein Gimmick als Straight Edge Savior gefällt mir. Als Face war er ganz gut, aber als Heel ist er einfach nur göttlich! Im Ring ist er der Hammer und am Mic reißt er mich immer mit. CM Punk ist mit Sicherheit einer der besten Superstars der Welt."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: rwddwrote on 15.01.2011:[10.0] "Als Face damals nicht soo sehr überzeugend aber jetzt als Heel die absolute Granate ! Mic work ist das beste seit The Rock und sogar besser als das Kennedys ! Er ist ein super Wrestler und hat eine mega Ausstrahlung . Er ist authentisch und man kauft ihm alles ab , was er sagt ! Als er dann zum Heel wurde 2009 wurde er zum betsen Gesamtparkets des Jahrzehnts ! Weiter so !  ;)"
Rating: 10.0
Sentiment: 0.40451388888888884
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: stinger89wrote on 13.01.2011:[10.0] "Einfach nur Goldwert der Mann. Als Face gefiel er mir schon gut, nutzte sich nach einer Zeit aber schnell ab. Der Heelturn hat ihm richtig gut getan. Seit gut 2 Jahren ist er am Mic immer wieder erste Sahne.  Im Ring ist er meiner Meinung nach ebenfalls unter den Top 6 der WWE. Ich hoffe er kommt demnächst nochmal ins Titelrennen. Verdient hätte er es allemal."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RhinoRaineswrote on 12.01.2011:[10.0] "Er hat in den vergangenen zwei Jahren eine fantastische Entwicklung genommen und dürfte momentan das beste Komplettpaket im Wrestling-Biz sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sandiegowrote on 12.01.2011:[10.0] "Jeder Athlet, der Straight Edge in diesem Business lebt ist 10 mal mehr Superstar und Vorbild als jedes hochgepushte Anabolika-Monster. Das gepaart mit Punks wrestlerischer Klasse und seinem genialen Mic-Work machen ihn zu einem der Besten, die es derzeit gibt."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: StevenHLRwrote on 12.01.2011:[8.0] "Ich finde Punk momentan als Nexus Anführer macht er sich nicht schlecht! Doch irgendwie sollte er sich selbst auch noch "Bestraffen" Gut, die idee, jeder muss sich was antun damit sie im Neuen Nexus sind ist ansich nicht schlecht! Doch da sollte doch der Anführer mitziehen!  Okay vom Monitor runter springen ist vielleicht ein bisschen zu Extrem! Doch für den Anfang ist es sicherlich nicht schlecht!  Das sich Sleader(oder so... ) und der Afrikamen nichts gemacht haben gibt sicherlich für die nächste RAW Ausgabe spannung! Vielleicht hat das auch noch Auswürkungen auf das bevorstehnde Match gegen Cena! Hoffe ich aber nicht, man kann aber damit Rechnen das Nexus sicherlich seine Finger im Spiel haben wird beim Match!  Wen Punk so weiter macht würde mich das Match bei WM27 gegen Cena freuen! Sind zwei hammer Wrestler mit viel potenzial! Gebe sicherlich ein hammer Match!"
Rating: 8.0
Sentiment: -0.04953237680288469
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: theiconwrote on 04.01.2011:[10.0] "CM Punk ist für mich der besste Promo Held der WWE-Geschichte. Seine Wrestling-Skills sind auch genial. Zusammen gibt dass einfach nu ein genialer Wrestler. Er ist eine lebende Legende. Ich hoffe er wird sehr bald wieder champ"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jeffrey Nero Hardywrote on 30.12.2010:[10.0] "Zu erst mal ist der Kommentar meines Vorschreibers, das dämlichste was ich je gehört habe. Dieser Mann hat was anderes als 10 Punkte nicht verdient. Er ist ein am Mic und im Ring ein Gott und ein klasse Kommentator."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ray Robsonwrote on 29.12.2010:[10.0] "CM Punk ist ein Phänomen. Als er noch Independent unterwegs war, konnte ich ihm trotz des Hypes nichts abgewinnen. Doch jetzt... er ist einer der wenigen Wrestler, die in der WWE noch dazu gewonnen haben. Dieser Charakter ist einfach großartig, ihm nimmt man seine Rolle sofort ab, seine Promos sind Gold wert und nehmen vieles aufs Korn, was im Wrestling eigentlich "normal" ist - weil CM Punk eben zu Intelligent dafür ist. Klasse im Ring und unfassbar unterhaltsam - 10 Punkte."
Rating: 10.0
Sentiment: 0.3166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Icebreakerwrote on 28.12.2010:[10.0] "Zu gegeben, ich habe nichts oder kaum etwas von Punk außerhalb der WWE gesehen. Aber das muss ich auch nicht, um zu wissen was er kann. Von den Promos her steht er einfach auf dem Olymp neben Edge, Jericho und The Rock. Er bringt sie phänomenal rüber und beeinflusst den Zuhörer auf geniale Art und Weise. Mimik und Gestik passen grandios dazu. Einzig das dauernde Straight Edge Gelabere Woche für Woche hat eine zeitlang genervt. Im Ring ist er zweifellos einer der besten der WWE. Leider darf er nicht alles zeigen. Ein super Techniker, der vermag es Geschichten auch innerhalb des Rings zu erzählen. Egal ob Matten- oder Spotwrestling, er kann beides! CM Punk lebt für das Wrestling und das merkt man."
Rating: 10.0
Sentiment: 0.30833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: maxiking125wrote on 28.12.2010:[10.0] "Ja Punk is back... und das als neuer NeXus Leader. Na wenn das keine geniale Comeback Storyline is...  Ich komm jetz mal zur eigentlichen Bewertung: Micwork= ist mehr als nur solide Ring-In= er war eine Leitfigur in ROH und beweist sich auch in der WWE obwohl er echt nich mehr soviel zeign darf naja er hatts trotzdem drauf Resultat: 10 Punkte für den neuen NeXus Leader"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Double Jwrote on 27.12.2010:[8.0] "Die 8 Punkte gits für seine ROHund sein göttliches Mic-Work. Was er in der WWE nur im Ring zeigen darf ist zum Kotzen. Kick, kick, Kick, GTS ende. Immer die selbe Leier."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Schmidi2121wrote on 26.12.2010:[10.0] "Er ist Wrestlerisch und auch am Mic Herausragend.  Ich finde es großartig das er sich auch in der WWE halten und vorallem durchsetzen konnte.  Das schaffen ja nicht soviele Indy-Topstars die in die WWE kommen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gretchen2010wrote on 18.12.2010:[9.0] "Phil ist einer meinr favs. Ich meine mal ich habe ihn am anfang nicht so gemoch aber nun ist er top. ich vermisse ihn aktive im ring und bin froh wenn ich ihn als komentator bei WWW-Superstars sehe."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Overlordwrote on 15.12.2010:[9.0] "Definitiv einer meiner Lieblingswrestler. Ob im Ring oder am Mic, Punk überzeugt in allen Belangen, egal in welcher Rolle. Seine aktuelle Rolle als Commentator ist ihm eigentlich wie auf den Leib geschneidert, doch nach seiner Verletzung soll er doch bitte wieder seine unbestrittene Klasse im Ring unter Beweis stellen, am besten als Heel in einer Fehde gegen Bryan."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AlexPrimewrote on 15.12.2010:[10.0] "CM Punk ist ein sehr interessanter Worker.  Am Mic gefällt er mir seit seinem Heel Turn vor etwas mehr als einem Jahr außerordentlich gut und im Ring war er schon immer gut.  Vorallem in seiner Indy Zeit wusste er zu überzeugen.  Auch zurzeit am Kommentatorentisch gefllt er mir sehr gut !  Woche für Woche freue ich mich auf seine Kommentare.  Nur hoffe ich, dass er schon bald wieder in den Ring zurückkehrt, denn da ist sein wahrer Platz."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Denzwrote on 10.12.2010:[10.0] "10 Punkte, Super Kommentator und Wrestler... upps, er ist ja Superstar und kein Wrestler."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Leikkywrote on 04.12.2010:[10.0] "Hat mir besonders in seiner Indy-Zeit sehr, sehr gut gefallen. Man verheizt sein Talent hier ein wenig, aber noch akzeptabel. Ein unglaublich überzeugender (obwohl überzogener) Heel mit guten Mic-Skills. Dass auch die Promos damals besser waren, steht außer Frage. Aber sie sind immer noch gut. Die ewig gleiche Betonung? Ist meiner Meinung nach sehr passend. Er ist in seiner Rolle nunmal von sich überzeugt und muss sich nicht extrem erklären oder verdeutlichen. Alles also in einem sehr guten Rahmen. Sehe ihn im Ring sehr gerne. Mehr davon also bitte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Necronwrote on 03.12.2010:[8.0] "Seine Kämpfe ziehen mich in den BAnn, aber sein Charisma dockt bei mir nicht an. Keine Ahnung warum, aber ich mag Punk nur, wenn er kämpft. Sobald er redet oder versucht, in einer Storyline interessant zu wirken, langweilt mich das."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Yordakuswrote on 02.12.2010:[10.0] "Punk ist in allen Hinsichten ein Top Worker!  Im Ring hat er es mehr als drauf und am Mic machen ihm zur Zeit nur wenige etwas vor!  Ich bin mehr als glücklich, dass er trotz verletzung jetzt noch auftritt und am Komentatoren Pult ist er sogar noch besser als Matt Striker :-D Punk ist einfach genial!"
Rating: 10.0
Sentiment: 0.890625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Boggenauerwrote on 02.12.2010:[10.0] "Der Mann kann mich in jeder hinsich überzeugen hat ziemlich gute In-Ring Skills und am Mic einfach Göttlich, sehr gute Promos kann er auch liefern als Heel ist er einfach Unglaublich Straight Edge means I'm better than you einfach Klasse wie der Kerl Heat zieht. Zudem ihn im moment als Kommentator zu verwenden während seiner Verletztungspause ist keine schlechte Idee ich höre ihn mir gerne an, ich kann es kaum abwearten ihn wieder im Ring zu sehen. Von mir volle 10 Punkte für den Straight Edge Savior."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kennedy Olivenwrote on 13.11.2010:[6.0] "Ich weiß das ich mir sicherlich den Zorn vieler zu ziehen werde. Ich weß auch das Punk eigentlich eine bessere Note verdient. Ich weiß auch das Punk ein wirklich hervorrangender Wrestler ist, super Mic-Skills hat und auch sonst einen super Heel abgibt. Aber wo ist sein ganzes Momentum hin? Nach der Fedhe gegen Hardy 2009 war er der TOP-HEEL und war so dermaßen Over. Dann kam die Sache mit der SES. Das hat ihm mehr geschadet als geholfen. Denn die Idee war zwar gut aber Punk kann nicht ein Stable von 4 Leuten alleine tragen. Dafür war der Rest einfach zu schlecht(mit Serena hätte man vielleicht noch was anfangen können). Dann kam noch das Verletzungspech und Punks Overness war total im Keller. Das Beste ist er nimmt sich die Auszeit und kommt dann mit einem Super-Comeback & einer Top-Fedhe wieder in seine alte Form zurück."
Rating: 6.0
Sentiment: 0.2222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: elcattivo83wrote on 13.11.2010:[8.0] "Wrestlerisch einer der Besten die es in der WWE gibt. Leider konnte er sich noch nicht so in Szene setzen wie er es eigentlich verdient hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: XoXwrote on 04.11.2010:[10.0] "CM Punk ist eines der besten Komplettpakete, die das Main Stream Wrestling zur Zeit zu bieten hat. Ein Gott am Mikrofon, charismatisch und im Ring top. Leider hat man oft das Gefühl, dass WWE ihn zu sehr unten hält, gerade was das Booking in der SES-Zeit anging. Ich hoffe sehr für Punk und WWE, dass sich das ganze nach dem Ende seiner Verletzungspause wieder ein wenig wandelt, denn dieser Mann gehört ganz nach oben!"
Rating: 10.0
Sentiment: 0.3958333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Gaven Eolowrote on 22.10.2010:[10.0] "hat mir als Face schon sehr gut gefallen und als er damals, ausgerechnet gegen Edge, seinen Money in the Bank-Koffer eingelöst hat, bleibt ein Moment für die Ewigkeit.  Als Heel ist er aber noch eine Nummer größer einzuschätzen. Unglaublich starkes Mic-Work.  Er gehört unbedingt wieder in eine Main Event Fehde."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Aesopwrote on 18.10.2010:[10.0] "CM Punk ist ein fabelhafter Wrestler, seine In-Ring Skills sind sehr gut und begeistern mich immer wieder. Er hat auch einiges an Charisma, dies kann er am besten als Heel einsetzen. Punk hat es geschafft aus seinem Lebensstil eines der besten Heel-Gimmicks zuschaffen das es je bei ROH gab und auch in der WWE weiß er mir als hochnäsiger Straight Edge Superstar zu gefallen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Homicide187wrote on 09.10.2010:[10.0] "Punk ist einfach super. Ich habe alles bei IWA, RoH usw aufgesaugt, weil ich ihn so super fand und nun hat er sich auch bei WWE durchgesetzt. Ich hoffe das er wieder stärker dargestellt wird, aber das wird schon kommen, immerhin kann er wirklich alles!"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rookie of the Yearwrote on 24.09.2010:[10.0] "War am Anfang skeptisch als er zum Heel geturnt wurde, spielt dort aber sein volles Potential aus. Für mich einer der besten (wenn nicht sogar der beste) von SmackDown. Klare Sache: 10 Punkte :)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Piurrywrote on 23.09.2010:[10.0] "CM Punk gefällt mir eigentlich schon immer extrem gut. Der Style, der Stil, es passt einfach.  Wurde für einen mehrfachen Champ in der WWE in letzter Zeit leider sehr sehr bescheiden eingesetzt bzw stark unter Wert verkauft. Hoffe aber jetzt nach der Fehde mit Big Show und dem Ende der SES auf Besserung, er hat es imo verdient."
Rating: 10.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DirtiestPlayerwrote on 20.09.2010:[8.0] "Im Moment leider nicht viel mehr als ein Edeljobber."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pyromaticwrote on 17.09.2010:[8.0] "Super Wrestler und Entertainer, wird aber ständig von der WWE schwach eingesetzt. Ein wirklich starker und konsequenter Push wären angebracht."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Ramwrote on 02.09.2010:[10.0] "Er hat mir schon immer im Ring gefallen und am Mic (oder auch ohne) ist Punk einfach perfekt. CM Punk ist der Jesus der Neuzeit und Straight Edge ist die Neue Glaubensrichtung."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JayLethalwrote on 29.08.2010:[10.0] "Ja, was soll man zu diesem Mann noch großartiges schreiben? Einfach ein klasse Wrestler, der einfach unglaubliche In-Ring Skills hat. Technisch beinahe perfekt und eine Austrahlungen, die einfach mitreisst. Seit ich ihn bei diversen Indy Ligen gesehen habe, bin ich ein CM Punk Fan. Ein Wrestler der sein Gimmick lebt und das finde ich super! Eine super Lebenseinstellung ;) CM Punk and the Straight Edge Society for Gold!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Whole FN Showwrote on 18.08.2010:[10.0] "Bestnote für einen sehr guten Micworker, einen Guten Wrestler und an den Mann, warum ich mir wenigstens die WWE Showberichte durchlese."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Miz 28wrote on 18.08.2010:[10.0] "Im Ring un am mic absolute stark. Momentan hängt sie Straight Edge Society etwas in der Luft aber das will ich beider Bewertung nicht berücksichtigen weil Punk ist de rletzte der etwas dafür kann."
Rating: 10.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ISAGwrote on 18.08.2010:[10.0] "War schon immer begeistert und ein riesen Fan von ihm und seinem Können. Hat so zeimlich jede Indy-Liga dominiert und mischt jetzt ganz oben bei der WWE mit. Nur die langen Haare fehlen mir etwas. Aber ansonsten einer der besten Wrestler auf dem Planeten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Vanniwrote on 17.08.2010:[10.0] "Definitiv 10 Punkte. Stark am Mic und im Ring. Mehr braucht es nicht für einen nahezu perfekten Superstar."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: boiddewrote on 01.08.2010:[9.0] "Hat sich in der WWE zu einem der besten Entwickelt, hat aber noch Luft nach oben"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NewWolfwrote on 01.08.2010:[8.0] "Viel Charisma, gut im Ring. Einer de wenigen, die es vom Internetliebling zum Mainstreamstar geschafft haben"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jerichoholicwrote on 28.07.2010:[10.0] "Mit dem Heel-Turn und der Fehde gegen Jeff Hardy hat man all das richtig gemacht, was man beim ersten Run mit CM Punk noch falsch gemacht hat. Sein Straight Edge Gimmick gibt dem Charakter endlich die nötige Tiefe und kommt natürlich hervorragend an. Dass Punk damit gut umgehen kann, beweist er nahezu jede Woche bei Friday Night Smackdown. Hier offenbart er immer wieder, dass er zurecht an der Spitze steht - er hat den Superstar Look, er hat das nötige Charisma und natürlich auch die Fähigkeiten im Ring. Sicherlich reichen seine Matches qualitativ nicht mehr an das heran, was er bei ROH gezeigt hat (was aber noch lange nicht bedeutet, dass sie in irgendeiner Weise schlecht sind). Aber in seinen bisherigen Main Event Matches hat Punk aber gezeigt, dass er dramatische Big Matches auf hohem Niveau zeigen kann (alleine durch seine Mimik kann er die Zuschauer in seinen Bann ziehen), wie es für die WWE nötig ist. Daher traue ich ihm auch durchaus einen glaubwürdigen und hochklassigen Wrestlemania Main Event zu."
Rating: 10.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Whopperlewrote on 28.07.2010:[10.0] "Vielleicht der beste Heel den die WWE momentan hat. Also für 2010 sollten echt drei Fotos in die Galerie ; )"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: SES-Memberwrote on 27.07.2010:[10.0] "CM Punk hat sich in den letzten Jahren deutlcih verbessert. Ich muss zugeben, am Anfang habe ich an Ihm gezweifelt als Er Face war, doch ab Extreme Rules hat Er sich immer mehr gesteigert und spielt nun shcon seit mehreren Monaten seine Rolle als ``Savior`` einfach klasse. Im Ring ist er klassse und zeigt dauerhaft eine Klasse Leistung wie man z. B. in der Fehde gg Jeff Hardy sehen konnte und am Mic ist Er eh einer der Besten bei SD. Deutliche 10 Punkte von mir für CM PUNK"
Rating: 10.0
Sentiment: -0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Manu Adamswrote on 26.07.2010:[8.0] "Wird wie ich glaube uns noch lange als WWE Main Eventer erhalten bleiben. Seine Matches insbesonders gegen Jeff Hardy sind exzellent und auch am Mikro hat er einiges drauf. Seine Straight Edge Society ist ebenfalls herrvoragend, Punkte Abzug gibt es allerdings für seinen schwachen Face Charakter."
Rating: 8.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheRock902102wrote on 18.07.2010:[9.0] "Vielleicht einer der wenigen, der die WWE in den nächsten Jahren oben halten kann.  Seine Matches sind extraklasse, ein absolut guter wrestler. Auch sonst ist CM Punk ein Typ mit einem riesigen Unterhaltungswert.  Es dauert nicht mehr lange bis er wieder World Champion ist, er macht einfach nur Spaß !"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The-Game91wrote on 14.07.2010:[8.0] "Ich finde CM Punk etwas überbewertet. Seine Moves sind durschnittlich da er sie oft verbotcht und am Mic ist er auch kein Gott.  EDIT: Heel Punk ist übberragend und zeigt hier was er wirklich kann. Ein richtiges Arschloch sein."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Medeawrote on 30.06.2010:[9.0] "CM Punk hat mich zunehmend mehr überzeugt. Nicht nur durch seine Ausstrahlung und durch sein mitunter auch wirklich sehr lustiges Micwork sondern zuletzt auch durch sein toughes Wiederaufstehen, um dem ungerechtfertigten Buhen des Publikums, welches er verletzungsbedingt auf sich zog, ein Ende zu setzen. Das war eine fabelhafte Fortsetzung des Matches!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Brahma Bullwrote on 26.06.2010:[8.0] "Ein gutes Jahr nach meiner Wertung muss ich meine Note nach oben korrigieren. Im April 2009 gab ich ihm 6 Punkte. Heute geb ich 8. Er ist ein klasse Worker und hat sich hervorragend entwickelt und in der WWE involviert."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WrestlingFanDuisburgwrote on 03.06.2010:[10.0] "CM Punk ist klasse. Als Face hat er mir sehr gefallen und wie es sich für einen guten Heel gehört mag ich ihn als Heel nicht. Die Idee mit der Straight Edge Society finde ich richtig cool. Seine Maske sieht zwar etwas doof aus aber gute Idee."
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Metal Wolfpac Crewwrote on 01.06.2010:[9.0] "Kann dieser Mann eigentlich noch besser werden? Ich mein der Heelturn war schon ein genialer Schazug. Die Straight Edge Society zu gründen hat ihm noch mehr Tiefgang gegeben. Aber die Geschichte mit der schwarzen Maske macht ihn für ich zum Gott. Noch mehr Stilfigur für seine "Sekte" kann man nicht sein. Ich würde mir wünschen, dass die SES noch weiter ausgebaut wird und sich auch namenhafte Stars ihr anschließen. In dem Stable steckt so viel Potenzial auch in der Hinsicht, dass man Kritik an sich selber üben kann und potenzielle Wiederholungstäter in die SES stecken kann (nur so ne Idee). Technisch ist er natürlich oberste Güteklasse und hätte es daher verdient öfter Main Event zu stehen oder den World Title zu gewinnen, grade jetzt wo er zu einem Symbol geworden ist."
Rating: 9.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: coldbeer316wrote on 29.05.2010:[10.0] "Gefiel mir als technisches Babyface schon sehr gut, aber als Heel nur noch ein Gott! Man muss eigentlich nichts mehr zu Cookie Monster;-) Punk sagen!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MarthaHartFanwrote on 29.05.2010:[9.0] "Hat sich von ganz unten nach ganz oben gekämpft. Verdient allerhöchsten Respekt. Allerdings stört mich das SES-Gimmick massiv!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Aquifelwrote on 23.05.2010:[10.0] "Was will man zu Punk noch sagen? Wrestlerisch hat er es einfach drauf, das hat er schon unzählige Male bewiesen. Was Promos und Gimmick angeht ist er momentan einer der besten und interessantesten Charaktere überhaupt. Etwas anderes als 10 Punkte kommt gar nicht in Frage, wobei man sagen muss, dass er als Face in der WWE recht blass war. Aber das kann man ihm nicht ankreiden. Einer der Gründe, weshalb es sich dann doch lohnt die WWE zu verfolgen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Y2J Problemwrote on 23.05.2010:[10.0] "Der "Retter der gradliniegen Gesellschaft" oder einfach "Straight Edge Savior". Allein für den "Rauswurf" von Jeff Hardy 10 Punkte. Das äußerst gute Mic-Work und die guten Matches sind da ein tolles Beiwerk."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Erasedwrote on 22.05.2010:[9.0] "CM Punk bringt sein Straight Edge Gimmick gut rüber. Er spielt seine Rolle sowohl als Face, als auch als Heel gut und wird auch angenommen."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cenafan 09wrote on 22.05.2010:[10.0] "CM PUNK ist die Zukunft von WWE. Er ist in seiner Heel Rolle einfach nur göttlich"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MarcTrixwrote on 19.05.2010:[10.0] "Klasse Wrestler, hat gute In-Ring Skills und es macht einfach Spaß ihn im Ring zu sehen. Außerdem ist er wirklich sehr gut am Mikrofon. Seine Promos sind meistens mitreißend und wirklich sehr gut umgesetzt. Ich hoffe er bleibt uns noch lange im Main-Event erhalten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Straight Edge Jerichoholicwrote on 19.05.2010:[10.0] "CM Punk!  ROH Matches super, IWA MS Matches Super, Einige WWE Matches Super(z. B gegen Jeff Hardy beim TLC Match) und als Heel einfach nur göttlich!  Der Mann kann reden! Die SES strahlt für mich mehr sone Psycho-Gruppe aus aber ich finds klasse so!"
Rating: 10.0
Sentiment: 0.41145833333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Edge96wrote on 12.05.2010:[10.0] "Fand ihn als Face super und als Heel einfach nur genial. Göttlich als geradliniger Savior. Auch seine Socitey passt gut zu ihm. Die starken Mic Fähigkeiten und sein Können im Ring überzeugen mich ihm 10 Punkte zu geben."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Perfectionwrote on 09.05.2010:[10.0] "CM Punk ist wahrscheinlich der Beste, wenn nicht einer der Besten, All Rounder die es gibt. Am Mikro ist er Top, genauso wie im Ring. Er macht mit dem Fans was er will und hat eine sehr gute Ausstrahlung. Ich glaube, dass er momentan seine beste Rolle in der WWE gefunden hat. Die Straight Edge Society hat mit ihm als Savior sehr viel Potential und ich hoffe, dass dieses Stable noch lange bestehen bleibt."
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sandmannwrote on 04.05.2010:[10.0] "Um ehrlich zu sein gefällt mir Punk jetzt mit der Straight Edge Society noch besser als früher bei ROH. Er hat sich seinen Weg wirklich hart erarbeitet bei WWE und kann schon jetzt auf eine sehr erfolgreiche Karriere zurückblicken. Wer hätte gedacht das Punk, der sich ja durch die OVW arbeiten musste, so im Mittelpunkt bei WWE stehen wird. Mir wird er natürlich immer als Leader der Second City Saints in Erinnerung bleiben. Bei ROH gropartige Matches mit Samoa Joe und Raven. Als Kommentator auf den ROH DVDŽs immer richtig cool. ROH Champion, WWE Champion... was will man mehr!"
Rating: 10.0
Sentiment: 0.2125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Defraggerwrote on 29.04.2010:[10.0] "Als Face schon im Ring super gut, nun , als Heel mit feingeschliffenem Charakter für mich grandios. Die Promos jede Woche sind absolut top und sehenswert."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Big Bad Booty Babywrote on 15.04.2010:[8.0] "So leid es mir tut, aber ich muss meine Bewertung ändern. Im Gegensatz zu vielen anderen gefällt mir Punks derzeitige Situation längst nicht so gut. Man beschränkt zu sehr auf seine Rolle als Savior, in der er zwar Unmengen Heat zieht, was ihn aber nicht gleich großartig macht. Einerseits hat die Geschichte mit seiner SS, tschuldigung, will sagen SES (ist das nur eine zufällige Verwechslung oder hat Punks Straightedge Handheben in Kombination mit den Glatzköpfen um ihn herum mein Unterbewusstsein an eine geschichtliche Paralle erinnert? ) etwas und war in dieser Form noch nie vorhanden, womit man TNA zumindest eines voraus hat. Trotzdem gefällt mir sein Auftreten nicht, wahrscheinlich ist es der eindeutige Versuch von Seiten WWEs den perfekt auf amerikanische Klischees abgestimmten Antichristen zu schaffen, für den Punk herhalten muss, was mich so unglaublich nervt und bei mir Ablehnung hervorruft. Punk ist eigentlich so viel mehr..."
Rating: 8.0
Sentiment: -0.3499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: catchfanwrote on 14.04.2010:[7.0] "Als Heel um einiges besser als als babyface, trotzdem kein Worldtitle-Material."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MW - Societywrote on 06.04.2010:[10.0] "Punk ist zur Zeit neben Chris Jericho mit abstand der beste Heel der Liga darum auch 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hennewrote on 04.04.2010:[10.0] "Wer seine ROH Matches kennt, weiß, dass er nicht "nur in TLC Matches" eingesetzt werden kann. Der Junge ist Gold. Er weiß es, die WWE weiß es. - - 2010: Hat sich mittlerweile im Konzert der Großen zurecht etabliert und ist durch seine SES und die neue, alte Ausrichtung des Gimmicks nahezu unverwundbar geworden, ähnlich wie ein Chris Jericho."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kankurowrote on 02.04.2010:[10.0] "Zeigt als Heel seine wahre Klasse, insbesondere was die Promos angeht. Im Moment einer der interessantesten Charaktere in der WWE. // Update: Aufwertung auf die Höchstpunktzahl. Was Punk in den letzten Monaten abliefert, ist ganz große Klasse."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: XCornwrote on 02.04.2010:[10.0] "Neben Jericho ist er der beste Mann am Mic momentan und auch seine Ringskills gehören zu den besten in der WWE, ja im Pro Wrestling überhaupt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Batistawrote on 02.04.2010:[8.0] "Guter Wrestler und stark am Mic! Seine Straight Edge Society kommt gut an! Für mich einer der Top-Stars der WWE!"
Rating: 8.0
Sentiment: 0.03125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Moyawrote on 28.03.2010:[9.0] "Ist sowohl ein guter Wrestler als auch Mic-Worker. Zählt sicher zu den interessantesten Personen zur Zeit!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Venomwrote on 24.03.2010:[10.0] "Wenn der Taker, HBK, Triple H oder ReyRey irgendwann mal kürzer treten bzw ihre Karrieren ganz beenden, dann muss man sich um die WWE dank Leuten CM Punk keine Sorgen machen... Punk, der schon jetzt eine gute Rolle spielt und einige Erfolge vorzuweisen hat, ist in meinen Augen DIE Zukunft für WWE... natürlich neben den schon etablierteren Big-Shots wie Cena, Orton oder Edge!  Punks Vorteil: Er kombiniert sein charismatisches Auftreten mit hervorragenden In-Ring-Leistungen sowie fesselndem Mic-Work ala Chris Jericho!  10 Points Punk! Period!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 123 kidwrote on 18.03.2010:[10.0] "Als Face fand ich ihn schon klasse, aber als Heel ist er einfach nur göttlich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Italian Straight Edgewrote on 16.03.2010:[10.0] "CM Punk war schon immer mein Lieblingswrestler. Ich lebe ebenfalls den Straight-Edge-Lifestyle. In letzter Zeit war er als Face leider etwas langweilig. Da kam der Heel Turn gerade recht. Ein Heel Superstar, der nicht trinkt, nicht raucht und keine Drogen nimmt? Genialer geht's nun wirklich nicht! EDIT: Technisch klasse und am Mikrofon göttlich unterhaltsam. Verdienter Main Eventer. Ich habe so ein Gefühl, dass er dieses Jahr auf jeden Fall einen World Title um seine ''Chicago Made''-Hüften tragen wird. Und die Straight-Edge Society ist auch klasse ... aber Luke Gallows und Serena stehen immer so steif rum ..."
Rating: 10.0
Sentiment: 0.13888888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Holisterwrote on 16.03.2010:[10.0] "Neben Jericho der beste Heel der WWE. Was er am Mic zeigt ist unglaublich auch in Ring steckt er fast alle in die Tasche."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Edi Gliederwrote on 14.03.2010:"Spricht mich überhaupt nicht an, seine Promos sehe ich mir gar nicht mehr an, da sie inhaltlich und vom Stil immer gleich sind."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Turboladerwrote on 13.03.2010:[8.0] "Wenn man bedenkt, wie viele Moves er auf dem Toprope schon versaut hat, dann sind die Punkte wohl gerechtfertigt. Seine Matches sind auch ziemlich langweilig, sein MicWork mag zwar gut sein, aber nicht überragend. Edit: Ich muss meine Wertung an diese Stelle doch mal ändern, da er als Heel echt klasse ist und weiß zu überzeugen, respekt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: tobiasthegreatone1wrote on 11.03.2010:[10.0] "Mit der SES auf einem bomben Niveau im moment wohl der beste Heel der Wwe er ist der einzige der immer mit seinen Promos überzeugt. Alles andere als 10 Punkte zu geben wäre ungerecht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CM Hardywrote on 08.03.2010:[10.0] "CM Punk, klasse Wrestler muss man echt zugeben, und Charisma wie es nicht viele haben. Seit dem Heelturn blüht er richtig gut auf bei der WWE. @ apfelschorle: Schonmal was von Storyline gehört?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated R96wrote on 08.03.2010:[10.0] "momentan finde ich der beste heel in der wwe. mimik und mic-work sind weltklasse und seine ring-künste sind auch nicht schlecht. Außerdem finde ich seinen finisher ganz gut. das einzige was mich stört ist die straight edge society (also eher gesagt die mitglieder:ich hasse gallows und ne frau mit ner glatze will ich auch nicht sehn). aber trotzdem volle 10 punkte."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Carnevalewrote on 08.03.2010:[10.0] "Sein Gimmick ist genial, sein Stable sehr spannend und glaubwürdig, am Mic ist er einer der absolut besten. Auch im Ring ein starker Worker, einzigst sein Go2Sleep Finisher hätte mehr Impact nötig, irgendwie packt er mich nicht ganz. Trotzdem ganz klare 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sebiwrote on 06.03.2010:[10.0] "Super. Im Ring ein super Worker und am Mic ebenfalls talentiert. Als Heel sowieso die coolste Sau, wobei er auch als Face mich überzeugen kann. Sein derzeitiges Gimmick gefällt mir sehr gut und seine SES ist eines der besten Stables was es zurzeit gibt."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Zizouwrote on 05.03.2010:[10.0] "14. 08. 09: Gefällt mir als Heel noch besser als als Face. Punk/Hardy macht Smackdown im Moment zum No1 Brand! - 10 Punkte ------------- 05. 03. 10: Nach der Hardyfehde gings etwas bergab, doch seit nun die SES ins Leben gerufen wurde gefällt Punk mit seinen Promos und seinem "Jesus"-Image wieder richtig gut! weiterhin 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Acid Dwrote on 02.03.2010:[9.0] "Punk ist wirklich ein sehr talentierter Mann. Ob Im Ring, oder am Mic. Egal ob Face oder Heel, er spielt seine Rolle sehr überzeugend und mit viel Hingabe. Mir gefällt es immer, wenn jemand seine Rolle mit Leidenschafft spielt. Und das ist bei Punk definitiv der Fall. Den durchgeknallten Sektenführer bringt er sehr gut rüber. Ich würde mir nur wünschen, das er in den Shows wieder eine größere Rolle bekommt, wie es bei der Fehde gegen Hardy der Fall war."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CMorrisonwrote on 02.03.2010:[10.0] "Das psychopatische Jesus Retter Gimmick ist schlichtweg genial. Sein Move-Set habe ich schon immer gemocht. Freu mich schon auf die Rey Mysterio Fehde bei WM wobei ich nicht hoffe das dann Punk seine Haare verliert (Hair vs Mask Match). Was Serena und Luke angeht bin ich noch nicht ganz überzeugt, aber das kann ja noch werden. Aber da ich ja nur Punk bewerte gibts auf Grund seiner Mic-Fähigkeiten und dem exzellenten Move-Set ne glatte 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Cripplerwrote on 26.02.2010:[6.0] "Er ist ein guter Heel, die Fehde mit Jeff Hardy war einer der besten die ich je gesehen habe, aber mit der zeit stört mich Brooks als Heel und durch die Partnerschaft mit Gallows wird das Ganze auch nicht besser"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Wise Warriorwrote on 26.02.2010:[10.0] "Der Straight Edge Saviour ist gerade das absolute Heel-Top-Paket. Bleibt nur zu hoffen, dass die WWE ihn gut einzusetzen weiß..."
Rating: 10.0
Sentiment: 0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fat Mikewrote on 24.02.2010:[9.0] "Punk ist einfach Klasse! Er hat ordentliches Charisma, ein super Mic-Work und weiß im Ring eigentlich auch immer zu überzeugen."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LebendeLeichewrote on 22.02.2010:[9.0] "Er ist einfach genial in seiner jetzigen Rolle und dazu einfach gut im Ring. Geh mit meiner bewertung deshalb noch nen Punkt höher."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: the king of kingswrote on 14.02.2010:[8.0] "Ein richtig guter Wrestler, macht richtig gute Aktionen und kann sein Gimmick gut ausspielen, aber es gibt welche die ich mehr mag, deswegen "nur" 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wizz21wrote on 06.02.2010:[10.0] "Momentan neben Jericho und Edge der coolste Worker den die WWE zu bieten hat. Sollte meiner Meinung nach aber trotz seiner World Title Runs noch mehr als ohnehin schon gepusht werden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mr Wrestlemaniawrote on 23.01.2010:[10.0] "Ein Großartiger Entertainer und der grund warum ich zurzeit Smackdown schaue."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pizzafunghiwrote on 22.01.2010:[7.0] "Vor 2 Jahren hätte man mich gerne mitten in der Nacht anrufen dürfen um mir zu erklären, was so toll sein soll an CM Punk. Durch seinen Heelturn und die Hardyfehde ist dies nun überflüssig. Gutes Gimmick, klasse Micwork, gut Matches. zZ. leider schlecht eingesetzt, hoffen wir mal die WWE lässt sich für ihn noch was gutes einfallen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jinxwrote on 20.01.2010:[6.0] "Musste meine Wertung leider heruntersetzen. Ich mußte nämlich feststellen, dass mein Interesse an ihm schnell nachließ sobald die Fehde mit Hardy vorbei war. Ohne den richtigen Gegner fehlt ihm irgendwie die Magie und dann wirkt er schnell eintönig."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Pinguwrote on 18.01.2010:[6.0] "Seine Titelruns haben mich leider nicht überzeugt, Wrestlerisch ok, aber ich weiß nicht, irgendetwas fehlt mir an ihm zum Main Event... mit seinem Vollbart mehr zum schreien und lachen."
Rating: 6.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CM Punk Mitbwinnerwrote on 15.01.2010:[10.0] "Wenn er weiterhin so glaubhaft dargestellt wird, hat er das Zeug zum Maineventer"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mugel 187wrote on 12.01.2010:[10.0] "Als Straight Edge Saviour einfach genial. PunkŽs Gimmick ist einfach das perfekte Heel Gimmick. Er kann oder viel mehr darf am Mic wieder überzeugen und über seine In-Ring Leistung brauchen wir nicht zu reden."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RiotMorawawrote on 08.01.2010:[10.0] "Einer der großartigsten Wrestler... über seine legendären ROH-Fehden oder seine Kämpfe mit Chris Hero muss man ja nichts mehr sagen. In der WWE wurde er teilweise sehr sehr schäbig eingesetzt... aber das wird wieder^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: chelsea-cenawrote on 08.01.2010:[10.0] "Mein absoluter Favourit! Hervorragende Skills! Sein Heelturn hat mich sehr gefreut! Würd mich mal wieder freuen ein richtiges Fehdenprogramm zu bekommen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PassiV1wrote on 06.01.2010:[10.0] "Muss hier mal eine Verbesserung anstellen. Seine Fehde im Sommer hat ihn entgültig zu einem 10er-Kandidaten gemacht und sein aktuelles Gimmick rockt einfach."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Moonlightwrote on 02.01.2010:[10.0] "Mit Vollbart und HBK-Brustbehaarung jetzt noch besser, einfach WOW!"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Razor995wrote on 02.01.2010:[5.0] "Ich gebe hern Punk nur 5 Pkt weil, anfangs war es ja ganz lustig so zu ECW zeit von ihm aber dann hat man versucht ihn ganz nach oben zu bringen natürlich kann man was aus ihm machen aber das was die WWE gerade mit ihm anstellt ist der größte MÜLL. Ich fand es schon zuviel das er erst World Heavyweight champion war dann Tag Team Champion, dann nochmal World Heavyweight champion usw. Und sein jetziger part lässt auch zu wünschen übrig"
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Topwrote on 31.12.2009:[10.0] "CM Punk war immer einer meiner absoluten Lieblingswrestler, das hat sich auch nicht geändert, als er als Face in die WWE gekommen ist. Er hat bewiesen, dass er auch das kann, indem er allein durch seine Fähigkeiten im Ring und seltene Promos over gekommen ist. Aber jetzt nach seinem Heel Turn, kommt mir der Facerun einfach nur lächerlich vor. Sicher, er ist immer noch nicht so gut wie bei RoH, weder im Ring noch am Mic, aber man muss bedenken, dass er immer noch stark limitiert wird. Inzwischen ist aber sogar sein Moveset wieder viel technischer und man sieht alte schon bekannte Moves aus den Indys wieder. gegen den Undertaker nach dem Summerlslam. Auf jeden Fall hat CM Punk durch seinen Turn eine dringend nötige Charakterentwicklung durchlaufen und gezeigt, dass er sowohl im Ring als auch am Mic einer der Besten der WWE ist und ich kann nur hoffen, dass die WWE das nutzt und ihn endgültig als Main Eventer auftreten lässt."
Rating: 10.0
Sentiment: -0.016666666666666677
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: finsterwegwrote on 23.12.2009:[10.0] "Der Mann der Zukunft in der WWE, auch wenn mir gerade sein Gimick nicht gefällt. Das Clean gehabe ist irgendwann verbraucht."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: gunniwrote on 15.12.2009:[9.0] "Ich muß sagen, jetzt als heel hat er mich auch als Fan! Nun kann er zeigen das er was kann, im Ring ja sowieso aber auch verbal! Bei RoH war er ja schon als heel unterwegs und war da ja auch super. Es gibt Wrestler denen liegt das babyface einfach nicht, die müssen sich als heel etablieren und bekommen dann erst ihre Fans, wie eben CM Punk aber auch Edge."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GabberGizmowrote on 13.12.2009:[3.0] "CM Punk gefällt mir überhaupt nicht ! Egal ob im Ring oder ausserhalb des Ringes. Sein ganzes Verhalten und sein Kampfstil haut mich nicht vom Hocker !"
Rating: 3.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Telecinewrote on 01.12.2009:[8.0] "Punk ist seit seinem Heel Turn einfach unglaublich verbessert. Dass er ein guter Wrestler ist, wusste man schon vorher, aber seine Rolle war vorher einfach nicht wirklich klar definiert. Jetzt als ein Anti-Drogen-Prediger (In Christians Worten "Nerd") bringt er das Publikum gegen sich auf und schafft es sogar, mich als Smark teilweise ein wenig zu reizen. Außerdem ist er seit seinem Heel Turn auf einmal blitzschnell zu einem glaubwürdigen Main Eventer aufgestiegen, was nach seinem ersten Titelgewinn (der allerdings auch im Aufbau-Verhinderungs-Brand Raw geschehen ist) nicht der Fall war."
Rating: 8.0
Sentiment: -0.03205128205128206
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Larskanonewrote on 23.11.2009:[9.0] "Im letzten 3/4 Jahr zu einem der Topstars, Topheels aufgestiegen, hat mir aber bereits als Face sehr gut gefallen, aber finde trotzdem dass er als Heel sehr überzeugen ist. Außerdem hat er in diesem Jahr auch seine besten Fehde (mit Jeff Hardy) gehabt, und hat vor allem dort grandiose Promos gehalten. Gebe aber keine 10 Punkte , da er bzw. WWE es nicht geschafft hat ihn im ME zu etablieren."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MrSmackdownwrote on 22.11.2009:[10.0] "Aus den Indys an die spitze der WWE, Straight Edge, best in the World!"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Peep86wrote on 22.11.2009:[10.0] "Ein sehr sehr gute Paket das er bildet. Was besonders gut auffällt, ist die realistisch Matchführung. Sein Gimmick zieht er auch glaubwürdig von Sendung zu Sendung durch. Schön auch das er mal nicht so absolut wwe like aussieht"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Andi68Hitmanwrote on 14.11.2009:[9.0] "Für mich in beiden Belangen schon jetzt einer der ganz Großes des Business. Als Heel und Face in meinen Augen gleichmassen stark. Versteht es gute Reaktionen beim Publikum zu ziehen und hat ein immenses Move-Arsenal ... Auf die weitere Entwicklung darf man sehr gespannt sein. Der Triple H-Ersatz, wenn dieser sich anderen Dingen im Geschäft zuwendet."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Undertaker 4 everwrote on 11.11.2009:[10.0] "Ein Top-Heel mit den besten Vorraussetzungen, um in ein paar Jahren in die WWE HoF zu kommen. Als Face okay, aber als Heel grandios! Eifach SUPER!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ultrakaoswrote on 06.11.2009:[10.0] "CM Punk ist ein Klasse Techniker. Sein Face Gimmick war Klasse. Auch sein Heel Turn finde ich Ok aber nervt es ein wenig das er nur über seinen Gradlinigen lebensstil redet. Aber was ich dumm finde ist das seine Titelruns so kurz sind -. -"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: New Evolution90wrote on 05.11.2009:[3.0] "Früher hatte er noch charisma und den Drang nach vorne zu kommen. Jetzt , finde ich, da er schon ein paar mal den World Heavyweight Titel hatte kann er sich so eine Leistung im Ring leisten. Ich glaub nicht. Ich hoffe das er sich bald vom "Badass" zu einem "Messias" ändert"
Rating: 3.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Last Ridewrote on 04.11.2009:[9.0] "Er gibt momentan wohl den besten Heel neben Jericho, seine Entwicklung innerhalb der WWE im letzten Jahr kann man nur positiv sehen. Ich denke auch nicht, dass sein Titlerun zu kurz war, er wird schon bald wieder ums Gold kämpfen und sich oben etablieren. Die eventuell verfehlte Kleideriordnung ausserhalb des Ringes sehe ich nicht wirklich als Problem für die Zukunft. Super am Mic, stark im Ring."
Rating: 9.0
Sentiment: 0.04444444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Perry Coxwrote on 22.10.2009:[10.0] "Endlich hat CM Punk seine Rolle gefunden: als böser Mann, der für das Gute Straight-Edge eintritt. In dieser Rolle gefällt auch mir CM Punk besser denn je. Er liefert tolle Promos und zeigt keine 08/15-Matches, sondern epische Schlachten, wenn man es so nennen darf. Endlich schafft die WWE es, ihn vernünftig einzusetzen und unterzubringen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Joe111wrote on 21.10.2009:[8.0] "Ich finde es falsch, wie einige ihn loben und ihm die Punkte hinterher schmeißen. Ich muss dazu sagen, dass ich Punk nur nach seiner Zeit in der WWE bewerten kann. Und hier ist er für mich keine 10 Punkte Wert. Er ist einfach noch kein "Must see" wie Undertaker, Edge oder HBK, die immer sehr gute Leistungen bringen. Er hat sich Promomäßig verbessert und schon Sicherheit am mic erlangt, jedoch fehlt seinem Charakter trotzdem noch die Tiefe und etwas, was ihn auch langfristig interessant hält. Ehwig kann er dieses straight edge Gerede nicht aufziehen. Wrestlerisch habe ich von ihm leider auch noch kein sehr gutes match gesehen was eine 10 Punkte- Wertung rechtfertigen würde. Mit den richtigen Gegnern kann es durchaus ganz gut werden aber er kann weniger talentierte Worker auch nicht zu Meisterleistungen ziehen. Ein richtiges Breakoutmatch fehlt für mich einfach noch."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: BoeserLobowrote on 05.10.2009:[10.0] "Sehr guter Mic-Worker. Durchaus als Champion überzeugend. Als Heel mittlerweile in der WWE absolut überzeugend. Zeigt regelmässig, dass er sehr gute und spannende Matches abliefern kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: element-41wrote on 04.10.2009:[9.0] "Starker Wrestler! Gut im Ring und am Mic. Herausragend als Heel und hat einen der besten Finisher in der WWE. 9 Punkte"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Edgecutionerwrote on 01.10.2009:[6.0] "Also bitte, CM Punk ist KEIN Bret Hart, KEIN Shawn Michaels, KEIN Chris Jericho... etc. Diese Vergleiche sind doch meiner Meinung nach seeeehr weit her geholt. Von so einen Legendenstatus ist er so weit entfernt, wie der Macho Man von einem weiteren WWE-Run. Ich will Punks Fähigkeiten ja nicht in Frage stellen. Ohne Zweifel sehr talentiert im Ring, guter Turn... aber sorry. Live/ bei Houseshows ist CM Punk so aufregend, wie ein Stück Brot. Und seine Fähigkeiten am Mic? 10 Punkte? Was müsste dann ein Rock bekommen? 100 Punkte? Nur weil er jetzt innerhalb von ein paar Wochen zum x-fachen "World Champion" gemacht wurde, ist er noch lange keine Legende. CM Punk hat einzig und allein davon profitiert, das WWE es in den vergangenen Jahren nicht geschafft hat, richtig gute Leute vernünftig aufzubauen."
Rating: 6.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jollietwrote on 29.09.2009:[10.0] "Viele ziehen den Vergleich zu Chris Jericho (zurecht! ). Ich finde aber, er ist der Bret Hart des 21. Jahrhunderts. C M Punk kann einfach alles und wird zur Zeit brilliant eingesetzt."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Champwrote on 20.09.2009:[10.0] "Ich muss meine Bewertung ändern. Wrestlerisch einer der besten, am Mic großartig. Klasse auftreten, gute Einstellung. Lebt sein Gimmick wie kein anderer. Seit seinem Heel-Turn hat er endlich ein Gimmick bekommen, was nicht besser hätte passen können. Seine Promos und sein Interagieren mit den Fans ist ungeschlagen. Nur Jericho schafft das genauso gut. Im Ring gehört er eh zu den Besten. Für mich bleibt nur ein ehrliches Fazit: Straight Edge means, I'm better than you!"
Rating: 10.0
Sentiment: 0.4125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Basket Casewrote on 14.09.2009:[10.0] "Seit seinem Heel-Turn der heißeste Superstar des ganzen Rosters für mich. Einfach grandios was Punk zur Zeit abliefert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mr van Damwrote on 14.09.2009:[10.0] "Als er ROH verließ habe ich gebetet das er kein Grinse-Face werden würde. Leider wurde er es, in der ersten Zeit war das auch ansprechend, doch sein Run als Heavyweight-Champion setze man total in Sand. Seit seinem Heel-Turn endlich wieder der Punk, den ich so vermisst hatte. Ich hoffe man pusht ihn und setzt ihn dauerhaft im Main Event fest. Die Zukunft von WWE."
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Clevermindwrote on 14.09.2009:[10.0] "Auch wenns Klischee ist, aber seit seinem Heelturn ist CM Punk so interessant für mich wie noch nie. Er darf endlich seine vollen Stärken am Mikrofon ausspielen, und das was er sagt ist so wahr, dass das Publikum ihn schon deswegen zwangsweise hassen muss (ich persönlich teile allerdings Punks Ansichten! ). Die Fehde gegen Jeff war für mich die interessanteste Fehde seit langer Zeit in der WWE. Und jetzt nach dem Sieg gegen den Undertaker (noch dazu schön kontrovers) hat Punks Stern gutes Pontenzial noch weiter zu steigen. Auch wenn es im Ring bessere als ihn gibt (was aber sicher auch an dem Wrestlingstil der WWE liegt, in anderen Ligen zeigte Punk immerhin auch mehr) ist der Straight Edge Superstar momentan einer meiner Favoriten bei der WWE. Und wenn Punk sein Gimmick tatsächlich auch im realen Leben beibehält (falls es wirklich wahr sein sollte), könnten sich manche Wrestler ne ordentliche Scheibe davon abschneiden (ohne jetzt Namen nennen zu wollen ;-))"
Rating: 10.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Big Daddy Swrote on 14.09.2009:[10.0] "CM Punk war als Face schon sehr talentiert und kam gut an, aber sein neues Heel Gimmick als "Just Say No"-Prediger steht ihm noch besser. Für mich eine der positiven Überraschungen dieses Jahres. Was ihm zum Beispiel gegen Batista an körperlicher Präsenz gefehlt hat, macht er nun durch seine scharfe Zunge und seine aggressive Art im Ring wett. Mal schauen was die Zukunft für ihn noch bringt, der Sieg gegen den Undertaker dürfte ihm auf der Leiter noch ein Stück weiter geholfen haben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: real americanwrote on 08.09.2009:[9.0] "CM Punk ist ein großartiger Wrestler mit viel Charisma dessen stiffer Stil mit den Low Kicks und Knee Lifts mir unglaublich gut gefällt. Er hat gegen Joe legendäre Matches gezeigt und die Promos in seiner Fehde mit Raven bei ROH waren unglaublich, sein Gimmick und das er es auch privat lebt machen ihn noch sympatischer. Nach seinem Heelturn funktioniert er bei der WWE nun auch perfekt, das "Straight Edge means I'm better than you" Gimmick ist ihm auf den Leib geschneidert, und auch im Ring hat er jetzt in der WWE schon ein paar richtig gute Matches gezeigt. Am Mic ist Punk sowieso über jeden Zweifel erhaben."
Rating: 9.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 108 Sternewrote on 07.09.2009:[8.0] "Der einzige neuere WWE-Star, dem ich bescheinige, daß er eines Tages eine Legende werden könnte. Er hat was!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: alkoholiKAwrote on 06.09.2009:[10.0] "Ich kenne Punk erst seit er bei der WWE ist, und das fande ich bis vor kurzem sehr sehr blass. Als Face absolut farblos und in meinen Augen einfach langweilig. Sein erster Championship-Run letztes Jahr war ja ebenfalls ein totaler Flop. Dankenswerterweise ließ man ihn Heel turnen und das direkt gegen den Top-Face, Jeff Hardy. Die Promos in der Hardy-Fehde fand ich wirklich sehr gut. Er vermittelt wirklich das Gefühl, dass Straight-Edge einfach "besser" ist. Wie bei allen Fehden gilt auch hier: Wenn die Storys authentisch und echt sind (wirken), dann begeistern sie das Publikum. Deshalb derzeit als Heel: Absolute 10 Punkte! Momentan neben Jericho der Top-Heel. Meiner Meinung nach deutlich vor Orton."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Maikwrote on 05.09.2009:[10.0] "CM Punk ist für mich das beste Beispiel eines Wrestlers, der einfach ein falsches Gimmick hatte. In der ECW oder bei RAW war er Ringtechnisch gesehen ja recht gut, Promos hab ich nich viele von ihm mitbekommen... Aber er war für mich einfach uninteressant. Seit er bei SmackDown ist wurde er immer besser. Und als er zum Heel wurde einfach nur Super! Wirklich, kaum ein Wrestler interessiert mich zur Zeit mehr. Seine Promos sind super und die Matches auch! Außerdem mag ich es das er nich als der "Feige"-Heel dargestellt wird, wie es so ziemlich 80% der Heels sind. So solls weitergehen, er bringt SD! immer weiter nach oben!"
Rating: 10.0
Sentiment: 0.2789797008547008
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mrfantasickwrote on 05.09.2009:[10.0] "Ich muss jetzt einfach die Note nach oben korrigieren, denn das was uns CM Punk jede Woche bietet ist schon richtig stark. Seine Matches sind eigentlich alle sehr sehr stark und seinen Promos und die schauspielrische Leistung genauso. Es macht richtig Spaß dem Typen zuzuschauen."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Uzuwrote on 04.09.2009:[10.0] "Ein genialer Wrestler der sich steigert und steigert. CM Punk ist verdient an der Spitze der WWE als World Champion. Sowohl als Heel als auch als Face überzeugend. Sehr gutes Micwork und geile Promos."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: jimpanse1980wrote on 04.09.2009:[10.0] "Punk ist nun schon 3-facher Heavyweight-Champion, aber erst anno 2009 als Heel ist er tatsächlich im MainEvent etabliert und liefert die besten Promos und Matches seit Egde's kometenhaften Aufstieg. Auch bei Punk überzeugt sowohl Gestik als auch MImik und das Ganze drumherum. Hier sieht man mal wieder, dass es Wunder wirken kann, wenn man jemanden einfach mal machen lässt. Technisch gabs an Punk nie etwas auszusetzen, nun hat er seinen (wenn auch schon aus ROH-Zeiten bekannten) Straigt-Edge-Heel ausgepackt und liefert Woche für Woche gigantische Promos ab, durch die man es liebt ihn zu hassen. Und ich bin mir sicher, das Ende der Fahnenstange ist noch längst nicht erreicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: reene82wrote on 04.09.2009:[10.0] "CM Punk bringt richtig frischen Wind in den Main Event der heutigen WWE. Gute bis sogar sehr gute in-Ring-Skills tragen dazu bei, dass seine Matches mich zumindest nie langweilen. Was aber mehr zu der 10 beiträgt, sind seine überragenden Fähigkeiten am Mic und auch die nonverbale Kommunikation mit dem Publikum - Genau das, was für mich den guten vom sehr guten Wrestler unterscheidet. Wir können uns alle glücklich schätzten, dass dieser Mann bei Smackdown in den letzten Monaten so gepusht wurde. Hoffe, dass die nun beginnende Fehde mit dem Undertaker dazu beiträgt, dass Punk uns neben seinem Straight Edge Gimmik weitere Facetten seines Charakters präsentieren kann. Dann nämlich gehört er zweifellos zur Zukunft der WWE und wird in den kommenden Jahren einer der ganz Großen werden."
Rating: 10.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: billygunnwrote on 02.09.2009:[9.0] "Jung, charismatisch und Talentiert - Das macht ihn zu einem Wrestler, der die WWE noch lange aufmischen wird. Ich persönlich, finde das er seine Heel-Rolle wunderbar darstellt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The-Real-Diablowrote on 01.09.2009:[10.0] "Endlich ist Punk da, wo er hingehört: In den Main Event. Der interessanteste Charakter momentan innerhalb der WWE und jemand, der sich sicherlich im ME festbeißen wird. Er hat schließlich absolut alles, was man dazu benötigt."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wichtgestaltwrote on 30.08.2009:[9.0] "Tjaha, anfangs kannte ich relativ wenig von ihm und war nach seinen Promos bei ROH sowie der dazugehörigen Matches schwerbeeindruckt. Dann allerdings konnte ich länger Zeit bei der WWE "live" verfolgen und irgendwie sprang der Funke in seiner Face Zeit nicht über. Vorallem sein erster Run als Champion war, meiner Meinung nach, "verbockt". Dann deutete sich sein Turn an, welcher in der Fehde gg. J. Hardy dann konsequent vollendet wurde. Jetzt freue ich mich wie blöd auf die Fehde gg. den Undertaker und hoffe, dass er mit dieser entgültig in den WWE-Olymp aufsteigt."
Rating: 9.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: HCN007wrote on 30.08.2009:[10.0] "Endlich da angekommen, wo er hingehört und mit dem Heel-Turn endlich an dem gewonnen, was ihm als Face immer gefehlt hat. Charisma, Micwork, Standing, Lebensstil und Erfahrung machen ihn zu einem unverzichtbaren Zukünftigen Eckpfeiler der WWE, was 2010 sicherlich der Fall sein wird, da er dieses Jahr mit Jeff Hardy und dem Undertaker 2 Fehdengegner hat, die ihm in den WWE-Main Event nachhaltig helfen werden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Paulinawrote on 30.08.2009:[10.0] "2009 ist ganz klar CM Punks Jahr! Jetzt ist er endlich Heel geturnt und kann am Mikrofon rocken, er zieht ohne Frage ganz perfekt Heet und schafft es alle Fans mit seinen "straight edge" gegen sich zu bringen, die Rivalität gegen Hardy den Publikumsliebling macht das ganze noch Perfekt, ich bin gespannt darauf wieviel Heet er nun ziehen wird wo er Jeff Hardys Karriere beendet hat und ihn dann noch angegriffen hat. Es gibt viele gründe warum man zurzeit SmackDown gucken sollte, und CM Punk ist in der Top 3"
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: XtremeEnigmawrote on 30.08.2009:[10.0] "Zur Zeit geht für den Mann aus Chicago wohl ein Traum auf: Zuerst gewinnt er zum zweiten Mal hintereinander das MitB Match und dann darf er mit einem perfekt ausgeführten schleichenden Heelturn zum wohl besten Charakter bei Smackdown werden. Punk liefert derzeit nur noch grandiose Promos ab und die Fehde gegen Jeff Hardy hat ihn wohl nach ganz oben katapultiert. In meinen Augen hat er den Platz an der Spitze mehr als verdient und aus dem Main Event wird ihn wohl keiner mehr so schnell herausbekommen, außerdem warten frische Fehden gegen den Undertaker oder andere Smackdown Faces. Zur Zeit mein persönlicher Fave-Superstar mit einem noch unverbrauchten Charakter... weiter so WWE!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mathias Rekaschwrote on 28.08.2009:[10.0] "CM Punk ist am erdachten Bestimmungsort seiner Fanscharen angekommen - und zwar als funktionierender Heel. Mit einem langsamen und stetigen Aufbau ist es gelungen Punk als derzeit interessantesten Charakter bei SmackDown und glaubwürdigen Champion aufzubauen. Nun darf er bei WWE auch endlich sein volles Potenzial ausschöpfen - und er wird es den Verantwortlichen entsprechend danken."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: FeDDeXXwrote on 28.08.2009:[10.0] "CM Punk ist schon ein sehr guter Wrestler in seiner Zeit bei ECW. Dann bei RAW hat sein Run als WHC nicht gerade einer der Besten. Aber jetzt bei Smackdown und seiner Fehde mit Jeff Hardy ist er endgültig im Main Event angekommen und nun kann er hoffentlich den Titel auch gegen den Undertaker verteidigen. Ich bin sehr gespannt was die WWE mit ihm anstellt."
Rating: 10.0
Sentiment: -0.03205128205128206
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Cpt Dave Charismawrote on 24.08.2009:[10.0] "Egal ob Chick Magnet, Crooket Moonsault oder Cookie Monster... CM steht für großartiges Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: derBosswrote on 23.08.2009:[10.0] "Diesem Mann gehört die Zukunft der WWE. Er hat es geschafft sich im Main Event zu etablieren und liefert in den letzten Wochen geniale Promos ab."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: rey mysterio 104wrote on 23.08.2009:[10.0] "Ich finde es sehr gut das man ihm das "Straight Edge Superstar" Gemmick gegeben hat, weil er dieses Gemmick nicht spielen muss und das dadurch viel authentischer wird."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AMMOwrote on 19.08.2009:[8.0] "Wird in der WWE immer schlechter. Man schafft es nicht ein funktionierendes Gimmick zu integrieren. Wer das Kayfabe brechen muss um von Indy Fans ausgebuht zu werden muss gut sein. In der WWE wird er neben all den Badehosenwrestlern kein Licht sehen, und wird ausserhalb der ECW von den Mainstream Fans nie als Titel Anwärter anerkannt werden."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Amurebkuwrote on 14.08.2009:[10.0] "Super Gimmick! Ich mag sein Auftreten und seine Art total gerne! Hat sehr viel wrestlerisches Potential für die Zukunft. Ich hoffe, dass er sich weiterhin im Mainevent positionieren kann. Er ist einfach klasse, vertritt meine Einstellung vom Leben (keine Zigaretten, kein Alkohol, keine Drogen) und kann ohne weiteres als einer meiner Lieblingswrestler betitelt werden."
Rating: 10.0
Sentiment: 0.13888888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Azarothwrote on 12.08.2009:[9.0] "CM Punk... Lange Zeit stand der Name bei mir für.... eigentlich nix. Er war zu seiner Anfangszeit in der WWE (Ich habe seine Indy-Karriere nicht verfolgt) ein ziemlich farbloser Face (den 2-Wochen-Heelturn mit der New Breed zähle ich mal nicht) der auf mich ziemlich austauschbar wirkte, das einzig markante an seinem Charakter waren eine gewisse Stiffness und die Straight-Edge-Haltung. Mit der Zeit wurde Punk aber immer besser gebookt, sodass ich ihm seinen ersten Money in the Bank Sieg auch gegönnt habe. Nach dem eher misslungenen ersten Titelrun offenbarte sich aber erst knapp ein Jahr später, was für Qualitäten der Punker wirklich besitzt. Denn seit dem schleichenden Heelturn schafft er es, mich Woche für Woche aufs neue zu begeistern. Die Promos werden immer besser und auch im Ring gefallen mir seine Aktionen besser, wenn er sie als Heel ausspielen darf."
Rating: 9.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: onlyKINGwrote on 08.08.2009:[10.0] "Als Heel noch besser! Einfach klasse! Der (kommende) Superstar und Maineventer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: T-Waynewrote on 02.08.2009:[10.0] "Super als Heel bei WWE und bei ROH. Ein sehr charismatischer junger Wrestler, der mir schon vor seiner WWE-Zeit sehr gut gefallen hat."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: homicidal cena michaelswrote on 27.07.2009:[9.0] "CM Punk ist ein guter Techniker welcher auch Highflying Aktionen zeigt. Seine Matches sind gut aber er wird oft schlecht dargestellt z. B. wenn er durch DQ einen Titel verteidigt oder gegen einen Umaga nur einstecken muss. Man sollte ihn als Babyface oder Tweener besser darstellen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Thomas Carlsonwrote on 19.07.2009:[7.0] "Gut Indy Gott war er keiner für mich. Für TNA Fans sicher auch nicht. Obwohl TNA selbst schuld ist weil sie ihn nicht wollten. Gut war er bei ROH und zum lachen brachte er mich auch. Es gibt aber gewisse Dinge die bei der WWE nicht funktionieren. Inzwischen hat er sich geändert und scheint ins Anfprderungsprofil zu passen. Mit seiner Einstellung scheint er auch ideal zu sein gegenüber den "Medikamenten" Sündern. Bei den Promos in der WWE fehlt mir noch der gewisse Kick. Trotzdem gehen sie in Ordnung. Ist bei Smackdown besser aufgehoben als bei Raw. Gegen die Brocken durfte er nicht gut aussehen."
Rating: 7.0
Sentiment: 0.33461538461538465
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: undertaker619wrote on 22.06.2009:[7.0] "Leider fehlt mir bei Punk immer wieder die Mic-Work, wie es von einem MVP, Ken Kennedy oder nicht zuletzt Chris Jericho an den Tag gelegt wird. Dennoch muss ich sagen, ist Punk ein technisch sehr versierter Superstar, der nicht ohne Grund bereits dreifacher World Champion ist (wenn man den ECW Titel aktuell als World Titel mitrechnet! )."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Legdropswrote on 19.06.2009:[7.0] "Zugegeben, der Zickzackkurs, den die WWE mit ihm abzieht, kommt ihm nicht gerade entgegen. Dennoch wirken seine Matches auf mich immer häufiger wie "Dienst nach Vorschrift". Würde mich sehr über einen baldigen Heel-Turn freuen, der ihm endlich Profil verleihen könnte."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Roseswrote on 12.06.2009:[10.0] "Der vielleicht beste Wrestler den die welt gesehen hat wobei er bei ROH besser rüber kam, obwohl er als world champion auch ganz schön was her macht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Soapywrote on 06.06.2009:[7.0] "Hat für mich nicht die nötige Ausstrahlung um längerfristig oben mitzuspielen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mysterioflowrote on 06.06.2009:[4.0] "ich verstehe nicht warum ihr was an dem findet. ich finde ihn in seiner rolle nicht gut."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Afroman Undertaker 619wrote on 22.05.2009:[10.0] "Bei CM Punk stimmt alles Entrance Musik, Finisher, alle Moves einfach nur ein Klasse Wrestler. Ohne Worte ein Straight Edge."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Main Eventwrote on 17.05.2009:[9.0] "Ich wusste immer schon dasss aus CM Punk mal was wird. Auch wenn er zur Zeit "nur" übergangs-Champion ist. Er ist einfach ein toller Wrestler und wenn das mit dem Straight-Edge tatsächlich stimmt mag ich ihn noch mehr."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NewGuywrote on 09.05.2009:[10.0] "geht mir auf die Nerven, dass er nicht genug gepusht wurde bis jetzt. Letztes Jahr trotz World Title in der Midcard! Hoffentlich wird er diesmal so in den Main Event Bereich gepusht wie er es verdient hat! Wäre neben John Cena ein super face!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jar Jar Binkswrote on 05.05.2009:[9.0] "CM Punk... Zu seiner ROH Zeit unglaublich stark mit extremen Moves, die er uns heute leider nicht mehr zeigen darf. Heute lange Zeit farblos, allerdings hat er vermutlich mehr Ansehen als jeder glaubt. (2x MitB, 1x WHC Champ, Triple Crown Champ) Das Punk ein großartiger Wrestler ist, ist unumstritten und ich finde ihn sehr sympatisch, einer meiner Lieblingswrestler."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated HHHwrote on 03.05.2009:[10.0] "Die Zukunft des Buisness. Hat alles was ein World-Champ braucht, das Charisma, die Fähigkeiten im Ring und am Mic. Würde ihn trozdem gerne als Heel in der WWE sehen, um Fehden wie gegen Taker oder Jeff Hardy zu sehen. Von CM Punk werden wir noch viele großartige Matches sehen und ich wüsche ihm das er eines Tages mal Wrestlemania Headlienen darf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: txcwrote on 28.04.2009:[6.0] "bleibt in der WWE einfach farblos, wird aber dennoch zur sehr mit Titeln überhäuft"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Peiski Bombwrote on 21.04.2009:[7.0] "Im Ring mehr als solide, viel Charisma aber leider einschläfernde Promos. Nebenbei hat er auch noch eine gewisse Vorbildfunktion. Aber aus irgendeinem Grund reicht es für mich doch nicht zu einem ''gut''."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Undertaker94wrote on 18.04.2009:[10.0] "Er ist sehr talentiert und hat einen einzigartigen Kampfstil."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: REYMVPwrote on 14.04.2009:[9.0] "CM Punk ist ein großartiger Superstar. Aber Matt Macks hat recht! Man sollte nicht zu lange warten... Ihn als HEEL zu pushen ist glaub ich auch gut, bei Judgement Day hat er so oder so Chigago hinter sich! Genau wie bei Edge in Toronto. Fazit: Die WWE kann glücklich sein das sie CM PUNK haben!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: deadmaninc93wrote on 13.04.2009:[10.0] "Sein Kampfstil ist einfach nur einzigartig und höchst unterhaltsam."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Finlay Thornwrote on 01.02.2009:[8.0] "Meine Meinung über CM Punk schwankt von Zeit zu Zeit ein wenig. Er hat seine Phasen, in denen finde ich ihn brilliant, dann kommen wieder Phasen, in denen er mich eher langweilt, wozu zum Beispiel die gefühlte Endlos-Fehde gegen Morrison um den ECW-Titel gehörte oder auch die Tag-Team-Zeit mit Kofi, die mir nicht so wirklich zusagte. Einen Markout hatte ich dagegen natürlich bei seinem Titelgewinn, doch die schönste Zeit mit CM Punk war für mich immer noch die, wo er damals bei ECW die New Breed infiltriert hat. ^^ Göttliche Segmente hat er da imo auf die Beine gestellt. Ich mag ihn wirklich sehr, wünsche mir aber mehr solcher Storys für ihn und vor allem braucht er dringend mehr Mic-Time. Dass er reden kann, hat er bewiesen, also sollte die WWE ihn das auch mal öfter zeigen lassen. Für mich ist er eigentlich schon ein Typ für den Mainevent, aber dazu braucht es auch gutes Booking und keine 08/15-Fehden."
Rating: 8.0
Sentiment: 0.5181818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ScrWwe94wrote on 22.01.2009:[10.0] "Toller Wrestler der sich auch den World Title verdient hatte; für ihn is in zukunft noch viel drinnen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: N3m35i54wrote on 03.01.2009:[10.0] "Einer der wenigen Gründe, weswegen ich überhaupt noch Raw schau"
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Superbeastwrote on 28.12.2008:[10.0] "I simply love him... allthrough his career... he has improved more and more and is still learning... potential to be one of the best ever!"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated R Superstar Hunterwrote on 18.12.2008:[10.0] "Wie ich finde, einer der besten Wrestler. Hamma charisma, super technik und auch am mic überzeugend. Ich sehe in CM Punk den Maineventer der Zukunft und hoffe das er noch viele World Title gewinnen wird."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Larethwrote on 17.12.2008:[7.0] "Ich würde gerne mehr Punkte geben, aber eins ist mir bei CM Punk klar geworden: Da ist gimmicktechnisch noch viel Luft nach oben. Seine Matches machen mir wirklich viel Spaß, aber seinem Charakter fehlt einfach der Biss. Das macht die Promos langweilig. Ich erinner mich, wie um Vickie Guerrero herumtänzelte, als er seinen Titel gewonnen hatte. Das war nicht männlich und championhaft, das war kindisch und einem Champion unangemessen. Ich bin aber überzeugt, dass er auch diese Hürde spielend schaffen kann."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Phenomwrote on 10.12.2008:[9.0] "Absolutes Riesen Talent! Ring skills sind absolute 10. Gefällt mir echt super! Mic sowieso, auch wenn er aufgrund seines zurzeit ziemlich schlechten Gimmick kaum dazu kommt, was zu sagen. Was Punk braucht ist ein Heel-Turn. Und zwar ziemlich schnell in den Main Event mal die ganzen ausgelutschten immer wieder Champs austauschen. Wie gesagt, sein Gimmick finde ich ziemlich blöd. Da er aber so gut im Ring ist, griegt er von mir noch 9 Punkte."
Rating: 9.0
Sentiment: 0.2611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: King of Queenswrote on 08.12.2008:[7.0] "Hier sieht man deutlich, was ein verfrühter World Title Gewinn anrichten kann. Eine einstige Zukunftshoffnung und der von mir als Breakoutstar 2008 prognostizierte CM Punk hängt in der wertlosen TT-Division mit einem Zappelphillipp fest. Und nun wieder glaubhaft als Main Eventer zu funktionieren, muss sich bei CM Punk einiges tun. Schritt 1 hierzu wäre eine glaubhafte und langsam aufgebaute Fehde, die ihn an die ME-Region heranführt."
Rating: 7.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nicojansonwrote on 27.11.2008:[10.0] "Ihm gehört die Zukunft. Ein top Wrestler, der von der WWE völlig falsch eingesetzt und gepusht wird, weil es bei ihm so wirkt, das er zwar etwas gepusht wird, aber dann wieder für Midcarder Jobben muss."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Foerstawrote on 24.11.2008:[10.0] "CM Punk steht für mich für: Geiles Gimmick, geiler Entrance + Musik, geiler, schneller Stil! Er hat die 10 vollkommen verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Ayatollah of RocknRollahwrote on 24.11.2008:[8.0] "Sehr starker Wrestler, manche nennen ihn auch "König der Indys", aber Fakt ist heute, dass Punk noch nicht den Durchbruch geschafft hat und ich daher nur 8 Pkt. vergeben kann. Er ist stark, auch wenn sein Straight-Edge-Gimmick nervt, und er hat das Zeug es an die Spitze zu schaffen. Allerdings sollte man solange den Hype runterschrauben, denn seine Regentschaft ar auch wegen des Bookings noch nichts besonderes... Ich lasse mich aber gerne eines bessseren belehren."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Lionsaultwrote on 19.11.2008:[10.0] "Ein der wenigen, vielleicht sogar DER einzige WWEler, der problemlos mit der Welt-Elite mithalten kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: rv27wrote on 16.11.2008:[10.0] "HAmmer Wrestler auch wenn er sich noch nicht zu hundert prozent der WWE angepasst hat, oder vllt auch nie wir. er is und bleibt ein INdy Wrestler vom denken und vom Handeln her. Aber für das hat er sehr gute arbeit geleistet und leistet sie auch immernoch in der WWE. Naja sein World Titel run war total verbookt und sehr sehr unglaubwürdig aber naja wer weis was die WWE noch mit ihm vor hat. Die Zeit wirds zeigen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Eddiewrote on 16.11.2008:[10.0] "Bei ROH wohl einer der All Time Faves, und das zu Recht. Bei WWE hatte er den Durchbruch fast geschafft, ehe das Booking ihn absägte. Aber trotz allen Fehl-Bookings zeigt er konstant gute Leistungen und ist einer meiner Faves, absolut genial der Mann, 10 Punkte."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Blazewrote on 14.11.2008:[8.0] "War bei ROH immer erste Sahne, in seiner Anfangszeit bei WWE auch, danach aber am schwächeln. Momentan ist er wieder zurück bei alter Stärke und kann hoffentlich das gewohnt hohe Level halten. Im Ring wird er bei WWE aufgrund seiner Fähigkeiten auch weiter ordentlich aufräumen und dem ein oder anderen Non-Wrestler zeigen was Wrestling ist. Letztendlich fehlt nur noch ein Stück, das ihn auch bei WWE zum ersten Star werden lässt, was aber in Zukunft sicher noch kommen wird, wenn WWE erkannt hat, dass er der Star überhaupt sein kann."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: domi1984wrote on 05.11.2008:[10.0] "Aufgrund seiner ROH-Zeit 10 Punkte. Bei der WWE muss er sich erst noch beweisen, das er das Zeug zum absoluten Headliner hat"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Semcoolwrote on 02.11.2008:[10.0] "Seit ROH einer meiner Lieblingswrestler oder wie die WWE es vorschreibt Entertainer"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Animal360wrote on 22.10.2008:[8.0] "Gute 8 Punkte da er trotz seiner, im Gegensatz zu anderen, schmächtigen Statur viel aus seinen Chancen macht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tunisian Warriorwrote on 11.10.2008:[10.0] "Eines Tages können wir mal von uns behaupten den ersten großen WWE Titelgewinn von CM Punk erlebt zu haben.... weitere werden(und müssen einfach! ) folgen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Roennewrote on 08.10.2008:[10.0] "AUf dem Weg nach ober absolut geil und auch Backstage vorbildlich. Er lebt sein Gimmick was soll da noch Schiefgehen Punk gehört die Zukunft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: A-marwrote on 03.10.2008:[10.0] "Super Worker, einer meiner faves. !  Seine World Title regentschaft ähnelte die von Rey Mysterio!  Als World Champ nicht überzeugend!  War als ECW Champ viel besser. Hatte dort auch nicht Gegner wie Batista oder Chris Jericho."
Rating: 10.0
Sentiment: 0.6510416666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Scotty 2 Hottywrote on 01.10.2008:[10.0] "CM Punk ist jemand, den ich Woche für Woche sehr gerne sehe. Im Ring auf jeden Fall auf guten bis sehr guten Niveau, nur sollte man ihn öfters ans Mikrofon lassen. Seinen World Title Run fand ich im Gegensatz zu vielen ganz gelungen. Passte halt zu seiner Rolle als "Underdog Champion". Allerdings bin ich mir sicher, dass ihm in der Zukunft ein längerer und dominanterer World Title Run bevorstehen wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MrWrestlingwrote on 30.09.2008:[10.0] "Ein super Wrestler. Schon bei ROH hat er mir sehr gut gefallen. Die Art und Weise wie die WWE ihm den Titel abgenommen hat und ihn nun aus dem Main Event entfernt finde ich jedoch sehr Schade. Aber ich bin mir sicher das er einer der ganz Großen wird."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: StoneColdRevowrote on 29.09.2008:[10.0] "CM Punk ist toll. Stark im Ring und stark am Mic. Schade das die WWE in kampflos den Title abergenommen haben, oder das er nicht alles das zeigen kann, was er darf."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: GoddeKSCwrote on 26.09.2008:[8.0] "Ich kenne CM Punk leider nur aus der WWE! Und was er da zeigt, ist zwar schön und gut, er hat das Potenzial langfristig oben zu stehen, aber irgendwie muss es bei mir noch "klick" machen, damit er für mich den ganz großen Durchbruch schafft. Das ist für mich während seiner Titelregentschaft leider nur im Ansatz passiert!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Miteamexicowrote on 23.09.2008:[10.0] "Für mich einer der nächsten Topstars der WWE, ihm gehört die Zukunft. Seit langen mal wieder einer der alles kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Theron083wrote on 20.09.2008:[9.0] "CM Punk ist mein Lieblingsface. Ansonsten bin ich eher Heelfan und deswegen kriegt Punk wohl auch keine 10 von mir. Ein Tick fehlt ihm noch zur "Perfektion". ;) Wie er den WHC Titel hielt wurde einfach zu falsch dargestellt, ein cleaner Sieg gegen JBL, ansonsten immer irgendwas mit Ablenkung oder DQ. Das Problem war einfach das er nach dem Money in the Bank- Gewinn zu schwach dargestellt wurde und ein cleaner Sieg gegen Batista einfach nicht glaubwürdig war, auch wenn er gut mithalten konnte usw."
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: doggdropwrote on 19.09.2008:[8.0] "Punk ist aufjedebfall ein guter Wrestler keine Frage, trotdem finde ich ihn teilweise überbewertet! da er mich am Mic nicht überzeugen kann!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MonsterDNLwrote on 25.08.2008:[10.0] "Ich finde er hat den World Heavyweight Championship verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hitman-Hartwrote on 22.08.2008:[10.0] "Sehr guter Wrestler.. nur müsste man ihm mal die Möglichkeit geben zu zeigen was er im Ring kann. Wenn ich mir alte Matches von ROH ansehe dann möchte ich sowas auch bei WWE sehen! Schade das es für die WWE zu riskant ist.... trotzdem bekommt CM Punk eine 1 von mir ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: aidenfordwrote on 21.08.2008:[10.0] "gefällt mir sehr gut, ob er aus seiner Titelregentschaft gestärkt herausgehen wird und ind den Main Event kommt, bleibt zu sehen, aber ich bin zuversichtlich :)"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: NJackwrote on 18.08.2008:[10.0] "Wieder mal einen Wrestler, von dem ich gedacht habe: Indy ein Star, bei der WWE nur ewiger MIdcarder. Wäre ja nicht der erste gewesen, bei dem das so passiert. Aber nun ist er WHC und bleibt das wohl auch noch ne Weile. Und er hat mich auch zu seinem Jünger werden lassen. Als ich das RAW gesehen habe, in dem er den WHC-Titel geholt hab... als er reinkam... die Musik, das eincashen... Das war einer der größten Mark-Out Momente der letzten Jahre. Das war schon nah an dem Moment, als Stone Cold damals den ersten Titelgewinn erreichen konnte. OK, nicht ganz so krass, aber doch sehr nah dran. Alleine dafür: 10 Punkte"
Rating: 10.0
Sentiment: -0.11025641025641024
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kane15wrote on 14.08.2008:[9.0] "Sehr guter Techniker und ein überzeugender World Heavyweight Champion :)"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: xXShawnMichaelsXxwrote on 13.08.2008:[7.0] "Potenzial ist deutlich vorhanden, aber außer ein paar GTSs hab ich noch nicht viel von ihm gesehen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: TheGamewrote on 03.08.2008:[10.0] "Ich fand ihn im Ring bisher im Ring ziemlich gut auch wenn er mich am Mic noch nicht so überzeugen konnte. Toller Wrestler! Trotzdem 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MemphYwrote on 30.07.2008:[10.0] "In der WWE hat er noch nicht das MAximum erreicht. WennŽs soweit ist gibtŽs nen 10er... mittlerweile doch verdient, durch ihn als champ wird raw gleich interessanter"
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fliplippwrote on 24.07.2008:[8.0] "ja cm punk ist ein sehr guter wrestler der alles hat (ausser vielleicht mehr muskeln) was man braucht"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Weihnachtsmannwrote on 23.07.2008:[8.0] "Der Mann hat Charisma, im Ring ok, am Mic ebenso, entwickelt sich weiter mit Potenzial nach oben."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: gerybundy68wrote on 16.07.2008:[7.0] "Guter Typ - leider noch schwach am Mic. Wird hoffentlich nicht verheizt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Wieauchimmerwrote on 12.07.2008:[9.0] "Fantastische Fähigkeiten im Ring (auch wenn er sie nicht allzu oft zeigen darf - aber dafür gibts ja ROH-DVDs) , besitzt für mich eine Menge Charisma, zeigte allerdings allzu oft nur durchschnittlich bis (halbweg) gutes Micwork (was sich aber sicher noch ändern kann/wird). Da sein Gimmick/Charakter für mich aber noch etwas mehr Kontur bedarf und aus der obengenannten kleinen Schwäche gibts hier "nur" 9 Punkte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: aulitwrote on 12.07.2008:[8.0] "Punk hat alles um dauerhaft im WWE Main Event zu stehen. Das Potential wird nun langsam umgewandelt. Wenn nichts dazwischen kommt sind hier bald 10 Punkte fällig."
Rating: 8.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Desperadowrote on 09.07.2008:[8.0] "Seinen Titlerun finde ich ein bisschen verfrüht, aber das ändert nichts daran, dass CM Punk ein enorm starker Wrestler ist. Er kann verschiedene Stile wrestlen und in allen gute Matches zeigen. Allerdings ist er auch kein Garant für gute Matches. Mit dem falschen Gegner können diese sehr schnell langweilig werden. Charisma steht wohl außer Frage und Mic-Work ist auch sehr stark, wenn er mal darf. Mit einer kleinen Gimmickentwicklung kann aus ihm ein riesen Star werden."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: blackwhitesunwrote on 09.07.2008:[10.0] "CM Punk is God. Hat alles, was man braucht. Ein fantastischer Wrestler, der auch am Mikrophone gut ist (auch wenn man bei WWE noch nicht viel davon gesehen und gehört hat). Der Push war längst überfällig. Nun liegt es an der WWE, ob er OVER THE TOP geht, was davon abhängt, wieviel er jetzt zeigen darf. Für alle, die ihn nur von WWE kennen: Besorgt Euch mal die Triologie gegen Samoa Joe bei ROH. Das ist Wrestling."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Ibanezwrote on 08.07.2008:[10.0] "Einer der Top-Wrestler der momentanen Zeit!  Kann trotz des Erfolges in der WWE leider nicht seine ganze Palette an Können zeigen...."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: EddieG4Lifewrote on 04.07.2008:[8.0] "Ist auf dem bestem Weg zum Top-Star! Eines der vielversprechendsten Talente der WWE, und hat meiner Meinung nach vollkommen zurecht den World Heavyweight Titel bekommen. Zu 10 Punkten fehlt allerdings noch klein wenig!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: RockZauwrote on 03.07.2008:[10.0] "Von der Independent Szene bis heute, als WWE World Heavyweight Champion hat mir mich jedes mal mit in den Bann gezogen. Punk ist GOTT!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Blood Red Sandmanwrote on 01.07.2008:[10.0] "Von 5* Matches bei Ring of Honor bis zum World Heavyweight Title bei WWE heute. Der Mann ist GOTT!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: McKnupwrote on 01.07.2008:[10.0] "Hat mich jetzt vollends überzeugen können=Aufwertung!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nacho83wrote on 25.06.2008:[10.0] "Falls die WWE ihn endlich einmal zum Heel turnen würde könnte er wieder zeigen, was er wirklich in Sachen Promos drauf hat, als Face ist er einfach nicht sooo der Bringer. Trotzdem momentan einer meiner absoluten Lieblinge."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: flo99wrote on 23.06.2008:[10.0] "hat mir bisher sehr gut gefallen, zumindest das, was ich gesehen habe, am mic hab ich ihn noch nicht gehört, also kann ich das nicht bewerten. Und dass er mit dem MitB-Koffer noch nicht gepusht wurde, erkläre ich mir damit, dass eigentlich jeff hardy jenen bekommen sollte und noch kein push vorhergesehen war. Aber er wird noch kommen, da bin ich sicher"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ecw foreverwrote on 18.06.2008:[3.0] "Mag ihn nicht, trotzdem 3 Punkte gehen denke ich ok."
Rating: 3.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Sockewrote on 25.05.2008:[8.0] "CM Punk is für mich ein kleines Rästel, am Mic gut im Ring auch, sonst auch aber das letzte fehlt irgendwie. Könnte aber daran liegen das er "noch" bei der ECW is, weiss nich genau. Seit dem Koffergewinn hat er irgendwie auch alle Matches verloren, ka warum. 8/10 mit offentlich Tendenz nach oben!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Frutzwrote on 25.05.2008:[8.0] "Mir gefaellt CM Punk in der WWE sehr gut und nach dem MitB-Sieg dachte ich an einen grosssen Push, kam aber nicht. Immer Moment nicht so klar, wo es hingehen soll, kann aber auch beabsichtigt sein. Seine In-Ring-Faehigkeiten sind Klasse und am Mic macht er auch keine schlechte Figur. Nur im ME ist er noch nicht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: elroyguesswrote on 23.05.2008:[8.0] "Ich kann mir nicht helfen: so gerne ich CM Punk sehe und so sehr ich seine Fähigkeiten schätze, ich habe immer das Gefühl, dass ihm für den ganz großen Sprung irgendwas fehlt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: e-trom995wrote on 22.05.2008:[10.0] "Meine Meinung hat sich über ihn in letzter Zeit stark verbessert. Er ist ein starker und guter Wrestler und verdienter Money in the Bank. Leider wird er viiieeeelll zu sehr unterbewertet im Moment bzw. verliert er Single Matches gegen William Regal und Chuck Palumbo ? ! Naja ich hoffe die WWE weiss was sie da mit ihren zukünftigen Champion macht."
Rating: 10.0
Sentiment: -0.14464285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Deadman walkingwrote on 20.05.2008:[8.0] "Er ist ein guter Wrestler und hat Charisma, seine Straight Edge Einstellung finde Ich klasse."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Brooklyn Brawlerwrote on 16.05.2008:[8.0] "Persönlich kann ich eigentlich nicht all zu viel mit ihm anfangen... aber das versuche ich mal außen vor zu lassen. In-Ring - in seinem Fall Technik, Speed und Moveset - sehr gut, auch das Selling wirkt immer glaubwürdig, am Mic sehe ich dagegen noch etwas Verbesserungspotential - aber er ist einer der WWE Superstars die seit längerem so weit Over sind wie es wohl möglich ist - und ein paar clean losses schaden da gar nichts sondern helfen eher noch..."
Rating: 8.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Haribowrote on 14.05.2008:[8.0] "Im Indy-Bereich eine Ikone hat er sich mittlerweile an den WWE-Stil gewöhnt. World-Titel-Potential."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Riley Mathewswrote on 11.05.2008:[8.0] "Wenn er das Roster wechselt dann hoffentlich zu Smackdown denn man hat ja gesehen was mit Kennedy passiert ist als er zu RAW gewechselt ist. Kann gute Matches bestreiten wie z. b. gegen Edge und die Promo vor dem Match war auch sehr gut. Hab zwar gehört das er zu sehr von sich selbst überzeugt ist. Aber dadurch das er das MitB-Match gewonnen hat sieht es so aus als ob Vince die Einstellung anscheinend wenig stört."
Rating: 8.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: fettbotwrote on 10.05.2008:[10.0] "mMn einer der 5 besten Wrestler, die es momentan in der WWE zu sehen gibt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Xodanwrote on 08.05.2008:[10.0] "Meiner Meinung nach sollte er schnellstmöglich nach RAW oder SMD kommmen, den ich finden ihn für der ECW mittlerweile zu gut. Top-Wrestler im Ring, tolle Gimmick und seine Straightedge-Einstellung kommt wohl bei den WWE-Oberen gut an wie man so hört. 10 Punkte von mir!"
Rating: 10.0
Sentiment: -0.2884615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LexLuger4everwrote on 28.04.2008:[8.0] "Bei ROH hervorragend, bei WWE besserer Durchschnitt. Mir fehlt an ihm noch ne ganze Menge, um ihm die 10 zu geben, allem vorran bessere Promos und nicht nur das typische 08/15 Mic-Work."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Muffiwrote on 14.04.2008:[9.0] "Er hat gesagt er will an der Spitze von diesem Geschäft stehen und er ist auf einem guten Weg dahin. Leider im Ring keine Leistungen wie bei RoH oder IWA-MS durch den WWE Stil, aber trotzdem noch große Klasse. Ansonsten hat er eigentlich alles um ein großer Star zu werden und er wirds auch packen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: CoLoGn3 KeVwrote on 13.04.2008:[9.0] "1. Hammer im Ring!  2. Gut am Mic!  3. Cooles Gimmick!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: JBL-just a big Legendwrote on 13.04.2008:[8.0] "CM Punk ist ein Vorbild für die Kinder, denn er ist Straight Edge, deshalb gewann er in meinen Augen auch den MitB Koffer. Wrestlerisch ist er solide, auch wenn er vor WM oft das gleiche Programm abgespult hat, mittlerweile hat er sich ein klein wenig geändert. Eine Fehde mit Chris Jericho dürfte hoch interessant sein!"
Rating: 8.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Fran7iCwrote on 12.04.2008:[4.0] "Nicht mein Fall. Hat zwar eine prima Einstellung zum Leben ist aber als Wrestler in einer falschen Rolle."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: xXJohnCenaXxwrote on 12.04.2008:[9.0] "Erstmal muss ich sagen, dass ich kein richtiger Fan von ECW bin und wahrscheinlich auch nie sein werde, aber die WWE baut auf ihn auf, erstens weil sein Gimmick sich natürlich perfekt vermarkten lässt und weil er dazu auch noch wrestlen kann, wenn er also in diesem Gimmick bleibt und sich durch einlösen seines Money in the Bank Vertrages eventuell den World Heavyweight Championchip Gürtel vom Undertaker oder wer auch immer ihn hat holt, dann wird ihn die WWE wahrscheinlich lange halten lassen, because he's drug-free, alcohol-free and better than you"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: AnFuwrote on 11.04.2008:[7.0] "Ein Face, denn ich nicht wirklich leiden kann, nicht gut!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Die Gurkewrote on 10.04.2008:[9.0] "Der Mann hat Talent bis zum Abwinken, auch wenn man das auf aufgrund von schlechtem Booking im Moment nicht sieht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nightfallwrote on 10.04.2008:[8.0] "Bei In-Ring Leistung und Mic-Work ist noch Luft nach oben. Aber da er noch relativ jung ist, hat er definitiv das Potential ein ganz Großer zu werden. Und darauf hoffe ich auch."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Domiwrote on 07.04.2008:[10.0] "Cooles Gimmick, super Moves, super Matches HOFFENTLICH kommt er von der ECW weg und bekommt den Push den er verdient. Einer für ddie Zukunft und zurecht der Sieger des MitB matches"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Matzelwrote on 04.04.2008:[10.0] "Ist absolute spitzenklasse. Bekommt von mir aber vorerst nur ne 8, da ich weiss dass er noch viel mehr aus sich rausholen kann und ich mir noch spielraum nach oben lassen möchte. -update: inzwischen bekommt er von mir die 10!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: FameAsserwrote on 28.03.2008:[10.0] "Neben Mr Kennedy die Zukunft von WWE! Absolut charismatischer Typ."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Dave Concordiowrote on 27.03.2008:[10.0] "CM Punk ist einfach der Money Man... WWE sollte diese Geldkuh endlich melken! Topmann, der RoH 2004 gerettet hat und dem auch die Zukunft gehören sollte. Wer anderes behauptet hat schlichtweg keine Ahnung vom Wrestling :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Urbaner1982wrote on 26.03.2008:[10.0] "Da ich ihn auch mal hier in Germany Live gesehen habe, muss ich sagen, ist er schon zurecht in der WWE. Hat sich wirklich "hochgearbeitet". Als ECW Champ auch glaubwürdig rübergekommen. Wenn Khali World Champ werden darf, darf auch CM-Punk ECW-Champ werden."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Kaffoe 666wrote on 25.03.2008:[10.0] "Hat alles was man braucht. Ihn vermisse ich im Indy-Bereich am meisten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ZuluBunsenwrote on 25.03.2008:[10.0] "Einer der besten Wrestler der von ROH hervorgebracht wurde. Als Heel unschlagbar, als Face aber auch nicht zu verachten. Ausserdem ebenfalls sXe, schlussendlich ergibt das 10 Punkte für Phil."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: -Y2J-wrote on 21.03.2008:[8.0] "Guter Wrestler, Charisma ist durchaus vorhanden und Promos kann er auch halten. Leider darf er dies aber in der WWE nicht mehr wirklich zeigen - genau wie einige Moves, die ihn früher ausgezeichnet hatten. Sein Straight Edge- Gimmick sagt mir zu und wenn nichts gravierendes schiefläuft, sollte ihm eigentlich eine großartige Zukunft bevorstehen."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Instant Classicwrote on 13.03.2008:[10.0] "Charisma, In-Ring Können, Micwork, Punk hat einfach alles."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: D-Stroyer DeLuxewrote on 26.02.2008:[10.0] "bei TNA und ROH einfach nur phänomenal, leider lässt die WWE ihn das nicht zeigen. Dann wurde ihm sein Finisher "geklaut" (die Anaconda Vice)... im Großen und Ganzen wird er komplett verbookt, technisch gesehen hat er aber extremes Potential."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: FifaFrancescowrote on 25.02.2008:[10.0] "Hat immer hart an sich gearbeitet, auch schon bei ROH... und ein Pluspunkt: Er war in Essen und ich hab ihn gesehen...."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Aaronwrote on 25.02.2008:[8.0] "Punk ist einfach eine arme Sau! In der WWE wird ihm nie die Freiheit im Ring gegeben, die er bei ROH bekommen hatte! Wenn Punk bei der WWE weiterkommen will, sollte er sich wieder außergewöhnlich machen und sein Gimmick wieder durchziehen. Denn was er derzeit in der WWE an Upfucks abzieht, geht auf keine Kuhhaut mehr und suckt einfach nur noch! Trotzdem werte ich hier das mal für seine Indy Zeit!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: renol2007wrote on 24.02.2008:[8.0] "Ist ein guter Wrestler der mich aber noch nicht so recht überzeugen konnte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Joeevil123wrote on 19.02.2008:[6.0] "Kenne seine Matches von früher nicht , in der WWE hat er mich noch nicht überzeugen können. Das er was kann sieht man an der Veranlgung , nur muß er es auch mal abrufen. Ich warte weiter , solange bleibts bei ner 3."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mr sledgehammerwrote on 17.02.2008:[8.0] "Ein guter Wrestler mit ordentlichen Leistungen im Ring und am Mic, hat aber trotzdem noch einiges ungenütztes Potenzial."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: nevermore811wrote on 04.02.2008:[4.0] "kenn ihn nur aus der WWE Zeit und in der is er net sehr berauschend! Bringt zwar solide Matches, aber null Charisma oder Mic Fähigkeit! Aber lass mich gern noch eines besseren belehren!"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Joe710wrote on 01.02.2008:[10.0] "Ich muss CM Punk einfach eine 10 geben, weil er einer der wenigen Wrestling Superstars ist, die Realness ausstrahlen und dabei cool rüberkommen. Eine sehr interessante Persönlichkeit, besonders wegen den Tattoos, seiner Straight Edge Einstellung, der langen Haare, den Piercings und seinem Musikgeschmack. Ich glaube mit ihm könnten sich viele indetifizieren, weil er einfach wie dieser Rebell wirkt, der es den alten mit Drogen vollgepumpten Säcken zeigen möchte. In seiner ROH Zeit hat er sich natürlich unsterblich gemacht, doch ich finds toll das er jetzt bei der WWE ist. Er ist zwar noch lange nicht in der Position, in die er vielleicht gehört. Aber ich bin guter Hoffnung, dass hier ein weiterer Top Superstar auf uns zukommt."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Baby Duckwrote on 31.01.2008:[10.0] "Mein Lieblingswrestler der sich derzeit in der WWE herumtreibt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Galottawrote on 24.01.2008:[8.0] "Er könnte noch dynamischer und spektakulärer sein. Dann hätte er auch ein Sehr gut sicher."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Typicalwrote on 24.01.2008:[10.0] "Gibt ihn endlich nen Heel Turn, dann ein Mic und ab in ein Stable mit Edge damit es echt aussieht. Dann kann der Junge endlich mal zeigen was er kann. Als Face is er einfach nur schlecht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Zichowrote on 22.01.2008:[8.0] "Macht auf mich mittlerweile einen charismatischen Eindruck, sein Mic-Work hat sich auch verbessert, aber seine InRing Moves sind meistens eintönig und langweilen mich schnell. Dennoch sehe ich bei ihm noch Potential, dass es sich verbessern kann."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Tomwrote on 12.01.2008:[6.0] "In der WWE zeigt er mal so gut wie gar keinen guten Matches in ROH hat er mir viel besser gefallen schade um sein Talent!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: 61ilhanwrote on 09.01.2008:[10.0] "klasse wrestler macht einfach spass ihn anzuschauen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Stone Cold Andywrote on 05.01.2008:[10.0] "Großartiger Wrestler. Schon als junger Bursche hat er das Haus gerockt. Bei der WWE konnte bzw. durfte er bisher noch nicht so richtig zeigen, was er kann, aber das mag noch kommen."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Hunter2007wrote on 31.12.2007:[10.0] "CM Punk hat Kämpfergeist und das merkt man in jedem seiner Matches. Auch wenn es kein Erfolg ist, zeigt er eine überragende Leistung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: EvenflowDDTwrote on 31.12.2007:[8.0] "CM Punk - In der WWE eine billige KENTA-Kopie - Bei Ring of Honor genial, besonders seine Fehde mit Raven wird ewig in Erinnerung bleiben als eine der besten Fehden aller Zeiten. Respekt für seine Einstellung. Sogar bei einem "Anbruch" der Schädeldecke keine Schmerzmittel zu nehmen ist hart."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MA Excellentwrote on 30.12.2007:[8.0] "Er ist sehr talentiert und holt aus jedem Match das Beste heraus. Straight Edge ist nicht nur Gimmick, sondern er bringt es glaubhaft als seine Eistellung rüber. Promo-Fähigkeiten, Crowd-Reaction, Vielseitigkeit im Ring und sein Hintergrund aus anderen Ligen machen ihn zur potenziellen Legende. Jedoch muss er dazu noch ein Stück des Weges gehen, daher gebe ich zunächst eine 2. Wenn er mal Headliner eines der großen 4 PPVs ist und den World Title hält, dann ist es eine 1 !"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mr Money in the bankwrote on 21.12.2007:[10.0] "CM Punk ist einer der Wrestler bei denen es schwer ist zu beschreiben wie hammer sie sind . Er hat Talent am Mic sowie im Ring man kann kaum etwas an ihm aussetzen und es wäre."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Frommeltwrote on 11.12.2007:[8.0] "Hammer Typ der hoffentlich seiner Einstellung treu bleibt, ich traue ihm aber zu das er sich nicht verbiegen lässt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: xDonNightyxwrote on 10.12.2007:[10.0] "Verfolge seine Karriere nun schon seit seinen Anfängen bei RoH und ich muss sagen, er ist einfach ein klasse Wrestler mit viel Charisma. Sein Mic work und seine Promo Fähigkeiten sind ebenfalls spitze, bei WWE durfte er das nur noch nicht wirklich so recht zeigen, bei RoH war sein Gimmick tiefsinniger. Wenn er irgendwann auch mal Heel ist und ordentlich Zeit bekommt, werden die letzten Kritiker schon sehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: novacanewrote on 30.11.2007:[8.0] "Toller Wrestler mit Charisma und jeder Menge Talent. Wird mit der richtigen Einstellung mal ein Großer."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Meanbeastwrote on 29.11.2007:[10.0] "Einfach einsame Spitze der Mann, sehe den jetzt schon seit 2002, und schon damals fand ich den einfach nur klasse! Ein zukünftiger ganz Grosser!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Texas Tornardowrote on 22.11.2007:[10.0] "Ein Awesome Wrestler, schade das er bei der WWE ist."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: bastinhowrote on 21.11.2007:[8.0] "Er hat natürlich das Zeug zum absoluten Topstar zu werden, aber das, was er bis jetzt in der WWE zeigte (bzw. zeigen durfte) ist einfach nicht mehr als guter Durchschnitt. Man sollte ihm vielleicht einmal mehr als ein 10 Minuten Match bei einem PPV geben, damit er sich wirklich entfalten kann."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: mdbnasewrote on 29.10.2007:[8.0] "Perfektes Komplettpaket. Muss leider eine Note abziehen, da ich irgendwie nicht warm mit ihm werde; und seine Matches, obwohl meist klasse, interessieren mich einfach nicht so richtig!"
Rating: 8.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Benny110106wrote on 28.10.2007:[6.0] "Mr. Indy hat nun Erfolg in der WWE. Ist ihn zu gönnen aber mehr wie 3 noch nicht. Dies wird sich aber ändern. Vielleicht wird er mal der nächste HBK. Er hat noch Zeit und Talent das wird schon."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: DrBreswrote on 26.10.2007:[8.0] "Auf bestem Wege, ein großer zu werden. Derzeit langweilt er mich aber ein wenig, was aber zum großen Teil am bescheidenen Booking derzeit liegt. Außerdem schade, dass sein Move-Set bei der WWE so beschnitten wurde..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ghostwrote on 25.10.2007:[8.0] "Hat immer noch einwenig den Status "Geheimtipp" - denke er könnte durchaus einer der kommenden Top-Stars der WWE werden, wenn's so weitergeht. Die Fans lieben ihn, hat ein natürliches Charisma, sein - auch gelebtes- Straight-Edge-Gimmick ist sehr modern, hat einen hervorragenden und eigenen Wrestling-Stil und ist natürlich im Moment der "Hauptdarsteller" von ECW on Sci-Fi! Zurecht!"
Rating: 8.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Rated-R-Fanwrote on 21.10.2007:[6.0] "Er ist gut, keine Frage. Doch als ECW Champion ist er aufgrund eines z. B. Big Daddy V unglaubwürdig."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Jigsawwrote on 02.10.2007:[10.0] "Wird hoffentlich irgendwann WrestleMania headlinen. Nur sein Go 2 Sleep ist nicht so der burner. Da mocht ich die Anaconda Vice oder seinen Shining Wizard um einiges mehr. KENTA zeigt G2S um einiges härter. Aber ansonsten natürlich absolut top."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nick Toxicwrote on 23.09.2007:[10.0] "Topmann, bei WWE das Aushängeschild des ECW - Brands. Independent sowie bei TNA auch nur genial. CM Punk ist ein Mann für die Zukunft! x)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Soerenwrote on 19.09.2007:[6.0] "In meinen Augen "nur" ROH Durchschnitt. Charisma und Mic ist vorhanden. Derzeit aber für seine Leistungen overratet. Er kann mehr, darf es nicht zeigen. Daher nur 6 Punkte."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: WCWlerwrote on 18.09.2007:[10.0] "Im Ring: KlasseAm Mic: FantastischSein Auftreten: BrilliantEinfach 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bhanduwrote on 16.09.2007:[8.0] "Fantastischer Wrestler, allerdings konnte er dies bei WWE bisher nur bedingt zeigen. Hat Ausstrahlung in Massen, gefällt mir als Heel aber um Längen besser als als Face. Solange er sich keine Feinde backstage macht, wird er es zum 2nd Tier Main Eventer bei WWE schaffen (Niveau Booker, rey, benoit)."
Rating: 8.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: uzulwrote on 15.09.2007:[6.0] "er hat viel potential. keine frage. nur sollte nicht immer der indy bereich mit der WWE verglichen werden. jede liga(ob groß oder klein) hat ihren stil. er sollte in der ECW langsam aufgebaut werden. einen längeren push, dann starke fehde um den titel herum. das gewisse etwas fehlt noch, der funke springt noch nicht über(bei mir). doch er wird den richtigen weg schon finden. trotz aller(auch WWE internen) hürden. und vergleicht bittepunk nicht HBK..... punk ist, HBK war(nie)."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: etstoanawrote on 11.09.2007:[6.0] "Wrestlerisch zwar ganz gut, passt aber meiner Meinung nach mit seinem "Streight Edge" Image nicht in die ECW."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: LizardKingwrote on 09.09.2007:[10.0] "Endlich ist er ECW Champion. Wurde ja über ein Jahr konstant gepusht und ist bei den Fans beliebt wie nochwas. Jetzt soll die WWE ihm noch mehr Zeit geben Promos zu halten, denn am mic ist er einer der besten die ich kenne. Klasse am mic und im Ring. Der ECW Titel ist nur der Anfang..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: sebigentnerwrote on 02.09.2007:[8.0] "Sehr sympathisch! Hat das Zeug zum absoluten Topface und Dauermaineventer! Hätte ihn gern ganz oben in der WWE!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Bullit69wrote on 17.08.2007:[8.0] "Is ein klasse Mann aber verstehe nich warum er nich mehr die Anaconda Vice benutzt!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: velocity is not dead yetwrote on 07.08.2007:[10.0] "Gefällt mir im Mainstraim Wrestling nicht mehr. Für mich ein Indy König."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: FiveStarwrote on 21.07.2007:[10.0] "Hat mich damals zum Indy-Wrestling Fan gemacht. Ich habe selten jemanden gesehen, der Emotionen und Dramatik am Mikrofon so gut rüberbringen kann. Auch seine Matches bei Ring of Honor sind unvergessen. Punk gehört für mich zu den größten..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: The Yetiwrote on 08.07.2007:[10.0] "Ein Rundumglücklich-Paket. Mic-Skills, Charisma, In-Ring-Skills, Großer Fanzuspruch. Sehr schade, das die WWE-Offiziellen ein Problem mit ihm haben, nur weil er eines von Paul Heymans ''Biestern'' ist und dass er einige Moves nicht zeigt/zeigen darf. Pepsi Twist habe ich in seiner WWE-Zeit noch nie gesehen und den Pepsi Plunge werden wir wohl nie sehen, da es ja ein Pedigree vom Top Rope ist, obwohl man so doch perfekt eine Fehde mit Triple H aufstellen könnte, um ihm einen starken Push zu verpassen. Trotzdem, G2S is einfach mal geil, und auch sonst zeigt er IMMER ordentliche Matches. Hat sich einen WWE-Titel, egal welchen, mehr als verdient."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: MGStylezwrote on 08.07.2007:[6.0] "Wrestlerisch ein durchschnittlicher ROH Worker(was schonj sehr gut ist)CHarismatisch und Mic-worktechnisch einfach noch nicht viel von ihm gesehen. Eine 3"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: ShaneOwrote on 28.06.2007:[8.0] "Schwer zu bewerten. Der Indy CM Punk hätt eine glatte 1 bekommen, der WWE Punkster eine 3. Also bekommt er ne zwei. Ich hoffe, das er bald mal sein ganzes Potential abrufen darf."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Im Ring ist er zwar nicht so überragend wie von den meisten Internet Fans immer gesagt, dafür sind die Promos und das Charisma God Like, Die Intensität der Punk Promos habe ich so noch kein zweites Mal erlebt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Azraelwrote on 24.06.2007:[6.0] "Kann eigentlich mehr als er momentan zeigt, talentierter Wrestler, einer der wenigen Hoffnungsschimmer der neuen ECW. Hoffentllich lernt er Backstage noch manieren, damit er sich nicht alles verbaut."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Nataljawrote on 24.06.2007:[8.0] "Ein toller Wrestler. Ich konnte ihn in Mannheim 2007 am Schulter berühren. Tolles Gefühl."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Trevedaswrote on 24.06.2007:[10.0] "Riesen Potenzial, hat alles was man braucht um nach ganz oben zu kommen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Starker Charakter, großes Talent ... die Zukunft der WWE !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Milhousewrote on 24.06.2007:[10.0] "Aktuell das Beste, was das moderne Wrestling zu bieten hat in meinen Augen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: D3adm4nwrote on 24.06.2007:[8.0] "Er ist auf dem Weg, ein ganz ganz Großer zu werden. Stellt sich nur noch die Frage, ob und wann er dieses Ziel erreicht. Talent ist auf jeden Fall genug vorhanden!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Mediwrote on 24.06.2007:[10.0] "Bisher hat er immer saubere Kämpfe und gute Techniken gezeigt. Zudem sind seine Mic-works auch nicht die schlechtesten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Knurkselwrote on 24.06.2007:[10.0] "Wird sicher noch einer der ganz Großen in diesem Business werden. Viel zu talentiert im Ring und am Mic für seine jetzige Rolle, aber das wird sicherlich noch kommen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: suntan superstarwrote on 24.06.2007:[10.0] "ravenŽs bester schüler. er verreint charisma und matskills wie kein anderer. Seine Zeit ist aber noch nicht gekommen er sit einfach zu gut, denn wenn die wwe bereit wäre den sport weg von den anabolika-monster hin zu den ernsthaften wrestlern muss cm punk diese generation anführen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Doerbenwrote on 24.06.2007:[10.0] "in der wwe überzeugt er, überraschenderweise, auch. d. h eigentlich war es klar das er überzeugen würde, er ist einer der 15 besten wreslter der welt /oder die ich kenne, und ich kenne viele/ und ich war mir nicht sicher wie die WWE ihn einsetzten würde... naja, sie tun es wie ich es erwartet habe ziemlich schlecht aber er überzeugt trotzdem."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: Anti-Championwrote on 24.06.2007:[10.0] "Charisma Note 1. Promos Note 1. Ringskills Note 1-. Macht unterm Strich eine 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=80&gimmick=CM+Punk
Comment: shannonmoorewrote on 24.06.2007:[10.0] "straight edge ? der gute jeff hat aber schon mal an drogen geschnüffelt. Davon abgesehen ist CM punk ein sehr guter wrestler der mich schon bei ROH jederzeit begeistert hat. Hoffe er schafft den Durchbruch."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Joe907wrote on 21.07.2024:[10.0] "The longevity on this man is insane. Still one of the best wrestlers at 50 years old. He's been putting on bangers for over 20 years. His technical wrestling is excellent and such a hard hitter."
Rating: 10.0
Sentiment: 0.11547619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Makai Clubwrote on 02.10.2022:[9.0] "One of the most underrated wrestlers in the past 20 years. He was never flashy, but he was a tough, rugged brawler who would make anyone looked good with his incredible selling and could get you off your feet with his simple, yet effective offence. Currently having a great GHC Heavyweight Title reign and is doing a great job working with the youngish NOAH roster, wrestling unestablished main eventers like Kotoge and making them stars, just by beating them. That's how good he is. Excellent wrestler, very underrated."
Rating: 9.0
Sentiment: 0.3986111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: jamzell00wrote on 04.06.2022:[10.0] "Of all the grumpy wrestlers over 50 he might be the grumpiest. All his big matches feel like fights which given his history makes sense. The dude had open heart surgery in 2017 which should've slowed him down but nope. All he did was come into 2018, win the GHC title and be the best champion in wrestling that year. All while getting chopped and kicked in the chest as if nothing fucking happened. Adore this man and will appreciate him until he eventually retires. An absolute animal"
Rating: 10.0
Sentiment: 0.17777777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: GriffinXwrote on 09.02.2022:[10.0] "A classic badass of a wrestler. Helped to carry NOAH many times over the year having many great matches."
Rating: 10.0
Sentiment: 0.49166666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: NoSellwrote on 01.02.2022:[10.0] "As far as I'm concerned he's the best over 50 wrestler in the world and on of the best in the world regardless of age. Amazing wrestler."
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: benny5bellyswrote on 03.12.2021:[9.0] "Just a big mean son of a bitch. He is absolutely fantastic and still carries an aura to him that few can match."
Rating: 9.0
Sentiment: -0.028124999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Kungwrote on 27.10.2021:[10.0] "One of the greatest over 50-year-old wrestlers I've ever seen in my entire life. He brings something exciting to every match he's a part of."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: GGS06wrote on 31.07.2021:[10.0] "It's going to be a shame seeing Sugiura retire, since he's one of the best. His lifelong career in NOAH has provided some amazing matches, at his start he was just a good wrestler but now he's evolved into one of the best. His style is good and always provides awesome matches. Sugiura gets the 10 for all of his amazing matches and his excellent career in NOAH."
Rating: 10.0
Sentiment: 0.7222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Bushidospirit22wrote on 01.03.2021:[10.0] "Arguably one of the best wrestlers over the age of 50 ever. The man can still bring it better than most wrestlers half his age. I wouldn't be shocked if Sugi is still wrestling at a high level when he is close to sixty barring any major injury."
Rating: 10.0
Sentiment: 0.19369047619047616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: VillainClubwrote on 03.01.2020:[10.0] "Fantastischer Wrestler besonders für sein alter noch sehr gut. Es macht spaß seine Matches zu verfolgen. Der Typ ist einfach Banane mit Fast 50 liefert er immer noch großartige Matches und feinen Strong Style."
Rating: 10.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: BadAssTranslateTradingwrote on 13.08.2019:[10.0] "The most consistent pro wrestler of all time. At 49 years old Sugiura is better than hes ever been and has been performing at a very high level for the past 20 years. He has never disappointed in a big match and deserves to be called a legend. 1 of the best talents of this generation."
Rating: 10.0
Sentiment: 0.2981111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: PuroresuLoverwrote on 12.05.2019:[10.0] "This dude is amazing! He is the Big Boss of NOAH! He never disappoint us , he's one of the greatest of all time in Puroresu, I hope NOAH gives him a respectful retirement match in the future."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: RatingsMachinewrote on 01.11.2018:[8.0] "Takashi Sugiura never received the plaudits that the likes of KENTA and Naomichi Marufuji did, in part because their striking and high-flying orientated styles respectively were both flasher and more in vogue at the time. But he was as good a worker as either of them, and in recent years he has enjoyed something of a resurgence as the cornerstone of Pro Wrestling NOAH."
Rating: 8.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: My Bloody Doobwrote on 17.05.2018:[8.0] "The dark horse of his generation to say the least. Probably because he never gained the western exposure that his peers did like KENTA and Marufuji. That said though his talent was as equal to theirs, except he got into the game at a much older age, so he wasn't really as focused on until he was already in his late 30s. Though he didn't wrestle a lot in the west, most of his signature moves and finishers were western inspired, most notably by Kurt Angle. His greatest skill is that he is a great all-rounder who isn't the best at striking, flying or technical work, but he can still hang with the best. All that said, I really don't think he should be holding the GHC championship anymore. NOAH booking is for a different topic, but Suigiura's best roles weren't always at the top."
Rating: 8.0
Sentiment: 0.25724637681159424
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: prowrestlingisrealwrote on 22.01.2017:[10.0] "Sugiura is probably the best wrestler in Noah right now, great brawler, a technical savage, he can have good matches with a lot of guys out there, his selling is awesome (especially the headbutt selling), he can work as a single or a tag, Sugiura is the man."
Rating: 10.0
Sentiment: 0.46428571428571425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: AboutToCrashwrote on 21.03.2015:[10.0] "The first thing that made me love Sugiura it's that he and KENTA were the only ones in NOAH's Jr division who were not only about the flip-flops, they had more grappling-all rounding style and his matches were really refreshing. Sugiura entered the big guys league in the NJPW vs NOAH feud. When he returned from NJ he started wrestle with legends and even won his first heavyweight championship after a great fight against Shiozaki. He's very good in the ring, he could pull off athletic and technical matches but he also got hard hitting shoot fight kind of style. One of the last saviors of NOAH, without a doubt."
Rating: 10.0
Sentiment: 0.2870238095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Claudio Herowrote on 10.11.2014:[10.0] "Bei Sugiura ist die Sache klar. Ein Super Wrestler und Techniker der seiner Promotion auch in den Krisenzeiten treu geblieben ist. Habe viele Matches mit ihm gesehen und er hat mich immer überzeugt."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: TakerFanwrote on 08.03.2014:[8.0] "Mister zuverlässig von NOAH. Liefert immer mindestens solide ab und ist im Ring wirklich stark. Stiff und immer intensiv arbeitet er mit so ziemlich jedem Gegner richtig gut. Oft fehlt mir aber die letzte Begeisterung für seine Arbeit, es wirkt alles zwar gut, aber ohne das besondere."
Rating: 8.0
Sentiment: -0.20714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Kenshin Uesugiwrote on 06.08.2012:[8.0] "Keiner prügelt sich so schön mit Takayama! " Das sagt und meint nicht nur mein kleiner Bruder, denn Sugiura ist im Ring eine Wucht. Wrestlerisch versiert in vielen Bereichen und mit seinen gerade mal 1. 78m trotzdem ein glaubwürdiger ~Powerschubser~. Hat mit seiner Rolle als ~Big Boss~ eigentlich den idealen Platz bei NOAH neigt leider auch dazu mit Shiozaki im Verbund, zwar vieles toll zu können und zu zeigen, aber nicht immer es zu schaffen ein wirklich ein Gefühl von sehenswerten Matches mit richtigen Fluss zu erzeugen. Das ist nie schlecht oder wirklich langweilig aber nicht so wie es halt sein sollte und wie man es bei NOAH unbedingt braucht. Trotzdem toller Wrestler der mit seinem Einsatzwillen und doch eher beschränkten Mimik, hat er wohl von Honda beim Training gelernt was schon wieder cool ist, die Arche mit auf Kurs hält."
Rating: 8.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Matt4Wrestlingwrote on 16.03.2011:[10.0] "Ein super Techniker, der mit jeder Wrestling-Art mithalten kann. Kann es noch weltweit, außer in Japan, zu etwas bringen!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Hu-Manwrote on 24.02.2011:[10.0] "Ein großartiger Athlet. Zurecht World Champion geworden. Ich finde seinen Wrestling-Stil richtig gut und mag es, dass er gegen jeden Gegner ein gutes Match zeigen kann. Ein Allrounder wie Kurt Angle... 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Mick Funkwrote on 09.12.2010:[9.0] "Im Moment bei Noah einfach der Wahnsinn, hoffentlich hält das noch eine Weile an."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Fountain of Misinformationwrote on 16.10.2010:[9.0] "NOAH bestes Eigengewächs und zugleich derzeit bestes Pferd im Stall. Der endgültige Durchbruch kam spät, er war meiner Meinung nach etwas zu lange als Junior-Heavyweight (wo er körperlich auch nicht wirklich reinpasste, obgleich er wiederum auch nicht genau das ist, was man sich unter einem Schwergewichtler vorstellt) unterwegs aber nun steht er dort, wo er hingehört, an der Spitze seiner Liga. Da er ja erst spät Wrestler wurde, stecken noch einige gute Jahre in ihm, worauf ich mich freue, denn diesem Mann kann international im Wrestling-Ring keiner etwas vormachen, er muss sich vor niemandem verstecken und zeigt immer Einsatz und Hingabe im Ring."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: MaKnowrote on 15.08.2010:[10.0] "Sugiura ist im Puro mittlerweile einer der ganz Großen - der späte Einstieg ins Geschäft hat ihm in seiner Entwicklung überhaupt nicht geschadet, höchstens insofern, dass er wohl bald physisch nachlassen wird. Umso mehr freue ich mich aber auf die kommenden 3-4 Jahre."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: DJ MaSchwrote on 06.01.2010:[9.0] "Rein wrestlerisch gibt es kaum jemanden der ihm das Wasser reichen kann. Hat verschiedene Wrestlingstile drauf, technisch überragend und zudem legt er noch eine ordentliche Intensität an den Tag. Austrahlung ist hier leider nicht sehr ausgeprägt, deswegen "nur" Neuen Punkte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: daniel88wrote on 03.01.2010:[9.0] "seine leistung gegen hero hat mich schon irgendwie beeindruckt, so "hilflos" hab ich hero noch nie gesehen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: hatebreederwrote on 07.12.2009:[10.0] "Ungeheuer intensiver und starker Wrestler, der sich für nichts zu Schade ist. Man kann sich jedes Match von ihm ansehen, ohne dass einem langweilig wird. Toll, dass er endlich den ganz großen Wurf mit dem Gewinn des GHC Titel gelungen ist. Feel Good Moment 2009"
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: batze22wrote on 06.12.2009:[10.0] "The Champi is Here! Garatulation an Suigura das er endlich GHC Champion geworden ist :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: STRIGGAwrote on 17.09.2009:[9.0] "Ein absoluter Top Wrestler, dem weltweit kaum jemand etwas vormachen kann. Technisch brilliant, dazu Power-Moves. Zudem ist er mit einer ungeheuren Intensität bei der Sache."
Rating: 9.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Tomkowrote on 03.02.2009:[8.0] "Ganz starker Techniker, dessen Aktionen immer realistisch und superhart aussehen. Ich kann meinem Vorredner nur zustimmen: Er ist wirklich um Längen cooler als Angle!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: Kaffoe 666wrote on 25.03.2008:[8.0] "Klasse Style. Sugiura trägt mit seiner Leistung immer maßgeblich zu guten Matches bei...  Er ist zudem einfach viel cooler als Angle :-P"
Rating: 8.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1232&gimmick=Takashi+Sugiura
Comment: AnFuwrote on 05.01.2008:[8.0] "Ich schätze seinen Stil und seine Ringfähigkeiten. Auch bei ihm fehlen die großen Titel, aber eine 2 ist es allemal."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: ZephsPancakeswrote on 19.12.2024:[10.0] "One of the most influential and revolutionary wrestlers of all time, a perfect blend of high-flying based offense mixed with hardcore elements. A lot of your favourite active wrestlers will be inspired or take from Hayabusa. A truly tragic story, a wrestler who's career was cut far too short and a wrestler who isn't acknowledged nearly as much as he should be in regards to the importance of wrestling history. Equally as apt in tag, singles or stipulation matches, Hayabusa was truly one of a kind and someone who will truly live on in wrestling history forever"
Rating: 10.0
Sentiment: 0.20482093663911846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: TreyHalowrote on 27.10.2024:[10.0] "A revolutionary in terms of high-flying offense, one of the best of all-time and the fact his career got cut short is a genuine tragedy, one of the most influential wrestlers of his time and truly way too overlooked in terms of importance to wrestling history... 10/10."
Rating: 10.0
Sentiment: 0.475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Zak22wrote on 06.08.2024:[10.0] "An inconsistent genius. Some of his matches leave me feeling cold whilst others are incredible. He had all the talent, great technical and athletic ability. A deserving legend who unfortunately got badly hurt. I'm beyond glad that he was showcased in AJPW and had a legendary main event run as the face of FMW."
Rating: 10.0
Sentiment: 0.2166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Wrest lingaddictionwrote on 05.08.2024:[9.0] "Japans ultimate underdog. Hayabusa was an incredible talent in the ring and had some underrated character work throughout his career. Even though his career was cut short his influence on the business is undeniable. He invented moves that modern greats like Seth Rollins and Kota Ibushi have been well known for using. His loyalty to FMW is also comendable as he turned down offers from WWE and NJPW to stay in Onita's promotion."
Rating: 9.0
Sentiment: 0.17407407407407408
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: thedman0310wrote on 29.01.2024:[10.0] "One of Japan's best Junior Heavyweights, Hayabusa never truly got the exposure he deserved. He was dedicated to FMW to a fault when he easily could have gotten more money and exposure in other companies (I believe WWE and New Japan both gave him offers). His career was sadly cut short, but while he was around, the Phoenix of FMW burned bright"
Rating: 10.0
Sentiment: 0.24941077441077444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Makai Clubwrote on 05.03.2023:[6.0] "An iconic figure in the world of the Japanese Indies. Influential world-wide, the star wrestler of a promotion, which, while was losing popularity under him, probably would've floundered more after Megumi Kudo's retirement if not for him. Beloved by his peers and fans alike. But however, despite his innovative moves, amazing imagery of his look and his charisma, his wrestling is just so, so underwhelming. Occasionaly, I can find entertainment in his performance but he mostly leaves me cold. His wrestling comes off derivative of a much exciting style with his own style infused with it, his peers, such as Mr Gannosuke come off way more interesting and capable. A mid-level star, yes. A great wrestler, no. My rating is based upon my enjoyment of him, more so his legacy, which is palpable. Even if it can link to the rise of Seth Rollins. A crime against humanity."
Rating: 6.0
Sentiment: 0.3588235294117647
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Brutish Dandywrote on 14.01.2023:[7.0] "Had a great look and a killer theme but his in-ring stuff was pretty mid. I find his matches shockingly underwhelming given the hype, especially considering his contemporaries were guys like Kintaro Kanemura, Jinsei Shinzaki, and Rob Van Dam. Honestly liked his run as H the best, as short-lived as that ended up being."
Rating: 7.0
Sentiment: 0.2357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: WhatIsLooveeewrote on 13.12.2022:[10.0] "One of the biggest "what if" in wrestling, in my opinion. An innovator and a person with an impressive life story that motivates to never give up. Hayabusa successfully combined hardcore style, performing in the FMV, and high-fly, showing very impressive maneuvers, even inventing several ones. A talented performer who can show moves that seemed amazing in those years, speak and tell a good story in a match. His career ended too soon due to a terrible injury, but even after that, he connected his life with wrestling, becoming a promoter and continuing to appear on the ring from time to time and live the dream of someday soaring above it again."
Rating: 10.0
Sentiment: 0.3509469696969698
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: ForeverHeelwrote on 01.11.2022:[10.0] "Er war nicht der beste japanische Wrestler, nein er war der beste Wrestler aller Zeiten. Long live the Phoenix Hayabusa."
Rating: 10.0
Sentiment: 0.043181818181818175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: XXDoubleHHXXwrote on 18.10.2022:[10.0] "Hayabusa was FMW's Diamond in the rough. Constantly putting on bangers with the top stars of All Japan and FMW, he became a instant fan favorite. He tried to do new things with H character or Darkside Hayabusa that I liked but the fans just wanted the normal Hayabusa."
Rating: 10.0
Sentiment: 0.22329545454545452
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: GriffinXwrote on 04.06.2022:[9.0] "A great high flyer that wowed fans for years. To hid credit and detriment he was loyal to FMW till the end. And he showed so much bravery and dignity with how he handled his injury"
Rating: 9.0
Sentiment: 0.37333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: CoolKylewrote on 29.11.2021:[10.0] "He was incredible, and isn't talked about enough. With FMW going under, It's so sad he never got that big full time NJPW/NOAH move, and his best work has been lost to time. He could've legit been the missing link between the 4 Pillars/3 musketeers & Tanahashi."
Rating: 10.0
Sentiment: 0.22142857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Kungwrote on 03.03.2021:[9.0] "While it's perhaps true that he was never as good in-ring as Jushin Liger or Keiji Mutoh at the time, there are few junior heavyweights in history who mean more to more wrestling fans than Hayabusa. The man who innovated such gorgeous moves like the Falcon Arrow and Phoenix Splash had way too short of a career, and life, but his wonderful legacy continues on through equally marvelous talents like PAC, BxB Hulk, and Bandido. Rest easy, legend."
Rating: 9.0
Sentiment: 0.3892361111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Khalid Acewrote on 29.06.2020:[6.0] "Well, I can't say I am surprised Hayabusa has this high rating because he was loved by almost everybody but he was as good in the ring as his opponent was, he could never put up a good match with someone who isn't better than him in the ring."
Rating: 6.0
Sentiment: 0.4766666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: arrancarwrote on 22.11.2019:[8.0] "You'd have to be insane to not see what a talent Hayabusa was. Yeah, he was a bit of a spot-based worker a times, but damn, he was SUCH a great high-flyer in a time when very few people could do even 30% of what he was doing. His style was incredibly explosive, unlike a lot of high-flyers today whose styles feels more 'floaty' and weak because they focus too much on technique (especially overly contrived technique) as opposed to impact. Hayabusa would definitely botch every now and then, but when he properly hit his aerial spots, they would always look beautiful and damaging. In FMW, he would often get rather bogged down by working the messy hardcore brawl style that the company loved, but he would always look great whenever he was allowed to run wild and fly around. I can't rate him any higher than an 8 because he's one of those workers who, despite very obviously being extremely talented, often didn't have the appropriate partners to produce properly great matches. This meant that while he would hit some awesome spots in his big matches, his opponents often wouldn't give him the same amount of interesting work back, thus he's sadly lacking in seriously great matches. He's had plenty of quite good to really good matches, and some great individual performances, but that's it. Also, as I said, his wrestling was a bit limited outside of his aerial attacks. This isn't to say he was only an acrobatic attraction though, since he definitely also had a variety of impressive and even rather brutal power moves, but his aerial work always took the centre stage, and for me, a truly top-tier outstanding wrestler requires a bit more diverse and equally spread-out offence. Given what a star he was in Japan (despite being part of a non-major company) and the notoriety he's gained as a high-flying icon in the west, it's absolutely appropriate to refer to Hayabusa as a legend."
Rating: 8.0
Sentiment: 0.2339786059351277
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: richeyedwardswrote on 25.01.2019:[2.0] "Having watched through a good amount of his 97 work in FMW and AJPW I have come to the conclusion that he is a really overrated and often very bad wrestler. He is lazy, just has his big spots and has absolutely nothing to offer in between his springboards. He also does not sell really at all either. Now he is not a complete stiff as he is carriable, but only by some extremely great wrestlers such as the 4 pillars and Akiyama. Through his 97 run in AJPW he is often against a young Kentaro Shiga and Shiga works rings around him. By all accounts a really nice guy and he did have some presence but he was not a good wrestler."
Rating: 2.0
Sentiment: 0.06838095238095239
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: JEK 1991wrote on 31.12.2018:[10.0] "Excellent high flyer! Always exciting to watch. He was a big name in FMW. Very quick in the ring. He only made one appearance in North America for ECW. His career was very short due to back injuries."
Rating: 10.0
Sentiment: 0.20092592592592592
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Steamboat2511wrote on 02.10.2018:[8.0] "Einer der wenigen japanischen Stars die mich als Fan des American Wrestlings fesseln konnten. Seine Death- und Garbagematches meine ich damit nicht, da ich kein so großer Freund dieser Ausrichtung bin, auch wenn Hayabusa viel in diesem Bereich gearbeitet hat. Es ist eher das innovative Highflying was mich an ihm fasziniert hat."
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: RatingsMachinewrote on 22.09.2018:[6.0] "I was a big Hayabusa fan; he could do spots that were, for the timeframe, incredible. But that was all he could do, and if you wanted a Hayabusa match with some meat to it, something other than just spots, you needed someone to carry him. To his credit, Hayabusa could be carried to some great, great matches. But they were great almost entirely because of who Hayabusa was facing rather than Hayabusa himself."
Rating: 6.0
Sentiment: 0.45357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: InactiveGuruwrote on 01.06.2018:[9.0] "Great hardcore high flying wrestler. It was the Japanese equivalent of Sabu. Such a shame his career and later his life was cut short. RIP, you'll always be missed."
Rating: 9.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Kasper Faulwrote on 08.11.2016:[9.0] "Sehr stark im Ring gewesen. Sein Match in der ECW gehört bis heute zu meinen Lieblingsmatches. Sehr schade das er sich so schwer verletzt hat."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Sonny Blackwrote on 07.08.2016:[10.0] "Für mich einer der besten japanischen Wrestler, klasse Matches bei FMW. Leider viel zu früh gestorben. R. I. P."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Viper99wrote on 07.03.2016:[10.0] "Einer der Männer die das Junior Wrestling revolutioniert und groß herausgebracht haben. Er ist wahrlich ein Pionier und eine Legende des Wrestlers. Leider musste er durch einen unglücklichen Unfall das aufgeben was er geliebt hat und wo er eine Riesen Passion hatte. Später dann auch viel zu früh verstorben. R. I. P Hayabusa."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: sign squadwrote on 28.08.2015:[7.0] "Als Gimmick mit diesem Highflying Stil fand ich ihn damals extrem cool. Der Mann war für mich die #2 von FMW nach Onita in Sachen Star-Power. Was ihm fehlte war in meinen Augen eine größere Möglichkeit, auch für andere Ligen zu arbeiten. Ein wenig rumgekommen ist er ja, allerdings wäre eine Karriere nach FMW in größerem Rahmen bestimmt etwas spannendes geworden, zumal er körperlich ja sehr gut dabei war. Das unrühmliche Ende mit dem Unfall und seinen Folgen war schockierend und traurig. Nachdem ich nun heute ein Video vom 23. 08. 2015 gesehen habe, bei dem er vor Kollegen und Fans sich aus dem Rollstuhl stemmt und mit Hilfe einer Krücke zum Ring geht und sogar eine Ringtreppe hinauf kommt bin ich einfach nur beeindruckt und gerühert, was dieser Mann gekämpft hat, um wieder gehen zu können. Fast 14 Jahre nach seinem Unfall hat er nie aufgehört zu kämpfen und in meiner kleinen Wrestling-Bubble ist das ein absolut fantastisches Vorbild wenn es darum geht, niemals aufzugeben."
Rating: 7.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Matzinhowrote on 11.08.2014:[9.0] "Auch durch sein markantes Aussehen bedingt ist er einer der bekanntesten Juniors. Nebenbei ein spektakulärer Wrestler, der besonders in Hardcore Matches brillierte. Ich hoffe, dass er sich seinen Traum, noch einmal in den Ring zu steigen und ein letztes Match zu bestreiten, erfüllen kann. Ich habe erst kürzlich gelesen, dass er Fortschritte macht und schon wieder einfaches Krafttraining absolviert. Er peilt sogar eine konkrete Jahreszahl an, wann sein comeback stattfinden soll, die habe ich jetzt aber nicht im Kopf. Müsste so 2017 oder 2018 gewesen sein."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Weskerwrote on 02.03.2013:[10.0] "Zu dieser Ikone fehlen mir einfach die Worte. Fast schon unmenschlich, was dieser Mann geleistet hat. Absoluter Meister seines Fachs. Eine verdammte Legende."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Ballswrote on 11.04.2012:[10.0] "Hayabusa ist einer der besten High-Flyer und Deathmatch Wrestler Japans gewesen. Er war nicht nur in Hardcore-Matches extrem gut, sondern zeigte auch in "normalen" Matches sehr gute Leistungen. Leider kam dann die schlimme Verletzung und somit das Karriereende Hayabusas, doch ich sehe mir immer noch gerne alte Matches von ihm an."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Wolfhartwrote on 20.12.2010:[10.0] "Ich ziehe meinen Hut vor ihm. Bei Hayabusa fällt mir wirklich nichts ein, was ein Wrestler besser machen könnte. Seine Hardcore/UV-Sachen mag ich ihm nicht negativ auslegen, auch wenn ich kein Freund davon bin - das hat schließlich nix mit seinen wrestlerischen Fähigkeiten zu tun. Und die waren absolut brilliant."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: chaoswrote on 31.08.2010:[10.0] "Eine wahre Legende und ein super Highflyer! Seine Gimmicks waren immer der Hammer und haben immer überzeugt.  Ich wünsche ihm alles Gute, denn "the Phoenix will never Die"."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: RickRollwrote on 09.05.2010:[10.0] "In der tat eine Legende. Hayabusa konnte als H überzeugen, aber richtig genial war er als Hayabusa. Er muss eigentlich "nichts" machen, er hat schon so ne "aura" an sich die ihn so von anderen unterscheidet, sowas habe ich noch nie sonst bei einem Wrestler "bemerkt". Dazu als Darkside Hayabusa auch richtig geil, beherrscht dasHigh Flying wie ein Masterund sein Gimmick war auch ganz große klasse."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Super Dragonwrote on 25.12.2009:[9.0] "Einer meiner All-Time Faves, super Wrestler der den anfang der DM in Japan begründete, leider musste er sich veletzten."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Mick Funkwrote on 08.10.2009:[10.0] "Man muss die Art seiner Matches mögen, aber was er gemacht hat, hat er sehr stark gemacht."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Jar Jar Binkswrote on 24.09.2009:[10.0] "Ein unglaublicher Wrestler wo man sich nur fragen kann, warum er sich verletzen musste. Absoluter Spot Monkey und das meiste was der abgeliefert hat war einfach nur sick, da musste er sich fast irgendwann was gröberes tun. Er war aber trotzdem ein großartiger High Flyer und seine Moves waren immer ein Augenschmaus. Toll!"
Rating: 10.0
Sentiment: -0.09107142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: T-Waynewrote on 08.11.2008:[10.0] "Fantastischer Wrestler, der seine Karriere leider viel zu früh beenden musste"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Masadawrote on 14.05.2008:[10.0] "Ihm gebührt vllt. ein großer teil für den Erfolg von FMW. Großartiger Highflyer der auch in Death/Exploding/Electrified Barbedwire und wie sie alle hießen Matches wunderbar zurecht kam. So einen einzigartigen Worker wird man wohl nie wieder sehen, Leute die ihn jemals bewundern durften können sich sehr glücklich schätzen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[9.0] "Saugeiler Spot-Wrestler? Check. FMW Ace? Check. Legende? Never. Hayabusa gehört zu meinen Lieblingswrestlern, aber ich bestreite, dass er jemals in einer Major Promotion im Main Event gestanden hätte."
Rating: 9.0
Sentiment: 0.11458333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: ecw foreverwrote on 17.04.2008:[9.0] "Ich muss sagen der Typ ist derbst geil. Ich meine der hatte von allem was. Besonders sein Phoenix Splash gefiel mir. !"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Baszdmegwrote on 14.03.2008:[10.0] "Revolutionär des Highflying, musste leider einen hohen Preis dafür zahlen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: SuckerPunchwrote on 14.03.2008:[10.0] "Einer meiner All-Time-Puro-Faves. Die Spots, die Bewegungen, die Ausstrahlung, einfach großartig. Zudem verbindet man mit ihm auch unweigerlich eine der vielleicht coolsten Ligen aller Zeiten: FMW! Hätte ihn das Schicksal nicht so hart getroffen, stünde er heute bei den Juniors auf einer Stufe mit Liger. So eben in der ewigen Rangliste irgendwo in den Top5 des japansichen Junior-Wrestlings."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Cybermikewrote on 02.01.2008:[10.0] "Einer meiner Absoluten Favs. leider viel zu Früh vom Ring verbannt worden, man kann eine Rückkehr wohl entgültig ausschließen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Doerbenwrote on 22.11.2007:[10.0] "Hätte er weiter machen können, wäre sein Stern größer als der des Kenta Kobashi geworden. So ist Hayabusa aber ohne weiteres immernoch als einer der größten Stars aller Zeiten zu sehen.  EDIT: @ Rob: Hätte er weitermachen können heißt ja nicht, das er innerhalb des nächsten Jahres größer bzw. besser geworden wäre. Ich bin der festen überzeugung das Hayabusa beides geschafft hätte, jedoch nur Schrittweise. Es hätte lange gedauert aber ich bin der meinung er wäre letztenedes größer geworden;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=547&gimmick=Hayabusa
Comment: Ebessan Jackwrote on 17.08.2007:[10.0] "Als ich ihn das erste mal auf Tape sehen konnte, war ich erst einmal völlig paff. Nicht nur weil er einen einzigeartigen Wrestling-Stil ging, sondern die Aura, die Präsents im Ring, war unglaublich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: aoPSIwrote on 10.01.2025:[7.0] "Kairi Sane deserves a 7.33/10 for her solid performances in 2024. She showcased impressive in-ring ability alongside Damage CTRL, contributing to the group's chemistry and success. While not always in the spotlight, her work was consistently reliable and entertaining."
Rating: 7.0
Sentiment: 0.41
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: MEDaminewrote on 06.01.2025:[9.0] "I won't let the booking change my opinion about her, she's still a really talented and entertaining wrestler. When given a chance, her matches are always great to watch, she should get a push soon"
Rating: 9.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: vifnlvkwrote on 06.01.2025:[7.0] "Kairi Sane used to be my favorite wrestler. The first match I watched was the womens Royal Rumble in 2018, and she looked like a star. She continued to be my favorite until her departure from WWE in 2020. When she came back, I was super excited, but her booking and ring work have been lacking, and I unfortunately cannot connect with her."
Rating: 7.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: TripleCrownwrote on 30.12.2024:[9.0] "One of the best Joshi wrestlers of her generation. She was absolutely fantastic in STARDOM and had tons of great matches. Never really found success in WWE, she just seems to float about which is a shame. Has a great look, not too sure about her mic skills as I'm not Japanese, but in WWE at least, they haven't really done much to show her ability on the mic and such. Overall, great wrestler who has gotten lost in the shuffle twice now in WWE."
Rating: 9.0
Sentiment: 0.3285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: StardomIconwrote on 10.12.2024:[10.0] "Kairi is an all time great wrestler. Her signature moves are amongst the best in wrestling and prove that you don't need to come up with a gimmicky move to get over - just do a common move really well and put your own touch on it. She has been subjected to jobber status since returning to the WWE in 2023 and I understand why some new fans don't understand the hype behind her. Moreover, she herself said she struggles with the sports entertainment style of wrestling where things are overly choreographed and slowed down. Regardless, her work in 2022-2023 in Stardom and NJPW prove she is still one of the best wrestlers in the world. Her pirate princess gimmick is based in reality as she sailed the world in college competing in world sailing championship competitions. She does not have the technical prowess of many joshi but she has an aura around her while her charisma is unmatched. It's sad to see how WWE treats legendary wrestlers as she is being given the 2023 Shinsuke Nakamura treatment."
Rating: 10.0
Sentiment: 0.26291486291486293
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: AceHagannwrote on 28.11.2024:[9.0] "Absolutely brilliant. Kairi is extremely gifted in the ring, with a charismatic persona that transcends her language barrier limitations. Definitely underrated for those who've only seen her in main roster WWE."
Rating: 9.0
Sentiment: 0.3444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Khalid Acewrote on 14.11.2024:[6.0] "On ability in the ring alone, she's definitely in the top 10 women wrestlers EVER. But, WWE have ruined her, twice by the way. For someone this talented to have matches like what she's had in WWE is criminal. I actually remember my excitement when I heard WWE signed her " the first time " I was like finally I get to watch some great wrestling in WWE but I was disappointed. For someone who considered himself a Kairi Hojo fan I've got to rate Kairi Sane based on her current average performances sadly."
Rating: 6.0
Sentiment: 0.037499999999999985
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Elconcarowrote on 13.11.2024:"Kairi is phenomenal. Shes so undervalued by WWE Rn. She could be a top Baby face she has the look, the moveset everything you need."
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: tion24wrote on 03.11.2024:[9.0] "Similar to her Damage Control stablemate, Iyo Sky, she is an incredible athlete and a fantastic performer. She is unfortunately a bit limited in her promos because of the language barrier but that doesn't take away from her charisma in the ring and ability to connect with the crowd while performing."
Rating: 9.0
Sentiment: 0.14571428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Kb2295wrote on 18.10.2024:[9.0] "Her Stardom run is legendary, her black and gold NXT run is great, and her main roster run has just been ok but is tipping in the right direction recently. Reuniting in the tag division with Io has certainly helped but she's a generationally great babyface & that's what she's back to now. Looks really comfortable out there, and the solid ring work and fun move set is taking care of the rest. If a mid card title is introduced for the main roster women's division, she's on the short list of worthy inaugural champions."
Rating: 9.0
Sentiment: 0.2823529411764706
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: JackBurtonsTruckwrote on 14.10.2024:[8.0] "A fantastic in ring talent, with undeniable charisma and likability. Her current run isnt her best, but her body of work overall speaks for itself."
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Galmondiwrote on 22.09.2024:[9.0] "I don't care what anyone say, she's still one of the best and i know that she still has a lot left in the tank. She seemed to lack confidence when she came back but now it's better. Now all she needs is a push."
Rating: 9.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Samarimuswrote on 19.09.2024:[10.0] "I still believe Kairi is a 10/10 wrestler, but for some reason; especially since she came back into the WWE, nothing seems like its working and its especially apparent when Kairi is fighting one-on-one, and not with either Asuka or Iyo by her. Shes completely given up on the pirate princess gimmick that was so iconic to her during her first run, to become some sort of jokester. Im still going to give a 10, assuming its a minor issue, with the opponents shes fighting; but shes definitely not as amazing as she once was."
Rating: 10.0
Sentiment: 0.07499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: wrestlinggod45330wrote on 18.09.2024:[5.0] "While being an all-time great wrestler and still having great babyface energy, this current run really don't really pay homage to her reputation as most of her matchs have been filed with botchs, miscommunications and clear chemistry issues with most of her opponents. It may be her past concussions or a langage barrier issue but if it wasn't for the rest of Damage CTRL doing the heavy lifting, she'd probably be lost in the shuffle. There's something with Kairi and the WWE environment that just doesn't click."
Rating: 5.0
Sentiment: 0.2722222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: TrueJugoBetrugoNo1wrote on 15.09.2024:[7.0] "Sie ist in Ordnung und hat im Ring auch definitv etwas drauf. Ich habe jedoch Hin- und Wieder das Gefühl, dass einige Aktionen etwas "wackelig" ausgeführt werden, was teilweise doch ungeplanter aussieht, als es vielleicht sein sollte. Nichtdestotrotz ist auf jeden Fall noch Potential vorhanden und wenn sie langfristig die Sprachbarriere meistern kann, liegt ihr eine große Zukunft zu Füßen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: sKiaWeVwrote on 11.09.2024:[9.0] "Even when being underutilised by WWE it is hard not to be entertained watching Kairi Sane. Excellent in-ring, excellent at creating narratives and always makes the best of whatever is given to them. You can see by the way the crowd reacts to Damage CTRL that they're all such naturally likeable, charismatic wrestlers and can be put on any card."
Rating: 9.0
Sentiment: 0.4726190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: thunderrockwrote on 22.08.2024:[9.0] "A Joshi wrestling legend. Im so glad they turned Damage CTRL babyface because Kairi is such a natural babyface. It took her a while to readjust to WWE wrestling but when she is given enough time she really proves all the doubters wrong. And Im so happy were getting Sky Pirates as a tag team again, although Id love to see Iyo turn heel and have them feud with each other. Also seeing the crowd pop for them makes me so happy. I just hope before she retires we get to see her with a singles title, the fact she has only had one singles title run which lasted maybe 2 months is ridiculous."
Rating: 9.0
Sentiment: 0.17013888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Odinohkawrote on 19.08.2024:[9.0] "Another outstanding Japanese wrestler who should have deserved better stories and matches in the main roster. Her alliance with Asuka, though poorly constructed at the start, gave the women's tag team division its first real, consistent team. The chemistry between Asuka and Kairi was superb and their reign was one of the best. While Kairi as a heel is a likeable character, nothing is better than when she's a face. She's naturally supportive, she's funny, she's serious in the ring but brings a real touch of freedom, lightness and freshness just by her presence. Her movepool, though sometimes amusing, has great impact and is highly original. Her comeback is less impactful than I'd hoped and she seems to have lost a little of her technique, but Damage Control / Kabuki Warriors is one of my favorite clans. I hope to see a lot more of her in the ring, to find opponents at her level and with whom chemistry works, and that she regains her formidable level. And if possible as a face."
Rating: 9.0
Sentiment: 0.3149621212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Joe907wrote on 18.08.2024:[10.0] "Kairi was a fierce joshi in Japan. Her matches were amazing with Io Shirai, Mayu Iwatani, and Meiko Satomura. Winner of the first Mae Young classic. Her stable Damage Control has been great lately on the main roster. Great in-ring performer with a nice moveset."
Rating: 10.0
Sentiment: 0.35370370370370374
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Sal1314wrote on 05.08.2024:[10.0] "Kairi is an amazing storyteller, with a cool personality and a natural sense of humor to connect with audiences. She shines as an underdog babyface, using her selling ability, facial expressions, and technique to create a compelling narrative in the ring. Unlike some wrestlers who rely solely on high spots and atletism, Kairi brings depth and context to her performances. During her prime days in Stardom, Kairi had memorable matches with top stars such as Iyo Shirai, Meiko Satomura, and Mayu Iwatani. Even in her post-WWE run, she delivered an amazing match with Sasha Banks, aka Mercedes, but her career highlight was when she wrestled back-to-back high-profile matches with Saya and Mayu while dealing a foot injury. She had a good run in NXT and the Mae Young Classic, but she has been underutilized on the main roster in WWE. Instead of allowing her to shine as an underdog babyface and elevate people like Liv Morgan, Zoe Starks, Sonya, and Dakota, they have relegated her to a secondary sidekick heel role alongside Asuka and Iyo. I hope we see a babyface turn and rivalry with Asuka, Iyo, Rhea, and Liv."
Rating: 10.0
Sentiment: 0.2628888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: JulianPera50wrote on 04.08.2024:[10.0] "We have nothing to discuss about her in-ring skills, she is a perfect 10 when it comes to that, a legend as a wrestler. If we talk about her character, she is a super lovable relatable wrestler, even when she is a heel you cannot do more but to love her, she really shows passion for professional wrestling, ¿what else can we say that hasn't been told already?"
Rating: 10.0
Sentiment: 0.44761904761904764
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Cletxawrote on 02.08.2024:[10.0] "it's really fun to watch her. She is one of the best female wrestlers. I hope she will come to a more important level in WWE. I expect a championship from her."
Rating: 10.0
Sentiment: 0.44000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Akyri0wrote on 30.07.2024:[10.0] "One of the coolest female wrestler of all time. She oozes charisma. A shame she's treated like she's no big deal in WWE."
Rating: 10.0
Sentiment: -0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: namisuzwrote on 25.07.2024:[10.0] "She is one of the best women's wrestler, I wish WWE could use her better. But she's clearly awesome in the ring and my favorite women's pro wrestler."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Midcardaholicwrote on 16.07.2024:[9.0] "I miss when they were all in on that pirate gimmick, but shes a talent, shes athletic, and she has success in Japan, shame shes a jobber in the WWE."
Rating: 9.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Quack7183wrote on 25.06.2024:[6.0] "She has so much potential, but WWE isn't showing any of her skills. WWE needs to do something different than being the oddball out in Damage CTRL. I know could be an amazing breakout star, and WWE just needs to let her be just that. She is forgettable in the WWE. Fix it WWE. I can't give her a higher rating than 6, which saddens me."
Rating: 6.0
Sentiment: 0.07000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: YellowJournalismwrote on 04.05.2024:[4.0] "I am only basing this rating on her work in WWE. Kairi seems like a perfectly adequate worker, and a good seller but she makes a lot of mistakes that can disrupt the flow of segments and matches. Some that come off the top of my head is Kairi missing the queue to leave the ring as Bianca Belair, Naomi, and Jade Cargill were entering and then deciding to exit the ring (late) from the hard camera side. Then dancing on the hard cam side while the other women are doing their entrance until Asuka came and dragged her to the side of the ring w/ the announcers tables (where she was supposed to be all along). The next is trying to pin Jade Cargill at backlash when Asuka had tagged in as the legal woman. While I think Kairi can be a good wrestler, there isn't a lot of room to accept these kinds of mistakes on TV and PLEs, especially since they make the other wrestlers in the matches/promos look worse."
Rating: 4.0
Sentiment: 0.04666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: DanParkeswrote on 07.04.2024:[10.0] "Kairi Sane is such a natural fan favorite and face! She is an incredible wrestler and character - she is quick and so full of stamina. Her runs in Stardom, NXT and WWE main roster have all been impressive and have contributed to my increased watch and follow rate of wrestling in general! It's overstated, for good reason, but she has the best elbow drop in the entire business! Her promo skills and charisma is incredible, whether in Japanese or English. She deserves all the flowers for the work she puts in! Her current run in WWE looks like she is just having so much fun (in the ring, backstage, in promos and at fan meet and greets! ) She is a treasure! Watching her moves, she puts full force into them so that despite her smaller stature her moves feel like they physically hurt more than some heavyweights!"
Rating: 10.0
Sentiment: 0.36101190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: mxkamiwrote on 11.02.2024:[10.0] "All time Joshi. Her Stardom work of the past and more recently with REstart until her venture back to WWE the second time is full of truly great moments and matches, especially with Io Shirai. Realistically, as of right now, probably deserves a 9 as opposed to a 10. How so? My word, I love this woman's work... But holy smokes, this current WWE run where she's tagging with Asuka again, is... Less than great. She looks uninspired, sloppy (which I assure you, she is not), and like she doesn't want to be there. Just look back a few months at her closing moments in Stardom, and tell me you don't see a difference. We'll see if this changes how I feel about her over the long run, but one middling run doesn't negate years of great matches and feuds for me. And it doesn't hurt that the In-Sane Elbow is so damn beautiful."
Rating: 10.0
Sentiment: 0.1651190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: crs285wrote on 05.02.2024:[9.0] "Kairi Sane is a great women's wrestlers. In the ring she has a great move-set, and her athletic ability is amazing. Her charisma is good although not speaking Japan does hurt my understanding of what she says sometimes. She is a huge star in Japan and she has been very good in WWE as well."
Rating: 9.0
Sentiment: 0.7016666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: JediSaiyanMaster1203wrote on 27.11.2023:[9.0] "Might just have the best elbow drop of all time, Kairi Sane is an incredible wrestler who is very charismatic and can play her gimmicks well. Let's cross our fingers and hope she gets fantastic booking in WWE and wins tons of belts."
Rating: 9.0
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Eduardo23wrote on 06.11.2023:[10.0] "Amazing in-ring performer with loads of charisma, great mic skills, and aura. She is incredible as a face or as a heel and has delivered excellent matches and stories over the years. To top it all off she is drop-dead gorgeous, a stunning goddess with a precise arsenal, a strong spinning back fist and the best flying elbow of all time."
Rating: 10.0
Sentiment: 0.6212121212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Wrestling Foreverwrote on 05.11.2023:[10.0] "Wahnsinns Joshi die WWE Zeit war doch auch richtig stark. Auch wenn sie nur zwei Titel gewann. Aber sonst viel erreicht. Wünsche ihr und ihrer Familie in Japan alles Gute. Bei Stardom war sie schon eine der Besten. Edit 05.11.2023 Kairi ist wieder bei der WWE. Mal schauen wie wird der Second Run."
Rating: 10.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: shilderwrote on 05.11.2023:[10.0] "There are many of my wrestling friends who weren't familiar with her work in Japan or while she made her first run with WWE. So I have been hyping her up for weeks urging people to go watch her tag title run with asuka as well as watch her NXT matches with likes of Shayna Baszler. She is truly a full package wrestler with so much value. She brings to the table what some within the women's division wish they could. An aura. Glad to see her return at Crown Jewel. Can't wait to watch how this run plays out"
Rating: 10.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: zeropercentwrote on 16.09.2023:[9.0] "She's an utter joy to watch and strikes a good balance between stylish gimmick and coming across as a genuine threat. I don't think I've ever heard her cut a promo and it doesn't matter because she's so expressive and charismatic in the ring and with her gestures."
Rating: 9.0
Sentiment: 0.5285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: JayEpicenterwrote on 03.07.2023:[10.0] "Funny enough years ago when I was watching NXT and heard she was coming I was very skeptical hearing about someone known for having a fantastic elbow somehow making her great. When I saw the elbow I had to admit it was wonderful, but I still I had doubts she'd be able to translate to WWE/NXT and the rest of her arsenal. I was proven wrong as she became my favourite act in NXT, be it her pirate gimmick, her adorable personality, great strikes and fast paced exciting offense, she truly captured my fandom. She made me become more interested in the joshi scene, and years later I checked out Stardom, and am glad she came back there to have wonderful matches, be it agaisnt Mercedes or teaming with REstart. She has been a success in the west and the east, been part of memorable tag teams and a great singles competitor, and meshed in factions, even a inaugural champion for the new IWGP Women's World Title, a true legend."
Rating: 10.0
Sentiment: 0.34505928853754936
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: 5hadowCroftwrote on 23.04.2023:[10.0] "Sie hat den besten Finisher Elboggen-Drop & viele andere Aktionen die absolut inSANE sind. Die WWE weiß garnicht, was sie mit Kairi versäumt haben. Sie ist so talentiert, i love her."
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: nWo-Joshi-Guywrote on 26.02.2023:[10.0] "Outside of having the best elbow drop of all time; KAIRI has a ton of other really cool offensive. I actually think she may have been surpassed by a few others in Stardom currently in terms of pure in-ring skills but her eccentric character and charisma are almost unmatched. The perfect babyface but also an unbelievably entertaining heel in WWE as well!"
Rating: 10.0
Sentiment: 0.2603896103896104
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Bullshark1wrote on 22.01.2023:[9.0] "WWE had a real star on their hands and they dropped her like it was nothing. When I saw Kairi in NXT, it blew me away. She had a mediocre NXT Women's Championship run, later followed by being on the main roster and the Kabuki Warriors, which was a highlight of her career. Now she's back with Stardom, and although I don't watch that company, I know she's doing good work there and will continue to get bigger and bigger."
Rating: 9.0
Sentiment: 0.07083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: TobiGeldner81wrote on 16.01.2023:[8.0] "Sehr gute Athletin und sehr unterhaltsam. Ihr promos sind meist lustig. Hätte länger bleiben sollen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Kungwrote on 18.11.2022:[10.0] "There was a time that Dave Meltzer said that she, Io Shirai, and Mayu Iwatani were the three best wrestlers on the planet. I'm not sure that's ever been true, but I'd put Kairi's ability up against just about any other woman wrestler in the business during the 2010s. Not to mention, she might have the greatest elbow drop of all time."
Rating: 10.0
Sentiment: 0.395
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: li0nsaultwrote on 04.11.2022:[10.0] "One of my favorites, and one of the reasons I started watching Stardom. So naturally charismatic that she connected with crowds that didn't even speak her language, with high level in-ring work, and she's also a great storyteller. A literal total package"
Rating: 10.0
Sentiment: 0.365
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Flame233wrote on 15.09.2022:[9.0] "I was not there to witness the Pirate Princess, and I regret that so much. From a little bit of research every one can se that people loved her, and I'm sure I would have too. Her Diving Elbow Drop is a absolute treat, and the connection to crowd is exceptional. The Kabuki Warrios seem to have been a great tag team with great chemistry, and the way I see it is she was better than Asuka (not to diminish the Empress). I hope she is happy at Stardom, and that one day she returns to WWE, and maybe we will se her with a main title around her waist."
Rating: 9.0
Sentiment: 0.4678030303030303
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: GreatAether531wrote on 09.04.2022:[9.0] "I don't think WWE really knows what they had with Kairi. Even with the language barrier, she's still able to communicate her radiant babyface energy, come off as extremely likable without saying much, and plays an excellent face-in-peril with how well she bumps around and sells exhaustion. Aside from having the best elbow drop since Randy Savage himself, she manages to make strike-based offense look incredibly believable despite her small size, which really makes her comebacks pop. Looking forward to last her run at Stardom."
Rating: 9.0
Sentiment: 0.385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Okaro143wrote on 26.02.2022:[9.0] "Kairi Sane is one of the most outstanding women's wrestler of the 21st Century. She was one of the central performers in Stardom alongside Shirai and Mayu Iwatani before leaving for WWE and winning the 1st Mae Young Classic. She went on to win the NXT Women's Championship but didn't spend a lot of time in the Black and Gold Brand. She is best known as one half of the Kabuki Warriors; it was a stupid idea that pit two Japanese wrestlers as a team because Creative has no idea how to promote female wrestlers other than Charlotte but she was somehow able to make it worked alongside ASUKA. Ultimately, her 1st run with the biggest wrestling promotion of the world was underwhelming despite a great reign as Women's Tag Champion with ASUKA. Her rivalry with Io Shirai in Stardom is one of the hottest rivalries in Stardom."
Rating: 9.0
Sentiment: 0.21622807017543866
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Suzukigunwrote on 18.02.2022:[10.0] "Updating this because of how happy I am to see her back in Stardom. Her time in WWE was murky but in Stardom, she was a huge star and exceptional at what she did. I cannot wait to see her wrestle in the Stardom ring again."
Rating: 10.0
Sentiment: 0.4666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: WhatIsLooveeewrote on 09.02.2022:[10.0] "I didn't follow Kairi's career very well in Japan, but what I saw from her in America impressed me. She was part of a rather interesting storyline with Pentagon, after which she began performing in WWE, where, although she was very underestimated, she became a participant in the best match for the NXT women's championship and, in general, often showed good matches alone and then in a team with Asuka. A very talented athlete and entertainer, who clearly will not get lost after leaving WWE."
Rating: 10.0
Sentiment: 0.5177777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Legend003wrote on 07.01.2022:[9.0] "Eine echt starke Wrestlerin. Mir gefiel sie schon bei Stardom, da zeigte sie schon ihr starkes Handwerk und konnte einige starke und mehr als sehenswerte Matches zeigen.. Das gleiche konnte sie im Mae Young Classic und auch bei NXT zeigen. Leider war ihr WWE-Main Roster Run leider nicht wirklich gut, aber trotzdem sah man ihr gewaltiges Potential. Ich hoffe, dass man noch einiges von ihr sehen kann."
Rating: 9.0
Sentiment: 0.08888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: SammyMayawrote on 27.01.2021:[10.0] "Kairi Sane is an other-worldly talent. She has it all: athleticism, charisma, humble nature, and physical beauty. Proved that she ranks in the pantheon of joshi legends during her Red and White Belt runs in Stardom. Every match she had as World of Stardom Champion was consequential and against world-class opponents; the championship could have changed hands each and every time. Showed her mettle and never-say-die ethos in the matches against Meiko. Wrestled so many classics against Io. *Only* won the NXT Championship during her WWE run; should have had a longer reign, and should have at least been Raw or Smackdown Women's Champion at least once, but we, the general public, aren't privy to behind-the-scenes politics and the state of her health. Her team with Asuka rocketed in popularity due to the oozing charisma of both performers, although Kairi is the equal of Asuka in the ring and should not have been portrayed as the "weaker" of the two. Not surprising that she was a WWE Women's Tag Team Champion given her extensive past as a tag team specialist in Stardom. I hope her wrestling career isn't over; would love to see her on a retirement run in Stardom to close out her magnificent career."
Rating: 10.0
Sentiment: 0.01634615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: KENTAfanwrote on 07.01.2021:[9.0] "She? s right behind Io in terms of being the female GOAT. One of the most charismatic women in the sport, so much so that she easily transcended the language barrier in NXT and immediately became a top baby face. Her run on the main roster was somewhat lackluster, but still enough to be called a success despite being subject to terrible booking. That said, her greatest work was undoubtedly done outside of the WWE, where she has had some of the greatest women? s matches ever. I think leaving WWE was the right decision for her, as she can now perform at full potential once more."
Rating: 9.0
Sentiment: 0.2227380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: STARDOGCHAMP90wrote on 21.10.2020:[8.0] "Kairi is one of the best Joshi wrestlers on the planet. She's had countless entertaining matches and won many prestigious championships. She won the Mae Young Classic, and had an unbelievably-short stint as NXT Women's champion. Kinda sad that she's not with WWE anymore but I hope she does bigger and better things in Japan eventually."
Rating: 8.0
Sentiment: 0.2518518518518518
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: CrazyCoffeewrote on 28.07.2020:[9.0] "Poor Kairi. A fantastic wrestler who was at the wrong place at the wrong time. Although she won the Mae Young Classic, everything went downhill from there. She has one of the shortest reigns as NXT women? s champion. And always had to put Shayna over to establish her as a monster heel. The feud never went further as Kairi was then called up to the main roster and be put on a tag team with fellow Japanese wrestler Asuka who was also struggling on the main roster after a historic run on NXT. The Kabuki Warriors were eventually tag team champions and did they did their best to make the women? s tag team belts prestigious, only losing it and Wrestlemania ( where Kairi ate the pin). From there, Kairi jobs to Nia ( who injures her on 2 occasions) and Shayna, looking a chump in the process and disappears for a while. When she reappears, she looks like a chump some more, getting attacked by Nia backstage, and then eating pins clean during tag matches. Kairi leaves WWE as a chump being beaten backstage by Bayley. News has it that Kairi will return to Japan and wrestle one more year before retiring. Sadly, if she does return to Stardom, she will now be at the mercy of the monster pushed Giulia, Bushiroad? s chosen champion... Arrivederci Kairi...."
Rating: 9.0
Sentiment: 0.08627450980392157
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: archiewrote on 14.07.2020:[10.0] "Perhaps my favourite wrestler to ever lace up a pair of boots. Endless charisma and athleticism topped off by the best elbow drop in pro wrestling. WWE doesn't know what they have with her, she's wasted on Vince McMahon who has a clear disposition for anyone who isn't a 6'4" 240 lbs Samoan monster. Even back down in NXT she was never given the spotlight as far as feuds go. Her most notable feud, with Shayna Baszler, very much felt like Shayna Baszler feuding with Kairi and not the other way around. Had she been given better opponents and more time she would currently possess a much better reputation than the one she currently has as a result of King Meltzer giving her no higher than 3 3/4 star for a match of hers. Watch her flourish when she returns to stardom soon. Just, you, wait."
Rating: 10.0
Sentiment: 0.18996732026143792
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: hirsty97wrote on 05.05.2020:[9.0] "Best female talent in WWE right now. Why are they sleeping on this talent? The way she was booked in the women's rumble, against Shayna, Lacey Evans was criminal. She is better than Asuka and younger. I thought good things would happen after the MYC but instead we've had nothing one year later."
Rating: 9.0
Sentiment: 0.2607142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: ooomegooowrote on 23.12.2019:[9.0] "Please, hey her back to Japan. Hey her back to STARDOM. And then I'll give her 10. Because in WWE, she's not in her place. She needs to talk, she needs to joke, but she's still can't talk in English. In Stardom, even if you can't understand what she talks, you you can imagine what is she talking about, and there is subtitles."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: ElPolloLocowrote on 24.08.2019:[9.0] "An unbelievable combination of skills, character acting and beauty, I cannot think of no other lady wrestler that can serve as a model for all the others to follow. Io Shirai may be the best I have ever seen in the ring but Kairi is the most complete package by a fair margin. The only problem is I am not 100% sold on this whole WWE thing but at least she's getting a big paycheck (hopefully)."
Rating: 9.0
Sentiment: 0.18295454545454548
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: KyleEnjoysWrestlingwrote on 01.08.2019:[10.0] "Kairi is an incredible wrestler. Her ability to convey emotion is her best attribute in my mind. She does not have to speak a lick of English for us to know exactly what she's thinking. That's a skill that Vince & company don't recognize because they still have the mindset that everyone needs to speak. I completely disagree. She tells a great story with all her matches and she's a real pitbull in the ring. Despite being small, she can believably stand up to people twice her size. She has a magnificent presentation & you are just intoxicated to watch her perform. She also has the best looking elbow drop I've ever seen."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: DecentWrestlingwrote on 19.07.2019:[10.0] "Excellent face as she can be likeable and a complete badass. Amazing in ring work with a great finish."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: NEVERoverweightChampionwrote on 04.07.2019:[8.0] "Despite her size and very cute look she can be one of the most agressive striker in women's wrestling today. (or at least she was) She has one of the most pure babyface aura I have seen in a long time. Her work in Stardom was good despite being not that experienced at the time, wich was impressive. In WWE, she's doing her best with what they give her. I don't think she will leave an impact here because she doesn't really fit with the WWE style or even the American crowd but I wish her the best."
Rating: 8.0
Sentiment: 0.49340659340659343
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Kanatowrote on 18.06.2019:[10.0] "One of the most talented japanese superstars to set foot in WWE. Very impressive skills, her elbow drop is nothing less than beautiful and her pirate princess character would make her a very fit Miss Money in the Bank."
Rating: 10.0
Sentiment: 0.48619047619047623
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: ErycK24wrote on 08.04.2019:[9.0] "Kairi Sane is probably my favorite female wrestler right now, she never fails to put on a good showing."
Rating: 9.0
Sentiment: 0.3471428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: KoolAidCobainwrote on 25.03.2019:[10.0] "The inSANE Elbow Drop is one of my favorite diving moves right now, the air time Kairi gets just by hitting it is insane and the impact is absolutely painful looking. The amount of talent she has is absolutely phenomenal. And her gimmick would get along well with Io to have the Sky Pirates an actual team and maybe Women's Tag Team Championship contending. She's also extremely cute as well."
Rating: 10.0
Sentiment: -0.1142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: zephyrwrote on 22.03.2019:[8.0] "For someone her size she certainly packs a punch; her moves look super impactful. She's charismatic and very likeable, which combined with her size, make her an ideal scrappy babyface. Unfortunately I find that not quite fitting to her style in the ring though. Not sure if that can be remedied in some way; perhaps it's just a personal issue I have. Overall very good wrestler."
Rating: 8.0
Sentiment: 0.2552380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: TwistedBlisswrote on 14.03.2019:[8.0] "Kairi Sane ist eine sehr gute Workerin. Ich bin ein Fan seit ihrem ersten Auftritt bei dem Mae Young Classic Tournament. Im Ring ist sie deutlich besser als viele andere Damen aber an Ihrer Gestik und Ausstrahlung am Mic muss sie noch arbeiten."
Rating: 8.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: SNKwrote on 26.08.2018:[8.0] "One of the top female talents in the world. While not quite on the level of the very best workers such as Io Shirai or Meiko Satomura, Kairi has plenty of quality performances under her belt and be counted on to deliver a good match. Where she really shines is in her ability to draw sympathy from the crowd and play an excellent underdog. Kairi is somebody you just feel compelled to root for. There isn't a more loveable personality in all of WWE right now."
Rating: 8.0
Sentiment: 0.4650793650793651
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: BelieveInBlisswrote on 15.07.2018:[8.0] "She really impressed me so much in the Mae Young Classic. Especially when she threw risk out the window in her match against Toni Storm. Her mic skills are ok need a little work. But as far as selling the moves she is awesome. One of the stiffest shots in the Women's Royal Rumble match on WWE Hall of Famer Lita. I believe Kairi Sane will walk out of NXT Takeover as the new NXT Women's Champion."
Rating: 8.0
Sentiment: 0.3015530303030303
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Makai Clubwrote on 10.07.2018:[8.0] "Kairi is great, she has great babyface fire, her facial expressions are off the charts, she has one of the best elbows in the wrestling business today. She has great and unique offence and she is a tremendous seller. She is probably the worst out of the threedom but that's a testament to how good all three actually are."
Rating: 8.0
Sentiment: 0.38083333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: rjsbx11wrote on 11.02.2018:[9.0] "While she was overshadowed by Io Shirai in Japan, Kairi Sane has also been an incredible worker. She's one of the most natural babyfaces, and the pirate gimmick is endearing.  But as an in-ring competitor, she's one of the more brilliant movesets with a picturesque dropkick, a damn good spear (considering her stature) and the best elbow drop in wrestling. She was a bonafide star in MYC, and WWE has a potential money making machine when she grasps a good control of the English language."
Rating: 9.0
Sentiment: 0.5272727272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Adaskerrwrote on 13.09.2017:[9.0] "Such a natural babyface, and a great wrestler as well. She doesn't even have to talk to be liked. If WWE can handle her right, she will be a big star."
Rating: 9.0
Sentiment: 0.2976190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Klabauterwrote on 04.09.2017:[10.0] "[Ursprgl. Kommentar 20. 03. 2017, 10:37 Uhr] 10 Punkte, da Kairi Hojo in wirklich allen Belangen top ist. Im Ring kommt in meinen Augen kaum ein Women's Wrestler weltweit ran. Allenfalls Asuka, Io Shirai und Sasha Banks spielen hier in einer Liga mit ihr. Dazu hat sie tonnenweise Charisma. Wenn sie spricht, ist das Publikum gefesselt. Zudem schafft sie es trotz der Tatsache, dass sie eine der drei Topstars von Stardom ist und wohl auch rein von den Statistiken her immer als Kandidatin auf einen Sieg gezählt werden muss, dass man ihr den Underdog-Charakter abkauft und sich auch mit ihr über Siege freuen kann und nicht sagt "Naja, hat sie eben wieder gewonnen, war zu erwarten. " Sollten sich die Gerüchte bewahrheiten und sie bei WWE antreten, dann ist sie in meinen Augen tatsächlich die erste, die die Aussage von Regal zu Asuka (greatest competitor that ever signed here) in Frage stellen könnte. Ich sehe in ihr schon jetzt eine vielleicht noch bessere Wrestlerin als Asuka, jedenfalls aber eine, die sich noch weit besser vermarkten lässt. Sie könnte das werde was Bayley lange bei NXT war, das liebenswerte Babyface, das von Kindern, wie Erwachsenen gleichermaßen geliebt wird. Nur mit dem Unterschied, dass Bayley in diese Rolle erst reinwachsen musste und Hojo, das im Prinzip schon jetzt lebt. [Update 04. 09. 2018, 21:53 Uhr]: Nach dem Mae Young Classic hat sich meine Meinung zu Kairi nochmals verfestigt, sie ist m. M. n. eine der besten der Wrestling-Welt. Sie spielt ihre Rolle so überzeugend, man nimmt ihr die Begeisterung für's Wrestling voll und ganz ab und es ist einfach schön ihr dabei zuzusehen, wenn sie sich freut. Auch die kurzen Stücke die auf Englisch gesprochen hat wirken schon überzeugend und nicht auswendig gelernt, wie es bei Asuka teilweise der Fall ist (auch bei anderen). Übrigens sollte nicht unerwähnt bleiben, dass sie auch die andere Seite die sehr ernste Kämpferin sehr gut drauf hat, wie man vor Allem bei Lucha Underground sehen durfte. Kairi = 1"
Rating: 10.0
Sentiment: 0.4416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Magnus334wrote on 03.10.2016:[9.0] "In my opinion, Kairi Hojo is the perfect prototype of what a kid friendly baby face should be. She appeals to every single demographic and as good as she is, she is able to play the underdog seamlessly. Someone with the amount of classic matches Kairi has, it would be understandable to think she's unbeatable, but her facial expressions really convey that every match is not a given, especially against Io or others that are on her level.  Her countless matches with Meiko Satomura and Io Shirai are incredible matches that will be watched forever. I'm not a huge tag team fan but when Kairi tagged with Nanae Takahashi I thought those tag matches were some of the best I've ever seen. I don't speak Japanese, but she always has the audience in her hands and from what I can tell she has incredible mic skills. Among the countless Joshi women out there, Kairi really stands out and could be a success anywhere, even WWE. Don't think she's ever leave Stardom, but if she did, she'd be welcomed anywhere. P. s. She also has the best elbow drop in the history of pro wrestling."
Rating: 9.0
Sentiment: 0.35351190476190475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Luv all wrestlingwrote on 11.09.2016:[10.0] "She has a gorgeous... elbow drop, Hojo has it all marketability, workrate, charisma and a character you can invest in, how is STARDOM and LU are the only companies that use her?"
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: rustybridgewrote on 10.08.2016:[10.0] "Heck of a fine young talent and has accomplished a lot already. Easy on the eyes, great ring work, charisma, character development, marketability, she has it all. Even though she is small she is able to make her offense believable, something many small wrestlers have trouble doing. Would to see her come to America, even for a few months. BTW, gotta love that elbow drop!"
Rating: 10.0
Sentiment: 0.24423076923076922
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: RantsAbovewrote on 21.06.2016:[10.0] "One of the best underdog wrestlers currently. Everyone deservedly loves her elbow drop (RIP Macho), but for someone so tiny she's got a legit spear."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Blabewrote on 05.05.2016:[10.0] "Incredible wrestler who is only 27. She has a huge career ahead of her. (And her elbow drop is amazing. )"
Rating: 10.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=11958&gimmick=Kairi+Sane
Comment: Matzinhowrote on 26.10.2015:[8.0] "Hat in diesem Jahr mit den Krachern gegen Satomura definitiv ihre Visitenkarte abgegeben. Die Fehde mit Satomura und der letztendliche Titelverlust bei Stardom wurden hervorragend gebooked - im Prinzip sind jetzt alle Bausteine gelegt, um später mit Hojos Sieg in einem Singles Match gegen ihre Feindin eine Ablöse einzuleiten und sie endgültig zum Star zu machen. Derzeit noch acht Punkte für eine gute Pro-Wrestlerin, der alle Türen nach oben offen stehen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: ItsAllAWorkAnywaywrote on 14.11.2024:[8.0] "In lucha libre, Rey Fenix has established himself as a star. In professional wrestling, Fenix has established himself as an upper-echelon tag team wrestler along side his brother Pentagon Jr. Fenix's athleticism and death-defying style has endeared him to the fans. It is that style which as also unfortunately seen him rack up a myriad of injuries along the way as well. Just the same, there's few who are as exciting when Fenix is healthy, and a match with him involved is generally a treat."
Rating: 8.0
Sentiment: 0.035714285714285705
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: benny5bellyswrote on 23.09.2024:[8.0] "I love a bit of Fenix and will be sad to see him go. By a country mile he is better than his brother. A shame he never got a proper singles push in AEW as the talent was there. A shame injuries always seemed to get in his way."
Rating: 8.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: An Wrestling Guy12wrote on 04.05.2024:[9.0] "The guy is a awesome highflyer. Not just that, he is a awesome wrestler when it comes to anything. He flies, he catches, he wrestles, he carries. The reason he isn't a ten is because of his charisma. But overall, he is a 9.5"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: BruceMarcos524wrote on 20.04.2024:[9.0] "Upon seeing few of Rey Fenix matches, both as singles and as a tag team, safe to say that he is one of the most spectacular highflyers amongst most luchadores. Although, luchadores are well known for excessive use of flashy spots, Fenix can make most of his moves very important to the matches he performed. His team-up with Penta El Zero Miedo, also known as the Lucha Brothers, are the most exciting and one of the best luchadores tag team in all of pro-wrestling. Seeing them fought the Young Bucks showed how much of an amazing chemistry these two teams got. Fenix is obviously the stand-out of the two and brought amazing highlights on most of their matches. Fenix reminded me of a young Rey Mysterio due to his abilities and I believe that Fenix fits to be the next Rey Mysterio, which means he could be the next top successful worldwide luchador if booked right. The only guys that I can think of that somehow can match Fenix's highflying abilities is El Hijo del Vikingo, which is another talented young luchador. Also, I love his edgy style and calling his opponents, "ZERO MIEDO" which means "No Fear" in Spanish. His personality showed that he is not just some generic luchador that we most commonly saw on lucha libre wrestling. Truly an excellent performer and always a blast when I see him on his matches."
Rating: 9.0
Sentiment: 0.27884453781512597
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Cleanerwrote on 04.04.2024:[8.0] "Sehr starker High Flyer, besonders damals bei Lucha Underground wirklich stark. An der Seite von Pentagon auch bei AEW ein Assett, wenngleich sein Ringstil teils allzu riskant ist und er häufig verletzt fehlt."
Rating: 8.0
Sentiment: -0.020000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Captain Memowrote on 05.02.2024:[10.0] "There are definitely more "flippy" guys out there than Rey Fenix but he may be the master of the ropes even still. It really looks like he defies gravity at times. I think him and his brother should be solidly in the world title picture wherever they go."
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[9.0] "As good as Penta is, Rey Fénix might be better. In the ring, he's easily a top 5 high flyer in the wrestling world today, he's breathtaking to watch in the ring."
Rating: 9.0
Sentiment: 0.572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: InsertFunnyNameHerewrote on 02.11.2023:[7.0] "I used to be a big fan of Fenix, especially in Lucha Underground when I was a kid, but as Ive grown up, Ive cooled off on this flaming bird. Hes still good, but in AEW, hes far less well-rounded of a wrestler than he was in Lucha Underground and it makes me sad because Ive seen him at his best."
Rating: 7.0
Sentiment: 0.1619047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: MadManJaxonwrote on 22.09.2023:[0.0] "I used to like him but he's been nothing but an injury prone. Not only that but he also managed to injure the ace of All Elite Wrestling aka Jon Moxley and ruined the International title. At this point I hope they take the title from him and put it on someone who can actually wrestle and be safe."
Rating: 0.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: SoomerSloomwrote on 17.09.2023:[10.0] "The thing that puts Fenix over the top of other luchadors that can perform hair-raising dives like him is that he has a constant smoothness, basically everything he does looks like he took the time to practice it, which makes it look death defying, while at the same time looking as though he was born with the ability to do it, it can look as though he doesn't even prepare himself. His tornillos are always incredible, his handspring cutter always looks impactful and despite a language barrier, he talks with a style that shows he's hungry for the top spot."
Rating: 10.0
Sentiment: 0.29583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: crs285wrote on 25.06.2023:[8.0] "Fenix is a great luchador. Fenix has a great high-flying style and can be a great tag specialist or a singles star. His athletic ability is amazing, and he has a good move set. He understands pro wrestling with good selling and psychology."
Rating: 8.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: GonzoAppreciatorwrote on 05.02.2023:[10.0] "Easily one of the most exciting to watch wrestlers in all of wrestling and whether as a singles or tag guy Fenix almost always has the match of the night. Him and Penta have been one of my favorite tag teams ever since I discovered them and I adored his run in Lucha Underground."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Daigotsuwrote on 15.01.2023:[9.0] "Rey Fenix is a fantastic luchadore. Incredibly athletic and when he's on, oh boy is he fun to watch. Sometimes his matches devolve into spot-fests though, and he has had some issues with selling sometimes. I can quibble with parts of his act, but his ceiling is well above almost anybody else's."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: PhenomenalGunwrote on 15.01.2023:[8.0] "[Update from 10.0 to 9.0 to 8.0] Year after year, I like him less and less. His flaws become more noticeable over time in-ring and that's pretty much his main highlight is his in-ring ability. Still an exceptional talent, but I'm getting kind of bored of the same spots every match. [Old Review]: Best high flyer in the world, full stop! How the hell is Fenix this good! He can do moves I've never even seen before, things I question how it's even possible, and can wrestle an incredible match with just about anyone. The only one that embodies Zero Miedo more than Penta is his brother Fenix because he does things I think even Ospreay or the Bucks would think twice about. Fenix is my favorite luchador and that about sums it up."
Rating: 8.0
Sentiment: 0.30112500000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: benh2wrote on 13.01.2023:[5.0] "Admittedly he's visually amazing in the ring and has some insanely good moves but his whole style requires too much cooperation from opponents and his selling is bad. I'm not sure if he knows how to tell a story in a match or not because he's always been in an environment where it's all about getting all your spots and reversals in so there's never any story to it anyway. All the moves just blend together and just numb you to his matches. I should be popping hardest for the last move, not the first."
Rating: 5.0
Sentiment: 0.044444444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: degaretwrote on 03.12.2022:[8.0] "Einer der besten Highflyer zur aktuellen Zeit. Seine Fehde mit Mil Muertes bei LU war phänomenal und einer der Gründe, weshalb LU damals so gut war"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Enriquepollazzowrote on 27.11.2022:[9.0] "Always great tag matches and singles matches. Was lucky enough to see him right before aew and now he is a superstar. He is really awesome."
Rating: 9.0
Sentiment: 0.4838095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: TheNomadMagicianwrote on 27.10.2022:[9.0] "Rey Fenix ist ein unglaublich starker Wrestler und Performer. Er zeigt regelmäßig neue Moves und sein selling ist Klasse! Er hat eine coole Ausstrahlung, auch wenn diese hinter seinem Tag Parter Penta zurück bleibt. Alles in allem Main Event würdig."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: GwenCube64wrote on 05.09.2022:[9.0] "Possibly the best to be wearing a mask at this current moment and has enough credit to be an all time luchador by the time he stops wrestling"
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: UltraNano54wrote on 03.09.2022:[5.0] "The definition of a spot monkey. Sadly, his matches only work if you completely turn off your brain and stop thinking while watching his matches. He has potential but for now, I cannot really say that I am a fan of his."
Rating: 5.0
Sentiment: -0.04166666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: jamzell00wrote on 16.08.2022:[10.0] "One of the best flyers of a generation. It's like he's going out there and trying something new every night and I appreciate it. The label of spot monkey is a buzzword in the community but that has never once fit him. All his flying has impact and meaning to his matches and the best part is he isnt just limited to that. The dude has worked many guys with different styles to him and has always delivered huge. Nothing but respect"
Rating: 10.0
Sentiment: 0.3683261183261183
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: texasyoshwrote on 11.08.2022:[8.0] "Fenix pulls off incredible looking moves on a weekly basis, but I prefer Penta over the two. I feel there's something lacking in the cohesiveness in Fenix's matches, and he isn't as charismatic as Penta."
Rating: 8.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: KELLANwrote on 05.08.2022:[8.0] "Einer der besten High-Flyer aktuell. Seine Matches sehen mir jedoch oft zu inszeniert aus, als dass ich sie für glaubwürdig halten könnte. Finde da seinen Bruder Pentagon etwas stärker. Grundsätzlich aber eine Bereicherung für die Tag-Team Division von AEW. Potenzial: 6x AEW World Tag Team Champions - 1000+ Tage insgesamt - 1x TNT Champion - 80 Tage insgesamt. - [Upper] Mid Card"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: hoangminecraft6969wrote on 22.07.2022:[10.0] "No doubt best high-flyer in the world at this moment and he has the potential of replacing Rey Misterio as the best luchador of all time in my opinion. He's very young and has years to create a respectable career, but for now, he still deserves a 10."
Rating: 10.0
Sentiment: 0.526
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: CutterClubwrote on 28.06.2022:[8.0] "Not going to factor in his promo work as he rarely cuts them in English and I am not fluent in Spanish. Super fluid high flyer. Think of the craziest spot you can and Rey Fenix has had a part in it. Absolutely breathtaking at his best, injured or a little clunky at his worst. If he can find safer ways to utilize his talents he easily becomes a 9 or 10."
Rating: 8.0
Sentiment: 0.18537878787878787
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Wolfe7wrote on 20.06.2022:[10.0] "Might be the best Highflyer in the world for the past few years. He has one of my favorite movesets ever and a lot of his moves are really difficult but he almost never botches them. Just an incredible performer."
Rating: 10.0
Sentiment: 0.2416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: TheCoolGuywrote on 05.06.2022:[8.0] "Seems a little bit overrated on here. Has good matches but theyre all the exact same. Not great on the mic but hes a really good high flyer. I cant give him a 10 or a 9."
Rating: 8.0
Sentiment: 0.17464285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: robrob77wrote on 20.05.2022:[9.0] "I cant give him a 10 because of the mic skills, but this guy is the best high-flyer out there and one of the best performers as well. He is second to none in lucha libre and high-flying maneuvers, and he has an amazing command of the ropes. He sells very well and he knows how to tell a story."
Rating: 9.0
Sentiment: 0.56
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: arrancarwrote on 23.03.2022:[8.0] "Absolutely a great wrestler, and one of the best pure high-flyers ever, but DAMN is he overexposed in AEW. The dude insists on making every single match he has -- from his throwaway Rampage multi-man tags, to his Dynamite singles matches, to his big PPV matches -- feature every single flip and aerial stunt imaginable. Don't get me wrong, because I'll still find myself in awe at some of the absurdly athletic stuff he's capable of, but it absolutely loses its effect when he basically gives an "all out epic war" performance every time he's in the ring. This sadly means that when his biggest matches finally come, such as the Lucha-Bros-vs-Bucks cage match, all his crazy stunts feel less impactful because they're established as only being slight variations on stuff that we've seen him do a million times before. It almost sounds like I'm saying to Fenix: "UGH STOP BEING GREAT EVERY TIME YOU WORK! ", but I'm really commenting on a severe lack of creativity and long-term pacing that I see in him. With him being as agile and flashy as he is, he could easily add in a far greater number of less "EPIC" but still flashy and impressive athletic spots into his lesser matches so as to keep those matches fresh while still allowing him to appropriately save his craziest and most risky spots for his truly biggest matches. I'll definitely still marvel whenever he hits any of his beautiful spots, but at the same time I'll continue to be annoyed at him giving essentially the exact same performance in every single match regardless of the stipulation, story, setting, or opponent(s). If he ever manages to figure out when and when not to go "all out", and/or if he ever manages to noticeably inject some more creativity into his style, then he'll easily end up with a higher rating."
Rating: 8.0
Sentiment: 0.11856060606060606
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Stiff, rugged, and somehow still refined in his own way, Rey Fenix overcomes the pitfalls many spot monkey high flyers fall into. He uses his stiff strikes and grappling to set up the high spots, and earns it in a way others don't."
Rating: 10.0
Sentiment: 0.13448979591836735
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: GriffinXwrote on 24.01.2022:[10.0] "One of the most amazing, creative and spectacular highflyers I have ever seen. Guy wrestlers like he's a character in a video game able to do thing some guys can only dream off"
Rating: 10.0
Sentiment: 0.3285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Wright15wrote on 09.01.2022:[10.0] "One of the very best high flyers of the last several years, no wrestler has ever mastered the ropes like Fenix. He makes even the most complex of maneuvers look effortless, and he understands how to time his spots perfectly in order to get the audience invested. He is about tied with (and probably slightly ahead of) Hijo del Vikingo for best Mexican wrestler in the world today."
Rating: 10.0
Sentiment: 0.31933333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Maltewrote on 06.01.2022:[10.0] "Definitely one of my favorite wrestlers in AEW at the moment. The stuff he is able to do always amazes me. He is very smooth technically and is able to shine in singles and tag team matches."
Rating: 10.0
Sentiment: 0.33666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Dawrestlingfan1991wrote on 04.01.2022:[10.0] "Greatest luchador of the modern era, just an amazing high flyer! I hope one day he becomes a singles champion in aew."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: NoSellwrote on 25.11.2021:[10.0] "I'd say he is the best active luchador at the moment. Amazing in tag and singles action. Does things that defy logic and rarely botches considering how many crazy moves he pulls off. He's awesome."
Rating: 10.0
Sentiment: 0.3458333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: IBladeDailywrote on 23.10.2021:[9.0] "One of the most original and insane wrestlers of this generation. Rey Fenix's high-flying is fantastic, his moveset is essentially if all of Rey Mysterio's moves were to MURDER his opponents! Lucha Bros are fantastic, love their style and chemisty but Fenix has a very bright future ahead as a singles wrestler as well. His match with Kenny Omega for the AEW title is still one of the best matches of 2021. But he also had a FANTASTIC match against Lance Archer, proving he can hang with anyone in the business and be believable. May end up a 10 in the end but he's already legendary."
Rating: 9.0
Sentiment: 0.3834615384615384
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Uweuwesenwrote on 15.10.2021:[10.0] "Rey Fenix ist einer der wenigen Worker, dessen Mic-Work und co eigentlich komplett egal ist. Er lässt Taten sprechen. In Sachen Körperbeherrschung ist er der wohl beste Wrestler der Welt! Matcherzählung ist ebenfalls Weltklasse. Human Highlight Reel!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Okaro143wrote on 17.09.2021:[10.0] "Hands down the best luchador I have ever seen. Easily one of the most if not, the most entertaining talent in AEW. Both a tag team specialist and an amazing singles wrestler. The most versatile wrestler and the best and most consistent performer of AEW since its inception. Fenix continues to impress and deliver every single time in the ring."
Rating: 10.0
Sentiment: 0.46302910052910057
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: VibesAndStuffwrote on 06.09.2021:[10.0] "Unbelievable. He's just an incredible athlete. I love this little guy like you wouldn't believe. Top luchador of the current day."
Rating: 10.0
Sentiment: 0.24375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Kungwrote on 02.09.2021:[10.0] "Fenix is our generation's Rey Mysterio. He does things in the ring that no one would ever dream of and he's got physical charisma for days. He's a legend in the making."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: allurvibewrote on 16.08.2021:[10.0] "Rey Fenix may be the most fun to watch wrestler today, maybe even of all time when it's all said and done."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: blastostgwrote on 28.07.2021:[10.0] "While he's always been an exceptional in ring talent, the last two years he has really taken things to the next level. Like his brother, he should absolutely be a main event talent in AEW."
Rating: 10.0
Sentiment: 0.2066666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: voltxtreanwrote on 23.07.2021:[10.0] "Niemand ist vergleichbar mit Rey Fenix. Es gibt definitiv andere Luchadores da draußen, die verrückte Sachen machen können, und sie sind auch auf ihre Art einzigartig, um sicher zu sein. Aber Fenix ? hat wirklich eine großartige Liste von Gegnern, bei denen er erstaunliche Matches abgeliefert hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Z001Awrote on 17.07.2021:[10.0] "Ich wünschte, er würde einen konstanteren Schub bekommen, auch wenn er sich gelegentlich verletzt (es dauert jedoch nie lange). Trotzdem eine Freude zuzusehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Lyno123123wrote on 02.06.2021:[10.0] "(10/10) When human is created by God, Fenix is getting the athletic ability that God never intended to give to any human being. He is The BEST Luchador in modern wrestling today. There is some stuff that he do that made me question his humanity, And i will never understand how a human being able to move like he did with little to no effort. That took something beyond talent and effort to pull some stuff he did. And his selling is head to head with RVD in term of creative selling. And lets not forget his charisma to be able to pull the crowd in the palm of his hand. We probably wont see another Rey Fenix for another 50-100 Years."
Rating: 10.0
Sentiment: 0.2791666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Icewrote on 30.04.2021:[7.0] "Just a luchadore that kinda botches here and there, but can be used for some fun sprint. Had a captivating storyline with Pentagon in Lucha Underground."
Rating: 7.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: StrongStyle2020wrote on 30.04.2021:[7.0] "Rey Fenix has declined as a performer in the past year. His lack of selling, psychology and storytelling that prevent him from becoming one of the top wrestlers in the world has always been there, but his high flying and breath taking offence has also gone down a notch over the past year. Frequent botches are now occurring, which were very rare between 2017 - mid 2020. He's still an entertaining talent, but dropped from the ranks of top performers on a consistent basis."
Rating: 7.0
Sentiment: 0.18287037037037038
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Android17wrote on 17.04.2021:[10.0] "Rey Fenix does stuff I've never even dreamed of before and makes it look as easy as walking. He should be a world champion someday."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Grissomwrote on 17.04.2021:[10.0] "Ich sag einfach mal Rey Fenix ist der beste Lucha LIbre Wrestler dieser Generation. Seine Workrate ist unglaublich und die Konstante, die er an den Tag legt bietet aktuell kein anderer Luchador an."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "The best worker in the world right now. Every match is dimes, every spot is spot on. Fenix elevates anyone he is in the ring with. I highly suggest watching his dark match with Baron Black, it may seem like hotshotting but I kid you not, the match is fucking fantastic and I love it."
Rating: 10.0
Sentiment: 0.28986394557823125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: spicyjuniormintwrote on 16.04.2021:[10.0] "Rey Fenix is to modern wrestling what Rey Mysterio was to wrestling in the 90's and early 2000's, only Rey Fenix is even more innovative, coordinated and mindboggling athletic. Maybe comparing him to one of the all time great luchadors might offend purists, but Fenix is worthy of the comparison as he's truly one of the best wrestlers in the world today. He is consistently one of if now the best match on Dynamite anytime he is booked. He can do singles wrestling, he can do tag team wrestling, he's charismatic and an incredible babyface (as anyone who's seen Lucha Underground can attest to) and he can be a very fun heel as well. Rey Fenix is great at everything. I pray that his schedule won't interfere with his booking in AEW because I see no reason why he can't be their world champion as he's more that skilled enough and he is extremely over with the crowd as well."
Rating: 10.0
Sentiment: 0.4526851851851852
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: flamagarawrote on 04.04.2021:[10.0] "The argument over who the best wrestler going today would be complex and have to consider many factors, but as far as who's the most entertaining in the ring? Rey Fenix has an easy claim to that. He does some of the most insane stuff and he makes it look easy. It's an easy decision to watch any match he's involved in."
Rating: 10.0
Sentiment: 0.28181818181818186
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: marexcelwrote on 21.03.2021:[7.0] "Seine Offensive ist gut und seine Bewegungsabläufe dabei sind einzigartig und definitiv Weltklasse. Sehr smooth und elegant, wie er sich bewegt. Abseits der guten Offensive liefert er mir im Ring aber zu wenig, was mich dann nachhaltig unterhält. Auch wenn seine Innovationen stetig präsentiert werden, habe ich irgendwann das Gefühl alles schon gesehen zu haben und die Abläufe ähneln sich. Sein Selling ist quasi nicht vorhanden und darüber hinaus liefert er wenig, was im Wrestlingring noch braucht. Als Spektakel funktioniert er gut, im Team mit Penta passt das, aber unter dem Strich hat er doch viel Luft nach oben, um sich wirklich für das oberste Regal zu empfehlen."
Rating: 7.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: notme17wrote on 19.03.2021:[10.0] "Rey Fenix is the best high flyer in the world today. That? s even more impressive when you consider everyone does flippy shit, and he stands out as the best. AEW better realize they have something special with Fenix."
Rating: 10.0
Sentiment: 0.5396428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Scratchwrote on 09.03.2021:[9.0] "Rey Fenix is without a doubt one of the best flyers of his generation, and an incredible and innovative worker. Whether in solo or in tag-team, he will have the best match on the card on most days. The only thing stopping me from rating him a 10 is that he can sometimes be inconsistent. He has his bad days, and on bad days his flaws becomes glaring, whether because of the precision required by the style he is working, or because of the exhaustion due to his gruesome schedule."
Rating: 9.0
Sentiment: 0.13750000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Residentwrote on 06.03.2021:[10.0] "Probably the best high-flyer in wrestling today. Rey Fenix is an amazing wrestler. From seeing him in Lucha Underground to AEW, he just keeps getting better and better. Capable of doing moves no one else can do, the way he moves on the ropes is amazing. In one of the best tsg teams wirh Pentagon as well."
Rating: 10.0
Sentiment: 0.6285714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: TENzuwrote on 22.02.2021:[10.0] "A common thing people say when talking about Rey Fenix is "I've never seen that before. " He truly is an incredible performer. When you think you've seen everything in wrestling, Fenix will dazzle you with something you never even thought of. A standout performer."
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Matidut09wrote on 12.02.2021:[10.0] "I love his collaboration with the Pentagon. He is a great flyer and a fanatic lucha. I love his fighting style, Animo"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Brett1980wrote on 15.01.2021:[8.0] "Generally very good. Sometimes his balance is incredible but when hes having a bad night it shows and he messes up spot after spot. He does tend to have more good nights than bad nights though."
Rating: 8.0
Sentiment: 0.2683333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: nWo-Joshi-Guywrote on 10.01.2021:[10.0] "I could go on forever but I'll keep it short and sweet as surely there exists nobody who cannot see how good Fenix is. He is simply one the best performers ever. He is great as a face or a heel and never needs to say a word in English to remain incredibly over. While sporting a somewhat generic Luchador look he usually looks awesome too."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: michmoose21wrote on 09.12.2020:[10.0] "I know he may not be the best talker or seller, but Fenix may be my favorite wrestler to watch, ever. Every match of his I see something insane that I haven't seen before. He and Penta are two of my favorite wrestlers on the planet."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: JBoogieRom28wrote on 22.10.2020:[10.0] "I was amazed by Rey Fenix in his Match With His Brother Penta El Zero M on the 10/27/20's episode of AEW and they were in one of the best matches I have ever seen them in even when they were in Lucha Underground. I was so amazed by that match and how well they match each other. Rey Fenix is just the best Luchador in America in general and I just love his matches."
Rating: 10.0
Sentiment: 0.485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: chrisbbbbbwrote on 15.10.2020:[10.0] "Fenix is the best luchador in professional wrestling. Between 2015 and 2019, he established dominance in both Mexico and on the American independent circuit. He was a regular for major indie companies, such as PWG and AAW. At the same time, Fenix helped define up-and-coming promotions, such as DEFY. Fenix reached success as a member of The Lucha Brothers, alongside his brother, Pentagon Jr. They quickly rose to be one of the best tag teams in the world. Most notably, they are the current AAA World Tag Team Champions, as well as former PWG World Tag Team Champions. In singles competition, Fenix has won the Lucha Underground Championship and the AAW Heavyweight Championship, among others. A major part of Fenix's style is his tremendous high-flying abilities. He is a master of the ropes, using them to perform some breath-taking dives. With Fenix facing his brother in the first round of the AEW World Championship number one contender tournament, it will be interesting to see what's next."
Rating: 10.0
Sentiment: 0.21775362318840577
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Ratewrestlewrote on 12.07.2020:[9.0] "Fenix is a very special talent who gets better every time i see him performer. From singles matches to Tag matches with the Lucha Bros, Fenix always delivers."
Rating: 9.0
Sentiment: 0.48214285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: BDDwrote on 04.04.2020:[10.0] "Fenix is probably the best luchador nowadays, he is incredible in both Tag Team Matches and Singles Matchs, besides being a very consistent wrestler, he can also do a lot of incredible moments, as he is very agile, but unfortunately he is not it has the Pentagon charisma, and it imbues it to shine brighter."
Rating: 10.0
Sentiment: 0.6708333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Manking1wrote on 21.11.2019:[10.0] "Ein absoluter Wahnsinn was er im Ring zeigen kann (und regelmäßig tut). Für mich ohne Zweifel der beste Highflyer und Luchador den es derzeit gibt. Ihm könnte eine granz große Karriere bevorstehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: JuliTheCage87wrote on 24.10.2019:[10.0] "Es schmerzt zu sehen, dass ein Fenix besser bewertet wird als ein Neville. Ich weiß, so sollte man da nicht rangehen, aber das kann ich trotzdem nicht auf mir sitzen lassen. Alleine in der WWE-CW-Division gibt es mindestens fünf bessere und ausschließlich charismatischere Akteure. Guter Athlet, keine Frage, aber der Rest dann eher in Richtung AR Fox. Update: So können sich die Dinge ändern. Einer der besten Highflyer der Welt und meilenweit besser als sein überbewerteter Bruder."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Quantum99wrote on 18.10.2019:[10.0] "Er ist einer der besten Highflyer der Welt, wenn nicht der beste. Gutes Charisma, Mega im Ring und die besten Spots. Er ist gut als Single- und Tagteam Worker."
Rating: 10.0
Sentiment: -0.07142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: KyleEnjoysWrestlingwrote on 28.07.2019:[9.0] "Hands down, the most spectacular high flier in the game today. Never ceases to amaze in the ring. A great character solo & a great tag guy with the Lucha Bros."
Rating: 9.0
Sentiment: 0.32920634920634917
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: King of Strong Stylewrote on 17.07.2019:[10.0] "Der aktuell beste Highflyer der Welt der aber mehr kann als nur flippen, sein Selling ist stark, er hat viel Charisma und sein Gimmick passt zu ihm, noch dazu ist er ein sehr sympathischer und netter Typ."
Rating: 10.0
Sentiment: 0.11666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: ParisTheSpiderwrote on 14.07.2019:[7.0] "Fenix ist ein toller Luchador mit super Charisma. Im Ring ist Fenix sehr gut, er hat gutes Selling und teilweise geile Spots. Sein Match gegen Mil Muertes ist zudem eines der besten Wrestling Match. IM Ring liefert er ab. Von mir 7 von 10 Punkten."
Rating: 7.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: zephyrwrote on 19.03.2019:[9.0] "One of my favourite luchadors right now. Great speed and wrestling ability, very likeable, natural babyface."
Rating: 9.0
Sentiment: 0.3464285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Sebastian Vwrote on 16.03.2019:[9.0] "I'm Ring ist Fenix absolut begnadet. Einer der besten High Flyer die es im Moment gibt. Unglaublich flüssig und sauber in seinen Bewegungen und zudem nicht sporty sondern auch ein begabter Storyteller mit In-Ring Psychologie und Characterwork. Im Ring sind das für mich daher 10 Punkte. Ausstrahlung und Charisma sind auch absolut da. Er kann eine Halle mitreißen. Das Charisma ist vielleicht nicht auf dem Niveau der aller aller besten aber dennoch auf sehr hohem Niveau daher hier 9 Punkte. Das Micwork ist seine "Schwäche" obwohl das sehr relativ ist. Er kann frei reden und promos halten, bei denen vielleicht die letzte Intensität und Raffinesse fehlt aber dennoch bringt er es glaubhaft rüber deswegen da 7 Punkte. Alles in Allem 9 Punkte für einen sehr guten Wrestler."
Rating: 9.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: TKTrueWrestlingFanwrote on 10.11.2018:[10.0] "After watching Omega v Fenix, I really cannot doubt this man's potential. I really wish to see him new Japan so that he can give more lengthy spectacular matches like that one. He can do almost any flexible move and I think that if Rey mysterio defined high flying style, then he redefined it. Fenix can do traditional + lucha libre style which was clear from his match with omega. If you haven't checked out his match with omega, check it out! It is damn good and for me it was the best singles match of fenix I have ever seen. At last, I would like to say that this man should be given chances to main event in many promotions ."
Rating: 10.0
Sentiment: 0.3062878787878787
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Redywrote on 30.10.2018:[9.0] "He is great, my favourite mexican wrestler. His moves aerials and athletics, his perfect overselling... He is awesome. And yes, i'm agree with the unpopular opinion: Fenix > Penta (and i like Penta a lot). I wish the best for Fénix, he deserve it!"
Rating: 9.0
Sentiment: 0.76
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Oliver95xwrote on 04.10.2018:[9.0] "Fenix ist im Ring der Wahnsinn. Er macht sehr viel Spaß, auch wenn manchmal der ein oder andere Move gebotched wird. Am Charisma könnte er noch arbeiten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: InactiveGuruwrote on 11.05.2018:[9.0] "Almost a perfect rating from me, that is hard to do. This guy is straight out impressive. If you watched Lucha Underground you certainly know what a good in ring performer and character he can be. Since then he got a lot more notoriety and has been used more often all around the world."
Rating: 9.0
Sentiment: 0.477827380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Wrestling Foreverwrote on 10.04.2018:[9.0] "Klasse Mann. Sympathisch, toller High Flyer kann ich mir nicht als Heel vorstellen. Inzwischen auch sehr im Indy begehrt. Hat sich durch Lucha bemerkbar gemacht. Auch in AAA einer der Top Wrestler. Ich kann nichts schlechtes zu Fenix posten. Ist auch noch sehr jung man wird noch sehr viel von Fenix in der Zukunft sehen. Edit 10. 04. 2018 Punkte bleiben gleich ansonst fast überall sieht man ihn mit und gegen seinen Bruder Penta. Einfach unfassbar was er drauf hat."
Rating: 9.0
Sentiment: 0.2866666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Dragon Fighterwrote on 18.11.2017:[9.0] "Very underrated and underappreciated. One of the best high flyers in the world right now. Great in ring work, can do some crazy flippy shit, omg moments. He also plays great babyface role as well. Definitely my favorite luchador to watch and enjoy."
Rating: 9.0
Sentiment: 0.3345714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Luv all wrestlingwrote on 29.09.2017:[10.0] "Fenix has a good look, plays the underdog well, and has great high flying moves and matches. He is a good asset to any company and as Rey Mysterio Jr himself said he can be the next Rey Mysterio."
Rating: 10.0
Sentiment: 0.472
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: My Bloody Doobwrote on 20.09.2017:[9.0] "Not as charismatic nor can he cut as good of a promo as his brother, but he makes up for that by being a better wrestler. He has this unique aura to him that makes his flippy shit stand out from the rest. He works great as an underdog, but I really think he can go beyond that."
Rating: 9.0
Sentiment: 0.259375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: TooSweetPhilwrote on 10.06.2017:[9.0] "Zwar auch außerhalb ein sehr guter Wrestler, ist Fenix hauptsächlich durch LU bekannt geworden und ist dort auch einer der höchst-bearbeiteten Charaktere. Sein Gimmick passt perfekt zu ihm und er verkauft in seinen Matches immer eine fantastische Underdog Story mit super Selling. Auch im Ring gehört Fenix zu den Top Lucha Libre Wrestlern der Zeit, von mir gibt's 9 mit Tendenz nach oben!"
Rating: 9.0
Sentiment: 0.47916666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Matt4Wrestlingwrote on 15.05.2017:[9.0] "Sehr solider bis ausgezeichneter High-Flyer! Erinnert nur leider etwas zu sehr an Rey Misterio, schafft es leider mittlerweile von diesem abzusondern. Kann noch sehr weit kommen!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Hypocrisywrote on 16.04.2017:[8.0] "Finde es toll, wie Fenix bei Lucha Underground eingesetzt wird und ja: Meines Erachtens hat er sich diese prominente Position tatsächlich schon verdient. Die Matches gegen Mil Muertes allgemein und das Grave Match im Besonderen waren schon sehr stark."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: NastyYaffawrote on 21.09.2016:[8.0] "Ever since Lucha Underground started, Fenix has been the most impressive in ring worker out of the whole roster there. He's a wonderful babyface wrestler; knows how to sell & he of course has some cool flips as well."
Rating: 8.0
Sentiment: 0.6100000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Viper99wrote on 10.07.2016:[9.0] "Ein großartiger und sehr Unterbewerteter High Flyer. Er ist unglaublich beweglich, agil und hat eine beeindruckende Körperbeherrschung. Leider sieht man nicht viele herausragende Technische Matches, aber die Rolle des Flippigen Publikumsliebling verkörpert er bei Lucha underground sehr gut."
Rating: 9.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Penkerwrote on 10.06.2016:[9.0] "Fenix begeistert mich eigentlich immer. Gehört neben Prince Puma und seinem Bruder Pentagon Jr. zu meiner persönlichen Top 3 bei Lucha Underground."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: The Sick Lebowskiwrote on 01.05.2016:[9.0] "Sehr starker Kerl. Gehört bei Lucha Underground definitiv mit zu den absoluten Top-Stars. Seine Matches gegen Muertes waren richtig gut, dass Grave Consequences Match sogar absoluter Wahnsinn. Ganz starke neun Punkte."
Rating: 9.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Mizzle Assault Antwrote on 22.08.2015:[10.0] "One of the best fliers working in the world today, Fenix can do things that will make your jaw drop to the floor. Discovered this awesome guy in Lucha Underground but he is great wherever he goes."
Rating: 10.0
Sentiment: 0.9333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: DanTalksRasslinwrote on 01.06.2015:[8.0] "With his mix of classic lucha aerial offense and Japanese strong style-influenced strikes, Fenix has an interesting twist on the classic lucha formula and is one of the young practitioners of the style to watch develop.  North of the border, he has already been involved in some of Lucha Underground's defining moments, including the "Grave Consequences" match against Mil Muertes."
Rating: 8.0
Sentiment: 0.22777777777777783
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: NewBreedwrote on 29.01.2015:[9.0] "Talentierter und junger Highflyer, der manchmal sogar zu viel Risiko geht. Ich hoffe er bleibt von Verletzungen verschont. Technisch manchmal noch ein klein wenig unsauber, aber Anlagen zu einem großen Star. 9, 0"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: Mandzukic9wrote on 14.12.2014:[5.0] "Als Flieger natürlich sehr sehenswert. Allerdings halte ich nicht viel von diesen reinen Spotwrestlern.  Vorallem wenn die Hälfte verbotcht wird. Er kämpft teilweise sehr unsicher und tut sich zwischendurch richtig weh. Die Statur hat er auch nicht. Es gibt deutlich bessere Lucha Libres"
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: HHH Pedigreewrote on 15.11.2014:[7.0] "Fine wrestler. Fenix uses the Mexican Style: aerial moves, 10. Psycology, 0. I saw him in Lucha Underdroung and he is a very athletic young wrestler, but he uses move after move after move without sense."
Rating: 7.0
Sentiment: 0.17916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: robrosellwrote on 06.06.2014:[8.0] "A very talented guy, knows how to fly and fight, loves the strong style and is the new idol of AAA, the future of AAA is him."
Rating: 8.0
Sentiment: 0.455939393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10343&gimmick=Rey+Fenix++
Comment: LS Incwrote on 16.01.2014:[9.0] "A great high flyer. Probably the best in AAA together with Aero Star."
Rating: 9.0
Sentiment: 0.6533333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: EasyLinkwrote on 24.11.2024:"One of the greatest wrestlers of his generation, but unfortunately was too underrated in the WWF and WCW. This and his difficult fate became one of the reasons for his drug addiction, which cost him his life"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Nolan Greenwrote on 15.11.2024:[10.0] "He was Mr. Perfect for a reason. A master class athlete that could get a classic out of anyone. He was crisp and could play a cowardly heel perfectly. His pairing with Bobby Heenan didn't need to happen, but they were perfect together. He should have been WWE champion and probably would have been if he wasn't in the Hulk Hogan era. Even when he had bad matches in WCW and a depressing final match in TNA, he has enough great matches to counter that. What else can I say other than he's perfect."
Rating: 10.0
Sentiment: 0.31597222222222227
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Zak22wrote on 23.09.2024:[8.0] "Very talented worker who unfortunately never really had a true peak due to injuries. Curt's series vs Nick Bockwinkel is really the last highlight of the dying AWA, and Curt had a good run with the IC title capped by a great match with Bret Hart. Anything post early 90s isn't great."
Rating: 8.0
Sentiment: 0.3635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: benny5bellyswrote on 16.08.2024:[8.0] "One of the most beloved gimmicks of all time and yet at its heart it was incredibly simple. He had a hell of a run from AWA through to the WWE but he doesn't have a huge resume of must see matches but few will in that era of WWF. His Bockwinkel matches are as close to must watch as you can get in that era. It is a shame injuries robbed him of so much so we never got to see what it could do as a grumpy veteran but you suspect not much as wrestling in that era had changed so much."
Rating: 8.0
Sentiment: 0.18888888888888886
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Johanwrote on 03.07.2024:[10.0] "Amazing on the microphone as he sounded genuine and real, his wrestling skills are always in high regard as he was a all time great storyteller, psychologist and a very skilled seller with a fun but weak moveset, master of mat wrestling and chain wrestling. from 1984-1993 he was one of the best workers in the world."
Rating: 10.0
Sentiment: 0.415
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ALFwrote on 24.06.2024:[10.0] "Ich denke, in den späten 80ern bis in die frühen 90er das Paradebeispiel wie die Superstars damals aufgebaut waren: Cooler Finishing Move (Perfect Plex), prägnante Einzugsmusik, technisch versiert (wenn auch selten). Hatte das Zeug zum World Champion. Es wird mir ewig ein Rätsel bleiben, warum das nicht geklappt hat, genauso wenig wie warum man nicht z. B. Max Moon Ted DiBiase als Manager zur Seite gestellt hat? Das klingt zunächst sehr abwegig - aber nur auf den ersten Blick - denn hey, wenn der Million Dollar man "ALLES KAUFEN KANN" warum dann nicht auch einen Mondflug inklusive des "Comet Kid"? Da hätte man viele Geschichten darauf aufbauen können und vielleicht wäre dann vergeesen worden, dass der Designer der sich allerdings für das Outfit von Max Moon verantwortlich zeigt, in die Farbenschule gehört."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: BadaBing2700wrote on 16.06.2024:"Hennigs Perfektionismus war legendär, sein Sportsgeist unbändig. Er inspirierte Generationen von Wrestlern und bleibt eine Ikone des Sports. Seine Matches waren stets fesselnd, seine Ringauftritte unvergesslich. Ich habe ihn geliebt, schade das er so früh von uns gegangen ist. RIP Curt"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: andytuga86wrote on 10.05.2024:[7.0] "Gifted technical wrestler and a great worker, he had class and some kind of charisma as a heel mostly because of his cocky gimmick "Mr. Perfect". He often had a very intense ring presence. Still, I always found him slightly overrated. When he left WWF his career slowed down a lot."
Rating: 7.0
Sentiment: 0.28525252525252526
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: crs285wrote on 06.05.2024:[9.0] "Perfect was nearly perfect in the ring and on the mic. In the ring he was smooth and precise even with opponents who were unable to get good matches with other opponents. He was best as a heel on the mic as his charisma made him easy to hate. His last WWE run and after were not good but that wasn't on him as much as it was on booking, injuries and father time."
Rating: 9.0
Sentiment: 0.25833333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Rassle Fanwrote on 01.05.2024:[10.0] "There's gimmicks that a wrestler was born for and Curt Hennig as Mr. Perfect is one of them. He really was perfect as a wrestler. He was athletic, crisp, good on the mic and even better when Heenan was with him. A shame he never won a major world title but he was so good he really didn't need one."
Rating: 10.0
Sentiment: 0.5125000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "Curt Hennig is one of the all time greatest professional wrestlers to ever grace the mat, it's a crime that this man never got a chance at the World Championship in the WWF, one of the all time best to never have won it. In AWA, he was an amazing talent who had classics with Nick Bockwinkel, showcasing his technical prowess in the ring and even winning the belt down the line in his time in AWA, he even was in a tag team with Scott Hall and became tag champions, the more you know. Safe to say his AWA run was met with success, but he gained more prominence by joining the WWF under the Mr. Perfect gimmick, and he literally lived up to the name. Not just for being an amazing performer in the ring, but because all the things he bragged about in his vignettes and whenever he would throw his towel onto someone's shoulder or behind him and have Bobby "The Brain" Heenan catch it and spitting out his gum to swat at it and never miss, Brock Lesnar put it as "he always had a horse shoe up his ass, " Shawn Michaels claimed he had an uncanny ability, and he sure did. This gimmick literally couldn't have been given to anyone else but Curt Hennig, he played it... Well, perfectly. Unfortunately, he never became WWF Champion thanks to him coming up during the Hulk Hogan era, and the same issue in WCW, where he was pretty much bound to be another guy on the roster, but he did have an entertaining country band gimmick with their funny hatred for rap music. Overall, "Mr. Perfect" Curt Hennig is one of the all time greatest professional wrestlers who was the total package when it came to being a wrestler: great in the ring, on the mic, charismatic and characater work. Kevin Nash said it best when he asserted that Heenan and Hennig were a duo similar to Lennon and McCartney, saying they didn't need eachother but worked so well with eachother. R.I.P. Curt Hennig"
Rating: 10.0
Sentiment: 0.40627240143369175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Excellence of Executionwrote on 05.10.2023:[10.0] "Da kommt nur die 1 in Frage. Mr. Perfect war technisch einfach absolute Weltklasse und hatte seinen eigenen agilen und intensiven Wrestlingstil, so dass es eine Augenweide war im zusehen zu dürfen. Bei alldem war er auch noch absolut charismatisch und hat seine Rolle als Mr. Perfect wunderbar ausgefüllt. Ein Jammer wie er dann in der WCW völlig unter Wert verkauft wurde und später bei seinem WWE Comeback vollends in irgendwelchen 6 Minuten Matches verramscht wurde. Für mich einer der wohl talentiertesten Wrestler aller Zeiten, wenn es um Gespür für körperliches Timing geht. Selbst sein Overselling war einfach auf den Punkt!"
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: DangoDaisukiwrote on 12.09.2023:[6.0] "Anscheinend ist Mr. Perfect so beliebt, das wusste ich gar nicht. Ich fand ihn schon immer solide, aber auch nicht so einen guten Wrestler was man eigentlich auch in seinem Matchguide sehen kann. Ich weiß auch nicht einmal was ich viel zu ihm sagen soll, da er für mich immer etwas irrelevant war, ist aber definitiv okay."
Rating: 6.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Curt88wrote on 30.07.2023:[9.0] "To put it simply, one of the very best to ever lace up a pair of boots. Great ability and a fantastic worker. I didn't like him growing up, but I think that's a argument for just how well his character work was. Now I can really appreciate how truly great he was"
Rating: 9.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Giantfan1980wrote on 07.06.2023:[8.0] "On the same level as Bret Hart and he probably wins the tie breaker by way of having better promo skills. Hennig's crazy bumping style did him in and after 1991, it was a steady decline of injuries, and drugs that led to his untimely demise. The only reason I hold him at an 8 is those lousy injuries really hampered his career and his tenures got flaky post 1991 when he was hopping company to company."
Rating: 8.0
Sentiment: 0.008333333333333338
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Cyclopz007wrote on 31.03.2023:[10.0] "Top 5 favourite wrestlers all time. Perfect 10. Discovered him and WCW love finding all his old stuff. Incredible talent."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: TheNorthEastwrote on 27.01.2023:[8.0] "I think it goes without saying that Mr Perfect was one of the greatest characters of all time. The way he was able to elicit heat and make himself appear as a legitimate threat against monsters such as Hulk Hogan is outstanding. I wish I could give Kurt at 10, however despite having the perfect 80s promo that style did not translate well into the grungy 90s and his work in WCW at times was just sad. He did find his groove with the West TX rednecks and it is a real shame that was cut short. Curt seemed to be finally finding a new grove when appeared in those early days on TNA/IMPACT but was sadly taken from us before we could see him rise again. I must also add I have seen little of his time in AWA and that may give me a different perspective."
Rating: 8.0
Sentiment: 0.2165909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: MainEventMasterwrote on 29.11.2022:[10.0] "Incredible in the AWA, put in a good effort while in the WWF, but fell off by the time he cane to WCW, but in his prime, he was incredible, better in his Curt Hennig AWA persona than the Mr. Perfect gimmick."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Wrestling Foreverwrote on 16.08.2022:[9.0] "Was diese Sport Vignetten angeht die hat er nicht wirklich alle beim ersten Mal geschafft. Ich habe Outtakes gesehen wo er es nicht schaffte aber diesen einen Wurf mit dem Football ich weiß nicht wie er das schaffte aber das war perfekt und er konnte echt alle Sportarten die man so sah. Privat wie man hörte war Curt ein unfassbar witziger Mensch. Wie er den Kaugummi immer wegschlug das konnte nur er und er konnte wunderbar talken. Man könnte über ihn sehr viel noch schreiben. Aber ich belasse es nun. Eine absolute Wrestling Legende leider ist er viel zu früh verstorben."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Tomas Cunhawrote on 10.05.2022:[10.0] "This man was so, so entertaining to watch. From the moment his amazing vignettes aired prior to the debut of 'Mr. Perfect', to his ability inside the ring as well as to cut promos, and how he could elevate anyone around him, he was great. Unquestionably one of the greatest wrestlers of his generation, if not of all time. His work pre-WWF, his initial "perfect record" undefeated run in the WWF, the work as Intercontinental Champion, the partnership with Flair & Heenan during the back injury... his career is so complete and he was engaging in every role. Amazing talent."
Rating: 10.0
Sentiment: 0.46923076923076923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Mikeymikeddd1wrote on 13.04.2022:[8.0] "He had a good run in WWF in the late 80's and early 90's. Also did well in the AWA when the talent over there started to get thin. His family name opened some doors for him. Didn't do that well later in his career. Maybe people on this site rate him a little too high. Injuries also hurt him and it seems like he didn't accomplish as much as he could've."
Rating: 8.0
Sentiment: 0.034062499999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Conquistador37wrote on 14.03.2022:[10.0] "My basic criteria for rating a wrestler is "how watchable are they? " it ranges from "immediate and instant fast forward (zero) to "even if it's a 45 second squash match, I'm going to watch the entire thing with vested interest, and maybe even twice in a row". Mr. Perfect fits into a "10" with relative ease. I want to see everything he does against anyone. It doesn't matter if there is a story or if the match is so-so, if it's Curt Hennig- I'm glued. Even deep into his career and even deep into WCW sucking ass, I wasn't going to deny Curt any attention*. I'm certainly a Mr. Perfect mark through and though. (* ah except of course the moment he turned against The Horsemen and joined the nWo, he was just as much a victim as any other nWo member then - fast forwarding with contempt, but I won't dock points for that)"
Rating: 10.0
Sentiment: 0.17244897959183672
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: rishabhwrote on 15.02.2022:[10.0] "If there was anybody who was born to play the "Mr. Perfect" persona, it was Curt Hennig. He was literally perfect in all departments of wrestling. His great technical ability and his ability to bump around and make his opponent look good make him one of the greatest in-ring performers of all time. Add to that, he had loads of charisma and mic skills and the way he carried himself around, he looked like an absolute star. He could do any role he was given even as a manager or a commentator. He's definitely one of the best wrestlers ever to be part of WWE who never won the World Championship."
Rating: 10.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: GriffinXwrote on 30.01.2022:[10.0] "Henning truly was as close to perfect as you got could get in the ring. He was so smooth and such a great seller to make who ever he was facing looking strong. Even after his back started to give him problems he put on great matches."
Rating: 10.0
Sentiment: 0.4904761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: TigerDiverwrote on 07.01.2022:[9.0] "Best known for his awesome 'Mr. Perfect' persona in the WWF Golden Era, which is still legit one of my all-time favorite characters in wrestling. With that said, he does have his fair share of classic works over in the territories as well before stepping foot in said promotion, most notably in Verne Gagne's AWA, where he was able to put on some of the greatest mat-classics of the decade. His technical skill is up there with the very best of them, and his ability to bump all over the ring like a madman will never not get appreciated. Had loads of mic skills while also bringing a vast amount of charisma to the table, and not to mention he can even do excellent jobs portraying a manager, or even a commentator! Unfortunately, his later work in the 2000s slightly tarnished his legacy overall, which would lead to his untimely death not so long after."
Rating: 9.0
Sentiment: 0.41190476190476194
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Ma Stump Pullerwrote on 06.11.2021:[8.0] "If the majority of his career was the quality of him in the AWA, I'd put him easily as a top top guy. Sadly, his WWF run is kinda overrated (outside of maybe a dozen great matches and a lot of eh ones and whatnot) him in WCW (which was almost all unmotivated crap outside of the Rednecks stuff and some good showings here and there) and him everywhere else, which is even worse than all of that, lol. In the ring, guy was fantastically consistent, a complete joy to watch, was intently focused on ring psychology and knew what and when to turn up the heat or cool things off, and was basically a universal teacher for many wrestlers after him. He wasn't the best at promos: I felt like sometimes he was a bit stilted and didn't quite know what he was talking about, or believed in it very much. Other than that, very solid and a great babyface or heel, torchpasser or cartoonish villain, guy could do it all and then some."
Rating: 8.0
Sentiment: 0.26375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: IBladeDailywrote on 21.10.2021:[9.0] "One of the best of his era. Hennig's matches, persona, and talking ability kept him relevant any time he was near a ring. His matches with Bret Hart are all-time classics. I have only seen a bit of his AWA work (thanks WWE) but feel his absolute peak was as Mr. Perfect in WWF. He is one of my favorite IC champs of all-time and had underrated matches with Shawn Michaels as well. His promos and character work were always top notch and he hit a new level when Bobby Heenan became his manager. A very underrated manager and color commentator as well."
Rating: 9.0
Sentiment: 0.38512396694214873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: No Onewrote on 12.09.2021:[10.0] "One of the greatest in-ring performers of all time. One of the best Ring Generals of all time. The greatest "Over the top" seller & bumper of all time. One of the smoothest in-ring performers ever. Memorable rivalry with the legendary Nick Bockwinkel. Former AWA World Heavyweight Champion. Was one of the best in-ring performers in the world during the early 19990's. One of the greatest & most memorable WWE Intercontinental Champions of all time. Produced memorable matches against the legendary Bret "The Hitman" Hart. Back injury turned him into a more limited performer, but he was still a smooth performer regardless. One of the greatest Midcard wrestlers of all time. Had great charisma. Great promo. Had the presence of a star. His "Mr. Perfect" gimmick is one of the most memorable gimmicks in pro wrestling history. His father Larry "The Axe" Hennig was also a legendary wrestler. His son, Curtis Axel, followed in the Hennig family footsteps and became a 3rd Generation wrestler. Never hit his full potential in the WWE because of injury & politics. Unfortunately was horribly misused in WCW, even though his "West Texas Rednecks" gimmick is memorable. Passed away way too soon. RIP to the legendary "Mr. Perfect" Curt Hennig."
Rating: 10.0
Sentiment: 0.5266233766233768
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Pete Gallowswrote on 05.09.2021:[10.0] "A great wrestler. Athletic, good look, great mic skills, good moveset. Tendency to oversell, but a tremendous worker. It? s a real shame he had his issues and left us so young."
Rating: 10.0
Sentiment: 0.4541666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: thebigmilkmanwrote on 28.06.2021:[4.0] "Very Overrated in my opinion. He's not the worst but I'd say I think his stuff is pretty bad. Maybe that comes down to personal preference as his style is not my preferred style of wrestling but even then I tried to give his matches with Bret a chance and I just did not enjoy it at all. His WCW run was pretty bad too"
Rating: 4.0
Sentiment: -0.22839506172839505
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Daigotsuwrote on 19.06.2021:[9.0] "Hennig was a terrific wrestler, and could sell as well as anybody. He was a terrific worker and talker. By the time he got to WCW, he was just kind of there. His work was still good, but they obviously didn't have plans for him and he didn't have an opportunity to have classic matches. With that said, he was undeniably a fantastic talent."
Rating: 9.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Nick Owrote on 15.06.2021:[10.0] "Mr Perfect was amazing. He was a great wrestler and could put on classic after classic. This man could also sell like crazy. I loved his Intercontinental Championship reigns and thought he was an amazing heel who could work the crowd. Some of my favorite matches if his are those with Bret Hart. Those 2 had unbelievable in ring chemistry. I think it's a shame Curt was never World Champion. R. I. P Curt Hennig Legend."
Rating: 10.0
Sentiment: 0.3683333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Lil akwrote on 04.05.2021:[10.0] "Als Mr. perfect einfach Perfect. Gimmick des Narzissten Perfekt dargestellt und der Finisher war auch mega. Er war auch gut im Ring und hat sehr technisch gewrestlet. Die Promos die ich gehört hab waren auch gut und Die Matches auch. Hätte eigentlich statt Hulk hogan dass Royal rumble 1991 gewinnen sollen und dann im Main Event die Wwf championsship gewinnen sollen. Einer meiner Lieblingswrestler."
Rating: 10.0
Sentiment: 0.7222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: StrongStyle2020wrote on 30.04.2021:[9.0] "One of the most well rounded performers of all time. Great on the mic, tremendous personality, and top quality athletic worker. His matches with Bret Hart showcased both guy's excellence of execution, and were almost flawless. In another era, would have been a multi time world champion."
Rating: 9.0
Sentiment: 0.6266666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: AnBwrote on 27.04.2021:[9.0] "Mr. Perfect was damn near perfect. More of a classic wrestling style guy, and was hit hard when the industry modernized. Completely wasted in WCW."
Rating: 9.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Brett1980wrote on 25.01.2021:[8.0] "AWA stuff was great and as Mr. Perfect was tremendous. Great at taking bumps. Extremely arrogant persona that was well, Perfect. His WCW stuff is not Perfect however."
Rating: 8.0
Sentiment: 0.47261904761904766
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: JEK 1991wrote on 10.08.2019:[10.0] "A great wrestler and very well gifted. He was always exciting to watch. Great at his heel role. If I grew up watching him he would have been my favorite. When he was a babyface in the WWF in 1993 he was not as good. Very technical Sadly that he passed away so soon."
Rating: 10.0
Sentiment: 0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[9.0] "He's a guy like Rick Rude who I don't think we got enough out of. He was amazing in the ring & played the Mr. Perfect character to a tee. A great heel who was easy to root against."
Rating: 9.0
Sentiment: 0.4222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: BigWackenhutwrote on 21.03.2019:[10.0] "For being ? Perfect? Curt Hennig was of modest size. But he could bump like no one else and had the stamina to always leave the fans satisfied. After laboring against the randy old rooster Nick Bockwinkel in the AWA, , he surged into the national scene with his amazing Mr. Perfect gimmick. His package was enhanced when he was given a flamboyant, slender but massively endowed male companion to lead him to ring. Side note- Lanny Poffos outfit was pretty much a stitch for stitch remake of Angelo Poffos graduate mortar board and gown set.  Mr Perfect had a long prime but was never given the big prize in WCW and WWe. He was on the shelf for a while in the early 90s with a Lloyd? s of London policy spat. But he returned to high modcard status during a lengthy run with the NWO. Hennig will be best remembered for his Bockwinkel battles, initial heal run as Mr Perfect and sadly his career ending throwdown on a chartered flight. But any match he is in is worth watching. His battles with Bret Hart are top notch.  If there is a critique, it is that he flip flopped too much. But in the cartoonish wrestling landscape of the time, he always made his opponents look amazing. It is a shame that he did not get a run on top with Bret Hart chasing him.  A third generation wrestler, it would seem that a small, pink head is all that he shares with his boy Curtis Axel."
Rating: 10.0
Sentiment: 0.3040740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: zephyrwrote on 20.03.2019:[8.0] "Another one of those wrestlers who were great in the ring but lacked the mic skills to become huge stars. Personally never really liked the Mr Perfect gimmick tbh."
Rating: 8.0
Sentiment: 0.475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Makai Clubwrote on 14.02.2019:[7.0] "If you ask me to base Curt Hennig off his AWA run, I would praise it to the hills and give him an 9 or maybe even a 10 because he really was fantastic. He could play the lovable face you wanted to root for or the detestable heel that you wanted to see his ass kicked. He could grapple with the best of them and was an overall great wrestler. In WWF though, meh. Honestly don't see why this run is praised so much. His wrestling can be hit and miss, he doesn't have a lot of great matches. Tons of good but never to the point where I feel the hype is justified. His bumping is beyond laughable. How any one considered him the measuring stick, I'll never know. His character whilst memorable, kinda one dimensional at the same time. I think he is pretty overrated overall. Still a good wrestler and has tons of great matches in AWA."
Rating: 7.0
Sentiment: 0.3447368421052632
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Steamboat2511wrote on 02.10.2018:[8.0] "Mister Perfect ist ganz sicher einer der besten Techniker der Geschichte. Bekannt für eine unglaublich akurate Matchführung. Charismatisch und am Mic konnte er mich jedoch nicht ganz so überzeugen. Legendäres bleibt dem Fan auch eher rar gesät im Kopf, wenn man von wenigen Matches gegen Bret Hart absieht. Als Top Player oder Top Champion konnte er sich letztlich nicht auszeichnen. Als Wrestler super, als Gesamtpaket Mittelmaß."
Rating: 8.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: RatingsMachinewrote on 26.09.2018:[7.0] "Hennig was a good worker who could make opponents look great and make matches great by taking wild but somewhat realistic bumps. But once he couldn't take those outlandish bumps, Hennig's limitations were made obvious, and he couldn't compensate for not being able to bump like he used to."
Rating: 7.0
Sentiment: 0.43809523809523804
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: pappahousewrote on 19.08.2018:[9.0] "Eine leider nicht mehr lebende Legende. Pure Technik und Anfang der Neunziger seiner Zeit weit voraus. Leider auch immer wieder mit Verletzungen am Rücken zu kämpfen."
Rating: 9.0
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: TheLoudMouthwrote on 10.01.2018:[8.0] "Hennig war ein exzellenter Techniker und dadurch im Ring vielleicht sogar einer der besten Wrestler der Welt, halte ihn im Bezug auf sein Charisma allerdings für etwas überbewertet. Seine Ausstrahlung hat mich leider nie gepackt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: hirsty97wrote on 04.11.2017:[10.0] "To watch Curt Hennig wrestle, was wrestling's equivalent of watching Raphael paint. He embodied perfect in every sense of the word."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ianlapierrewrote on 04.11.2017:[6.0] "Mr. Perfect was a great in-ring worker who had some fantastic matches. He cut great promos and had many memorable moments throughout an injury-plagued career. He was never elevated to main event status. There was potential for so much more."
Rating: 6.0
Sentiment: 0.5185185185185186
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: taabr2wrote on 10.09.2017:[9.0] "Mr. Perfect has to be my favorite gimmick from the late 80s early 90s era of the WWF. Hennig himself was an amazing worker during that time and had great charisma."
Rating: 9.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: flashbackwrote on 06.06.2017:[10.0] "Mr. Perfect was literally the perfect gimmick for Curt - his work was incredible and the way he portrayed that gimmick was just money. It was as they say, the "real deal". He was also very influential, being described by The Click as their spiritual godfather. While it was kinda silly to put him in a stable called "west Texas rednecks", the program was hilarious and memorable. I think he would be working at a high level behind the scenes now if he were still alive, and helping shape the future of Pro Wrestling. The biz is definitely not the same without him."
Rating: 10.0
Sentiment: 0.24400000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Coltwrote on 05.06.2017:[10.0] "Eine Legende. Sehr charismatisch und immer überzeugend, egal ob als Heel oder Face. Seine Duelle mit Bret Hart sind Klassiker. Ein exzellenter Techniker, der aber auch die härtere Art beherrschte. Nur wenige Wrestler brachten eine solche Coolness an den Tag. Hätte auch das Zeug zum WWE Champion gehabt, doch zu seinem Pech gab es mit Hogan, Savage und dem Warrior eine extrem starke Konkurrenz weshalb es "nur" zum IC-Titel reichte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Devitciiuwrote on 17.04.2017:[7.0] "Everything I do is per.. Hennig.  I look back a lot more kindly on Hennig now that I'm older. He was great in the ring, but a lot of his promos were a little too obvious. He kind of talked down to the audience and spelled everything out for them. In the ring, he was great but on the mic perhaps he needed some work. Surprisingly, the West Texas Rednecks were the promos that I remember being the best. Also, his 2000 era relationship with Russo and the New Blood was solid."
Rating: 7.0
Sentiment: 0.3542839105339106
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Blood Pumpwrote on 08.04.2017:[9.0] "As good as his in ring work was in WWE it wasn't exactly where he shone. Oh he had some amazing matches with Bret Hart and an underrated classic with Ric Flair but most of his best work came from the AWA. Most'll point at his matches with Bockwinkel, and fair enough they're almost all pretty damn glorious but that's not all there is to his career there. Hes had great matches with Wahoo McDaniel, Jerry Lawyer and a lot of the others. Hes apparently even had a great tag run with Scott Hall but I haven't seen those matches yet. Anyways he had arguably a much more rewarding run in AWA but even without considering it he'd be a high 8."
Rating: 9.0
Sentiment: 0.46729166666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Real Raterwrote on 02.02.2017:[8.0] "Einer der Wrestler, der den Heavyweight Gürtel, hätte halten müssen.   In-Ring Skills:Einer der besten Technischen Wrestler, ende der 80er und Anfang der 90er. 8/10 (50%) Promos/Schauspieltalent:Auch hier kein schlechter. 7/10 (25%) Charisma/Erscheinung/Gimmick:Definitiv einer der Charismatischsten Wrestler Anfang der 90er. 9/10 (25%) Sind dann insgesamt 8 Punkte für The Perfect One.  = 8 Punkte"
Rating: 8.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: AriesMarkwrote on 08.01.2017:[10.0] "This guy had everything going for him. Timing, match psychology, great selling ability, great athlete overall. Too bad he got plagued by demons later on in his life, but he will still go down as one of the best pure wrestlers of his generation."
Rating: 10.0
Sentiment: 0.24484126984126986
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ApexOfEvolutionwrote on 28.12.2016:[8.0] "Technisch ein einwandfreier Wrestler, fand ihn charakterlich aber langweiliger und uncharismatischer als einen Roddy Piper oder Macho Man. Neben Bret Hart und Chris Jericho aber einer der Namen, die man am meisten mit dem Intercontinental Championship verbindet. Gegen Bret Hart hat er dann beim ersten King of the Ring-Turnier meiner Meinung nach auch eines seiner besten Matches abgeliefert.  Leider auch einer der Wrestler dieser Ära, die viel zu früh von uns gegangen sind."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: MatteoMerdokwrote on 30.10.2016:[7.0] "I've watched his matches with Bret Hart, Ric Flair and Nick Bockwinkel. When I was young he was in the nWo, but to be honest from everything I've watched from him, he seems like a very crisp worker, but not too versatile. I can't give him a higher score until I see some more matches from him."
Rating: 7.0
Sentiment: 0.355
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: SlickDevilSWPwrote on 06.10.2016:[10.0] "There's only one Mr. Perfect. I remember seeing him live in 1991 at the Nassau Coliseum against The Texas Tornado and I was one of a few cheering him. Curt Hennig was the man, plain and simple. One of the greatest Intercontinental Champions and could deliver a great match on impact. His death was sad especially seeing his return at the 2002 Royal Rumble showing he still had the goods at 44 years old. A man whose matches I still watch fondly today."
Rating: 10.0
Sentiment: 0.19291617473435654
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Luv all wrestlingwrote on 09.09.2016:[10.0] "Mr Perfect was money, should have been a main eventer in WWE, but he still has been a part of plenty of great matches and feuds, shame how his undefeated streak ended though."
Rating: 10.0
Sentiment: 0.6555555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: TheGoatwrote on 24.06.2016:[8.0] "Not Perfect, but really good.  Perfect was crisp and could bump as well as anyone.  Great technician,  good charisma and average mic skills.  Perfect may have ranked higher if not for his back injury in 91, though he was still good after he returned in late 92 he seemed to lose a step."
Rating: 8.0
Sentiment: 0.3708333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Sick Lebowskiwrote on 19.06.2016:[9.0] "Starker Wrestler, sowohl am Mikro als auch im Ring. Als IC-Champ in der WWF richtig stark, in der WCW etwas schwächer, aber immer noch ziemlich gut."
Rating: 9.0
Sentiment: -0.4571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Wrestlinglexikonwrote on 01.06.2016:[8.0] "Mr. Perfect habe ich immer gerne gesehen. Er stand seinerzeit für gutes Wrestling und ordentliche micskills. Zudem konnte er andere Leute over bringen und funktioniert als heel und als face. Wobei ich ihn als heel etwas stärker fand-war er ja auch die längere Zeit seiner Karriere. Es gab etliche unvergessene Ringschlachten mit Perfects Beteiligung und er wurde auch immer in irgendwelche Storylines eingebunden-blieb also präsent. (Ob die Stories jetzt gut oder schlecht waren sei mal dahingestellt). Auch wenn sehr viele in ihm eine World Champ gesehen haben(was ich durchaus verstehen kann), war er für mich "nur"der ideale uppercarder. 8 Punkte für den unvergessenen Mr. Perfect. :)"
Rating: 8.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Y2J316wrote on 10.05.2016:[6.0] "Nich unbedingt mein Fall. Aber mann muss festhalten das der im Ring Sau gut war undauch am mic richtig gut. Nur waren da leider die Drogen im Spiel."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: EGeraldhuebnerwrote on 07.05.2016:"Neben so vielen anderen, der Technik King schlechthin als Wrestler (I. R. S. oder andere aber ebenso). Nur schade, das diese beiden oftmals garnicht richtig zeigen durften, was sie so alles drauf haben. Dafür meißtens mit sehr schmutzigen Tricks usw. ihren jeweiligen Heel - Gimmiks "gerecht" werden mußten. War zwar privat und backstage auch real etwas divenhaft oder ein Mensch, dem seine Begabung hin und wieder zu Kopf gestiegen ist. Aber das war bei ihm (denn er konnte ja wirklich etwas) verständlich und nachvollziehbar. Siehe dazu manchmal Bret Hart, Shawn Michaels früher, HHH damals und heute usw. usf. , - sein Tod hat mich dennoch sehr betroffen gemacht. Da zeigen sich halt einmal mehr die Schattenseiten in diesem Business. Curt Hennig hätte womöglich noch viele große Erfolge vor sich gehabt, leider kam es nicht mehr dazu. ps. @ Mantafahrer ... was soll denn daran so ungewöhnlich sein, das manche Wrestler, vor allem, nach deren Tod hier positive Bewertungen oder Sympathiepunkte erhalten ? So etwas seltsam zu finden ist ungefähr so wie sich noch darüber zu wundern, das manche Kommentarschreiber von ANDEREN angemacht werden, wenn sie sich wagen, etwas negatives über DEREN Favoriten zu tippen, - Beispiel Ultimate Warrior. Oder sich darüber zu wundern, wenn Kommentarschreiber angemacht werden, weil sie es sich wagen, etwas positives über Wrestler zu tippen, die DERJENIGE einfach nicht mag, - Beispiel Chyna bzw. Joanie Laurer ... dh. WENN SIE verstehen, was ich damit meine. ^^"
Rating: No rating found
Sentiment: 0.14242424242424243
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Mantafahrerwrote on 05.05.2016:[10.0] "Eines fällt mir immer beim Bewertungsschema auf - es gibt immer wieder Vorkommnisse, in denen Wrestler in sehr kurzen Zeiträumen bis zu zwanzigmal hintereinander die selbe kommentarlose Bewertung von multiplen Usern erhalten. Bei Curt Hennig hier kann man zum Beispiel im Bewertungsverlauf erkennen, dass er am 10. April innerhalb von gut 5 Stunden neunmal kommentarlos eine 8er-Bewertung erhalten hat - äußerst ungewöhnlich. Ist mir auch beim Ultimate Warrior aufgefallen, nur in anderer Richtung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: knightrider1983wrote on 01.05.2016:[10.0] "einfach nur top der man was er für matches abgliefert hat gerade gegen bret hart . schade das er Tod ist schon. hätte ihn gerne als wwe Champion gesehen"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: WrestlingNerdwrote on 21.03.2016:[10.0] "Just Perfect! Einfach einer der besten aller Zeiten. Ebenso einer der größten der nie den ganz großen Titel in der WCW oder WWE gewonnen hat. Aber den IC Titel hat er stark gemacht, einer der besten Champs aller Zeiten.  Er hat es einfach geschafft, jeden der gegen ihn gewrestlet hat, besser aussehen zu lassen. Zudem war er am Mic ein absoluter Könner, hat sein Gimmick perfekt verkörpert und als Kommentator einfach super.  Wie sagte es Mr. Perfect Curt hennig gern : "he is absolutely perfect! ""
Rating: 10.0
Sentiment: 0.6266666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Mizzle Assault Antwrote on 25.02.2016:[10.0] "I love his bumping and his character work is to die for. If not for injuries and bad timing he could have been even more than he was. One of my all time favorite guys to go back and watch."
Rating: 10.0
Sentiment: 0.16000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Squared Circlewrote on 28.01.2016:[10.0] "He did it all.  Nice early team with Scott Hall.  Nice run as AWA champ, feuding with Lawlor.  Great run at Hogan as Mr. Perfect and of course in the NWO.  Fantastic in the ring, excellent on the mic.  Nothing he could not do and do well."
Rating: 10.0
Sentiment: 0.6428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: CmNag66wrote on 09.01.2016:[10.0] "Ein Allroundtalent. Er konnte eigentlich alles, er war ein starker Wrestler, konnte gute Promos halten und hatte jede Menge Charisma er war einfach der Perfect Wrestler, eine absolute Legende."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Armbarmaniawrote on 18.10.2015:[10.0] "Einer der wohl Besten Wrestler aller Zeiten der Leider viel zu früh von uns gegangen ist R. I. P. Mr. Perfect oder auch Curt Hennig war aber kein Wrestler der in die Geschichte eingeht weil er so viele Erfolge gefeiert hat sondern er geht in die Geschichte ein weil er ein Wrestler war der sein Gegner unglaublich Stark im Ring aussehen lassen konnte und aus jedem Wrestler das Maximum rausholen konnte. Curt Hennig hatte aber nicht nur Fähigkeiten im Ring denn er war auch unglaublich Charismatisch (etwas was man bei seinem Sohn leider vermisst). Beim Mic-Work konnte er auch bei den ganz Großen mitspielen und zu alle dem hatte er auch noch denn Look. Leider hat es nie für ein World Titel gereicht hätte ihn gerne als World Champion gesehen vielleicht hätte er den Titel genauso gut getan wie er dem Intercontinental Championship gut getan hat. Für mich klare 10 Punkte"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: WrestleArtswrote on 25.09.2015:[8.0] "Ein kompletter Worker, vom Micwork, Look, Charisma bis zum Ringwork in allen Belangen gut, ironischerweise nirgendswo sehr gut, wobei man auch sagen muss, dass die schwere Rückenverletzung Hennig ziemlich zurückwarf und limitierte, was ihn jedoch nicht daran hinderte, im Spätherbst seiner Karriere noch einmal mit den West Texas Rednecks seine Entertainer Qualitäten unter Beweis zu stellen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ShooterMcShootwrote on 13.09.2015:[10.0] "He was, if you'll forgive the pun, perfect. An amazing worker, excellent on the mic. He could do just about anything, really. Also, I will say when I was a kid, the PerfectPlex was my favorite finishing move. I was always a big fan.   Also, I thought he was very underrated as a color commentator in the early-to-mid 90s."
Rating: 10.0
Sentiment: 0.5000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: DanTalksRasslinwrote on 06.09.2015:[10.0] "One of the all-time great technical wrestlers, Hennig stood out in his early years in the AWA due to his in-ring prowess, but also possessed a tremendous amount of charisma and personality that allowed him to - forgive the pun - perfectly transition to the WWF's character-based product.  Could always be counted on to get good performances out of virtually any opponent (including even Dennis Rodman on that iGW PPV).  Timing never seemed to work out for him to reach the World Title picture in either WWF or WCW, but he was always a memorable presence no matter where he was on the card."
Rating: 10.0
Sentiment: 0.4135416666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Hardcorewrote on 03.09.2015:[9.0] "Very technical wrestler with oozing charisma and unbeliavable smoothness. Deserved a world title but never really got the push he deserved. unfortunately Mr. Perfect Curt Hennig passed away at 2003, I think could have been an awesome manager."
Rating: 9.0
Sentiment: 0.27999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Zedwrote on 14.07.2015:[9.0] "Selbst heute noch über 10 Jahre nach seinem Tod wird sein Name mit technischem Wrestling in Verbindung gebracht. Dieser Mann war einfach Perfekt. Sein Look war perfekt(Zur damaligen Zeit), sein Moveset war perfekt, seine Ringübersicht war ebenfalls perfekt und nicht zu vergessen seine legendäre Theme Musik. Zum großen Gold hat es nie gereicht, aber wie man an Curt Hennig sehen kann ist der World Title kein Garant um eine Legende zu sein.  Charismatisch war Hennig allerdings nie so wirklich, wahrscheinlich ist das der Grund der fehlenden World Titles."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: NastyYaffawrote on 21.04.2015:[7.0] "Great in ring performer with some natural charisma in him. One of the smoothest guys ever in the ring, as well."
Rating: 7.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: pfuschiwrote on 07.03.2015:[9.0] "89 with The Genius already great, but with Heenan from 90-91 he was the greatest, the perfect team.  The perfect IC-Champion.  Because his greatness only lasted for 3 years I would not put him as high as Shawn but at his best he was as good as it gets.  Will always love to go back in time and watch my first topfave."
Rating: 9.0
Sentiment: 0.5827272727272728
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Viper99wrote on 22.12.2014:[10.0] "Einer meiner All Time Favorites! Er war super Charismatisch und TOP im Ring! Er hat mir immer Super gefallen."
Rating: 10.0
Sentiment: 0.4305555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: austin1987wrote on 06.11.2014:[3.0] "Ich konnte mit ihm überhaupt nichts anfangen fand seine Kämpfe fast alle sehr langweilig und im Kopf geblieben sind mir nur sein Kampf gegen Bret Hart und das Summerslam Match gegen Shawn Michaels. Am Mic hat er mich nicht wirklich überzeugt und Charisma hat er für mich überhaupt keins. Finde er ist einer der überbewertetsten Wrestler."
Rating: 3.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Shentenzawrote on 28.10.2014:[10.0] "Wird immer einer meiner absoluten Lieblinge bleiben. Er hatte alles die Technik, Ringpsychologie, Stärke, das Aussehen, Charisma, war überragend am Mic. Was anderes als 10 hat er nicht verdient, er ist eben perfekt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Vimeswrote on 13.08.2014:[7.0] "War für seine Zeit sicherlich nicht schlecht, zählt für mich letztlich aber zu den überschätzteren Wrestlern. Wenn man mal ehrlich ist, hat er ohne Bret Hart oder Ric Flair in der Nähe nichts wirklich denkwürdiges geleistet."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: kekslpetewrote on 04.08.2014:[10.0] "Einer der Besten die je einen Ring betreten haben. Sein Wrestling-Stil ist unvergleichbar, seine Präsenz und vor allem sein Mr. Perfect Gimmick absolute Spitze, leider nie mit großem Gold gesegnet. RIP"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Macho Manwrote on 19.04.2014:[9.0] "Einer der besten Wrestler überhaupt sehr guter Techniker.  Schade das man Ihn künstlich unten gehalten hat, finde er hätte es verdient den Champion Gürtel zu tragen.  Sein früher Tod ist natürlich tragisch.  Er war fast so wie er sich nannte Perfect."
Rating: 9.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: TheKingOfSwingwrote on 11.04.2014:[10.0] "In my opinion, "Mr. Perfect" Curt Hennig is the greatest athlete to ever grace the ring. His movement, his selling, his theatrics, and his bragging were all done with perfect timing and only added credit to his name. Hennig raised Intercontinental title to new heights, such as his match with Bret at Summerslam, and probably held the belt when it meant more than it ever has. Hennig was versatile enough for any part of the card, but he always deserved to be at the top and i only wished he got his well-deserved World Championship."
Rating: 10.0
Sentiment: 0.4136363636363637
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Undertalkerwrote on 25.03.2014:[8.0] "Er besaß viel Charisma, hatte als Mr. Perfect ein klasse Gimmick und war ein sehr lustiger sowie sympatischer Typ. Technisch gehört Hennig zu den Besten und hatte vielleicht das stärkste Selling überhaupt. Seine Schwäche im Geviert waren nach meiner Ansicht eindeutig die High-Impact-Moves. Die fehlten bei ihm größtenteils und so hatte er einfach zu wenig Aktionen im Repertoire, um seinen Gegner auf eine glaubwürdige Art zu schwächen. Ob er sich ohne seine Drogenprobleme im Main-Event hätte etablieren können, ist für mich fragwürdig, aber trotzdem war er ein beeindruckendes Allround-Talent!"
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Tony2000wrote on 21.12.2013:[10.0] "Für die Wrestlerischen Fähigkeiten, kriegt Hennig 10 Punkte. Er war ein Weltklasse Techniker und meiner Meinung nach, der beste Seller überhaupt . Keiner konnte die Moves seiner Gegner, so gut verkaufen wie Curt Hennig . Für das Mic-work gibts 10 Punkte . Mit Roddy Piper und Rick Rude, ist Curt Hennig für mich der beste Mic-worker überhaupt . PS: nach Rick Rude und Rick Martel, ist Curt Hennig, mein absoluter Lieblingswrestler."
Rating: 10.0
Sentiment: -0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: CLPSKYLINERwrote on 12.11.2013:[9.0] "Mr. Perfect ist Mr. Perfect. Legendärer Wrestler mit legendärer Technik."
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Daneraswrote on 04.11.2013:[9.0] "Ich kann bis jetzt nur eines nicht verstehen: Er wurde nie Champion, und hatte keine grössere Erfolge erzielt. Sehr schade! Er erinnert mich manchmal an Shawn Michaels, wenn ich Curt im Ring sehe. Er kann sehr gut spielen wenn er geschlagen wurde, fast wie Shawn. Er kann super Mic machen. Schade, aus ihm könnte viel mehr werden. Ich bin jetzt gespannt wie es mit seinem Sohn weiter geht. Sein Sohn sieht sehr ähnlich aus wie er."
Rating: 9.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Chris1201wrote on 02.11.2013:[5.0] "Viel zu überbewertet! Habe mir viele Sachen von ihm angesehen, war aber nie überzeugt von ihm."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Giftzwergwrote on 22.08.2013:[10.0] "Schaue Wrstling seit Ende der 80iger, damals noch auf Eurosport, später dann Tele 5 und dann im Bezahl-TV. Curt Hennig war ein Klasse-Entertainer mit großartigen wrestlerischen Fähigkeiten. Es bleibt mir bis heute unverständlich, warum die WWF nicht viel mehr aus und mit diesem Mann gemacht hat. Habe ihn selber zwei Mal in Hamburg in den 90ern erleben dürfen. Absolut unvergesslich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Iksuepsilon83mwrote on 14.08.2013:[10.0] "Er machte seinem Gimmicknamen wirklich alle Ehre und ist in meinen Augen zusammen mit Scott Hall der beste Performer, der nie einen World Title in den Mainstreampromotions gewann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Louie Canderelliwrote on 20.04.2013:[10.0] "Was soll man über ihn sagen? ... er war der perfekte Wrestler und ein Vorbild für viele!  Sein Stil und seine Technik waren brilliant umgesetzt. Sein Finisher war gleich mit ein Pin verbunden und kaum zu entgehen... Mr Perfect hatte nach Bret Hart die beste Technik und hat bis auf den grossen WWF Gürtel alles erreicht! Der perfekte Angeber im Biz... da er auf Worte auch unfassbare Taten folgen ließ! Sein Handtuch Move ist immer noch das Non Plus Ultra in Sachen Trademark :D Er konnte Gegner richtig schlecht aussehen lassen wenn das Skript es zuließ. Ich kann Ihn nur die volle Punktzahl geben alles andere wäre respektlos Curt gegenüber!  Fazit: Ein wahrer Champion auch ohne den dazugehörigen Gürtel... der perfekte Wrestler und die Nummer 1!   R. I. P Curt Henning"
Rating: 10.0
Sentiment: 0.9666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: HooliNerdwrote on 10.04.2013:[8.0] "Als Mr. Perfect legendär! Echt bitter, dass er den Drogen zum Opfer fiel... R. I. P."
Rating: 8.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Sentenzawrote on 30.03.2013:[10.0] "Der Name ist echt Programm! So viel Ausstrahlung und Charisma, gut am Mic und einfach genial im Ring. Seine Kämpfe gegen den Hitman bleiben mir in Erinnerung, genauso wie die tollen Videoclips ob Basketball, Football oder Golf einfach klasse. Mr. Perfect is just perfect."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Leonewrote on 26.01.2013:[10.0] "Great charisma, great mic work and a fantastic wrestler who unfortunately never won the WWE title.  But on top of that, Curt Hennig was 1 of the best sellers in all of wrestling history."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Yoyowrote on 13.10.2012:[10.0] "His ability and charisma rightfully earned him the nickname of Mr. Perfect, and I think he was the only one who could pull off the gimmick so successfully. Wrestle in peace, Curt."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ritt79wrote on 24.09.2012:[10.0] "der zweit beste Techniker aller Zeiten, nach dem Hitman"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: tibocowrote on 23.09.2012:[10.0] "Er ist einer der Gründe gewesen warum ich damals als Kind länger auf geblieben bin! Und ich durfte ihn auch mal live erleben als die WWE am 1. 5. 02 in Köln war!"
Rating: 10.0
Sentiment: 0.4602272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: LM Punkwrote on 30.08.2012:[8.0] "Im Ring konnte er mich immer überzeugen. Nur 8 Punkte weil er nie einen der grossen Titel gewonnen hat. Seine persönlichen und körperlichen Problemer verhinderten dies wohl. Trotzdem hatte er im Ring ein sehr hohes Niveau und auch sein Gimmik hat er gut rübergebracht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: reene82wrote on 25.08.2012:[10.0] "Durch die Hasbro-Figuren bin ich als Kind zum Wrestling gekommen. Und hab mir die Coolsten natürlich zuerst geholt. Seine war die zweite nach Hulk Hogan. Ich wusste damals gar nicht dass es diese Typen wirklich gibt. Dieser Kerl wäre heute der absolute Main-Eventer. Nachdem ich mittlerweile alles seit Anfang 90er, nicht nur wegen Mr. Perfect nachgeholt habe, könnte ich echt heulen. Er hatte echt alles was man braucht, um in diesem Buissens ein Grosser zu werden. Warum nur nicht? !"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: AsgeirRaumliwrote on 14.06.2012:[10.0] "How can I discribe Mr. Perfect? Oh, he's simply perfect!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: SWObiwrote on 19.05.2012:[8.0] "Great worker, but never relish his full potential!"
Rating: 8.0
Sentiment: 0.3833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Lions Denwrote on 12.02.2012:[10.0] "In den 90ern mein absoluter Favorit, egal ob Heel oder Face. Großartige Technik, für damalige Verhältnisse flashiger Finisher und markanter Look, ohne wie ein Clown rumzulaufen. Schade, dass WCW ihn mit dem Country-Quatsch ins Lächerliche zog."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Für mich der jenige der am meisten verdient hätte mal den WWE Championship zu tragen. Mr Perfect war echt in allen Bereichen wirklich perfekt, Charisma, Mic Work und auch In-Ring Skills. Das Problem war wirklich nur das er nicht ganz von der "Leine" genommen wurde, weswegen ich ihn leider auch nur 9 Punkte geben kann..."
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Rey2004wrote on 05.09.2011:[9.0] "Super Techniker, klasse Performer - genialer Superstar! Leider zu früh verstorben."
Rating: 9.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: GTS Punkwrote on 17.08.2011:[9.0] "Er ist unumstritten eine Legende. Er hatte alles was man brauchte um einer der großen zu werden."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Raywrote on 21.07.2011:[9.0] "Dieser Mann war wirklich perfekt. Alles an ihm war stimmig und aufeinander abgestimmt. Kleine Gesten, die Mimik, die Moves, sein Selling (SEIN SELLING! )... alles stimmte. Schade, dass er so früh sterben musste und schade, dass er nie einen wirklich großen Erfolg erringen konnte. Das Talent und das Können dazu hatte er."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: MaikBaaderwrote on 20.07.2011:[10.0] "Einer meiner Lieblingswrestler in der WWF und WCW. Er hatte einfach alles was man in einer großen amerikanischen Promotion braucht: Die Fähigkeiten im Ring, am Microfon und von seinem Charisma brauch Ich gar nicht sprechen. Es bleibt mir immernoch ein Rätsel wieso er nie einen großen Titel halten durfte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: exxterwrote on 31.03.2011:[10.0] "Einer meiner Lieblingsstars von der frühen WWF Zeit. Klasse Matches, und cooles Gimmick. Schade das er so früh verstorben ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Butzelchenwrote on 09.03.2011:[10.0] "Ohne wenn und aber: Perfekt! Legendäre Matches mit Bret Hart. Klasse Micwork, geniale Technik. Sein damailger Wechsel zu WCW war ein Reinfall. Leider dann viel zu früh verstorben. Zu Recht in der WWE Hall of Fame. Vielleicht kann sein Sohn (Joe Henning aka Michael McGillicutty) in seine (großen) Fußstapfen treten. RIP!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Jerichoholicwrote on 11.02.2011:[10.0] "Ein absolutes Komplettpaket - sowohl von der Ausstrahlung als auch seinen Leistungen im Ring fast unerreicht. Schade, dass er schon sehr früh von einigen Verletzungen zurückgeworfen wurde und danach nie mehr an seine Bestform heranreichen konnte, dennoch besser als der größte Teil des damaligen Rosters. Es ist wirklich schade, dass man zu seinen Glanzzeiten nie den Schritt gewagt hat und ihm das World Titelgold um die Hüften geschnallt hat, dann würde man vielleicht auch heute noch von einer viel größeren Legende sprechen. Da geht ein Mr Perfect zwischen den ganzen Ric Flairs, Hulk Hogans und Bret Harts immer wieder unten, wenn es um die Größen der damaligen Zeit geht."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Schlagschawrote on 24.01.2011:[10.0] "Eigentlich wurde hier schon alles gesagt, was man über ihn sagen kann. Meiner Meinung nach war es kein Gimmick, sondern er WAR Mr. Perfect. R. I. P."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Necronwrote on 09.12.2010:[10.0] "Vor allem als "Mr. Perfect" ein sensationeller Heel, der eine tolle Ausstrahung, kreatives Micwork und interessante Old-School-Technik vereinte. Hat in der WCW meiner Meinung nach abgebaut und war dort nur noch in uninteressanten Fehden unterwegs. ISt aber nicht seine Schuld, deshalb 10 Points!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: C van Damwrote on 20.11.2010:[10.0] "Ein Gimmick muss zu einem Wrestler passen, nicht jeder kann ein Gimmick perfekt rüber bringen. Das "Mr. Perfect. ", ja das war DAS Gimmick für Hennig und er hat sehr gut rüber gebracht. Im Ring top, am Mic klasse, einfach nur... nur... perfekt!"
Rating: 10.0
Sentiment: 0.8125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: justusjonaswrote on 15.11.2010:[10.0] "Ein grossartiger Wrestler. Mein absoluter Favorit. Technisch wohl das beste was man je in der WWE gesehen hat. Dazu am Mic auch hervoragend. Schade das er Privat so einen Mist gebaut und sein Leben lassen musste. Aber wir Bewerten hier ja den Wrestler und da kann man ihm nur die volle Punktzahl geben. Leider nie den World Title geholt. Er hätte es verdient gehabt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Woerpwrote on 09.11.2010:[7.0] "Technisch sehr gut, aber er kam bei nicht an, weder als Face noch als Heel. Und seine Matches fand ich nicht sehr berauschend, mit ganz wenig Ausnahmen z. B. Matches gegen Bret Hart, wobei in meinen Augen der Hitman die Matches meist gerettet hat."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: BenZenwrote on 20.10.2010:[9.0] "Curt Hennig war ein großartiger Worker. Dazu war er mit der Ausstrahlung gesegnet, die man braucht um ein ganz Großer zu werden. Das Gimmick des Mr. Perfect war auf ihn zugeschneidert und neben seinen In-Ring Skills spiegelte er das auch in so Kleinigkeiten wie dem immer perfekten Kaugummi-Wegschlagen wieder. Gerade als Heel bei seinen prägenden IC Titelregentschaften war er genial. Seine große Stärke lag aber eindeutig im Selling von Aktionen. Ich würde ihn sogar als einen der besten "Seller" überhaupt bezeichnen, Hennig konnte jeden Gegner gut aussehen lassen. Für eine Höchstnote fehlt mir nun nicht unbedingt ein World Title, sondern einfach eine gefährlichere Offensive, die ich bei Hennig immer vermisst habe. Bei einem Finisher wie dem Perfect Plex, aus dem andauernd ausgekickt wurde, fehlten effektivere Alternativen damit ich ihn mir als wirklichen Main Eventer vorstellen könnte. Für mich war das sein größtes Manko. Traurig dass er in seiner Karriere immer durch Verletzungen zurückgeworfen wurde und er am Ende auch noch viel zu früh von uns ging."
Rating: 9.0
Sentiment: 0.7222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: DJ MaSchwrote on 18.10.2010:[10.0] "Sicherlich einer der besten aller Zeiten, schade das es nie zum World Title gereicht hat. Die Anlagen dazu hätte er ohne Frage gehabt, charismatisch war er ohne Frage und zudem noch ein wirklich guter In-Ring-Worker. Auch das Gimmick war für schlichtweg "Perfect"."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Aesopwrote on 18.10.2010:[10.0] "Curt Hennig, er war wirklich nahezu perfekt. Sein Stil ist schön anzuschauen und charismatisch war er auch, doch seine Ringleistung sticht natürlich besonders hervor. Er war einer der besten Techniker der damaligen Zeit. Wie viele andere leider viel zu früh verstorben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Randy Owrote on 23.09.2010:[10.0] "Einer der Besten Wrestler auf dieser Welt.  Schade, das man zu seiner Glanzzeit nicht mehr aus ihm rausgehollt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Jack Londonwrote on 19.08.2010:[10.0] "Nicht zu überbieten, tolle Matches, Ausstrahlung ohne Ende.  Einer der besten aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Weegelwrote on 15.06.2010:[10.0] "Was soll man anderes sagen: The Perfect one. Gerade erst wieder einige seiner Classics gesehen, der Mann war schlicht brilliant"
Rating: 10.0
Sentiment: 0.95
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: LabronBenoitwrote on 20.05.2010:[10.0] "Er war wirklich perfekt, machte seinem Namen alle Ehre. Danke für deine wunderbaren Matches, Curt! Rest in Peace"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: RickRollwrote on 26.03.2010:[10.0] "Curt Hennig lebte einfach sein Namen. Es gibt kein besseren Wrestler zu dem "Mr. Perfect" mehr passt als bei Curt Hennig. Er besaß UNMENGEN! an Charisma, hatte starke Mic-Skills, für mich sogar die besten mic-Skills. Ich hörte/höre ihn immer am liebsten zu. Sein Old-School Stil ist klasse und sein technisches Wrestling gefällt mir auch. Im Ring zwar nicht der allerbeste, da sehe ich ein paar Wrestler vor ihm, aber in der tat ein wirklich starker In-Ring Performer."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Showstopper45wrote on 16.03.2010:[10.0] "Was er angrief wurde immer Perfekt dieser Mann war im Ring sehr gut aber auch am Mic. Wie hieß es auf der DVD von ihm er würde sogar aus einen Haufen Steine ein gutes Match machen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: NewGuywrote on 20.02.2010:[10.0] "Hat die 10 Punkte wirklich verdient! War immer wieder cool ihn zu sehen, ob als Mr. Perfect oder als country-liebender Curt Henning zu WCW Zeiten!"
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Aquifelwrote on 08.02.2010:[10.0] "Der gute Mr. Perfect. Charismatisch, starkes Gimmick und im Ring erste Sahne. Zu Zeiten als Hogan noch als guter Wrestler durchgegangen ist, hat er in Amerika schon gezeigt, dass es auch dort wirkliche gute Leute gibt, die ein "total package" und nicht nur Showmen sind."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: novacanewrote on 03.02.2010:[9.0] "Top-Worker, der leider nie einen der großen World-Title halten durfte. Unvergessene Matches gegen Bret Hart, die für mich nach wie vor zur Creme de la Creme gehören. Leider haben Verletzungen und schlussendlich sein frühes Ableben eine noch größere Karriere verhindert. Von mir gibts dafür trotzdem 9 Punkte, da er mich immer perfekt ;o) unterhalten hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Denzwrote on 04.01.2010:[9.0] "Er hatte großartige Matches in den 80ern und 90ern mit Bret Hart. Technisch waren beide auf dem gleichen Level. Ich kenne niemanden, dem seine Matches nicht gefallen haben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Manu Adamswrote on 22.12.2009:[10.0] "Curt Hennig wurde seinem Ringnamen gerecht: Mr. Perfect. Und dass war er definitiv, gehört in meinen Augen zu den besten Technikern die das Sports Entertainment je hervor gebracht hatte. Schade, dass es nicht zu mehr als dem Intercontinental Champion gereicht hatte. R. I. P. Curt ''Mr. Perfect'' Hennig."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: chryzzwrote on 22.12.2009:[10.0] "He was absolutly perfect einer der besten Wrestler der 80er und 90er Jahre"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: downtown2wrote on 15.12.2009:[9.0] "Der große Unterbewertete. Er konnte alles, machte alles. Die Hardliner lieben ihn vorallem, weil er für seine beeindruckenden Leistungen nie entlohnt wurde. Er schnallte sich nie einen World Title um, er war nirgends das große Zugpferd, aber sein Leben lang auf dem Sprung. Das man ihn nie konsequent nach oben pushte hat zum einen mit der Verletztungsanfälligkeit zutun, zum anderen mit Hulk Hogan. Diese verpassten Chancen machen diesen unwiderstehlichen Wrestler aber nur größer, als er es vermutlich zu Lebzeiten geschafft hätte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Prince of darknesswrote on 22.11.2009:[10.0] "Ein leider viel zu früh verstorbener Wrestler. Er war einer der besten zu seiner Zeit und wäre es bestimmt auch noch heute. Er war einfach Perfekt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Saschwrote on 27.10.2009:[6.0] "Gefiel mir nie besonders gut er macht bei jeden Match immer die gleichen Moves, aber er war halt nun einmal fester Bestandteil der Wrestlingwelt für lange Zeit deshalb 6 Punkte."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: jupp365wrote on 09.10.2009:[10.0] "Würde ja anstatt mit 'sehr gut' lieber mit 'Perfect' bewerten, aber naja..... Hier sehen wir mal wieder einen weiteren von der WWF total verkannten Ausnahmeathleten. Meiner Meinung nach ist Mr Perfect bzw. Curt Hennig DER Wrestler schlechthin, dem das was er verdiente Zeit seines Lebens entweder durch falsches Booking, Verletzungen oder schliesslich durch seinen viel zu frühen Tod verwehrt blieb. In der WCW war er leider ziemlich uninteressant, aber seine jungen Jahre in AWA und WWF sind einfach großartig..... ja geradezu P-E-R-F-E-C-T. Schade dass er es nie über die obere Midcard hinaus geschafft hat."
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Brainbreakerwrote on 29.09.2009:[9.0] "Neben Owen bestimmt der beste Wrestler, der nie den World-Title bekommen hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: finsterwegwrote on 24.09.2009:[10.0] "Wahr einfach Perfekt, ob als Werstler, Kommentator (wenn ich mich recht erinner verdankt Shawn Micheals ihm den Spitz Namen HBK), Manager.. er wahr nicht nur im ring eben eine ausnahme sondern hatte das was vielen abgeht Charisma!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Basket Casewrote on 14.09.2009:[10.0] "Grandioser Wrestler, der sicher mal einen großen Titel verdient gehabt hätte. Ging leider viel zu früh von uns."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Aglaoswrote on 15.08.2009:[10.0] "Definitiv der Wrestler, dessen viel zu früher Tod mir persönlich am meisten weh tut. Das "Perfekte Gimmick" hat er so gut verkörpert, dass ich früher nie so richtig begreifen konnte, warum Hennig so oft verliert. Er hat während seiner Karriere viel zu viel Pech gehabt und wurde zu deren Ende viel zu viel verjobbt. Insbesondere diese späte Phase war für mich nur schmerzhaft zu verfolgen. Was in meinem Kopf letztlich von ihm bleibt, ist sein Platz als bester Midcarder aller Zeiten. Auch wenn er eigentlich sehr viel mehr verdient hätte - nämlich eine perfekte Karriere! Ruhe in Frieden, Curt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: CM Dannywrote on 15.08.2009:[10.0] "Er war perfekt, es hat alles gestimmt. Das Können im Ring, das Charisma, seine Einzugsmusik. Er musste ja noch nicht mal was sagen. Der arrogante Blick ins Publikum (auf dem Bild sehr gut getroffen) hat gereicht und er wurde ausgebuht. Tragisches Ende, aber einer meiner All-Time-Faves."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: 108 Sternewrote on 24.07.2009:[9.0] "Große Klasse, der Mann; wrestlerisch sowohl zu spektakulären Moves als auch zu bodenständigem Ringen fähig. Schade, daß er nie den Push zum Topstar bekommen hat sondern dauerhaft in der zweiten Garde antreten musste; ein typischer Intercontinental Champion, dem höheres nie vergönnt war."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Eddiewrote on 02.06.2009:[9.0] "He is absolutely Perfect, geniale Matches, cooler Techniker, nur ein World Title Run in einer der großen Promotions fehlt mir für die vollen 10, aber seine IC Title Matches waren durch die Bank weg gut, 9 Punkte."
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: BaptisteZorGwrote on 23.05.2009:[10.0] "Mr. Perfect, tja, leider wurde er unter seinem Wert verkauft. Er war ein ganz großer und er hätte die großen Titel mehr als verdient gehabt. Technisch einer, wenn nicht der beste, dazu seine unvergleichliche Ausstrahlung = Top Gesamtpaket. 10Pkt."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The-Game91wrote on 29.04.2009:[10.0] "Ganz klar einer der besten Wrestler der niemals den World Title hielt. Für mich ausserdem der beste Intercontinental Champion aller zeiten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Theron083wrote on 13.04.2009:[10.0] "Nicht ganz perfekt find ich irgendwie, aber knapp dran und daher mit Legendenbonus+1 = 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: manager1977wrote on 07.04.2009:[10.0] "Einer der besten Techniker die je im Ring gestanden sind."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Atze20wrote on 07.02.2009:[10.0] "Einfach nur perfekt. Im Ring: Wow. Am Mic: Noch besser. Ausstrahlung: Ohne Ende. Schade, dass er es nie zu so viel Ruhm geschafft hat wie etwa ein Bret Hart. Verdient hätte er es allemal gehabt. R. I. P."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Mick Funkwrote on 05.02.2009:[10.0] "Überragender Heel und extrem stark im Ring. 10 Punkte."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Schandmaulwrote on 05.02.2009:[10.0] "Grandios in allem. Am Mic, im Ring, als Manager, als Kommentator. Einer der Wrestler die aus einem Besenstiel hätten ein ordentliches Match rausholen können. Dazu der beste Dropkick überhaupt. Verdammt schade das er nie World Champion wurde."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: stinger89wrote on 05.02.2009:[9.0] "Kenn nur wenige Matches von ihm. Aber die Leistungen und sein Ruf müssen die 9 einfach hieb und stichfest machen. Hoffentlich machts sein Sohn irgendwann mal so gut wie er!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: lostywrote on 21.01.2009:[10.0] "Wenn die Welt perfekt gewesen wäre, hätte er den Rumble 1993 gewonnen und dann bei WrestleMania IX mit Bret den besten MainEvent einer Wrestlemania hingelegt, mit ihm als Sieger... Leider, leider viel zu früh von uns gegangen..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Sinestrowrote on 05.01.2009:[10.0] "Das totale Paket. Wrestlerisch und Charisma mässig einfach genial und anscheinend einer der umgänglichsten Typen im Business! R. I. P"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Blade Bourdeauxwrote on 30.12.2008:[9.0] "Er besaß alle Vorzüge, die ein absoluter Top-Star auch nur besitzen kann. Im Ring, am Mic, die Mimik. Und doch finde ich, er hätte mehr erreichen müssen und vor allem sein Leben nicht wegschmeißen sollen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Tomkowrote on 02.12.2008:[10.0] "Eigentlich eine Schande, dass ein so genialer Wrestler nie einen der beiden großen Titel halten durfte !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: test85wrote on 16.11.2008:[10.0] "Einer der Besten Wrestler aller Zeiten. Stand leider wie soviele andere im Schatten des wohl überbewertetsten Wrestler aller Zeiten:Hulk Hogan. Schade dass er nie den "Big One" gewinnen konnte. Geniale Matches(Bret Hart, HBK), super Promos und Charisma. Als ich ihn dann beim Royal Rumble 2002 sah, konnte ich meinen Augen nicht glauben. Natürlich hoffte ich, dass er es vielleicht diesmal schaffen konnte. Doch es kam alles anders. Auch als er bei TNA es noch einmal wissen wollte, hatte ich noch immer die Hoffnung. Doch leider kam alles anders. Er wird immer einer meiner All-Time-Faves bleiben. RIP, Curt!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Hypocrisywrote on 01.10.2008:[9.0] "Warum keine 10 Punkte? Weil trotz seiner zweifelsohne perfekten Technik und der überragenden Arroganz scheinbar irgendetwas gefehlt hat, um ihn in den Main Events zu sehen. Ist aber nur ein kleiner Schatten auf der perfekten Karriere des Curt Hennig. Leider musste er viel zu früh von uns gehen."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: N3m35i54wrote on 26.09.2008:[10.0] "That's not good. That's perfect :D ach den typen konnte man hassen und lieben ^^ technisch und charismatisch ganz oben"
Rating: 10.0
Sentiment: 0.5499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Wise Warriorwrote on 11.09.2008:[9.0] "Fand seine Ankündigung des Finishers "And now, you gonna see a Perfect Plex! " total geil. Als Wrestler, Manager und Showman top! Seine WCW-Zeit fand ich dann nicht so prickelnd: schien vor seinem Tod aber wieder einen guten Run zu bekommen - schade..."
Rating: 9.0
Sentiment: 0.58125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: mugel 187wrote on 28.08.2008:[9.0] "Einer der besten seiner Zeit. Er und Bret haben die Matches ihrer (Wrestling) Generation abgeliefert."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: loewnboy4wrote on 04.08.2008:[10.0] "Mr. P war der erste Wrestler, den ich gesehen habe. Er hat mich für diesen Sport begeistert. Ein großer Techniker, exzellenter Entertainer. Hat immer eine super Show abgeliefert. Der -für mich- größte Intercontinental-Champion aller Zeiten! RIP, Curt!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Exist 2 Inspirewrote on 27.07.2008:[9.0] "Toller Wrestler und leider viel zu früh verstorben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: LordTrailerwrote on 11.07.2008:[9.0] "Ich verkneife mir ein perfektes Wortspiel, aber war schon nahe dran. Sehr charismatisch und ein guter Wrestler. Seine Athletik hat ihm Aktionen erlaubt, die spektakulär und schmerzhaft für den Gegner aussahen. Am Mic war er zeitweise in einer anderen Liga. Nicht umsonst hat man ihn als Kommentator eingesetzt. World Title holte er nicht wegen mangelndem Talent oder Willen. Er war halt nicht am richtigen Ort oder verletzte sich häufiger. Schade."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: taxbaxwrote on 05.07.2008:[10.0] "Unglaublich gutes Gimmick. Unglaublich gute Verkörperung dieses Gimmicks. Unglaublich gutes Micwork. Unglaublich gute Technik. Perfect."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ecw foreverwrote on 17.06.2008:[9.0] "Ein genialer Worker, sowohl technisch als auch Entertaimentmässig."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ulrich1506wrote on 26.05.2008:[8.0] "es ist und bleibt immer schwierig im Jahr 2008 jemanden zu beurteilen, der Anfang der 90er zu den besten gehörte... er war zum damaligen Zeitpunkt ein absoluter Topwrestler, sicher mit das beste, was die WWF seinerzeit zu bieten hatte - aber leider ein paar Jahre zu früh am Start, denn damals dachten die WWF-Oberen noch, man brauche Techniker für den IC-Title und Powerhouses als Worldchamp... und somit war Mr. Perfect eben leider kein World-Championchip-Material - und er wäre soooo "perfect" gewesen..."
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Frutzwrote on 25.05.2008:[10.0] "Viel braucht man nicht zu sagen, einer der besten Wrestler, die einen Ring je betreten haben und ein wunderbares Talent zu unterhalten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Berchwrote on 19.05.2008:[10.0] "Mr. Perfect war für mich schlichtweg das Beste, was die WWE/F in den frühen 90ern zu bieten hatte. Technisch ein Genuss, ein enorm gutes Micwork, das Gimmick ideal abgestimmt. Bei ihm stimmte einfach alles, auch wenn es nie zum ganz großen Titel gereicht hat. Leider wurde er in der WCW und danach auch in der WWE nicht richtig eingesetzt und konnte daher dort nie an seine grandiose Zeit anknüpfen. Doch auch das kann man sicherlich einem Wrestler verzeihen, der ansonsten "absolutely perfect" war."
Rating: 10.0
Sentiment: 0.9666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Baldrickwrote on 29.04.2008:[9.0] "Fantastischer Heel und begnadeter Techniker. Bis heute habe ich keinen besseren Dropkick von einem Nicht-Cruiserweight gesehen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Ric Flair88wrote on 28.04.2008:[10.0] "Ohne Zweifel war er auf seinem Karrierehöhepunkt einer der talentiertesten Wrestler der Welt. Allein seine Matches gegen Bret Hart sind Grund genug ihm die 1 zu geben. Wäre Hogan nicht gewesen hätte sich dieser Mann auch den World Title geholt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: X-Raywrote on 19.04.2008:[10.0] "Absolutely Perfect in allerlei Hinsicht, was die Skills, die ein Wrestler mitbringen sollte, anbelangt. Leider viel zu früh gestorben!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Ruppiwrote on 27.03.2008:[10.0] "Würde ihm normalerweise eine Note abziehen, weil er nie einen World-Title in einer der ganz großen Ligen gehalten hat. Kann ihm aber dennoch keine schlechtere Note als 1 geben. Es war einfach immer ein Genuss, ihm im Ring zuzusehen. Viel zu frühes Karriereende und viel, viel zu früh verstorben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: BigVanVaderwrote on 19.03.2008:[10.0] "Hat leider nie den Sprung in höhere Regionen geschafft dabei hätte er es auf jeden Fall verdient gehabt. In den frühen 90ern genial, zum Ende seiner Karriere nur noch ein Schatten seiner selbst auch wenn die West Texas Redneck Zeit sehr amüsant war, trotzdem 10 Punkte denn "He was, what he said he was and that was : "Absolutely Perfect"!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: jimpanse1980wrote on 17.03.2008:[8.0] "Sehr gut in allen Bereichen, aber nicht überragend wie ich finde. Zeigte konstant gute Matches, aber kein denkwürdiges Match. Aufgrund seiner Verletzungsanfälligkeit blieb ihm der große Titel leider verwehrt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Instant Classicwrote on 14.03.2008:[10.0] "Einer der besten Techniker aller Zeiten, unglaublich gut am Mic, wahnsinnige Ausstrahlung, simply perfect!"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: lagunswrote on 13.03.2008:[10.0] "Im Ring einer der besten und in seiner Gewichtsklasse auch der schnellsten. Seine Kämpfe zb. gegen Bret Hart waren perfektes Mattenwrestling mit fantastischen Würfen, Locks und Konter-manövern. Hat auch die Moves der Gegner immer grandios verkauft. (bes. Whips in die Ecke, you know! ) Dazu hat er den "Mr. Perfect" sowas von überzeugend gespielt, das man fast sagen muss, das er Perfekt war."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Fumaryuwrote on 07.02.2008:[8.0] "Gute Ausstrahlung und spielte seine Rolle ziemlich gut als Mr. Perfect. Technisch fand ich ihn in Ordnung, aber jetzt nicht umbedingt überragend."
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: devilsoldierwrote on 07.01.2008:[10.0] "Einer der besten. Als Flairs technischer Berater einfach super. Danach auch immer hohes Niveau. Sein Match mit Bret Hart KoR 93 einfach göttlich. RIP"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Brahma Bullwrote on 04.01.2008:[10.0] "Wenn ich mir heute Matches mit Curt Henning ansehe muss ich oft mals noch mit der Zunge schnalzen. Henning war ein begnadeter Techniker und ein ebenso guter Entertainer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Pulpulwrote on 13.12.2007:[8.0] "Hennig war charismatisch und im Ring überzeugend. Dennoch stand er nie an der Spitze einer Liga, was ihm einfach im Vergleich zu anderen Legenden fehlt, um die volle Punktzahl zu erhalten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: TheAdaawrote on 19.11.2007:[10.0] "Curt Hennig, Mr. Perfect. Seine In Ring Skills perfekt, seine Mic Fähigkeiten perfekt, sein Charisma perfekt und seine Eingangsmusik perfekt. Er war wahrlich ein komplettes Paket. Er war ein grandioser Wrestler der es nie ganz nach oben geschafft hatte, es aber verdient gehabt hätte. Auf keinen anderen Wrestler traf die Aussage mehr zu: Curt Hennig war perfekt."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: HBK-Xwrote on 25.10.2007:[10.0] "Ich fand Mr. Perfect immer super. Ein hervorragender Techniker. Ich liebte die Matches gegen Bret Hart! Hätte einen World Title verdient gehabt! Und er hatte ne coole Einzugsmusik! RIP Curt, We miss you!"
Rating: 10.0
Sentiment: 0.9069010416666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: FloriGPunktwrote on 24.10.2007:[10.0] "Mein absoluter Lieblings-Wrestler! Mir fällt wirklich kein Match ein, in welchem Curt mich je enttäuscht hätte. Am Mike ne Wucht, im Ring einfach nur perfekt und sein Auftreten einsame Spitze. Man, wie hätte ich ihm einen wirklich großen Sieg gegönnt (z. B. beim King of the Ring '93 gegen Bret Hart), doch leider durfte/konnte/sollte er diesen nie so wirklich erreichen. Für mich auch der beste/unterhaltsamste US-Heavyweight-Champ der WCW! PERFECT! R. I. P. Curt!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Bullit69wrote on 30.09.2007:[8.0] "Er war halt Mr. Perfect! Diese Perfect-Clips nenn ich sie jetzt mal, waren auch sehr gelungen! Erinnert mich irgendwie an Kurt Angle mit langen blonden Haaren!"
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Wolfpacwrote on 23.09.2007:[10.0] "Eine Wrestling-Legende die zu früh von uns ging. Er war im Ring Super, am Mic eine Bombe mit sehr viel Charisma und er hätte den World Titel in der WWF und WCW verdient. Leider blieb dieser ihm verwehrt."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Absolutely Perfectwrote on 18.09.2007:[10.0] "Curt "Mr. Perfect" Hennig war und ist mein absoluter Lieblingswrestler. Er war ein begnadeter Techniker, der nicht nur den schönsten Dropkick der Wrestlinggeschichte draufhatte sondern mit dem Perfect Plex auch den schönsten Finisher aller Zeiten. Warum er nie den grossen Titel bekam ist mir ein Rätsel."
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Obermackerwrote on 09.08.2007:[10.0] "Ein Verkäufer vor dem Herrn und einer der besten Intercontinental Champions aller Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: D3adm4nwrote on 06.08.2007:[10.0] "Mr. Perfect. Ein wirklicher erstklassiger Wrestler, hat es aber leider nie zu einem World Title gebracht."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: H-Scorpiowrote on 01.08.2007:[10.0] "War ein toller Wrestler und ein guter Heel. Wenn man ihn als Face einsetzen wollte, musste man das mMn nach schon sehr geschickt einfädeln. Die Story um ihn und Flair und Heenan in der WWF war gut gemacht, auch ordentlich seine Fehde mit Lex Luger. Sehr viele gute Matches gezeigt, u. a. gegen Bret Hart und seine Bumps waren ähnlich wie bei Flair immer sehenswert. Später in der WCW leider nur noch in den ersten Monaten einigermaßen gut eingesetzt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: shannonmoorewrote on 28.07.2007:[6.0] "Ein sehr guter Wrestler ja aber konnte mich nie überzeugen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Trevedaswrote on 23.07.2007:[10.0] "Absolut Top in allen Bereichen. Leider viel zu früh verstorben."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Steven McWheelerwrote on 27.06.2007:[8.0] "Super Wrestler und auch klasse Worker! Einer der brilliantesten Techniker überhaupt, jedoch fehlte ihm in meinen Augen immer das gewisse etwas..."
Rating: 8.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: LexLuger4everwrote on 24.06.2007:[8.0] "Mr. Perfect war so ziemlich der beste, unter denen, die nie den World Title holten. Er hatte eine tolle Ausstrahlung und war im Ring nahezu perfekt! Leider war er wohl immer zur falschen Zeit am falschen Ort, denn ein paar World Titles hätte er echt verdient gehabt!"
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Mr Lovewrote on 24.06.2007:[8.0] "Mr. Perfect verkaufte seine Matches immer gut, er war ein toller Wrestler und ein sehr guter Technicker. Er spielte seine Rolle immer gut, war auch bei den Fans ziemlich beliebt und am Mic war er auch gut. Nur schade das man ihn nie wirklich zeigen lassen hat was er kann, die hätten ihn öfters einen Titel gewinnen lassen sollen und den auch über längere Zeit zu verteidigen. Mr. Perfect ist einfach zu früh von uns gegangen."
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Sicherlich einer der Besten ... Klasse Matches ... Einfach Perfect !"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: The Yetiwrote on 24.06.2007:[10.0] "Ich denke, es ist nur verständlich, dass er so wenige Titel gewonnen hat. Es wäre nicht von Vorteil gewesen, ihn zum Champion zu pushen, wenn er sich kurz danach wieder verletzt. Ein ähnliches Schicksal wiederfährt Mark Henry, der recht oft sehr lange Zeit verletzt war. Wohin solche Sachen führen können, zeigen die Geschehnisse um den Titelverlust des Takers und Kennedy's Unglück in Bezug auf den MITB-Kofferverlust an Edge. Dennoch: ..... ab-so-lute-ly PERFECT!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Deadman81wrote on 24.06.2007:[10.0] "Unglaubliches Charisma und ein "perfekter" Techniker ! War für mich der beste Intercontinental Champion überhaupt. Leider viel zu jung verstorben"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Smi-48wrote on 24.06.2007:[10.0] "War eine Bereicherung für jede Card, charismatisch wie sportlich ein ganz Großer, zu Recht Hall Of Famer 2007 in der WWE. War leider 5 Jahre zu früh auf seinem Zenit, als Big Men in der WWF noch Vorfahrt hatten. Einer der größten Techniker aller Zeiten. Nie entlohnt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: timbo7111wrote on 24.06.2007:[10.0] "Super Wrestler. Besonders seine Matches mit Bret Hart werde ich in sehr guter Erinnerung behalten. Von mir bekommt er eine "perfekte" 10!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Garvinwrote on 24.06.2007:[10.0] "Meines Erachtens der beste Wrestler seiner Zeit. Was wäre aus ihm gerworden, wenn er nicht von schlechtem Booking und Verletzungen geplagt gewesen wäre."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: MarcHardwaywrote on 24.06.2007:[10.0] "ich sag nur, He was abzulutly Perfect! Rest in Peace, Curt"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Dangerouswrote on 24.06.2007:[10.0] "Das allererste WWF-Match, das ich gesehen habe, war Mr. Perfect gegen einen Jobber. Schon von daher 10 Punkte!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: affenmannwrote on 24.06.2007:[8.0] "Keiner konnte die Aktionen des Gegners so gut verkaufen wie er. Auch sonst natürlich ein klasse Wrestler."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: ABoyenswrote on 24.06.2007:[10.0] "Wahrhaftig "Mr. Perfect"! Einer der Besten im Ring und außerhalb. Leider ist ihm das ganz große Gold immer verwehrt worden. Auch er ging viel zu früh."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Hirnklopswrote on 24.06.2007:[10.0] "Ich habe gefühlte 1000000 Matches mit ihm gesehen, und es war nicht ein Schlechtes dabei. Ich glaub, er war der Beste. Der Pele der Pro Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: mdbnasewrote on 24.06.2007:[10.0] "Hatte Top-Skills, Ausstrahlung und Charisma! Geniale Moves, und war blitzschell - Eben Mr. Perfect! ... aber leider mal wieder die Drogen!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Sandman16wrote on 24.06.2007:[10.0] "Bei ihm ist der Name Programm. Ein großartiger Techniker mit starkem Micwork und unglaublich viel Charisma. Ohne Zweifel einer der besten Wrestler aller Zeiten. Absolutly Perfect!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Anti-Championwrote on 24.06.2007:[10.0] "Vermutlich der Beste Wrestler in der WWE der nie den Heavyweight Titel gewinnen konnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: jerseyhoolwrote on 24.06.2007:[10.0] "Super Techniker, schmerzlicher Verlust für Buisness. Und unverzeihlich, wie die WWF ihn unten gehalten hat!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Cybermikewrote on 24.06.2007:[10.0] "Wie Bret Hart schon sagte Der Tod von ihm war für ihn so Hart wie der seines Bruders, das zu Recht, Mr. Perfect war Perfect daran gibts nix zu Rütteln deshalb die 10. 0!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1015&gimmick=Curt+Hennig
Comment: Giant2wrote on 24.06.2007:[10.0] "Hennig konnte wirklich alles: gute Ringskills, gutes Micwork, enormes Charisma... absolutely perfect."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: wrestlingswiftiewrote on 29.01.2025:[10.0] "Sure, he was a dumbass in the ring, but that's what made his matches so great! Before there was Jeff Hardy, and before there was the BETTER version of Jeff Hardy; Darby Allin, there was Mick Foley. But you wanna know one thing he did better than both of them? Promos. His promos were brilliant, and he had such a far range of emotions he could make you feel. If he wanted to make you laugh? Just look at Dude Love or the Rock 'N Sock Connection for example. If he wanted to make you root for him as an underdog? Look at Mankind. If he wanted to be a brilliant heel? Watch his entire run in ECW. If he wanted to scare the shit out of you? Specifically watch Cane Dewey."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MrRaider959wrote on 27.01.2025:[10.0] "One of the most recognizable wrestling legends in the business. He is a pioneer of bringing deathmatches to America & was willing to destroy his body to elevate his opponents. Many moments like his matches in 2000 against Triple H, Hell in the Cell against Undertaker, and Backlash vs Orton are must see matches for him. God bless Mick."
Rating: 10.0
Sentiment: 0.26
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: dhruboezitwrote on 17.01.2025:[10.0] "No words needed. The most recognizable and greatest hardcore wrestler in WWE history. Many great matches, with the Undertaker, Triple H, Rock, Randy Orton etc. An all-time legend."
Rating: 10.0
Sentiment: 0.61
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MEDaminewrote on 07.01.2025:[10.0] "What a legend, one of the GOATS fr, he was really good in the ring, but that's not his strong point, he was really over with the fans thanks to him iconic character work, whether as Cactus Jack, Mankind or Dude Love, arguably the greatest character worker in wrestling history, I wish I was old enough to watch his stuff live"
Rating: 10.0
Sentiment: 0.37696969696969695
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Lloyhd4171wrote on 06.12.2024:"Mick Foley is a true anomaly in the world of professional wrestling, a performer whose legacy is built on an unmatched combination of character, heart, and sheer resilience. As a wrestler, Foley may not have been the most technically polished in the ring, but that was never the point. His appeal came from his ability to tell stories through physicality, often at the expense of his own well-being. From his brutal wars as Cactus Jack to the deranged depths of Mankind and the sheer absurdity of Dude Love, Foleys ability to reinvent himself and keep audiences engaged was nothing short of remarkable. What truly elevates Mick Foley as a professional wrestler is his ability to connect with fans on a deeply personal level. His promos were masterclasses in authenticity, blending humor, vulnerability, and intensity in a way that felt completely genuine. Foleys charisma wasnt rooted in traditional wrestling tropes; it came from his relatability and humanity. Whether he was flying off Hell in a Cell or delivering heartfelt monologues, Foley embodied the soul of professional wrestlingraw, unpredictable, and emotionally resonant. Add to that his kind-hearted demeanor off-camera, and its clear that Foley wasnt just a great wrestler; he was a great person who elevated the art of wrestling itself. In every sense, Mick Foley is a legend who redefined what it means to be a pro wrestler."
Rating: No rating found
Sentiment: 0.18446969696969698
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ItsAllAWorkAnywaywrote on 14.11.2024:[8.0] "Was Mick Foley "God"? No, but he was pretty damn good. While he didn't have the typical image (or build) of a babyface, he had the heel mannerisms down as a lunatic and/or psychopath and wasn't afraid to engage in the rough stuff (some of his more brutal spots were something of legend.) Yet once he teamed up with The Rock to form "The Rock N Sock Connection", Foley transcended from menacing psycho to lovable scamp (and as stayed there ever since.) Now one of the most revered personalities in wrestling, Foley can hang his hat on a decorated major league run."
Rating: 8.0
Sentiment: -0.032060185185185185
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: AVERAGEWRESTLINGFANwrote on 02.11.2024:[10.0] "One of the goats. Whether dude love, cactus jack, mankind, mick foley or anything else he was over and when people say putting your body on the line for our entertainment I always think of mick."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Willie 19200wrote on 25.10.2024:[9.0] "The hardcore legend with a legacy that inspired many. Mick is a guy you can tell genuinely cares about the business, a man who proved that you don't have to be tall and muscular to be an amazing wrestler. I love his hardcore style and I believe that he is one of the only people to have so many characters over in comparison to some wrestlers who struggle to get one gimmick over. Overall fantastic wrestlers."
Rating: 9.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: JackBurtonsTruckwrote on 14.10.2024:[9.0] "Foley has a legitimate legacy which isnt something every good wrestler can say. One of the most interesting and complex characters of our time, who also got 4 separate characters over with the audience (some people never even get 1 over)."
Rating: 9.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: jsbortswrote on 08.09.2024:[8.0] "Mick Foley seems like an awesome person, loves the business, did some of the most insane stunts and matches anyone's ever had, and was a fantastic brawler. But outside of that he's just not an incredible worker next to the all time greats, but instead someone who outperformed their ability like few others have ever been able to do."
Rating: 8.0
Sentiment: 0.23333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: 12psiwrote on 27.08.2024:[9.0] "Foley is my favorite wrestler of all time, has been since the first day I hit Smackdown v. Raw on the PS2. The gimmick commitment, psychological and narrative work is all impeccable, and watching his career unfold as it did is one of the greatest joys an NBC-affiliated product has brought me since the first season of the Good Place. Nobody does it better, but that's simply because nobody does it like him."
Rating: 9.0
Sentiment: 0.3719230769230769
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Zak22wrote on 23.08.2024:[8.0] "A great character worker who did some incredible work especially in Japan. But I do find him, well, overrated overall. Mick wasn't a great wrestler or athlete but was a smart guy. Bumped too hard as well which can be very rough to watch. His best stuff is his character work and psychology but I'm more of a moves guy."
Rating: 8.0
Sentiment: 0.3792619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: BizarroMaskwrote on 02.08.2024:[8.0] "I think the hardcore style make him easy for Mick folley some atheltic default. Be beside that his several character make him a true icon of wrestling , very underrated promo and a great source of fun."
Rating: 8.0
Sentiment: 0.34722222222222227
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: XNoWayKemoSabeXwrote on 24.07.2024:[8.0] "One of the most memorable wrestlers from my childhood. I legit thought I saw this man die when he fell off the Hell in a Cell twice. A literally crazy person but an absolute workhorse. Bang Bang! Have a Nice Day!"
Rating: 8.0
Sentiment: 0.27999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: muchlikedonlinewrote on 21.07.2024:"(10.0) No one has ever given as many people as much as Foley. He's made countless stars. Rock and Triple H have their best matches to thank Foley for. Technical marvel's like Shawn Michales and Bret Hart can be elevated by the dynamic he adds to a match, and young glistening stars can be shot into the stratosphere like Randy Orton. The only negative you can give Foley is the TNA run, which was clearly out of sheer bitterness towards WWE for his treatment. But it's hard to hold anything against someone who has nearly died multiple times for multiple promotions and is as caring and giving to an industry that seems to only take from those who let it."
Rating: No rating found
Sentiment: 0.08802083333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Big R3d Mach1n3wrote on 17.06.2024:[10.0] "Whether if you get Mankind, Cactus Jack, Dude Love or regular old Mick Foley it didn't matter which version you got because he'll always give his best self in the ring for every match."
Rating: 10.0
Sentiment: 0.32
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Chris777wrote on 17.06.2024:[10.0] "All the bullshit he did post semi-retired can not offset what he has done at his peak. If we only talk about his hardcore matches and all those memorable moments he has created, he is a 10. If we only talk about all those legendary promos, faces or heels, he is a 10. If we only take about his versatility as a character and the able to adapt to different situations and storyliens, he is a 10. He is an icon that is truly influential with his promo style and character development in the next 30 years."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Chosen Onewrote on 09.06.2024:[7.0] "Niemand kann bestreiten, dass Mick Foley eine Legende ist und 7 Punkte finde ich selbst fast schon gemein, aber so ganz hat seine Popularität sich mir nicht erschlossen. Er hat viele gute Matches, besonders die nach Hardcore-Regeln, aber so wirklich Klick gemacht mit ihm hat es für mich nur für einen sehr kurzen Zeitraum. Um 1997, 1998 herum fand ich ihn sehr gut. Die Interviews, in denen er über seine Jugend gesprochen und die Lore seiner Gimmicks erklärt hat und dabei alte Home Videos gezeigt wurden, waren sehr spannend. Auch seine Rolle im Austin-McMahon-Feud hat mich gepackt, weil er genau im Gegensatz zu Austin von Vince McMahon gemocht werden wollte und sogar zu ihm aufgesehen hat, während er von Vince nur ausgenutzt wurde. Ich finde, Mick hätte noch eher als The Rock eine Schauspielkarriere einschlagen können, weil er, wenn sich die Gelegenheit bietet, sehr gut acten kann. Nur leider nach dieser Storyline hat Mick für mich den Reiz verloren. Seine Matches mit Triple H waren unterhaltsam, so wie weitere Matches, aber Promo-technisch ging es zunehmed nur noch um, wie Jerry Lawler immer sagte, den Cheap Pop sowie Gerede über "Testicular Fortitude" oder es ging darum, sein neuestes Buch zu pluggen. Der Tiefgang hat irgendwann einfach gefehlt. Um ein Fazit zu ziehen: Mick Foley ist für mich leider ein Wreslter, bei dem ich mir denke, da hätte mehr gehen können."
Rating: 7.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Pigeon Scratchwrote on 07.06.2024:[10.0] "One of the most iconic hardcore wrestlers of all time, and simply one of the best. And while he was usually at his best in a death match setting, such as in Japan at Kawasaki Dream, or at HITC with The Undertaker in 1998, he never felt restricted as a performer. He was aware of what he can and can't do, and like the man himself said, he made up for his minor shortcomings to creativity. He was one of the best and most important hardcore/deathmatch wreslters in the industry, who could easily elevate anyone he fought against. Not only was he great and creative in the ring, he was also creative outside of it. There is a reason why Mick Foley is considered one of the best promo artists of all time. Promos like Cane Dewey literally cannot be topped, and even at the end of his career, you could always count on him for a good promo no matter the circumstances. He's also one of the most creative in terms of creating a character, and building the storylines to go with that character. He was absolutely limitless in the genres of his personas, and how he depicted himself. He could be a dark, serious character surrounded by insanity and violence, such as Cactus Jack or Mankind, or go for a more lighthearted type of character, like the latter end of the Mankind gimmick, and Commissioner Mick Foley. With these gimmicks and the stories that went with them, they always challenged wrestling and social norms. Seriously, whatever he did, he always did the absolute best, and sacrificed so much of his health for the business. A one of a kind wrestler that we may never see the likes of again."
Rating: 10.0
Sentiment: 0.3441176470588234
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Taper1994wrote on 02.06.2024:[10.0] "Possibly the best hardcore/deathmatch wrestler of all time. Foley first became a indie darling with his insane deathmatches in Japan and the US indies. Usually these guys never make it in the "big time" promotions. However the difference between Foley and the other hardcore guys is that he is also an amazing wreslter who is able to tell amazing stories in the ring, a fantastic sympathetic underdog or a psychotic dangerous heel depending on what you needed him to be. That's why Foley was the hardcore guy who could get over in both WCW and WWF, while the rest wre mostly enhancment talent. Then during the highly competitive period between WWF and WCW where every TV segment looked at to see how well it did, Foley rose to the top of WWF in 1999 as one of the biggers draws in a period where wrestling was at it's most mainstream. Unfortunately, the years of deathmatches took it's toll on Foley and he was forced into semi-retirement just a little over a year after reaching the top."
Rating: 10.0
Sentiment: 0.13114583333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ismarizviwrote on 22.05.2024:[10.0] "A man who nearly kill himself several times just to entertain us.Mr foley baby boy really is a goat.From his promo to his character work and matches.Yeah he is not mat technician.But its always about entertain people and earn money"
Rating: 10.0
Sentiment: 0.10000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ultravioletshiroiwrote on 17.04.2024:[10.0] "Great matches, a hardcore legend. Had some of the best and most memorable promos of all time. Gave his life to the sport of professional wrestling. Solid brawler. He has natural charisma and he's so different you can't compare him to anyone else."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: BruceMarcos524wrote on 07.04.2024:[8.0] "Wrestlers who thrive in hardcore, deathmatches or garbage wrestling is an automatic negative to me. People like Nick Gage, Atsushi Onita, John Zandig and Necro Butcher, crazy I know them, knows nothing in the technical aspect of wrestling. Even older guys like Terry Funk, The Sheik and Abdullah the Butcher. I just simply hate this kind of wrestling or whatever you called it. However, Mick Foley is an exemption on this. He uses this kind of environment as a gimmick and not as a kind of wrestling style that he holds on for the rest of his career. He could be technically sounding and flashy and that's how he is different from most of hardcore/ECW/CZW wrestlers. In ring, he is a storyteller, he wouldn't perform moves that is out of the story. One thing I admire him the most is his passionate mic skills. He sounded convincing and makes us believe on what he says. Many people tried to copy his style in terms of in-ring and promo abilities, but Mick outshines them all. His willingness to take excruciating damage on his body and almost try to risk his life for the sake of value and memory. One thing I remember vividly about him is his match with the Undertaker in Hell in a Cell, still the most talked about match 25-26 years passed. No doubt Mick provides us moments that he is even willing to take risky bumps that most of his peers couldn't do. His durability, his toughness and his passion are a testament on how great Mick Foley was on his heyday. His three faces of Foley (Cactus Jack, Dude Love and Mankind) gave equal amount of exposure in the wrestling business and only Mick could provide three alter egos that haven't been stale and worn out after all these years. Truly a legend in the business and one of the most respected performers in wrestling history."
Rating: 8.0
Sentiment: 0.16891025641025642
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: nosajdabeno37wrote on 14.01.2024:"Bang! Bang! And all the other catchphrases Mick has used. Because THAT IS FINAL! Can I rate yet, pretty please with a cherry on top?"
Rating: No rating found
Sentiment: 0.15625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: K too Ywrote on 11.01.2024:[10.0] "Mick Foley was one of the best talkers of all time. He really made you feel what he was saying and was arguably the king of garnering sympathy from the fans. He valued wrestling over his own body and the amount of crazy shit he did is insane. Easily one of the best of all time."
Rating: 10.0
Sentiment: 0.17916666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: thedman0310wrote on 31.12.2023:[10.0] "My personal favorite wrestler ever. Although he didn't invent hardcore wrestling, he damn sure perfected it. Amazing wrestling, amazing promos, and amazing psychology. I met Mick when I was young, and took time out of his day to talk to a ten-year-old kid for fifteen minutes. FOLEY IS GOOD!"
Rating: 10.0
Sentiment: 0.47187500000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: kewf1988wrote on 24.12.2023:[10.0] "Mick Foley was a hardcore wrestler, but unlike most hardcore brawlers, he actually told a story with his matches rather than just hitting his opponents with weapons without any story whatsoever, like New Jack. This made for many MOTY candidates, as he knew how to work with using barbed wire and thumbtacks in big matches, and also could cut a really good promo and was extremely charismatic."
Rating: 10.0
Sentiment: 0.3337662337662337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: greaterdalewrote on 11.12.2023:[10.0] "There's a reason people say Foley is God. He's one of the legit toughest sons of bitches to ever work and was absolutely hardcore. People who only watch WWE have no fucking idea how incredibly violent some of his matches were, but like he really could do it all! Want a dastardly heel? Foley can do that. Want a loveable baby face? Foley can do that. Want hardcore wrestling? Comedy? great workrate? Oh yes Foley can do that. Want a enthralling promo? Well you get the point."
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Bar786788wrote on 29.11.2023:[10.0] "Miss Foleys baby boy is the most unlikely of success stories - and underneath all those scars that make up that tough exterior is a truly beautiful mind and person who deserves the respect of every wrestling fan and everyone to come after him in the business. Its because of him that WWE would be able to defeat WCW in the Monday Night Wars, it is because of him that the Hell in a Cell match exists and is as iconic as it is, and it is because of him that we know professional wrestling even when pushing the limits to the extreme has a heart and a soul. For what he lacked in technical skills he made up for with ingenuity and charisma. The 3 Faces showed his range as a performer and he even had some of the most memorable matches of the later 2000s with the newer generation of Randy Orton and Edge, showing just how selfless he is as he continued to put his body in parallel."
Rating: 10.0
Sentiment: 0.19543650793650794
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: JediSaiyanMaster1203wrote on 17.11.2023:[10.0] "No matter the gimmick, Mick Foley has always knocked it out of the park. Cactus Jack was a fun hardcore style wrestler, his best work was as a heel in ECW where Mick Foley was cutting his best promos and generating the most heat for being the opposite of what ECW stood for, his feud with Triple H is close second for Cactus' best work. Mankind was Mick's darkest character that gave us his most iconic and memorable moments from winning the WWF Championship to being thrown off the Hell in a Cell structure, you name it. Dude Love is his weakest gimmick, but it was still a funny character full of charisma, his feud with Steve Austin was great. Mick Foley is a true legend in the business, deserves all the respect and admiration in the world, one of the best promo artists of all time and was willing to sacrifice his body for our entertainment no matter how unnecessary it was. Lastly, he also has the reputation of being one of the nicest people in the business, a very likable guy."
Rating: 10.0
Sentiment: 0.4068181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MattHallwrote on 28.10.2023:[10.0] "Mick Foley is one of those guys that you can't simply hate. Foley is a hardcore legend, not only a hardcore legend but a WWE legend as well, one of the most iconic faces of the Attitude Era and Ruthless Aggression Era. Dude risked his safety for us fans to be entertained, and made special moments like falling off the Hell In Cell cage or taking a pedigree on thumbtacks. Foley is also a capable worker in the ring and his mic skills were good as well."
Rating: 10.0
Sentiment: 0.057142857142857134
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Gold Fistswrote on 25.07.2023:[9.0] "Have a nice day, Mr. Foley! Because after all the dedication he's left in the ring (or at ringside), he deserves it. Mankind, Cactus Jack, Dude Love, whatever you may call him, is the most famous hardcore/brawler wrestler in history. I sometimes question the bumps he's taken, along with his sanity to have taken them for our entertainment; or in some cases, our terror. The three faces of Foley was a very interesting-if you even count it as a single one-gimmick, and his WWE Championship win as Mankind list amongst the most iconic moments in wrestling history. Mick Foley pained himself all the way to legendary status, and it's a miracle that he's still alive."
Rating: 9.0
Sentiment: 0.4398809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: KKeanelwrote on 16.07.2023:[9.0] "I never was so in regarding his career and contributions to this business, but we have to admit one VERY important thing - none of wrestlers on this planet took as much incredibly dangerous bumps as Mick Foley. Hands down for him that he was doing this to entertain us. God bless he is relatively fine."
Rating: 9.0
Sentiment: 0.04527777777777779
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: devourblastwrote on 03.07.2023:[10.0] "A truly unique performer who was capable of reaching every nook and cranny of what professional wrestling encapsulates. It takes a monumental talent to portray the 3 Faces of Foley and have each one be not only fondly remembered but truly iconic. The amount of highlights in Mick Foley's career is frankly astounding. From Cane Dewey to HBK vs Mankind to 3 Faces at the 98 Rumble to Mankind vs Undertaker to Cactus Jack v Triple H, Mick knew how to truly give us his everything no matter how much damage he would take in the process. The fact that he seems to be one of the kindest people in real life cements his status to me as a true hero of the industry."
Rating: 10.0
Sentiment: 0.28055555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: texasyoshwrote on 18.06.2023:[10.0] "Foley was a guy that made you believe, point and simple. Excellent work in numerous companies, from ECW, WCW, WWF and in places like IWA-Japan. This also is to mention pretty good runs in places like TNA too. Foley may be the perfect everyman babyface, or another great example of a crazed heel. His promos would make you buy in, and his work in the ring would usually be pretty great. A guy that took the bumps that he did would instantly become memorable, but Foley transcended that standard to becoming a legend."
Rating: 10.0
Sentiment: 0.4423076923076923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Giantfan1980wrote on 07.06.2023:[7.0] "I don't think anybody comes close to being on the same stunt man level as Mick Foley. Good on the mic, good in the ring even when it's not hardcore related."
Rating: 7.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: homunculuswrote on 17.05.2023:[10.0] "Arguably the greatest hardcode wrestler of all time. On top of that, oozes charisma and is able to elicit a great crowd reaction from being the perfect underdog babyface. I love Mick Foley so much."
Rating: 10.0
Sentiment: 0.5375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MilkDDTeawrote on 18.02.2023:[10.0] "Nobody ever has or will wrestle the way that Foley did. Watching him perform is like watching a car crash in a film. It's stupendous, and jaw-dropping. Many claim to put their blood, sweat, and tears into their work, but with Foley, you could see him do that before your very eyes. Foley exhibited an unmatched amount of dedication for his passion. He deserves all the respect in the world for the sacrifices he endured in the process of entertaining us."
Rating: 10.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Strong Zero Machinewrote on 15.02.2023:[10.0] "Creativity and charisma 10 he's funny, crazy and a really good guy. He put his body and his soul on the line for the love of pro wrestling. Deserve so much love dude!"
Rating: 10.0
Sentiment: 0.31805555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Burning Back Fistwrote on 30.01.2023:[10.0] "One of the most versatile and adaptable characters of all time. To me he is the reason WWF toppled WCW after his historic WWF title win. No matter the promotion or character he was in Foley gave it his all, even in his late TNA run. Truly one of the most genuine kind hearted wrestlers in the history of the sport. Which no, does not equate to anything in his rating....but he already is a perfect promo from his ECW days, his interviews as Mankind with JR, his promos with Edge and Orton far later on his career? His matches with Sting and Vader in WCW, Terry Funk in Japan, Triple H and The Rock in the WWF and as already stated Edge and Orton in the WWE? When has Mick ever been a bad match or promo during the entirety of his career? Never. So on top of a great career in ring and being one of the most genuine dudes out of the ring? 11/10 for me. Arguably put his body through more then anyone else for the success of the business and others around him rather then himself"
Rating: 10.0
Sentiment: 0.3277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: CommisarRobewrote on 29.01.2023:[10.0] "A hardcore legend, great on the mic and always a great character. Foley has been involved in some of the biggest matches in the industries history. Would also seem to appear that he is a great person outside of the ring that is always important."
Rating: 10.0
Sentiment: 0.56
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheNorthEastwrote on 27.01.2023:[10.0] "One of the greatest storytellers in the history of pro wrestling. The way he we able to captivate the masses through both his matches and promos was remarkable. It shoudl also be noted that his success also came during a time when the unconventional looking wrestler was rarely given a push outside being a build up to job to the white meat babyface. What is still underrated about Foley was his run in IMPACT Wrestling where with new creative freedom he took his promos both serious and comedic to a new level."
Rating: 10.0
Sentiment: 0.2990358126721762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Abo96wrote on 21.01.2023:[10.0] "Ein absolutes Phänomen. Seine mangelnde Athletik machte er mit unheimlicher Leidenschaft für das Wrestling wett. Nur er konnte drei Gimmicks quasi zur selben Zeit verkörpern und zwar so, dass alle gleichermaßen over bei den Fans waren. Promos und Charakterwork unglaublich stark. Bekomme bei seinen Promos heute noch regelmäßig Gänsehaut. Hat seinen Körper quasi für das Wrestling geopfert, wenn man sieht was er seinem Körper alles zugemutet hat, ist es kein Wunder, dass er keine allzu lange Karriere hatte. Aus dieser hat er aber das meiste rausgeholt. Allein der Fakt, dass er mit seinem Look in der damaligen WWF mehrfacher World Champion wurde, zeigt welch ein außergewöhnliches Talent dieser Mann hatte. Trotz seiner vielen Hardcorematches hat bei ihm nahezu immer alles Sinn gemacht und vieles ist nicht mit den heutigen sinnlosen, überdrehten Materialschlachten vergleichbar."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: benh2wrote on 13.01.2023:[9.0] "Few people are more beloved than Mick Foley. Obviously had no star quality but he succeeded despite that which doesn't happen very often. A weird charisma and excellent promo, you'd always listen and get on board with what he said. In the ring his psychology was tremendous and that was often overlooked because of his insane bumping. Personally I think his best in-ring work was in WCW and best promo work was in ECW but he constantly managed to stay relevant after the injuries caught up to him. A unique talent in the business."
Rating: 9.0
Sentiment: 0.2538888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: UltraNano54wrote on 03.01.2023:[7.0] "He is good and a legend but for me, he needed gimmicks to be interesting. I cannot think of a single match of his that I liked that didn't feature extreme rules and weapons so for that, I cannot rate him too highly."
Rating: 7.0
Sentiment: 0.29392857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: mano007wrote on 31.12.2022:"Man has a lot of charisma and a hardcore legend of the business. But people view him in rose tinted lens imo."
Rating: No rating found
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: markoutssjwrote on 28.12.2022:[9.0] "I loved Cactus Jack, Dude Love, Mankind, and Mick Foley. He was truly one of the best of his time, helped make a bunch of stars while also becoming one of the most loved and respected wrestlers in the business. I think what takes him away from being a 10 is the matches tried having at the end of his career when he was broken down and was just really bad to see. Even then the man is one of the most kind and genuine people in the business today and I think anyone would die to have the career he did, his body is paying for it but he will be respected and loved forever."
Rating: 9.0
Sentiment: 0.36880341880341894
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HBaumerSmithwrote on 11.12.2022:"10.0 the G.O.A.T, the Ali of Wrestling, the Gretzky of the ring. This man. Mick Foley, you are the greatest. Only Mox comes close to you. You gave your literal lifeblood for the love of this sport, and you're #1 in my book."
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: khalekwrote on 07.12.2022:[6.0] "I think he is overrated. He has definitely charisma and mic skills, but ring skills are too average for main eventer."
Rating: 6.0
Sentiment: 0.005555555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MainEventMasterwrote on 02.12.2022:[8.0] "Mick Foley was good hardcore wrestler, he was good wrestler, he was a FANTASTIC promo, and is one of the most beloved souls in the history of wrestling."
Rating: 8.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: darbyrangerplatewrote on 14.11.2022:[10.0] "FOLEY IS GOD. There is so much to write about Foley. However, after all that has been written, the only conclusion we will reach will be what I have just written. Still, I want to scribble a thing or two. Despite being such a kingmaker and losing big matches, he is not known as a loser today, but made a big splash to be referred to as WCW Killer, King of the Deathmatch, Hardcore Legend and even God. Even when you look at it as a match, you will see that there is no name it can't beat. This is something surprising. Something that surprised even me as a huge fan. Thanks to the anomaly in his body and his extraordinary constitution, he saw these days. Sometimes I think that losing consciousness in matches (as a work) causes very absurd results because his moments of unconsciousness are quite rare, one of which is his famous match with the Undertaker. It's actually more of a compliment than a negative side. He's the one who provides it. Because he's such a strong son of a gun! May God grant him a long, healthy life and have a great time with his family. I'm sure Dewey, Noelle, Mickey and their other children have a lot of tactics to see and teach their grandchildren. And, I hope 80% of what he says in the latest news isn't. Her sitting in a wheelchair will devastate me and her fans."
Rating: 10.0
Sentiment: 0.21521739130434783
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Conquistador37wrote on 09.11.2022:[10.0] "One of wrestling's best stories (probably *THE* best). One of wrestling's best personalities. His contributions to wrestling history are collectively gargantuan in their scope. Gave of himself - more than any other, unquestionably. Put him on your Mount Rushmore."
Rating: 10.0
Sentiment: 0.5541666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: GM56 Championwrote on 23.09.2022:[10.0] "Magnificent on the mic, magnificent in hardcore matches and magnificent as a character. Has had many legendary bouts with the likes of Orton (which personally is my favourite one of all time), Undertaker, Triple H, Edge etc. Not a technical wrestler, but a hardcore wrestler who has sacrified his own body for our joy and for putting over wrestlers who are very well known and respected throughout the wrestling community and in the WWE itself."
Rating: 10.0
Sentiment: 0.61
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheOneAndOnlyCactuswrote on 22.09.2022:[10.0] "While his reputation as a hardcore stuntman is what people remember him for the most, I think he was also a man with a brilliant mind for the business, and that's what I like the most about him. I'm surprised he didn't become a movie actor after wrestling, as he is so gifted, so captivating. Plus he could go in the ring, he was more than just a stretch-o-holic. One of my all-time favorites."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: GwenCube64wrote on 06.09.2022:[9.0] "a nostalgic wrestler for me. an incredible hardcore talent, character trailblazer and icon of the 1990's wrestling landscape."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: crs285wrote on 05.09.2022:[10.0] "One of the nicest and most dedicated guys in the history of professional wrestling. Great in the ring and on the mic. Risked his body every night for the fans. Brought hardcore wrestling to new heights"
Rating: 10.0
Sentiment: 0.38409090909090904
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: danzgalliwagwrote on 08.08.2022:[10.0] "Say what you will about his in-ring work, which is unique and memorable in a violent, can't-look-away kinda way. Say what you will about his ability to cut a promo, which is off the fucking chain. But if there's one thing about Mick Foley that separates him from other wrestlers, it's how much he elevated young stars to a level of greatness that they didn't reach until they went toe-to-toe with him. Undertaker hadn't had a legit rival in years until Mankind stepped up in the mid-90s; Triple H wasn't taken seriously until his blood-feud with Foley; Randy Orton was just some cocky upstart until his hardcore match with Foley; Edge would've never been viewed as the icon that he is if not for THAT flaming table spot. Sure, a lot of this is speculation, but it can't be ignored the affect that Foley had on these guys' trajectory after being in the ring with him. Foley is one of the most selfless men in wrestling history, and he should be thought of as one of the greatest of all time."
Rating: 10.0
Sentiment: 0.09305555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: cMa7oswrote on 20.07.2022:"Although hardcore wrestling is not my favorite type of wrestling, I still love Mick Foley and his characters, who are likeable, mainly due to their humane side. Even if his style of wrestling isn't too pleasing to the eye, he can tell a story like no other. Very charismatic and entertaining. 9/10."
Rating: No rating found
Sentiment: 0.34791666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: zachattack2023wrote on 11.07.2022:[10.0] "I think that mick foley is probally the greatest hardcore wrestler their have ever been he is also one wrestler that has had runs in wwe, wcw, ecw, japan, and tna he is just a fantastic wrestler and one who truly love what he does."
Rating: 10.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Aliquickkwrote on 19.06.2022:"One of the best hard-core wrestlers of all time, and was pivotal in putting wrestlers like Triple H over in amazing matches along the way. His brawling was believable, authentic, and grimson. He wasn't the best talent to grace the ring but he maximized his talent and whoever he was in the ring with along the way. He is worth of an 8-9 rating, leaning towards 9."
Rating: No rating found
Sentiment: 0.6285714285714284
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: PunkPariahwrote on 11.06.2022:[10.0] "If you don't like Mick Foley then I don't trust you as a person. Rule of thumb. Dude is so nice, charismatic, and gave his everything to the business. What a legend."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Residentwrote on 08.03.2022:[10.0] "One of the best brawlers of all-time. Few can take as much punishment as Foley, the IWA Japan King of the Deathmatches from back in 1995. He also has a ton of charisma and is awesome on the mic. I enjoyed his matches in ECW and WCW and in WWE as well."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: PavelDragunovwrote on 12.02.2022:[10.0] "Hardcore icon! How many insanely cool moments I remember with Mick, it's impossible to count even with me. A huge number of memorable stories and confrontations, he could look interesting both in the role of a villain and in the role of a good man. Mick has enough images and each one is remembered for a lifetime. The quality of the fights was always at the highest level, Mick gave his all in the ring. His fights with Rock, Tripel H, Undertaker and many others are still in his heart. How many cool companies he visited, leaving his own unique mark in each. And how sincere Mick is on the microphone, he is really interesting when he speaks, and I really want to listen to his speeches! A unique appearance that did not interfere with his unique images and did not constrain him in the ring! Thanks to Mick Foley for His Amazing Career!"
Rating: 10.0
Sentiment: 0.3826041666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: GriffinXwrote on 09.02.2022:[10.0] "One of the biggest stars to do it and really the most unlikely guy to be as big as he was. Foley had some of the most compelling moments and matches in wrestling"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: rishabhwrote on 31.01.2022:[10.0] "Probably my favorite wrestler of all time. He nailed every role he played, he could be the sadistic Mankind, the fun dancing Dude Love and he could also just be a hardcore wrestler who did crazy stuff, Cactus Jack. The amount of bumps this man took is insane and I don't know if there is someone close. And he isn't someone who can just do crazy shit he can tell a great story and whatever bump he took made sense and wasn't there just because. His promos were also very good and he will always get you invested in his work. The number of wrestlers he helped in their early career, Austin, The Rock, Edge, HHH, etc. the list goes on and on. He was a true star maker. There's no doubt that the Hardcore Legend gets a full 10. BANG BANG"
Rating: 10.0
Sentiment: 0.11750000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: OnlyHalfTheEffinShowwrote on 20.01.2022:[10.0] "For the sheer amount of punishment Mick has endured alone, never mind his stellar in-ring work, promo ability and comedic skills, he deserves a 10. There exists perhaps no wrestler in the history of the sport who put their health and wellbeing on the line so often and so selflessly, as it was often done in the putting-over of other stars. No man has earned the moniker of "The Hardcore Legend" as much as Mick Foley has."
Rating: 10.0
Sentiment: 0.08125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: benny5bellyswrote on 12.12.2021:[9.0] "The things that man put his body through are insane. I love his run as Cactus Jack in early 90s where he always put on an incredible performance with his matches often being the highlight of big shows."
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: CMX-7wrote on 04.11.2021:[10.0] "His career during the Age of Attitude and his feud with the Undertaker and the Triple H is a classic of the time, thanks to him, WWE Win WCW in the rating war! he is a very charismatic and epic wrestler) Hardcore legend in all its glory)) I miss him!"
Rating: 10.0
Sentiment: 0.42833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: IBladeDailywrote on 23.10.2021:[10.0] "His ability to tell layered stories with ridiculous set-ups is still something to behold. I first saw Mick in his first run in WCW in 89-90, was instantly drawn to him and terrified of him. As I was really young, I had no idea why he left or where he went but found him again on ESPN in Global where he was part of The Cartel. It wasn't much but when he returned WCW in late '91, I was very excited. His feuds with Sting and Ricky Steamboat were a lot of fun. His matches with Vader were unbelievably stiff, I had never seen anything like it before and I ended up genuinely worried for him. His ECW run, particularly his heel run, showed the world that Mick Foley was no hardcore hack. He was a master storyteller. Loved his matches against Terry Funk and Sabu. When he finally appeared in WWF, he was given some strong booking, getting the upper hand against the Undertaker many times. By the time he developed the "3 Faces of Foley" I was already a huge fan. His falls in the HIAC match with Taker have somewhat defined him amongst people younger than me but he was a vastly underrated worker and excellent wrestling personality long before that."
Rating: 10.0
Sentiment: 0.1755952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: aggeLwrote on 02.10.2021:[10.0] "Foley is just insane. The amount of extreme moments he has made in the ring that can never be replicated is insane. His promos are also insane, and he has a very well deserved spot amongst wrestling legends. If you want to get someone hyped about wrestling, just show them Undertaker VS Mankind on king of the ring 98, or the edge vs foley match at wrestlemania! I feel like he still had so much more to offer in-ring, so it's a shame his career ended in 2010, but that's still a really really good run with some of the most iconic moments in wrestling history. One of the best wrestlers in the world hands down, gets a solid 10 and a half from me"
Rating: 10.0
Sentiment: 0.00021367521367521077
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: eltetechoriwrote on 22.09.2021:[9.0] "A wrestler who marked an era, never better said, the Attitude Era, where his great fight against The Undertaker will be remembered forever, what a good job Mick Foley has done for the wrestling industry."
Rating: 9.0
Sentiment: 0.3375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MrIslamywrote on 12.09.2021:[9.0] "He is pretty good in the ring but deserves a high rating for his dedication to his characters, no other wrestler could handle and play so many characters at the same time and pull it off but he does it."
Rating: 9.0
Sentiment: 0.27875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: CoolKylewrote on 28.08.2021:[10.0] "One of the most underrated wrestlers of all time. Too many people remember him as the hard core guy, which is very well deserved but people forget about his top tier promo ability and being able to play the given character maybe better then anyone I have ever seen."
Rating: 10.0
Sentiment: 0.34404761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: WhatTheHeckleswrote on 01.08.2021:[10.0] "Mick Foley is BY FAR one of the biggest legends of the wrestling industry, and for good reason. He was great on the mic, got over with the fans with just about every single one of his personas, and truly put everything on the line for the sake of putting on a good match. It could be argued that his ring skills weren't fantastic, but not every good wrestler needs to be a technical masterpiece with tons of moves, because wrestling as a whole is more then just moves, it's about storytelling and character work as well, and Mick Foley nailed it in that aspect. BANG BANG!"
Rating: 10.0
Sentiment: 0.41535714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: BrayanLaPrewrote on 13.07.2021:[10.0] "A true professional wrestling icon. One of the definitive stars of The Attitude Era, as well as a driving force of professional wrestling outside of WWF during the 1990s. Not only was Mick Foley the master of the high spot, but he was a tremendous storyteller and an underrated wrestler. Foley is also one of the greatest mic-workers of all time. Countless classic matches, including bouts with The Undertaker, Shawn Michaels, Triple H, Randy Orton, Edge, and Terry Funk. A five-star wrestler who left an undeniable mark on the industry. 10/10."
Rating: 10.0
Sentiment: 0.20090909090909087
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: thebigmilkmanwrote on 28.06.2021:[6.0] "Foley is a really good wrestler and one of the most selfless men in wrestling. Which may have been his downfall because he could have been even bigger"
Rating: 6.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Mick was one of the very great characters in the history of the sport. His mic work was great and his charisma was fantastic. He was, uh, not the most athletic guy you'll ever see in the ring, but somehow he was able to pull out some truly spectacular matches and was more often than not one of the strongest workers in the WWE during his prime. He was truly a great storyteller in the ring."
Rating: 10.0
Sentiment: 0.6375000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MrJabroniCamelClutchwrote on 01.06.2021:[10.0] "One of the great wrestlers of the 90s and an icon of the WWF Attitude era , a pioneer of the hardcore ultra violent style of wrestling , had many classic matches with the likes of The Undertaker , HHH, HBK , Terry Funk and many others"
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ALFwrote on 13.05.2021:[6.0] "Müsste man rein vom Charisma und Unterhaltungswert auf 8 oder 10 Punkte bewerten, ist aber meiner Meiner Meinung nach sehr eindimensional, was das Im-Ring-Können angeht. Eigentlich sind es halsbrecherische Stunts, keine direkten Wrestling-Manöver (Hell in A Cell vs. Taker). Außer Härte hat er in seinen Matches im Ring nichts, was mich begeistert. Seine rein wrestlerische Bandbreite bietet nur beinahe schon Verstümmelungsaktionen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: mjp28wrote on 24.04.2021:[2.0] "The man was a trailblazer, but not in a good way. He is the exact kind of wrestler no reasonable person should be able to suspend their disbelief to the point that he could be a world class fighter, let alone champion. To me, he was the first of long line of unconvincing and silly wrestlers which would takeover the wrestling across the subsequent years. His look just screamed 'how is he here, why is he even a chance in this match', and all his matches pretty much came down to a bunch of boring brawling, 'hardcore' spots, and putting his hand down someone's 'throat' (this has to be the single most stupid move in all of wrestling - who in their right mind believes that Foley or anyone could withstand the bite force of even an average man). Yes he does deserve credit for taking some big big bumps, not my thing but mad respect nonetheless, some of those bumps were insane. That said, thumbtacks and barbwire bats have to be amongst the most childish and silly things I have seen in a wrestling ring. As if thumbtacks or barbwire on a bat make any difference to the blunt force impact of landing on the ring or being hit by a bat. If Bret Hart, Kurt Angle, Kazuchika Okada, etc, make you believe Wrestling is real; Foley was and is their complete antithesis."
Rating: 2.0
Sentiment: -0.03470804988662131
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: AnBwrote on 16.04.2021:[10.0] "Foley's the best actor in the history of the WWF. Fit perfectly in pretty much whatever role he had to play. I guess a "negative" is that I always felt kinda worried seeing him in the ring, because you never knew how much damage he'd end up having inflicted on himself. I wasn't that over on Dude Love though."
Rating: 10.0
Sentiment: 0.32142857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Kungwrote on 27.01.2021:[10.0] "There are few pro wrestlers from the 90s who I respect more than Mick Foley. He could be the most beloved hero you could ask for and then also be the most hated villain. He was able to seamlessly dissolve into a bevy of different characters, each of which had its own quirks and intricacies that made them all memorable. I know I'm not the only one on here who would say that Mick Foley was born to be a professional wrestler."
Rating: 10.0
Sentiment: 0.22307692307692312
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Old ride long linewrote on 18.12.2020:[10.0] "Love reading all the love foley gets! And I agree anything less then a 10 is complete disrespect. I don? t think it? s possible for anybody to love wrestling and the fans of wrestling more than mick foley. Hell in a cell with undertaker at king of the ring 98? is probably the most famous wrestling match in history only rivaled by Andre hogan at wrestlemania 3. And if falling off the cell and then through the cell wasn? t enough to prove it he did it again vs triple h at no mercy 2000. He pulled of three gimmicks, sometimes in the same night, and sometimes even in the same match (check out royal rumble 98). Him along with rock taker hhh and Austin are the reason wwe survived and thrived during the attitude era. His matches with Terry funk and Abdullah the butcher in Japan are legendary. He sacrificed everything for the business and I can only hope that he feels all of the love that a large percentage of us have for him. First ballot hall of famer, personal top 10 favorite, and quite possibly GOAT material depending on wether or not your criteria includes passion for the business. Thank you FOLEY!"
Rating: 10.0
Sentiment: 0.25302579365079364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: inauricwrote on 06.10.2020:[10.0] "Greatest character worker of all time, most transformative worker of all time, one of the best promos to ever do it, one of the best brawlers and hardcore specialists in the game, his passion and intensity elevated countless matches and moments to legendary status, and he worked to get countless wrestlers we know and love today over. Actual GOAT."
Rating: 10.0
Sentiment: 0.45999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Mr Wrestlemania 97wrote on 15.09.2020:[10.0] "The most underrated wrestler of all time. He gave us some of the best matches, moments and promos in the business to the point where it's one of the best resumes a WWE figure could have. Very under-appreciated."
Rating: 10.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: kcraig316wrote on 09.09.2020:[10.0] "There have been times in my life when I've drifted away from following wrestling. Mankind was one of the wrestlers that brought me back in the 1990s. I had lost my ability to watch wrestling when it went exclusively to cable. Then I went to college and had cable again. I loved the insanity, the unpredictability, the risks he would take. Some criticize the HIAC match as being short and not having much actual wrestling. I hate that. Wrestling is more than wrestling. That's what makes it great. It's a spectacle, it's a stunt, it's a show, it's wonderful. Foley and Taker's HIAC isn't about the wrestling. It's about a man meeting his match and still not backing down."
Rating: 10.0
Sentiment: 0.20444444444444448
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Donniewrote on 28.07.2020:[10.0] "Mrs Foley's baby boy is my GOAT. He's the reason i love wrestling. He embodies everything that makes this bullshit worth watching and loving. Its hard to put it into words sometimes, he's just that special."
Rating: 10.0
Sentiment: 0.2930952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Khalid Acewrote on 15.06.2020:[6.0] "I like & have so much respect for the man for what he did to his body to put up good matches but his in ring work is a little poor."
Rating: 6.0
Sentiment: 0.07812499999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: WCWStingwrote on 05.06.2020:[10.0] "Egal mit welchem Gimmick er überzeugt einfach immer und hatte im Ring auch echt was drauf und Lustig konnte der auch sein hatte alles was man von nem Wrestler haben will. LEGENDE"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: JuWFEAEwrote on 16.05.2020:[10.0] "Mick Foley war schon immer ein sympathischer Typ. Seine Promos waren ginial und sind es heute noch. In Ring konnte er mich auch überzeugen. Durch sein allgemeines Hardcore Gimmick hatte Foley auch sehr viel Ausstrahlung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Wrestlefan20wrote on 12.05.2020:[10.0] "Can play a multitude of roles, ranging from comedic to serious and not lose any of his credibility. Pretty entertaining on the mic. Very good as both a heel and a face. Can transition from the mid-card to the main event seamlessly. Also a great wrestler."
Rating: 10.0
Sentiment: 0.34190476190476193
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TNBG2381wrote on 03.04.2020:[10.0] "Mick Foley is the definition of sacrificing everything to please people. Foleys hardcore style is legendary and he managed to get 3 gimmicks over at one time. His descent off the hell in the cell is iconic and his classic rivalries with the likes of Triple H, The Rock, and The Undertaker put him at the top tier of the professional wrestling business. Mick Foley has got to be one of the most selfless human beings to ever step foot in the wrestling business and that? s a rare quality in the wrestling world. 10/10 everyday! Thank you Mick Foley!"
Rating: 10.0
Sentiment: 0.3060185185185185
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: AAA3000wrote on 07.03.2020:[8.0] "Freu mich immer wenn er auftaucht. Man bereut es fast nie. Er ist vielleicht nicht der beste Wrestler, aber definitiv ein unterhaltsamer."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Conorwrote on 04.03.2020:[10.0] "One of the greatest of all time. Yes, he probably took more serious bumps than anyone else in the business, but this makes people forget that he was a master storyteller and had an above average work rate. Not only did he have an amazing character; he had 3 of them. Foley is one of those rare wrestlers that will always be beloved by the fans because of how much he gave the business. To top it all off, he has been a part of some of the most memorable moments in the history of the sport. One of my favorites ever."
Rating: 10.0
Sentiment: 0.3320512820512821
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: JEK 1991wrote on 21.11.2019:[10.0] "The man is a hardcore legend. Very comical and creative in his characters that he portrayed. He confused many by mixing his gimmicks from Dude Love to Cactus Jack to Mankind.  A pioneer for hardcore wrestling. He was great in Japan, WCW, ECW and WWF."
Rating: 10.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: thebuttonboywrote on 18.08.2019:[10.0] "Foley was fantastic at every facet of pro wrestling. I always enjoyed his promos. They range from intense to hilarious. The main event at Mind Games is truly a gem of a match, Showcasing his in ring psychology. Foley seamlessly transitioned into each of his separate personas, Making each character unique and believable. Foley was a beyond a great hand, he was also a great tooth and a great ear."
Rating: 10.0
Sentiment: 0.4674242424242424
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: pappahousewrote on 06.08.2019:[7.0] "Ein absolut sympatischer Typ, immer 100%, immer hardcore unterwegs, übelst eingesteckt in seiner Karriere. Ich glaube die Matches gegen den Undertaker stecken ihm heute noch in den Knochen, völlig verrückt. Mankind top und lustig, Dude Love dämlich, Cactus Jack hardcore. Wrestlerisch mit Sicherheit nicht der Größte."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[10.0] "Did so much for the industry in multiple different ways. In my mind, he shined brightest as Mankind with his initial feud against the Undertaker. But his character development didn't stop there & we saw him in an array of lights as he clashed in so many memorable feuds. Part of me is not too crazy that he really fast-tracked backyard wrestling & the abundance of hardcore in the mainstream. But I think that would have come eventually with or without Mick. Foley is more than just another hardcore wrestler."
Rating: 10.0
Sentiment: 0.14444444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ZestyZuluWarriorwrote on 28.06.2019:[10.0] "What is there to say about Mick that hasn't already been said here? An absolute hardcore legend, the man has LITERALLY given body parts and nearly his life for the business. Despite all the harsh years or wear and tear on his body he still was able to put on great matches with the likes of young Orton and Edge. His promo skills are one of the best in the business and I would recommend them all. He can play face or heel with ease and can definitely be in the "G. O. A. T" group."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: zephyrwrote on 20.03.2019:[9.0] "I used to think that all Foley had going for him was his willingness to completely destroy his body for people's entertainment. Turns out he was actually a really competent brawler. Plus great promos. Honestly much better than I remembered."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Der Commanderwrote on 11.03.2019:[10.0] "Mick Foley ist DIE Hardcorelegende. Egal ob als Cactus Jack, Mankind, Dude Love oder als er selber. Er hat alle Gimmicks sehr überzeugend gespielt. Einer seiner legendärsten Matches wird wohl das Hell in a Cell Match gegen den Undertaker 1998 sein. Dieses Match alleine begründet schon warum Mick Foley so legendär ist. Und gerade auch am Mic konnte Foley gute Promos abliefern. Definitiv einer der größten Legenden im Wrestling aller Zeiten und immer sympathisch! "Bang! Bang! " "And have nice day! ""
Rating: 10.0
Sentiment: 0.86328125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Steamboat2511wrote on 29.11.2018:[9.0] "Mick Foley ist eine Hardcore-Legende. Für mich, als WWE-Fan, ist er bedeutender als Funk und Co, da Foley unzählige Runs in der WWE hatte. Technisch keinesfalls der beste Wrestler, beherrscht er doch sein Handwerk und kann durchaus auch in normalen Matches überzeugen. Innerhalb der WWE hält sich sein Hardcore-Engagement, auf Grund der Ausrichtung der Liga, freilich in noch verträglichen Grenzen, auch wenn atemberaubende Spots und Matches (Mankind-Undertaker, Foley-Edge etc. ) bei ihm zur Tagesordnung gehörten. Foley ist jedoch mit einer so großen Persönlichkeit (und im Endeffekt vier genialen Charaktären) ausgestattet, dass er mich meist auf voller Linie überzeugt hat. Hinzu kommen wirklich starke Mic-Skills und eine Grundsympathie für diesen Mann, der auch in "Beyond the Mat" hinter die Kulissen blicken lässt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: RatingsMachinewrote on 25.10.2018:[10.0] "As well as being a prolific brawler, Mick Foley is one of the best on the mic that wrestling has ever seen. His anti-hardcore promos in ECW were of a calibre few have been able to come close to matching."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Oliver95xwrote on 27.09.2018:[8.0] "Eine Hardcore Legende und sehr sympatisch. Er hat Charisma und hat seinem Körper mehr zugemutet als nötig."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Chrisxyzwrote on 30.08.2018:[8.0] "Absolute Hardcore Legende. Er hat in seiner ganzen Karriere immer sein Körper aufs Spiel gesetzt. Und so hat er viele epische Momente geschaffen. Wrestling technisch nicht mein Lieblings style aber man muss einfach wertschätzen was er getan hat"
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Dragon Fighterwrote on 26.02.2018:[10.0] "The hardcore legendary, one of greatest wrestlers in wwe here. An absolutely passionate and magnificent master when it comes to microphone work. He cut some of the best promos I have ever heard. His character is versatile and entertaining. His charisma is also off the chart great. Sure he may not the best ever stepping into the ring but he can tell stories and have so many memorable matches. A truly GOAT at least in wwe."
Rating: 10.0
Sentiment: 0.6208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: jajt1989wrote on 14.02.2018:[7.0] "Loved watching him do what he did best and that was entertain the crowd and lay it all down in the ring, yes he might not of had the best move set, but every time he set foot in that ring something entertaining happened and it kept my eyes glued to the tv."
Rating: 7.0
Sentiment: 0.6088888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: A-Doublewrote on 06.02.2018:[7.0] "Foley ist ein Meister harter Bumps, und jemand der Schmerzen gut erträgt. Durch seinen unverkennbaren Look und seine verrückten Promos einer, den man nicht vergisst.  Als Wrestler aber halte ich ihn für unterdurchschnittlich. Man sollte keine Technik von ihm erwarten. Zudem basieren eigentlich alle seine denkwürdigen Matches nur auf spektakulären Spots, die einfach die Grenze immer weiter getrieben haben.  Der Unterhaltungswert ist trotzdem groß und er sticht definitiv hervor."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Viper99wrote on 01.02.2018:[10.0] "Hart Mick Foley zu raten da ich sehr gerne das Gesamt-Package rate. Foley hatte 4 verschiedene Gimmicks welche alle Unterschiedlich waren und trotzdem Genial rübergebracht wurden, dass man sich fast schon fragen kann, welches denn eigentlich schon sein "Haupt-Gimmick" war. Allein das macht Mick Foley schon besonderst, dass er einfach durch sein Charisma und sein Micwork 4 verschiedene Charaktere spielte und diese vorallem Interessant hielt. Er hatte nie den besten Look, aber das hat er bei seinen Gimmicks auch nie gebraucht. In Ring einer der stärksten seiner Era und von vielen sehr Underrated. Er hatte eine Unglaubliche Psychologie in und Außerhalb des Rings."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: CHN325wrote on 31.01.2018:[9.0] "Was never the most gifted wrestler in the world, but rarely was he outworked. Gave his body to the business for the sake of entertaining the fans and was great on the mic. Earned every opportunity he was ever given. Transcended the the hardcore style and title of Hardcore Legend to just simply being a legend."
Rating: 9.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: taabr2wrote on 11.09.2017:[10.0] "A favorite of mine. Mick Foley is the greatest brawler in wrestling history. He is also has an amazing understanding of what works in wrestling. Foley was able to get himself pushed to the top thanks largely due to an overwhelming crowd support from his constant suicide attempts (at least that is what it seemed like sometimes) for our entertainment."
Rating: 10.0
Sentiment: 0.3375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Lucubangetwrote on 21.06.2017:[9.0] "One of my favorite performers when i was a kid in the late 90s. I was really into hardcore back in the day thanks to Cactus Jack and Mankind."
Rating: 9.0
Sentiment: 0.12000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: LuchaFan28wrote on 28.05.2017:[10.0] "hey verdammt wie kann hier überhaupt ne andere Wertung als 9 oder 10 zustande kommen das ist einfach ne F***ing Legende er hat so geile Sachen gemacht. Er ist einfach der Hammer die Hardcore Legende schlecht hin."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: warmongerswrote on 04.05.2017:[10.0] "Couldnt not give Mick Foley 10 out of 10. One of the biggest Overachievers in wrestling history and my first and most complete wrestling hero."
Rating: 10.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Blood Pumpwrote on 30.03.2017:[8.0] "These last two years have not been a good representation for this guy, but lets be real about this man. Mick is pound for pound one of the bravest heartiest wrestlers to step in the ring, more so then Terry Funk and believe you me that's saying a hell of a lot. Mick, for better or worse, has mangled his body for our entertainment since the start, but to call him just some glorified stuntman would be a mistake. One must ignore his absolute classic with Shawn Michaels or Sting, both which showed the mans staggering level of psychology, to call him such a thing. Yeah he thrived in the hardcore but he could get the crowd invested."
Rating: 8.0
Sentiment: 0.2074074074074074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Owenwrote on 28.02.2017:[10.0] "Is there any doubt what rating he deserves? Anything less than a ten would be ridiculous. Tough, Charismatic, good on the microphone and creepy as hell when he wanted to be. The man is a living legend."
Rating: 10.0
Sentiment: -0.026984126984126982
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: coolserazwrote on 18.02.2017:[9.0] "Incredibly gifted on the mic with his promos - funny and goofy for Dude Love, insidiously creepy for Cactus Jack and balls-to-the-wall insane for Mankind. Great brawler and all but killed himself for the people. Happy to see him doing better today but you can see the toll taking bumps on concrete and thrown off cells has taken on poor Mick."
Rating: 9.0
Sentiment: 0.15833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring: Er ist die wahrscheinlich größte Hardcore Legende, mit unzähligen Klassikern, der auch in normalen Matches ok war aber deshalb auch nur 9/10 (50%) Punkte.   Promos/Schauspieltalent:Einer der besten allerzeiten, seine Paraderolle war der Psycho Sadist Mankind. 10/10 (25%)  Charisma/Statur/Gimmick:Er hatte paar Knaller Gimmicks mit Mankind und Dude Love als Cactus Jack aber nur OK. 7/10 (25%)  Sind dann insgesamt 8, 75 Punkte für The Hardcore Legend.   = 9 Punkte"
Rating: 9.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Wrestling Foreverwrote on 19.01.2017:[10.0] "Mag er heute schon sehr nervig sein. Er war sehr wichtig damals in der WWF Attitude Ära und im Monday Night War gegen die WCW. Was er auch schaffte er wurde mit allen Gimmicks außer Mick Foley WWF World Tag Team Champion da am meisten als Mankind das war auch sein erfolgreichstes Gimmick in der WWF. Auch er war mal dünn hatte schon in den 80er ein WWF Tryout wenn man ihn da sieht denkt man gar nicht das er das war. Auch schon vor seiner WWF Zeit ein Mann der anders war. Schon in der WCW ein harter Typ starke Fehden da gegen Sting und vor allem Vader. ECW Zeit auch stark hier als Cactus Jack auch einer der das Hardcore im Amerikanischen Wrestling geprägt hat. Er ist für viele Hardcore Wrestler von heute ein Vorbild. Egal welches Gimmick Mick hatte er kam an. Eine Legende."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HeadCheesewrote on 02.12.2016:[10.0] "If their was ever anyone over a ten it probably be Mick Foley. One of the promos, one of the best brawlers, one of the best sellers, Mr. In Your House,  kinda creepy with fandom of Santa, an inspirational wrestler, and has been in some of the most notable matches in the history nearly 104 year history of pro wrestling."
Rating: 10.0
Sentiment: 0.3875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: NastyYaffawrote on 02.12.2016:[8.0] "One of the most likeable guys in the business, a very hard worker who was not afraid to take some big risks. Very good in the ring, and a contender for the best promo ever too."
Rating: 8.0
Sentiment: 0.38847222222222216
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Puro Spiritwrote on 02.12.2016:[10.0] "A icon in the wrestling business that became famous for dangerous bumps and putting his body though all kinds of shit for the entertainment of us as fans ..... has had brutal classics with his mentor Terry Funk , HHH , Randy Orton and many others .... a special performer."
Rating: 10.0
Sentiment: -0.05297619047619048
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: SomeDudeOnTheInternetwrote on 16.11.2016:[10.0] "Hätte Wrestling ein weiteres Synonym dann wäre es Mick Foley. Die härtesten Matches in der WWE/WWF Geschichte und prägte die Attitude Ära und die Hardcoreszene mit. Er ist nicht für ein Technikspektakel im Ring bekannt, umso besser gefielen mir seine Gimmicks, micwork und tonnenweise Charisma und natürlich die Tatsache, dass er mit seinem Hardcorestil gezeigt hat wie sehr er Wrestling liebte. Die Fehden sind echte Klassiker genauso wie die HIAC-Matches gegen Triple H und Undertaker und viele weitere Matches gegen HBK, Orton, Ric Flair... usw. Foley is Legend, Mankind is Legend, Cactus Jack is legend, Dude Love is legend und vor allem Mr. Socko is legend. "Bang Bang""
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: SweetestThing2wrote on 11.08.2016:[9.0] "As much as i have tried to deny it over the years i can't deny it any longer, Mick Foley is one of the greatest of all time. From Cactus Jack to Mankind to Dude Love, It didn't matter the man was a wrestling genius. The Man's mic skills are unparalleled, especially his promos in ECW. He was an intense performer in every promotion he was involved in. What i also love about Foley is he had the look for the character without having the look you are supposed to have as a wrestler. He was against the grain and made it work for him, an average Joe who became a successful professional wrestler, a best selling author and Santa Clause all without selling out. His Feuds with the likes of the Undertaker, the Rock & Triple H are among the greatest of all time with unforgettable matches and moments. He is a big part of Monday Night Wars and the Success of Raw is War and he just seems like a down to earth really nice guy and on top of that he made Noelle Foley so we can thank him for that. It is a Success story that should have never been but was and thank goodness for that. Mick Foley is God!"
Rating: 9.0
Sentiment: 0.38361448493027434
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Coltwrote on 09.07.2016:[10.0] "Ich weiß echt nicht was ich schreiben soll. Also fasse ich mich jetzt ganz kurz: Foley ist eine Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: NHJ2190wrote on 22.06.2016:[9.0] "Eine der prägenden Figuren der WWF in den 90er und Anfang 2000er Jahren. Unglaubliche Matches geliefert, mit absoluter Härte und vielen WTF Momenten. Zusätzlich charismatisch bis in die Haarspitzen und ein überragender Micworker. Es würde ihm kaum gerecht werden einzelne Matches herauszuheben in denen er überragend geworked hat. Allerdings möchte ich zwei nennen: Das HiC Match gegen HHH 2000 sowie das Match gegen HBK 1996 bleiben bei mir in Erinnerung und sind bis heute absolute Klassiker."
Rating: 9.0
Sentiment: -0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: JordanACEwrote on 18.06.2016:[10.0] "Probably the greatest in history. Foley, Dude Love, Mankind, Cactus Jack... He just kep re-inventing himself and it worked every time! The sacrifices he made for this buisness are unmatched. The guy I respect the most in this, or any other buisness!"
Rating: 10.0
Sentiment: 0.4921875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Sick Lebowskiwrote on 05.06.2016:[9.0] "Im Ring natürlich nicht dafür bekannt, jedes Match ein Technik-Feuerwerk abzuliefern. Aber er legt in nahezu jedes Match und jede Promo sein ganzes Herzblut, was teilweise zu sehr grandiosen Momenten führen kann. Darüber hinaus scheint er mir ein sehr netter, umgänglicher Mensch zu sein. Man hört zwar hin und wieder, dass einige glauben, seine nette Art sei nur berechnend und gespielt, aber wenn ich mir seine Bücher durchlese (von denen leider nur das erste gut ist, dafür aber auch richtig gut), glaube ich ihm, dass er wirklich nur der nette Kerl von nebenan ist, der sich seinen Lebenstraum erfüllen konnte. Alles in allem reicht es für mich nicht ganz für die Höchstnote, aber ein "Sehr gut" ist dennoch drin."
Rating: 9.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HowUDoingwrote on 04.06.2016:[10.0] "Mein persönliches Lieblingsgimmick von Foley ist ganz klar Mankind. Die anderen Gimmicks waren zwar auch sehr unterhaltsam, aber nichts war zu gut wie Mankind. Er ist eine HARDCORE-LEGENDE und hat Wrestling-Geschichte geschrieben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "All time great performer. Amazing promos, crazy bumps, great matches. The guy did it all and ascended to the top of the mountain against all odds."
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: EGeraldhuebnerwrote on 27.04.2016:"Foley is God. Allein die Angaben der Jahre seiner Karriere und die zahlreichen Verletzungen sprechen hier eine sehr deutliche Sprache. Mick lebt, er atmet, denkt und stellt Wrestling einfach dar. Er ist zwar auch ein "glorifizierter Stuntman" wie Ric Flair (obwohl, der hat es gerade nötig ^^) sich mal ausdrückte sowie rein technisch gesehen eingeschränkt, hatte ohnehin nie so wirklich die Figur dafür, aber er würde sterben für seine Leidenschaft. Daher ist es auch gut, das er sich ziemlich zurück gezogen hat. Es gibt kaum jemanden, der sich so oft für seine Fans und gute Unterhaltung aufgeopfert hat. Kaum jemanden, den Kollegen wie Fans so dermaßen lieben und verehren. Als Begriffe wie "Hardcore" in der damaligen WWF noch ein Tabu waren, kam Mr. Foley und schenkte uns denkwürdige, epische, grandiose, atemberaubende Momente. Auch wenn man immer wieder den wahren Menschen Michael Francis Foley hinter der Figur Mankind / Cactus Jack / Dude Love usw. sehen konnte, machte ihn das noch sympathischer. Nebenbei hat er natürlich absolut geniale komödiantische Fähigkeiten und kann selbst ohne im Ring zu bluten einfach göttlich unterhalten. Es ist vollkommen egal, wie, wo oder wann man Mick Foley sieht, er begeistert in wenigen Augenblicken. Foley is God ... bless you Mick. ^^"
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: blackmileswrote on 23.04.2016:[8.0] "Er hatte für mich nie ein 15 Minuten Match, welches mich durchgehend Unterhalten haben. Er hatte "nur" diese Unvergessenen Momente gegen Undertaker, Edge, Triple H usw die ihn mit Steve Austin als repräsetant der Hardcoreera Darstellen lässt. Als Mankind gefiehl er mir am besten, vor allem seine Phsycho Promos bleiben in Errinerungen. Aber auch in den anderen 3 Gimmicks Genial. In ring 4/10 +3/10 für die genialen Spots. Micwork 9/10 Charisma 9/10 Insgesamt 8 Punkte- Gut"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Mean Smark Callouswrote on 13.04.2016:[10.0] "The Man. Simple as that. Cactus Jack changed the way I saw wrestling. Possibly the toughest man ever in the history of the sport. Tremendous threshold (and penchant) for pain. Has had some incredibly brutal matches in Japan which I never get tired of seeing. Always cut great promos, and managed to create not one, but THREE awesome gimmicks/personas: Cactus Jack, Mankind, and Dude Love. His Hell in a Cell match with Undertaker in 1998 is now the stuff of Wrestling legend."
Rating: 10.0
Sentiment: 0.11620370370370368
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ApexOfEvolutionwrote on 29.03.2016:[9.0] "Toller Hardcore-Wrestler mit legendären Spots. Er spielte seine Gimmicks immer großartig, egal ob Mankind, Cactus Jack oder Dude Love, auch wenn ich letzteres ein wenig albern fand. Wenn er heute in den Shows auftritt kann er immer noch gut unterhalten. Und auch privat scheint er ja ein netter Typ zu sein."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DoktaC4ibbywrote on 19.03.2016:[10.0] "Probably my favorite from the Attitude Era and maybe even wrestling as a whole. His mic ability outclasses pretty much everybody in wrestling history by having three gimmicks and somehow making them all work, plus fantastic feuds (See Mankind vs McMahons, Dude Love vs Steve Austin), I will admit that he never was the best big man technician but considering the fact that nearly every single one of his matches was at least 7. 5/10 (Which not even the best technicians ever like Eddie Guerrero can claim that) and he took probably the biggest bumps in wrestling history at King of the Ring vs Undertaker, I can forgive him. Fantastic person in real life as well."
Rating: 10.0
Sentiment: 0.31275510204081636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: James Dean Wrestlingwrote on 09.03.2016:[8.0] "Awesome wrestler and personality. So many great moments across his other 3 personas. Mic work is top notch and in the ring he got the job done. Miss this guy, but thankful for the great memories he left.  Bang! Bang!"
Rating: 8.0
Sentiment: 0.4964285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MatteoMerdokwrote on 06.03.2016:[6.0] "Mick Foley may be a very charismatic entertainer, but as a wrestler he basically was famous for taking crazy bumps. He wasn't the best technician, he wasn't the best flyer, hell... he is infamous for throwing some really bad/weird punches. Mick was very entertaining, but as a pure wrestler... I have him at a 6."
Rating: 6.0
Sentiment: 0.346031746031746
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Zedwrote on 05.03.2016:[10.0] "Ich kann durchaus verstehen dass einige Fans den guten Mick nur als Stuntman oder Bump Machine sehen. Jedoch darf man einfach nicht vergessen dass Mick seine Gesundheit komplett aufgab nur um seinen Traum zu verwirklichen, den er schon als Kind hatte. Und tatsächlich änderte die WWE ihre Attitude zu einem Programm, das Mick Foley zugute kam. Er war beileibe kein technischer Athlet, oder hatte jemals die Figur der meisten seiner Kollegen, aber er zeigte Leidenschaft und Herz für das Business wie kaum ein zweiter. Absolute Legende."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheLoudMouthwrote on 17.02.2016:[10.0] "Wie es mein englischsprachiger Kollege unter mir schon beschrieben hat: "He is like a white Jackie Chan. He can do anything if he wants. Dance, comedy, love, horror, thriller, fight. Everything great about Mick Foley. " - Mehr Worte zu Foley benötigt es eigentlich auch gar nicht. In sämtlicher Hinsicht eine absolute Legende."
Rating: 10.0
Sentiment: 0.33999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Best Pro Wrestling Fan Everwrote on 08.02.2016:[10.0] "He is like a white Jackie Chan. He can do anything if he wants. Dance, comedy, love, horror, thriller, fight. Everything great about Mick Foley."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TrevPuroFanwrote on 17.01.2016:[10.0] "Mick Foley is amazing! He was fantastic and passionate on the microphone. He was fantastic in the ring, it didn't matter what type of match you threw him in, he always delivered. Plus he gave wrestlers like Shawn Michaels, Triple H, Randy Orton, Steve Austin, Edge & Vader some of their best matches ever. Amazing, amazing wrestler!"
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Squared Circlewrote on 19.11.2015:[10.0] "I lived in the same town as Mick and he is a fantastic human being.  He ran multiple gimmicks successfully.  Strong on the mic and had solid in ring skills.  Pushed the envelope to put on a great show.  He made his opponents better.  The multiple gimmicks add a point.  His fearless attitude get him another.  Making his opponents better adds a third."
Rating: 10.0
Sentiment: 0.23939393939393938
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: jacobphillipswrote on 13.09.2015:[10.0] "he put his life on the line in every match he competed in for our entertainment. that alone is enough to warrant a rating of 10"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: austin1987wrote on 12.02.2015:[10.0] "Ließ sich oft vermöbeln aber brachte somit auch Edge total over und auch damals Triple H. Denn nach dem Hell in a Cell Match zwischen Foley und HHH brauchte man nicht mehr zweifeln ob HHH etwas an der spitze verloren hat.  Hatte noch einige Klassiker mehr zu bieten. Zeigte im Ring wirklich alles, war zwar kein typischer Wrestler aber ich fand seinen Stil immer klasse. War am Mic auch sehr begabt und ist der einzige der 3 verschiedene Gimmicks zur selben Zeit perfekt spielen konnte (obwohl mir Dude Love nicht wirklich gefiel)."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Garvinwrote on 21.12.2014:[10.0] "Ein Mann, der alles in diesem Business erlebt hat. Es war nie eine Augenweide ihn in einem Singles Match zu sehen - und gerade deswegen muss man es ihm hoch anrechnen, dass er sich alles Stück für Stück erarbeitet hat. Natürlich hat er auch Glück gehabt, dass er seine große Zeit gerade dann erleben durfte als sein Stil das Maß aller Dinge war und es dürfte zweifelhaft sein, ob sich ein 30-jähriger Mick Foley heute durchsetzen würde. Doch die Unterhaltung und Opfergabe über Jahre hinweg haben ihn einfach unsterblich gemacht. Seine Spots und viele seiner Matches sind für die Ewigkeit, obwohl man sicher über Sinn und Sinnlosigkeit mancher Attacken streiten kann. Am Mikrofon stets einer der Allerbesten. Egal welche Rolle verkörpert wurde, es passte zu 100 %. Auch nach seiner Karriere immer wieder gut geeignet gewissen Fehden / Matches die letzte Prise zu verleihen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HereComesThePainwrote on 20.12.2014:[10.0] "Ob "Bang Bang! ", "Have a nice Day" oder sonstwas: FOLEY IS GOD! Und mehr muss man da echt nicht sagen."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Y2J316wrote on 28.11.2014:[10.0] "The Hardcore Legend. Mick Foley wird immer einer der Besten sein. Seine Matches und auch seine Promos fande ich immer gut. Zwar immer ein paar kilo zuviel aber was soll es. Keine auch niemanden der so viele verschiedene Gimmicks hatte. Rock n Sock Connection ist auch eins der besten aller Zeiten. Also mein fazit ist das mehr oder weniger alles was er machte zu Gold wurde."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Phenomenal91wrote on 06.10.2014:[10.0] "This man should never have been a famous wrestler. But he was because he was unlike anyone who came before him. He blazed a trail that proved that, as long as you could engage the crowd and tell a story, you could be a star."
Rating: 10.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Bloodywrote on 24.09.2014:[10.0] "Als Kind dachte ich noch, wie krank ist dieser Cactus Jack. Über die Jahre hinweg ist er für mich zu eine der echtesten Personen geworden. Er überzeugte in all seinen Rollen und konnte seine geringen Fähigkeiten bestens verdecken."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: 8BitLegendwrote on 14.09.2014:[6.0] "Ich kann Mick Foley leider nicht mehr als eine 6 geben. Ich mag ihn als Typ gerne, aber sein Wrestlingstil war masochistisch und grausam. Als Mankind hatte er einige gute Matches und interessante Momente, aber für den Top-Superstar als der er gehandelt wird, war mir das unterm Strich zu wenig gutes Wrestling und zu viel Risiko."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Titanwrote on 03.09.2014:[10.0] "Im Ring war er zwar nicht der Filigrantechniker, aber er hat die Attitude Era durch seine kranken Spots durchaus mitgeprägt. Dazu konnte er mit Charisma und Mic-Skills überzeugen. Hardcore-Legende trifft den Nagel auf den Kopf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sokar Drenwrote on 14.03.2014:[6.0] "Mankind in der AE gefiel mir, aber sonst finde ich dass Mick Foley etwas überbewertet wird. Aber seine Stunts und Hardcore Matches waren schon cool. 6 Punkte!"
Rating: 6.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Foleysbabytoywrote on 01.03.2014:[10.0] "Einer der größten Talker aller Zeiten. Gerade in der ECW zeigte er unglaubliche Promos. Im Ring limitiert, präsentierte er einem trotzdem fast durchgehend gute Matches und einige echte Klassiker. Auch seine Fehden sind erwähnenswert. Was er mit Vader, dem Taker, Triple H und the Rock zeigte gehört mit zu dem besten was es in den 90ern zu sehen gab.  "Bang! Bang! ""
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: azwepa62wrote on 18.02.2014:[10.0] "Mick Foley has been one of the most creative people in and out of the ring. His in-ring contributions have helped build not only his career, but the careers of so many around him. His outside achievements (writer-novelist, comedian) show what a truly creative man he is. But it's his philanthropic endeavours that prove what a giving person can do."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DudeLove177wrote on 05.02.2014:[10.0] "Bang Bang! Mehr brauch man nicht sagen! Einfach genial!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: RepoManwrote on 10.01.2014:[8.0] "Als Cactus war er mega, als Mankind auch noch stark aber als Dude Love hat er mir nicht gefallen, genauso wenig wie als Mick Foley. :-) Ergo in den Gimmicks top... real naja."
Rating: 8.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Goldberg82wrote on 26.11.2013:[9.0] "Die Hardcore-Wrestling-Legende schlechthin und sehr überzeugend als Mankind, Dude Love & Cacktus Jack. Unglaublich was der alles eingesteckt hat und noch genossen hat. Foley hatte legendäre Fehden mit The Rock, den Undertaker, HHH oder Vader. Insbesondere in Harcore-Matches extrem brauchbar und dazu einer der besten Entertainer im Ring aller Zeiten. Ich sage nur die Rock and Sock Connection. Daher eine verdiente 9."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Dreamforcewrote on 25.11.2013:[10.0] "Mick Foley die große Hardcore Legende ist einer der größten Wrestler der Geschichte und ein Mann der seines Gleichen sucht. Er hat wahrscheinlich einige der größten und besten Matches gehabt, die es in der WWF je gegeben hat und war auch extrem überzeugend und energiegeladen in seinen Promos (egal in welchem Gimmick) auch lange nach seiner aktiven Zeit in der WWE. In TNA fand ich Mick Foley irgendwie ein wenig falsch aufgehoben, was aber seinem Image in keinster Weise schadet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Undertalkerwrote on 19.11.2013:[8.0] "Mit ihm geht's mir im Grunde genau wie mit Steve Austin: Er war einer der interessantesten Charaktere des Pro Wrestlings. Egal ob als Cactus Jack, Mankind, Dude Love oder einfach Mic Foley, spielte er seine Rollen dermaßen gut, dass es einfach nur Spaß machte, ihm zuzuschauen. Im Geviert war Foley allerdings nicht mehr als Mittelmaß. Er glänzte eher durch seine Hardcorematches und durch seine "sick bumps", die in kommerzielleren Wrestlingligen nur sehr wenige auf sich nehmen. Das ist aber nunmal kein Punkt, mit dem man bei mir punkten kann, da ich kein Fan von Hardcore-Wrestling bin. Deswegen gibt's auch "nur" 8 Punkte."
Rating: 8.0
Sentiment: -0.10714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: koeddylaemmlewrote on 24.09.2013:[10.0] "Revolutionary superstar who brought hardcore to the mainstream and passion to promos. Mick Foley was able to take his own personal desire to make an everlasting mark on the industry still felt today."
Rating: 10.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HighlightHEELwrote on 23.08.2013:[10.0] "Eine absolute Legende. Matches sind natürlich nicht technisch, sondern Hardcore ohne Ende. Für ihn genau der richtige Weg. Einige seiner Bumps (klar, welchen ich hauptsächlich meine, oder? ) werden für immer in Erinnerung bleiben. Noch dazu absolut wandelbar mit seinen drei verschiedenen Gimmicks, die er alle zur Perfektion ausgebaut hat. Am Mikro in der allerhöchsten Liga, auf einem Niveau mit Rock, und ja, Jericho ist für mich minimal besser. Auch heute noch unterhaltsam und immer für ein starkes Segment inklusive Promo mit jungem Worker gut. FOLEY IS GOD."
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: UnforgivenSicknesswrote on 23.08.2013:[10.0] "Einer der charismatischsten Wrestler die es je gab und noch ein ECW Legend. Dann noch die drei anderen Gesichter von ihm. Einfach AWESOME!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Alex Maedawrote on 01.08.2013:[10.0] "Was ihn von vielen seiner Hardcore-Kollegen unterscheidet ist, dass er nicht nur unglaublich austeilen und wahnsinnig einstecken, sondern auch solide bis gute Singles Matches zeigen kann sowie ein genialer Schauspieler ist, der jedes seiner Gimmicks perfekt rüberbringt. Am Mikro für mich besser weil wandelbarer als The Rock und Stone Cold zusammen und auch sonst einer der charismatischten Leute, die ich je im Fernsehen gesehen habe. EDIT : Die einzige kleine Kritik, die ich habe, ist seine überflüssige Zeit bei TNA. Aber immerhin hat er den Zeitpunkt zum Rücktritt vom aktiven Wrestling nicht völlig verfehlt. Darf gerne noch mal an das Kommentatoren-Pult zurückkehren (egal wo), habe aber auch volles Verständnis dafür, wenn er sein Leben nun voll und ganz seiner Familie wendet. Nicht nur ein einzigartiger Wrestler, sondern mit ziemlich Sicherheit auch ein einzigartig symphatischer Mann, auch außerhalb des Wrestlings."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Boris The Menacewrote on 20.07.2013:[6.0] "I have a lot of respect for his love for wrestling, but in the end of the day he's a bit overrated."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Kenshin Uesugiwrote on 20.07.2013:[10.0] "War Foley ein guter Wrestler? Wenn mir erzählt wird das er es nicht war, muss ich mir doch an den Kopf greifen. Ja kein Techniker, ja kein Aussehen wie man das sich von einem spitzen Wrestler vorstellt. Aber das spielt keine Rolle. Er beherrschte seinen Stil und sein Können in Sachen In-Ring Action war dann einfach nur spitze, ein großartiger Geschichtenerzähler und Gimick-Darsteller. Was hat er nicht alles gemacht, wenn hat er nicht alles zu einem großen Star gemacht und den endgültigen Durchbruch verschafft? Die großen Matches sprechen für sich und da ist es mir ehrlich gesagt egal ob er nun ein Garbage/Hardcore Wrestler ist. Der wahre Star der Attitude Ära, Triple H, The Rock usw. sollten noch heute jedes Jahr ihn Blumen schicken; eine wahre Legende und größter WWE Übergangschampion aller Zeiten."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Leonewrote on 15.07.2013:[10.0] "Mick Foley, to this day, is quite a unique former WWE Champion.  Unlike other champions, Foley is not known for being Gym Junkie, in fact he looks like he chooses a meal over the gym any day of the week.  He is also not known for being larger-than-life by being well over 400lbs and athletic at the same time.  Instead he was a 300lb man who moved like a 300lb man a lot of the time.  How Mick sold tickets was based on his powerful mic skills, fascinatingly colourful characters, legendary promos, relatable self-deprecating humour, charisma, strong in-ring storytelling, excellent brawling, and for being a guy who took incredible risks almost every time he stepped into the ring.  He has entertained us with falls, spots and sells that would hurt anybody very badly, and even kill them.  His Hell In A Cell match against The Undertaker is a testament to that.  The scars and injuries he received over the years are legendary, including hundreds of stitches, a torn abdominal muscle, four knocked out teeth to losing an ear.  He retired from wrestling full time in 2000 for good reason, as anymore on the WWE schedule would probably have put him in a wheelchair.  A fantastic hardcore wrestler who is remembered for his hard work, legendary matches and for being one of the easier-to-relate-to wrestlers."
Rating: 10.0
Sentiment: 0.4018627450980392
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sir Vida Loca IIIwrote on 08.07.2013:[8.0] "Sicher ist Foley kein technisch besonder versierter Wrestler. Jedoch hatte er einige unvergessene Momente abgeliefert und sich dadurch unsterblich in diesem Sport gemacht. Desweiteren würde ich ihn zu den größten Hardcore Legenden zählen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Lecterwrote on 06.06.2013:[10.0] "Flawless storyteller and a very hard worker. Wish he had taken it a bit easier throughout his career so he'd still be able to live a comfortable life now."
Rating: 10.0
Sentiment: 0.3314393939393939
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: believeintheshieldwrote on 02.05.2013:[10.0] "Ein Toller Wrestler, der seine Rollen als Cactus Jack, Dude Love und Mankind richtig gut gespielt hat. Die 10 Punkte hat er einerseits für seine guten In-Ring Fähigkeiten erhalten und dafür, dass er sich so viel hat gefallen lassen, beispielsweise beim Hell in the Cell Match gegen den Undertaker."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Kings Roadwrote on 26.04.2013:[8.0] "Mick Foley ist, alles in allem, sicherlich kein begnadeter Wrestler, gab dafür aber begnadet gute Interviews und stach durch persönlichen Einsatz hervor. Er hat mich sowohl als Cactus Jack als auch als Mankind immer gut bis sehr gut unterhalten. Ist sicherlich zurecht Teil der Hall of Fame, sollte es nun aber wirklich sein lassen und nicht mehr in den Ring steigen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sick Boywrote on 04.04.2013:[10.0] "Kein Techniker vor dem Herren, aber eine absolute Hardcore-Legende, die bereit war alles zu tun, um die Zuschauer mit heruntergeklappter Kinnlade zurücklassen zu können. Obendrein einer der sympathischsten Menschen in diesem Business."
Rating: 10.0
Sentiment: -0.2571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sentenzawrote on 01.04.2013:[10.0] "Eine Legende! Natürlich kein Wrestler wie Michaels oder Angle, aber seine Präsenz im Ring, die Art und Weise ein Match zu führen ist großartig. Legendäre Schlachten egal in welcher Liga und hatte extrem geniale Hardcore Matches. Dazu kommt das geniale Mankind Gimmick was mir böse noch besser gefällt als Publikumsliebling später. Er war bei so vielen großen Momenten dabei, die sich ins Hirn gebrannt haben ob Heel in a Cell gegen Hunter/ Taker, Street Fight gegen Hunter, das Hardcore Match gegen Edge, die Liste kann so weitergehen. Und auch neben dem Ring ein großartiger Mensch, setzt sich für die gute Sache ein und schreibt super Bücher. Mick Foley hat gezeigt, dass man nicht wie Superstar aussehen muss um ein ganz großer zu sein."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Diggertakerwrote on 13.02.2013:[10.0] "Pro wrestling needs more people like him. Risk taker. Spots performer. Hardcore to the extreme. And a legend."
Rating: 10.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: CMPunkVotVwrote on 27.11.2012:[10.0] "Absolute Legende. Sowohl im Hardcore Bereich als auch im Mainstream - Wrestling."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: WCWlerwrote on 23.11.2012:[0.0] "Foley ist für mich kein Wrestler. Er ist für mich jemand der zwar im Ring steht aber nur von seinen Stunts und sonstigen harten Aktionen lebt. Dazu ist er für mich einfach langweilig und nervend."
Rating: 0.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Pontiac is TESTwrote on 24.10.2012:[10.0] "Mick Foley is one of the best wrestlers and is my no. 1 in top 5. 1 time WWF smoking skull champion. 2 times WWF attitude era champion.  1 time TNA world heavyweight champion, and 1 time WCWA World Light Heavyweight champion."
Rating: 10.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Formless Onewrote on 16.07.2012:[10.0] "Es mag sicherlich Leute geben, die Foley kritisieren mögen, ob des angeblich verpassten Absprungs vom In-Ring-Geschehen, und auch ich kann jeden Negativanklang in die aufgesetzt wirkenden Sketch-Segmente der WWE komplett nachvollziehen, dennoch ändert es nichts an den Fähigkeiten des Michael Francis Foley. Seine Art des Micworks, seine Ideen um sinnvolle Umsetzungen, seine Aufopferungsgabe für das Business suchen ihresgleichen. Genau deshalb vergebe ich für einen der ganz Großen auch 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: blackjackwrote on 09.07.2012:[9.0] "Love his attitude. He will do anything in and out of the ring to get over. Interviews are priceless. Ringwork is okay for a brawler. Will go down as one of the best all around characters."
Rating: 9.0
Sentiment: 0.5688888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Giant2wrote on 20.04.2012:[6.0] "Tut mir Leid, aber diese absolute Vergötterung kann ich nicht nachvollziehen. Hardcore waren The Sheik und Abdullah schon lange vorher. Bumps nahm ein Terry Funk genauso vorher. Okay, seine Promos sind besser und er hatte ne Fehde mit dem Taker. Setzt ihn das so viel höher ? Ne schwache 3 ist drin, mehr nicht."
Rating: 6.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: mintaquewrote on 09.04.2012:[10.0] "Bester Hardcore Brawler aller Zeiten. Außerhalb und innerhalb des Rings sehr sympatisch!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Marlowewrote on 19.02.2012:[10.0] "Eine Legende, ich denke es wurde alles gesagt, was es zu sagen gibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Golgotawrote on 09.02.2012:[10.0] "Über Mick Foley muss man wohl kein Wort verlieren. Wrestler mit unglaublichem Einsatz, begnadetem Micwork und auch als Mensch einer der umgänglichsten und intelligentesten Leute, die man auf Langzeit im Wrestlingbusiness antreffen konnte. Alles unter der 10 ist Blasphemie."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Raywrote on 16.11.2011:[9.0] "Ich habe Foley damals bewertet, als es nur in Zweierschritten möglich war, nun endlich wird es mir ermöglicht, ihm eine Bewertung zukommen zu lassen, die über 8 liegt, aber keine Höchstnote ist. Foley ist eine Legende, er wirkt sympathisch, er nimmt Risiken auf sich, man konnte sich mit ihm besser identifizieren als mit den meisten muskelbepackten, öligen Badehosenwrestlern. Er war kein grandioser Techniker und nicht jedes seiner Matches war ansehlich, aber er war immer mit Herz bei der Sache und wusste mich zu unterhalten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: IWLwrote on 16.11.2011:[9.0] "Ein charmanter und liebenswerter Kerl, der das Wrestling Geschäft verstanden hat. Sportlich leider nur Hardcore. Ich halte Hardcore für weniger beeindruckend als Standard Wrestling, weil es weniger athletisch ist, sondern eher was von einer Stunt- und Zirkusshow hat. Wrestling generell ist ja schon Zirkus, aber Hardcore geht mir zu sehr ins Lächerliche. Foleys Gimmicks zeugen von enormen Showtalent. Er gab dem Wrestling immer etwas Komisches, ja Selbstironie. Alleine schon sehr unterhaltsam, als Rock N Sock Connection Auftritte für die Ewigkeit."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Rated R Punkwrote on 06.09.2011:[8.0] "Die größte Hardcore Legende aller Zeiten. Er ist sich nie für einen Bump zu schade und macht viele gute Storylines. Seine Ring Skills waren nicht die besten sind aber auch nicht der Inbegriff von grottig, am Mic kann Foley stets überzeugen. Allerdings ist er abgesehen von Hardcore Matches irgendwie uninteressant... Das einzigst gute war dann doch eigentlich nur sein Run mit The Rock."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Rey2004wrote on 05.09.2011:[10.0] "Einmalige Hardcore-Legende! Wahnsinns Kämpfe, gute Gimmicks - bis auf Dude Love."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Kitanoyamawrote on 01.09.2011:[9.0] "Er wirkt wie ein eher unbeholfener und unfähiger "Klops" aber wenn er mal auspackt, sowohl verbal als auch ringtechnisch, wird man rundherum und auf das nachdrücklichste eines besseren belehrt. Er kann zwar mehr einstecken als er austeilen kann, was seine Ringarbeit angeht, aber es hat immer Spaß gemacht sowohl ihm zuzuhören als auch -zusehen. Der positiven Meinung über sein Micwork kann ich mich nur anschließen, unnötig da deswegen noch weitere Worte darüber zu verlieren. Was man aber auch bedenken muss ist, das er sich seit einigen Jahren nur noch auf der Stelle bewegt und deswegen nicht mehr soviel over bringen kann wie zu vergangenen Zeiten weswegen ich ihm keine volle Punktzahl geben kann. Liegt z. B. vielleicht auch an seinem Alter aber dennoch. 9 Punkte sind daher ausreichend und angemessen genug."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: WWE4evermaybewrote on 29.08.2011:[10.0] "Die Hardcore-Legende schlechthin. Seine Promos sind immer unterhaltsam. Wenn er in seinem Element ist, d. h. bei Extreme Rules Matches, dann ist er kaum zu bändigen. Dazu noch seine grandiosen Fehden gegen Rock, Triple H, Undertaker, Randy Orton oder auch Edge. Als Mensch und Wrestler ein symphatischer Kerl."
Rating: 10.0
Sentiment: -0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Hu-Manwrote on 20.08.2011:[10.0] "Am Mic wohl der beste aller Zeiten. Im Ring immer gut bis sehr gut, selbst im höheren Alter immer noch für geiles Entertainment gut. Ich liebe Foley."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Play2Xwrote on 07.08.2011:[9.0] "Als Hardcore Wrestler einfach große klasse, dazu ein Gott am Mic, und sogar noch in einem "normalen" Match unterhaltsam, aber ist bei Mick Foley überhaupt irgendetwas "normal"? Trotzdem sind die normalen Matches halt nicht sooooo überragend wie bei den ganz großen Wrestlern, sodass ich nur 9 Punkte gebe! BANG BANG! FOLEY IS STILL GOD!"
Rating: 9.0
Sentiment: 0.29296875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Fall Out Boywrote on 25.07.2011:[9.0] "Am Mic gibt es nur eine handvoll von Wrestlern die man auf die selbe Stufe wie Mick Foley stellen kann. Hardcore Legende, die das Wrestling geprägt hat. Den 1 Punkt Abzug gibt es für seine doch oftmals langweilig normalen, nicht Hardcore, Matches."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheRock 7 Champwrote on 11.07.2011:[10.0] "Ob in WWF/E, ECW, WCW, Japan oder in TNAW, er konnte mich immer überzeugen. Seine bahnbrechenden Promos und seine super In-Ring-Skills machen ihn zu einem sehr guten Worker. Doch was noch wichtiger ist sind die extremen Bumps die er hinnahm und dafür zolle ich ihm Respekt und gebe ihm die volle Punktzahl."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: NHJ2102wrote on 11.07.2011:[8.0] "Mankind aka Mick Foley ist einfach einer der großen, seine Matches gefielen immer gut"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: 7TheEwrote on 29.06.2011:[9.0] "Als großer Fan der ECW und auch des Hardcore Wrestlings muss man ihn einfach lieben und der Mann der vielen Gesichter."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: FuXwrote on 06.06.2011:[6.0] "Hatte für mich nie den Superstar-Status der ihm immer angedichtet wird. Foley kann reden und aus allen möglichen Höhen, Richtungen, Einrichtungen und überhaupt durch Tische, brennende Tische, Tische mit Reiszwecken oder auch Kommentatoren-Tische fallen. Das kann er, sogar gut. Er hat viele Leute Over gebracht, war sicherlich auch zurecht in der "Attitude"-Ära einer der großen, aber das ist nunmal auch schon wieder 12 Jahre her und er war, sicherlich auch aufgrund seiner oben bereits erwähnten Tisch-Manöver, damals schon "Alt" (im sinne von Verbraucht). Heutzutage sieht er einfach nur noch verwahrlost aus, gibt alle 10 Wochen mal ein Comeback und das wars. Foley ist nicht Gott, Foley ist scheiße."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: OdisVanNeusswrote on 26.05.2011:[9.0] "Mick Foley oder uach Mr. Tausen Gimmicks.  Ob Dude Love, Mankind, Cactus oder einfach Mick,  Der Mann ist sick in Person und weiß alles davon zu verkörpern.  Auch schön das er ein bisschen Deutsch Kann, der Wolfgang Petry der Wrestlingszene.  Top Man, Top Worker.  hätte damal Man of the Year verdiennt."
Rating: 9.0
Sentiment: 0.19642857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Johnny-Tennerwrote on 16.05.2011:[9.0] "Charisma an der Spitze des Möglichen, Seine Gimmicks alle samt mega verrückt aber auch Mega Cool, Im Ring vielleicht neben den Hardcore Matches und krassen Bumbs vielleicht nicht der Beste aber das Macht er allein durch seine Einzigartigkeit wieder wet. Tragisch find ich ein bisschen das er die großen Matches alle samt verlieren musste, aber irgendwie macht das auch seinen Charakter aus. Egal was er einstecken muss er macht immer und immer weiter und deswegen lieben wir ihn. Jede gesendete Minute mit Mick Foley ist gold wert."
Rating: 9.0
Sentiment: 0.12499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Wolfhartwrote on 11.05.2011:[7.0] "Mick Foley ist meiner Meinung nach kein Säulenheiliger, sondern eine Geschmacksfrage. Ja klar, natürlich sind seine Promos immer leidenschaftlich und kreativ(10P), aber die Frage ist, wie stark man das in die Gesamtnote einfließen läßt. Im Ring hat er etliche der krassesten Bumps genommen, die es je im Wrestling zu sehen gab, aber der Rest war dann wirklich nicht gut. Für seine Hardcore - Eskapaden bin ich sogar geneigt, Punkte abzuziehen. In-Ring-Leistung max. 5 Pkt. , wobei er sich fast alle alleine durch seine halsbrecherischen Stunts verdient hat."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Michael Shawn Hickenbottomwrote on 28.04.2011:[10.0] "Mick Foley ist einer DER Hardcore Götter , und ich finde ihn einfach super !"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: exxterwrote on 17.04.2011:[10.0] "Auch wenn heute in TNA. Caktus Jack/Mick Foley/Dude Love/Mankind wie auch immer ist ein sehr genialer Hardcore Wrestler. Und dazu ein sehr charismatischer, super Mic Skills und Ring skills auch. Schade das er keine weiteren Matches macht."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: VanderVaartwrote on 30.03.2011:[10.0] "Wo Mick Foley auftritt, ist der Entertainment-Faktor hoch. Egal welches von seinen mindestens 4 Gimmicks es nun ist. Wrestlerisch war er nur dann nicht so stark, wenn es keine Hardcore-Matches waren. Muss er aber auch nicht, wenn der Rest stimmt. Leider hat er die wichtigsten Fehden verloren, doch das soll seiner Popularität nicht schaden, denn er war sich für keinen Move zu schade. Nebenbei schreibt er lesenswerte Bücher, die sehr häufig verkauft wurden."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: C0nspiracywrote on 29.03.2011:[6.0] "Foley is God , habe selten so gelacht beim Lesen. Der Mann hat wirklich eine ahnung von unglaublich vielen dingen. Wrestlerisch eine durchaus gute 6. Eine Hardcore Wrestling Ikone abzüge eben beim Wrestlerischen können , diese sind aber sehr schwerwiegend Foley ist eben kein Ric Flair aber in dem was er macht und man von ihm erwartet ist er Top. Btw seine Promos sind Weltklasse."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Matt4Wrestlingwrote on 27.02.2011:[9.0] "Er wirkte immer Glaubwürdig und Fan-Freundlich. Hat von sich selbst immer das Maximum abverlangt, obwohl er nie der größte Techniker im Ring war, wird er immer als Hardcore-Legende weiterleben!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Ullewuppwrote on 24.01.2011:[10.0] "Mir ist wohl bewusst, dass Foley nicht gerade über herausragende techische Fähigkeiten verfügt, jedoch gibt es meiner Meinung nach viele Möglichkeiten starke, spannende und ansehnliche Matches zu kreieren und das ist eine Fähigkeit, welche die Hardcore-Legende des Buissenes auf seine ganz eigene Art und Weiße hat. Die Menge an (Sick-)Bumps die er im Laufe seiner hat einsteckenen müssen (seht euch nur mal die Verletzungsliste an), um den Fans eine gute Show zu liefern, sucht meiner Meinung nach ihres gleichen (in diesem Bereich kann wohl nur der Funker mithalten). Desweiteren gibt es wohl keinen zweiten Wrestler, der es so einmalig wie Foley versteht die verschiedensten Gimmicks (Cactus Jack, Dude Love und Mankind) klar voneinander zu trennen und ihnen allen (hier vorallem Mankind) einen so starken und glaubwürdig vermittelten ganz eigenen Charakter zu verleihen (seine Promos in der Frühphase des Mankind erachte ich als die besten der Welt; wer das nicht glaubt sollte sich mal das Jim Ross Interview vom 02. 06. '97 oder den Buildup zu Mind Games mit Shawn Michaels anschauhen). Auch die Art wie er es verstand die 3 Charaktere miteinander zu verbinden und im Ring in seine Matchführung einzuarbeiten ist eine wahre Seltenheit. Etwas anderes als 10 Punkt kann für diese Legende, die das Wrestling liebt und über seine gesammte Karriere so bereichert hat also nicht gegeben werden."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: cagefighterwrote on 08.12.2010:[10.0] "Gefällt mir sehr gut. Gimmick, Mic und Kampfstil passen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Excellence of Executionwrote on 18.10.2010:[9.0] "Mit Sicherheit nicht der größte Wrestler. Dafür aber mit Sicherheit der größte Fan des Wrestling Business. Wenn sich einer nicht zu Schade war, jeden Preis zu zahlen, um es in diesem Geschäft zu etwas zu bringen, dann Foley (okay.... Funk war auch noch da)! Für mich ist der Mann einfach ein wahrer Wrestling Idealist (auf seine Weise) und zudem ein grundehrlicher Typ, dessen natürliche Sympathie nicht spurlos an mir vorbeigeht. Dass Foley so viele verschiedene Gimmicks hatte, sie alle glaubwürdig rüber brachte und auch als Kommentator gerne gehört war, belegt seine Fähigkeiten am Mic. EDIT: Auch ich muss eingestehen, dass Foley sich nach seinem "Karriereende" doch einige Cameo-Auftritte zu viel geleistet hat."
Rating: 9.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Babuswrote on 18.10.2010:[10.0] "Der beste Micworker aller Zeiten und sowohl im Ring als auch außerhalb - im TV wie auf Papier - ein unglaublich begnadeter Geschichtenerzähler. Foley war stets einer meiner absoluten Lieblingswrestler und scheint zudem ein grundsympatischer Typ zu sein. Dass der einstmals beste Brawler seiner Generation heute bei TNA nur noch ab und an gegen Sting, Angle oder Abyss vorzeigbare Matches abliefert, kann ich ihm angesichts seiner zahllosen Klassiker - sei es gegen The Rock, Triple H, Funk, Vader, Austin, Orton, Edge oder den Undertaker - problemlos verzeihen. Und wenn er heute ein Mic in die Hand nimmt, ist der alte Zauber, im Gegensatz etwa zu Ric Flair, am Ende doch jedes Mal wieder da."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Lions Denwrote on 07.10.2010:[9.0] "Mick Foley ist mittlerweile auf diesem Status angelangt, an dem fast nichts mehr seinen Ruf als Legende demontieren kann. Er hat das Wrestling in sovielen Bereichen geprägt und ausgezeichnet wie kaum ein Zweiter. Ob nun durch seine waghalsigen Manöver, seine selbstzerstörerische Art, sein mitreißendes Micwork oder hinter den Kulissen:Er hat eigentlich alles getan und erreicht, was in diesem Business möglich ist. Und das nicht nur in den Mainstream-Ligen, sondern auch im Independent-/Underground-Bereich. Die Frage bleibt, ob und wann er sich aus der Öffentlichkeit des Sports zurückzieht. Ich wünsche ihm einen ähnlich würdevollen Abschied wie Micheals und hoffe, dass er vom ewigen Dasein eines Ric Flair verschont bleibt."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: nVVo-Fanwrote on 02.10.2010:[10.0] "Die Hardcore-Legende schlechthin! Volle Punktzahl für so viele klasse Matches"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Ramwrote on 11.09.2010:[10.0] ""The Hardcore Legend" ist einer meiner all Time Favorits. Er unterhalt auf viele Weisen. Er ist auf einer Seite Total Lustig hat auf der anderer seite aber auch eine Furchtbar Brutale und Irre Seite. Er hat keine Typische Athleten Statur aber etwas was genau der Defination eines Wrestlers entspricht. Wrestler sind meiner Meinung nach kein Sporter, man muss auch kein MMA Kämpfer sein um hier Erfolge zu feiern. Auch wenn die WWE mir im Moment vielleicht wiederspricht muss ein Wrestler auch kein Schauspieler sein. Er muss nur eins und das ist zu jedem verdammten Zeitpunkt unterhalten und das Tut Mick Foley und das macht ihm zu der Legende die er ist. Auch im Ring seh ich den dicken Mick lieber als irgend so ein lahmen Spot-Monkey."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: rockysadrianewrote on 10.09.2010:[9.0] "Das Wort "Legende" trifft auf ihn nicht ganz zu. Dennoch war Mick Foley über viele Jahre eine sehr unterhaltsame Erscheinung."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Jack Londonwrote on 21.08.2010:[10.0] "Mick Foley ist einer der größten Entertainer, die das Business je hatte, sein Mic-Work ist legendär, er hatte tolle Matches und Fehden, und auch seine Biografie ist recht nett"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Mountiewrote on 17.08.2010:[9.0] "Foley hat denkwürdige Matches geliefert und noch wichtiger: Sein Micwork und seine einzigartigen schauspielerischen Fähigkeiten ergeben für mich den stärksten Charakter, den ich je im Wrestling gesehen habe. Leider muss es für das Thema "Absprung verpasst" irgendwann auch nach viel Wohlwollen Abzug geben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Manu Adamswrote on 26.07.2010:[7.0] "Als Cactus Jack in der WCW ein ordentlicher Brawler, ebenso als Mankind. Sein ''Bump'' vom Hell in a Cell Dach wird mir wohl noch viele Jahre im Gedächtniss bleiben. Am Mikro war er gut und als Hardcore Wrestler konnte er enorm viel einstecken. Abzüge gibt es für das ewige Comeback/Ruhestand hin und her."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Hirnklopswrote on 17.07.2010:[6.0] "Ich kann mir das nicht mehr mit ansehen. Er war für mich einer der Größten, doch was sein letzter Run bei TNA mit diesem Status angerichtet hat... Nee. Ehrlich: Foley sollte aufhören. Sofort. Für immer. Er ist eine Karikatur von sich selbst geworden."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: WrestlingFanDuisburgwrote on 03.06.2010:[7.0] "Hardcore Legende und gut am Mic, solange er Mankind ist richtig gut. Im Ring finde ich ihn nicht ganz so toll."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Erasedwrote on 21.05.2010:[9.0] "Absolute Klasse. Der Kerl überzeugt einfach jedesmal. Seit Jahren bringt er gute Leistung und überzeugt dabei."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sandmannwrote on 04.05.2010:[8.0] "So langsam könnte der gute Foley sich mal entschließen aufzuhören. Im Ring sicherlich nur noch unterdurchschnittlich seit ein paar Jahren. Da merkt man dann so langsam halt doch den Verschleiß den sich diese Hardcore Ikone in langen, harten Jahre erarbeitet hat. Wenn man an seine Zeit in Japan und der ECW zurückdenkt. Oder seine großen Schlachten mit Vader in der WCW. Ja selbst in der WWE mit seinen 3 Perönlichkeiten. Mick sieh zu das du anständig in Rente kommst."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Cripplerwrote on 24.04.2010:[10.0] "Gut im Ring, der Beste was Entertainment angeht und auch noch sehr gutes Micwork.  Was will man mehr?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Fat Mikewrote on 07.04.2010:[9.0] "War im Ring zwar nie der Beste, aber doch meistens überzeugend und am Mikrofon einfach göttlich. Leider hat er sich durch seine vielen unnötigen Comebacks einiges von seiner Reputation selbst zerstört."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Eazyewrote on 20.03.2010:[9.0] "Er ist eine Legende. Sowohl in Japan, ECW und WCW als auch in der WWE/WWF. Er nahm hirnrissige Bumps auf sich wie kaum ein anderer. Hardcore Legende Sondergleichen. Seine Gimmicks spielte er auch alle super. Ein Punkt abzug gibt es wegen schlechtem Single Wrestling(Also ohne Hardcore Stripulation) und seinem bisher nicht so gelungenem TNA Run. Ansonsten eine absolute Hardcore Legende sondergleichen."
Rating: 9.0
Sentiment: 0.15396825396825395
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Moyawrote on 15.03.2010:[10.0] "Hat sich für den Sport geopfert, und der WWE einige der denkwürdigsten Momente ihrer Geschichte beschehrt. Hat sich seinen Status definitiv verdient! Wer erinnert sich nicht gerne an das Hell in a Cell gegen den Undertaker oder den unschlagbaren Mr. Socko?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: RaTedR5starwrote on 13.03.2010:[10.0] "Ganz Klar - 10 Punkte. Dieser Mann ist sooft auf die fresse geflogen, aber er ist immer wieder aufgestanden. Ich hatte unvergessliche Momente mit ihm. Ich denke nicht, das sich jeder Wrestler dazu bereit erklärt hätte, die stunts eines Mick Foleys nachzumachen. Das HIAC - Match, nein, die Beiden HIAC - Matches waren der Hammer. Bei Beiden ist er durch den Käfig geflogen, und er hatte sich dazu bereit erklärt. Das verdient Respekt. Ehre wem Ehre gebürt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Eddiewrote on 27.02.2010:[8.0] "Einer derjenigen, die ganz klar zu spät aufhören, deshalb Abzüge. Manchmal sollte es sich einfach eingestehen, dass man nicht mehr wirklich unterhält, 6 Punkte. Er war auch nie so wirklich mein Fall gewesen in der WWF/WWE und auch in TNA nicht. Edit: Nachdem ich jetzt auch etwas "älteres" Material von ihm gesehen habe aus der WCW muss ich gestehen, er konnte es zumindest mal, deshalb wieder eine Aufwertung auf 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Neubauteneinsturzwrote on 23.02.2010:[10.0] "So sehr ich auch nachdenke, mir fällt kein Grund ein, warum Mick Foley NICHT die volle Punktzahl verdient hätte. Ganz klar eine der größten Personen in der Geschichte des Wrestling. Auch wenn er natürlich besser nicht immer wieder vom Rücktritt zurückgetreten wäre."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheROCKwrote on 22.01.2010:[10.0] "Mal ehrlich. Das Mick Foley nun bei TNA seine Karriere zu Ende fährt, stört mich nicht im geringsten. Er ist und bleibt einfach UNSER Mick Foley. Konnte im Ring noch weniger als TheROCK, war aber dafür umso gesegneter mit Mic-Fähigkeiten. Hat mir als Wrestling-Fan viel gegeben! Hätte eine letzte Fehde gegen Sting zum Abschied verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ShakDragoonwrote on 19.01.2010:[10.0] "Neben Terry Funk wohl DIE Hardcore-Legend, die neben der ECW auch in der WWE immer überzeugen konnte. Am Mic ist er sowieso einer der Besten aller Zeiten! Kaum zu glauben, dass er bei TNAW noch einmal so auftrumpfen konnte. Besonders seine Mic-Skills durfte er eindrucksvoll zeigen. Bin gespannt, wie es mit ihm weiter geht... jetzt, wo Hogan in der Impact Zone regiert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: gunniwrote on 13.01.2010:[6.0] "Als Cactus Jack war er schon was besonderes........ Als Mankind auch noch aber alles was dann kam war gar nichts mehr..... ich erinnere mich an einen Royal-Rumble in dem er in 3 Verschiedenen Gimmicks aufgetreten ist...... einfach lächerlich. Und seine Abschieds- Comeback-Sache ist auch unglaubwürdig hoch 10."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: RatedRJuliwrote on 07.01.2010:[10.0] "HARDCORE LEGENDE die viele großartige Matches bestritten hat"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Denzwrote on 04.01.2010:[10.0] "Ich habe durch den Film "Beyond the mat" gesehen, dass er Privat, sowie im Ring ein großartiger Mensch ist. Obwohl er in den vielen Jahren im Wrestling sich unendlich viele Verletzungen zugezogen hat, kann er bei TNAW immer noch einen soliden Mick Foley zeigen - respekt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Telecinewrote on 26.12.2009:[5.0] "Ich verstehe nicht so ganz, warum man Mick Foley überhaupt jemals den WWE Titel gewinnen lassen hat. Selbst als er noch jünger war, hat er nie besonders gut wrestlen können. Er hat nur immer irgendwelche extremen Sachen gemacht. Nur meistens wurde er ja selbst Opfer dieser extremen Sachen (Hell in a Cell usw. ), so dass er also nur dadurch over kam, weil er selbst immer irgendwo runtergefallen ist. Das kann es doch aber irgendwie nicht sein. Allerdings konnte er schon immer recht gut sprechen und spielen, aber das kann bei mir dann doch nur für 5 Punkte reichen."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Kuschkowrote on 22.12.2009:[9.0] "Unglaublich was Mick immer wieder abliefert. einfach ehrlich, einfach gut."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Father Nelsonwrote on 20.12.2009:[4.0] "Mick, stop it! Please. You are destroying your own legacy."
Rating: 4.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: downtown2wrote on 18.11.2009:[9.0] "Mick Foley zu bewerten ist etwas difizil. Im Grunde hat er nicht eine Wrestling Aktion drauf, der Körper ist eines Athleten nicht würdig. Aber er schafft bei seinen Kämpfen eine unheimlich gute Chemie im Ring mit fast jedem Gegner, die Authentizität seiner Aktionen im Ring und besonders am Mikro machen ihn zu einer Ausnahmepersönlichkeit in diesem Geschäft. Er hat wohl jedem Spötter bewiesen, dass man es zu etwas bringen kann, wenn man nur bereit ist hart zu arbeiten, seinen Beruf zu leben und Opfer bringen zu können. Die Bereitschaft schwere Verfletzungen mit unabsehbaren Folgen in Kauf zunehmen, kann ich widerum nicht gutheißen."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: asraelwrote on 15.11.2009:[10.0] "Mir fällt kein Wrestler ein, kein Wrestler in den großen Ligen, der seinem Körper so viel zugemutet hat, um den Fans eine super Show zu liefern. Foley ist wohl wirklich verrückt, verrück nach Wrestling. Besitzt keine Wrestler-Statur, aber das interessiert auch nicht wirklich, da er durch seine selbstzerstörerische Art das ganze mehr als wett macht. Am Mic mit dem Rock zusammen einfach nur zum Brüllen. Schade, dass die Zeit vergeht und ein aktiver Wrestler Foley nicht mehr gut rüber kommt, aber danken wir ihm für so viele unvergessen Matches u. a. gegen Vader, Undertaker, Rock, Tripple H. Die Hardcore-Legende schlechthin und zu dem auch einfach ein netter Mensch!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: CJodlerwrote on 07.11.2009:[10.0] "Durch und durch eine Legende, der immer alles für diesen Sport gab und gibt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: StArShiP PAiNwrote on 04.11.2009:[8.0] "Kann durch sein Hardcore Gimmnick wrestlerische Schwächen vertuschen. Über 300 Nahtstiche sprechen für sich."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Whopperlewrote on 01.11.2009:[10.0] "Ihm kann man den berühmten Spruch: "We put our lives on the line" wirklich abnehmen. Er ist einfach die Hardcore Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Saschwrote on 27.10.2009:[4.0] "Ich sah ihn das erste mal als Mankind in der WWF und dachte mir was ist das. Meiner Meinung nach ist er in Hardcore Matches gut aufgehoben, doch als Wrestler war er für mich nie überzeugend."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: teekay86wrote on 25.10.2009:[7.0] "Es wird langsam Zeit das er sich aus dem ME zurückzieht und seinen Platz an Leute wie Hernandez, Stiles oder von mir aus auch Morgan räumt. Aufgrund seiner Vergangenheit tue ich mich aber schwer ihn schlechter zu bewerten."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Kurt Winkelwrote on 20.10.2009:[10.0] "Die Leistungen, die Foley in Promos abliefert sind herausragend. Er gefällt mir auch bei TNA sehr gut und sorgt immer wieder für intensive oder witzige Momente. Wirklich gut in Form ist er auf der anderen Seite allerdings nicht mehr, wenn er das auch teilweise sehr amüsant überspielt, wie z. B. durch das Setzen an das Kommentatorenpult und Mitkommentieren während eines Multiwaymatches, an dem er beteiligt ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheBrainwrote on 04.10.2009:[10.0] "Ich kann Mick nur nach seinen WWE Leistungen bewerten und die sind so genial wie brutal. Die Fehden und Matches gegen den Taker und Rock waren Wahnsinn. Sowas würde heute nie gezeigt werden."
Rating: 10.0
Sentiment: -0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Turboladerwrote on 14.09.2009:[10.0] "Mick Foley weiß einfach, wie man die Menge zum kochen bringt, seine Hardcore Matches sind legendär. FOLEY FOLEY FOLEY!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Mick Funkwrote on 13.09.2009:[8.0] "Einzigartiger Charakter, sehr starker Micworker und in Hardcorematches legendär. Wenn er die Karriere endlich beendet gibts auch wieder 10 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DJ MaSchwrote on 12.09.2009:[10.0] "Für mich der beste Mic Worker aller Zeiten ausserdem mit unglaublichen schauspielerischen Fähigkeiten ausgestatten, die ihn IMO zum besten Wrestling Charakter aller Zeiten machten. Natürlich ist Foley im Ring nicht der beste der Welt, trotzdem zogen mich seine Matches, auf Grund seiner Intensität und seines Willens immer das beste rauszuholen, immer in den Bann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Gialikesashleyverymuchwrote on 10.09.2009:[10.0] "Hart, härter, Foley. Die Hardcore Legende überzeugt durch Charisma, geniale Gimmicks und solides Wrestling. Sich für nie was zu schade gewesen und eben ein Original."
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: User191wrote on 07.09.2009:[10.0] "Großartiger Micworker, einer der besten Hardcore-Wrestler in der Wrestlinggeschichte. Zwar sind seine In-Ring-Leistungen in einfachen Singles Matches nur durchschnittlich, aber er hat - wie einige der Topstars aus der Attitude Era - eine gewisse Ausstrahlung, die dies überdecken kann. Foley hat zusätzlich in allen Rollen (Wrestler, Commissioner/Executive Shareholder und Kommentator) mehr als überzeugt. Nicht nur eine Hardcorelegende, sondern auch eine wahre Wrestlinglegende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Muthmasterwrote on 30.07.2009:[6.0] "Für mich gnadenlos overrated. Natürlich hat er einige wahre Schlachten im Ring geschlagen, dennoch in normalen Wrestlingmatches immer die pure langeweile. Gimmicks hatten mir auch nie gefallen."
Rating: 6.0
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Vanniwrote on 11.07.2009:[7.0] "Ja, ich weiß, er ist eine Hardcore-Legende. Ja, er hat früher große Matches auf die Beine gestellt, harte Bumps genommen und kann auch heute noch große Promos halten. Trotzdem bekommt er von mir nur sieben Punkte, weil er sich in den letzten Jahren einfach ein wenig selbst ins Abseits gestellt hat. Er hätte die Schuhe schon lange an den Nagel hängen sollen und macht sich somit seine Karriere zum Ende hin ein wenig kaputt, da er heute einfach nicht mehr in der Lage ist, gute Matches auf die Beine zu stellen. Am Mic schön und gut, im Ring bitte aber nur noch ganz selten und zu besonderen Anlässen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TRBM1981wrote on 08.07.2009:[5.0] "Ein irrer Typ der allerdings weder durch überragende Technik noch über ein herrausragendes Talent am Mic überzeugen kann"
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HBK RVD Y2Jwrote on 02.07.2009:[9.0] "Ein sehr guter Mic Worker und auch sein Charisma ist sehr gut. Seine Körperlischen Leistungen sind Legender und sein Wrestling allgemein ist auch okay. Deswegen gebe ich ihn 9 Punkte."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: El-Chupakneebraywrote on 13.06.2009:[10.0] "Zwar kein guter Wrestler, aber bei TNA zeigt er gerade wie wertvoll er ist. Gibt derzeit wohl niemanden dessen Promos so gut sind."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Blazewrote on 02.06.2009:[8.0] "Früherer World Champ, Ikone, Hardcore Legende. Starke Ringpsychologie, immense Hingabe, großer Redner. Dennoch langweilen mich seine Matches hin und wieder ziemlich. Lässt seine Gegner gut aussehen, vergisst aber manchmal, dass er auch mehr als gefühlte zwei Aktionen im Ring zeigen sollte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: wbw-wrestlingwrote on 31.05.2009:[4.0] "Also mir gefällt Mick Foley überhaupt nicht. Für mich ist er ein sehr schlechter Wrestler nur dafür das er so gut am Mic. gebe ich im 4 Punkte."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Afroman Undertaker 619wrote on 21.05.2009:[8.0] "Das beste Match war Mick Foley vs. Edge bei Wrestlemania 22. Er ist ein richtig guter Hardcore Wrestler. Er und sein Mr. Socko bringen erst richtig Stimmung in der WWE."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: NewGuywrote on 07.05.2009:[10.0] "Ich hab sogar sein Buch "Wie die Helden" schon gelesen... Hardcore Legende, King of the Death Match, einer der im Mainstream Bereich genausoviel gewonnen hat wie in den Insider Indy-Ligen (ich sag nur FMW)... Ich glaub keine Wertung wäre ihm gerecht ;-) wenns möglich wäre, würde ich ihm 20 Punkte geben!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Weihnachtsmannwrote on 29.04.2009:[7.0] "Hardcore-Legende und ein exzellenter Kommentator. Hat sich den Legendenstatus redlich verdient."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Theron083wrote on 25.04.2009:[8.0] "Was für ein verrückter Kerl. Der muss wirklich nicht ganz richtig im Kopf sein. Sucht nach dem Kick und/oder dem Extremen oder sowas wohl. Ein absolutes Original, obwohl ich bei weitem nicht alles von ihm gesehen hab, sondern hauptsächlich einige Matches und Promos aus den späten 90ern und Anfang 2000 und einige Auftritte heute in TNA. Mehr als 8 gibts aber einfach nicht, da kann er noch so extreme Sachen machen. Gimmicks, Ideen und Mic Work sind auf jeden Fall einzigartig und obwohl er wie ein Waldschrat aussieht, hat er gerade dadurch ja ein gewisses Charisma. Ein verrückter Kerl..."
Rating: 8.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: blbmimowrote on 24.04.2009:[10.0] "The King of Hardcore, The man who loves the pain. His promos are very fun and sometimes full of emotion."
Rating: 10.0
Sentiment: 0.37
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Brainbreakerwrote on 20.04.2009:[7.0] "Ich für meine Begriffe musste Foley immer zwiespältig betrachten. Sein Aufstieg bei WWE war sicherlich beispielhaft. Geschuldet war dies sicherlich nicht nur seinen Stuntshows (die ich ansich nicht wirklich sehenswert fand, aber anerkenne, dass sie für gute Quoten sorgten) geschuldet, sondern auch seinem Micwork und seinen tollen Gimmicks. Mit einem guten Gegner und (meistens) einem Gimmickmatch, gab es durchaus auch sehr sehenswerte Momente in der WWE-Geschichte. Andererseits hat er seinen Legendenstatus in meinen Augen demontiert. dank unzähliger Comebacks und immer unschöneren Leistungen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DirtSheetwrote on 13.04.2009:[9.0] "Mick Foley ist einer der größten Wrestler aller Zeiten! Technisch vielleicht nicht aber sein Mic-Work wie auch seine Hardcore Qualitäten sind hervorragend!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: gerybundy68wrote on 11.04.2009:[10.0] "Er war und ist DIE Hardcore Legende schlechthin. Mick hat wohl in jeder Liga in der er tätig war einen bleibenden Eindruck hinterlassen, und ist für mich auch heute noch immer ein Grund um den Fernseher eizuschalten. Viele denkwürdige Auftritte bleiben in Erinnerung - Hell in a Cell gegen den Undertaker 1998 nur als Beispiel. Hoffentlich hat er noch einige solch grandioser Matches in sich. Mick Foley - im - und es sei erwähnt, für mich , auch außerhalb des Ringes einer der Grössten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The-Game91wrote on 01.02.2009:[10.0] "Er ist die Hardcore Legende schlechthin und auch so ist er ein toller Mensch schade das die WWE ihn so vergrault hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Alorionwrote on 21.01.2009:[10.0] "Mick Foley muss mit dem Wort Hardcore in einem Atemzug genannt werden!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Amurebkuwrote on 01.01.2009:[8.0] "Eine Hardcorelegende. Und was für eine. Tolle Matches hat er gezeigt. Hat es echt drauf. Weiß zu unterhalten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Cloverwrote on 18.12.2008:[9.0] "Der sympatischste Wrestler, den ich "kenne" ... Schon zu frühen aktiven Zeiten eine Legende und ein Hardcore-Vorbild. Ich mag den Menschen Mick Foley sehr :-)"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ScrWwe94wrote on 17.12.2008:[10.0] "Hat alles getan um die Leute zu unterhalten. Machte alles bei Hardcore Matches und hatte viele Verletzungen doch war immer aktiv."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Smi-48wrote on 08.12.2008:[10.0] "Unverwechselbare Ikone, nicht nur der Hardcore-Gangart, sondern besonders auch des MicSkills. War sowohl im Ring als auch auf der Matte immer in der Lage, ungeahnte und unerwartete Subtilität in seine Performances einfliessen zu lassen. In meinen Augen nicht der von Flair ausgerufene "überbewertete Stuntman", sondern vielmehr ein Hardcore-Charakter mit Intelligenz & Tiefgang. In dieser Form unerreicht ... !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MrWrestlingwrote on 26.11.2008:[10.0] "Einfach ein großartiger Wrestler. Im Ring und am Mic überzeugend. Er hat schon so viele Verletzungen erlitten und ist immer noch dabei. Foley ist ein Meilenstein des Wrestlings."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Animal360wrote on 26.10.2008:[8.0] "Mag ihn nicht sehr egal ob er Dude Love, Mankind, Kaktus Jack oder Foley auftrat als Kommentator fand ich ihn gut deswegen 8 Punkte."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MarcTrixwrote on 11.10.2008:[6.0] "Alle seine Gimmicks sind Kult. Besonders als Mankind hat er mir Gefallen. Punktabzüge gibt es nur, weil er als Kommentator, einfach nur überflüssig wahr."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: StoneColdRevowrote on 08.10.2008:[10.0] "Mick Foley ist einer meiner Lieblingswrestler. Ich fand ihn immer schon glaubwürdig. Als Cactus Jack, Mankind , Dude Love und Mick Foley. Seine Gimmicks sind einfach Kult. Seine Promos gefallen mir sehr gut. InRing gut und hatte ziemlich tolle Matches. Mankind vs. The Rock, Mick Foley vs. Edge oder Cactus Jack vs. Terry Funk, um nur einige zunennen."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: lp4everwrote on 18.09.2008:[10.0] "Als Wrestler genial, am Mic Genial, als Kommentator genial... 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Ric Flair88wrote on 18.09.2008:[8.0] "Mick Foley ist eine Legende im Bezug auf hardcorewrestling. Bei der WWF konnte er dreimal den WWF Title erringen allerdings nur für kurze Zeit. Kam mir zu dieser Zeit mehr als Übergangschampion vor. Allerdings war er sich nie zu schade sich für aufstrebende Stars (HHH, Randy Orton, Edge) hinzulegen. Man sollte zwar kein Technikfeuerwerk erwarten wenn Mick auf der card steht doch einen harten Brawl kann er performen wie kaum ein zweiter. Die Fehden gegen HHH, The Rock oder den Undertaker sind allesamt wichtige Kapitel in der WWE- Geschichte... ALlerdings war er nie über einen langen Zeitraum ernstzunehmender Main Eent Player weshalb ich nur 8 punkte rechtferigen kann"
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: RIKYwrote on 17.09.2008:[10.0] "Hat mehrere geile Gimmicks, super Mic-Worker, opfert sich seit Jahren für das Wrestling. Zumindest dies sollte man neidlos anerkennen."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Wise Warriorwrote on 15.09.2008:[8.0] "Etwas überbewertet - vor allem als Autor. Sonst aber ein guter Typ."
Rating: 8.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Green Arrow Banditwrote on 01.09.2008:[10.0] "Er hat legendäre Matches abgeliefert und immer wenn es keine Regeln gibt sieht man ein tolles Match von ihm. In sämtlichen Matches wo es keine DQ gab fand ich es immer schade das dass Match zuende ging denn ich fande die absolut geil."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Jaehnchenwrote on 28.08.2008:[8.0] "Mick Foley, schade ds er zu TNA geht aber trotzem 8 Punkte"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: xXShawnMichaelsXxwrote on 13.08.2008:[9.0] "Es wäre sehr schade wenn er die WWE verlassen würde. Er macht einen sehr guten Job als Kommentator."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Jar Jar Binkswrote on 08.08.2008:[9.0] "Mick Foley die Hardcore Legend hat sich die 9 Punkte reglich verdient. Außerdem ist meiner Meinung nach der beste Color Kommentator der WWE und bildet mit J. R das beste Kommentatoren Team das es je gab."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: PetePetePetewrote on 04.08.2008:[10.0] "Die Persönlichkeit, die mich zuerst fürs Wrestling begeistert hat und nach langer Abstinenz auch wieder dazu bewegt hat. Egal ob als destruktiver Masochist oder als lustiger GM oder als unfassbar guter Color-Commentator, mich hat er nahezu immer überzeugt, unterhalten und begeistert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DevonMileswrote on 03.08.2008:[10.0] "Hardcore Legende, geniale Promos, super Matches. Hat seine Charaktere zum grössten Teil selbst entwickelt und schreibt ausserdem noch richtig gute Bücher. In seiner aktuellen Rolle als Kommentator überzeugt er auch, vor allem seit er JR an seiner Seite hat."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: WerderBremenwrote on 27.07.2008:[9.0] "Er gehört(e) wirklich zur Attitude-Ära wie kein Zweiter! Über seine Matchfähigekeiten lässt sich sicherlich streiten. Dennoch ein ganz Großer im Geschäft und das aus mehreren Gründen. Er ist mit Sicherheit unter den Top5 der MicWorker und hat immer was Besonderes beim "Erzählen". Außerdem hat er viele einzigartige Fehden gehabt, allein deshalb weil er einer der wenigen Wrestler (für manche vielleicht auch der Einzige) der sehr erfolgreich mehrere Gimmicks in der WWE durchsetzen konnte und unter allen zumindest auffiehl oder gefeiert wurde. Letztens möchte ich noch sagen, dass er in seiner ganzen Zeit als Profi immer so viel einstecken musste und damit immer auch andere Leute weiter hervorgehoben hat ist bemerkenswert. Wer würde denn gerne ein solches Hell in a cell Match gegen den Undertaker bestreiten und nicht lieber den Schwanz einkneifen? ! ich nicht! Und das war ja nicht das einzige Match, in dem er einstecken musste, so als ECW-Legend! Ein Top-Mann der WWE!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Alex1wrote on 24.07.2008:[9.0] "Mick Foley ist eine wahre Hardcore-Legende mit sehr gutem Mic-Work. Er ist zwar kein Kurt Angle, dafür aber ein ausgezeichneter Brawler."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Elvis1977wrote on 22.07.2008:[10.0] "Eine wahre Legende des Wrestlings, ihn bewunder ich schon seit vielen Jahren und seine Aktionen waren bisher immer unvergessen wie z. B. sein Sturz vom Hell in A Cell Käfig 1998 im Match gegen den Undertaker. Das er auch ein guter Autor ist und in diesem Bereich erfolg feiern kann wundert mich nicht, denn er ist schlauer als manch anderer Superstar die die Wrestlingwelt zu bieten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Main Eventwrote on 20.07.2008:[8.0] "Klar, er ist eine Hardcore-Legend aber manche Sachen die er gemacht hat, hatten wirklich nichts mehr mit Wrestling zu tun. Als Mankind gefiel er mir am besten un deswegen verdiente 8 Punkte."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Matt Mackswrote on 20.07.2008:[10.0] "Einer der besten Micworker in der Geschichte des Wrestlings und darüberhinaus ein selbstloser "Trooper", wenn es darum geht, andere Wrestler berühmt zu machen. Hatte viele denkwürdige Momente in seiner Karriere, die von seiner besten Zeit 1998-2000 gekrönt wurde. Belebte nach dem Rücktritt vom Rücktritt für kurze Zeit (2004) noch einmal die Liga neu und machte Randy Orton zum Star. Leider hat er danach nicht wieder loslassen können und folgende Auftritte verloren mehr und mehr an Bedeutung. Zum Glück für ihn und uns hat er im April 2008 eine neue Berufung als SmackDown! 's Color-Kommentator gefunden, eine Rolle, die er derzeit besser ausfüllt als jeder andere Color-Kommentator im Geschäft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: JerichoHolicwrote on 10.07.2008:[9.0] "Ein großartiger Entertainer, habe mich immer gefreut ihn im Ring zu sehen und er hat mich stets unterhalten!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Pulpulwrote on 23.06.2008:[9.0] "Cactus Jack, Mick Foley, Mankind - egal in welcher Rolle, immer überzeugend, immer mit vollem Einsatz dabei. Sicher wird Foley nie zu den begnadetsten Wrestlern aller Zeiten gehören, aber dennoch hat er seine Stärken, die man einfach nicht verkennen kann. Seine Hardcore Kämpfe sind legendär und selten hat er Rücksicht auf sich selbst oder seinen Gegner genommen. Dazu einfach eine Charismabombe, die egal wo er auftaucht, "explodiert" und so gut wie jeden mitreißen kann."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Steven McWheelerwrote on 18.06.2008:[10.0] "Eine Legende! Er brachte Hardcore in den Mainstreambereich, in meinen Augen! Auch wenn es mittlerweile maßlos übertrieben wird... Der Entertainer schlecht hin, mit einem Haufen cooler Gimmicks^^ Der Inbegriff der Gimmickschizophrenie"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Urzawrote on 12.06.2008:[10.0] "Ob jetzt als Stuntman oder Wrestler oder wie auch immer bezeichnet: das Zusehen und Zuhören war er immer wert! Egal in welcher Promotion, egal in welcher Fehde... daneben glänzt er immer durch sein Wissen und seine Intelligenz. Und selbst wenn er 397 retourkommt, macht mir das auch nichts. Freut mich, daß er jetzt als Kommentator tätig ist!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Frutzwrote on 06.06.2008:[10.0] "Allein das Lesen von 'Wissenswertes' zeigt, wie stark dieser Mann diesem Buisness verfallen ist und das er alles gegeben hat, um die Zuschauer zu unterhalten. Seine Charaktervielfältigkeit vom bedrohlichen Mankind bis zum tanzenden Dude Love ist einzigartig, er hat wahrhaft denkwürdige Matches geliefert, man erinnere sich nur an seine Fehde mit dem Undertaker. Heute ist er ein sehr angenehmer Color Kommentator, der durch seine langjährige Erfahrung die Sendungen bereichert. Eine lebende Wrestling-Legende."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DeadHeadwrote on 04.06.2008:[7.0] "Als Wrestler war er nicht mein Typ aber als Kommentator bei SmackDown ist er zweifellos wirklich gut."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: elroyguesswrote on 29.05.2008:[8.0] "Seine gelegentlichen Auftritte bei WWE Inc. in den letzten Jahren ziehen den Gesamteindruck leider etwas nach unten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sockewrote on 25.05.2008:[10.0] "Bissel heftig von den Verletzungen her, glaub der hatte mehr als die Klitschkos, Maske, Ottke & Schulz zusammen. HardecoreSocko is am Mic sehr gut, übernimmt er die SD KommentatorenRolle btw? In Ring auch klasse egal welcher Charakter, klare 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Brooklyn Brawlerwrote on 24.05.2008:[10.0] "5 Punkte fürs Mic Work & Gimmickverkörperung (besonders genial: Mankind) und Charisma, 5 für die In-Ring (Hardcore)Skills.... sonst noch was zu sagen? Achja: Er ist wohl irgendwo suizidgefährdet, aber immerhin scheint er seine aktive Zeit irgendwie lebend überstanden zu haben :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: nightfallwrote on 23.05.2008:[10.0] "Er hat so vieles für die Fans auf sich genommen, somit bleibt mir nichts anderes übrig als eine 10 zu geben. Als Heel überzeugt er mich allerdings gar nicht, da er mir einfach zu sympatisch ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Masadawrote on 16.05.2008:[10.0] "Gang großes Kino, allein wegen dem Mic Work wären 10 Punkte schon berechtigt. Dazu noch einer der besten Hardcore/Deathmatch Wrestler die man so findet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Dave Concordiowrote on 06.05.2008:[8.0] "Ich finde ihn am Mic jetzt nicht den Burner, aber ich ziehe meinen Hut vor dem was Mick Foley geleistet hat. Good Job Mickles!"
Rating: 8.0
Sentiment: 0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Robert Taylorwrote on 29.04.2008:[10.0] "Einer meiner absoluten Faves of all time! Egal ob Cactus Jack, Mankind oder Dude Love, er war immer klasse! Einer der besten Worker am Mic die es je gab - vor allem die Promos in der ECW waren einfach unglaublich! Und er ist zu 100% eine Hardcore Legende, auch wenn er das Hardcore-Wrestling nicht erfunden hat!"
Rating: 10.0
Sentiment: 0.9765625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Darbenwrote on 21.04.2008:[9.0] "Hätte Mick Foley liebend gerne eine 10 gegeben. Aber leider hat er in meinen Augen den richtigen Zeitpunkt für sein Karriere ende nicht gefunde. In der ECW Zeit war er sehr gut. In der WWF ein absoluter Topstar. Heute gefällt er mir nicht mehr so. Absoluter Tiefpunkt war die Fehde gege Ric Flair. Hat aber in anderen unzähligen Matches seine Klasse gezeigt und seine Interviews sind echte Klassiker. Zum Schluss He`s hardcore bang bang"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: AnFuwrote on 12.04.2008:[8.0] "Die Hardcorelegende Mick Foley bekommt von mir gute 8 Punnte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Excellent of Executionwrote on 20.03.2008:[10.0] "Eine der größten Hardcore Legenden. Tolle Matches mit ihm."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Sandman16wrote on 19.03.2008:[10.0] "Ganz klar eine Hardcore Legende, der für so einige legendäre Aktionen verantwortlich ist. Darüber hinaus hat er ein erstklassiges Micwork, was man zurecht mit zu den besten überhaupt zählen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Instant Classicwrote on 14.03.2008:[4.0] "Foley ist auch so einer, den ich einfach nicht mehr sehen will. Das einzig gute Gimmick, dass er verkörperte, war Mankind und deswegen gibts noch eine 4."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Rated R Champwrote on 05.03.2008:[10.0] "Angesichts seiner Leistungen kann ich hier nur die 10 geben, allerdings könnte er mit dem dauernden Ausverkauf endlich aufhören und zu Hause bleiben. Dennoch Foley is God."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: real americanwrote on 01.03.2008:[10.0] "Unglaublich intensiver Worker der die Massen elektriesiert hat und seine Matches waren Klasse egal ob als Hardcore Match oder nicht und die Bumps die er genommen hat ohne mit der Wimper zu zucken verdienen Anerkennung und höchsten Respekt."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Doktorwrote on 11.02.2008:[10.0] "Als Figur/ Typ für mich ein ALL-TIME-GREATEST, in-ring auf jeden Fall durch sein Verständnis/ Gespür und seinem Sinn für Narration bemerkenswert (vor allem angesichts seiner, naja, ... sagen wir physischen Voraussetzungen). Hat allein im Ohrläppchen mehr Verständnis für's Business als ein HHH in seinem ganzen Kopf je haben wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Champwrote on 10.02.2008:[10.0] "Kranker Typ, aber einfach Genial. Einer der besten HArdcore-Wrestler aller Zeiten, sowie ein genialer Mic-Worker. Vermisse ihn schon sehr. Aber man merkt ihn sein Alter und sein Verschleiß langsam an. Trotzdem immer wieder unterhaltsam."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Hunter2007wrote on 07.02.2008:[10.0] "Ich erinnere mich zu gerne an die 90er, wenn ich bedenke was Foley alias Mankind dort alles im Hardcore-Bereich geliefert hat. Einfach grandios, dieser Typ! Zudem hat er es noch geschafft, mit all seinen Charakteren super anzukommen, Promos waren immer genial, zu schade das damit heute Schluss ist und es nur noch sporadische Auftritte gibt von ihm!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: jerseyhoolwrote on 03.02.2008:[8.0] "Toller Hardcore-Wrestler & lebende Legende - aber nur eine 2! Warum? 1. habe ich nach der Doku "Beyond the Mat" meine Meinung über ihn revidiert. Derartige Bumps vor den Augen seiner Familie einzustecken, ist nicht tragbar - Fake hin oder her! 2. Fehlt ihm offensichtlich der gewisse Biss, um wirklich über längere Zeit an der Spitze zu bleiben (offenbar ein Stuhlschlag zu viel! ). 3. Auch wenn ich das nicht gerne sage, aber er ist "nur" ein Brawler - ich sehe mir lieber schöne technische Matches an. Trotzdem Garant für legendäre Momente, als Beispiel "Hell in a Cell" gegen den Undertaker!"
Rating: 8.0
Sentiment: -0.9765625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: jimpanse1980wrote on 23.01.2008:[10.0] "Geliebt für seine Matches, berühmt für seine Bumps, aber unvergesslich wird Foley durch seine Promos und die Fähigkeit fast 2 Jahrzehnte lang in jeder Liga in unterschiedlichsten Gimmicks eine derart hohe Messlatte an Micwork zu setzen und zu halten. Bei Foley ist es mir fast lieber ihn nur zu hören, da ich in vielen Situationen doch fast Angst um seine Gesundheit hatte. Zudem spiegelt sich in seinen Promos die vorhandene Intelligenz wieder, die viele seiner Kollegen leider nicht besitzen."
Rating: 10.0
Sentiment: 0.20000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: The Meanbeastwrote on 20.01.2008:[10.0] "Einer meiner absoluten Lieblinge! Kenne kaum einen Wrestler, der so sehr mit Leib und Seele dem Wrestling zugewand ist wie er! Zwar in Kritik geraten in letzter Zeit, was meiner Meinung nach allerdings nicht dazu führen soll, ihm die glatte 1 zu verwehren! Er ist und bleibt Mick Foley, und Foley is God! ^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Stone Cold Andywrote on 13.01.2008:[10.0] "Absolutes Phänomen der WWF/WWE. Es gibt keinen, der mehr einsteckte, keinen, der weiter ging und keinen, der so zu schocken vermochte. Eine Legende."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Legionwrote on 06.01.2008:[8.0] "Eine Legende im Bereich Hardcore und in diesen Matches auch genial."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MA Excellentwrote on 29.12.2007:[8.0] "Die Flair/Foley Fehde um den "Glorified Stuntman" hat die Kontoverse um Foley schön auf den Punkt gebracht. Ist er wirklich Jemand, der sich durch extremes physisches Risiko seinen eigenen Mythos erschaffen hat? Ich denke ja! Genau das macht Foley faszinierend. Vom Jugendlichen, der bei Wrestlemania Jimmy Snuka gesehen hat, zum völlig unproportionierten und untypischen WWF-Champ, genial! Sein Mic-Work ist göttlich und seine Aufopferung unvergleichlich. Jedoch bleibt auch festzuhalten, dass er wirklich nicht der begnadetste Wrestler unter der Sonne ist, daher eine klare 2."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Wuschl 85wrote on 15.12.2007:[8.0] "Für mich eher ein Stuntman als Wrestler. Sehr unterhaltsam, dennoch nerven mich seine ständigen Rücktritte, da er immer wieder in den Ring steigt. Da stellt sich einem natürlich zwangsläufig die Frage ob dies aus reiner Geldgier oder aus Fanliebe bzw. aus Liebe zu diesem Sport passiert. Trotzdem einer der ganz Großen vor allem als Mankind hat er mir immer sehr gut gefallen. Und Mr. Socko ist für mich ohnehin Kult. Doch ich denke es ist nun wirklich an der Zeit Mr. Socko endgültig an den Nagel zu hängen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Unrated Superstarwrote on 21.11.2007:[10.0] "Einfach nur eine verrückte Sau - im positiven Sinne! Der wohl beste Hardcore-Wrestler Ever! Bei Aktion, wonach er noch aufsteht und weiter macht, würden andere schon nach dem Sani schreien! Dazu noch ein überaus sympatischer Mensch mit grandiosen Mic-Qualitäten. Absoluter Respekt für seine Leistungen von mir!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Alan Smitheewrote on 19.11.2007:[8.0] "Hat in meinen Augen, durch unzählige oftmals auch lustlose Comebacks, sehr viel von seiner Reputation eingebüßt. Nichts des so trotz ist und bleibt er aber eine Legende und das nicht nur wegen seiner unzähligen Hardcoreschlachten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: TheAdaawrote on 16.11.2007:[8.0] "Früher ein Gott am Mic, mit grandiosen und herausragenden Promos. Zudem hat er seinen Körper über die Jahre mit so ziemlich jedem Hardcore Gedöns kaputt gemacht das es zu tun gab. Foley hat dabei verschiedene Alter Egos aufgebaut, wobei Cactus Jack wohl das geilste und brutalste gewesen ist. Er ist ein Hardcore Wrestler durch und durch, normales Wrestling kann er nur begrenzt. Trotzdem eine Legende und bei der WWE total falsch aufgehoben, da diese mit Foley nichts mehr anfangen können. Schade."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Medeawrote on 10.11.2007:[0.0] "Mick Foley war vor 10 Jahren einmal ganz nett, zumindest als er ein Gimmick wie Mankind erfüllen konnte. Aber mittlerweile ist da nichts mehr übrig. Er wrestlet nicht einmal mehr durchschnittlich, Charisma kann man ihm auch nicht zuschreiben und rhetorisch ist er leider auch niemand, der eine Show füllen könnte. Ich finde nicht, dass etwas gefehlt hat, als es still um ihn wurde."
Rating: 0.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: snierwrote on 06.11.2007:[10.0] "Ein unglaublich positiv verrückter! Was der alles durchgemacht hat und dazu sein überragendes Mic-Work."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Rated-R-Fanwrote on 29.10.2007:[8.0] "Er ist und bleibt eine Hardcorelegende. Aber die Technik lässt zu wünschen übrig."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: antihiphop2002wrote on 29.10.2007:[6.0] "Im Ring ist er meiner Meinung nach total überbewertet. Ist mit dem richtigen Partner aber in der Lage immer noch ein gutes Match zu zeigen. Am MIC ist er unterhaltsam, aber Charisma hat er für mich keins."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Benny110106wrote on 28.10.2007:[6.0] "Hätte als Legende "sterben" können aber leidet nun an der Terry Funk Krankheit. Trat nach 2 starken Jahren ab aber kam zu oft wieder. Heute nur noch langweilig, daher nur eine 3."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Bullit69wrote on 24.10.2007:[8.0] "Mhhh... Hardcore-Legende, Mic-Work... is alles klar! Ich fand das Video geil mit dem er sich bei WWE (glaub ich) beworben hat! ;)"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Blue Meaniewrote on 17.10.2007:[10.0] "Biggest Hardcore Legend ever! Allein seine Verletzungsliste ... awesome! Zudem ist er auch am Mic einer der Genialsten. Daher eine klare 1."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Peisistratoswrote on 04.10.2007:[10.0] "Was der schon alles aushalten musste ist unglaublich, alleine deshalb verdient er sich schon eine glatte Eins."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: dariawrote on 29.09.2007:[10.0] "kein überragender Wrestler, aber die Ikone des HC-Wrestling. Dazu extreem unterhaltsam und ein supernetter Typ"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Bhanduwrote on 28.09.2007:[10.0] "Fantastisch am Mic, hervorragender Brawler und ein unglaubliches Talent, die Crowd in seine Matches mit einzubinden. All dies macht einen hervorragenden Wrestler aus. Da stört es auch kein bißchen, daß er ein hundsmiserabler Techniker war. Lebende Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Nick Toxicwrote on 24.09.2007:[8.0] "Foley is der wahre King der Deathmatches, also geb ich einen Scheiß auf Supreme, Zandig, Mondo und wie sie alle heißen. Sein Mic-Work ist fantastisch, das einzige was nervt das er nur noch irgendwo auftaucht um seine Bücher zu promoten und darauf besteht bei WM aufzutauchen. Deswegen nur Acht Punkte..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: EG4Livewrote on 19.09.2007:[8.0] "Also, ich bekomme langsam das Gefühl, dass Foley seinen mittlerweile überdimensionierten Hintern nur noch in den Ring bewegt, wenn er irgendetwas verkaufen will! Sei es der x. Teil seiner Biografie oder sonst was! Trotzdem ist er einer ner bedeutendsten Männer im Wrestling und eine absolute Hardcorelegende! Note 2"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Baszdmegwrote on 19.08.2007:[10.0] "Eine Legende. Hat das Biz sowohl mit Matches als auch Promos geprägt (ECW Promos = priceless). Er ist seit Ewigkeiten im Business und mal von den "üblichen Verdächtigen" ;) abgesehen hat er mit wirklich niemanden ein Problem - RESPEKT! Ich bin nicht mal ein wirklicher Fan von ihm, aber wenn ich mir das alles so angucke finde ich selbst die Note 1 ist zu wenig."
Rating: 10.0
Sentiment: 0.65625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: shannonmoorewrote on 16.08.2007:[10.0] "Bin kein Hardcore Fan aber wer sich so viel antut für dieses Geschäft, wer solche geilen Promos liefert, wer Heel und Face gleich gut spielen kann und wer sehr gute Bücher schreibt der ist eine wahre Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: DrBreswrote on 13.08.2007:[8.0] "Kenne niemanden, der trotz seines wrestlerisch eher mauen Talents so zu begeistern weiß... Hab ihn immer ganz gerne gesehen, bis zu seinem Wresltemania-Hardcore-Match gegen Edge... danach entsprachen die Auftritte nicht seinem Niveau."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ecw foreverwrote on 06.08.2007:[8.0] "Er war im Team mit Bob Orton sehr unterhaltsam und allgemein in der UWF. Und in der WWF natürlich auch. All seine Gimicks waren genial und sein Mic Wor ist bis heute unvergessen. Und natürlich Respeckt für all diese Verletzungen. Eine 10 kann ich aus Skill Gründen nicht geben, er war nunmal nicht gut im Ring ohne Waffen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Ericwrote on 24.07.2007:[8.0] "Ist ein super Wrestler der die Fans immer wieder mit seinen Matches begeistert hat! Bestes Match (von denen die ich gesehen habe) ist meiner Meinung nach das Hell in a Cell Match gegen Triple H!"
Rating: 8.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Comptonwrote on 23.07.2007:[8.0] "Zweifelsohne eine Hardcore-Legende und am Mikrofon unschlagbar. Leider ist sein Image zur Zeit stark angeschlagen, ständig muss er Matches verlieren und geht somit als ernsthafte WWE-Legende nicht durch. Das ist er aber."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Blade Bourdeauxwrote on 14.07.2007:[8.0] "Wenn ich mir das Gesamtpacket Mick Foley angucke, also den Worker ebenso wie den Autor, dann komme zwar immer noch nicht an die ganz Großen des Business heran, aber über die, die besser als Durchschnitt sind allemale."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: MGStylezwrote on 08.07.2007:[10.0] "Er ist lustig, brutal und es ist immerwieder schön ihn zu sehen."
Rating: 10.0
Sentiment: -0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ShaneOwrote on 29.06.2007:[10.0] "Hardcore Legende! Am Mic Top, im Ring Top, Charisma Top - stahl eine Catchphrase von The Rock! :-) Nebenbei in einem der unterhaltsamsten Tag Teams alles Zeiten unterwegs."
Rating: 10.0
Sentiment: 0.53125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: HHH-Stephwrote on 24.06.2007:[10.0] "Mick Foley is DIE Legende. Er war so ein hammer Wrestler. Stach natürlich in seinen Hardcore Matches hervor, konnte aber auch gute normale Matches bestreiten. Am Mic war er begabt wie kein zweiter und hatte ein riesen Charisma. Zurecht dreifacher WWE Champion! Hat mit seinen Aktionen die Gesundheit für die Fans aufs Spiel gesetzt. Thank You Mick!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Adrammelechwrote on 24.06.2007:[10.0] "Ich kenne keinen Wrestler der soviel Hardcoreelemnte über soviel Jahre ertragen hat. Wie macht dieser Kerl das nur? So brutale Machtes, trotz beeindruckender Intelligenz und Sympathie. Ich glaube das ist sein Humor, und die Kunst über sich selbst lachen zu können. Hut ab vor dem vielleicht beeindruckensten Entertainer den ich kenne."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Dieser Mann hat den Begriff Hardcore revolutioniert! Seine Matches sind an Härte, Brutalität und Schmerzen nicht mehr zu übertreffen! Die einzig wahre Hardcore Ikone ist und bleibt Foley!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Foerstawrote on 24.06.2007:[10.0] "Genial. Hat soviele Gimmicks überzeugend rübergebracht und man fühlte sich als Fan dadurch nichtmal verarscht, wie das bei sowas in der Regel ist. Absolut hart, wie lang eer sich reihenweise Verletzungen abholte und immer wieder Hardcore-Matches bestritt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Azraelwrote on 24.06.2007:[10.0] "Hat das Wrestling Entertainment über seine Gesundheit gestellt. Ob das Klug war, wage ich zu bezweifeln ist aber auf jeden Fall die Note 1 wert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Trevedaswrote on 24.06.2007:[10.0] "Was ihm an Technik fehlt macht er mit MicWork und Charisma wett. Was er an Matches abgeliefert hat ist wirklich Wahnsinn."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Wichtgestaltwrote on 24.06.2007:[10.0] "Einfach nur vielen Dank für die vielen unvergesslichen "OH my GOD! "-Momente"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Necronwrote on 24.06.2007:[6.0] "Ein Phänomen in allem, was er tut. Allerdings irgendwie nicht ganz mein Fall. Kann nicht genau benennen, warum ich nie so begeistert von den "Many Faces of Foley" war... ist aber trotzdem so."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: mongowrote on 24.06.2007:[10.0] "Foley ist einfach unterhaltung pur, egal mit welchem gimmick, egal in welcher form..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: timbo7111wrote on 24.06.2007:[10.0] "Mr. 100%. Foley lebt für seinen Job und er liebt ihn auch. Absolut intensive Matches. 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Geniales Mic-Work und die wohl denkwürdigsten Matches der WWE/F Geschichte. was will man mehr als Foley?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: bertiwrote on 24.06.2007:[8.0] "Ein glorifizierter Stuntman... Aber ein verdammt unterhaltsamer glorifizierter Stuntman mit beeindruckendem Micwork!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: jollietwrote on 24.06.2007:[10.0] "Habe ihn damals gesehen, kurz nachdem er sich in München das Ohr abgerissen hat (1993) - Foley hat trotzdem (oder gerade deswegen) 150 % gegeben. Beeindruckende Leistung!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Mediwrote on 24.06.2007:[10.0] "Was soll man denn anderes sagen, als dass dieser Mann eine waschechte Legende ist, der auch heute noch die Fans grandios unterhält? ^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: King of Queenswrote on 24.06.2007:[10.0] "Egal ob als Mankind, Cactus Jack, Dude Love oder Mick Foley, er gibt immer 100% und ist sich für keinen irrsinnigen Bump zu schade. Unterhalten konnte er eh in jedem seiner Charakter, und überzeugen, sowieso. Und das leigt nicht nur an seinem genialen MicWork oder seinen kranken Charakterzügen. Er ist eine wahre Legende."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: ABoyenswrote on 24.06.2007:[8.0] "Mick Foley ist einzigartig. Kein mittelmäßiger Wrestler hat es so verstanden wie er, durch atemberaubende, manchmal sogar wahnsinnige Aktionen, das Publikum zu begeistern. Er ist zu recht die Legende, die er heute ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: suntan superstarwrote on 24.06.2007:[10.0] "Alle Menschen, die Wrestlingfans sind und ihn nicht zumindest seine hervorragende Leistungen anerkennen haben, a) ihn niemals eine Promo "cutten" gehört oder b) sind einfach ignorant. Zehn Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: mdbnasewrote on 24.06.2007:[10.0] "Die Hardcore-Legende, hart im Nehmen, schockierend-geniale Matches und immer für Überraschungen gut. Ausserhalb des Ringes einer der natürlichsten, ehrlichsten und sympathischsten Wrestler überhaupt. FOLEY rules!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6&gimmick=Mick+Foley
Comment: Rob the bobwrote on 24.06.2007:[10.0] "Anfangs mochte ich ihn nicht weil ich, als er Mankind war, zu jung war um ihn zu verstehen. Aber nun denke ich das er einer der Leute ist der das Wrestling revolutioniert hat. Einsame Spitze"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: wrestlingswiftiewrote on 29.01.2025:[9.0] "Total package wrestler. The only issue is that his coke-filled promos could be a very repetitve often."
Rating: 9.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Skitzlee247wrote on 17.01.2025:[10.0] "Best of all time. His in ring story telling was unparalleled. He had everything, selling, promos, athleticism. RIP a legend of the ring."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Its Clobbering Timewrote on 13.01.2025:[10.0] "Macho Man is one of the best ever. Randy Savage was great at everything. arguably the most charismatic wrestler ever, could put on phenomenal matches, cut great promos, was a loveable babyface and a despicable heel. Macho Man is also one of the most influential wrestlers of all time. He's also one of my personal favorite wrestlers ever. Oh Yeah"
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: TripleCrownwrote on 30.12.2024:[10.0] "Randy Savage had it all. He was easy to love as a babyface and easy to hate as a heel. He was perfect on the mic, fantastic in-ring, had a great look, easily marketable, what else could you have possibly wanted in a main event talent? I will say, his commentary wasn't great, but it was 100% the Macho Man, so it's still fun to go back and listen to him ramble and get all excited about stuff. I do think he made the right move going to WCW back in the day as it was pretty clear Vince wasn't interested in him performing anymore. Despite how good he was, he did become slightly dated until he changed up his look. Still, the guy is a legend and if it wasn't for Hogan then Macho Man would've been the top guy in WWF in my opinion."
Rating: 10.0
Sentiment: 0.3073051948051948
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: HHHT102wrote on 29.12.2024:[10.0] "One of the greatest of all times in this business great in ring skills great promos great character great charisma his apical no one looks like him if just he had a run in nwa ahh that will be soooo great"
Rating: 10.0
Sentiment: 0.8333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: MatnificentMattwrote on 10.12.2024:[10.0] "Unbelievable charisma that is unmatched. Fantastic and unique look that can never be topped. His wrestling ability was great as was his character and psychology. Without a doubt, Randy Savage checked off all the boxes that make an amazing professional wrestler. One could argue no one could match his character or his charisma. Savage was always entertaining and he was so dedicated in every match and program he took part in. A true icon. OOOOOOOH YEAH"
Rating: 10.0
Sentiment: 0.35937500000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Rainmakerwrestlinhfandwrote on 01.12.2024:[10.0] "One of the greatest of all time the best in his generation in WWE His matches with Ricky steamboat and ric flair was great"
Rating: 10.0
Sentiment: 0.9333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ItsAllAWorkAnywaywrote on 15.11.2024:[10.0] "Macho Man was one of the Top 3 wrestlers of the 80s when it came to drawing power and image recognition (with the other two being Hogan and Flair.) Macho's intensity was through the roof, and he was pretty committed to protecting all facets of the business. Even after his passing, you can still find the image of Macho Man adorning Slim Jim's because his commercials became synonymous with the brand. He left behind a legacy that will continue to be admired by fans for generations."
Rating: 10.0
Sentiment: 0.045
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Pigeon Scratchwrote on 09.10.2024:[10.0] "It still pains me that Macho Man was always seen as a number 2 to Hulk Hogan despite the heights he made in his career. Legitimately timeless, massive amounts of charisma and intensity that is still only rivaled by just a few since, and was one of the best workers during the golden age. I'm willing to make the argument that he is a more beloved figure of that era of professional wrestling than Hogan is these days, and has hit a bigger pulse into culture than Hulkamania has since it's peak. Debatable, I'm sure, but a hill I'm willing to die on."
Rating: 10.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: jsbortswrote on 19.09.2024:[10.0] "Randy would have been good in any era, able to connect as a face and a heel and had an incredible longevity to his peak. Was a good worker, but a way better character than anything else. Weird promo, but in such a fantastic way that it absolutely worked. World Champion in WWF when it meant something important. No real weaknesses and tons of strengths."
Rating: 10.0
Sentiment: 0.33636363636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Saladbagelwrote on 13.09.2024:[10.0] "Prime Macho Man can hang in any era, no questions about it. He was a good wrestler in an era not known for its workrate (at least in the US), and his promo game was nearly unmatched. There aren't many wrestlers I would easily see as being a complete package, but Randy Savage is one of them. If you haven't seen his work, then I advise you to check out his any of his promos, talk show appearances, or matches within his prime years."
Rating: 10.0
Sentiment: 0.1619047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ismarizviwrote on 07.09.2024:[10.0] "Macho man Randy Savage is truly is one of the best all rounders of wrestler he can cut, he can go in the ring, he can show his intresting character.His legendary matches with ddp, warrior and even hulkster were roundly remembered"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Chosen Onewrote on 26.08.2024:[8.0] "Zweifelsohne eine Legende. Sein Charakter, Look und Promo-Stil haben mich aber nie so wirklich abgeholt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Zak22wrote on 09.08.2024:[8.0] "Overrated but still good. Savage was probably the best worker to be wwe champion in the Hogan era and he was a good mid-card champion. But my favourite Savage stuff is verses Diamond Dallas Page in WCW, which was incredible. Good talent, deserved better than being in Hogan's shadow."
Rating: 8.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: lgccswrote on 30.07.2024:[10.0] "Very disappointed in 80s crowds for preferring Hulk Hogan over Randy Savage to be honest. Savage was the complete package in an era where the wrestling took a back seat for pageantry and charisma. Savage had all three in spades. One of the few in the WWF main event scene at that time who could acclimate himself with modern fans with no real issue. His promos, entrance, gear, look, moveset all have withstood the test of time and he remains one of the WWF's all time greats."
Rating: 10.0
Sentiment: -0.02604166666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: bigredtalk89wrote on 24.07.2024:[10.0] "He could cut a promo like you couldn't believe, he could work so well that he pulled off a classic with the Ultimate Warrior, he succeeded and became a household name DESPITE Hogan using politics to hold him back, Macho Man was truly one of the all time greats"
Rating: 10.0
Sentiment: 0.05555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Rassle Fanwrote on 12.07.2024:[10.0] "Randy Savage could do it all! He had off the chart charisma and was an equally amazing athlete who had some of the most memorable and greatest matches ever. He was also a larger than life character who wasn't afraid to be funny and self deprecating."
Rating: 10.0
Sentiment: 0.32142857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Johanwrote on 30.06.2024:[10.0] "- The single greatest dramatic storyteller in wrestling history, even above Shawn Michaels and Ric Flair. - The most fun and intense moveset in 80s, just greatly engaging and entertaining to watch his offense. - The greatest seller in wrestling history - The greatest promo in the 80s after Rowdy Roddy Piper, mand maybe Ric Flair. - one of the greatest characters in wrestling history and he lived the character. Randy Savage is the definition of a 10/10"
Rating: 10.0
Sentiment: 0.4496031746031746
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Hippykillerzwrote on 13.06.2024:[10.0] "Without a doubt, one of the greatest and iconic wrestlers to ever live. Everything he did, in or out of the ring, had purpose and he felt like no one else in any roster he was in. He inspired some many wrestlers and one of the few stars to cross over into the main stream (look at Slim Jims and Spider-Man). His in-ring work was fantastic with Steamboat and Flair and his feuds with Roberts and Hogan are some of the best ever. There will never be another Macho Man and thank God we were alive to see him in our lifetime."
Rating: 10.0
Sentiment: 0.3603030303030303
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Aseelajwrote on 18.04.2024:[10.0] "One of the best wrestlers of all time fullpackge in ring skills promos character charisma had it all"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Dirty Diegowrote on 24.03.2024:[10.0] "My favourite wrestler in the wwf in the gimmick era, Did great work in Memphis before that and continued to be a top guy in wcw, macho man could do it all have classic wrestling matches had larger than life personna, probably the best character in the history of wrestling, he up their with the best of them when it comes to promos and the biggest brander ever with his epic slim Jim shit OOOOOUUUUU YEAH!"
Rating: 10.0
Sentiment: 0.30185185185185187
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: MattHallwrote on 23.03.2024:[10.0] "Macho Man is the total package of wrestling, he was great on promos, good at storytelling, great in the ring, great physique, good size, and a colorful attire. Truly one of the goats of the 80s and early 90s. I do believe that Savage is a much better worker than guys like Hogan & Warrior. Savage can put a good show, and can have a five-star match with anyone he wrestles. My favorite Job guy Jerry Allen who was billed as Jerry Oske in 1985, had an excellent CWA match with Randy Savage."
Rating: 10.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: edgyfrwrote on 13.02.2024:[9.0] "Randy Savage was pure talent and one of the best representation of the wrestling from the golden era, with a very characteristic style, he could give an amazing match or tell an amazing story, he would elevate any event where he was in, absolutely wild performer."
Rating: 9.0
Sentiment: 0.3896598639455783
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Scottielstamperwrote on 19.01.2024:"10 of My personal favorite athlete and entertainer. The Macho Man Randy Savage was one of the greatest wrestlers of all time. As a face I loved him as a heel I loved to hate him. Some of my favorite opponents of the Machoman include his run with Ricky Steamboat and Ric Flair. He gave great performances with Hogan the Warrior and DDP."
Rating: No rating found
Sentiment: 0.42500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: laddermatchwrote on 06.01.2024:[10.0] "OOOOOOHHHH YEAHHHHHHHHH! What else can you say about the Macho Man other than he's the greatest total package in pro wrestling history. He was the jack of all trades and somehow the master of all of them too. His promos were absolutely legendary and his voice is the most iconic there has ever been in wrestling. His wrestling was also superb. His legendary matches with the likes of Ricky "The Dragon" Steamboat, Jake "The Snake" Roberts, Ultimate Warrior, Ric Flair, Diamond Dallas Page, Ted DiBiase and the Hulkster will always stand the test of time. He was the personification of pro wrestling in the 1980's. Him and Miss Elizabeth together was just absolutely magic and they remain the best couple in wrestling history. RIP Macho Man and RIP Elizabeth."
Rating: 10.0
Sentiment: 0.5795454545454546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: danzitorockwrote on 04.12.2023:[9.0] "The Macho Man was a legendary wrestler and one of the most popular and captivating figures of the 80s and the 90s. He played second fiddle to Hulk Hogan, but managed to get over just like the Hulkster, due to his incredible charisma and personality. I think Randy Savage had some limitations in the ring but still had a good workrate and in his prime was a great all-around performer, very skilled, but unfortunately when he became really popular his abilities were already slowing down. He can definitely be listed as one of the best promo workers of all time, his mic skills were amazing."
Rating: 9.0
Sentiment: 0.4276143790849673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: JediSaiyanMaster1203wrote on 20.11.2023:[10.0] ""Macho Man" Randy Savage is easily one of the all time greatest professional wrestlers and one of my favorites ever. Randy Savage, for me, was the total package as a performer. He is a great in ring wrestler, every move he did looked amazing, his elbow drop is still the best elbow drop in history (only rivaled by Kairi Sane's), the way he would do a flying axe handle looked like he was floating in mid air and controlling how he was flying like no other. Charisma? Might just be the most charismatic professional wrestler of all time, this dude did an iconic promo about cream crops. If any other wrestler did that promo, it would have flopped, but not when it's given to Randy Savage. On the mic? Easily a top 5 talker of all time, Macho Man's voice is beyond iconic and his catchphrases live on to this day that even none wrestling fans know them, thanks to his legendary Slim Jim commercials. Despite he was in the lineage of wrestlers who were loud shouting coke fueled talkers, he was quite eloquent when he spoke, and was able to be naturally funny and could literally use ordinary objects as metaphors and always works no matter what. Savage is the kind of guy who could read off a phone book and it would be an amazing promo, that's how good he is. His outfits were some of the best as well, always had amazing fashion sense and had nice color pallets to his outfits that are still iconic to this day, always came down to the ring and wrestled in style, always aesthetically pleasing to see. While many fans of today would argue that the 1980s WWF era has aged, among the exceptions, Randy will always be mentioned along with a few other exceptions. He's so good, he could have started in any era from the 1980s and would have still gotten over, he'd probably thrive nowadays in the ring because of how planned out matches are nowadays, and Randy was known to wanting his matches set out before it was time thanks to his OCD. He's had countless great matches and feuds with Ricky Steamboat, Ric Flair, The Ultimate Warrior, Hulk Hogan, etc. Also, he was in the 2002 Spider-Man film (great movie) as Bonesaw McGee, so that alone makes him even cooler. While his WCW and TNA runs weren't all that amazing, his WWF run will forever be printed on the brains of millions of fans and what most people think of. R.I.P. Randy Savage "OOOOOOH YEAH! ""
Rating: 10.0
Sentiment: 0.3784463957759412
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: SavageTygerwrote on 13.10.2023:[10.0] "Macho Man is my favorite wrestler of all time. He had everything a wrestler should have, charisma, talent, larger-than-life personality he was just nonstop action from bell to bell. Savage had amazing psychology and he was just the perfect professional wrestler in my opinion. I even liked him during the Team Madness run, while nowhere near the performer he had been even in the mid-90s the unhinged, lunatic persona was something I got behind. Randy will forever be considered a top 10-15 all-time great and for me, he is above everyone outside of Shawn Michaels and Kurt Angle. Long live the Macho Man!"
Rating: 10.0
Sentiment: 0.28717532467532475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: DangoDaisukiwrote on 19.09.2023:[7.0] "Meine Bewertung passt sich der Matchqualität auch hier im Matchguide an, ja er war gut, aber so gut nun auch wieder nicht. Charisma und so weiter hat er definitiv, aber für mich ist die Qualität bzw die Unterhaltung in Matches am wichtigsten. Da war er eben nur ganz gut und nicht mehr."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: celticinvaderwrote on 08.08.2023:[9.0] "One of the all time greats for a reason. As iconic as Hogan, but more adaptable, and could cut a better promo for sure. He could talk for days, he could work, he's been involved in pretty much all of the best matches of the golden age, just an absolute legend."
Rating: 9.0
Sentiment: 0.4388888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ViolenceBretwrote on 07.08.2023:[10.0] "Let me tell you something, the Macho Man is the perfect professional wrestler. He embodies everything about this great sport, and even had mainstream cross-over fame via slim jim commercials and the Spider-Man movie. Moreover, his matches hold up amazingly well, as an athlete he was no joke, having a background playing for the Reds baseball team. True Savage had his demons in life, but ultimately he never was shy about hiding his issues on-screen. In other words, Savage was the real deal, for better or worse. He could be sympathetic one minute, and a complete monster the next. Simply put, Randy Savage was a complicated man. A modern day Ajax The Great from Ohio. Sure his later stuff with TNA was slightly bland, but he knew when to call it a day and retire peacefully. RIP The greatest of all time."
Rating: 10.0
Sentiment: 0.22644927536231887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: crs285wrote on 19.06.2023:[8.0] "One of the greatest in ring wrestlers of his generation. Changed wrestling the way he put together matches. His mic skills and charisma were amazing. He was a good commentator, but heart was never in it. TNA run was a mistake."
Rating: 8.0
Sentiment: 0.7666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: wingnutzredux75wrote on 17.06.2023:"pound for pound greatest wrestler of all time....was a true wrestling star who lived his gimmick...with all the success he earned throughout his storied career imo didnt get the true push he deserved in his prime."
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: AyoWrasslinwrote on 21.04.2023:[10.0] "Macho Man was way ahead of his time. His gimmick could work in any era. He was one of the greatest talker and in ring workers of all time. R.I.P. Macho Man THE PERFECT WRESTLER / 10/10"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Cyclopz007wrote on 31.03.2023:[10.0] "The all time greatest in the ring and on the mic. Never has anyone been so captivating. Forever my favourite wrestler."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: greaterdalewrote on 03.03.2023:[10.0] "He's my favorite promo ever to be honest. Like he's just one of the best to ever cut a promo and then he could back it up in the ring once the bell rings. In a better world he would have been the top guy in the 80s instead Hogan. But at least he was still pushed hard. It's insane that Vince let Macho man slip out of his fingers during the early 90s because he wanted him to retire from in ring competition. He wasn't even that old? and when he left for WCW he took his Slim Jim sponsorship with him that cost the Fed a lot of money. Besides the whole letting a generational talent leave for no good reason. Luckily for him and his fans he still had a great run in WCW and likely would have continued to wrestle in the early 2000s if he hadn't gotten injured on the set of Spiderman. Overall he's just an absolute goat."
Rating: 10.0
Sentiment: 0.14958333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: kewf1988wrote on 02.03.2023:[10.0] "Randy Savage was an extremely charismatic wrestler who was amazing on the mic and wore colorful outfits, but was also extremely good in the ring, as shown by his match with Steamboat and his Warrior matches. A complete package."
Rating: 10.0
Sentiment: 0.44000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: nothingleftinsidewrote on 24.02.2023:[10.0] "When you picture a professional wrestler in your head, you see the Macho Man. From top to bottom, the guy was the quintessential pro wrestler of the 80s and 90s. Second only to hogan in draw and appeal, Randy wrestled on top (or near it) for about 15 years, with some time off here and there. His in-ring was among the best of his era; only Steamboat, Flair, and Bret can you really say were better. His style demands crowd interaction, something that's been seriusly lost in the recent years. So many signature spots and taunts... Savage is always playing to the very last row with the volume knob turned up so much it broke off. You can tell it's hm just by the way he moves. Plus, the entire business has shifted towards the way he worked, for better or worse. He kept himself relevant as long as he could, and knew it was over when it was over. Then there's his cultural impact. The Slim Jim deal got him on TV everywhere, and got him a job in WCW. Commercials he shot in the 90s still air on TV. He's so awesome in Spider-Man, and his few voice roles are all worth checking out. The voice... perhaps *the* central part of his gimmick. And he just talked like that! His promos are some of the best of all time, the guy was just so good at putting them together. Beautiful, profound stuff. Dude really lived the gimmick. He provided a great foil to Hogan, and is responsible for the majority of Hogan's best stuff. Hogan's heels were typically one dimensional, but Randy always made things interesting, either friend or foe. Speaking of which; he was great as babyface or heel, another hallmark of a true all time great. He even made a point to put younger guys over whenever he had the chance. An all-time, top 5, rushmore guy... the highest of tiers is where he belongs. Top marks across the board- A worker, A+ promo, A+ gimmick/look. Seriously, it doesn't get much better than Savage."
Rating: 10.0
Sentiment: 0.32222222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: CMFunk007wrote on 21.01.2023:[10.0] "This man was a charismatic badass. The Macho Man was second only to Hogan in popularity thanks to foresight to pair him with Hogan for the Mega-Powers storyline. His love story with Miss Elizabeth was one of the most touching things ever to grace wrestling. HIs feud with Jake Roberts after getting bit by that snake was intense and he's the only man to ever get a great wrestling match out of the Ultimate Warrior. I even enjoyed his run with the nWo and Team Madness with Madusa, Molly Holly, and Gorgeous George. Savage was a once in a lifetime wrestler and the world lost a great performer the day he died."
Rating: 10.0
Sentiment: 0.37142857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Der Galische Kriegerwrote on 14.01.2023:[10.0] "Quite possibly the greatest wrestler of all time. The intensity, the insanity that he brought into his gimmick of Macho Man Randy Savage was untouchable. What were our parents thinking letting us watch him coked to his eyeballs spitting out the craziest promos of all time. Technically, psychologically he was a genius, adding his agility into the mix. He worked best as a heel as it suited his intensity and craziness, and he was willing to sell. I actually hated him as a child, everyone was either Hogan, Warrior or Savage, I wish now looking back that I had of picked Savage. I was delighted as a young nipper when Warrior beat him in the career ending match. He elevated Hogan in the late 80's so his Hulkamania could last another few years, he had probably the greatest Wrestlemania match against Ricky Steamboat, he took a snake bite from Jake Roberts' snake and he just had quality match after match, promo after promo and was red hot for years. Still finding some of his early matches which is a joy to behold. Charisma hot, Mic Skills hot, Gimmick hot, Longevity hot, Overness hot, Psychology hot, Workrate hot, Technical Ability hot. 10+*"
Rating: 10.0
Sentiment: 0.22307692307692306
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: benh2wrote on 11.01.2023:[9.0] "Randy Savage was the ultimate showman. A good but not great wrestler but the greatness all came from the bravado. From flashy gear to insanely captivating promos, you just couldn't help but be invested in anything he did. And when the story finally made it to the ring, he was more than adequate enough to back it up, which a lot of wrestlers of his ilk weren't able to do."
Rating: 9.0
Sentiment: 0.11944444444444442
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: MainEventMasterwrote on 02.12.2022:[7.0] "Savage was good, had great adaptability, but unfortunately was sucked up by the steroid craze, and that kind of hindered his ability."
Rating: 7.0
Sentiment: 0.28
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: sbg2022wrote on 11.11.2022:[10.0] "Quite honestly, the best of the best in WWF and WCW. His feuds with guys like Ric Flair, Jerry Lawler, Hulk Hogan & Diamond Dallas Page are legendary. Colorful, charismatic and taken from us way too soon."
Rating: 10.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: CurlyHairMetalPunkwrote on 22.10.2022:[10.0] "Randy Savage was the absolute greatest professional wrestler from the Golden Era of the WWE. When the Macho Man came down to the ring for a match or backstage for an interview, a viewer never forgot it because he always wore some new and incredible crazy outfit that captivated the eyes of billions of people. When the Macho Man spoke no one ever forgot it because he captivated the ears of all who listened to him speak. And when the Macho Man wrestled in the ring, nobody ever forgot what they were seeing as Randy Savage was just leagues above just about every other professional wrestler in the ring from his time in the WWE. Before Shawn Michaels, the Macho Man was the original Mr. WrestleMania in that he left the WWE fans with career defining moments that made us feel."
Rating: 10.0
Sentiment: 0.1716006216006216
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: RavenCrow75wrote on 06.10.2022:[7.0] "For the most part I will be basing my Wrestler ratings on five criteria four of which are based on in-ring ability and the last on charisma. I believe these five criteria are pro wrestling's version of Tommy Lasorda's criteria of "five points" in baseball. For pro wrestling those five criteria are power, speed, technical ability, hardcore & charisma. Randy Savage's scores: Power: 7 Speed: 7 Technical: 5 Hardcore: 9 Charisma: 9 for a total of 37 and an average of 7.4 rounded down to 7."
Rating: 7.0
Sentiment: 0.027777777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Giantfan1980wrote on 05.10.2022:[8.0] "Savage was right up there with Hitman, Perfect, and Michaels, but by 1993/94 he was losing some steam as years of injuries started slowing him down. He did have a resurgent feud with DDP in 97 but by early 98, his knees were shot and he just basically limped along putting in mediocre performances until taking time off. He came back for a few months in 99 but he was a shell of his former self. Still one of the best dressed and promo guys of his time."
Rating: 8.0
Sentiment: 0.17001763668430336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "While Hulk Hogan was the face of 80s wrestling in America, I think the Macho Man was better than anyone else from that era, and was also more charismatic than Hogan just by voice alone. A true icon of the business that will always be fondly remembered."
Rating: 10.0
Sentiment: 0.4625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Conquistador37wrote on 06.05.2022:[10.0] "What more can you say about Randy Savage that hasn't already been added? If a few of these remarks have been uttered by others, I am both sorry for my redundancy, but not sorry because they SHOULD be noted: He took Ricky Steamboat from relative obscurity (in the eyes of the mainstream audience) and put him on the upper echelon of all time talent over night. Yes everyone knows the match is a classic, but the most important element is the positive impact it had on The Dragon's career. He dragged the absolute best (that anyone possibly could) out of Hulk Hogan in their "The Mega Powers Explode" Wrestlemania 5 match. One more time - the best match Terry Bollea ever had was 100% because of Randy Savage; and he was severely injured that night, even risking amputation of his arm! (! ) It was Randy Savage that made people hate Jake Roberts in the WWF, NO OTHER NAME can say the same. The fans wanted to adore Jake Roberts, up until he hurt Randy Savage! Taking a cobra bite like an absolute BOSS. He was the launching pad for Sherri Martel's career to truly take off, positively impacting the career trajectory of one Shawn Michaels some years later. So many from last century got their big rub from Randy! He came into WCW and was fairly well received - when goobers like Hogan were basically instantly ostracized by the die hard southern fans, do not sleep on this fact! The world LOVES/LOVED Randy Savage and for good reason, he was able to tap into the deepest parts of us all when we wouldn't/couldn't allow others all while making the sport/product much better. He also had a late career resurgence that catapulted Diamond Dallas Page into the stratosphere and opened eyes wide all over again. Remarkable longevity, even post mortem! Now an American institution/significant portion of pop culture. A solid two hundred and fifty with no hesitation, but eh - we can only go to 10 here. DIG IT!"
Rating: 10.0
Sentiment: 0.18104066985645936
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Tomas Cunhawrote on 22.04.2022:[10.0] "This guy fucking rules. He is one of (if not the) more entertaining characters in the entire history of wrestling. There are so many memories of Randy Savage that come to mind within seconds. Plus, a spectacular wrestler who could have awesome matches against literally anyone. Terrific runs as IC and World Champion. He was the man."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: MorbidAxiswrote on 07.04.2022:[7.0] "I was never a HUGE fan of Savage in the ring. His promos were always fire though, and I 1 billion percent liked him over the likes of Hogan."
Rating: 7.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Savage was one of the first wrestlers to be complete all around with mic skills, in-ring character work, technical prowess, and the versatility to portray both a fiery babyface and unstable tragic heel."
Rating: 10.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: rishabhwrote on 30.01.2022:[10.0] "Randy Savage might just be the most complete wrestler of all time. I seriously can't think of anything this guy lacked. He was an amazing wrestler who could carry anyone to a great match. He had an awesome look and oozed charisma. His mic work is untouchable and his voice can never be forgotten. Everything he did was GOLD. His finisher is just an elbow drop off the top rope but it's one of my favorite finishers of all time. There's no doubt what score Macho Man gets.. OH YEAHHHHHHHHH!"
Rating: 10.0
Sentiment: 0.47395833333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: GriffinXwrote on 23.01.2022:[10.0] "Simply put one of the greatest to ever do. People that have never seen wrestling know who Randy Savage is. He brought the passion and intensity you want. So many classic matches and maybe the greatest ever"
Rating: 10.0
Sentiment: 0.5333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: TigerDiverwrote on 05.01.2022:[10.0] "Without a shadow of a doubt, my all-time personal favorite, in not only wrestling, but perhaps in every form of entertainment. The more I watched him, the more I just appreciated him. He's such an enjoyable guy to watch both in and out of the ring, on commentary, wherever you name it. Tremendous intensity, explosive wrestling style, entertainingly over-the-top promo, sheer amount of charisma, legendary character, recognizable name in pop culture, man's probably got it all. It's even more heartwarming to know that he's an even better human-being on top of this. What a great, great guy. Gone way too soon."
Rating: 10.0
Sentiment: 0.35462962962962963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: OnlyHalfTheEffinShowwrote on 04.11.2021:[10.0] "Macho Man was the ultimate utility top card guy. As in, there was virtually no role where he didn't feel out of place except perhaps in a dedicated tag division. Need a star to hold a midcard title to help it feel more important and to help build a division around it' Randy's your guy. Need a main-event caliber talent to hold the world title' Randy's your guy. Want a blood-feud away from the title as the two stars use their story-telling and charisma to get the storyline over' Randy's your guy. It's not an exaggeration to say there was nothing in wrestling he couldn't do at least moderately well. In ring he was spectacular, an amazing technical wrestler who, in-conjunction with his amazing story-telling in the ring, always stood to steal the show at any event no matter what position in the card he occupied. But where Randy perhaps shined most was his innate charisma. *No one* can do a promo like Randy Savage, his intensity is literally unmatched and you have to wonder if Randy was ever even hired at the promotions he worked, or if he just walked in and started to wrestle and cut promos. His "Cream of the Crop" promo in WWF is quite possibly the best and one of the most well-known wrestling promos of all time. Randy was a one in a million talent who could do it all, a true GOAT, who's career could've been unprecedented, if it weren't for Hogan constantly trying to keep Randy stuck in his shadow, Randy could've had an even more stellar career. SNAP INTO A SLIM JIM, OHHHH YEAH"
Rating: 10.0
Sentiment: 0.34736842105263155
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: YourKingMobwrote on 20.08.2021:[10.0] "My personal G. O. A. T. of US wrestling for the 80's era, more so than Hogan, Warrior and only barely edges out Steamboat from that era. The only reason Flair isn't higher because Flair was a bigger star half a decade behind him. Everything you put him in was great. Better as a heel, but a star as a face, had just the perfect edge of self-satire to his promos that helped cut through the pro-wrestling nature of them. A great look, aura, stellar in the ring, all around 10s except for his personal life."
Rating: 10.0
Sentiment: 0.23888888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Barbawrote on 31.07.2021:[10.0] "The best wrestler of his generation, without a shadow of a doubt. athletic, agile, fast, technical, and with a strong charisma almost comparable to that of Hulk Hogan. legendary his match at Wrestlemania 3 against Ricky Steamboat, against Hulk Hogan at Wrestlemania 5, and Ultimate Warrior at Wrestlemania 7. Great character and feud also in WCW with DDP, Kevin Nash, and the usual Hogan. LEGEND"
Rating: 10.0
Sentiment: 0.40925925925925927
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: BrayanLaPrewrote on 13.07.2021:[10.0] "One of the truly iconic characters in professional wrestling history, "Macho Man" Randy Savage transcended the industry. With legendary promos, phenomenal character work, classic matches, and iconic storylines, Savage had it all. His WrestleMania matches against Ricky Steamboat and The Ultimate Warrior were iconic, and his story with Miss Elizabeth ranks amongst the greatest of all-time. That pushes him from a 9 to an easy 10."
Rating: 10.0
Sentiment: 0.47000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Daigotsuwrote on 19.06.2021:[10.0] "As great as Savage was, I think he was underappreciated. While he was overshadowed by Hogan, he was clearly the superior wrestler and talker. He was as much a total package as anybody I've ever seen. His promo style was truly one of a kind, and his work in the ring was phenomenal. The Macho Man is truly an all-time great."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Rodycaz IIwrote on 26.05.2021:[10.0] "Arguably the most complete performer in the history of the business. Charisma off the charts, amazing promo, great physique/look and a really good in-ring worker. Truly a one of a kind talent."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: medousewrote on 14.05.2021:[10.0] "There was never a guy more charismatic than Macho Man Randy Savage. He lived his crazy gimmick. He had great in-ring skills, could cut hell of a promo and worked perfect both as babyface and heel. His career is worth book or documentary, in fact there are plenty of these already. His relationship with Miss Elizabeth is one of the greatest love stories in showbusiness history. As much positive feelings I have about this guy I also feel sad. I feel sad, that he was both a crowd's beloved entertainer, but also a very tragical character - especially his personal life. Unsuccessful marriage with Miss Elizabeth and his tragic death was a truly miserable end for both of his life and career..."
Rating: 10.0
Sentiment: 0.13207070707070712
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: BritishSteelwrote on 09.05.2021:[10.0] "Der Macho Man/ Macho King ist definitiv einer der absolut besten aller Zeiten! Bei ihm stimmt einfach alles: Sein Background, seine Leidenschaft fürs Wrestling, sein technisches Können, das er von der Pike auf gelernt hat, die Physis, seine Lust an jeden noch so irren Stunt, seine Einstellung, sein Larger-than-Life-Gimmick, dass er 24/7 lebte. Absolut niemand davor und danach konnte so überzeugend und mitreissend den wilden Mann machen wie er. Einer der ganz wenigen, die es fertiggebracht haben, als Face wie auch als Heel von den Fans geliebt zu werden. Und wie wir während seiner Langzeit-Fehden mit Hulk Hogan Miss Elisabeth geliebt und Sensational Sherri gehasst (naja, eigentlich auch geliebt) haben. Was für ein Vorbild für JEDEN Wrestler. Einer, der ganz gewaltig fehlt. Oooooh Yeah!"
Rating: 10.0
Sentiment: 0.8333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: AnBwrote on 17.04.2021:[9.0] "Fantastic in the WWF, and not so bad the first couple of years in WCW. Not a lot of wrestlers that can so easily pull off face and heel, but Macho Man could. The whole "off his rockers" Randy Savage thing in WCW got to be a bit too much for me eventually, but god damn he did it well."
Rating: 9.0
Sentiment: 0.13055555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Brett1980wrote on 23.01.2021:[9.0] "One of the greatest to step foot in a WWF ring. Over the top insane promos a style that was rough around the edges. As a heel would be great at stalling. He was a good flyer in the sense he jumped of the top rope and it didn't look artistic or fancy but it looked like it was gonna hurt. WCW work was nowhere near the level of his earlier work."
Rating: 9.0
Sentiment: 0.2833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: shittylittlerasslinwrote on 14.11.2020:[6.0] "Pretty basic inside the ring but a great character outside of it. His accomplishments speak for himself, as he turned out to be world champion in the two biggest sports-entertainment-esque promotions he was signed to."
Rating: 6.0
Sentiment: 0.2625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: joshjackalwrote on 14.05.2020:[10.0] "The Macho Man is and probably always will be my favorite wrestler of all time. He was just the total package: great in the ring, great promos, massive charisma, could work as a heel or a babyface (though I always preferred him as a heel). Even after he was pretty much over the hill, he was still hugely entertaining, particularly in his legendary feud with Diamond Dallas Page in 1997. The word "legend" has been cheapened in wrestling these days, but Savage was a TRUE legend."
Rating: 10.0
Sentiment: 0.4151515151515151
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: qbortwrote on 01.05.2020:[10.0] "Art thou bored? Snap into a slim jim! Ooh yeah... Macho Man was cream of the wrestling crop, brother. Hulks runnin from Macho, so I've heard. Be a Man, Hogaan!"
Rating: 10.0
Sentiment: -0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Der Macho Man Randy Savage war in Ring technisch zu seiner Zeit einer der besten und hat viele Klassiker geliefert wie z. B gegen Ric Flair, Hulk Hogan, Ultimate Warrior etc. , hatte mega gute Mic Skills mit einer sehr einzigartigen Stimme und war dazu sehr Charismatisch und brachte sein Gimmick perfekt rüber. Alles in allem eine absolute Legende und hat sich die 10 Punkte komplett verdient. Oh Yeah!"
Rating: 10.0
Sentiment: 0.22777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: FrankSiverowrote on 02.02.2020:[10.0] "Der Macho Man ist einer meiner absoluten Lieblingswrestler. Er war technisch vorallem in den 80iger Jahren und Anfang der 90iger Jahren großartig. Lieferte zeitlose Klassiker gegen Ricky Steamboat, Ric Flair, Hulk Hogan, Ultimate Warrior etc. Eine Charisma Bombe mit einem einzigartigen Look, der aus der Menge stach wie kaum ein anderer. Besaß ein großartiges Mic Work, was ihn in den 90igern am Kommentatorenpult ebenfalls sehr unterhaltsam machte. Er wusste wie er die Zuschauer begeistern konnte. Zurecht eine Legende, die man nie vergessen wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Excellence of Executionwrote on 04.11.2019:[9.0] "Der Paradiesvogel in den Main Events der späten Achtziger bis Mitte der Neunziger. Im Main Stream zu jener Zeit sicherlich einer der besten Worker, der mühelos als Heel oder Babyface agieren konnte, ohne sich groß verbiegen zu müssen. Für mich tatsächlich der möglicherweise beste Allrounder aller Zeiten, dem man auf seinem Zenit keine Schwächen nachsagen konnte. Sein überdrehter Charakter war nicht immer mein Bier, was aber wirklich das Einzige ist, das mich hier von der Höchstwertung abhält. Selbst Hogan konnte seine Karriere nur bedingt überschatten. Savage ist ein Kandidat, bei dem ich mir sicher bin, dass er Hogan dauerhaft als Babyface hätte ersetzen können, ohne dass dies kommerzielle Einbußen bedeutet hätte. Hogan wusste schon, warum er Savage so ein wenig sabotiert hat (und das hat er, das ist für mich überhaupt keine Frage)."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: game18wrote on 30.10.2019:[7.0] "Being a newby wrestling fan I am not that particularly impressed with Randy Savage as a superstar. His matches though excellent for his era simply doesn't stack up to the great matches I've seen from modern day wrestles as well as a few past legends. His promo work is great but not all time great. So though I can appreciate the importance of Randy Savage as a Wrestler as well as legacy in wrestling, I cannot give a higher rating than a seven."
Rating: 7.0
Sentiment: 0.43999999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: KyleEnjoysWrestlingwrote on 25.07.2019:[10.0] "An incredible character that rivaled the likes of Hogan, but he also had the in ring skillset to be an amazing gem to watch. A voice & presence that will be forever remembered in the wrestling world & beyond."
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: LandonRyanWyattwrote on 30.01.2019:[10.0] "A pioneer in the WWE, one of the greatest showmen ever... Unveliveable charisma, and undeniable heart, his matches with Steamboat, Warrior, Hogan and Flair are legendary. Very entertaining in every way."
Rating: 10.0
Sentiment: 0.8833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: zephyrwrote on 08.01.2019:[9.0] "One of the few shining examples of great in-ring ability during an era dominated by all-American muscle heroes who sucked at wrestling. Tremendous talent."
Rating: 9.0
Sentiment: 0.3111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: JEK 1991wrote on 13.12.2018:[10.0] "One of my favorites of all time. Very athletic and entertaining! His promos were amazing. He is way better than Hulk Hogan. OH YEEEEAAAHHH!"
Rating: 10.0
Sentiment: 0.5125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: RatingsMachinewrote on 01.11.2018:[9.0] "Randy Savage was one of wrestling's more colourful personalities. Even as late as 1997, he could still deliver his part of an excellent match."
Rating: 9.0
Sentiment: 0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Steamboat2511wrote on 01.10.2018:[9.0] "Randy Savage ist für mich eine wahre Wrestlinglegende. Im Ring sind mir zahlreiche starke Matches (z. B. gegen Steamboat) in Erinnerung. Eines der frühen Beispiele, für einen Worker der Technik und Persönlichkeit zusammenbringt. An Persönlichkeit stand er Hulk Hogan kaum etwas nach, war eine wirklich bemerkenswert populäre und extrovertierte Person. Am Mic durchaus gefällig, auch wenn mir da noch bessere einfallen. Auf jeden Fall eine ganz große Nummer der 80er und 90er und bleibende Legende."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Cameron621129wrote on 18.07.2018:[10.0] "One of the best wrestler in ring of his Era.  One of the best promos of his Era.  One of the most iconic wrestlers of all time. One of the most iconic voices of all time. Some of the best adverts of all time. A true superstar."
Rating: 10.0
Sentiment: 0.66875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Gauntlet84wrote on 14.04.2018:[10.0] "One of the greatest showmen of all time. Along with Hulk Hogan and the Ultimate Warrior, he was my favorite as a kid. Just a great entertainer and as charismatic as they come."
Rating: 10.0
Sentiment: 0.5599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Viper99wrote on 19.03.2018:[9.0] "Vom aussehen her vielleicht der Star der Golden Era, welcher am meisten heraus gestochen ist. Randy Savage war ein sehr guter In Ring Worker, Charismatisch und auf seine art ein sehr guter Micworker. Er verkörperte sein Gimmick perfekt. Er war das Gimmick. Er wurde nie der große Star, da er ein recht kleiner Mann in einer Era voller vollgepumpter Bodybuilder war. Hogan hat ihn klar überschattet was Overnesse anging und auch in Warrior investierte man wesentlich mehr als in Savage. Er wird aus diesen gründen auch oftmals bei den All Time Legends vergessen. Schade."
Rating: 9.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Wrestling Foreverwrote on 16.11.2017:[10.0] "Absolute Legende was war ich geschockt als ich erfuhr das er verstarb. Hatte ein großes Problem das viele seiner Kollegen bestätigten. Er war privat sehr freundlich aber furchtbar eifersüchtig wenn jemand seine damalige Frau Miss Elizabeth mehr als nur anzusprechen versuchte. Über die Trennung mit ihr ist er auch nie richtig hinweggekommen und als sie starb war er zusammengebrochen. Im Ring natürlich super, Top Outfits, die Promos mit seiner Stimme und die Ringqualität. Viele denke immer noch zwischen ihm und Hulk gab es als Randy noch lebte böses Blut aber die beiden haben sich wieder versöhnt."
Rating: 10.0
Sentiment: 0.3444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ianlapierrewrote on 04.11.2017:[10.0] "Savage is arguably the greatest all-around wrestling entertainer in history. Everything about him was iconic. He was always must-see-tv. He could wrestle 5 star matches. He could cut the best promos. He had the flashiest ring attire. He was one of the biggest draws of his day. He always stole the show and routinely outdid Hogan each Wrestlemania. In his prime, he was the company's biggest workhorse. And he wrestled 30 years! Just imagine if his career started in 1985 (rather than starting at 33 years old). He is still vastly underrated by a large number of fans who discount WCW. As well as others with short term memory who complain that he wasn't one of the best because he never returned to the company in the 2000s for spot appearances on a RAW, a Royal Rumble or at any Wrestlemania (like the rest of the top 10 or 11 ever: Hitman, Shawn, Taker, Austin, Rock, Flair, Hogan, Bruno, Sting)."
Rating: 10.0
Sentiment: 0.35695970695970697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Big Blue Machinewrote on 02.10.2017:[9.0] "Charismatic, controversial, outstanding in the ring, entartaining and funny at the mic. Randy Savage was ten years in the future in his time. If we have people like The Rock and CM Punk, we have to thank him and his incredible abilities."
Rating: 9.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: taabr2wrote on 12.09.2017:[10.0] "The second biggest star for the WWE in the 80s. And when first place is Hulk Hogan, second isn't bad. Randy Savage was just the full package. A charimatic character and a great worker too. In fact I would rate Savage as the best worker for WWE during the 80s."
Rating: 10.0
Sentiment: 0.24285714285714288
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ErycK24wrote on 25.06.2017:[9.0] "Savage was very good in the ring and that will always be appreciated but Savage was larger than life. His incredibly intense promos and his flashy outfits and ring attire made the man an icon. Savage's wrestling style and moveset was ahead of his time."
Rating: 9.0
Sentiment: 0.16199999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: flashbackwrote on 06.06.2017:[10.0] "Quite possibly the GOAT… this guy had it all, and by all accounts he was a good guy to boot. The charisma, the mic work, the ring work, those crazy outfits - just all around one of the most entertaining men to ever step into the ring. He was a one-man show, a spectacle to be had all on his own. Some of my earliest wrestling memories were of Macho Man turning on Hulk around Wrestlemania 4. I was devastated because I loved the Super Powers and couldn't handle Macho turning into a bad guy. Despite how sad I was, I still couldn't bring myself to hate him, he was just that amazing to watch, and SO believable. Now hearing Lanny talk about how he wanted to work an angle with HBK, which was sadly shot down by the office, you have to wonder what could have been. To me that sounds like it could have been one of the greatest programs in the history of the business. We'll never know. Still, nothing can taint macho's place in the industry. You cannot discount how big of a part Macho played in Hulk's WWF run in the 80's - without Randy, Hulkamania in the WWF would not have been as big as it was. Had he not existed during Hulk's time he would have been THE top guy, unquestionably. RIP"
Rating: 10.0
Sentiment: 0.14093567251461991
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: EricSammartinowrote on 18.05.2017:[9.0] "Regarding the disrespectful kid who gave the guy a 4, I suppose he needs to re-take his "Wrestling 101" lessons. Long live the bombastic Poffo, a great among greats."
Rating: 9.0
Sentiment: 0.29545454545454547
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: awsmpwniewrote on 11.05.2017:[10.0] "Kann garnicht anders als hier eine 10 zu geben. Er ist DER Lieblingswrestler aus meiner Kindheit.  Ich war damals einfach ein riesen Fan von ihm und werde es auch immer sein. Er ist einfach eine Legende. R. I. P."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: LSEstrelawrote on 15.04.2017:[10.0] "A phenomenal athlete and a amazing talker. It would have been a way better choice to lead McMahon's revolution rather than Hogan."
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Blood Pumpwrote on 07.04.2017:[8.0] "A complete professional and a genius match choreographer. He set trends and gave us one of the true great characters of the 80s. He was the total package, but sadly was only ever put to the main event to make Hogan look good in the end, which is a damn shame because you could build the franchise around this man. Dig it!"
Rating: 8.0
Sentiment: 0.2101851851851852
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Real Raterwrote on 02.02.2017:[9.0] "In-Ring Skills:Einer der besten Performer Ende der 80er und Anfang der 90er. 10/10 (50%)  Promos/Schauspieltalent:Hier nur ganz ok. 6/10 (25%)  Charisma/Erscheinung/Gimmick:Nicht so Charismatisch wie Warrior oder Hogan aber trotzdem immer vorne dabei. 9/10 (25%)  Sind dann insgesamt 8, 75 Punkte für Macho Man.   = 9 Punkte"
Rating: 9.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Coltwrote on 15.01.2017:[10.0] "Sein Status als absolute Legende kommt nicht von ungefähr, also kann es gar keine andere Wertung als 10 Punkte geben. Der Macho Man war neben Hogan und dem Warrior der dritte große Star der Golden Age-Ära, verglichen mit den anderen beiden war er zwar kleiner und schmächtiger - dafür aber ein besserer Wrestler und auf der Matte wie in der Luft sehr überzeugend und technisch stark. Lange bevor Bret Hart und Shawn Michaels in der Single Division auf sich aufmerksam machten war der Macho Man der erste Star der seine Gegner mit spektakulären Attacken vom obersten Seil außerhalb des Rings überraschte. Ich muss zugeben, dass ich nie ein Fan von Savage war was daran lag, dass er u. a. mit meinen Lieblingen (Ultimate Warrior, Razor Ramon) fehdete. Trotzdem ist auch mir sein Charisma und sein schillernder Style sofort aufgefallen. Hätte er es in die Attitude-Ära geschafft wäre er auch dort eine große Nummer geblieben. Nicht ohne Grund einer der populärsten Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.045714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: rjsbx11wrote on 07.01.2017:[10.0] "The Rock to Hogan's "Austin", the CM Punk to Hogan's "John Cena". Savage was a hell of a worker in the ring, putting on some of the best matches and feuds in wrestling history, and he was an absolute beast on the microphone. He was wild, intense and full of personality and charisma. Savage was the original Mr. Wrestlemania, having some of the event's best matches. Despite having some infamous real life rivalries and rocky relationships with other figures in the business behind the scenes, Savage has always remained a beloved icon for fans of wrestling.  I think he was truly in a class of his own. I think he was one of the last great larger-than-life personalities to hit the business."
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Mizzle Assault Antwrote on 01.12.2016:[10.0] "Definitely one of the greatest of all time. Hugely charismatic, he also had a lot of ring ability in an era where a lot of top guys didn't. His huge personality and great matches speak for themselves, plus his promos are just damn fun to listen to."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: BigPoppaCage123wrote on 08.10.2016:[10.0] "OHHHHH YEAHHHH The Macho man was the Greatest of all time in my opinion. Excellent Ring Skills and a Wizard on the MIC, Savage is a legend"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: SlickDevilSWPwrote on 06.10.2016:[10.0] "My absolute favorite wrestler as a kid, over Hogan and Warrior, and now is all-time top five. He still had it deep into his WCW career. He was the original "Mr. WrestleMania" as his performances in the first 10 WMs, aside from his mixed tag team match at WM 6, really stand out. In 1995-97, he showed he still had it in WCW with a tremendous feud against Ric Flair and was instrumental in the fight against the New World Order. For me, his highlight will always be WrestleManias 3 and 4, and will always be remembered as an all-time great."
Rating: 10.0
Sentiment: 0.29951790633608816
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Squared Circlewrote on 27.09.2016:[9.0] "Just fantastic.  The complete package.  He only misses a perfect 10 because he really didn't have the necessary size to be a credible threat to Hogan, but he was strong enough not to be eclipsed by Hulkamania.  He managed to find his role in it and actually enhanced Hulkamania.  He thrived in Hulkamania as friend and foe.  A high flyer, who could mat wrestle and was fantastic on the mic, he was a pleasure to watch.  He lacks the signature wrestling moments that Hogan had, Reversing the Figure Four on Flair, Suplexing Boss Man off the top of the cage (OMG! ) and of course the Andre Slam.  His most memorable moment was the Mega Powers Handshake.  He also crossed over well to the WCW as an older wrestler.  Forgotten was his great rivalries with Tito Santana and the Honky Tonk Man, prior to his world championship run.  His body of work is just insane, but his prime time exposure was still under the Hogan umbrella which costs him the perfect 10.  RIP Macho, OHHHHHHHHHH YEAHHHHHHH!"
Rating: 9.0
Sentiment: 0.28425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Luv all wrestlingwrote on 15.09.2016:[10.0] "The Macho Man Randy Savage was the cream of the crop in every way possible. He had charisma, good heel and face work, a unique look, great matches and was involved in many amazing storylines."
Rating: 10.0
Sentiment: 0.49583333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Summerslam Fan 01wrote on 01.08.2016:[10.0] "Eine absolute Legende.  Damals zu seiner Zeit perfekt im Ring, am Mic einer der besten.  Sein Charisma war unglaublich stark.  Schade das er seine HOF Aufnahme nicht selber halten konnte.  RIP Macho Man"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Sick Lebowskiwrote on 28.05.2016:[10.0] "War früher zu meiner Anfangszeit einer meiner Lieblingswrestler, hauptsächlich wegen seiner bunten Outfits. Aber auch seine verdammt gute Art bei Interviews und seine Qualität im Ring ist mir damals schon aufgefallen. Wenn man so überlegt, ist er schon an sehr vielen Matches beteiligt, die durch seine Mithilfe zu den spannendsten Matches der WWF gehörten. Daumen weit nach oben für den Macho Man!"
Rating: 10.0
Sentiment: -0.8928571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: blackmileswrote on 20.05.2016:[9.0] "Heute vor 5 Jahren ist eine absolute Legende verstorben. Er hate so viele großartige Momente, wie das Match mit Steamboat, das Team mit Hogan und und und. Er hatte seine WWF-Karriere vielleicht sich ein bisschen selbst verbockt, um noch höher in der "Legendenskala" angesiedelt zu werden, aber dieses Charisma, seine Micskills und auch seine In-Ring Leistungen haben ihm zum einer der besten Gesamtpakete seiner Zeit gemacht."
Rating: 9.0
Sentiment: -0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: EGeraldhuebnerwrote on 26.04.2016:"Wie z. B. auch Hogan oder Flair ein "Zeiger" seiner wenigen Moves ... war im Unterschied zu diesen beiden anderen hier aber viel öfters in der Luft (High Risk - Manöver) zu finden gewesen ... sowie meißtens richtig gut unterhaltend (Schow - Effekte) ... tja, und für den "Rest" sorgte hier - natürlich - Miss Elizabeth ... die konnte zwar oftmals nur besorgt oder auch ängstlich - verschüchtert dreinschauend herumstehen, aber war immer sehr glaubhaft wie überzeugend dabei ... und etwas für das (vorwiegend männliche) Auge bzw. eine "echte" Diva war sie ja sowieso zu ihren Glanzzeiten, - mit durch sie wird er eines Tages bestimmt in die Geschichte eingehen (aber nur die beiden und vor allem als "Team" zusammen)."
Rating: No rating found
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Mean Smark Callouswrote on 16.04.2016:[9.0] "Savage's promos were always hilarious, and Jesus was he intense. also apparently color-blind judging from his outfit choices."
Rating: 9.0
Sentiment: 0.109375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Cybermikewrote on 22.01.2016:[10.0] "Ich hab mich seit seinen TNA Auftritten nur noch wenig mit ihm befasst, jetzt habe ich wieder alte Sachen aufgefrischt und da kam mir einiges wieder in Erinnerung, gibt glaube ich wenige die das Komplettpaket so hatten wie er!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: DanielBryan1986wrote on 03.01.2016:[7.0] "Schaut man auf die Jahre in der WWF/E oder die Anfangszeit der WCW wäre Savage eine Klare 10 geworden. Dennoch wurde er danach verheizt. Für mich wäre er sicherlich der bessere Gegenpart zur NWO geworden neben Sting. (Er hätte die Rolle einnehmen sollen, die Luger dann hatte). Für mich Hammer Jahre in der WWF, der aber nie aus dem Schatten von Hogan kommen durfte. Gute Mic Skills, gutes Match Selling, aber dennoch zu Lebzeiten nicht erreicht was er erreichen konnte."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: roy-harperwrote on 12.11.2015:[9.0] "Der erste Wrestler, den ich gehasst habe und dann "geliebt" habe. Stand leider immer im Schatten eines Hulk Hogans. Seine Interviews unvergessen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Mandzukic9wrote on 14.09.2015:[8.0] "Mein absoluter Lieblingswrestler aus dieser Generation! War unglaublich unterhaltsam und im Ring mehr als solide. Schade, dass ich ihn nicht live erleben konnte. RIP, Randy !"
Rating: 8.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ShooterMcShootwrote on 10.08.2015:[10.0] "Colorful personality and exciting to watch in the ring. Slowed down a lot when he got older, but Savage was always one of my favorite performers."
Rating: 10.0
Sentiment: 0.22222222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Kevin434wrote on 14.06.2015:[10.0] "UHH YEAH, mein Lieblingswrestler der 80-iger Jahre aus der WWE. ^^ Im Ring workte er immer gute Matches, seine Interviews sind legendär und charisma hatte er genügend, seine Backstage Arbeit war gut, er sagte es selber das es ihm egal war ob er gewinnt oer verliert, hauptsache er unterhält mit seinen Matches die Zuschauer, und das hat er auch gemacht. Das schätze ich an ihm, schade das er von uns gegangen ist. R. I. P. Macho Man, danke für alles!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: MachoManwrote on 03.06.2015:[10.0] "Macho Man is in my opinion the quintessential professional wrestler. He is a perfect 100% in every category that matters in sports entertainment. There will never be anyone like him. R. I. P. Randy."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: DanTalksRasslinwrote on 26.04.2015:[10.0] "A ring general capable of having a good match with anyone, an iconic look, charisma for days.  One of the few wrestlers to cross over to being a recognizable part of mainstream popular culture.  Needless to say, he's one of the best ever.  Is there only one correct rating here?  OOOH YEAH!"
Rating: 10.0
Sentiment: 0.23636363636363636
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Wrestling Fan Man 90wrote on 01.03.2015:[9.0] "Ein fantaszischer Wrestler der Oberen riege, der nun entlich in die lang verdinte HOF aufgenommen wird! Für mich einer der 20 besten Wrestler aller zeiten der seiner Zeit voraus gewesen ist! Er schrappt nur knapp an der 10 Punkete Marke vorbei ist aber dennoch eine Absolute Nr 1. seiner Zeit, in der WWF in den 80ern für mich persönlich mit dem Worrior die Nr 1! Ohh Yea!"
Rating: 9.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ROHfan99wrote on 06.12.2014:[10.0] "Ich hab schon vielen eine Wertung von 10 gegeben, aber dieser Mann, "Macho man" Randy Savage, verdient 100 Punkte! Randy savage ist für mich eigentlich der Perfekte Wrestler, und einer der besten die es im Wrestling je gab! Er war perfekt. Im Ring war er richtig gut, er hat viele gute Matches geworkt und war immer unterhaltsam, konnte seinen Gegner immer stark darstellen, und brachte seinen Charakter auch in den Matches immer gut rüber. Seine Promos und Interviews bleiben unvergessen, für mich sind das immernoch die besten Interviews aller zeiten, nie wird man sein "UH YEAH", und allgemein seine Sprechweise vergessen. Er war auch ein Mann, dem es IMMER, egal ob als Champion oder nicht, darum ging das er andere talentierte Wrestler pusht, und das seine Fehden immer unterhaltsam sind, unabhängig davon ob er gewinnt, oder nicht. Und davon können sich Viele Wrestler (hust... Cena... hust) eine Scheibe davon abschneiden. Als Kommentator hat man ihm auch sehr gerne zugehört. Auch als seine große Zeit bei der WWF vorbei war, machte er immer eine gute Figur, beim Autogramme geben oder Kinder besuchen und glücklich machen. Er war backstage laut seiner Familie und Freunden ein guter Mensch. Er war praktisch der "Perfekte" Wrestler. Es gibt absolut NICHTS an ihm auszusetzen. Und man kann nicht sagen das er ein schlechter wrestler war und das er nur ein paar Sprünge vom Seil gezeigt hat. Früher war es nunmal so das das Wrestling noch nicht mit highflying moves ausgeprägt war, und für die frühere Zeit war er ein SEHR guter Wrestler. R. I. P. Macho Man, wir werden dich nie vergessen. Macho Madness lives forever!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Y2J316wrote on 28.11.2014:[10.0] "Ooooh yeah im the macho man Randy Savage, dont make a big mistake get what the madness wants, thats what you wanna do oh yeaah. Super am mic und auch im ring ein Super Wrestler. Schade das er von uns gegangen ist, denn ich mochte ihn immer sehr. RIP Macho Man"
Rating: 10.0
Sentiment: 0.21666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: MachoMark87wrote on 26.11.2014:[10.0] "Randy Savage was hands down one of the best overall packages the WWE has ever seen. It's a crime how it took them this long to start giving him his proper praise. He was one of the backbones of the company that still exists today and as a life-long fan of Mr. Poffo, he is finally getting his due and it's good to see. History Beckons the Macho Man!"
Rating: 10.0
Sentiment: 0.19305555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: WrestleArtswrote on 24.10.2014:[10.0] "Dank seiner Ausstrahlung, seines Charismas und seines innovativen Micworks wurde der Macho Man einer der größten Stars der Neuzeit, der es über die Grenzen des Wrestlings hinaus nicht nur zu Berühmtheit, sondern zum Kultstatus schaffte. Und das trotz seiner für damalige Verhältnisse geringen Körpergröße/Statur. Zusätzlich wrestlerisch noch top, ein Total Package."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: zackwoowoowooryderwrote on 03.10.2014:[10.0] "Er war eine der größten und schillendersten Figuren, die je in der Wrestlingwelt unterwegs waren. er hat super Fehden mit auf die Beine gestellt, wie z. B. gegen Steamboat oder an der Seite von Hulkster gegen Andre The Giant. Am Mic wurde er von kaum einem in seiner Zeit übertroffen."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: 8BitLegendwrote on 22.09.2014:[7.0] "Der Macho Man wäre mir besser in Erinnerung geblieben, hätte ich nur seine WWF Karriere verfolgt. Der WCW-Run war seltsam und seine privaten Aktivitäten noch mehr. In meiner Kindheit war er jedoch einer meiner Top 5 Wrestler, wenn nicht sogar Top 3."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ClassicWrestlingFanwrote on 20.05.2014:[10.0] "Eine der besten Wrestler aller Zeiten! Technisch hoch begabt und in seinen Matches hat bis in kleinste Detail immer alles gepasst. Seine Fehden mit Ultimate Warrior, Hollywood Hulk Hogan und Ric Flair sind legendär. Ein toller Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Macho Manwrote on 19.04.2014:[10.0] "Für mich der beste Wrestler aller Zeiten.  Seine Kämpfe sind legendär.  Er war für mich ein Vorbild, Held .  Er hätte es mehr als verdient öfter Champion zu sein.  Aber leider stand er immer im Schatten dieses Hogan.  Er wusste wie er die Massen begeistern konnte.  Schade das er so früh verstorben ist.   R. I. P. Randy"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Macho Madnesswrote on 28.03.2014:[9.0] "Unvergessen, seine Tête-à-têtes mit Mean Gene Okerlund. NO MORE QUESTIONS!   RIP Macho"
Rating: 9.0
Sentiment: -0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Undertalkerwrote on 27.03.2014:[8.0] "Er war eine der schillerndsten, charismatischsten Gestalten des Wrestlingbusiness. Der Macho Man besaß eine unheimliche Ausstrahlungskraft und daher waren seine WWE- sowie auch seine WCW-Heavyweight-Titel-Regentschaften völlig berechtigt. Ich persönlich finde ihn im Ring nicht so ansprechend, wie es die meisten tun. Seine Double-Axehandles und sein Elbow vom obersten Seil waren zwar immer schön anzuschauen, aber es war halt doch ständig das Gleiche, und ansonsten zeigte er eigentlich nicht so viel. Dieses Manko konnte er jedoch durch seine Verbissenheit und Intensität im Geviert etwas abschwächen. Kurz gesagt: Sein Charisma war atemberaubend und seine Wrestlingskills solides Mittelmaß."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Phenomenal91wrote on 26.02.2014:[10.0] "Forget Hogan! The greatest wrestler of the Golden Era is the Macho Man. Nobody could touch him when it came to look, talk, and, of course, wrestling. He was a legend, and a very important part of pro wrestling has gone with him. RIP Mach. Oooh yeah!"
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Basket Casewrote on 30.01.2014:[10.0] ""Gotta have beef? Gotta have spice? Need a little excitement? Snap into a Slim Jim! " Starker Wrestler, tolls Charisma, der Macho Man war win ganz Großer des Business und ein sehr wichtiger Bestandteil des Wrestlings in den 80er und 90er Jahren."
Rating: 10.0
Sentiment: 0.2828125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: CLPSKYLINERwrote on 16.12.2013:[8.0] "Gehört zu den größten Legenden im Wrestling! oooooh yeaaaah!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Shadywrote on 26.11.2013:[9.0] "Einer der größten aller Zeiten (im Wrestling), auch wenn er nie mein Lieblingswrestler war. "Rest in Peace"  *Ohhhhhhhhhhhhhhhhhhhhhhh YeaaaaaaaaaaaaaaaaaaaaaaaaaaaH*!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Goldberg82wrote on 14.11.2013:[7.0] "Der Macho Man war eine der schillernsten Persönlichkeiten im Wrestling in den 80ern und 90ern. Seine immer wieder neuen Outfits, sein kultiges Micwork und seine Ehefrau Elizabeth haben diese Zeit geprägt. Im Ring fand ich ihn eher uninteressant, da die einzigen Highlight die Actionen vom obersten Seil waren. Sonst hat der Macho Man nicht mehr gezeigt. Auch das Match gegen Ricky Steamboat, welches als eines der besten Wrestlemania-Matches gilt, konnte mich nicht so überzeugen. Im Jahr 1987 war das sicherlich ein Highlight, aber aus heutiger Sicht nichts besonderes. Aufgrund der Verdienste für das Wrestling gebe ich Randy Poffo gerne eine 7."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Daneraswrote on 03.11.2013:[8.0] "Wenn ich spontan sofort die Namen von ein paar Wrestler nennen soll, dann eben Randy Savage. Ich kann ihn einfach nicht vergessen. Er war so auffallend, und hatte viel Aktion gemacht. Viel Power, und viel Gas gegeben, doch nie ganz hoch oben an der Spitze geschafft, stets hinter Hulk Hogan. Ab und zu hat Warrior auch seine Shows erobert. Ich finde, Hulk Hogan, Ultimative Warrior und Macho Man sind gleich super! Ich denke, dank ihnen ist Wrestling so erfolgreich geworden."
Rating: 8.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: test85wrote on 08.06.2013:[9.0] "Unvergesslich. Einer der Stützen der Wwe in den 80ern. Leider wie auch später in der WCW stand er im Schatten Hogans. Obwohl er die besseren Matches zeigte. Leider tragisch aus dem Leben gerissen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: pappahousewrote on 01.06.2013:[7.0] "Randy Savage war ein guter Mic-Worker. Sein flying Elbow war immer sehr schön getimt, allerdings hat er für mich immer viel zu viel einstecken müssen, so dass ich hier nicht mehr als 7 Punkte geben kann."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: HooliNerdwrote on 10.04.2013:[8.0] "Egal ob WCW oder WWF. Er machte in den 90ern Spaß und hat immer große Auftritte gehabt. Egal ob im Ring oder als Kommentator. Der Mann war Gold wert! R. I. P."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Yoyowrote on 07.10.2012:[10.0] "Not only one of the most colorful and charismatic wrestlers of all time, but a very talented in-ring performer as well."
Rating: 10.0
Sentiment: 0.442
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Ringpfostenwrote on 08.09.2012:"Randy Savage. Ob als Macho Man, oder Macho King, durch sein schillerndes Auftreten wusste er immer zu begeistern. Seine bunten Outfits und seine markante Stimme täuschten nicht über seine In-Ring-Fähigkeiten hinweg. Im Gegenteil: Auch wenn man ihm nachsagt, in Matches nicht improvisieren zu können und sich strikt an das Script zu halten, so war Randy dennoch einer der besten Wrestler überhaupt. Schon zu Lebzeiten eine Legende, die leider viel zu früh von uns gegangen ist."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Kitanoyamawrote on 16.07.2012:[9.0] "Einer der markantesten und auffälligsten Worker in der Geschichte des Wrestling und das nicht nur wegen seiner Outfits und seiner rauchigen Stimme. Er gab zwar optisch nicht viel her, aber legte er erstmal los, zeigte er sehr oft, das er nicht von Pappe war. Man denke dabei nur an seinen Ellbow Drop. 10 Punkte gibt es aber dennoch nicht da er, trotz seiner herausragenden Karriere, für mich leider dennoch nie zu den Favoriten zählte. Sein Tod war für mich aber ebenso überraschend wie erschütternd. R. I. P Macho Man. OOOOOOooohhhh yeeeaaaahhh.... !"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Pinguwrote on 03.07.2012:[10.0] "R. I. P. Macho - unvergessen deine Matches! Oh yeah!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: BigBob91311wrote on 13.04.2012:[10.0] "I'm surprised that Randy Savage is ranked as low as he is. Wrestlers like him, who are great workers who can carry just about anyone to an outstanding match, and being able to do great mic work is extremely rare. He is on my list of the 10 best I've ever seen, which are so close that it's like trying to find a needle in a haystack trying to differentiate between them. The other nine for the record are: Shawn Michaels, Ric Flair, Steve Austin, Owen Hart, Mad Dog Vachon, Chris Jericho, C. M. Punk, Jake Roberts, and Mick Foley."
Rating: 10.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: hogan knows bestwrote on 11.10.2011:[6.0] "Naja der Macho Man ging so, fand er hatte paar gute Matches. War auf jeden Fall zu Anfang seiner WCW Zeit ein Highlight."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: GTS Punkwrote on 18.08.2011:[10.0] "Der Mann mit dem Flying Elbow war unumstritten eine Legende. Er zeigte immer tolle Matches und war einer der schillernsten Stars in der WWE/WWF."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The lonesome death of Hattie Carrollwrote on 29.06.2011:[10.0] "Er war in den Neunzigern mein wrestlingtechnisches Nonplusultra. Als ich von seinem Tod hörte, war schon ein wenig Trauer über den Verlust für die Wrestlingwelt zu spüren.  Bestimmt war es nicht sein bestes Match, aber ich schaue mir den Kampf gegen den Warrior beim Summerslam 1992 mindestens dreimal im Jahr in voller Länge an. Oh Yeah!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: kerschiwrote on 27.05.2011:[10.0] "Mein Lieblingswrestler zur Markzeit. Mochte ihn damals mehr als Hulk Hogan. Zudem hat er uns unzählige Klassiker beschert. Bspw wird mir immer sein Match und die dazugehörige Fehde mit Ric Flair 1992 einfallen. Leider konnte Vinnie Mac nicht sein Ego außen vor lassen und so blieb uns die Hall Of Fame Einführung verwehrt. Schade, schade ... denn für seine Taten im Wrestling hat er das allemals verdient. Ruhe in Frieden Macho Man! Uuuuuh yeah!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Double Jwrote on 26.05.2011:[10.0] "Einer der ganz Großen. Ringtechnisch als auch charismatisch einzigartig!  Ruhe in Frieden Macho Man!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Golgotawrote on 24.05.2011:[9.0] "Einer meiner absoluten Lieblingsheels zu WCW-Zeiten. Habe sein Auftreten geliebt und sein Elbow-Drop war für mich (als Kind) einfach nur gigantisch. What' up, Mach? OOOOOOOH YEAAAAAAAH!"
Rating: 9.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Brainbreakerwrote on 22.05.2011:[8.0] "Definitiv eine der Ikonen der Hogan-Ära, die es aber nie geschafft hat, trotz Mic-Fähigkeiten und unverwechselbaren Auftretens, eben aus diesem Schatten heraus treten zu können. Logischerweise folgte Savage auch seinem rot-gelben Nemesis von einer Liga in die andere, da er ohne ihn keinen echten Erfolg mehr einfahren konnte. Zu sehr überstrahlte die legendäre 80er Storyline alle anderen, vor allem wrestlingtechnischen Aspekte des Macho Man. Das ist schade, denn abseits von Hogan war er des Öfteren ein Garant für tolle Matches, zB mit Flair oder Steamboat. Insgesamt eine verdiente 8... oh yeah!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: HBK-Xwrote on 21.05.2011:[8.0] "Habe ihn sehr gern gesehn, seine Interviews waren schon gut! Super Entrance-Theme, geile Klamotten! Guter Wrestler! Sein Match gegen Ricky Steamboat bei WM III ist eins meiner Liebsten! Hat eine HoF-Aufnahme verdient! Oh Yeah! Edit: Ich bin richtig traurig der er tot ist.... Danke Macho Man, we will miss u! R. i. P. Ohhh yeahhhhh sounds from heaven! Dig it!"
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: LabronBenoitwrote on 20.05.2011:[10.0] "10 Punkte für einen meiner Lieblingswreslter aus der Kindheit. Danke für die Erinnerungen, RIP Macho Man!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: darkdoodwrote on 20.05.2011:[10.0] "Macho Man 4 Life!  Er war einer der besten Wrestler allerzeiten sowohl am Mic als auch im Ring.  Ein absolutes Ausnahmetalent und wohl eine der ganz großen Wrestling Ikonen auf diesem Planeten.  R. I. P. Randy OOOOOOOOHHHHHH YEEEEAAAHHH!  ....  DIG IT!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: chaoswrote on 20.05.2011:[10.0] "Einer besten Wrestler aller Zeiten! Wir werden ihn vermissen. R. I. P"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: justusjonaswrote on 16.04.2011:[10.0] "Der Mann ist einfach eine Ikone. Hat mir immer Spaß und Freude bereitet ihn zu sehen. Frage mich wann er endlich in die Hall of Fame aufgenommen wird. Manch ein Vollpfosten darf sich Hall of Famer nennen, aber so ein Mann der soooo viel für das Buisness getan hat immer noch nicht. Das KANN nicht wahr sein!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Auditorewrote on 03.04.2011:[10.0] "Ich liebe diesen Wrestler weil er es immer geschafft hat und das nicht nur durch die tolle Optik mich prächtig zu unterhalten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: C0nspiracywrote on 27.03.2011:[8.0] "Schillerndster Wrestling Charakter aller zeiten. Im Ring Top am Mic geschmackssache. Mir gefällt er."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Rock n Roll Expresswrote on 01.03.2011:[10.0] "Meiner Meinung nach der beste Superstar der 80iger dicht gefolgt von Hulk Hogan und Ric Flair."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: alsb683wrote on 16.01.2011:[10.0] "Toller Wrestler, technisch sehr beschlagen, klasse Micwork und ein Einsatzwille, der seinesgleichen suchte. Völlig zu Unrecht ewig lang im Schatten von Hogan, dem Ultimate Warrior und anderen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Necronwrote on 03.12.2010:[8.0] "In meiner "Mark-Zeit" hat Savage mich irgendwie nie nachhaltig überzeugen können. Seit seinem WCW-Run habe ich ihn aber mehr und mehr ins Herz geschlossen, vor allem, da sein On-Air-Charakter und seine irren Promos mit dieser unsagbar coolen Stimme zu begeistern wissen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: rockysadrianewrote on 10.09.2010:[9.0] "War Teil des bis heute unerreicht besten Wrestlemania-Matches! Ooooh Yeahhhh!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: WrestlingFanDuisburgwrote on 18.08.2010:[9.0] "Am Mic genial im Ring gut und genügend Ausstrahlung. 9 Punkte"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Manu Adamswrote on 08.06.2010:[10.0] "Wrestlerisch ganz klar einer der ganz großen, sein Mic Work ebenso. Hatte wie ich finde die beste Stimme, die ich von einem Wrestler gehört habe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Erasedwrote on 28.05.2010:[8.0] "Überdurchschnittlich gute In-Ring Fähigkeiten, unmengen Charisma und gutes Micwork."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The-Game91wrote on 26.05.2010:[10.0] "Macho Man ist einfach Kult, egal wie viel Mist er gebaut hat oder was für einen persönlichen Charakter er hat, Ich mag den Kerl einfach."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Y2J Problemwrote on 13.05.2010:[9.0] "Exzellenter Wrestler und vor allem Entertainer, aber wieso hat er seinem Ruf nur so geschadet?"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: subkulturwrote on 12.04.2010:[9.0] "Hatte neben der unbestreitbar vorhandenen Technik auch das nötige Charisma und die Fähigkeit, in einem Match eine Geschichte zu erzählen, so dass er auch nach Jahren für mich als Zuschauer noch interessant war. Gegen Ende seiner Karriere in der WCW ließ er etwas nach, davor war er jedoch weit über ein Jahrzehnt top. Da er zudem noch viele Kindheitserinnerungen bei mir weckt- 9 verdiente Punkte von mir für den Macho Man. Ohhhh yeah, dig it!"
Rating: 9.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: KASHwrote on 04.04.2010:[10.0] "Der echte Star der 80er und frühen 90ern. Sehr Charismatischer Worker der sich von seinem ersten Wrestling Match vor großer Bühne wusste zu verkaufen. Seine Interviews sind legendär und einzigartig und im Ring war er zwar nicht der allerbeste, aber er war seiner Zeit nach auf einem guten Level. Es reicht auf jeden Fall für 10 Punkte. Man sieht Matches von ihm immer gerne wieder."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Standard78wrote on 03.04.2010:[10.0] "Als Macho Man oder MAcho King ein unglaublich guter Entertainer. Ob am Mikrofon oder im Ring war es immer ein Vergnügen. Durch seine unverwechselbare Präsenz im Ring, lieferte er einige der besten Matches."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: KevinMichaels79wrote on 14.03.2010:[9.0] "Savage war in den 80ern seiner Zeit weit voraus und lieferte wrestlerisch großartige Arbeit. Wäre sein Gimmick in den späten 80ern und den folgenden Jahren in der WWE bzw. WCW nicht so übertrieben (natürlich - es war auch unterhaltsam) gewesen, vielleicht wäre er dann ein noch größerer Star geworden."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: NewGuywrote on 06.03.2010:[8.0] "Gefiel mir immer verdammt gut! Egal ob als Glitzer-Man in der WWF oder als einfach nur cooler Randy Savage in der WCW! Ich mochte ihn immer gerne! Abzüge wegen seines bis dato großen Abstiegs! Man mag jetzt wieder meckern, dass die Privatperson nicht bewertet werden soll, aber für eine 10 Punkte Wertung muss der Typ eben auch PERFEKT sein!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Fountain of Misinformationwrote on 04.02.2010:[8.0] ""Too hot to handle, too cold to hold! " Absolute Legende, der mir in den späten WCW-Jahren aber gar nicht mehr gefallen hat und als inzwischen relativ limitierter und körperlich kaputter fast 50-jähriger Wrestler, der stofft wie ein Weltmeister (hat damit quasi die "The Vince McMahon Roided Physique" vorweggenommen, im Alter einfach die Dosis erhöhen), seine große Karriere etwas schwach ausklingen ließ. Nicht jeder ist ein Hulk Hogan und gerade diese Gewissheit hat wohl über die Jahre an ihm genagt. Dennoch: I'm a Macho Maniac!"
Rating: 8.0
Sentiment: -0.012499999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Cloverwrote on 22.12.2009:[8.0] "Gott, was hab ich den Mann vergöttert... doch ähnlich wie bei Hogan und Flair ist er wohl zu oft auf den Kopf gefallen - anders kann ich mir die letzten Auftritte jedenfalls nicht erklären. Dennoch war er mir immer viel lieber als ein Hulk Hogan! WHAT UP MUCH'? ! UUUUH YEEEAAAH - 8. 5 Punkte für ein tolle(s) Gimmick(s) und einen guten Wrestler."
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Mick Funkwrote on 15.12.2009:[6.0] "Schon eine Legende, aber ich konnte mit ihm nie etwas anfangen. Hatte immer einen etwas lächerlichen Touch."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Eddiewrote on 06.12.2009:[8.0] "Der Macho Man ist einer der Helden meiner Kindertage gewesen. Hat es zwar auch etwas mit der Länge seine Karriere übertrieben, aber gut war er schon, 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: downtown2wrote on 03.12.2009:[9.0] "Beim Macho Man handelt es sich um einen besessenen Arbeiter und unglaublich talentierten Techniker. Seine Promos und seine Erscheinung waren einzigartig und etwas ganz besonderes. In den 80ern und frühen 90ern wrestlisch seiner Zeit weit voraus. Bedauerlicherweise ging er zur WCW, wo stellenweise viel von seinem frühren Gesammtpaket verblasste. Er bleibt aber in Ewigkeit eine unvergessene Ikone dieses Sports."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Smi-48wrote on 15.11.2009:[9.0] "Mittlerweile verschrobener Altstar mit dem latenten Hang zum selbstüberschätzenden Realitätsverlust. Gehen wir aber mal 10 oder noch besser 20 Jahre zurück, da hatte sein schillernden Stil massgeblichen Anteil an der Entwicklung des MainStreams. Er war in der WWF immer der talentierte Widerpart zu Hogan, nicht minder charismatisch oder divenhaft. Skriptete einen Großteil seiner Matches bis ins Detail und schaffte es somit die technisch anspruchsvolleren Fans jenseits des Hulkamaniahypes zu bedienen. Ein facettenreicher Charakter und an vielen anspruchsvollen Partien beteiligt - tat sich jedoch mit seiner Rolle im Haifischbecken WCW (in welchem er munter mitintrigierte), seinen seltsam anmutenden Aktivitäten ausserhalb des Ringes (Stichwort "Rap-CD") und schlussendlich mit seiner unrühmlich beendeten TNA-Rolle unnötige Imageschäden an."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Shikawrote on 05.11.2009:[10.0] "Sein Micwork und sein Auftreten war einfach unvergesslich. Sein Gimmick ist zudem wohl eins der grandiosesten der ganzen Welt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Scotty 2 Hottywrote on 14.10.2009:[10.0] "Unglaubliches Charisma und Mic Work und dazu im Ring ebenfalls sehr stark und sich für nichts zu schade. Ein tolles Gesamtpaket, welches eine Aufnahme in die WWE Hall of Fame mehr als verdient hätte. Einer meiner absoluten Lieblings-Superstars."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: finsterwegwrote on 04.10.2009:[10.0] "Einfach Verrückt und Macho Pur. Mein Lieblings Werstler aus den frühen Jahren da er eben anders wahr ;-). Super im Ring und am Mic zu der damaligen Zeit einfach Legendär. Was alles nach seiner WWE/WCW Zeit passiert ist TNA , Rap Cd usw. ist mir egal. Dieser Macho Man muss in die HoF PUNKT"
Rating: 10.0
Sentiment: 0.29166666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Wahniwrote on 02.10.2009:[10.0] "Randy ist mein #1 Fave! Sein Style gefiehl mir schon 88. 99 peppte er sich noch mal gigantisch auf, sogar die passende Freundin dazu! Im Ring lieferte er lange Zeit hervorragende Matches, alles sehr glaubhaft. Die Interviews waren fantastisch. Sein Charisma super. Er war der Anführer der WWE nach Hogans Weggang (laut div Aussagen) und kann das meiner Meinung nach auch. Seine Rap CD finde ich gut. Die ganzen Aufreger über seine TNA Zeit bzw "zu Kopf gestiegen" kann ich nicht nachvollziehen. Randy hat nach langen Pausen immer paar Matches Anlaufzeit gebraucht (siehe WCW). Außerdem wollte er seinen Fans trotz fortgeschrittenen Alters noch etwas bieten! Das sollte man mal respektieren! Das Randy das nicht (unbedingt) wegen Geld gemacht hat, dürfte bekannt sein! Macho Man Randy Savage - the King of Wrestling - Ooooh Yeah!"
Rating: 10.0
Sentiment: 0.8138020833333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: gharwrote on 03.09.2009:[10.0] "Die Hall of Fame könnte sicher einiges an Macho Madness vertragen, vielleicht schon 2010."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Lions Denwrote on 18.08.2009:[8.0] "Absoluter Kinderheld, jedoch stark gesunkener Stern"
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: 108 Sternewrote on 24.07.2009:[10.0] "Eine der ganz großen Legenden, ebenso gut im Ring wie am Mikrofon; mit einem Charisma, das in der heutigen Wrestlingwelt leider seinesgleichen sucht. Einer der besten aller Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: N3m35i54wrote on 15.06.2009:[10.0] "Savage hatte alles; Charisma / Mic Skills / sehr viel Talent im Ring, eine einzigartige Erscheinung, immer eine Attraktion. Ich kann allerdings seine späten WCW Tage bzw sein Abgang nicht bewerten, da ich die nicht gesehen hab. Dennoch, ein full package das bekommt was er verdient. 10 Punkte"
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: SuckerPunchwrote on 13.06.2009:[10.0] "Mein persönlicher All-Time Fave und Personal Hero #1. Völlig subjektive 10+++ Punkte von mir. Er hat mir einige der schönsten Wrestlingmomente überhaupt beschert und deswegen kann ich getrost die wenigen Negativpunkte, die man aufführen könnte, übersehen. Dass er kein Teil der Hall of Fame ist, ist für mich die größte Wrestling-Blasphemie aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Mountiewrote on 08.05.2009:[9.0] "Unvergessliche Erscheinung, einzigartiger Charakter, hochklassiger Wrestler. Auch nach überschrittenem Zenit in der WCW immer noch ziemlich stark, nur ganz am Schluss bei TNAW hat er stark an seinem Ruf gekratzt - wie auch mit seinen kirren Rapsongs und seinen Triple-H-ich-nehm-dir-deine-Frau-weg-Video. Savage hat das Wrestlinggeschäft leider in einem geistig bedenklichen Zustand verlassen, was aber nichts daran ändert, dass er eine seiner größten und sehenswertesten Attraktionen war. Von allen Leuten, von denen die Anti-Hogan-Fraktion sagt "Mit ihm oder ihm an der Spitze wäre es auch gegangen", der einzige, wo man wirklich auch von der Faktenlage her sagen kann: durchaus möglich."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: shoopdawoopwrote on 06.05.2009:[10.0] "Ein technisch hervorragender Wrestler der auch eher schlechte Kontrahenten grandios over bringen konnte (z. b. Warrior). OOOOOOH YEAAAAH!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Brooklyn Brawler 1985wrote on 25.01.2009:[8.0] "War bei der WWF einfach genial, aber bei WCW und TNA schadete er sich und seinem Image dann leider..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Schandmaulwrote on 17.11.2008:[7.0] "Früher sehr gut, sowohl im Ring als auch am Mic. Aber seine Auftritte bei TNA waren einfach nur peinlich und über seine Rap-CD möcht ich eigentlich garnichts mehr sagen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: quwesiwrote on 04.10.2008:[2.0] "Hat mich nie angesprochen fand ihn sehr uninterresant"
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Wise Warriorwrote on 11.09.2008:[10.0] "Der Macho King! Jede Bewegung saß: als Wrestler und Entertainer einer der Besten!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Lokfanwrote on 02.08.2008:[2.0] "Hat mich nie wirklich überzeugt im Ring, fand seine Aktionen immer langweilig, seine NWO Zeit war noch die beste."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: LordTrailerwrote on 10.07.2008:[8.0] "Der Macho Man hat immer gut unterhalten. Legendär sein Match gegen Steamboat. Irgendwie habe ich ihm aber trotzdem nie den Status eines echten World Champs abgenommen, trotz des langen Runs bei der WWE. Ich weiß auch nicht wiso, aber daher ein gut."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: ecw foreverwrote on 08.07.2008:[9.0] "Genialer Techniker und Mic Worker seiner Zeit. Vorallem am Mic war er doch ein eizngiartiger, keiner redete so wie er, seine Ring Skills waren aber auch immer auf selbem Tempo."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Know Nothingwrote on 13.06.2008:[10.0] "Jeder kennt ihn, jeder lieb ihn. Ich mochte seine Matches und ich liebte sein Mic Work. Nur jeder sollte mal aufhören, auch der Macho Man. Wenn er weitermacht, macht es alles nur schlimmer. Mit über 50 bringt man es in diesem Sport nicht mehr, bisher hats noch jeden erwischt auch den Macho Man. Alt werden ist nichts schlimmes, man muss nur einsehen das man irgendwann nicht mehr mit den neuen jungen mithalten kann. Man soll aufhören wenn es am schönsten ist, so das einen die Fans als Legende in Errinnerung behalten. Er bekommt 10 Punkte für seine WWF Zeit, 2 Punkte Abzug für die TNA Zeit und 2 Punkte dazu weil er eine Legende ist. Also 10/10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Frutzwrote on 09.06.2008:[9.0] "Randy Poffo, der Macho Man, war damals einer meiner Lieblinge im alten WWF-Ring. Ich habe seine Promos zwar meist nicht verstanden, aber das hat eben einfach dazugehört. Ein guter Worker im Ring, der als Face, wie auch als Heel ordentlich Reaktion gezogen hat und in einigen erinnerungswürdigen Matches eine sehr gute Figur abgegeben hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Brooklyn Brawlerwrote on 15.05.2008:[8.0] "+Outfits, +Mic Work, +WWF Fehden, +Charisma.......... -Moves(trotz Highflying irgendwie... seltsam), -TNA Zeit... Gibt unterm Strich ne solide 2 :)"
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Ruppiwrote on 27.03.2008:[10.0] "War einfach toll. Hab ihn immer gerne gesehen. Und er hat auch immer wieder tolle Kämpfe abgeliefert. Seine Kämpfe waren zwar bis ins kleinste Detail geplant, aber das schmälert nicht seine Leistungen. Auch sonst hatte er alles: gutes Mic-Work, ein passendes Gimmick und Ausstrahlung. Note 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: stryker9wrote on 21.03.2008:[10.0] "ein wrestler mit sehr viel ausstrahlung. wußte als heel wie als face zu überzeugen. hat all seine world heavyweight title gegen flair und hogan verloren. ein kandidat für die hall of fame."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: The Instant Classicwrote on 21.03.2008:[10.0] "Genialer Wrestler und Showman. Sein letzter TNA Run war vollkommen unnötig und einfach nur dementsprechend schlecht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: lagunswrote on 13.03.2008:[10.0] "Am Mic einer der coolsten und im Ring einfach unglaublich. Hatte sowohl auf der Matte als auch in den Seilen alles drauf. Und stand dabei auch noch sicherer auf dem Top als manch einer, der sich als "Highflyer" bezeichnet. Konnte jeden Stil mitgehen und seine Gegner dabei oft noch übertreffen. Hab ihm jede Aktion wirklich abgekauft. Hat immer alles für das Match und seinen Gegner gegeben und war sich nie zu schade auch gegen Midcarder einzustecken. Geiles Gemick (was ist denn ein Macho Man? ) und die Heißesten Kostüme. Die ultimative Mischung aus Sport und Entertainment! OH YEAH!"
Rating: 10.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Staniwrote on 21.02.2008:[4.0] "Hatte in der WWF und in der WCW sehr gute Zeiten aber gegen Ende seiner WCW Zeit hat er im Ring schon kaum was geleistet und war nur noch als Mananger von Sid akzeptabel, der Hogan Diss war primitiv und sein Run bei TNA war unter aller Sau"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Fumaryuwrote on 07.02.2008:[8.0] "Der Macho Man hatte ein klasse Standing bei den Fans, war charismatisch und trug coole Outfits."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: TheMasterpiece87wrote on 03.02.2008:[8.0] "Einer der größen dieses Sports! Unglaubliches Charisma und zudem sehr gute, wrestlerische Qualitäten!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: devilsoldierwrote on 07.01.2008:[4.0] "Konnte ihm nie wirklich was abgewinnen, war eben da aber irgendwie merkwürdig. Und seine "High Flys" wirkten irgendwie nicht so spektakulär."
Rating: 4.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Brahma Bullwrote on 03.01.2008:[10.0] ""Oh Yeah! "Verdammt geiler Typ und Anfang der 90ger ein super Wrestler-hatte damals den WWF Titel verdient."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Haukewrote on 25.11.2007:[10.0] "Einer meiner absoluten Favorites. Technisch stark. Und in der WWF Zeit ab 1991 das coolste Outfit."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: TheAdaawrote on 16.11.2007:[6.0] "Der Macho Man hatte Charisma, Technik und gute Wrestlingskills. Er war seiner Zeit damals ein wenig vorraus und durfte trotzdem 1 Jahr Champion sein in der WWF, von Wrestlemania 4 bis 5. In der WCW spielte er nie eine wirklich bewegende Rolle und seine Auftritte bei TNA waren mehr peinlich als gut für seinen Ruf. Ich behalte wohl nur die WWF Zeit in Erinnerung: Oh yeah!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Solid Snakewrote on 29.10.2007:[10.0] "Einer der besten in den 90er Jahren. Seine Promos waren godlike. Damals absoluter Fan, sehe mir heute auch ab und zu noch seine Matches an. Er ist eine wahre Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Thunderlipswrote on 17.10.2007:[10.0] "Einer der besten der 80er und frühen 90er. Savage war im Main Event das technische Highlight und konnte selbst den Ultimate Warrior bei WrestleMania VII durch ein gutes Match ziehen. Legendär auch sein Duell mit Steamboat bei WM II. Auch in den späten 90ern war er noch für solide Matches gut. Seinen TNA-Auftritt hätte er sich aber ebenso klemmen können, wie sein Rap-Album. Trotzdem gibt es für den Macho Man die Bestnote! OOOOHHH YEEEEAAAH!"
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: CM Dannywrote on 15.10.2007:[8.0] "In der kunterbunten Gimmick-Welt der WWF schaffte es Savage immer noch besonders hervorzutreten. Im Ring war er nicht gerade einer der Schlechten und bis heute habe ich nur wenige gesehen die so ruhig und gelassen in der Ecke auf dem obersten Seil stehen können."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Nick Toxicwrote on 28.09.2007:[6.0] "Gott sei Dank wrestlet er nicht mehr, seine letzten Auftritte fielen echt nur noch unter Peinlich! Ausserdem sieht er jetzt aus wie Räuber Hotzenplotz persönlich. Früher ein guter Mann, zerstörte jedoch alles durch Auftritte in jüngster Vergangenheit. Bitte nicht wiederkommen..."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: HHH-Stephwrote on 15.09.2007:[10.0] "Auf jeden Fall einer der großartigsten Wrestler, die es jemals gegeben hat. Bei ihm stimmte wirklich alles: Ausstrahlung, Micwork und wrestlerisches Können, dazu noch einen coolen Finisher."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Grubackwrote on 12.09.2007:[10.0] "Einer der grössten Superstars aller Zeiten . wrestlerisch , sowie vom Charisma her eine echte Supererscheinung , einer der wichtigsten Worker in der goldenen Ära des Wrestling"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: etstoanawrote on 11.09.2007:[6.0] "Wrestlerisch klar der Beste der 3 grossen (mit Hogan und Warrior) Anfang 90er Ende (80er). Am Mic aber allein durch seine Stimme nicht zu ertragen. Und bei seinem Aussehen in neonfarbenen Fransenklamotten ist "MachoMan" sicher nicht der richtige Nick für ihn."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: jerseyhoolwrote on 28.08.2007:[10.0] "Einer meiner all-time-favourites! ein kompaktes paket aus charisma, technik & mic-work. seinen wahnsinnskampf bei WM VII gegen den warrior werde ich nie vergessen - 5 top rope elbows! Oh yeah! P. S. der top rope elbow ist einer der geilsten finishers aller zeiten!"
Rating: 10.0
Sentiment: 0.703125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Blade Bourdeauxwrote on 30.07.2007:[8.0] "Randy Savage als Gesamtpacket betrachtet, war er einer der zurecht an den Spitzen der Promotions stand. Sowohl im Ring als auch am Mic waren seine Leistungen immer überdurchschnittlich. Ohne einen Hulk Hogan ber ihm, wäre er vielleicht noch größer geworden als er es ohnehin schon ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: shannonmoorewrote on 28.07.2007:[10.0] "Einfach cool seine Interviews, Er hatte was ganz eigenes was sonst keiner hatte. Seine Fähigkeiten im Ring waren ne bestimmt Zeit ganz gut ja aber das hat mich bei ihm nicht intressiert."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: DrBreswrote on 26.07.2007:[10.0] "Abgefahrener Kerl der Macho Man! Nicht nur dass nur durch sein absolut schillerndes Äußeres ein Blickfang war, seine Matches hatten richtig klasse. Wer einen Ultimate Warrior zu einem guten Match ziehen kann, muss was auf dem Kasten haben. Über seine Promos und Interviews müssen wir da schon gar nicht mehr reden... ganz großes Wrestling-Kino! Schade, dass er keine tragende Rolle (als Manager o. ä. ) in WWE mehr spielt..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Garvinwrote on 24.07.2007:[10.0] "Er war einfach einer der besten. Randy Savage führte jahrelang die WWE und zeigte sensationelle Matches gegen Flair, Warrior oder Steamboat. War damals mit das beste, was das Wrestling hervorgebracht hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Masterpiecewrote on 24.06.2007:[4.0] "Das einzigste was am Macho Man OK war, sein Outfit ... war noch nie so der Macho Man Fan!"
Rating: 4.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: LexLuger4everwrote on 24.06.2007:[8.0] "Der Macho Man ist das typische Beispiel für 8 Punkte! Er war in allem, was er angepackt hat, unterhaltsam und gut- nicht mehr und nicht weniger! Oh, yeah!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Trevedaswrote on 24.06.2007:[6.0] "Hat Charisma und verfügt über ein gutes MicWork. Auch im Ring ist er gar nicht mal so schlecht. Allerdings konnte ich ihm noch nie viel abgewinnen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Hit Manwrote on 24.06.2007:[10.0] "Eine Legende. Ich finde er muss in die Hall of Fame."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: jupp365wrote on 24.06.2007:[10.0] "Einsame spitze der Typ. Top In-Ring-Performer, super Mic-Worker und überall überzeugend. Stand leider immer im Schatten des "Unsterblichen", deswegen wurde seine Karriere immer ausgebremst, sowohl in der WWF als auch in der WCW. Wirklich schade, dass es wohl immer Monopolisten geben wird."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: timbo7111wrote on 24.06.2007:[10.0] "Der Macho Man ist eine Wrestling-Legende und einer der charismatischsten Wrestler aller Zeiten. OH, YEAH!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: BMwrote on 24.06.2007:[8.0] "Fand ihn in der WWF echt genial. Als dann aber die WCW Zeit kam, ging er mir nur noch auf die Nerven... Ansonsten sicherlich ein sehr guter Wrestler, der nur leider auch immer wieder mit Verletzungen zu kämpfen hatte. Mal schauen, ob er demnächst nicht doch noch irgendwo wieder zu sehen ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Sharkwrote on 24.06.2007:[4.0] "In der WCW mochte ich sein Gimmick nicht... wrestlerisch ist er auch nichts besonderes... im Indy Bereich hatte er aber ein paar gute Auftritte... wenn er zur TNA kommen würde wäre das sicherlich was gutes... aber gefallen tut er mir nicht"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Hypocrisywrote on 24.06.2007:[10.0] "Randy Savage hatte das Machismo, Mojo oder einfach gesagt das gewisse Etwas, um je nach Lust und Laune das Publikum auf seine Seite zu bringen oder eben gegen sich aufzubringen. Dieses Talent hatten und haben nur wenige. Randy Savage jedoch war der Erste. Er war zudem mit einer grandiosen Technik ausgestattet. Erwähnt sei auch, dass er einer der ersten (Heavyweight) Highflyer war. Macho Madness!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: punkgodwrote on 24.06.2007:[10.0] "Randy Savage ist mit Sicherheit einer der weltbessten Wrestler gewesen. Leider haben ihm schwere Verletzungen eingeholt und er konnte in Vergangenheit nur noch verhemmt auftreten. Randy Savage hat am laufenden Band hochcharätige Matches abgeliefert. Er hat selbst aus allen Wrestlern das Maximum rausgeholt. Beieindruckend auch seine Geschwindigkeit, Gewandtheit und Nehmerqualitäten im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: mdbnasewrote on 24.06.2007:[10.0] "Sehr amüsant am Mic und in Promos, musste immer lachen! ... UHHHH YEEAAAHH! Krasse Outfits, blitzschnell und technisch versiert! War der Könner bei den MegaPowers und gefiel mir als MachoKing und als gnadenloser Heel am besten! Poffo - 10 Points!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Sandman16wrote on 24.06.2007:[10.0] "Er hat alles gehabt was man braucht um ein Top-Wrestler zu sein. Angefangen beim Charisma, dann super am Mikrofon und natürlich ein sehr guter Wrestler. Kam damals aber nicht so wirklich an Hogan vorbei, sonst wäre vielleicht noch der ein oder andere Titel mehr drin gewesen. Aber auch so ein ganz Großer des Wrestlings."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Vimeswrote on 24.06.2007:[10.0] "Für die Zeit ein hervorragender Techniker, vor Bret Hart der einzige wirklich gute In-Ring-Performer, der es in der WWF zu was gebracht hat. Auch in der WCW sind die Flair-Savage-Matches denkwürdig. Von WM III braucht man gar nicht zu reden und die Promos waren(zumindest in der WWF) auch einsame Klasse."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=640&gimmick=Randy+Savage
Comment: Giant2wrote on 24.06.2007:[8.0] "Technisch top, mit Charisma und auch Micskills ausgestattet hätte er eigentlich fast noch weiter kommen müssen, als er es ohnehin schon ist. Dagegen stand nur der damalige Protagonist Hogan. Sein Match bei WM 3 war weltklasse und Savage ist zurecht eine absolute Legende des Wrestling."
Rating: 8.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Dntbamarkwrote on 11.06.2024:"Stu Hart's impact on professional wrestling is undeniable. His legacy is profound and multifaceted, encompassing his roles as a wrestler, promoter, trainer, and patriarch of one of wrestling's most influential families. His skill as a grappler and technical wrestler made him a formidable competitor and a respected figure in the wrestling community. Stampede Wrestling, founded by Stu, was a cornerstone of Canadian professional wrestling and served as a launching pad for many wrestlers who went on to achieve global fame. Stu Hart's influence is perhaps most evident in the impressive roster of wrestlers he trained. Besides his own children, his impact can be seen in wrestlers like Fritz Von Erich, Billy Graham, Roddy Piper, Abdullah the Butcher, Jake Roberts, Dynamite Kid, Bad News Allen, Brian Pillman, Chris Benoit, and Chris Jericho. Hart instilled a respect for the wrestling business along with integrity and a strict sense of discipline. However, while Stu Hart's contributions to professional wrestling are widely celebrated, his legacy is not without its criticisms and negative impacts. In recent years, he has garnered a reputation for being a sadistic figure in his training techniques, known to torture his pupils with legitimate submission wrestling holds until they broke. Buddy Rogers famously called the Dungeon a torture chamber, which explains why it is linked to so many of the tragedies that befell the professional wrestling business. The Dynamite Kid, known for his vicious behavior, was trained and broken in by Stu Hart, suggesting he learned such behavior from his mentor. Fritz Von Erich, who trained under Stu, tragically saw five of his six sons die prematurely, a stark example of the potential long-term effects of Hart's harsh training methods. Other trainees, like Owen Hart, Brian Pillman, Davey Boy Smith, and Chris Benoit, also met tragic ends, indicating a possible link between the brutality of Stu's methods and the numerous tragedies that befell those who trained there. Stu Hart's own family experienced numerous personal conflicts, including divorces and estrangements, highlighting the intense pressures they faced. While Stu Hart's legacy is largely positive and his contributions to professional wrestling are undeniable, it is important to acknowledge the brutality of his training. The intense training methods, the physical and emotional toll on trainees, family pressures, and the challenges faced by Stampede Wrestling all form part of a complex legacy."
Rating: No rating found
Sentiment: 0.09111234294161123
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Wrestling Foreverwrote on 21.06.2020:"Ja ich hab kein Match von ihm gesehen weiß aber durch die Dokus DVD von Bret wie stark der Mann selbst noch im hohen Alter war. Unzählige Wrestler hat er trainiert und viele haben sehr wohl den Durchbruch geschafft. Stu hat auch mal gegen einen Tiger und gegen einen Grizzlybären gewrestlet. Der Dungeon war für viele damals die Hölle den das Training war da unfassbar hart und Bret hat seinen Vater wegen Stus Haltegriffe beim Training gefürchtet. Für Bret und die Kinder die von Stu und Helen noch lebten es ist ja nicht nur Owen gestorben war der Verlust ihres Vaters nach dem Tod der Mutter der nächste große Verlust. Stu Hart ist zu Recht in die WWE Hall of Fame aufgenommen worden. Edit 21. 06. 2020 Ziehe die Bewertung zurück. Ihn nur durch das was man aus Interviews und Szenen aus den Dokus sah rechtfertig keine Bewertung."
Rating: No rating found
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Smi-48wrote on 18.06.2014:[9.0] "Die vielzitierte Masse an Big Names, welche durch seine harte Schule gegangen ist, wurde ja schon lang und breit diskutiert - der Mann hat Potentiale erkannt und Größen geformt, so wie es vielleicht nur einem Killer Kowalski in seiner Epoche vergönnt war. Darüber hinaus war er aber auch eine Lebensader für das Wrestling im nordwestlichen Teil des Nordamerikanischen Kontinents - seine Promotion brachte dort mit TV und Liebe zum Detail das Produkt nachhaltig auf die Landkarte. Zu seiner aktiven Zeit gibt es leider nur wenige Aufzeichnungen, aber was man man dann sehen kann, zeigt einen knallharten Mattenringer und einen Bär von Brawler. Man muss ihm aber auch auch trotz seines schwierigen Werdeganges eine gewisse Naivität im Umgang mit dem Geld und bei Nachfolgerfragen unterstellen - Bruce Hart als Hauptverantwortlicher der darbenden Stampede Promotion war eine ebenso diskussionswürdige Entscheidung, wie der Umgang mit dem eigenen Vermächtnis. Und eben jenes ist heute selbst im Mainstream noch überall spürbar."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Basket Casewrote on 28.01.2014:[10.0] "Allein durch die Anzahl an starken Wrestlern, die er trainiert hat, verdient er sich die volle Punktzahl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Daneraswrote on 03.11.2013:[9.0] "Ich habe seine Kämpfe noch nie gesehen, nur kurze Ausschnitte schon. Aber sie waren nicht interessant, da die Zeit von lange her ganz anders war. Das kann man nicht mit 1990 vergleichen. Er war eine grosse Persönlichkeit im Wrestling. Viele Wrestler haben von ihm viel gelernt. Stu hat viel beigebracht. Ja, sein privates Leben war anscheinend nicht gut, und er soll seine Kinder Bret und Owen damals häufig bedroht haben. Owen hatte ständig Angst vor ihm, so erfuhr ich die Biografie von Bret Hart. Das hat mich getroffen. So habe ich mir Stu vorher gar nicht vorgesellt. Hier habe ich 9 Punkte gegeben, weil es für mich hier nur um Wrestling geht, und nicht sein privates Leben. Wichtig trennen: Arbeit und privates Leben!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: jerseyhoolwrote on 18.01.2012:[10.0] "15 von 10 möglichen Punkten! Was soll ich dem Mann auch anderes geben? So ziemlich jeder seiner Schüler war ein guter bis toller Techniker & Wrestler (ok, Talent ist natürlich auch nötig, aber trotzdem! )! Als Promoter ebenso eine wichtige Figur in der nordamerikanischen Szene. Die einzigen Minus-Punkte könnte man geben, wenn man berücksichtigt, dass er ein ziemlicher familiärer Despot gewesen sein soll, aber das interessiert hier nicht. Eine Legende, die zu Recht in der HoF vertreten ist & uns Fans alleine mit seinen beiden bekanntesten Söhnen 2 Lichtgestalten der Wrestlingszene schenkte."
Rating: 10.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Excellence of Executionwrote on 15.10.2011:[9.0] "An meinen Vor-Vorredner (fühle dich angesprochen - von mir trotz deines der Realität entwurzelten Bret Hart Hasses geschätzter Mitmensch Hirnklops): Na ja, den "Output" an gelehrten Wrestlern nur auf Bret und Owen zu reduzieren, wenn ich dich da richtig verstehe, ist doch arg kurz gegriffen. Chris Benoit, Dynamite Kid, British Bulldog, Neidhart, Junkyard Dog, Billy Graham, Lance Storm, Greg the Hammer Valentine, Mongolian Stomper ..... sind das alles bedeutungslose Figuren? Ich meine ... wenn du jeden Ausbilder nur darauf reduzierst, wer alles von seinen Schützlingen zu 'ner Legende mit Mainstream Impact geworden ist, dann wirst du keinem ernsthaft mehr als 5 Punkte geben können, oder? Und als aktivste Leiste Kanadas hat Stu Hart sowieso 30 Punkte verdient! Im weltweiten Vergleich immerhin noch 18 .... nee 19 Punkte. Beweisführung abgeschlossen! Ich gebe ihm 9 Punkte und nicht 10, weil er leider auch Tom Magee ausgebildet hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: y94wrote on 01.06.2011:"An meinen Vorredner: Dein Nickname passt wie die Faust aufs Auge. Mehr habe ich dazu eigentlich nicht zu sagen."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Hirnklopswrote on 31.05.2011:[4.0] "Ich weiß nicht, was man hier bewerten kann oder soll. Erzählt mir alle ja nicht, das ihr mehr als drei oder vier Kämpfe von ihm gesehen habt, wenn überhaupt. Okay, er hat ein paar Leute trainiert, von denen im Grunde nur Zwei den wirklichen Durchbruch geschafft haben: Einer davon aber auch nie so wirklich, dann ging er drauf, der Andere schon so richtig, aber er ist ein Arschloch geworden. Was bewerten wir hier? Die aktivste Leiste Kanadas oder sowas? Wie viele Kinder hat der Kerl gehabt? Oh Mann..."
Rating: 4.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: LabronBenoitwrote on 15.07.2010:[10.0] "Der beste Trainer aller Zeiten. Man möge doch nur mal auf die Liste der Wrestler schauen, die er trainiert hat. Da kommt einem schon fast die Gänsehaut. Hatte ne Menge Ahnung vom Wrestling und auch sein Können im Ring war nicht ohne. Stu, du hast deine Sache gut gemacht, wir danken dir! R. I. P."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: The-Game91wrote on 26.05.2010:[10.0] "Wenn dieser Mann nicht gewesen wäre dann wäre Wrestling halb so spannend wie heute. Es würde so viele Talente nicht geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Barettawrote on 04.01.2010:[10.0] "Im Ring habe ich ihn nie gesehen, aber als Trainer hat er echt was drauf (Ich habe mir gerade "Wrestling with Shadows" angesehen und bin ihm sehr dankbar, dass er Bret und Owen usw. zum Wrestling gebracht hat). Außerdem scheint er mir sehr sympatisch zu sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: affenmannwrote on 21.12.2009:[10.0] "Wohl neben Verne Gagne der beste Trainer aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Eddiewrote on 06.12.2009:[10.0] "Legendärer Trainer. Allein deshalb verdient er von mir die 10 Punkte. Bret und Owen hat er zu Mega Stars gemacht, um mal nur bei seinen Söhnen zu bleiben!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: mugel 187wrote on 23.06.2009:[10.0] "10 Punkte, da er Stu Hart ist. Ich kann nur wenig zu seinen Matches sagen hab ein wenig Stampede sachen gesehen aber sein Stil gefiel mir nicht und trotzdem hat er 10 Punkte verdient, weil er einfach Stu Hart ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Father Nelsonwrote on 18.01.2009:[7.0] "There was too much no selling in his matches. But he did a great job training young boys."
Rating: 7.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: El Reywrote on 07.10.2008:[10.0] "The godfather of wrestling. Ohne ihn wären Leute wie seine Söhne aber auch Edge und Benoit nie zu solchen Leistungen im Ring im Stande gewesen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Hennewrote on 24.09.2008:[8.0] "Ich finds schwierig hier mehr als eine 2 zu geben, nur weil er all die starken Wrestler trainiert hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: LexLuger4everwrote on 20.03.2008:[10.0] "Wem man Stu Hart alles zu verdanken hatte! Überhaupt hat das Wrestling Business Stu Hart viel zu verdanken! Also ganz ganz klare 10 Punkte für den Patriarch der vielleicht legendärsten Familie, die der großartige Wrestling Sport jemals hervorgebracht hat!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Heatwrote on 06.02.2008:[8.0] "Von ihm selbst habe ich nichts gesehen, doch welche Superstars aus seinem berühmten Dungeon hervorgingen, unglaublich."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Blade Bourdeauxwrote on 28.01.2008:[10.0] "Generationen von Wrestlern gingen durch den Dungeon und von ganz wenigen kann man sagen, dass sie das Handwerk nicht perfekt beherrschten. Alleine dafür gebührt ihm Anerkennung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Blue Meaniewrote on 23.10.2007:[10.0] "Einer der besten und legendärsten Trainer überhaupt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Trevedaswrote on 23.07.2007:[10.0] "Absolute Legende, die eine Legende nach der anderen aus dem Hut gezaubert hat. Ohne ihn, hätten wir viele geniale Worker nie zu Gesicht bekommen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Masterpiece22wrote on 30.06.2007:[10.0] "Bester Trainer aller Zeiten! Hoffenlich tritt Bret in seine Fußstapfen und es kommen mehr Wrestler wie Benoit, Owen..... zum Vorschein. Wäre schade wenn er es nicht tut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: King of Queenswrote on 24.06.2007:[10.0] "Wenn man sieht, wen er alles trainierte und wem er half, groß rauszukommen, kann man nur 10 Punkte geben."
Rating: 10.0
Sentiment: -0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1992&gimmick=Stu+Hart
Comment: Carlito Cenawrote on 24.06.2007:[8.0] "Wenn man sich anschaut, wer alles aus seinem Trainingslager hervorgekommen ist, sollte man meinen dass er der beste Wrestling-Trainer der Welt war."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Marktomlin91wrote on 27.11.2024:[10.0] "Great on the mic as well as in ring performer cut amazing promos gotta love the wars with his brother gone to soon."
Rating: 10.0
Sentiment: 0.6333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: WWFanwrote on 06.11.2024:"A bunch of my friends went to the house show at Rosemont the day before he died and saw his final match. I miss him so much. He was so good and so funny. I think Owen had a bright future as a commentator. He was hilarious at King of the Ring 96."
Rating: No rating found
Sentiment: 0.33571428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Pigeon Scratchwrote on 09.10.2024:[10.0] "Career so painfully cut short, but even before hand was underutilized simply because he was deemed as too boring in comparison to the direction that professional wrestling was going at the time. One of the absolute best, some would debate even better than Bret, and genuinely deserved so much more. He will never be forgotten, however, both for the talent he had, and the character both in and outside the ring."
Rating: 10.0
Sentiment: 0.09090909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: robsanderson3wrote on 08.10.2024:[10.0] "Nothing against the great Bret Hart, but Owen was the best of the (extended) family. Workrate, charisma, heel work, everything. Should have been a world champion."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: crs285wrote on 04.10.2024:[9.0] "Another great wrestler in the Hart family but unfortunately his career was cut short. He was more charismatic than Bret but weird booking decisions like joining the Nation of Domination hurt his career more. In the ring I still think Bret was a little more talented, but he still could have a great match with anyone. Had a little more controversy due to his breaking of Austin's neck and his manner of death."
Rating: 9.0
Sentiment: 0.2357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Nolan Greenwrote on 01.10.2024:[10.0] "He may not be as good as Bret, but he is still a great wrestler. Another great wrestler that can carry anyone to a great match. His one advantage over Bret was he was better on the mic as he was able to play an obnoxious heel well. It's real sad he died right before all the great came in. Imagine all the classics he could have had with Kurt Angle and Chris Benoit. In many was, he truly was The King of Harts."
Rating: 10.0
Sentiment: 0.4935714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: dangfoolianwrote on 27.09.2024:[10.0] "A master in the ring. Owen, just like his more popular brother Bret, is an example of wasted potential through no fault of his own. I don't know why a guy with his in ring prowess, (and a better talker than Bret) never made it past mid card status. I'm sure it was some backstage politics BS after Montreal or something. I only wish that Owen had retired earlier than he had initially planned, or told WWF to kick rocks and head to Atlanta his brother. As a new resident to Kansas City, any time I drive past the former Kemper Arena, I always feel a twinge of sadness knowing what happened to an all time great, and one of my personal favorites. Rest in peace, Owen. You will not be forgotten."
Rating: 10.0
Sentiment: 0.17272727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Chosen Onewrote on 26.08.2024:[7.0] "Tragisch, wie früh er von uns gehen musste. Seine Rivalität mit Bret war spitze und ich habe ihm da sogar zugejubelt. Gimmick- und Promotechnisch hat ihm aber leider für mich das gewisse Etwas gefehlt. Außerhalb der Brüder-Rivalität gab es keine Story um ihn, durch die man angespornt wurde, ihm ordentlich zuzujubeln und ihm die Daumen zu drücken."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Sal1314wrote on 05.08.2024:[10.0] "Owen Hart was ahead of his time; he could have been a bigger star in the modern era. The wrestling industry was then filled with egos and backstage politics, and some wrestlers at the top had to have a selfish mentality and take themselves a bit too seriously. Bret Hart and Shawn Michaels were perfect depictions of that mindset, which led to the infamous Montreal screw-job. Owen was a victim of poor booking and tough circumstances. He was an all-around wrestler high-flyer, technical, with a natural charisma and unique personality. "
Rating: 10.0
Sentiment: 0.03851851851851853
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: KobashiChopMewrote on 03.08.2024:[10.0] "In my opinion, Owen was the better wrestler of him and Bret. I'm glad his name can be said in wrestling today without his widow losing her mind, because he deserves to be remembered for how good he was, and how much his style influenced others after him."
Rating: 10.0
Sentiment: 0.475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Johanwrote on 04.07.2024:[10.0] "Owen Hart is absolutely one of the greatest workers ever, very fun character work, very versatile to the point he can technically wrestle Bret Hart and wrestle a Liger match with Jushin Thunder Liger, full of underrated classics, master of sub 7-8 minutes matches and so forth."
Rating: 10.0
Sentiment: 0.35666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Ozzywrote on 04.06.2024:[8.0] "What happened no doubt shouldn't have happened, and that's all I'm gonna but one thing I'm gonna say about it, but that is the primary reason why he is rated so high on here. He was a good wrestler, I would argue 3rd or 4th best of the 2nd best royal family, but I can understand why people would argue 2nd, the problem was that this man apparently didn't even know how to do a Piledriver safely and shortened Austin's career by around a decade. The ton of praks he pulled backstage too makes him sound a little immature and unprofessional too, but I'm willing to look past all that after hearing the Harley Race cattle prod story, and pranks are the least of anyone's problems anyway. I cant understand why he is rated higher than Harley on this site at all, but I do understand his placement in the top 100 wrestlers."
Rating: 8.0
Sentiment: 0.2630882352941177
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Rassle Fanwrote on 23.05.2024:[10.0] "5/23/2024 is the 25th anniversary of Owen Hart's death. It's what prompted me to give a rating. He was truly one of the greatest wrestler ever! He could do it all, technical, high flying, and brawling. The mid-90's was the pinnacle of his career which featured his feud with Bret. He also had a great run as the Intercontinental champion in 1997. One of the greatest to never be a world champion. He is missed."
Rating: 10.0
Sentiment: 0.592
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: thetonyclaywrote on 11.05.2024:[8.0] "Feels improper for me to rate his career when it was cut short the way it was, but I truly believe that Owen could have been one of the best ever if he had made it to his prime / had been able to mix it up with some of the talent that began working with WWE in the early 00's. Imagine a Kurt Angle vs Owen Hart match! It's so tragic that negligence led to his death when it could have been avoided with the proper due diligence from WWE and those responsible for rigging his gear. I still feel awful for his family, especially his children who have grown up without their father. Watching the 'Reliving the War' series on the Wrestling Bios YouTube channel gave me the wonderful opportunity to be able to experience once again the fantastic short career he had. A workrate second to none and a genuinely good guy. In an alternate universe where Owen lives, he absolutely could have become a megastar and multi-time World Champ. RIP Owen."
Rating: 8.0
Sentiment: 0.1527777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Jamesmac015wrote on 14.03.2024:[10.0] "After rewatching the WWF from 1993 on, I truly saw how awesome Owen was. Everything he did felt so innovative, and it was so great to see what he was going to do next."
Rating: 10.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: mxkamiwrote on 11.02.2024:[10.0] "My hottest wrestling take has always been that he's better than his brother, because Owen wasn't a charisma vacuum like Bret was (don't worry, I respect Bret's work). Bret was smooth. Owen had the "snap" to go along with his smoothness. That just always appealed to me as a kid. I get it when people bring up him breaking Austin's neck, but I can't take points from Owen, because it inadvertently created the hottest commodity during the hottest era of pro wrestling. For me, it always looked like Owen had a point to prove. That he wasn't to be overlooked in favor of Bret. I know that I never overlooked him, and wish more people hadn't, as well. I like to imagine the what-ifs of who he could have faced had the accident never happened. Imagine Owen leaving the Fed, and being on the Indies. Wrestling Danielson, McGuinness, Styles, Samoa Joe, or if he stayed in WWE/F and wrestled people like Angle, Jericho, Eddie Guerrero. And just imagine for a minute, a blood feud against HBK in defense of his brother post-Shawn's return/run of a lifetime. We missed out on so much more from this generational talent. Miss you, Owen."
Rating: 10.0
Sentiment: 0.3783333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: cioranwrote on 31.01.2024:[9.0] "Generational talent, largely underappreciated both because of his early and tragic in-ring demise as a result of a failed ring entrance and the fact he was overshadowed by his brother Bret, who's the greatest professional wrestler that's ever lived. Bret was somewhat more reliable too. Owen was always good, but only great when he felt like it. Also hampered by some injuries, had a more high flying style prior to injuries, seen in his HIGH ENERGY run, which was great. During that, he innovated or popularized a number of moves in wide use now. Aside from the Bret matches, he was usually the reliably really good match buried somewhere in the mid-card. Versatile and excellent as both a face and a heel."
Rating: 9.0
Sentiment: 0.2702255639097744
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Dntbamarkwrote on 08.01.2024:[10.0] "Incredible talent, again taken from us too soon. Whenever I think of Owen and what happened, it really makes me mad because this was a guy who was only 34 and had a wife and 2 small children and was killed through no fault of his own in a stupid stunt that he didn't want any part of. I continuously feel bad for his wife and 2 children, who've constantly been portrayed in a bad light by wrestling fans and by Owen's own carny family because she won't allow for him to be in the HOF and rightfully so. The whole situation sucks because Owen literally had his entire life ahead of him and all because of the actions of a few, he was killed and had his body mopped up out of the ring so that they can continue the show bEcAuSe We WeRe In ThE MiDdLe Of A rAtInGs WaR. RIP Owen, gone but never forgotten."
Rating: 10.0
Sentiment: -0.05657894736842104
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: JediSaiyanMaster1203wrote on 18.11.2023:[10.0] "While I'm more of a Bret Hart guy, that doesn't mean that I don't like Owen, because I love Owen Hart and place him among my all time favorite wrestlers. Owen Hart was an incredible wrestler who had decent charisma and promo ability, but made up for it for how smooth his abilities were and how he made every move he did look effortless. His feud with Bret Hart is the only good sibling rivalry in WWE to this day, and nothing's came close. It's unfortunate that he botched the piledriver on Steve Austin and wasn't liked by Shawn Michaels, because there was a possible chance that he was WWF Champion bound after Bret Hart left WWF in 1997. Overall, Owen Hart was a great talent, always tried to mix it up in styles whenever he got in the ring, and could have been a big star if given the chance. R.I.P. Owen Hart"
Rating: 10.0
Sentiment: 0.26588541666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Logewrote on 02.11.2023:[8.0] "Owen was a very talented wrestler who was taken away from us too soon. You all know that. I could talk about Vince being a moron and half blaming him on the thing but you've heard it a billion times so whats the point. I will say I think he might be a bit overrated on here because of his death, which I know is a hard pill to swallow, but he never really achieved true greatness outside of tag teams/stables. I do feel like he was possibly headed towards holding the WWF championship towards the end of his career when he had his DANGER gimmick, but then he turned into the blue blazer and I think we all know how that ended! He also injured Austin with a botched piledriver which broke his neck and honestly could've paralysed or killed the rattlesnake, which jesus christ what timeline would the WWF be in if that happened? God knows. It didn't kill him but it seriously shortened his career. But the way Austin covered for it was awesome and he played it up like a champ, especially since I know he's had some serious politics backstage, but Owen kept his job and got to perform the fucking awesome and genuinely badass OWEN 316 I JUST BROKE YOUR NECK promo with the shirt. Owen later recreated the botched piledriver as a work in a match against Dan Severn, where Dan pretended to have also gotten his neck broken by the move and they had to stretcher him out, which was also sick but the problem is that ironically enough, Owen almost also fucking killed Dan as well! I guess Owen was really going for the authenticity of the original botched piledriver that broke Austin's neck, and so he also dropped Dan directly on his head. Dan was way more lucky and didn't severely injure his neck, but he did discuss in an interview much later that it genuinely did hurt him and that years and years later Austin had called him about the match and was like Jesus Christ dude, he almost got both of us! I think my favorite Owen era was when he became the first white person invited to the cookout by joining the Nation of Domination and had the ENOUGH IS ENOUGH, AND ITS TIME FOR A CHANGE! Gimmick, especially when Jason Sensation, yes, Jason fucking Sensation had a little feud with Owen which was genuinely really funny imo. Jason would always mock Owen and it was perfect. Anyways yeah Owen was pretty cool RIP LEGEND."
Rating: 8.0
Sentiment: 0.10456065759637187
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Makai Clubwrote on 31.08.2023:[7.0] "A good wrestler but only really great when paired up against his brother who is one of the greatest of all time. People tend to put them on the same level which Owen was far off it. Where Owen does stand is a very good 3rd tier. A good athelete who did things that many didn't in the US/Canada, good techincally and a great character worker. Despite being slightly overrated as a worker, he's a well toured wrestler winning gold everywhere he went and has an enviable career."
Rating: 7.0
Sentiment: 0.46738095238095234
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: mpichwrote on 11.08.2023:[7.0] "Immer im Schatten seines Bruders, bis zuletzt wie "eine gehetzte Seele" bei seinen Auftritten, aber technisch gut und teils auch mit guten Storylines ("The King Of Harts"). Oftmals jedoch ein wenig mühsam anzusehen, da er m.E. wenig Charisma besaß und nie ganz dorthin gelangte, wo er sich wohl gerne gesehen hätte. RIP."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: MattHallwrote on 12.07.2023:[9.0] "I enjoyed his work as The Blue Blazer and he had some good matches with Triple H, The Undertaker, The Rock, His own brother Bret Hart, Shawn Michaels, and the list goes on and on. Sad that he died at a very young age. RIP Mr. OWEN HART"
Rating: 9.0
Sentiment: 0.23833333333333329
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Giantfan1980wrote on 09.04.2023:[8.0] "Just about as good as Bret Hart and he possessed the agility which he kinda lost after a knee injury in the late 80's (or early 90's) and the world was robbed of Owen getting a shot as a main eventer. One of those guys who was always just outside the main event title run and never got there because of his employers stupidity."
Rating: 8.0
Sentiment: 0.033333333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: AnthoTheKIDwrote on 29.01.2023:[10.0] "An absolute genius in the ring. Everything was very fluid, everything was on point. So sad that the wrestling world lost him so soon."
Rating: 10.0
Sentiment: -0.09999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Abo96wrote on 21.01.2023:[10.0] "Unglaublich talentierter Entertainer mit großem Sinn für Details im Ring und auch außerhalb. Sehr smooth im Ring, gutes Selling, hervorragende Mimik. Insgesamt auch ein besserer Athlet als sein Bruder Bret. 1994 war sein bestes Jahr mit der großartigen Fehde der beiden Brüder. Schade, dass er danach wieder aus dem Main Event gerutscht ist und nie die Chance hatte, World Champion zu werden. Das Potenzial dazu hätte er absolut gehabt. Extrem tragisch natürlich sein sinnloser Unfalltod, der das Wrestling ein großes Talent und einen, nach allen Erzählungen, wundervollen Menschen gekostet hat."
Rating: 10.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: benh2wrote on 11.01.2023:[8.0] "Owen oozed natural talent. He just didn't really care and that's fine, not everyone can be committed 24/7. But when he wanted to go, he was one of the best."
Rating: 8.0
Sentiment: 0.4291666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: nothingleftinsidewrote on 14.11.2022:[8.0] "I'm tempted to call Owen a great "what if" but the guy was pretty lackadaisical about his career and advocating for himself, resulting in him constantly being buried in WWF booking. I feel like the "what if" would have been more of the same that we saw in 99 until his contract runs out and he goes back to Calgary to be a firefighter or teach the third grade or whatever the hell. He was a great worker, though less careful than his brother. You don't have to watch too many of his matches before you run into some sort of botch. He also took more risks than his brother, which explains some of it. Still, he was an exciting technical wrestler with a good sense of pacing, heat, etc. Pretty much all his matches are good. A classic whiny, chickenshit heel with effective promo work no matter what stupid situation the WWF pushed him into. It's bullshit that he died, but it did set a tone for the next 20 years about being a little more careful with this dangerous shit that technically isn't wrestling. Good on his wife for taking on the WWF the way she did, though it would be nice to see him in videos. A- worker, B+ promo, and a hard C for look. He was far from the greatest of all time, but still a great hand for any roster."
Rating: 8.0
Sentiment: 0.22120098039215685
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: sbg2022wrote on 29.08.2022:[10.0] "He was way too good for the fate that he suffered. A man who I believe even nowadays, would be head & shoulders above 99.9% of today's wrestlers, maybe except for like Bryan Danielson or Zack Sabre Jr."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Maxkappelnwrote on 17.04.2022:[10.0] "Eindeutig einer der Besten überhaupt, technisch brillant, schaffte es auch Geschichten im Ring/Match zu erzählen. Dazu am Mikrophon hervorragend. Da kann es nur 10 Punkte geben. Schade das sein unnötiger, früher Tod einen zukünftigen World Title Run verhinderte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: TigerDiverwrote on 03.02.2022:[10.0] "Owen Hart, I think, could make the case for the greatest wrestler to never win a World Championship in a major promotion. His work ethic was way too good for the time period he was in, to the point where there were only a few guys who can match up to him from bell to bell. His promo ability, character work, personality traits, and facials were pure gold. I honestly think if his potential is completely fulfilled, he might even have a good chance of ranking over his own brother, Bret."
Rating: 10.0
Sentiment: 0.2813988095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: rishabhwrote on 02.02.2022:[10.0] "Owen Hart was a tremendous worker and like a lot of people here have said, that his work was ahead of it's time. I don't think he was better than Bret in the ring but as a character he was more enjoyable. His matches with Bret are some of my favorites and Owen is in my opinion the best wrestler who was in the WWE but never won the World Title. The only thing which could prevent me from giving him a full 10 is that we never saw his full career unfold but for whatever time he wrestled he created a great legacy and cemented his place as one of the greats."
Rating: 10.0
Sentiment: 0.48148148148148145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: GriffinXwrote on 30.01.2022:[10.0] "Owen was so amazing. You go back and watch his early stuff you see how he was doing things back in the 80's and 90's that guys are doing now. Then to be able to move the WWF and play such a great heel against his brother"
Rating: 10.0
Sentiment: 0.2857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: benny5bellyswrote on 30.11.2021:[8.0] "Owen was great, such a good wrestler and making sure he got the little things right. His feud with Bret will stand up to any feud in wrestling history. Some of his Stampede stuff is way ahead of its time."
Rating: 8.0
Sentiment: 0.34970238095238093
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: HighFlyDeathcorewrote on 29.11.2021:[10.0] "The fucking goat. Owen hart never had any bad matches that i have ever seen. He cut amazing promos and he could play any gimmick. WWE should have gave him the world heavyweight title and made him a star. Truly a wrestler you could build a company around"
Rating: 10.0
Sentiment: -0.23333333333333325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Conquistador37wrote on 13.10.2021:[10.0] "1 of my all time faves, maybe one of my top 3 or 4 tied for #1. I loved Owen, he was my #1 reason to watch WWF, his passing was the first major blow to my fandom, but as i grow older i learn to celebrate his life more so than mourn his passing. He truly was THE BEST THERE EVER WILL BE."
Rating: 10.0
Sentiment: 0.45416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Ma Stump Pullerwrote on 09.07.2021:[8.0] "In terms of wrestling ability, Owen was utterly fantastic: agile as anything, astonishingly technical when required, could pace himself with slower and more bulky guys all the way up to a furious workrate as seen in Japan respectfully, had great ring psychology and knew how to work effectively throughout a match as either a face or heel. Nothing really bad to be said there and I think he more than earns his rep as one of the greats. However, Owen suffers from a lot of stuff outside the ring: namely, his character work. Owen was never really much of a talker and I've honestly never seen a good Owen promo out of him. He's bland as anything as a face and can only really pull off the chicken-shit, entitled brat as The King of Harts was, but even that got old. While he can work a good heel in the ring, he's just not anything beyond it. The main issue I have is that Owen's motivation and that ring quality reduces a ton after Bret leaves: he just was never the same afterwards and seemed to be eying up retirement as he viewed wrestling as basically a job, not a passion, as he was fairly young and wanted to leave before injuries caught up to him. If he had been inspired by the likes of Angle and co joining and got back into the swing of things? Maybe we'd have a utterly fantastic career there. Unfortunately, that seems minuscule as a issue compared to what happened to him. A great talent greatly missed, but, frankly, I can't put him higher with what I've seen."
Rating: 8.0
Sentiment: 0.20178571428571432
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: earlearlearlwrote on 06.07.2021:[9.0] "Everything I've seen from Owen is great. I do have to watch some more of Owen's promos to see if I want to raise him to a ten but he is brilliant."
Rating: 9.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Daigotsuwrote on 19.06.2021:[9.0] "Owen was a fantastic performer and a fantastic character in the ring. He never really got his due when he was alive; never quite got pushed to where he should have been, which is a credible main event talent. Maybe it would have happened before his untimely death, but it's a shame it never happened when he was alive."
Rating: 9.0
Sentiment: 0.16770833333333338
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: AnBwrote on 17.04.2021:[8.0] "Owen Hart was brilliant in the ring and it's tragic what happened to him. I thought he did fine as a face, but was wholly unbelievable as a heel. His energy when on the mic just felt completely fake, like Owen couldn't act like an angry or frustrated guy."
Rating: 8.0
Sentiment: -0.1976190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: KENTAfanwrote on 15.04.2021:[10.0] "When I think of the most underrated wrestlers of all time, I immediately think of Owen Hart. This guy was just such an amazing competitor. Had great in-ring talent and psychology, more charisma than his brother, and was amazing as a heel. I think he could've been equally as good as a face although he never really had the chance. Unfortunately, Vince had no faith in him and stuck him in stupid angles and ridiculous gimmicks, which ultimately is what got him killed. It's such a shame. He easily had what it took to be one of the greatest world champions of all time, and I feel the stupid Blue Blazer crap that eventually led to him falling to his death robbed us of not only many years of awesome matches he could've gone on to participate in, but also an amazing human being."
Rating: 10.0
Sentiment: 0.1541666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Brett1980wrote on 25.01.2021:[9.0] "One of the best junior heavyweights in NJPW in the mid 80s, really innovative. Blue Blazer was not pushed well but he could still have a decent sub 5 minute match. When he returned to the WWF in 1992 he was again underused until his feud with Bret that was tremendous. He was then just a tag team guy and was usually the guy someone beat on the way to becoming a main eventer. Which was a job he did well."
Rating: 9.0
Sentiment: 0.26296296296296295
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Dennisiztheman02wrote on 01.11.2020:[10.0] "Owen Hart is an amazing worker who I believe was UNDERRATED before his unfortunate demise. For those who think otherwise, watch Bret Hart vs Owen Hart at Summerslam 1994 and Jushin Thunder Liger vs Owen Hart. Owen is a talented wrestler with a lot of potential but didn't get that big main event push and ended up being stuck in the midcard. Had he been pushed, I think he would've been an amazing main eventer like his brother Bret."
Rating: 10.0
Sentiment: 0.2166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: marexcelwrote on 27.07.2020:[10.0] "Ich kam zum Wrestling der WWF als Owen Hart bereits verstorben war und hatte von ihm wirklich kaum eine Vorstellung. Bis auf den Montreal-Screw Job und den späteren WWE-Run kannte ich auch von Bret Hart nur die eher schrägen späten 90er in der WCW. Der legendäre Ruf der Brüder war für mich schwer zu fassen. Mit der Aufarbeitung der Historie 1993 wurde mir aber schnell klar, was ich da bisher verpasst hatte. Owen Hart war ein Natural Wrestler. In Stories, die nah an der Realität waren, wie die Rivalität mit seinem Bruder, wirkte er einfach irre authentisch und überzeugend. Sicherlich nicht der beste Promo-Guy im Geschäft und oft sah man, dass es für ihn einfach nur Aufgabenerfüllung war, aber dennoch konnte er auch auf der Ebene überzeugen und gerade als King of Harts war er ein wirklich starkes Gesamtpaket. Rückblickend versuche ich noch zu ergründen, warum man ihn nie Richtung Main Event-Picture geschickt hat. Für mich brachte Owen Hart alles mit, was ich in den 90er in der WWF sehen wollte und so hätte ich gerne gesehen, was er in den frühen 2000ern leisten hätte können. Mit Jericho, den Hardys, Angle, Storm, Benoit, Guerrero, Benjamin & Haas, RVD, Mysterio, Lesnar oder auch Cena hätte es in der Phase viele starke Paarungen gegeben. Auch wenn mir noch ein paar WWF-Jahre fehlen, kann ich jetzt schon festhalten, dass Owen Hart damals für mich ein absoluter Fixpunkt war. Einer der weniger Worker, wo auch die unwichtigeren Matches meine 100%ige Aufmerksamkeit haben. Irre sympathisch und im Ring oft smooth AF. Er bracht im Ring so viel mit, was ich heute oft vermisse. Alles, was er im Ring anstellte, hatte eine Bedeutung und einen Zweck. Starker Wrestler, guter Typ. Ruhe in Frieden, Owen Hart."
Rating: 10.0
Sentiment: 0.22222222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Khalid Acewrote on 12.06.2020:[6.0] "I don't agree with some of the opinions that say he was a better worker than Bret but he was more charismatic. He was growing as a worker & in his character but I feel that Bret's leaving affected his position in the company. Sadly he didn't reach his prime yet."
Rating: 6.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: qbortwrote on 01.05.2020:[9.0] "Owen was more entertaining to watch than Bret. He was a good high flyer. Owen & Yoko were an underrated tag team."
Rating: 9.0
Sentiment: 0.46499999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: KyleEnjoysWrestlingwrote on 07.08.2019:[8.0] "Clearly overrated in some respect due to what happened. Owen was a good right hand man to Bret during the Hart Foundation days & was a well timed comedic presence & tag guy with Davey & Yoko. After the Screwjob, Owen was going nowhere fast & it felt like his glory days were behind him. The Blue Blazer gimmick was unnecessarily silly, but Owen as the Blackhart didn't really connect with audiences either."
Rating: 8.0
Sentiment: 0.051190476190476175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Sick Lebowskiwrote on 09.05.2019:[10.0] "Großartiger Wrestler und, wenn man der allgemeinen Meinung seiner Kollegen und Bekannten Glauben schenken darf, einer der nettesten Menschen im Business. Im Ring für mich auf einer Stufe mit seinem Bruder Bret, technisch sogar etwas stärker als dieser. Viel zu früh und vor allem viel zu tragisch von uns gegangen."
Rating: 10.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: zephyrwrote on 19.03.2019:[8.0] "It feels really bad to say this but I definitely feel like his fatal accident has led to Owen Hart becoming sort of an overrated icon. That's not to say he was bad; he was a great wrestler. Just not a 9. 3 average rating level great wrestler."
Rating: 8.0
Sentiment: 0.10357142857142862
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Steamboat2511wrote on 02.10.2018:[8.0] "Wie sein Bruder war Owen Hart einer der besten Techniker überhaupt. Er konnte immer ein mindestens ansehnliches Match auf die Beine stellen, mit jedem Gegner. Charisma fehlte leider ein wenig, so dass er auch immer ein bisschen im Schatten von Bret stand. Und leider verstarb er, bevor er in der WWE zu einem noch größerem Star hätte werden können und beispielsweise Heavyweight Champion wurde. Eine der großen Tragödien der Wrestlinggeschichte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: RatingsMachinewrote on 22.09.2018:[8.0] "Owen's untimely death has led to people severely overrating him. Owen could work a variety of styles, and he was very good at them all. But he wasn't one of the greats, and few people were saying he was until he died. At which point, he suddenly became one of the best who ever laced up a pair of boots."
Rating: 8.0
Sentiment: 0.4275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: jcb9wrote on 17.05.2018:[10.0] "Maybe the greatest wrestler ever who never got to be World Champion. Owen Hart was a great worker and had a ton of charisma and mic skills ?  more than his brother Bret. Owen was a great obnoxious heel. Unfortunately he was consistently mishandled after he decided to stay with the WWF after Bret left, despite the very obvious opportunity Bret's departure provided for a main event push for Owen in the form of a feud with Shawn Michaels. What could've been..."
Rating: 10.0
Sentiment: 0.33518518518518514
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: pappahousewrote on 22.03.2018:[9.0] "Sehr tragisch wie die wunderbare Karriere von Owen Hart zu Ende ging. Toller Typ, ich liebe ihn, großartiger Wrester, auch als verbitterter "Hart-Junior" überzeugend.  Der Enzuigiri der WWF, super Aktion.  Ein Punktabzug für die Zeit mit Yokozuna, dass passte für mich irgendwie nicht."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: CHN325wrote on 03.02.2018:[8.0] "Unfortunate that he had to live in his brothers shadow and that he nearly paralyzed Steve Austin,  because Owen was one of the best pure wrestlers to ever strep foot in the ring. He could have been a top at the top of the decade. didn't quite have the charisma that Bret had."
Rating: 8.0
Sentiment: 0.27866419294990724
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: TheLoudMouthwrote on 08.01.2018:[9.0] "In meinen Augen deutlich besser als der Hitman, da man Owen Hart - im Gegensatz zu seinem Bruder - auch am Mic ernst nehmen konnte. Ein ganz, ganz tolles Komplettpaket, dass leider viel zu früh verstorben ist."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: ianlapierrewrote on 04.11.2017:[7.0] "Had Owen lived and wrestled another 10 years, who knows what could have been? He was fantastic in the ring like his brother and he had even more charisma. He wrestled 5 star matches and looked to be on his way to the main event level when he tragically fell to his death at the Kemper Arena."
Rating: 7.0
Sentiment: 0.35555555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: taabr2wrote on 11.09.2017:[9.0] "A brilliant in-ring worker, just everything Owen did in the ring looked effortless. In my opinion Owen Hart is a better worker than his big brother Bret. However it is the fact that Bret carried himself better that made him the more successful member of the family."
Rating: 9.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Squared Circlewrote on 04.08.2017:"I won't rate this as his career sadly ended far too early.  He was entertaining from the first time he set foot in a ring and appeared to be blossoming out of his brother's shadow.  Tragic.  RIP."
Rating: No rating found
Sentiment: -0.05000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Blood Pumpwrote on 24.04.2017:[8.0] "Wasted potential, perhaps the biggest waste as a matter of fact and I think that's partially Kliqs fault as well as of course Russo's. Owen was an amazing worker who had more charisma then his brother Bret and could've potentially been better then him if given the opportunity. His WM match with Bret is one of my all time favorites. Along with Eddie hes one of the biggest tragedies in the history of WWE."
Rating: 8.0
Sentiment: 0.1375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: TheWrestlingFanwrote on 01.03.2017:[10.0] "The GOAT of Hart Family. Incredible in the ring, on the mic, and has more believable character than Bret Hart. Had he still alive and wrestled, I think he could have been an awesome WWE Champion."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Real Raterwrote on 30.01.2017:[7.0] "In-Ring Skills:Nicht so gut wie sein Bruder Bret aber er war einer der besten Wrestler der WWE in den 90er. 8/10 (50%) Promos/Schauspieltalent:Nur Durschnitt. 6/10 (25%) Charisma/Erscheinung/Gimmick:Auch hier leider nur Durschnitt. 6/10 (25%) Sind dann insgesamt 7 Punkte für The King Of Harts und RIP.  = 7 Punkte"
Rating: 7.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: JEK 1991wrote on 27.01.2017:[10.0] "One of the best wrestlers of all time. A lot like Bret. Exciting performer to watch. WWE please put Owen in the Hall of Fame and stop pretending that he did not exist. If Owen was still alive he would have been WWE Champion and had a bigger lengthy career."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: rjsbx11wrote on 08.01.2017:[9.0] "One of the top 5 ever, in terms of sheer ability, ha combination of all of the technical skill, plus the high flying moves. Don't think he was a standout as far as psychology or storytelling though, which where Bret has him beat by a country mile. I don't think that his position in the company was due to just Vince's lack of belief in him, though that played a part. He wasn't assertive at all, and that hurt him. However, Owen was constantly a source of entertainment playing a great bitter/whiny heel, he was the top heel in 1994 and from there became nothing but consistent no matter the role. Died way too soon and unnecessarily, Owen Hart's legacy and ribs live on forever."
Rating: 9.0
Sentiment: 0.16011363636363637
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Wrestling Foreverwrote on 07.10.2016:[10.0] "Owen war ein riesen Spaßvogel und mit Davey Boy für seine Streiche bekannt auch war er ein super Ehemann und liebte seine Familie. Im Ring war er neben Bret der beste der Harts. Seine Fehde mit Bret sehe ich als einer der besten Bruder Fehden in der Wrestling Geschichte. Er war schon in Japan bei NJPW super und hatte auch bei der WWE zig fantastische Matches im Singles und Tag Team Bereich. Ein fantastischer Allrounder, Techniker der viel zu früh durch diesen sehr unglücklichen Unfall verstarb. Edit 08. 02. 2016: Gerade die Hart of Gold Doku von ihm auf DVD angeschaut. Da sieht und hört man auch sehr gut was er für ein Mensch im Ring und privat war. Die Geschichten die man da in den Owen Tales hört sind teilweise unfassbar lustig. Owen war auch ein Mann der perfekt seine Stimme verstellen konnte. Es ist auch sehr interessant das er einer der Gründ war warum Chris Jericho anfing zu wrestlen. Ich dachte bei Chris sind es eher Ricky Steamboat und Shawn Michaels gewesen. Auch extreme schade das es nie ein Match zwischen Owen und Chris gab. Edit: 07. 10. 2016 Hab auf der DVD The Life and Death of Owen Hart gesehen. Das er das Wrestling nie wirklich geliebt hat. Er wollte lieber Sportlehrer oder Feuerwehrmann werden aber er wurde nicht genommen so musste er weiter wrestlen um seine Familie ernähren. Owen war auch einer der vieles nicht in der WWF tun wollte das ihm die WWF befohlen hat so hasste er es auch als Blue Blazer aufzutreten. Er fand es auch als Strafe wieder 99 in dieses Kostüm gesteckt wurden, weil er nicht tun wollte was Vince von ihm verlangte. Diese Doku stammt von 1999 und ist von selben Regisseur wie bei Wrestling With Shawdows."
Rating: 10.0
Sentiment: 0.13541666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: SlickDevilSWPwrote on 19.09.2016:[10.0] "While Bret was the best overall performer (and my favorite), Owen was the best wrestler of the Hart family. His early matches in Stampede were eye-opening and his feud with Bret is my favorite of all time. I recently watched his match with Ultimo Dragon in 1992 that blew me away. I sense had he lived he would have become a WWE World Champion by 2001-02. RIP Owen. You were one of the best."
Rating: 10.0
Sentiment: 0.5125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: ApexOfEvolutionwrote on 06.09.2016:[10.0] "Für mich der bessere der beiden großen Harts. Als Mark gefiel er mir schon im Tag Team mit Koko B. Ware und in der Fehde mit seinem Bruder durfte er dann als Heel richtig groß rauskommen. Da er für die Rolle des Bösewichtes auserwählt worden war, hatte er natürlich auch mehr Ausstrahlung und Persönlichkeit als es die charakterlich flachen Faces der 90er haben durften. Owen fand als eifersüchtiger, kleiner Bruder einfach die Paraderolle. Leider auch ein Beispiel für die vielen Wrestler, die von der WWE verheizt worden sind."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Coltwrote on 03.09.2016:[9.0] "Für mich nach Shawn Michaels sogar der beste Techniker der 90er! Beherrschte sowohl spektakuläre High Flying Moves als auch etwas härtere Manöver.  Unvergessen seine Matches gegen Bruder Bret bei WrestleMania und Summerslam, hier hat man gesehen wozu er fähig war wenn er einen starken Gegner im Rahmen einer guten Storyline bekam. In der Tag-Team Division war er mit 3 Titeln sogar erfolgreicher als sein Bruder! Dazu einer der besten Heels der New Generation Ära. Seine Darstellungen als arroganter Regelbrecher sind umso höher zu bewerten wenn man bedenkt, dass er privat ein sehr umgänglicher und sozialer Mensch war. Vor der Kamera schlüpfte er wirklich sehr überzeugend in seine Rolle. In der oberen Midcard hatte er nach seinem Heel-TurnŽ94 seinen Platz sicher, zum Main Eventer reichte es aufgrund sehr starker Konkurrenz dann doch nicht. Neben dem Hitman, Chris Jericho, Chris Benoit & Edge zähle ich Owen zu den 5 besten kanadischen Wrestlern aller Zeiten. Rest in Peace, Owen!"
Rating: 9.0
Sentiment: 0.18156565656565657
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Chosen Onewrote on 11.06.2016:[9.0] "Owen Hart definitely deserves to be in the WWE Hall of Fame. He had a good move set, look, and had some pretty good charisma. He wasnt very good on the mic but that is easily outweighed by how good in the ring he was. It is a true shame he died and he was so young as well. But overall a great wrestler 9/10."
Rating: 9.0
Sentiment: 0.4493939393939393
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Wrestlinglexikonwrote on 23.05.2016:[9.0] "Owen Hart war, ebenso wie sein Bruder, in der Lage aus jedem die beste Leistung heraus zu kitzeln. Wobei sie dabei nicht unterschiedlicher hätten sein können. Bret eher der methodisch arbeitende Stratege-Owen mit seine explosiveren Technikfeuerwerk, haben sich die beiden großartig ergänzt-vor allem gegeneinander. Aber auch wie Bret war sein "Makel" das micwork-Owen war da nur Durchschnitt. Im Ring dafür dann mit großartigem selling, toller Technik und vor allem der Fähigkeit seine Gegner gut aussehen zu lassen ein everytimer der auf jeder card ein Gewinn war. 9 Punkte-klare Sache hier. :) Und als kleiner Pluspunkt hat Owen den Sprung in die neuere Generation ende der 90er geschafft, bevor es dann bekanntermaßen tragisch endete..."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Mizzle Assault Antwrote on 09.05.2016:[10.0] "Owen was a great and legendary talent that was loved by pretty much anyone you might ask, and with good reason. A great guy behind the scenes by all accounts, he's also a great performer with a lot of charisma and ability to play up character angles, seen especially of course in 94 and 97 but really shown through the whole prime of his career."
Rating: 10.0
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: EGeraldhuebnerwrote on 04.05.2016:"Owen Hart, der kleine Bruder von Bret Hart ... betrachtet man die Umstände seine vorzeitigen Todes, kann man nur sagen, was die WWF da verursacht hat, ist absolut verwerflich. Gipfel der Geschmacklosigkeit war allerdings, selbst daraus noch Kapital ziehen zu wollen. Für solche Dinge (ebenso wie für viele andere, z. B. den Betrug von Montreal) könnte man Vince McMahon als Hauptverantwortlichen eigentlich nur tagelang auf's Maul hauen. Als Wrestler betrachtet, war Owen zwar technisch spitze, allerdings fehlte mir bei ihm irgendwie eine gewisse Ausstrahlung. Obwohl direkt blutsverwandt mit Bret Hart, sah ich in dem Fall seine beiden angeheirateten Schwager Davey Boy Smith (British Bulldog) und Jim "the Anvil" Neidhart immer viel lieber. Owen "the Rocket" Hart dagegen konnte mich weder als Face noch als Heel jemals so richtig überzeugen, trotz das er viel talentierter (als Jim Neidhart) war oder zumindest ebenso gut (wie Davey Boy Smith) gewesen ist. Kann natürlich auch mit seinem bescheuerten Debüt zusammen mit Koko B. Ware als High Energy zusammen hängen ? Hat im Unterschied zu Bret Hart auch einen Kollegen (Steve Austin) real verletzt, so das dieser seine Karriere vorzeitig beenden mußte. Allerdings vergessen manche hier ganz gerne mal, das es nicht nur an ihm allein gelegen haben muß. Auch der jeweilige Gegner sollte sich richtig auf geplante Aktionen einstellen können. Von daher, schade um beide, aber natürlich besonders um ihm. Denn leider wird man bei ihm nie sicher erfahren, was er vielleicht sonst noch alles hätte erreichen können ... R. I. P. Owen James Hart"
Rating: No rating found
Sentiment: 0.12
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: WrestlingNerdwrote on 09.04.2016:[10.0] "Ganz klar 10 Punkte für Owen Hart. Es ist einfach krass, was er damals für Wrestling gezeigt hat, er war wirklich einer der besten. Schon fast innovativ. Er zeigte in den 90ern gefühlt schon das Wrestling welches man in den 2000ern als Standard angesehen hat. Zudem war die Fehde gegen Bret Hart, anno 94 auch eine der ersten die ich so als kleiner Junge mitbekommen habe. Hatte Charisma, Mic Work ging auch okay und wie gesagt, im Ring wirklich ein Gott.  Spielte auch die Rolle als meist eifersüchtiger Bruder immer hervorragend. Aber man sagt ja eh immer, die die im Backstagebereich die nettesten sind, geben die besten Heels ab. Leider viel zu früh verstorben.  Achja, und wenn man schaut, dass er z. B. auch der liebling von Kevin Owens ist, und dieser eines seiner Kinder nach ihm benannt hat und auch seinen namen wegen ihm gewählt hat. Sehr gut. und wie ich hier gelesen habe, Y2J zum Wrestling gebracht hat, einfach hervorragend.  Deswegen 10 Punkte für einen der besten Allrounder, R. I. P. Owen!"
Rating: 10.0
Sentiment: 0.27499999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Phenomenal91wrote on 11.02.2016:[10.0] "He didn't live long but he accomplished a lot, as did every member of the prestigious Hart family. A horrible way to go, but he's been given his proper respect for his work. We won't see another one like him."
Rating: 10.0
Sentiment: -0.14272727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: BackLashwrote on 09.01.2016:[10.0] "The first wrestler since Hulk Hogan that I really loved. The youngest of Stu Hart's kids, he had a lot to live up to and boy did he. His athleticism was off the charts, his skills were vast, his charisma was obvious, his mic skills were energetic and on point. He was the total package and should have been WWF/WWE/World Champion at some point.   I took it real hard when he died, I didn't believe it at first. I won't blame WWE for it because it was an accident, but it didn't need to be. I still miss him to this day and think he would have been the family man he wanted to be by now. As it stands, the legacy he left in WWE, New Japan, Stampede and all over the world will never be forgotten.   God bless Owen."
Rating: 10.0
Sentiment: 0.13956611570247934
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: DanielBryan1986wrote on 04.12.2015:[10.0] "Für mich gehört Owen zu einer Reihe von Wrestlern die es beherscht haben zu unterhalten aber nie den großen Titel hielten. Genauso wie Bulldog, Perfect, Ramon. Er gefiel mir sehr gegen Bret in der Bruderfehde und in Kämpfen gegen Austin oder Michaels. Tragischer Tod, der seine Karriere zu früh beendete."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: HeadCheesewrote on 03.08.2015:[10.0] "Owen Hart was awesome combineing high flying, technical wrestling, entertainment all together. I think he will go down as one Greatest Of All Time."
Rating: 10.0
Sentiment: 0.40088888888888885
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Viper99wrote on 21.01.2015:[10.0] "Er wurde leider nie der ganz große.... Was er aber mit seinen Mic und In Ring Skills hätte werden können.... Selbiges gilt auch für seine "Kollegen" Brian Pillman und den British Bulldog.... Leider all diese 3 tragisch verstorben... Vielleicht war es bei Owen sogar schlimmsten...."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Yoyowrote on 17.09.2014:[10.0] "A wonderful performer that combined high-flying game with technical skills and flawless executions, and a great guy on top of that. Sorely missed."
Rating: 10.0
Sentiment: 0.4833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Undertalkerwrote on 25.03.2014:[9.0] "Seine hervorragenden Wrestlingskills standen hinter denen seines Bruders nicht zurück. Bret besaß eine ausgeprägtere Ringpsychologie und war vielleicht etwas besser im Matwrestling, dafür war Owens Stil temporeicher und spektakulärer. Ausstrahlung hatte er reichlich und sein Micwork war ebenfalls stark. Das merkt man besonders, wenn man ihn mal als Kommentator gehört hat; da leistete er einen klasse Job! Obendrein war er auch noch ein sehr humorvoller Mensch, was ihn nur umso sympatischer macht. Ganz an Brets Charisma kam er meiner Meinung nach nicht ran. Ich glaube aber trotzdem, wenn sich dieser tragische Unfall nicht ereignet hätte, wäre er in der Card noch weiter aufgestiegen. Wer weiß, vielleicht hätte er sich sogar im Main-Event etablieren können?"
Rating: 9.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Daneraswrote on 03.11.2013:[10.0] "Es ist sehr Schade, dass er einen tragischen Unfall hatte. Er war ein ausgezeichneter Wrestler. Ich habe ihn immer bewundert, auch als er mal böse war (Fall mit seinem Bruder Bret Hart). Die Unterhaltungen von ihm waren immer interessant. Er gehört zu meinem Lieblingswrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Alex Maedawrote on 15.08.2013:[10.0] "Das wahre Total Package, schon bevor sich Lex Luger so nannte. Ich halte ihn für charismatischer, technisch und vor allem rednerisch versierter als seinen Bruder. Und das um Längen. Ich bin mir sicher, dass er heute noch im Wrestling aktiv wäre, entweder als Aktiver oder als Trainer. Ich kann die Ausmaße seines Todes nicht einschätzen, da ich erst seit 2008 das Geschehen verfolge und frühestens 2005 durch Eddies Tod das erste Mal mit Wrestling in Kontakt gekommen bin. Nicht nur für die Wrestling-Welt muss sein Verlust schrecklich gewesen sein, vor allem Stu muss es das Herz gebrochen haben, seinen 50 Jahre jüngeren Sohn zu überleben. Das einzig Positive an seinem komplett verzichtbarem Stunt, der zum Unfalltod führte, ist die Tatsache, dass er dort gestorben ist, wo er fast sein ganzes Leben verbracht hat und Blut, Schweiß, Tränen und Leidenschaft hinterlassen wie wohl sonst nirgendwo : im Ring. Auch wenn ich noch nicht mal "Wrestling" aussprechen konnte, als er starb, bleibt mir die Luft im Halse stecken, wenn ich (Tribute-) Videos von und über ihn sehe. Einer der ganz Großen dieses Sports, der seine Höhepunkte wohl noch vor sich hatte."
Rating: 10.0
Sentiment: 0.14242424242424243
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: edge4everwrote on 29.07.2013:[10.0] "Ich mag ihn mehr als Bret Hart leider durfte er nie einen World Title gewinnen R. I. P Owen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Boris The Menacewrote on 20.07.2013:[10.0] "Owen Hart in my opinion will always be the best wrestler to come out of the Hart family and that speaks volume about how great he was."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: test85wrote on 05.06.2013:[8.0] "War was man so hört ein sehr symphatischer Mensch. Im Ring einer der Besten seiner Zeit. Aber aus meiner Sicht kein World Champion. Aber das gewisse Etwas hat meiner Meinung nach gefehlt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Leonewrote on 09.04.2013:[10.0] "An absolutely brilliant wrestler whose career and life ended far, far too soon.  It is debatable as of today when it comes to asking who the best Hart brother was between Bret and Owen - A reality to it is that they're both as good as each other, but different.  In the ring, Owen was a perfect combination of different styles of wrestling, which included Submission wrestling, Amateur wrestling, lucha libre and strong style, and his wrestling experience extends to not just WWE, but New Japan Pro Wrestling, World Of Sport (UK), Mexico and Germany.  On top of this, he had good mic skills and charisma.  Some could argue that he would have been WWE champion at some point if he was still around, and while it might be true that he was in the company during an era were his choices were frowned upon business-wise (Not wanting to do adult storylines, because his kids would be watching, during a time when adult storylines were good for business), it can make us wonder what would have happened differently.  A great wrestler who is as greatly missed."
Rating: 10.0
Sentiment: 0.4022348484848484
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Kaneanitewrote on 10.02.2013:[10.0] "Einer der größten, die es je gegeben hat. Owen Hart stand keineswegs im Schatten seines Bruders, er konnte technisch und auch von der Austrahlung her absolut mithalten. Im Ring hat er immer hervorragende Leistungen gezeigt und er galt ja auch backstage als einer der beliebtesten Wrestler zur damaligen Zeit. Leider konnte er in seiner Karriere nie den größten Titel erringern, was allerdings mit Sicherheit passiert wäre, wäre nicht dieser tragisches Unfall 1999 gewesen. In diesem Sinne: Ruhe in Frieden Owen, wir werden dich nie vergessen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Randy Owrote on 06.02.2013:[10.0] "Owen Hart war genau so Talentiert wie Bret. Seine Schauspielerischen Leistungen waren sogar noch besser. Im Ring konnte er auch mithalten. Es gibt viele so Gute Kämpfe von Owen. Er war leider zur falschen Zeit am falschen Ort. Wenn er 1999 den Stunt überlebt hätte, wäre auch kein WWE Champion mehr geworden. Dazu hat er gar nicht mehr in die damalige WWF rein gepasst. Schade eigentlich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: LM Punkwrote on 30.08.2012:[8.0] "Er ist und bleibt der kleine Bruder von Bret. er hat es nie richtig in den Main-Event geschafft und grosse Titel gewonnen. So bleibt seine karriere unvollendet. Deshalb nur 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Titanwrote on 03.07.2012:[10.0] "Einer der begabtesten Entertainer, die die WWE wohl jemals in ihren Reihen hatte. Technisch gesehen immer einwandfrei, immer mit Herz und Seele dabei und auch was das Erzählen einer Geschichte angeht war Owen Hart immer einer der besten, egal ob es um das Geschehen im Ring geht oder um das verbale Duell. Ich erinner mich gerne an die Brüder-Fehde. Natürlich steht er im Schatten von Bruder Bret Hart, aber nichts destotrotz war Owen irgendwo immer der heimliche Hart-Liebling. Schade, dass er nie einen World Title in der WWF gewinnen konnte. Wenn er nicht so früh von uns gegangen wär, hätte er sicherlich einen prestigeträchtigeren Titel als den IC oder European Championship holen dürfen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: kekslpetewrote on 05.04.2012:[10.0] "Einer der besten Wrestler die es gab und geben wird. Im Ring wohl das nonplusultra und auch am Mic nahezu unschlagbar. Wäre wohl einer der größten Stars geworden... RiP"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Woerpwrote on 08.03.2012:[10.0] "Einer der besten Wrestler der 90er Jahre. Einer meiner All Time Top 5. Als alle für Bret jubelten, habe ich Owen angefeuert. 1994, Owen und sein Bruder lieferten bei Wrestlemania X den besten Opener einer Mania. Als ich den SummerSlam 1994 zum ersten Mal sah und somit Augenzeuge des wahrscheinlich besten Steel Cage Matches aller Zeiten wurde, wollte ich persönlich mit in den Käfig um Bret mit einem Schuh zu verkloppen. Owen Hart ist der beste Wrestler, der nie eine World Title halten durfte; und leider einer der vielen Guten die zu früh gehen mussten."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Rey2004wrote on 07.09.2011:[10.0] "RIP mein liebster Wrestler in diesem Business - Schade, dass du so jung sterben musstest - du warst auf dem Weg der Superstar schlechthin in der Federation zu werden, viele Titelsiege lagen noch vor dir - leider durftest du dies nicht mehr erleben. Man sagt ein Mensch stirbt erst dann, wenn sich keiner mehr an ihn erinnert - Owen du wirst niemals sterben, weil sich immer Leute sehr gerne an dich erinnern!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Er hatte mindestens genauso viel Talent wie sein Bruder! Schauspielerisch und von sachen wie Charisma und Mic Work her fande ich ihn ohne hin besser! Nur leider sahen wir viel zu wenig von ihn da er doch etwas im Schatten von Bret stand... Nach Mr. Perfect der nächste verdiente WWF Champion!"
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Michael Shawn Hickenbottomwrote on 29.07.2011:[10.0] "Zu ihm muss man nichts mehr sagen. Einfach eine klasse für sich selbst, der Bruder des Hitman. Rest in Peace Owen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Donald Duckwrote on 23.06.2011:[5.0] "Owen Hart war für mich nie ein großer Wrestler. Er war einfach grauenhaft am Mic, seine quietschende Stimme hat mich ebenfalls gernevt. Das einzige positive an ihm war, dass er gut im Ring war.. sonst echt gar nichts. Zum Ende war er auch mehr als lächerlich. Nichtmal die Fans hatten Respekt vor ihm und nannten ihn nur "Nugget"."
Rating: 5.0
Sentiment: 0.22727272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: FriarFergusonwrote on 28.04.2011:[10.0] "Völlig zu Unrecht immer im Schatten seines großen Bruders. Mein Gott was für ein Heel, ich muss heute noch über manche seiner Aktionen und Promos schmunzeln. Dazu noch mit starken Matches und guten Aktionen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: C0nspiracywrote on 27.03.2011:[7.0] "Ein grandioser Wrestler den ich für besser als Bret halte, leider hat er nicht das Charisma von seinen älteren Bruder. Seine beste Zeit hatte er als der eifersüchtige kleine bruder von Bret mit den Matches bei WM X & Summerslam 94. Ruhe in Frieden Owen du warst eine bereicherung für die Wrestling Welt die dich eigendlich nicht verdient hat."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: LabronBenoitwrote on 13.01.2011:[10.0] "Einer der Besten überhaupt. Hatte das Glück ihn 1998 noch live zu sehen. Leider viel zu früh von uns gegangen, aus ihm wäre mal ein ganz Großer geworden! Er hätte sicher noch ne Chance auf den World Title bekommen. R. I. P OWEN!"
Rating: 10.0
Sentiment: 0.2130681818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Necronwrote on 05.12.2010:[7.0] "Guter Techniker, keine Frage... ansonsten konnte Owen nie auch nur im Entferntesten an Bret heranreichen. Als Heel im Stile des "beleidigten kleinen Bruder" war Owen natürlich grandios, aber weit über die IC-Szene wäre er meiner Meinung nach nie gekommen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: lagunswrote on 27.11.2010:[9.0] "hat mir als Face im Team mit the Anvil und Koko Wrestlerisch sehr gut gefallen und ist als Heel sogar noch über sich hinaus gewachsen. Wurde zu einem der Interessantesten Heels der damaligen Zeit. Ob er nen Worldtitlerun hätte bekommen MÜSSEN weiss ich nicht, aber ich denke dafür war das Geschäft damals einfach noch nicht schnelllebig genug. Heute wäre er nach dem KotR Sieg sicher schnell nach oben geklettert. Vieleicht wollte man ihn auch nicht über seinen Bruder hieven... Auf jedenFall hat er für die jahre 94-97 Höchstwertungen verdient. Leider hat er ab 97 auch stark nach gelassen. Körperlich wirkte er einfach nicht mehr so fit. Er wirkte im Ring viel schwamiger als vorher und lange nicht mehr so agil. Leider wirkte sein Charakter zu der Zeit auch irgendwie Wischi-Waschi... So Halb Heel-Halb Face und sein Run in der Nation und die anschließende Fehde waren irgendwie so was von halbgar, das es wegen der insgesamt eher kurzen Zeit in der wirklich ALLES gestimmt hat Abzüge geben muss. Also "nur" ne Zwei++++++"
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: reene82wrote on 27.08.2010:[5.0] "Das einzige was ich als postiv erachte war die Fehde gegen seinen Bruder. Sonst eigentlich nur langweilig. Konnte mich nie besonders überzeugen und schon gar nicht unterhalten."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: royalonewrote on 18.08.2010:[10.0] "fand ihn in seinem zweiten run in der wwe als "rocket" doch sehr lächerlich, was ja dann änderte als er der verbitterte, eifersüchtige bruder wurde. die wiedervereinigung dann mit bret gab ihm noch mehr glaubwürdigkeit. sein zu frühes ableben hat mich damls ziemlich mitgenommen. R. I. P."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Ray Robsonwrote on 17.08.2010:[10.0] "Aus meiner Sicht mindestens eine Klasse über Bret. Zwei weitere Jahre und er wäre World Champion gewesen. Er hatte das Charisma, was seinem großen Bruder fehlte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Aesopwrote on 12.08.2010:[10.0] "Ich muss mich dem Hirnklops anschließen Owen war besser als Bret, im Ring war er unterhaltsamer da sein Stil um einiges dynamischer und interessanter als der von Bret war. Ich sehe seine Matches lieber als Brets."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: WrestlingFanDuisburgwrote on 16.07.2010:[10.0] "Owen Hart war ein technisch sehr guter Wrestler. Am Mic in seiner Heelrolle auch gut. Insgesamt schätze ich in von den Ringfähigkeiten ein Stück höher ein als Bret, da sein Moveset größer war. Leider ist Owen Hart viel zu früh verstorben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: morph80wrote on 30.05.2010:[9.0] "Aus ihm wäre wohl ein ganz Großer geworden, ich hätte seine Karriere gespannt verfolgt denn er hatte alles was man als Wrestler braucht ... RIP"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Hirnklopswrote on 24.05.2010:[9.0] "Owen war BESSER als Bret. Sicherlich hatte er nicht den Status seines legendären, wenn auch totlangweiligen Bruders, aber er hatte eine Ausstrahlung und ein Showtalent, welches Bret mindestens ebenbürtig war, und im Ring war er um Welten besser, weil kreativer, impulsiver und emotionaler. Ich werd's nie vergessen, wie er Yoko beim Tag - Title - Gewinn in die Arme sprang und sich wie ein Kind freute... Und das als Heel! Auf jeden Fall besser als Bret, und einer der besten Wrestler aller Zeiten, so viel steht fest."
Rating: 9.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Edge96wrote on 13.05.2010:[10.0] "Technisch gesehen war er genau so gut wie sein Bruder Bret. Sein Tod war natürlich eine riesen Tragödie. Hätte noch ein ganz großer aus ihm werden können. R. I. P."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Y2J Problemwrote on 13.05.2010:[10.0] "Ich glaube nicht, das zu Owen Hart noch irgendwelche Worte verloren werden müssen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: RockerDropperwrote on 10.05.2010:[9.0] "Technisch toller Wrestler, der vom Ringen bis zum High-Flying alles beherrschte; sein Tod war tragisch, umso mehr da der gesamte Blue Blazer/von-der-Decke-abseilen-Kram schon lange keine Sensation mehr war. Zum World Champion wäre er aber nie geeignet gewesen; zu schwach seine Fähigkeiten am Mikro, zu blass als Persönlichkeit. Aber besser so rum als technisch schwach zu sein und am Mikro stark."
Rating: 9.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Eazyewrote on 25.04.2010:[10.0] "Ein leicht ovareteter Superstar was an seinem Tod liegt. War ein guter Techniker der sehr gute Matches auf die Beine stellen konnte. Am Mic auch gut und nebenbei sehr charismatisch. Das alles hätte ihm vielleicht 8-9 Punkte gegeben. Aber ich mochte den Kerl als Mark, egal ob er nun Face oder Heel war, der Kerl war bei mir so over und auch wenn er in der Midcard war war er mir einfach verdammt sympatisch. Deswegen gebe ich auch 10 Punkte. RIP"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: RickRollwrote on 16.04.2010:[10.0] "VIEL VIEL besser als Bret. Bret war im Ring einfach nur langweilig (Langweilig, ich sagte nicht schlecht). Owen dagegen war nie langweilig und konnte immer wieder überzeugen. Ob jetzt in Japan oder in den Staaten das ist egal; Owen war KLAR besser als Bret."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Zizouwrote on 30.03.2010:[10.0] "Großartiger Worker, der leider viel zu früh aus dem Leben schied."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: tibocowrote on 09.03.2010:[10.0] "Er war seit Survivor Series 92 im TagTeam High Energie, mein Liebling"
Rating: 10.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Manu Adamswrote on 16.02.2010:[10.0] "Owen war im Stande eigentlich mit jedem auch noch so schlechtem Wrestler ein ansehnliches Match abzuliefern und genau das ist es was nur eine handvoll können. Lieferte mit Bret Hart die wahrscheinlich beste Rivalität der WWF ab. Definitiv ein Mann, der es verdient gehabt hätte den World Titel zu erringen, schade dass ihm dies durch den tragischen Unfall nicht mehr gelingen konnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Pizzafunghiwrote on 22.01.2010:[10.0] "Die matches gegen seinen Bruder, unvergessen. Sein Tod, eine wirkliche Tragödie. Es ist eine Schande, dass er nie den großen Titel halten durfte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: TheROCKwrote on 22.01.2010:[10.0] "Sollte selbst nur die hälfte von dem Stimmen wie Owen Hart angeblich war, so reicht dies um zu sagen, dass er eins der größten Vorbilder war, die dieses Business je hervorbrachten. Mit seinem Sieg über seinen Bruder bei WrestleMania 10 war er für mich wie ein World Champion. Leider sollte er diesen Titel nie wirklich gewinnen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: ShakDragoonwrote on 19.01.2010:[10.0] "Großartiger Wrestler, der leider viel zu früh sein Leben lassen musst. R. I. P."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Mizisawesomewrote on 14.01.2010:[10.0] "Owen Hart war und ist einer meiner Lieblingswrestler. Er war technisch absolut herrausragend, hatte einen extrem unterhaltsamen Stil und im Mic-Work war er auch klasse. Wieder eines meiner Vorbilder"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Brooklyn Brawler 1985wrote on 20.12.2009:[10.0] "Obwohl er nie den World Title holte und lange im Schatten seines Bruders stand, seh ich ihn doch auf einer Stufe mit dem Hitman: technisch waren sie auf einem Niveau, und am Mic war Owen definitiv der Bessere!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: downtown2wrote on 15.12.2009:[8.0] "Owen Hart werde ich nicht aufgrund seines tragischen Todessturzes 10 Punkte geben, dass wäre eine Beleidigung. Owen war ein aufregender High Flyer, gerade für seine Zeit und hatte in seiner Karriere tolle Fehden. Er hatte eine sehr positive Ausstrahlung, funktionierte als Heel genauso gut, wie als Face. Aber er war auch deutlich schlechter im Gesamten als sein Bruder Bret, dem Vergleich muss er sich stellen. Er war kein Main Event Mann und wäre es vermutlich nie geworden, schon allein, weil er über die Jahre körperlich stark abbaute. Er wirkte zuletzt sehr schwerfällig im Ring und sein Stern schien mit dem Verschwinden seines Bruders langsam zu sinken. Man kann ihm aber nicht vorwerfen, nicht alles rausgeholt zu haben und sets alles gegeben zu haben. Eine gute Bewertung für einen wirklich Guten seiner Zunft."
Rating: 8.0
Sentiment: 0.08848484848484849
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Burzi1wrote on 21.10.2009:[8.0] "Er war ein klasse Wrestler und auch am Mic nicht gerade schlecht. Für mich war er äußerst sympathisch."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Hit Manwrote on 21.10.2009:[8.0] "Leider aufgrund eines völlig unnötigen Unglücks zu früh verstorben. Hätte noch viel erreichen können, super Techniker."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Matt Mackswrote on 23.09.2009:[9.0] "Owen war in der Tat der erste Wrestler, den ich gesehen habe, damals 1993 bei einer WWF Challenge Sendung gegen irgendeinen Jobber. Ein guter Techniker und eine charismatische Persönlichkeit, der es leider nie ganz aus dem Schatten seines Bruders Bret geschafft hat... und dem in einem der tragischsten Momente des Wrestlings die Chance dazu genommen wurde."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: SweetMetalMusicwrote on 26.07.2009:[10.0] "Ein super Wrestler. Konnte so gut wie alles. War auch ein Top Heel. Leider viel zu früh und absolut unnötig verstorben. R. i. P. Owen!"
Rating: 10.0
Sentiment: 0.47916666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: 108 Sternewrote on 24.07.2009:[9.0] "Fantastischer Wrestler, jedoch nicht besonders charismatisch."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: gerybundy68wrote on 22.07.2009:[6.0] "Ohne Zweifelm, ein sehr guter Wrestler, um den auf Grund seines zu frühen Todes und den Namen Hart aber eine Art Mythos entsteht , den ich für übertrieben halte."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Butzelchenwrote on 18.06.2009:[9.0] "Als Fiesling und "B"-Hart (hinter Bret) absolut hervorragend!  Extra Lob: er verließ in der schwierigen WWF/WWE Phase nicht die Liga in Richtung WCW (im Vergleich zu ettlichen anderen). Nur die Besten sterben jung! RIP!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Eddiewrote on 03.06.2009:[8.0] "Einer derjenigen, die noch gut 10-15 Jahre länger hätten im Ring stehen können, ohne diese Tragödie, nichts desto trotz ein sehr genialer Wrestler, doch schon noch klar hinter seinem Bruder anzusiedeln, 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The-Game91wrote on 06.05.2009:[9.0] "Er war mit Talent geprägt schade das er schon so früh von uns gegangen ist"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: manager1977wrote on 07.04.2009:[9.0] "Als Tag Team-Wrestler am Anfang seiner WWF-Zeit verheizt, durfte er als Single-Wrestler zeigen was er drauf hatte. Leider viel zu früh verstorben. RIP Owen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: BaptisteZorGwrote on 29.01.2009:[8.0] "Von manchen durch den tragischen tod sicher etwas overrated, von anderen aufgrund dessen underrated.. Ich denke ne 8 wird Ihm gerecht, da er ein solider wrestler war. Im Ring sah er richtig gut aus, am Mic offenbarte er einige schwächen und das Charisma von Bret hatte er auch nicht ganz."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Blazewrote on 05.01.2009:[8.0] "War zwar in seiner Karriere nie der World Champ und Main Eventer, aber das wäre sicherlich noch gekommen. Im Ring gefiel er mir durch seinen schnellen Stil noch um einiges besser als Bret und das ganze WWF Roster, mit Ausnahme von Shawn Michaels. Genial wie er gewrestlet hat, wobei man wieder die Einflüsse von Dynamite Kid merkte. Die Fehde der beiden Brüder gegeneinander wird wohl auch unvergessen bleiben. Laut Chris Jericho wollte er ja nur noch ein paar Jahre im Buiz bleiben, aber ich bin sicher, dass der King of Harts ein ganz großer geworden wäre. Kommt zwar vom Mic Work nicht an seinen Bruder ran, hat dennoch einen großen Teil für's Wrestling in den Staaten getan."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: TRIPLEH2008wrote on 25.11.2008:[10.0] "War ein technisch guter und sympatischer Wrestler, leider viel zu früh von uns gegangen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: El Reywrote on 07.10.2008:[10.0] "Der mit Abstand talentierteste Worker den die WWE jemals hatte. Technisch wohl der beste... noch einen Tick besser als Mr. Perfect oder Bret Hart. Leider viel zu früh verstorben. Hall of Fame kommt sicher bald... muss kommen."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Theron083wrote on 21.09.2008:[9.0] "Oh man, was hätte für ein Top-Heel und überhaupt was für eine Legende aus ihm werden können. Ich wette er wäre heute ein Urgestein wie ein Shawn Michaels wenn er noch leben würde."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Wise Warriorwrote on 16.09.2008:[7.0] "Guter Storyteller im Ring. Zum Solo Main-Eventer fehlte ihm aber etwas der rechte Biss und die Promo-Fähigkeiten."
Rating: 7.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Baszdmegwrote on 05.09.2008:[10.0] "In Brets Schatten, auch wenn ich Owen in fast sämtlichen Kategorien bevorzuge. Klasse Wrestler mit einem unfassbar tragischen Ende... wer weiß, wo er heute wäre?"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: King of Queenswrote on 31.07.2008:[9.0] "Einfach nur ein genialer Wrestler mit großartigen Klassikern. Zwar war er vom Gimmick her seinem Bruder Bret unterlegen, doch sind sie bei der Arbeit im Ring fast gleich auf."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Mathias Rekaschwrote on 31.07.2008:[10.0] "Leider viel zu früh verstorben. In meinen Augen der bessere der Hart Brüder, die bei WWE aktiv waren. Owen hatte neben seinen tollen In-Ring Fähigkeiten, die ihm zum Teil familiär schon in die Wiege gelegt und zum anderen Teil durch seine Brüder und seinen Vater noch antrainiert wurden, einfach eine grandiose Ausstrahlung. Vor allem die Rolle des neidischen Bruders hat er perfekt gespielt, aber auch seine späteren Heelrollen waren einfach toll. Hätte er länger leben dürfen, wären ihm sicher noch einige Heavyweight Title bei WWE quasi "zugeflogen". Ehre wem Ehre gebührt. R. I. P."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Lokfanwrote on 29.07.2008:[10.0] "Sehr guter Wrestler den ich immer gerne gesehen habe und es mich freute wenn er Bret eins auswischen konnte, only the good die young!"
Rating: 10.0
Sentiment: 0.27499999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Exist 2 Inspirewrote on 27.07.2008:[10.0] "Toller Wrestler mit viel Ausstrahlung und toll im Ring, viel zu früh verstorben"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Jeff Hardy Fanwrote on 26.07.2008:[9.0] "Einfach klasse wrestler der hats auch mal verdient in ein SvR game als legende mit zu machen ^^"
Rating: 9.0
Sentiment: -0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: finsterwegwrote on 18.07.2008:[6.0] "Ich weiß nicht warum alle sagen Gott war er Gut, klar ein perfekter Werstler aber ich glaube bei vielen spielt der mythos um ihn eine Rolle, ihm fehlte etwas was mich persönlich überzeugt hätte, ich sah in ihm ewig der versuch ein2ter Bret zu sein und das hatte er einfach nicht drauf.. meine Meinung.."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Frutzwrote on 06.06.2008:[9.0] "Ich habe ihn das erste Mal im Team mit Jim Neidhart und kurz danach zusammen mit Koko B. Ware gesehen. Technisch gehörte er zum Besten was die WWF zu bieten hatte, aber íhm selbst konnte ich wenig abgewinnen. Dies änderte sich erst, als der Neid auf seinen Bruder immer weiter zunahm und sich daraus eine wunderbar, emotionale Fehde entwickelte, in deren Schatten Owen einen gewaltigen Sprung nach vorn machte. Danach war er aus den oberen Bereichen der Midcard nicht mehr wegzudenken und es wäre sicher nur eine Frage der Zeit gewesen, bis er es nach ganz oben geschafft hätte. Leider hat sein tragisches Ende ihn viel zu früh aus dem Leben gerissen. RIP"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Mediwrote on 28.05.2008:[6.0] "Habe niemals ganz verstanden warum so viele Leute ihn für so gut hielten. Also versteht mich jetzt bitte nicht falsch, denn Technik hatte und und sein Move-Arsenal konnte sich auch sehen lassen, aber am Charisma hat es in meinen Augen deutlich gefehlt. Ich werde wohl nie den Hype um ihn verstehen, auch wenn mir sein Tod natürlich sehr leid tut, doch das macht ihn für mich nicht besser."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Champwrote on 17.05.2008:[10.0] "Er ist viel zu früh von uns gegangen. RIP Owen. Schade, das er nie World Champ werden durfte. Hätte es noch dazu bringen können, das Zeug dazu hatte er."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Mountiewrote on 15.05.2008:[9.0] "Ich habe selten jemanden gesehen, der sich charisma- und micworktechnisch so rasend entwickelt hat wie Owen 1994. Der Mann war einfach eine Offenbarung in seiner Rolle als verbitterter Giftzwerg. Schade, dass er nie die Chance bekommen hat, mal das große Gold zu tragen, ehe es mit ihm so ein tragisches Ende nahm."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Know Nothingwrote on 23.04.2008:[10.0] "Für mich ein genialer Techniker. Teilweise sogar besser als sein Bruder. Schade das er immer im Schatten des grossen Bruders gestanden hat. Als Bösewicht war er einfach genial!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Pulpulwrote on 07.04.2008:[8.0] "Unglaublich tragische Geschichte, die sich um Owen Hart abgespielt hat. Er war wahnsinnig talentiert, hatte die nötige Portion Charisma um es in der WWF ganz an die Spitze zu schaffen. Als seine Zeit jedoch hätte anbrechen können, passierte das, was ich zu einem der tragischsten Momente im Wrestling zählen würde. Unfassbar Schade, unfassbar traurig."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: TobyHahnwrote on 20.03.2008:[10.0] "Owen Hart, Wrestler von 1. Klasse. Ich hätte ihn gerne mal gegen Eddie Guerrero oder Rey Mysterio im Ring gesehen, schade mit 34 viel viel zu Früh von der Wrestling Bühne gegangen, aber sein Tot ist schon Besonders, ein Mann der von Geburt an mit Wrestling Tief verbunden ist stirbt Ausgerechnet im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: DonTwrote on 17.03.2008:[10.0] "RIP! Ein großer Verlust - sowohl als Mensch als auch als Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Instant Classicwrote on 14.03.2008:[10.0] "Der bessere der beiden Hart Brüder. War ein fantastischer Wrestler mit viel Charisma. Schade, dass er es nie zum WWE Champ gebracht hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: DrBreswrote on 12.03.2008:[10.0] "Die Fehde zwischen ihm und seinen Bruder Bret war für mich als Mark so ziemlich die Packenste, die die WWF damals zu bieten hatte. Extrem charismatisch, noch charismatischer als sein Bruder, die Technik hat er mit in die Wiege gelegt bekommen. Der man hätte uns noch so einige Zeit extremst bereichern können."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: DirtiestPlayerwrote on 03.03.2008:[10.0] "Spitzen-Techniker. Super vor allem die Fehde mit seinem Bruder Bret. Gefiel mir vor allem als Heel sehr gut. Wäre heute sicherlich ein besserer Heel-Champ als z. B. ein Randy Orton."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: jimpanse1980wrote on 24.01.2008:[8.0] "Es ist leider sehr spekulativ herauszufinden, was Owen noch erreicht hätte, wenn es diesen tragischen Unfall nicht gegeben hätte. Sicher stand er im Schatten von Bret und war daher immer nur die Nr. 2. In der sog. Bruderfehde hat er sich zu einem Top-Heel entwickelt. Zu den athletischen Fähigkeiten brauche ich ja nichts zu sagen. Aber ohne diese Fehde resp. nach dem Weggang von Bret hat stagnierten doch seine Leistungen, wenn auch auf sehr hohem Niveau."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: The Showstopperwrote on 16.01.2008:[10.0] "Hat zwei der wichtigsten und besten Matches 1994 bestritten und wurde dadurch von einem unbedeutenden Midcarder zu einem der Topheels der Liga. Auch danach fast immer in mehr oder weniger bedeutenden Rollen unterwegs, aber zum großen Titelpush hat es leider nie gereicht. Trotzdem ein Star der 90er, der viel zu früh von uns gegangen ist."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: mdbnasewrote on 13.01.2008:[10.0] "Mochte ihn als Typ zwar nicht so richtig, aber was er im Ring gezeigt hat war phänomenal. Die Fehde gegen Bret war fast die Beste die es in der WWF/E je gab. Perfekter Techniker und im Ring unglaublich überzeugend. Tragisches Ende, das er nicht verdient hat, ihn jedoch "unsterblich" macht!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Brahma Bullwrote on 04.01.2008:[10.0] "The King of Harts-naja, nicht ganz, Bret war einen Tick besser als Owen. Owen war aber einer der besten Techniker aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: MA Excellentwrote on 29.12.2007:[8.0] "Owen Hart ist der erste Todesfall eines Wrestlers, den ich bewusst mitbekommen habe. Mir tat es damals (und eigentlich auch noch heute) sehr leid für die Familie, da gerade die Familienwerte bei den Harts immer sehr heraus stachen. Im Ring reichte er m. M. n. nicht ganz an Bret heran, was aber trotzdem bedeutet, dass er ein Top-Wrestler war. Auch fallen mir nicht viele Storylines an, die mit Bret blieb wirklich in Erinnerung. Für seinen Wagemut, seine Professionalität und Loyalität eine klare 2."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Wuschl 85wrote on 24.12.2007:[8.0] "Musste leider viel zu früh gehen. Hätte mit Sicherheit noch Großes erreicht. Einer der besten Techniker und Micworker. Verkörperte vor allem seine Rolle als Heel nahezu perfekt. Ein sehr großer Verlust für die Wrestlingwelt aber auch für die Mitmenschen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Pinguwrote on 06.11.2007:[4.0] "Ich konnte ihn als Giftzwerg nie sonderlich leiden. War aber damals auch erst 10 Jahre alt, also von da her hat das sicher damit zu tun - muss mir mal die alten Videos ansehen und Erinnerungen auffrischen!"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: CM Dannywrote on 01.11.2007:[10.0] "Zuerst sah ich ihn als Teil von "High Energy" mit Koko B. Ware. Dann war er "The Rocket". Bei der Survivor Series 1993 dann seine Sternstunde. Die Fehde mit Bret begann und endlich konnte er zeigen was er drauf hat. Schnell war er mit Bret auf Augenhöhe. So beliebt Bret war, so unbeliebt war der "King of Harts". Zuletzt wirkte er in der WWF jedoch etwas verloren. Schade dass er so früh von uns ging. Er bleibt unvergessen."
Rating: 10.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: antihiphop2002wrote on 29.10.2007:[8.0] "Sicherlich genial im Ring und sein micwork war auch ganz passabel. Hatte aber soweit ich mich erinnern kann nur einen Gesichtsausdruck und nur wenig Charisma."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Excellence of Executionwrote on 29.10.2007:[10.0] "Ein ganz klarer Kandidat für die eins! Technisch war er unglaublich versiert und zu dem in der Lage, gutes High Flying/Luchador-Wrestling sowie überzeugendes Mat Wrestling zu liefern. Seine Matches in Japan gegen Jushin Lyger sind absolout sehenswert! Ein Jammer, dass er so sterben musste...... R. I. P. Owen!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: FLICFLACFOREVERwrote on 26.10.2007:[10.0] "Einer meiner absoluten Lieblingswresteler in den 90ziger. Hätte wenn er nicht gestorben wäre seinen großen Bruder in den Schatten stellen können. wäre heute in ganz großer, davon bin ich überzeugt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: jayem187wrote on 26.10.2007:[10.0] "Der kleine Bruder der nie besser sein durfte als sein grosser Bruder "Bret Hart". Absoluter Top-Techniker der auch am Mic zu begeistern wusste. Leider sind mit ihm auch einige Innovationen "dahin". Er hätte dem Wrestling garantiert noch die eine oder andere "Krone" aufgesetzt.  I miss you Owen! R. I. P"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: ghostwrote on 25.10.2007:[10.0] "Wäre sicher einer der wichtigsten Wrestler zur Zeit - Grosser Respekt für seine Leistungen. Hatte auch schon als Blue Blazer für einen Impact gesorgt. Klasse Heel, noch etwas mehr Schauspieltalent als sein Bruder Bret würde ich sagen. Eine Wrestling-Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: HHH-Stephwrote on 12.10.2007:[10.0] "Er war auf jeden Fall einer der Besten. Als Heel 94/95 und auch 97 in der Hart foundation sehr unterhaltsam. Er war mit genauso viel Talent gesegnet wie sein Bruder."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Peisistratoswrote on 04.10.2007:[10.0] "Er scheint mir nicht nur ein Wrestler mit herausragenden technischen Fähigkeiten gewesen zu sein, sondern auch ein sehr sympathischer Zeitgenosse, zumidest wenn man all den Berichten trauen kann. Sein Tod war wohl nicht nur für mich ein Schock. Eins mit Sternchen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Manuelwrote on 28.09.2007:[10.0] "Er hatte nie eine richtige Chance um den WWF Titel. Einer der Weltbesten Techniker. R. I. P Owen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Mick Funkwrote on 10.09.2007:[10.0] "Sehr guter Wrestler. Hat mich auch immer besser unterhalten als der Bruder."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: sebigentnerwrote on 02.09.2007:[6.0] "guter Wrestler, mochte ihn aber sonst nix wirklich"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: jerseyhoolwrote on 24.08.2007:[10.0] "phänomenaler techniker, der beste main-event-heel aller zeiten, 2 phantastische matches in kurzer zeit (WM X, summerslam '94) - der mann war eine wucht! dass er dem sport so früh genommen wurde, ist mit chris benoit der schmerzlichste verlust aller zeiten! R. I. P. !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: D3adm4nwrote on 06.08.2007:[10.0] "Er hatte das Zeug, ein ganz Großer zu werden, eigentlich war er es schon, seit der berühmten Brüder Fehde mit Bret. Ist leider nicht so recht aus dessen Schatten gekommen. Viel zu früh von uns gegangen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Trevedaswrote on 23.07.2007:[10.0] "Ein weiterer klasse Worker, der viel zu früh verstorben ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: real americanwrote on 12.07.2007:[10.0] "Toller Wrestler und Entertainer der leider imeer die zweite Geige hinter Bret spielen musste. Er hätte es verdient gehabt einen Run als Worldchampion zu bekommen aber leider wurde ihm die Chance dazu wegen dem schrecklichen Unfall genommen. R. I. P. Owen!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Sandman16wrote on 07.07.2007:[10.0] "Owen war ein exzellenter Techniker, der damals schon Aktionen gezeigt hat, die man ganz selten gesehen hat. Auch am Mikrofon war er richtig stark. Dazu verfügte er noch über Charisma, was ihn so zu einen guten Gesamtpaket gemacht hat."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: ShaneOwrote on 29.06.2007:[8.0] "King of Hearts - nicht wirklich. Aber er was ein sehr, sehr starker Worker. Hätte es sicherlich zum World Champ geschafft."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Adrammelechwrote on 24.06.2007:[6.0] "Diese Beurteilung gebe ich ab ohne mich davon beeinflussen zu lassen das Owen Hart bei einem Unfall ums Leben kam. Für mich war er nicht schlecht aber auch nich sympatisch und überzeugend. Ausser Frage, sein früher tragischer Tod ist eine Tragödie für den Profisport!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Der Wrestler des Jahres 1994 neben seinem Bruder! Ansonsten einer der unterbewertetsten Wrestler, die es je gab. Im Ring immer sehr ansehnlich und überhaupt ein super sympathischer Typ! RIP Owen"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Mr Lovewrote on 24.06.2007:[8.0] "Er war sicher nie so gut wie sein Bruder Bret Hart, war aber trotzdem ein guter Wrestler mit sehr viel Charisma und guten Ringskills, der seine Matches auch immer gut verkaufte. Owen Hart ist leider viel zu früh gestorben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Einer der ganz Großen ... der von uns gegangen ist ... Schade ... R. I. P!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: wrestler of the worldwrote on 24.06.2007:[10.0] "Er war ein sehr guter Wrestler, ist leider zu früh von uns gegangen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: WCWlerwrote on 24.06.2007:[10.0] "Sehr guter Wrestler der durch einen unsinnigen Stunt den Tod fand. Hätte sicher noch viel erreicht...."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Smi-48wrote on 24.06.2007:[10.0] "Besser als 'The Mountie' kann ich es hier nicht formulieren. Dieser Mann fehlt dem Business an allen Ecken und Enden !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: jupp365wrote on 24.06.2007:[10.0] "Owen war der agilere Hart. Vielleicht war er auch der bessere Entertainer. Leider kann man das nicht so ganz beurteilen, weil er zu früh aus dem Leben gerissen wurde. Er hätte Brets Rekorde schlagen können. Leider ist es nicht dazu gekommen. Jedenfalls war Owen ein ganz großer. Ruhe in Frieden Owen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: timbo7111wrote on 24.06.2007:[10.0] "Als Face konturlosig und langweilig, als Heel jedoch mehr als genial. Unvergessen sein Sieg gegen Bret bei WM X. Technisch sowieso unantastbar. Owen standen noch alle Türen offen, er wäre einer der Topstars geworden und hätte auch den Championtitel getragen. R. I. P. , Owen. We'll miss you!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: BMwrote on 24.06.2007:[10.0] "Owen war einfach genial. Ich fand seine Moves im Ring auch besser, als die von Bret z. B. Leider wurde er aber immer von seinem Bruder überschattet. Owen habe ich immer gerne gesehen... R. I. P."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Garvinwrote on 24.06.2007:[10.0] "Er gefiel mir sogar immer besser als sein Bruder Bret. Als Heel kam er weltklasse rüber, seine Wrestling-Skills muss ich wohl nicht erwähnen. Leider kam er nie über den Schatten von Bret Hart hinaus, obwohl er es sich verdient gehabt hätte. Er wäre wohl zur lebenden Legende aufgestiegen, wenn er nicht diesen tragischen Unfall gehabt hätte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: DrPymwrote on 24.06.2007:[10.0] "Meine Damen und Herren, verneigen wir uns zu einer stillen Gedenkminute an das wohl beste Highflying/Techniker/Entertainer-Genie des letzten Jahrzehnts. Es tut mir nach wie vor weh, Videos mit ihm zu sehen, da ich ein großer Fan von ihm bin und ich es immer noch schade finde, dass er nicht mehr da ist... Du magst gestorben sein, doch in unseren gedanken bist Du für immer... R. I. P. Owen Hart!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Carsteinwrote on 24.06.2007:[10.0] "Heavyweight Champion Material... Total Package und der beste der Harts... leider underrated und zu früh verstorben"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Hypocrisywrote on 24.06.2007:[8.0] "Wahrscheinlich war es halt doch sein Bruder Bret, der alleine durch seine Präsenz einen stärkeren Push Owens verhindert hat. Die Fehde der beiden gegeneinander war sensationell; erst der wochenlange Aufbau, erste Streitereien, die Versöhnung und schließlich der große Knall. Perfekt. Warum ist so etwas heute nicht mehr möglich?"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: ABoyenswrote on 24.06.2007:[8.0] "Wenn man sich heute alte Videos der WWF ansieht und dann die aktuellen Tapes wird einem erst richtig bewusst wie sehr Owen fehlt. Er war einer der technisch besten Wrestler seiner Zeit und ein Entertainment-Talent großer Klasse - und er bleibt immer der "King of H(e)arts"!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: Dave525wrote on 24.06.2007:[10.0] "Für mich ist er sicherlich einer der besten Wrestler, die ich je in meinem Leben gesehen habe. Er steht sowohl vom Wrestlerischen als auch vom Entertainment-Faktor noch ein bisschen über seinen schon genialen Bruder Bret."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=277&gimmick=Owen+Hart
Comment: asdwrote on 24.06.2007:[10.0] "Großartiger Wrestler, leider zu früh gestorben. Man kann aber noch hinzufügen, dass er auch in der WCW war, wenn auch nur kurz."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: wesstott1987wrote on 30.01.2025:"Kevin is a treasure in ring and on the mic. the fact he hasn't held a singles championship in so long is a travesty. Truly hope that changes soon!"
Rating: No rating found
Sentiment: -0.0625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: bigredtalk89wrote on 27.01.2025:[7.0] "KO is hard to dislike, but is missing that extra something to make him truly feel like a top star. A solid hand that can be slid into the main event at anytime, but often gets lost in the shuffle. Promo skills are above average, and I love his matches, but he will never have the look of a top star"
Rating: 7.0
Sentiment: 0.1025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JoshiSupremacywrote on 20.01.2025:[10.0] "Best talker in the company; fantastic in the ring, can work with anyone and be in any position in the card"
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MEDaminewrote on 05.01.2025:[10.0] "One of the best Wrestler in WWE, and also in the world, I don't think there is anyone in WWE who can do what KO does, even if you put KO against a trashcan, he will carry it to a good feud and matches, because of how he gives all his power in his programs, he's my pick to dethrone Cody."
Rating: 10.0
Sentiment: 0.85
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Jonwresrling8wrote on 20.12.2024:"(10) one of the most consistent wrestles of all time in my opionuon. This guy is great in ring, great on the mic. He's doing some of the best work of his career right now"
Rating: No rating found
Sentiment: 0.6059523809523809
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Fuzzywobbleswrote on 03.12.2024:"[6.0] I like to rate wrestlers on three criteria. Wrestling ability, promo skills, look/charisma. I rate him an eight on wrestling ability, as he can have a good match with just about anyone. I also rate his promo skills at an eight since he can cut great promos when needed. However, I have to grade him a one in the third category as he looks like a regular guy walking down the street and doesn't look like a real threat compared to the rest of the roster. After averaging the numbers and rounding them up, it comes to a rating of six. I don't see this number improving anytime soon with this career slowing down, but I hope he proves me wrong."
Rating: No rating found
Sentiment: 0.13209876543209875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: AceHagannwrote on 26.11.2024:[9.0] "Witty promos, heartfelt speeches, big matches, memorable moments. Owens has all of them. A brilliant worker that stands out even amidst groups of talented people. You can always count on Kevin Owens giving a good match."
Rating: 9.0
Sentiment: 0.4714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Khalid Acewrote on 14.11.2024:[6.0] "Kevin Owens is actually one of the most entertaining wrestlers this company ever had to offer. He's great on the mic and solid in the ring but lately he wasn't putting up those performances he used to have that's why I am lowering his rating but he's great."
Rating: 6.0
Sentiment: 0.32857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Fejerskovwrote on 08.11.2024:[10.0] "He is one of my absolute favourite wrestler, a hard worker and I love his whole meta persona watching the show, and he is just a genius in- and outside the ring."
Rating: 10.0
Sentiment: 0.12166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: CatboyMathuswrote on 27.10.2024:[10.0] "He's one of the greatest of all times. There's no way you'd seriously rate this guy less than an 8. This dude has classics since idk maybe 2006 ? This is insane. He did so much, his feud against Sami Zayn might be the best "best friends/enemies" feud of all times, his run in PWG was exceptionnal, his ROH classic catalog is exceptionnal, his NXT run was good (maybe the worst part of his carreer) but helped him getting the best main roster callup of all times. He had multiple great title reigns, a feud with Styles that I love, the Jericho feud too, his world title reign was cool (until the end), all the way to his WRESTLEMANIA MAIN EVENTS 2 YEARS IN A ROW ? A match against Stone Cold Steve Austin ? And he still goes today with the most creative heel turn I've ever seen against Cody Rhodes. This is tremendous stuff, you could watch one of his incredible match a day EASILY for a year, he is extraordinary. Love you Kevin"
Rating: 10.0
Sentiment: 0.298
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JackBurtonsTruckwrote on 23.10.2024:[8.0] "Likable and solid on the mic. Great in ring abilities. He isnt a draw for me, but I cant knock his talent."
Rating: 8.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Willie 19200wrote on 21.10.2024:[10.0] "KO is a guy who every company should strive to have signed and wrestlers should aspire to be. Kevin has an amazing in-ring style and very passionate and honest promos. Him as a face is awesome and amazing work, but his heel work should be studied. From Kevin Steen to his long rivalry with Sami Zayn. Overall amazing wrestler who deserves only positive reactions."
Rating: 10.0
Sentiment: 0.3512272727272728
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TripleCrownwrote on 07.10.2024:[8.0] "Was a fan of him ever since he was Kevin Steen in ROH. Even back then, you just knew this guy was special. Around that time, I never would have believed you if you said he'd be in WWE someday, let alone a world champion there. But here we are, as Kevin Owens, he has just excelled in the promotion and really taken his career to heights a lot of people could never have imagined. He's a very good promo, very good in-ring, his actual apperance is... eh, he's unique in that respect so you can't exactly hold his attire and such against him. The only negative against him, is that he can never be 100% babyface. He is just one of those guys who is a natural at being a heel. Putting him with Sami Zayn is one way of making him a babyface, I suppose. But that usually ends with Owens turning on Zayn, so a lot of people have that in the back of their mind whenever they're together. Had a great run in ROH, great run in WWE, feel like he's reached the point where there's nothing else really he can accomplish there. Had a very good match against Austin at WrestleMania, so in my opinion he has peaked as a performer in WWE. Can't really rate him other than a strong 8 because he's not the best wrestler of his generation, but he's a very good one and will be talked about for years to come."
Rating: 8.0
Sentiment: 0.3339337474120083
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Galmondiwrote on 22.09.2024:[9.0] "Maybe the smarted wrestler on the planet lol? In the sense that his character is very logical and smart. Wrestling can be simple sometimes, you just have to watch the show, and his character actually watch the show contrary to everyone else lol. He's also an incredible worker. I don't know what he's better at : In ring or on the mic? That should tell you everything."
Rating: 9.0
Sentiment: 0.44241071428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: sKiaWeVwrote on 17.09.2024:[9.0] "Kevin Owens is much like Sami Zayn in more ways than the obvious. No matter what, I always underrate them but as soon as they are given the slightest moment to shine, they steal the show. For Kevin Owens, this is best done when he leans towards being a heel. He can still play a great babyface I just don't really like his stunner. A joy to watch in the ring and I thoroughly love hearing them talk whether it be in a match or on the mic."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: jsbortswrote on 08.09.2024:[9.0] "KO is incredible on the mic, a genuinely good worker, has a great mind for putting matches together, and has put on some all time greats particularly in ROH. Wish he had the chance to put on some better matches with some great workers over his WWE tenure, but he's been able to produce really good TV, memorable feuds, and some fantastic matches."
Rating: 9.0
Sentiment: 0.5966666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Enchantiumwrote on 30.08.2024:[8.0] "Kevin Owens is a very smart wrestler; he wrestles with intent and works well with every single style imaginable. He has been quite underutilised over the recent years, but the fans have never once not enjoyed anything he has partake in. A perfect candidate for a crowd worker. His promos are very good and always have those snarky digs that tend to go viral. He is preferably a better heel than face, in my opinion. Enjoyable to watch."
Rating: 8.0
Sentiment: 0.3583928571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Joe907wrote on 25.08.2024:[10.0] "One of the best wreslters for his size. KO is very entertaining. On the indies or any WWE show, Kevin will give it his all in the ring. He can work babyface or heel and does great in either role. His promos are great too. Total package"
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Odinohkawrote on 18.08.2024:[8.0] "Kevin Owen is one of those rare people who can make any storyline believable and interesting, even the strangest, blandest or silliest. He knows exactly how to interact with the audience and has the gift of making crowds react, whether he's face or heel. His promos are always controlled and accurate. His in-ring is diversified, he knows how to take risks in the moments that deserve it and gives of himself. Despite some incredible matches and moments, his movepool and match writing are often limited, despite some compelling stories. Kevin has earned his successes and would surely deserve more, given his solid construction despite his long absence from the title scene. He's always entertaining, both outside and inside the ring, and that's an important element for the company. I'm sorry, though, that he's so grumpy and grouchy, especially in his non-kayfabe interviews."
Rating: 8.0
Sentiment: 0.2453373015873016
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Chosen Onewrote on 02.08.2024:"Ich mag ihn als Face tatsächlich mehr als als Heel. Er ist eine Art Everyman, aber trotzdem auch ein Badass. Der Stunner als Finisher gefällt mir auch besser als die Pop-Up Powerbomb. Aber ein Stone Cold Steve Austin ist er dann doch nicht."
Rating: No rating found
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: HBK16wrote on 01.08.2024:[6.0] "He's ok. Liked him as a heel a lot more. Boring face, hated his temper tantrum character a few years ago cringe asf. Good wrestler, dont like the stunner added to his arsenal. Mic skills good. Not very many iconic moments or 5 star matches that jump at you."
Rating: 6.0
Sentiment: 0.12076923076923077
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: namisuzwrote on 30.07.2024:[9.0] "Kevin Owens is a remarkable performer with a unique blend of charisma, in-ring skill, and versatility. His ability to deliver compelling promos and create engaging storylines sets him apart. Owens matches are often characterized by their hard-hitting style and emotional intensity, reflecting his deep understanding of wrestling psychology. However, his tendency to occasionally rely on the same spots or sequences can make some of his matches feel predictable. While his promos are usually strong, there are moments when his character development could benefit from more nuance or variety. Overall, Owens remains an exceptional talent, and his contributions to wrestling are substantial. With a few adjustments, he could elevate his already impressive career to even greater heights."
Rating: 9.0
Sentiment: 0.2828125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: XNoWayKemoSabeXwrote on 24.07.2024:[9.0] "I've only recently got back into wrestling so I missed a lot of KO's stuff, but from what I have seen currently and from various clips KO is going down as one of the greats. Great in-ring work, and great mic work just a great dude in general. I've only seen his face run, but from clips of his heel run dude is amazing."
Rating: 9.0
Sentiment: 0.2412037037037037
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JediSaiyanMaster1203wrote on 13.07.2024:[9.0] "Here we have a guy who was told he was "never gonna make it to the big leagues" for his size and now look at him, those people are eating their words. This man went from competing in front of 200+ in Ring of Honor, to main eventing WrestleMania in a tag team match for crying out loud in 2023 in front of 67, 000+ screaming fans cheering him and Sami Zayn on. Kevin Owens is a great worker (so good that Hulk Hogan likes him and has made up the lie that he was "the first to see Kevin's potential" LOL! ), he has everything from in ring ability, storytelling, playing the role of a heel and babyface, promo ability, can do great in tag teams, singles, what more can you ask?"
Rating: 9.0
Sentiment: 0.3742424242424242
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MarkMcMarkington2wrote on 02.05.2024:[9.0] "Great in the ring, very good on the mic, and is deceptively athletic for his size. I was shocked when I saw him wrestle for the first time. I think he deserves another world title run. His stuff with Jericho was great."
Rating: 9.0
Sentiment: 0.41200000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Aliquickkwrote on 14.04.2024:[10.0] "One of the best wrestlers I've ever seen. An athletic freak for his size and ability, a dream move set that's creative, a style that is adaptive in any type of match, and entertaining in every way. Kevin Owens or (Steen) is probably a top 10 in-ring talent of all-time when you factor in the aforementioned groupings, and how he helped revive WWE in this new boom era. His WM39 match with Sami Zayn is a top 10 WM match of all-time and one of those rare matches and memories that bring the kid out in you and make you emotional. Can't say good enough things, but I'll end it with this: he's such a great wrestler that Stone Cold came out of retirement for one more match and gifted him the Stunner."
Rating: 10.0
Sentiment: 0.33352272727272725
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BMWrestling17wrote on 07.04.2024:[9.0] "Unlike his best friend, Sami Zayn, Kevin Steen "Owens" is a fantastic wrestler capable of pulling great matches and also has great charisma."
Rating: 9.0
Sentiment: 0.64
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Neon Aussiewrote on 07.03.2024:[6.0] "Solid in-ring performer. As Kevin Steen he was pretty awesome. Personally I never liked his ring attire and look, but his in-ring performances were great back at that time. Then he got to WWE and seemingly became a neutered, pale shell of his former self. He got more famous, but his ability largely suffered. He did entertaining work with Jericho in WWE and has had some moments, but has largely floundered. He came in with Sammy Zane who was oft viewed as his sidekick, but who has started to overshadow KO in recent years. I see him now as kind of a mid-card guy"
Rating: 6.0
Sentiment: 0.2712380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mister Cute Facewrote on 05.03.2024:[9.0] "I love KO. I'll never understand how he isn't the biggest heel in the company. His character in WWE has become neutered and watered down. I know not everyone can be the champ, but KO feels so rudderless right now. Owens used to be all about the title and the money. It's not personal. Now he's just flat and it's entirely due to booking. Bring back the prize fighter!"
Rating: 9.0
Sentiment: 0.12251984126984128
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wrasslinfan619wrote on 21.02.2024:[10.0] "I gave him A 10 A few months ago, but I think its time I add A comment to this to really explain how much I love Kevin Owens. Kevin is an amazing all-around performer, he's amazing as A face and A heel and this and last year he main evented wrestlemania for good reason because he god damn deserves it. Whether its his amazing time as Steen in ROH or his nearly as amazing time as Kevin Owens in WWE, or his time in PWG or really anywhere he always puts on A hell of A show and A lot of times match of the night. His wars and amazing tag matches with Sami Zayn are also incredible, they have so much chemistry after being best friends for 21 years out of kayfabe, in kayfabe the relationship they have has been on and off for the past 14 years. I don't know if anyone could've imagined Kevin Steen mr. wrestling himself being this successful in the WWE but here we are, one of the best of this generation and I'll even say ever, fight Owens fight.. kill Steen kill."
Rating: 10.0
Sentiment: 0.4403508771929825
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Cleanerwrote on 16.02.2024:[6.0] "Ich war um 2016 rum, als er im Main Roster debütiert ist, großer Kevin Owens Fan. Allerdings fühlt er sich auch 8 Jahre später nicht nach "Star" an. Er hat sich auch kaum verändert. Er sieht gleich aus, zeigt die gleichen Moves, hält die gleichen Promos. Das ist zwar alles nicht schlecht, aber auch in keinem Belang herausragend. Seine Matches sind schablonenhaft, was mich aber vor allem stört ist eine gewisse Albernheit, die er nie ablegen kann."
Rating: 6.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Captain Memowrote on 05.02.2024:[10.0] "Jack of all trades and also a master of all of them I'd say. He can do any role in any spot on the card. Sometimes that makes him feel wasted, other times he main events WrestleMania against Stone Cold Steve Austin."
Rating: 10.0
Sentiment: -0.18958333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MichaelB137182wrote on 20.01.2024:[10.0] "Great, amazing, terrific. The prize fighter KO is easily one of the best wrestlers in the world currently and has been for a long time. One of the very very few that survived the NXT to main roster transition. Cant really think of a weak point from being trusted with Stone Colds return to being the hottest tag team with Sami Zayn after an insanely good build this man is awesome! Long live KO."
Rating: 10.0
Sentiment: 0.28675757575757577
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: SoaKaswrote on 17.01.2024:[9.0] "One of the best of our generation: great babyface, MUCH better heel but always a great wrestler and 10/10 mic-worker. He is one of those guys that always have a crowd connection and he barely ever feels directionless. I will never forget the moment he first appeared on RAW and confronted Cena, it's basically one of my favourite wrestling moments of all time. From Kevin Steen to Kevin Owens, his career will always be remembered."
Rating: 9.0
Sentiment: 0.45274725274725264
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MaximilianBernerwrote on 02.01.2024:[3.0] "Das Internet liebt Kevin Owens, wohlmöglich weil sich viele mit ihm identifizieren können, ein Stück weit wirkt er wie die Illusion jeder könne es in diesem Geschäft zu etwas bringen ohne die nötige Disziplin und das richtige körperliche Erscheinungsbild mitzubringen. Ich persönlich kann ihm nichts abgewinnen, in meinen Augen ist er keiner der professionelle Athleten die mich für das Wrestlingbusiness begeistern. Eher eines der Kinder die im Freibad ihre Shirts anliessen."
Rating: 3.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Logewrote on 11.12.2023:[9.0] "We love Kevin Owens. Just like WE LOVE BOBBY! We love Bobby, don't we? Well I love Kevin. Him and Sami made me actually care about NXT for the first time and really helped legitimize the brand imo, and I was super excited for Kevin to come to the main roster. My favorite work he's done was the friendship and feud with Chris Jericho around 2016-17, as well as his initial feud with John Cena. I also think he's one of the best people to be injected into the big Bloodline storyline, especially since he once was Universal Champion. The OG Tribal Chief"
Rating: 9.0
Sentiment: 0.309375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Dntbamarkwrote on 01.12.2023:[5.0] "Solid promo and who can bump for people and be inserted in a storyline if you need someone. Otherwise, I've never been a fan of Steen/Owens. He was great with Jericho but Jericho was fool-proof at that point and could get a broom stick over if he had the intention of doing so. Kevin Owens looks like a fan who won a contest or one of those backyard indy workers you see wrestling in a barn for a handshake and a hotdog. He has talent with some charisma and works best as a heel moreso than a babyface but he's not the star that internet nerds try to make him out to be. Zayn is the more talented of the two by far"
Rating: 5.0
Sentiment: 0.5166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: skillgullwrote on 24.11.2023:[10.0] "Kevin Owens is great. Even though I don't watch WWE anymore he is still one of my favourites. In ROH he was a killer, in WWE, while having stop start booking, is continually able to put on great matches. He is the reason I watch wrestling, he go me into wrestling and even though I don't watch WWE anymore, he is still great."
Rating: 10.0
Sentiment: 0.7250000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: mooerwrote on 03.11.2023:[10.0] "I think Kevin Owens is one of the major success stories of 'independent-style' wrestler in the WWE, right up there with Daniel Bryan and CM Punk. His independent run itself was distinctive; his legacy in ROH, PWG has its own niche in the history of indie wrestling, where his in-ring work was excellent but in some sense secondary to his character/promo work. In NXT, his run was brief but exciting during the great upswing of NXT as an in-ring product. In the 8+ years now on the main roster, he has been the ultimate utility player, in some sense not unlike The Miz/Dolph Ziggler, if much more watchable. I would have preferred him to have at least one other run as top champion, but he has consistenly improved every storyline he has been a part of, and the two Wrestlemania main events he has been given are testament to how he is valued. Might he be having better matches had he gone to AEW eighteen months ago? Probably. I'm sure he'd love to have 25+ minute matches and blade when the occasion called for it. However, he continues to prove himself valuable, a perennial main eventer. As far as I can tell, also, a really decent guy who's top priority has always been his family."
Rating: 10.0
Sentiment: 0.2555952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: juiceisloosewrote on 22.10.2023:[9.0] "What can I say about Owens that has not been said? Considering his physique, he is the epitome of "do not judge a book by it's cover." Can work both technical and does some of the most athletic high flying stuff I've seen for someone of his size. Can play both the heel and the face, however I much prefer him as a heel. He really mastered the shit talk and since that's one of the significant aspect of his character, I really don't think he should ever work as a face. Although I think that over the last years he hasn't been his best self and WWE watered him down quite a bit, he still manages to be entertaining and is very charismatic. Just love KO."
Rating: 9.0
Sentiment: 0.2806746031746032
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TheEnigmatic1wrote on 05.09.2023:[9.0] "Kevin Owens is one of the more consistent wrestlers in WWE, always put's on a good segment and is so good with his range of emotion and creativity on the mic, His rivalry with Sami Zayn will go down as one of the best rivalries in the past 20 years And will always be remembered as one of the better Universal Champions and has proven size doesn't matter as he will kick ass and take names."
Rating: 9.0
Sentiment: 0.36049382716049383
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: celticinvaderwrote on 06.08.2023:[8.0] "Just all around fun to watch, and insanely likeable. Incredibly charismatic on the mic with some of the best promos WWE has seen recently, and he's been a major player in some great storylines. His in ring work is great too, with some really solid matches."
Rating: 8.0
Sentiment: 0.27361111111111114
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Loghan Morescowrote on 18.07.2023:[10.0] "Kevin Owens or Kevin steen call him whatever you wanna call him, he is perfect one of the best to ever step foot inside a ring, before wwe he was perfect working over the indys after he came to the WWE he developed even more and got sharp as a knife inside the ring in his nxt days he was smooth and today he feels like the modern version of stone cold steve austin, you cant not love the guy cut perfects promo is great inside the ring and has an amazing character, is a perfect villain and a perfect babyface overral the perfect superstar simple as that just perfect one of the greatest of all time."
Rating: 10.0
Sentiment: 0.5347222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Corporate Kanewrote on 04.07.2023:[10.0] "My absolute favorite. As a kid, my favorite was Mick Foley. Seeing a guy with a similarly atypical look succeed as much as Foley did but without the crippling injuries will always be over with me. He doesn't have the freakish upper body strength of Mick, but instead he has a deep playbook of wrestling moves. He understands character work and selling better than most people which is quirky considering that he is also the type of character to play around with the fourth wall. Always entertaining, always hilarious, and despite not looking like a muscle guy he still looks like somebody that could fuck you up in a bar fight. He overdid the tattoo sleeve, I will say that."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: crs285wrote on 23.06.2023:[8.0] "Steen/Owens has a great ability in the ring and the mic. He can constantly change things up to keep it interesting. Is best, when working, either teaming or feuding, with Sami Zayn but can put on a good match with anyone."
Rating: 8.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: danzitorockwrote on 20.06.2023:[10.0] "Kevin is simply amazing... excellent both as a face and especially as a heel, he perfectly puts his emotions into the character, he's amazing in the ring, he has an amazing mic skill and move set, a real near perfect and complete package."
Rating: 10.0
Sentiment: 0.5611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Giantfan1980wrote on 07.06.2023:[6.0] "I like him fine, but he isn't high on my list of "having the overall package" of what I would consider a top pro wrestler to be."
Rating: 6.0
Sentiment: 0.26916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: jamzell00wrote on 07.06.2023:[10.0] "A professional wrestler in every sense of the word. Busted his ass being one of the most popular acts on the indies we've ever seen and miraculously stayed the same over guy once getting to the wwe. There's nothing I can actually say about his run before the wwe other than he ruled and fuck Cornette forever. The only thing that has ever hindered him in the fed was iffy booking that he still found a way to overcome because you simply cannot keep a talent like him down. Just an absolute workhorse of a wrestler along with Zayn and is one of the most valuable parts of the wwe in the last 10 years."
Rating: 10.0
Sentiment: 0.07281746031746031
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: thirteenhxcwrote on 29.05.2023:[10.0] "He can work face, he can work heel, he can work tweener. He can work just about any style you ask of him. He's sneakily incredibly athletic, moves well in the ring. Dude can talk about as well as anyone too. He really does it all, the only knock you can give Owens is that he doesn't have a traditionally great look but i'd argue his look works for him rather than against him. The thing I think he does best is his use of body language, he really kind of physically acts his characters out in a way a lot of wrestlers don't or can't. He's just a guy with zero cons for me, and i can't say that about many wrestlers."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Frank Shooterwrote on 26.05.2023:[10.0] "He can talk, he has the charisma, the gimmick, the wrestling ability. A total package and a damn good one. He should've been a multi-time World Champion and Main Eventer, but his WWE run hasn't been bad at all. Debuted as a beast in NXT, beat Cena CLEAN in his first Main Roster match, is a Grand Slam Champion. And all that without mentioning his iconic ROH and PWG run. Hell, the guy sold almost by himself a WrestleMania main event against f'n Stone Cold."
Rating: 10.0
Sentiment: 0.13787878787878788
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Dancerwrote on 24.05.2023:[9.0] "He is so good at his job. Takes whatever WWE gives him and makes it work nine out of ten times. His look is really unique and plays into his character well. While the stunner is a bad finish for him and it feels like they just want to use it for a cheap pop, his moveset is one of the best in the promotion. He's positioned at the top of the card for a reason, he backs it up with his promos and matches. Had real good feuds with John Cena, Chris Jericho, Shane McMahon, and the Bloodline. The best NXT call up by leaps and bounds."
Rating: 9.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: CoachWwrote on 17.05.2023:[10.0] "As is the case with many guys from NXT Black and Gold, I was not aware of his work prior to joining WWE. He's made me a fan from the first time I saw him in NXT and while I have often had issues with his booking, he's one of the best talents in the company and I'm glad to see him at the top of the card. Arguably the best promo guy WWE has, and I'm a big fan of his in-ring style."
Rating: 10.0
Sentiment: 0.3458333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wllfriedzahawrote on 19.04.2023:[7.0] "Never been the biggest fan. He does a job capable of good stories and matches but wouldnt consider him a great"
Rating: 7.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: kewf1988wrote on 11.04.2023:[10.0] "Kevin Owens is a complete package, and his look really isn't as bad as people say, as it makes him stand out. Great in the ring and on the mic, with a ton of charisma as well. For a bigger guy he moves VERY well in the ring."
Rating: 10.0
Sentiment: 0.08000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KKeanelwrote on 02.04.2023:[10.0] "PWG legend, ROH legend, NXT legend, Wrestlemania main eventer - incredibly charimatic guy with passion to proffesional wrestling."
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: benh2wrote on 21.03.2023:[7.0] "There's no doubting his longevity over the years but to me his style still quite "indie" and that puts a ceiling on his potential. Similarly, he's not got the greatest look and is an average promo but he's done well to have a very successful career despite the limitations."
Rating: 7.0
Sentiment: 0.3041666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: greaterdalewrote on 02.03.2023:[10.0] "Another one of my all time favorites Kevin Owens is just so good at getting heel heet, and his matches are just so much fun to watch. his short run in NXT was what really made me a fan of him. His debut of turning on Sami Zayn after Sami won the NXT championship really set up a monster run. My favorite move of his is the popup powerbomb, and from what I've seen of it his package piledriver he used to use as Kevin Steen was awesome too. I wish WWE would let him use it but I guess you can't have everything. I agree he's a better heel, but his recent babyface run has been quite compelling too! I would love to see him win a world championship again as he could very well carry the company on his back if they wanted him to."
Rating: 10.0
Sentiment: 0.37678571428571433
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: John Brandowrote on 19.02.2023:[9.0] "Kevin Owens ist einer der besten Wrestler auf dieser Welt und verfügt über hervorragende Mic-Fähigkeiten. Trotz seiner wuchtigen Statur ist er im Ring technisch weltklasse und zeigt Aktionen, die man ihm so nicht zutrauen würde (Moonsault). Er ist ein absolut cooler Typ und trotz kanadischem Background sehr bewandert in der englischen Sprache. Er schafft es eigentlich immer innovativ und unterhaltsam zu sein, egal gegen wen er antritt oder welche Storyline er bestreitet. Da viele ihn in den Indys sehen wollen, sage ich: Kevin, bleib uns noch ein bisschen in der WWE erhalten und gewinne dort weitere Titel!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: eltetechoriwrote on 12.11.2022:[10.0] "The good (or bad) KO is undoubtedly one of the best of his generation, he always caught my attention since I saw him and in WWE even if he doesn't have many headline hits, he is undoubtedly a great roster wrestler."
Rating: 10.0
Sentiment: 0.45999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BigVanWalterwrote on 27.10.2022:[10.0] "One of my favorite wrestlers of all time and probably the best thing on raw (or at least he was before he mysteriously disappeared). He's an amazing promo and a great worker, he can do comedy well and serious stuff well, he can play face or heel well. Whatever you need KO to do, he excels. He also main evented wrestlemania against Stone Cold which I always just forget happened this year"
Rating: 10.0
Sentiment: 0.16025641025641021
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Makoto92wrote on 15.10.2022:[4.0] "I don't know why Triple H came back "The Prizefighter" gimmick to Kevin Owens, who works in entertaining feuds at first half of 2022 perfectly. I think, it's a one or two steps below for Kevin, because Prizefighter is not entertaining. Wrestling for wrestling in WWE doesn't work, no matter who controls the booking: smarks' favorite J.P. Levesque or very skilled promoter Vince McMahon."
Rating: 4.0
Sentiment: 0.3104166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: AlDente01wrote on 18.09.2022:[10.0] ""The Prizefighter" - Kevin Owens is the perfect wrestler. Although not always perfectly used. Talented in the ring, brilliant behind the microphone, awarded. The man who destroyed John Cena on his way to the main roster. He beat people like Seth Rollins, Braun Strowman, Chris Jericho. His rivalry with Sami Zayn is downright iconic. Some people accuse him of appearance flaws - but this is exactly how he should look, his appearance perfectly matches his character. It's a shame he only made his way to the top once, I can't wait to see him become WWE Champion or Universal Champion again."
Rating: 10.0
Sentiment: 0.4680555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Flame233wrote on 13.09.2022:[10.0] "Kevin Owens is amazing. He is the textbook definition of "NXT 1.0". Great fighter, great talker, hard worker, absolute champion material. He started very strong in the main WWE roster, beating John Cena, JOHN CENA! He proves to be a great heel. Fans love him, arenas explode every time his banger of a theme plays. The only thing really wrong with him is his booking, where he can be fighting with Stone Cold Steve Austin on WM and the next day he is in a comedy feud with Ezekiel. Luckily as of Vince retireing, HHH is bringing "the Prizefighter" to the actual fights, feuds, and promos. High hopes for this guy, and simply I don't get why anyone would give him a score lower than 8."
Rating: 10.0
Sentiment: 0.21518518518518523
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Adaptinhowrote on 17.08.2022:[10.0] "Vince has been making a clown out of this amazing wrestler for the last few years. Finally, Kevin got his old gimmick back and we'll see the real Kevin and not that clown."
Rating: 10.0
Sentiment: 0.10000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Bartho28wrote on 27.07.2022:"One of the best talkers in the world and a great wrestler. KO has shown time and time again he belongs at the top of the mountain with the best of them."
Rating: No rating found
Sentiment: 0.825
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: UltraNano54wrote on 17.06.2022:[5.0] "His is too fat and his general style is overly smarky for my tastes. He really fits the indies better than he does WWE. His famous feuds like those with El Generico and Sami Zayn just did nothing for me personally."
Rating: 5.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: OnlyHalfTheEffinShowwrote on 06.06.2022:[9.0] "Give KO shit and he will turn it into gold. Pretty much every time. Easily one of my favorite guys in the current WWE roster, KO is everything you? d want in a pro wrestler. An amazing promo, innate charisma and connection with the audience, and a spectacular wrestler who can work pretty much any style. Give this man another run with the world title already!"
Rating: 9.0
Sentiment: 0.28833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: CMX-7wrote on 17.05.2022:[10.0] "Kevin Owens - An all-round wrestler who can pull off any match out of nothing, can pull off a chic segment that can outshine an entire show, his charisma is unique! He absolutely deserved to match up with Steve Austin in Wrestlemania 38 Main Event! I hope he becomes WWE Champion"
Rating: 10.0
Sentiment: 0.2192708333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: NiceRaterwrote on 12.04.2022:[9.0] "One of the best wrestlers in the game for years. He's been able to smash every single character he's been given out of the park. Prior to his WWE run, he was able to be that badass, Austin-like character that the whole show revolved around. In WWE, he's convincing as a tough guy fighter. He's convincing as a cowardly heel. He's convincing as a parody joke character. He's convincing as a team team specialist. With outstanding ring skills, almost unmatched mic skills in the current day and the ability to make connections to the wrestlers around him, Owens is one of the best in the world in the modern generation."
Rating: 9.0
Sentiment: 0.3149801587301588
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MorbidAxiswrote on 06.04.2022:[7.0] "Kevin Owens is a fantastic talent, that at times, has been left to waste away in the WWE. I'm a firm believer that any quality wrestler that wishes to remain a main eventer, should stay as far away from the company as they physically can, or else they run the risk of being left behind by the likes of Roman Reigns and Brock Lesnar. I know my rating is lower than most, but that's hardly to say I don't appreciate the work KO has done."
Rating: 7.0
Sentiment: 0.006818181818181814
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: WrestlingFan892wrote on 03.04.2022:[9.0] "Born to be a Heel, for his weight he does incredible things, he is not a wrestler who stands out for his physique but he has always had a very Ruthless style of wrestling and that is something that he has offered new in WWE. Mic-Skills, Charisma and Strength, that's the description of him."
Rating: 9.0
Sentiment: 0.012121212121212125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: NeoSwas36wrote on 23.03.2022:"KO is a great wrestler, but the highlight for me is his promo ability. I love going back and watching his work as Kevin Steen, truly good stuff. He's done well in WWE too. The best Universal Champion, and IMO, the only good one."
Rating: No rating found
Sentiment: 0.4625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: zacharymahabirwrote on 07.03.2022:[10.0] "One of the greatest of the modern era. He does everything so well, killer as a face or a heel, it is unbelievable how good KO/Kevin Steen is at his best"
Rating: 10.0
Sentiment: 0.53
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: rishabhwrote on 09.02.2022:[10.0] "I truly believe he is one of the best wrestlers of his generation. In-ring ability, charisma, promo skills you name it and Kevin Owens has it. He can be both a great heel and a great babyface. He can really do anything and be entertaining. There was rarely a time where you could say KO was stale and not entertaining. Even if you haven't seen his indie run, his WWE run is great too and enough to prove his greatness."
Rating: 10.0
Sentiment: 0.33181818181818185
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: GriffinXwrote on 26.01.2022:[8.0] "KO has managed to turn chicken shit into chicken salad so many times it's become a double edged sword. You often get the feeling "creative" thinks they can just toss anything out since he can get it over."
Rating: 8.0
Sentiment: -0.06666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Minorsmile09wrote on 20.01.2022:[10.0] "Easily, EASILY the best NXT callup WWE has done. KO can talk his ass off, and put on wonderful matches. Plus he's actually been pushed in WWE, so I don't just have to base my rating off his indie runs. Very unique in physique, movement, and character. My only negative is, the stunner sucks as a finish for him. It's just anticlimactic."
Rating: 10.0
Sentiment: 0.15208333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Roodolphwrote on 16.01.2022:[10.0] "I love Kevin Steen/Owens. he is awesome at everything he does and is one of the best in wwe. I hope he has great satisfaction after the renewal."
Rating: 10.0
Sentiment: 0.825
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Phenomenal Nightmarewrote on 15.01.2022:[10.0] "Kevin owens, a great wrestler, is agile despite being fat and has good movements in the ring I hope he flies to be world champion in WWE"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Gaspardwrote on 04.01.2022:[6.0] "im not a fan, his whole character is boring to me, and i dont really like his voice in promos, specially when he's shouting. his wrestling skills are ok but still nothing special"
Rating: 6.0
Sentiment: 0.10238095238095236
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wrestleflowrote on 02.01.2022:[10.0] "Fantastic wrestler, and all around lovely bloke. Hard hitting but athletic as well, and he brings a lot of charisma to the table as well. You always wanna root for him, but he can play a really effective bad guy as well, and he's really great at feeding off the energy of a crowd. One of the best in WWE, and I hope that he will soon be used to his full potential."
Rating: 10.0
Sentiment: 0.2953703703703704
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: CaptainCharisma1997wrote on 19.12.2021:[8.0] "I like Steen/Owens a lot and have really enjoyed his feud with Generico/Zayn over the years. I've just always thought he was merely very good where Zayn was the exceptional one. He's a very good wrestler and a very good talker; nothing about him has ever struck me as excellent though."
Rating: 8.0
Sentiment: 0.8161111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: LivingLegendwrote on 16.12.2021:[10.0] "Kevin Owens is awesome. He's one of the best promos in the current landscape of wrestling, and he's fantastic in the ring as well. Incredibly athletic and agile for his size, and his willingness to take so many horrid looking bumps is commendable. Shame he hasn't been world champion in almost 5 years."
Rating: 10.0
Sentiment: 0.6142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: kfztkfzt2021wrote on 14.10.2021:[9.0] "Kevin Owens is one of the best of all time.He's super talented in the ring, very athletic for his size, great technical skills, great powerhouse moves, impressive highflying skills, great striking, one of the most charismatic wrestlers ever, UNTOUCHABLE on the mic... AMAZING.I wish wwe gave him a second chance with a world title, he can elevate it SO much, i miss seing him on the top of his game.Also, let's not forget how ENTRETAINING this guy is."
Rating: 9.0
Sentiment: 0.5222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mauwrote on 29.07.2021:[10.0] "His rivalry with Shane McMahon, Seth Rollins and Roman Reigns revived my real appreciation for him. Since 2015, I have often wondered: If Kevin Owens is a face one day, will it be better than his job as Heel? With the aforementioned rivalries, he answered my question in the best possible way. He's one of the best at making promos, and he really knows how to deal with a situation. He risk dangerous and amazing maneuvers. Since his return in 2019, his physique, strength and motivation increased compared to 2018. I just hope that one day he will get the gold in his hands again."
Rating: 10.0
Sentiment: 0.32222222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BK7Neunzigwrote on 27.07.2021:[10.0] "Ich würde niemals behaupten, dass KO ein vollständiger Wrestler ist. Sein Look lässt nicht auf einen Main Eventer schließen und dennoch schafft es dieser Mann, auch im trübseligen WWE-Alltag, in jeder noch so belanglosen Fehde, etwas besonderes auszustrahlen. Es gibt für mich nur wenige Aktive, die einen ansatzweise vergleichbaren Unterhaltungswert aufweisen. Dazu ist er immer für einen Moment im Ring gut, der die ganze Halle aus den Sitzschalen holt. Für jedes Stipulation-Match braucht es einen Bump vom Meister selbst. Hinzu kommt noch ein unerschöpfliches Moveset mit einer Mischung aus Aktionen, die vor Brutalität und Gefahr strotzen und Flying-Moves, die man ihm ob seiner Statur nicht zutraut. Für mich gehört der Mann in die Top 5 einer jeder Promotion auf der ganzen Welt. Als Heel ist er einer der besten. Aber als Face mit A...... ch-Charakter wahrscheinlich am besten. Leider passt die WWE von den Top-Ligen am wenigsten zu ihm, da er sein Gimmick, trotz Promo-Freifahrtschein, nicht richtig zur Geltung kommt, sein Moveset stark rasiert wird und er mit seinem Look hier leider als letztes dauerhaft ganz oben eingesetzt wird. Dass er sich trotzdem regelmäßig in der letzten halben Stunde der Shows wieder findet, zeigt einfach nur, wie gut der Mann ist."
Rating: 10.0
Sentiment: 0.15555555555555553
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: zags7000wrote on 21.06.2021:[10.0] "His run to start his WWE career might be one of my favorite runs in wrestling. His series of matches with John Cena were amazing and his series with Sami Zayn in and out of WWE are equal if not better. Really good and consistent in the ring and one of the best mic workers of this generation. He's good as a babyface, one of the few who can work well in that role. But as a heel he's truly special. Both as a legitimate fearsome superstar and even in comedic heel fashion like his tag team with Chris Jericho. Some of the most memorable moments have been by him. Unfortunately, there have been fewer of them lately but that doesn't take away one of the more memorable wrestlers of his time."
Rating: 10.0
Sentiment: 0.30357142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: mjs2212wrote on 22.05.2021:[10.0] "Quite simply, Kevin Owens is my personal favorite wrestler currently. I absolutely adore him as a worker and as a person. He does a great job in any role, can put on a fantastic match with just about anyone, and the passion that he has for wrestling really shows. He's inspired by the likes of Shawn Michaels, Steve Austin, and Steve Corino, and it really shows. He has a bit of all of them meshed into his repertoire plus more to make him stand out. I really enjoyed watching him when he was with Jericho and when he won the Universal Title, I jumped up in excitement. I still believe that he is the best Universal Champion there is, considering his work with Y2J and also because the title felt relevant when he had it. And of course, his chemistry with Sami Zayn / El Generico is simply phenomenal. The two have put on classic matches, some of which I go back to still. Whether the two are best friends or bitter rivals on screen, they always bring something to the table. Overall, in my opinion, KO is one of the best of all time."
Rating: 10.0
Sentiment: 0.34603174603174613
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The A-Listerwrote on 08.05.2021:[9.0] "He's a great wrestler that can do great job as a face and as a heel. Hopefully he gets another world title reign."
Rating: 9.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Okaro143wrote on 04.05.2021:[9.0] "A great wrestler. Great in ring work and an even better mic skill. Although he has never been underutilized, he has also never been used to his full potential. I know he could be a megastar if given the chance. Even when he had the Universal Champion, he always played second fiddle to Roman Reigns and Seth Rollins before being ultimately burried by Goldberg. He has always been presented as a main event level talent but has never truly been the top wrestler in the company. Could be one of the all time Greats if utilised better."
Rating: 9.0
Sentiment: 0.3287878787878788
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: HighFlyDeathcorewrote on 03.02.2021:[9.0] "Kevin has been great since his ROH days. his matches have been great everywhere he goes. I'd make a 10 if he was actually booked correctly. his feud with roman has been great, I liked his feud with Steve Corino was great too. Plus he named his son after my personal pick for the GOAT, Owen Hart"
Rating: 9.0
Sentiment: 0.5428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: pierreMinnewrote on 14.12.2020:[7.0] "Kevin Owens is one of the most overrated WWE wrestlers today in my opinion. That guy is a good in ring performer, he can delivers great promos, he is a good babyface but nothing incredible. I don't dislike him, but he is way overrated to me. His only indy match I found incredible was against Shinsuke Nakamura in ROH."
Rating: 7.0
Sentiment: 0.6428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: killowenskillwrote on 18.11.2020:[4.0] "Well, it's time to do it. During the period 2013-2017, Kevin Owens was my favorite wrestler and I sincerely believed that this is an absolutely unique performer who is destined to change the industry. In my opinion, he had everything: he was lively enough to attract interest, his matches were interesting to watch and he exuded a natural charisma. When that glorious fight against Sami Zayn on Battleground took place, I seemed to be sure that this guy has no equal. But since then, he has not shown matches of this level. Since then, it has not shown stories of this level. He changed his gimmicks from time to time, but even with all this variety, he could not be interesting. He could not stand even a couple of weeks, when, it would seem, attention should be focused on him automatically. It didn't happen. Owens changed, but nobody cares about Owens. Owens doesn't care about Owens. He doesn't tell stories, he shows a backyard with an unchanging pattern, with stupid spots and random moves, in his matches there is never a psychology and a desire to empathize with either him or the opponent. I can't get into Kevin because he doesn't have a character. And working with other talented wrestlers, he acts as a kind of vacuum that absorbs all the best from them. That's why the matches with Styles were mediocre. That's why none of the fights against Chris Jericho had the desired effect, despite the seemingly stunning storyline that many dubbed the drama of the decade. The confrontation with Shane was a piece of shit that didn't get him anywhere. I haven't been watching WWE regularly for the last two years, but when I come across a TV show or PPV again, I see it still hanging around, trying to get a hold of something and crashing. He had a chance to take advantage of fate and change after the match with the Fiend, but he again dropped it, becoming the ONLY wrestler who did not get anything out of this loss. Even Sami Zayn, having endured all the troubles that could only fall on his head, was able to find the role that suits him, and is one of the most interesting characters here and now. And Kevin is a dude from indy who is used to the comfortable role of Lesnar-the-Troll, and who is pathologically unable to get used to something else when he is directly told that he is not a machine for WWE and that no one will position him in this way. He was my favorite wrestler once, but it's hard not to change your mind when you've been disappointed for more than four fucking years. This time has been wasted and it's still not over. I hope Steen takes it upon himself to do something. No matter what anyone says, what's happening to him is only Kevin's fault. Highly paid jobber."
Rating: 4.0
Sentiment: 0.1387179487179487
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Ma Stump Pullerwrote on 15.11.2020:[7.0] "Eh, I don't really see the hype in Owens. The guy's got good mic skills and certainly can wrestle, but he just.... doesn't have much else to give. He's not a very good seller and he's bad at getting people over in his matches: even AJ Styles can't get a amazing match out of him, and his great storyline with Chris Jericho ended with a dud of a Wrestlemania payoff which benefited neither man. The best matches I've seen out of him were with Cena (which makes sense, considering Cena's great at getting his opponents over as legit threats) and some of the matches he had with Sami (not all of them, but Final Battle and some of the WWE stints were quite fun) but overall, most of his matches are either way too indie and spot festy, or just aren't that exciting. Maybe it's because Owens doesn't really try to innovate anything and has the same moveset for any match, regardless of the context or if he's a face or a heel, or maybe he plays too much to the smarky crowd: either way, it's not very entertaining, and I don't think Owens has made a good translation into the WWE style of wrestling in terms of the wrestling side: his lack of real storytelling beyond doing big moves on big moves is quite jarring."
Rating: 7.0
Sentiment: 0.2396978021978022
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: texasyoshwrote on 17.09.2020:[9.0] "One of WWE's most consistently reliable workers on the mic and in the ring. Super impressive to see a guy of his size do the moves that he does. I will always wish he was allowed to do the package piledriver... :("
Rating: 9.0
Sentiment: 0.2666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Yumichi95wrote on 31.07.2020:[10.0] "On l adore qui ne peut pas l adorer ce mec est amoureux du catch et il est plein d imagination. Et plus il vieillit plus je lui trouve un charisme hors normes bravo Kev!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wrestlefan20wrote on 12.05.2020:[9.0] "A great wrestler, who's also good on the mic. Can play a heel excellently. Is above average as a face. Has a lot of charisma and can make you interested in him."
Rating: 9.0
Sentiment: 0.32
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: rschmandt22wrote on 01.04.2020:[10.0] "Kevin Owens has been wrestling almost 20 years. He's one of the best who worked his butt off to get to WWE. Amazing heel, great face, he definitely deserves all the success he gets in and out of the ring."
Rating: 10.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Echohead1999wrote on 04.11.2019:[8.0] "Modern era WWE answer to Mick Foley. Willing to take the most crazy bumps no matter how horrific they are. Great in-ring worker and on the mic. It's amazing how agile he can be considering his size. Will go down as one of WWE's best tweeners of all time."
Rating: 8.0
Sentiment: 0.20944444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: CostelloFalcowrote on 14.10.2019:[8.0] "Kevin Owens is on my top 5 of all time. Very strong worker but doesn't fit well on WWE's Main Roster. It always seemed like he was more positively perceived on NXT."
Rating: 8.0
Sentiment: 0.3928787878787878
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: blackx18wrote on 29.08.2019:[8.0] "Kevin Owens hat viel Potential ein guter Wrestler in der WWE zu werden, auch wenn ich nicht finde das er einer der Besten der Welt ist. Einfach aufgrund der Tatsache das er in der WWE noch nicht eine große Anzahl von Weltklasse Matches hatte, Außerdem ist er ein Wrestler der nicht aus weniger guten Western gute Matches rausholen kann, wie zbs ein AJ styles oder Daniel Bryan. Außerdem ist er im Ring auch unbeweglicher geworden und die Schnelligkeit hat auch ein wenig nachgelassen. Aus diesen Gründen würde ich ihn nicht gerne als Top Guy der Company haben, da es auch schwer abkaufbar ist wenn er dick ist, und es ihm anscheinend zu peinlich ist sein Shirt auszuziehen. Abr ansonsten ist sein Charisma nicht besonders gut, aber auch nicht besonders schlecht und am Mic ist klar das er einer der Besten der Welt ist. Vor allem als Face gefällt er mir sehr gut auch wenn er als Heel besser ist. Außerdem finde ich die Pop Up Powerbomb als Finisher besser als den Stunner. Und finde es dumm das er jetzt nur den Sturer hat weil er ein wenig die Rolle von Austin einnimmt. In-Ring : 8/10 Micwork : 9/10 Charisma : 6/10 Gimmick : 8/10 (Face Gimmick) Meinung : 7/10 = 38 Punkte."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KyleEnjoysWrestlingwrote on 01.08.2019:[9.0] "I think Owens has great potential, but I would not look at him as one of the best in the world. He was exceptionally great in NXT & when he first came to the main roster, but whether it be his fault or the fault of WWE creative, it's easy to see how his stock has dropped over the past few years. I know there's a lot of debate on his gear & presentation, but I have a hard time buying him as the top guy when he looks like a fat kid who's going swimming & too embarrassed to take his shirt off. On the mic, it's clear he's quick witted & one of the best. I'm not a fan of him using the stunner now & don't think he hits it well. I thought the popup powerbomb suited him much better."
Rating: 9.0
Sentiment: 0.35260416666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: LeafKingwrote on 17.07.2019:[5.0] "Highly overrated. Love him as a tag team specialist, but as a singles guy he's a total flop IMO. Capable of having decent matches if he's in there with a brilliant opponent, but that's about all I can say good about his in-ring work. He can have decent promos too though I guess, but they're repetitive and nothing that would ever put butts in the seats. There's nothing about him as a singles competitor that stands out as great."
Rating: 5.0
Sentiment: 0.33433333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TechnicalWrasslinwrote on 02.07.2019:[10.0] "Package Piledriver one of my favourite finishes and the pop up powerbomb Him and Sami Zayn(Generico) Are amazing in-ring Kevin Owens can cut badass promos powerful strikes Great Throws Sharpshooters and Moonsault"
Rating: 10.0
Sentiment: 0.5666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: SrHunterwrote on 26.05.2019:[9.0] "Owens is a really good worker, great in ring and always has been one of the best talkers in the company, but sadly they booked him like shit in the last years, not giving any justice to his talent, but is WWE they do this all the time. Overall he is complete in every department and you can trust him to cut a good promo or do a good match, with the correct booking of course."
Rating: 9.0
Sentiment: 0.32999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: PuroresuLoverwrote on 19.05.2019:[8.0] "My problem with Kevin Owens is: HIS BOOKING! Seriously, this guy is very good in the ring, got a very good look, can cut some great promos and can make some very good matches, too. I don't know why the WWE bookers started to treat him like an coward heel, 'cause that's not what he is! Kevin Owens is a Prize Fighter, he doesn't fear anyone, in fact, he would kick the ass of his own family just to achieve his objectives. I hope that WWE stop to treat him like a bitch."
Rating: 8.0
Sentiment: 0.6477777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ErycK24wrote on 08.04.2019:[9.0] "Owens' Mic and In Ring skills cement him as a top 2 heal in the company. If pushed correctly, Owens could be the best heal champ in years. Edit: Owens before his injury was mishandled."
Rating: 9.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kevin41182wrote on 19.03.2019:[9.0] "Owens is the perfect heel. He will go down as one of the best of all time when it comes to his heel work. That's not to say he cannot work as a face though. So far his current face run on Smackdown has been pretty good. His in-ring work is also spectacular. His storytelling is extremely well done and he is also very athletic for his size. Overall Owens is one of the best today in the industry."
Rating: 9.0
Sentiment: 0.38078703703703703
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: zephyrwrote on 08.01.2019:[7.0] "I never really got the appeal of Owens/Steen. At first his mid-match trashtalking was refreshing and entertaining to me but these days everyone is doing it and Owens has little to set himself apart from everyone else, leaving him as just another good worker in a sea of talent."
Rating: 7.0
Sentiment: 0.2770833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Steamboat2511wrote on 05.12.2018:[8.0] "Kevin Owens gehört zu den sehr guten Workern der WWE. Er wirkt in seinem Tun äußerst natürlich und ist für seine Größe äußerst beweglich. Mit der hervorragenden Paarung von Technik und Impact kommt bei ihm eigentlich immer mindestens ein solides Match heraus. Technisch schwächere Gegner wie John Cena kann er zu herausragenden Matches führen. Insgesamt fehlt mir nur ein wenig das Besondere in der Personality und am Mic, so wie eine größere Anzahl an wirklich guten Matches in der WWE."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TylerWhitewrote on 13.11.2018:[9.0] "Einfach ein grandioser Wrestler und mein derzeitziger Lieblingswrestler.  Am Mic ist er grandios und mit der beste in der WWE. Außerdem ist er auch extrem charismatisch und dadurch, dass er prinzipiell ein Powerhouse ist, er aber technisch so hervorragend ist und Aktionen macht, die ich von einem Wrestler in seiner Gewichtsklasse noch nie gesehen habe, zeichnet er sich absolut aus. Seine Rivalität gegen El Generico/Sami Zayn ist eine der größten der modernen Wrestlinggeschichte und sollte in der WWE auch konsequent weitergeführt werden, denn beide sind für mich zukünftige Main Eventer (Eigentlich sollten sie es beide längst schon sein). Vielleicht bekommen wir ja in zukunft wirklich einmal das Dreammatch Zayn vs Owens im Wrestlemania Main Event, man darf ja noch träumen."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KINGwrote on 09.11.2018:[9.0] "Amazing heel, phenomenal wrestler, the most complete performer of his generation, his ROH stint was amazing especially when involved with his partner and then rival El Generico, their feud is maybe my favorite ROH feud. In WWE he did great as well even if maybe they booked him too much as a coward after his feud with John Cena, but his 2018 booking saw him getting pinned every goddamn time lol. In spite of that, Steen/Owens always made/bakes the best with what was/is given to him and tried to make it work, his look tho is not the one Vince relies on when he thinks about his champion, so he's fantastic but I dunno if they're gonna use him as a main eventer in the future."
Rating: 9.0
Sentiment: 0.4404761904761906
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: RatingsMachinewrote on 25.10.2018:[8.0] "Kevin Steen is overall a very good worker, and he can be a great talker at times. But he's missing that something that would make him great, and his look does him no favours at all."
Rating: 8.0
Sentiment: 0.462
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Oliver95xwrote on 28.09.2018:[10.0] "Einer der besten Wrestler der Welt. Ich finde die letzen Monate hat er ein bisschen nachgelassen. Hoffe er fängt sich wieder und zeigt 100 %. Er hat mich auf jeden Fall maßlos beeindruckt vom ersten Match an was ich von ihm gesehen habe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: taabr2wrote on 12.09.2018:[9.0] "One of the best talkers in wrestling and a pretty good wrestler in the ring, Owens is one of WWE's top all round talents. WWE booking Owens as a chickenshit heel instead of the psychopath he was in ROH annoys some fans but I think Owens does a great job either way."
Rating: 9.0
Sentiment: 0.5083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kuzma334wrote on 09.09.2018:[9.0] "Most interesting male wrestler on Monday Night Raw. Perfect In-Ring Skills, Mic Skills and pretty Charismatic. His promos always great, when KO's had an opportunity to make a good match - Owens make's it. Had a amazing feuds with Sami Zayn, Shane McMahon, John Cena and many more.  Best male heel in WWE, great entertainer and a perfect wrestler"
Rating: 9.0
Sentiment: 0.526201923076923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Doshin92wrote on 09.06.2018:[9.0] "Kevin Owens überzeugt mit seinen InRing Fähigkeiten, Mic Skills und Charisma auf voller Linie. Dieser Mann hat alles was es braucht um ein erfolgreicher Wrestler zu werden. Das einzige Argument warum er noch kein WWE Main Eventer ist, liegt an seinem nicht typischen WWE Look. Kevin Owens wird es schwer haben die Bodybuilder verliebten WWE Offizielen zu überzeugen, aber mit seinen Fähigkeiten wird dies früher oder später der Fall sein müssen. Seine Fehde mit Sami Zayn die sich schon von den Indys bis zu Nxt und Raw zieht ist bereits jetzt überragend und ein Must See der letzten Jahre. Er ist bereits jetzt einer der Gründe noch Raw zu gucken für mich."
Rating: 9.0
Sentiment: -0.09829059829059832
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: test85wrote on 16.04.2018:[8.0] "Auch Owens gehört für mich zu den besten im aktuellen WWE Roster. Trotz seiner Masse ist er, ähnlich wie Bam Bam, im Ring wie ein Blitz. Besitzt mit der Pop Up Powerbomb einen Finisher der auch aus dem Nichts kommen kann und deshalb gefährlich ist. Wie Kurt Angle schaden ihm die Comedy haltigen Segmente (siehe Essensschlacht) überhaupt nicht. Leider hat er doch in letzter Zeit ein wenig enttäuscht. Seine Fehde mit Jericho war eines der Highlights 2017, nur waren die Matches nicht gerade Klassiker. Auch die Matches mit Styles enttäuschten. Trotzdem durfte er eine der Main Stories bei SD führen. Aktuell für mich 7-8 Pkt."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: andrewmossighiwrote on 22.03.2018:[9.0] "I did not know who Kevin Owens was until he beat John Cena in his first match in WWE, which was what made me curious about his work on the indies and other promotions. When I saw his matches in Ring of Honor and Pro Wrestling Guerrilla against some wrestlers like El Generico, Davey Richards, and Adam Cole, I fell in love with him as both a heel and face because of everything he could do inside and outside the ring. He is an excellent technician, can brawl, and can do athletic, high flying moves like a cruiserweight (reminds me of Vader). And then, I saw his promo in Ring of Honor with Jim Cornette when he was trying to become reinstated, and I loved him even more because his promo and trash talking ability was straight from the hip and believable to the point where I started to hate Cornette myself. The only reason why I am giving him a 9 right now is because he became a victim of WWE booking with that miserable gimmick of being The Face of America, then he and Sami Zayn have been stuck in a rivalry with Shane McMahon for way too long at this point. Otherwise, Kevin Owens should be considered one of the best wrestlers in the world today, if not then in the top five."
Rating: 9.0
Sentiment: 0.18135338345864663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Makai Clubwrote on 09.03.2018:[8.0] "Man, only two years previous KO was my favorite wrestler in the world but a lot has changed. His quality in his promos, storylines and matches have dramatically decreased. 2017 was not a good year for Mr Wrestling. Average matches with AJ Styles, underwhelming WM match, Face of America (ughh) and worst of all his never ending Shane storyline. A year to forget for KO. But the rest of his years have been good. He had WWE's MOTY with Sami Zayn, along with many great matches and stole the show at WM, alongside becoming Universal Champion. He had John Cena's best set of matches of his career and had an incredible feud with Finn Balor in NXT. If I had to judge KO's WWE run, it would be a 7. BUT........... Kevin Steen was absolutely phenomenal. His promos, face or heel, were always excellent. His matches had a certain enjoyment to them even if he and the opponents never really clicked. Kevin Steen before WWE is a 9. So overall he is an 8. Hope you get back on track Mr Wrestling."
Rating: 8.0
Sentiment: 0.2198809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Sebastian Vwrote on 01.02.2018:[9.0] "Kevin Owens ist in meinen Augen in den letzten Jahren einer der besten Allrounder der WWE. Was Charisma und Micwork angeht meiner Ansicht nach in beidem eine 10. Er hält tolle Promos und ist eigentlich immer unterhaltsam ob mit Jericho, mit Zayn, als Face of America, als Workhorse (Fight Owens Fight), als verbitterter Heel, als Comedy Heel oder sogar als Gastkommentator. Im Ring finde ich ihn auch wirklich gut, aber würde ihm da "nur" 8 Punkte geben. Er kann wirklich tolle Matches worken (siehe die mit Sami Zayn) aber mit manchen will es nicht so wirklich klicken (siehe AJ Styles). Aber er ist im Ring absolut gut, hat Psychologie, ist beweglich, hat ein gutes Moveset und kann gut, wenn auch nicht überragend sellen. Botches sind eher selten bei ihm ( auch wenn die wenigen teilweise den Matchausgang veränderten womit man wieder bei Styles wäre). Insgesamt würde ich sagen gute 9/10. Ein wirklich tolles Gesamtpaket."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: CHN325wrote on 31.01.2018:[8.0] "Great in the ring, great on the mic. One of the best performers in the WWE. Can put on a great match with almost anyone and tells great stories."
Rating: 8.0
Sentiment: 0.8400000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Dragon Fighterwrote on 18.11.2017:[9.0] "One of the best wrestlers in wwe for sure. He is very entertaining on mic, can connect greatly with the audience. In ring work : very good to great of course although his matches can be spotfest at times. Only be on main roster for short time, but he already achieved many things. And his rivalry with sami zayn from indies days to wwe is absolutely gold."
Rating: 9.0
Sentiment: 0.5024242424242424
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Big Blue Machinewrote on 02.10.2017:[10.0] "Entertaining as fuck and capable of perform virtually every wrestling move ever created, despite his size. Kevin Owens is one of the most talented and versatile pro-wrestlers in the world, and seeing him compete against people like Sami Zayn, Seth Rollins and Chris Jericho is always amazing."
Rating: 10.0
Sentiment: 0.2625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BigMikewrote on 19.09.2017:[9.0] "Kevin Owens/Steen is a beast with great matches with Sami Zayn/John Cena and. He is great on the mic and his work on Talking Smack is great. The thing that stops me from giving him 10 points is that he's been a little underwhelming since Wrestlemania 33."
Rating: 9.0
Sentiment: 0.5531250000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Adaskerrwrote on 07.09.2017:[9.0] "Great wrestler, simply. Was great in ROH, now is great in WWE. Very good at talking, very good in the ring, the only problem is his booking since he won the Universal Title, his run was a joke, not defending the belt clean even once. His feud with Styles left me disappointed. When they use him well, he is a top talent though."
Rating: 9.0
Sentiment: 0.361388888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Chosen Onewrote on 24.07.2017:[4.0] "Something has happened to Kevin Owens. He used to be the greatest wrestler on the WWE roster. His NXT run was one of the best NXT runs ever. His feud with Cena was great and so was his IC title run and Sami Zayn feud. Once the draft happened he had been an up and down for almost a year. On Raw he did some good things but his Reigns and Goldberg feud was beyond boring and on SmackDown his US title run has been a flop. Yes, he is a good wrestler and can have good matches but right now he isn't having them. Really disappointing currently."
Rating: 4.0
Sentiment: 0.2666157916157916
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TooSweetPhilwrote on 24.06.2017:[8.0] "Es ist für mich schwer Owens zu bewerten. Einerseits muss man zugeben, dass er ein unglaubliches Gesamt-Pakt ist, was in quasi jedem Bereich unglaublich Punkten kann, andererseits ist er mir mit dem face of America Gimmick sehr langweilig. Im Ring sehr gut, am Mikrofon sehr genial und auch sonst top ausgebildet. Super Fehden mit Zayn, Super Dragon, Cole etc. Wegen seinem aktuellen WWE Run runde ich ab."
Rating: 8.0
Sentiment: 0.38888888888888884
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: awsmpwniewrote on 24.04.2017:[9.0] "Kevin Owens ist ein Heel der Extraklasse. Mal dominant und rücksichtslos. Mal feige und hinterhältig. Er kann alles. Im Ring ist er einfach eine Klasse für sich. Trotz seine körpermasse ist er schnell, athletisch und ausdauernd. Weit mehr als Samoa Joe, den alle wegen dieser Kombination so hypen. Technisch sehr stark und unglaublich glaubwürdig. Sein Micwork geht nicht besser. Er packt mich jedes mal und kommt auch beim WWE Universum mit gewünschtem Resultat an."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Blood Pumpwrote on 18.04.2017:[8.0] "Owens has always impressed me more then Zayn. His psychology is lacking and his look is unfitting of a prize fighter but the dude has a pretty crazy work rate and he tends to be more consistently great then his friend. He was an okay first reign as Universal Champ (I know Finn won it first but come on), though he could have been booked better and the way he lost it was unfortunate. His ROH title reign was excellent and I'd say stands as one of the top five or six reigns in that companies history."
Rating: 8.0
Sentiment: 0.3535714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: WrestleArtswrote on 06.03.2017:[8.0] "Unterhaltsamer Micworker, guter Wrestler und ziemlich beweglich für seine Statur. Großes Manko natürlich der Backyard-Wrestler Look und die Ausstrahlung, selbst als ernstzunehmender Heel kommt er meist eher wie Eric Cartman, als wie ein Prize Fighter rüber."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Owenwrote on 06.03.2017:[9.0] "I like Kevin Owens. But given how he was squashed by Goldberg, WWE obviously doesn't share my opinion."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TheWrestlingFanwrote on 24.02.2017:[10.0] "Steen can be the best heel in modern times if he booked properly, like his ROH run or his NXT run where he wrecked a havoc there as the top heel, but he can also do some jokes if needed, too. Overall his in ring abilities is one of the very best these days, especially in American wrestling scene. He is also blessed with the ability to cut promos. He is simply a gem in wrestling world."
Rating: 10.0
Sentiment: 0.3375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Rllywrote on 10.02.2017:[10.0] "Mic: Verdammt gut und besser geht es eigentlich auch nicht mehr 10/10 (25%) Promos: Ja, sowohl innerhalb als auch außerhalb der WWE macht er nur gute Promos 10/10 (10%) Ring: Bei der WWE ist es schade, dass er so eingeschränkt ist. Jeder der ihn außerhalb auch verfolgt hat weiß, dass er die volle Punktzahl verdient hat 10/10 (50%) Gimmick: Sein Gimmick ist richtig gut, mich stört nur, dass er als so schwach dargestellt wird. 9/10 (15%)   =10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: coolserazwrote on 08.02.2017:[9.0] "He is excellent. He can talk, he has a diverse move set, he is very agile for his size. Unfortunately, he has been booked very poorly as a Universal Champion incapable of winning a match on his own. WWE is prone to booking heels as cowards and both Rollins and Owens suffered.  The one point against him is he tends to be go too far with the humor and so gets babyface pops despite being a heel."
Rating: 9.0
Sentiment: 0.33571428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kazu Shizowrote on 01.02.2017:[8.0] "Also ich muss sagen er macht sich recht gut in der WWE, seine Promos, insebsondere mit Jericho an der Seite sind echt unterhaltsam. Das gefällt mir schon sehr gut. Auch im Ring macht er eine guten Eindruck. Insgesamt sind aber mehr als 8 Punkte nicht drin. Mir fehlt dann doch ein größeres Skillset, ein klareres Gimmick und vielleicht auch mal ein Faceturn damit er auch mal clean gewinnen darf."
Rating: 8.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Real Raterwrote on 21.01.2017:[8.0] "Ring: Er ist gut, aber so gut wie, er gemacht wird auch nicht. 8/10 (50%).   Promos/Schauspieltalent:Auch hier nur gut. 8/10 (25%)  Charisma/Statur/Gimmick:Leider geht ihm etwas Charisma ab. 6/10 (25%)  Sind dann insgesamt 7, 5 Punkte für Mr. Wrestling.   = 8 Punkte"
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Gravelordwrote on 08.01.2017:[8.0] "Kevin Owens is a very good performer who certainly understands how to promote himself. However, there are a couple of noticeable problems with his work. Firstly, his work on top as heel which is his primary alignment, especially in the WWE, is rather dull. Owens proclaims himself the "Headlock Master" and likes to hold his opponents in an extended headlock sequence while either talking trash to them or the audience. You see, in theory this is good character work, but it only works for smaller venues as unless you are sitting close to the front of a large arena, you'll never be able to hear what Kev is saying. Similarly, audiences at home are likely just left bored by Owens' extended rest-hold which 9 times out of 10 completely cripples match excitement. Secondly, Owens, for some reason unclear to me, likes to pander to the crowd as a heel. This would be cool as a babyface, which Owens does play well, but falls flat as a heel as it takes audience love away from the babyface and instead generates it for Owens, the heel. Lastly, I find many of Owens' matches as of late to be very formulaic and lacking in anything memorable, which any world champion in the largest wrestling promotion should strive to have in order to retain fans. Still, Owens is a great character and has shown he can work great matches, especially thanks to his incredible heel run in RoH and multi-year, multi-promotion spanning feud with El Generico/Sami Zayn."
Rating: 8.0
Sentiment: 0.2473968253968254
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mantafahrerwrote on 01.01.2017:[10.0] "Ist ja echt eine Unverschämtheit, jemandem aus Lust und Laune null Punkte zu geben, nur weil sein Booking und seine Darstellung unterirdisch sind. Sorry, aber bitte erklärt mir mal, wie er mit dem grottenschlechten Material, das er derzeit vorgesetzt bekommt, was Spektakuläres auf die Beine bringen soll. Aber das ist ja keine Überraschung mehr - zumindest bei Raw sind die Verantwortlichen völlig unfähig, sowas wie einen überzeugenden Main-Event-Heel zu booken."
Rating: 10.0
Sentiment: -0.3653846153846154
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: LSEstrelawrote on 01.01.2017:[10.0] "He is the best wrestler on the planet today. Hands down, one of the all time greats, Kevin F'N Owens!"
Rating: 10.0
Sentiment: 0.4027777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TheRainmaker28wrote on 31.12.2016:[6.0] "Man, Owens has been so disappointing. His heel work is bad, his in-ring work has been bad and his reign as Universal Champion has been fucking horrible. I will go down his rating from 9/10 to 6/10."
Rating: 6.0
Sentiment: -0.5259259259259258
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ILoveProWrestling01wrote on 20.12.2016:[10.0] "One of my Favorite wrestlers. Has Charisma and is very good at Mic. Has had amazing matches with Sami Zayn, Seth Rollins and Cena. He has been 2x Intercontinental Champion and currently Universal champion."
Rating: 10.0
Sentiment: 0.5025
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TrevPuroFanwrote on 10.12.2016:[6.0] "Kevin Steen/Owens is a very hit and miss performer for me. Sometimes when he gives it is all, he can be outstanding (ex. vs. Generico, vs. J. Briscoe, Super Dragon etc. ), but there also times when he can be a very bad/spotty performer (vs. Cena II, vs. Elgin etc. ). Overall I'd say Owens is a good wrestler, but nothing spectacular."
Rating: 6.0
Sentiment: 0.3619047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Squared Circlewrote on 07.11.2016:[5.0] "I like the guy.  He works hard in the ring.  Decent on the mic.  Old school power house wrestler, reminds me of the Anvil.  Over pushed as a singles champion however.  He'd be great on a tag team with a speed/technique based partner.  But, like so many others today, he's in the wrong spot to go down as memorable and like spot wrestling itself, will go down as insignificant."
Rating: 5.0
Sentiment: 0.10709876543209877
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: WrestlingFan1112wrote on 23.10.2016:[10.0] "Der Junge hat es einfach nur drauf! Er ist wahrscheinlich einer der besten Heels, den die WWE jemals hatte. KO ist der perfekte Allrounder! Was kann er nicht? Technik ist trotz seines Körperbaus überragend! Am Mic ist er einfach nur super! Ausstrahlung besitzt er auch, wie kaum ein Anderer!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "Man muss KO einfach lieben. Ein Mann seiner Statur mit einem derart breit gefächertem Arsenal an Moves, das ist wahnsinn. Auch wenn er in der WWE leider nicht alles zeigen darf, was er zu bieten hat, aber dennoch immer eine Freude ihm im Ring zuzusehen. Die Segmente mit Y2J und ihm sind immer unterhaltsam. Und er ist ja auch noch recht jung. Ich hoffe wir werden die nächsten Jahre noch sehr viel von KO erwarten dürfen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: akm0wrote on 18.10.2016:[8.0] "Kevin Owens is just a star. He's a natural on the mic, he's a natural in the ring and he's surprisingly agile for his size, being capable of doing things like a standing sommersault legdrop or a 450° splash like it's nothing. As for his matches, he doesn't always deliver, mainly because he's an heel and he likes not to show off while being one, since he want to generate true heat. He's already a world champion and can only go up from there. His feud with Zayn will be remembered as one of the coolest thing in his career."
Rating: 8.0
Sentiment: 0.20238095238095236
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: shosa94wrote on 11.10.2016:[10.0] "Has already established himself as a legend.  From PWG to ROH to NXT to WWE, all-time great rivalries with Super Dragon and El Generico/Sami Zayn, runs as a babyface, monster heel, shit heel, a leagues deep movepool, brilliant mic work, and a unique look, Kevin Steen/Owens would be WON Hall of Famer if he retired tomorrow.  Now the second ever WWE Universal Champion and the first to have a real reign, with Sami Zayn, Seth Rollins, and Chris Jericho to feud with, and at only 32 years old, the sky's the limit as long as he stay healthy."
Rating: 10.0
Sentiment: 0.2291666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Phenomenal 1551wrote on 06.10.2016:[9.0] "Kevin Owens/Steen, trotz seiner "unscheinbaren" Figur einer der besten Worker im Ring. Vor allem was er zu Indy-Zeiten an grandiosen Aktionen und Matches gezeigt hat, aber auch bei der WWE ganz vorne mit dabei und zu Recht Universal Champion. Gibt der Zeit kaum einen authentischeren Heel als ihn und seine Promos unterhalten eigentlich immer. #"The Kevin Owens Show""
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JordanACEwrote on 01.10.2016:[9.0] "THIS IS THE KEVIN OWENS SHOW! Kevin is just the best. No one can touch him. I don't think I have anything bad to say about KO..."
Rating: 9.0
Sentiment: 0.15000000000000008
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TwistOfFatewrote on 06.09.2016:[10.0] "Nun ist der Champion von RAW. Kam nun etwas überraschend aber ich freue mich trotzdem für ihn. Verdient hat er es allemal. Bin gespannt wie lang er den Titel nun halten darf. Sein Gimmick verkörpert er gut und im Ring zeigt er auch immer eine recht gute Leistung."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ApexOfEvolutionwrote on 06.09.2016:[10.0] "Ob Highflyer, Techniker oder Brawler. Der Typ ist immer weltklasse. Besonders die Fehde mit El Generico gehörte zum Besten, was das Wrestling in den letzten Jahren zu bieten hatte. Freue micht echt ihn bald bei NXT zu sehen. Hoffentlich setzt die WWE ihn auch richtig ein. UPDATE: Bisher hat die WWE einige Fehler mit ihm gemacht, aber nun traut man ihm wohl endlich den großen Title-Run zu. Meiner Meinung nach ein würdiger Titelträger und ich freue mich schon auf die Fehde mit Rollins."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KASHwrote on 01.09.2016:[10.0] "Ich muss gestehen, dass ich mich zu ROH Zeiten auch lange von seinem äußeren habe täuschen lassen und ich ihn für schlecht und überbewertet gehalten habe. Das änderte sich irgendwann, weil er technisch einfach 1A sauber arbeitet und man ihm dahingehend absolut nichts vorwerfen kann. Man erwartet einfach nicht, dass jemand der ohne Bodybuilderlook wrestled die Power und Sicherheit haben kann, so gut mit anderen Heavyweights wrestlen zu können, es täuscht und überrascht. Sein Movepool ist unheimlich groß und innovativ und das teilweise sogar mit Unterschieden von Match zu Match.  Er hat ein natürliches Charisma, als geborener Heel und ist sehr authentisch und real wirkend am Mic. Ich kann die Leute, die sagen er habe keinen Championslook einfach nicht verstehen. Man muss sich bei KO für neues öffnen. Das Wrestling hat sich verändert, es ist wird kayfabe und Realität häufig untrennbar vermischt und so passt ein Owens dort perfekt als Champion hinein. Er sieht aus wie ein Jedermann und sollte doch eigentlich genau den Geschmack der Masse treffen. Für mich ist er definitiv World Champion Material und so scheinen das Triple H und Co. auch zu sehen. Er drawt und das zurecht... Seine Zukunft bei WWE sieht sehr, sehr gut aus. Eine unabsprechbare 10, für einen Wrestler der in allen Kategorien perfekt liefert."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KobashiKentawrote on 31.08.2016:[10.0] "Tut mir leid, aber wer einem Wrestler eine 1 oder 0 Punkte Wertung mit der Begründung gibt, dass man "kein großer Fan vom Indy Stil" ist oder ähnliches hat meiner Meinung nach den Sinn einer objektiven (! ) Bewertung absolut missverstanden.  Habe sowieso das Gefühl, dass viele viele der hier abgegebenen Wertungen einzig und allein dazu da sind, die Gesamtwertungen + Rangliste der "besten" Wrestler hier auf Cagematch nach dem eigenen Gusto abzuändern.  Owens war in seiner Indy-Zeit (vor allem ROH und PWG) mein absoluter Favorit und er repräsentiert auch heute in der WWE für mich das einzig echte "Total Package" (mind. gut im Ring, guter Stickman, Ausstrahlung/Charisma). Mit einer endgültigen (objektiven! ) Bewertung des Wrestlers Kevin Owens werde ich allerdings noch warten, bis er sich wirklich im Mainroster etabliert hat (... oder eben nicht).  EDIT: Boing!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Hypocrisywrote on 26.08.2016:[9.0] "Kevin Owens entspricht rein äußerlich definitiv nicht dem Anforderungsprofil für einen Top-Superstar in der WWE. Nach dem beeindruckenden Start bei WWE mit dem Sieg über John Cena konnte er den Sprung an die Spitze zwar noch nicht schaffen, jedoch ist dies m. E. nur eine Frage der Zeit. Beeindruckend auch, wie er und Sami Zayn die Fehde aus den Indies ins Universum übertragen konnten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KO Maniacwrote on 23.08.2016:[10.0] "Wie man an meinem Namen sehen kann bin ich ein GROßER KO Fan. Einer der Unterbwertesten zur zeit. Er hat einfach alles, was ein Wrestler Braucht. 10 Punkte von mir."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: croatiantwat1950wrote on 22.08.2016:[10.0] "By far the best heel in the WWE(although is pretty over, but hey, gimmick-wise). Excellent wrestling and promo skills, has the best gimmick and executes it with pure beauty. I hope he never ends feuding with Sami as long as either of them is still active."
Rating: 10.0
Sentiment: 0.42261904761904767
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: SJBarneswrote on 30.07.2016:[9.0] "I only give him a 9 as occasionally I feel he does have some baby face tendencies when he is meant to be a heel."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wrestling Foreverwrote on 21.07.2016:[10.0] "Die Bewertung bleibt den er ist auch nun bei WWE NXT genial. Alter Text: Mr Wrestling oder Wrestling's Worst Nightmare ist ein absoluter Allrounder. Der Kanadier kann einfach alles auch trotz seiner Masse High Flying Moves die andere Big Mens nie geschafft haben. Steen hat unfassbar viel Charisma, überzeugt in den Promos absolut, ist sowohl als Face als auch Heel großartig, beherrscht auch Comedy Elemente. Kann auch super brawlen kurzum der Mann beherrscht wirklich alles was man im Wrestling an Stilen beherrschen kann.  Neu hinzugefügt: Nachdem Steen in den Indys alles erreicht hat, überall auf der Welt wrestlet ist er nun bei WWE NXT und macht mit dem dort weiter was er schon in den Indys gemacht hat Wrestler zerstören und Titel gewinnen. Edit 21. 07. 2016 Mittlerweile schon länger im Hauptroster und nun bei RAW. Er macht einfach da weiter wo er bei NXT aufgehört hat und überall ist die Kevin Owens Show."
Rating: 10.0
Sentiment: -0.1474871794871795
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: so291wrote on 21.07.2016:[10.0] "Mein Lieblingswrestler in der WWE. Am Mic der beste zur Zeit, im Ring einer der Besten und sein Charisma der Hammer. Der beste Trashtalker in der WWE (sogar vor Jericho). Hoffentlich sieht auch Vince sein Potenzial und vergeudet sein Talent nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KevinZaynwrote on 23.06.2016:[10.0] "Kevin Owens ist das beste Gesamtpaket der WWE. Er ist im Ring Weltklasse 9, 5/10 , am Mic ist er ebenfalls grandios 10/10 , Charisma und Ausstrahlung sind ebenfalls Main Event Material. 9/10 jeweils"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: AMHTPwrote on 20.06.2016:[10.0] "Kevin Owens is one of the best wrestlers in the world, and has been long before he was on WWE's radar.  He has enormous diversity of character, playing heel or babyface extremely well, though I think his greatest talents lie in the former role.  He's incredible in the ring, moving uncannily well despite his size, and his moveset is fantastic.  Obviously, he's one of the best talkers in the WWE today -- perhaps the best, although Bray Wyatt gives him a run for his money.  But the best thing about Owens is his focus on the little things.  He pays attention to psychology, references past matches and promos both on the mic and in the ring, he adds little elements to his performance to suck every possible bit of hate out of the audience... he's a genius, honestly.  I can hardly think of anything he can't do.  Hardcore stuff?  Sure.  Flying?  He can do it.  Portraying a coward?  Absolutely.  Portraying a monster?  Easily.  This is the kind of guy who can work any gimmick, in any style, at any time.  I'm giving him a 10/10, and he's one of only a couple wrestlers in the world who I would ever rate so highly."
Rating: 10.0
Sentiment: 0.2760666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: sXe27wrote on 20.06.2016:[10.0] "Alles an Kevin Owens ist besonders. Für seine Status ist er extrem agil und kann sowohl den Brawler, Powerhouse oder den Techniker mit High Flying Moves glaubwürdig darstellen. Apropos Statur, die ist auch besonders - sieht nicht aus wie der typische WWE Wrestler, sieht nicht einmal aus wie der typische Independent Wrestler, sondern eher wie ein Amateur-Backyard-Wrestler. Aber das gehört einfach zu ihm dazu, denn wen interessiert es, ob er einen durchmodelierten Körper hat, wenn er im Ring eine Topleistung nach der anderen zeigt, aus jeder Pore seines Körpers das Charisma tropft und er vor allem am Mikrofon an Leute wie Chris Jericho oder CM Punk erinnert. Was er am Mikrofon im Stande ist zu leisten, da können sich andere talentierte WWE Redner immer noch ein Stückchen abschneiden. Sahnepromos als Lernmaterial wie man Promos mit dem perfekten Timing und pointiert rüberbringt. Und wenn man alleine seinen untypischen Körperbau als einzigen Grund aufführen könnte (ich selbst tue es nicht), weshalb er kein Main Event Player und zukünftiger World Champion sein kann, sagt das schon vieles aus, wie talentiert er eigentlich ist, wenn man schon nach solchen Oberflächlichkeiten graben muss."
Rating: 10.0
Sentiment: 0.10888888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Jobbswrote on 17.06.2016:[9.0] "This guy is just so much fun to watch honestly in the ring and out of the ring. I give him all the praise he deserves as he's going to be one of the greatest to come. Owens/Steen has just been phenomenal and his feud with Zayn/Generico is legendary and has span over numerous promotions. I'd give him a full 10 but there has been times where his matches didn't cut it for me."
Rating: 9.0
Sentiment: 0.5357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Franjisewrote on 13.06.2016:[10.0] "Muss ich diese 10 Punkte wirklich erklären? Nun, eigentlich ja nicht, ich mach es aber trotzdem. Kevin Owens hat wie kaum ein zweiter Wrestler die Fähigkeit, mit der Crowd zu spielen und zu interagieren. Er achtet einfach unfassbar auf Details und macht sogar aus langweiligen Rest Hold-Sequenzen etwas unterhaltsames ("Headlock City, Baby"). Darüber hinaus ist er am Mikrofon einfach überragend - ich habe von ihm während seiner ganzen Karriere noch nicht eine schlechte Promo gehört. Im Ring ist er ebenso stark, und das nicht nur "für einen Mann seiner Statur". WWE scheint auch erkannt zu haben, dass Kevin Owens Gold wert ist. Kann man nur hoffen, dass Vince McMahon tatsächlich einmal den entscheidenden Schritt wagt und ihn zum World Champion macht - die notwendigen Anlagen dazu hat er allemal!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: SE Finestwrote on 09.06.2016:[10.0] "When a heel that's a even a heel on twitter (he's really2 mean on twitter if you never see his tweets) , but still receive one of the loudest pop in almost every town he goes just show you how good he is. In-ring ability that can only be match by really few in WWE, a really good mic skills(especially during backstage interviews), can even be funny in the ring without the need to be like Santino Marella, this guy is for sure your future WWE World Champion."
Rating: 10.0
Sentiment: 0.2046875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Alex Maedawrote on 02.06.2016:[10.0] "Einer meiner absoluten Lieblinge. Am Mikro sehr gewandt, kann lustig-albern bis verbissen-böse verkörpern, ist dabei immer mit voller Leidenschaft dabei und liefert regelmäßig starke In Ring-Leistungen ab. Klar vermisse ich auch wie so einige den Package Piledriver, den Steenalizer und andere Moves, die er zu Indy-Zeiten noch regelmäßig auspacken durfte, jedoch ist auch die "abgespeckte" WWE-Version von ihm immer noch ein Glücksfall."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Klabauterwrote on 30.05.2016:[10.0] "Er ist Mr. Wrestling, damit ist eigtl. alles gesagt, was es zu sagen gibt. Zwei Punkte muss ich dennoch abziehen, da er aktuell nicht gebookt wird, wie ein Mr. Wrestling. Allerdings wird er seinen Weg bei WWE gehen. UPDATE (30. 05. 2016): Mittlerweile wird er endlich richtig gebookt! Kevin Owens steht eine gute Zukunft bevor und über kurz oder lang, wird Kevin Owens mit dem WWE World Heavyweight Championship in die Halle kommen und immer noch grandios abliefern. Der Mann ist schlicht und ergreifend perfekt am Mikrofon, im Ring und bringt eine natürliche Ausstrahlung mit. Ihm nimmt man sein Gimmick komplett ab! Auch sehr positiv anzumerken ist seine Aktivität auf Twitter. Er zieht auch dort sein Gimmick durch. Er verdient die Höchstwertung. ZEHN!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: finest0000wrote on 28.05.2016:[9.0] "Über Kevin Owens kann man sagen was man will, aber er ist im Ring für seine Masse einfach klasse. Ich hoffe er kommt noch so richtig in die Topregionen der WWE, denn er hat eine Menge Potential."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: prowrestlingisrealwrote on 26.05.2016:[10.0] "Great with a mic in his hands, good in the ring, very agile and have an awesome moveset, he's not a spot guy like some fellas are saying in the comments, he can produce good matches against anyone, KO is the best thing in that company right now."
Rating: 10.0
Sentiment: 0.733673469387755
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Superfluous Jwrote on 25.05.2016:[9.0] "I'm starting to understand from just being on here for a short time how absurd and ridiculous many wrestling fans are. Most notably the internet trolls who think they can run WWE from their parents basement. I find it baffling people can rate Kevin Owens anything lower than a 5. People on here actually think he is a horrible talker? ! And a "spot" wrestler? ! I don't get it. There's just too many smart marks and picky over analytic people for me sometimes.   He gets an 8 from me. I subtract 1 point for his lazy ring attire. People commenting on his physique are clueless too. These are probably the same people who are CM punk and Nakamura fans (both of whom have everyday guy type physiques). I've seen plenty of jacked, athletically gifted guys who aren't 1/100 of the wrestler and personality Owens is."
Rating: 9.0
Sentiment: 0.028730158730158734
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Movadowrote on 25.05.2016:[9.0] "One of the best. Der Typ ist so unglaublich. Top In Ring Skills, Top Mic Skills, Interaktion mit dem Publikum wie kaum andere, für die Statur zu unglaublichen Sachen fähig (Flip Legdrop) und egal ob als Face oder Heel einfach nur Over. // Update 25. 05. 2016: An den Punkten kann und will ich nichts ändern. Ich hatte schon zu seinen ROH Zeiten eine sehr hohe Meinung zu ihm. Ich bin nur einfach mittlerweile sprachlos wie er es geschafft hat in der WWE so schnell, so weit voran zu kommen. Der miese, kleine, kanadische Pitbull mit hohem technischen Können und einer Klappe irgendwo zwischen CM Punk, Chris Jericho und Rick Rude und selbst das Mainstream Publikum frisst ihm aus der Hand. Einfach unfassbar."
Rating: 9.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Y2J316wrote on 08.05.2016:[7.0] "Bewerte hier mal nur sein WWE Run, denn ich kannte ihn Vorher so gut wie garnicht. Ist jedoch ein Super Allrounder der alles drauf hat. Gutes Mic-Work und auch im Ring ist er ne Wucht. mal sehen wo es für ihn in den nächsten Jahren so hingeht. Hat auf jeden fall das Zeug eine Legende zu werden."
Rating: 7.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mettstetter619wrote on 07.05.2016:[10.0] "10, 0. Bester Heel zurzeit in der WWE. Kann im Ring auch trotz seinem Gewichtes nahezu alles. King am Mic. Hat unglaublich viel Charisma. Ich hoffe, dass er eine lange Fehde mit Zayn führt, da man die Matches von den beiden sich täglich geben kann. Kevin Owens ist auch einer meiner Favourites. Ich hoffe er bleibt lange Heel, da er so großartig als Heel ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: UChucky46wrote on 02.05.2016:[2.0] "A souped up backyarder with day one of wrestling school heel tricks (chin locks don't get heat). Owens' only real skill is that he knows a lot of moves, well I know a lot of words but that doesn't make me a poet. The WWE performance center were at least kind enough to teach him the basic tenets of selling."
Rating: 2.0
Sentiment: 0.05714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Nigglesojanicwrote on 28.04.2016:[9.0] "Macht als Heel unglaublich Spaß im zuzusehen, tolles Mic-Work, toll im Ring. Hat gegen John Cena gezeigt, dass er auch schwächere Gegner zu starken Matches ziehen kann. Mal sehen, was so noch mit ihm passiert."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mandzukic9wrote on 24.04.2016:[10.0] "Kann man solch Bewertungen nicht ausschließen?  Der Typ gibt Owens, Aries, dem Undertaker, Balor, Adam Cole, The Rock, Shawn Michaels, Ambrose, Cesaro, Tanahashi, Jericho und Okada zusammen drei Punkte. Das hat doch nichts mehr mit objektiven Bewertungen zutun...."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: WrestlingNerdwrote on 10.04.2016:[10.0] "Dieser Typ ist einfach Gold wert. Er ist einer der wenigen Lichtblicke die die WWE zur Zeit hat. Natürlich gibt es da noch viele andere talentierte Worker, jedoch zeigt Kevin Owens zur Zeit das beste Gesamtpacket. Wenn man eben nur das Können, Charisma und MicWork heranzieht, denn vom Look her, entspricht er sicherlich nicht dem idealbild eines Wrestlers. Aber er versteht es einfach sich so darzustellen, dass es eben genau passt. Er spielt super in den Matches mit den Gegnern und wie er oft auch das Publikum mit einbezieht herrlich. Manchmal muss man auch einfach schmunzeln, wenn er ein Interview gibt oder eine Promo hält, weil er halt auch versteht etwas Humor mit einzubauen. Vom können im Ring muss man ja auch nicht reden, da ist er trotz seiner eher untypischen Statur wohl wirklich einer der Top 10, wenn nicht Top 5 der aktuellen Leute.  Ich sehe ihn früher oder später auch als einen World Champion, da er einfach nahezu alles mit bringt, nur eben nicht den Look den ein VKM jr. bevorzugt, aber unter HHH könnte ich es mir dann doch schon vorstellen. 10 Punkte."
Rating: 10.0
Sentiment: 0.4444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: blackmileswrote on 28.03.2016:[10.0] "Als ich Kevin Owens bei Smackdown auf Pro7 Maxx gesehen habe im vergangenen Sommer und noch nicht auf so Seiten wie Cagematch unterwegs war habe ich mich mich gefragt ob ich der einzige bin der Owens so feiert. Wie es sich herrausstellte hatte Vince nur wieder auf den BUU Knopf gedrückt. Sein In-Ring können finde ich jetzt nichtmal sooooooo gut wie es alle reden. Ich finde es solide. (8/10) Aber am Mic ist er eine 1000000000000/10. Dieser Typ gehört in den Main-Event gepusht.   Believe That"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: jac0bmillerwrote on 27.03.2016:[10.0] "Kevin Owens/Steen has been one of the very best in the ring for a very long time but he may be a bit spotty at times. Kevin Owens has a great connection with the crowd. He makes every rivalry he is in, a must see rivalry, and is one of the greatest of all time."
Rating: 10.0
Sentiment: 0.6837500000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: oscargeorge1wrote on 23.03.2016:[9.0] "The only true genuine heel that WWE currently have (i'm not counting the joke that is the League of Mid-Carders). Wrestling ability, promos he has got the lot, he needs to be at the top of the tree. There are currently few wrestlers in WWE that can wrestle in a main event of a show, Owens is one of them."
Rating: 9.0
Sentiment: 0.17380952380952383
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: siddyboywrote on 22.03.2016:[10.0] "The guy can wrestle, fight, speak, trash talk. He has all good qualities of a heel and Im just waiting for him to be in the main event picture. WWE really need guys like him."
Rating: 10.0
Sentiment: 0.35555555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Psychospherewrote on 09.03.2016:[10.0] "Kevin F'N Steen is the most evil motherfucker in wrestling and is having the career of his life in WWE. Apart of one of my favorite feuds with El Generico."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Longa-46wrote on 27.02.2016:[10.0] "In der Indy Szene einer der besten. In der WWE momentan für mich ebenfalls. Für seine Statur sehr beweglich und ohnehin im Ring sehr gut. Was er für Moves drauf hat ist Weltklasse. Am Mic ebenfalls klasse und es macht Spaß sich seine Promos und auch Interviews mit anzuhören. Klasse Ausstrahlung und für mich momentan einer der besten in der WWE. Ich hoffe dass er eine gute Zukunft in der WWE hat, seine Main Event Chancen bekommt und eine Chance auf den WWE World Heavyweigth Title bekommt."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: tumult mattwrote on 26.02.2016:[10.0] "Best heel currently in the game and one of the best heels ever with as much as he still has to prove as a main eventer."
Rating: 10.0
Sentiment: 0.3277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Chyonofujiwrote on 20.02.2016:[10.0] "In ROH war er sicher weit interessanter. Da ich die WWE aber nur nebenbei verfolge, wenn ich gerade mal Zeit und Lust habe, bleiben mir die Matches aus den Indy-Zeiten gut in Erinnerung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TheLoudMouthwrote on 18.02.2016:[10.0] "Der wohl unkonventionellste Worker der WWE derzeit. Einen Körper, der dem Mainstream nur so trotzt, und dennoch unfassbar starke Skills machen Steen/Owens aus. Top im Ring, top am Mic, tolle Ausstrahlung. Er kann und wird es in diesem Business noch weit bringen!"
Rating: 10.0
Sentiment: 0.5625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: maskanilwrote on 11.02.2016:[9.0] "He probably the best heel since CM Punk. What he does in the ring is always amaze me and he truly a masterpiece in microphone. I'm sure that in 2 years he'll be the WWE Champ and succesfully will be the heel face of the company."
Rating: 9.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JulDBreakdownwrote on 04.02.2016:[10.0] "The Best There Is, the Best There Was, the Best There Ever Will Be and the truly best in this fn world #bestintheFNworld he is the man!  keiner vesteht so viel vom wretling heutzutage wie er go and watch some stuff from the "goldenages" and you know what i mean #pushhimtotheskies"
Rating: 10.0
Sentiment: 0.7375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Dagmerwrote on 01.02.2016:[7.0] "Starker Typ. Beweglich, kräftig und charismatisch. Hat wiederholt gezeigt, das er im Stande ist gute Matches abzuliefern. Gehört aktuell zu den besten Wrestlern der WWE. Unentbehrlicher Bestandteil der heutigen Midcard, zum Main Eventer reicht es aber noch nicht."
Rating: 7.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JPowerswrote on 31.01.2016:[10.0] "He’s amazingly agile for a big man, as demonstrated by the speed and beauty of his moonsaults. He’s also a sound technician in the ring, strong and fast in his action. He throws a suplex just as mean as Brock Lesnar does. But he’s also so over because of his fantastic mic work. His mannerisms and character work are sublime, constantly selling intensity and feeling. With strong selling merchandise and loud crowd reactions, he’s got a very bright future, and is already the second biggest heel in the entire company."
Rating: 10.0
Sentiment: 0.21094444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Naruedyohwrote on 26.01.2016:[10.0] "This is a great wrestler. Knows how to fight, can make great matches if let to have them, the gimmick is exceptionally well made and very realistic, we all can see us in Kevin Owens"
Rating: 10.0
Sentiment: 0.6208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Doctoriusefulwrote on 26.01.2016:[8.0] "Seine Zeit in den Indies kann ich nicht beurteilen. Was ich bis jetzt von ihm in der WWE gesehen habe hat mich allerdings schon jetzt zu verdienten 8 Punkten überzeugt. Und da man ihm so schnell den IC-Titel gegeben hat, wird sich die WWE wohl viel von ihm versprechen. Jedoch ist er rein von der Statur her, mit seinen 1, 78m und recht pummeligen 119 kg, wohl nicht der Typ den Vince als WHC sehen will. Ich bin gespannt. :)"
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Dilbertwrote on 20.01.2016:[8.0] "Ich mag seinen Charakter nicht besonders (was zeigt, dass er funktioniert, er ist mir nur etwas zu eintönig). Für seine Statur (quadratisch, praktisch gut) ist er erstaunlich schnell und beweglich, Kraft hat er ja eh, und was er in und um den Ring zeigt ist voll überzeugend. Diese doofen Aktionen des "aus dem Ring verpieseln wenn es Kloppe gibt" finde ich etwas zu berechenbar, die bräuchte er nicht um seiner Rolle als fieser Prügelwürfel gerecht zu werden. Zudem geht damit oft viel von der Matchathmosphäre verloren, wobei natürlich klar ist dass die Jungs bei dem was sie da treiben zwischendurch auch mal durchatmen müssen (jeder "normale" Mensch würde sein Dasein nach nichtmal 1/4 der Aktionen entweder wochenlang in der Reha oder auf alle Ewigkeiten im Sarg verbringen). Sehr gute Brawler, technisch dafür sehr beschlagen und ein prima Heel, doch der letzte Kick fehlt noch."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Reezerwrote on 17.01.2016:[10.0] "Owens gehört für mich zu den Top 3 des Rosters und hat alles was einen guten Heel ausmacht. Super Moveset (besonders für seine Statur), ein guter Trashtalker, eine recht eigenwillige Optik und immerwieder gute Interaktionen mit dem Publikum.  Ich könnte Ihn mir auch gut als Monster vorstellen, aber da geht ihm evtl. noch die Präsens gegenüber Jemandem wie Lesnar ab, nichtsdestotrotz Jemand der (in Hinblick auf die aktuelle Verletzungsmisere) definitiv weiter gepusht werden sollte."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: SteveTheBeastwrote on 12.01.2016:[10.0] "Einer meiner absoluten Lieblingswrestler. Er ist ein sehr guter Wrestler, der trotz seines Gewichts und seiner Statur anspruchsvolle Moves machen kann. Sein Micwork ist auch absolute Spitze. Er ist einer der besten Trashtalker die es gibt. Würde ihm die WWE ein bisschen mehr Freiraum gewähren, dann würden wir wahrscheinlich Zeugen, von absolut göttlichen Promos werden. Nur leider wird er wahrscheinlich nie etwas großes, weil Vince ja eher die großen, muskolösen und starken Typen will. Naja schade, aber wir werden ja sehen, wie sich das entwickelt."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kevin Owensteenwrote on 12.01.2016:[10.0] "Kevin Owens ist so ziemlich perfekt in absolut allem was er macht. Er ist fantastisch im Ring, unglaublich unterhaltsam am Mikrofon(oder wann auch immer er irgendetwas sagt)und kapiert vor allem die kleinen Dinge so gut. Er beleidigt das Publikum während seiner Matches, gibt immer irgendwelche Kommentare ab die jemanden zum Lachen bringen und ist der einzige Heel in Eeeeeeeeeewigkeiten der eigentlich mit dem Publikum während seines Einzugs interaktiert. Vielleicht erniedrigt er jemanden oder starrt einem Cenakind kalt an. Was auch immer der Kerl ist fantastisch und ich hoffe die WWE macht ihn irgendwann zum Main-Eventer. Ich find es aber blöd, dass Leute sich über sein Gewicht beschweren und etwas abnehmen sollte, aber das ist ja das besondere an ihn:Der Kerl sieht nicht mal annähernd aus wie ein Athlet kann aber trotzdem Dinge wie Moonsaults und Senton Bombs makellos hinkriegen und ist generell für seine Größe unglaublich beweglich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JeMewrote on 11.01.2016:[9.0] "Ein großartiger Pro-Wrestler. Am Mic immer wieder eine Klasse für sich, im Ring sehr variablen und mit guter Workrate. Sicher nicht der beste Wrestler aller Zeiten, aber vom Paket her, einer der besten aktuellen Worker bei WWE. Sein Look sollte nichts zur Sache tun, insebsondere Heels sollten "hässlich" sein. Wrestler wie Mick Foley haben gezeigt, dass Look bei WWE oft genug überschätzt wird. Leider Gottes wird er bei WWE niemals die Chance bekommen sein ganzes Können ausspielen und in Main Event zu headlinen."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: J0KERwrote on 06.01.2016:[10.0] "Am Mic einer der besten Trash Talker! Im Ring hat er nahezu jedes Stil drauf zeigt High Flying Aktionen bisschen Technick und Powerhouse Moves. Hat mit Cena richtig gute Matches gezaubert wie kaum ein anderer. Charisma hat er auch auch wenn es paar nicht zugeben.   Eine Bewertung unter 5 zu geben ist eine Frechheit gegenüber diesen großartigen Mann der noch großartige Matches bestreiten wird.  Tja paar haben wohl Probleme bzw. denken das "fette" Leute nichts in der WWE zu suchen haben.  Foley, Bam Bam Bigelow und viele andere Legenden würden euch gerne in euer Gesicht spucken ;)  Schämt euch."
Rating: 10.0
Sentiment: 0.20500000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: awesomepunkwrote on 09.12.2015:[9.0] "Top Wrestler. Charismatisch, sehr gut im Ring mit vielen Moves. Starke Promos. Hat das Potential zum Maineventer."
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Blackout501wrote on 03.12.2015:[10.0] "Kevin Owens is without a doubt one of the best wrestlers on the face of the earth. He has a unique look, he's incredible in the ring and he is untouchable on the mic. But the best thing about Kevin Owens is all the little things he does in the ring to antagonize the crowds that really set him apart from any other heel currently working."
Rating: 10.0
Sentiment: 0.3953125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Giant2wrote on 21.11.2015:[8.0] "Leute, was redet ihr für einen Unsinn? Es ist Wrestling ! Scheißegal wie der Typ aussieht. In den Neunzigern liefen die Wrestler in Clowns-Kostümen, als Klempner, Cowboys oder sonstwas rum und keinen hat es gejuckt. Kevin macht momentan einen guten Job als Kampfsau, die gehasst wird und das ist Sinn der Sache. Und Athletik, also bitte... Schon mal Dick Murdoch gesehen oder Terry Gordy ?"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Penkerwrote on 20.11.2015:[2.0] "Ich PERSÖNLICH finde ihn mehr als overrated. Hat für MICH weder den Look, noch das Charisma noch sonst was, um wirklich mal in die Main Event Riege aufzusteigen. Das wird sich wohl bei Zeiten auch nicht ändern. Da sollen sie mal lieber andere Talente statt Kevin Steen pushen. Bin mal gespannt, wielange die WWE an ihm festhält.   @Mandzukic9: Oh man. Immer diese Leute die meinen, dass man sich ein anderes Hobby suchen soll, nur weil man Person X nicht mag. Ich persönlich habe nicht nur ein paar Jahre WWE geguckt (verfolge es seit 1999 regelmäßig) sondern u. a. auch WCW, ECW, TNA, RoH, CZW, JCW, Lucha Underground, AAA, CMLL, NJPW, DDT und sogar Wrestling Society X. Ja, ich habe Kevin Steen auch schon zu seiner RoH-Zeit verfolgt. Aber ich PERSÖNLICH fande ihn da auch schon sehr overrated. Außerdem habe ich eine SUBJEKTIVE und keine objektive Meinung abgegeben, also bleib mal ganz entspannt ;)"
Rating: 2.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: RainmakerF7wrote on 11.11.2015:[10.0] "As Kevin Steen, he spent soo much time in the indys. He started there 15 years ago, and when he left ROH last year, people described him as a MR. Wrestling. He 's not been in WWE even a full year and he's already won NXT title, then beat JOHN FUCKING CENA CLEANLY and then won IC title. Now, there is a big chance we'll see Owens win a WWE WHC title at SS. Who knows? Owens is a tremendous brawler, but can also pull moves like Moonsault or 450 Splash. He can tell a great story in the ring, his facial expressions are awesome, he oozes charisma, he is a great heel, he is awesome on the mic. That is what you call total package. He is not as muscular as Cena or not as big as Super Roman, but I don't give a fuck. He is one of the best wrestlers in the world now. 10/10."
Rating: 10.0
Sentiment: 0.2706349206349206
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: DanielBryan1986wrote on 07.11.2015:[8.0] "Vorab einige Kritiken kann ich nicht verstehen. Ich bin seid 1994 Fan, habe Wrestler kommen und gehen sehen. Vor ca. 5Jahren hieß es noch es kommt nichts neues in den Main Event. Nun sind wir 2015 und dieses Problem ist angegriffen worden. Es wurde durch NXT viel gutes raus gebracht doch die WWE schafft es nicht richtig gute auch mal gescheit einzusetzen. Anders bei Kevin Owens, er ist Powerhouse und hat wesentlich mehr Charisma wie Batista(nach seinem Comeback), Big Show und Rusev zusammen. In seinem ersten Klassiker gegen Cena hat er sich super verkauft. Selbst gegen Ambrose kann er überzeugen. Für mich noch kein Main Event Material aber das muss er in seinem ersten Main Roster Jahr auch nicht sein."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: wordflyerwrote on 30.10.2015:[10.0] "Seriously one of the best in the business in terms of character work and in-ring ability. He might be as buff as Vince McMahon normally like them, but he's overcome that to still be a top heel in the top company. He's got a massive move-set, but knows how to use it correctly to build tension. Also sells very well. His program with Cena in 2015 was truly special, with the PPV matches being true match of the year candidates."
Rating: 10.0
Sentiment: 0.3026455026455027
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Undertaker-Showwrote on 19.10.2015:[5.0] "Ich muss Sascha Legendkiller zustimmen. Kevin Owens ist für mich ein Mittelmäßiger wrestler, aber auf keinen Fall ein Main Eventer. Er hat für seine Statur ein paar gute Moves drauf. Aber das war es dann auch schon. Ihm fehlt es an Charisma. Er ist total überbewertet und wird viel zu viel gepusht finde ich. Ich meine es wirkt einfach nur unrealistisch das er John Cena gleich am Anfang besiegt, einen deutlich stärkeren Ryback usw. Das kauft man einfach nicht ab finde ich. Denn er ist sehr klein für sein Gewicht. Die 5 Punkte sind für seine beweglichen Moves."
Rating: 5.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Sascha Legendkillerwrote on 16.10.2015:[4.0] "Rooney DX dein Ernst? So jemand wie Kevin Owens ist kein Wrestlemania und/oder Mainevent Material. Das ist einer der Gründe warum die WWE immer weiter abstürzt, weil sie die falschen Wrestler pushen die nie groß rauskommen werden z. b. Rusev, Kevin Owens, Ryback,  the Wyatt Family...."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: RooneyDXwrote on 26.09.2015:[10.0] "Kevin Owens beweist jede Woche dass er in den Main Event gehört. Man braucht keinen Brock Lesnar um die massen anzuziehen, Owens gegen Cesaro oder Rollins, Reigns, Ambrose. So viele Klasse Typen die WM Main Eventen könnten. Fight Owens Fight!"
Rating: 10.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Koernelwrote on 23.09.2015:[10.0] "Ich muss zugeben, ich kannte ihn bei ROH nicht weil ichs nie schaute (gilt auch für Bryan und Cesaro jetzt), doch das hole ich wie bei den beiden anderen sicher nach. Er ist ein erstklassiger Heel der seinen Ar***loch-Charakter so perfekt spielt, dass ich ihm den als einzigen sogar ab und an abkaufe. Micwork ist einzigartig, hat man so lange nichtmehr gesehen, und im Ring zeigt er enorm attraktive Matches. Zudem muss man ihm zugute halten, wie beweglich er für seine Figur ist. Dass er den IC Titel gewinnen durfte, war genau der richtige Kompromiss zwischen Push und fallen lassen. Den Typen seh ich eines Tages an der Spitze - zuvor aber bitte Cesaro!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: WWEReignsRuleswrote on 21.09.2015:[8.0] "Ich muss zugeben ich war Anfangs kein Fan von ihm aber seit der Fehde mit Cena, gefällt er mir immer besser. Die Matches sind einfach der Hammer tolle Moves ich hoffe es kommen noch Matches gegen Seth Rollins. Traummatch!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Legendkiller96wrote on 20.09.2015:[10.0] "Kevin Steen ist Awesome, zu dem Kommentar da unten kann ich nur den Kopf schütteln, ja er ist nicht austrainiert aber er ist ein absolutes Biest und hat wohl das größte Charisma von allen, vorallem als Heel ist er begnadet. Und ja dann solltest du dir RoH angucken @DerDennis. In Ring Fähigkeiten sind sehr stark und ja manche können auch kein Purzelbaum, und es ist so umfassend, das darf natürlich nur beschränkt in der WWE zeigen. Steen muss ein World CHampion werden, wird er aber momentan nicht wegen Dunn. Schade aber wahr trotzdem 10 Punkte für einen der besten Wrestler der Welt."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: DerDenniswrote on 20.09.2015:[4.0] "Ich kann mit KO nichts, aber wirklich gar nichts anfangen. Er hatte eine solide Fehde mit Cena gehabt, danach fand ich ihn sehr langweilig und ziemlich nervig... Ich bin froh, dass er nicht weitergepushed wurde und ich hoffe das bleibt auch weiterhin so. Klar, man kann gute Wrestler nicht an seinem Aussehen ausmachen, aber er hat keine Ausstrahlung und sieht einfach aus wie ein dicker Hamster, der jeden Abend mit seinen Trucker-Kollegen in einem Diner einkehrt. Ich kenne ihn nicht aus seiner Vorzeit oder aus NXT, aber ich schätze mal, mit Charisma war er auch damals schon nicht so gesegnet...  Abschließende Worte: Der Cannonball ist auch nur ein Purzelbaum... so viel zu seinem krassen Moves..."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Jushin Thunder Leonwrote on 31.08.2015:[9.0] "Einer der besten des gesmaten WWE Rosters momentan. Was KO an Moves raushaut ist absolut wahnsinn, am Mic absolut lässig und Badass, und aufgrund seiner Statur zuemlich einzigartig. Seine aktuelle Darstellung geht mir jedoch ziemlich auf den Geist (wenn die Fans schon Walk Owens Walk chanten, sagt dass dich schon alles) aber da kann er ja nichts für."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mizzle Assault Antwrote on 29.08.2015:[10.0] "Long been a fan of Steen, and his ability to rocket up the ranks in WWE is just more proof. The man is a natural and cares deeply about what he does, to the point where his unconventional build not only fails to hinder him but actually makes him stand out even more. Hopefully WWE keeps his momentum strong."
Rating: 10.0
Sentiment: 0.10925925925925926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wrestlingyoucefwrote on 26.08.2015:[10.0] "Kevin Steen/Owens is an unbelievable talent, he's an all time great in my opinion, amazing mic skills, phenomenal in-ring work, he's very charismatic, and he's one of the best heels you'll ever see."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: KimboSlicewrote on 11.08.2015:[10.0] "Was soll man zu KO noch großartig sagen? Ein kompletter und einzigartiger Wrestler. Einzigartig in dem Sinne, dass er Moves (sauber! ) ausführt welche man ihm mit seiner Statur gar nicht zutraut. An Charisma mangelt es Owens überhaupt nicht und am Mikrofon ist er verdammt souverän. Im Ring eine gute Mischung aus Powerhouse, Highflyer und Techniker. Der Push von Owens scheint zwar derzeit auf Eis gelegt worden zu sein aber ich bin mir sicher dass das nicht dauerhaft ist. Dafür ist er einfach viel zu gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Josh76wrote on 10.08.2015:[10.0] "Pulls off the most insane moves for a man of his size, Fight Owens Fight, is someone I always look forward to seeing on the WWE roster."
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Strikerwrote on 06.08.2015:[10.0] "Technisch gibt's überhaupt nicht zu meckern. Er beherscht zahlreiche Moves ausnahmslos perfekt und seine Matches sind immer wieder ein vergnügen anzusehen. Ich finde aber er ist wirkt ziemlich unsympatisch, was mich nicht stört weil ich meistens das blabla bei der WWE sowieso überfliege und mir nur die Matches ansehe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BadHawk26wrote on 24.07.2015:[8.0] "Absolutes mega talent schade das der hype vorbei ist er ist trotz seines bauches sehr beweglich ich finde ihn sollte pushen anstatt wieder die alten wwe leute zurück zu holen"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: FriarFergusonwrote on 21.07.2015:[9.0] "Ein Mann mit natürlicher Coolness, einer der wenigen, die es schaffen, authentisch ans Mic zu gehen. Bei ihm muss ich, anders als bei so vielen, nicht meine Phantasie bemühen, ihm das Gesagte abzukaufen. Im Ring gefallen mir besser als das große Moveset all diese kleinen Details, für die man genau hinsehen muss und die ihn als fiesen Bully im Ring verkaufen. Glaubwürdig trotz Wampe aufgrund der toll verkauften Barschlägermentalität aufgebessert durch coole Aktionen und High Spots. Hab Spaß an dem Jungen!"
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MastiWWEwrote on 06.07.2015:[10.0] "Kevin Owens hat hier klar 10 Punkte von mir bekommen weil Er hat sehr gute Micwork skills Er hat mal eine Fehde zwichen Hideo Itami gehabt und hat sich versprochen und sagte Meinte Mein Englisch ist so schlecht wie das von Hiedeo Itami Anstonsten noch ein richter guter Wrestler er schafts sogar ein Moonsoult mit seinem Gewicht respekt! und ein gutes Gimmick hat er auch noch!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Jack Slaterwrote on 05.07.2015:[10.0] "Wenn ich die totale Freiheit hätte einem Wrestler ein Moveset zu basteln (bei einem Videospiel z. B. ) so würde es fast genau so aussehen, wie das von Mr. Wrestling! Der Steenalizer oder der Package Piledriver stechen da natürlich besonders hervor und sehen einfach mal so böse aus. Dazu kommt sein unendliches Charisma und sein sehr starkes Micwork. Seine Fehde mit El wird wohl jedem Wrestlingfan lange in Erinnerung bleiben. Ganz ganz großer Wrestler. Leider komme ich nicht dazu sein Werk aktiv zu verfolgen und weiß nur selten was der grade so macht aber von dem was ich weiß bin ich restlos begeistert. Würde Ihn gern auf der großen Bühne sehen, egal was die hardliner unter den Fans denken mögen.  Edit: Er ist nun seit ner Weile in der WWE und tja. Ist das beste was die WWE zu bieten hat. Da kommt noch ein Punkt dazu."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: sign squadwrote on 25.06.2015:[7.0] "DER T-Shirt Wrestler vor dem Herren. Fand ich ihn von 2004 bis 2010 wirklich klasse und unterhaltsam hat sich seit dem nichts positives in seiner In-Ring Ability getan. Stattdesssen hat er inzwischen das Gimmick eines Loose Cannon, welches in keinster Weise etwas positives bei mir auslöst. Es ist mehr die berühmte Go-Away Heat. Ich hab seit Monaten keinen Bock, mir seine Matches anzusehen. Neben der großen Schnauze die er ja ganz gut hat und die einen kichern lässt, ist er mir im Ring viel zu unbeweglich. Mag sein, dass die 20 Kilo mehr ihm in Sachen Bumps helfen, nicht so viel Schaden anzurichten, doch gefallen kann es mir absolut nicht. Mit diesem Look und diesem Standard den er sich erarbeitet hat, wird er nie über ROH und die Indies herauskommen. >>> Tja, nu isser in der WWE und den aktuellen Job macht er mehr als nur sehr gut. Hätte ich nie mit gerechnet, doch die zwei Matches mit Cena, die Präsenz die er bei den RAW Shows hat ist alles so viel besser als ich es je gedacht hätte. Ein bischen WWE Justierung hat seinem Gimmick sehr gut getan."
Rating: 7.0
Sentiment: -0.10256410256410257
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: FateBreaker46wrote on 16.06.2015:[10.0] "Best heel in wrestling today. Outstanding promo work, mind blowing athleticism and wrestling ability. Kevin Steen was quite a pick up by WWE, even I didn't think that he would achieve this much success in the WWE in such a short time."
Rating: 10.0
Sentiment: 0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MrDXW1213wrote on 13.06.2015:[9.0] "Kevin Steen, also known as Kevin Owens, is one of those guys that has it all. He's a great brawler, who has won the Bruiser Brody Award three times in a row. He can do moves that crusierweights and Jr. Heavyweights can do. And he has a variety of moves in his arsenal. He can talk very well on the mic, as evident by his last run in ROH and his stuff with John Cena. His matches in PWG, His fued with Generico and S. C. U. M. , and his latest fueds with Zayn, Joe, and Cena, shows he can really work a story. He has a meanstreak that is very believable and that's why I believe that he can be WWE Top Heel for years to come."
Rating: 9.0
Sentiment: 0.3875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: 8BitLegendwrote on 12.06.2015:[6.0] "Fällt für mich in die Kategorie "Jogginghosen-Wrestler". Quasi ein Tommy Dreamer 2. 0, nur ein wenig smarter und technisch versierter. Ich sehe natürlich was man an ihm finden kann und verstehe auch, dass er in den Zeitgeist passt. Dennoch repräsentiert er nicht das klassische Bild eines Wrestlers und legt mir zu viel Understatement in die Waagschale. Zudem ist er immens überpusht. Der NXT-Titel hätte erst mal gereicht, da muss man nicht auch noch direkt den größten Star an ihn verfüttern."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Blade Bourdeauxwrote on 09.06.2015:[8.0] "Mit seinen Impacts bei NXT und auch im Main Roster hat er alle Vorgänger mal locker getoppt. Der Sieg gegen Cena nach Cover zeigt wie viel die WWE in ihm sieht. Was er im Ring zeigt ist brutal gut und er erinnert mich ganz stark an Mick Foley vom Typ her. (Jetzt weniger auf sein Moveset bezogen) 8 Punkte für den Anfang wobei es vermutlich aber nicht bleiben wird."
Rating: 8.0
Sentiment: -0.3027777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: badboy88wrote on 08.06.2015:[10.0] "zuerst mal zu dem Kommentar, von diesem Hanswurst der kein Plan vom Wrestling hat. Owens kann alles im Ring jeden Stil mitgehen, Zerstörerausstrahlung und geiles Micwork und kein typischen WWE Look, was ich auch gut finde."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: NaGoyah09wrote on 30.05.2015:[10.0] "Hoffe er kann meine erwartungen erfüllen wenn er jetzt im Main Roster komplett antritt, ihm fehlt eigentlich nichts mal sehen was die WWE aus ihn macht."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: downtown2wrote on 25.05.2015:[9.0] "Steen/Owens weiss schon seit Jahren zu überzeugen und zwar in allen relevanten Belangen. Seine Arbeit im Ring hat immer den Look eines "Big Fights", also genau so, wie man als Pro-Wrestler im 21. Jahrhundert neben der UFC noch nach einem echten Kämpfer aussehen kann. Noch beeindruckender sind allerdings seine Aura und seine Arbeit mit dem Publikum, sowie am Mikro. Die Chemie die er scheinbar mühelos, ja fast schon beiläufig, entstehen lässt, ist nichts geringeres, als der oft beschriebene "It-Factor", den ein Mega-Star braucht, um eben dieser zu sein. Einzig allein seine komische Plauze stört doch gewaltig, unverständlich warum er sie nicht mal abarbeitet."
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: DieOffenbarungwrote on 25.05.2015:[10.0] "Fight Owens Fights. :D Den Namen hätte man jetzt nicht unbedingt ändern müssen, aber die Zukunft dieses Herren sollte echt enorm groß sein. Für diese Zukunft 10 Punkte. :)"
Rating: 10.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Ray Robsonwrote on 21.05.2015:[5.0] "Kann bestimmt alle Moves. Aber die sinnvoll aneinander zu reihen ist nicht so sein Ding. Mangel in Punkto Matchaufbau, auch wenn es sich über die Jahre leicht verbessert hat. Dafür stark im Crowd Working. Sorry, aber ich werde wohl nie ein Fan von ihm. In meinen Augen extrem überbewertet."
Rating: 5.0
Sentiment: -0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: yanuswrote on 26.04.2015:[8.0] "Very charismatic wrestler and surprisingly nimble in the ring. For a "powerhouse" he really lacks height (which will be a problem on the main roster)."
Rating: 8.0
Sentiment: 0.4291666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: DanTalksRasslinwrote on 26.04.2015:[10.0] "Not only a fantastic brawler but also possesses a keen understanding of the psychology of wrestling and is capable of combining elements of technical wrestling and even a bit of speed/high-flying-based offense for a unique and adaptable style.  Always a great promo as well, with that sort of nonchalant attitude working as either a face or a heel (summed up perfectly in his ROH theme song: "it's nothing personal - I just don't care").  It was a bit surprising that WWE picked him up in the first place as his look doesn't fit the stereotypical "WWE type, " but his talent is undeniable."
Rating: 10.0
Sentiment: 0.3020833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MusSanwrote on 25.04.2015:[10.0] "Kevin Steen, der beste Brawler der Welt. Seine Fehde damals gegen El Generico(Samy Zayn) war legendawer. Jetzt fehdet er als Kevin Owens wieder gegen Samy Zayn. Hoffentlich feheden sie irgendwann mal im Main Roster gegen einnander."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Swenson 238wrote on 12.04.2015:[10.0] "KILL STEEN KILL! Seine Zeit bei ROH war die beste seiner Karriere und der Typ ist einfach der geborene Heel. Für seine Statur ist er schon fast ein kleiner Highflyer und sein Indie-Moveset war mehr als sehenswert. Ich hoffe die WWE behält ihren jetzigen Kurs bei und kann Kevin Owens mit diesem Hintergrund irgendwann in die Main Shows schicken, wo er sicherlich schnell Fuß fassen wird. Ich gönne es ihm in jedem Fall!"
Rating: 10.0
Sentiment: 0.20416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Phenomenal91wrote on 21.03.2015:[10.0] "Of all the guys to ever come out of Ring of Honor, he seemed the LEAST likely to succeed in the world of sports entertainment. But ever since he came to WWE, guys like Stone Cold and The Rock have been putting him over as the Next Big Thing. As well they should, because Kevin is one of the best brawlers in the world today. He was great in ROH, and ROH is definitely missing him. Only time will tell if Kevin will follow in the footsteps of CM Punk and Daniel Bryan and achieve success on his own terms in the largest wrestling company in the world."
Rating: 10.0
Sentiment: 0.14545454545454548
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BMwrote on 25.02.2015:[10.0] "Seit ich ihn 2006 zum ersten Mal live gesehen habe, hat er mich absolut überzeugt. Damals schon in so jungen Jahren so verdammt gut. Heute bei NXT definitv ein Grund einzuschalten!"
Rating: 10.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wrestlingfan96wrote on 20.02.2015:[10.0] "Mag ich Kevin Steen? NATÜRLICH MAG ICH KEVIN STEEN. Er kann verdammt gut wrestlen, ist witzig, ist gut am Mic und spielt seine Rollen super- gerade wenn er Heel is. Freue mich schon auf seine Matches mit Sami"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: GoToSleepwrote on 05.02.2015:[10.0] "DER beste Indy Wrestler der letzten 5 Jahre. Wenn man einem nicht Wrestling Fan ein Bild von Kevin Steen zeigst, er wird nie darauf kommen das Steen eine Indy Legende ist. Aber genau deshalb ist er so besonders. Trotz dem Bauch ist er im Ring sehr beweglich und er kann einen guten Highflyer mit Powermoves abgeben, oder halt den Zerstörer, dem alles scheissegal ist und der jeden glaubhaft kaputt machen kann. Auch am Mic ist er überragend und er ist eigentlich immer unterhaltend also bitte WWE versaut es nicht, ihr habt da ein Ausnahmetalent."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: RavenEffectwrote on 27.12.2014:[9.0] "YES. I've been really looking forward to rate Kevin Steen/Owens. I've been huge fan of his work ever since he became big name in indies like ROH or PWG, where his series of matches with El Generico himself were quite a memorable. And more memorable was the impact he made when debuted at NXT Revolution by powerbombing Sami Zayn/El Generico. He will be great addition to NXT roster, and even better in couple of years, when he gets called up to main roster, as his potential is off the charts."
Rating: 9.0
Sentiment: 0.3566666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: zackwoowoowooryderwrote on 14.12.2014:[10.0] "Einfach super der Typ richtig stark im Ring, ich muss gestehen ich habe noch nie einen seiner Statur so durch den Ring fliegen sehen. Ausstrahlung hat er auch jede Menge und Mic-Fähigkeiten liegen auch weit, weit über dem Durchschnitt."
Rating: 10.0
Sentiment: 0.06666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Viper99wrote on 14.12.2014:[10.0] "Der Kerl kann trotz seiner Statur alles! Er kann High Flying spots zeigen, er kann Brawlen oder auch ein sehr sehr Technisch hochwertiges Match zeigen!"
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: eldenaaaaawrote on 01.09.2014:[10.0] "When Steve Austin endorses a guy, you should pay attention. I first saw Kevin Steen wrestle for Jersey All-Pro back in 2004 and I was impressed. Fast forward nine years and “Mr. Wrestling” has evolved into the total package. While he might not fit the typical physical specifications for a wrestling…who the hell cares. Steen has a great, high-impact style that brings me back to the days of ECW when Joey Style would scream “OH MY GOD” after a big move. Steen probably has at least 15 OMG moves in his arsenal. His personality in the ring as a smart-mouthed, brutal son of a bitch is such a breathe of fresh air in today’s scene as so many guys seem like faceless high spot machines. On the mic and out of the ring, Steen has this charming, funny and enthralling personality. If you’ve never watched his “Weekend Escapades” on YouTube, check it out and you’ll see exactly what I mean. Mark my words if the WWE is smart and signs this guy, he’ll be printing money for them."
Rating: 10.0
Sentiment: 0.12591450216450217
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: HottRoddTXwrote on 20.07.2014:[10.0] "Extremely agile for his size. Hope WWE uses Steen properly, but what am I'm saying? Of course WWE is gonna have him be used poorly. Hope not."
Rating: 10.0
Sentiment: 0.033333333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Nino96wrote on 21.06.2014:[10.0] "Kevin Steen! Meiner Meinung nach aktuell einer der Besten der Welt! Seine In-Ring Fähigkeiten sind unfassbar gut. Wenn jemand seiner Statur die Ringecke aufsucht um einen 450Splash zu performen, dann bekommt man nicht nur Gänsehaut, sondern auch einen einmaligen Gesichtsausdruck. Mic-Skills und Selling sind auch klare 9-10 Punkte! Nun wagt er sich den riskanten Schritt der WWE beizutreten. Aber im Gesamtpaket sind es mehr als 10 Punkte! KILL STEEN KILL!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MrJamesssswrote on 05.06.2014:[9.0] "Brutal and charismatic, he's definitively my favorite wrestler in US indies. Sure he's fat, but his monstrous attitude makes him entertaining. His "love and hate" relationship with El Generico brought very good moments in the business."
Rating: 9.0
Sentiment: 0.21687499999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: rockcitizenwrote on 05.06.2014:[10.0] "Genialer Wrestler. Obwohl man es ihm athletisch vielleicht auf den ersten Blick nicht zutraut, ist er für mich ein Genie im Ring. Dazu seine tollen Entertainment-Skills; was will man mehr?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Moose Nuggetwrote on 15.05.2014:[10.0] "There's a reason that Steen currently is one of the highest paid indy workers right now. He's very entertaining inside and outside the ring. He's one of the best brawlers there are today. And he flys very well for a guy his size."
Rating: 10.0
Sentiment: 0.35595238095238096
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kevin Steenwrote on 06.05.2014:[10.0] "Ringfähigkeiten sind klare 10Punkte. Es ist Wahnsinn, was Kevin Steen alles drauf hat im Ring. Die Matches mit El Generico muss man gesehen haben. Aber allgemein immer gute Matches in ROH und sowieso PWG. Micfähigkeiten und Charisma sind aber mindestens genauso gut. Also es ist fast egal was er macht oder was er sagt; es ist immer unterhaltsam und gut. Man merkt das aber auch in den Matches wie er auf die Fans eingeht und eigentlich immer den richtigen Spruch oder Aktion auf Lager hat. "The best damn thing in Pro Wrestling Today""
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Chris1201wrote on 27.04.2014:[10.0] "Einer der besten Wrestler der Welt! Das Aushängeschild von Ring of Honor!  Super In Ring Fähigkeiten, extrem viel Charisma und gute Mic Fähigkeiten! Schade, dass er bei vielen Ligen "nur" noch in der Upper Midcard eingesetzt wird, aber auch da ist er immer in den Showstealing-Matches vertreten. Finde seine Weekend Escapades auf YouTube auch sehr interessant, denn da bekommt man nicht nur einen Einblick auf das Indy Wrestling in den USA sondern auch auf Kevin Steen privat."
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: sopmacwrote on 16.03.2014:[10.0] "He's arguably the best in the business right now. No one has has versatility other than maybe CM Punk and Daniel Bryan. He can wrestle a technical wizard hold for hold, just as easy as bleed like Mick Foley and put someone through a table. Steen can talk like Raven and Punk, and also be just as stiff as Benoit and Regal. He is simply put, in my eyes, the best in the business right now."
Rating: 10.0
Sentiment: 0.29616402116402113
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: EvilPriestwrote on 10.03.2014:[10.0] "What can I say ? Steen is violent, technical and intense. He can fly sometimes and he's a hardcore match beast. And he often makes me laugh in PWG.  Perfect"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kiki EGwrote on 02.03.2014:[10.0] "Starker Allrounder kann im Ring immer wieder überraschen, sei es in seinen Hardcore-Matches wo er immer mal wieder so einiges raushaut oder auch seine Beweglichkeit im Ring. Am Mic sowieso überragend, ein gutes Komplettpaket."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The8someCwrote on 29.01.2014:[9.0] "Sehr nahe an der perfektion, aber ihm fehlt die erfahrung bei einer der beiden großen Ligen wünsche wirklich ihn mal bei TNA oder WWE zu sehen dann aber im Main Event."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ShawnDravenwrote on 09.01.2014:[10.0] "The absolute best in the indies today. It will truly be a shame if his "look" keeps him out of the WWE, because that's really the only thing that could stand in his way of getting him there."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ADoublewrote on 29.11.2013:[10.0] "One of the absolute best on the indy scene today. Steen is an extremely versatile and talented individual, he can cut amazing promos, he can do great comedy, and he's very agile for a man of his size. One of the only negatives against Steen is his shape, and as it does not seem to hinder his in-ring performance, I don't hold that against him very strongly."
Rating: 10.0
Sentiment: 0.4388333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ProRedstonewrote on 02.11.2013:[10.0] "Einer der besten wenn nicht der beste Wrestler der Welt. Er ist einfach Steen ..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: BlueDiamondwrote on 23.10.2013:[10.0] "Für seine körperlichen Attribute ist er ein Ausnahmewrestler. Er kann eine Menge im Ring, hat Charisma und überzeugte in der Generico-Fehde und in seiner SCUM Zeit vollkommen. Bei der wXw habe ich ihn auch als Mensch zu schätzen gelernt, netter Kerl."
Rating: 10.0
Sentiment: -0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TheMemoryMakerwrote on 11.10.2013:[10.0] "What can you say about Kevin Steen but wow? Over the past half-decade, he's gone from one of the best tag team wrestlers in the world to one of the best all-around performers you'll ever see. His weight will likely hold him back from reaching a bigger promotion, but when it comes down to it, you can count on one hand the amount of wrestlers who have the skill set he possesses."
Rating: 10.0
Sentiment: 0.21049382716049386
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ImACMPunkGuywrote on 28.08.2013:[9.0] "Der Junge hat echt was auf dem Kasten und ist für seine Gewichtsklasse der beste Techniker. Nicht einmal ein Bam Bam oder Vader können mit ihm in Sachen Technik das Wasser reichen. Mal schauen was aus ihm in den nächsten Jahren wird."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Weskerwrote on 30.04.2013:[10.0] "Wahnsinnige Moves. Tolles Charisma. Ausstrahlung. Schöne Interaktionen mit dem Publikum. Allrounder. Ich bin einfach begeistert von dem Typen. Mehr kann ich dazu nicht sagen. Muss man in Aktion gesehen haben!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: JuliTheCage87wrote on 12.03.2013:[10.0] "Ein wahres Multitalent! Techniker, HighFlyer, Powerhouse, hier werden die unterschiedlichsten Wrestlingstile in einem Mann gebündelt. Im Ring einfach unschlagbar, für mich gibt's keinen besseren!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: That 70s Blokewrote on 26.02.2013:[10.0] "This fat-ass might be one of the most talented wrestlers today!"
Rating: 10.0
Sentiment: 0.6875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: AirStarwrote on 28.01.2013:[10.0] "Für mich nicht nur einer der top ten Wrestler im Moment auf der Welt sondern auch am Mic eine Klasse für sich. Er geht in seiner Rolle voll und ganz auf und spielt diese so grossartig wie schon lange niemand mehr. Es ist einfach fast immer alles Perfekt. Die Mimik, die Gestik, das ganze Erscheinungsbild passt einfach sehr gut zusammen und stärk seinen Kompletten Charakter. Für mich ist er zudem einer der besten Heels Momentan im Buisness."
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Final Countdownwrote on 17.12.2012:[10.0] "He may not have the "look" that WWE is looking for, but I don't think there is a more complete wrestler in the world today than Kevin Steen.  His rivalry with El Generico is legendary, and he has been the biggest thing on the indies for a year or more."
Rating: 10.0
Sentiment: 0.42000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TAWPTierJustinwrote on 16.12.2012:[10.0] "Not only is Kevin Steen a tremendous talent in the ring, but he's tremendously gifted on the mic and as a wrestling character as well! It's a no-brainer and there's no question why he's been ROH world champion for a long period of time! Because not only can he without a doubt get it done in the ring, but as a character, what makes you take so much notice of him is the fact that he can greatly pull off a wide variety of emotions within him! He can be humorous, he can get under your skin by saying disgusting comments, he can release so many emotions when cutting a worked shoot promo like no other, and hell he can be a complete psychopath as well and that combined with his amazing mic work, it obviously clicks and that creates in his case, a perfect bad guy on TV! Kevin Steen rules!"
Rating: 10.0
Sentiment: 0.1074074074074074
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Cobrawrote on 15.12.2012:"It's incredible just how much Kevin looks just like my younger brother Kevin. It's scary."
Rating: No rating found
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Steenericowrote on 15.11.2012:[10.0] "Was gibt es hier noch groß zu sagen? Für mich ist Steen aktuell das beste, was das Wrestling zu bieten hat. Es mag zwar im Ring talentiertere geben, aber vom Gesamtpaket kann Steen keiner übertrumpfen. Im Ring trotz seiner Statur toll, seine Interaktion mit den Fans großartig und seine Promos jedesmal aufs neue hervorragend. Das können nicht viele Wrestler von sich behaupten. Er ist völlig zurecht aktuell ROH World Champion und PWG World Champion und ich hoffe, dass er beide Titel noch einige Zeit halten wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Wolkywrote on 20.09.2012:[9.0] "Steen kann für einen Mann seiner Physik echt viel im Ring und in Sachen Charisma ist er auch Spitze. Storylinemässig einer der mit Abstand besten in den USA im Moment aber leider bauen seine Matches immer mehr ab. Vor 3, 4 Jahren hat man da noch viel mehr geboten bekommen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Martyrswrote on 17.09.2012:[10.0] "Für mich derzeit der interessanteste Mann im Indy-Zirkus. Intensiv im Ring sowohl als Brawler als auch als Techniker und gute Mic-Skills. Da kann ich nur hoffen, dass er ROH noch lange erhalten bleibt und nicht doch nach Stamford geht (wobei er Vince sowieso zu "fett" sein dürfte)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Leonewrote on 27.08.2012:[10.0] "Man, this guy has come a long way from the first time I saw him in CZW back in 2004 in a 4 way dance that included El Generico.  While I saw the match as an opportunity to see a Tournament of Death stand-out called Sexxxy Eddy, Steen really stood out in the match, performing incredibly agile moves along with powerful suplexes and devastating 'drivers, and yet he looked more like an overweight fan than a wrestler (By McMahon's standards).  Along with being a hard-hitting and dynamic wrestler, he has demonstrated excellent mic skills along with a great, but also incredibly twisted sense of humour, good enough to grab the attention of The Rock on twitter.  He has become one of the best, if not, the best tweener to come out in years, and he has a presence to him that any main event scene needs right now.  A complete wrestling package that no promo photo could demonstrate."
Rating: 10.0
Sentiment: 0.2764411027568922
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Fabi89wrote on 30.05.2012:[10.0] "Steen ist für mich aktuell eines der interessantesten Gesamtpakete im Wrestling-Geschäft. Sehr ansehnlich im Ring, überragend am Mic, stark in der Charakterdarstellung, hervorragend im Gespür für die Arbeit mit den Fans und grandios in Sachen Improvisation. Kurzum, der Mann ist Gold wert und aktuell das verdiente Aushängeschild von ROH."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Damon Strikerwrote on 28.05.2012:[10.0] "Im Ring wie am Mikro eine Wucht! Er strahlt eine unglaubliche Intensität und ist glaubwürdig, wie sonst nur wenige. Gehört mit zum Besten, was momentan die Ringe dieser Welt unsicher macht!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: jchiofalwrote on 22.05.2012:[10.0] "Kevin Steen is at the top of his game and the peak of his career. He is an excellent wrestler, with such power and agility. His promos are some of the best today. All together he is a fantastic competitor."
Rating: 10.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: tnachrissukowrote on 21.05.2012:[9.0] "Seine Promo`s sind gerade auf ein niveau das ist echt klasse. Als (kann man das sagen) "Bigman" kann er Moves das kam man nicht glaube Kevin Steen das beste gerade was Roh hat. Er ist scheisse gut wenn er Heel ist aber auch wenn er Face ist einfach Klasse der Man."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Awesome Arieswrote on 20.05.2012:[10.0] "Für mich zweifelsfrei DER beste Worker/Entertainer bei ROH. Sein Micwork ist fantastisch, mich fasziniert immer wieder seine Interaktion mit der Crowd. Im Ring ist er nicht der Beste, jedoch macht er das durch sein unglaublich breit gefächertes sowie abwechslungsreiches Moveset wieder wett. Ich hoffe wirklich, dass Steen's verdiente Regentschaft als ROH World Champion sehr lange geht, weil ich ihm es einfach gönne. Alles in allem ein fantastischer Worker, der von mir an dieser Stelle die Höchstpunktzahl von 10 Punkten bekommt."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mizisawesomewrote on 19.05.2012:[5.0] "Ich bin einfach kein Fan von ihm. Ich möchte ihm nicht vorwerfen ein schlechter Wrestler zu sein. Jedoch fällt es mir oft schwer zu wissen, ob er heel oder face ist. Und genau da liegt das Problem. Sowas ist essenziell."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Rated R Champwrote on 19.05.2012:[10.0] "Kevin Steen ist in meinen Augen das absolut Beste was man im Wrestling findet. Er mag nicht grade die Statur eines Athleten haben und im Ring gibt es sicher Bessere. ABER, zu einen ist Steen auch im Ring wirklich gut und darüber hinaus ist einfach alles was dieser Mann macht so verdammt großartig. Es gibt aktuell keinen interessanteren Charakter als Steen und wenn er zum Ring kommt weiß man einfach, dass man hervorragend unterhalten wird, was dazu führt, dass sich bei mir wenn ich sein Theme höre einfach kindliche Freude breit macht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: thereisonlyonewrote on 18.05.2012:[10.0] "Der Junge war mir von Anfang an sympatisch. Dazu hat er Skills im Ring, wie einer von seinem Kaliber normalerweise nicht hat. Verdienter Champion!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Franchise Playerwrote on 07.05.2012:[10.0] "Ich packe ja höchst selten den 10er aus (bei Wrestlern wird dies nun das 3. Mal) aber Kevin Steen rockt einfach nur. Seine Leistungen im Ring sind hundert mal besser als das was man sich von einem Worker seiner Statur erwarten würde. Charisma und Mikrophon Fähigkeiten ebenfalls sehr fortgeschritten. Zudem versteht er es einfach verdammt gut mit dem Publikum zu interagieren. Kill Steen Kill!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: bentexwrote on 22.04.2012:[10.0] "Unglaublich starke Promoskills! Er ist am Micro absolut auf einem Level mit CM Punk und Chris Jericho. Im Ring ist er trotz seines Körpergewichtes sehr Agil unterwegs und zeigt auch das er da viel drauf hat. Star von ROH!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Vanniwrote on 08.03.2012:[9.0] "Verdammt starker Worker. Vielleicht nicht unbedingt der technische Wrestler vor dem Herrn, aber das muss er auch gar nicht sein. Er hat so eine große Ausstrahlung, ein starkes Micwork und eine tolle Interaktion mit den Fans. Macht sich bei ROH in seiner Rolle als Einzelkämpfer und Störenfried gegen alles absolut großartig und ist auch jemand, den ich mir sehr sehr gut im Mainstream-Wrestling vorstellen könnte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: 7TheEwrote on 07.03.2012:[10.0] "Seit 2009 der Beste Heel im Mainstream Buisness, er ist Clever, er ist gut am Mike und er ist verdammt gut im Ring.  Viele trauen im auf den ersten Blick nichts zu, aber wer ihn einmal in Aktion gesehen hat denket komplett anders und er kann verdammt gut emotionen ziehen.  Keiner ist so gut als Heel wie er, verdammt nochmal er verdient die 10 Punkte vollkommen, nächster RoH World Champ."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: cookie monsterwrote on 24.12.2011:[10.0] "Nach den Final Battle, total fucking awesome! Vorallem "thank you ROH" gott nochmal ein Ende vom FB was krass war^^ Und die Promos sind göttlich, das Match war göttlich und ich freue mich das er zurück ist!"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Nguyen2103wrote on 17.12.2011:[8.0] "8 Punkte für Ihn. Klasse Technick und kann auch Brawlen wie ein Verrückter, das einzige was mich stört ist sein Bauch ! Irgendwie bläht sich sein Bauch, Jahr für Jahr und sieht einfach nicht gut aus bei Steen. Der Junge sollte mal abnehmen"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: MotorCitywrote on 05.08.2011:[10.0] "Kevin Steen ist atemberaubend! Bei Pro Wrestling Guerrilla sehe ich ihn immernoch am liebsten! Steen kann der lustige aber auch der ernste sein! Super Gesamtpaket..."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: smokiewrote on 19.12.2010:[9.0] "Ich verfolge Indy Wrestling nicht so wirklich aktiv aber Kevin Steen hat mich wirklich beeindruck was ich so von ihm gesehen habe. Er ist ein genialer Heel der aber doch irgendwie sympatisch rüberkommt. Er hat Charisma, ist in einem der besten Tage Teams today, überzeugt aber auch im Singles Bereich. Außerdem ist er noch sehr jung da kommt bestimmt noch viel. Ich würd ihm ja eine 1 geben aber da ich wie gesagt noch nich ganz so viel von ihm gesehen hab ist es erstmal eine 2 das kann sich aber noch ändern"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Homicide187wrote on 28.10.2010:[9.0] "Ich sehe Steen immer gerne. Dabei ist es egal in welcher Liga und eigentlich auch mit welchem Gegner. Der man ist sowas von geil am Mikro, ich könnte mich fast immer weghauen. Auf der anderen Seite kann er aber auch tot ernste Reden halten wo einem die Spucke wegbleibt. Und im Ring ist er auch großartig, vor allem da er ja doch einen "kleinen" Bauch hat."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Crown Jewelwrote on 13.08.2010:[9.0] "Hat ein ungliaubliches Charisma und ist am Mic imo das stärkste, was aktuell im Indyzirkus zu finden ist. Im Ring gefällt er mir auch, besonders an ihm ist wohl, dass er Dinge tut, welche man ihm bei seiner Statur garnicht zu traut."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: jjchiofalowrote on 30.07.2010:[10.0] "Steen is one of the best wrestlers today. A man with his size and strength moves so amazingly well. He has the agility of a cruiserweight with the power and size of a heavyweight. Steen is honestly the best american-born wrestler of the new generation."
Rating: 10.0
Sentiment: 0.6672727272727272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Sandmannwrote on 04.05.2010:[9.0] "Kevin Steen trifft genau meinen Geschmack als Wrestler. Ein bulliger Typ aber mit guten technischen Vorraussetzungen. Dazu im Team mit El Generico einfach Gold wert. Bin schon sehr gespannt wie seine Fehde mit Generico jetzt weitergeht und was er und Corino so reißen werden. Als Einzelwrestler auch Gold wert mit bisher wirklich guten Matches. Freue mich sehr auf eine Zukunft"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ZuluBunsenwrote on 04.05.2010:[10.0] "Der Kerl ist echt unglaublich. Ein Powerhouse und trotzdem auch in der Luft spektakulär. Ein absoluter Allrounder und hoffentlich noch zu Grossem bestimmt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: kingbogwrote on 27.02.2010:[10.0] "Wirklich sehr beeindruckender Wrestler. Alleine richtig gut. Zusammen mit El Generico noch besser. Nicht umsonst "Mr. Wrestling"."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: RoHSupporterwrote on 24.01.2010:[10.0] "Mein absoluter Fav. bei RoH. Er hat einfach alles was es braucht mal ein ganz großer zu werden. Sein Heel-Turn war jetzt wichtig das er sich jetzt endlich von El Generico trennt und jetzt vielleicht mal einen Title-Shot zu bekommen, fakt ist das er einer der besten ist und deshalb eine 10 von mir bekommt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ShakDragoonwrote on 19.01.2010:[8.0] "Guter Wrestler und an der Seite El Genericos einfach unschlagbar! Bin sehr gespannt, wie es nach seinem neuerlichen Heelturn mit ihm weiter geht. Fest steht: Ich werde Steenerico vermissen!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: DJ MaSchwrote on 26.11.2009:[9.0] "Steen ist in Sachen Charisma und Mic-Work schon zur Indy Elite zu zählen und auch im Ring ist er für seine Statur ein Ausnahmekönner. Der Mann hat definitiv eine große Zukunft vor sich!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Eddiewrote on 08.06.2009:[9.0] "Der bessere des Steenerico Gespanns, insgesamt sehr gut im Ring, mir gefällt er, 9 Punkte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mick Funkwrote on 12.05.2009:[8.0] "Im fehlt absolut der Look für eine große Karriere, trotzdem einer meiner absoluten Lieblinge im Indy Bereich."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Mediwrote on 23.04.2009:[9.0] "Kevin Steen hat für mich eine der besten Entwicklungen im Laufe seiner ROH-Karriere durchgemacht und viel zu seinen (zu Haufe vorhandenen) Moves und Skills noch dazugelent. Im Tag-Team mit El Generico passte er wie die Faust auf's Auge und es würde mich nicht wundern, sollte er eines Tages das ganz große Gold bei ROH halten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ARIZAwrote on 11.04.2009:[8.0] "Guter und unterhaltsamer Wrestler der trotz seiner Statur einige Moves zeigt, die man nicht von im erwartet."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: 150pwrote on 14.12.2008:[9.0] "Wird immer besser, am Mic enorm stark, großartiges Charisma und auch im Ring äußerst vielseitig. Fast die Höchswertung."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: TG Styleswrote on 01.10.2008:[10.0] "Ein großartiger Wrestler, der jeden Stil mitgehen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Rob the bobwrote on 26.07.2008:[9.0] "Steen is einfach ne Maschiene. Er ist zu fett.. na und... der Mann hats einfach Drauf. Da macht die Wampe auch nix. Göttliche Mic und inring Skills. Macht mir spaß ihm Zuzusehen. Das erste mal vs Super Dragon richtig aufgefallen und da war er Genial. Im TT mit Generico im moment Aufstrebend und Hoffentlich bald bei ROH auch im singles Rennen mit dabei."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Eaterwrote on 15.06.2008:[8.0] "Hoffnungsvolles junges Talent, das genügend Potential mitbringt, um noch einiges zu erreichen. Stellt einen überzeugenden Bully dar und hebt sich auf eine Weise, die ich nicht wirklich erklären kann, von der breiten Masse ab."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Rob Van Duesenschrauberwrote on 15.05.2008:[8.0] "So verdammt unterhaltsam, Steen gehört zu meinen absoluten Favoriten im US-Indy Bereich."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Baron-Bwrote on 15.05.2008:[9.0] "Wenn ich Kevin Steen sehe, denke ich immer an eine typisch amerikanische Schule, in der ein typisch amerikanischer Schul-Kleiderschrank typisch amerikanische Mitschüler-Gesichter den ganzen Tag über in irgendwelchen Kloschüsseln versenkt. Er spielt seine Rolle als leicht dicklicher Rotzlöffel derart fies perfekt, dass man fast darüber nachdenkt, ihm böse zu sein. Darüber hinaus ist er im Ring richtig gut. Zusammen mit seinem hyperaktiven Aushilfs-Mexikaner bildet er eines der besten Tag Teams weltweit und auch als Einzelwrestler weiss er durchaus zu überzeugen. Zudem ist er trotz seiner Masse extrem beweglich und schreckt auch vor dem einen oder anderen recht heftigen Bump nicht zurück. Auch für ihn gilt. Bitte noch viel mehr und bleib nach Möglichkeit gesund ..."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Brooklyn Brawlerwrote on 15.05.2008:[10.0] "Im Ring ein absoluter Könner und gerade wegen seines Körperbaus merkt man es erst recht, am Mic ein Hammer und sowohl as Heel als auch als Tweener-Face einfach genial :) Und auch wenn er noch potential hat, er kriegt schon vorab die 1 ;) Achja und die Entrance Musik (und ich meine damit Tear Away^^) ist super gewählt :)"
Rating: 10.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Matt Hardywrote on 09.05.2008:[10.0] "Absolutes Total Package. Beherrscht nahezu jeden Stil, ist unglaublich charismatisch und überzeugt auch am Mic. Kevin Steen rockt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: wXw Fanwrote on 07.05.2008:[10.0] "Gottjunge, Charisma top, im Ring top, am Mic top. Der Junge rockt einfach."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Cactus Jackwrote on 04.05.2008:[9.0] "Viel Charisma, sehr gutes MicWork und Top In Ring Skills. Er hat eigentlich alles was ein perfekter Wrestler braucht, nur der Körper spielt da nicht ganz mit:D. Aber schaden tut es seinem Können nicht und daher sind 9 Punkte sicher angebracht. Zur 10 reicht es noch nicht ganz, aber er ist ja noch sehr jung"
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Kaffoe 666wrote on 24.03.2008:[8.0] "Einach Gold der Junge, egal ob am Mic oder im Ring. Mit Steen kann man nichts verkehrt machen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Instant Classicwrote on 13.03.2008:[6.0] "Scheint durchaus talentiert zu sein, aber überzeugt mich nicht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Aaronwrote on 12.03.2008:[8.0] "Ein jetzt schon sehr guter Worker mit viel viel Potenzial nach oben! Kann in zwei Jahren der wichtigste Indy Wrestler überhaupt sein, wenn er so weitermacht wie bisher! Zudem noch sehr sehr jung!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Joeevil123wrote on 19.02.2008:[8.0] "Sehr gut im Ring , gutes Micwork aber auch noch ausbaufähig. Deshalb gibts ne 2 , ist aber sicherlich einer der kommenden Stars von RoH."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: AnFuwrote on 26.01.2008:[6.0] "Ein wirklich guter Heel, sollte er mich irgendwann richtig überzeugen, gibts eine Aufwertung!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: GothicBearwrote on 17.01.2008:[10.0] "War mir früher sehr unsympathisch, hat sich allerdings 2007 durch tolle Leistungen bei ROH und sein göttliches Heel-Charisma zu einem meiner absoluten Faves entwickelt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: D-Stylewrote on 17.01.2008:[8.0] "Steen im Ring ist sehr gut; er bietet Charisma, Innovation und vor allem sehr "echtes" Wrestling. Ich sehe ihn gerne, vor allem weil er auch mal Humor zeigt ;) Die 2"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: The Showstopperwrote on 12.01.2008:[8.0] "Es gibt nur einen Grund, warum ich Steen keine Eins gebe: ich denke, dass er sich immer noch steigern kann. Von den Skills her klasse, charismatisch ohne Ende und sowohl als Heel als auch als Face sehr unterhaltsam. Wenn er von Verletzungen verschont bleibt und sich weiterentwickeln kann, dann dürfte er zu einem grossen Namen im Business werden."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Doerbenwrote on 05.01.2008:[8.0] "Herausragender Wrestler. Zusammen mit Generico einfach nur göttlich, alleine auch sehr stark. Kann mich eigentlich immer überzeugen. Hat sich sehr gut entwickelt und ist gerade als Heel mage stark. Ein kommender RoH Main Eventer - 8 Punkte nur deshalb, weil ich denke das er NOCH mehr aus sich rausholen kann und wohl auch wird=)"
Rating: 8.0
Sentiment: 0.06666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Hunter2007wrote on 31.12.2007:[8.0] "Hat eine interessante Art sich selbst zu pushen. Aber trotz seiner Fähigkeiten reicht es nicht für eine 1 aus1."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Rancorwrote on 17.12.2007:[8.0] "Hat mir bei den ROH PPVs bisher wirklich gut gefallen. Hat sich in den letzten Jahren stark entwickelt."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: donnerwrote on 21.11.2007:[10.0] "Am Mic und im Ring sehr überzeugend. Wenn man mal seine Masse und sein Move Potenzial mit anderen Wrestlern vergleicht, kann man kaum etwas anderes als eine 10 geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: aulitwrote on 08.11.2007:[10.0] "Ist er schon der beste Heel im Indybereich oder wird er es erst gerade? Keine Frage, Kevin Steen hat alles, was es zu einem Topheel irgendwo auf dieser Welt braucht. Vorallem beherrscht er die Heel-Basics inzwischen so gut, dass er sich auf kleine aber feine Details konzentrieren kann. Einfach Top, der Mann!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Carlito Cenawrote on 16.10.2007:[8.0] "Der Mann macht derzeit ein erstaunliche Entwicklung durch, wird immer besser. Witzig ist nur, dass er bei RoH immer wie ein Riese rüberkommt, dabei schafft er nicht einmal die 1, 80 m."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Sabu316wrote on 09.10.2007:[8.0] "Live ist er göttlich (da er einfach genial mit den Fans spielt) aund mittlerweile kann er auch auf DVD überzeugen."
Rating: 8.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Baszdmegwrote on 27.09.2007:[10.0] "Allroundpaket - kann alles außer... nein, er kann alles. ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: nacho83wrote on 07.08.2007:[10.0] "Ein richtiges Komplettpaket: Kann auf dem Boden begeistern und für seine Gewichtsklasse beeindruckende Aktionen vom Seil zeigen. Dazu auch noch sehr gute Mic-Skills. Grossartig!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Parvexwrote on 23.07.2007:[8.0] "Für mich lange Zeit "Overrated", aber er hat es geschafft mich von seinen Fähigkeiten zu überzeugen. Ein kleines Bisschen fehlt aber noch zur 1, aber er hat die Zeit, um dorthin zu kommen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Moonbloodwrote on 02.07.2007:[8.0] "Steen ist einfach verdammt großartig und steht nun endlich auch kurz vor dem verdienten Durchbruch bei Ring Of Honor. Auch wenn er nicht immer so aussieht: Wenn man ihn einfach machen läßt, können nur gute Sachen 'bei rauskommen. Mit dem Humor und seiner gesamten Art kann genauso wenig schiefgehen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Ähnlich wie Danielson hat Charisma, Mic Work & Ring Skills. Im Thema Charisma & Mic Work steht er dem American Dragon in Nichts nach, nur im Ring kommt er nicht an Danielson ran, aber wer schafft das schon ;)"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: Hirnklopswrote on 24.06.2007:[8.0] ""One, Two, Test, Test, Test, Dick, Piss, Shit, Ass, Pussy. " Kevin Steen, ick liebe dir und deine manchmal drollig doofe Art im Ring :)"
Rating: 8.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1499&gimmick=Kevin+Owens
Comment: ValiumSickwrote on 24.06.2007:[10.0] "Kevin Steen ist Gott. Sehr gute Tech-Skills, charismatisch und hat göttliches Mic Work!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Nolan Greenwrote on 07.02.2025:[10.0] "He may not be as good as Bryan Danielson, but he's still a perfect wrestler. Great technical wrestler, good punches, hell of a lariat, and could take some disgusting bumps. He's also the best commentator on AEW as his hate for Danielson is perfect. Even if he's stuck on Collision with Useless Schiovani, he makes the show easier to listen to. Even after retiring for 13 years and coming back, the few matches he's had so far are decent and he looks better than someone like Okada. One of the best British wrestlers."
Rating: 10.0
Sentiment: 0.2627450980392157
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: JediSaiyanMaster1203wrote on 21.09.2024:[10.0] "Whether as a wrestler or commentator, Nigel McGuinness is a bonified 10 for me. As a wrestler? He's an amazing wrestler who has taken part in some of the most iconic and greatest matches to ever have been recorded in pro wrestling, not just in ROH or even TNA, and was a great champion when given the belt (world title or not). His bouts with Danielson are obviously great, but people often forget he's had other solid bouts with guys like Austin Aries, Samoa Joe, Kevin Steen, Tyler Black, etc. He has a ton of solid moves, his most famous being his version of the "rebound clothesline", one of the best lariats of all time and does it so well. Very hard hitting style and shows he can take a ton abuse like back-to-back headbutts with wrestlers and even ringposts (Idk if that suicide dive to Nigel from Aries to the guard rail would count as a headbutt), doing it for the love of the sport LOL! As a commentator, he's one of the RARE few modern heel commentators who's very entertaining, coming up with witty remarks and finding hilarious ways to talk shit about the babyfaces while not burying them. Finding some kind of middle ground of being a total "hater" while putting over whoever he trashes. Overall, Nigel is a great worker in the business who deserved so much more than he got, hope AEW gives him a renaissance run that he deserves, he's been out for too long and has shown that he's still got it."
Rating: 10.0
Sentiment: 0.3543055555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: genericusernamewrote on 21.09.2024:[10.0] "Always been a fantastic color commentator but I'm glad he's finally getting his flowers on a bigger stage as a professional wrestler. Nigel has accomplished so much in his career as a commentator and a wrestler, and has such a good backlog of matches (even with a 13 year break) that anything he does in this return to the ring is just the icing on top."
Rating: 10.0
Sentiment: 0.25999999999999995
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: OctagonEnjoyerwrote on 29.08.2024:[8.0] "For every amazing wrestler, there's always someone attached to their careers who never got the same amount of accolades as them. While Hogan is not amazing by a fucking landslide, Macho Man never got the same amount as Hogan. Kawada never got the same amount as Misawa, only in the 2000s when almost the entire roster left for NOAH. Despite starting up at the same time and both working IWA-MS, Chris Hero never got the same amount of success CM Punk did in both WWE & ROH. And Nigel McGuinness never got the same amount of success Bryan Danielson had. This is sad, because Nigel was right behind Bryan as being one of the best wrestlers in the indies, in ROH, in the 2000s, and of all time. And I'm not even talking about just the Danielson matches. The legendary 2007 one with Austin Aries, the Tyler Black match that started his Black's rise, the Jimmy Rave stuff, and even the Morishima and Joe matches that don't get enough attention. While Bryan sacrificed his body and got a WM Main Event and world championships, Nigel did it and got treated like shit in TNA as a result of you know who joining the company, and hepatitis. He was a great wrestler with some of the nastiest lariat ever and a top 10 cutter in the Tower of London. And he deserves his flowers. Also not half bad of a commentator too."
Rating: 8.0
Sentiment: 0.06904761904761907
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Blakeiokwrote on 26.08.2024:[10.0] "Once you wrestle, you never lose it. Nigel proved that he can still wrestle at All In and performed better than everyone expected, a 48 year old moving like he's still in his prime is insane, this man is incredibly talented. I have also seen his early career and it was brilliant. His commentary is entertaining, Nigel has it all."
Rating: 10.0
Sentiment: 0.2125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Willie 19200wrote on 10.08.2024:[10.0] "Terrific wrestler and probably my favorite commentator of all time. His ROH Pure title reign is an awesome reign with some great matches not to mention his crazy mic skills, oozing charisma, and his real funny commentating one liners. I really enjoyed his feud with Danielson and he always seems to be one of my favorite character in wrestling history."
Rating: 10.0
Sentiment: 0.36547619047619045
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Loki Hipster Godwrote on 24.07.2024:[10.0] "10/10 as a wrestler and 10/10 as a commentator. As a wrestler, he was the biggest 'what if? ' in the modern era, a guy who could have been, and SHOULD have been, a top star in any major wrestling company. Not only did he regularly put on classic matches, but he also had charisma, a unique look, size, and mic skills that many on the indies lacked at that time. As a commentator, he's currently my favorite to listen to. He provides valuable insight, while also bringing levity and entertainment to the proceedings. His current heel commentary schtick reminds me so much of guys like Jesse Ventura and Bobby Heenan, and it's a style of commentary that has been sorely missed over the years."
Rating: 10.0
Sentiment: 0.22765151515151516
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ImWrestlingAndSoCanUwrote on 16.06.2024:"Not dropping a rating as I haven't seen his matches; but as a commentator, 95% of his AEW heel commentary is the most inane contrarian WWE heel commentary that's ever been at AEW and it extremely distracts and detracts from the quality of every match in which he calls and has staked his personal claim. When only Tony Schiavone is there to deal with him it is a nightmare desk rotation because Tony has no control whatsoever. Someone needs to figure out who to pair him with that will actually cool him off properly or just take him off the desk wholesale."
Rating: No rating found
Sentiment: 0.12083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Jaedynr5wrote on 12.03.2024:[10.0] "one of the greatest wrestlers in the 2000s who transitioned into one of the best commentators of the 2010s and 2020s, most of his matches were at least good to great, watch his feuds with danielson and angle specifically, along with the matches with kenta, tyler black, aries and the like, and on the commentator end, he's the best variation on the "heel commentator" since the king in my opinion, he never fails to be hilarious, analytical with his years of knowledge in the ring itself, and most of all, great at getting a heel in ring over, from christian cage and the patriarchy to timeless toni storm, he was also a great authority figure in like 2016 ring of honor"
Rating: 10.0
Sentiment: 0.5273809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Neon Aussiewrote on 07.03.2024:[7.0] "Solid in ring performer with a number of memorable matches who's career was tragically cut short by unfortunate circumstances. I thought there was a cure now, so Ive wondered why he hasnt come back. Regardless he's made an incredible transition into the role of commentator, and has become one of the best in the business. One of those who potential was cut short by fate and never got to live up to his destiny."
Rating: 7.0
Sentiment: 0.20363636363636362
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: PunkPariahwrote on 29.01.2024:[10.0] "Dude every time I watch Nigel work Im blown away. And every time he creeps his way up my all time list. Half his moves had the crowd cheering before he even hit it. He was over as fuck everywhere and could work anyone and get a good match. His matches of course with Bryan are stuff of legend and it's a real shame his career ended when it did because the mark he could've left on the world had the chance to be even more legendary. But a lot of people overlook his stuff with Jimmy Rave, Marufuji, and Angle. All of whom he had absolute bangers with. Truly an all time talent"
Rating: 10.0
Sentiment: 0.25416666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: AnthoTheKIDwrote on 15.10.2023:[10.0] "As a wrestler, Nigel McGuinness was one of the greats. His legacy in the ring is undeniable. As a commentator, he's one of the very best actually, dropping names, giving insight and all, that is pleasant to hear Nigel talk about the past, the present and the future of the wrestling industry."
Rating: 10.0
Sentiment: 0.24722222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: TheOneAndOnlyCactuswrote on 19.08.2023:[9.0] "Nigel McGuinness is one of those names that people think could have done a lot better in wrestling. And considering what he already did in ROH, that says a lot about his talent. One of the most supremely gifted technical wrestlers of his era, he was always a joy to see perform between those ropes, and he was a man who could go for a long, long time without feeling tiring to see. He was also pretty solid on the mic too, although I think his best work in this department came after he became a color commentator. Regardless, truly one of the greats from Great Britain."
Rating: 9.0
Sentiment: 0.38636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: benh2wrote on 11.01.2023:[8.0] "Nigel was a brilliant wrestler. So technically accomplished and so smooth. I wasn't a fan of the 00's mindset of having long epic matches just for the sake of having long epic matches but Nigel was one of the very few guys that took it in his stride and made them captivating. His work with Danielson was some of the very best ever of that particular style."
Rating: 8.0
Sentiment: 0.2733333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Okaro143wrote on 08.05.2022:[10.0] "One of the most unfortunate and underated wrestler of all time. His 500+ reign as ROH World Champion was one of the best in ROH History and his feud with Daniel Bryan was legendary. He had a tryout with WWE and because he told the truth about his injuries, he didn't get signed. He went to TNA, had a great debut and a very short but good run. Unfortunately, his run was cut short when he was diagnosed with Hepatitis B. His career ended prematurely. I would have loved to see him in WWE as a Wrestler. Also, he is my favourite color commentator of all time. Mauro is my favourite play by play commentator; Mauro, Nigel and Beth had the best chemistry and were easily the best commentary team calling the spots at the height of NXT."
Rating: 10.0
Sentiment: 0.47179487179487184
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: GriffinXwrote on 06.02.2022:[9.0] "Sadly life isn't fair. Because in fair world Nigel goes to WWE makes a bunch of money as a top main level guy ala Danielson, At the very least he's the guy that stands out as one of the best part of TNA/Impact maybe or gets some big chances in Japan. Maybe even now would be getting pushed in AEW. But his injures and other medical issues stopped that. Nigel was just so good in the ring he should of been a bigger deal but again life isn't fair."
Rating: 9.0
Sentiment: 0.26551282051282055
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: shinsaikyou enjoyerwrote on 16.09.2021:"Nigel McGuinness is, and always will be, the perfect wrestler. As far as a pure "inspiration to viewer" ratio, he has to be number one. Although his work has gone unsung for the vast majority of his career. Any wrestler who cares about their craft will have seen him, and will have learnt from him. He mastered the concept of a limited moveset, basically having a chop, a headbutt, and ninety lariat variations, and somehow never seeming repetitive. To call him a pioneer is basically arbitrary. He was one of the first huge European names on the US independent scene along with Claudio Castagnoli, and helped craft the technical style that literal hundreds of wrestlers today will utilize and unknowingly copy from Nigel himself. In a week when I can rate things, he's getting a 10. And he'll stay a 10 until this account is wiped off the face of the Earth."
Rating: No rating found
Sentiment: 0.12857142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Kungwrote on 25.07.2021:[9.0] "It is truly devastating that because his career was cut short right in his prime, Nigel McGuinness has been somewhat forgotten by all but only those who were lucky enough to see him during the 2000s. His matches against the likes of Austin Aries, Takeshi Morishima, Tyler Black, KENTA, Kevin Steen, and of course, Bryan Danielson helped to make Ring of Honor the bastion of brilliant wrestling in America at the time."
Rating: 9.0
Sentiment: 0.044047619047619044
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Ma Stump Pullerwrote on 24.04.2021:[9.0] "I'm convinced Nigel was one of the best in the world in the 2000's. Extremely technical in his approach but was more than capable of mixing things up with brutal blows and some of the best lariats you'd ever see out of him, as well as having a actual personality and being amazing on the mic, being able to go from crowd-popping face to a full bastard of a heel, being able to work different aspects of his gimmick (his cheap trick days as ROH Pure Champion, willing to sink to any level to win his matches). He's a guy whom you could throw with anyone on the roster and get a good to fantastic match because he sold hard for them and didn't have a ego, always making sure to make his opponents look good. The only problem he really had was that he went arguably too hard in his matches, which ruined his body to the point where he was in pieces by his early 30's. It's also unknown if he would have been successful in the PG lights of WWE or if he'd be stuck on the lower card like Bryan but regardless, he was a sensational talent that could go with anyone regardless of style. Many have tried to take his hard-hitting style for themselves but none really ever got me invested like McGuinness. Probably one of the greatest UK wrestlers of all time and a serious contender for one of the best, period."
Rating: 9.0
Sentiment: 0.3375541125541125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: mamboKENTAwrote on 23.02.2021:[9.0] "Charismatic, hard hitting British wrestler. Like KENTA and Marufuji, also from his generation, plenty of wrestlers have copied Nigel McGuinness. Excellent feud with Danielson, perhaps Danielson's greatest opponent. He ended Morishima's reign of terror (in a kayfabe manner) over the ROH roster. He was so well rounded as a wrestler, and he would have made an excellent addition to WWE's roster. Injuries caught up with him in the end. He's working as a commentator and is damn good at it, but I absolutely miss seeing him wrestle."
Rating: 9.0
Sentiment: 0.5135416666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Mizzle Assault Antwrote on 04.11.2020:[2.0] "This guy hardly has any hyped matches that aren't with Danielson, which is like duh of course you had good matches with the best wrestler in the world, he does weird bad looking stuff like the headstand in the corner and the always awful rebound lariat, and he injured himself into early retirement and probably gave Danielson a brain lesion or two with his insistence to always include skull rattling headbutts in their matches even after Benoit's autopsy showed how it turns your brain to old cheese. I just don't get much out of Nigel."
Rating: 2.0
Sentiment: -0.06916666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: NastyYaffawrote on 03.06.2020:[10.0] "If I had to name my favorite wrestlers off the top of my head, Nigel would be way up there. Extremely charismatic & such a fantastic wrestler in his prime. When it comes to the all-time great, or my personal favorite I should say, title reigns in the business, his run w/ that ROH World Championship is one of the absolute top ones for me."
Rating: 10.0
Sentiment: 0.39
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: KyleEnjoysWrestlingwrote on 07.08.2019:[8.0] "One of the leaders of the ROH boom period. Nigel was a huge reason why ROH ever made a mark to begin with. He's an inspiration to so many of the young talent who are working today. A shame he never made it to WWE in the capacity that he was hoping for."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: RatingsMachinewrote on 19.10.2018:[8.0] "Nigel was a really good technical wrestler, but some of his stuff, like the rebound lariat, looked so damned hokey."
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Wrestling Foreverwrote on 13.07.2017:[10.0] "Nigel war in seiner aktiven Zeit als Wrestler ein großartiger Techniker. Bei ROH so genial und seine Regentschaft als ROH World Champion die auch die zweilängste in der ROH Geschichte ist war genial. Dieses Bügeleisen das er damals immer dabei hatte war echt eine sehr gefährliche Waffe. Zu seiner Rivalität mit Bryan Danielson muss man nichts mehr sagen. Die Matches zählen zu dem besten was es im Wrestling gibt. Auch sonst hatte er bei ROH viele starke Fehden und Rivalitäten. Bei TNA fand ich nur seine Fehde gegen Kurt Angle richtig stark. Er hatte auch das Problem das er da immer wieder verletzt war. Seit seiner Rückkehr zu ROH ein starker Color-Kommentator dem ich gerne zu höre auch sonst ist er auch als Nicht mehr Aktiver super. Vielleicht steigt wieder für ein One Night Only Match in den Ring. Edit: 13. 07. 2017 Inzwischen schon länger bei NXT gelandet und macht da als Kommentator einen klasse Job genau wie ROH weiterhin ein starker Kommentator."
Rating: 10.0
Sentiment: 0.04444444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: theodelight89wrote on 20.02.2017:[10.0] "My all-time favorite ROH wrestler. Could work any number of styles proficiently, and gave his everything every time he entered the squared circle. Not only one of the finest wrestlers to come from England; plain and simple one of the best wrestlers of the 21st century so far."
Rating: 10.0
Sentiment: 0.19795918367346937
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: The Real Raterwrote on 25.01.2017:[8.0] "In-Ring Skills: Verdammt stark, dem aber ein bisschen was zur 10 fehlt. 9/10 (50%)  Promos/Schauspieltalent:Hier war er immer ganz gut. 8/10 (25%)  Charisma/Erscheinung/Gimmick:Ehrlich gesagt nichts besonderes. 5/10 (25%)  Sind dann insgesamt 7, 75 Punkte für Desmond Wolfe.   = 8 Punkte"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Jobbswrote on 24.04.2016:[10.0] "In my view one of the best wrestlers ever! He was able to wrestle a good to great match with literately anyone. His ROH World Title reign from 2007-2009 was one of the best ever and he's definitely one of the best in ring technicians as well."
Rating: 10.0
Sentiment: 0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: TrevPuroFanwrote on 24.07.2015:[10.0] "Man I could go on and on about what Nigel has done for ROH, and for me as a wrestling fan personally. He was flawless in the ring, amazing promo work, amazing heel. Had an amazing 545 days run as ROH World Champion. Had some of the best matches ever against Austin Aries, KENTA, Tyler Black and than you have my favorite wrestling fued of all time with Bryan Danielson, these guys had 3 five star matches against eachother, truly amazing stuff. Nigel has truly earned his place in my top 10 wrestlers of all time. Love you and miss seeing you perform Nigel."
Rating: 10.0
Sentiment: 0.5212121212121213
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Viper99wrote on 22.07.2015:[10.0] "Nigel McGuniess ist für mich einer der besten Techniker und besten Wrestler aller zeiten! Leider Leider hat er es nie zur WWE Geschafft. Dafür aber einer DER Leute der ROH Geschichte! Allein schon seine Schlachten gegen Danielson bleiben unvergessen. In TNA war er leider nie mehr wie Midcard. Seine Matches gegen Angle habe ich trotzdem sehr genossen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: eldenaaaaawrote on 04.03.2015:[10.0] "In his prime, he was the total package in wrestling. Brutal strikes combined with a technial prowess, and charisma for days. Foremer ROH World Champion and ROH Pure Champion."
Rating: 10.0
Sentiment: -0.22023809523809523
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Claudio Herowrote on 12.11.2014:[10.0] "Einer der Besten ROH Wrestler aller Zeiten. Seine Fehde gegen Bryan Danielson ist legendär. Er konnte den perfekten Heel spielen. Schade das ihm bei TNA keine größere Rolle zugedacht wurde. Für mich einer der besten Indy Wrestler die es jemals gab"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Phenomenal91wrote on 15.09.2014:[8.0] "His time in the national spotlight was brief (aside from an excellent feud with Kurt Angle in TNA, he didn't accomplish anything else there or in WWE. ) But, in Ring of Honor, this man is a legend. Not only a highly decorated competitor, but also the best representation of British wrestling in the United States since Lord Steven Regal. His career was tragically cut short due to hepatitis, but he's proven to be extremely effective in the role of color commentator (he has great chemistry with Kevin Kelly) and now on air official. (You can genuinely respect his authority and the way he lays down the law. ) He's the ideal replacement for Jim Cornette in that role, and perhaps even better, since he understood Ring of Honor better than Jim. It's always a pleasure to hear him on commentary, and he has a great Ring of Honor legacy to look back on. All in all, a great career."
Rating: 8.0
Sentiment: 0.39885802469135806
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: MrJamesssswrote on 05.06.2014:[9.0] "I'ts a shame he was forced to retire, but I enjoyed his work in the US indies. I never cared about his usage of Lariats, to be honest.... His rivalry with Danielson is in the same level as other classic rivalries like Misawa vs Kawada."
Rating: 9.0
Sentiment: 0.14027777777777775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Capuwrote on 18.05.2014:[10.0] "My favourite wrestler. Is sad to think that his career ended when he was about to reach the top. Hope to see him in a ring one last time."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Ultraviolent Lariatwrote on 26.03.2014:[10.0] "The Johnny Saint of modern Era. Amazing, awesome, perfect, and all adjectives that can give for him."
Rating: 10.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ShawnDravenwrote on 09.01.2014:[9.0] "It's a shame his in-ring career was cut short, because if he was able to go, we would no doubt be seeing Nigel vs. Bryan Danielson on the big stage."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: HammertonWaywrote on 22.12.2013:[9.0] "When he moved to TNA, I was really hoping to see this man succeed in that company after hearing so much about him. While he was the fantastic wrestler I was told about, I wish he was pushed more. His teaming with Magnus had a lot of potential, but no one could've predicted what happened to him. While I wish I could've seen more of him, it was right for him to of retired."
Rating: 9.0
Sentiment: 0.2979591836734694
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: tgwrote on 02.12.2013:[10.0] "Ich bewerte ihn hier als den Wrestler, der er 2005 bis zu seinem Rücktritt in den US-Independents war, und nicht als die On-Air-Persönlichkeit, die er gerade bei Ring of Honor verkörpert. Überragend! Man denke hier nur an die vielen unglaublichen Matches mit Danielson. Dieser Mann hätte größtes Potenzial gehabt, es auch bei einer Company wie der WWE bis an die Spitze zu schaffen. Wirklich traurige Geschichte..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Paul Allainwrote on 07.07.2013:[10.0] "Nigel McGuinness can be considered the best in many respect : A great technical wrestler, maybe one of the best. A noble ambassador of UK wrestling in the US, maybe the best. A formidable opponent to Bryan Danielson, maybe his greatest rival. A great pure wrestler from this generation, maybe the best. A great world champion for ROH, maybe their best. A great legacy on the independent circuit, maybe the best.   What is clear is that is career as an in-ring competitor is over, before he could be crowned as a world champion in WWe or TNA and immortalised. That is not maybe tragic, it definitively is, because Nigel has been one of the best."
Rating: 10.0
Sentiment: 0.624436090225564
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Lecterwrote on 05.06.2013:[9.0] "Nigel achieved greatness. No doubt about it. 'Tis a tough pill to swallow that he wasn't properly rewarded for it."
Rating: 9.0
Sentiment: -0.19444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ilovewrestlingwrote on 12.05.2013:[10.0] "Einer der besten Wrestler, die je in einem Ring of Honor Ring standen. Er ist ein technisch begabter Wrestler, der jeden Stil mitgehen kann. Seine lange Titelregentschaft hat er sich verdient. Er hat richtig viel Charisma und sehr gutes Mic Work. Schade, dass er so früh zurücktreten musste und ich hoffe, dass er irgendwann wieder in den Ring steigen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Leonewrote on 06.05.2013:[10.0] "One of the best British wrestlers to work in the United States over the last 10 years.  He's the second longest reigning Ring Of Honor champion, tied with Bryan Danielson in having the most amount of title defences of that belt, and he was a fantastic in-ring technician.  To go along with his in-ring skill, his character evolved a bit as well, originally portraying himself as being more like an english punk, and then becoming more like a Jason Statham-type of character when he went to TNA.  If it wasn't for his illness, which led to an abrupt retirement, he would still be wrestling and have quite a few years left in him.  An unfortunate end to a potentially even more successful career."
Rating: 10.0
Sentiment: 0.23055555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: dudemanbearpigwrote on 11.03.2013:[9.0] "An extremely talented wrestler. It's a shame he never made it to WWE."
Rating: 9.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Wolkywrote on 20.09.2012:[9.0] "Immer einer der Besten im Ring gewesen. Hatte da wirklich sehr viel drauf, konnte vor allem fast jedes Tempo gehen und hat sich eigentlich konstant weiter entwickelt. Sehr schade, dass er seine Karriere beenden musste."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ARIZAwrote on 15.06.2012:[9.0] "Sehr guter Wrestler, der bei ROH großartig war. Sehr schade, dass er nach gutem Anfang bei TNA es nicht geschafft hat sich dort komplett durchzusetzen und dann nach langer Pause seine Karriere beenden musste."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: VanderVaartwrote on 06.06.2012:[9.0] "Scheint ziemlich patriotisch zu denken. Moves nach seinem Heimatort benannt und er läuft mit britischen Knee-Pads durch die Gegend. Die Frisur vor den sehr kurzen Haaren war sehr innovativ und stand ihm sehr gut.  Die Matches waren teils sick, aber im positiven Sinne. Die Signature Moves zwar nicht sonderlich inoovativ, aber da steck ordentlich Pfeffer dahinter. Die lange Titelregentschaft des ROH-Titles ist verdient. Schade, dass er seine Karriere schon so früh beenden musste. Trotzdem machte er danach noch eine Abschiedstour, was eigentlich zu gefährlich war, aber das muss er selber wissen."
Rating: 9.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: WrestlePandawrote on 16.02.2012:[10.0] "Nigel McGuinness is the one and only reason I began watching TNA's Impact Wrestling on a weekly basis a few years ago. He had two fantastic matches with Kurt Angle, and then the new regime of Hulk Hogan and Eric Bischoff came in, effectively ending Nigel's push. I still have yet to watch even 1% of Nigel's matches, but in every single one he gave 120%. Unfortunately, that 120% drastically shortened his career. Hopefully someday there will be an anthology of his storied wrestling career on DVD. Thank you for your 12 amazing years contributed to the business, Nigel. I'm sorry things didn't work out the way they should've."
Rating: 10.0
Sentiment: 0.05165945165945166
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: cookie monsterwrote on 20.10.2011:[9.0] "Richtig klasse Typ. Als Wolfe nicht ganz so gut eingeset. In ROH seh ich ihn lieber. Und bin froh das er wieder in ROH ist. Schade das er jetzt nicht mehr die "Stachel Haare" hat^^ Aber naja trotzdem genial."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Rated R Punkwrote on 06.09.2011:[8.0] "Kenne ihn nur von TNA her aber ich muss, sagen verdammt Talentiert! Seine Fehde gegen Kurt Angle war Wrestlerisch ein Blickfang!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: devilsoldierwrote on 30.07.2011:"Da hat die WWE wohl alles richtig gemacht ihn nicht einzustellen nach dem Medizin Check. Schade das wieder eine Karriere kaputt ist. Hatte viel drauf."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Hu-Manwrote on 17.07.2011:[10.0] "Ein unglaublich talentierter Worker, der leider schon lange nicht mehr zu sehen war. Hoffe, dass er es noch einmal zurück schafft und an seine früheren Leistungen anknüpfen kann. Ich weiß nicht was ihm fehlt und wünsche ihm daher primär gute Genesung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Donald Duckwrote on 23.06.2011:[10.0] "Absolut großartiger Wrestler. sowohl in ROH als auch in TNA. Am Mic ist er schon sehr gut, im Ring aber noch zehn mal besser. Desmond Wolfe hat alles was ein Star braucht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: FriarFergusonwrote on 04.04.2011:[9.0] "Ich kenne ihn nur von TNA und dort hat er mich sehr überzeugt und begeistert, sowohl in seiner Fehde gegen Angle, als auch als Teil von London Brawling. Authentisch am Mic, gute Ausstrahlung, sauber und talentiert im Ring. Hat die Chance, qualitativ der nächste Chris Jericho zu werden, wenngleich beide Stile schlecht zu vergleichen sind."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Elvis6wrote on 29.03.2011:[6.0] "Sehr stark angefangen u immer mehr nachgelassen. So könnte man wohl die letzten 2 Jahre von Wolfe beschreiben. Hat mir, als Nigel McGuiness super gefallen. Aber seit er bei Tna ist muß wohl einiges schief gelaufen sein. Fiel mir nur bei den Matches mit Kurt Angle auf. Und nun? Eine mysteriöse Erkrankung. Schätze mal das er auch bei der WWE deswegen nicht ankam. Wegen dieser u dem Grund das er jetzt schon lange fehlt nur eine 6"
Rating: 6.0
Sentiment: 0.06666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Matt4Wrestlingwrote on 20.02.2011:[10.0] "Ich kann nicht nachvollziehen warum TNA McGuinness (Wolfe) so zurückhält! Er bringt alles erforderliche mit, so kann er sich einfach nicht entfalten! Er hat in der Vergangenheit, wie jetzt auch in seinen letzten Auftritten, hoffentlich kommt er bald wieder, bewiesen, was technisch und charismatisch in ihm ist! Wie gesagt, diese bremsung seitens TNA kann ich nicht nachvollziehen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: dnstoniewrote on 24.10.2010:[9.0] "Desmond Wolfe hat wirklich alles drauf. Ein echt komplettes Paket. Jedoch wird er bisher bei TNA doch sehr klein gehalten. Ich hoffe das es mit Verletzungen zu tun hatte, das er immer nur so mikrige In-Ring Einsätze bekam. Der Mann kann soviel mehr... bin mal gespannt wie es weitergeht wenn er zurückkommt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: TAWPTierJustinwrote on 09.10.2010:[10.0] "When I got back into watching TNA last year, I didn't really start to get back into it until Desmond Wolfe joined the company and when I saw him make an impact instantly going into the feud he had with Kurt Angle, I was so impressed with this guy and I was so impressed with his wrestling ability and was so impressed by his promos and his entrance music which is awesome by the way. And I really believed that because he was on a huge role in TNA that he was gonna become TNA world heavyweight champion sooner than later and I still believe he has what it takes to be world champion in TNA even though they haven't been using that well lately as far as pushing him to main event status is concerned. I mean he was in a good tag team with Magnus recently and I couldn't wait for their match with The Motor City Machine Guns at No Surrender cause I thought they were gonna have a good match but they ended up being replaced by Generation Me which also that led to a great heel turn for Gen Me so I'm not too pissed about it. But ever since then, i really don't know what happened to the team of Desmond Wolfe & Magnus. All I saw recently was Desmond Wolfe having a singles match with Stevie Richards on Xplosion last week which led to Desmond defeating Stevie. But anyway I still believe Desmond Wolfe will be TNA world heavyweight champion someday! Mark my words!"
Rating: 10.0
Sentiment: 0.325189393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Rated R Champwrote on 24.09.2010:[10.0] "Nigel McGuinness ist meiner Meinung nach einer der coolsten Hunde im heutigen Wrestling überhaupt. Er hat bei ROH schlichtweg fantastisches abgeliefert, seien es seine legendären Schlachten gegen Bryan Danielson oder seine 18 monatige Regentschaft als ROH World Champion. Am Mic sowie im Ring ist er einfach nur erstklassig. Deshalb ist es umso trauriger zu sehen, wie er zur Zeit bei TNA verheizt wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Typhixwrote on 20.08.2010:[9.0] "Ich muss gestehen, dass Wolfe mir bei Ring of Honor deutlich besser gefiel. Momentan spielt er bei TNA nach seinem gigantischen Einstand 2009 nur noch die zweite Geige - wenn überhaupt. Seine Matches sind oft kurz, unbedeutend und auch nur noch mittelmäßig spannend. Wolfe kann deutlich mehr und deutlich besser, aber derzeit zeigt er es leider nicht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Whole FN Showwrote on 18.08.2010:[10.0] "Das beste was das Indy Wrestling in den letzten Jahren heraus gebracht hat. Nigel mit seinen Britischen Stil einfach klasse und seine Lariats sind Goldwert! Für TNAs Booking ziehe ich ihm keine Punkte ab!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Jack Londonwrote on 18.08.2010:[9.0] "Bei Ring Of Honor legendär, bei TNA unter Wert verkauft. Trotzdem ein toller Wrestler"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: The Mountiewrote on 18.08.2010:[9.0] "Großartiges Indy-Komplettpaket, das ich bei ROH durchgehend geliebt habe. Bei TNA verfliegt leider nach gutem Start der Zauber. Schade."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Invaderwrote on 30.07.2010:[6.0] "Became extremely skinny since he's working for TNA and I do think that he would do better in ROH.  Look at his win/loss-record... what else do I have to say?"
Rating: 6.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: MattBornewrote on 05.07.2010:[9.0] "Da stimmt einfach alles, dazu noch im besten Alter und den Sprung zu Tna geschafft. Die Matches mit Angle waren krass und haben mich ziemlich gut unterhalten. Mag seinen Stil, hat sicher noch einen goldenen Weg vor sich."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Switchbladewrote on 22.06.2010:[10.0] "Als Face ok, als Heel absolut genial. Im Ring sehr stark, hat meiner Meinung nach aktuell die besten Lariats im Business. Und sonst auch der technische britische Stil von ihm gefällt mir. Geht finde ich kein Weg an der Bestnote vorbei."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Sandmannwrote on 04.05.2010:[8.0] "Fand McGuinness zu Beginn seiner ROH Karriere wirklich nicht gut und total langweilig. Aber spätestens seit seinem Pure Titel Gewinn wurde er immer besser. Auch der Gewinn des World Title war logisch und hat doch einige mehr als gute Matches hervorgebracht. Die Kritik an seinem Stil fand ich teilweise zwar berechtigt aber trotzdem konnte Nigel eigentlich mit jedem ein gutes Match zeigen. Hoffe man sieht ihn noch ab und zu im Indyzirkus."
Rating: 8.0
Sentiment: 0.10714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Whopperlewrote on 18.04.2010:[10.0] "Einer der besten Worker die TNA momentan hat. Klasse Wrestler und toll am Mike."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Jar Jar Binkswrote on 07.04.2010:[9.0] "Bei ROH: Absolut genialer Mann. Starke In-Ring Performance, tolle Matches, riesen Charisma und wahnsinns Mic-Work. Bei TNA leider nicht mehr so präsent. Ich hoffe er wird in den Main Event gespusht ansonsten, kann er hier leider nicht so überzeugen..."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: TheLoudMouthwrote on 06.04.2010:[10.0] "Einzigartiges Komplettpaket. Seine Skills im Ring, als auch die am Mic, sind richtig stark, Charisma ist en masse vorhanden, Gimmick stimmt. Außerdem rulen seine Lariats."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Wizz21wrote on 15.03.2010:[9.0] "Zu seinen ROH - Zeiten gabs von mir "nur" 8 Punkte, bei TNA mit dem Desmond Wolfe Gimmick die coolste Sau im Roster , daher die Aufwertung auf 9 Punkte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: The Crown Jewelwrote on 15.03.2010:[8.0] "Gefiehl mir vor seinem titlerun bei ROH deutlich besser als von diesemZeitpunkt an."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Fat Mikewrote on 13.03.2010:[10.0] "Gefällt mir bei TNA bisher zwar nicht ganz so gut wie im Indy-Bereich, das ändert aber nichts daran das er einer der besten der Welt ist. Ausstrahlung und Mic-Skills sind auf absolutem Top-Niveau und in Punkto In Ring-Skills macht ihm sowieso niemand was vor."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: rv27wrote on 10.03.2010:[9.0] "Grundsolider Wrestler auch wenn mir bei ihm immer wieder die WTF Moments fehlen."
Rating: 9.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: MJ Goldbergwrote on 09.03.2010:[10.0] "Meiner Meinung nach zu underrated bei TNA, der Mann ist pures Gold als Heel, gibt Ihm den Heavyweight Title plus Fehden gegen Angle/Hardy/RVD. Top-Wrestler und stark am Mic!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: The Rated R Superstar EDGEwrote on 01.03.2010:[10.0] "Seine Indy Zeit habe ich nicht weiter vervolgt aber bei TNAW gefällt er mir im Moment doch sehr gut. Ich hoffe das man es schafft ihn in 2010 im Mainevent von TNAW fest zu etablieren. Wow ich sehe gerade das er schon 34 ist. Hätte meiner Meinung nach schon vor 2-3 Jahren den Schritt zu TNA oder der WWE wagen sollen. Zusammen mit AJ Styles und Kurt Angle der beste Worker bei TNA derzeit. Ich würde es gut finden wenn man ihn bei TNA noch in 2010 zum World Champion machen würde."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Y2Mikewrote on 28.02.2010:[9.0] "Absolut tolles Gesamtpaket. Im Ring und am Mic stark, noch dazu sehr charismatisch. Hätte Nigel gerne bei der WWE gesehen, doch ich glaube, er ist im Augenblick bei TNA besser aufgehoben."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: jimpanse1980wrote on 15.02.2010:[10.0] "Hat in den letzten 2 Jahren das Image des modernen Superstars evolutioniert. Er hat die Aura, er hat den Look und die Technik ein Business anzuführen. Spätestens bei TNA hat er auch im Mainstream überzeugt und seine ausufernden Lariat-Orgien eingestellt und sich einen fast einzigartigen Stil angeeignet. Old-School-European-Wrestling gepaart mit nordamerikanimeschem Unterhaltungswert. Dazu passendes gutes bis sehr gutes Micwork. Fertig ist einer der Zeit besten Wrestler im Business."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Mukahidowrote on 30.01.2010:[10.0] "Die Fans drücken es sehr passend aus wenn er im Ring ist:"This is Wrestling. "Nigel/Desmond verkörpert für mich ein technischen Wrestler der Neuzeit, starke englisch geprägte In-Ring Skills gutes schauspielerisches Talent und ein unverwechselbares Micwork"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: DJ MaSchwrote on 29.01.2010:[10.0] "Allein seine Einstiegsfehde bei TNA gegen Kurt Angle sollte jedem gezeigt haben, was dieser Mann leisten kann. Die Zeit an der Spitze von ROH hat ihm gut getan, da er dabei deutlich an Profil gewonnen hat und sich somit für ein Engagemet im Mainstream Bereich beworben hat. Das er jetzt bei TNA und nicht bei der WWE untergekommen ist stört mich überhaupt nicht - im Gegenteil er durfte gleich im Co-Mainevent von PPVs 20 Minuten Matches gegen das Aushängeschild der Liga bestreiten, in welchen er beweisen konnte, dass er auch wrestlerisch ohne hin top ist. BTW. ist er auch noch einer meiner persönlichen Favoriten - und das schon seit seinen Euro Tagen."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ShakDragoonwrote on 19.01.2010:[10.0] "Einer der besten European-Style-Wrestlers und mehr als verdient Langzeit-ROH-Champion. Ich freue mich sehr, dass er es als Desmond Wolfe zu TNAW geschafft hat und hoffe, dass er nach der sehr guten Fehde gegen Angle nun auch weiterhin vernünftig eingesetzt wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: mugel 187wrote on 18.01.2010:[10.0] "Meiner Meinung nach der zweit beste Heel (nach Edge) zurzeit im Business. Niemand hat einen so ansprechenden Wrestling Stil wie Desond Wolfe/Nigel McGuinnes."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Maxskywrote on 07.01.2010:[10.0] "einfach nur genial... ich verstehe immer noch nicht warum WWE hin nicht genommen hat... nunja das haben sie davon ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Baldrickwrote on 06.01.2010:[9.0] "Mir persönlich zeigt er (bei TNA) ausser den gelegentlich eingestreuten, durchaus schön anzusehehnden Lariats zu wenig Strike-Moves. Dass er einer der besten Submission-Wrestler der Gegenwart ist, steht ausser Zweifel. Wolfe hat einen einzigartigen Stil, der von den Fans ersatzlos akzeptiert wird, ein Mic-Work, dass hervorragend zu diesem Stil passt und eine absolute Superstar-Aura, wie sie IMO heute sein sollte."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Denzwrote on 04.01.2010:[10.0] "Seine Moves liefert er immer Sauber ab. Seine Clothelines sind momentan einer der Besten. Am Mic müsste er noch etwas arbeiten. In ihn sehe ich die Zukunft von TNA."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Super Dragonwrote on 25.12.2009:[9.0] "Nigel ist einer der besten Indy Wrestler momentan, er hatt schonn zu ROH zeiten bewiesen das er was drauf hatt und wird es auch in TNA noch beweisen, für mich ist er ganz klar die zukunft von TNA."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: downtown2wrote on 22.12.2009:[9.0] "TNA macht ja derzeit nicht viel richtig, aber einen Mann wie Nigel so perfekt in einem Roster zu etablieren muss lobend erwähnt werden. Tatsächlich könnte er ein größerer Gewinn für die Organisation werden als alle Hogans, Bischoffs und Lashleys zusammen. Seine Interviews sind so gut und glaubwürdig wie sein Wrestlingstil. Viel Psychologie, Show und Intensität. Absolute Erscheinung, ihm könnte eine grandiose Zukunft bevorstehen."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: XtremeEnigmawrote on 13.12.2009:[10.0] "Desmond Wolfe konnte sich in den letzten Wochen wirklich bemerkenswert bei TNA etablieren. Ich persönlich sehe ihm äußerst gerne im Ring zu, vor allem deswegen, da mir sein Stil sehr gefällt. Außerdem sind seine Mic-Skills bereits jetzt auf sehr hohem Niveau und sein Charakter wirkt frisch und interessant im Mainstream. Ein verdienter Push derzeit in meinen Augen, auf den sich in Zukunft noch aufbauen lässt, wodurch Wolfe vielleicht noch zum Main-Event Player wird, was er ja auch bei RoH war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: MrSmackdownwrote on 22.11.2009:[7.0] "Nigel Nigel Nigel..... Für mich immernoch, overrated!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Cheffewrote on 19.11.2009:[9.0] "Ich finde es gut das Desmond Wolfe zu TNA anstatt zur WWE gegangen ist. Hatt direkt mal beim ersten PPV ein Top Match gegen Kurt Angle gehabt. Er wird TNA definitv weiter helfen können. Sein englischer Aktzent stört mich aber etwas ;)"
Rating: 9.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Matt Mackswrote on 17.11.2009:[10.0] "Das Jahr an der Spitze von Ring Of Honor hat Nigel -- Verzeihung: Desmond Wolfe -- gut getan, denn bereits kurz nach seinem Einstand bei TNAW geht von ihm die Aura eines Stars aus. Es hilft natürlich auch, wenn die erste Fehde gleich gegen den Superstar der Liga, Kurt Angle, geht, doch Wolfe hat diese Chance genutzt, um mit all seiner Erfahrung als Führungsfigur einer Liga sich selbst durch diese Fehde dem Publikum als Instant Star zu verkaufen. Nach all seinen fantastischen Schlachten mit Bryan Danielson oder Austin Aries hat er es sich verdient, auf nationaler Bühne erfolgreich zu sein und hoffentlich gutes Geld zu verdienen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Aquifelwrote on 16.11.2009:[10.0] "In den Indies hat Nigel bewiesen, wie gut er ist. Er hat Charisma, kann reden und erstklassig wrestlen. Seine bisherigen Auftritte bei TNA zeigen, dass er nicht nur bei ROH z. B. richtig rüberkommt, sondern auch in einer Mainstream Promotion. Und gerade, da er sich auch stilistisch nicht gebeugt zu haben scheint, gibt es auch immer noch die 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Big Bad Booty Babywrote on 25.10.2009:[9.0] "Ich glaube keiner verfehlt so knapp die zehn Punkte wie Nigel. Für die Indys ist er einfach perfekt, mit seinem einzigartigen, Lariat-basierten Kampfstil und zudem massig Charisma und sehr gutem Mic-Work. Er ist zwar nicht sonderlich spektakulär, aber technisch einwandfrei. Für seine Zeit in der WWE befürchte ich jedoch schlimmes, da man ihm höchstwahrscheinlich seine Lariats nehmen wird und er im Ring dann außer Technik nicht viel zu bieten hat, womit er jedoch in der WWE keinen Blumentopf gewinnen kann. EDIT: Muss er auch gar nicht, denn er hat bei TNA unterschreiben, worüber ich eigentlich ganz froh bin, da er hier seine Einzigartigkeit behalten und zudem direkt mit Kurt Angle fehden darf. Das riecht nach tollen Matches!"
Rating: 9.0
Sentiment: -0.4374999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Aesopwrote on 14.08.2009:[10.0] "Nigel McGuinness hat sich zu einem meiner Lieblinsgrestler entwickelt, de Heelturn im Jahre 2006 hat ihm mehr Charisma verliehen und im Ring ist er echt gut. Das er den Titel so lange gehalten hat finde ich gut, da er es sich verdient hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Eddiewrote on 03.06.2009:[10.0] "Wenn man mittlerweile von ROH spricht, fällt der Name McGuinness ganz bestimmt. Einfach ein cooler Typ mit sehr sehr vielen coolen Matches, der ebenso wie Danielson ein Match zu etwas besonderem machen kann, 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Mick Funkwrote on 30.04.2009:[9.0] "Großartiger Techniker, dem es, im Gegensatz zu vielen anderen Indyworkern, auch nicht an Ausstrahlung fehlt. Freue mich immer wenn ich ein Match von ihm zu sehen kriege."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Manolowrote on 02.01.2009:"Wrestlerisch nicht besser als noch vor 2 Jahren, und trotzdem hat er sich enorm weiterentwickelt. Anfangs wirkte sein Title-Run auf Grund von einigen Verletzungen und des daraus resultierenden schwacken Bookings (bspw. seine weinerliche Rede bei Final Battle(? ) 07 ein wenig verkorkst, aber seit dem Turn versteht Nigel es absolut, mich zu begeistern. Er hat im letzten jahr IMO deutlich an Charisma gewonnen. Desweiteren hat wohl niemand bei RoH (evewntuell noch der Dragon)im jahr 2008 derart viele MOTYC abgeliefert wie er. Klare 10 Punkte."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: 150pwrote on 14.12.2008:[10.0] "Zur Zeit einer der besten Wrestler der Welt. Hat ein unglaublich starkes Jahr hinter sich, wurde anfangs noch als 'unglücklicher Champion' belächelt, spielte dann aber seine ganze Klasse mit dem Heelturn voll aus und ist seitdem einer der besten Heels im Business. Klare Höchswertung!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Blazewrote on 06.12.2008:[8.0] "Hat sich bei ROH richtig gut etablieren können und ist verdient ROH World Champion. Trotz des eher kleineren Movearsenals ist er im Stande richtig gute Matchse zu zeigen. Mit allen Gegnern, die er als Champ hatte, kam fast immer ein gutes bis sehr gutes Match heraus. Nur mit der Zeit wird es langsam langweilig nur fünf, sechs verschiedene Moves im Match zu sehen. Weniger ist zwar manchmal auch mehr, dafür wirkt es manchmal zu eintönig. Seine große Intensität kann ich ihm nicht absprechen, denn die ist es auch, die Matches noch besser macht. Wird in Zukunft auch immer einer der Stars bei ROH sein und sicher irgendwann zum Main Stream übergehen. Denn im Vergleich zu anderen Workern von ROH ist er recht groß und hat dazu noch einen richtig guten Körperbau. Ich hoffe nur, dass er bald seinen Titel verliert, denn langsam wird es Zeit."
Rating: 8.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: The Instant Classicwrote on 28.11.2008:[9.0] "Starker Wrestler mit gutem Micwork, der im Ring allerdings dazu tendiert, immer wieder dasselbe zu zeigen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: homicidal cena michaelswrote on 26.10.2008:[9.0] "Er hat zwar nicht so viele Moves aber er weiß immer was er tut. Ich habe noch kein schlechtes Match von ihm gesehen. Er hat den Titel verdient aber er sollte ihn bald verlieren."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Tomkowrote on 18.10.2008:[10.0] "Ist für mich auf der gleichen Stufe, wie Danielson, was er stets mit seinen harten britischen Stil beweisst. Seine Lariats in allen möglichen Variationen sind wirklich einmalig und machen seine Matches immer wieder sehenswert ! Ich hoffe, dass er Joe`s Titelregentschaftszeit toppen kann, da er derzeit der Einzige ist, dem ich es wirklich gönne!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Ebessan Jackwrote on 16.10.2008:[10.0] "Einfach Göttlich~! Damit ist alles zu diesem Kerl gesagt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: MrWrestlingwrote on 01.10.2008:[8.0] "Kein schlechter Wrestler, bringt jedoch auch keine überragende Leistung"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: DayJay2kwrote on 08.08.2008:[7.0] "Puh Nigel MCGuinnes... Ihn zu bewerten ist schon so eine Sache. Er weiss was er kann und nutzt dies aus. Die Sachen die er zeigt kann er. Aber wo ist die Weiterentwicklung? Er reisst micht nicht mehr so vom Hocker wie er es noch vor Monaten getan hat. Einem Wrestler der stagniert gehört eigentlich eine 3, da er aber noch Potenziel hat sich zu einem absoluten TopDraw bei ROH zu entwickeln noch ne 2, 5!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: e-trom995wrote on 22.06.2008:[4.0] "Kann mich DawgPound85 nur anschließen... find ihn auch nicht so berauschend. Auch glaube ich , dass viele hier gute Noten geben die den Wrestler gar nicht kennen und noch nie gesehen habe!"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: DawgPound85wrote on 04.06.2008:[4.0] "Leider kann ich die allgemeine Meinung zu Nigel nicht teilen. Klar sind seine Lariats der Wahnsinn und er versteht sich aufs Pure-Wrestling, dennoch wirken seine Matches aber wirklich austauschbar und für mich ist sein auftreten in den RoH Shows meistens mit "Abarbeiten" verbunden.. Habe ihn allerdings noch nicht als Champion gesehen (man hängt ja doch hinterher durch die Masse der Shows), vielleicht kann er mich ja als solcher überzeugen. Vorerst werde ich weiterhin genervt stöhnen, wenn sein Theme erklingt.."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Muffiwrote on 03.06.2008:[9.0] "Ich mag seine Lariats eigentlich. Ist halt seine stärkste Waffe und die tut er häufig einsetzen. Dazu noch klasse am Mic und ein wunderbarer Heel."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Typicalwrote on 21.05.2008:[9.0] "Lariat, Lariat, Tower of London, das war einmal, er hat einen Submission Move gelernt *geschockt*. Mittlerweile als Heel genial und nicht mehr so langweilig wie früher."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Dave Concordiowrote on 06.05.2008:[6.0] "Guter Wrestler, der IMO am Mic nichts draufhat. Sein Run ist ein perfektes Beispiel dafür, wie schlecht es um RoH am Draw Sektor steht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[9.0] "Er hat sich den Status, den er gerade inne hält, völlig verdient."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: AnFuwrote on 12.04.2008:[9.0] "Nigel ist ein weltklasse Wrestler! Aber auch bei hm fehlt mir das gewisse etwas, ich hab ja nicht mal was gegen seine Lariats, aber die Bestnote kann ich nicht vergeben, 2+!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Rancorwrote on 25.03.2008:[6.0] "Nach dem was ich bisher so von ihm gesehen habe, ist er mit einem entsprechend sehr guten Gegner zu sehr guten Matches fähig. Abzüge bekommt er nicht, weil ich seine Frisur absolut dämlich finde, sondern weil ich einige seiner Standard Spots wirklich nicht ausstehen kann. Wenn da Aktionen aus unlogischen Positionen heraus kommen, mag das für manch einen zwar innovativ und cool sein, ich finde das äußerst störend. Ordentlicher Worker, in meinen Augen bisher aber auch nicht mehr."
Rating: 6.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Joeevil123wrote on 19.02.2008:[8.0] "Zur vollen Punktzahl fehlt noch das gewisse etwas. Zeigt mir Imo zuviel immer das selbe , kann aber defenitiv mehr. Er muß es nur abrufen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Parcewrote on 11.02.2008:[10.0] "Alles andere als 10 geht nicht! Hat alles, was man braucht. Ausstrahlung, die Größe, die InRing Skills und sgar Micwork ist in Ordnung. Wird noch weiter von sich hören machen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: GothicBearwrote on 17.01.2008:[8.0] "Ich würde Nigel wirklich zu gern die 1 geben, und ich freu mich auch riesig über seinen Titelgewinn 2007. Aber leider hat er sich im letzten Jahr zuviel auf seine (zugegebenermaßen guten) Lariats und zuwenig auf seine (sehr viel brilliantere) Technik verlassen. Dabei hat er doch grad bei Driven wieder gezeigt, was für grandiose Matches er bestreiten kann. Ich hoffe, 2008 kehrt er ein bißchen mehr zur Technik zurück, dann geb ich auch gern die 1."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Rashomonwrote on 16.01.2008:[8.0] "Sehr guter Wrestler, dessen Stil im letzten Jahr durch die Reduzierung seines Movesets auf Lariats ziemlich gelitten hat. Allerdings wieder auf dem aufsteigenden Ast, auch wenn er als Champion mit Verletzungen und Fanreaktionen zu kämpfen hat. Nimmt teilweise bescheuerte Bumps gegen den Schädel..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: shannonmoorewrote on 05.01.2008:[8.0] "Großartiger Wrestler für denn der Gewiinn des ROH Titels aber zu früh kam wie ich fand."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Remootwrote on 05.01.2008:[2.0] "Wieder ein Typisches beispiel für einen völlig überschätzten mann. Der Mann wird niemals ein Superstar werden... und da für mich auch Entertainment zum Wrestling gehört , und Nigel ungefähr für mich so Charismatisch is wie n sack reis. Ich ausserdem nix tolles finden kann seinem Wrestlingstil.. kann ich leider nur eine 5 geben"
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: mr sledgehammerwrote on 04.01.2008:[8.0] "Der hat noch genügend ungenütztes Potenzial. Gefällt mir aber trotzdem sehr gut. Mein Lieblingswrestler von Ring of Honor."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: -GMG-wrote on 02.01.2008:[10.0] "Was ich bis jetzt in den 6 Monaten die ich ROH regelmäßig gesehen habe von ihm gesehen habe beeindruckt mich wirklich. Sein Move Set ist sehr an den Europäischen Stil angepasst und sein Mat Wrestling sowie seien krachenden Lariats sind eine Klasse für sich. Das Match gegen Danielson bei Driven hat mich dann schließlich vollkommen überzeugt. Momentan für mich mit Hero udn Danielson der beste Independent Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Texas Tornardowrote on 28.12.2007:[10.0] "Die Matches die ich von ihm gesehen hab waren alle gut-sehr gut! Bringt super Moves!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Aaronwrote on 07.12.2007:[10.0] "Nigel hat Charisma wie Sand am Meer und er hat sich durch die einjährige Regentschaft als Pure Champion in den Main Event von Ring Of Honor befördert! Seine Fehde mit Danielson war einmalig und sein World Title Gewinn setzt nun dem Ganzen die Krone auf! Im Ring macht ihm höchstens Danielson noch etwas vor, aber Nigel ist und bleibt mein Liebling!"
Rating: 10.0
Sentiment: 0.2699032738095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Pulpulwrote on 29.11.2007:[10.0] "Nigel gehört mittlerweile zu den Besten der Welt, also wird die Benotung um eine Note angehoben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Anti-Championwrote on 22.11.2007:[10.0] "Nigel ist zurecht World Champion, Charismatisch und stark im Ring."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: LexLuger4everwrote on 21.11.2007:[10.0] "Hat einen riesigen Sprung gemacht! Gefällt mir wrestlerisch ganz ausgezeichnet und hat auch das nötige Charisma! Verdienter Ring of Honor Champion!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: The Showstopperwrote on 14.10.2007:[10.0] "Einer der besten Wrestler im Ring. Technisch makellos, dazu ne klasse Ausstrahlung. Der Push an die Spitze von ROH ist mehr als verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Sabu316wrote on 13.10.2007:[10.0] "Hat sich in den letzten Jahren unglaublich gut entwickelt. Am Anfang fand ich seine Matches noch ziemlich fad, mittlerweile bin ich froh wenn sein Name auf einer Card steht. Sein ROH Titelgewinn ist absolut verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ValiumSickwrote on 08.10.2007:[10.0] "Exzellenter Wrestler, In-Ring sehr gut, Charisma hat er sowas von, Mic-Work ist auch klasse, hat tolle Haare - würdiger ROH Champion! Sehr gut!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: CaptainCarnagewrote on 27.09.2007:[10.0] "Nigel McGuiness hat alles was man braucht um ein absoluter Topstar im Wrestlingbuisness zu sein. Er hat einen einzigartigen Look, eine gute Ausstrahlung und gutes Micwork. Hinzukommt, dass er im Ring einfach wahnsinnig gut ist und IMO noch besser werden kann. Ganz klar, 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Baszdmegwrote on 06.08.2007:[10.0] "Promos - spitze. Wrestling - spitze. Der Mann ist für die Indies geschaffen. Bald wird er auch, völlig verdient, ROH anführen. Nigel McGuinness ist die Zukunft dieses Sports!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Moonbloodwrote on 29.06.2007:[10.0] "Hat der Mann eine Präsenz, das geht ja gar nicht... - Ich bin wirklich kein Fan seines Stils, aber wer ihn so dominant und überzeugend wrestlen kann, der hat kein Problem damit, mich voll und ganz zu begeistern. Auch live war es immer ein Erlebnis, ihn sehen zu dürfen. Großartiger Wrestler!"
Rating: 10.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: ShaneOwrote on 29.06.2007:[8.0] "Top Worker. Sicherlich einer der Besten in der Indy Szene. Ruft aber glaub ich nicht sein ganzes Potential ab. Dennoch - gut."
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: Garvinwrote on 24.06.2007:[10.0] "Gehört meines Erachtens zur Elite der Indy-Szene. Auch wenn er auf jeden Fall noch nicht sein komplettes Potential abruft, hat er dennoch viele grandiose Matches geliefert, insbesondere im vergangenen letzem Jahr."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Super Charisma, Im Ring auch sehr unterhaltsam und eine klasse Frisur :D"
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=484&gimmick=Nigel+McGuinness
Comment: aulitwrote on 24.06.2007:[8.0] "Zuerst gefiel er mir gar nicht. Das hat sich im Laufe des letzten Jahres geändert. Klasse Wrestler mit einem unterhaltsamen Stil. Klasse auch seine Einzugsmusik. Es reicht (noch) nicht zur 1, aber wenn er so weiter macht hat er die spätestens Ende Jahr verdient."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: troyotawrote on 15.10.2024:[10.0] "My favorite wrestler of all time. She was so talented, and it's such a shame that injury took her career away from us. Not only is it sad for the fans, but especially for her since she had so much joy in wrestling. If she was still around and injuries didn't taint her so much, she would fully be considered one of the best women in the world, because even despite her 2nd run being short, people already consider her one of the best of all time in Stardom. She was obviously a bit stiff when she returned but she quickly developed into one of the best and most fun wrestlers to watch in the company. Rarely does anyone leave as big of an impact in such a short time as Arisa did. I hope she's doing well and she'll always have at least one fan in me."
Rating: 10.0
Sentiment: 0.2341614906832298
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: MVCfanwrote on 09.01.2024:[5.0] "Honestly, as much as I liked Arisa he does not have the output is something she does not have. and nope, she doesn't like she has ike some who worked for promotion like rings who had mostly world-class level output. Most of my points come form the fact she was on the best strikers in wrestling in the modern era but this does not make her an all time level worker IMO. That fact he went away for six years the only had around two years run after she came back and stardom card structuring style hurts her match output highly. around very maximum mid-5s maybe if was low 6 it would be OK. but nothing higher"
Rating: 5.0
Sentiment: 0.32583333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Kamilahclanwrote on 22.04.2023:[6.0] "A good wrestler with a very good career considering how short the lifespan of modern joshi is. I'll remember the tam nakano match."
Rating: 6.0
Sentiment: 0.45249999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Pertinaxwrote on 27.10.2022:[10.0] "I didn't get to watch Arisa when she was active, but I am loving going back and watching all of her classic matches. She performs her strikes unlike most I've seen in wrestling and they look absolutely lethal. Quickly became one of my favorite Joshi."
Rating: 10.0
Sentiment: 0.2708333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: abid03wrote on 19.06.2022:"During the time she was active, she was one of the very best talents in the world Making her return in late 2018, and having a dominating 2019 run as the Wonder of Stardom Champion. Unfortunately she was forced to retire in May of 2020 due to her injury. She did make a temporary return to the ring in 2021, was wonderful to see her back. Wherever she is, I hope that she's doing well."
Rating: No rating found
Sentiment: 0.08020833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: velwrote on 23.04.2022:[9.0] "Arisa is perfect babyface for Stardom who ticks all the boxes. She is tall and charismatic, she knows how to interact with the audience in an interesting way and she is one of the best kicker in buisness. In fact, I have never seen better leg work in joshi wrestling. The only problem is that she did not have enough time to reveal her full potential. Throughout her journey, she was very successful, she let the opponents show their best, and then, when the match became tense enough, she executed them with her kicks. It is a pity that we did not see her in any other role."
Rating: 9.0
Sentiment: 0.35111111111111115
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Suzukigunwrote on 27.01.2022:[9.0] "I will always miss Arisa. She was so gifted in the ring, a true natural, with fantastic kicks that made her must see. She also had really good speed and was a machine during her second run. Her retirement still makes me sad, and the fact that she can't even do work in AWG due to her health is downright depressing. Hopefully she finds peace in retirement, or is somehow able to get healthy enough to at least do AWG again."
Rating: 9.0
Sentiment: 0.11730769230769228
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: NoSellwrote on 09.12.2021:[10.0] "One of the saddest retirements. She had been doing ring acting at ARG this past year and a half and she even recently retired from that due to head and neck problems. At this point I just wish she gets well and is able to live a quality life. She was amazing, her white belt run is banger after banger. I don't think anyone will forget her, Shining Star forever."
Rating: 10.0
Sentiment: 0.0771885521885522
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: sami07wrote on 26.09.2021:[10.0] "She is so incredible, everything she does is perfect in my opinion. I love all of her moves, her personality she is so special and unique. She is something that can't be imitated. Her way of telling story, her facial expressions, her moves, her kicks, her happiness... Arisa has been my favorite Stardom wrestler once I started to watch in May 2019 and she also is my favorite wrestler of all time"
Rating: 10.0
Sentiment: 0.5369047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Shadow Explosionwrote on 26.01.2021:[10.0] "One of the best Joshi Wrestlers of All Time. Not only was Arisa memorable with her matches against Tam, Kyona, & Hazuki; but she was also memorable with her promos calling Momo's kicks "Fake" and saying that she was going to thank Hazuki with her kicks. She was willing to do what it took to have a great match and sadly her greatness only lasted around 7 months, however I don't think the duration of how long she was in the ring should be a factor, what she did in there was amazing and I wish her the best success with her band Unlimited Dream Navigator (also her theme song "Shining Star" is awesome. )"
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: ProWrestlingGuy316wrote on 09.01.2021:[9.0] "Musste leider viel zu früh ihre Karriere beenden. Für die sehr kurze Zeit, die Arisa im Ring stand, war sie absolut hervorragend und wäre unter normalen Umständen einer der Top Stars von Stardom. Ihre Regentschaft als Wonder Of Stardom Champion knüpfte nahtlos an die von Rekordregentschaft von Momo Watanabe an und sie war speziell 2019 herausragend. Ich vermisse sie sehr. Und außerdem hat sie ein gutes Match aus Bea Priestley rausgeholt, was in meinen Augen immer erwähnenswert ist."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: ElPolloLocowrote on 14.11.2020:[5.0] "Good and funny at promos, but if you took away her kicks there wasn't a whole lot left in the ring. Not bad because she was funny and deserves respect for putting her body on the line but hardly memorable."
Rating: 5.0
Sentiment: 0.32142857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: arrancarwrote on 20.05.2020:[9.0] "Well, damn. Arisa is retiring. What a massive blow to Stardom and Joshi in general. Arisa was easily the best women's wrestler in the world in 2019, and also one of the best champions in all of Japan. She was an absolute all-rounder with an incredible offence. Many other joshi stars wrestle styles that, while very good, are occasionally too sloppy or weak-looking, but Arisa genuinely had one of the most crisp offences I've ever seen. Her beautiful variety of kicks and knees were of course her speciality, and not only did she clearly have a legit striking background, given her perfect technique, but she always got fantastic impact on every single strike. I knew she was using thigh-slap sound effects on the majority of these attacks, but she did so while very cleverly masking them by drawing attention to her other movements at the same time, making her attacks come across as completely convincing. If we don't want to focus on Arisa's offence, then let's focus on her selling, because she was also fantastic there. It's always difficult to pin down exactly why we connect with certain wrestlers and feel sympathy towards them when they sell, but for whatever reason I just found it ridiculously easy to believe that Arisa was truly in immense pain or totally exhausted whenever she seold the effects of her opponents' attacks. She had the perfect facial expressions to communicate those ideas, so it was super easy to get invested in her struggle and they get hyped for her vicious comebacks. Having had a truly great 2019 only to retire half-way through 2020, Arisa will easily go down as one of the most disappointing early retirements in wrestling history. I had hoped to see her eventually become the undisputed face of Stardom, and I don't doubt that she could have achieved that if these awful injuries didn't get in her way. Her return to wrestling may have only lasted a year, but it was a damn great year."
Rating: 9.0
Sentiment: 0.2209199870424361
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Riggswrote on 24.02.2020:[7.0] "She has a good look and is decent in the ring. Not too sloppy. Fairly good at bumping and selling. She has a great smile and is more expressive than most. However, she feels like many other upper mid-card Joshi. I enjoy her matches, but her level of quality is about the same as many other. The one exception is her feud with Tam Nakano. Her white belt match with Tam was one of the best of the year in 2019. If she can find the ability to put on matches with everyone like she did Tam, she will be outstanding."
Rating: 7.0
Sentiment: 0.3526315789473684
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: 20SaiDa19wrote on 02.11.2019:[9.0] "Arisa has all the potential to be one of Stardom's biggest stars going forward. Despite a rough start after her return last year, Arisa improved greatly throughout the spring and by the summer was putting on some of the best women's matches of the year. Her feud with Tam Nakano is also one of my personal favourites this year as it showed her range as a performer, with her being able to play either a serious or a goofy character very well."
Rating: 9.0
Sentiment: 0.2566666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: NEVERoverweightChampionwrote on 02.08.2019:[8.0] "When she came back she was very rusty but she improved a lot since then and became a reliable talent and does a great job in every big match so far. She is a great athlete, her strikes look good, her selling (especially selling of the strikes) is very good and she can pull out some unique moves but above all she can put a lot of intensity and emotion in her matches. She makes a great champion and like almost every Stardom wrestlers she is still very young, so she has room to improve."
Rating: 8.0
Sentiment: 0.37038461538461537
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[9.0] "Male or female, Arisa is one of the best kicker in the game today. I like Dakota Kai, but she has nothing on Arisa. Since she returned she has really stepped up all around in the ring & I think she can grow to be a leader in Stardom for years to come. As a pretty new fan to Stardom, her matches are always a highlight to see."
Rating: 9.0
Sentiment: 0.1694805194805195
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: BadAssTranslateTradingwrote on 21.06.2019:[9.0] "The queen is back babeyyyyyyy! Retired way way to early and finally returnedto Stardom last year , shes been on a tear since and her match with Konami from the Cinderella final is amazing. The future looks bright for her at only 23."
Rating: 9.0
Sentiment: 0.15555555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: AlexLikesJoshiwrote on 20.06.2019:[10.0] "Hoshiki has delivered big time in every big match so far.  Her strikes are some of the cleanest in all of joshi and her kicks look awesome.  She makes every match feel like a war and has not rested on her laurels.  She could have easily been great with just her kicks but since her comeback she's added a sick running knee to her arsenal as well as a few other signature moves."
Rating: 10.0
Sentiment: 0.1437830687830688
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Aurtletheturtlewrote on 07.02.2019:[9.0] "Arisa is super awesome. Finally back from a ridiculously early retirement, Hoshiki has everything needed to become the next big STARDOM main eventer, incredibly unique offense, good personality and able to get everything she does over. You might best know her from those gifs on twitter of poor innocent Joshi's getting their skulls caved in by Arisa's brazilian kicks. Hoshiki is so cool."
Rating: 9.0
Sentiment: 0.33035714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10478&gimmick=Arisa+Hoshiki
Comment: Nikkideamus Osyrenwrote on 24.10.2014:[9.0] "I have no idea why she hasn't blown up yet.  She's got a huge moveset, and is very athletic.  She has a very fun attitude, and a great style, that isn't the norm for Japanese women.  She's pretty unpredictable in the ring, and is a lot of fun to watch.  I think her matches always have a great chemistry; you know she's a good storyteller when I feel her emotions even though I can't speak her language.  If you want a nice introduction into the Joshi world, I'd start by watching her."
Rating: 9.0
Sentiment: 0.3884848484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: lostinjapannyoutubewrote on 04.01.2025:[9.0] "The Ace of the promotion and a near perfect build for THE joshi wrestler of my dreams. The next two or three years we will be treated to her prime talent arc."
Rating: 9.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Rivermanwrote on 01.09.2024:[7.0] "Have to agree with some of the more mixed comments on Miyu. She has her moments and at her best, she can have truly great matches with some wicked strikes and physicality. However, I can't quite call her elite because of a lack of consistency and ocassionally underwhelming performances in my opinion."
Rating: 7.0
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Machinedwrote on 05.01.2024:[8.0] "This is a weird one to review because even though I think she's a good wrestler, she stayed in the same company for over 10 years now and the lack of versatility in her opponents is not great. However, whenever she faces one of the pillars or someone like Miu, it's really good. Sadly when I see her wrestle in the US she kinds of disappoints me, for example against Rosa or Athena they are not bad matches but I feel like she doesn't really live up to the hype I'm expecting from her. Good striking abilities (they are better kickers out there), awesome Skull Kick though and her death stare looks like she'll kill you in an instant."
Rating: 8.0
Sentiment: 0.24510489510489508
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: skillgullwrote on 11.12.2023:[10.0] "Probably the coolest Joshi and definitely one of the coolest in the world. Able to have stunning matches with anyone, I always tend to enjoy her matches as she dominates her opponents. Awesome and the epitome of badassery, the ace of TJPW."
Rating: 10.0
Sentiment: 0.48
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: chibimattywrote on 02.08.2023:"Left-field comment, but I wouldn't mind seeing Miyu in the House of Black. The dark gear, the deadly eyes peeking out over a mask, the stereo spinkicks with Malakai Black, I think Miyu could play a really dark heartless character, kicking heads off all and sundry in the women's division"
Rating: No rating found
Sentiment: -0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: theshelfableswrote on 17.07.2023:[6.0] "TJPW's ace has a great moveset. An arsenal of kicks that all look great, some great running offense (I love Crash Rabbit Heat and that jumping lariat she does) and even a pretty sweet release German suplex. She's strong and makes for a pretty formidable final boss and a good representative for TJPW abroad. She can also be a bit of a lovable goofball and pretty funny when the situation calls for it, which in her home promotion, it can quite often. I like Miyu and she honestly seems like a real sweetheart outside the ring. She does unfortunately have one critical flaw that keeps her lower than she should be for me. Her selling is very inconsistent. Especially so for limb work which is super odd given how diverse her moveset is. She doesn't need her kicks to win so its very strange when an opponent goes in on her legs and she just ignores them and leads with kicks anyway. It's even worse if god forbid a rookie has their debut match against her. I don't think she buries anyone on purpose or anything but I do think she has a lot of work to do when it comes to making her opponent look good. I know Miyu cares very much for TJPW and I really want to see her get to that point where she can elevate the talent she works with alongside herself."
Rating: 6.0
Sentiment: 0.2774137931034482
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Bullshark1wrote on 12.01.2023:[8.0] "Miyu Yamashita is so talented, but sometimes doesn't live up to the hype. I've seen her in joshi leagues like TJPW to American indies promotions like DPW to massive companies like AEW, and it's all the same. She's a great striker, but her move-set isn't limited to just that. She's got limited charisma, and her character is good but not great. She's fine where she's at, though, with a big fanbase of people who adore her."
Rating: 8.0
Sentiment: 0.1841810966810967
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: suff3rwrote on 12.10.2022:[10.0] "Just about everything you could want in an ace. Her sense of measure and pacing are unparalleled in the wrestling world. Everybody talks about the kicks and yes, of course her kicks are perfect, but the truly great thing about Miyu Yamshita is her ability to tell a story with her body, the way she moves in the ring--especially against one of her juniors--tells you everything you need to know even if you don't speak a lick of Japanese. Only a few wrestling matches have ever made me cry, and Miyu Yamashita is in most of them."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Caaswrote on 14.08.2022:[4.0] "I don't get the praise here. Every month or so, I hear about this must-see MOTYC featuring Yamashita, and upon watching it I just end up completely perplexed. Sure, her offense looks pretty good and crisp, but she does not sell anything. She bumps like a trainee, with arms stretched out and making zero effort to legitimize impact, as if bumping in professional wrestling is just an obligatory task between performing more of your own spots. Her matches, even in loss, seem way more focused on herself than it ever is to working to elevate an opponent, in a very Shane Douglas-esque way. But her kicks are nice and she does a great bridge, so just like Logan Paul at SummerSlam 2022 impressing the world with a simple top-rope splash, I must be wrong and she's actually brilliant."
Rating: 4.0
Sentiment: 0.359375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Wrestling Foreverwrote on 04.08.2022:[9.0] "Wahnsinns Joshi und was für harte Kicks sie drauf hat da ist der Sportliche Hintergrund Karate absolut klar."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: CrionJBwrote on 25.07.2022:[10.0] "If your belief is that anyone can get a striker gimmick over and all she does is kick people and go home, well, I guess you don't watch the worker or the promotions. There's a reason high-level workers like Yamashita get over the way they do with regional crowds like DEADLOCK Pro Wrestling and Garden State Pro Wrestling, and why she's the ace of her home promotion TJPW in Japan."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Penguinowrote on 24.07.2022:"While good, vastly overrated. She is not only nowhere near the best in the world, she isn't even near the best in her own promotion."
Rating: No rating found
Sentiment: 0.4375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: nWo-Joshi-Guywrote on 21.07.2022:[9.0] "Amazing wrestler but not perfect in my opinion. Brilliant kicks. Some of her big matches leave me a bit disappointed sometimes; although they are still very good of course. Out of her and Stardom's Syuri (top billed mostly serious Joshi striker types yet sometimes wacky) I prefer Yamashita; and yet she is far from one of my favourites in TJPW (really shows how awesome the roster is)."
Rating: 9.0
Sentiment: 0.2605555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Ma Stump Pullerwrote on 14.06.2022:[7.0] "While functionally solid within the environment of TJPW, Yamashita's lack of range beyond "hits hard" is something of a issue that many don't really tend to acknowledge. It's fine within the vacuum of TJPW as she's one of the few acts there that feels and acts like a big deal, but it's definitely something of a problem as those types of gimmicks tend to get stale if the person doing them doesn't drastically change how they wrestle. Both Kenoh and Nakajima have had to drastically adjust their character and gimmicks around in those same cases: the issue is that Yamashita's range is nowhere near those two and I honestly can't see her playing any other character than the exact same one she's been doing for essentially the entirety of her career. Her charisma is certainly there and she's fairly solid at carrying far less capable talent to her level, but as a whole package, there's definitely some issues in terms of originality. Her tag work is VERY hit and miss but that's usually because of the quality of opponents she typically has to share the ring with. Her kicks mostly look good (especially in a isolated GIF environment as people tend to see them as) but in matches they can look a bit dodgy at points and she wiffs a surprising amount at times. Her selling is also something that tends to be very varied, at times feeling like she just easily shrugs off offence and sustained limb work to get her own shit in, which is a annoying habit that irks real bad, especially in big match formats. She's still a very solid wrestler as a whole, but there's obvious issues that I think restrict match quality a lot of the time."
Rating: 7.0
Sentiment: 0.06355981416957027
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: GriffinXwrote on 06.05.2022:[10.0] "Its easy to see why she is TJPW's ace. In a company that doe a lot of comedy she brings that level of seriousness need to draw fans in and keep them hooked."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Mizzle Assault Antwrote on 21.01.2022:[10.0] "Absolutely awesome wrestler. A tiny murderer of the highest order, with the dead serious face to match and kicks that will actually kill you."
Rating: 10.0
Sentiment: 0.09333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Moderaswrote on 17.01.2022:[10.0] "My favorite female wrestler and an amazing wrestler no matter the category. Carries herself like she knows she is a big deal, and always delivers at match time."
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: k97wrote on 31.12.2021:[10.0] "Very smooth in the ring. I don't mean this as a slight to either person, but watching her makes me think of a smoother shinsuke nakamura. Whereas nakamura is incredibly jerky and violent, Miyu always looks very fluid and graceful moving around the ring while having her own great signature kicks. Has a really cool look and presence as the champion and ace of TJPW."
Rating: 10.0
Sentiment: 0.2100925925925926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: NoSellwrote on 25.11.2021:[10.0] "She's far and away the best performer in TJPW and one of the best current female workers in the whole world, probably top 5, if not that, definitely top 10. The Skull Kick is an insane move and it looks better every time."
Rating: 10.0
Sentiment: 0.28
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Navidwrote on 11.09.2021:[7.0] "I like her moveset and she has decent match building skills, wrestling wise she is one of the best, but that's not what it's all about. Every time I see her I think she looks like a superstar, she has this look when you see her for the first time. But after a few minutes you realize that she has no facial expressions and actually only a very limited charisma. Her matches therefore only work if her opponent pulls her along with her charisma, which is why it would be better if she would work Heel, which she actually doesn't do. It would be interesting to work with her on this problem, but no one seems to be doing that."
Rating: 7.0
Sentiment: 0.23531746031746034
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Lalo Camposwrote on 02.09.2021:[10.0] "One of the best Joshi wrestlers that I have ever seen in my entire life, the truly Ace of TJPW and a future legend of Puroresu"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Zaubernmannwrote on 02.07.2021:[6.0] "Zu schwer, um ein Darsteller zu sein, den ich gerne auf einer Karte sehen würde, weil Sie bereits wissen, was Sie bekommen werden. Vielleicht wird sie sich entwickeln."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: MikKeyEdwrote on 16.05.2021:[10.0] "For a little more than half a year, I have been a big fan of Miyu and during all this time I was not dissatisfied with any of her matches. Best girl and joshi in this world!"
Rating: 10.0
Sentiment: 0.22916666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: metagodzillawrote on 07.05.2021:[7.0] "Solid work but the striking gimmick is a dime a dozen in not just joshi but wrestling in general. She might evolve her style over time."
Rating: 7.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Traum Einhornwrote on 30.04.2021:[7.0] "Ich liebe die Kampfkünste, die sie einsetzt, auch wenn ihre Form manchmal nicht stimmt. Keine große Spielerei, aber sie kann rechtzeitig etwas finden."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Grissomwrote on 20.04.2021:[10.0] "Miyu Yamashita ist das Ace von TJPW und wohl die beste Joshi Wrestlerin im Roster. Ein komplettes Allround Paket wenn man so will. Dazu sehr charismatisch und mit einer sehr coolen Ausstrahlung ausgestattet. Ihre großen Singles Matches enttäuschen so gut wie nie."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: yzarcniogmiwrote on 19.04.2021:[7.0] "Good striking stuff of course but a bit repetitive and the same type of character of any joshi striker."
Rating: 7.0
Sentiment: 0.2375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: AmarantCoralwrote on 17.04.2021:[10.0] "Phenomenal athlete, possibly the greatest female wrestler in the world today and a strong contender for the title regardless of gender. Unmatched striking ability and ridiculously clean technical form, very Danielson-esque while upholding the puro style."
Rating: 10.0
Sentiment: 0.33333333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Kungwrote on 14.04.2021:[9.0] "While there are many wrestlers in TJPW who entertain me, there is no one else in the promotion who I enjoy watching work between the ropes than their ace, Miyu Yamashita. She's a special talent."
Rating: 9.0
Sentiment: 0.41904761904761906
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: pierreMinnewrote on 27.03.2021:[10.0] "Miyu Yamashita is one of the very bests female wrestler in the world. She has all, her in ring is awesome, she is very charismatic and got some of the bests kicks of the joshi. She is one of the first I really loved in TJPW."
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: THATSGOTTABEKANEwrote on 18.02.2021:[10.0] "The Ace of Tokyo Joshi Pro Wrestling. So good and very lethal with her legs that it's basically a lethal weapon at this point. I don't remember when it took place but I saw a clip of her doing a very mean spinning back kick to Mirai Maiumi and it had looked and sounded like she took her head off (absolutely brutal). Everything she does in the ring is great and just looks good this why she is undisputedly the ace of TJPW, my favorite Joshi wrestler right now, and an absolute badass in the ring."
Rating: 10.0
Sentiment: 0.21044642857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Hawksrule996wrote on 28.01.2021:[10.0] "One of the best wrestlers in the world with so much intensity her kicks are some of the best and her selling is top level she is equally good against men and women truly a special talent"
Rating: 10.0
Sentiment: 0.6261904761904763
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Chekerwrote on 30.12.2019:[8.0] "Yamashita to me feels like the best wrestler in Tokyo Joshi by a comfortable margin. I think the only other woman there you can compare her to is Nakajima Shoko, but she loses because she does comedy sometimes. The way she moves, the way she puts on moves, the way she sells, she's just on a league of her own, and it shows."
Rating: 8.0
Sentiment: 0.26249999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: ooomegooowrote on 08.11.2019:[8.0] "This girl is good. No, she just one of the best strykers in the world. It would be interesting, to look her to face for Konami from Stardom, or Arisa Hoshiki. But last time, I see her in the DDT, versus Kenny and Riho, and that was great. She must go to bigger promotion, she overgrown TJPW as same a Sakazaki. Or maybe TJPW must grow up? I don't know, but for this moment, Yamashita-san earns 8."
Rating: 8.0
Sentiment: 0.42857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: cuervonegro83wrote on 27.08.2019:[9.0] "When I saw Miyu for the first time I feeled she was a champion. When she enters the ring you can feel that thing some wrestlers have. Then when the match starts, when can see she is a striker but also a great technician, I always like wrestlers that use kicks and Miyu is a good one doing that, she also uses punches, knees and some moves to put some variety in her matches, so Miyu's matches are always a good choice to see good wrestling matches."
Rating: 9.0
Sentiment: 0.6300000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: cmchampwrote on 05.05.2019:[9.0] "Her rating is soooooo ungenerous! This girl is amazing, she can bring a good match out of anybody and has the charisma of a leader. She has a bright future ahead."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: Yapperman3wrote on 06.09.2018:[8.0] "the kind of wrestler you can put as the face of your company. very solid in the ring and also kind of a lovable dork in real life"
Rating: 8.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15842&gimmick=Miyu+Yamashita
Comment: gerrystumbaughwrote on 10.05.2018:[8.0] "Really just keeps getting better. Miyu is basically the only reason I follow TJPW but her main event singles matches are well worth seeking out."
Rating: 8.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: samotwrote on 22.01.2025:[7.0] "He's a good worker all around and the Crow character was awesome but as someone who was born in the middle of the Monday night wars and therefore wasn't familiar with Sting until maybe 2013, I never had that connection one makes with the top guys of their youth with him as I was already "smarkified" by then."
Rating: 7.0
Sentiment: 0.515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Big R3d Mach1n3wrote on 19.01.2025:[10.0] "Whether if you want to address him by anyone of his nicknames "The Stinger" "The Vigilante" or "The Icon", Sting was my absolute favorite wrestler in WCW. I've always hated the fact of the wasted potential WWE did once they finally got Sting."
Rating: 10.0
Sentiment: -0.057142857142857155
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Impact 33wrote on 14.01.2025:"One of greatest wrestlers of all time. He was WCW franchise wrestler. My favorite sting is the crow sting because that what I grew watching him wearing the black and white facepaint."
Rating: No rating found
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: AntiCMwrote on 28.12.2024:[10.0] "Sting... How can we talk about him, he is one of the few people in the history of wrestling who has remained successful throughout his career, I loved this whole industry with him and I am grateful to him. Regardless of his age, he was at a certain standard in the ring and his promos were always valuable. He adapted to every role he acting in the best way. If someone asks who the icon of wrestling is, it must definitely be Sting."
Rating: 10.0
Sentiment: 0.29603174603174603
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Unrightwrote on 26.12.2024:[7.0] "Sting had presence. Sting had charisma. But Sting is not a legendary wrestler. He had his basic move sets and spots. But he never really pushed himself or tried to elevate anything. I never really got the sense that wrestling was an artform or that he particularly enjoyed it. He's fine. Like I said, his charisma makes him above average. But he wasn't legendary."
Rating: 7.0
Sentiment: 0.11851851851851852
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: JuanLocowrote on 22.12.2024:[10.0] "Surfer Sting, The Crow Sting, Wolfpack Sting, The Icon Sting, Old School Sting, TNA Sting, The Main Event Mafia sting, Joker Sting, WWE Sting, AEW Sting as a mentor... The ability to reinvent himself over and over again and be successful in each one is something that only Sting knew how to do throughout his career, incredible psychology and skill and a legendary finisher."
Rating: 10.0
Sentiment: 0.4861111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ItsAllAWorkAnywaywrote on 04.12.2024:[9.0] "Sting was the ultimate "9.5" wrestler in that he should be in rarified air because of his visibility, but his runs all too often found themselves overshadowed by other wrestlers. "Surfer" Sting of the early-90s was a main eventer either because of luck (he beat Flair with a roll-up when he won the NWA World Championship) or because they needed to move the belt from Luger to Vader. In the latter 90's, Crow Sting came and captivated audiences... until a convoluted finish at Starrcade 1997 set the stage for WWE to mount a comeback in the "Monday Night Wars." Many clamored for a Sting-Undertaker feud, but Sting would instead go to TNA and would have his only "WrestleMania moment" being that where DX vanquished nWo for good... and roughly 20 years after the feud was relevant. Retiring as AEW World Tag champion in the latter stage of his career, Sting can at the very least claim to have titular accomplishments in WCW, TNA, and AEW."
Rating: 9.0
Sentiment: 0.10430555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Zak22wrote on 20.11.2024:[8.0] "A deserved legend, Sting had a long and very successful career. My personal favourite of Sting's runs is his original NWA/WCW blonde surfer Sting run, he was so good at being that traditional, exciting and energetic babyface and he had some pretty good matches against the likes of Vader in that era and for me he was the best babyface definitely in North America and maybe the world at the time. The Crow Sting character and storyline was fantastic but the matches weren't great until mid-1998 and then Sting's quality became better and more consistent, especially those matches against DDP on Nitro. TNA Sting was inconsistent due simply to age but not bad by any means. Didn't watch his WWE or AEW runs. So yeah, deserved legend, not the most consistent over the course of his career but a lot of highlights and good periods."
Rating: 8.0
Sentiment: 0.355
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Green Deliwrote on 04.11.2024:[10.0] "When I started watching wrestling in the summer of 2018, Sting was considered retired, and I had no real way of experiencing what made him one of the all-timers. That is until he came to AEW, and proceeded to have the best run in AEW history. Even though he was protected in tag matches, he still put on barnburners at 63 years old with bumps through tables, dives off stages, and playing the hits like the 6 years he spent in retirement didnt even happen. And that doesnt even scratch the surface of what hes done; hes had all-time great feuds with Ric Flair and Vader, set the standard for retirement matches that John Cena and Hiroshi Tanahashi should be working their asses off to top within the next year, and was always over with the fans. Even though showtime is over for Steve Borden, hes finally able to look back and smile, because he may have had the greatest career a pro wrestler has ever had."
Rating: 10.0
Sentiment: 0.29230769230769227
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Brando Calrissianwrote on 01.11.2024:[10.0] "Sting is a legend who wrestled in 5 different decades, reinventing himself and the industry whenever he needed to. Sting was a legend in WCW and TNA, mishandled in WWE which wasn't his fault, then ended his incredible career with the run of a life time in AEW. Sting has been the clean cut babyface star, dark anti-hero, crazy villain, stoic father figure, and really any role that you could think of. Sting deserves everything, and has earned his perfect retirement match and time to rest."
Rating: 10.0
Sentiment: 0.24523809523809526
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: lukasmgcwrote on 19.10.2024:[8.0] "Don't get me wrong, he's an icon. But he never had that "wow" singles match for me. Something that solitifed him as one of the best in ring workers. He never had that. Yes he was really good in terms of character but he never had that greatest match of all time. His run in WCW is legendary though especially during its peak."
Rating: 8.0
Sentiment: 0.4714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: maven loverwrote on 14.10.2024:[10.0] "Definitely one of the best wrestlers to ever do it. He has aura & promo skills for days, & his work in prime-era TNA was especially unforgettable & so physically dynamic. His longevity game was among the best in the industry, & the way he was moving around & bumping through his AEW days seems to indicate that he could have probably gone longer, if he so wished to. The industry seems like a hole was truly left there without his presence, & it's a shame that a simple google search does nothing to indicate what Steven Borden may be up to backstage these days, if anything. I look forward to what Sting's son, Steven Borden Jr., will be able to bring to the table once his training has been deemed adequate."
Rating: 10.0
Sentiment: 0.3433333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: sKiaWeVwrote on 14.09.2024:[8.0] "Sting is part of a category of wrestlers who can't wrestle to the current standard but more than make up for that with their character and aura. Sting is for a lot of people the most iconic character in wrestling and although I didn't watch WCW when I was growing up, I find it hard to argue that he doesn't have a legendary aura (even in his older age)."
Rating: 8.0
Sentiment: 0.29687499999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: SavageTygerwrote on 13.09.2024:[9.0] "Sting is 3rd favorite wrestler ever, so I am not unbiased. His career spanned 40 years which is insane. At the same time, I regret every second of his WWE run (outside of having him in the games) and loathe his AEW run probably even more since he was stuck with Darby Stuntman, and Sting in the NWA, WCW. TNA was among the most energetic and charismatic wrestlers in the world. Sting managed to recreate himself multiple times and even tried ill-fated heel turns later in his career...nobody was going to boo Sting."
Rating: 9.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: jsbortswrote on 08.09.2024:[8.0] "Sting is 99% Aura and 1% working ability. He cuts one hell of a promo, but man oh man there's so many weak spots in this guy's in ring career, and a lot of it to no fault of his. Sting's aura and charisma has always outshone his in-ring ability, but he's undeniably one of the most important people to North American wrestling television."
Rating: 8.0
Sentiment: 0.205
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: OneSuddenBOOMwrote on 04.09.2024:[10.0] "This guy had, has and will forever have aura. The longevity of Sting is insane and he's absolutely smashed it wherever he's been in his long, illustrious career."
Rating: 10.0
Sentiment: -0.2833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: wrestlingswiftiewrote on 26.08.2024:[10.0] "I strongly prefer him over the Undertaker, any day. This guy had the presence, star power, and "aura, " as the kids would say. He could talk with believable promos that showed his charisma too. Also, his ring work is vastly underrated by modern fans. He didn't feel slow and sloppy like Taker, but he also didn't overuse the big moves."
Rating: 10.0
Sentiment: 0.059523809523809514
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: namisuzwrote on 22.08.2024:[10.0] "One of the greatest of all time, being popular and a legend like this outside of WWE, He is just incredible and I like him more than others."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BizarroMaskwrote on 02.08.2024:[7.0] "He is not the biggest in ring performer, he was great guy ; was able to put the Light on several wrestling company and we can thank him for that. He single handely carry WCW throught all the 90's , had great matchs in TNA , and a short but entertaining run at WWE. A man with a complete wrestler , just not my kind."
Rating: 7.0
Sentiment: 0.3628571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Willie 19200wrote on 28.07.2024:[10.0] "Easily one of the most influential and talented wrestler anyone would want on their roster. Sting is a guy, who even with his older age, continued to put on great matches. His matches with Ric Flair in WCW, to taking over TNA. I will say his WWE career was not stellar but that's not his fault. But his AEW stuff felt special because although he was undefeated, he still put people over along with one of favorites Darby Allin. He is easily one of the greatest to ever do it."
Rating: 10.0
Sentiment: 0.473941798941799
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: tyotewrote on 19.06.2024:[10.0] "Simply one of the greatest of all time. From his days as the energetic, neon-clad babyface taking on Flair and the Horsemen and ushering in a new era for NWA/WCW, to his dramatic character shift as "Crow" Sting, to his twilight years working as the grizzled veteran against many of the top stars of the last 15 years, there will never quite be another wrestler like Sting."
Rating: 10.0
Sentiment: 0.2447811447811448
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Rassle Fanwrote on 29.05.2024:[10.0] "One of the greatest superstars in the history of wrestling. He went from an explosive, high flying, ultra babyface to a brooding, menacing, force of nature. There's nothing he couldn't do. Maybe his promos were a little weak but the Joker Sting version provided some of his best ever. Very late in his career in AEW he actually had some natural, relaxed, thought out promos. He took great care of himself and until further notice has the greatest final run of any of his peers."
Rating: 10.0
Sentiment: 0.1621153846153846
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Red Mage Riotwrote on 02.05.2024:[10.0] "Ignore his WWE run, it's a blip, but other than that, one of the greatest of all time. Look, charisma, talent, he was a complete package that you want out of a pro wrestler, and was able to adapt to the times as well."
Rating: 10.0
Sentiment: 0.29500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Teebawrote on 04.04.2024:[9.0] "Not much to say about Sting that hasn't been said, his legacy speaks for itself. Me personally, I fully respect everything he's accomplished but wasn't a big fan of his in-ring work in the 2nd half of his career, I know that wasn't entirely his fault in the later years of WCW but in TNA he was already past him prime and couldn't go as well. Props to AEW for giving him a heroic final run and letting him go out in style. We salute you Sting."
Rating: 9.0
Sentiment: 0.034848484848484844
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MoAli1wrote on 14.03.2024:[10.0] "Forever the GOAT - [ ] Sting is 11-0 against Hulk Hogan. Including 5 PPVs - [ ] Only man to hold the NWA, TNA and WCW title. - [ ] Only man to hold the WCW, TNA and AEW tag titles in a career. - [ ] Sting wrestled in the main event of WCW highest grossing PPV ever - [ ] Only man to main event PPV of NWA, WCW, TNA, WWE and AEW in a career. In addition, Pro Wrestling Noah and WWC -[ ] Only man to be involved in WCW, TNA, WWE and AEW video game - [ ] He was a key figure to to make WWE the second best promotion for a while. - [ ] He wrestled generations of wrestler from Abdullah the Butcher, Harley Race, Iron Sheik, Hulk Hogan, Randy Savage, Stone Cold, Kurt Angle, John Cena, AJ styles , to MJF in a career - [ ] He beat 17 former WWE champions in single matches even though he only had 4 matches in WWE. - [ ] First man to main event PPVs in the 1980s, 90s, 2000, 2010s and 2020s - [ ] Second man to be an active WWE hall of fame member after Flair. - [ ] He put Cactus Jack, Goldberg, Samoa Joe, AJ styles, Magnus, Darby Allen and many more over in his career. - [ ] Received two 5 star matches in a career, and rated number 1 wrestler in the world in 1992 in Wrestling Observer. - [ ] 1990 he won wrestler of the year - WO - [ ] Oldest TNA world champion - [ ] Oldest AEW tag team champion - [ ] Most WCW PPV wins with 55, next wrestler being 35 - [ ] involved in 6 of the 10 most main event TNA PPV buys -[ ] He was the longest wrestler to recapture the NWA world title from 1990 then won it again in 2006. (16 years) -[ ] Involved with many great tag teams and stables from Road Warriors , Steiner Brothers, Harlem Heat, Four Horseman, DX, NWO, Bullet Club, Main Event Mafia, Dudly Boyz, Hardy Boyz and Edge and Christian, Rock and Roll Express, Midnight Express and Young Bucks -[ ] involved with wrestling Japanese greats from Antonio Inoki, The Great Muta, Tatsumi Fujinami and Jushin Thunder Liger -[ ] First man to be inducted to TNA hall of fame. Then the first man to be inducted to both TNA and WWE hall of fame Ladies and Gents, we say goodbye to the GOAT ."
Rating: 10.0
Sentiment: 0.17289915966386554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: AmirTheEnforcerwrote on 12.03.2024:[10.0] "What can be said about this living legend? ! You name it and he's been there and done that. I believe there is not a single area where he falls short because he's always delivered and delivered with finesse, not only that but this gentleman has also aged like fine wine and never gone stale. Sting is the epitome of pro-wrestling and should be studied by fans and people in this industry."
Rating: 10.0
Sentiment: -0.0246031746031746
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CDProsProwrote on 08.03.2024:[10.0] "Trained by Red Bastien initially supposed to be a tag team player with the ultimate warrior but would be known as the icon. He is the man called Sting. And 2146 matches later would retire on a very powerful note, almost forced retirement fighting for the WWE world championship to retiring on his own terms as world tag team champion with a perfect record of 28-0 in All Elite Wrestling. Thank You Sting, Wooooooo!"
Rating: 10.0
Sentiment: 0.21125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: SchenzenJohnwrote on 06.03.2024:[6.0] "Aus verschiedenen Jahrzehnten hatte ich mir nochmals anlässlich seines Abschieds aus dem Ring einige seiner wichtigsten Matches angeschaut. Er fällt meiner Meinung nach eher in die Kategorie Entertainment statt Wrestling. Nicht falsch verstehen vor allem Ende der 80er/Anfang der 90er hatte sein Moveset Dynamik und Power und konnte somit etwas davon ablenken , dass dieses aus vielleicht 5 Moves bestand. Schaut man sich zwei Matches hintereinander an kommt deshalb schon etwas Monotonie auf. Ich mag den Stinger , gerade als Kind bei der TNA mochte ich ihn sehr. Genau dass ist nämlich das , , Ding" als Kind sieht man das mystische und coole als Erwachsener dann eher den Skill der hier wie erwähnt recht limitiert ist. Man kann sich gerne von Nostalgie leiten lassen aber für mich gehört da mehr zu. Zum Schluss muss ich sagen ( dies würde die Wertung deutlich runterziehen , deshalb nicht inkludiert) waren die letzten 10 Jahre ein Graus, viel zu lange hat der Mann noch im Ring gestanden."
Rating: 6.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: tlaustinwrote on 06.03.2024:[10.0] "Someday I'll edit this with a heartfelt ramble. But you already know it's Sting. (Sorry, it's SSTTTINNNGGG) So there's not many people wandering this site that need to be convinced of how great this man is, both as a figure and as a wrestler."
Rating: 10.0
Sentiment: 0.012500000000000011
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Dirty Diegowrote on 05.03.2024:[9.0] "One of the greatest stars outside of the big machine wwf/wwe in the 90, s , apart from NWO , Sting was the guy had some great matches in the early 90, s and had a massive transformation when the nwo took over wcw , reminded me of Bruce lee son movie the crow it was a great character that had a lot of mysticisms to it, he got placed as the top guy to take down hogan over a years build for him to beat hogan only for it to get messed up when the ultimate pay off of the storyline happened at starcade 1999 , sting also has had a great success of long gevity in his legendary career his run in tna was good and his Aew run for someone that age jumping of balconys and shit amazes me, about to have his last macth what an icon"
Rating: 9.0
Sentiment: 0.2628654970760234
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Rocky7wrote on 02.03.2024:[10.0] "I first heard of Sting not on TV, but in the school playground in the mid 1990s when another boy brought in WCW The Main Event on the Game Boy. I had only known the WWF and World of Sport by then, and was interested in there being other American wrestling. They told me WCW was real. Of course it wasn't, but when I started watching, the connection this tanned dude with face paint and a blonde crew cut had with the fans was incredible, and the battles he had with the likes of Vader, Rick Rude, Cactus Jack and Ric Flair. Then the Surfer morphed into The Crow to battle the evil New World Order led by Hollywood Hogan (we won't speak of the match, or then him joining the nWo, albeit the babyface version the Wolfpac). After the end of WCW, Sting eventually joined TNA, and was the bridge from one era to the next. Things weren't perfect there, but his run in the Main Event Mafia and then as "Joker Sting" were memorable. It was cool then to see him against younger guys like AJ Styles and Samoa Joe. The much hyped WWE run didn't go well with a badly booked match against Triple H, and the match with Seth Rollins where we thought his career was over. But then came the AEW run that gave Sting the respect he truly deserved, where he exclusively teamed with Darby Allin, and was awesome every time. Seeing him in New York City where he reunited with The Great Muta, and at Wembley Stadium in front of the largest crowd he ever wrestled in front of were great all time live memories for me personally. Sting has been a constant for the majority of my time as a wrestling fan, and I will be very sad to see him go, but at the same time, very happy it's on his own terms and as a celebration of his lengthy, glorious career."
Rating: 10.0
Sentiment: 0.16416437098255282
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BallOfYharnamwrote on 09.02.2024:"Out of all of the big names in western wrestling throughout the 80s and 90s, Sting is easily my favourite. The fact that he is still going strong and doing crazy spots in AEW is a testament to his genuine love for professional wrestling. He is retiring in less than a month as I write this, but what a career it has been for Stinger. (10/10)"
Rating: No rating found
Sentiment: 0.12222222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: mothmanwrote on 08.02.2024:[10.0] "One of the most iconic wrestlers in every single promotion he's worked in. I can't imagine any better person to have on a roster, no matter what role he's filling. From his glory days in WCW, to his usually-fun TNA run, to the phenomenal last few years in AEW, Sting has proven time and time again, decade after decade, how incredible he is."
Rating: 10.0
Sentiment: 0.32857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: macadon1987wrote on 08.02.2024:[10.0] "Sting was the banner of WCW amidst the defection of Luger, Flair and the Steiners in 1992. Sting almost single-handedly kept the company afloat with memorable feuds against Vader, Steve Austin and Mick Foley. The second half of the 90s were a difficult time, with bad writing and backstage politics leading to the infamous botch of Starrcade 97, but the fans still loved the man in spite of it. As an in-ring performer he was an 8, about 6 on a promo and 10 on a look. Sting is an example of a very good, but not great worker, yet his charisma more than makes up for that."
Rating: 10.0
Sentiment: 0.031212121212121215
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: kcharles520wrote on 30.01.2024:[6.0] "Sting hasn't really been good since the mid-90s and while his late 90's gimmick in WCW was pretty cool, he couldn't deliver in the ring on the same level. He's stayed way too long in the business and has become nothing more than a "nostalgia act" reminding people when wrestling was really popular and cool. Overall one of the more overrated "legends" who peaked in the late 80's, early 90's and has been riding that wave way longer than he should have. Sting has been too reliant on coasting on people's nostalgia for him the 2nd half of his career simply to cash more checks. Solid during his peak, but wildly overrated in the grand scheme of things."
Rating: 6.0
Sentiment: 0.18253968253968256
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MoodyLizwrote on 13.01.2024:[10.0] "Sting is an absolute legend on par with the best of all time. Better, even. From his early days as the surfer-inspired hero to his later enigmatic persona, he displayed remarkable versatility. Sting's commitment to storytelling in the ring, combined with his unparalleled charisma, has solidified his status as one of the all-time greats. Never had to turn heel."
Rating: 10.0
Sentiment: 0.3785714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: glisteningmelonwrote on 20.11.2023:[10.0] "Hes the greatest of all time, sue me. No other wrestler has undergone as many character changes and remained one of the hottest acts in wrestling. Literally wherever the dude goes hes instantly over, apart from that one time he went to WWE and they buried him live on Wrestlemania but as we are steadily approaching the last dance with Sting and looking back I have to say hes the greatest of all time. Even now in AEW he is on the run of a lifetime, his teaming with Darby just works so well, and most if not all of the matches theyve put on together have been nothing short of exhilarating. Even at one TNAs weird periods he was undoubtedly the fans favourite, his Joker gimmick was just stellar and he acted the shit out of it and gave us an absolute psychopath to cheer for. I think when all is said and done in years to come Sting should be considered the greatest wrestler of all time."
Rating: 10.0
Sentiment: 0.27346256684491976
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: JediSaiyanMaster1203wrote on 18.11.2023:[10.0] "From humble beginnings in The Blade Runners tag team where he was, along with his partner, a godawful performer in the ring, then goes on to become a legend in the business. Unlike Warrior, Sting went on to improve massively as a wrestler and had longevity on his side. Sting truly began in WCW in the late 1980s/mid 1990s as the surfer Sting where he had bright neon colors and bleach blond hair, where he was a white hot babyface and played it to perfection. Most notable feuds during this time where with Ric Flair and Vader, which you could make the case that it's the best David vs Goliath feud of all time. Then the late 1990s came around, the culture as a whole changed and so did Sting, where we got the gimmick he's been riding with since then, The Crow inspired gimmick. While Sting's surfer gimmick gave us his best match, Sting's crow gimmick was where the charisma was being showcased, always captivating despite never saying a word (ignore the bad bookings during that time). Sting's run in TNA was also great, his WWE run wasn't and his current stint in AEW is great, the prime example of how to book an established legend. Overall, Sting is one of the all time greats to ever do it, he was the total package if you ask me, he deserves every ounce of praise he gets from the fans and his peers."
Rating: 10.0
Sentiment: 0.25000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: InsertFunnyNameHerewrote on 27.09.2023:[10.0] "When a man's heart is full of deceit, it burns up, dies, and a dark shadow falls over his soul. From the ashes of a once great man has risen a curse, a wrong that must be righted. We look to the skies for a vindicator, someone to strike fear into the black hearts of the same men who created him. The battle between good and evil has begun. Against an army of shadows comes a dark warrior. The purveyor of good, with a voice of silence and a mission of justice. THIS. IS. STING. To put it likely, Sting is probably the biggest star in the history of wrestling to never have a very long WWE run. He was the face of WCW at their peak, and for that matter, most of their existence, a proven draw and had legendary rivalries with the likes of Ric Flair, Big Van Vader, Lex Luger, and of course the NWO. The Stingers influence on wrestling is hard to measure, he has almost and Undertaker level of mystique and aura behind him."
Rating: 10.0
Sentiment: 0.07803921568627448
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Emanuel606goatFwrote on 19.08.2023:[10.0] "One of the GOAT'S, one of the best in history, the icon, marked a generation and continues to mark today. Sting is simply THE man! one of my all time favorites.... Carried Impact/TNA when things were pretty lackluster over there, and now does a great job in AEW too! of course.... there was his time in WWE, which in my opinion was pretty cool, apart from Wrestlemania.... that wasn't supposed to be that way, they turned Sting into a WCW guy, which was the biggest fear of it happening if he went to WWE... and well, it happened. but anyway, this guy is one of the few that deserves 10. Love u Sting!"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: crs285wrote on 03.07.2023:[9.0] "Sting is a timeless veteran. Has had great runs in multiple companies basically everywhere he went outside of WWE. Sting has a great character who can cut a great promo and go in the ring. The fact that he can still wrestle at a high level at his age is amazing."
Rating: 9.0
Sentiment: 0.3950000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Ferenikwrote on 22.06.2023:"Absolute Legend, Understands his place as a Legend and enhances the talent he works with. The Character is well protected and still has just enough of the mystical flare that keeps it fun."
Rating: No rating found
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: danzitorockwrote on 20.06.2023:[10.0] "Sting is truly a wrestling icon... his gimmick is legendary, unique and fantastic, and it has worked everywhere he has ever stepped foot, be it WCW, TNA, WWE or AEW. Of all the legends that TNA brought in at one time, Sting was the only one that fully functioned and brought benefits to the booking and the company, acting productively and doing a lot of good. He produced legendary moments despite not having the best booking for most of his career and being in difficult situations. His desire to contribute positively to wrestling is inspiring and amazing to see."
Rating: 10.0
Sentiment: 0.4463286713286714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: mizzyshawrote on 14.06.2023:[10.0] "Not only one of the best wrestlers to ever exist, but essentially the only wrestler to keep wrestling after age 60 and not totally embarrass himself. Politics of the business that have held Sting back aside, the man is perfect at just about everything he does. Nothing but great gimmicks, great promos and great wrestling. As an Attitude Era guy, I was always maliciously envious of WCW for having the best character in their repertoire."
Rating: 10.0
Sentiment: 0.49090909090909085
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Giantfan1980wrote on 07.06.2023:[7.0] "Sting was the icon of WCW up until Hogan came to town and he quickly got shuffled down the card and would hang out in the US title and tag division until Hogan went Hollywood and then they brought him up to be the guy to take the belt away from Hogan. Sting really fell off in 1997 after hanging out in the rafters for a year and his ring work is rather lethargic when compared to his late 80's early 90's WCW tenure. Another guy who stuck around too long."
Rating: 7.0
Sentiment: 0.021296296296296296
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: bexhloopwrote on 18.05.2023:"Sting is the only 10/10 wrestler in my eyes. Has stood the test of time and has never had a dull moment. His gimmick will never get old to me and I can see him doing this for just a tad bit longer but I hope he takes care of himself and retires soon."
Rating: No rating found
Sentiment: -0.0638888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Wizz21wrote on 30.04.2023:[10.0] "Absolute Legende - keine Frage. Wenn er eines Tages zurückgetreten sein sollte , bekommt er von mir auch die vollen 10 Punkte. In der jetzigen Form als TNA Mainevent Opa allerdings eher nervig. So langsam könnte er mit dem Wrestling auch ruhig mal aufhören Edit: seitdem er das Joker Gimmick benutzt gefällt er mir wieder deutlich besser, daher ein Punkt rauf! Edit: Ab seinem AEW Run eine glatte 10."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Sick Lebowskiwrote on 12.04.2023:[9.0] "Für mich das absolute Aushängeschild von WCW. Sein Crow-Gimmick als Heilsbringer gegen die nWo war seinerzeit natürlich genial. Allerdings muss ich sagen, dass mir der bunte Surfer-Sting alles in allem besser gefallen hat. Wird auch heutzutage noch spärlich und damit genau richtig von AEW eingesetzt. Einer der ganz, ganz großen Namen der vor allem 90er Jahre."
Rating: 9.0
Sentiment: -0.2571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Conquistador37wrote on 22.02.2023:[10.0] "To me Sting only exists to a certain point; after he became "The Crow", he was no longer my Sting". My Sting rose from being a very clumsy and overly excited rookie to a somewhat clumsy hero for the underdogs. My Sting is neon clad, blonde haired and howls with fury. His matches against Vader will go down as THE David and Goliath classics and he had excellent chemistry with Ric Flair, Rick Rude, Cactus Jack and The Great Muta, along side many others. My Sting made me care and cheer my lil Stinger guts out. After the nWo ruined everything (including Sting) I stopped caring, his post "surfer" run to me has nothing I want. If I did I whole career perspective: I would begin deducting points and doing naught but lamenting the loss of my hero, but we won't torture ourselves. My Sting (88-94ish) is a solid 10. (ps: still absolutely LOVE his theme songs: "Rattlesnake Whip" & "Turbo Charged" ! )"
Rating: 10.0
Sentiment: 0.21124867724867727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Leth99wrote on 10.02.2023:[10.0] "He had everything and won everything in his life and is one of the GOATs, yet he got so much shit throwned at him. His first "main star" run in 1990 was made bad by the Black Scorpion stuff, he got kinda lost in the shuffle in the mid '90s despite being super over, the nWo angle was destroyed by Hogan in '97, his performance in the late '90s got worse and worse, his first TNA run wasn't all that much, his '06-'07 run was stupid with the Abyss stuff, his main event mafia run was amazing but it ended so poorly, his '11 comeback was destroyed by Jeff Hardy, his joker phase was overshadowed by the stupid Aces and Eights fiasco, his WWE run was tragic and now in AEW he's finally the legend he needed to be. His evolution during the years is amazing and he got SO MANY amazing matches and promos during the years that the good overshadows the bad that was given to him. The Icon Sting."
Rating: 10.0
Sentiment: -0.052083333333333315
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: homunculuswrote on 13.01.2023:[10.0] "Sting oozes charisma and oozes a special presence when he enters the ring. On top of this, he is great in the ring. Overall, Sting is a legend of the business and a lot of your favorites wouldn't exist without him."
Rating: 10.0
Sentiment: 0.20952380952380953
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: benh2wrote on 12.01.2023:[8.0] "I'll be honest, I've never been a huge fan of Sting but I won't deny his contribution and importance to wrestling history. He was absolutely honking in the ring when he first came in to UWF, but unlike his partner Warrior he learned very quickly and the 88-92 period was easily his best output of his career. Never a great promo although he hit gold with the Crow gimmick; all the stars aligned with that one in terms of him needing a reinvention of his character plus the nWo being red hot to face off against. However, it was always a let down when he got in the ring. He's was a good attraction for TNA and now AEW but I've not personally cared for him in either."
Rating: 8.0
Sentiment: 0.28547008547008546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Enriquepollazzowrote on 25.11.2022:[7.0] "Always has been good since I saw him wrestle Flair many times in the early 90's. He was at his absolute peak going into Starrcade 97 with the Crow gimmick and was as hot as anyone in the business and WCW was getting good rating featuring him at the end of every nitro in a mysterious way, but I guess the story goes that because he didn't wrestle anymore to save him during this crow gimmick, and he was wearing the trechcoat so nooone saw his body - Bischoff says he arrived to starrcade untanned and out of shape. I don't get how that's bad enough to kind of destroy the company by screw jobbing the end, but they did it. If they did that perfect and Sting learned how to cut compelling promos? Maybe the Rock WOULD be teaming with Darby Allen right now."
Rating: 7.0
Sentiment: 0.26683673469387753
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: M3n747wrote on 20.11.2022:[10.0] "What can I say, he was one of my absolute favourites when I was a kid and he still is today. Great gimmick, top-notch in-ring performance (even if a little toned down these days) and for a guy apparently this serious, he is capable of some low-key seemingly-unintentional comedy, which is always appreciated."
Rating: 10.0
Sentiment: 0.1970679012345679
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Ameridragonwrote on 15.11.2022:[10.0] "An absolute legend, overflowing with so much charisma and presence that he didn't even need to talk to make the crowd go wild. In the ring he was incredibly athletic and fast in his younger Surfer Sting years, and then once he became Crow Sting he used match psychology and deliberately paced and placed moves to make excellent matches. One of my all time favorites."
Rating: 10.0
Sentiment: 0.3714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: RavenCrow75wrote on 05.10.2022:[8.0] "Surfer Sting was the one I grew up on and what I can tell you is this: Anybody with any sense could tell this man was special. In my opinion Sting is wrestling's version of what Tommy Lasorda called a five-tool athlete. As an in-ring performer he could wrestle you or fight you, take it to the ground or to the air, beat you in the ring or fight you outside of it and he had the personality and charisma to boot. A legend of his time."
Rating: 8.0
Sentiment: 0.17857142857142858
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "Unpopular opinion but, I really prefer Surfer Sting to Crow Sting. That natural babyface aura he possessed as Surfer Sting was amazing. But anyway, as a whole, Sting is a bonafide legend of the business that is still going on today, though I wish he would retire already, for his own sake."
Rating: 10.0
Sentiment: 0.34
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DammitChristwrote on 12.09.2022:[10.0] "Sting is a freaking awesome overall talent, and he's an iconic legend for sure. He's insanely charismatic. He's a pretty good wrestler, and the fact that he can STILL go in the ring while being in his 60s is just amazing. Sting is also really underrated on the mic. I think the guy is an incredible promo worker. His cool distinctive, powerful voice is PERFECT for cutting promos. He just oozes passion in his delivery. It's hard to believe that this man once went a year (at least) being a silent character at one point a few decades ago."
Rating: 10.0
Sentiment: 0.2741228070175439
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: GwenCube64wrote on 05.09.2022:[10.0] "A recent interest in Sting has made me fall in love with him. Original crow Sting is an all time character in wrestling history, along with Joker Sting (not kidding). His modern run is a ton of fun and is an irreplaceable talent in history."
Rating: 10.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: nothingleftinsidewrote on 30.07.2022:[9.0] "I would give a 10, but there is one large negative he's got- he has to be paired with a good opponent or else his match will be subpar. I feel to be a true 10/10 you gotta make everyone you wrestle better, and Sting is a guy who has to be carried. That said, he's an easy carry, and he excels everywhere else you need to be an all time great, so he's a 9. He's the icon, the franchise of multiple organizations. He was super super popular for a long time, but mostly in the south. Like I said, not the greatest in the ring, but he had a striking connection with fans both in the ring and also on promos which come to think of it he wasn't the greatest at either. When you've got that kind of babyface charisma it really doesn't matter what you say. He remade himself a few times over which is essential for an enduring gimmick. How he was used in 97 was genius and groundbreaking for wrestling, and he didn't have to wrestle *or* talk to do it. Just the threat of him being there was the draw. In 98 he was the most over babfyace in the biggest stable of all time over babyfaces, the red nwo. His work in TNA is solid; most of it isn't the greatest but the majority of it holds up, even if some of it was unmemorable. You could usually count on him to have a solid segment/match on what was an often disappointing TNA. That goes for late era WCW too I guess. And just when you thought he was done, he came back! And was done. And then came back! Seriously, this guy debuted a year before I was born and most recently wrestled a month ago. I consider him Flair's greatest all-time rival, and the standard bearer for WCW. He had all the intangibles, the stuff between the moves, the way to carry himself, babyface fire. And he's still wrestling! And his work looks good. I know I've harped on it but his stuff did look pretty good and he was a good seller. Truly good babyfaces are hard to find, especially ones with any longevity. As long as you had him with a good hand (unless they're Bret Hart), Sting always produced."
Rating: 9.0
Sentiment: 0.28753968253968243
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: KSupreme3wrote on 19.07.2022:"Sting is an absolute wrestling legend. During his first run in the white & black facepaint, he made you feel cool just watching him. You just knew you were watching history being made. Throughout his entire career, Sting understood how important it is to pay attention to the small details, such as his ring attire and facepaint, which translated wonderfully on things like action figures and posters. All in all, a wrestling god that should be respected and honored for his contributions to the business."
Rating: No rating found
Sentiment: 0.1712121212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: benny5bellyswrote on 18.07.2022:[10.0] "If you know someone who doesn? t love Sting, delete their number and get them out of your life. I need one last surfer Sting run to complete my life"
Rating: 10.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hennewrote on 07.03.2022:[10.0] ""NWA/WCW Legende und auch jetzt bei TNA noch passabel." Update 2022: Lol über meinen Kommentar aus 2007... Der Mann findet mit 62 gerade den New Jack in sich. Unglaublich krass, wie gut er immer noch ist und wie klug er auch bei AEW eingesetzt wird."
Rating: 10.0
Sentiment: 0.4681818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: wewantpunkwrote on 23.02.2022:[10.0] "Wenn man von den Großen redet, dann muss man Sting erwähnen. Sein Gimmick und seine Ausstrahlung sprechen für sich. Er hat mir eigentlich immer gefallen und er tut es heute noch. Darby Allin profitiert enorm von ihm und er wird mit seinen 62 Jahren auch exzellent eingesetzt. Er hat in meinen Augen alles erreicht, auch wenn das Undertaker vs. Sting Match in ihrer Hochphase ein absoluter Traum gewesen wäre. Für Sting springt nur die Höchstwertung raus."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: SquilliamFancysonwrote on 11.02.2022:[10.0] "Sting is a god of professional wrestling. He was an amazing tag wrestler with Luger back in the day, amazing babyface singles star, and now AEW's own murder grandpa with his protégé Darby."
Rating: 10.0
Sentiment: 0.38000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: GriffinXwrote on 20.01.2022:[10.0] "The guy that made me a fan. I was little Stinger as a kid. Love his work in TNA and now enjoying this new life he is having in AEW."
Rating: 10.0
Sentiment: 0.2372159090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CMX-7wrote on 27.11.2021:[10.0] "Icon of Wrestling) Sting is an excellent wrestler with excellent authoritative charisma! His WWE run is probably the saddest part of his career as well as his match (the Jeff Hardy incident) at TNA (( I love his career in WCW, he shone there 100%, and his match at the Final Nitro is very heartwarming! I also want to note that I never found the House Show tape from WCW 1990 where he wrestled with the Undertaker. P.S. In AEW, I really like his duet with Darby Allin and sometimes it's nice to see Icon in the ring and in matches."
Rating: 10.0
Sentiment: 0.49062500000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Pandevmoniumwrote on 09.11.2021:[3.0] "He should have retired a loooong ago. His two finishers are ugly and his no-sell gimmick was out-of-date in TNA already. WCW handled his character in a spectacular way and he was still on top of his game by that time though. I loved his rise against NWO, but after WCW folded he just kept living onto those memories and I couldn't really stand him."
Rating: 3.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Rollforinsightwrote on 06.09.2021:[10.0] "Sting played a huge part in defining the format of wrestling shows. On the list of most iconic, most charismatic, best gimmicks best promos. He has always been a more than solid in ring worker too, for nearly 4 decades! One of the GOAT"
Rating: 10.0
Sentiment: 0.5025000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: vaventwrote on 23.08.2021:[9.0] "He has been a constant force in wresting since the late 80's, innovating his gimmick many times along the way. Maybe not the flashiest wrestler in the ring, but he gets the job done, and his extremely solid fundamentals have allowed him to remain a good worker even into old age. I love what he's been doing in AEW, mentoring a young talent while still getting some spotlight in his twilight years. It's a much better ending than getting seriously injured in a match against Seth Rollins."
Rating: 9.0
Sentiment: 0.1766666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Zaubernmannwrote on 16.08.2021:[6.0] "Generisch nach der Gesichtsbemalung, aber in Momenten immer noch ziemlich lustig. Meiner Meinung nach nie wirklich sein volles Potenzial erkannt."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: eltetechoriwrote on 14.08.2021:[10.0] "He is the icon of pro-wrestling, he should have had a better ending because today he is the shadow of Darby Allin, however, he will always be remembered as the scorpion that has given us so much joy."
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Lorenzo Ritaccowrote on 11.08.2021:[10.0] "The blonde, face-painted Sting was already one of the top guys in WCW. Adopting The Crow's persona elevated him into a true icon of professional wrestling. Once upon a time he was the face of TNA, where he also fused his character with The Joker's mannerism and psychology. When AEW announced Winter Is Coming he showed up, almost transcending into the Night King himself. The crow, the snow, everything surrounding his aura: Sting came back to TNT after 19 years. He stood up in front of his future protege like a monolith, a statue, an icon to be remembered."
Rating: 10.0
Sentiment: 0.15833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Z001Awrote on 17.07.2021:[10.0] "Sein Lauf in AEW hat viel Spaß gemacht, auch wenn es nur zwei Matches waren, von denen eines ein filmisches Match war. Aber genau das passiert jetzt. Sein WCW-Lauf und sogar seine Arbeit bei TNA machen ihn zu einer Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hillwrote on 14.07.2021:[10.0] "How could Sting not be in the conversation for GOAT? Even though he wasn't world champion in WCW for as long as he should have been think of how many angles he's been apart of form his rivalry with Rich Flair to his long term feud with the nWo. Even when WCW went under he put many eyes on TNA and helped that company get its start, helping and putting over a lot of young talent. Maybe it helps that he knows to reinvent himself. From the beach blonde brightly colored face paint, to his Crow persona, to Joker Sting. He always freshens up his act and stays relevant. His current partnership with Darby Allin shows that he still has a lot left to offer and will be a major asset as a backstage coach to the younger talent in AEW."
Rating: 10.0
Sentiment: 0.1951923076923077
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: hirsty97wrote on 20.06.2021:[10.0] "Sting carved a legacy that spanned four decades, continued putting on serviceable matches into his 50s, much better than Flair and Undertaker could. He's still turning heads in AEW in his 60s! He may not be the GOAT but Sting should be in everyone's top 10 for sure."
Rating: 10.0
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Kungwrote on 31.05.2021:[10.0] "Just as his nickname says, Sting is a true ICON of the highest caliber. He's got the look. He's got the legendary matches and moments. He's one of the greatest pure babyfaces of his generation. And he's respected around the world as a genuine legend of the game."
Rating: 10.0
Sentiment: 0.4273809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Daigotsuwrote on 21.05.2021:[10.0] "What is there to say about Sting that hasn't already been said? An absolute legend. One of the most charismatic people to ever grace the business of professional wrestling-- not many people have the sheer *presence* of sting. He's been a part of the fabric of american professional wrestling for decades and the business is better for having him."
Rating: 10.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BlakeFR37wrote on 08.05.2021:[10.0] "He's the Icon. A true legend which deserves his rating. An amazing career, and a lot of accomplishments all along this years."
Rating: 10.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: AnBwrote on 27.04.2021:[9.0] "What is there really to be said? The first time I watched wrestling was on a VHS tape that came with a Sting action figure, and I was completely into it. It would take over a decade before I started watching some of the old WCW matches, and I was still absolutely in love with the guy. Watching his later years in the WCW however, is not as much fun. He rarely had a proper match and when he did he didn't look all that impressive, though I guess you can argue that he was always a classic in-ring wrestler which isn't always the most exciting stuff to watch. He still got massive pops out of the audience and still looked menacing as hell, whether he came from the rafters or down the ramp. Haven't really seen any of his work in TNA, so can't judge him based on that."
Rating: 9.0
Sentiment: 0.15895061728395063
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "Look, he's had just as impressive run as guys like Flair or Misawa, hes a fantastic babyface or heel, has one of the most memorable and beloved gimmicks ever, did that Sprite commerical where he squashed a small child, did the Joker thing before it was too stale, and is still going strong as of this writing. Sting is one of the best ever in wrestling."
Rating: 10.0
Sentiment: 0.42037037037037034
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Wrestling Foreverwrote on 12.03.2021:[10.0] "Wenn er aktuell bei AEW auftaucht dann it's Snowtime. Nie gedacht das er echt nach seiner schweren Verletzung in den Ring zurückkehrt. Er ist fit wie zu seinen besten Zeiten. Er ist eine Legende einer der nie bei der nWo von Hogan war. Er war beim Wolfpac. Egal wo Sting auftaucht er kommt an. Bei TNA hatte er seinen zweiten Frühling."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Uweuwesenwrote on 26.01.2021:[10.0] "Sting ist der MVP der WCW, so wie ich sie kenne Bzw kannte. Er war immer da, hat immer Leistung gebracht. Er ist wirklich ein guter Wrestler und einfach die Ikone!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Ma Stump Pullerwrote on 14.01.2021:[8.0] "Sting definitely had a lot of positives: great look, could cut a good promo, was pretty reliable in the ring, etc, but he was almost always a carry job by someone else: not knocking his skills, but the guy really wasn't that impressive skill wise and his style was always quite basic, and his ring ability was pretty limited beyond his own few spots, and if you wanted a great match, not a good one, Sting needed to be guided carefully to it with someone whom could be trusted to successfully pull off such a thing, like a Flair or a Foley. That being said, his late 90's character as Crow Sting was amazing and a genuine product of the wrestling zeitgeist, being a great opposite to the loud and bombastic nWo. Despite his wrestling being even weaker than before, he managed to engage the audience like few have after the fact. Ofc after that you've got his weird Mask/Crow hybrid in the last years of WCW, and his TNA days where he was still over and was actually pretty good for his age with some solid matches with guys like Samoa Joe or Kurt Angle. I wouldn't say Sting was a GOAT or anything like that, but I'd definitely say he was a consistent wrestler for his level of skill and knew what worked and what didn't: you wouldn't see him do any crazy botches. Very popular but quality wise, you aren't gonna find a lot that's actually above average."
Rating: 8.0
Sentiment: 0.22662698412698415
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: rainmakerpunkwrote on 10.12.2020:[10.0] "When he was in his surfer gimmick he was an incredible in-ring performer, when he was the crow he was the best character in the world, he's able to cut great promos or captivate crowds by saying nothing and just standing there being awesome, he's the icon"
Rating: 10.0
Sentiment: 0.8400000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Killerk7wrote on 07.12.2020:[8.0] "AEW picking oldfarts that should be retired. Anyway when he was in WCW he was an okay wrestler nothing special."
Rating: 8.0
Sentiment: 0.4285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Nerfair1wrote on 05.12.2020:[10.0] "One of the greatest of all times, he's just awesome. I was so happy I almost cried when he did his return on AEW"
Rating: 10.0
Sentiment: 0.9333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: 1911owlwrote on 02.12.2020:[10.0] "The Icon! Sting will always be one of the most underrated performers in wrestling history, as the two main narrators of our time (WWE and Meltzer) both never gave him the credit he deserved. Sting always had the audience in the palm of his hand, and his matches were exciting even if they weren't highly technical. Moreover, he was the franchise of WCW and the man who put TNA on the map (it was after Sting's arrival that PWI finally took the world title in TNA seriously, for example). His memorable feuds with Flair, Rude, Vader, Cactus Jack, the nWo, and more are some of my favorite memories in wrestling."
Rating: 10.0
Sentiment: 0.18333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Donniewrote on 04.08.2020:"STUNG DID LINES AND LINES OF COCAINE AND WENT FROM A GUY I HATED, TO A MAN THAT I COULDN'T HELP BUT LOVE. One time he cut a promo about buying a portable TV so he could go to the gym and workout and watch GAB on PPV. It wasn't until JR informed him he was actually wrestling, did Stinger decide to forgo the gym and go and do as he was asked. God Bless this man"
Rating: No rating found
Sentiment: -0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Disputinwrote on 27.04.2020:[10.0] "Grew up with his matches. Love WCW back in the days and this man was the reason. He had a great career. Thank you Sting!"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Sting ist wohl das Aushängeschild der WCW gewesen und auch einer der besten Wrestler aller Zeiten. Im Ring ist er ein sehr starker Wrestler, am Mic auch sehr gut und Charisma ist eindeutig vorhanden. Sein Surfergimmick war ganz gut und dieses brachte er auch gut rüber aber nochmal deutlich besser war sein Crow Gimmick welches absolut genial war. Alles in allem hat Sting sich die vollen 10 Punkte verdient! It's SHOWTIME, folks!"
Rating: 10.0
Sentiment: 0.6770833333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TNBG2381wrote on 22.04.2020:[8.0] "Sting is a icon. His popularity is legendary and he had some good matches. The reason he doesn? t get a perfect score is because his lack of in-ring ability. He always had to be carried by someone better than him whether it was Ric Flair, Vader, Foley, etc... But he was very over and he reinvented himself into the crow Sting so he? s very innovative. His lack of great matches keeps him from being in the elite company of wrestling."
Rating: 8.0
Sentiment: 0.692857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Eggi1304wrote on 11.04.2020:[10.0] "Mit ihm bin ich groß geworden und er hat mich dazu gebracht, Wrestling zu schauen. Mein all time favourite. Bei ihm wurde ich immer wieder zum Mark. Mehr muss ich dazu nicht sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TheGorgis309wrote on 14.09.2019:[6.0] "Sting never really did it for me. His old school style of wrestling never really clicked with me, and I always found him pretty average on the mic as well. He does get extra points for the countless innovations he did to his gimmick to remain relevant (Joker Sting aside) and for his accomplishments in WCW and TNA, but his WWE run really ended his career on a sour note. Shame, if his character was more appealing to me and if he had a better run in Titan Towers, I would have definitely bumped up his score. A hall of fame wrestler for sure based on his accolades alone, but never really one of the GOATS in my opinion."
Rating: 6.0
Sentiment: 0.146875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: KyleEnjoysWrestlingwrote on 13.08.2019:[10.0] "I was never the biggest Sting fan, but his accomplishments are incredible. Had amazing matches with the likes of Vader, Flair, & Mick. Had an amazing character as the Crow, working as the opposition to the NWO. Helped keep TNA afloat for longer than it should have. It's unfortunate that we never saw him in WWE in his prime, but he was a constant gem elsewhere."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: zephyrwrote on 19.03.2019:[8.0] "Sting was good at wrestling, amazing at talking and got over pretty consistently. I've never been too fond of the Crow gimmick myself but that seems to be a minority opinion."
Rating: 8.0
Sentiment: 0.35625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: JEK 1991wrote on 13.12.2018:[10.0] "The face of WCW. He is a legend and I always liked him as a kid. His gimmicks were great and inspiring. He did not go into the WWE unitl he was in his 50's His Scorpion lock was a excellent move."
Rating: 10.0
Sentiment: 0.725
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Makai Clubwrote on 01.12.2018:[6.0] "I''m not a Sting fan. He isn't terrible by any means and I totally see the appeal and why people like the guy but I get nver been into his matches. They just aren't compelling to me except for a few moments in the match. He has his matches of course and his 97 character but Sting just isn't for me."
Rating: 6.0
Sentiment: -0.22499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TANK 81wrote on 01.12.2018:[10.0] "Sting is like alpha and omega in wrestling. This man had everything. Look , skills , charisma , respect , entrance , ect. Can't really imagine, there is anything that he could do better in his career."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: chanmeatwrote on 09.11.2018:[10.0] "The Icon!  To me, Sting was the greatest babyface in the history of wrestling. Especially if you drop all the post Austin anti-heros. And he essentially achieved this with two different gimmicks. Two gimmicks that were completely opposite - Surfer Sting and Crow Sting. If you were watching in the early 90s against Flair or again in the mid/late 90s when he was battling the nWo, then you already know that he was over gravity.  He was getting the loudest pops ever (even when he joined the wolfpac - the pop was huuuuuge). He was the perfect personification of the Cornette babyface - A beacon of light the vanquishes the dark. No anti-hero. Just hero.  As far as a worker, he wasn't too shabby either. Not many people could slam The Giant and also leap off the top rope.  He wasn't a great promo, but he made up for it with his look/charisma. He was just the man you rooted for. One of the all time greats. PS: For those of you that say he didn't draw. You are totally wrong. Please, go back and listen to the pops he was getting. Look at all the sting masks in the crowd. The people who perpetuate that myth could not have actually ever watched WCW in the 90s."
Rating: 10.0
Sentiment: 0.17647058823529413
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Steamboat2511wrote on 02.10.2018:[8.0] "Sting ist wohl, neben Goldberg und Flair, die WCW-Legende schlechthin. Technisch ansprechend und auf einem sehr ordentlichen Grundniveau, ohne zu den besten zu gehören. Persönlichkeit ist ja durchaus vorhanden, auch wenn ich mir manchmal mehr Impact gewünscht hätte. Am Mic kann er durchaus ein hohes Niveau aufweisen, welches jedoch mit der Zeit (Ende der WCW) etwas nachgelassen hat. Erwähnenswert ist auch, dass er die WCW-Legende ist, die sich der WWE am längsten verschlossen hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Cameron621129wrote on 30.09.2018:[10.0] "Sting is the face of non-WWE wrestling. He was extremely charasmatic, could carry anyone in ring (even if their heavily on drugs). Sting was the franchise of WCW and face of TNA... shame Triple H had to beat him in his WWE debut."
Rating: 10.0
Sentiment: -0.1625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: RatingsMachinewrote on 22.09.2018:[8.0] "Sting was a good worker, but he needed to have his hand held in order to have a great match, and his overall ability and impact tends to get overrated."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: autopsy12wrote on 01.09.2018:[10.0] "One of the greatest of all time, obviously. Sure his promos are a little over the top but that's the era he came from. I still preferred those over boring overly scripted promos of the WWE.  So many classic matches and moments under his belt and his crow gimmick in its initial run is still one of the coolest characters in all of wrestling."
Rating: 10.0
Sentiment: 0.18489583333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Fblaggyxwrote on 08.07.2018:[4.0] "Sting is too overrated, only thing that you can like about him is the feel of nostalgia but that is all. His wrestling skill was never good and his promos will not save that. In WCW he hold several titles, but except he vs Hogan, they are all forgetable."
Rating: 4.0
Sentiment: -0.11666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DaWizWithADwrote on 07.07.2018:[9.0] "I think when it comes to character work and charisma, the Stinger is one of the all-time greatest. Surfer Sting, Crow Sting, even Joker Sting, he made it all work. He had a great look to bring it all together and was an above average wrestler who always brought it when it counted."
Rating: 9.0
Sentiment: 0.41250000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CHN325wrote on 01.02.2018:[9.0] "A legend of both WCW and TNA and one of the first guys you think of when you think of anti-WWE guys. Larger than life persona with tons of charisma who reinvented himself with the times, even if his gimmicks tended to be heavily inspired by pop culture."
Rating: 9.0
Sentiment: 0.016666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ianlapierrewrote on 04.11.2017:[7.0] "Sting was at an all time best when he was hiding in the rafters and never saying a word. When he was booked like the Undertaker, he was perhaps one of the most 'over' wrestlers of all time. His feud with Hogan and the NWO will always be one of the most memorable in wrestling history. He had longevity, charisma and great matches. Still, I feel like his overall standing suffers because he never got to compete with some of the all time greats in the WWE."
Rating: 7.0
Sentiment: 0.3857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: taabr2wrote on 11.09.2017:[9.0] "Sting may have been the guy who defined WCW but he was never really the big star they needed to do battle with the WWF. I think it says a lot that the period where Sting was at his most popular was when he was staying away from the ring."
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Viper99wrote on 18.06.2017:[9.0] "Sting gehört einfach vom Standing her genau zur WWE. Wesshalb es klar war das er früher oder später dort hingehen wird. Es ist eine gute Entscheidung gewesen. Sting ist ansich einer der jedem Wrrstling Fan etwas sagen sollte. Er ist die WCW legende schlechthin. Im Ring finde ich ihn ganz gut und am Mic ist er auch gut. Das einzige was mich an seinen momentanen WWE auftritten stört ist der Entrance Theme! Das alte Crowe Theme ist doch wesentlich geiler als das was er jetzt hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ChessHeartDTRwrote on 28.02.2017:[10.0] "A massive reason why I first got interested in the world of Pro Wrestling. A timeless character who captivated me so much as a young lad and is still one of my all time favourites to this very day. It's a shame we'll probably never get to see the Icon and The Undertaker go one on one in WWE, but I can't take anything away from the amazing career this man had. Legend."
Rating: 10.0
Sentiment: 0.23333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: JxhDelwrote on 13.02.2017:[7.0] "My idol in infancy years, his "Crow"-esque inspired persona and energic presence were a big part of what brought me into pro wrestling twenty years ago. At this age and time, he was not the best talent for sure, and has really gone over his prime for too long, but for a big man starting late, he sure was impressive and drew a lot, always being a professional and a class act. Thank you, Steve."
Rating: 7.0
Sentiment: 0.26818181818181813
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: richwp01wrote on 04.02.2017:[10.0] "Sting is one of the all-time greats.  He was always there for WCW from beginning to end.  He was never dull.  From great matches with Ric Flair, Vader, Cactus Jack, Great Muta, The Steiners, DDP, and in WarGames.  He even was carried to good matches with Samoa Joe, Kurt Angle, and AJ Styles in TNA.    Sting could not carry a promotion based on some bad booking decisions.  But he was always working hard and always seen as a Main Eventer.  He could be in a tag team with Lex Luger and going for the World Tag Team Championship.  Or He could be a singles wrestler fighting for a World, US, or even TV Title.  He was not the best worker, but he could put on a decent to good match.  He would have classics with some of the best (Flair, Vader).  He could get people emotionally invested (Losing US Title to Rick Rude after Luger bashed his knee).  With the proper booking, and proper opponents, Sting was a money maker.  Had WCW been better at booking, marketing, and managed, he would be even more well regarded."
Rating: 10.0
Sentiment: 0.30514705882352944
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Real Raterwrote on 21.01.2017:[7.0] "Ring: Klar ist er eine Legende, aber im Ring die meiste Zeit seiner Laufbahn auch nur Durschhnitt. 6/10 (50%) Promos/Schauspieltalent:Auch hier nur besserer Durschhnitt. 7/10 (25%) Charisma/Statur/Gimmick:Klare 10, wusste immer in seinen Rollen zu überzeugen. 10/10 (25%) Sind dann insgesamt 7, 25 Punkte für The Icon wie geschrieben, wegen seiner In-Ring Skills kann man ihn meiner Meinung nicht mehr geben, wie auch Devildammit14 richtig feststellte.  = 7 Punkte"
Rating: 7.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: JonColwellwrote on 08.01.2017:[10.0] "If it wasn't for this man right here, I would not be a wrestling fan. Sting will forever be my favorite wrestler, and will forever be the best!"
Rating: 10.0
Sentiment: 0.5952380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Aceonwrote on 07.01.2017:[10.0] "Ich komm nicht drum herum ihm eine 10 zu geben. Zu WCW-Zeiten war er mein absoluter Fave und das lässt sich bis heute nicht so recht vergesse. Natürlich gibt es einige, die klar besser im Ring sind und waren, jedoch ist das Gesamtpaket das, was ihn letztendlich zur Ikone macht. Schade, dass WWE ihm keinen rühmlicheren Abgang verschafft hat.   Darüber hinaus ist es einfach nur traurig, dass Hogan ihm offenbar bei Starcade durch sein unfassbares Ego DEN wohl bedeutendsten Moment seiner Karriere ruiniert hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Luv all wrestlingwrote on 27.11.2016:[10.0] "The icon Sting has pulled off characters of various personality, while always keeping his trademark charisma."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Squared Circlewrote on 31.10.2016:[9.0] "Excellent worker with multiple gimmicks.  Really knew how to work the crowd.  Exciting move set for a big guy.  Couldn't be the main guy effectively, but was a great constant attack dog on Flair.  Can't give him a 10 because he was given multiple chances to drive a company and just couldn't do it."
Rating: 9.0
Sentiment: 0.30666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Y2J316wrote on 16.08.2016:[10.0] "Der Stinger. Kenne eigentlich nur den WCW sting (crow). Fande ihn als Joker Sting göttlich. Seine in Ring skills und mic skills waren und sind sehr gut also alles in allem einer der Besten aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: nimowrote on 12.08.2016:[9.0] "Er ist gut! Er hat immer gute leistungen gezeigt . Sein Gimmick find(fande)ich immer gut ! Am mic ist er auch gut"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Chosen Onewrote on 07.06.2016:[9.0] "Sting is very good in the ring, on the mic, and has a whole lot of charisma. He played his character very well. He has had some very good matches with the likes of Ric Flair, Bret Hart, Bam Bam Bigelow, and more recently Seth Rollins. His TNA career was probably the lowest point of his career. Sucks he had to retire."
Rating: 9.0
Sentiment: 0.3457142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: HowUDoingwrote on 03.06.2016:[10.0] "Ein Weltklasse Superstar ! Er weiß, wie man überzeugt, ob als Face oder als Heel.  In der WCW waren seine Matches LEGENDÄR ! Die TNA-Zeit war auch sehr gut. Vor allem die Matches gegen Kurt Angle. Als er sich dann doch dazu beschloss zur WWE zu gehen und für Vince zu arbeiten hat er zwar seine 2 großen Matches verloren, aber das schadet ihm nicht, finde ich. Ich hätte ihm einen WWE World Heavyweight Championship-Run gegönnt, dies blieb leider wegen seiner Verletzung aus. Ziemlich Schade :(. Trotz allem ist er verdient 2facher Hall of Famer. 10 Punkte für den Stinger !"
Rating: 10.0
Sentiment: -0.9375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Klabauterwrote on 30.05.2016:[9.0] "Eine Legende. Eigtl braucht's gar nicht mehr Worte. Etwas schade ist es, was man in der WWE aus Sting macht, da er da teilweise etwas schlecht gebookt wurde. (Auftakt-Niederlage, Fehde vs. Authority, die kurz darauf egalisiert wurde).  Dennoch 9 Punkte für das Gesamtpaket. Für die WCW Legende, für den TNA Hall of Famer, für den WWE Hall of Famer."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Mizzle Assault Antwrote on 05.05.2016:[6.0] "I really feel Sting gets a lot more credit than he deserves. He did very poorly as champion every time in WCW, partly due to booking but partly because he never seemed capable of filling the role. His promos are hit or miss at best, and he has only a few notable matches and many bad ones that seem to get overlooked. His most famous angle, the Crow storyline, quickly fell apart as soon as Sting started actually wrestling, again in part to booking but in part because Sting allowed himself to get out of shape and rusty. His TNA career is also a mixed bag, and his WWE career is a complete joke. Sting has enough good stuff for a 6, but over a 9 is just ridiculous in my opinion."
Rating: 6.0
Sentiment: 0.15775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Mean Smark Callouswrote on 13.04.2016:[10.0] "If they made a Mount Rushmore for wrestling, his face would (or should) be there along with Hogan, Flair, Warrior, Cena.  Became an incredibly huge superstar for over 20 years without having to step foot in a WWE ring. Refused to sing with WWE for years for fear of being buried, then finally signs a deal, only to get buried by Triple H at WrestleMania 31, and Seth Rollins at Night of Champions, for a whopping total of 2 matches in the promotion, both losses. Fans were excited that he finally signed, then disappointed by how he was booked. Reinvented himself at the right time in his iconic Crow gimmick and became Over forever."
Rating: 10.0
Sentiment: 0.049821428571428565
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: James Dean Wrestlingwrote on 09.03.2016:[8.0] "One of my personal favs. Grown to love him more over the years. And he has done so much for this business. I liked his ring work. He was solid. And his mic work was hit and miss, but tolerable imo. Recognizable figure and name is a plus as well. SHowing his longevity and appeal. Much respect to the Stinger!"
Rating: 8.0
Sentiment: 0.2875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BadAssChonowrote on 30.01.2016:[10.0] "Sting ist einfach der Hammer. Technisch einer der besten die es gibt und einer von ganz wenigen die mit über 50 noch glaubwürdige Matches abliefern. Egal ob als Surferboy oder in seinem Crow-Gimmick, er ist einfach immer stark gewesen. Nur die TNA-Zeit als er so eine Art Joker-Kopie war mochte ich nicht so aber er bookt sich ja nicht selber. Ich würde mich freuen wenn er bei WWE noch öfter zum Einsatz kommt und gönne ihm auch nochmal einen kurzen World Title Run bevor er in Ruhestand geht."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Desaster1978wrote on 13.12.2015:[10.0] "DIE WCW-Ikone neben Ric Flair. Hoffe das er noch ein Match in der WWE bekommt, welches er dann auch gewinnen darf um dann seine Karriere zu beenden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Auch wenn ich Sting nicht solange verfolge, ist er meinen Augen verdienter Weise eine Legende. Er ist für mich wie ein 2. Undertaker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Cojotewrote on 13.10.2015:[10.0] "One of the best wrestlers of his generation. His gimmick is one of the best i ever see. His crow gimmick is a moment that ever remembered, with his down to the roofs that was amazing. One of the best wrestlers in TNA history. One of my five favorite wrestlers ever with Bret Hart, Eddie Guerrero, CM Punk and Bryan Danielson: a dream team, that never will happen, to Survivor Series or better a WrestleWar of 5 men team. His matches versus DDP, Kurt Angle or Ric Flair will ever be remembered. Thanks for all this years and for your extraordinary career, Sting."
Rating: 10.0
Sentiment: 0.5530864197530865
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Sundownerwrote on 22.09.2015:[6.0] "Sting was always overrated as a wrestler. He was my first favorite pro-wrestler in my life growing up in the 90s. His explosive athletic ability is what makes/made him great in the ring."
Rating: 6.0
Sentiment: 0.5166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Eric Dravenwrote on 18.09.2015:[10.0] "Sting kann man mit einem Wort zusammenfassen: LEGENDE Bereits in seiner "bunten Zeit" war er immer schon einer meiner Favoriten, aber als er dann mit dem Crow-Gimmick zurück kam, mit das Beste was die WCW je gemacht hat.  Ein spitzenmäßiger Micworker, im Ring einfach Klasse, einziges Problem ist, wie die WWE ihn grade bookt, denn das entspricht absolut nicht seinem Status.  Definitiv HoF-Anwärter. STING IS DA MAN"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: FloWrwrote on 16.09.2015:[10.0] "Der Held meiner Kindheit und bis heute mein Alltime Fav. Typischer Allrounder im Stil der 80/90er, gutes bis sehr gutes Micworking. Sehr charismatisch, gerade die Crowzeit überstrahlte nahezu alles und machte seine passive Anteilnahme für 1 1/2 Jahre völlig bedeutungslos. Trotz katastrophaler Lage der WCW ab dem Jahr 2000 war er ihr stets treu und verließ das sinkende Schiff erst mit ihr zusammen. Zwar konnte er nach seiner langen Verletzungspause (96/97) nie wieder an seine alten Leistungen und Fitness anknüpfen, hat aber immer wieder bewiesen, dass er viele leistungsschwächere Kollegen zu einer akzeptablen Leistung ziehen konnte. Und dass er trotz seines Ranges und Erfolges nicht zu denen gehörte, die ihr Ego zum eigenen Vorteil nutzten, spricht ebenso für sich. Daher gibts für Gimmick und Person an sich, die volle 10. Für Technik und Micwork eine 8. Wegen Sympatiebonus einen Punkt drauf und daher für mich die vollen 10 Punkte.  Er sollte nur langsam an ein Karriereende denken, bevor der Glanz seiner Vergangenheit ins Lächerliche gleitet. Deshalb würd ich mir noch 2 bis 3 Matches mit Gegnern wünschen, die ihn nochmal richtig mitziehen können und dann ab in die wohlverdiente HoF."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Nigglesojanicwrote on 25.08.2015:[10.0] "Ich muss gestehen, dass ich ihn eigentlich nur aus seiner WWE-Zeit und aus diversen Berichten hier kenne. Allerdings gefällt Sting mir so schon extrem gut. Auch stark wie gut ihn das WWE-Universe nach so einer langen Zeit (nach der WCW) aufgenommen hat, erntet starke Pops, aber das hat er sich über die Jahre auch vollkommen verdient. Er ist für mich so etwas wie der "Undertaker" der WCW, ohne seine eigenen Mythos jetzt herunterspielen zu wollen. Ach was wäre das, wenn man diese 2 überlebensgroßen, dunklen Charaktere vor ein paar Jahren mal als Tag-Team gesehen hätte... wäre wohl das heftigste Team aller Zeiten geworden."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Incartawrote on 21.08.2015:[7.0] "He's not what he was but hey, he's still good for his age. He'd struggle in the ring against today's young fast wrestlers"
Rating: 7.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BadHawk26wrote on 15.07.2015:[10.0] "Sting ist der Wrestler den die WWE braucht er bringt eine neue Luft in das Roster ich persönlich würde mich sehr freuen Ihn öfter in den Raw&Smackdown shows zu sehen.  Er ist eine absolute Legende   Einen Kampf gegen den undertakter würde ich absolut nicht begrüßen."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Triple Hwrote on 19.03.2015:[9.0] "Sting ist, war und wird eine Wrestling Legende bleiben. Auch wenn er erst seit kurzem in der WWE ist, sollte er in die Hall of Fame aufgenommen werden. Dieser Mann stand immer im Schatten von Hogan, Flair und anderen Wrestlern, die auch nur Durchschnitt sind oder waren. Es ist ihm mit zu verdanken, das Wrestling in Amerika einen so hohen Stellenwert hat. Sein abgekupfertes "Die Krähe" Gimmik fand ich zwar irgendwie albern, aber es passte in die damalige Zeit der Hollywood Movies und eben auch Sports Show Entertainment. Am Mic find ich Sting klasse, gerade zu seinen TNA Zeiten. Leider neigt sich seine Karriere im Wrestling dem Ende entgegen und er wird wohl nicht mehr viele Matches in der WWE ablegen. Denke, das eventuell sein Match mit Triple H zu Wrestlemania 31 sein letztes werden könnte. Ich hoffe das er einen Sieg über den Assassin einfährt und danach einfach als Face in der WWE erhalten bleibt. Klasse Wrestler, wenn auch nicht mein Favorite."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: austin1987wrote on 12.02.2015:[7.0] "Für mich war er immer das Aushängeschild der WCW. Schade, dass man ihn wegen Hogan in die Midcard steckte, das Versteh ich bis heute nicht. Denn er war Tausendmal besser als Hogan und was die WCW zu der Zeit Produzierte war sowieso Grenzwertig (Hogan vs. Giant bei einem Monstertruckmatch). Wurde aber danach sehr gut eingesetzt bei der nWo-Fehde als stummer Beobachter (im The Crow Outfit),  der immer dann kam als man es am wenigsten vermutete -einfach Geil. Fand es dann wieder Schade, dass man ihn bei Starrcade nicht clean gegen Hogan gewinnen ließ, dass schmälerte die Fehde ganz erheblich für mich. Fand es auch schade, dass man ihn nicht noch bedrohlicher für die nWo aufbaute und ihn zur Nr. 1. in der WCW machte. Damit hätte man sich einen Goldberg ersparen können. Muss aber 3 Punkte abziehen, denn als Heel bei der WCW konnte er mich überhaupt nicht überzeugen ich fands eher peinlich."
Rating: 7.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: WrestleArtswrote on 24.10.2014:[9.0] "Wrestlerisch immer nur ok, als Surfer konnte Sting noch viel mit seiner Athletik kaschieren, später dann nicht mehr. Am Mic immer gut, gerade zu TNA Zeiten oft sogar sehr gut. Look (mal vom T-Shirt Sting abgesehen) und Charisma top, genau wie seine Neuerfindung vom klassischen Babyface zum Dark Warrior."
Rating: 9.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Man of Steelwrote on 13.09.2014:[8.0] "Sting war vor seinem Crow Gimmick einer der vielen Gesichtsbemalungsakrobaten und Stach nur heraus durch seine Dauerrivalität mit Flair, im Ring eigentlich ein guter kam jedoch nie an die Klassen von Flair, Guerrero, Benoit, Michaels, Hart etc heran, musste er auch nicht denn dank dem Crow Gimmick dessen Aura ALLES überstrahlte und nur vom Hoganschen Ego ausgebremst wurde, war er ein komplettpaket das begeisterte. Wie so oft einer der Superstars die trotz Hogan den durchbruch schafften, JA trotz denn geholfen hat er ihm kaum.  Btw: Was man für einen Käse liest.. War bis 2014 der einzige Superstar der noch nie für WWE angetreten ist... Ist er auch bis heute nicht oder hat ihn schon jemand im Ring gesehen? Hoffentlich kehrt er zurück.. Wohin? Er war vorher noch nie bei Vince... Und selbige geben kommentare ab die vor Fachsimpeleien nur so sprühen obwohl von der Materie an sich keine Ahnung vorherrscht.. na Prima."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: zackwoowoowooryderwrote on 12.07.2014:[10.0] "Zum "Stinger", "The Icon" braucht mal glaub ich nicht viele Worte sagen, dass macht er schon selbst und er lässt seine Taten für ihn sprechen. Einfach eine Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: wwefan98wrote on 11.05.2014:[9.0] "Sting ist cool und troz seines hohen alters immer noch gut. Ich hoffe das er bald man ein Match für die WWE bestreitet."
Rating: 9.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Jared Craverwrote on 05.05.2014:[10.0] "A true legend if there ever was one. Without a doubt the greatest wrestler never to compete for wwf/e. Sting has held numerous world titles in NWA, WCW, and TNA. He has a ton of charisma and has some remarkable matches under his belt."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CrIppIL3RTIRiXwrote on 17.04.2014:[6.0] "Es gibt nur 6 Punkte von mir, weil Sting schon 20 Jahre drüber ist und nur Einheitsbrei serviert.  Mic Work ist durschnitt, aber auch nicht wirklich gut.  Abschließend, Sting ist für mich der John Cena der 80/90"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: alcoholicmetalmayhemwrote on 14.04.2014:[7.0] "Wrestlingtechnisch doch etwas überschätzt. Definitiv nicht in eienr Liga mit Leuten wie Bret Hart, Michaels oder Eddie Guerrero. Zu NWA und WcW Zeiten ein ansehlicher wrestler mit einigen "Ok" Matches."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: grosandrwrote on 12.04.2014:[9.0] "Die eine Legende geht, die nächste kommt. STING IN DER WWE... Bei TNA hat er mir immer gut gefallen. Er ist ja nicht mehr der Jüngste und trotzdem legt er immer tolle Matches hin. Bin ja mal gespannt welche Rolle bzw. welche Matches er in der WWE bestreiten wird. Ich hoffe ja echt dass er dann irgendwann wieder mit Baseballschläger usw zum Ring geht :) Habe echt schon lange gehofft, dass die WWE ihn endlich verpflichtet. Und jetzt ist es soweit."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Brainbreakerwrote on 31.03.2014:[8.0] "Ich wage einfach mal zu behaupten, dass wenn Sting nicht das überaus erfolgreiche Crow-Gimmick adaptiert hätte, er in der Hochphase eine geringfügigere Rolle gespielt hätte. Was die Jahre zuvor anbelangt: Klar war er ein guter Techniker, aber vermochte er selten Leute zu richtig guten Matches zu ziehen, wie etwa Michaels oder Hart dazu im Stande waren. Insgesamt ein solides gut für den Stinger, da ich seine Gimmick und charismatisches Auftreten durchaus schätzte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: AriesMarkwrote on 16.02.2014:[6.0] "Sting was one of my favorite wrestlers of all time... 15 YEARS AGO. A mere shadow of what he once was. Needs to just retire, or just have the dream match vs. Taker and then call it quits"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: todd1928wrote on 26.12.2013:[10.0] "One of the all time greats, from the golden boy of WCW to the crow to the icon Sting has always been a favorite of mine and even though his body is slowing and he is getting worse in the ring he still brings some magic to TNA every time he walks through the ropes."
Rating: 10.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: RepoManwrote on 19.12.2013:[8.0] "Der Mann hat alles was ein guter Main Eventer braucht. Beeindruckend ist ähnlich wie beim Taker die Langlebigkeit seines Charakters und die sehr gute Resonanz vom Publikum. Leider gefiel er mir in seiner Anfangszeit weniger, erst als er "düsterer" wurde konnte ich mich für ihn begeistern. Was auch zu bemerken ist, ist seine Eingangsmusiken waren schon immer erstklassig."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CLPSKYLINERwrote on 14.12.2013:[7.0] "Strahlt sehr viel Charisma aus und ist gut am Mic. Nur im Ring geht es logischerweise auch bergab, wegen seines Alters."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Daneraswrote on 04.11.2013:[8.0] "Ich kann mich an ihn von früher recht kaum erinnern, bis er sein Gesicht ganz rot bemalt hatte, und auch mit dem Baseball schläger gekommen. Er sah richig zum fürchten aus, und ich fand ihn auch richtig gefährlich. Er hatte so viele Feinde, viele Fehden, und kam auch ab und zu von der Decke runter zum Ring. Er kann gut Mic machen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Gazzawrote on 21.10.2013:[8.0] "Ja, ja der gute alte Stinger. Mit dem Crow Gimmick hat mich damals zum Wrestling gebracht, weil mich das mysteriöse um den Sting ziemlich fasziniert hat. Konnte im Ring mit einem guten Gegner immer ein gutes Match rausholen und war auch sehr charismatisch. Leider hat er jedoch, in meinen Augen, den Absprung verpasst. Deshalb gibt von mir nur 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ImACMPunkGuywrote on 28.08.2013:[9.0] "The Icon, der Beiname, den sich dieser Mann verdient hat. Im Ring mit seinem Alter immer noch gut. Am Mic große Klasse hoffe er wird noch von WWE unter Vertrag genommen, um ein Match mit dem Taker zu worken."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BenutzernamenBraucheIchNichtwrote on 27.08.2013:[8.0] "Legendär, Sting verkörpert(e) die WCW, mit Baseballschläger abgeseilt von der Decke... Nur leider wusste er nicht, wann es Zeit ist, zu gehen, hätte er sich (und uns) nur TNA erspart!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: pentiwrote on 22.08.2013:[10.0] "Der Inbegriff des WCW-Wrestlers. Ich glaube jeden der an WCW denkt fällt als erstes Sting ein. Der Typ hats im Ring (immer noch) voll drauf und an seiner Ausstrahlung hat er natürlich auch nichts verloren. Und auch heute in der TNA gehört er noch zu den Besten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Valancewrote on 02.08.2013:[10.0] "The real legend, the real icon! Amazing wrestler even at 50+ years."
Rating: 10.0
Sentiment: 0.35000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Lecterwrote on 06.06.2013:[8.0] "Sting was my first favourite wrestler based on the fact that he looked cool. And he did. Now he wrestles with a t-shirt on. For shame, Stinger. But yeah, Sting had a lot of good matches and the occasional cool backstage moment. He was just the victim of some terrible booking."
Rating: 8.0
Sentiment: 0.08214285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: anglejoewrote on 15.04.2013:[10.0] "Wrestling-Legende, jemand der das Publikum jederzeit fesselt. Sicherlich einer der wichtigsten Wrestler der WCW und TNA."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Gredzillawrote on 12.04.2013:[10.0] "Sting ist so ein Phänomen, den kann man nicht mögen. Also ich nicht. Ich weiß es nicht ist es sein Style mit dem Mantel und der Schminke die mich immer an den Typen aus dem Film The Crow denken lässt, oder sind es seine Wrestlerischen Fähigkeiten oder das Micwork. Wenn ich an TNA denke ist der Typ sofort auf dem Schirm. Mittlerweile über 50 aber ich kann mir TNA ohne ihn nicht vorstellen. Because he's the fucking Icon!"
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Bowlenwrote on 16.03.2013:[8.0] "Trägt den Beinamen "The Icon" wahrlich nicht zu unrecht. Natürlich war er früher in der WCW um Längen besser, aber für einen über 50-Jährigen liefert er noch respektable Leistungen ab, mit dem richtigen Gegner kann da sogar noch ein richtig gutes Match zustandekommen. Am Mikrophon gibt es zudem noch immer wenige, die dort an ihn rankommen. Zudem schätze ich seine Loyalität zu TNA sehr. Eine gute Wahl für den ersten Hall of Famer der Liga."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: 8BitLegendwrote on 11.03.2013:[8.0] "Die größte Legende, die nie bei WWE unter Vertrag stand. Hatte viele gute Gimmicks, zahlreiche große Storylines, doch irgendwas fehlt mir persönlich für eine ganz hohe Wertung. Vielleicht nur die große McMahon Bühne, vielleicht irgendwas anderes - ich weiß es nicht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: krausi001wrote on 30.12.2012:[10.0] "The Icon Sting. Damals wie heute versteht er es die Wrestlingwelt zu unterhalten. Nicht nur durch sein Auftreten im Ring. Vor allem seine Promos sind genial. Er war und ist DAS Face von WCW und TNA."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CMCultOfPersonality91wrote on 30.12.2012:[10.0] "Ich hab leider nicht so viel von ihm gesehen. Nur 1, 2, Matches bei TNA und mehrere auf den WWE Dvds. Allerdings genug, um einen Eindruck von ihm zu bekommen. Und Ich muss sagen, dass mich nur eine handvoll Wrestler auf eine Art und Weise fasziniert haben, wie Sting. Vor allem in der schwarz/weiß WCW Version absolut genial! Und was für eine Ringpräsenz. 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Cobrawrote on 14.12.2012:[10.0] "The man has given so much of his life to wrestling and really is an icon. Aways entertaining and great to wrestler."
Rating: 10.0
Sentiment: 0.42500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Wolkywrote on 20.09.2012:[10.0] "Eine Legende, ohne Frage, trotz seines sehr fortgeschrittenen Alters schlägt er sich im Ring seit Jahren wirklich noch immer aktzeptabel, am Mic, Schauspiel etc. ist er so gut wies nur geht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Kitanoyamawrote on 15.09.2012:[9.0] "Ohne Zweifel eine Legende der NWA bzw. späteren WCW. Er war wrestlerisch kein Überflieger, auch wenn er ein paar gute Tricks und Techniken drauf hatte, aber das glich er sonst vorallem mit Überzeugungskraft aus. Schade das er nicht auch noch bei der WWE mal auftrat, aber das hat/hatte er auch eigentlich garnicht nötig. Er kann so oder so mit Fug und Recht zu besten eines Fachs zählen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: VanderVaartwrote on 12.09.2012:[8.0] "Das Gimmick war das coolste in den 90er Jahren der WCW . Finisher und Signature Moves passen. Von der Hallendecke zu kommen, ist zwar riskant, aber spektakulär. Dann ging die Post ab und kein Heel war vor ihm sicher. Ist aber völlig übertrieben, wenn er gleich fünf Leute, mit einem Baseballschläger, vermöbelt. Er ist wohl der einzige Top-Wrestler, der nie unter WWE-Vertrag stand. Stattdessen ging er in hohem Alter noch zur TNA. Hier erlebt er seinen 2. Frühling."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DaNiwrote on 29.07.2012:[10.0] "Auch wenn ich nicht der größte TNA-Fan bin, so sehe ich doch gerne zu, wie sich Sting noch den ein oder anderen Kampf gibt.  Ich hoffe er schafft den Absprung. Der Kerl ist älter als der Undertaker und natürlich merkt man das auch im Ring.  Jedoch ist alleine Stings Vergangenheit die 10 Punkte wert. Schon als kleines Kind beim zappen blieb ich wegen Sting bei der WCW hängen. Damals war das Crow Image brandneu, was mir sehr anzog. Sting hat damit mein Interesse zum Wrestling geweckt. Danke"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Monday Night Wars85wrote on 23.06.2012:[10.0] "Für mich unangefochten die Wrestlinglegende. Super Gimmick, ein absolutes Original. Dass seine Leistungen im Ring nicht mehr spektakulär erscheinen hängt glaub ich nicht mit seinem Alter zusammen, sondern eher damit wie Tna ihn einsetzt und bezahlt. Wenn man ganz ehrlich ist hat jemand in der Tna ein vergleichbares Match zu Wrestlemania Matches des Undertakers gesehen? Ich finde mit dem was man bewertet sollte man Stings ganzheitliche Karriere bewerten. Und ich finde da ist er ein großes Vorbild für alle jungen Wrestler. Er bleibt einer Liga treu und wrestlet nicht nur dann wenn die Liga läuft. Einer mit seiner Größe hätte schon längst der Tna den Rücken kehren können.  Sting brauchte nie eine WWE um die Legende zu verkörpern, die er letzten Endes ist und bitte bleib uns noch ein paar Jährchen erhalten. Woooooohhh!"
Rating: 10.0
Sentiment: 0.40104166666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Sascha311wrote on 15.06.2012:[2.0] "Mir geht Sting eigentlich nur noch auf die Nerven der Typ ist viel zu Alt und das sieht man an seinen Matches so jemanden kann man doch net in den MainEvent stellen! Er ist eigentlich nur noch ein Schatten von dem was er mal war, und ich hoffe das er bald ma verschwindet bevor er noch im Ring an einem Herzinfakt stirbt!"
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Turkish-Wrestling-Godwrote on 12.05.2012:[10.0] "Man möge mich hier verurteilen, weil ich vielleicht nicht zu hundert Prozent Konstruktiv und fair bewerte, aber es geht hier um STING! Er ist für mich wirklich eine der größten Legenden des Wrestling. Ja, ich muss zugeben, er ist nicht gerade einer der besten Wrestler auf diesem Planeten, aber darüber sehe ich in seinem Fall hinweg. Ich würde mir für ihn einfach nur wünschen, dass er nicht mehr allzu lang im Ring umher springt, ich möchte nicht, dass er irgendwann nur noch ein Wrack ist, so wie es bei vielen anderen vor ihm der Fall war..."
Rating: 10.0
Sentiment: 0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Kenshin Uesugiwrote on 17.03.2012:[7.0] ""Bei Sting muss man nur die Matches gegen Flair, Vader und Great Muta ansehen, zu größeren Singles Matches- Leistungen war er nicht fähig und auch nur dank der drei Herren! " Das ist natürlich eine knallharte Aussage die sehr überspitz ist, aber dennoch viel Wahrheit beinhaltet. Steve Borden hat von seine Ausstrahlung und Staraura sowie sein zum Teil sehr guten Umsetzung seines Gimicks gelebt. Das ist weiß Gott nicht Schlimmes aber im Nachhinein wird ihm gerade von deutschen Fans mehr Können und Klasse angedichtet als er je hatte. Das Wort überbewertet will ich hier nicht in den Mund nehmen weil es einen so dauerhaft erfolgreichen Mann, der sich stets und ständig um seine Heimat WCW bemüht hat, nicht verdient. Aber Steve Borden war auch lange in seinen selbst auferlegten Stigmata gefangen und brach zu selten mit seinen Crow-Gimick heraus. Das seine Gimick Adaptionen von Film-Charakteren sind, ist weder schlimm noch verwerflich, da es ja nicht um Kopien handelt. Mittlerweile ist der Mann aber so was von unterdurchschnittlich was seine Arbeit angeht (den Scorpion Lock hatte er ja schon in der Vergangenheit lauwarm ausgeführt) das ein dauerhaftes festklammern in den Main Event Region und dir gefühlten zehn Titelregentschaften bei TNA niemals rechtfertigen. Da muss auch so fair sein und sagen das er da niemand mehr over bringt sondern im Weg steht."
Rating: 7.0
Sentiment: 0.6222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Saschwrote on 12.03.2012:[10.0] "You still got it! Schade dass er nie zur WWE kam, denn er wär der beste Rivale bzw. Tag Partner des Undertaker. Aber wahrscheinlich für ihn so besser, da die WWE vieleicht versucht hätte seinen Kultstatus zu senken siehe Page, Stasiak usw. Das Crow Gimmnick war seine Vollendung finde ich und ich könnte mir auch niemand anderen in dieser Rolle vorstellen! Seine Highlights von symphatischen sunnyboy bis zum Rächer war ein Leckerbissen ohne dass er nur ein einziges Match bestreiten musste und sozusagen haben damals vor allem Sting und Hulk Hogan die WWE besiegt bei den monday night wars. Dafür ist und bleibt er für mich eine Ikone"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: nohmetalheadwrote on 29.01.2012:[10.0] "Einfach einer der größten. Lebende Legende! Und vor allem die Tatsache, dass er nie bei Vince unter Vertrag stand macht ihn noch größer ;-) ..."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Schlagschawrote on 31.10.2011:"Möchte keine eigene Wertung abgeben, aber in den neunzigern war er eigentlich das gegenstück zum Bret Hart der WWF."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: C van Damwrote on 31.10.2011:[10.0] "Unglaublicher Wrestler, der es auch heute noch schafft mich zu überzeugen. Im Ring nicht mehr die Granate, aber am Mic stark und auch das Auftreten. Glatte 10."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: devilsoldierwrote on 28.09.2011:[9.0] "Legende! Ohne Zweifel und immer wieder gut für geile Gimmicks. Sogar das Jokergimmick find ich klasse. ABER! Ich hoffe er macht nicht den selben Fehler wie Ric Flair und kann sich nicht vom Ring trennen. Noch ist es super was er im Ring bringt und der Körperbau in seinem Alter. Aber muss er wirklich noch Champion sein? Man siehe Shawn in den letzten Jahren, keine großen Titel aber Matches zum Finger lecken und viele Leute nach oben gebracht. Das sollte der Stinger auch tun für die Bobby Roodes, Styles, AndersonŽs oder Eric Youngs aber BITTE keine Champruns oder Matches gegen Hogan oder Flair."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Rated R Punkwrote on 06.09.2011:[9.0] "Sting ist wirklich eine WCW Ilkone, er konnte in allen Bereichen überzeugen, und hatte immer Super Storys, allerdings fande ich das er in TNA fehl am Platz war, außerdem sollte er trotz allem mal langsam daran denken in den Ruhestand zu gehen."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Fall Out Boywrote on 27.08.2011:[10.0] "Absolute Ikone, absoluter Win fürs Wrestling Business. Wo er war, war er eine der schillerndsten Figuren. Arenen füll(t)en sich wegen ihm. Im Ring richtig gut und sein Gimmick war wohl eines der besten aller Zeiten. Konnte in all seinen Rollen überzeugen und am Mic war er stark. Mir fällt nicht viel schlechtes zu dem Mann ein."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hu-Manwrote on 20.08.2011:[8.0] "Kenne seine früheren Taten nicht und kann nur bewerten, was ich heute sehe: einen alten Mann, der an seinem Spotlight festhält und immer wieder beteuert, es nicht zu tun. Der Mann bringt dem Wrestling nun wirklich nichts mehr ein. +++ Edit: Für sein aktuelles Joker-Gimmick muss ich meine Bewertung ordentlich korrigieren, weil er mittlerweile unterhaltsamer ist als Anderson. Sting im Spätherbst seiner Karriere rockt zur Zeit wirklich. Eventuell sollte er sein Momentum aber lieber dazu nutzen, junge Talente over zu bringen, statt alle zwei Wochen Champ zu werden. +++"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Auditorewrote on 12.08.2011:[9.0] "Mittlerweile, was bei dem Alter nicht verwunderlich ist, Eindeutig nicht mehr so gut wie früher. Aber was nunmal früher war, war spitze und auch am Mic kann er überzeugen. Sollte nun allerdings aufhören weil er sich sonst nur ins lächerliche zieht. Aber sollte trotzdem ein wenig den Hulk Hogan mimen und zum Beispiel als Manager arbeiten. 9 Punkte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Alan Smitheewrote on 05.08.2011:[8.0] "Es wird nicht besser, nein wirklich nicht. Aufgrund der Ruhmreichen Vergangenheit in der er mir außerordentlich gut gefallen hat gibt es erstmal nur die Abwertung von 10 auf 8 Punkte aber wenn er nicht bald (sprich noch dieses Jahr) die Wrestlingstiefel an den Nagel hängt und den Raum in dem sich dieser Nagel befindet in die Luft jagt wird meine Bewertung noch schneller sinken als DiCaprio in Titanic."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Michael Shawn Hickenbottomwrote on 29.07.2011:[10.0] "Gefällt mir trotz seines Alters immernoch sehr gut! Früher beweglicher, aber er hat fast nichts eingebüßt."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: FNShowwrote on 13.07.2011:[7.0] "Auch wenn ich Sting nie möchte und er nicht mein Liebling wird finde ich, dass Sting nicht älter sondern besser wird. Das Joker-Gimmick ist genial (auch wenn es geklaut sein sollte). Sicherlich ist er Ring nicht mehr so gut wie vor 20 Jahren aber Sting 3. 0 nach Sting (Crow) und Sting (Rainbow-Warrior) ist Evolution. RIP Heath"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Boggenauerwrote on 10.07.2011:[10.0] "Ich finde Sting einfach nur grandios, seine Promos sind einfach der Hammer ich finde der kleine Gimmickwechsel im Moment hat ihm sogar sehr gut getan so als verrückter Stinger. Sting kann mich zurzeit wirklich gut unterhalten seine In-Ring skills sind zwar etwas geschrumpft im vergleich zu damals aber der Mann ist einfach Kult. Promomäßig und am Mic ist er einfach Klasse und im Ring auf jeden Fall kein schlechter von mir 10 Punkte für den Stinger."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: El-Chupakneebraywrote on 10.07.2011:[9.0] "Ich hätte ja nicht gedacht, dass ich Auftritte von Sting im Jahre 2011 zu den absoluten Highlights einer Show zählen würde. So ist es aber seit ich wieder angefangen habe IMPACT zu verfolgen. Wer ist eigentlich dieser Heath Ledger?"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: stinger89wrote on 03.07.2011:[10.0] "Habe angefangen Wrestling in der damaligen WCW zu schauen. Da hat mich Sting immer am meisten fasziniert. Nach dem Gimmickwechsel von Surfer zu Crow wurde er dann noch interessanter. Im Ring sowie am Mic ist er meiner Meinung nach auch ziemlich gut, von daher 10 von 10 für mein Idol. "It's Showtime Folks! " Update: Liefert mittlerweile NUR NOCH GEILE Promos ab... Mit 52 Jahren nochmal ein gimmickwechsel, das hat schon was. Auch im Ring ist er wieder agiler und besser als noch letztes Jahr. Weiter Soooooooooo!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Donald Duckwrote on 23.06.2011:[10.0] "Er war für mich immer der Undertaker der WCW. Eine der größten Legenden aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Franchise Playerwrote on 14.06.2011:[9.0] "Obwohl ich kein großer Sting Fan bin, muss ich dem Typen viel zu gestehen wie u. a. ein hervorragendes Gimmick, MicWork, In-Ring Leistungen, Charisma. Zudem war nie in meiner "Lieblingsliga", was auch noch positiv anzukreiden ist. Nur soll er bitte endlich dieses Hick-Hack mit nem neuem Vertrag lassen"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: wweangiwrote on 12.06.2011:[10.0] "Der Undertaker von TNA! Sting ist egal ob als face oder heel einfach spitze, tolle Promos und immernoch professionel! Er kann es noch mit den jungen spritzigen aufnehemn und bringt zugleich noch die Ringinteligenz eines erfahrenen Superstars mit! Für mich ganz klare 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: OdisVanNeusswrote on 24.05.2011:[9.0] "Sting hat einfach alles,  alles was den Jungs von Heute fehlt..  Gimick, Charisma Gute Micarbeit und dazu kann er einen Matchaufbau strukturieren und durchführen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: C0nspiracywrote on 27.03.2011:[7.0] "Seine WCW & TNA Zeit zusammen auf eine Wertung ergebeben bei mir immer wieder 7. Zu WCW zeiten eine 9 , seine TNA Zeit bewerte ich mit einer 5 minus. Sting ist sicherlich bis jetzt ( stand März 2011) ein opfer schlechten bookings, da dies aber auf beinahe alle TNA Wrestler zutrifft ist dies keine Rechtfertigung. Seine WCW matches waren wirklich sehr gut bis zu seinen Crow Gimmick. Beinahe alles danach war wirklich nur durchschnitt. Und bei TNA wrestled er noch bescheidener trotz oft guter Gegner , (Angle ect. )."
Rating: 7.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: thereisonlyonewrote on 10.03.2011:[10.0] "Wirklich eine Wrestling-"Ikone" und für sein Alter noch Top in Form Thumbs up!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: exxterwrote on 01.03.2011:[10.0] "Für mich das Phänomen der WCW. Und noch heute seh ich ihn sehr sehr gern auch wenn "nur" in TNA."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Takerwrote on 27.02.2011:[9.0] "Auch eines der tollsten Gimmicks welches die Top Zeit in der WCW mitmachte 1997 - 1998... einfach Klasse der Mann... aber bei der WWE wird man ihn bestimmt niemals sehen..."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TNAwrote on 04.02.2011:[10.0] "Guter Wrestler, damals in der WCW und auch in den letzten Jahren bei TNA, guter Allrounder der eigentlich alle Wrestlingstile beherrscht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ClaudeSpeedwrote on 31.01.2011:[10.0] "Er hat den Namen Icon einfach verdient. Tolle Matches und schön anzuhören -und -sehende Promos. Er hat es immer noch Drauf. Ohne weitere Worte 10 Punkte. Update: ist jetzt zwar ziemlich kürzer getreten aber nie passten vier Wörter zu ihm mehr als "You still got it" und das trotz seiner 51 (fast 52) Jahre."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: rayraywrote on 30.01.2011:[10.0] "Für mich einer der ganz Größen. Super Ausstrahlung, noch besser dann mit dem "The Crow" Gimmick. Top Mic-Work. Und er ist sich treu geblieben, damit das er nie bei der WWE unter Vertrag war. Ist eine Legende und gehört in die Hall of Fame."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: LabronBenoitwrote on 05.12.2010:[10.0] "Sting ist genial, damals Anfang- bis Mitte der 90er schon ein riesen Wrestler gewesen, heutzutage sieht man natürlich nicht mehr so viel von ihm (auch Sting wird alt), aber das Gimmick ist nach wie vor Klasse. Und das der Herr Sting es nicht in die WWF geschafft hat, so wie mein Vorredner das hier andeutet, liegt eben daran, dass er niemals dorthin wollte. Ausserdem wäre Sting der letzte gewesen, der an dem Untergang der WCW Schuld getragen hätte. Er hat das letzte Nitro zu etwas Besonderem gemacht und auch zur History der TNA hat er jede Menge beigetragen. Für mich ein Mann, ohne dem WCW und TNA nie so weit gekommen wären!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Tarawrote on 12.11.2010:[10.0] "Für mich einer der besten Wrestler der 80 und 90 Jahre. Er war der Grund warum ich erst überhaupt Wrestling angesehen habe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MajinSitwrote on 27.10.2010:[10.0] "Ein Mann den man nur als Legende bezeichnen darf, alles andere würde Sting nicht gerecht. Er war/ist einer der ganz großen, keine Frage. Ein überzeugendes Gimmick, viel Charisma, und auch gute InRing-Fähigkeiten. Dass er nie in der WWF/E war, bringt ihm nur noch zusätzliche Sympathiepunkte. Würde ich nur seine Zeit in der WCW bewerten, hätte er mindestens 13 Punkte von mir gekriegt, aber man merkt ihm so langsam an, dass er auch nicht jünger wird. Das allerdings ist ein Makel, der nicht wirklich ausschlaggebend ist, denn auch wenn er im Ring nachgelassen hat, ist er immer noch ein großartiger Unterhalter. Volle Punktzahl, für einen der charismatischsten Gestalten mit einem der besten Gimmicks aller Zeiten der Wrestlingszene."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Fountain of Misinformationwrote on 25.10.2010:[6.0] "Sehr beschränkter Wrestler mit absolut überschaubaren Talent im Ring, der stets nur so gut war wie seine (guten) Gegner, selbst in den späten Achtzigern und bis Mitte der Neunziger war das im Ring nicht viel. Aber eben sehr charismatisch und mit mehr als nur dem "gewissen Etwas" ausgestattet, wovon er dann viele Jahre (mit noch schlechteren Matches als vorher) zehren konnte. Hätte sich alles nach 2000 aber getrost schenken können und hat unlängst d. h. bereits vor Jahren seinen Zenit überschritten."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Jar Jar Binkswrote on 21.10.2010:[6.0] "Hat mich irgendwie nie so richtig überzeugen können. Früher in der WCW, da war er großartig. Zumindest das was ich von ihm gesehen habe. Aber heute ist er das nicht mehr. Für mich eine Legende mit starker Vergangenheit, der dennoch langsam seine Karriere beenden sollte."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Aesopwrote on 19.10.2010:[9.0] "Sting hat enorm viel Charisma, ein gutes Gimmick und früher war er auch im Ring zu gebrauchen, in den letzten Jahren ist er das aber nicht mehr, er ist schon lange über seinem Zenit, er sollte langsam mal aufhören."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Damon Strikerwrote on 17.10.2010:[7.0] "Ich habe Sting Anfang/Mitte der 90er Jahre sehr gemocht. Sein anschließender Gimmick-Wechsel war erfolgreich und wird von nahe zu jedem gefeiert. Nicht aber von mir. Das er damit verbunden eine ganze Weile auch noch nicht in den Ring stieg, tat sein übriges. Sein TNA-Engagement kann ich nur bedingt gutheißen, da er kaum junge Worker over brachte und es ihm Ring auch nicht mehr passte. Bleibt eine durchwachsene Bilanz."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Blade Bourdeauxwrote on 10.10.2010:[7.0] "Das Sinnbild der WCW, zusammen mit Ric Flair, und ein ganz Großer des Wrestlings. Mit der Ankunft des Hulkster musste er etwas zurück stecken kam aber dann mit neuem Gimmik erfolgreich zurück. Heute nicht mehr der selbe, aber immer noch besser als viele andere. + Wie viele scheint er nicht in der Lage zu sein zu erkennen wann man besser die Stiefel an den Nagel hängt daher eine Abwertung."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Homicide187wrote on 09.10.2010:[10.0] "Sting ist großartig. Das was er alles in der WCW gezeigt hat und was er für die WCW getan hat ist unglaublich. Den bunten Sting fand ich immer etwas komisch (sah ich aber auch erst als es den schwarzen schon gab), aber schwarz und rot war und ist er super. Für TNA ist er sicherlich auch sehr wichtig und ich bin gespannt was er da noch zeigt."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Ramwrote on 26.09.2010:[6.0] "Ich kenne ihn leider nicht aus seinen besten Zeiten nur so wie ich ihm in TNA erlebe, erlebe ich auch alle anderen Alten Leute in der TNA. Sie ruhen sich auf ihren Status aus den sie mal hatten. Heut zu tage Žkann ich wenig oder gar nichts mit dem Herrn Anfangen. Im Ring mittelmässig am Mic total lahm und die austrahlung die er früher hatte ist auch nicht mehr so da. Die TNA übertreibt es total mit ihm und hypt ihn als sei er der beste der Welt.  Nur wegen seinen guten Namen aus WCW Zeiten geb ich ihm 6 Punkte."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Pyromaticwrote on 20.09.2010:[9.0] "Bestes Gimmick ever, aber es ist schade das er nie einen WWE Auftritt hatte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Tirlt a Whirlwrote on 06.09.2010:"Da ich nicht viele Matches von früher gesehen habe kann ich ihn nicht berwerten.  dazu muss man auch die storys miterlebt haben usw...  Ich kann nur sagen das mich niemand mehr langweilt als Sting.  Für mich hat er 0 Charisma und im Ring so lala.  Niemand im Wrestling interessiert mich weniger als Sting."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Double Jwrote on 28.08.2010:[10.0] "Sting ist super im ring, sogar heute noch und sehr charismatisch. Außerdem reißt er sich immer den arsch auf, hilft Rookies backstage und laut Eric Bischoffs autobiographie war sein Gehalt nicht annähernd so hoch wie das von anderen stars, obwohl er den selben stats hat und er soll sich nie beschwert haben.  Den Mann muss man einfach respektieren, wer Sting nicht respektiert, der respektiert das bussines nicht!"
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: LionheartXwrote on 03.08.2010:[10.0] "Sting ist seitdem HBK im Jahre 2006 mehr und mehr zu einer Komedy Person mutiert ist, mein Lieblingswrestler. Sein äußerliches erscheinungsbild macht ihn interessant, seine Entrance Lied ist einfach Hammer. Wrestlerrisch überzeugt er mich fast immer, obwohl er schon paar jährchen alt ist. Er hat Charisma und wie! Ich glaube er zählt zu den größten Legenden. Ich hoffe mal, dass wenn er aufhört, vielleicht eine hohe Position in TNA bekommt und die Show Kreativ beeinflussen kann oder darf. Das wäre eigentlich wirklich Klug, denn er ist schon lange dort dabei und kennt die Worker sehr gut."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: WrestlingFanDuisburgwrote on 03.08.2010:[9.0] "Egal ob als farbenfroher Sting oder mit Crow Gimmick, er hat es einfach drauf. Seine Matches, waren immer Spitze. Leider hat ihm Hogan mit der Creative Control Klausel bei Starrcade 97 die Karriere versaut, denn er hat verhindert, dass die WCW Legende der nWo eine klare Niederlage beibringt. Mikrofontechnisch ist Sting auch nicht der schlechteste."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hirnklopswrote on 13.06.2010:[4.0] "Lieber Steve... TU ENDLICH FETTICH MACHEN! Das kann sich ja bald keiner mehr angucken..."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Shikawrote on 30.05.2010:[6.0] "Ist mittlerweile längst nicht mehr der der er früher war. Dafür das er schon 50 ist kann er zwar noch einiges aber für mehr als 6 Punkte reicht es trotzdem nicht. Bei TNA für mich immer ein Grund umzuschalten."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Erasedwrote on 22.05.2010:[8.0] "Stand vor vielen Jahren verdient im Main Event. Inzwischen hat er seinen Platz dort aber nichtmehr verdient. Sein Können ist nun schon stark durch sein Alter beschränkt, somit hällt er bessere, die eine gute Aussicht auf eine Zukunft haben unten."
Rating: 8.0
Sentiment: -0.016666666666666677
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: RockerDropperwrote on 25.04.2010:[9.0] "Sting ist ein Phänomen; Seit 25 Jahren im Geschäft und 20 davon ein Main Evente ohne häufige Gimmickwechsel und Turns. Er ist eine Konstante im schnellebigen Geschäft, und wo selbst Stars wie Bret Hart, The Rock oder Steve Austin in seiner Zeit ganz nach oben stiegen aber schon lange nur noch blasse Erinnerungen sind steht er noch immer im Main Event; das ist ganz erstaunlich.  Selbstverständlich kann seine Leistung nicht mehr so überzeugen wie mit 35; aber sie ist auch nicht schlecht. Nach wie vor liefert er solide Matches und zeigt sich in einer guten körperlichen Verfassung.  Wirklich ein Wrestler, der es damals wie heute verdient hat, im Rampenlicht zu stehen."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Brooklyn Brawler 1985wrote on 22.04.2010:[10.0] "Wer sich so lange an der Spitze einer Liga hält und zudem keine merklichen Schwächen offenbart, der hat sich die volle Punktzahl definitiv verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: cypherwrote on 06.04.2010:[10.0] "The Icon;) mehr muss man wohl nicht sagen. Zum einen find ich sehr gut das er nie bei der WWE war, zum anderen find ich seine jedes Jahr aufs neue Vertragsdebatte richtig kacke. Aber ok;) jeder Mensch hat Fehler:) mfg Cypher"
Rating: 10.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Danicheckwrote on 04.04.2010:[10.0] "Er war einer der Gründe, warum ich angefangen habe, Wrestling anzugucken. Dazu finde ich ihn ziemlich cool, hat ein einzigartiges Gimmick, was mich dazu bewegt 10 Punkte zu geben"
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Moyawrote on 15.03.2010:[10.0] "War für mich immer einer der Hauptgründe, WCW einzuschalten. Machte mit seinem schwarz/weiß Outfit eine gute und interessante Charakterentwicklung durch. Insgesamt einfach ein starker Wrestler!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Kane15wrote on 09.03.2010:[9.0] "Damals in der WCW großartig... inzwischen ziemlich schwach eingesetzt :("
Rating: 9.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TheROCKwrote on 24.02.2010:[10.0] "Der beste, der nie in der WWE war. Sagt wohl schon alles. Ein Mann mit Überzeugung. A True Icon."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: chryzzwrote on 18.02.2010:[10.0] "ER hatte das Beste Gimmik was jemals geschaffen wurde und brachte dieses auch noch perfekt rüber. Im Ring Grossartig am Mic ebenfalls."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CatsCrashwrote on 17.02.2010:[10.0] "Auch wenn Sting mittlerweile zum alten Eisen gehört, ist und bleibt er wohl einer der größten Wrestler aller Zeiten. Er sollte wirklich noch eine kurze Fehde evt. gegen den Hulkster machen und dann nur noch ab und an erscheinen. Wenn er sich komplett zurück zieht wäre es ein großer Verlust für die Wrestlingwelt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Manu Adamswrote on 16.02.2010:[10.0] "Es mag sein, dass Sting definitiv seinen Zenit weit übersprungen hat, doch auch wie ich finde ist er jetzt ebenfalls noch in der Lage Top Matches abzuliefern, wenn man ihm einen richtigen Gegner wie Kurt Angle oder AJ Styles hinstellt. In den 80igern als ich noch Mark war, war Sting mein absoluter Lieblingswrestler. Ich weiß noch wie ich Woche für Woche vor dem Fernseher saß und mitfieberte. Auf jeden Fall ein großer Techniker der mit unzähligen Klassikern für Aufsehen sorgte."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Ellmowrote on 19.01.2010:[10.0] "Der beste Wrestler in der WCW. Ist seit meiner Anfangszeit als Wrestlingfan bis zum heutigen Tage einer meiner Liebslingswrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ShakDragoonwrote on 19.01.2010:[9.0] "Eine absolute Legende in der NWA und WCW... hab' mich sehr über seinen Championship-Runs bei TNA gefreut und seh' ihn immernoch gerne! Als Anführer der Main Event Mafia war er perfekt eingesetzt. Bin gespannt, wie es nun unter Hulk Hogan mit ihm weiter geht."
Rating: 9.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Mick Funkwrote on 18.01.2010:[4.0] "Zenit ist lange Zeit überschritten. Nach dem Karriereende folgt eine Aufwertung."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: nwowrote on 15.01.2010:[2.0] "Ich mochte ihn nie. Weder als Babyface-Sting, noch als Crow-Sting. Und jetzt ist er auch noch zu alt."
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DJ MaSchwrote on 19.12.2009:[8.0] "Einer der ganz großen. Legendäre Matches, vorallem Ende der 80er bis Mitte der 90er wrestlerisch wirklich hervorragend. Zudem Kkasse am Mic und die wohl beste Gimmick Weiterentwicklung aller Zeiten. Alles in allem müssten das klare 10 Punkte sein, aber er hätte seine Karriere eben schon vor gut 10 Jahren beenden sollen. Jetzt mit über 50 ist er nicht einmal mehr ein anehmbarer Wrestler und kratzt ganz schon an seinem eigenen Denkmal. Schade."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: stallownagewrote on 04.12.2009:[10.0] "Sting ist definitiv einer der Kandidaten, deren Gimmick keinerlei Weiterentwicklung mehr benötigt. Als Aushängeschild der WCW hat er etliche Titel gesammelt und an den wichtigsten Fehden teilgenommen, wenn nicht sogar in deren Mittelpunkt gestanden. Durch den Wandel zu einem äußerlich an "The Crow" angelehnten Rächer in 1996 ist er endgültig zum absoluten Superstar aufgestiegen. Dass er sich diesen Status nicht durch einen eventuellen WWE-Run zunichte hat machen lassen, spricht daher nur noch mehr für ihn. Obwohl die Geschichten, die um ihn bisher in TNA gestrickt worden sind, zum Großteil nicht gerade das Gelbe vom Ei waren, hat er diese doch immer wieder mit seiner Präsenz und vor allem seiner Arbeit am Mikrofon deutlich aufgewertet. Das letzte Top-Match (gegen Kurt Angle) liegt zwar nun auch schon zwei Jahre zurück, im Vergleich zu den restlichen Altstars in TNA, kann sich seine Arbeit zwischen den Seilen allerdings noch am ehesten sehen lassen. Die "You still got it"-Rufe der Fans zeigen außerdem welchen Respekt er auch heute noch genießt. Und das neben Männern wie Kevin Nash, Mick Foley, Kurt Angle und bald auch Hulk Hogan. Weniger als die 10 darf hier einfach nicht stehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: downtown2wrote on 03.12.2009:[8.0] "Sting hatte durchaus gute Phasen in seiner Laufbahn, in denen er ein würdiger Superstar war. Ein Aushängeschild der WCW sowieso. Man kann ihm aber dennoch keine Bestnoten verpassen, da er sich in den großen Ligen dieser Welt nie dem Wettbewerb aussetzte und seine, damals sicherlich revolutionäre, Crow-Sting Figur nie mehr weiterentwickelte. Für all die Jahre der schillerden Unterhaltung wird man ihn aber gut in Erinnerung behalten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Telecinewrote on 01.12.2009:[8.0] "Auch Sting ist ein Kandidat, der sich nicht dazu durchringen kann, Schluss zu machen. Und auch ich als Wrestling-Fan kann mich zurzeit nicht entscheiden, ob ich für oder gegen einen Rücktritt sein soll. Grundsätzlich sollte jedoch für alle Wrestler gelten: Sie sollte gehen, solange sie noch einen würdevollen Abschied in Form eines guten Matches haben können. Das kann Sting zurzeit noch. Aber natürlich ist es somit immer ein bisschen Poker, wie lange man weitermacht und dann wirklich noch in der Lage ist, ein gutes Abschiedsmatch zu machen. Bei Ric Flair beispielsweise war dieser Punkt eig schon überschritten und er hat es mit HBK dennoch geschafft. Sting kann ruhig noch ein paar Jahre weiter machen, aber seine Leistungen sollten doch so bleiben, wie sie jezt sind, denn wenn er stark nachlässt, dann wird er sich selbst damit keinen Gefallen mehr tun."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TheLoudMouthwrote on 16.11.2009:[10.0] "Absolute Legende. Sehr hoher Bekanntheitsgrad, obwohl er nie in einem WWE-Ring stand. Im Ring ganz passabel, am Mic eher schwach, aber an Charisma kaum zu überbieten in der TNA."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: GibDirDreggischwrote on 13.11.2009:[10.0] "10 Punkte für eine Legende, der trotz fortgeschrittenen Alters im Vergleich zu vielen anderen Alt-Stars auch heute noch durch gute Leistungen seinen Platz im TNA Main-Event rechtfertigt und es vor allem versteht dem Publikum das Entertainment zu liefern, für das wir doch alle diesen Sport lieben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Ultrakaoswrote on 06.11.2009:[10.0] "Einer meiner favoriten. Zwar ins Alter gekommen aber immernoch gut. Das einzige was fehlte war mal ein Vertrag bei der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: New Evolution90wrote on 22.10.2009:[10.0] "Eine Legende wie Sting lebt nur einmal. Hätte ihn gerne in der WWE gegen Rey oder dem Undertaker."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Kurt Winkelwrote on 20.10.2009:[10.0] "Wenn Sting im Ring auch langsam abbauen mag: Er ist eine Legende und weiterhin einer der charismatischsten Micworker überhaupt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: BoeserLobowrote on 05.10.2009:[10.0] "Noch immer eine der absoluten Ikonen des Wrestlings. Besonders erwähnenswert, dass er sich (bisher) noch nicht an die WWE verkauft hat. Hat in seiner Karriere einen Extremwandel im Gimmick vollzogen und diesen absolut überzeugend verkauft. Sehr guter Mic-Worker. Als Heel nicht von den Fans akzeptiert und deshalb immer wieder nach kurzer Zeit zum Face zurückgewechselt (teilweise sogar gegen Storyline). Einziges Manko: hätte wesentlich mehr Titelkämpfe erhalten müssen auf Grund seiner Fähigkeiten und der Popularität."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: finsterwegwrote on 24.09.2009:[10.0] "Gut habe lange keine Matches von ihm gesehen , kenne Sting nur aus der WCW zeit. Damals war er die Kult Figur deshalb 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Wichtgestaltwrote on 21.09.2009:[10.0] "Ok, Bewertung zurück auf 0 Punkte. CHECK!  WCW-Zeit 10. 0 Punkte. TNA-Zeit ... Naja, zwischendurch habe ich dem Stinger nur 8 Punkte gegeben, weil er teilwiese junge Leute zu wenig "over" brachte. Mittlerweile sehe ich aber, das er die Fackel weiter reicht. Willkommen im Olymp, Sting"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: NewGuywrote on 12.09.2009:[10.0] "DER Beweis, dass man nicht umbedingt immer in der WWE sein muss um zu einer absoluten Ikone dieses Sports zu werden! Sting liebt das Business, nicht das Geld, sondern einfach nur das Business! Super Mic Worker, super techniker, super legende geht einfach nicht anders als fette 10 Punkte!"
Rating: 10.0
Sentiment: 0.3611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: billygunnwrote on 02.09.2009:[10.0] "Eine Legende? Eine Ikone! - Der Stinger Super Finisher, gut überdachtes Auftreten und seine beliebtheit machen ihn perfekt!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: teekay86wrote on 25.08.2009:[10.0] "Unterhält mich schon seit ich mic für Wrestling interessiere. Er blieb sich immer treu indem er nie ins Lager der WWE wechselte, er hat ein Gimmick mit dem sich über die Jahre einige Interessante Storylines schreiben ließen und er schafft es auch heute noch Matches auf die Beine zu stellen die mich interessieren. Allerdings hoffe ich auch das er seine aktive Chariere bald an den Nagel hängt, damit er seinen Status als Icon nicht durch sein zu langes festhalten am Business beschädigt. Allerdings hoffe ich auch, das er evtl. noch als Mentor in Erscheinung tritt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Woerpwrote on 23.08.2009:[6.0] "Sting konnte mich noch nie wirklich begeistern, nicht im Ring, nicht am Mikro. Für mich ist er kein Main Eventer. Aber sein Vermächtnis, eine lange Karriere, halte ich ihm zu Gute."
Rating: 6.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Amurebkuwrote on 13.08.2009:[8.0] "Eine Legende, ohne Frage. Das Crow-Gimmick fand ich persönlich bei ihm am besten. Die volle Punktzahl hätte er von mir bekommen wenn er sich auch mal in der WWE bewiesen hätte (in der er ja nie war). Er war/ist in allen Ligen in den er angetreten ist top, doch dieser Punkt stört mich ein wenig. Das wäre halt eine fette Referenz. Hätte ihn gerne mal gegen The Rock, Shawn Michaels, Undertaker oder Triple H gesehen. Naja, trotz allem ein toller Wrestler und charismatisch dazu."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The-Game91wrote on 10.08.2009:[10.0] "Zu WCW Zeiten hat er mir am besten gefallen. Bei TNA auch noch gut. In kurzen Worten Sting ist eine Legende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: 108 Sternewrote on 24.07.2009:[8.0] "Hat zusammen mit dem Ultimate Warrior angefangen, doch im Gegensatz zu diesem von da an konstant im Ring gestanden und sich zu einem wirklich guten Wrestler gemausert. Neben Ric Flair DIE Symbolfigur für die WCW!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Aquifelwrote on 03.06.2009:[8.0] "An sich hätte Sting 10 Punkte verdient, da er einer der ganz Großen im business ist und sowohl in den 80ern, als auch den 90ern so einige legendäre Matches und Momente hatte und überdies auch ein sehr guter Worker war. Allerdings hat er in letzter Zeit, auch aufgrund des Alters, abgebaut. Ich persönlich sehe ihn immer noch gerne und kann nicht behaupten, dass seine TNA Matches oft eher schlecht als recht waren (allerdings auch nicht überragend). Dennoch, dass Sting heutzutage nicht mehr so gut ist wie zu Zeiten der Matches gegen Flair oder Vader, dürfte den meisten klar sein. Wird Zeit, dass er in Rente geht (was er ja nun anscheinend auch vor hat)."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Excellence of Executionwrote on 25.05.2009:[8.0] "Sting ist einfach ein absolout kultiger und legendärer Wrestler. Dass er diesen Status erreicht hat, ohne dass er je beim Platzhirsch WWE angetreten ist, ringt zumindest mir noch mehr Anerkennung für den Stinger ab. Seine Gimmicks kamen immer glaubwürdig rüber und im Ring war Sting durchaus ein solider Worker, der das eine oder andere sehr gute Match aus dem Hut ziehen konnte. Allerdings hat man solches seit seinem Eintritt bei TNA (oder zumindest seitdem ich TNA verfolge - seit Mitte 2008) nicht mehr von ihm gesehen. Oftmals war das Gesehene sogar eher schlecht als recht und sein Scorpion Deathlook treibt mir, als Anhänger des Sharpshooters, die Schamesröte ins Gesicht. Da wirkt Däumchendrehen schmerzvoller! Eingedenk seiner massiv stagnierenden in-Ring Leistungen muss ich ihn einfach abwerten, da dies den Gesamteindruck doch spürbar runterzieht. Im Moment lebt er wirklich ausschließlich von alter Glorie und von seinem Gimmick."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Mountiewrote on 21.04.2009:[5.0] "Vielleicht bin ich grad in zu großer Anti-Sting-Stimmung, aber aktuell können mich nicht mal die vergangenen Verdienste von einer kräftigen Abwertung abhalten. Ich kenn alle Vorzüge von Sting: Er ist außerordentlich sicher am Mikro, war bis Mitte der Neunziger wrestlerisch für seine Statur überragend und hat dann den wohl besten Gimmick-Weiterdreh der Wrestlinggeschichte vollzogen. Ich find trotzdem verblüffend wie kritiklos ihn das Gros der Fans von den vergangenen Zeiten zehren lassen, obwohl er seit langer Zeit viel mehr Schein als Sein ist. Wrestlerisch war Sting schon zu Crow-Zeiten nicht mehr das, was er mal war. Dass er es mit 50 jetzt noch weniger ist - geschenkt. Dass er aber mit seinen abgebauten Fähigkeiten seit Jahren den Main Event der Liga vereinnahmt und ich immer noch keine Anstalten bei ihm erkenne, dass er seinen Status für die neue Generation in die Wagschale wirft statt für alte Kampfgefährten wie Jarrett und Foley, ärgert mich zunehmend. Und dass er die Liga mit seiner schwachsinnigen Weigerung den vollen Heel zu spielen, zu schmerzend unlogischem Booking zwingt, frustriert fast noch mehr. Sorry, aber: You don't got it anymore, Sting."
Rating: 5.0
Sentiment: -0.04444444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: justusjonaswrote on 17.04.2009:[10.0] "Die Matches die er abgeliefert hat z. B gegen Vader und Flair sind einfach legendär. Er ist eine Legende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ScrWwe94wrote on 13.04.2009:[10.0] "Einfach bekannt, auch wenn man nicht TNA schaut, was ich seit geraumer Zeit aber nicht mehr mache."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: vida-locawrote on 25.01.2009:[7.0] "War früher um klassen besser! Overated! hätte er 2006 kein Comeback bei TNA gegeben hätte er 10 pointŽs bekommen, den er ist/war der einzige Wrestling-star den die wwe selbst erschaaffen hat ( zum größten teil )"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Green Arrow Banditwrote on 10.01.2009:[10.0] "Tja dazu kann ich nicht viel sagen außer er ist wirklich eine Legende. Und dies hat er nicht TNA zu verdanken"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Flame286wrote on 09.12.2008:[7.0] "Nicht mehr der alte. Und bei der MEM geht er einfach nur unter..."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: gunniwrote on 06.12.2008:[9.0] "Wohl die WCW-Größe schlechthin. Legendäre Matches gegen Ric Flair, Hulk Hogen, Sid und so vielen anderen! Wrestlerisch einmalig! Als Gimmick gefiel mir die Zeit um 1993/94 am besten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Typhixwrote on 26.11.2008:[9.0] "Nüchtern betrachtet im Ring nicht mehr der agilste und athletischste. Sting lebt von seiner immensen Erfahrung und schafft es so, auch heute noch Matches spannend zu gestalten. Sein Charisma und seine Qualitäten am Mikrophon sind ihm dabei eine große Unterstützung. Auch wenn der Stern langsam sinken mag: Sting ist eine wahre Ikone."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Baldrickwrote on 15.11.2008:[10.0] "Ich habe den Original-Sting sowie die ganze WCW eigentlich nie gemocht - Bis dann der nwo-Angle und das damit verbundene Crow-Gimmick kam. Man fieberte jeder Show entgegen und weil sich hier eine der besten Storylines und wahrscheinlich DAS beste Gimmick aller Zeiten trafen, gibts die volle Punktzahl ! Dazu der unglaubliche Wille, eine absolut vorbildliche Arbeitseinstellung und die Fähigkeit, auf seine alten Tage nochmal Movesettechnisch nachzulegen und wirklich ALLES aus sich rauszuholen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: stingersplashwrote on 10.11.2008:[10.0] "Sting war der grund warum ich überhaupt anfang der 90er angefangen hab wrestling regelmäßig anzuschauen und vorallem, warum ich bis ins jahr 2000 die wcw der wwf vorgezogen hab!  Er ist einer der helden meiner kindheit und mein absoluter lieblingswrestler of all time!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DirtiestPlayerwrote on 17.10.2008:[10.0] "Für mich die größte noch aktive Legende im Wrestling. Die guten alten WCW-Tage sind zwar vorbei aber hoffentlich bleibt er uns noch einige Zeit erhalten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: El Reywrote on 07.10.2008:[10.0] "Er ist die Wrestling-Ikone schlechthin. Allein sein Auftreten ist den Eintritt wert. Schaue mir ihn immer wieder gerne an."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MrWrestlingwrote on 04.10.2008:[10.0] "Für mich gehört er zu den ganz großen Legenden. Er hat mir allerdings in der WCW besser gefallen als jetzt bei TNA"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: caterwrote on 01.10.2008:[5.0] "Vielleicht liegt es daran, dass ich kein WCW-Fan war aber Sting hat bei mir einfach keinen Legendenstatus. Ich sehe ihn als normalen durchschnittlichen Wrestler an, der zwar ein gutes Gimmick hat, aber im Ring doch etwas limitiert ist. Er ist keinesfalls schlecht aber eben auch nicht die absolute Oberlegende. Außerdem noch ein kleine Abstufung, da ich mittlerweile einige Promos von Sting gesehen habe, die zu seinen besseren gehören sollten, mich allerdings absolut nicht überzeugen konnten"
Rating: 5.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: davidbeatsgoliathwrote on 20.09.2008:[8.0] "der Typ hat ne gute Ausstrahlung und gutes Mic work. als crow hat er mir am besten gefallen, nur schade um das etwas fade match gegen Hogan SC 97. sein schwarzer Baseballschläger war auch genial, daher insgesammt 8 Pkt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MINOtauruswrote on 17.09.2008:[10.0] "Für mich die größte lebende Legende im Wrestling! Seit seinem ersten World Title Gewinn gegen Flair hab ich ihn immer wieder gern gesehen. Und ich hoffe ich werde ihn noch eine Weile (bei TNA) sehen dürfen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Wise Warriorwrote on 16.09.2008:[10.0] "Legende! Hat mir schon als "bunter" Sting gefallen. Super Matches gegen Vader, Muta, Cactus Jack... Auch sein derzeitiges Comeback finde ich beeindruckend."
Rating: 10.0
Sentiment: 0.6041666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: jimpanse1980wrote on 24.08.2008:[10.0] "WCW-Legende mit tollen Matches und später einem neuen Gimmick, das so gut ankam und langanhaltend ist wie das des Undertakers. Respekt auch dafür, dass er mal nein zur WWE gesagt hat. Für sein Alter bei TNA immer noch gut, auch wenn er letztendlich größtenteils vom früheren Glanz lebt. Für mich immer noch unverständlich warum er Zeit seiner Karriere nie die Nr. 1 einer Promotion war und die wichtigsten Matches meist verlor bzw. Titel nie lange halten durfte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: gerybundy68wrote on 21.08.2008:[9.0] "Bin zwar kein großer Sting - Fan, er war aber ohne Zweifel DAS Aushängeschild der WCW. Rechne es ihm hoch an, nie der Verlockung des Geldes der WWE erlegen zu sein. Hat wohl eines der besten Gimmicks die es je gab."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: xXShawnMichaelsXxwrote on 13.08.2008:[10.0] "Auch wenn für mich "The Icon" noch Shawn Michaels ist. Ist Sting ein ganz Großer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: homer3112wrote on 06.08.2008:[10.0] "Eine absolute WCW-Ikone. Ich finde er ist einer der allerbesten."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: CenaSuckswrote on 29.07.2008:[3.0] "Ich konnte mich noch nie mit Sting anfreunden, finde ihn einfach langweilig. Just my mean thoughts!"
Rating: 3.0
Sentiment: -0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Sting93wrote on 22.07.2008:[10.0] "Sting ist einfach eine Legende im Wrestling und einer der größten Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: LordTrailerwrote on 03.07.2008:[8.0] "Eine WCW Legende und es nötigt mir Respekt ab, dass er die WWE noch nichtmal ausgetestet hat, was ich allerdings gerne sehen würde. Was er bei TNA anstellt, ist dagegegn seiner nicht würdig. Promos stimmen zwar, aber wrestlerisch demontiert er sich selber. Bisher hat er jungen Wrestlern auch wenig geholfen und damit meine ich noch gar nicht mal durch Niederlagen. Damit muß ich eine eigentliche sichere 10 abstufen auf 8."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: real americanwrote on 02.07.2008:[9.0] "NWA und WCW Legende, konnte auch in Ring und am Mic eigentlich immer überzeugen, seine Wandlung zum Dark Warrior war großartig allerdings scheiterte die Fehde leider an Hogans Ego. Heute immer noch solide aber nicht mehr so atemberaubend wie früher."
Rating: 9.0
Sentiment: 0.02500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Phenomenwrote on 10.06.2008:[6.0] "Grenzenlos überbewertet hatte seine besten Ring zeiten von 1988-1993 danach war er im Ring nur noch überbewertet ist am Mic oke hat ein gutes gimick und er sollte dieses Jahr bei Bound for Glory aufhören jedenfalls eine 3 Hat er auf jedenfall noch verdient"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DeadHeadwrote on 05.06.2008:[10.0] "Da ner nie zu der WWE gagangen ist hat er nicht den leichten Weg genommen wie so mancher WCW Wrestler sondern er hat den Schritt zu TNA gewagt und ist dort auch immer noch ein Publikumsliebling. Auch mein Respekt vor seinen Leistungen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Die Gurkewrote on 21.04.2008:[10.0] "Sting ist einfach eine Legende. Er ist mit seinem Alter natürlich nicht der größte Techniker vor dem Herrn, aber außer Ricky Steamboat wüsste ich auch niemanden aus seiner Generation auf den das zutreffen würde. Sting hat imo auch heute noch etwas was vielen jungen Talenten fehlt:"Charisma". Genau wie Hogan lebt sting von der Gänsehaut Atmosphäre seiner Anwesenheit, nicht von seiner unglaublich großen Move-Palette."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Alpheronwrote on 17.04.2008:[10.0] "Sting ist war und wird immer der bester wrstler sein, Mystisch, technisch, und konditionsmäßig ein hammer"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: redmoskauwrote on 14.04.2008:[10.0] "hat sich über die Jahre einen Status aufgebaut der mit dem des Undertakers vergleichbar ist und das ohne jemals in der WWF gewesen zu sein. Ich hoffe er hängt noch ein paar Jahre dran."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Felice-del-mondowrote on 13.04.2008:[10.0] "Wenn man es als Worker schafft trotz 18 monatiger Ring Absenz zum populärsten Wrestler seiner Zeit zu werden dann hat man nichts anderes als 10 Punkte verdient. Dass der Wechsel zu WWF nie zustande kam war wohl im Nachhinein die richtige Entscheidung da es seiner Legende keinen Abbruch tat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: WCWlerwrote on 07.04.2008:[10.0] "Eine Legende. Der einzige große (Alt-)star der nie in der WWE war. Auch wenn es doch schade ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Desperadowrote on 07.04.2008:[10.0] "Am Mic überzeugend, im Ring Old School und einfach genial. Kann trotz seines Alters immer noch überragende Matches zeigen. Wer diesem Mann weniger, als 8 Punkte gibt hat einfach keine Ahnung vom Wrestling."
Rating: 10.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ultimate-warrior-xwrote on 29.03.2008:[10.0] "Wer ohne die WWE den Status eines Stings erreicht hat es wirklich verdient."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Akkuswrote on 26.03.2008:[10.0] "Sting ist eine Legende, er war nie im Titan Land bei Vince, was ihn noch sympatischer macht, außerdem ist es schön dass er auch ab und zu bei TNA zu sehen ist. Ist zwar nichtmehr der WCW Sting, aber hauptsache er ist nicht bei WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ZuluBunsenwrote on 21.03.2008:[8.0] "Unterdessen bei TNA eher meh, damals in der WCW aber einfach nur genial und eines der wichtigsten Standbeine der Promotion."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: felixwrote on 13.03.2008:[10.0] "Er ist bedeutender als so ziemlich jeder Wrestler der letzten fünf Jahre. Sting ist seit über 15 Jahren an der Spitze und das zu Recht. Er besitzt den gleichen Status wie Flair, Race, Undertaker und all die anderen Legenden. Er hätte es, obwohl er nie in der WWE war, verdient in die Hall Of Fame aufgenommen zu werden, da er ein fundamentaler Bestandteil der Monday Night Wars war und damit zu den wahnsinnigen Einschaltquoten beigetragen hat von denen die WWE noch heute zehrt. Er ist wirklich "The Icon."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Instant Classicwrote on 13.03.2008:[8.0] "Einfach eine der absoluten Legenden. Überzeugt heute leider nicht mehr so wie noch zu wCw Zeiten, aber noch immer sehr unterhaltsam."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hijo Rudiciowrote on 23.02.2008:[10.0] "Die Ikone. Für eine echte WCW-Invasion in die WWE hätte er alleine gelangt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Staniwrote on 21.02.2008:[10.0] "Der Mann zusammen mit Flair der WCW. Legendär seine Matchserien genau gegen diesen, gegen Vader oder die nWo. Schaffte es sogar, dass Sid wie ein Könner gegen ihn ausah. Auch seine Fehde gegen die Horseman konnte sehr gut gefallen. Schaffte auch gut den Gimmickwechsel vom 80er/90er Standardbabyface mit Facepaint und Gruselfrisur zum vielschichtigen Dark Warrior Gimmick, welches er bis heute immer weiterentwickelt. Kann nach anfänglichen Startschwierigkeiten in seinem Alter auch noch Topleistungen bei TNA vorweisen"
Rating: 10.0
Sentiment: -0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Rated R Champwrote on 11.02.2008:[10.0] "Einfach eine Legende, und auch im jetzigen Alter noch gut, Respekt. Bin froh, dass er TNAW noch ein Jahr erhalten bleibt. Hätte auch einen richtigen Run als TNA World Champ verdient, aber daran glaub ich irgendwie nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: mr sledgehammerwrote on 14.01.2008:[6.0] "Im Ring ziemlich langweilig, und nach so langer Zeit ähnlich wie der Deadman einfach ausgelutscht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: AnFuwrote on 05.01.2008:[6.0] "Ich mag ihn einfach nicht! In der WCW auch sicher eine Legende, aber bei TNA sagt er mir auch nicht mehr zu. Aber trotzdem noch die 3 von mir!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: The Champwrote on 03.01.2008:[10.0] "Der beste WCW-Wrestler der nie für die WWE angetreten ist! Das Crow-Gimmick ist bzw. war genial. Sehe ihn immer noch gerne. TNA sollte ihn wieder etwas mysthischer auftreten lassen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Brahma Bullwrote on 03.01.2008:[8.0] "Eine Wrestling Legende, auch wenn er nie für die größte Liga angetreten ist! Fand ihn vor dem "Crow" Gimmick besser!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MA Excellentwrote on 29.12.2007:[8.0] "Sting ist schwierig zu erklären. Er ist sicherlich ein Mythos aufgrund der vielen Jahre in der WCW, in denen er die Company getragen hat. Er hatte immer ein herausragendes Auftreten, sei es mit dem Crow Gimmick oder mit dem "alten" Stinger. Bezüglich der Qualitäten im Ring kann ich mich noch an sehr gute Matches aus den 90ern erinnern, z. B. gegen Flair oder Vader. Allerdings halte ich seine Fähigkeiten allgemein für limitiert, neben seinen 3 Signature Moves ist da eigentlich nicht viel. Seine Fehden waren eigentlich fast schon immer nahe am Trash. Ich führe das darauf zurück, dass seine charismatischen Fäigkeiten nicht die Besten sind. Da musste man immer recht tief in die Kiste greifen. Nicht umsonst basiert sein erfolgreichstes Gimmick darauf, dass er eige"
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Der dunkle Lordwrote on 28.12.2007:[8.0] "cooles gimmick, klasse wrestler!  rundum "gut", leider nicht in der wwe, sodass ich nur alte matches von ihm gucken kann :'-("
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Voodoo666wrote on 27.12.2007:[10.0] "ich schließe mich den leuten an einer der besten wrestler wenn nicht sogar der beste. am meisten hat er mir in der wcw gefallen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: steven619wrote on 27.12.2007:[10.0] "Sting ist einer der Besten Wrestler der Welt. Er ist sich immer treu gewesen. Ich würde ihn gerne nochmal in der WWE sehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Comptonwrote on 27.12.2007:[8.0] "Der größte US-Wrestler aller Zeiten, der noch nie bei der WWE unter Vertrag stand. Auch das Crow-Gimmick gehörte anno 1997 mit zu den besten aller Zeiten. Zur heutigen Zeit kann man auf den Stinger, und man kann es leider nicht anders formulieren, getrost verzichten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: jerseyhoolwrote on 02.12.2007:[10.0] "Volle Punktzahl! Warum? Nun, zwar mag der Stinger nicht mehr der jüngste sein, zu begeistern versteht er jedoch noch immer. Ausserdem ist er für sein Alter immer noch sehr gut in Schuss, vergleichbar mit dem Undertaker! Ok, 5* Matches sind nicht mehr seine Stärke, aber wer einmal seine Schlachten gegen Ric Flair gesehen hat, weiss, was dieser Mann im Stande ist zu leisten! Ein ganz Grosser, den ich mir noch lange zu sehen wünsche."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Cloverwrote on 25.11.2007:[6.0] "Ich liebte sein Gimmick.. inzwischen ist er mir aber zu alt und technisch war er eh nie der Größte - muss WOODSTOCK da also voll und ganz zustimmen! 7 Punkte.."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: aulitwrote on 25.11.2007:[4.0] "Ich gebe es zu, ich mochte Sting noch nie. Nur sein Crow-Gimmick konnte mich eine Zeit lang fesseln. Da hätte man aber auch jeden x-beliebigen mit einer Maske hinstellen können. Sobald Sting wieder Interviews gab, verlor ich auch das restliche Interesse."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Blue Meaniewrote on 16.11.2007:[6.0] "Hat seinen Zenit IMO so langsam überschritten. Sollte bald mal aufhören mit dem Wrestling."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: antihiphop2002wrote on 11.11.2007:[8.0] "Auch wenn er schon ein relativ alter Sack ist, ist er im Ring immer noch besser als manch anderer. Das Crow Gimmik ist natürlich extrem geil und verleiht im eine ganz besondere Ausstrahlung. Für die lächerlichen Gesichtsbemahlungen und das dämliche Geglotze vor dem Crow Gimmik gibts aber nur ne zwei von mir, den das hat mich extrem genervt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: TheAdaawrote on 05.11.2007:[8.0] "Sting ist sicherlich einer der Wrestler die man kennen sollte. Zwar nagt auch bei ihm mittlerweile der Zahn der Zeit, aber seine Glanzzeit in der WCW war genial. Bei TNA hat er einige schöne Matches gehabt, aber ihm den Titelrun zu vermasseln indem man Angel wieder aufbaut war ein großer Fehler. Sting ist eine Legende, alleine weil er nie für Vince und die WWE antrat und trotzdem einer der großen geworden ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Benny110106wrote on 28.10.2007:[8.0] "Was Leute wie der Taker, HBK und Bret Hart für WWE sind ist er für die WCW und zwar ein Aushängeschild ! Sting mag nicht der Übertechniker wie Hart gewesen sein aber er hatte wie diese anderen auch eine Erscheinung im Ring, die ihres gleichen sucht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Winnie The Poohwrote on 24.10.2007:[10.0] "Mit Sicherheit der beste Wrestler aus der WCW. Zudem hat sein Gimmick das gewisse Etwas, dass nur sehr sehr wenige Gimmicks haben (ähnlich wie beim Undertaker)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: mdbnasewrote on 18.10.2007:[6.0] "Konnte nie wirklich viel mit ihm anfangen, aber ein solider Worker mit guten In-Ring- & Mic-Skills! Aber wie gesagt, interssiert mich nicht wirklich!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: HBK-Xwrote on 16.10.2007:[8.0] "Finde ihn auch super. Klasse Gimmick! Hätte sich trotzdem mal bei Vinnie Mac in der WWE beweisen sollen!"
Rating: 8.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Jericho Onewrote on 04.10.2007:[10.0] "Sting ist für mich wirklich eine Icone des Wrestlings! Seid Jahren ist der Mann Kult und hat auch bei TNA nichts davon eingbußt. Zeigt immernoch einige krasse Aktionen für sein Alter und kann mit schwächere Wrestler trotzdem gute Matches hinlegen. Ist sich auch nicht zu schade sich für jüngere Wrestler "hinzulegen" um sie over zu bringen! Respekt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: kungfuschnitzelwrote on 17.09.2007:[8.0] "Die Note setzt sich zusammen aus den Jahren vor TNA und während TNA. In den WCW-Zeiten war Sting einfach DER Leitwolf der Promotion und so ziemlich das unterhaltsamste, was man dort sehen konnte (nach der kleinlichen Meinung des Kommentar-Autors). Die letzten Jahre bei TNA haben Sting wohl kaum geschadet, aber eben auch gezeigt, dass selbst ein "Icon" in die Jahre kommt. Es macht immernoch Spaß Sting zu erleben, aber ringtechnisch hat er (altersbedingt) leider nachgelassen. Alles in allem eine 2- - also aufgerundet eine 2 :)"
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: DannyGeigwrote on 06.09.2007:[10.0] "Genialer Typ mit einem der besten Gimmicks überhaupt, seine WCW Zeiten sprechen für ihn."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Steven McWheelerwrote on 30.08.2007:[10.0] "Reißt die Fans immer mit, klasse Wrestler, obwohl er am Stil nix besonderes erkennen lässt(... ), hat jedoch ein Problem mit dem älter werden irgendwie, doch die 10 fällt trotzdem für das Gesamtkunstwerk Sting"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Bullit69wrote on 23.08.2007:[10.0] "Eine WCW-Legende! Verdient schon großen Respekt dafür, dass er nich mit dem Fluss schwamm und zur WWE ging! Das Crow-Gimmick gefällt mir sehr!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Pinguwrote on 22.08.2007:[8.0] "Einfach Legende, nur schade, dass er nie in der größten aller Ligen aufgetreten ist. Denn damit wäre er einer der unsterblichen geworden..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: shannonmoorewrote on 14.08.2007:[8.0] "Ich muss zugeben ich hatte mich in ihm geirrt. Ich hielt ihn lange Zeit für einen Technik Gott so wie zb. Benoit oder Angle. Dass hier in seinem Profil Allrounder statt Techniker steht bestätigt meinen Verdacht. Trotzdem ein großartiger Mann unvergessen seine WCW Zeit aber bei TNA ist er nach meiner Meinung auf lange Sicht nur ein Hinderniss."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Deadly Passionwrote on 06.08.2007:[10.0] "Sting gehört einfach zu meinen Favoriten. Schönes Gimmick und sehr schöne Techniken."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: SirFlubbi42wrote on 27.07.2007:[10.0] "Ich weiß nicht wie man das beschreiben soll was Sting vielen Menschen gegeben hat. Aber das Gimmick, die Fähigkeiten (in und außerhalb des Rings), das Charisma und einfach alles andere machen ihn für mich zum besten wo jemals gegeben^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: H-Scorpiowrote on 20.07.2007:[8.0] "Mir gefiel das Crow-Gimmick auch besser, obwohl ich finde, dass es eigentlich nicht so gut zu ihm passt, aber solange man ihn möglichst wenig reden lässt geht das. Auf jeden Fall war er einer, der ähnlich wie Goldberg oder der Ultimate Warrior ohne viele worte die Leute begeisternŽund in seinen Bann ziehen konnte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Kid Rockwrote on 18.07.2007:[8.0] "Sting ist eine der größten Legenden aller Zeiten und schon immer einer meiner Lieblinge. Seine beste Zeit hatte er in der WCW ab 1996. Sein Charakter war schon immer faszinierend, seine Ausstrahlung extrem cool und er war auch ein guter Wrestler. Nur aktuell gefällt er mir bei TNA nicht da er wie so viele andere ex-wwe oder wcwler richtige TNA Urgesteine wie Joe oder Abyss das Spotlight wegnimmt und schwache Leistungen im Ring zeigt. Aber er kann großartige Promos abgeben. Sein Micwork war schon immer klasse."
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Shawn Michaelswrote on 14.07.2007:[10.0] "Hi, ich bin ein absoluter Sting Fan! der ist einfach wirklich ein super wrestler und ich finde die bemalung von dem total cool. der mann hat rückrand und stil! Kann mir jemand vielleicht bitte sagen, wie der Entrance Song vom Sting heißt? Wäre echt nett..."
Rating: 10.0
Sentiment: 0.2569444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: MGStylezwrote on 08.07.2007:[10.0] "Er war das absolute Idol meiner Kindheit, ihn habe ich wahrhaftig geliebt. Im RIng schwächelt er ein wenig, doch ist er niocht schlecht und am Mic ist er auch gut."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Foerstawrote on 01.07.2007:[10.0] "WCW-Legende! Ich finde es sehr schade, dass man dies in TNA überhaupt nicht "merkt". Vielleicht liegt es an seinem Alter, aber wenn ich mir dann seine Matches aus der WCW anschaue, bin ich begeistert! 10 volle Punkte, zu recht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: ShaneOwrote on 29.06.2007:[8.0] "In der WCW war er Top. Jetzt bei TNA find ich ihn nur noch langweilig, aussderdem fängt man an ihm sein Alter anzumerken. Für die 10 reichts nicht, da ihm meiner Meinung nach gerade im Ring dazu was fehlt."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Neben Ric Flair die ultimative WCW Legende! Außerdem die 5. meisten World Titles gewonnen, seit über 20 Jahren dabei und kein Ende in Sicht! Ein Titlerun bei WWE zum Karriereende hin wäre die Krönung! It`s showtime, folks!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Mr Lovewrote on 24.06.2007:[8.0] "Mochte ihn Anfangs nicht, aber in der WcW Zeit war er einfach einer der besten Wrestlern in den 90ern, vor allem die Fehde gegen die NWO, da sah er richtig gut aus. Jetzt in der TNA kommt er zwar an seine Leistungen in den 90ern nicht mehr ran, hat aber alles was ein Wrestler braucht, aber er wird wohl demnächst seine Karriere beenden. Wenn er es nicht tut könnte er sich seinen Ruhm kaputt machen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Trevedaswrote on 24.06.2007:[8.0] "Tolles Gimmick, toller Worker. Leider werden wir ihn nie in einer Fehde mit dem Undertaker sehen, was ich persönlich sehr schade finde."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Aaronwrote on 24.06.2007:[10.0] "Einfach überwältigend! Super damals wie heute! Leidglich die Qualität der Matches sinkt!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Masterpiecewrote on 24.06.2007:[10.0] "Ohne Zweifel ... die WCW Legende nach Ric Flair & Hollywood Hogan!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hunter2007wrote on 24.06.2007:[10.0] "Er ist inzwischen auch eine lebende Legende. Am besten fand ich den Klassiker Hogan vs. Sting"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Hit Manwrote on 24.06.2007:[6.0] "War einer der besten in der WCW. Allerdings hat er nur dort und nicht in einer anderen großen Promotion Erfolg gehabt. Für eine höhere Bewertung hätte er es auch in der WWE versuchen müssen."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: jupp365wrote on 24.06.2007:[10.0] "fand ich schon immer klasse, aber nach seiner Verwandlung zum Dark Warrior wirklich unübertroffen. Ein Top-Wrestler, der es versteht das Publikum zu unterhalten. Was soll man ihm anderes geben als die Bestnote?"
Rating: 10.0
Sentiment: -0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: timbo7111wrote on 24.06.2007:[8.0] "Mit seinem Crow-Gimmick fand ich ihn besser als zuvor. Im Ring war er auch gut und einer der Alltime-Topstars der WCW. "
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Asgaroth 336699wrote on 24.06.2007:[10.0] "Neben Ric Flair Jahre lang das Aushängeschild der WCW und der unbestrittene Liebling der Massen. Ohne Sting wäre die WCW (bevor die Überflutung der WWF mit Hogan & Co kam) nicht die WCW gewesen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Mediwrote on 24.06.2007:[10.0] "Mein Lieblingswrestler zu Zeiten der WCW und auch heute noch unter meinen Top 10 zu finden."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Alex Shelleywrote on 24.06.2007:[8.0] "Einer der besten Wrestler in den späten 80ern und frühen 90ern aber heute... "Naja" umschreibt es noch ganz nett. Ich gebe ihm aber die 2, weil man seine damaligen Leistungen honorieren muss. Er war neben Ric Flair lange Zeit das Aushängeschild der WCW und mit einem Gimmikwechsel in der Umbauphase der Promotion wurde er es erneut (neben Hogan). Heute bei TNA ist er nur noch als Draw, weniger für die Qualität!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Sandman16wrote on 24.06.2007:[10.0] "Eine beeindruckende Karriere die Sting bis jetzt hinter sich hat. War über viele Jahre neben Flair das Aushängeschild der WCW. Wrestlerisch jetzt nicht mehr so stark, aber von der Austrahlung her immer noch Top. Hat auch kein Problem sich für jüngere hinzulegen, was ja nicht viele Alt-Stars so sehen. Das Crow - Gimmick zählt für mich mir zu den besten überhaupt. Sting = Wrestling-Legende."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Babuswrote on 24.06.2007:[10.0] "Einer der wenigen Wrestler, die ich schon zu Beginn meiner Zeit als Wrestlingfan geliebt hab, und die mich heute immernoch vor den Fernseher fesseln können. Stings Entwicklung zum Crow Gimmick inkl. des "Kalten Kriegs" gegen die nWo war genial und auch sonst hat er am Mic und im Ring nie enttäuscht. - Vielleicht heute wrestlerisch nicht mehr ganz so frisch wie früher, aber es ist der Unterhaltungsfaktor, der zählt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Heatwrote on 24.06.2007:[10.0] "Einer meiner All Time Greats, egal wie und wo, ich habe beziehungsweise sehe ihn immer gerne. Einfach der für mich charismatischste Wrestler den es gibt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=263&gimmick=Sting
Comment: Sabu316wrote on 24.06.2007:[8.0] "Ohne die TNA Auftritte wären es 10 Punkte geworden."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: DangoDaisukiwrote on 30.11.2024:[7.0] "Ohne Frage eine Legende und hat das Wrestling geprägt, gleichzeitig hat er aber auch einige schlechte Entscheidungen getroffen und als Wrestler gab es selbst zu seiner Zeit bessere. Deshalb werde ich meine Bewertung etwas tiefer abgeben als die meisten hier."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Zak22wrote on 06.11.2024:[8.0] "One of the two demi-gods of Japanese wrestling (alongside Baba), Inoki is a huge, huge legend of the game as an in-ring wrestler and as a promoter. However, I'm more ambivalent towards Inoki than many others. In the ring, Inoki was clearly incredibly talented and I've enjoyed a fair few of his matches but never as much as others seem to. And his booking leaves me feeling conflicted, on the one hand Inoki's allowing and pushing of the junior heavyweight style is basically the start of modern pro wrestling and it delivered us Jushin Liger and the Super J Cup, Inoki deserves credit for that. But his main event and tag scene really leaves me feeling cold and simply cannot compete to the achievements as a booker of his old rival Baba. And his obsession with MMA led to some very poor decisions. A legend but not one who I really love."
Rating: 8.0
Sentiment: 0.184
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: WrestlingStuffwrote on 12.07.2024:[10.0] "A visionary and a credit to the entire sport. I firstly want to point the very fit physique he maintained for eras and how much bumps he took, the hard training he had and the losses he was willing to have to make wrestlers like Vader, Hogan, Roland Bock, Tiger Jeet Singh, Shota Chochishvilli and his own students Fujinami and Choshu rise and bring light to the company. A kid's hero, Inoki motivated everyone to find their inner fires to success, and also showed us how he could put up great matches inside big cards in big arenas. Sadly, his only issue, which in my opinion makes Baba better than him, was that he tried to mix everything that was brand new inside wrestling (rising amateur wrestlers, judokas, karaticas, jiu-jitsu fighters and YES, also MMA fighters), which hurt the company and its wrestlers integrity for a period. But I'm not here to bash this sir, but praise and thank him for giving us one of the best wrestling companies and the best wrestlers in the history of our sport. May the flame of the fighter burn on forever! BOM-BA-YE!"
Rating: 10.0
Sentiment: 0.24573484848484844
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Taper1994wrote on 01.06.2024:[10.0] "The founder of NJPW. For that alone he would get a 10 from me but Antonio Inoki was also a pretty damn great professional wrestler as well. His stuff was from before any era I am familiar with but the stuff I have gone back and watched is pretty darn great. A skilled technicial on the mat, a fantastic storyteller in the ring who is able to make each move he does count and contribute to the story being told in the ring."
Rating: 10.0
Sentiment: 0.3975
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: TripleCrownwrote on 17.03.2024:[10.0] "I must admit, his stuff isn't that great to go back and watch. But Inoki is a product of his time and did something not many people could do, especially Japanese wrestlers, create another promotion and actually succeed the one they had left. Did a lot of good for professional wrestling, I do think his view on what wrestling should be wasn't quite right, as you can't portray a "legitimate mma contest" in the world of pro-wrestling, it just doesn't work and to be frank, it's not very fun to watch. I must absolutely give a big piece of criticism here, he almost ruined NJPW and the careers of wrestlers there. His idea of wrestling/mma was incredibly stupid and ruined Yuji Nagata and Shinya Hashimoto. Two guys who were 100% going to be major players for the promotion in the 2000s but were basically forced out (Hashimoto) or just weren't able to get past that MMA defeat (Nagata.) If his idea of mma/wrestling was any good, then IGF would've took off and become widely successful. Gotta say though, although his ambition to do something more than pro-wrestling wasn't good for wrestling itself, you can't hold it against him (mostly because NJPW managed to recover.) I think if NJPW had died because of his idea, then he would be looked at in a very, very different light. One of the most important people in wrestling history, both in-ring and outside of the ring."
Rating: 10.0
Sentiment: 0.1993640618640619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: thewrestlinguywrote on 13.12.2023:"[6.4] He was the founder on NJPW and a Japanese's icon and had great charisma but thats really it he almost killed NJPW in the early 2000s and his in ring work was not really that good although he did manly wrestle in the 70's and 80's he importsnt in wrestling but nothing to write home about rip tho"
Rating: No rating found
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "Antonio Inoki is a true legend in, not only puroresu, professional wrestling history, his legacy and influence is unmeasurable. Here you have a man who's innovated moves like the Enzuigiri, also was apart of the very first MMA fight with Muhammad Ali and also was the founder of one of the greatest professional wrestling promotions of all time, New Japan Pro Wrestling. Yes, I get his flaws from being selfish to the infamous "Inokisms, " but his legacy is too grand to overlook because of those flaws, not to mention he's trained tons of legends in the business like the first Tiger Mask, Keiji Muto/The Great Muta, Masahiro Chono, Riki Choshu, Shinsuke Nakamura, Tatsumi Fujinama and more to name, he was a good booker back in the day before he got carried away with his love for MMA as well, he's done more good than bad. One of the most iconic performers who's important in and out of professional wrestling, without him, we might not have ever gotten UFC. R.I.P. Antonio Inoki"
Rating: 10.0
Sentiment: 0.2722332015810277
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Strong Zero Machinewrote on 17.02.2023:[10.0] "Antonio Inoki is one of, the 3 most important guys in the history of puroresu with his trainer and the god himself Rikidozan and his long time friend and rival Baba. Inoki is back in the end of the 60s and for the next 2 decade the ace of puroresu and his own promotion NJPW. The first mma fighter with the king Ali with this Inoki vs Ali in 76.As a wrestler he's a 10 yes he's selfish but so talented. As a booker sometimes really good sometimes it's bad for ex NJPW early 90s his booking and the booking of Choshu was great but his late 90s early 00s stuff as a booker (the Inokism era) was pretty bad. He's also one of the best trainer Fujinami, Fujiwara, Choshu, Tiger Mask, Bad News Allen, Maeda, Takeda, Chono, Hashimoto, Muto, Hase etc impressive. He's also in the foundation of mma with his match vs Ali, is dedication to put martial arts in pro wrestling and cause he trained guys like Tiger mask (who found Shooto) Fujiwara, Maeda, Takeda (who found UWF) and trained guys like Suzuki, Funaki etc (who found Pancrase the first ever mma promotion). Antonio Inoki is and for long time one of the most well known pro wrestler in japan (wrestler, promoter, booker, trainer, politician etc)."
Rating: 10.0
Sentiment: 0.1833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: benh2wrote on 14.01.2023:[9.0] "One of the most iconic and influential wrestlers there ever was. Arguably a big inspiration for modern MMA. A great look and tons of charisma got him over with the entire nation of Japan and oversaw the hottest period of wrestling the country has seen. In his later days though, he did a good job of trying to undo all that success by attempting to make NJPW into legit MMA and had all his stars get murdered by proper fighters."
Rating: 9.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: MainEventMasterwrote on 09.12.2022:[10.0] "The most influential pro wrestler ever, founded New Japan Pro-Wrestling, carved modern MMA, and he was damn great wrestler too. May he rest in piece."
Rating: 10.0
Sentiment: 0.4090909090909091
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: GriffithWhitewrote on 15.10.2022:[8.0] "He wasn't the best booker but an immensely great wrestler. Antonio Inoki was a bit too egoistical & that caused some problems once he couldn't wrestle anymore. NJPW had no other stars but he himself was a top 2 draw in wrestling ever and that says something about him as wrestler. He was truly are marvel to look at in the ring & felt special whenever he pulled a big move. He deserved the spot he gave himself."
Rating: 8.0
Sentiment: 0.4532738095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: ThisIsChesterwrote on 10.10.2022:[9.0] "Inoki is an insanely talented and masterful wrestler. Of all the matches from the 70s I watch back his are the ones that jump out to me most still. Top tier babyface charisma and great skill in making his matches feel real and passionate and violent."
Rating: 9.0
Sentiment: 0.3166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: TheOneAndOnlyCactuswrote on 04.10.2022:[10.0] "Inoki was one of the pillars for what pro wrestling in Japan. On top of being at the origin of its biggest promotion, he was always the main figure in the early development of Strong Style. Inoki wasn't just passionate about wrestling, he was also passionate about martial arts, and he wanted to include that in the style of his company. In addition to mixing the wrestling he learned under Rikidozan and Karl Gotch's style which contains British influences with hard submission and Indian influences with different athletic elements, which, amongst other things, gave birth to the bridging variations of moves. Throw in there martial arts, as Inoki also added elements of "shoot", real fights. The strikes are therefore harder and add to the realistic aspect of the Strong Style. If the strikes are harder, it's rarely with fists though. This style prefers chops, lariats and, of course, forearm shots. With the help of many other wrestlers who brought their experience in different styles of martial arts including Karate, Judo and Muay Thai, the Strong Style became a versatile discipline of which Inoki was the master and which is still today at the base of the success of the promotion, as well as its different glorious periods, notably the mid and late 90s. Today, Strong Style is one of the most recognized wrestling styles in the world and it is a style that continues to evolve, and that, much like how Ark style took cues from NJPW, Strong Style today took some from King's Road, and how it expesses its storytelling. It is difficult to put into words just how popular Antonio Inoki was, and not just in Japan. Think about it, when picking a wrestler to fight Muhammad Ali, he was considered the best pick for a fight that some refer today as the first ever MMA contest. As well as being a very talented wrestler, pioneer of his own style, Inoki also trained some future legends of the business. The Three Musketeers Mutoh, Chono and Hashimoto, Tiger Mask I, Choshu, Hase, Maeda, Takada, Fujinami, Fujiwara just to name some. Each of them would then build on the foundation set by Inoki to set up the wrestling we have today. As well as being a wrestling icon, he was also a politician, two time named as a Member of the House of Councillors. As a politician, he notably helped in the release of 41 hostages in Iraq with the help of a wrestling show he organised in Bagdad. He also was quite infamous for his attempts to bring peace with North Korea, notably with his Collision in Korea show in 1995 that saw the largest crowd in wrestling history attend the two-night event, in which he was the only one to pretty much get a very loud reaction from the bewildered crowd, thanks to his link to Korean-born Rikidozan. Not everything about Inoki was perfect mind you. Inokism did almost kill New Japan Pro Wrestling by shoving MMA into it and by putting wrestlers into real MMA fights, and his Inoki Genome Federation was a failure, but all of that doesn't negate what he has done."
Rating: 10.0
Sentiment: 0.16957750582750586
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: texasyoshwrote on 02.10.2022:[10.0] "Inoki is one of the biggest draws in Japanese pro-wrestling history, probably slotting himself right in front of Baba I reckon. Pretty revolutionary with his work with Muhammad Ali, and also being well regarded in the US as well. Inoki's martial arts background helped NJPW differentiate from the more western-inspired AJPW, which he became best known for. Inoki had great programs with the likes of Vader, Robinson, Fujinami, etc. He trained and inspired so much within professional wrestling and mixed martial arts, being the conduit for organizations like the UWF, which eventually led to organizations like PRIDE. He shaped pro wrestling in his vision, and his vision helped train some of the greatest wrestlers of all time. Pro wrestling is strong. Inoki's life isn't without controversy, which goes all the way back to an attempt to take over Rikidozan's Japanese Pro Wrestling Alliance. Perhaps he was disgruntled because of Baba being treated as the true protege of Rikidozan. There's so much to say about the life of Inoki."
Rating: 10.0
Sentiment: 0.30112044817927175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: No Onewrote on 02.10.2022:[10.0] "One of the most influential figures of all time in both Pro Wrestling and in Mixed Martial Arts. He was a Mainstream Household Megastar across Japan. He had many famous & straight up classic matches in Singles & Tag Team wrestling against the likes of Billy Robinson, Karl Gotch, Lou Thesz, Dory Funk Jr, Bob Backlund, Jack Brisco, Riki Choshu, Tatsumi Fujinami, Akira Maeda, Nobuhiko Takada, Yoshiaki Fujiwara, Genichiro Tenryu, Hulk Hogan, Big Van Vader, Muhammad Ali (can you believe that? ), and other famous real life boxers, kickboxers, & judokas. He was 1/2 of one of the most dominant tag teams of the late 1960's & early 1970's as "B-I Cannon" alongside fellow legend, Giant Baba. He and Baba would leave the JWA, which was founded by their deceased mentor, the legendary Rikidozan, and would become the founders of NJPW (Inoki) & AJPW (Baba). These 2 world famous promotions still exist today and is also a major part of their respective legacies. He also created the "Enzuigiri" Jumping Kick to the back of an opponent's head that may be best remembered for being used by Owen Hart. He was the 1st ever IWGP Heavyweight Champion. He was also synonymous with the NWF Heavyweight Title and made it a highly respected championship title for the 1970's & 1980's. He made Hulk Hogan & Big Van Vader into overnight megastars in Japan for how he personally put them over. As a booker, he gave Tatsumi Fujinami, "Tiger Mask" Satoru Sayama, & Dynamite Kid monster pushes that made them into Puroresu Legends. He also trained MANY wrestlers who also became Legends. He was the final living link to Rikidozan's legacy. He was also a well known politician which took his international influence to another level. RIP to a True Legend, Icon, & a GIANT to not only the Professional wrestling & MMA world, but to the entire world in general."
Rating: 10.0
Sentiment: 0.19588383838383838
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Makai Clubwrote on 01.10.2022:[10.0] "A historic career. An historic human being. From day one, he seemed to have a mindset to set out on his own, trying to take over JPW, forming Tokyo Pro Wrestling and then New Japan. Travelling the world wrestling world like its the 1910s wrestling champions from Pakistan, the Republic of Korea, Germany, even fighting legendary figures such as Muhammad Ali, of all people. Inoki is a legendary wrestler as well as a promotor. And while I would dock him marks as a promoter for tripping over his own feet with the biotech scandals that truly hurt the promotion for a while, his long term success turning a break-away promotion built on his and his pals backs into a massive promotion, #1 in Japan for years and even #1 in the world for a brief while, can never be disputed or discounted. Inoki as a wrestler was a phenomenon unlike any other. Classic matches up-to his 40s where he was stricken with diabeties, classic feuds with too many opponents to list. His imprint is still felt on wrestling long after his regular involvement simmered. His imprint extents outside of wrestling also. He was a strong political figure with his public relations with North Korea, Iraq and certainly more countries that have been unreported. Let us not forget his contributions to early form of what we call MMA now. Inoki is a man with as much contributions to the world as any in wrestling. His presence and legendary status was always earned. Inoki was a charismatic figure and the literal definition of icon."
Rating: 10.0
Sentiment: 0.24921536796536797
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Collywobbleswrote on 01.10.2022:[10.0] "What a life. The man was a driving force in some of the most important and outrageous moments in wrestling history. Beat to his own drum and gave the world a million and one reasons to love or hate him. A wrestler who was truly larger than life. RIP"
Rating: 10.0
Sentiment: 0.028571428571428564
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Wrestling Foreverwrote on 01.10.2022:[9.0] "Ein weiterer trauriger Tag für das Wrestling mit Inoki stirbt nicht nur der Gründer einer der besten Ligen der Welt auch eine absolute Legende."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: MarcusFazewrote on 01.10.2022:[9.0] "A pioneer of Japanese wrestling and a essentially a Hollywood star of wrestling, he founded one of the most well known wrestling companies worldwide and the number one company in Japan, he crossed sports to face Muhammad Ali. Inoki was a great in ring wrestler, a charisma fueled fan favorite with the look of a star, he was everything a promoter would want wether its as a top home field guy in Japan or a foreign babyface draw in other countries. I hope Inokis at peace now and is reunited with the likes of RikiDozan, Giant Baba, Shingo Hashimoto, Strong Kobayashi, Muhammad Ali, and everyone else who was apart of his story."
Rating: 9.0
Sentiment: 0.24833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: WU20wrote on 09.07.2022:[10.0] "Consider as the greatest wrestling promoter of all time. He is the prime and ultomate one of New Japan. In his time, a true wrestling star and a true wrestling booker. Always shpuld jave been on top 10."
Rating: 10.0
Sentiment: 0.4672727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: GriffinXwrote on 07.02.2022:[10.0] "It would real easy to write off Inoki as a guy who started his own company and booked himself as the top guy. But unless the guy putting himself on top is really good there is no way NJPW lasts as long as it has. In ring Inoki was very good as a trainer most of the early NJPW legends learned from him. Yes he went to far with his love of real fights but you have to look over the whole run of the company."
Rating: 10.0
Sentiment: 0.41615384615384615
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: KonamiSuissewrote on 28.01.2022:[9.0] "Inoki is an absolute legend, probably the most influential wrestler in puroresu history, and overall a legend everywhere else as well. With a very recognizable look, incredible technical prowess (was trained by Karl Gotch and Rikidozan, duh) and an unlimited amount of charisma, he basically invented the concept of 'toukon' or 'fighting spirit', a very essential component of japanese wrestling storytelling. Inoki was obsessed with legitimizing pro wrestling as 'the best martial art' and is also famous for his numerous shoots and worked shoots against several other athletes from different combat sports (most famously his controversial bout with Muhammad Ali). He was also the founder of NJPW, arguably the most important and successful promotion in Japan ever. His booking is heavily influenced by what's stated above about pro wrestling being viewed as more of a martial art than a spectacle or storytelling device; Inoki deliberately chose to blur the lines between MMA and pro-wrestling, sending out some of his workers to do shoot fights and bringing shootfighters into wrestling. Results of that way of booking have caused an extended period of low ratings for NJPW in the 2000s. Because of this one flaw during his illustrious and longevous career in the sport, my rating is one point short of perfection. Still, Antonio Inoki truly belongs in the Olympus of pro-wrestling."
Rating: 9.0
Sentiment: 0.20689655172413793
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Muggowrote on 24.10.2021:"He created NJPW and created strong style, Became one of the most well known people in japan, which led him to 2 stints in Japans House of Councillors, Was one of the reasons that MMA has become as big as it is today. But he almost killed NJPW with Inokism, with making inexperienced MMA guys World Champ, and making the top guys in New Japan do MMA bouts (with very little having experience of it). However, that doesn't tarnish his legacy too much."
Rating: No rating found
Sentiment: 0.13621632996632996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: AlexLennonPWwrote on 14.01.2021:[9.0] "He created NJPW, which he should forever be immortalised for. Being said, he was a reet cunt on his day. Shooting for no reason, derailing promising wrestling careers because he suddenly had a hard on for MMA. Confusing the lineage of the IWGP Heavyweight title. But when all is said and done, he essentially created strong style, which is where the wrestlers decide to make the audience think they're actually hitting each other by actually hitting each other."
Rating: 9.0
Sentiment: -0.020833333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Jetlagwrote on 27.08.2020:[9.0] "In gewisser Hinsicht ein Pro Wrestling-Genie, in anderer Hinsicht ein Verrückter. Zu seiner Zeit natürlich ein exzellenter Wrestler, der den Fans Glauben machen konnte, er wäre wirklich der beste Kampfkünstler auf Erden. Allein, dass er möglicherweise jederzeit einen Gegner ausknocken oder seinen Arm brechen konnte verlieh seinen Matches eine unvergleichliche Spannung. Dazu kommen etliche waschechte Klassiker von 1969 bis 1996. Da kann man auch manche eigensinnige Entscheidung verzeihen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Ma Stump Pullerwrote on 18.08.2020:[9.0] "Inoki is rightfully considered one of the most iconic Japanese wrestlers of all time due to his innovations in Strong Style, a focus on more striking-based wrestling compared to AJPW's focus on high flying and technical expertise, as well as sensational storytelling and being incredibly charismatic inside and outside of the ring. In terms of being a draw, Inoki was easily one of the best around, and his match quality (even in his older years) was consistently solid, even when fighting guys who weren't really wrestlers. What holds back Inoki from the top is a few things: namely, his selling wasn't always on point. Sometimes he'd just shake off long efforts to work on his arm or leg within a minute or so and fight like nothing happened. When trying to sell these fights as legit, that can really take you out of the atmosphere of the match. Inoki also had a rather infamous tendency to keep putting himself on the top billing, even if there were people who were arguably more over than him at the time. This is understandable in his early years considering he WAS amazing in the ring and could draw like crazy, but his later years still had him at the same spot. Compare him to Giant Baba, who at the same time as this was moving himself into the lower card tag matches, and you notice the problem. Inoki's booking also nearly completely killed NJPW when he tried to mix it with MMA and combat sports due to a lifelong obsession with it himself, which is something that puts a big damper on his last years as the majority owner and had some of the worst belt holders in the entire company's history. All in all, Inoki is undoubtedly a legend of the ring, but he's not GOAT material, at least for myself."
Rating: 9.0
Sentiment: 0.10923076923076927
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: ElPolloLocowrote on 29.12.2019:[10.0] "Many of his classic matches have aged surprisingly well, always the sign of an amazing in-ring talent. Great draw and great promoter but his booking alternated between brilliant and clinically insane. Gave us Tiger Mask and Keiji Muto but also a whole bunch of poorly trained and unmotivated MMA guys with no business being in pro-wrestling. A legend for sure, but mercifully he turned to politics before he could do any more damage."
Rating: 10.0
Sentiment: 0.3205128205128206
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: JEK 1991wrote on 19.12.2018:[10.0] "Best Japanese wrestler ever. He was skilled at everything He was exciting to watch. he helped create an excellent promotion NJPW which I am a big fan of."
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: RatingsMachinewrote on 04.11.2018:[9.0] "Antonio Inoki is a legend and was something of a cultural icon. But I can't give him a 10 because he very nearly put New Japan out of business."
Rating: 9.0
Sentiment: 0.12212121212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Zeocrymerwrote on 28.08.2018:[10.0] "As a wrestler: An incredibly skilled and hard hitting striker, physically charismatic and absolutely larger than life. A true icon of the business and a legend. As a booker: pants on head crazy. I appreciate that level of crazy. The world needs another Antonio Inoki."
Rating: 10.0
Sentiment: -0.02023809523809526
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: The Sick Lebowskiwrote on 28.05.2016:[7.0] "Wrestlerisch recht gut, hat auch als Promoter sehr viel erreicht. Mal abgesehen davon, dass er vieles nur gemacht hat, um politisch voranzukommen, bin ich mit ihm nie so ganz warm geworden."
Rating: 7.0
Sentiment: -0.05714285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Kenshin Uesugiwrote on 20.09.2015:[9.0] "Auch wenn er in den letzten Jahren den meisten Puro-Fans mehr Kopfschmerzen als Freude bereitet hat, so ist das im Grunde fast gar nichts im Vergleich zu seinem Lebenswerk. Die grandiosen Fähigkeiten und die Aura eines Helden, wenn Inoki zu seinen aktiven Zeiten irgendwo antrat dann brannte sprichwörtlich die Bude und noch in fünfzig Jahren wird man über den Gründer von NJPW reden. Da verzeihe ich es ihn fast das er mit seinem Schwiegersohn mit dafür verantwortlich ist das Keiji Muto und Shinya Hashimoto ihre Heimatliga verließen. Man kann der Legende Inoki schlecht böse sein, auch ist als Person und Politiker viel zu komplex. 1, 2, 3 DAAA!"
Rating: 9.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Matzinhowrote on 01.10.2014:[8.0] "Was das Aussehen betrifft so ein bisschen der japanische The Rock. Was ich von ihm in seiner körperlichen Hochphase und zum Teil auch seinen 40ern und 50ern im Ring gesehen habe, gefällt mir. Ich finde, er ist ein guter Wrestler gewesen, womöglich einer der Besten seiner Generation, aber meiner Meinung nach kein Revolutionär. Inoki zeichnet sich für mich eher durch seine damals sehr moderne, für Japaner (sogar noch heute) ungewöhnliche, geschickte Selbstdarstellung, sein enormes Charisma und seine Superstar-Aura aus. Abseits dessen ist Inoki offenbar ein schwieriger Typ hinter den Kulissen. Jüngeres Beispiel die All Together-Show der drei großen japanischen Ligen, bei der das Eintrittsgeld an Flutopfer gespendet werden sollte. Inoki hat bei einer Show seiner Liga einen Typen als lebendes All Together-Showplakat verkleidet in den Ring kommen lassen, ihn beleidigt, zusammengeschlagen und dann angekündigt, dass er eine Show veranstaltet, die am selben Tag wie All Together stattfindet und dass alle Zuschauer zu ihm, statt zu der anderen Show kommen sollen. Man darf hier ja keine Beleidigungen schreiben - es gibt noch mehr solcher Geschichten. Aber als Mensch bewerte ich ihn nicht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: yanuswrote on 15.12.2013:[9.0] "Has a reputation as the japanese Hogan/HHH - someone holding down fresh and young talent, but I will try to judge him just as a wrestler. He was a proven draw and had a great look, his main weakness was probably his in-ring work. In that regard he was actually very good (much better than Hogan), but not great (although I have to admit, that I'm judging him mainly on his 80's work). Therefore he gets from me "only" a 9."
Rating: 9.0
Sentiment: 0.21707070707070708
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Hirnklopswrote on 04.02.2011:[7.0] "Das markanteste Kinn des professionellen Wrestlings. Da ich keine Ahnung von japanischem Booking habe und es eh nicht verstehe, kann ich ihn für sein Booking nicht abwerten."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Denzwrote on 09.03.2010:[10.0] "Ihm wurde der WWF-Titel nie anerkannt, was meiner Meinung nach nicht gerecht ist. Für viele Menschen (besonders Japaner) ist er ein großartiger Held. An 2 legendäre Matches erinnern sich viele gerne: 1. gegen Muhammad Ali im ersten MMA Kampf und 2. gegen den Nature Boy Ric Flair in Nordkorea bei einem Publikum von 190. 000 (! ) Menschen. Grund genug ihn 2010 in die WWE Hall of Fame einzuweihen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Rey2004wrote on 24.08.2008:[8.0] "Neben Tatsumi Fujinami einer der größten japanischen Superstars."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Brahma Bullwrote on 04.05.2008:[9.0] "Der WWF Champ, der den Titel nicht anerkannt bakam! Er hat viel für das Wrestling getan und war sehr beliebt!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: LexLuger4everwrote on 25.03.2008:[10.0] "Eine Legende im Wrestling Business und eine der absolut größten Persönlichkeiten im japanischen Wrestling - das kann nur die 10 Punkte geben!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1096&gimmick=Antonio+Inoki
Comment: Sabu316wrote on 24.06.2007:[6.0] "Eine Wrestlinglegende und durch den Kampf gegen Ali ist er auch in der restlichen Welt ziemlich bekannt (auch bei Leuten die sonst kein Wrestling sehen). Legendär im negativen Sinn ist auch sein Einfluss auf das New Japan Booking. Desweiteren kommen von ihm immer wieder seltsame Geschichten um im Gespräch zu bleiben. Diese negative Punkte schwächen die Wertung ab."
Rating: 6.0
Sentiment: -0.08181818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: Blue Justicewrote on 05.03.2024:[10.0] "HARASHIMA is the goat. His smile oozes charisma and can put out great matches against any lower, mid card wrestler."
Rating: 10.0
Sentiment: 0.18
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: alongaffairwrote on 27.11.2023:[10.0] "The second best Ace of the 2010s, behind only Tanahashi (and it's arguable (a difficult argument, but still arguable) that Tanahashi simply had better playmates). DDT would be nowhere near where it is without him. Even at 49, he's still one of the company's best and definitely their most reliable wrestler, on account of his wrestling intelligence. He always knows exactly what he needs to do in a match to serve the story, whether it's putting over a new monster (Yuki Iino), helping a fiery up-and-comer (Keigo Nakamura), or just messing around in Street or Beer Garden wrestling, and he still has enough physical tools to execute."
Rating: 10.0
Sentiment: 0.17242424242424242
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: GoldLigerwrote on 11.09.2022:[10.0] "You don't have DDT as it is without HARASHIMA. This guy has been a cornerstone of DDT for longer than pretty much any other "ace" of any other company has been. This dude IS the ace and even with the era of Takeshita starting he hasn't slowed down or deviated. There's a reason this is pretty much the only guy Tanahashi has worked heel against in the past decade, he's the only ace that beats out Tana's sheer loyalty and consistency. If he gets his time to shine on a larger stage, it will be as DDT does the same. If not, everybody who has ever followed DDT in any era will know his name. A true HERO!"
Rating: 10.0
Sentiment: 0.04546296296296296
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: GriffinXwrote on 07.02.2022:[9.0] "Part of what makes DDT appealing is even with all the comedy they still have a number of guys who are just great wrestlers. So many times it falls on HARASHIMA to be the guy giving you that good wrestling."
Rating: 9.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: Wuzong Shenwrote on 13.11.2021:[10.0] "A real ACE and a true master of pro wrestling. You can say he is the Hiroshi Tanahashi of DDT(actually he is even elder than Tanahashi). Even in the age of 47 he is still one of the best wrestler in DDT."
Rating: 10.0
Sentiment: 0.5166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: Ma Stump Pullerwrote on 25.07.2021:[9.0] "If Go Shiozaki is the spirit of NOAH and Tanahashi is NJPW, then HARASHIMA is the embodiment of DDT. He's been a loyalist to the company since the early days and has always stayed by their side through thick and thin, regardless of how he was directed, or wherever he was placed on the card. This commitment: regardless of the fact that his talent could've gotten him easily far in the top promotions, let alone DDT: has allowed him to be the top ace of the company for a VERY long time. This isn't without its faults as he's not always been on form, but when HARASHIMA is on, he's a amazing and extremely solid worker who can go on the mat for one minute, throw hard hitting strikes the next, and go into explosive sequences seamlessly. He's not only super versatile in that regard, but he's great at playing both a underdog and a ace respectfully, never making it seem like he's dominating with no effort or too weak at the other side of the spectrum. Guy can sell like death and has made some relatively meh challengers seem like dangerous competitors who could bring him down believably. Even when nearly 50 years old he's still having solid bouts in tags and can really pull out the workrate on longer bouts. Indefinitely underrated, he's a super solid talent."
Rating: 9.0
Sentiment: 0.0594238683127572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: Makai Clubwrote on 07.04.2019:[10.0] "Easilly one of the most underrated wrestlers ever. Very charismatic with a smile that you can't ignore. Excellent wrestler who can do many different styles but technical wrestling is where he bread and butter lies. Some of the great matches has had with the likes Hikaru Sato, Soma Takao and Antonio Honda prove that. Everything you would want in a wrestler."
Rating: 10.0
Sentiment: 0.46875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: HeadCheesewrote on 21.03.2017:[9.0] "HARASHIMA is really good wrestler that is very good in big time matches and is fun to watch in general."
Rating: 9.0
Sentiment: 0.392
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: UChucky46wrote on 02.05.2016:[10.0] "The quintessential "ace", HARASHIMA is as versatile as it comes, big-time title matches, comedy, gimmick matches, shoot style, tags, sprints, epics, you name it he can do it and do it well I might add. HARASHIMA is almost incapable of having a bad match, no matter the opponent he can bring them up to his level, he is also a next level seller with amazing facials and the ability to make matches seem more important than they really are. To me HARASHIMA represents everything a great professional wrestler should be and should be considered an all time great, any promotion would be lucky to have him as their top guy."
Rating: 10.0
Sentiment: 0.3212121212121212
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: RickRollwrote on 21.03.2010:[8.0] "Neben Ibushi der beste bei DDT zurzeit. Kann von High Flying bis zu Hard Hitting (Ich liebe seine (Springboard) Double Knee's) alles zeigen und gefällt mir außerordentlich gut."
Rating: 8.0
Sentiment: -0.043888888888888894
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: Kaffoe 666wrote on 24.03.2008:[8.0] "Top Mann bei DDT. Leider sehr unbekannt außerhalb des Puro-Universums."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1854&gimmick=HARASHIMA
Comment: Rob Van Duesenschrauberwrote on 08.03.2008:[8.0] "Es macht sehr viel Spaß ihm zuzusehen und wie die anderen DDT-Top Draws ist er einfach knüppelhart."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: packtsardines06wrote on 11.02.2025:[8.0] "yes the rock is a legend i am far from denying that. he should be on the wrestling mount rushmore, his retirement match should main event wrestlemania (whenever that happens), etc. if we are talking about peak rock, from 1997-2004, its an easy 10. unfortunately, i also have to take into account the 2010s and onwards, which is a mixed bag and sometimes overshadows the important contributions he made to pro wrestling. obviously you have highlights like the feud with cena and his recent tenure in the bloodline, but the rock is bound to a hollywood to the point where he almost becomes a parody of himself. this isnt to say he's not allowed to go into hollywood, but lets compare and contrast with john cena, who was also pulled into hollywood. while cena was away for some time, he was returning at least once a year, usually wrestling in a match. he wasn't afraid to make fun of himself as well as put people over, to the point where he hasn't won a singles match since 2018. when he couldn't act due to strikes in hollywood, he returned to the wwe for a brief run until he was called back when the strikes ended. the rock is the inverse of all of this. he has wrestled a total of 6 matches since 2004, which would be fine if not for the fact that his very presence has derailed storylines and matches, usually for his benefit. if you werent john cena, you better hope that you don't get sweeped into the rock's vortex. despite that he was portrayed as a babyface, despite storylines involving him making his opponents more likeable than him. the current decade has fared much better for him, thanks to a heel turn as a response to fan outcry when it seemed as if the rock had shoved cody rhodes out of his much anticipated rematch against roman reigns, igniting the modern day equivalent to the yes movement. his heel turn produced some of the best television wwe has produced in decades, culminating in cody rhodes winning the championship which less than a year later is already a classic wrestlemania moment. since then has been a mixed bag, but so little has happened that it is way too early to judge, and i do think his career will end on a high note. case in point, 1997-2004 rock is goated, 2010s rock has highlights but has far too many lows, 2020s rock good (he is forgiven for the cody situation if he doesn't pull shit like that again)."
Rating: 8.0
Sentiment: 0.12215811965811967
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BEER CATwrote on 10.02.2025:[7.0] "Beyond charismatic, probably a Top 5 English speaking mic guy, a hige draw, an icon. A somewhat limited worker with a weaker in-ring resume than most would expect, greatly benefiting from working with superior in-ring talents like Steve Austin, Mick Foley and Kurt Angle. Possessed a dreadful, nasty habit of burying other wrestlers in promos to negative effect."
Rating: 7.0
Sentiment: 0.0457792207792208
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: docphantomswrote on 29.01.2025:[7.0] "The Rock is legendary for a reason and to deny that is to be in denial. That said, his gimmick is stale and only has lasting power because the modern product is so defanged and people love their nostalgia. Down to the core, he is in the business of getting himself over and complains like a baby with a full diaper whenever something does not go his way. "Shut your mouth, know your role" and "enjoy the ride" only works when it doesn't sound like a desperate middle-aged man getting something other than universal acclaim. Not everything he touches is gold and that fact just makes his over-compensation worse. His in-ring work was never the best, but he has the charisma to overcome and exceed that. In his time he was legendary, but these days he feels like an echo from a time that people think of more fondly than deserved."
Rating: 7.0
Sentiment: 0.19830246913580246
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 77mega6wrote on 19.01.2025:[10.0] "Dwayne "The Rock" Johnson is not just a wrestler; he's a whole mood. The charisma, the catchphrases, the pure energy he brings--it's no wonder he became a Hollywood superstar! He's got that perfect mix of humor and intensity that keeps you glued to the screen. Just imagine him flipping pancakes while dropping epic one-liners; that's peak content! Forever a legend, and honestly, can we get some more memes featuring him?"
Rating: 10.0
Sentiment: 0.4488095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Abductor2k25wrote on 11.01.2025:[9.0] "He's my favorite wrestler, I give him 9 because I hate his trash talk, I love his wrestling style, it's unique, I love that type of wrestlers"
Rating: 9.0
Sentiment: 0.215
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Elikowrote on 07.01.2025:"The Rock is no longer a "Pro Wrestler". He is Dwayne Johnson. On Raw's 1st Episode on Netflix he finished 2 storylines for no reason at all. No Rock vs. Cody. No Rock vs. Roman. I can't believe it. All this "Final Boss" hype was for a Tag match at WM40? Waste,"
Rating: No rating found
Sentiment: -0.1435897435897436
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Its Clobbering Timewrote on 15.12.2024:[10.0] "The Most Charismatic and Best Mic Worker of All Time. The Rock has it all, can put on great matches, has all time promos and can play a great face and heel. He has one of the best theme songs of all time. The Great One is a Megastar and has many iconic moments in Professional Wrestling History. He's the most electrifying man in sports entertainment for a reason. Thank you Final Boss"
Rating: 10.0
Sentiment: 0.5833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AceHagannwrote on 26.11.2024:[7.0] "Rock's greatness during the attitude era is undeniable. Unmatched off-the-ring performance and very solid in the ring, only needing a bit more in the finisher department. As years passed, however, his appearances were more and more unwelcome. With his personality showing through his supposed character. Always wanting to be on top, with no room for anyone on his level."
Rating: 7.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: XNoWayKemoSabeXwrote on 25.11.2024:[7.0] "Great mic work, from vocal inflections to witty nicknames and innuendos, The Rock is almost unmatched when cutting a promo. The in-ring work is serviceable; in my opinion, it's nothing to write home about, but it's not awful. With a little more focus on the wrestling business and less on the movie business, Rock could have lived up to the moniker "The Great One.""
Rating: 7.0
Sentiment: 0.2682291666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Pmurt2024wrote on 14.11.2024:"The Rocks last match was electrifying, showcasing his charisma and intensity. Though brief, he delivered iconic moves and reminded fans why hes a legend. Pure crowd-pleasing energy!"
Rating: No rating found
Sentiment: 0.1919642857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ItsAllAWorkAnywaywrote on 13.11.2024:[10.0] "Simply stated - The goal of wrestling is to get over. The Rock got so over that he essentially became an icon on his own accord. And yet, absolutely none of that ever happens if he hadn't found success in the WWE to begin with. As legendary as Hogan and Austin were, The Rock might be the most famous wrestler of all time."
Rating: 10.0
Sentiment: 0.3875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Bilal213wrote on 21.10.2024:[6.0] "Undoubtedly one of the most charismatic superstars in WWE history, but his legacy often feels inflated. While his mic skills and charisma are undeniable, his in-ring skill set was always limited. Over the years, hes hijacked major events, taking main event spots from deserving talents guys like CM Punk, Drew McIntyre, and Seth Rollins, stars who couldve drawn just as much, if not more, with the right booking. Despite his star power, The Rock rarely elevated anyone but himself, unlike Triple H, Mick Foley, HBK etc., who consistently helped build the next generation. While a great entertainer, he was never the company guy who had a genuine love for the business - his love was for the spotlight and his own status."
Rating: 6.0
Sentiment: 0.31432072829131646
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JackBurtonsTruckwrote on 14.10.2024:[9.0] "A great example of the man being so over that his in ring abilities dont matter. Yes, the rock can wrestle but I dont think theres any doubt that his charisma outweighs his wrestling."
Rating: 9.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fabibiwrote on 01.09.2024:[7.0] "The Rock is one of the most charismatic wrestlers ever, he is also incredible on the mic. He is however pretty limited in the ring and even sloppy at times. The Rock always brings energy and excitement to the table. He has a legendary career with very memorable feuds."
Rating: 7.0
Sentiment: 0.41398809523809516
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Johanwrote on 30.08.2024:[10.0] "The Rock is a WRESTLER, he owns the crowd, the crowd cares about him, the crowd wants to see him win everything he is a part of and so forth, He is not a master technician but yet the crowd liked and remembered his matches much more than the master technicians like Fit Finlay or William Regal, he is a guy who has always given his 100% percent and has a great library of matches, but what makes him special is that the Rock is, by far, the single most charismatic person to ever step foot in the squared circle and that's why he is a 10. The GOAT on the Mic, The GOAT in charisma, great enough in the ring"
Rating: 10.0
Sentiment: 0.4219780219780219
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: wrestlingswiftiewrote on 26.08.2024:[4.0] "While he is a successful Hollywood actor, his wrestling career has been defined by a lightning-in-the-bottle peak run. Rocky Maivia sucked. Hollywood Rock is overrated. This Final Boss iteration is okay, and don't even get me started on the watered-down modern Dwayne from the Cena feud to the Cody Crybaby backlash... Really awful stuff. The true highlight of his career was during 1999-2002. Here, especially during the first half of that run, he was truly electrifying! (No pun intended.) Although, his promos have always been overrated. Sure, he could deliver a hilariously brutal promo, but in the process, he inspired an entire generation of wrestlers to start burying their opponents on the microphone. (Which, by the way, JOHN CENA... is not what you're supposed to do.) His over-reliance on catchphrases made his promos feel super rehearsed and phony. Yes, having catchphrases is fine, but only if you naturally work it into your monologues and don't have an insane length of them. Another issue I have with his promos is his tendency to try and get the most outrageously stupid things over. For example... "cookie puss! ? " Yes, you heard that. There was a time in Dwayne's later career, with all of the experience under his belt, he thought "cookie puss" would be this massive hit with fans. And this is just ONE example. However, most fans long for the Attitude Era (despite it being a bad product), so naturally, the popular opinion of Dwayne being this master on the mic will persuade fans of a new generation."
Rating: 4.0
Sentiment: 0.014927048260381603
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: cal9099wrote on 15.08.2024:[10.0] "While I can't stand Dwayne Johnson I can't deny the Rock was an absolute phenom and simply one of the biggest icons of the 90s and 00s. I've not been a huge fan of his recent bloodline stuff but his attitude era work with the likes of HHH, Angle, Stone Cold etc. was simply that big a deal I can't deny him a 10. Arguably the best on the mic of all time."
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HBK16wrote on 01.08.2024:[6.0] "While the Rock was a very important persona in the attitude era, his character never really appealed to me. Although, I agree, one of the best mic workers of all time and his crowd control is amazing, he was always average in the ring. The Rocks prime years of the late 90s- early 2000s were good but that is all i would describe it as. Yes he had an iconic feud with Steve Austin, but his moveset was very lackluster and I found his character repetitive and boring after a while. While this version of the Rock I liked, his returns for me put a stain on his character and reputation. His return in early 2010s was infuriating as he would beat CM Punk and defeat his historic title reign for what reason? Rock also had a mid feud with John Cena with two meh matches that headlined wrestlemania. The Rock would continue nearly a decade later again using his ego and name to push other superstars aside for the spotlight. Almost taking Cody's main event spot at mania all because he was the "bigger draw" was laughable. His ego really ruined his character for me these past few years and although i did somewhat like the final boss persona, it was still very over the top and only happened because the people hated the idea of him main eventing over Cody and taking his spot. For me, The Rock just never appealed to me due to his massive ego and over the top personality."
Rating: 6.0
Sentiment: 0.047238095238095246
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: darkflame4527wrote on 30.07.2024:[10.0] "From his first years (prime) to the cringe-worthy cookie-cutter face years to his (arguably) most incredible run/gimmick of all time, the Rock has exceeded all the highs possible in wrestling. He helped make wrestling cool TWICE. His international stardom helped make WMXL possibly the greatest WM, along with WM17, the WM that he helped make legendary. The Rock is almost unbeatable on the mic, able to control the crowd effortlessly, with in-ring and out-of-ring psychology always being on point. His in-ring work has noticeably declined as he has gotten older, starting from "Twice in a Lifetime". However, this can't kill any points off of this rating. The Rock is electrifying."
Rating: 10.0
Sentiment: 0.3888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Toon Emperorwrote on 01.07.2024:[8.0] "One of the most charismatic and lifted mic workers ever, but his in ring work has always left something to be desired. He's good when he has the right opponent and can smoke and mirrors his way through thr natch with ref bumps and table spots, but for a normal match it's a little boring, but even that doesn't stop his charisma carrying him to a high rating"
Rating: 8.0
Sentiment: 0.12313492063492062
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Sick Lebowskiwrote on 18.06.2024:[10.0] "Charisma-technisch natürlich ohne Frage eine absolute Granate. Im Ring dazu auch sehr stark, auch wenn er hier nicht unbedingt zu meinen Lieblingswrestlern gehört. Dass er nach vielen Jahren Hollywood-Abwesenheit wieder kurz zurückkommt und dann gleich wieder so extrem stark im Rampenlicht steht, stört mich zwar ein klein wenig, aber darüber kann ich gerade noch so hinwegsehen. Er geht nicht zu Unrecht als einer der größten Stars dieses Sports."
Rating: 10.0
Sentiment: -0.22857142857142854
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Big R3d Mach1n3wrote on 17.06.2024:[10.0] "He was the people's champion for a reason. One of the best talkers and best workers in the sport of Professional Wrestling."
Rating: 10.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ProfessorFinesserwrote on 15.06.2024:[10.0] "[The rock is one of the greatest professional wrestlers of all time. Anything less than a 10 would be absolute blasphemy."
Rating: 10.0
Sentiment: 0.2833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: RealGrapsThomsenwrote on 26.05.2024:[10.0] "The Rock is my personal favorite all time wrestler. Quite simply, without him, wrestling isnt what it is today. His promo skills are amazing and some of his catchphrases are known outside of the realm of pro wrestling. His in ring ability can range from putting on a wrestling clinic to simply brawling. He has some of the greatest fueds and matches in all of pro wrestling history."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DangoDaisukiwrote on 13.05.2024:[6.0] "The Rock ist eben der John Cena von früher, mit dem Unterschied, dass er schon mehr Charisma hat und besser im Ring ist. Aber so gut ist er eben eigentlich auch nicht, wenn man mal ganz die Nostalgie etc ausblendet. Er ist der Wrestler der für mich am meisten den Massenmarkt anspricht, aber ich habe nach langen Überlegungen mir gedacht, eigentlich finde ich ihn gar nicht so gut."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: StardomIconwrote on 12.05.2024:[8.0] "One of the most successful faces and heels of all time, the story of pro wrestling can't be told without The Rock. I'll be using Bret Hart's system of ranking a wrestler by their promo ability, look, and in-ring ability to rate The People's Champion. Starting with promo ability, The Rock is objectively electric on the microphone. Unlike a lot of modern pro wrestlers, The Rock knows how to work and engage a live audience. His catch phrases are still widely known today, as he had the ability to make even non-wrestling fans listen to what he had to say back in the Attitude Era. However, I believe The Rock became far too predictable and even a bit annoying on the mic in the early 2000s. Every promo felt like he was simply bridging from catch phrase to catch phrase, while his opponents often looked completely idiotic when opposing him on the mic as they had to play into his humiliation games. Moving on to looks, he truly exceled here. He had the height and size of a main eventer but didn't look like a muscle head in his prime. He was one the first wrestlers to truly look cool and appealing on a mainstream, non-wrestling level. The People's Eyebrow is an iconic pose that transcends the world of wrestling. Finally, his in-ring ability was electrifying as well. Of course, he wasn't the greatest technical wrestler and ultimately, his matches became predictable. However, there is no questioning his ability to engage an audience with his signature moves like the People's Elbow and the Rock Bottom. Moreover, he was fast and athletic compared to many WWF main eventers prior to the turn of the century. Say what you want about The Rock's matches, his matches against Mick Foley and Steve Austin were far more exciting than any main event match WCW was putting on during the late 90s. Whatever your opinion of The Rock's look, promo, and in-ring ability is, you most definitely have an opinion of him - and isn't that the biggest barometer of success in pro wrestling?"
Rating: 8.0
Sentiment: 0.13943602693602694
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: leonconnelly652wrote on 10.05.2024:[10.0] "What can you say really, greatest talker in the history of wrestling, just so many memorable amazing promos and lines that you'll always remember. He just has that type of charisma that makes people tune in every week just to see what hes up to.Very underrated as a wrestler too has some banger matches under his belt"
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rassle Fanwrote on 06.05.2024:[10.0] "The Rock is arguably the greatest star in the history of the business. There's nothing he can't do. He may not be the greatest technical wrestler ever but he's great at the most important aspect of being a wrestler, making people care about what you're doing. Even if he couldn't work at all he'd still be the greatest ever for his unmatched charisma. He did use a lot of catchphrases but that isn't always the case. Fans hang on every word he's saying too. His most recent heel run showed he can adapt when needed and wasn't comfortable relying on the old hat. In wrestling he's the best."
Rating: 10.0
Sentiment: 0.5583333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MarkMcMarkington2wrote on 02.05.2024:[10.0] "1999-2000 Rock is the coolest wrestler ever. No debate. The look, the promos, he oozed charisma. He had a very short run in WWE but made such a large impact. One of the GOATs for sure."
Rating: 10.0
Sentiment: 0.17857142857142858
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: crs285wrote on 21.04.2024:[9.0] "Truly one of the most electrifying men in entertainment. On the mic and charisma, he is one of the GOATs. In the ring he was very good in his prime and still has been decent when he returned after his Hollywood career took off. Truly a man who has went above and beyond pro wrestling to become one of the biggest stars of today period."
Rating: 9.0
Sentiment: 0.39416666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Okaro143wrote on 10.04.2024:[9.0] "One of the biggest Superstars in WWE History. His first stint with the company and his work with Steve Austin brought WWE to heights never dreamed before in professional wrestling. Was incredibly charismatic, had superb mic skills and imo is easily one of the biggest star that ever existed in professional wrestling ( PARTLY DUE TO HIS HUGE SUPERSTAR STATUS AT HOLLYWOOD). His in ring work was very good though his contemporaries such as Austin, Jericho, HHH, Kurt Angle, Brock Lesnar, etc. were noticeably better than him, in particular, Jericho and Angle. Even when he wasn't in the World Title feuds, he was always a highlight especially during his RockNSock Connection run. Unfortunately, his return in 2010 wasn't something I was fond of, If it was a one off, it would have been fine but he was put in the main event WrestleMania feuds thrice in a row and it kind of felt like he took the thunder of upcoming main eventers like Punk, Sheamus, Bryan, etc. That being said, he remains one of the most beloved superstars of all time. Even as an actor, Dwayne has found incredible success. Probably the biggest draw in both pro wrestling and Cinema. His talent and huge presence can be felt anywhere in any media."
Rating: 9.0
Sentiment: 0.3428260869565218
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: GoldLigerwrote on 07.04.2024:[8.0] "Disregarding what could be said about Dwayne Johnson as an actor or businessman (and that could be a lot, much of it not great) I think it should be said that The Rock is probably the wrestler who affected the business the most in the shortest amount of time. His full-time era in WWF/E barely lasted 5 years, and he's worked 15 matches since losing the title to Lesnar in 2002. Rock still somehow managed to be one of the most iconic and well-known pro wrestlers on a global scale just by tapping into a natural charisma that just can't be replicated, no matter how much WWE wanted to find someone who could when he was away. Is he a great worker? Honestly, not particularly. His work from Rocky Maivia into his early Nation Rock days is mediocre, his 2010s matches & 2024 match were carried heavily by his aura and his opponents, and in his hottest era his best matches are almost all plunder brawls or character-driven story matches, but that was the style of that era and so he thrived. There's a reason his catchphrases are numerous and quoted decades later, there's a reason every time his music hits the crowd explodes, there's a reason he's managed to have 3 of his 15 matches since going part time be Mania main events, and that's because he just demands attention. The modern Bloodline Rock is channeling his memorable Hollywood Rock era, an era that lasted all of three months at the tail end of his original run when he already had a toe dipped in Hollywood and yet generated like 30% of his best moments. After all this time, especially with the Twice In A Lifetime run being so middle of the road, it's nice to see that Dwayne still has The Rock in him like that, even if it took a Black Adam flop-induced midlife crisis. This 8 is because I don't know if he could've thrived how he did in any other company in any other era, but having a right-place right-time lightning in a bottle kind of fit like he was for WWF is worth something."
Rating: 8.0
Sentiment: 0.20940860215053758
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TripleCrownwrote on 07.04.2024:[10.0] "On this site, a 10 for me means they're one of the best wrestlers to ever exist, period. However, with Rock... I have to rate him differently and break my own little rule for raitings on this site. He isn't the best wrestler ever, far from it actually. But what he does in every single other aspect is just amazing. He is an absolute star and is capable of having very good matches, despite not being so gifted in-ring. He just has the aura that very, very few wrestlers have. His mic work is second to none, as an overall character and "superstar" he's 100% worthy of a 10 and that's how I'll rate him. I feel like it was just based on his wrestling ability he'd probably be a 5 or 6, but I have to take into account the fact he's The Rock. Perfect wrestler in regards to WWE superstar standards."
Rating: 10.0
Sentiment: 0.30523182957393485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MasteroftheMatchGuide99wrote on 23.03.2024:[6.0] "As much as I like his wrestling, the Rock has too much exposure and keeps way too much time to say 1 sentence. Over time, the Rock went from appearing sporadically to just showing up when WWE wants him to despite him supposedly being too busy in Hollywood for anything else, which makes each return less exciting, and his promos take 3 times as long as they need to because he constantly pauses for no reason. Now, he forced himself into Wrestlemania XL and made WWE change the main-event 4 times in a span of 2 weeks. The Rock is a celebrity and legend, that is true, but now he's doing what lots of other legends do, which is politicking to get another paycheck."
Rating: 6.0
Sentiment: 0.07569444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CarMenWinSteadwrote on 09.03.2024:"Rock's pretty based. I like Rocky. I be chanting "Rocky! Rocky! Rocky! " like crazy back when I was a shitty little kid back in 1997."
Rating: No rating found
Sentiment: -0.059843749999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Neon Aussiewrote on 07.03.2024:[7.0] "He made a major impact by being one of the big players in the "Attitude Era". Many consider him to be one of, if not the best on the mic. His wrestling career was rather short-lived, though he has come back a couple times now, we shall have to tally up how much wrestling he did post-2003 when he reaches old age. His move 'the peoples elbow' was a disgrace to wrestling and probably helped change it for the worse. His style was 98% "entertainment" and 2% 'wrestling'."
Rating: 7.0
Sentiment: 0.1828125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 2pt0EcoBoostFusionwrote on 03.03.2024:[10.0] "Arguably one of the greatest sports entertainers of our generation, there will never be another Dwayne "The Rock" Johnson. A success in just about everything, The Rock has done it all, holding championships, main-eventing shows, having fire-spitting promos that are must-see TV, I can go on and on about how The Rock has set a precedent in Professional Wrestling and how influential and important he is to the business. He was a really good wrestler too, I mean look how many people he has inspired to be a Pro Wrestler and how many often model their gimmicks and characters after him, truly an icon. He has also become a very successful Hollywood actor and co-owns the American-Football league the UFL (formerly one part of the XFL he bought in 2021). Definitely a future WWE Hall of Famer and when he goes into the HOF, he will easily be a top ten Hall Of Famer of every class that has existed and will exist in the future."
Rating: 10.0
Sentiment: 0.33303571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mrwfxtremewrote on 03.03.2024:"The Rock is the best example of the big fight feel rock vs hogan. rock vs Austin 3 times. rock vs cena twice six of the biggest matches in mania history"
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: benny5bellyswrote on 01.03.2024:[7.0] "Teenage me loved the Rock like almost everyone else did, he obviously had unbelievable charisma. I am not sure his work has held up that well, his promos are incredibly cringe inducing and basically just low hanging fruit insults. He got eaten alive and spat out by John Cena on the mic during his first come back to boot. His in ring work was perfectly fine for the era and style of matches he needed to have."
Rating: 7.0
Sentiment: 0.1696969696969697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: jasonkl24wrote on 20.02.2024:"the rock is also an obvious 10. anyone who thinks otherwise is not an actual wrestling fan and doesn't understand the industry. he is arguably the most over wrestler ever who has gotten unbelievable pops for years.the best promos ever, and he could work with anyone. nobody comes close to his charisma, and of course he was so good that he went on to become the biggest movie star in the world for years. it drives me nuts how stupid some of the supposed "smart" fans are. wrestling really also has to be looked at as pre 1985 and post 1985. its not fair to compare legends like Bruno, Thesz, Rogers, etc...with modern times post Wrestlemania. Hogan, Flair, Austin, and the Rock are the clear most important wrestlers in modern times. I would put guys like Undertaker, Hart, Michaels, HHH, Sting, Cena and Reigns at the next level."
Rating: No rating found
Sentiment: 0.16339285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mxkamiwrote on 11.02.2024:[7.0] "At the time of this review, I am 35 years old. My first wrestling memory, is seeing Scott Hall's "You know who I am..." promo on WCW Monday Night Nitro. So I have seen A LOT of wrestling, for a LONG time. Japan, indies/super-indies, deathmatch, intergender, BritWres, King's Road (my personal favorite after deep diving into more and more history over the past year), basically everything under the sun, I've seen. I have issues with The Rock... "He's the GOAT promo! " He hurls pretty amateur, low-hanging insults at people for the nostalgia pop, and even as a kid, I thought his promos were pretty mid. Rock would grab a mic, then the formula of catchphrase-insult-location pop-catchphrase-bury his opponent-catchphrase was the M.O., and still is to this day, frankly. Hollywood Rock is my favorite version of him, but I can't deal with it for overly long periods of time; see, the formula mentioned earlier. I know it's an unpopular opinion, but I also think he's a pretty mid worker. His style of his punches and kicks looking like my legs when my Restless Leg Syndrome kicks up, is not the height of pro wrestling offense, and the People's Elbow has never popped me (minus the slide in dress shoes to Bulldog). That said, dude is GREAT at selling and his facials are aces. I also will not deny his star power, and his contribution to moments over his 20 years in the business. But, again, for me, just mid; although I do acknowledge his importance. 5 + 2 for the legacy."
Rating: 7.0
Sentiment: 0.1494047619047619
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HammertonWaywrote on 04.02.2024:[4.0] "While no one can take away the impact that Dwayne "The Rock" Johnson made in the late 90's of WWF wrestling due to his electric promo's and matches, he has come back in the absolute worst time imaginable. Every single fans wants Cody Rhodes to finish his story by beating Reigns for the WWE world title, the title his father never could reach. But now Rocky Maivia comes along with his newfound power over the company to "save" Wrestlemania by booking himself in the main event instead. The Rock has done this in the worst possible time for WWE, in a time where the company needs as hero for the crowd to get behind after the recent Vince McMahon scandal that has made them out to have a toxic culture. No matter what you may have done for the business in the past, todays fans will only see you for your recent actions, and that is ruining two years of story for a sad, exhausting, boring 20 minute snore fest in which he will likely injure his muscles & tendons... again."
Rating: 4.0
Sentiment: -0.2357769423558897
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mooerwrote on 25.01.2024:[7.0] "I appreciate that The Rock was a major, prodigiously talented wrestler for his full-time run. However, in my period as an active fan, none of the selflessness for which he was lauded as a regular talent has been evident. Although it's obviously largely been promo segments, I find his style now tiresome and retrograde. The only person he's meaningfully put over in the last 20 years in John Cena and the prospect of adding Roman Reigns to that list in a so-so match int the main event of Wrestlemania fills me with dread for what should be an exciting season for a wrestling fan."
Rating: 7.0
Sentiment: 0.13000992063492064
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BruceMarcos524wrote on 18.01.2024:[8.0] "In my opinion, the greatest trash talker in wrestling history. The Rock is one of the few guys that every word and every move, the fans went out on excitement. There is no denying the charisma and the energy that he brings in the industry. One of most well-received superstars in WWE. Most of his promos are well-remembered and he has the best insult that no other guy could deliver. The man that has the most catchphrases to remember, e.g. "Finally, The Rock has come back to <venue location>! ", "Know your role and shut your mouth! ", "If you smell what The Rock is cooking! ". He is so famous some of his famous catchphrases turned into a merchandise. But one of the biggest contributions of The Rock is "Layeth the Smackdown Hotel! ", as this line created WWE's second show, Smackdown, and became the second longest running WWE show in history. An amazing showman and an amazing hype guy. One of his cons of his career is his in-ring skill, as he is not as technical as Bret Hart or athletic as Shawn Michaels, but surely has more talent than Hulk Hogan. His move set are simply basic and fundamental. But the beautiful thing about him is he would turn the basic move into somewhat entertaining and impactful as his unique aura and charisma would manage to pull it. In terms of draw, he is the second biggest drawing power of all wrestling, just next to Austin. Now he is a Hollywood movie star, The Rock has become the most famous and the most successful wrestler in history. Although The Rock retire very early as a full-time wrestler, there is no denying the impact that he brings to the wrestling world at that short span of time. And all of his greatest moments and achievements were done before he turned 30. Only if he has the in-ring skill, he could be one of the best all-around performers in history."
Rating: 8.0
Sentiment: 0.3712142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: RaySivanuiwrote on 15.01.2024:"The Rock has always been top 3 for me. I felt no one could match him in the mic. Very charismatic, funny, wasnt known for being the best in the ring but he gets the crowd involved and invested"
Rating: No rating found
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dirty Diegowrote on 12.01.2024:"Close number 2 after Austin Best in the microphone Biggest name in mainstream society (that does nothing for me to) Just star quality written all over him and he was the smartest wrestler ever he got in this Buisness at a time where about 95% of the wrestlers never made it out alive, or strung out on drugs with no money He got in to get out to become one of the biggest movie stars in the world"
Rating: No rating found
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dntbamarkwrote on 28.12.2023:[10.0] "When reflecting on the late '90s and early 2000s wrestling scene, few names shine as brightly as Dwayne "The Rock" Johnson. The Rock possessed not only fantastic size and in-ring ability but also charisma that reached unprecedented heights. When discussing The Rock, it's essential to appreciate his versatility and generosity as a performer. He had the unique talent of seamlessly engaging in storylines with a wide range of opponents, demonstrating a willingness to work with anyone, regardless of their status on the card. Unlike some performers who get consumed by their 'Top Guy' status, The Rock remained grounded and accessible. It's crucial to recognize The Rock's abilities as a heel, often overshadowed by his more celebrated persona as a white-meat babyface during the majority of his WWF/E tenure. The Rock's skill in portraying a compelling villain is a testament to his range as a performer. Beyond the squared circle, The Rock's impact transcended the wrestling business, solidifying himself as a once-in-a-lifetime talent. His involvement in numerous memorable feuds and moments has left an indelible mark on pro wrestling history. Moreover, he successfully transitioned into Hollywood, becoming a box office sensation for an extended period. The Rock's journey from the ring to the big screen is a testament to his star power and the enduring legacy he carved out for himself."
Rating: 10.0
Sentiment: 0.24782608695652175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: xitachiwrote on 28.12.2023:"The rock was good back during his prime days. Decent in-ring wrestler with a great amount of charisma which was the reason why he was so popular and still is to this day. Maybe I wouldve liked him more hadnt he retired from pro wrestling so early in his career."
Rating: No rating found
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Mengwrote on 26.12.2023:[4.0] "Very overestimated wrestler. Huge charisma and character but his career lasted only few years and he preferred Hollywood money to wrestling. He did some great matches during the peak of his popularity in WWE, but the further sporadic appearances that he did after his career was over, weren't so special and stole time to more deserving wrestler. I admit that his impact to the business in this short period of time was great, despite not having any particular wrestling skill in the mat, but he used and reused the same catchphrases and character that made him boring to my eyes. At the same time he has always given the impression that for him movies mattered more than the ring and that didn't bring a good image to the wrestling business,"
Rating: 4.0
Sentiment: 0.2249299719887955
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Gr8 1wrote on 26.12.2023:[10.0] "The man who made me become a wrestling fan not only because of his legendary mic work but because of how much charisma he had and how he used it to connect with the crowd puts him on the top of the list of the best to ever do it."
Rating: 10.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "The greatest talker of all time, with no doubt in my mind, hands down! The Rock may have not been around as long as he could have, but he's accomplished so much in that short time at the top in WWF. Having humble beginnings as Rocky Maivia, who was hated by the fans (so hated, they chanted "Die Rocky Die"). Eventually, WWF pushed back by turning Rocky Maivia into a heel and changing his name into The Rock, once he started talking in third person and insulted the people and his opponents, that's when magic was being made. Then he becomes a total god in professional wrestling, being one of the most charismatic men in professional wrestling, cutting legendary promos every week and owning everyone in his path by verbally running them down and finding ways to destroy them. What made The Rock so good on the microphone was his ability to make childish and cringeworthy insults and turn them into comedic gold thanks to his charisma, delivery and conviction, a truly difficult talent to achieve. The Rock wasn't the best wrestler in the ring, but he was at least a great seller, storyteller and worker, always had the crowd in the palm of his hands no matter what. I mean, how many wrestlers can you name can get "poontang pie" over? His feud with "Stone Cold" Steve Austin is easily among the all time best rivalries of all time, a rivalry that has left a huge impact and influence on so many rivalries and wrestlers, there's never gonna be another feud of that magnitude. By far, my favorite gimmick of The Rock's would be his "Hollywood" heel gimmick in 2003, while it was short lived, he was so entertaining during this time, hilarious segments left and right, and his feud with Hurricane is one of my personal favorites. His comeback run in the 2010s was hit or miss for me, I did like his feud with CM Punk and the John Cena feuds, but there were times I felt like he was watered down that his material ended up falling flat due to restrictions, and the second Cena match was terrible. Overall, one of the all time greats, he's popular in and out of wrestling for a reason. If Ya Smeeeeeeeeeell... What The Rock... Is... Cooking?"
Rating: 10.0
Sentiment: 0.11924984737484735
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: andytuga86wrote on 14.11.2023:[7.0] "Arguably one of the greatest talkers in the history of this business, a trully showman, full of energy and charisma. Nevertheless always found him over-hyped for some reason. Also the moveset was kinda limited and his finisher was just ridiculous ! Sorry Dwane/Rock fans."
Rating: 7.0
Sentiment: 0.0723809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: skyesversionwrote on 06.11.2023:[3.0] "I never got the hype surrounding The Rock. He has a good amount of charisma, which is where his talent ends. He was never good in the ring, his mic work is super overrated, and he's never had much of a character, at least in my opinion. I honestly hope that he stays in Hollywood and never returns to WWE again. He's simply not needed. He's probably gonna return at some point to face Roman Reigns which I'm not looking forward to at all. Two overrated wrestlers going at it? Yeah no thanks. I would rather watch a current-day Chris Jericho match. And that's saying something. The Rock, Dwayne Johnson, whatever you wanna call him, is way better at acting in Hollywood than in WWE, and that's where he should stay until "retirement." Call me a hater I don't care."
Rating: 3.0
Sentiment: 0.1583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Giantfan1980wrote on 15.10.2023:[8.0] "The Rock really only had 4 years of full time before going Hollywood full time, but he was the complete package and brought the main events to a new level. The most successful wrestler outside the business and the only guy who successfully made the jump into movies."
Rating: 8.0
Sentiment: 0.2820936639118457
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hatefwrote on 13.10.2023:[8.0] "The Rock was good! but I don't see him as a 10, because his ring performance, and promos were so repetitive. of course, he created some of the most historic moments in the WWE history, in only a short amount of time compared to the other wrestlers, and his promos were amazing, but he used to do it always the same way. his sells were more like a Hollywood scene, rather than Pro wrestling, and this is another negative point.. but totally, he made a great legacy in the company, and we cannot deny that."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: bigredtalk89wrote on 27.09.2023:[8.0] "I actually dislike The Rock, so I wanted to rate him lower, but I would be dishonest, and I may be dishonest by only giving him an 8, but I believe his promo skills have gotten worse and more cliché over time. He was solid in the ring, but some of his moves just look bad or awkward. I also despise the way he buries younger talent on the mic, rarely putting anyone over, and if he has(with the exception of Brock) he usually gets his first. If he gave back to the industry more I would bump him up a point."
Rating: 8.0
Sentiment: -0.06666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ECWCWWEAEWwrote on 22.09.2023:[7.0] "So... this is gonna be really silly but The Rock is one of the very few wrestlers who's body of work - matches and promos - have aged badly. Most wrestlers careers are just about looked back by newer generations and fans as almost about the same as they were perceived for the time. But for me personally, The Rocks promos are kind of obnoxious and a lot of his matches aside from Austin and HHH are pretty damn boring. Even now in Hollywood his acting career is starting to get retroactively trashed even when at one point his name brand recognition was the absolute highest billing of any actor. The guy just doesnt seem built to last in quality and always burns out after a while, kind of sad, but people in WWE will always eat up a return for him and I guess that's all that is needed for him at this point too."
Rating: 7.0
Sentiment: -0.013125000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Teebawrote on 15.09.2023:[9.0] "It's crazy how much Dwayne accomplished in such a short amount of time but them 7 years cemented him as an all-time great. One of if not THE greatest of all time on the mic, his charisma is unmatched. His 2002 stint when he was invincible got a bit cringe (the "strudle" days) but he recovered beautifully in 2003 as Hollywood Rock. His return in 2011 was epic but then as more Dwayne came out of him the more lame it got, I called him Bouncy Hand Rock as his promos started to feel more like lectures with the odd schoolyard joke thrown in. He doesn't get a 10 for them reasons and also because he was good but not great in the ring, super athletic but didn't have the psychology part down, he could brawl pretty good but couldn't have a technical masterpiece."
Rating: 9.0
Sentiment: 0.22910052910052917
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Foxmagic37wrote on 26.08.2023:[9.0] "I'll give him a 9 just because his prime and the best part of his career lasted so short. But in that time he proved that he can be the biggest name in Wrestling at the time. I think he's incredibly underrated in the ring, but I also think his finishers were kind of 'meh'. Highly athletic in the ring, unmatched charisma and electricity in his matches."
Rating: 9.0
Sentiment: 0.532
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MattHallwrote on 20.08.2023:[10.0] "One of the best if not the best promo guy ever in the business. Also one of the few wrestlers that turned wrestlers turned into Hollywood famous. He was also fun to watch in the ring. Had the size and a good look. It's too bad we probably won't see him wrestle again."
Rating: 10.0
Sentiment: 0.37142857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: John Brandowrote on 17.07.2023:[10.0] "Es tut mir fast leid, aber The Rock verdient als Most Electrifying Man in Sports Entertainment die volle Punktzahl! Als Gesamtpaket einmalig. Wohlverdiente 10 Punkte für The Brahma Bull!"
Rating: 10.0
Sentiment: 0.490625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Undertaker4everwrote on 15.07.2023:[10.0] "Einer der besten die es gibt und je gegeben hat! Zusammen mit Stone Cold Steve Austin eine Ära geprägt! Am Mikrofon sowieso ein Gott und ebenfalls einer meiner Lieblingsschauspieler!"
Rating: 10.0
Sentiment: -0.9375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DhruvChouhanwrote on 10.07.2023:[6.0] "I am going to focus only on positives: Probably the most charismatic wrestler of all time, really good at promos and had amazing intensity."
Rating: 6.0
Sentiment: 0.45999999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: devourblastwrote on 06.07.2023:[10.0] "It feels redundant calling The Rock arguably the greatest mic worker of all time but sometimes the obvious choice is obvious for a reason. The fact that he had crowds in the palm of his hand as face or heel makes the claim even more legitimate. Good in ring work as well coupled with mic work and just being a master of selling and body language makes the Rock a true icon of wrestling (except for his Sharpshooter, please don't let him do the Sharpshooter)."
Rating: 10.0
Sentiment: 0.33571428571428574
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dancerwrote on 25.05.2023:[10.0] "Best promo ever. Words and phrases that he popularized have become mainstays in the vocabulary of English speakers. Backed it up with solid in-ring for the era he was in. Legit one of the biggest celebrities ever. Wish he stayed in the WWE for longer but when you are as talented of a speaker as he is, he was bound for greener pastures."
Rating: 10.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: tmxiconwrote on 24.05.2023:[6.0] "The guy is a legend and utilized his 7-8 year wrestling career to propel himself into legitimate box office superstardom. I want to make sure I acknowledge such an impressive feat. With all that said... he's a 6/10 wrestler. That's my usual ceiling for guys who spend their entire careers within the WWE system; it's not my style."
Rating: 6.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Shan16wrote on 03.05.2023:"Only one word for him GOAT, he is one of the best talker, super charismatic, and if you see his match with Triple H in Iron man or Ladder match in Summerslam 98, you can see how much his ring work is good"
Rating: No rating found
Sentiment: 0.45555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheCoolGuywrote on 02.05.2023:[10.0] "10/10 and you shouldnt give him anything else. Great in the ring, great on the mic and became an all time great. The only thing I can say I do t like about him is that he left to soon. I wish he couldve gotten more of The Rock."
Rating: 10.0
Sentiment: 0.4833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: danzitorockwrote on 08.04.2023:[9.0] "Rock was awesome as a heel back in the 90s, every heel should study The Rock during that period, he was perfect. I think he has one of the best mic skills of all time, and iconic sellings and reactions. It's a shame that after Hollywood he appeared very few times on TV, and seems to not care much about wrestling currently, but he is an absolute legend of the sport."
Rating: 9.0
Sentiment: 0.4044444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: greaterdalewrote on 03.03.2023:[10.0] "I mean I gotta give the freaking Rock a 10/10. He's one of the most popular wrestlers in a boom period for wrestling and can destroy anyone on the mic. Honestly his ring work was good too though it is his worst aspect but he still had plenty of classic matches in his short time at the top. The only reason he didn't wrestle longer is because he became a mainstream movie star and became the most successful wrestler to actor in the history of wrestlers becoming actors. it would be cool to see him have on more run in WWE but even if we never get that Roman Reigns vs The Rock match he's cemented himself as one of the most legendary wrestlers in history."
Rating: 10.0
Sentiment: 0.3113425925925926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KKeanelwrote on 26.02.2023:[9.0] "Undoubtebly legend and icon with tons of charisma and excellent work on mic, but he's not in "all-time best" pantheon in my book, mainly because of mid in-ring work and quiting wrestling industry too soon."
Rating: 9.0
Sentiment: 0.5416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: kewf1988wrote on 26.02.2023:[10.0] "The Rock was a complete package and probably the most charismatic superstar in WWE history. While he was known for his amazing mic skills, he was also very good in the ring, and combining that with his charisma and mic skills, he got the fans to care about everything he did, and got insane pops just for raising his eyebrow. No wonder Hollywood came calling in 2001."
Rating: 10.0
Sentiment: 0.26833333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BradJohnson34wrote on 18.02.2023:[7.0] "An all-time great promo (as either a baby or a heel). Fairly limited in the ring but capable and consistent. Gone from the industry too soon."
Rating: 7.0
Sentiment: 0.29464285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: eBentowrote on 09.02.2023:[8.0] ""The Great One" is one of the most important wrestlers in history and played a key role in establishing WWF as an edgy, lively and modern form of pro wrestling in the late 1990's and of course he had some of the greatest matches of all time against Austin, Hogan and Triple H. I think that his in ring ability in terms of moveset is overblown by a lot of people but he does the "big star guy" role so well that it's hard to be really harsh on him at all."
Rating: 8.0
Sentiment: 0.16205808080808085
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: benh2wrote on 13.01.2023:[10.0] "It's almost absurd to give the full score to someone who spent barely three years on top as a full-time performer but The Rock was one of the industry's game changers. He completely elevated wrestling and revolutionised promo and character work. In the ring he wasn't the greatest but still knew how to pace a match and was flashy enough to keep you invested. He looked like a star and had charisma in spades, everyone was eating out of his hand."
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CMX-7wrote on 02.01.2023:[10.0] "The biggest star and one of the biggest legends in the sports entertainment industry and wrestling in general) From failure in the image of Rocky Maivia to the most popular Hollywood star! His legendary matches with Hulk Hogan, Steve Austin, Mick Foley, Undertaker, Kurt Angle and Triple H became classics) His Charisma is incredible! Its a promo bomb!"
Rating: 10.0
Sentiment: 0.49722222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: face painted legendwrote on 21.12.2022:[10.0] "The biggest overall star in the history of professional wrestling. Comes from one of the most respected and talented bloodlines ( all pun intended) in wrestling history. 3rd generation superstar. One of the most gifted entertainers ever in wrestling. Had a performance/ delivery with his promos that changed the game. As charismatic of a superstar as you'll ever find, arguably THE MOST charismatic depending on who you ask. Could take the silliest of stuff whether it was an eyebrow, an elbow, or a bunch of off the wall catchphrases, and get it over to the moon, and to the point that people are doing them themselves and singing along with them. One of the more underrated things about him and I guess this is why he's where he's at now, and doing what he's doing now is his ability to take whatever's given to him and make it better. He was always able to turn any segment that would be an 8 and make it a 10, same with a match (as i've read comments where he wasn't the best in ring performer). Just one of the all time greats or in his words.. The Great One."
Rating: 10.0
Sentiment: 0.3941176470588235
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KSupreme3wrote on 16.12.2022:[10.0] "the Rock is one of the greatest sports entertainers to ever have graced a wrestling ring. It wasn? t just the catchphrases and mottos; his style, the swagger, the extreme confidence and the ability to captivate the crowd made it clear that he was truly someone very special. I mean come on, he is now not only one of the most famous wrestlers to ever live, but he is also one of the most successful wrestler to crossover. He is a bonafide movie star and cultural icon. He wasn? t a technical master in the ring, but he knew how to perform and give the crowd some very exciting and memorable moments. His feud with Stone Cold is one of the greatest feuds in wrestling history. A true generational talent which left some really big shoes to fill, and we all see Dwaynes DNA in many of these new era wrestlers. We can? t deny his contributions to both wrestling and pop culture. Wrestling God. 10/10"
Rating: 10.0
Sentiment: 0.26770513577331756
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: khalekwrote on 07.12.2022:[7.0] "He has definitely charisma and ring skills, but his ring skills I can rate (6/10). But this is my opinion."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "Not only was he one of the greatest promos ever, but he was a pretty damn great wrestler too. His aura can only be replicated by Austin."
Rating: 9.0
Sentiment: 0.41
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Pinecone706wrote on 23.11.2022:"This guy is one of, if not then the most charismatic wrestler to ever step foot in a professional wrestling ring. The gradual change from being the blue chipper Rocky Maivia to the most electrifying man in all of entertainment is incredible and I suggest many to watch his rise in the 1997 and 1998 as I feel The Rocks run in the nation is slightly underrated. It is insane that a man that was once booed out of buildings has become quite possibly one of the most famous and inspiring people in the world."
Rating: No rating found
Sentiment: 0.25641025641025644
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: YourKingMobwrote on 05.11.2022:[9.0] "One of the most dramatic sudden rises in wrestling. Went from an low-mid carder with all around tepid work, promos and character to suddenly turning the corner in less than 3 months and on his way to being a superstar. He really should be rated lower, since his actual wrestling still remained tepid, with goofy signature moves and finishers, but his superstar power, promos and look can't be discounted."
Rating: 9.0
Sentiment: 0.075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BAILE3wrote on 04.10.2022:[10.0] "One of the best wrestlers of all time. One of the most charismatic wrestlers of all time. Probably the most iconic wrestler of all time. The list goes on."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheOneAndOnlyCactuswrote on 29.09.2022:[9.0] "I know some give him some flack for not being the best in-ring worker in the world, and sure he wasn't the best, but he was no slouch either, he could have very entertaining matches with a variety of opponents and he had some good-looking moves (his Sharpshooter is still shit though). But most importantly, he is an extremely charismatic and captivating performer. Not just with a mic in his hands, but when he wrestles, he has the crowd in the palm of his hand. Wrestling isn't just about workrate lads. Remember that."
Rating: 9.0
Sentiment: 0.5562499999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Conquistador37wrote on 20.09.2022:[6.0] "Unfortunately for The Rock; there were only 3 moments I was ever emotionally invested in, even when rewatching. Before I delve into the negatives; I did enjoy his ascension from The Nation of Domination, his victory at Royal Rumble 2000 (one of my favorite Royal Rumble's) and most of all: The Rock makes the WCW Championship actually mean something, all while The Rock helps elevate new talent like The Hurricane when other guys did NOT do the same (*cough* Fkn Undertaker! *cough*) . With that being said: Most of his career was spent outside of the ring and I'm not really into that style - or for that matter the WWF/E main event style as a whole. Once in the ring he was alright at times, cringe worthy at others (his Belly to Belly Suplex and Grapevine Boston Crab looked TERRIBLE) but in general: passable. We can't pretend like he is anything less than probably the most entertaining, charismatic and genuinely "electrifying" man to ever be a part of the business; with his promo game being triple platinum at the very least. HOWEVER. So many times his mic work was less about building his opponent or the feud - but more so to get cheap laughs from the live crowds. That's not what promo time is actually for. I want to like The Rock, but there is an abundance of time fast forwarding to get the the in ring stuff - then its almost always gaga city with an extra helping of convoluted over booking. The man behind the character is easy to like though, always has been and probably always will be. 6.25 rounded down."
Rating: 6.0
Sentiment: 0.08657030834662414
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: GwenCube64wrote on 06.09.2022:[8.0] "one of the best promos of all time (when not saying something problematic), the definition of charisma, and a fashion icon of wrestling history. has had legendary rivalries and matches, but was a much stronger gimmick than anything else. in the ring he was definitely above average, but never hit the goat status for me"
Rating: 8.0
Sentiment: 0.41000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: nothingleftinsidewrote on 08.08.2022:[9.0] "Potentially the best all time wrestler on the mic. Who's even comparable? Flair, maybe Dusty... Sloppy worker, prone to overselling, but his matches are fun and exciting and when you're a big enough star people don't care that your sharpshooter looks like shit or you did backward fish flop to sell a stone cold stunner. Blood simple gimmick- The Rock is just a guy that likes to talk shit and kick people's candy ass. More catchphrases than you could shake a stick at. I've witnessed entire promos of his where the audience finished every last sentence for him. You know you're over when you've got the people who paid to be there doing your promos for you. Adaptable to heel or babyface more easily than perhaps any gimmick before or since. Without a doubt the most successful wrestler who ever lived, and the only one who achieved mainstream success. People know that Hulk Hogan is a wrestler, but many do not consider that Dwayne Johnson once was. A+ look, A+ talker, C- wrestler. As big or bigger star than Austin. Like Austin, his career was just short enough to not have many low points in it. He should be in the conversation for greatest all time on his mic skills alone, but his just barely acceptable ring work diminishes him in the eyes of the type of wrestling fan likely to read this review."
Rating: 9.0
Sentiment: 0.1553763440860215
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CommisarRobewrote on 04.08.2022:[9.0] "A top heel a top face and one of the best talkers in the WWE, his feud with Austin is legendary for a reason. I nearly always enjoy matches that involve The Rock due to the high energy nature of his performance. Hopefully we may see him again, ."
Rating: 9.0
Sentiment: 0.441875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ofirwrote on 01.07.2022:[7.0] "a fantastic character and amazing talker, just never been that much of a fan of his in ring work. not really my style of wrestling"
Rating: 7.0
Sentiment: 0.27499999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: venixilinewrote on 22.05.2022:"If I had to pick a perfect wrestler, someone I could trust to carry a company on the mic, in the ring, and out of it, I see no other choice but The Rock. While he alone isn't going to randomly end up having a 5* match with the whole roster like Okada, he creates memorable moments that no one else can compare to while still being no slouch. He's always been said to have little ego despite his spot and just knowing what would be best for the business."
Rating: No rating found
Sentiment: 0.29642857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: NiceRaterwrote on 12.04.2022:[10.0] "He coined a word that couldn't have been more perfect; electricity. Every move The Rock performed elicited a pop from the fans. He build a moveset designed for excitement. From every hot tag or every DDT out of nowhere, The Rock was an entertainment machine. Insanely quick witted on the mic, he created more memorable funny moments than anyone in the industry ever, and all in a fairly short space of time. You never had a second that you didn't enjoy watching The Rock, and that's what this sport is all about. He may have been the catchphrase machine, both verbally and with his moves, that inspired the likes of John Cena down the line, he also had another element to him which made him feel unique and offer something new and original every time. One of the greatest to ever do it."
Rating: 10.0
Sentiment: 0.36427609427609425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: rishabhwrote on 30.01.2022:[10.0] "Definitely one of the greatest professional wrestlers of all time. The guy is untouchable on the microphone and can really take any topic and make it funny. The fact that he wrestled for such a short time yet created a legacy that people regard him as one of the GOATs says everything about him. Along with Austin, he was the biggest star of the Attitude Era and their rivalry is one of the most iconic rivalries in history. Once in a generation talent, How I wish he would have wrestled for more time."
Rating: 10.0
Sentiment: 0.305
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Viktor Vaughnwrote on 26.01.2022:[6.0] "Guter Entertainer, im Ring allerdings nur Durchschnitt. Find ihn auch am Micro überbewertet, er bringt zwar seine Promos meist gut rüber und hat auch durchaus ab und zu mal ein paar gute Sprüche dabei, aber inhaltlich läuft es meist nur auf seine Catch Phrases raus und wird so schnell eintönig und vorhersehbar."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: eltetechoriwrote on 10.01.2022:[10.0] "It is impossible to talk about The Rock without getting emotional, it is what an era of wrestling did with its charisma and microphone. Undoubtedly one of the best of his time and that has transcended after the years to the top."
Rating: 10.0
Sentiment: 0.20833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CaptainCharisma1997wrote on 19.12.2021:[10.0] "One of the GOATs and perhaps the biggest natural/prodigy ever. His run in 2011-13 was absolutely terrible but I won't hold it against him."
Rating: 10.0
Sentiment: -1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: King of Strong Stylewrote on 10.12.2021:[10.0] "The Most Electrifying Man In Sports Entertainment, dieser Spitzname sagt eigentlich schon alles über diesen Mann aus, er hat Tonnenweise Charisma (locker Top 5 of all Time) und am Mic ist er auch genial (locker Top 5 of all Time) , im Ring war er sehr gut und absolut verdient eine Legende und bekommt von mir für eines der besten Gesamtpakete natürlich die vollen 10 Punkte. If you smell what The Rock is cooking!"
Rating: 10.0
Sentiment: 0.5145833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: IBladeDailywrote on 21.10.2021:[8.0] "The Rock was great and very entertaining. One of the most popular wrestlers ever. He had some killer feuds and killer matches. I also feel he became pretty formulaic in his promos and matches. I loved when he was pushed by a great worker like Jericho or Benoit, he could definitely rise to the occasion. But when comparing him to Stone Cold or any other main event wrestler of his era, his career was very short (he would have been an IDIOT to stay in WWE instead of Hollywood) and his promos were largely similar. His feud with Austin is one of the greatest ever."
Rating: 8.0
Sentiment: 0.24635416666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: FACEElmo295wrote on 15.10.2021:[9.0] "Dwayne Johnson had a interesting journey in wrestling, after the failure of his Rocky Maivia character he turned heel, joined The Nation of Domination, started calling himself The Rock and the rest was history. The Rock from 1998 to 2003 was pure perfection, whether it be as the Corporate Champion to carrying the WWF in 2000 as it's number one babyface to his Hollywood Rock phase in 2003. In my opinion he is the greatest sports entertainer in the history of wrestling due to his look, charisma and entertaining move set. While his returns sometimes have a bit of staleness, he's still one of the best sports entertainers in the industry."
Rating: 9.0
Sentiment: 0.34657738095238094
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: SrHunterwrote on 09.10.2021:[10.0] "Possibly the greatest talker in history, the definition of entertainiment, really good on the ring a charisma that few have, and many many classic matches. One of the greatest of all time for sure."
Rating: 10.0
Sentiment: 0.4629629629629629
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: jltwrote on 26.09.2021:[6.0] "I have to give him props where it's due as he was a massive part of the Attitude Era and he's an absolute legend in the business but his ring skills are very generic and not very interesting. To be fair, he backed himself up on the mic and his overselling definitely helped him at most points. Without his charisma, he'd be a jobber (maybe midcarder) his entire career."
Rating: 6.0
Sentiment: 0.12029914529914529
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Upgrayeddwrote on 05.09.2021:[8.0] "Look, don't get me wrong, the Rock's a legend. His mic skills deserve to be put on a pedestal, his charisma was electrifying and he could work an amazing match. Is he an all time great? Absolutely. Is he a legend? No doubt in my mind. However, I never thought him to be the most technically gifted wrestler out there. His moveset was extremely limited, and his finishers weren't what I'd call special. He's mediocre at best in terms of maneuvers, but he's an overall extraordinary talent."
Rating: 8.0
Sentiment: 0.26825396825396824
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Suzukigunwrote on 25.08.2021:[10.0] "LMAO at the people giving low ratings. The Rock is an all-time legendary talker with really good wrestling skills. He is an actual megastar for a reason. Very few were as electrifying as him."
Rating: 10.0
Sentiment: 0.34
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: juiceisloosewrote on 23.07.2021:[3.0] "Rock is one of the most overrated wrestlers in the history of wrestling. To be honest he wouldn't have been over if it wasn't for his mic skills and he was ok in the mic; i always liked Jericho and Flair better. The only time i have ever liked him was when he was with the Nation, he was a great heel. However he wasn't anything special in the ring and his 'finisher' was one of the worst i've ever seen. I've never find anything he did exciting, also his angles got more stupid as the time went on and made me feel like only 12 year olds would laugh at his stuff."
Rating: 3.0
Sentiment: 0.25047619047619046
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: faithOfWrestlingwrote on 11.07.2021:[3.0] "The Rock is insanely charismatic and oozes coolness I will give him that, but other than that I find his mic skills to be overrated and he was not very good in the ring. Everything The Rock did in the ring looked sloppy and lose even though he could have some decent matches it was not good enough to overlook how bad he was. I mean his sharpshooter for example always looked terribly executed, the peoples elbow was a dumb move no different in my opinion than Hulk Hogans leg drop, just generally everything he did in the ring looked bad. The Rock over did it too much performing in the ring that every move he did suffered, the only thing I did appreciate The Rock being over the top with at times was his selling which could be up there with the best of sellers ever."
Rating: 3.0
Sentiment: -0.10693319838056678
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ALFwrote on 09.07.2021:[8.0] "Vom Charisma und Micwork überragend, In-Ring-Skills nur gehobenes Mittelmaß. Um ihn wurde aber auch der entsprechende Kosmos aufgebaut, um in der Attitude-Ära wirken zu können - ähnlich wie zuvor der Hulkster ("The Great Muscle Head Migration", ca. 1985 -1990 mit Bodybuildertypen wie Hulk Hogan, Big John Studd, Tony Atlas) oder der Blütezeit des Ultimate Warriors (Comicbuchszenerie, ca. 1990 bis 1992; WO ES NOCH VIELE BUNTE UND FARBENFROHE GIMMICKS GAB wie Undertaker, Natural Disasters, Papa Shango, Skinner, Damien Demento oder Max Moon) oder wie bei ihm Attitude Ära mit Austin zusammen. Hätten beide so cool gewirkt ohne Vince McMahon als böser Boss? Glaube ich nicht ...."
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Often imitated, never duplicated. The greatest entertainer in the history of the business. He wasn't the greatest technical wrestler, but he was an excellent storyteller in the ring and few people could build up to a great moment like the Rock could. His promo work speaks for itself, and his charisma and ability to connect with a crowd was legendary."
Rating: 10.0
Sentiment: 0.6571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rodycaz IIwrote on 18.05.2021:[10.0] "Greatest entertainer in the history of pro wrestling. Truly the most electrifying man the business has ever seen. Went on to become the biggest star in Hollywood. Wouldn't be surprised if he ends up as President of the USA."
Rating: 10.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: hatmatic96wrote on 06.05.2021:[1.0] "The rock is wayyyyyy over rated. people go nuts over the peoples elbow when it is nothing special. He is a good entertainer with his words but besides that his wrestling is pretty trash. Now he is a great actor and very funny also huge but besides that he does not have too much going for him. I would like to see him try somewhere besides WWE, such as new Japan. That way I could give him a more unbiased rating."
Rating: 1.0
Sentiment: 0.36685064935064937
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: StrongStyle2020wrote on 23.04.2021:[10.0] "Arguably the most charismatic wrestler of all time. All time great promo, and larger than life presence and personality. Indisputably great as both a face and heel. Solid in ring, but it was his character, mic work, fire, presence, and charisma that made him one of the all time greats. He will go down as one of the biggest stars the wrestling industry will ever see."
Rating: 10.0
Sentiment: 0.34920634920634924
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Razzydawrote on 20.04.2021:[8.0] "I appreciate Dwayne reinvented himself with heel Rock , after Rocky Maivia heat that comes from fans , He is one of the greatest mic talkers of all time, with many good promos. Instead his in-ring abilities weren't so great, but he did it anyway."
Rating: 8.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AnBwrote on 16.04.2021:[10.0] "I'm not sure I'll ever understand anyone who legitimately hates on Dwayne Johnson. He's one of if not the most charismatic wrestler ever, he was fantastic in the ring, was part of some of the best storylines ever in the WWE, and has gone on to an extremely successful career post-wrestling, while always managing to seem relatively down to earth and like a good guy. When I was a kid and got my hands on some VHS tapes of WWF, he wasn't exactly my favorite, but going back and watching his rise now it's really incredible to watch."
Rating: 10.0
Sentiment: 0.44040404040404046
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MrJabroniCamelClutchwrote on 09.04.2021:[10.0] "The most charismatic wrestler in history , simply had the best gift of a gab , magic on the microphone , very good in the ring , had classic feuds with Stone Cold , HHH , Mick Foley and more , no one comes close to his charisma."
Rating: 10.0
Sentiment: 0.3862962962962963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Bushidospirit22wrote on 16.03.2021:[10.0] "The most charismatic wrestler in the history of the business. I don't think I've ever seen a wrestler do less to have the entire audience eating out the palm of his hand than The Rock, his eyebrow is more over than most wrestlers. His in-ring work was alright, and probably was limited by the style of the Attitude Era, but in terms of being the total package, The Rock is certainly in discussion for the greatest of all time."
Rating: 10.0
Sentiment: 0.2976190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KyleEnjoysWrestlingwrote on 10.03.2021:[10.0] "Rock was never "my guy" during the Attitude Era, but I can still see his greatness. For as athletic a guy as he is, he will never be regarded as one of the best in ring workers & he mostly relied on punches & charisma to carry him through a match. But what he did right, he did so right that anything he did wrong was quickly overlooked."
Rating: 10.0
Sentiment: 0.3174603174603174
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Takerfan99wrote on 03.03.2021:[9.0] "One of if not the best talker in the business. Decent in the ring, but his charisma and gimmick are what make him great"
Rating: 9.0
Sentiment: 0.6555555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Burninghammercriticwrote on 20.02.2021:[7.0] "Rock has a big fight feel every time he enters a ring. He is a great promo and has a great look. So what? s the issue? His matches are at times repetitive and his move set is limited. He isn? t someone who would shine in companies where wrestling quality was key like in NJPW before his success. The Rock is mostly image and presentation but his matches have little substance. He has earns everything he has achieved and is an idol of many. I am not disagreeing with any of that, the man is a real work horse. But as a professional wrestler he is not complete."
Rating: 7.0
Sentiment: 0.20315934065934071
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: RickyHendowrote on 11.02.2021:[9.0] "By far the most charismatic man to ever wrestle (or live). His heel turn changed wrestling forever and he cemented himself as a top 3 biggest name in wrestling ever"
Rating: 9.0
Sentiment: 0.3472727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Uweuwesenwrote on 25.01.2021:[10.0] "Ein wirklich guter Wrestler und eine absolute Legende am Micro! Der definitiv Beste Mic Worker, den das Wrestling jemals gesehen hat! Period"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Chiqui Leccawrote on 16.01.2021:[7.0] "He is an entertaining wrestler, with great promos and great moves, but sometimes he bored me, is so repetitive"
Rating: 7.0
Sentiment: 0.27
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Abo96wrote on 19.12.2020:[10.0] "Guter Worker, der vor allem in Big Matches glänzte. Außerdem einer der allerbesten Micworker. Obwohl seine Promos zum Großteil aus Catchphrases bestand war er doch unglaublich überzeugend, intensiv, schlagfertig und wie kein anderer fähig zu improvisieren. Seine Mimik und die Art und Weise, wie er seine Worte betonte sorgten dafür, dass er einfach alles over bringen konnte. Als Heel und als Face gleichermaßen begnadet. Einfach der Most Electrifying Man in Sports Entertainment und nicht umsonst auch einer der bekanntesten und größten Schauspieler der Welt."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Residentwrote on 10.11.2020:[6.0] "He is a great talker. One of the best of all time. But I never thought he was a great wrestler. He oversells moves, it looks bad, and he also does the worst Sharpshooter I've ever seen. His People's Elbow looks embarassing. While he has the charisma, he's never had skill in the ring. He can be funny, sure, but he is not a good wrestler."
Rating: 6.0
Sentiment: 0.16250000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TWICEmomowrote on 06.11.2020:[9.0] "The Legend when it comes to some performing items such like cutting promos, mic skills, and self-charisma, and Dwayne himself indeed delivered lots of entertaining matches in his career. Overall, not a technical wrestler, but a legend in Sports Entertainment"
Rating: 9.0
Sentiment: -0.019999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: eleddie2914wrote on 29.10.2020:[10.0] "The rock is a damn legend he has accomplished so much in his brief run with the wwe. Rock was and is one of the greatest wwe superstars of all time. He and Steve Austin made the attitude era popular."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheV2wrote on 26.10.2020:[6.0] "He was perfect for his time. However in every other era (especially now) he probably would've failed. Rocky is all about comedy and charisma. In both aspects he's probably the best of all time. One could consider him the Ali of pro wrestling. He had the It-factor. His in-ring work could be goofy and exaggerating, yet nobody cared. Nonetheless, beyond his talk he just wasn't a good wrestler - I don't even blame him, the fans gave him that freedom. At least he was actually charismatic and not just a one-dimensional cliche hero, brother."
Rating: 6.0
Sentiment: 0.30833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: SSEighty7wrote on 25.09.2020:[10.0] "Outstanding in every way possible. You can dock him for in-ring skill, but being a great wrestler isn't always about how many moves you can do, it's about engaging a crowd and telling a story, and Rock was elite in both. Some of the best crowds in history were because of The Rock. Nobody held crowds in the palm of his hand like him. He was a transcending wrestler. Multiple video games and the Smackdown brand itself were named after HIM. Who else can say that? Legendary feuds, legendary promos that are still referenced today. There's very few people in the history of wrestling that have struck a chord like him."
Rating: 10.0
Sentiment: 0.49400000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Nerfair1wrote on 24.09.2020:[10.0] "Probably THE most charismatic wrestler of all times, at least from his era. Even if in-ring he wasn't the best, he was still great."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: martizzletaewrote on 12.08.2020:[10.0] "if you were watching wrestling, and didn't want to be The Rock then you're not me! The looks abd the charisma he carried were second to none, he could stand there abd raise an eyebrow and we'd all go insane! The man was insane and his matches werent anything to scoff at either - Rocky could work too!"
Rating: 10.0
Sentiment: -0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ma Stump Pullerwrote on 13.07.2020:[9.0] "Rock's likely one of the biggest international draws of all time if considering popularity and overall success. When it comes to promos, very few come close to the kind of connection he had with the crowd, how he could easily get him on his side or make himself a major heel magnet. His promos were some of the funnest around, but he could do intense, serious promos as well: another thing is that, unlike some wrestlers, he didn't bury the other guy he was wrestling usually, always complimenting their own skills and achievements but making sure to boast his above them. His matches with Steve Austin are masterful both in ring psychology, but also the chemistry they both had with each other was something else completely. Yeah, his ring work is a bit lackluster, and he can't fly off the top rope or hit a dozen variations of a suplex, but his simple moveset still got him massively over with the crowd, who never seemed to tire of it. Granted, if you based him off only his return match quality then yeah, I'd agree he's pretty sloppy in the ring. Prime Rock through was smooth and could work just fine with guys far more impressive (Angle, Brock, etc) and make them look like a million bucks. Rock definitely has to be considered as one of the biggest hits WWE ever had, and it's unlikely they will have such a total package again. The fact that his charisma has successfully bounced to Hollywood is a pretty big tell that he was the real deal."
Rating: 9.0
Sentiment: 0.1829605263157895
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Khalid Acewrote on 15.06.2020:[6.0] "Where do I start here, first of all: I think the rock is one of the most overrated wrestlers ever. He was above average in the ring & I find most of his promos childish & don't get me started on his people's elbow finisher."
Rating: 6.0
Sentiment: 0.15000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Wrestlefan20wrote on 11.05.2020:[9.0] "Amazing on the mic. Can play both a heel and a face really well. Great selling. Has a lot of natural charisma. Really enjoyable to watch. His in-ring skills were also great, but stopping to wrestle full-time while still being very young prevents him from being considered among the all-time greats in that regard."
Rating: 9.0
Sentiment: 0.4471428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: hirsty97wrote on 29.04.2020:[10.0] "The Rock arguably the most charismatic wrestler all time. Because of his in-ring charisma he could never have a bland match and coupled with the right opponent he could have excellent matches apropos for WM main events."
Rating: 10.0
Sentiment: 0.38095238095238093
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AndoCommandowrote on 30.03.2020:[9.0] "A talent perfectly suited to WWE's design. Legendary talker, great look and charismatic as hell, always drawing in the live crowd with whatever he had to get over. Excellent seller as well; not everything has to be "realistic" in the ring when you're telling a story. Never the best in-ring worker, but it doesn't matter when you're the most electrifying man in all of entertainment."
Rating: 9.0
Sentiment: 0.6781144781144781
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Conorwrote on 27.03.2020:[10.0] "An iconic figure, and one of the best in the business. One of the best at playing the babyface or heel role. Simply elite on the microphone and phenomenal at working a crowd. Definitely in my top 5 of all time."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AAA3000wrote on 07.03.2020:[10.0] "Neben Stone Cold war auch er es der die WWE von unten ganz nach oben gezogen hat. Schauspielerisch sowieso einer der Besten gewesen, aber auch im Ring hatte er's einfach drauf!"
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: FrankSiverowrote on 09.02.2020:[10.0] "''The Most Electrifying Man In Sports Entertainment" und das nicht zu unrecht und kann dem nur voll und ganz zustimmen. Sein Micwork zählt mit zu den besten aller Zeiten und sein Charisma ist auch einmalig. Ein Top-Draw der die Massen in die Hallen locken konnte. Im Ring vielleicht nich ganz so gut aber lieferte legendäre Schlachten gegen Namen wie Steve Austin, Triple H oder Mankind. Definitiv einer der größten Stars der Attitude Era, der es auch schaffte in Hollywood Fuß zu fassen und auch dort zu den Größten aller Zeiten gehört."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Maihei1411wrote on 17.10.2019:"Finde ihn langweilig und uninteressant sowohl im Ring als auch am Mic. Hoffe nicht das er nochmal einen Run bei der WWE macht es ist für mich einfach nur anstrengend ihm zu zusehen. Habe zwar seine Prime in der AE nicht mitbekommen aber sein Standardrating hier ist viel zu hoch."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ElPolloLocowrote on 14.03.2019:[9.0] "For me it's very hard to rate The Rock. One one side he had an amazing look (I don't like him with a shaven head), is still an incredible natural athlete, he has a great mind for all kinds of entertainment and has a weird type of charisma about him. It was not a Hogan (read: comic book superhero) type charisma, more like wanting to see what he would come up with and do next. An absolutely amazing entertainer whatever he chose to do.  On the other side many of his "classic" promos were cringeworthy back in 1999-2000 and are really bad these days, he has always been merely adequate in the ring and his regular returns have gone from bad to worse over the years, albeit not always through faults of his own.  He's not the kind of wrestler I prefer, but his ability at entertaining is absolutely amazing and deserves an adequately exalted rating."
Rating: 9.0
Sentiment: 0.19079861111111115
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JEK 1991wrote on 12.12.2018:[10.0] "Great wrestler and very exciting to watch. A jack of all trades form promos and mic skills to moves ans to babyface and heel roles."
Rating: 10.0
Sentiment: 0.595
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Steamboat2511wrote on 05.12.2018:[10.0] "Wieder gilt es ein Gesamtpaket als Wrestler zu bewerten und somit ist The Rock für mich eine der größten Legenden überhaupt. Er war nicht der technisch beste Wrestler seiner Zeit, aber andererseits sollte man seine In-Ring-Fähigkeiten auch wieder nicht unterschätzen, denn so limitiert war er auch wieder nicht. Zahlreiche legendäre Matches und Promos (vor allem mit seinem kongeniaen Attitude-Era-Gegenüber Stone Cold) bleiben dem Wrestlingfan für immer präsent. Seine Persönlichkeit stellt fast alles in den Schatten, was sich sonst im Ring bewegt. Und seine Mic-Skills sind vielleicht sogar unübertroffen. Einen solchen Entertainer gab es nicht nochmal und im Gesamtpaket gehört er fest in mein Top 5."
Rating: 10.0
Sentiment: 0.03333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TANK 81wrote on 30.11.2018:[5.0] "THE WORLD MOST OVERRATED WRESTLER IN HISTORY.  Just average gimmick back to his run before Hulk Hogan made him a famous ""superstar".  His humoristic mic skills is absolute total garbage.  His promos are like a primary school kids mental level. "Candy Ass" The one of the worst finishers ever performed in modern wrestling .  For me just a clown with an Barbie doll smile. However he became decent actor with a couple decent films now . And much , much beter physique since he get ''push'' with Hollywood Hogan's help."
Rating: 5.0
Sentiment: 0.09880952380952382
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Stott Onewrote on 27.11.2018:[10.0] "I feel like my name gives it away, but one of my all-time favorites. Even when he leaves me to make shitty children's movies, I still go crazy when he shows up and beats up some random tag team on RAW. After reminding them that it doesn't matter what their names are, of course. He really is ? I guess was... the most electrifying man in sports entertainment. I can't blame him for making the easier and faster money in Hollywood, but damn do I wish he'd come back. A feud with Rollins or Styles or Bryan would make my whole century. Oh well. I'm not taking off a single point. And yes, I know that makes me a hypocrite because I'm heading to another wrestler next..."
Rating: 10.0
Sentiment: -0.055799755799755824
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: zephyrwrote on 09.11.2018:[7.0] "I find The Rock incredibly difficult to rate. On one hand you've got an incredibly charismatic and very talented talker, on the other hand you've got a really boring wrestling style that never did anything for me."
Rating: 7.0
Sentiment: -0.04300000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: RatingsMachinewrote on 15.10.2018:[9.0] "The Rock was one of the three biggest stars of modern wrestling. That's not up for debate. His charisma is also off-the-charts. His in-ring was never great, but Rock was good enough to keep up with far better workers. The only negative about Rock is that his interviews were almost all cornball comedy, and while they got over live and made people laugh, it meant they never hit you in the gut, they never made you feel anything but momentary amusement."
Rating: 9.0
Sentiment: 0.12363636363636363
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: pappahousewrote on 02.09.2018:[10.0] "Mein absoluter Favorit, mega Charisma, mega Intensität im Ring, bestes Mic-Work aller Zeiten. Ich war damals sogar ziemlich traurig, als er meinte Schauspieler zu werden und immer weniger wrestlete."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: jamzell00wrote on 07.08.2018:[8.0] "Legendary on the mic, charismatic as hell and a decent hand in the ring. The perfect wwe wrestler and a guy this company will never see again"
Rating: 8.0
Sentiment: 0.6666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AJStylopzwrote on 13.05.2018:[6.0] "I'm a huge fan of The Rock, a fitness icon, an hollywood star, a really inspiring person with a really inspiring story but, I'm rating The Rock as a wrestler, and I think he was ok in the ring but sometimes his selling was weirdly awkward never got me very impressed and his moveset was very limited, he didn't much stuff wrong, but he was never impressive to my eyes in the ring, even though I liked some of his matches with Benoit, Jericho, Angle and Austin. His mic skills were really good though."
Rating: 6.0
Sentiment: 0.2255952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: aydings05wrote on 05.05.2018:[5.0] "The Rock gehört für mich mit zu den überbewertetsten aller Zeiten . Fande ihn schon fast immer ziemlich nervig auch wenn er der Star der AE gewesen ist. Konnte mit seinen Matches nie wirklich was anfangen außer ein paar ausnahmen .. Charisma und micwork kann ich ihm logischer weise aber nicht abstreiten hat mich dennoch nie wirklich interessiert wie so manch anderen"
Rating: 5.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Alex Maedawrote on 19.04.2018:[6.0] "Schön und gut, er war ein großer Star der Attitude Era, die einer der erfolgreichsten Zeiten der WWE war und für den Sieg in den Monday Night Wars gesorgt hat. Aber im Gegensatz zu Hogan oder Cena hat Rocky die Company nie alleine getragen. Austin war mindestens genauso groß wie er - auch der Undertaker, Mick Foley, Shawn Michaels, Triple H und natürlich Vincent Kennedy McMahon sowie sein Sohn und auch der umstrittene Vince Russo hatten einen erheblichen Teil zum Erfolg beizutragen - und hat ihn mehrfach deutlich besiegt, was eigentlich zeigen dürfte, dass Austin in der Hierachie über ihm stand und auch heute noch stehen würde. Aber Austin wusste im Gegensatz zu Rock, wann Schluss ist. Gastauftritte mit Promos und Stunner ja, Rückkehr als Aktiver nein. Dwayne Johnson war noch nie ein guter Wrestler, mit zwei zugedrückten Augen vielleicht noch solide, aber heute kann er gar nichts mehr und sobald ich ihn in der WWE sehe, spule ich vor und schalte weg. Genauso so unerträglich lange, nichtssagende Promos wie vor 15 Jahren und im Ring will ich ihn nie wieder sehen. Kann mittlerweile in etwa so viele Moves wie der Great Khali und hat keine Kondition mehr. Leute wie er sind der Grund, warum ich mich manchmal als Wrestling- bzw. WWE-Fan rechtfertigen muss. Aktuell 2 Punkte, seine Glanzzeiten bringen ihn auf durchschnittlich. (2013) UPDATE: Gut, ich bin kein Fan von The Rock, daran hat sich nichts geändert. Aber seinen Impact, sein Charisma und seinen Draht zu den WWE-Fans kann ich ihm nicht aberkennen."
Rating: 6.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dragon Fighterwrote on 26.02.2018:[9.0] "One of the greatest wwe superstars for sure. Extremely charismatic and golden on microphone. Him playing the crowd is spectacular and magnificent - The ability that very rare wrestler can do. I do love his insults towards his opponents- very very entertaining. His rivalry with steve Austin was legendary without a doubt. I don't give him full 10 because he wasn't that great in the ring. Sure he has many memorable bouts but I feel that he wasn't as good as foley or Austin for me to give 10."
Rating: 9.0
Sentiment: 0.611875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CHN325wrote on 31.01.2018:[9.0] "The greatest of all time when it comes to mic work, no one could ad lib or work the crowd better. Amazing charisma, unmatched. He was never the greatest in the ring, but he was as good has he had to be."
Rating: 9.0
Sentiment: 0.76
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: coolserazwrote on 31.12.2017:[10.0] "An absolute star. He could work, talk and say the silliest lines with amazing charisma. His feud with Austin is the greatest of the modern era and resulted in WWE becoming a superpower in pro wrestling. Is now a mega movie star due to the same charisma."
Rating: 10.0
Sentiment: 0.3321428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: test85wrote on 18.11.2017:[8.0] "Vom blöd grinsenden Babyface zu einem der sympatischsten Männer aller Zeiten. Am Mic konnte ihn kaum einer was vor machen. War sich im Gegensatz zu einigen seiner Kollegen auch nicht zu schade andere over zu bringen. (z. B. Lesnar & Jericho). Seine letzten Auftritte im Ring waren aber nicht mehr so gut. Okay er früher auch nicht der beste In-Ring Performer, aber sein 2013 Comeback ging gar nicht. Trotzdem kommt er noch immer gewaltig bei der Crowd an."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ianlapierrewrote on 04.11.2017:[6.0] "The Rock was probably the GOAT on the mic. He and Austin revolutionized wrestling in the late 1990s. He was on his way to being one of the greatest of all time. But he didn't stick around very long. I don't believe somebody with less than 10 full years in the business can be rated as one of the all time best. Potential is one thing. But I place way more value on longevity. Although one of the most entertaining ever, The Rock really was by no means any better than an average 'wrestler'."
Rating: 6.0
Sentiment: 0.2975641025641026
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Big Blue Machinewrote on 17.10.2017:[9.0] "The Rock has never been the most gifted, techincal, agile or powerful wrestler in the world, not even when he was at his peak. But he was charisma incarnated, and still today people can feel the electricity in the air when he talks at the mic in the middle of the ring. And despite the lack of good in-ring abilities, he has had many incredible matches over years. The Rock is, without a doubt, one of the most important wrestlers in history."
Rating: 9.0
Sentiment: 0.4000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: taabr2wrote on 11.09.2017:[10.0] "Simply put the best talker in the history of professional wrestling. But what I think is the best thing that The Rock brought to the table was his weird schizophrenic relationship with the fans that allowed him to play whatever role that the situation called for."
Rating: 10.0
Sentiment: 0.32
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Doctoriusefulwrote on 10.08.2017:[9.0] "Nicht der beste Wrestler aller Zeiten, jedoch der beste ENTERTAINER im und außerhalb des Rings aller Zeiten. Im Ring solide bis gute Leistungen, am Mikrofon ein absoluter Gott. Ich habe zur Attitude-Zeit, als WCW-Fanboy, nur wegen ihm angefangen RAW zu schauen, wegen seinen Promos, seinem Charisma, seiner Comedy. Alleine am Mic ein abolutes Genie, wenn er dann noch einen Gegenspieler am Mic hatte, der wenisgstens gut am Mic war, sind die besten Promos alle Zeiten dabei heraus gekommen."
Rating: 9.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fruchttigerwrote on 25.07.2017:[3.0] "Das was ich von ihm in der Anfangszeit und auch noch das ein oder andere aus der Attitute Zeit gesehen hab fand ich gar nicht so schlecht, aber als der Hype um ihn so groß würde hab ich bis heute nicht verstanden warum. Unterhaltung ist ja schon und gut aber das was für mich wirklich ein Wrestler ausmacht hat er für mich nicht. Die ganze Figur wirkt auf mich völlig überspitzt ohne Ecken und Kanten. Im Ring vielleicht Maximal Durschnitt mit einem Absolut lächerlichen Moveset Peoples Punsh, Elbow. Klar ist Wrestling Show und Moves dienen zur Unterhaltung aber solche Aktionen haben null Impact und wirken selbst im Wrestling billig. Was mich aber am Meisten stört sind seine nicht Zielgerichteten Promos, Phrasengeträsche etc. wirkt trotz Körperbau einfach nicht als wenn er in diesen Sport gehört. Untern strich langweilen mich seine Promos & seine Matches. Zu seiner Comebackzeit gegen Cena hab ich echt überlegt das Produkt zu boykottieren, bei einen anderen Gegner hat ich das wahrscheinlich auch getan. Wenn ich the Rock heute nochmal auf der WWE Fernsehlandschaft sehe schalte ich aus. Dann will ich kein Wrestling mehr sehen. 3 Punkte weil ich ihm das Talent nicht absprechen möchte und der Wrestler nicht dafür kann das man ihn so in den Mittelpunkt rückt, aus Promoter Sicht sogar völlig richtig. Für einen kompletten Wrestler fehlt mir bei ihm aber einfach so ziemlich alles. Trifft einfach nicht meinen Geschmack."
Rating: 3.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Viper99wrote on 18.06.2017:[10.0] "Den Attitude/Golden/Ruthless Agression Era Rock find ich erstklassig! Am Mic wohl einer der besten aller zeiten und im Ring auch gut! Allerdings bin ich ein absoluter feind vom PG Rock der zurück kam 2 Schlechte Matches gegen Cena zeigt... und 2 Pasable Matches gegen Punk zeigt... Und auch noch den F'N Title Gewinnt.... Ich habe absolut nix gegen den momentanen Lesnar run denn der dient ja nur dazu ein Neuen Jung star over zu bringen... (Reigns, Cesaro, Rollins.... ) während der Rock Titelgewinn nur dazu gedient hat Cena over zu bringen? ! ? ! ? ! ? Er gibt null sinn.  Allein schon Twice in a Lifetime war total banane.... Once in a Lifetime fand ich super vom Aufbau her mit Größte Match aller zeiten und den guten Promos.... Das Match ansich war nicht sehr toll.... Aber Twice in a Lifetime hat mich 0, 0 umgehauen.... lag warscheinlich auch am Punk Titelverlust der richtig Mies war.... aber ich bin abgeschweift.... Rock vor den 2013er Jahren = 10 Punkte!  Rock nach den 13er 14er Jahren = 5 Punkte.  EDIT: Damals im Rage über Rocks bescheidenen Titlerun nur die 8 punkte gegeben, aber natürlich ist Rock einer der besten Ever weshalb man klar die 10 geben muss."
Rating: 10.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BobbyDigitalRZAwrote on 19.05.2017:[10.0] "Definitiv auf dem Mount Rushmore der Wrestling Industrie. Riesen Draw, super ''übermenschliches'' Charisma, grandioser Athlet mit seinen Kip-Ups, Schlägen und Tritten. Hat am Mic mit unterhaltsamen Promos immer überzeugen können und dazu eine absolute unverwechselbare Persöhnlichkeit an sich. War einer derjenigen, die die heutige Generation dazu gebracht haben ins Geschäft einzusteigen."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Blood Pumpwrote on 07.04.2017:[8.0] "The co-ace of the Attitude era along with Steve Austin, and the company man. The Rock and Austin are pretty much equals on the mic (I'd say Rock is just a pinch better) and in the realms of charisma, but in the way of wrestling Austin has Rocky trumped. The Rock may have had a better look to even it out, but I'd still say I prefer Austin. That being said Rock deserves a lot of credit for helping propel WWE out of its niche status, to the point where it arguably superseded the old Hulkamania 80s era. I was tempted to bump The Rock down to a 7 but after rewatching many of his promos I simply couldn't. The man was pure gold on that mic, he controlled it and the audience perfectly."
Rating: 8.0
Sentiment: 0.31087301587301586
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: SuTonwrote on 18.03.2017:[7.0] "While The Rock can be said to be the most electrifying man in sports entertainment, he was never more than an above average man in the ring. He was in some great matches, though, (great chemistry with Steve Austin) and his charisma could help carry matches, but his run was short and wouldn't make anyone one of the absolute top greatest."
Rating: 7.0
Sentiment: 0.34
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hitman84wrote on 20.02.2017:[9.0] "Für mich am Mikro der beste aller Zeiten. Im Ring gab es bessere aber er konnte Main events bestreiten und zwar gut bis sehr gut( z. B. Wrestlemania X-7 gegen Austin)."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JxhDelwrote on 13.02.2017:[7.0] "A natural talent of this discipline, with a sincere passion for what he does. However, having turned to a carreer in movies after just a few years, has prevented him to become a truly great performer; also, his promo and persona were damn exciting for sure but sometimes they fell flat, repetitive or out of place. However, i damn love his "Hollywood" persona."
Rating: 7.0
Sentiment: 0.24722222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rllywrote on 10.02.2017:[7.0] "Mic: Muss man nicht viel sagen, er ist halt echt unterhaltsam 10/10 (25%) Promos: Die sind richtig gut und dagegen kann auch nichts sagen 10/10 (10%) Ring: Hier ist es echt schade um die Bewertung. Er ist schnell aber besonders gut war er noch nie im Ring. 4/10 (50%) Gimmick: Sein Gimmick natürlich durch seine Mic Skills perfekt, sowohl als Heel, als auch als Face. 10/10 (15%)   =7 Punkte"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KalleKwrote on 09.02.2017:[10.0] "Ein wirklich mitreißender Wrestler, wenn es um seine Skills am Mic geht. Zähle ihn, mit Steve Austin und den Undertaker zu den größten Stars der Attitude Ära. Seine In-Ring Skills waren mit Sicherheit nicht schlecht, aber es gibt Wrestler deren Fähigkeiten deutlich besser sind. Jedoch hat er es immer wieder geschafft, tolle Matches zu worken. Gerade die Fehden mit Triple H und Mankind finde Legendär."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Real Raterwrote on 28.01.2017:[9.0] "Ring: Fand ihm im Ring wirklich gut, konnte ein Match gut dem Big Time Feeling Stempel aufdrücken. 8/10 (50%).  Promos/Schauspieltalent:Kurz gesagt der beste in dieser Kategorie. 10/10 (25%) Charisma/Statur/Gimmick:Charisma hatte er aufjedenfall aber etwas fehlt mir einfach zur 10. 9/10 (25%) Sind dann insgesamt 8, 75 Punkte für The Great One.  = 9 Punkte"
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ApexOfEvolutionwrote on 08.01.2017:[8.0] "The Rock lebt in erster Linie von seinem grandiosen Mic-Work (10 Punkte) und dass er durch seine Hollywood-Filme über das Wrestling hinaus bekannt geworden ist. Er ist auch durchaus charismatisch aber da gibt es viele Wrestler, die ihn um Längen schlagen (8 Punkte). Zu guter letzt muss man natürlich auch seine InRing-Skills bewerten und die sind leider "nur" okay (6 Punkte). Das sind zusammengerechnet 24/3=8 Punkte."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: rjsbx11wrote on 06.01.2017:[10.0] "Dwayne Johnson comes off like the type of person who would be successful at anything he pursued, and truly he has. Why is that? The Rock's exemplary work effort is matched with uber charisma and likability. Quite simply, the Dwayne "the Rock" Johnson has "it. " After not being accepted as the white meat babyface Rocky Maivia, he transitioned the fan backlash into the wise-cracking, egotistical, third person referring asshole and it struck a chord with audiences. From his plentiful catchphrases, to his ability to change from funny to serious in a heartbeat, viewers were invested in the Rock. The best version of Rock being Hollywood Rock where he wasn't as formulaic and unleashed legendary promo after promo. In the ring, Rock was crisp while still being simplistic. He made a theatrical leg drop a championship winning move and while rudimentary nowadays, it speaks to his star quality. While he's been bland in his returns, he was (and still is) a major draw, and was untouchable in his prime. The Rock is truly one of the icons of professional wrestling."
Rating: 10.0
Sentiment: 0.18203125000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ErycK24wrote on 03.01.2017:[10.0] "The Rock carries a larger than life presence, he is without a doubt the most charasmatic wrestler in history. Austin at a close #2. The Rock helped define the golden era of wrestling."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: NastyYaffawrote on 01.01.2017:[8.0] "Not exactly an elite in ring performer (he's had some really great matches though), but he's such a natural entertainer, that I can't give him anything less than 8. A candidate for the best promo ever & perhaps the most charismatic wrestler ever. Love me some Rocky."
Rating: 8.0
Sentiment: 0.3453703703703704
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Coltwrote on 22.11.2016:[10.0] "Es ist eigentlich überflüssig viel über The Rock zu schreiben, er war nach Stone Cold der größte Star der Attitude-Zeit und bestritt etliche denkwürdige Matches. Am Mic für mich sogar der BESTE aller Zeiten, also auch besser als Austin und Michaels. Fand ihn als Einzelgänger ohne Stable (egal ob NOD oder Team Corporate) am überzeugendsten."
Rating: 10.0
Sentiment: -0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DieOffenbarungwrote on 18.11.2016:[6.0] "Lebte hauptsächlich von seiner Fähigkeit am Mikrofon, wobei mir sein teilweise überdrehter Stil nie gefallen hat. Trotzdem zählt er zu einer der größten Mic-Talker seiner Zeit. Im Ring war er allerdings nie wirklich gut, hatte dennoch einige gute Matches, was aber nicht nur an ihm lag. Würde ihm auch gerne mehr als 6 Punkte geben, aber seine Rückkehr hat einiges kaputt gemacht. Zudem ist es mehr als fraglich warum man jemand den größten Titel der Liga gibt der dem Wrestling den Rücken zugekehrt hatte, nach eine Promo er würde das Wrestling niemals verlassen. Once in a lifetime war dann auch noch die größte Verarsche. Kann verstehen wenn man ihn feiert, aber mehr als 6 Punkte kann ich ihm nicht geben. 7 im Ring, 9 am Mic. Wären 8 im Schnitt, ziehe aber wegen seiner schrecklichen Rückkehr und den ganzen kontroversen zwei Punkte ab."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: James Dean Wrestlingwrote on 09.11.2016:[10.0] "Stop Saying Rock comes back and buries talent. You need to LEARN the meaning of the word. Rock is Unfairly judged these days due to his lackluster part time run, but from an overall standpoint one of the all time greats. Not the best in the ring but good enough to have made an impact ala John Cena. lol at people saying Rock didnt have any ring skills or wasnt a good wrestler. He was a Great worker. Who put on great matches when it counts.  Good mind for the business and the ring. Could instantly change his alignment and work in the ring depending on the crowd. He played his character and time in the WWE perfectly. Even for those who says he's all jokes and catchphrases. I say you haven't seen his whole catalog. Rock has had plenty of promos off his usual schtick. That was serious and to the point. Or meaningful to build a feud. But his whole game was to be the goofy, jock.  So thats what makes him.  Anyway, 10 points for one of the best to ever do it."
Rating: 10.0
Sentiment: 0.331439393939394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Snedgewrote on 15.10.2016:[8.0] "Was haben wir ihn in 2000 gefeiert! Jeder wollte so sein wie The Rock: gut aussehend, witzig, charismatisch, und jeder trug seine Adidas-Knopfhosen! Der Niedergang kam dann nach Wrestlemania 17: Hollywood ... The Rock war immer mal wieder weg und kehrte ohne Gimmick zurück. Er schien immer mehr zu einem normalen langweiligen Typen wie du und ich zu werden. Anfang 2003 gab es nochmal mit seinem Hollywood-Heel-Gimmick eine interessante Wende aber nur für 2-3 Monate. Tja und wenn man ihn heute reden sieht, und sich danach ein altes Video von vor 16 Jahren anschaut, glaubt man kaum, dass es derselbe Mensch ist ... auch wenn hier und da nochmal kurz die Augenbraue klimpert oder in der 3. Person gesprochen wird. Im Ring war er nie der Großartigste: keine Top-Rope-Moves, nichts Spektakuläres oder Athletisches, aber lange intensive Matches konnte er schon. Viel mehr von der Wrestling-Welt als Vinnies warmes Stübchen hat er auch nie erlebt. Ohne ihn bzw. Russos Booking wäre aber auch nie so weit nach oben gekommen. Und Respekt, dass er sich für Goldberg hingelegt hat. Andere wie Austin hätten sich da wieder geweigert ..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JimSRwrote on 02.10.2016:[7.0] "He was one of the best talkers in history. His in ring skills were overrated but he offered a lot on the company. He saved WWF with Stone Cold, HHH, Taker, HBK, Angle and Mick Foley in the Attitude Era and he was the most charismatic wrestler in the history of WWE! The Rock deserves a 7."
Rating: 7.0
Sentiment: 0.38125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: croatiantwat1950wrote on 30.08.2016:[8.0] "In my opinion, the most charismatic wrestler ever. He is kinda overrated in-ring and his part-time career is horrendous(especially back when he took the belt off of Punk) and i don't like that he buries younger talents both on promo and in-ring every time he comes back without any pardon, but back in the Attitude era he built his larger-than-life persona and it is still iconic to this day. And he even put great matches of course with the likes of HHH, Stone Cold and Y2J. Dwayne just can't get 5 or lower, come on now."
Rating: 8.0
Sentiment: 0.18888888888888886
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Wrestling Foreverwrote on 05.08.2016:[10.0] "Rock ist wieder ein Mann der zwei Träume hatte er wollte schon immer Wrestler und Schauspieler werden und beides hat erreicht. Als er damals zur WWF kam war er ein kleiner Diamant dem noch der Feinschliff fehlte. Als Rocky Maivia klappte das nicht er wurde gnadenlos ausgebuht und als man dann entschied ihm zum Heel zu turnen war er so dankbar und The Rock einer der charismatischsten Wrestler überhaupt in der WWF/WWE war geboren. Gibt man ihm ein Mikro kann er einen Stunden unterhalten es ist Entertainment Pur. Privat ist Dwayne ein sehr netter und sympathischer Mensch eins seiner Hobbys ist Angeln. Seine Hochphase sehe ich so 1998-2001 wo er seine besten Fehden hatte. Vor allem die gegen Steve Austin, Triple H, Chris Jericho und Kurt Angle sind Legendär. Auch seine Comebacks fand/finde ich klasse. Er hinterlässt einfach eine Lücke die nicht geschlossen werden kann. Ist immer wieder schön wenn er wieder auftaucht. Meiner Meinung nach sollte er 2015 in die WWE Hall of Fame aufgenommen werden. Edit 05. 08. 2016 Ok das er 2015 nicht in WWE Hall of Fame kam ist nicht schlimm er ist aber auf jeden Fall drin. Mir ist auch egal was die anderen hier über ihn schreiben muss ich mal posten sein Weg in die Wrestling Welt war steinig bloß weil er Wrestler dritte Generation ist heißt das nicht das er alles sofort in der Wrestling Karriere hat bekommen. Er musste sich alles erarbeiten."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Summerslam Fan 01wrote on 31.07.2016:[7.0] "Bei The Rock habe ich immer zwei Meinungen.  Die erste natürlich ist er grandioser Entertainer und am Mic einer der besten.  Trotzdem finde ich ihn manchmal etwas overrated, im Ring nicht mehr als Solide.  Und seit seinem Comeback 2011 nervt er mich eigentlich nur wenn er kommt, seine Matches waren nicht wirklich gut, und seine auftritte bei Mania hauen mich auch nicht mehr vom Hocker.  Aber sein Charisma ist schon stark.  7 Punkte"
Rating: 7.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Marco2911wrote on 03.07.2016:[9.0] "Am Mic definitiv eine glatte 10. Ausstrahlung sowie Charisma ist definitiv ebenfalls eine volle 10, in ring ist Rock jedoch nicht der größte. 7/10 Insgesamt komme ich auf 9 Punkte für einen großartigen Entertainer."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KevinZaynwrote on 24.06.2016:[7.0] "Ich mag Rocky nicht so gerne. Vorallem seid seinem Comeback. Am Mic Grandios 10/10 , Charisma auch Super 9/10, Ausstrahlung ebenfalls gut 8/10, InRing finde ich ihn aber echt krass overrated 5/10"
Rating: 7.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AMHTPwrote on 22.06.2016:[8.0] "The Rock is a charismatic, fast-talking, universally-beloved Attitude Era icon.  Was he always a tad overrated in the ring?  Yeah, sure, and to be honest I'm not in love with his aggressively-juvenile humor.  But the fans have always gone wild for the man, and he's got a level of personal magnetism from which you can't look away.  He makes intensely compelling television every time he's on screen, and that definitely counts for something.  There's a reason he's become a movie star in addition to a legendary wrestler.  I can't place him in my own top tier; his in-ring abilities never quite merited that.  But it's impossible to take too much away from the Brahma Bull."
Rating: 8.0
Sentiment: 0.31794871794871793
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JordanACEwrote on 18.06.2016:[10.0] "The Great One, The Brahma Bull, The People's Champion, The Most Electrifying Man in all of Entertainment!  The rock had it all and then some!"
Rating: 10.0
Sentiment: 0.790625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hardcorewrote on 14.06.2016:[7.0] "By all means charismatic and a great entertainer, The Rock is one of the most recognizable faces of pro wrestling. Rock is very charismatic and one of the greatest on the mic. Rock is decent in the ring but kind of a overseller. His look and theme are cool but his finisher is horrendous. My biggest problem with the rock is that he has never seemed like wrestling is his passion he has always come out as a guy who does it for the money. But at the end of the day he is one of biggest superstars ever i just think hes a tad bit overrated"
Rating: 7.0
Sentiment: 0.5351851851851851
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: finest0000wrote on 29.05.2016:[8.0] "Etwas über the Rock zu sagen ist immer schwer, er war schon eine Legende. Am Mic wohl der beste, im Ring doch eher Limit aber trotzdem hatte er was. Auch härtere Matches bekam man mal zu sehen. Mich hat er immer super unterhalten und trotzdem wurde er mir zu sehr gelobt weil im Ring war er doch net so stark trotzdem gibt es hier eine 8/10 weil er am Mic einfach so geil war."
Rating: 8.0
Sentiment: 0.04444444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mdkarlwrote on 29.05.2016:[10.0] "shows up once or twice a year and sells thousands and thousands of tickets... collects a big fat paycheck because hes worth every penny.   sadly he cant wrestle anymore because of the movie career but when he does wrestle he still is peak phyisical condition... and being third generation he respects the business.   if it meant more money for the ptomotion for him to job... he would job... but if you want to sell an extra 15000 tickets at wrestlemania or spike a raw audience with a quarter million eyeballs then you dont job the the rock out.   people grading him less than an 8 should be humiliated by their complete lack of understanding what wrestling is and how it works"
Rating: 10.0
Sentiment: 0.0002849002849002839
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Mean Smark Callouswrote on 19.04.2016:[9.0] "One of the hugest stars in Wrestling history, right up there with Hogan, Warrior, Cena, Flair, and Austin. IMO the best mic skills ever next to Austin. Whether he was face or heel Rock was always hilarious. Only the Rock could talk shit about your favorite wrestler and make you love it. Permanently over forever. Also one of the few wrestlers that can actually act. Creator of more catchphrases than anyone else in wrestling history."
Rating: 9.0
Sentiment: 0.21443452380952377
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Jrod3160wrote on 17.04.2016:[7.0] "A bit overrated here hes fantastic on the mic yes good seller kind of over sells a bit and is sub par in ring hes a great entertainer decent wrestler sure hes had classics but still overrated but remember overrated doesn't always mean bad"
Rating: 7.0
Sentiment: 0.26927083333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TylerWhitewrote on 10.04.2016:[6.0] "Einer der legendärstes Wrestler aller Zeiten und vorallem als Micworker ist er einer der besten überhaupt. In der Attitude Era einer der größten Wrestler, allerdings steht er für mich immer schon klar hinter Austin, was seinen Legendenstatus angeht. Warum dann aber nur 6 Punkte? Ganz einfach, weil er mich seit seiner Part-Time Return nur noch aufregt. Er ist seitdem mit die größte Talentbremse, zieht übermäßig Cheap Pops und ist auch im Ring nicht mehr zu gebrauchen. Gerade, dass er regelmäßig Talente buried regt mich auch und Cena hat er ja auch nicht over gebracht. Gerade das Wrestlemania 32 Segment, von dem wirklich keiner profitiert hat, hat ihn bei mir auch nicht gerade beliebter gemacht. Ohne diese Phase seiner Karriere würde er von mir 9-10 Punkte bekommen, aber was man die letzten Jahre gemacht hat, regt mich einfach nur noch auf."
Rating: 6.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: hazBROwrote on 04.04.2016:[5.0] "Als ich mich hier Angemeldet habe trug ich meine Rosa Rote The Rock Brille und gab ihm ohne zu zögern 10 Punkte. Aber wieso 10 Punkte? Wofür? Für das was er mal geleistet hat für WWE? Das er der größte in meiner Kindheit war? Ja! Aber der heutige The Rock hat nichts mehr mit dem von damals zutun. Wenn ich ihn heute sehe hab ich dieses gewisse Fremdschämen. Der Höhepunkt seit Cena/Rock part 2 war dann gestern Abend. Ich fand alles was er gesagt hat so unglaubwürdig bis hin zum Flammenwerfer wo er ein Schild mit seinem Namen entzündete. Wow. Und dann erzählt er wie toll doch Bray Wyatt ist nur um ihn dann mit Cena endgültig zu begraben. Ich habe mich schon lange nicht mehr so über einen Wrestler aufgeregt wie über The Rock. Vielleicht feiern es viele was er heute so in der WWE treibt, feiert ihn jeder hat seine eigene Sicht. In Erinnerung behalte ich ihn mir wie er war. The Great One, The Brahma Bull, The most electrifying man in Sports Entertainment aber nicht das was er heute ist."
Rating: 5.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Psychospherewrote on 29.03.2016:[10.0] "One of the greatest of all time. Great in the ring, on the mic, can entertain no matter if he is a heel or a face. He's basically just The Fucking Rock, the full package. What else is there to say?"
Rating: 10.0
Sentiment: 0.38750000000000007
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 123 kidwrote on 20.03.2016:[10.0] "The Rock ist einer der charismatischsten Wrestler aller Zeiten und dazu im Ring mehr als solide. Zudem versprühen seine Matches eine unglaubliche Intensität. Dies und wenn man in betracht zieht, dass das E bei WWE für Entertainment steht sind es für mich glatte 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MAGICIANwrote on 17.03.2016:[10.0] "The Rock ist wohl einer der größten Entertainer dieses Sports. In der WWE hat man mit seinem damaligen Heel Turn eine wahre Legende erschaffen und jemanden, der die WWE in der Attitude Era zu dem gemacht hat, was sie heute ist. Eine große Legende. Am Mic gehört er neben CM Punk zu dem besten, den die WWE je hatte. Im Ring war er gut und mehr Charisma und eine größere Ausstrahlung als "The Most Electrifying Man in Sports Entertainment" ist nicht möglich. Man kann diesen Kerl nicht unter 10 Punkten bewerten!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JuliTheCage87wrote on 15.03.2016:[9.0] "Mit seinem (hoffentlich) "finalen" Run hat er es sich bei vielen Fans verscherzt, was durchaus verständlich ist. Keine Größe im Ring, Einleiter der sogenannten "Part-Timer-Era" und Zerstörer des großen Punk-Hypes. Ich vertrete durchaus auch diese Meinung, vergesse aber nicht, dass er in der AE großartige Arbeit geleistet hat und der WWE wohl viele Zuschauer gebracht hat und auch jetzt noch bringt. Eine Goldgrube, die vollkommen ausgeschöpft wurde, bei der manchmal sogar zu viel gebuddelt wurde und mehr und mehr Steine hinzukamen. UPDATE: 7 Punkte sind dann doch zwei zu wenig. Nachdem Punk aus eigener Kraft gegangen ist, ist der Impact des verfehlten Rocky-Runs 2011/12/13 zum Nachteil der Talente ála Punk verflogen. Allerdings bleiben dies trotzdem schwarze Tage in der WWE."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Chosen Onewrote on 28.02.2016:[7.0] "The Rock or Dwayne Johnson as some call him, was one of the best if not the best talker on the mic. A true legend and HoFer. I never really believed in his peoples elbow as that was pretty stupid. Most of his storylines I wasnt a big fan of either. He is a good actor though, he can really play his role good in wrestling or in movies. He is a little above average in the ring."
Rating: 7.0
Sentiment: 0.24732142857142864
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Phenomenal91wrote on 21.02.2016:[10.0] "Anything less than a 10 is a disservice. Some are tempted to knock points off due to his part timer status now, but he was untouchable in his prime. Next to Stone Cold, he was the #1 guy in the WWE. Unlike Stone Cold, not everybody liked the Rock. They said he was overrated and undertalented and shoved down the throats of a wrestling public that didn't want him. But he PROVED to be a great heel, a top face, and above all, a solid competitor no matter what role he was in. He was great, is great, and always will be great."
Rating: 10.0
Sentiment: 0.17685185185185184
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheLoudMouthwrote on 17.02.2016:[8.0] "Der wohl beste Entertainer aller Zeiten. Überragendes Micwork, drölf Eimer voll Charisma und eine wahnsinnige Präsenz. Leider im Ring etwas limitiert gewesen, weshalb es auch "nur" für acht Punkte reicht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Mandzukic9wrote on 04.01.2016:[6.0] "Ich habe nichts gegen Rocky als Wrestler auszusetzen. Er war im Ring immer grundsolide und ganz nebenbei natürlich ein wahnsinnig guter Entertainer mit einer phänomenalen Promo-Stärke.  An sich wären das gute neun Punkte.  Allerdings verschuldet er sich meiner Meinung nach dem Business gegenüber.  Ohne WWE wäre er heute garnichts. Und anstatt es der Promotion vernünftig zu danken, gibt er jedem blöden Projekt den Vorzug. Wenn WWE ihn mal zu nem kleinen Auftritt überredet, nimmt er dafür einen Betrag, von dem die meisten NXT-Talente selbst als Jahresgehalt nichtmal träumen dürften.  Was mich noch an ihm stört, ist, dass er seinen (unverständlicherweise) sehr großen Einfluss auf Vinnie und die Führungsetage benutzt, um jedem x-beliebigen Menschen aus seinem Verwandtenkreis einen Job bei WWE zu verschaffen. Und komischerweise bekommen diese Leute auch immer den Push, selbst wenn die konkurrierenden Anwärter die vermeintlich talentierteren Leute sind.  Ich habe wirklich nichts gegen ihn und kann nichtmal abstreiten, dass ich ihn gerne mag.  Aber sein Verhalten gegenüber der WWE und Wrestling im Allgemeinen kann ich wirklich nicht gutheißen und rechne dies auch entsprechend in meine Wertung mit ein."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Patlaborwrote on 30.12.2015:[8.0] "I always thought he lacked the genius of a CM Punk or a Jake 'The Snake' Roberts on the mic. But it never hindered his ability to get over. His greatest strength along with his larger than life personality was that he could turn absolute tosh into something entertaining. If you gave the same material to any other wrestler, it would fall flat, and he/she would get booed out of the building. That's what The Rock's presence/charisma does for you. He's lost a step or two these days and is now simply Dwayne Johnson to me, but his feuds with the likes of Stone Cold will forever be etched into my memory."
Rating: 8.0
Sentiment: 0.10500000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Josh76wrote on 14.11.2015:[9.0] "One of the faces of WWF during the Attitude Era and probable one of the best wrestlers ever! He would get a 10 if he had a longer full time career. But what he did do was awesome!"
Rating: 9.0
Sentiment: 0.7833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sascha Legendkillerwrote on 16.10.2015:[10.0] "Finaly! The Great One macht seinem Namen alle Ehre. Er ist eine der größten Legenden. Ich fand die Promo vor dem Hell in a Cell Match gegen Stone Cold gegen Undertaker gegen Tripple H gegen Rikishi gut."
Rating: 10.0
Sentiment: 0.10000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Koernelwrote on 24.09.2015:[10.0] "Das Over-Selling im Ring und die Siege gegen Punk sind zu kritisieren. Aber sonst? Sports-Entertainment auf allerhöchstem Niveau. Es gibt immer was mitzuchanten oder was zu lachen, und die Matches haben einen eigenen coolen Charakter durch das Overselling und den eigentlich lächerlichen Elbow. THE PEOPLES CHAMP!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: FloWrwrote on 16.09.2015:[10.0] "Für mich der charismatischste Wrestler aller Zeiten. Sein Auftreten von '99 bis '03 ist und bleibt einmalig.  Seine Micwork Mischung aus Komik, Provokation und Aggression sind bis heute einmalig und unvergesslich. Seine Ringleistung kann zwar nicht ganz an den Rest anknüpfen und nicht mit bspw einem Bret Hart mithalten, trotzdem hatte auch er die Gabe, in seinen Matches Geschichten zu erzählen. Egal ob als Face oder auch Heel, sein Feuer schien ewig zu brennen.  Allerdings hat seine Rückkehr vor ein paar Jahren gezeigt, dass auch er sich geändert hat und kein Vergleich mehr zu früher möglich war. Und dennoch war er für mich zu seinen Glanzzeiten ein so geniales Gesamtpaket, sodass dieses Makel nicht ausreicht, um ihm auch nur einen einzigen Punkt abzuziehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: WWEfan802wrote on 14.09.2015:[10.0] "Wrestling Scholar 98 should change his name because giving The Rock 1 is just wrong. Just because you think that he is overrated does not mean he should get a 1. Maybe he does not deserve a 10 like I gave him but there is no 9. 5 so I had no choice to give him a 10."
Rating: 10.0
Sentiment: -0.171875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: RooneyDXwrote on 11.07.2015:[10.0] "Finally... Bewerte ich den Rock. Er ist unglaublich am Mic und im Ring find ich ihn auch gut, er sollte mal wieder zurückkommen to kick somebody`s ass."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ivolutionaerwrote on 07.05.2015:[10.0] "the great one! the brahma bull! nicht immer der beste im ring gewesen aber mit abstand der am besten unterhaltendste. legendäre promos! you are not sports entertained? eben dies beherrscht er bravös. if ya smeeeeeeeeeeeeeeeellll... ! ?"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Wazzerwrote on 06.05.2015:[10.0] "He's the god damn Rock. Come on. Where would the business be without the most captivating superstar ever?"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ggultra2764wrote on 14.04.2015:[8.0] "Find Rocky to be a little on the overrated side, though I do admit the guy oozes with plenty of charisma that can draw in fans whether he is a face or heel. He is well-rounded in in-ring abilities where he could carry his part rather well and got in a number of memorable feuds with stars like Triple H, Steve Austin and John Cena. While the guy has excellent promo delivery, said promos often get on the repetitive side as they're mostly used to get over The Rock's catch phrases and have him mock whomever he is in a rivalry with."
Rating: 8.0
Sentiment: 0.22708333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Wrestlingfan96wrote on 08.04.2015:[10.0] "The Rock... Grandioser Wrestler. Er liebt es, im Ring zu sein und es macht mir immer Spaß, ihm dabei zuzusehen. Diese Liebe vergisst er trotz seiner guten Schauspielkarriere nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Shentenzawrote on 06.04.2015:[7.0] "Ja The Rock ist gerade am Micro ein wahnsinnig guter Worker, er ist athletisch, kann mit dem Publikum umgehen und hat Charisma. Er ist der Entertainment-Star schlechthin und das ist nicht negativ gemeint, aber insgesamt reicht es bei mir nur für eine 7 von 10."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: austin1987wrote on 03.02.2015:[10.0] "Ein Top Wrestler. Lieferte legendäre Matches und Fehden unter anderem mit Triple H und Steve Austin. Ist wirklich einer der Besten am Mic und hat ne spitzen Ausstrahlung. Einfach ein geniales Gesamtpaket."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Matzinhowrote on 23.01.2015:[9.0] "Von 1999 bis 2002 in meinen Augen der charismatischte Mensch der Welt, zumal einer, der an guten Tagen überdurchschnittlich gut im Ring war, der vor allem aber am Mikro Promos abgeliefert hat, die so kreativ und witzig waren, dass sie einige der besten Wrestling-Matches, die ich kenne, überstrahlt haben. Alles davor war nur die Aufbauphase für das The Rock-Gimmick - alles danach die Demontage desselben und der Übergang zum langweiligen Dwayne Johnson. Schon 2003 und 2004 war er irgendwie nicht mehr "The Rock", weil Johnson einen realistischeren, seinem Naturell eher entsprechenden Zugang zu dem Gimmick gesucht und seine Außendarstellung parallel auf seine Film-Karriere gepolt hat. Das fand ich stinklangweilig. Gerade wegen der skurril anmutenden Überzeichnung der The Rock-Persona konnte Rocky zu einem Charisma-Übermenschen werden. Dieser Zwischenweg zwischen alten Catchphrases 'raushauen, aber gleichzeitig behäbiger Gelassenheit und "Normalität" hat auf mich nicht gewirkt und mich einfach nur enttäuscht. Insgesamt kriegt er trotzdem noch neun Punkte, weil er über drei gute Jahre hinweg einfach der Hammer war."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: bigdaddy1wrote on 20.01.2015:[9.0] "This system need half points - 9. 5.  The only thing keep the Rock from being a 10 was the length of his career.  He made Rudipoo and Jabroni household words.  Super charismatic, super athletic, and a 10 on the mic."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: FCOANwrote on 25.12.2014:[10.0] "Best ever on the microphone, most charismatic of all time and a very talented athlete who can wrestle well. Also the biggest crossover star in wrestling."
Rating: 10.0
Sentiment: 0.7275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ROHfan99wrote on 30.11.2014:[7.0] "The Rock: ok, im Ring durchaus nicht schlecht, nicht super gut aber er kann doch gute Matches worken, am mic sowieso HERVORAGEND, einer der besten mic worker aller zeiten. Seine Austin Fehde und seine Matches in der Attitude Era bleiben unvergessen. Er ist wirklich eine Legende. Man muss ihn einfach mögen... BIS SEIN COMEBACK IM JAHR 2012 KAM... was ab da passierte, war schreckich? Seine Matches waren alle mist, er hat punk den Titel abgenommen, nachdem Punk das gesamte Match dominiert hat, und rock EINEN (! ) verfluchten Rock Bottom zeigte, und gewann. Das war bullshit. Die Cena matches haben gelangweilt, bis auf das ende des ersten Matches, aber twice in a lifetime war so UNNÖTIG, und naja was soll ich sagen. Er kommt raus und klaut vielen das Spotlight, siehe Rusev. Der soll seine Filme machen! Das einzig geile war sein Auftritt bei Wrestlemania 30. Aber das wars auch. Bis Attitude Era war er mega Cool. Ab 2012 einfach SCHEISSE!"
Rating: 7.0
Sentiment: 0.3177083333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Y2J316wrote on 28.11.2014:[9.0] "Einer der besten aller zeiten. Mic work göttlich, in ring ok. Zur zeit der Attitude Era war er einer der tragenden Pfeiler um die WCW zu besiegen. Eigentlich hätte ich 10 punkte gegeben, aber seine Comeback war abgesehen von ein paar netten segmenten, vorsichtig ausgedrückt bescheiden. Hollywood Rock war allerdings Promo technisch das non plus Ultra und zeigt das WWE bei Cena endlich mal mut zeigen sollte."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Arrow-Squadwrote on 03.11.2014:[6.0] "War nie ein großer Fan von The Rock. Als Schauspieler ist er mir lieber. Er wirkte mir einfach zu überdreht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Gernot Stwrote on 19.10.2014:[10.0] "Einer der besten Wrestler aller Zeiten. Er ist gut am Mic und gut im Ring. Er hat fast immer gute Matches gelifert."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: superpuroresuwrote on 02.07.2014:[10.0] "The most charismatic worker in the history of Pro Wrestling .... his good looks , charisma , and capable in ring ability is every promoters wet dream , IF YOU SSSSMMMEEELLLLLLLL ! ... what the Rock ...... is cooking /B)"
Rating: 10.0
Sentiment: 0.355
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: wwefan98wrote on 11.05.2014:[8.0] "Ich bin zwar kein Rock Fan aber im Ring und am Mic einfachn nur genial. Wenn nicht sogar einer der besten Micworker der Welt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Majkelwrote on 10.05.2014:[7.0] "I don't think that he is great. Good, but not great. The truth is he great speaker, but in ring he's worse."
Rating: 7.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: sign squadwrote on 27.04.2014:[10.0] "Kein anderer WWE Wrestler hatte je eine solche Präsenz im Ring oder in der echten Welt. Das Charisma, seine freundliche Art bei TV Auftritten machen ihn für mich extrem sympatisch. Es ist einfach sehr schade, dass vor allem von jungen Menschen nicht anerkannt werden kann, dass Menschen für ihren Unterhalt arbeiten um Geld zu verdienen. Wenn man so ein Talent hat, warum sollte man nicht das beste daraus machen? Ich glaube Rock wenn er sagt, dass er Wrestling liebt. Seine unregelmäßigen Auftritte erzeugen immer so eine interessante Reaktion, über die man sich eigentlich nur lustig machen kann. Als Wrestler hat er recht lange gebraucht, doch hatte dann einige Jahre im absolut verdienten Rampenlicht, denn der gesamte "Act", den Rock darstellte sowie seine absolut hervoragendes Wrestlingverständnis waren absolut fantastisch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Chris1201wrote on 27.04.2014:[2.0] "War in der Attitude Era ganz okay, ist aber heutzutage einfach nur noch ein geldgeiler, unsymphatischer Vollidiot, auch wenn er eine Legende ist und von so vielen Leuten geliebt wird. Ihn braucht man wirklich in der WWE nicht mehr, da soll man lieber jungen Talente eine Chance auf einen PPV Main Event Spot geben."
Rating: 2.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Edge and Christianwrote on 20.04.2014:[10.0] "Eine Legende ganz einfach!  Sein Micwork ist das Beste was ich kenne!  Er unterhält einfach ungemein.  Seine Fähigkeiten im Ring waren sehr gut, auch wenn er manchmal an Cena oder Hogan erinnerte...  Er ist ein sehr guter Schauspieler, der viele starke Filme gedreht hat - entertaimen kann er somit!  Vince soll ja Jahre bei ihm angefragt haben... das soll schon was heißen.  Schön dass er sein Comeback gegeben hat!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: alcoholicmetalmayhemwrote on 14.04.2014:[7.0] "War nie ein großer Fan von ihm. Mic-work hin oder her im Ring gehört er nie zu den besten. Schauspierlisch allerdings wirklich Top. Habe mittlerweile zahlreiche gute, sogar richtige gute filme gesehen mit ihm in der Hauptrolle."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Edgecution99wrote on 05.03.2014:[10.0] "Mein absoluter Lieblingswrestler, unglaubliches Charisma, der hammer am Mikro, im Ring viel mehr als nur solide eigentlich ziemlich stark, reißt mich immer mit, egal bei welchem Match. Hat aber in den letzten paar Jahren an Leistung abgenommen. Jedoch möchte ich ihn noch einmal im Ring sehen. (WM 31)"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Giant2wrote on 01.03.2014:[8.0] "Johnson hat ohne Zweifel Charisma ohne Ende und schaupielerisches Talent. Als Wrestler ist er grundsolide und hat die nötige Ringpsychologie drauf. Allerdings hat er in den letzten Jahren ein wenig nachgelassen und lebt nur noch von seinem Image."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Foleysbabytoywrote on 28.02.2014:[10.0] "Liebt er diesen Sport so sehr, wie er es sagt? Ich weiß es nicht. Aber er ist unbestritten einer der größten, die jemals eine Promo gehalten haben. Darüber hinaus konnte er sich auch im Ring sehen lassen. Es müssen 10 Punkte sein. The Rock konnte seit Ž98 im Wrestling immer überzeugen. Nur im Kino nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: zackwoowoowooryderwrote on 20.02.2014:[10.0] "Einer der besten die die Wrestlingwelt je gesehen hat. Sehr unterhaltsam, gut am Mic und seine wrestlerischen Qualitäten sind sehr sehr stark. Kurz gesagt einfach ein Legende in der WWE."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sokar Drenwrote on 11.02.2014:[10.0] "Der größte entertainer im Ring und am Mic. Seine beste Zeit war von 1997-2003. Und dafür bekommt er von mir 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HereComesThePainwrote on 04.02.2014:[10.0] "Wie kann ich meinem Vorbild und Lieblings-Sports-Entertainer weniger als 10 Punkte geben?  Legendäre Mic-Works, legendäre WM-Mainevents mit Steve Austin, einfach unterhaltsam. Von den Filmen sollte man hier nicht reden. Das einzige, was ich ihm nie verzeihe, ist, dass er schon zum zweiten mal abhaute vom Wrestling, nachdem er vorher groß sagte "Ich werde euch Fans nie mehr verlassen"..... aber Rocky ist und bleibt ein Entertainer, ein Herzensmensch und hat auch mit der Cena-Fehde super unterhalten."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: LowJomoKiwrote on 01.02.2014:[9.0] "Super Wrestler der im Ring ganz okay (ein Technikgott ist er definitiv nicht) aber am Mic wohl mit der Beste der jemals da war. Von daher denke ich sind 9 Punkte mehr als angebracht."
Rating: 9.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: davidrh115wrote on 02.01.2014:[8.0] "Er war einer meiner großen Favoriten in der Attitude Ära. Leider zu viele Filmpausen gemacht daher nur noch sehr wenig Wrestling. Trotzdem ein sehr guter Mic-Worker und Wrestler.  Aus meiner Sicht ein Wrestling Star auf absteigendem Ast, Leider!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: yanuswrote on 24.12.2013:[9.0] "Great charisma and mic-skills, but had a way too short career for a 10 rating (beside that he was pretty average in the ring)"
Rating: 9.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: FollowTheBuzzardwrote on 24.12.2013:[10.0] "DER MICWORKER, DER bekannteste WRESTLER DER WELT! Seine MIc-Skills suchen echt seines gleichen und seine In-Ring Moves sind auch sehr gut ausgeführt. Im letzten Anlauf sehr klever als Teilzeitwrestler eingesetzt, so das dieser WOW-Effekt nicht verloren geht. DANKE WWE, DANKE ROCKY. !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: apc24wrote on 17.12.2013:[9.0] "GREAT entertainer and can even be good at wrestling. He's good on the mic and has all the charisma in the world. His matches though tend to sometimes have flash finishes."
Rating: 9.0
Sentiment: 0.7333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: LordOfLimitwrote on 11.12.2013:[9.0] "The Peoples Champ The Rock ist IMO am Mic ein Gott im Ring aber immer nur mittlerer durchschnitt was seine Mic Skills aber wieder weg machen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CLPSKYLINERwrote on 30.11.2013:[9.0] "Legendär am Mic.. Power im Ring.. Ich mag ihn sehr gerne.."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dreamforcewrote on 25.11.2013:[10.0] "Ich war Zeit meines Lebens ein riesiger Fan von The Rock, da er ein Allround-Talent ist: Gut in Promos, gut und voller Energie im Ring und eine unglaubliche Verbindung zu den Fans. Sein Comeback in die WWE habe ich sehr gefeiert und sein erstes großes Match gegen John Cena war extrem gut. Dennoch muss ich zugeben, dass ich die ganzen alten Catchphrases, die er noch immer pausenlos runterrattert, langsam langweilig und nervig finde. Deshalb bin ich ganz froh, dass er nicht Vollzeit zurück ist, sodass man seine seltenen Auftritte noch sehr genießen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: SoRoNwrote on 14.11.2013:[10.0] "für mich einfach einer der besten ever! er war zwar nicht der beste wrestler auf diesem planeten, konnte jedoch immer wieder sehr gute matches bestreiten! was er aber hatte wie kaum ein zweiter war charisma und ausstrahlung! seine micskills sind für mich unübertroffen bis heute - da kann ihm keiner das wasser reichen - egal ob als peoples champ oder corporate champ/hollywood rocky - ob face oder heel er konnte beides - wurde gefeiert wie gehasst wie kaum ein zweiter in diesem business! für mich einfach eine lebende legende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Daneraswrote on 03.11.2013:[9.0] "Seine typische Mimik ist eine Augenbraue hochzuziehen. Er macht sehr gut Mic, und ist impulsiv. Er kann gut und hart Brawlen, und kann super Spinebuster (knallt richtig zum Boden). Richtig Wucht! Wenn ich seine Kämpfe sehe, spüre ich in mir manchmal viel Adrenalin."
Rating: 9.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: svenulreich1893wrote on 28.10.2013:[9.0] "Ja, The Rock. Eine lebende Legende. Wäre er für mich, wenn er nicht SO zurück gekommen wäre. Wenn er schon zurück ist, dann wenigstens öfters. Und jüngeren den Titel wegnehmen ist auch nicht okay.  Aber trotzdem, 9 Punkte für früher. Geile Promos, gut im Ring, hat auch alles gut verkauft. Und was mir bei den Bewertungen wichtig ist: Wie kommt der Wrestler bei den Fans an, was für Reaktionen bekommt er? Und da ist Dwayne ganz weit oben. 9 POINTS."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: WCW Foreverwrote on 19.10.2013:[10.0] "Hat ein bisschen an seinem Denkmal gekratzt aber er ist einfach ein klasse Entertainer und bekommt dafür immer noch 10 Punkte von mir."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: koeddylaemmlewrote on 29.09.2013:[10.0] "Entertainer to the highest degree. The Rock may not have had a long career but he sure as hell had a memorable one. The Rock was apart of so many classic moments. Although just a notch below Steve Austin & Hulk Hogan as the greatest of the modern imo."
Rating: 10.0
Sentiment: 0.4023809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Antimasterwrote on 28.08.2013:[8.0] "Früher mit das beste am mic, sowie im Ring zumindest solide. Heute besteht sein Micwork aus kindischen Beleidigungen und Catchphrases, im Ring mittlerweile auch eher bescheiden, deswegen 6 Punkte. Edit: Jetzt, wo er endgültig aufgehört hat, Aufwertung auf 8, da ich jetzt die ganze Karriere bewerte, und 2011-13 nur ein kleiner Teil davon ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ImACMPunkGuywrote on 28.08.2013:[5.0] "The Rock war früher richtig klasse am Mic war er Top im Ring war er gut. Seit seiner Rückkehr ist er in beidem ein Flop."
Rating: 5.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: voicelesswrote on 24.08.2013:[7.0] "Im Ring finde ich ihn limitiert - seine Ringpsychologie finde ich trotzdem sehr gut. Am Mic finde ich ihn jetzt nicht so toll, weil ich einfach kein Fan von Catchphrases bin. Seine Promos mögen ganz cool sein, haben aber null Hirn. Er ist ein toller Entertainer und kann mit dem Publikum toll umgehen. Ich persönlich finde ihn schon lange nicht mehr zeitgemäß."
Rating: 7.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HighlightHEELwrote on 24.08.2013:[10.0] "Was Rocky angeht, lasse ich die heutige Zeit einfach mal dreist aus der Bewertung heraus. Er kam für ein paar Matches zurück und konnte mich nur bei WM28 ein wenig überzeugen, dass er es im Ring nicht verlernt hat. Er mag zwar nie der beste Wrestler gewesen sein, aber die Fans haben seine Matches trotzdem gerne gesehen. Am Mikrofon einer der besten aller Zeiten, was er teilweise im wöchentlichen und täglichen Rhythmus ablieferte, war zwar auch stark auf seine Catchphrases getrimmt, aber deshalb nicht weniger schlecht als eine Promo von Austin (eigentlich dasselbe) oder sogar Jericho. Einer der wenigen Worker, der sowohl als Heel als auch als Face auf absolutem Top-Niveau war, was auch daran lag, wie er mit dem Publikum spielen konnte. Entweder er war geliebt oder verhasst. Wahnsinn. Außerdem eine DER Figuren, die die Attitude-Ära geprägt haben, auch wenn er im Prinzip nur Austins Kronprinz war. Und als dieser dann ging, war auch Rocky schon auf dem Sprung. Wegen all dem, was er in der Vergangenheit geleistet hat, muss ich ihm zehn Punkte geben, auch wenn er nach 7 Jahren Hollywood nicht mehr das ist, was er mal war."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: UnforgivenSicknesswrote on 23.08.2013:[2.0] "Er ist ja ein guter Schausspieler aber das wrestlen hat er einfach nicht mehr drauf. Der erste John Cena in der WWF und das er WWE Champion geworden ist war einer der größten Fehler die es je gab da er nie in Raw aufgetaucht ist und Kämpfe gemacht hat."
Rating: 2.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BenutzernamenBraucheIchNichtwrote on 17.08.2013:[8.0] "Bis 2004 war noch alles gut, was danach kam, fand ich eher Grütze, hätte einfach beim Film bleiben sollen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DaNiwrote on 29.07.2013:[10.0] "Der am meisten elektrifizierenste Mann im Sports Entertaiment hat eine legendäre Zeit hinter sich, er wurde für mich zum Grund Wrestling anzusehen. Auch jetzt hat er bei der letzten Wrestlemania bewiesen, dass er immernoch für gute Matches zu haben ist. Ich hoffe, man sieht ihn noch das ein oder andere mal aktiv in der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: babakondawrote on 21.07.2013:[8.0] "OK he is a legend and a very good talker. But his two finishers are very very weak. The Rock Bottom is just the start of CM PunkŽs Anaconda Vice and the Peoples Elbow? Dolph Ziggler hits 10 Elbow Drops in a combo but still doesnŽt get the win!"
Rating: 8.0
Sentiment: 0.48062499999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AdRwrote on 05.07.2013:[5.0] "Ich kann die ganzen 10 Punkte Bewertungen hier nicht wirklich verstehen. Er hat zwar viel Charisma und unglaubliche gute Mic-Skills, aber im Ring ist er nicht besonders. eher schlechter als der Durchschnitt. Außerdem fällt es mir schwer einen Mann ernst zu nehmen, der von sich immer nur in der 3. Person spricht und bei dessen Hypeviedeo am Ende eine Kuh muht. Ins gesamt eher mittelmäßig."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Lecterwrote on 06.06.2013:[10.0] "Okay in the ring, but that's almost completely irrelevant because of his transcendal charisma and mic skills. The Rock was an unbelivable character, so big that expanded beyond the realm of pro wrestling. One of a kind."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: christianpecevskiwrote on 22.05.2013:[10.0] "Ein super Wrestler. Hoffentlich hört er nicht auf. Er ist ein Top Entertainer."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Unrated Superstarwrote on 02.05.2013:[10.0] "Einer der Gründe Wrestling in der Sports Entertainment-Form zu lieben - wenn nicht sogar DER Grund. Darum ist es auch kaum verwunderlich, weshalb die WWE es z. Z. so schwer hat wieder echte Stars zu erschaffen, da die Messlatte einfach enorm hoch ist. Mit Abstand der wohl beste Wrestler der letzten zehn Jahre was Promos und Charisma angeht. Sogar noch besser als Bret Hart, Steve Austin, HBK und Triple H! Schwimmt auf der gleichen Welle wie der Undertaker mit! Jedoch hätte er es bei dem einen WM28-Match gegen Cena belassen sollen. Als WWE-Champion 2013 hat er doch etwas an seinem Legenden-Status gekratzt. Jedoch noch lange nicht so gravierend wie es Leute wie Hulk Hogan und Ric Flair getan haben. Sollte aufgrund seiner Gesundheit und Hollywood-Karriere die Wrestling-Stiefel eh endgültig an den Nagel hängen. Sehe ihn inzwischen ohnehin lieber in Action-Filmen als im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HooliNerdwrote on 10.04.2013:[9.0] "Vom Wrestler zum Hollywood-Star. Charisma stimmt und seine Promos sind die Besten, die es jemals im Sport-Entertainment gegeben hat. Er bekommt von mir nur keine 10, weil es andere besser drauf haben im Ring. Ansonsten stimmt alles bei ihm."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: UndertakerChriswrote on 25.03.2013:[3.0] "Die früheren Erfolge und den genialen Wrestling Charakter von Rocky kann man ja nicht abstreiten, doch was ich seit Anfang 2011 ertragen musste, raubte mir einfach jegliche Illusion des "people's champion". Klar, diverse Auftritte sorgen für massig Raitingschübe und es ist jaauch schön ihn hin und wieder zu sehen, aber alles andere liegen zu lassen, damit er im Rampenlicht steht, dabei noch grauenhafte Promos schmeißt und im Ring vielleicht dem Great Khali Konkurrenz macht, ist einfach arm. Mitlerweile genieße ich keine einzige Rock Minute mehr. Sowas von durchschaubare Storylines, die er nicht schreibt, ich weiß, aber er hat Einfluss und es geht nunmal dabei nur um ihn. Aus aktuellem Anlass kann ich also beim besten Willen nicht mehr Punkte geben. Schade."
Rating: 3.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: NightShadowWarriorwrote on 16.03.2013:[4.0] "Er WAR einer der besten wenn nicht der beste der Attitute Era aber er kommt nur zurück um seine Filme zu vermarkten. So jemanden den Titel zu geben zeigt wie sich die WWE immer weiter verschlechtert."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: dudemanbearpigwrote on 10.03.2013:[9.0] "An excellent mic and in-ring worker, but loses a point for being a part-time champion."
Rating: 9.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Leonewrote on 08.03.2013:[10.0] "The Rock's full time wrestling career was as short as 6 years.  But those 6 years were absolute DYNAMITE!  I would describe him as being like the Muhammad Ali of the WWE.  Fantastic charisma, very funny and sharp, on the microphone, only an elite few can match him, and on top of that, he backed it up in the ring.  His selling was excellent, his in-ring storytelling is still up there, to go along with being 6'4 and 260lbs, he's very strong and fast for his size.  Sure, the People's Elbow might be gimmicky, but it's both memorable and a reminder.  He might not have been a wrestler travelling all over the world to hone his craft, but as a sports entertainer, he is 1 of the best.  I know he's getting a lot of stick for his 2013 title reign, but his legacy is very much intact."
Rating: 10.0
Sentiment: 0.31313725490196076
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Titansrevengerwrote on 06.03.2013:[8.0] "The Rock is a truly great WWE champion, he exudes charisma and confidance. However, I view the Rock as a prima donna of sorts, having left the WWE earlier for the bright lights of Hollywood he comes back and demands the spotlight. I also never understood how he was ever a peoples champion the guy is totaly narcetistic. His greatest fan should probably be his mirrored reflection. So despite these inharent flaws in his character the Rock is truly a bonified superstar. My favorite Wrestlemania match has to him against Steve Austin in the main event at WM 17."
Rating: 8.0
Sentiment: 0.3958333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Jack Slaterwrote on 02.03.2013:[9.0] "Niemand ist besser am Mic. (bzw. war) Niemand! Die Promos mit Jericho sind bis heute unerreicht, seine Fehden mit Austin ebenfalls.   Im Ring hat er ebenfalls was drauf aber da überzeugt er nun mal nicht auf ganzer Linie."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Aquifelwrote on 28.02.2013:[7.0] "Tja, zu Attitude Zeiten einer DER Wrestler überhaupt. Klar, der Drive von damals, das Booking und einfach die Präsenz, die er und so manche seiner Gegner an den Tag gelegt haben, haben viel dazu beigetragen, dass alles funktioniert hat, denn Rock war nie der beste Wrestler (nett ausgedrückt). Die Abwertung erfolgt allerdings aufgrund der jüngsten Geschehnisse. Bei WM 28 war Rock noch top in Form, doch momentan fehlt es The Rock an Kondition und Agilität, was ihn weiter limitiert und ihn mit seinem "Attitude"-Stil wie ein Relikt wirken lässt. Gleiches gilt für seine Promos. Er redet so klasse wie eh und je, aber den Promos fehlt die Substanz. In der Attitude Era kein Ding, heutzutage, gerade wenn er es mit Punk und Cena zu tun hat, fällt das aber doch ganz schön auf. Aber schon lustig, dass gerade The Rock momentan beweist, dass, so grossartig die Attitude Era war, sie retrospektive auch nicht nur aus Gold bestand und sie, ähnlich wie er, ein Relikt vergangener Tage ist. Daher nur noch 7 Punkte momentan."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AwesomeMizwrote on 23.02.2013:[7.0] "Geht ja garnicht! Er ist WWE Champion und käpft nur bei Pay-Per-Viehs auf-. -!  Ich finde wenn er schon bei RAW und Smackdown ist , sollte er wänigstens "normale" Matches bestreiten! Trotzdem bekommt er 7 Punkte wegen seiner Leistung im Ring und was er am Mic drauf hat müsste eigentlich jeder wissen."
Rating: 7.0
Sentiment: -0.2884615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DARK-THREATwrote on 19.02.2013:[2.0] "Es wird jemand Champion, der 10 Jahre nicht gut geworked hat und eine im Vertrag festgeschriebene Anzahl an Auftritte pro Jahr hat. Dazu tritt er in keiner Houseshow auf? Wie würde es The Rock sagen? No no no no no. What this is, tonight, is about something special. Nur habe ich von ihm seit seiner Rückkehr und Titelregentschaft nicht Gutes und Spezielles gesehen. Das ist aktuell nicht nur Mainstream für kleine Kinder, das hat David Arquett Niveau, was die WWE hier vabriziert. Der Titel verliert durch ihn sehr viel an Wert für die, die sich jeden Tag in den Hallen die Allerwertesten aufreißen... Ich habe großen Respekt vor seiner Karriere von damals, aber ich möchte den The Rock JETZT bewerten, und da kommt nicht mehr als 2/10 herraus."
Rating: 2.0
Sentiment: 0.35714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The lonesome death of Hattie Carrollwrote on 18.02.2013:[4.0] "Ich finde es erstaunlich, wie ein so begabter Schauspieler (und dafür wird Dwayne Johnson ja gehalten) derzeit im Ring solch ein Kokolores fabriziert. Er sellte in beiden Matches genauso miserabel, wie man es von John Cena in seinen dunkleren Matches gewohnt war. So sehr er der WWE mächtig viele Moneten einbringt, so steht sein derzeitiges Engangement unter einem fragwürdigen Stern. Er besiegt den Besten der Welt zweimal in recht schwacher Ringkonditionierung, um sich dann bei WM XXIX wieder aus dem Staub zu machen?   Er erhielte von mir ob seiner einstigen Arbeit mindestens 8 Punkte, doch die Demontage seiner selbst erlaubt mir, nicht mehr als 4 Punkte zu vergeben.   PS: Ich werde mir seinen Beitrag bei G. I. Joe 2 anschauen; dort ist er sehenswert und bedeutend besser aufgehoben."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Diggertakerwrote on 14.02.2013:[8.0] "The most electrifying man in sports entertainment. Great gimmick and great mic skill, but being a overseller not match his stature and he could have better moves... it would be better if The People's Elbow was not his finisher."
Rating: 8.0
Sentiment: 0.62
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheUndertaker45wrote on 12.02.2013:[10.0] "Einer der Besten aller Zeiten. Am Mic einfach göttlich und unglaubliches Schauspieltalent. Ich habe bisher kein Match von ihm verpasst. Do you smell what the rock is cooking? -Yes."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kaneanitewrote on 04.02.2013:[10.0] "Wohl der wichtigste Mann neben Stone Cold in der Attitude-Ära. The Rock hat ein Charisma und eine Ausstrahlung wie kaum ein anderer und weiß, wie man das Publilkum mobilisiert. Das spiegelte sich durch unzählige göttliche Promos wieder, die einen oftmals keine Luft zum Atmen lassen, da man bei ihm wirklich sehr oft lachen muss/musste. Im Ring war er auch immer sehr ansehlich und er zeigte stets konstante Leistungen. Auch heute weiß er nach wie vor zu unterhalten und kann selbst nach jahrelanger Ring-Abstinenz gute Leistungen im Ring zeigen. Hut ab vor diesem ohne Zweifel großartigen Entertainer. Ich freue mich auf die RtWM mit ihm an der Spitze. Geniesen wir es noch, solange es möglich ist."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Klabauterwrote on 02.02.2013:[5.0] "The Rock ist also wieder WWE Champion....   Warum er das verdient hat ? Ich werde es wohl nie verstehen.  Die Titelregentschaft von CM Punk hätte sich so gut geeignet damit einen Neuen zu pushen oder aber eine große Story um Punk und den Undertaker aufzuziehen. Aber nein, The Rock musste es sein.   The Rock ein Superstar, ein Teilzeitwrestler, einer der den Titel nicht braucht und m. M. n auch nicht verdient hat.   Nun gut sein Match gegen Punk war ansehnlich, seine Promos durchschnittlich und er war früher ein Topstar der WWE, deshalb kann ich ihm gerade so noch 5 Punkte geben, mehr sind aber bei ihm auf keinen Fall drin."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Gomphwrote on 30.01.2013:[7.0] "Hätte ich ihn vor 10 Jahren bewertet hätte ich ihm am liebsten 11 von 10 Punkten gegeben. Aber nur Nostalgie machts im Moment einfach meiner Meinung nach nicht. Auch wenn der Mann verdammt fit aussieht, hat man beim Match gegen Punk doch gesehen das ihm einfach die gewisse Routine fehlt, da reichen nunmal 3, 4 Matches im Jahr nicht um mit dem aktuell bestem Wrestler der WWE mitzuhalten. Aber er kann sich ja steigern, bin mal gespannt was er dieses Jahr bei WM abliefert, deswegen noch Luft nach oben was die Punkte angeht. Soviel zu seinen Fähigkeiten im Ring.   Aber auch sein Mic-Work find ich nicht mehr ganz so überzeugend. Klar, er ist noch einer der besten wird er auch immer bleiben. Letztes Jahr in de Fehde mit Cena fand ichs auch noch ganz gut. Aber seitdem er gegen Punk fehdet wirken die Promos langweiliger, es wiederholt sich zu viel. Es wirkt als hätte er zu wenig Zeit aber wird trotzdem gezwungen jeden einzelnen Catch-Phrase und ein paar Beleidigungen einzuwerfen. Da wirkt er gegen Punk einfach nur blass."
Rating: 7.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: greatone087wrote on 27.01.2013:[10.0] "Wohl der meist elektrisierenste Mann im gesamten Entertainment. Er weiss die Fans zu hypen, sie in seinem Bann zu ziehen. Sein Mic-Work hat zwar im Gegensatz zu damals etwas nachgelassen, aber nach wie vor versteht er es mit dem Mic umzugehen. Im Ring ist er meiner Meinung nach ein guter Athlet, auch wenn er ebenfalls zu der damaligen (aktiveren) Zeit etwas mehr konnte. Letztlich gibt es aber schlechtere. Wenn man noch dazu bedenkt, das er nicht Vollzeit im Ring steht, kann man dies auch so hin nehmen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 8BitLegendwrote on 22.01.2013:[9.0] "Eigentlich einer der wenigen 10er Kandidaten, aber sein aktueller Run versaut den Schnitt dann doch noch etwas. Ich kann einfach nicht ignorieren, dass er ernsthafter, aufgesetzter, weniger spontan, nervöser, eingefahrener und verbissener geworden ist. Das sieht mir etwas nach Midlife Crisis aus. Nicht, dass man mich falsch versteht - auch heute überstrahlt er noch die meisten anderen Pappnasen im Lockerroom, er ist nur nicht mehr ganz so gut und locker wie früher."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CrIppIL3RTIRiXwrote on 17.01.2013:[1.0] "Er hat kein Punkt oder höher Punkte verdient, deshalb weil er nichts im Ring kann außer Basics nichts.  Mic work kann der Mann aber das muss man sagen und deshalb 1 Punkt. Ich kann auch nicht verstehen warum dieser man mehr punkte als Benoit Japaner Flair und tausend andere Männer hat, obwohl sie viel besser im Ring sind als er."
Rating: 1.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Johnny-Tennerwrote on 15.01.2013:[1.0] "Der Gesamte Charakter wirkt für mich fürchtbar aufgesetzt. Kann man langfristig jemanden ernst nehmen der von sich nur in der 3ten Person spricht? Also ich nicht. Die Person hinter dem Hype ist meiner Meinung nach nicht ansatzweise so Talentiert und Charismatisch wie sein Ruf. Im Ring spielt er den typischen "WWE Entertainer". Matches von ihm sind nicht sonderlich ansprechend, eher langweilig. Seine so gelobten Micwork Skills beschränken sich nur auf völlig banalen Trash und seine Chatchphrase's of Doom. Nostalgie Effect oder wie auch immer man das nennen möchte, mir gefällt das ganze nicht und nervt mich schon beim 2ten Mal hören. Für mich ein Grund das Main Stream Wrestling zu beukotieren "Wrestler" wie er haben meiner Meinung nach nicht's in einem Main Event zu suchen. Ich freu mich schon heute auf den nächsten Wrestlemania ohne The Rock."
Rating: 1.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: dumbadswrote on 07.01.2013:[7.0] "Zur Attitude Ära und zu der Zeit an dem ich began Wrestling zu schauen war für mich The Rock der beste. Super Skills, tolle Fehden und auch immer super überraschende Wendungen und nen tolles Mic Work mit super Charisma.  Diese zeit ist für mich lange vorbei und The Rock steht nun auch nicht mehr ganz oben auf meiner Liste. Die zeit mit The Rock war für mich einfach nur toll aber mittlerweile freue ich mich mehr, wenn ich sehe das ein neuer Film von Dwayne Johnson zu sehen ist. The Rock ist für mich mit dem Ende der Attitude Ära gestorben. Danach war das nix mehr, vlt bin ich auch einfach nur zu sentimental dafür.. Aber für die MEGA ERRINERUNGEN gebe ich The Rock 7 Punkte. Und hoffentlich wird die WWE mal wieder so, wie sie für mich mal war mit Typen und guten Gimmnicks."
Rating: 7.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: GTS Punkwrote on 03.01.2013:[10.0] "The Rock ist durch seine genialen Mic-Skills und sein Charisma zur Legende geworden, auch wenn er vergleichsweise kurz bei der WWE war. Wer hätte schon vor 3 Jahren gedacht, dass er wieder zurückkommt und sogar noch ein paar Matches bestreitet, mich freut es jedenfalls. 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CMPunkVotVwrote on 27.11.2012:[6.0] "Mag ihn seit seiner Rückkehr überhaupt nicht mehr. Für das was er in der Attitude Era geleistet hat bekommt er von mir aber trotzdem 6 Punkte."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: rey mysterio 104wrote on 04.09.2012:[10.0] "Seine alten Auftritt einfach nur perfekt. Passt perfekt ins "Sports Entertainment". Auch wenn die Auftritt seit seinem Comeback teilweise etwas holperig wirkten, muss es hier, aus meiner Sicht, die Höchstnote geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: LM Punkwrote on 30.08.2012:[9.0] "Charisma hat the Rock ja ohne Zweifel, und er hat die Leute ja wirklich elektrisiert mit seinen Promos, aber im Ring war er doch nicht ganz so gut wie ein HBK, Y2J oder Bret Hart."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Nouriwrote on 28.07.2012:[10.0] "The Great One, The People's Champion, The most electrifying man in all of entertainment oder einfach nur: The Rock! Im Ring sicherlich kein Kurt Angle oder Shawn Michaels, aber trotzdem überdurchschnittlich gut und vor allen Dingen der vielleicht beste Entertainer, den dieses Business je gesehen hat. Unzählige Catchphrasen, von denen jede einzelne stets von der gesamten Zuschauerriege mitgegröhlt wird, jederzeit unterhaltsame Promos, diverse Klassiker gegen Stone Cold Steve Austin, Hulk Hogan, Triple H oder Mankind/Mick Foley bedeuten, dass The Rock zu den größten Superstars allen Zeiten zählt!"
Rating: 10.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Chris Silverwrote on 25.07.2012:[10.0] "Damals wie heute meiner Meinung nach einer der besten im Wrestling. Er überzeugt im Ring und am Mic. Er passt einfach perfekt in das Geschäft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Prodirwrote on 25.04.2012:[9.0] "Rocky hin, People's Champ her, Brahma Bull da, Great One dort. Um es kurz zu halten, er ist sau gut, keine Frage. Er kann wrestlen und schlechte Promos mit dem Grenzwert null. Dummerweise ist die Hollywood-Masche für michd er ausschlaggebende Grund, warum ich ihn als Worker nicht so zu schätzen weiß, wie andere es tun. Ein Worker ist für mich nur dann interessant, wenn er des Öfteren Nadelstiche setzt. Was macht Rock? Er tut es permanent, da flacht das Interesse schon einmal ab, aber nichtsdestotrotz ein Fachmann auf seinem Gebiet."
Rating: 9.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Tabowrote on 05.04.2012:[10.0] "Schon damals gehörte er zu meinen Favoriten. Für mich am Mic der Beste und auch wrestlerisch einzigartig. Mir fällt einfach kein Grund ein warum ich "The Rock" nicht die volle Punktzahl geben sollte :D"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ChrJahnwrote on 04.04.2012:[10.0] "Der wohl als Gesamtpaket perfekteste Wrestler aller Zeiten. Und der mir Abstand beste Entertainer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Randy Owrote on 02.04.2012:[10.0] "Fastination The Rock. Promo = Gott. Charisma = Gott. Aura, Felling, Mimik = TOP. Wrestling = Top. Klar technisch nicht der beste, aber das interessiert hier gar keine. Gehört zu den Top 5 der WWE."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 7TheEwrote on 22.03.2012:[3.0] "In den 90gern ein guter Entertainer und noch nie ein guter im Ring, einer der vielen Hulk Hogan nachfolger vor allem Movetechnisch.  Sicher immer gut am Mike aber heute brauch den Kerl keiner mehr.  Ist warscheinlich der größte Verräter den das Buisness gesehen hat und der erste Third Generation Superstar dazu, der aus einer Traditions Familie stammt.  Heutzutage macht er sein Geld durch schlechte Filme, was irgendwie passt zum Hulk Hogan Gimmick.  Hatte glück zu richtigen Zeit dazu sein heute würde den keiner mehr brauchen!  Zeigt bei Raw zur Zeit das er zum alten Eisen gehört, was bei ihm sich nicht wirklich positiv auswirkt."
Rating: 3.0
Sentiment: -0.11538461538461539
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Marlowewrote on 19.02.2012:[10.0] "So wie bei manch anderen das sehr gute Wrestling das etwas schlechtere Mic-Work wett macht, ist es bei The Rock umgekehrt. Nicht der allerbeste Wrestler, doch wohl der beste am Mic aller Zeiten. LEGENDE!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fighter Daronwrote on 02.02.2012:[8.0] "Another overrated great worker, but he is disgusting to me."
Rating: 8.0
Sentiment: -0.09999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Manolowrote on 28.01.2012:[8.0] "Im Ring ist The Rock nicht mehr als Mittelmaß, allerdings verstand er es zu seiner aktiven Zeit wie kaum ein anderer, mit Charisma und am Micro die Massen zu begeistern. Ein best-off seiner Matches bräuchte ich nicht, seine Promos höre ich aber nach wie vor gerne."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ganymedwrote on 17.01.2012:[10.0] "Etwas anderes als die Bestnote ist hier nicht möglich: The Rock war einfach elektrisierend. Im Ring hatte er vlt. kein allzu unfangreiches Move-Arsenal vorzuweisen, aber er hat immer eine unglaubliche Dynamik, die einen mitgerissen hat. Zudem kenn ich sonst niemanden, der in Promos so unterhaltsam war und diese so gut rüberbringen konnte wie The Rock. Dabei war es egal, ob er Heel oder Face war. Mein Favorit ist Rocky's Part in der "Tiny Ding-A-Ling"-Promo."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Clubbiwrote on 04.12.2011:[4.0] "The Rock, nachdem ich John Cena nur 5 Punkte gegeben habe kann ich The Rock nur 4 geben er hat vill ein bisschen mehr Charisma im Ring als John Cena sonst ist aber mit John Cena zu vergleichen. Sein Comeback war einfach nur unnötig und zeigt das der Mann noch schlechter wurde als er vor ein paar Jahren schonmal war. Daher kriegt der "gute" Dwanye Johnson nur 4Punkte."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: JornLandewrote on 21.11.2011:[1.0] "Mehr als nur überbewertet wie man bei der Series wieder gesehen hat. Immer die selben Attacken die selben Catchphrases wäre der Crowd nicht hinter ihm gewesen hätte er keinen einzigen Matchklassiker gehabt."
Rating: 1.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: IWLwrote on 16.11.2011:[9.0] "Einer der besten Sprecher am Mikrofon aller Zeiten. Wer es schafft markige Sprüche zu beginnen, die vom Publikum beendet werden "And if The Rock says ever... " (Rock) "... he means ever" (Publikum), hat das Showgeschäft einfach verstanden. Auch die Fähigkeit in einer (1) Rede, wie bei RAW am 14. 11. , einen Film zu promoten (GI Joe 2), für ein Restaurant in Bosten zu werben und sich selbst nach langer Auszeit ins Rampenlicht zu stellen, ist aus Marketing Sicht genial.  Was mich an The Rock begeistert und unglaublich charmant macht, ist sein breites Grinsen während seiner Reden im Ring. Ich hab das Gefühl, er kann seine Reden in der dritten Person nicht mehr/immer ernst nehmen und wenn ein Künstler über sich selbst lachen kann, zeugt das von Größe.  Sportlich gut bis sehr gut, und mit der Rock N Sock Connection eines der besten Tag Teams aller Zeiten. "If you smell, for what... " (Rock) "... the SOCK is cooking" (Mankind). Beste Unterhaltung."
Rating: 9.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hu-Manwrote on 08.11.2011:[4.0] "Bitte nicht anschreien! Bin erst kurz nach Rocky's Blütezeit zum echten Wrestling-Fan geworden und kann daher nur benoten, was ich von ihm kenne und das ist nichts gutes. Mich nervt er einfach nur mit seinen dämlichen Videobotschaften, lahmen Promos und leeren Versprechungen. Kann absolut nicht verstehen, warum ihn die meisten immer noch begeistert feiern und Cena im Gegenzug verschmähen. Mit 26 sollte ich wohl zu den "Männern" gehören, aber scheinbar bin ich noch immer Kind und daher Cena-Fan! ;)"
Rating: 4.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Franchise Playerwrote on 07.11.2011:[5.0] "Von vorne weg: Ich kann Rocky nicht leiden, ja. Ich mag seinen Stil nicht und seine Catchphrases nerven mich gewaltig und auch generell kann er mich nicht begeistern (auch nicht als Schauspieler). Ist das allerdings ein Grund unter 5 Punkte zu geben? Nein. Für mich ist Dwayne ein ähnlicher Kandidat wie John Cena, der genauso die 5 Punkte bekommt von mir, als ein Worker der zwar bescheidene Skills In-Ring hatte, aber dennoch immer mal wieder was ansehnliches auf die Matte bringen... kann."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Undertaker555wrote on 04.11.2011:[6.0] "Ich kann den ganzen Hype um ihn nur zum Teil verstehen! Seine Matches waren nicht unbedingt der Schocker und es war meist immer das gleich Programm. Die 6 Punkte bekommt er nur noch für sein Mic-Work war unerreichbar bleiben wird!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: stallownagewrote on 29.10.2011:[9.0] "Absolute 90er-Legende und Kindheitshero meinerseits. Wurde allerdings im Frühjahr verbal von John Cena an die Wand gedrängt und bot bei Wrestlemania nicht die "Electricity", die man erwartet hatte. Da war ich etwas enttäuscht, von daher "nur" 9 Punkte für den Great One."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Teekaywrote on 27.10.2011:[8.0] "The Rock sehe ich immer gerne. Er hat eine Präsenz wie kaum ein zweiter. Mir fällt überhaupt nur Shawn zu seinen besten Zeiten ein, der da mit halten kann. Allerdings kann ich langsam die immer gleichen Phrasen nicht mehr hören."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: what89wrote on 13.10.2011:[10.0] "Finally...  Für mich DER Entertainer schlechthin. Die unterhaltsamen Momente, die er mir als Wrestlingfan beschert hat verdient höchsten Respekt.  Im Ring fand ich ihn überzeugend, auch wenn es zugegeben bessere gab.  Schade, dass es ihn nach Hollywood gezogen hat (mit bemerkenswert guten Filmen im Gegenzug zu anderen.. ) Freue mich auf die kommenden Shows mit ihm."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sirius Van Grathwrote on 02.10.2011:[6.0] "Am Mic gut, aber oft nervt er mich dort auch. Und dazu bin ich absoluter Pro-Wrestling-Fan und das konnte man bei The Rock in seiner Main Event Zeit kaum sehen. Deswegen bekommt der Hollywood-Star von mir nur 6 Punkte!"
Rating: 6.0
Sentiment: 0.20833333333333331
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: michiswrote on 01.10.2011:[8.0] "Ohne Zweifel einer der Besten (Mic)-Worker aller Zeiten. Er hatte und hat einfach dieses Superstargen, dieses gewisse Etwas dass es braucht um ganz nach oben zu kommen. Seine Matches sind ansehnlich und mit dem richtigen Gegner kann er auch Top Matches en masse rausholen. Allerdings ist der nicht der begnadeste Ringtechniker und deshalb sehe ich hier davon ab, ihm die volle Punktzahl zu geben. 8 Punkte für den Great One sind aber sicher angemessen."
Rating: 8.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rated R Punkwrote on 06.09.2011:[8.0] "The Rock ist ein Promogott! Er liefert echt mit jeder Trüben Tasse eine wahnsinns Promo hat (und ironischerweise müssen seine Mitsprecher meistens nur rumstammeln :D) The Rock ist der perfekte Entertainer, hatte Charisma wie kein zweiter und war durch seine art wirklich was besonderes. Das Problem sind nur seine Wrestling Skills, wie viele war er im Ring eigentlich auch sehr beschränkt... Außerdem fande ich wurde vieles überbewertet und nicht alles was mit The Rock zu tun hatte verwandelte sich in Gold (auch wenns viele nicht wahr haben wollen)"
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Golgotawrote on 28.08.2011:[10.0] "The most electrifying man in all of Entertainment! 1999-2002 die Inkarnation des Wrestling-Faces. Danach der turn zu Hollywood-Rock, welches mMn eines der besten Heel-Gimmicks aller Zeiten war. The Rock ist das Maß aller Dinge in Sachen Micwork, war agil im Ring und bei all seinen Matches äußerst präsent. Seine Karriere war kurz, but this man has done it all. Und er verdient die glatte 10 für die beste Zeit, die der Wrestling-Industrie vergönnt war."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fall Out Boywrote on 15.08.2011:[6.0] "Gutes Micwork das ist bekannt. Trotzdem habe ich mich auch an seinen Promos mittlerweile satt gesehen. Lässt mittlerweile jegliche Glaubwürdigkeit vermissen (i will never leave again) und ansonsten fallen mir wenig Gründe ein warum Rocky 10 Punkte verdient hat? Im Ring hat er mir noch nie wirklich gut gefallen. Hier im besten Fall solide. Soll ich ihn jetzt höher bewerten weil eine Legende ist und der vielleicht berühmteste Wrestler aller Zeiten? Nein, ich denke nicht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Bananaramawrote on 14.08.2011:[9.0] "Er gehört zu den größten des Business, er hat eine Ära geprägt, unzählige sehenswerte Matches bestritten. Dennoch ist er für mich keine 10 Punkte wert. Er mag zwar massig Charisma besitzen und er ist auch wirklich unterhaltsam, aber woran es ihm mangelt, ist an In-Ring Skills. Das ist jetzt nicht so negativ gemeint wie es klingt, aber für mich ist jemand der 10 Punkte verdient, der wirklich alles auf höchstem Niveau beherrscht und dazu gehört ein Rock nicht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: StoneColdStunnerwrote on 04.08.2011:[10.0] "Unglaublich gutes Micwork und auch im Ring nicht schlecht, schade nur, dass er wohl nie wieder richtig aktiv sein wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Marth99wrote on 04.08.2011:[10.0] "Der beste Mic Worker aller Zeiten. Der auch im Ring gute Matches geliefert hat. Leider hat er seine Karriere wegen des Filmsgeschäfts beendet. Zum Glück sieht man ihn in seinem warscheinlich letzten Match bei Wrestlemania 28 nochmal."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The last Outlawwrote on 02.08.2011:[6.0] "Also, zu the Rock muss ich sagen, ist einer der besten und vorallem bekanntesten Wrestler aller Zeiten, sein Talent am Micro ist spitze, und ich habe auch gerne seine Matches angesehen, nur was mich damals gestört hat, war das er viel zu oft den Helden gespielt hat, ähnlich wie bei Austin, dennoch freue ich mich das er gegen John Cena nochmal in den Ring steigt"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Alan Smitheewrote on 28.07.2011:[10.0] "Toller Wrestler, weltklasse Promos und er hatte nie ein Problem damit sich klar besiegen zulassen. Schön ist es auch das er jetzt damit angefangen hat dem Wrestling etwas zurückzugeben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Heavy Bwrote on 25.07.2011:[10.0] "Ein verdammt guter Wrestler im Ring, der es draufhatte mit dem Publikum zu spielen. Und was das micwork angeht gab es einfach keinen besseren, auch wenn es leute gibt die seine Fähigkeiten am Mic nur als eine ansammlung von catchphrases halten, muss man, wenn man selbst dazu gehört, doch selbst ehrlich mit sich sein, denn wem ist allein bei seiner Rückkehr nicht ein schauer über den Rücken gelaufen, als das erste "finally..... " nach Jahren kam!"
Rating: 10.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Johnny Divinewrote on 23.07.2011:"Als The Rock in der ersten Raw-Episode nach Wrestlemania sagte "I will never leave you again", hätte man ihm unter Umständen sagen müssen, dass Raw jede Woche stattfindet. Rocky ist mittelmäßig im Ring, dafür fliegt einem bei seinen Promos einfach der Fernseher um die Ohren. Ich teile aber die Meinung vieler User hier, dass Johnson sich einfach zum Entertainment-Maskottchen für Justin-Bieber-Fans gemacht hat. Der heute Rock mag zwar als immer noch "Attitude" wirken, allerdings hat er mit diesem nicht mehr wirklich viel gemeinsam. Mittlerweile ist Rocky für mich kein Wrestler mehr; er nutzt lediglich den Wrestling-Ring und seinen Namen um innerhalb der WWE irgendwelche neuen Filme, Spiele, Merchandise oder meinetwegen Haferflocken zu verkaufen - und das enttäuscht mich"
Rating: No rating found
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Tamamwrote on 13.07.2011:[10.0] "DAS totale Paket ! Aufjedenfall. Grandiose Promos, großartige Matches und legendäre Fehden. Zusammen mit Stone Cold der beste der je da war. Ihm und Austin gebührt dank das es die WWE noch gibt und wir so fantastische Erinnerungen haben ! DANKE !"
Rating: 10.0
Sentiment: -0.9375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: NHJ2102wrote on 11.07.2011:[10.0] "Der beste Micworker aller Zeiten! Mir gefielen teilweise seine segments besser als die matches.. wodurch seine ringfähigkeit nicht schlecht gemacht werden soll... auch im ring hat er viele gute matches gezeigt.. Neben austin und hunter der Worker der späten 90er Jahre... für mich eine Ikone"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: theiconwrote on 27.06.2011:"@Prince of darkness The Rock hat viele leute over gebracht bspw. Mick Foley oder Bill Goldberg also von dem her stimmt deine aussage überhaupt nicht."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Donald Duckwrote on 23.06.2011:[10.0] "Meiner Meinung nach der beste Wrestler aller Zeiten. The Rock hatte echt alles."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Vanniwrote on 15.06.2011:[10.0] "Alles andere als eine 10 wäre unverdient. Der Mann ist immer noch groß und war es früher erst recht. Im Ring zwar sicherlich kein Bryan Danielson, sondern doch sehr limitiert, aber er hat es geschafft, das durch sein unglaubliches Charisma sehr gut zu kaschieren. Und auch wenn er häufig nur Catchphrase an Catchphrase reiht, The Rock elektrisiert einfach und zieht die Leute in seinen Bann. Und das ist in meinen Augen genug, um die volle Punktzahl zu bekommen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: FriarFergusonwrote on 16.05.2011:"Will ihn nicht recht bewerten, denn er war einst eine Riesennummer doch hat sich heute zu einem Sinnbild von "WWE inc. " verwandelt. Ein ewig labernder B-prominenter Entertainer, der all den kleinen Justin Bieber Fans da draußen zeigen soll wie cool und Massentauglich Wrestling geworden ist."
Rating: No rating found
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: EFGwrote on 15.05.2011:[9.0] "Er ist ein guter Kämpfer und er ist sehr gut mit dem Mikrofon"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sloverwrote on 16.04.2011:[10.0] ""If you smell what the Rock is cooking". Man riecht es nicht nur, man sieht es auch. Rocky hält klasse Promos und hat viele tolle Matches gezeigt. Der Jubel von den Fans, wenn er in die Halle kommt, einfach unglaublich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CM Edgewrote on 10.04.2011:[1.0] "Mein Vorposter hats eigentlich perfekt ausgedrückt. Der Kerl ist kein Wrestler! Er ist nur in die WWE gekommen, weil er sich einen namen machen wollte um im Filmgeschäft erfolgreicher zu sein. Tut mir leid ich kann den nicht mehr sehen."
Rating: 1.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HesBackwrote on 29.03.2011:[10.0] "Er und Austin sind der Grund wieso ich immernoch Wrestling Fan bin. Mit ihnen hab ich damals angefangen und wenn Rocky wieder geht werd ich damit auch aufhören.  Ich hab es die ganzen Jahre versucht aber ein Cena, Miz, Orton oder CM Punk bringens einfach nicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: C0nspiracywrote on 27.03.2011:[8.0] "The Rock ist einer der besten unterhalter im Wrestling. Seine Promos gehören zm besten was es gibt. Rocky brauchte nicht zu Wrestlen um die leute zu unterhalten. Seine Promos bei Smackdown gehörten zum lustigsten was ich in der WWE bisher gesehen habe. Abzüge gibts beim Wrestling, ich bescheinige ihm zwar gute Brawler Qualitäten aber in puncto Ringpsychologie und ist er allenfalls befriedigend. Deshalb "nur" eine 8 für den "Great One""
Rating: 8.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Opalawrote on 14.03.2011:[10.0] "The Rock, was soll man blos sagen außer das er einer der charismatischsten Wrestler aller Zeiten ist. 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Raven Ravnoswrote on 05.03.2011:[10.0] "Einfach eine Granate. War im Ring zwar nicht der Überflieger, aber wußte immer zu unterhalten. Göttlich am Mic und wer konnte schon so mit dem Publikum spielen? Braucht auch heute nur eine einzige Promo um Jungs wie Cena alt aussehen zu lassen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AirRiedlewrote on 03.03.2011:[10.0] "Immer noch electrifying, wie eh und je!  Ich war ja anfangs skeptisch, aber was waren das bitte für 2 saustarke Promos, die mal eben fast alles aus den letzten paar Jahren in den Schatten stellen. In-Ring lässt sich nur die Vergangenheit bewerten, die ist zwar nie überragend gewesen, aber wird durch das Charisma mehr als wett gemacht!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Lakaseywrote on 26.02.2011:[10.0] "Weniger als 10 Punkte werden diesem Mann nicht gerecht. Er hat vor Jahren eine Stufe erreicht, auf der sich maximal der Undertaker, Austin und Hogan befinden. Keiner kommt an sein Mic-Work ran und im Ring beweist er gutes Selling. Vom puren Wrestling her natürlich nix außergewöhnliches, aber dieser Mann schafft es einfach wie kein Anderer, die Massen für sich zu begeistern. Und daran können auch keine "Dont-Belive-The-Hype"-Menschen etwas dran ändern. Rocky hat die 10 Punkte verdient, für den besten Entertainer, den das Bussiness je gesehen hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MultiXerowrote on 20.02.2011:[8.0] "Sein Comeback war wirklich großartig.  Aber ihn deswegen gleich zehn Punkte zu geben finde ich doch ein wenig übertrieben.  Er ist ein grandios Entertainer, aber im Ring ist er bestenfalls nur Durchschnitt.  Acht punkte halte ich daher für gerechtfertigt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rated R Champwrote on 20.02.2011:[10.0] "The Rock war einfach ein Phänomen für sich, in seiner verhältnismäßig kurzen Karriere hat er alles erreicht, was es als Pro Wrestler in den Staaten zu erreichen gibt und obwohl er nie mehr als Durchschnitt im Ring war, ist er neben Austin wohl der größte Star der Neuzeit, den das Wrestling hervorgebracht hat. Zu seinem Charisma und Micwork muss man wohl nichts mehr sagen, da spielte er immer in seiner eigenen Liga."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Jack Londonwrote on 19.02.2011:[10.0] "Man, man, man ist dieser Typ gut, das hat er bei seiner Rückkehr zu RAW wieder einmal eindrucksvoll bewiesen. Charismatechnisch kommt niemand, wirklich niemand an ihn ran, meiner Meinung nach steckt er auch Hulk Hogan und Steve Austin in die Tasche, niemand hat das Sports Entertainment so gelebt und so geprägt wie Rocky. Ich sehe zwar auch gerne gutes Wrestling, aber ich bin im Herzen eigentlich Sports Entertainment-Fan und Rock ist einfach das personifizierte Entertainment, was auch der Grund für seinen vergleichsweise erfolgreiche Filmkarriere ist. Er ist natürlich nicht der beste Wrestler, bei weitem nicht so gut wie Danielson, Styles oder die Hart-Brüder, aber er ist einfach der größte Superstar aller Zeiten."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KazhiusKlaywrote on 17.02.2011:[10.0] "Hoffentlich lässt Vince nun dieses verdammte PG-TV sein !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Mizisawesomewrote on 17.02.2011:[9.0] "Ich würde The Rock auch in 10000 Jahren, genauso wie John Cena, nie in einer Wrestling-Database eine 10 geben. Promotechnisch, charisma-technisch war und ist er meiner Meinung nach DER GRÖSSTE. Aber im Ring ist er längst nicht so gut, dass er eine 10 verdient hätte. Aber als der beste Entertainer des Buisseness hat er sich unsterblich gemacht, das kann man ihm nicht absprechen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: wolverinewrote on 15.02.2011:[10.0] "Ich sage es kurz und knapp ... er ist der größte Entertainer den ich bei der WWE je gesehen habe - und daher trägt er seinen Namen als "most electrifying man in all of entertainment" voll und ganz zurecht."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ywainwrote on 15.02.2011:[10.0] "Hat nichts von seiner Strahlkraft eingebüßt. Schön, dass er wieder da ist und nichts verlernt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Splitherwrote on 03.02.2011:[10.0] "Im Ring sicherlich kein Riesentalent, jedoch wusste er immer zu entertainen, die Menge mit zu reißen.  So einer fehlt heutzutage definitiv!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Suppiwrote on 01.02.2011:[10.0] "Einfach einer der Besten! Schade, dass es wahrscheinlich nie mehr ein Match von ihm geben wird. Wenigstens kann ich seine Filme und alte Matches anschauen und die Hoffnung stirbt zuletzt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kitanoyamawrote on 30.01.2011:[10.0] "Relativ kurze Karriere, aber dafür umso mehr Erfolg. Er konnte viel und sein Erfolg spiegelte sich da passend wieder. Ich würde ihn gerne wieder bei einer großen Promotion kämpfen sehen, aber leider hat er sich als Schauspieler schon zu sehr etabliert. Trotzdem volle Punktzahl für all das was er kann und geleistet hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: NaGoyahwrote on 23.01.2011:[10.0] "Einfach einer der besten den es je gab, als Wrestler und als Micworker sowieso, egal ob als Heel oder Face."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Lampard4000wrote on 12.01.2011:[10.0] "Er hat die Fans bewegt wie kein anderer. Leider war seine Karriere schon zu Ende, als ich begann, mich für Wrestling zu interessieren. Aber das waren die guten alten Zeiten. Mit Austin, Rock usw. Nicht wie heute mit Leuten wie Santino Marella oder Zack Ryder (Aber das ist Geschmacksache). Ich habe auf einer berühmten Videoplattform folgenden Spruch gelesen, der es ganz gut trifft: "The Rock's eyebrow have more charisma than John Cena's career""
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Necronwrote on 03.12.2010:[10.0] "Ich hatte bisher nur 8 Punkte für Rocky vergeben. Aber nachdem ich mir zuletzt einige PPVs aus seiner starken Zeit angesehen habe... mit diesen phänomenalen Promos und den tollen Mainevents... da muste ich auf volle 10 Points aufwerten. Auch wenn er technisch nicht der beste Wrestler der Welt gewesen sein mag - seine Ringpsychologie ist unerreicht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheRock 7 Champwrote on 28.11.2010:[10.0] "Kein Wrestler kann mit ihm mithalten. Der Brahams Bull ist, für mich, der beste Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DanielBryan1986wrote on 21.11.2010:[8.0] "Rocky Maivia war eher als Start sehr schwach. The Rock mit seinen Kämpfen gegen Hogan, Austin, Triple H und ja auch das auf der DVD zu sehende Match gegen Eddie Guerrero waren im Ring sehr Sehenswert. Gegen Mankind 1999 beim Rumble ging der Spaß zwar etwas verloren aber kurz danach den Face Turn gegen Ministry Coperation wieder lustig. The Rock hätte ich zwar tatsächlich Heute auch mal gesehen gegen Orton, Cena und sogar gegen Sheamus aber dazu kommt es leider nicht. Kurze Karriere aber es reicht zumindest für eine 8."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Cheffewrote on 01.11.2010:[10.0] "Er ist neben Hulk Hogan, der Mann, der mich zu diesem Sport gebracht hatt. Was für ein Charisma... UNGLAUBLICH! So einen wie Rocky wirds nie wieder geben,"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Nerowrote on 30.10.2010:"Showstopper45 schrieb am 16. 03. 2010: [1. 0] "Im Ring mehr als nur überbewertet am Mic muss ich wohl oder übel zugeben sehr gut. Jedoch hat er dem Wrestling den Rücken zugedreht obwohl die ihm zu dem machten was er jetzt ist. Deshalb verdient er nicht meinen Respekt das tut mir Leid. sonst würde er locker 7 Punkte einheimsen. " Aus meinem Sichtwinkel Schwachsinn, nur weil jemand durchs Wreslteln berühmt geworden ist und dann etwas neues ausprobiert, womit man durchaus populärer wird, verdient dieser jemand doch trotzdem Respekt."
Rating: No rating found
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Blade Bourdeauxwrote on 10.10.2010:[10.0] "Der Typ ist ein komödiantisches Naturtalent hoch 10. Eine vergleichbare Aura im Ring erzeugen, wenn es hoch kommt, nur eine Handvoll Wrestler. Und das, was er am Mic und durch seine Mimik zu leisten vermag bringt ihn letztlich nach ganz, ganz oben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Felice-del-mondowrote on 23.09.2010:[10.0] "The Rock ist für mich der größte Star den die WWE jemals hervorgebracht hat. Seine Fehden mit Austin, die legendären Promos und sein Match gegen Hogan gehören für mich zur Grundlektüre eines Wrestling Fans !  Wie der die Hallen zum Beben brachte bleibt wohl immer unerreicht ! I still smell what The Rock is cooking !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Ramwrote on 11.09.2010:[5.0] "Ich wär nie einer der vom Rocky Virus angesteckt würde, ich kann nicht verstehen wie so er so beliebt ist. In Ring Fähigkeiten sind mehr als Bescheiden. Seine Mic. fähigkeiten sind meiner Meinung nach überbewertet, manchmal könnt ich über seine Sprüche lachen manchmal jedoch haben mich seine immer gleichen/ähnlichen Spruche einfach nur genervt. Also ich bin eigentlich schon froh darüber das der Herr Dwain Johnson sich dafür endschieden hat lieber Schlechte Filme zu drehen als der Wrestlingindustrie zur Last zu fallen. Von Daher Gott segne dich Dwain Johnson."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: rockysadrianewrote on 10.09.2010:[10.0] "Es gibt wohl niemanden den ich so schmerzlich in einem Wrestlingring vermisse wie ihn! Danke für alles, Rocky!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rock93wrote on 04.09.2010:[10.0] "Am Mic DER BESTE wo gibt, charismatisch, immer extrem unterhaltsam und unglaublich kurzweilig. Es ist echt schade, dass dieser Mann solche Filme dreht, anstatt weiter zu unterhalten. An ihm müssen sich alle messen, die glauben, charismatisch oder "awesome" zu sein."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: indestructablewrote on 29.08.2010:[10.0] "Der Mann, an denen sich zukünftige Generationen von Wrestlern messen müssen wenn es um Micwork, Ausstrahlung und Charisma geht. Der perfekte Entertainer, hat mich als Face und Heel gleichermaßen überzeugt und war immer ein Grund zum Einschalten. Ihm eine schlechtere Note zu geben weil er nicht mehr ab und an bei der WWE auftrittist das Gleiche als würde man von jemanden verlangen regelmässig in der Grundschule vorbeizuschauen weil man den Hauptschulabschluss geschafft hat.."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BenZenwrote on 21.08.2010:[8.0] "Klasse Entertainer mit grandioser Mimik und herausragendem Crowdwork. In Sachen Ausstrahlung war The Rock einfach das Maß aller Dinge. Im Ring mit durchaus erinnerungswürdigen Schlachten und ein Eckpfeiler der Attitude-Ära. Leider blieb es bei einer verhältnismäßig kurzen Karriere und somit auch nur ein paar Jahren im Main Event und dazu noch der Mangel an technischen Finessen verhindern mir die Bestnote."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: umaga the samoan bulldozerwrote on 21.08.2010:[10.0] "Das beste Micwork aller Wrestler, im Ring stark... 10 Punkte"
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ray Robsonwrote on 17.08.2010:[9.0] "Er ist halt The Rock. Da kommt man an einer Top-Bewertung einfach nicht vorbei."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Rated R Superstar EDGEwrote on 07.08.2010:[10.0] "Im Ring war er jezt nicht so gut wie etwar ein Chris Benoit oder Shawn Michaels. An Triple H kam er auch nicht so richtig ran aber er hat mit Steve Austin, Chris Jericho, Kurt Angle und dem Undertaker einige Klassiker gezeigt und war auch insgesamtan vielen guten Matches beteiligt. Auch sonst hat er eigendlich immer durchschnittliche bis solide Matches gezeigt. Am Mic bleibt er unereicht. Keiner kann so gute Commedy Promos wie The Rock halten wobei er es aber verstand nie die Grenze zur Lächerlichkeit zu überschreiten. Auch was ernste Promos angeht konte er mit Leuten wie Chris Jericho, Steve Austin oder Mick Foley mithalten. Meiner Meinung nach der beste Mic-Worker den es bis jetzt gab! Er hat seinen Superstar Status auch immer dazu verwendet um andere over zu bringen. Bestes Beispiel Chris Jericho oder Brock Lesnar. Alles in allem klare 10 Punkte für The Great One."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheRock902102wrote on 04.08.2010:[10.0] "Man kann einfach nichts anderes sagen, als das The Rock einer der größten Wrestler aller Zeiten ist und war.  Alleine sein Micwork ist bis heute einzigartig und nicht zu übertreffen. Dem gegenüber waren seine Matches auch immer eine extraklasse, dafür musste er nichtmal eine grandiose Technik besitzen, seine Matches waren auch so sehenswert.  Und seine Promos waren auch immer die unterhaltsamsten, noch zu erwähnen ist das es bis heute keinen lustigeren und charsimatischeren Wrestler gab, ganz klar er verdient die 10 Punkte wie kaum ein anderer."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Anti-Championwrote on 11.07.2010:[5.0] "Ziemlich überbewertet, würde er wie Triple H heute noch wrestlen, die meisten würden ihn nicht mehr sehen wollen, sein Glanz hat nur wegen seiner kurzen Karriere bestand. Er ist und war nie ein Grund für mich die WWE zu gucken."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Zack Ryderwrote on 21.06.2010:[10.0] "Am Mikrofon unübertroffen bis heute , dass ist aber nicht seine einzigste Fähigkeit denn sowohl in „richtigen“ Matches als auch in Hardcore-Extreme Rules-No DQ-No Holds Barred-Schlachten bietete er Wrestling vom feinsten. Dwayne Johnson ist unumstritten in den Top 5 der besten Entertainer aller Zeiten!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: SES-Memberwrote on 15.06.2010:[10.0] "THE ROCK ist und war einfach klasse. Seine Promos zählen auch Heute noch zu den besten und selbst wenn Er nicht der der größte Techniker war wurde es nie langweillig Ihm im Ring zuzuschauen. Er bestritt klasse Fehden und ist nicht zu Unrecht auch Heute noch ein Idol vieler Menschen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: morph80wrote on 31.05.2010:[10.0] "Egal was er gemacht hat, die Leute schauten gespannt zu und amüsierten sich. Matches, Promos, Backstage Segmente, Interviews, keiner konnte das Publikum so fesseln und unterhalten wie er. Wirklich schade dass er sich nur auf die Schauspielerei konzentriert, hoffentlich lässt er sich mal wieder bei der WWE blicken."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Chakuzawrote on 25.05.2010:[10.0] "Für mich ist er neben Bret Hart der Beste der jemals im Ring stand."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Erasedwrote on 22.05.2010:[9.0] "Wirklich erstklassig, was für eine Show der Mann jedesmal geboten hat! Sein Charisma kann man ihm garnicht abstreiten! Da können nur wenige mithalten, eben ein wahrer Entertainer. Überdurchschnittlich seine In-Ring Skills, aber keinesfalls tadellos."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Edge96wrote on 13.05.2010:[10.0] "Im Ring zwar gut aber sicher nicht der beste. Dafür ein Haufen Charisma und einer der allerbesten am Mic. Seine Promos waren einfach nur genial. Hoffe sehr (auch wenn es nicht sehr realistisch ist), dass er noch einmal in den Ring zurückkehrt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: RickRollwrote on 12.05.2010:[4.0] "Im Micro, ziemlich gut, desöfteren auch sehr stark, jedoch ist sind für mich die In-Ring-Skills am wichtigsten und Rocky ist im Ring durchschnittlich, und desöfteren auch unterdurchschnitt, deshalb gebe ich ihm nur 4 punkte"
Rating: 4.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Claw666wrote on 07.05.2010:[10.0] "The most electrifying man in Sports Entertainment!  Nuff said!"
Rating: 10.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sandmannwrote on 04.05.2010:[8.0] "Als Wrestler sicherlich nicht besser als der gut Durchschnitt aber dafür mit einem natürlichen Charisma gesegnet was ihn schließlich sogar bis Hollywood brachte. Ich war eigentlich immer ein Fan des Heel Rocks. Da war er noch ein bißchen genialer als als Face. The Rock ist wirklich einer der wenigen den man 2 Stunden in den Ring stellen könnte und er nur erzählen bräuchte. Hoffentlich sehen wir ihn noch mal als Wrestler gegen einen Heel John Cena.. das wäre absolut göttlich"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Eazyewrote on 15.04.2010:[10.0] "Der Inbegriff für "Sportentertaiment". Ich liebte den Kerl, er "elektrisierte" mich immer, bei jedem Auftritt. Er hat 100/100 % Charisma, 100/ 100% gutem Micwork und etwa 70/100 % Technischem Können. Wahrscheinlich war ich im Wrestlerischen etwas grosszügig, aber ich liebte jedes Match das er zeigte, es war selten langsam, die Brawls mit Austin sind schon fast legendär... ICh glaube 10 Punkte sind da wirklich nicht vergebens."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Y2J Problemwrote on 03.04.2010:[10.0] ""The most electricfying man in sports entertainment" Dieser Name trifft ziemlich genau was The Rock bzw. war. Leider "verschwendet" er sein Talent, indem er Filme dreht. Schade"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Exist 2 Inspirewrote on 03.04.2010:[10.0] "Simply electrifying! Wohl einer der größten und besten Mic Worker aller Zeiten. Im Ring konnte man ihn sich immer gut ansehen, hat auch den einen oder anderen Klassiker hingelegt ( gegen Steve Austin, Chris Jericho, Mankind, .... ). War sich nie zu schade seine Kollegen over zu bringen. Schade für das Business das er relativ früh (mit gerade mal 31 Jahren) seine Wrestling Karriere beendet hat. Auf ein Comeback werden aber viele weiterhin hoffen und spätestens seit Bret Hart ist ja nichts mehr unmöglich. Von mir bekommt Rocky verdiente 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Viperwrote on 30.03.2010:[10.0] "Zusammen mit Stone Cold wohl der beste Entertainer zu seiner Zeit. Schade allerdings, dass er sich gegen das Wrestling entschieden hat."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KingSvenwrote on 27.03.2010:[9.0] "Hier gilt für mich eigentlich das gleiche wie bei Steve Austin. Ein genialer Mic-Worker, wenn nicht der beste überhaupt, mit wahnsinnigen Charisma. Er begründete in teilen für mich die Attitude Ära mit, zwar nicht ganz so stark wie Steve Austin, aber eine der Tragsäulen der WWE/F. Allerdings war er auch wenn er eine Legende ist für mich nicht stark genug im Ring um hier die 10 Punkte zu geben"
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Showstopper45wrote on 16.03.2010:[1.0] "Im Ring mehr als nur überbewertet am Mic muss ich wohl oder übel zugeben sehr gut. Jedoch hat er dem Wrestling den Rücken zugedreht obwohl die ihm zu dem machten was er jetzt ist. Deshalb verdient er nicht meinen Respekt das tut mir Leid. sonst würde er locker 7 Punkte einheimsen."
Rating: 1.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Moyawrote on 16.03.2010:[10.0] "The Most Electryfying Man in Sportsentertainment fasst eigentlich schon alles gut zusammen. Einfach ein unglaublich guter Unterhalter, der nebenbei auch noch gute Matches liefern konnte."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dankowrote on 12.03.2010:[10.0] "Überall wo die Begriffe Entertainment, Entertainer u. ä. vorkommen gehört sein Name geschrieben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: rv27wrote on 10.03.2010:[10.0] "Wenn man ihn nur einmal gesehen hat, und erlich ist, dann kann man ihm nur 10 Punkte geben. Weniger wäre einfach nicht genug. Er ist er beste der besten am Mic und Wrestlerisch einfach absolute Spitze es gibt kein mal als ich the Rock gesehen haben als er mich echt entäuscht hätte. Er ist einfach das beste vom besten. Und ich denke das wird er auch immer bleiben."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: oschihubertwrote on 08.03.2010:[10.0] "Einer der BESTEN Micworker die es gab. Sowas fehlt aktuell in der WWE, niemand (ausgenommen Y2J) der aktuell für die WWE arbeitet kommt auch nur ansatzweise an seine Mic-Skills heran. Wrestlerisch gibt sicherlich bessere, aber darauf kam es bei ihm nicht an. Speerspitze der Attidue-Ära. Und da kam es halt auf ENTERTAINMENT an. Und das konnte er immer und wird es sicherlich auch auf ewig weiter können: UNTERHALTEN!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fat Mikewrote on 05.03.2010:[10.0] "Nennt mich "Mark", aber ich kann nicht anders als Rocky die volle Punktzahl zu geben. Sein unglaubliches Charisma und seine großartigen Promos sind scheinbar unerreichbar und seine Klasse zeichnet sich schon allein dadurch ab, dass er einer der wenigen Wrestler war, die es schafften auch als Tweener richtig gut zu funktionieren. Im Ring war er sicher nicht der begnadetste Worker, er wusste aber auch im Seilgeviert immer zu unterhalten und war fähig mit den richtigen Gegnern starke Matches zu liefern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Cripplerwrote on 23.02.2010:[10.0] "Einer der besten Wrestler die es je gab, mehr gibt es dazu nicht zu sagen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Manu Adamswrote on 16.02.2010:[10.0] "Nachdem ich letzte Woche mit seiner DVD ''The most electifying Superstar in History'' (oder so ähnlich) fertig geworden bin, wurde ich ein großer Fan von ihm noch größer als ich es vorher bereits war. Dwayne gehört zu einigen wenigen die man als Total Package bezeichnen kann. Er hat Charisma ist unterhaltend am Mikro und fantastisch im Ring. Obwohl er gerade einmal knappe 10 Jahre aktiv war gehört er schon jetzt zu den Legenden dieses Sports und dadurch verdient er sich meinen Respekt."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: WrestlingFanDuisburgwrote on 14.02.2010:[8.0] "Unglaublich charismatisch. Wahnsinniges Micwork, dafür im Ring nicht so hochklassig aber immernoch besser als einige andere. Mit dieser kurzen Karriere die er hatte, hat er das geschafft was manche andere Legenden in 30 Jahren nicht geschafft haben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: tobiasthegreatone1wrote on 28.01.2010:[10.0] "Im Ring war er jezt nicht so gut wie etwar ein Chris Benoit oder Shawn Michaels. An Triple H kam er auch nicht so richtig ran aber er hat mit Steve Austin, Chris Jericho, Kurt Angle und dem Undertaker einige Klassiker gezeigt und war auch insgesamt vielen guten Matches beteiligt. Auch sonst hat er eigendlich immer durchschnittliche bis solide Matches gezeigt. Am Mic bleibt er unereicht. Er ist einfach the Peoples champion das wird er immer sein es wird nie jemand so geile Promos cutten können. Wie er 10 Punkte sind gerechtfertigt"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheROCKwrote on 22.01.2010:[10.0] "The Rock. Neben Hulk Hogan und Ric Flair der größte Entertainer des Wrestling-Business aller Zeiten. Machte durch seine Mimik und Mic-Promos defizite im Ring nebensächlich. Allein seine Catchphrases ließ die Zuschauer schon aufschreien. Der einzige Wrestler, der seine Karriere zum besten Zeitpunkt und auf dem Höhepunkt beendete. Mit seinem Sieg über Stone Cold bei WM19 hatte er alles erreicht und war auf dem Zenit angekommen. Das einzige was er nicht hatte und wir Fans der Attitude Ära auch nicht, war ein Big-Time Match gegen Shawn Michaels."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Quackeltikkiwrote on 18.01.2010:[10.0] "Wahrscheinlich der Beste Entertainer den die WWE jemals hatte. Allein die "rock concerts" sind schon legendär."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: KASHwrote on 14.01.2010:[8.0] "The Rock lebte eigentlich nur von seinem Charisma und seiner Schauspielkunst.. Im Ring lediglich durschschnitt. Die meisten seiner Moves waren doch nur interessant, weil sich The Rock wusste interessant zu verkaufen. Irgendwann lebte er ja wirklich nur noch von seinen Catchphrases und davon das die Fans auf seine Sätze so abgingen. Die "normalen" Ring In Promos waren nichts besonderes. Inhaltlich hatte er irgendwie nur selten was relevantes zu bieten. Meistens füllten auch da die belebten Catchphrases und Gags die Zeit. Für mich ist nur interessant an The Rock wie er mit Charisma soviel aus sich machen konnte. Unerreicht, aber ich gebe dennoch nur 8 Punkte, weil es ja fast nur Punkte für Charisma sind und wie er damit seine Karierre bauen konnte. Wrestlerisch hat er mich nie so überzeugt und das er kaum bzw. keine 100%ig ernsten Promos hat."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Zonenbewohnerwrote on 14.01.2010:[10.0] "Entgegen der Meinung von eternalphenom muss ich hier mal 10 Punkte verteilen. Eigentlich ist es doch egal, ob sich seine Moves und das was er am Mic von sich gab immer das Gleiche war. Einzig zählt, dass er die Massen mitreißen konnte. Man muss nur sein Bild auf der Leinwand in der Halle sehen und das Dach bebt vor Jubelstürmen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: PrideFCwrote on 13.01.2010:[10.0] "Einer der besten Micworker, der es mit seinen Charisma und seiner Athletik meistens schaffte seine In-Ring Schwächen zu kaschieren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: element-41wrote on 12.01.2010:[10.0] "Der beliebteste Wrestler überhaupt. Ich habe bis jetzt noch keinen Wrestler gesehen, der so stark am Mic ist wie er. Zusätzlich dazu war er auch noch gut im Ring. Er war sowas wie der perfekte Entertainer. 10 Punkte!"
Rating: 10.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DJ MaSchwrote on 07.01.2010:[10.0] "Rein Wrestlerisch gibt es sicher bessere, trotzdem hat The Rock im Ring viele Klassiker abgeliefert. Am Mic war er sensationell, er hatte einen genialen Charakter und war eine absoloute Charismakanone. In Sachen Ausstrahlung gab es in der Geschichte des Wrestlings wohl niemanden der ihm das Wasser reichen konnte. Zudem war er sich nicht zu schade für junge, aufstrebende Stars mal den Job zu machen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Charismatic Enigmawrote on 07.01.2010:[10.0] "Eines DER Gesichter der Attitude-Ära. Wenn er die Halle betrat, wusste man einfach, dass man blendend unterhalten werden wird. Im Ring und am Mic war er eine konstante Größe. Für das Business ists schade, dass er so früh zum Vollzeit Hollywoodstar wurde."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: downtown2wrote on 30.11.2009:[10.0] "Die besten Promos und das stärkste Charisma das es jemals gegeben hat, dass muss man mal ganz klar sagen. So wie sich Johnson präsentieren konnte, wird sich niemand jemals mehr präsentieren. Ein einmaliger Glücksfall, der diesen komentenhaften Aufstieg überhaupt möglich machte. Seine Kämpfe waren nicht von schlechten Eltern, aber wurden durch den Rest seiner Person bei weitem überstrahlt. Eine absolute Ausnahmeerscheinung, die ihres Gleichen sucht und suchen wird."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MrSmackdownwrote on 27.11.2009:[10.0] "Es ist The Rock! Einzigartig! Kein Vergleich zu allen anderen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: chaoswrote on 23.11.2009:[10.0] "Was kann ich über the Rock sagen was nicht eh schon jeder weiß? Er war halt DER perfekte Wrestler, ob am Mic oder im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Papa Popanzwrote on 23.11.2009:[10.0] "Just bring it Einfach Hammer der Typ, egal was er macht:)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Prince of darknesswrote on 22.11.2009:[1.0] "Er war im Ring so talentiert wie ein Weißbrot er hatte zwar gute Sprüche hat aber außerdem nie einen jüngeren Superstar over gebracht. Mit ganz viel Glück bekommt er von mir 1 Punkt."
Rating: 1.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: LebendeLeichewrote on 21.11.2009:[5.0] "Das stimmt er ist ein überbewerteter Wrestler aber guter Schauspieler. Er hatte auch irgendwie manschmal etwas langweilige Kämpfe (auch wenns ausnahmen gab. jeder mag da seine eigene Sicht darauf haben)."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: asraelwrote on 19.11.2009:[4.0] "Für mich auch einfach nur ein überbewerteter Wrestler der nur von seinem Charisma und durch seine Catchphrases lebte. Er ist genauso überbewertet wie Hogan meiner Meinung nach ist. Technik und IN Ring können hat der Mann kaum besitzt. Als Schauspieler gefällt er mir schon viel, viel besser. Ich sag nicht das the Rock scheiße war, aber so gut wie in jeder macht war er sicher nicht."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sockewrote on 15.11.2009:[10.0] "! The People's Champ !  Der wohl beste Mic-Worker aller Zeiten, leider viel zu früh aufgehört."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Salidwrote on 13.11.2009:[10.0] "Einer von zwei Wrestlern, die meiner Meinung nach bis heute nicht zu ersetzen waren. Mit Stone Cold zusammen gerade zu der damaligen Zeit das absolute Non Plus Ultra! Ich wär gern dabei gewesen! Würden aber wahrscheinlich in der heutigen Zeit aufgrund der momentanen Firmenpolitik der WWE nicht mehr so gut funktionieren. Deshalb vielleicht sogar gut, daß ihre Zeit vorbei ist!"
Rating: 10.0
Sentiment: -0.10468749999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Undertaker 4 everwrote on 11.11.2009:[10.0] "Der charesmatischste Wrestler der Geschichte. Aus meiner Sicht eine zu kurze Karriere, aber sicher mit vielen Höhepunkten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BrahmaBullwrote on 05.11.2009:[10.0] "Am Mic ein Ass, im Ring auch Spitze!  Kenne keinen (bis auf Chris Jericho) der mich so stark Unterhalten konnte/kann wie The Rock!  Für diese ganzen Aspekte gehören dem "Peoples Champ" einfach 10 Punkte! ;)"
Rating: 10.0
Sentiment: -0.03125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: StArShiP PAiNwrote on 03.11.2009:[10.0] "Was anderes als eine 10 kommt bei ihm nicht in Frage."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: peiler316wrote on 02.11.2009:[10.0] "Er hat alles was ein Wrestler haben muss... einfach nur THE ROCK - die coolste Sau der WWE Geschichte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 1234wrote on 25.10.2009:[3.0] "Sehr stark überbewertet. Im Ring allenfalls durchschnittlich. Er ist zwar charismatisch, aber sein Stil am Mikrofon sagt auch nicht jedem zu. Nur dank seiner Erfolge kommt er um die Fünf herum."
Rating: 3.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Paulinawrote on 16.10.2009:[10.0] "The Rock war früher zusammen mit Stone Cold das Gesicht der WWF! Er hat nicht umsonst in einer so kurzen Karriere so oft den Titel gewinnen können, er hat das wohl genialste Mic Work was es bis jetzt gab (und es je geben wird bin ich der Meinung) Ring In war er nie besonders aber ein paar Moves hatte er schon drauf. Schade das er sich so früh vom Wrestling verabschiedet hat"
Rating: 10.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Franjisewrote on 15.10.2009:[10.0] "The most electrifying Man in Sports Entertainment History!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fatewrote on 11.10.2009:[10.0] "Wrestlerisch wäre er sicher keine 10, aber sein Entertainmentpotential macht ihn einfach zu einem der größten Superstars den das Wrestling je gesehen hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ryklon Stephenswrote on 10.10.2009:[10.0] "The Great One has done it all. Wie er sich in der Attitude Ära vom Nobody zum Peoples Champ gewandelt hat ist sagenhaft. Im Ring immer in der Lage mit jedem Gegner starke Matches zu zeigen. Am Mic kann er sowohl ernsthafte als auch die legendären Comedypromos liefern. Einfach unglaublich charismatisch. Er ist der Barack Obama der WWE."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Cool Papa Bellwrote on 05.10.2009:[10.0] "The most electrifying man in sports entertainment; selten hat ein Spitzname so gut gepasst. The Rock war am Mic der Beste, stand für eine Ära, wenn er nicht die Curt-Henning-Perfect 10 bekommt, wer sonst? !"
Rating: 10.0
Sentiment: 0.4875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: reene82wrote on 01.10.2009:[10.0] "Freunde von mir, die sich nicht die Bohne für Wrestling interessieren, haben wegen ihm jede Woche mit mir RAW geschaut - das sagt eigentlich schon alles. Wenn nicht er, wer sonst hätte hier die volle Bewertung verdient."
Rating: 10.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheBrainwrote on 30.09.2009:[10.0] "Ich bekomme heute noch jedes mal die Gänsehaut wenn ich mir "The Rock - Just bring it" oder "The Rock - The most electrifying Man in Sports Entertainment" ansehe. Diese Entrance, diese Redegewandtheit, der Umgang mit den Fans, sowas wird leider heute bei weitem nicht mehr erreicht, in keiner Liga und von keinem Wrestler. DO YOU SMELL IT?"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Big Bad Booty Babywrote on 28.09.2009:[10.0] "The Rock ist für mich nach wie vor der beste Mic-Worker aller Zeiten, auch wenn er mittlerweile starke Konkurrenz von Jericho und Edge bekommt. Zusammen mit seinem Charisma, hat ihn das zu einem der einzigartigsten Performer gemacht. Seine Catchphrases, sein Einzug, aber auch sein Stil im Ring sind einfach Kult und machen ihn trotz seiner kurzen Karriere zu seiner großartigen Legende. Technisch war er gar nicht mal so gut, aber seine Showeinlagen und seine Mimik machen das locker wett und seine Matches waren meistens mehr als sehenswert. Sowohl als Face als auch als Heel genial."
Rating: 10.0
Sentiment: -0.3499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 108 Sternewrote on 25.09.2009:[7.0] "Sicher kein schlechter; hätte aber nie gedacht das er es zu was bringt. Gerade am Anfang seiner WWF-Karriere als Face kam er nicht an und wurde sogar gnadenlos ausgebuht. Erst im Zuge des Attitude-Gehabes konnte er richtig durchstarten."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Orton7wrote on 16.09.2009:[10.0] "Also wenn man ihm nicht die volle Punktzahl gibt, wem dann? Rocky ist DER Star der Attitude-Ära (noch vor Austin)... Allein sein Micwork wird mir ewig in Erinnerung bleiben... Er hat ein unglaubliches Charisma und bei seinem Entrance bekam ich immer eine Gänsehaut.."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Basket Casewrote on 15.09.2009:[10.0] "Mein absoluter Lieblingswrestler und ohne ihn wäre das Business nicht das gleiche. Er hat das personifiziert was sich Vince unter einem WWE Superstar vorstellt. Er hat Charisma ohne Ende, so einen wird es wohl nicht mehr geben. Sein Mic-Work das beste ever. Im Ring war er natürlich nie einer der besten, aber immer grundsolide und was man ihm auch immer gut heißen sollte, ist, dass er sich oft genug für andere hingelegt hat, was ein Steve Austin z. B. nicht gemacht hat. Denkt man da an eben jenen Austin zurück, an Foley, an Triple H, später dann noch Lesnar und Goldberg. Das rechne ich ihm sehr groß an."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: schneiderwrote on 09.09.2009:[10.0] "Seine derzeitige Einstellung zum Wrestling macht mich einfach stinksauer! Und das auch nur, weil er so verdammt gut war!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: psycho jokerwrote on 07.09.2009:[10.0] "Mr. Charisma schlecht hin. Super am Mic und absolut top im Ring. Es gab kein match das mich enttäuscht hat. Empfehlenswert ist auch seine DVD."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kankurowrote on 30.08.2009:[10.0] "Es gab und gibt wohl keinen mit so großem Unterhaltungswert, wie The Rock ihn hatte. Zu Schade, dass er bereits so früh mit dem Wrestling abgeschlossen hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Azarothwrote on 27.08.2009:[10.0] "Man hätte The Rock in Lederhosen und mit Kanada-Flagge das "America the Beautiful" vor Wrestlemania interrupten lassen können, nach zwei Minuten hätte er es spätestens geschafft dass die Crowd wieder voll hinter ihm steht. Was dieser Mann an Promos abgeliefert hat, ist in Worte nicht zu fassen. Der Mann hat in den neun Jahren seiner Wrestlingkarriere soviel erreicht wie sonst nur die Besten der Besten in ihrem Leben schaffen. Dass Dwayne Johnson im Ring dafür öfters nur Standardkost zeigte und technisch nie auch nur ansatzweise an einen Benoit oder Bret Hart heranreichte, stört dabei überhaupt nicht, denn dieser Mann war so vollgepumpt mit Charisma, dass er nur mit seiner Augenbraue ganze Hallen zum Ausrasten bringen konnte. Zusammengefasst ist Rocky wohl das perfekte Sportsentertainment-Paket aller Zeiten, woran sich in absehbarer Zeit auch nichts ändern wird."
Rating: 10.0
Sentiment: 0.85
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Turboladerwrote on 26.08.2009:[10.0] "Obwohl er kein Wrestler mehr ist, ist er dennoch noch auf Platz 2. Ich denke das muss was heißen. Sein MicWork und seine Promos waren einfach klasse und wrestlerisch hatte er auch einiges drauf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Undertaker94wrote on 22.08.2009:[10.0] "Einer der besten Wrestler die es je gab. Es fängt schon mit seinen göttlichen Promos an und hört mit seinen super Matches auf. Schade das er nur sehr kurz im Wrestlinggeschäft war."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: wweinspectorwrote on 22.08.2009:[10.0] "The Rock IST DER BESTE aller Zeiten. Geniale Promos, geniale Matches usw. Da kommt kein Flair, kein Austin, Kein Triple H, kein Undertaker, kein Edge, kein Jericho dran. The Rock is the best!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Woerpwrote on 12.08.2009:[10.0] "Für mich einer der Grössten aller Zeiten. Seine Promos sind wie gute Lieder; man kann sie sich immer wieder anhören. Seine legendären Attitude-Era-Schlachten mit Mankind, Triple H, Stone Cold und Kurt Angle sind Must-see-Classics."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The-Great-Pinowrote on 08.08.2009:[10.0] "If ya smell what he is cookin.... Mehr muss man nicht sagen. Eine Ikone, und einer der ganz Großen im und außerhalb des Rings."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Smi-48wrote on 26.07.2009:[10.0] "Kaum jemand hat es geschafft, das Business in so kurzer Zeit dermassen stark zu beeinflussen - mit Rock fand McMahon in meinen Augen das einzige mal die absolut perfekte Verkörperung, was Wrestling Entertainment und somit seine eigene Idee darstellen soll. Charismatisch und unterhaltsam, niemals langweilig und immer emotional. Und wenn sich hier Leute über die Matchqualitäten beschweren - was Rocky brachte hatte immer Hand und Fuss, lebte nicht von technischer Klasse sondern immer von psychologischer Heat, gut erzählten (manchmal overbookten) Ringgeschichten, welche auf seinem Zenit immer perfekt die Spannung transferieren und mit allen Beteiligten interagieren konnten (inkl. des Publikums). Da war die 20. Auseinandersetzung mit Austin oder Foley um Lichtjahre besser als die 10. zwischen Orton und Triple H oder der 50. Beatdown der Legacy. Da war mehr Ausstrahlung im kleinen Zeigefinger als in 80% des kompletten heutigen WWE-Rosters."
Rating: 10.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: kimigoeswmwrote on 16.07.2009:[7.0] "Konnte mich nicht überzeugen, obwohl er natürlich ein guter Micworker ist. Allerdings sagt mir sein Stil nicht wirklich zu und im Ring war er auch nicht gerade der Top-Mann. Verstehe nicht warum ihn viele für den Übermenschen am Mic halten, ein Chris Jericho ist da imo um Längen besser."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Mick Funkwrote on 15.07.2009:[9.0] "Ein übertrieben starker Entertainer mit unfaßbarem Mic Work. Trotzdem nur 9 Punkte weil er im Ring einfach weit davon entfernt war ein starker Worker zu sein."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Brainbreakerwrote on 10.07.2009:[10.0] "Die 10pkt gehen nicht auf seine wrestlerischen Leistungen. Rocky war immer oberer Durchschnitt, aber nie herausragend. Doch seine Interaktion mit dem Publikum, seine enorme Wandlungsfähigkeit, sein Charme, seine große Klappe, alles das hat ihn populär gemacht. Ein unglaublicher Entertainer, der allein schon die Crowd anheizt, wenn er nur auf dem Titantron erscheint wie etwa kurz vor WM23. Das erzeugt bei mir noch immer Gänsehaut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hunter2007wrote on 07.07.2009:[10.0] "Ein unglaublich riesiges Talent, sowohl im Mic-Work als auch im Ring. Jeder einzelne Moment in dem er auftrat, war ein Geschenk an das WWE-Universum, er konnte einfach immer unterhalten, ob als Heel oder als Face. Für mich gilt The Rock als einer der besten Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BaptisteZorGwrote on 03.07.2009:[7.0] "Im Ring solide, am Mic grandios... Die 7punkte gibts weil es vom Gesamtbild her bessere gab und gibt und zum anderen weil er nicht wirklich lang im Business war."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: homicidal cena michaelswrote on 29.06.2009:[6.0] "Er ist am Mic sehr gut aber wrestlerisch nur befriedigend. Er ist zu overrated und zeigte oft nur das Gleiche."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: pildaYwrote on 24.06.2009:[7.0] "Am Mic göttlich, im Ring nur etwas mehr als durchschnittlich ..."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Draytonwrote on 16.06.2009:[10.0] "The Rock ist Entertainment! Wohl der unterhaltsamste Wrestler, der jemals ein Mic in die Hand genommen hat!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Juvicidewrote on 09.06.2009:[9.0] "9 Punkte aufgrund des Entertainment-Faktors. Einen Punkt Abzug gibt es, weil er nie der super Wrestler war, bei weitem aber natürlich auch kein schlechter."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Eddiewrote on 02.06.2009:[10.0] "Dass ist wohl ein Fall für die 10 Punkte, es gibt kaum ein Match, in dem er nicht überzeugt hatte, einfach der People's Champ eben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kid Rockwrote on 31.05.2009:[10.0] "Eine Legende! Kann man nicht anders sagen. Rocky ist nicht nur eine der besten Mic-Worker aller Zeiten, der schon so manch extrem kultiges Segment von der Stange gelassen hat, sondern insgesamt auch ein Megastar mit gutem Ring-Skills, gewaltiges Charisma und unbegrenztem Unterhaltunspotenzial. Dazu noch ein sympathischer Typ und überzeugender Schauspieler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Afroman Undertaker 619wrote on 21.05.2009:[10.0] "Eines meiner Lieblingswrestler ist The Rock, weil er der beste Wrestler der früheren Zeit war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Blazewrote on 14.05.2009:[6.0] "Am Mic ist er ohne Zweifel verdammt gut, er bringt das Aussehen und den Körperbau eines Topstars mit, aber in Sachen Wrestling nie richtig gut gewesen. In all den Matches, die ich bis jetzt von ihm gesehen habe, konnte er mich nicht zufrieden stellen, nur der Durchschnitt."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Theron083wrote on 16.04.2009:[9.0] "+ Unglaubliches Charisma + super Mic Work + ordentliche Skills - die aber auch nicht überragend sind - zu kurze Gesamtkarriere, da fehlt der Legendenstatus etwas Deswegen "nur" 9 Punkte für Rocky! :)"
Rating: 9.0
Sentiment: 0.4583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Masterpiece15wrote on 03.02.2009:[8.0] "Zwar wohl der beste am Mic überhaupt, aber im Ring schon recht eingeschränkt"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The-Game91wrote on 02.02.2009:[10.0] "Einer der größten aller Zeiten ich kenne kein Segment oder Match in dem er mir nicht gefallen hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: nightfallwrote on 31.01.2009:[10.0] "Meiner Meinung nach der charismatischte Wrestler, der je einen Ring betreten hat. Zudem ist sein Micwork grandios. Keiner konnte, kann und wird jemals das Publikum in seiner Hand haben wie er. (OK, ich lehn mich jetzt zwar stark aus dem Fenster, aber naja. )"
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Miteamexicowrote on 25.01.2009:[8.0] "Zu seiner Zeit sicher einer der Besten und am Mic selber der Beste überhaupt, nur im Ring selber war er nun wirklich nicht der aller Beste Wrestler."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Matt Mackswrote on 24.01.2009:[10.0] "The Rock war zu aktiven Zeiten in jeder Hinsicht ein Superstar. Ich wage auch zu behaupten, dass es die WWE ohne The Rock in der heutigen Form nicht geben würde. The Rock bildete nicht nur den Gegenpart zu Steve Austin über mehrere Jahre, sondern füllte (fast schon "überfüllte") die Lücke, die bei Austins Abwesenheit im WWF-Main Event aufbrach. In punkto Charisma, Micwork, purem Entertainment und Superstar-Ausstrahlung gab es meiner Meinung nach in der Geschichte des Wrestlings keinen, der The Rock übertrumpfen konnte. Sein Schatten wird noch viele, viele Jahre dafür sorgen, dass es aktuelle Stars wie beispielsweise John Cena schwer haben, sich wirklich bei allen Fans zu etablieren."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: CM Dannywrote on 10.01.2009:[10.0] "Obwohl er schon so lange aus dem Wrestling-Business raus ist, hat es noch keiner geschafft an seinen Status zu gelangen und das wird wohl auch so schnell nicht geschehen. Er wäre ein großer Gewinn für jede Liga die ihn verpflichten kann. Niemand hat so schnell Karriere gemacht, so eine Verbindung zum Publikum gehabt und es so gut verstanden, daraus Kapital zu schlagen. Wer hätte das beim Debüt eines breit grinsenden Rocky Maivia bei der Survivor Series 1996 schon gedacht?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Tomkowrote on 05.01.2009:[8.0] "Persönlich mein Lieblingsentertainer. Er bewegte die Zuschauer als Heel oder auch als Babyface. Perfekte Promos. Alles was man braucht um ein ganz großer über Jahre zu sein. Aber dennoch ist The Rock nur ein genialer Entertainer und ein höchstens mittelmäßiger Wrestler, desegen nur ein "GUT"."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: 41944194Andiwrote on 04.01.2009:[10.0] "Ich find ihn einfach in allen bereichen super! mehr baruchts halt ned =)"
Rating: 10.0
Sentiment: 0.4583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MarcB126wrote on 26.12.2008:[10.0] "Der beste Wrestler den es je gab und je geben wird. Der Mann sprüht vor soviel Charisma, das ist der Hammer. Einen Elbeow so zu verkaufen gehört soviel dazu, das kannn niemand überbieten. Wrestlemania The Rock vs Austin war der Hammer, aber selbst Stone Cold wird von The Rock`s Charisma erdrückt, he is the people`s champ. Wenn er zurück kommen sollte wäre es eine Gabe fürs Wrestling Publikum, denn ihn liebt einfach jeder wrestling fans oder nicht fans, denn er ist der hammer. Das beste ist er spielt kein Gimmick er ist einfach der people`s champ. Was er in der kurzen Zeit erreicht hat wird wohl niemand mehr erreichen, dies hat nichts mit der attitude ära zutun, sondern mit dieser unglaublichen Ausstrahlung von The Rock. Er ist der Größte der ist, der jemals war und der jemals sein wird. Auch wenn einige sagen er hat das wrestling verraten, man kann trotzdem sagen er hat es geliebt und wird es immer lieben."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: stingersplashwrote on 24.12.2008:[10.0] "Von mir ganz klar 10 Punkte, weil er für mich der größte Entertainer ist, den dieses Buisness je hervorgebracht hat. Außerdem war sich The Rock (im Gegensatz zu manch anderem Superstar) nie zu schade sich für einen Gegner "hinzulegen". Nicht umsonst holten sich Foley, Angle, Jericho und Lesnar ihren ersten WWF/E Heavyweight-Title gegen The Rock. Man kann sagen was man will, über die Tatsache, dass er der WWE (für immer? ) den Rücken gekehrt hat, aber während seiner aktiven Zeit war er jemand, der alles für die Company gegeben hat und sich für nichts zu schade war, obwohl garade er wegen seines Statuses bei den Fans dazu das Recht gehabt hätte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Jar Jar Binkswrote on 18.12.2008:[10.0] "Unglaubliches Charisma, allein die Augenbraue. Ich wage zu behaupten, dass dieser Mann, das beste Mic-Work hatte was es je gab und im Ring auch große Klasse. Dieser Mann ist einfach göttlich. Wird für immer mein absoluter Lieblingsrestler bleiben. If ya smell what the Rock is cooking!  Eindeutig 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Cloverwrote on 18.12.2008:[10.0] "Als ich mir vor einer Weile die alten Mic-Works von ihm aus 98 und 99 angesehen habe muss ich sagen: Keine Ahung, was ich damals an ihm so toll fand.. das klang alles sehr abgelesen und lahm.. dennoch war er schon da als Heel absolut over bei den Fans und somit war die Stimmung ein Misch Masch - was eine unglaubliche Akustik in der Arena auslöste wenn The Rock auftauchte. Aber inzwischen ist er sicherlich unerreichbar am Mic :) Nur Mr. Kennedy gefällt mir da fast noch gleich gut.. Gott sei Dank hat The Rock Jim Ross mal erzählt, er würde die WWE noch gelegentlich verfolgen (wenn er Zeit hat) und seine Ringzeit durchaus vermissen.. also abwarten und hoffen auf ein paar Intermezzos alá Stone Cold.. Still the Peoples Champ ;-)"
Rating: 10.0
Sentiment: 0.0875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ScrWwe94wrote on 17.12.2008:[10.0] "Tolle Mic Skills und ein Mann der die Leute perfekt unterhielt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TRIPLEH2008wrote on 25.11.2008:[2.0] "Als aktiver hervorragend jedoch entäuschend das er nicht einmal einen Gastauftritt machen kann wie gesagt eine grosse entäuschung für mich den er hat vergessen wo er herkommt!"
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Charismatic Enigma4000wrote on 15.11.2008:[10.0] "Die Diskussionen um Rocky sind blöd und die dreiste Unterstellung von vielen Leuten, er habe das Wrestling verraten und so weiter, sind noch bescheuerter. The Rock war sehr wichtig für das Wrestling, aber er ist darüber hinausgewachsen. So ist es halt. Ich würde auch nach Hollywood gehen, wenn ich die Möglichkeit und das Talent dafür hätte. Die WWE ist halt mehr eine Soap Opera. Wenn ich dann diese HHH`s und Ric Flairs höre, die im Wrestling natürlich große Nummern sind, aber nur mit Neid auf Rockys anderweitigen Erfolg reagieren( Beispiel HHH: Bei der Hall of Fame Einführung von The Rocks Vater und Grossvater, sprach HHH Rocky mit The Rock an, nur um sich sofort zu verbessern. Entschuldigung ich muss ja jetzt Dwayne Johnson sagen. )Für mich ist The Rock einer der grössten und besten Entertainer, die das Business je hatte!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: PKOwrote on 13.11.2008:[8.0] "Mic-Work hatte er wirklich einiges. Er konnte darin sehr gut überzeugen auch wenn es im Enddeffekt fast immer das selbe war. Im Ring aber hatte er seine Aktionen die er immer wieder abspulte und ohne das sehr gute Mic-Work währe er wohl nicht dass was er heute ist. Aber dass er anscheinend nichts mehr vom Wrestling wissen will ist wirklich das letzte. Immerhin ist es dass was ihn zum star machte"
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Smoothwrote on 12.11.2008:[10.0] "The Rock..... oh man, für mich der BESTE Entertainer im Wrestlingbuisness!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: squadra3wrote on 06.11.2008:[8.0] "In seiner Dekade einer der größten, aber um die 10 zu bekommen gehört auch dazu das man nicht vergisst wem oder was (dem Wrestling) man seinen Promistatus zu verdanken hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Animal360wrote on 22.10.2008:[10.0] "Trotz seiner nur 7 Jahren im Wrestling hat er jede Menge Erfolge gefeiert und sein Charisma ist quasi einzigartig deswegen erhält der People's Champ eine klare 10."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kreuflexwrote on 10.10.2008:[10.0] "Man kann The Rock wohl vor allem mit einem Wort beschrieben: "Entertainer". Es mag sein, dass er wrestlerisch zwar zweifelsohne obere Spitzenklasse ist, aber es sind vor allem seine Fähigkeiten zu unterhalten, die ihn besonders machen. Ich denke er war in der WWE genau zur richtigen Zeit am richtigen Ort. Ein paar Jahre vorher wäre er meiner Meinung nach nicht so erfolgreich gewesen und auch in einer eher auf Wrestling fokussierte Promotion wäre er wohl nicht ganz nach oben gekommen. Wrestlerisch gäbe es von mir 8 Punkte aber da er der beste Entertainer ist und nun mal in der WWE (mit Betonung auf dem E) war gibt es 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kaepplewrote on 05.10.2008:[10.0] "Kein Wrestler hat mich je besser unterhalten - volle Punktzahl, keine Frage."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: SirFlubbi42wrote on 29.09.2008:[10.0] "Eigentlich muss man zu ihm ja gar nichts mehr sagen, aber wenn man dann eineige Comments liest, dann muss es einfach raus. Er ist der Beste der je im Ring stand. Sein Talent zum Schauspielern und seine Fähigkeiten einen wirklich glauben zu lassen das es jemanden wie The Rock gibt, mehr noch, das ER The Rock ist, sind phänomenal. Als mein Bruder und ich klein waren und wir uns im Garten verhauen haben, weil wir Wrestling gespielt haben war der einzige Finisher der ein Match beenden durfte der Ellenbogen. Und heute im gehobenen Alter verehre ich ihn nur umso mehr, da man jetzt auch versteht was er gesagt hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: splashwrote on 25.09.2008:[10.0] "Unglaubliches Charisma, das beste Micwork aller Zeiten, klasse Wrestler... Was bleibt mir da noch zu sagen? Das selbst so viele Jahre nach seinem Karriereende immer noch ein Comeback gefordert wird spricht Bände. Er ist und bleibt der einzig wahre "People's Champ" - 10 Punkte. Nur schade das es wohl nie eine Rückkehr in den Ring geben wird..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: E-T-Wrestlerwrote on 11.09.2008:[10.0] "The Rock ist ein sehr guter Allrounder, wie ich finde. Er hatt im Ring von allem etwas.... z. B. seine Righthands sehen manchmal aus, wie von einem Powerhouse. Außerdem, ist er laut meiner Meinung der beste Komiker im Wrestling-Buisness"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sternauwrote on 07.09.2008:[10.0] "Steht ganz oben an der Spitze! Erst Rocky ... dann kommt lange nix und dann erst Leute wie Hogan oder Austin."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: snupywrote on 05.09.2008:[10.0] "für mich nicht einer der besten sonder der beste ........."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The System Failedwrote on 01.09.2008:[10.0] "Er kam zwar vor meiner Zeit als Wrestlingfan, aber ich hab mir sehr viel (sowohl Matches als auch Promos) von ihm angesehen, um zu sagen, dass er meiner Meinung nach einer der besten Worker war, den die WWE seit langem hatte! Er hat es wirklich geschafft, die Leute zu entertainen: seine Sprüche sind einfach nur geil und seine Matches durchweg solide bis sehr gut! Bei Hall of Fame 2008 hat er seine Stärke am Mic nochmal eindrucksvoll bewiesen! Ich glaube jeder würd sich über ein Comeback freuen, und sei es nur für ein Match bei Wrestlemania 25 gegen Stone Cold (Ankündigung als Nostalgie-Match, mit ein paar typischen Promos und dann hat man die höchsten Zuschauerzahlen bei Raw und die höchste Buy-Rate von Wrestlemania)... aber ich denke soweit wirds nicht kommen... !"
Rating: 10.0
Sentiment: -0.4442307692307692
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Capitanowrote on 31.08.2008:[10.0] "Leider Leider nach seinem Höhepunkt (2000) nicht mehr Vollzeit Wrestler... Noch ein sehr gutes Match mit einzigartigem Build Up gegen Austin bei wrestlemania17 und einige gute auftritte bei der invasion.... aber eben nicht mehr so gut wie zu der Zeit als er noch VollBlut wrestler war.. Aber trotzdem 10 Punkte für den Peoples Champion!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The-Phenomwrote on 29.08.2008:[8.0] "Ein Lustiger Wresteler der das Wort Entertainment im Blut hatte und auch verstand damit umgehen zu können. Schade, dass er nicht zurückkehrt ... er könnte ja wenigstensmal nen Überraschungsbesuch machen"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MICHAELAundMARKUS4EVERwrote on 26.08.2008:[10.0] "Immer wieder ein Highlight! Toll am Mic und im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Tunisian Warriorwrote on 25.08.2008:[10.0] "Hat sich in absoluter Rekordzeit zur Legende gemacht. Meines Erachtens der beste Entertainer den es jemals im Wrestling gab!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MarkyMarkwrote on 24.08.2008:[7.0] "Sicher ein guter Worker, perfektes Mic-Work, aber meines Erachtens überbewertet."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rated-RKOwrote on 11.08.2008:[9.0] "Großer Entertainer und Wrestler, auch am Mic sehr überzeugend, aber es gibt bessere Männer im Ring."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: colonia18wrote on 07.08.2008:[10.0] "Der mit Abstand beste Entertainer den das Wrestling jemals gesehen hat, dazu noch unglaubliches Charisma, natürlich sensationelles Micwork und auch mit perfekten In-Ring-Skills!  Außerdem machte er das Wrestling zur Attitude-Ära wieder interessant und brachte es gemeinsam mit einem Austin, Triple H, Mick Foley, Kane und dem Taker auf eine neue Ebene!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: homer3112wrote on 06.08.2008:[10.0] "Mein absoluter Lieblingswrestler. Die Nr. 1 am Mic (da gab und gibt es keinen besseren) und im Ring. What do you think? - IT DOESNŽT MATTER, WHAT YOU THINK!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Lethal Combinationwrote on 05.08.2008:[10.0] "Warum 10 Punkte? Die besten Promos der Geschichte in der WWF/E dazu noch ein sagenhaftes Charisma und sehr gute In Ring Skills."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Lokfanwrote on 29.07.2008:[4.0] "Für mich selber war er nie interessant, mich hat auch das Trara damals um ihn genervt obwohl er gute Aktonen im Ring drauf hatte. Finde ihn in Walking Tall – Auf eigene Faust sehr viel besser."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Neubauteneinsturzwrote on 29.07.2008:[10.0] "Ohne Zweifel der beste Sports Entertainer aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: stinger89wrote on 25.07.2008:[10.0] "Der wohl größte Entertainer der je in einem Wrestling Ring stand!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: wXw Fanwrote on 25.07.2008:[5.0] "War nie großer Rocky Fan, Promos und Charisma zwar top, dafür im Ring sehr langweilig und eintönig."
Rating: 5.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Weihnachtsmannwrote on 23.07.2008:[8.0] "Ein absoluter Gott am Mic, Charismatisch ohne Ende, lediglich bei seinen Matches fehlte mir immer das gewisse Etwas."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MVPKennedywrote on 21.07.2008:[10.0] "Ich finde es sehr lustig, wenn hier Leute schreiben, dass sie ihn nicht mögen, weil "er seine Augenbraue immer so arrogant hochzieht". Paul Bearer ist übrigens immer noch einbetoniert .... Ganz klar 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: StoneColdRevowrote on 18.07.2008:[10.0] "War der erster Wrestler mit dem ich auf der PS2 gezockt hatte (War so ne Promo CD, wegen dem Spiel bin ich erstmal auf Wrestling so gekommen). Find es nur schade des es dann zur Schauspielkarriere kam. Bei der WWE würde er mir besser gefallen ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: oppentwrote on 17.07.2008:[10.0] "Was soll man zu diesem einzigartigen Wrestler noch sagen!  HeŽs a LEGEND!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: WerderBremenwrote on 15.07.2008:[10.0] "Einer der größten Wrestler unserer Zeit; fast klar bei solch einem Familienumfeld. Er hat die Leute echt unterhalten und ich kenne keinen, der The Rock nicht mag. Das er den WWE Ring gegen Hollywood getauscht hat muss man respektieren und zwar umso mehr, wenn man weiß wie gut er auch schauspielern kann. Trotzdem finde ich es schade, dass er nicht mehr wrestelt, denn er brachte die WWE bei jedem seiner Auftritte in Punkto Entertainement und Großartigkeit auf ein höheres Level... ! Ehrlich!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kevichenkowrote on 03.07.2008:[10.0] "Mein absoluter Favorit. Sau geiles Mic-Work , sau geiles Wrestling. Er hatte alles was ein Pro-Wrestler braucht. Er war als Heel und Face hervorragend. The Rock hat mich immer gut bis sehr gut unterhalten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheGamewrote on 27.06.2008:[10.0] "oh der war am mic genial!  Als Wrestler war er auch ganz gut"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ecw foreverwrote on 22.06.2008:[9.0] "Bester Mic Worker mit HHH, Eddie und Hogan. Okay im Ring nicht der beste aber gut war er. Er hatte diese gewisse Power, die ihn ausmachte, die Fans trugen ihn, hätte er schlechtere Reaktionen bekommen, wäre er keinen deut dies was er heute ist. Keine Legende, aber dennoch ein starker Mic Worker, mit extrem viel Charisma."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: LordTrailerwrote on 16.06.2008:[10.0] "Einen wie Rock gibt es wahrscheinlich nur alle 100 Jahre. Niemand konnte so mit dem Publikum spielen. Seine Promos bleiben unvergessen. Im Ring war er zwar nicht die Offenbarung, hatte aber genug drauf um mit ihm mitzufiebern und eine Story voranzubringen. Wenn man bedenkt, dass er so kurz aktiv war und trotzdem so vergöttert wird, kann man schon erkennen, dass er ein ganz Großer ist. Schade, dass wir jetzt wieder 100 Jahre warten müssen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Eaterwrote on 15.06.2008:[10.0] "Einfach ein absolutes Gesamtpaket. Gott im Ring und am Mic, überwältigend charismatisch, überzeugendes Auftreten, perfekter Entertainer und war zudem in der Lage, jeden Style mitzugehen. Hat in seiner vergleichsweise relativ kurzen Karriere nahezu alles erreicht, was es in diesem Business zu erreichen gibt und nahm mit Hollywood den nächsten sinnvollen Schritt. Sein Abgang konnte bis heute nicht ausgeglichen werden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Know Nothingwrote on 13.06.2008:[8.0] "EIn extrem eingebildeter Mensch... Er war allerdings ein sehr guter Wrestler und ein guter Entertainer."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The-Real-Diablowrote on 13.06.2008:[10.0] "Für mich persönlich die größte Legende und der absolut genialste Entertainer aller Zeiten. Er wird vielen von uns für immer im Gedächtnis bleiben. Jede Szene an der The Rock beteiligt war, erzeugt noch heute Gänsehaut. Der Mann ist genial und sollte er irgendwann einmal zurückkehren, wovon ich nicht ausgehe, werde ich mir sein Comeback live in den USA angucken. The Rock: Vielen Dank!"
Rating: 10.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: andrekoenigwrote on 08.06.2008:[10.0] "The Rock ist ohne Zweifel der elektrisierendste Wrestler im Sports Entertainment. Jedesmal wenn ich ihn gesehen habe, oder wenn ich mir heute Videos von ihm angucke, bin ich absolut elektrisiert und fiebere bei allem mit was er macht. Der Brahma Bull ist nicht nur der charismatischte und einer der beliebtesten Wrestler aller Zeiten, sondern er ist auch noch einer der Lustigsten aller Zeiten. Wenn ich mir seine Statements angucke muss ich immer wieder lachen. The Great One ist für mich der unterhaltsamsten Wrestler überhaupt. Und ich werde für immer einer der Millions and Millions of The Rock Fans bleiben, ob er nun wieder kommt oder nicht."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DeadHeadwrote on 04.06.2008:[10.0] "He is the Most electrifieng man in Sports Entertainment. Sagt doch schon alles."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Excellence of Executionwrote on 25.05.2008:[10.0] "So, hab mir lange Zeit damit gelassen, den Great One zu bewerten. Dabei war eigentlich von Anfang an klar, dass dies nur 10 Punkte geben kann. So komplett wie ein Mr. Perfect, ein Bret Hart oder ein Shawn Michaels im Ring waren bzw. sind, so komplett ist der Rock am Mic gewesen. Wer seinen immensen Erfolg bloß auf Catchphrases reduziert, der muss sich die Frage gefallen lassen, warum das bei anderen Wrestlern dann nicht auch so ohne weiteres funktionieren würde. Die Tatsache, dass der Rock nun ein erfolgreicher Schauspieler ist, sollte in diesem Zusammenhang doch zu denken geben. Der Rock hatte einfach das natürliche Charisma und die schauspielerische Klasse, um sich selbst am Mic so perfekt verkörpern zu können und ganze Hallen in seinen Bann zu ziehen. Zudem war er im Ring durchaus anständig und - wie hier auch an anderer Stelle schon gesagt wurde - stets dazu bereit auch andere auf Kosten von Niederlagen over zu bringen. Bow down to the Great One!"
Rating: 10.0
Sentiment: 0.6611111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Frutzwrote on 15.05.2008:[10.0] "Der Entertainer des letzten Jahrtausends. Durfte ihn in Oberhausen erleben (beileibe noch nicht das, was aus ihm wurde) und war begeistert, habe als Halb-Mark vor dem Bildschirm gesessen und mitgeschrien, wenn er gekocht hat, habe seine Matches geliebt, ihn als Champion verehrt. Für mich war er sicher das, was Hulk Hogan in den 80igern fuer viele junge Wresting-Fans war. Mit einem gewaltigen Unterschied: Er war kein unbesiegbarer Comic-Abklatsch. 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: THEROCK316wrote on 11.05.2008:[10.0] "ER hatte die besten Matches, die besten Promos, die besten Fehden ER war ein Traum im Ring ER war der beste am Mic Er hatte das beste Gimmick ER hatte mit RockŽnŽSock connection das beste Tag Team"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ZuluBunsenwrote on 11.05.2008:[10.0] "Was will man über ihn sagen, was noch nicht gesagt wurde. Ein Meister der Promos, im Ring zwar kein Wunderkind, aber fähig das Publikum mitzureissen und schliesslich der rechtzeitige Absprung ins Filmgeschäft bevor er wie viele andere den Tribut an die Zeit im Ring so richtig zahlen musste. Johnson hat so ziemlich alles richtig gemacht und hinterlässt eine kurze, aber extrem effektive Karriere und gilt zu recht als einer der Besten seines Faches. 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hirnklopswrote on 30.04.2008:[6.0] "Überbewertet. Zu seinen Glanzzeiten DIE große Nummer, später dann verbraucht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fran7iCwrote on 26.04.2008:[6.0] "Filmemachen kann er besser Im Ring mochte ich ihn nicht so sehr"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: X-Raywrote on 19.04.2008:[10.0] "In so kurzer Ringkarriere hatte bislang kein Wrestler solch einen Erfolg wie The Rock. Zudem neben Hulk Hogan einer der bekanntesten Wrestler aller Zeiten. Das spricht für seine ganze Klasse!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rocky Maiviawrote on 17.04.2008:[10.0] "Ich finde es falsch The Rock wegen seiner heutigen Stellung zum Wrestling abzuwerten. Er war unglaublich charismatischund im Ring immer(! ) unterhaltsam. Am Mic ist er meiner Meinung nach das Maß aller Dinge."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: contemptwrote on 16.04.2008:[7.0] "Mit Sicherheit eines der Top-Wrestler. Allerdings waren mir seine Gestik und Selbstdarstellung oft zu übertrieben. Und jede Phrase, wie cool sie auch sein mag, ist irgendwann ausgelutscht."
Rating: 7.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Dynamite4wrote on 12.04.2008:[10.0] "Unglaublicher Wrestler. Hat mir immer gut gefallen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Pulpulwrote on 10.04.2008:[9.0] "Einer der wohl charismatischsten Wrestler, die es im Sports Entertaiment je gegeben hat. Seine Fähigkeiten im Ring waren jedoch eher begrenzt bzw. musste er nicht wirklich mehr zeigen, da The Rock einfach von seiner Ausstrahlung lebte. Für die Zeit in der er aktiv war, stark."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mrkennedy1990wrote on 03.04.2008:"War mal einer meiner Lieblingswrestler, aber das hat sich geändert: Nachdem er seine Karriere beendet hat, hat er NICHTS mehr fürs Wrestling getan. Andere schaffen das auch, siehe Steve Austin. Es ist einfach traurig, was ein Mann mit dem macht, was ihn zum Star gemacht hat. Und richtig wütend werde ich, wie er immer wieder erzählt, wie sehr er das Wrestling doch liebt. Nach Deutschland fliegen, um seinen Film zu promoten kann er, aber für 5 Minuten bei WWE auftauchen ist wegen Filmarbeiten unmöglich? Sorry, aber das geht gar nicht. keine Wertung"
Rating: No rating found
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: TheBloodMachinewrote on 03.04.2008:[10.0] "Ich vermisse ihn auf jeden Fall. Der beste am mic, was hab ich Spaß gehabt. Der Auftritt bei der Hall of Fame Show war auch wiedemal Hammer. Auch im Ring sehr unterhaltsam, wer erinnert sich nicht an die Fehden mit Stone Cold? Hoffe das er irgendwann nochmal in den ring steigt. Rocky, Rocky, Rocky"
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DirtiestPlayerwrote on 02.04.2008:[6.0] "Meiner Meinung nach viel zu hochgepusht. Konnte nie etwas mit ihm anfangen. Ähnlich wie heute John Cena. Zum Superhelden gepusht um dann dem Wrestling den Rücken zu kehren."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ultimate-warrior-xwrote on 25.03.2008:[10.0] "Ein Wrestling-Gott! Genial am Mic und mit seinem unverwechselbaren Stil im Ring auch ganz grosse Klasse, da können nur wenige mithalten. Zu kurze Karriere im Wrestling. We want to smell what the Rock is cooking! Come back!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: PeoplesChampwrote on 25.03.2008:[10.0] "Für mich der beste Mic-Worker aller Zeiten. Über die Promos braucht man nicht groß was zu sagen. Als Wrestler auch Weltklasse, hatte seinen eigenen Stil, der ihn so ausgezeichnet hat. Konnte Tausende Fans an der Leine halten, ob als Face oder als Heel. Und warum er jetzt als Schauspieler erfolgreich ist hat er ja in unzähligenden legendären Promos bewiesen. Ganz Klare 1!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Perry Coxwrote on 23.03.2008:[10.0] "Er ist "The Great One" War zwar nicht lange aktiv, aber einiger der wenigen, der erfolgreich ins Filmgeschäft gegangen ist!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Psycho-Jokerwrote on 19.03.2008:[10.0] "The Rock steht für wrestling. man wird einfach von seiner ausstrahlung mitgerissen umd fiebert mit. er ist und bleibt the people's champ"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DonTwrote on 17.03.2008:[10.0] "Über ihn gibts nicht viel zu sagen, außer dass er der Inbegriff modernen Sports Entertainments ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Amurebkuwrote on 17.03.2008:[10.0] "Einer der größten Entertainer den die Wrestlingwelt je gesehen hat. Wenn nicht sogar der größte. :-) Im Ring hat er auch immer solide bis gute Leistungen abgerufen. Ein ganz klarer Topstar. Ich hoffe, dass er demnächst wieder zurückkehren wird in die WWE. Auch wenn die Zeichen dafür eher schlecht stehen. Einen The Rock kann die McMahon-Company immer gebrauchen!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Instant Classicwrote on 14.03.2008:[6.0] "Konnte mich nie so recht überzeugen während der Attitude Ära. War in seinem Heel Run 2002(? ) jedoch genial. Charisma und Micwork kann man ihm wohl nicht absprechen, hat mir aber abgesehen von dieser Zeit nicht zugesagt."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Fabbowrote on 09.03.2008:[10.0] "The Most Electrifying Man in Sports Entertainment."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: lagunswrote on 07.03.2008:[8.0] "Am Mic. absolut perfekt! Selbst ohne übersetzung macht das zuhören spaß. Scheint leider mit dem Sprung zum Superstar viele seiner Moves eigebüßt zu haben. (wie andere auch: HHH, Austin) Leider scheinen Dropkicks oder Locks nur was für Rocky Maivia zu sein, aber für the Rock zu uncool. schade! Aber hat dem Wrestling immerhin coolnes und Mainstream gegeben. also 2-"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: felixwrote on 04.03.2008:[10.0] "Ich kann Matt Macks nur zustimmen. Er hat nichts anderes verdient als die Note 1. Er isr einer größten WWE-Stars aller Zeiten, trotz seiner kurzen Karriere. Keiner konnte solche Fanreaktionen ziehen wie er. Er ist der Promogott und zudem ein hervorragender Wrestler, mit sehr gut technischen Fähigkeiten. Er war, was viele andere nicht waren, in der Lage selbst die schlechesten Wrestler zu sehenswerten Matches zu ziehen. Ich hoffe, wie warscheinlich viele Fans, dass er nochmal zurückkommt für mehr als nur ein paar Matches. Zudem ist er ein guter Schauspieler, der es auch in diesem Gewerbe sehr weit bringen kann. Er ist einfach The Great One."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ibanezwrote on 28.02.2008:[10.0] "Finally, The Rock has to come to get 10 Points.... ;-)"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Cybermikewrote on 27.02.2008:[10.0] "Einer der besten Wrestler der Neuzeit sowohl im Ring als auch am Mic Genial!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Schockwrote on 25.02.2008:[10.0] "... gar keine Diskussion. The best entertainer the business ever saw."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Riley Mathewswrote on 25.02.2008:[10.0] "Zum totlachen und er hatte auch eine gute Technik. Super in den Filmen Welcome to the Jungle und Walking Tall . Schade das er bei RAW`s 15. Geburtstag nicht dabei war. In die HoF wird er wahrscheinlich nie kommen war nicht sehr lange in diesem Business. Aber einer der talentiertesdten Superstars am Mikro."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Darbenwrote on 20.02.2008:[10.0] "ES kann nur einen geben. Er ist der great one. Keiner in diesem Geschäft verstand das E in WWE mehr als the Rock. Nur schon seine Tritte sind was ganz spezielles. Zudem hat er eine unglaubliche Austrahlung und weiss was es für ein Topmatch braucht. Seine kurze Ringzeit stört mich nicht. Sondern schaue mir liebend gerne seine Klassiker mehrmals an."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: GSA98wrote on 10.02.2008:[8.0] "der elektrisierenste Typ der WWF, kommt aber nicht an den wahren "Peoples Champion" ran. DDP!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: beck21wrote on 06.02.2008:[10.0] "The Rock war ein klasse Mic-Worker womit er sich over brachte. Im Ring war er nicht annähernd so gut wie am Mic was ich auf seine vergleichsweise kurze In-Ring Karriere(7 Jahre) zurückführe. Das so um The Rock nach getrauert wird, hängt einzig und alleine damit zusammen, dass die WWE keinen Ersatz für ihn gefunden hat. Aber da bei der WWE es vor allem um Kommerz geht bekommt THe Rock von mir 10 Punkte weil nach ca. 5 Jahren der Messias für alle WWE Fans ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: GR81wrote on 25.01.2008:[10.0] "Vom Charisma und den Mic-Skills das Beste, was die WWE jemals gesehen hat! Da wird es wohl so schnell keinen geben, der da rankommen könnte, wenn es überhaupt jemand mal jemals schaffen sollte, diesen Promogott zu übertrumpfen! Gerade als Heel fand ich ihn am genialsten. Keiner konnte so gut mit dem Publikum spielen wie The Great One! In einem Moment jubelt man ihm zu und die Halle ist kurz vor dem Explodieren und nur ein paar Wörter später, wird er von der kompletten Halle wieder ausgebuht (siehe z. B. "A song about Sacramento")! Sowas kann nur der People's Champ! Nach dem Weggang von The Rock und Stone Cold ist die WWE gestorben! Rest in peace WWF! 10 Punkte sind hier noch viel zu wenig! Entertainment pur!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DarkWarrior86wrote on 24.01.2008:[10.0] "1+++++++ ganz klar! Weltklasse Promos, stark im Ring absolut elektrisierendes Charisma. Hat alles was ein Entertainer baucht! Mehr brauch man zu diesem Mann wohl nicht sagen!  Einzigst negativ fand ich seine Rolle las Heel, seine Art zu dieser Zeit wiedersprach einfach allem was er in den letzten Jahren sich als Face aufgebaut hat, daher zu arg aufgesetzt interpretiert meiner Meinung, zieht aber nur ein + in meiner Bewertung ab ;-) Er fehlt meiner Meinung nach ziemlich!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Y2J Michaelswrote on 19.01.2008:[8.0] "Super MicWork auch sehr gut im Ring, ich finde nur schade das er sich so vom Wrestling absetzt. Er darf nicht vergessen woher er kommt. Deswegen nur eine 2"
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: jimpanse1980wrote on 13.01.2008:[10.0] "Der Idealtyp von Wrestler: Einzigartige Promo/Mic-Fähigkeiten. Konnte selbst ohne Worte die (Millions and Millions of) Fans elektrisieren. Dazu tolle InRing-Skills und ein bescheidenes Ego. Hat nie für sich, sondern für die Fans und das Business gekämpft. Das macht ihn für mich zur absoluten Nr. 1 in der WWE, auch wenn seine Karriere im Verhältnis zu anderen Größen doch relativ kurz war."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Guteminewrote on 06.01.2008:[10.0] "Fast noch mehr als seine grandiosen Wrestling- und Mic-Leistungen, bewundere ich seine Intelligenz, rechtzeitig aufgehört zu haben."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: AnFuwrote on 05.01.2008:[10.0] "The PEOPLEŽS CHAMP! Zu Beginn noch verachtet und ausgepfiffen und dann zum besten Mic-Worker und Entertainer entwickelt, den das Wrestling bisher gesehen hat! Unglaubliche Reaktionen auch als Heel, er hat einfach alles! Klasse Matches, legendär seine Matches gegen Steve Austin, volle Punktzahl!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Remootwrote on 05.01.2008:[10.0] "Einer der grossen 6 die die halle bisher zum EXPLODIEREN bringen konnte neben Micheals Hogan SCSA und Triple H und Jericho. Micwork absolut unerreicht... von absolut niemanden auf dieser erde. In Ring ebenfalls sehr gut"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mr sledgehammerwrote on 04.01.2008:[10.0] "Der woh beste Mic-Worker aller Zeiten. Seine Matches sind legendär und Rocky wird auch noch in hundert Jahren der PeopleŽs Champ sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Stone Cold Andywrote on 04.01.2008:[10.0] "Mein All Time Favorite. Es gab kaum jemanden, der mehr Charisma hatte und unterhaltsamere Matches zeigte. Für mich neben Austin DER Superstar des Wrestling."
Rating: 10.0
Sentiment: -0.04999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "The Peoples Champ ist ein super Entertainer, ein tallentierter Schauspieler und war ebenfalls ein ansprechender Wrestler. The Rock ist mein absoluter Fav-Brahma Bull! Leider hoffen wir vergeblich auf ein Comeback-das wirds wohl nie geben."
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Haukewrote on 31.12.2007:[10.0] "Ikone der Attitude Era. Wahrscheinlich der beste Micworker aller Zeiten. Erstaunlich ist, dass er aufgrund der häufigen Titelwechsel in der Atitude Era zwar Rekordchampion ist, aber den Titel nie sehr lange halten konnte. Nur Platz 12 in der Gesamtliste aller Champs (combined length)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MA Excellentwrote on 29.12.2007:[10.0] "The Rock! Der Name passt wirklich wie die Faust auf`s berühmte Auge. Man muss schon stark überlegen, warum man ihm keine 1 geben sollte. Mir fällt da nicht viel ein. Sein Mic-Work ist aus meiner Sicht (finally... ) das Beste ever. Charisma ohne Ende und auch eine wahnsinnige Crowd-Reaction. Aber auch im Ring ein hervorragender Mann. Daran kann man höchstens bemängeln, dass Moves wie der Peoples-Elbow schon sehr übertrieben waren. Jedoch stimmte die Intensität im Ring zu 100 %. Also man muss eine 1 geben."
Rating: 10.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: wrestler of the worldwrote on 27.12.2007:[10.0] "If ya smeeeeeellll, what The Rock is cooking?  Trotz kurzer Wrestling Karriere hat er das erreicht, was man überhaupt erreichen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Wuschl 85wrote on 15.12.2007:[8.0] "7-maliger Champ das sagt eigentlich schon alles. Tolle Inring-Skills und einfach der Beste am Mic - ein echter Entertainer. Fast so populär wie einst Hulk Hogan nur 10mal besser. Fast schon ein perfektes Paket aber ich nehme ihm immer noch übel, dass er so früh aufgehört hat um ins Filmbuisness zu gehen und nun überhaupt keine Auftritte mehr hat bzw. keine mehr will."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Solid Snakewrote on 30.11.2007:[10.0] "The Rock ist wohl der, mit Abstand, beste am Mic. Er hatte mehr Charisma im kleinen Finger, als heute jeder neue Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Foerstawrote on 29.11.2007:[10.0] "The Rock ist trotz seienr mir und vielen andren Fans zu kurzen In-Ring-Zeit zu einer Legende gewachsen, ich hätte ihn gern zurück und ichnicht auf der Leinwand! IF YA SMEEEEELL WHAT THE ROCK .... IS COOKIN'!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: dariawrote on 16.11.2007:[8.0] "Spitzenentertainer und guter Wrestler, aber hier fehlt die wirkliche Hingabe an den Sport"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Champwrote on 16.11.2007:[10.0] "Nicht umsonst: 'The Great ONE' . In meinen augen der beste Micworker ever. Er konnte einen bei seinen Promos sowie im Ring einfach elektrisieren. Das kann bzw. konnte nie wieder jemand so gut wie Dwayne 'The Rock' Johnson. Schade, das er nicht mehr ab und an auftritt. Würde der WWE gut tun."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: BoB Mohrwrote on 12.11.2007:[10.0] "Der beste Wrestler aller Zeiten! Im Ring so gut wie am Mic. Kenne keinen der das Micwork besser beherscht(e) als er es tat. Der Mann hat einfach alles was man zum Superstar braucht. Schade das er nicht mal ab und an bei der WWE vorbeischaut! So einen wie Ihn fehlt der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Pinguwrote on 27.10.2007:[4.0] "Ich konnte ihn nie wirklich leiden. Da waren andere Wrestler zu der Zeit für mich wichtiger und die ich lieber gesehen habe. Dennoch muss man seinen Erfolgen Respekt zollen, daher ausreichend!"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Burzi1wrote on 26.10.2007:[8.0] "Natürlich hat er gute Matches hingelegt, aber so super toll fand ich ihn nie. Für viele mag er eine Art "Hero" sein, aber für mich nicht wirklich. Trotzdem 8. 0 Punkte."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: real americanwrote on 26.10.2007:[10.0] "Er ist einfach einer der Größten die das Business je gesehen hat. The Great One war ein Gott am Mic und auch wrestlerisch hat er sehr viel drauf allerdings ist es schade das er dem Business so schnell den Rücken gekehrt hat um in Hollywood Karriere zu machen und das er wohl erstmal nicht in den Ring zurückkommt."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rated-R-Fanwrote on 21.10.2007:[6.0] "Gut, na klar! Aber seine Karriere ist leider beendet."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Frommeltwrote on 17.10.2007:[10.0] "Klasse Entertainement. Macht jetzt noch spass seine Promos zu schauen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Jericho Onewrote on 04.10.2007:[10.0] "Es ist schade The Rock nicht mehr im Ring zu sehen, denke auch nicht, dass er nochmal zurückkommt! In der , im Vergleich zu anderen Wrestlern, sehr kurzen Zeit in der man ihn sehen konnte, hat er in- und außerhalb des Rings absolut begeistert! Sein Micwork ist unübertroffen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Brahma Bullwrote on 04.10.2007:[10.0] "Ich finde Dwayne "THE ROCK" Johnson war eine echte Bereicherung für die WWF/WWE! Für mich ist er eine lebende Legende! Er war im Ring sowie am Mic, einer der besten den die WWE je hatte! 10***"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Peisistratoswrote on 04.10.2007:[10.0] "Eine der Legenden schlechthin. Ich muss wohl nicht näher erläutern, wieso ich eine Eins vergebe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: yogywrote on 02.10.2007:[10.0] "In meinen Augen der Beste Entertainer welcher je in der WWE seine Auftritte hatte. Technisch gab es bestimmt bessere, z. B. :Bret Hart. Dennoch eine klare 1 für diesen Mann. if You Smell.... !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Oli10wrote on 01.10.2007:[6.0] "Ich war nie ein großer fan von ihm! Für mich macht er zu viel Show im Ring!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: King of Queenswrote on 28.09.2007:[10.0] "Eine unglaublich charakterstarke Persönlichkeit im Wrestling. Im Ring auf gehobenem Niveau, am Mic dermaßen unterhaltsam und geil, dass es scho fast beängstigend ist. Egal was er macht, man fühlt sich unterhalten, und sobald er etwas sagt, ist der Tag gerettet. Das wohl stärkste Micwork eines Wrestlers, das es je gegeben hat. Einfach super!"
Rating: 10.0
Sentiment: 0.30833333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: caterwrote on 25.09.2007:[8.0] "Im Ring ehr eine Gurke, aber am Mic natürlich sehr gut."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Lord Loviswrote on 08.09.2007:[10.0] "The Rock hat meiner Meinung nach den Titel des besten Sports Entertainer allerzeigten locker verdient. Seine Promos waren einmalig und über seine Genialität am Mic muss man wohl gar nicht reden. Die Fans hatte er so im Griff, dass das Zucken einer Augenbraue reichte, um die Halle zum Kochen zu bringen. Seine Matches waren immer superspannend und bei jedem, das ich erleben durfte muss ich immer wieder nachdenken, warum so ein Mann diesen Sport verlassen musste. Und das mit 32 Jahren! Jetzt ist er 35 und damit weit jünger als der Undertaker, Batista oder andere Größen der heutigen Zeit. Vielleicht besteht ja noch die Chance auf eine Rückkehr wenn er mit 42 Jährchen oder so genug vom Filmgeschäft hat...... hoffen kann man ja immer. ;-)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Trevedaswrote on 02.09.2007:[8.0] "Im Ring nicht mehr als Durchschnitt. Was das MicWork angeht, kann er auch nicht viel mehr, als seine auswendig gelernten Catchphrases runter zurattern. Wo bleibt die Kreativität? Was ist an seinem MivWork innovativ? Genau, gar nichts! Ist zwar kein schlechter, aber bei weitem kein Wrestling Gott und schon gar nicht der beste MicWorker, den es je gab."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Bullit69wrote on 21.08.2007:[10.0] "Er is ja jedermanns Champ, is nur schade, dass er der Meinung is Filme zu drehen... naja vielleicht merkt er ja, dass er da nix zu suchen hat und kehrt in den Ring zurück! ;) IF YA SMELLLLLLLL, ... ihr kennt den Rest!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Bret Hartwrote on 15.08.2007:[10.0] "Der Mann der mich nach dem Weggang von Bret Hart wieder zur WWF brachte. Geniale Promos, es gibt kaum einen Wresteler der es so verstand die Massen in seinen Bann zu ziehen. Schade dass man ihn wohl nie mehr dort sehen wird wo dieser Mann einfach hingehört: im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: novacanewrote on 15.08.2007:[10.0] "Nicht der Über - Wrestler, aber ein Gott am Mic und mit einem unübertroffenen Entertainment Faktor. If you smell ...."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Ninielwrote on 14.08.2007:[10.0] "Loved too much he's style... Past now.... So sad... :("
Rating: 10.0
Sentiment: -0.12000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: DrBreswrote on 13.08.2007:[8.0] "Grandioser Typ am Mic, im Ring auch ganz ordentlich... aber weniger die Legende, als die er dargestellt wird. Klar, ein Kerl wie The Rock wäre eine Bereicherung für die WWE, aber im großen und ganzen doch austauschbar. Es gibt genug gute Leute am Mic, nur sind die teilweise derzeit alle verletzt...."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Obermackerwrote on 09.08.2007:[10.0] "Gutaussehender Worker mit starkem Body, unglaublichen Micskills, einem vielseitigen Wrestlingstil, Mördershowtalent, der nochdazu das Charisma mit dem Löffel gefressen hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: shannonmoorewrote on 29.07.2007:[10.0] "Nie im Ring sehr gut aber wenn intressiert das schon. Bomben Charisma und vor allem Humor, solche witzigen Promos vermisse ich heute in der WWE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: HHH-Stephwrote on 10.07.2007:[10.0] "Sehr guter Entertainer sowie Wrestler... schade , dass er ins Filmgeschäft umgestiegen ist... er war ein besserer Wrestler als Schauspieler!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: scotty619wrote on 10.07.2007:[10.0] "The Rock ist ein tolle Wrestler und ein toller sprecher . seine Sprüche sind klasse If you smelllllllll. What the Rock is cookink"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: jerseyhoolwrote on 10.07.2007:[10.0] "Kult! nur wenige werden je an die leistungen von the rock am mic heran reichen. sehr schade jedoch, dass er dem wrestling sehr frueh den ruecken gekehrt hat - haette ihn gerne noch einige jahre zwischen den seilen gesehen. do you smell, what the rock is cookin'?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: MGStylezwrote on 09.07.2007:[10.0] "ROck is GOd! Kein toller Wrestler, aber der Charimatischste und Micworkmäßg beste Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Mountiewrote on 05.07.2007:[10.0] "Es gibt wohl keinen Wrestler, der aus einer so kurzen Karriere so unglaublich viel herausgeholt hat. Wasich an ihm aber am sympathischsten fand: Keine Spur vom hoganschen oder austinschen Primadonnen-Verhalten, er half stets dabei, seine potenziellen Nachfolger mit Niederlagen over zu bringen."
Rating: 10.0
Sentiment: -0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ShaneOwrote on 28.06.2007:[8.0] "Am Micro der Beste das es je gab und (wahrscheinlich) geben wird. Im Ring war er leider größtenteils, ich sag mal, langweilig."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: LexLuger4everwrote on 24.06.2007:[10.0] "Neben Hogan und vielleicht Stone Cold der beliebteste Superstar aller Zeiten! Keiner hatte die Fans mehr in der Hand als er! Charismatischer als Rocky geht es nicht mehr! You will go one on one with the great one... and there are two things you can do about it: nothing and like it"
Rating: 10.0
Sentiment: -0.09999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Azraelwrote on 24.06.2007:[10.0] "Guter Wrestler mit phänomenalen, nie auch nur annähernd erreichtem Micwork. The Great One, the Peoples Champ. Der beste Wrestling-Entertainer aller Zeiten."
Rating: 10.0
Sentiment: 0.8
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Edgecution1991wrote on 24.06.2007:[10.0] "Wahrscheinlich der beste Mic-Worker, den ich je gesehen habe. Die Moves bringt er auf eine sehr gute Art rüber. The Rock ist einer der besten Wrestler, die es je gab."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: The Showstopperwrote on 24.06.2007:[10.0] "Im Ring zwar nicht der beste, aber grundsolide, dafür in Sachen Mic-Work, Auftreten und Charisma einfach ein Gott. Wohl der einzige, der es jemals schaffen wird, mit einem Hochziehen der Augenbraue tausende Fans zum Durchdrehen zu bringen ;-)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: anny-bwrote on 24.06.2007:[10.0] "sowohl als wrestler auch als schauspieler, ganz groß!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Duke Skywalkerwrote on 24.06.2007:[10.0] "The Great One! Am Mic ein Gott, im Ring absolut ordentlich und mit der Fähigkeit gesegnet das Publikum mit kleinen oder großen Gesten zum Kochen zu bringen und so auch schwächere Paarungen zu einem Vergnügen zu machen. Zudem der beste Heel der jüngeren WWE Geschichte. Lang lebe "Hollywood" Rock!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: ShakDragoonwrote on 24.06.2007:[10.0] "Wie beschreibt man "The Rock" am Besten... einfach ne coole Sau! Einfach genial, eine Charismabombe, der man stundenlang am Mic zuhören könnte und auch im Ring war er gut. Mein Alltime-Favorite!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: D3adm4nwrote on 24.06.2007:[10.0] "Da führt kein Weg an der eins vorbei. Rocky ist einfach ein Rundumsorglospacket."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Basti1989wrote on 24.06.2007:[10.0] "Vor allem als Schauspieler gefällt er mir sehr gut. Von seinen Fähigkeiten als Wrestler ganz zu schweigen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Mediwrote on 24.06.2007:[10.0] "Einfach nur geil am Mikro und im Ring. Ein wahrer Champion, um den es wirklich schade ist, dass er nicht mehr im Ring steht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Kruemelwrote on 24.06.2007:[6.0] "war nie der größte Rock Fan. Promos sind klasse, im Ring reichen 2 Matches um zu wissen, was als nächstes kommt."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Rob Van Duesenschrauberwrote on 24.06.2007:[8.0] "Er war und ist ein Gott am Mic. Aber im Ring war er doch nur Mittelmaß. Deshalb nur ein "Gut" von mir."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Cpt Dave Charismawrote on 24.06.2007:[10.0] "göttlich, göttlicher, am göttlichsten... und die Steigerung des Superlativs? THE ROCK... Austin, Johnson, Foley, begrenzt Dreifach H.... this was Wrestletainment....."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Hardcoremaniacwrote on 24.06.2007:[10.0] "Der beste Sports-Entertainer aller Zeiten. Da muss auch HBK hinten anstehen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: mdbnasewrote on 24.06.2007:[10.0] "Charismatisch, gut gebaut und einfach überzeugend. Sowohl gute Micskills also auch gute technische Fähigkeiten. Großer Verlust fürs Wrestling, Gewinn für die Filmindustrie!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Steven McWheelerwrote on 24.06.2007:[10.0] "Das beste Micwork aller Zeiten und ich bezweifel, dass es jemals jemand toppen kann und als Wrestler konnte er alles, was man auf dem Niveau halt können muss, kein Deut zu wenig und keines zu viel ;)"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Vimeswrote on 24.06.2007:[10.0] "In meinen Augen im Ring besser als viele andere Superstars(Austin, Bret, Foley, Taker, Booker T um nur ein paar zu nennen). Über das Mic-Work brauchen wir wohl nicht zu reden..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Blue Meaniewrote on 24.06.2007:[10.0] "Der Beste Mic Worker aller Zeiten, da all seine Promos unterhalten haben! Seine In-Ring Skills sind OK, wobei diese unwichtig sind, da er duch sein Charisma in seinen Matches so wie der Taker so oder so immer überzeugte! Schade, dass er jetzt lieber in unerfolgreichen B-Movies in Hollywood mitspielen muss, hoffentlich sehen wir ihn dennoch irgendwann nochmal im Wrestling Ring!"
Rating: 10.0
Sentiment: 0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Jeddixwrote on 24.06.2007:[10.0] "Definitiv einer der besten Wrestler/Entertainer aller Zeiten. Am Mic ist er einfach ein Gott und auch im Ring war er immer wieder für gute Matches gut. Hat aber leider viel zu früh seine Karriere beendet."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: metaltyrantwrote on 24.06.2007:[10.0] "Mikrofongott und ganz pasabler Wrestler. Was bleibt, sind Promos für die Ewigkeit. Ich vermisse ihn. But it doesn't matter what I'm thinking!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Captain Hookwrote on 24.06.2007:[10.0] "Es gibt wohl keinen Wrestler, der so unglaublich mit den Fans spielen konnte wie The Rock. Zu seiner Hochzeit 99/00 war er vielleicht sogar der beste Publikumsliebling den WWE jemals hatte. Die Tatsache, dass er als Heel jedoch noch besser agierte, zeigt seine wahre Klasse. Seine großen Erfolge als Schauspieler sind daher nur wenig verwunderlich."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Sabu316wrote on 24.06.2007:[10.0] "Hatte am Anfang schwer mit seinem Gimmick zu kämpfen aber danach wuchs er über sich hinaus. Unvergessen sein Micwork!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=960&gimmick=The+Rock
Comment: Carlito Cenawrote on 24.06.2007:[10.0] "Ein Gott am Mikro, neben dem Wrestlerischen auch ungeheueres Schaupieltalent. Dies kommt ihm nach seiner -für mich- zu kurzen Wrestlingkarriere nun zu Gute. Nicht nur die Action, auch Comedy liegt ihm - for Details watch The Rundown/Welcome to the jungle. ;-)"
Rating: 10.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Undertalkerwrote on 07.02.2025:[8.0] "Er verleiht dem ohnehin schon brillanten Bloodline-Stable die gewisse Würze. Wie er mit seiner naiven, gutgläubigen Art mit den anderen Mitgliedern dieses Stables interagiert, ist einfach ausgesprochen unterhaltsam sowie interessant. Im Ring ist Sami Zayn ebenfalls klasse und somit immer für starke Matches zu haben. Mit seiner Rolle bei der Bloodline scheint er im richtigen Fahrwasser für seine WWE-Karriere zu sein. Jetzt erkennt so gut wie jeder, was für ein Potenzial in ihm steckt! Ich hoffe, dass er jetzt auch einen konsequenten Push erhält und sich fest im Mainevent etablieren kann. Edit 02/2025: Zu Bloodline-Zeiten sprangen die Fans unheimlich auf ihn an - mich eingeschlossen! Nachdem seine Zeit dort vorbei war, fielen die Reaktionen nach und nach gedämpfter aus. Er ist immer noch beliebt, aber man merkt einfach, dass das Interesse an ihm schon seit längerem nachgelassen hat. Ich bin der Meinung, dass es dann doch seine Interaktion mit der Bloodline war, die ihn so overgebracht hatte; daran erkennt man, wie stark und effektiv dieses Stable, und auch sein Anführer Roman Reigns, eigentlich ist. Sami ist auch ohne dieses unterhaltsam sowie charismatisch, keine Frage, aber so fehlt ihm doch noch etwas, womit er die Fans entschieden von sich überzeugt. Er ist ein wichtiger Bestandteil von WWE und ich hab auch weiter eine positive Meinung über ihn, aber um einen Punkt gehe ich runter."
Rating: 8.0
Sentiment: 0.013636363636363627
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rassle Fanwrote on 06.02.2025:[7.0] "He's very good. A lot of charisma, great babyface, very athletic. In WWE, however, all of his matches feel identical. There's zero suspense for the blue thunder bomb. He's never won with it and it usually comes at the same point in every match, which is about half to two thirds of the way through. His promos have gotten better through the years but the WWE style is cut and paste."
Rating: 7.0
Sentiment: 0.24916666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ShooterMcShootwrote on 04.02.2025:[9.0] "An exceptionally talented performer who has done great work as both a face and a heel. To me, a bit reminiscent of Mick Foley. Not in his work or anything like that, but just his position on the card and his personality."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: xoxobelarywrote on 31.01.2025:[5.0] "I have the same opinion as Bayley about Sami, he's not good as a Babyface nor as a heel, I really don't like his personality as a Babyface, it's very cliché, like the fairy tale movies in the 2000s ''the hero who saves everyone from the villain and has a happy ending'', VERY CLICHÉ, and i don't like it so much for WWE, I think he should have a year off to improvise his characters, but don't get me wrong, he's a very nice person outside of WWE, If I stop and think about it, I can't answer if someone asks me if I prefer Sami Zayn as a babyface or heel, because he is mediocre in both roles."
Rating: 5.0
Sentiment: 0.09363636363636364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: wrestlingswiftiewrote on 29.01.2025:[9.0] "As a babyface, he's great, but he needs to be carried by a good storyline. (Take the Bloodline stuff or his long-running, never-ending rivalry with Kevin for example). But as a heel? He can turn shit into gold. And I don't need to talk about his actual wrestling ability, because you already know how good he is... Right?"
Rating: 9.0
Sentiment: 0.38095238095238093
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: docphantomswrote on 29.01.2025:[7.0] "I used to rate Sami higher but he peaked with his match vs Roman at the Elimination Chamber. He should have won that and then Roman should have taken it back, to show the cracks starting to form in the champ's abilities. Instead we were given an insufferably long, boring, nothing-happening reign that was bouyed by cookie cutter matches. But Sami elevated the Bloodline and made them work. his in-ring is always solid and he is a natural babyface. Ultimately, though, he kind of suffers from not really doing more than being a general babyface in WWE. He is the constant "underdog" yet he has won against a lot of impressive foes and done well as tagteam champ and for some reason was the one to dethrone Gunther. I am happy for the guy, but I just wish I cared more for him these days."
Rating: 7.0
Sentiment: 0.12058823529411763
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: AceHagannwrote on 15.01.2025:[8.0] "The ultimate underdog. Sami's history is full of great matches with great opponents, making great stories in between. To me, he is undeniably great. My only issue with Sami Zayn is that in his best stories, he tends to appear as an afterthought. Which makes sense given his aforementioned underdog status, but it'd be great if he was the star in a feud more often."
Rating: 8.0
Sentiment: 0.5318181818181817
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Lukeathonwrote on 13.01.2025:[10.0] "I cant go any less, Sami Zayn is one of the greatest underdog's there ever will be in wrestling. Not to mention his predecessor El Generico who was a stand up gent and endorsed Sami on his way out of the business! All jokes aside, Just look at Sami Zayn vs Neville & Sami Zayn vs Shinsuke Nakamura at NXT Takeover Revolution & Dallas respectively, they are genuine masterpieces. Sami Zayn is one hell of a wrestler, although I will say I liked him better when he wasn't politicing his way into Chad Gable's wrestlemania spot."
Rating: 10.0
Sentiment: 0.3888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MEDaminewrote on 09.01.2025:[9.0] "One of the best wrestlers, really amazing in the ring, great in the mic, great character worker, as he can be both an underdog babyface and a dirty heel, has many memorable moments in his career, and he's also a nice guy, it's impossible to hate Sami Zayn"
Rating: 9.0
Sentiment: 0.2733333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: FutureWrestlerCelebwrote on 31.12.2024:[1.0] "Sami Zayn, during his career, has suffered losses to wrestlers who are often seen as enhancement talent, or "jobbers, " to help elevate others. One notable instance was when he lost to Baron Corbin on multiple occasions, despite his skill and experience. Zayn has also been on the losing end in matches against wrestlers like Riddick Moss, who were used to build stories or showcase their own strengths. His rivalry with Jinder Mahal included losses that painted Sami as the ultimate underdog, struggling against competitors who were often seen as stepping stones. These losses, while frustrating for fans, have helped set the stage for Sami's eventual rise to prominence in WWE, adding depth to his character. Sami Zayn has also taken losses to lesser-known competitors like Apollo Crews, who, at times, was positioned as an underutilized talent on the roster. He lost to the likes of Mike Kanellis, whose time in WWE was largely spent in low-card storylines. Another setback came when Sami lost to the powerhouse Braun Strowman, showcasing his vulnerability against much larger opponents. Even in his rivalry with Kevin Owens, Sami took multiple defeats that emphasized his struggles and underdog status. These moments of defeat, though frustrating for fans, played a key role in shaping Sami Zayn's narrative as a resilient, never-give-up character."
Rating: 1.0
Sentiment: 0.020000000000000007
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: neuuwavewrote on 22.12.2024:[6.0] "I don't see what everyone else sees in Sami. There are moments in the ring where i do actually really like watching him but those moments don't happen often. I find his promo work very boring and even though I'm sure its intentional it's incredibly corny and physically hurts to watch. Just not an interesting character either but constantly gets thrown into some of the best story-lines and feuds. Also fucked over Gable but I'm not gonna take points off for that but it definitely doesn't help."
Rating: 6.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Anas Kingwrote on 12.12.2024:[4.0] "He's an ok wrestler at best. Not good at selling. Bland babyface. Bland Character work. Corny Promos. Backstage politician and took Chad's spot at mania. He's not a good person, and he's not an interesting character, and he's not a great wrestler. The quality of his matches has been dwindled. Same old boring moveset and boring Goku, Gingka, or Superman like dull promos. Oh I can't loose because of my friends. I can't loose because my family is in the attendance watching their hero. There's a reason why he has never won a world title in wwe."
Rating: 4.0
Sentiment: -0.1185897435897436
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: JuanLocowrote on 08.12.2024:[10.0] "Can he be a good underdog? Yeah. Can he be a cheating heel? Yeah. Few superstars have the ability to connect with the public like Sami Zayn. His energy, expressiveness and authenticity make him stand out. Whether as a babyface fighting against adversity or as a charismatic and cunning heel, he always manages to attract the audience's attention. If Sami does not become world champion e. WWE would be one of the biggest mistakes."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: XNoWayKemoSabeXwrote on 25.11.2024:[8.0] "Sami is a character. He can make you laugh with his immaculate humor or hype you up to make you want to run through a wall. The passion he displays is top-tier. We need a world title run for him soon."
Rating: 8.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ezramitchwrote on 14.11.2024:[10.0] "Sami Zayn is my favorite currently active male wrestler. He is outstanding on the mic and makes me believe every word he says. His in-ring work is consistently impressive. His finisher looks extremely believable. Throw him into any storyline and he will find a way to thrive. And from everything I can garner, he seems like a genuinely great guy outside of kayfabe. Definitely a future HOFer."
Rating: 10.0
Sentiment: 0.35185185185185186
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Wrestlingfan0808wrote on 05.11.2024:[10.0] "One of the more under appreciated wrestlers and a true one of a kind. No matter what role he is playing, whether it was being a cowardly heel, or being one of the top babyfaces ever, Sami always knocks it out of the park whatever hes being tasked with. He can do it all, and is one of the main reasons why the bloodline story managed to reach the heights it did during its peak of the storyline. Unsung hero. And to top it off, hes also one of the best wrestlers ever. His booking has finally started to reflect that after his run as ic champ. Future world heavyweight champion. Great wrestler, even greater person"
Rating: 10.0
Sentiment: 0.4263888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: scenicryanwrote on 23.10.2024:[9.0] "Admittedly it is generally hard for male wrestlers to pique my interest but Sami Zayn is someone who you can tell puts his everything into his all around performance. His promos are amazing and he knows how to stir up the audiences emotions so well. Hes also such a firecracker in the ring and so much fun to watch."
Rating: 9.0
Sentiment: 0.12166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Dntbamarkwrote on 02.10.2024:[8.0] "Initially I wasn't a fan of his, i thought he was a goofy indy guy with 0 charisma. His work with the Bloodline definitely changed my opinion on him and subsequent character changes have definitely changed my viewpoint on him and made me realize how wrong I was. I think Sami is fantastic, he works as a sly heel or an underdog babyface and work with just about anyone on the card."
Rating: 8.0
Sentiment: 0.05714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rosyawrote on 29.09.2024:[9.0] "Unique superstar who doesn't matter whether he should play a good underdog or a coward man who has something wrong with his head. Very believable character whatever he does. That's what I call a talent"
Rating: 9.0
Sentiment: 0.30625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: OneSuddenBOOMwrote on 28.09.2024:[8.0] "A great worker, who excels as being a comedic heel, which we saw with his work in the bloodline. He'll go down as a great mid-card act and a reliable wrestler who can work a good match. I never rated him as a face, the underdog story gets old and boring quick and Zayn's promos over the past several months have been stale in my opinion. Another heel sami run would be amazing, but with how over he is right now, it may be a while until we see that. I enjoyed his feud with Bron Breakker surprisingly, it was a nice passing of the torch moment from one amazing worker to a future world beater. As long as Sami can still cook in the ring, I see nothing but great matches for us to watch from him, even if his promos need a little work."
Rating: 8.0
Sentiment: 0.2337996031746032
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: RaysBruwrote on 25.09.2024:[9.0] "Sami's an incredible wrestler and a very likeable person. Great moveset, attire and he's a great promo."
Rating: 9.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: sKiaWeVwrote on 17.09.2024:[10.0] "I find it crazy how often I find myself underrating Sami Zayn. I will admit I am always proven wrong. Whenever he has the chance to do something interesting he makes it truly special. Great in-ring skills combined with being the most naturally believable babyface in wrestling puts him as one of the best to enter the ring."
Rating: 10.0
Sentiment: 0.3196428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ItsLugerwrote on 12.09.2024:[10.0] "One of the most natural babyfaces in history of wrestling. Phenomenal in the ring, fantastic on the mic, and a great person with a big heart. Disliking Sami is a red flag, he is a perfect example of the greatness of professional wrestling."
Rating: 10.0
Sentiment: 0.37777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: sbprodwrote on 28.08.2024:[10.0] "Maybe my favorite today, he is an incredible wrestler, an incredible promo with his great display of charisma and emotion. He can play any role well. If he wants to be a comedic heel, he can do that. If he wants to be a loved face he can also do that. Sami is also an incredible human being which makes me like him even more."
Rating: 10.0
Sentiment: 0.56
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Joe907wrote on 25.08.2024:[10.0] "Sami Zayn/El generico is one of favorite wrestlers ever. Very entertaining and he does awesome work in the ring. He has technical ability and can high fly too. His character work has been amazing over the years. Ultimate underdog and good on the mic. One of the all time greats"
Rating: 10.0
Sentiment: 0.49
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: SephyAtticuswrote on 18.08.2024:[10.0] "Rarely will a wrestler catch my eye like Sami Zayn did. After taking a multi year hiatus from wrestling, I would begin to watch in 2022. The notable storyline here would be The Bloodline story. Now I can talk about all the good that it is, but the highlight was always Sami Zayn. His work on the mic is tremendous, being able to play that annoying, manipulating heel, or the biggest babyface you will ever see, to the comedy that we saw in the Bloodline. Overall Sami's work in the last two years has been great, having some of the best matches such as his last two Mania bouts, as well as Elimination Chamber 2023. Personally, I do not see a world where this man doesn't become a world champion eventually, and he'll deserve every bit of the reign that follows."
Rating: 10.0
Sentiment: 0.2564102564102564
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Enchantiumwrote on 08.08.2024:[3.0] "This might be my harshest review to date, but personally, I have never been a fan of Sami Zayn. At first, his run in NXT was good, and it was nice to see him, but since then, he has sort of been forced down people's throats at times. He continues to do that overused underdog gimmick, which becomes one of the most predictable things in the world because it has been done that many times. The Bloodline work was good for a bit as well, then they dived directly back into being the underdog, and that is such a boring gimmick that reaches the same old, same old. Great wrestler, though. I cannot fault him on that, but he really needs to find something new and give that underdog gimmick to somebody realistic in NXT, maybe like Je'Von Evans. His recent run with the intercontinental title was so useless. He had a few good matches, but it was just rubbish overall. Why did he win it? You literally had two perfectly capable workhorses, Chad Gable and Sheamus. But I suppose the meme Sami Hogan means something."
Rating: 3.0
Sentiment: 0.14633838383838382
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: RealGrapsThomsenwrote on 08.08.2024:[10.0] "If Sami retired today, hed be an all time great in my opinion. A brilliant underdog who can tell a really compelling story and has a very diverse moveset. His character work is amazing, whether hes an underdog babyface or the cowardly conspiracy theorist heel, he excels."
Rating: 10.0
Sentiment: 0.56
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mke1996wrote on 06.08.2024:"Unfortunately he is unwashed and not worthy of a title. It's a good thing bron took it off of him. There are some things russo is right about after all"
Rating: No rating found
Sentiment: 0.07976190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: KobashiChopMewrote on 04.08.2024:[10.0] "Sami Zayn is one of the best pure babyfaces that the industry has ever seen. Everything he does inside the ring is phenomenal, from his execution of moves to the way that he sells for everybody, and makes them look like a star. I hope that he gets his run with a world title before he hangs them up, as that is the one thing he has missed out on in his career in the WWE so far and he has put in the effort and the work to be at that level."
Rating: 10.0
Sentiment: 0.45357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TrueJugoBetrugoNo1wrote on 04.08.2024:[8.0] "Sami Zayn ist ein Thema für sich. Ich persönlich mag Sami. Er kann sowohl im Ring als auch am Mic überzeugen und verkörpert einen wundervollen Heel, als auch einen guten Publikumshelden. Sein Höhepunkt war wohl der Royal Rumble 2023 sowie sein Match gegen Roman bei der folgenden Elimination Chamber. Ein Klassiker, keine Frage, ein Moment und ein Match definieren jedoch keine komplette Karriere, sonst wäre es sicherlich eine volle Punktzahl. Zugegebenermaßen kenne ich seine Zeit in den Indies und "El Generico" nur von Berichten, deshalb fällt diese aus der Bewertung heraus. Insgesamt also ein fähiger und verlässlicher Worker. Er connectet gut mit dem Publikum und kann sich im Ring beweisen. Mir persönlich fehlt jedoch noch das gewisse Etwas, um Ihn höher zu bewerten. Vielleicht kann mich ja nochmal ein potenzieller zukünftiger World-Title Run überzeugen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: HBK16wrote on 04.08.2024:[5.0] "Hate him. Never physically cringed at a wrestler so many times. How many times can you really play the same underdog character like ffs give it a rest. Boring overused character. Very cringe on the mic. Good wrestler tbf but his character is so so so awful. Although I wasnt the biggest fan of conspiracy theory Sami, at least he changed his character, now were back again to underdog Sami. You cant still be underrated after nearly 10 years on the main roster after main eventing wrestlemania, being a multi time tag and intercontinetal champion while also stopping the longest IC title reign ever which was possibly one of the worst WWE decisions ever. Overused and repetitive cringe character"
Rating: 5.0
Sentiment: -0.10092592592592593
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: BizarroMaskwrote on 02.08.2024:[6.0] "i prefer him wenn he was in a more comic role , he was really Good at it. I am very happy for him and all the importance he get , but it's not what i would have decide for him . He should have loss the intercontinental title to Chad Gable and maybe return in feud against Jey uso."
Rating: 6.0
Sentiment: 0.6125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Chosen Onewrote on 02.08.2024:[4.0] "Sorry, aber ich hab den Hype nie verstanden. Er ist kein Hingucker, sieht nicht stark aus, ist mittelmäßig bis gut am Mic und zwar gut im Ring, aber das gewisse Etwas fehlt einfach. Von einem Triple H zum Beispiel kann ich mir ein x-beliebiges Match ohne Story, Vorkenntnisse oder sonstwas gut ansehen, weil ich sein Moveset sehr gut finde und er je nach Situation seinen Gegner entweder fertig macht oder gut dastehen lässt, aber Sami, so technisch begabt er ist, hat einfach keinen Reiz für mich. Der einzige interessante Teil seiner Karriere war als Honorary Uce, weil er da gleichzeitig als liebenswürdiger Außenseiter und Anhänger eines Heel Stables brillieren konnte. Diese Rolle hätte so kein anderer spielen können, das muss ich ihm lassen. Aber nach der Bloodline wurde er wieder uninteressant."
Rating: 4.0
Sentiment: -0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Willie 19200wrote on 26.07.2024:[10.0] "Sami Zayn is the guy you show people who want to see good wrestling and great characters. The dude is so entertaining whether he's the "Ultimate Underdog" or "The Great Liberator, " he is one of the greatest characters and storytellers in wrestling history. His stuff in NXT was amazing plus his main roster debut against John Cena was awesome. Iv'e enjoyed his Intercontinental and tag team title reigns he's had and not to mention he's part of one of the greatest rivalries I've ever seen known as Sami Zayn and his best friend/enemy Kevin Owens. Overall one of the greatest pro wrestler and storytellers in pro wrestling history."
Rating: 10.0
Sentiment: 0.6476190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: igskillfartwrote on 25.07.2024:[0.0] "I just dont get this guy like AT ALL, I have seen his NXT work and his old persona El Generico and i love that run, but as Sami Zayn, the intercontenetintal Champion.. Hes just trash to me, its always that story where he is always the underdog in EVERY SINGLE MATCH, which makes it even more boring to watch him, his promos are TRASHH, he always talks about him being "The Underdog". why does he even have this title anyways, he presents it so poorly and it just isnt fun to watch him, he is just not good as he used to be anymore which is so sad, considering he was one of the best in NXT around the golden era, now he is just treated poor, do i hate Sami now? Yes.. do i hate Sami in General.. No. its just that he is being treated garbage over there and he needs to find a better place. its the truth"
Rating: 0.0
Sentiment: -0.06696428571428573
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Crofallwrote on 23.07.2024:[10.0] "Sami Zayn is my favourite wrestler. He cuts great promos within great storylines. Often he'll just go out and cut the best promo of the night with basically nothing to work with ("I am rebellion" promo). He regularly has match of the night contenders. I cannot wait for the world title rematch against Gunther (which he should probably lose)."
Rating: 10.0
Sentiment: 0.65
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Quack7183wrote on 09.07.2024:[0.0] "Jesus Christ this man won't shut his mouth. "I'm not an underdog, I'm a champion! " "I put on the best matches in this ring! " Stop lying to yourself Sami. You've put on the worst match of the night each night. You've put on the worst promos every RAW too. You are absolutely horrible, Sami. There is no atom in your body that makes you a likeable wrestler. You're a fake champion who doesn't know how to put on good matches. This man does not know what he's talking about at all. You know you're bad if you're devaluing a championship that had so much prestige from the previous champion. Just go back to the indies, because no one wants to see you wrestle each and every week. Maybe he was good in the indies, but i honestly don't care, because from what I've seen from him, he's boring. He might've been good in NXT, but I didn't watch NXT in 2014. He might've been good during the Bloodline storyline, and I actually sympathized for him when he hit Roman with the chair, but now he's just his same old self. I just wish he would lose that Intercontinental title, because it's making me tired of seeing it each and every week. Moral of the story, this man is straight up boring. Horrible mic skills, mid in-ring skills, and overall a really unlikeable dude. 0/10"
Rating: 0.0
Sentiment: -0.09633699633699631
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ZerKOwrote on 08.07.2024:[9.0] "Sami really brings the intensity and passion about pro wrestling to the table. A master when it comes to storytelling, Sami is truly one of a kind. Being a believable underdog, a smart technician and a hard-working professional is the perfect mix for a lovable babyface that connects with the audience."
Rating: 9.0
Sentiment: 0.4448979591836735
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Saltanwrote on 21.06.2024:[10.0] "One of the best pure babyfaces of all time and also one of the best snarly heels just shows how special he is"
Rating: 10.0
Sentiment: 0.6428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Khalid Acewrote on 21.06.2024:[6.0] "I guess I am on my own here but I still don't see it. At one point I had him a 10 not gonna lie but because he was very consistent in the ring but he was never a good speaker and I don't see those improvements everyone speaking about. I don't find him funny neither"
Rating: 6.0
Sentiment: 0.20625000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TheOneKnowsNoOnewrote on 11.06.2024:[10.0] "Greatest underdog of decade. He is great in ring & awesome with mic. He is a complete wrestling package . Everything he was involved with since the bloodline storyline turned to viral. Hope to see him as a world champion!"
Rating: 10.0
Sentiment: 0.73125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Okaro143wrote on 06.06.2024:[10.0] "One of NXT's best alumni and one of the best performers in WWE History. Sami Zayn is the total package capable of cutting amazing promos and giving the WWE Universe amazing matches but he has been severely underutilized in the WWE. He reminds me so much of Bryan because his character work is so good. He can pull off any character whether it is a heel or face. But personally I think that WWE needs an underdog hero that the fans can believe in and I believe Sami could be that guy."
Rating: 10.0
Sentiment: 0.37
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Pigeon Scratchwrote on 29.04.2024:[10.0] "Such an underrated performer when it comes to mainstream wrestling, being such a standout and one of a kind from the Indies. An all time babyface, and genuinely such an amazing person outside of the ring. Genuinely I think the only complaint I have about him is how he has been booked in WWE for the longest time, outside of his work in NXT. He just never fit in the roles that he was given, up until The Bloodline storyline and pretty much everything since then, because now he's being used fucking excellently. He's charismatic, funny as hell, but also can be very serious if needed. He's genuinely one of my favorite sellers, and he's damn solid in the ring too. Also, he's such a positive influence both in the business and out of it. His work in Syria alone is a prime example of that."
Rating: 10.0
Sentiment: 0.14256854256854257
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CatboyMathuswrote on 26.04.2024:[10.0] "The perfect performer. There only are a few better wrestler than this guy and there probably is even less people that are as versatile as he is, he can do the comedy bits with perfection (his match vs Knoxville at Wrestlemania is the best comedy match EVER) and he can be the guy on which you put a championship because yeah, he deserves it. He puts so much effort in his work, he does so many good spots by matches and he steals the show virtually EVERY time he is in a show. This dude is litterally one of the 10 best wrestler of the millenium and you can't change my mind"
Rating: 10.0
Sentiment: 0.4533333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TurdFergusonThe2nd1wrote on 25.04.2024:[5.0] "Sami Zayn is one of the most overpushed acts in wrestling history. His characters are this: generic luchador, underdog that takes 55 finishers and keeps going, and obnoxious cowardly heel. The last one was his most suitable role and the Johnny Knoxville feud is where the bulk of my positive approval for this guy comes from. Also the fact that he hasn't been a main roster world champion because he belongs in the midcard. Should he be ending the longest Tag Team & Intercontinental Title runs in history? Not in my world, but it's not my call. Him standing up immediately after taking the 3D at WM39 angered me because his physique is just as average and grotesque looking as my own, should I be dethroning Austrian cyborgs & Samoan street twins? I shouldn't be because who am I? Zayn has been overhyped since debuting in NXT and is significantly lesser than Kevin Owens, who is really just Tommy Dreamer with a flashier moveset. One of the main driving factors of me not watching the show weekly anymore is because of people like Sami Zayn and I can't rate him lower because of administrative policies and my passion for this being diminished. Do not silence me or it's a conspiracy (Get it? That's a character he had)."
Rating: 5.0
Sentiment: 0.10432900432900435
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: arisenbywrote on 21.04.2024:[9.0] "[9.1] An all-time underdog babyface even if you were just to look at his ROH run. Sells like his life depends on it, was the best part of the incredibly overlong bloodline story, great moveset, and can always be trusted to have a good match with just about anyone."
Rating: 9.0
Sentiment: 0.8500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Catgirlrobinwrote on 17.04.2024:"One of the most over guys in WWE of the last 10 years from NXT to the Main Roster and arguably the best work of his career has been his Bloodline - Present as of writing run"
Rating: No rating found
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: JediSaiyanMaster1203wrote on 16.04.2024:[10.0] "I've been contemplating this for a long time whether I wanted to go as far as categorizing Sami Zayn as an all time favorite (aka "10") or not. But the more I think about it, I can't give you a reason he isn't. Sami Zayn might be the ultimate underdog and white meat babyface in history, up there with guys like Daniel Bryan, Jeff Hardy, Ricky Steamboat, Sting, etc. He was entertaining and amazing as El Generico in Ring Of Honor, having great matches with/against Kevin Steen, doing crazy spots and always playing the babyface role to perfection. Goes to WWE, starts out in NXT, and becomes the face of NXT during his tenure. Having great matches and feuds with the likes of Cesaro, Neville, Shinsuke Nakamura, Samoa Joe, etc. Then he gets called up to the main roster, and has a fairly good run with a few flaws here and there. But the positives outweigh the bad if you ask me, those being his feud with Kevin Owens, his conspiracy theorist gimmick, the Honorary Uce gimmick, teaming with Kevin Owens, chasing after the Intercontinental Championship. Overall, Sami Zayn is gonna go down in history as a legend when his career is set and done, one of the ultimate good guys in wrestling with a big catalogue of great matches, promos, feuds, etc. An incredible babyface, underrated promo, great wrestler, even better storyteller, just as good as a seller, he has it all!"
Rating: 10.0
Sentiment: 0.30144444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: xTheRevoltingBlobxwrote on 15.04.2024:[7.0] "Sami Zayn isnt Mick Foley, yet that is who probably who he most closely resembles when discussing why he is over and why his rating is so high. Like Mick they both wore a mask before before ditching it to be just a bearded dumpy guy with mousy hair that people love to root for. Both Sami and Mick are known for their mic skills, character development, and storyline emphasis in their performances. Indeed, Sami is above average on the mic and is completely at home telling a story with this art form. However, while Mick Foley's introspective searches for deeper meaning behind his wanton violence as both the Cactus Jack and Mankind characters was pioneering, it comes off as bloated and overindulgent with Sami. What is arguably considered his best work during the Bloodline story arch was simply a heavy handed re-hashing of Mick's role as spoiler to the Rock's cool persona in their "Rock and Sock Connection" pairing. For the length of the story arch the formula was the same; the bloodline attempted to project theire power as a stable through their somber backstage tribal coucils or in-ring promos and Sami would inevtiably undercut Reigns leadership with mocking loyalty. Later, Sami would implore the viewer to take it seriously when he had his big close up, when it was time to reveal the true meaning behind his goofy interjection into their family; he was helping them out of an abusive relationship. Its great writing if you like the more serious side of Adam Sandler's filmography, the sad clown. He's not a bad worker by any means and deserves a higher rating than most on his work rate alone, but, his skill lies more in his ability to take moves than it is to give them. Like Foley he sells very well, absorbs most of the bumps in a match and is incredible at putting over his opponent in that way. However, at his best offensively he's a PWG showcase guy; all homage and high spots. Put him in a match with Owens, Adam Cole, or anyone else of that style and he's probably going to give you a good show if you'd like to see someone kick out of 4 consectutive Canadian Destroyers. Ultimately, Sami has a lot like Mick but doesnt touch the heights of Mick. There is no Hell in the Cell equivalent for Sami, there is no infamy of a Kawasaki Deathmatch for Sami, and certainly not a World Championship like Mick."
Rating: 7.0
Sentiment: 0.22412698412698417
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TripleCrownwrote on 08.04.2024:[9.0] "El Generico, Sami Zayn, whatever you want to call him, has been one of the best wrestlers in the world for the past decade. The man can do it all, from a comedy standpoint he's very good, but he can also be a fantastic babyface that the fans can get behind. Has shown time and time again that he's on the same level as the top guys within WWE, not sure if they'll ever give him a run as WWE Champion or WHC but time will tell. Fantastic asset to have, so smart in-ring and so good in-ring, you couldn't ask for anything more."
Rating: 9.0
Sentiment: 0.31035714285714283
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: cal9099wrote on 07.04.2024:[7.0] "I never saw his early indies or ROH work but for years I've seen him in WWE be nothing more than a solid midcarder. His feuds with Owens have been really good, but outside of that he's struggled mightily to stand out. Good comedic work with the bloodline, but very little in terms of serious feuds or memorable promo work."
Rating: 7.0
Sentiment: 0.23229166666666662
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: BMWrestling17wrote on 07.04.2024:[2.0] "Sami Zayn is one of the most overrated wrestlers of all time. This guy isn't funny, he tries to be likeable but fails misserably. He's a cringelord at best. Regardless of his skills in the ring which he has, he's nothing but a low-mid card AT BEST. He should stick at the indies."
Rating: 2.0
Sentiment: 0.35833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: WhatSayYouwrote on 27.03.2024:[9.0] "A generational talent, well respected by independant fans, well respected by mainstream fans. His run with Kevin Owens in ROH is some of the best work I've seen, then of course his work with the Bloodline in WWE."
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ismarizviwrote on 23.03.2024:[10.0] "One of the best face wrestler in the world.Sami Zayn prove that why he is to belong that high levl.His involvement in Bloodline make that story a total cinema .His run in nxt is slso very memorable.His main roster debut against john cena is also one of best matches for us title.His love and hate with kevin is also very entertaining.Overall a perfect 10"
Rating: 10.0
Sentiment: 0.3426666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Hazelyzewrote on 15.03.2024:[10.0] "Possibly a top 5 wrestler/character for me outright. He has this ability to make me believe when he's in there, that he's got a chance, even when he loses. His selling is immaculate, his character as a face AND a heel is wonderful. 10/10 wrestler. Helps that he's an amazing human too."
Rating: 10.0
Sentiment: 0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: jjcharg77wrote on 12.03.2024:[10.0] "a true work horse and all around amazing human being/wrestler. I know people think of him as great but I feel like that is even underrating him. hes essentially the bar for any great wrestler and someone that up and coming wrestlers should take note of. he carries himself well and always delivers in his matches/promos. hes truly one of the greats of this era"
Rating: 10.0
Sentiment: 0.425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: gabsdaverowrote on 10.03.2024:[10.0] "All round, the best wrestler of all time. This dude is a ten out of ten in absolutely everything, can be the best heel or babyface in any company, any era of pro wrestling. People do not look at him that way bc of his looks."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Odinohkawrote on 10.03.2024:[8.0] "Sami is entertaining, balanced, constant, funny, kind and has both a very pleasant personality and at the same time a developed acting allowing him to embody each iteration of his character. His in-ring always hits the mark, his connection with the audience is incredible, whether you're a fan or not, it's inevitable to support him."
Rating: 8.0
Sentiment: 0.33033333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: mxkamiwrote on 11.02.2024:[10.0] "Woo, boy... Hot take time? Hot take time. This man, be it as Sami Zayn in the largest wrestling company in the world, or where he truly shines... As El Generico on *pick literally any indie he's ever done*... This is the best white-meat babyface of all time. And it's not close. He's so lanky that his sells and oversells look FANTASTIC on power moves. He doesn't speak other than "OLE! " as Generico, so his use of his arms and the rest of his body to convey emotion is TOP NOTCH (see also Abyss in TNA, especially his match with AJ at Lockdown '05). As Sami Zayn, he became the hottest babyface not named Cody Rhodes in WWE, and made the Bloodline storyline so fantastic. The turn on Roman at Rumble, into his big babyface return in Canada, to the match at Chamber, to Mania where he won the tag titles with his shoot best friend. Just, peak babyface. In ring, great at selling, great at reacting to the crowd and giving what is needed, great facials and little things that really give his matches and moments just that much more shine. If you're a Generico/Zayn hater... Find his two TNA tryout matches. Where he did the f***ing Orange Crush to Amazing Red IN HIS FIRST TRYOUT MATCH, and his second match, where no one really knew who he was but he absolutely got the heat up on TJP, got the crowd behind him, and hit TJP with one of the cleanest Brainbustaaahhhhh! finishes I've seen from him into a diving pin where the crowd for a dark match is hot like a main event. Magic."
Rating: 10.0
Sentiment: 0.28831845238095244
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Danylopez016wrote on 11.02.2024:[10.0] "Incredible wrestler and doesn't seem to be slowing down. He's been on the run of his life these last 2 years and I would love to see him world heavyweight champ this year. He deserves it. Sami Zayn is just the best."
Rating: 10.0
Sentiment: 0.4488888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MaximilianBernerwrote on 27.01.2024:[4.0] "Ich kann den Hype um seine Person und den Beliebtheitsgrad beim besten Willen nicht verstehen, für mich vorallem optisch nicht das was ich mir unter einem Professional Wrestler oder Athleten vorstelle. Ich kann mich keineswegs mit ihm oder seiner Arbeit identifizieren und es fehlt ihm meiner Ansicht nach einfach an Ausstrahlung. Im allerbesten Fall ein schlechter Robin mit Cheerleaderqualitäten und einem großen Defizit an Kredibilität. Auch wenn das Internet ihn liebt möchte ich gerade vor den Augen der Main Stream Pop Culture nicht von ihm repräsentiert werden."
Rating: 4.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Quick Manwrote on 13.01.2024:[9.0] "The ultimate underdog of WWE, a beloved fan favourite and the perfect foil for the Bloodline saga. You just can't help but love Sami Zayn."
Rating: 9.0
Sentiment: 0.5066666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: thedman0310wrote on 12.01.2024:[10.0] "The best white meat babyface of the 21st Century. Sami has a natural likeability to him, and that combines perfectly with his top-tier selling to make an audience sympathetic towards him. He can also wrestle like a motherfucker. Some of the moves he does are stuff straight out of Fire Pro's Move Creator. I don't know why this page says he was El Generico, Sami was one of the orphans at Generico's orphanage."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Seth Pilgrimwrote on 12.12.2023:[10.0] "This guy has everything to me: charisma, humor, selling, in-ring skills. He can work with anyone and make both of them look good during the match. I also like that he's not the typical McMahon's guy, like all muscle and tan. What's confusing me though is that CageMatch states he's El Generico when we all know he's not"
Rating: 10.0
Sentiment: 0.07777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: djones06wrote on 20.10.2023:[7.0] "Meticulous in ring g worker, has a great ability to be empathetic and to enhance a story. Best when across from Owens either In a tag team or as adversaries to provide contrast. Similar to other upper card players who are very good all around hands but not the top guy of the company."
Rating: 7.0
Sentiment: 0.4407142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: felixshanewesternwrote on 04.10.2023:[10.0] "My favourite wrestler of all time. Sami is an absolutely incredible worker, and has had countless classic matches. Not only this but he is a great promo and character. People probably underrate him because the WWE didn't use him very well for most of his career. He also runs a charity, and seems like a really nice guy. Without Sami I don't know if I would like wrestling as much as I do."
Rating: 10.0
Sentiment: 0.3740740740740741
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CCSMIT22wrote on 04.09.2023:[7.0] "Is he bad? No. But I just don't get the hype that some people have for him. I don't see him as a singles star at all. All of his great moments have come from tagging with or wrestling Kevin Steen. He's the definition of a fine hand, just a decent wrestler who isnt' good enough to get to the top."
Rating: 7.0
Sentiment: 0.26904761904761904
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: celticinvaderwrote on 06.08.2023:[9.0] "Perhaps the most naturally charismatic and likeable dude on the current WWE roster. Been involved in so many excellent storylines, and is currently the reason Bloodline has been as good as it has been. Also a fantastic wrestler to boot, with great in ring performances and such wonderful selling ability."
Rating: 9.0
Sentiment: 0.49090909090909096
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Gold Fistswrote on 24.07.2023:[9.0] "An extremely talented performer. He is absolutely incredible on the mic and has one of the best movesets in the ring. As of late, he has been more generally praised for his character work, which is another way of saying... he can perfect any role he plays. Honorary Uce was amazing, El Generico was good, Zayn can really do it all. He's very close to a perfect 10 (as in 9.75), but I'll still have to round him down in this case because a 10 is a 10."
Rating: 9.0
Sentiment: 0.4424603174603175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TheEnigmatic1wrote on 23.07.2023:[10.0] "Sami Zayn Is One of the most complete professional wrestlers of the modern era, From El Generico, To NXT, TO the main roster Sami has had some of the most memorable matches and segments, He had a time from 2018-2019 where He was in one of the worst sport with his feud with Lashley and such, But from 2021 to 2023 He has had some of the most high profile matches and feuds Like his IC title storyline, His feud with Knoxville, and of course the bloodline this man has been golden, And of course you cannot mention Sami without Kevin and by god the greatest wrestling rivalry of the last 20 years without a doubt, Banger after Banger, This man deserves a spot in the hall of fame with in like 20 years."
Rating: 10.0
Sentiment: 0.21619047619047618
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Loghan Morescowrote on 18.07.2023:[10.0] "One of the best superstars in wwe history, a sensational and likeable wrestler a perfect babyface and a interesting as a heel, works perfect in every role they ever gave him and amazing inside the ring, he is smooth and agile and can connect with the crowd."
Rating: 10.0
Sentiment: 0.7083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Wrasslinfan619wrote on 07.07.2023:[10.0] "I added A comment to my KO rating and I'll add one here. This past year everyone has jumped on the Sami Zayn train, and for good reason. Because Sami Zayn is one of the best all around talents much like Kevin Owens of this generation and people just realizing with him breaking the bloodline and then eventually quite literally breaking them apart that he should be A main event guy is weird, about time he's A main event guy also. He is so deserving of the wrestlemania main event he got, but enough about this past year lets talk about El Generico. El Generico was one of the most beloved indie wrestlers for good reason, considering this site has them as 1 person I will pretend they are the same. El Generico and as mentioned in KO's review, and his team with Kevin Steen was awesome. They had some classics with the briscoes and age of the fall among others, others including the young bucks as well. Really I don't have much else to say except this man was also brilliant as the heart and the soul of NXT before Johnny Gargano could claim that nickname, ole ole ole all hail the uciest underdog from the underground."
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: crs285wrote on 23.06.2023:[8.0] "Sami Zayn/ El Generico has a great mind for the business. He is hilarious and great on the mic and very good in the ring. He has amazing charisma and fits in well with the crowd. In WWE's main roster he is finally finding his footing after some bad booking and gimmicks."
Rating: 8.0
Sentiment: 0.38458333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: danzitorockwrote on 19.06.2023:[10.0] "Sami Zayn is one of my favorite wrestlers of all time. His charisma is incredible, and it took WWE a long time to realize that and give him the platform he deserves. In the ring he's great, and he has a unique connection with the crowd, in line with the underdog persona that he works really well. He was amazing in ROH, NXT, and finally now he is in WWE. Gigantic talent!"
Rating: 10.0
Sentiment: 0.415625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Giantfan1980wrote on 07.06.2023:[6.0] "Solid enough in the ring, but I am kinda meh on him as far as when we are talking big time main eventer. Good for the upper mid card and chasing the IC/US title guys."
Rating: 6.0
Sentiment: 0.12083333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CoachWwrote on 17.05.2023:[10.0] "I wasn't hip to the artist formerly known as El Generico until he made his arrival as Sami Zayn in NXT. Sad to say I was late to the party. This guy is great in the ring and it's been a joy to watch his character continue to grow. Seeing him finally elevated to the main event over this past year has been a joy, and I hope he remains toward the top of the card moving forward."
Rating: 10.0
Sentiment: 0.20166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mutant Ninja Taneliwrote on 05.04.2023:"What a performer! He was my favorite in the indies and he is my fav in WWE! Wrestlemania tag this year was MOTY."
Rating: No rating found
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: KKeanelwrote on 02.04.2023:[9.0] "Perfect underdog and legitimate fighter with soul and passion. Maybe he never was a material to be wrestling all-time best, but in every kind of work where he was putted - he did brilliantly. Incredible stories in PWG, ROH and know big moment on Mania makes this guy a big deal for fans."
Rating: 9.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: kewf1988wrote on 05.03.2023:[9.0] "Sami Zayn may not have the "look", but he has everything else in that he is an extremely good wrestler with really good mic skills and he's very charismatic. Not many people can go from jobbing to Johnny Knoxville to bring a major player in the main storyline in less than a year."
Rating: 9.0
Sentiment: 0.2660714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ChrisPrattAsMariowrote on 04.03.2023:[9.0] "One of the two best current day babyfaces in wrestling. An underdog on the level of Daniel Bryan during the Yes movement. On the indies and in NXT, he was a great character and a better worker. His heel run in WWE was sadly not as great as it could have been until he got with the bloodline and was comedy gold while being able to tell a masterclass story. Only time will tell with what WWE will do with him now but he'll forever be over from the looks of things. My favorite match of his is him and Steen vs the Briscoes from ROH Man Up."
Rating: 9.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: greaterdalewrote on 03.03.2023:[10.0] "This man is an absolute legend and the only person who doesn't know this is Vince Mcmahon. Triple H seems to hold him in a higher regard clearly, but not putting the title on him at Elimination Chamber 2023 was an absolute blunder. Like who cares about how many decades Roman Reigns holds the title for the man has had them long enough and I'm not even a Roman Reigns hater. Regardless he's over as damn hell, and has had countless classic matches in NXT, the indies, and even on the main roster of WWE where for years he was booked by someone who just didn't get him. This was written before Wrestlemania 39 so hopefully they reward this man for carrying WWE on his back for the last many months in either some sort of major title or at least a fat wrestlemania check. He's an easy perfect 10 and could carry any promotion ever."
Rating: 10.0
Sentiment: 0.17939814814814814
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mcbolskywrote on 26.02.2023:[10.0] "He's in the middle of wrapping up the greatest WWE story of all time. He's an amazing face and the reaction he got at Elimination Chamber was absolutely insane. The moment that he and KO stand tall with the tag belts at Wrestlemania will be one of the greatest moments in wrestling history"
Rating: 10.0
Sentiment: 0.32
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: lukk4zwrote on 20.02.2023:"one of the most technical wrestlers, his moveset is amazing, he does good promos, and his heel turn in 2020 just made him more good. 10/10"
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Ttcafewrote on 31.01.2023:[10.0] "One of the Best Promo i've never see with the Bloodline and Kevin Owens. he act so perfectly he deserve an oscar everytime he is in the ring. ABSOLUTLY STUNNING! 10 and he deserve it!"
Rating: 10.0
Sentiment: 0.9270833333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rignowrote on 26.01.2023:[8.0] "I don't know why this has Sami Zayn and El Generico together since they're completely different people, but this is a review of Sami. His Honorary Uce gimmick may be the first time some people heard of him but I first saw him when he was on NXT facing Cesaro in a 2 out of 3 falls match. No matter where or when you saw him you know the amount of talent this man has. In my humble opinion he should win the wwe championship by 2024."
Rating: 8.0
Sentiment: 0.22000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Brainbreakerwrote on 21.01.2023:[10.0] "Großartiger Seller, mal sehen was noch aus ihm wird... EDIT (09/2013 - five years in the making): Immer noch ein großartiger Seller und überhaupt ein total verrückter Performer, wie man ihn selten sieht. Kommt auch ohne Maske gut an; NXT crowd geht immer nutz! Allerdings habe ich ihn noch zu wenig am Mic gehört. Wie es ihm bei Raw oder SD ergehen wird, ist außerdem unklar. Aber ausstehend auf der großen Bühne muss er sich beweisen! EDIT (04/2016): Zayn traue ich zu, die Lücke zu füllen, die Danielson in der WWE hinterlassen hat: seine Körpersprache wird immer perfekt von der Kamera eingefangen, sodass er jedem Match allein dadurch eine gewisse Bedeutung verleihen kann, selbst wenn es gar keinen Aufbau dazu gab (wie zuletzt gegen Nakamura oder Styles). Er wirkt extrem selbstsicher am Mic, ohne ein Rock zu sein, was auch gar nicht nötig ist. Denn die Leidenschaft, die er an seine Fans vermittelt, fügt sich im Gesamtpaket einfach zusammen wie Legosteine. Look passt auch, wrestlerisch brauch ich hier wohl nichts hinzufügen. EDIT (01/2021): Nach einigen Jahren in der Midcard hat Zayn nun auch vor dem Mainstreampublikum den Character gefunden, der wie die Faust aufs Auge passt und mit dem sich die Fans identifizieren können - nämlich Reigns Lakai, der dem Bloodline-Leader die Show stiehlt. Dabei ist er ganz anders als damals bei NXT, aber trotzdem so effektiv als Schauspieler. Wahnsinn!"
Rating: 10.0
Sentiment: -0.18028846153846156
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: benh2wrote on 12.01.2023:[8.0] "Sami Zayn has a lot of strings to his bow. His initial career as El Generico was decent enough on its own and then he just continues to reinvent himself in WWE. The NXT run really showcased what a great in-ring wrestler he is and then he hit the ground running on the main roster. He did have a bit of a lull but that was down to the booking and now he's tearing it up in the Bloodline, again showing another of his qualities, his promo work. Unfortunately a combination of his size, good promo ability and comedy role means he's pegged a bit as a jobber to the stars and will probably never win the big one."
Rating: 8.0
Sentiment: 0.13148148148148145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Bullshark1wrote on 11.01.2023:[9.0] "Sami Zayn is everything you'd want in a comedy wrestler. He's talented in the ring, and his match at NXT Takeover: R Evolution against PAC is proof of that. His promos are absolutely beautiful, and extremely memorable. He's also hilarious, and can put over faces like a champ. His prime was definitely either his run in NXT or his run in the Bloodline, because of how he impacted both brands (yes, I know the Bloodline is a stable, but you know what I mean). Sami will definitely be a Hall of Famer in WWE, even if he doesn't win another title."
Rating: 9.0
Sentiment: 0.37968749999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: WhatIsLooveeewrote on 06.01.2023:[10.0] "Sami Zayn was the best thing to happen to WWE in 2022. Zayn's talent was visible even before 2014, when he was active in the independent scene and especially when he confronted his eternal friend-enemy Kevin Steen, but he really showed up in WWE. He went from the heart and soul of the NXT, which everyone wanted to root for, to an honorary member of the Roman Reigns's "tribe", in which he periodically overshadowed even the leader. Sami is a genius, he's an amazing in-ring performer and also a very charismatic speaker, segments with which are marked "must see" and a person who can tell a good story in a match. He was good as a babyface and at the same time he opened up just as well as a heel, which is a unique phenomenon. 10 points."
Rating: 10.0
Sentiment: 0.3493055555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: eltetechoriwrote on 14.11.2022:[10.0] "I love Sami and his way of acting, also in the ring and in promos without a doubt he is great. A jewel that WWE has without a doubt."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: boraselvi7wrote on 10.11.2022:[7.0] "I don't care. I don't care. I don't care. I don't care. I don't care. I don't care. I don't care. I don't care. I don't care. I don't care."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ViserysToddwrote on 04.11.2022:"Sami Zayn is one of the best entertainers in the business today. His character work is second to none."
Rating: No rating found
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MichaelB137182wrote on 02.11.2022:[10.0] "This man is good no scratch that this man is great. Keep an eye on him cause best believe 10 years from now, he gonna be in the same conversations with the likes of Bryan Danielson, the Kenny Omegas, Shawn Michaels the ELITE of Wrestling watch this space watch this space."
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Wrestling Foreverwrote on 22.10.2022:[10.0] "Schon als El Generico war Rami der Wahnsinn. Seine Fehde mit Steen zählt sicher zu den besten und brutalsten Fehden der ROH und Wrestling Geschichte. Er macht immer Stimmung die Ole Ole Chants sind auch bei NXT absolut angekommen. Trotz seiner Größer ist er ein super Techniker und High Flyer dazu ist er sehr charismatisch. Was für einen harten Super Brainbuster into Turnbuckle (seinen Brainbustaah! ) er immer früher gezeigt hat unglaublich. Es wird bald Zeit das er in den Main Kader kommt. Edit: 7. 08. 2017 Schade wie er aktuell bei der WWE behandelt wird aber er ist schon etwas Multi Kulti. Als El Generico verkörperte er einen einen Mexikaner mit schlechten Spanischen Akzent und nun halt einen Kanadier mit syrischen Wurzeln. Französisch kann er auch. Edit 25. 04. 2020 Wird er nun endlich auch im Main Roster so richtig stark gepusht. Wenigstes hat er endlich mal den WWE Interc. Titel. Edit 21.11.2021 ich bin ja gespannt wie lang noch sein WWE Vertrag läuft. Er hat immer noch nicht verlängert. Edit 22.10.2022 ist als Teil der Bloodline so unterhaltsam. Wie der Crowd auch Sami inzwischen hasst."
Rating: 10.0
Sentiment: 0.1738888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: BESTBOUTBOYwrote on 18.10.2022:[10.0] "zayn is one of the best wrestlers on the planet to day. probably the closest thing we have to a modern day eddie guerrero mixing heelish tactics with a genuine babyface spirit and unique innovative moveset. his run as generico showed his physical comedy and dynamic in ring style. his NXT run showed a more serious babyface side adapting his style to the fed. the great liberator adapted his el generico comedy chops to a heel persona. now he is combining his comedy heel persona and courageous babyface persona together as the honorary use spicing up the feds top act. slowly folding his fantastic indy/NXT moveset in to the more strip backed character focused performer that the pandemic era ushered in. zayn has had an array of great matches in many styles across a Highley prolific career and yet watching his work in the last few months one cant help but think his best is yet to come."
Rating: 10.0
Sentiment: 0.3495614035087719
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: xnviuswrote on 13.10.2022:[10.0] "an absolute gem. he's amazing at everything he does. El Generico. his ROH & NXT run. his feud with KO. he's a comedic genius. he's the most over guy in the WWE. he's about to have the babyface run of his career. how can you not love this guy."
Rating: 10.0
Sentiment: 0.2625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: AlDente01wrote on 07.10.2022:[9.0] "I associate Sami mainly with his time at NXT. But that Sami is no more. Will Old Sami ever come back? Maybe. But New Sami is the highlight of the blue show. Jey-Sami's coverage is one of the best reasons to watch SmackDown regularly. I'll risk saying that Zayn is at the peak of his career right now. The downside is that this has not always been the case, Zayn has had a clear relegation in his career - for example the team with Cesaro and Nakamura. Despite his great skill and charisma for the old WWE management, Zayn was, at best, a supporting figure. It will turn out as it will be now."
Rating: 9.0
Sentiment: 0.26348175633889925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Makai Clubwrote on 02.10.2022:[8.0] "Without a doubt one of the best wrestlers of the 2010's. Very ingenuitive and has a great mind for business. He has shown his versatile both in the ring and in character work. He was able to turn a Masked Luchador who was a mute into a beloved character, full of emotion. He is able to turn from the the best babyface to a great heel. Having the ability to be likable and funny to smarmy and arrogant at a drop of the hat. He is an amazing wrestler who almost always has amazing performances. Countless great matches with KO, Nevile, Braun Strownman, Nakamura, Chrispthor Daniels, Chris Hero and others. For some reason he has his haters and isn't seen as a main eventer despite having all the tool that you should need but to me, he is a worldclass talent."
Rating: 8.0
Sentiment: 0.5479166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Flame233wrote on 20.09.2022:[9.0] "I love El Generico, In WWE he's a real workhorse, and went through a lot in this company. No matter the gimmick, no matter the time, no matter the role, you can see, he is always giving his best, and I always find myself rooting for him. He has uniqe fighting style, and a fine mic work. I consider him a midcarder, but I would be more than happy to see him in the bigger picture, and see what he can provide us with, and I can guarantee you, it'd be entertaining."
Rating: 9.0
Sentiment: 0.48958333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Irishwrestling2000wrote on 31.08.2022:"Loving Sami Zayn can't wait to see what the HHH lead WWE has in store for Sami fantastic mic work and character always been a really good worker."
Rating: No rating found
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Shadow Explosionwrote on 10.06.2022:[10.0] "If you had to ask me who is one of the best wrestlers of this Generation, Sami Zayn would absolutely cross my mind. His ability to draw sympathy as a never say die babyface is only matched by Tsuyoshi Kikuchi, His in-ring style is not just lucha libre based but also has some puro elements thrown in. His storytelling and psychology is beautiful to watch and makes a match feel so real. He's also really charismatic as shown by his weird as fuck heel run he's been on lately, which has shown his promo ability. And to conclude you can tell he's a real nice and stand up guy."
Rating: 10.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: zags7000wrote on 05.05.2022:[9.0] "He was great in ROH and NXT and I think he's had some solid moments in WWE but clearly they haven't utilized him to his full potential. He's great as a babyface and one of the ultimate underdogs that has a great connection with the crowd. I think his heel run has been impressive as well though and the current conspiracy version of him is great. He's great in the ring as well and makes a lot of guys look good. Edit: His current heel run has been even more impressive and his comedy work shouldn't go unnoticed. He could be used better but he has provided many moments that many will remember for a long time. His match with Johnny Knoxville comes to mind as a very entertaining match that had no business being as entertaining as it was and that's a testament to Zayn and his talent."
Rating: 9.0
Sentiment: 0.4369565217391304
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MorbidAxiswrote on 06.04.2022:[6.0] "I know I'm in the vast minority here, but I've never really been a fan of Sami's work, even pre-WWE. It's not to say he's bad, by any means, I just never gravitate to the screen when he's on like I do for so many other wrestlers."
Rating: 6.0
Sentiment: -0.08499999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CaptainCharisma1997wrote on 18.12.2021:[10.0] "One of the best performers in the world. Incredible babyface, possibly the greatest I've ever seen, excellent in ring psychology, great on the mic. Grossly underutilized and wasted for the past five years, and likely for the rest of his career if the news of him re signing with WWE is true."
Rating: 10.0
Sentiment: 0.41818181818181815
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Dy1789wrote on 24.10.2021:[9.0] "Sami had such a great NXT run I thought he would be the next great underdog babyface. He was on that path until his injury his first night on Raw. Turns out he makes a very effective heel. He's wonderful at this paranoid conspiracy theorist character. He's a great talker and great in the ring. He's not a main eventer but can have a main event program with the right face. I really enjoy Sami Zayn."
Rating: 9.0
Sentiment: 0.41201988487702773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mutant34wrote on 16.10.2021:[10.0] "any treatment given to Sami by the WWE should be considered criminal. I consider him much better than Kevin Owens and I think he could deliver as much or even more than his friend. If this guy would rather stay out of WWE I believe he could become a successful junior heavyweight on NJPW and would have prominent positions in every promotion in the world. Leaving WWE is the best thing for him now, let's face it, if Cardona got a push, so can he."
Rating: 10.0
Sentiment: 0.43571428571428567
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: kfztkfzt2021wrote on 14.10.2021:[10.0] "I have a lot of respect for sami, both in and outside of the ring, a kind soul and A GIFTED wrestler, one of the most talented right now, impressive in each and every wrestling area, technical, striking, highflying, selling and let's not forget his Amazing mic skills.The charisma this man has in nearly untouchable, he knows how to deliver fantastic matches and how to make the crowd love or hate him, cheer or boo him, he is a STAR, genius wrestler.I hope wwe treats him better, all of his title victories and championships run were underwhelming, he deserves way more than what wwe gives to him."
Rating: 10.0
Sentiment: 0.3678571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TommyEndMalakaiFanwrote on 04.08.2021:[6.0] "I like his in-ring work and his conspiracy theorist gimmick but really can't get behind him with how garbage booking is with him. He has won 2 belts since being in NXT and they were both short reigns."
Rating: 6.0
Sentiment: -0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Forerunnerwrote on 01.08.2021:[9.0] "I really miss babyface Sami. So few can be a pure babyface like he can, but still, he's proven he can play heel as well. That's no surprise given he's such a good performer, but he might be one of the rare wrestlers that is much better as a babyface."
Rating: 9.0
Sentiment: 0.24489795918367346
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: robrob77wrote on 30.07.2021:[8.0] "Sami is a fantastic performer and an excellent talker. His character work is always superlative. However, WWE Booking is the bitter rival of Sami"
Rating: 8.0
Sentiment: 0.4333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Kungwrote on 21.06.2021:[9.0] "One of my favorite all-time babyfaces both in ROH and WWE. His run in NXT ranks among my favorites, and although he's been the recipient of some sour booking on the main roster, his talent as a pro wrestler has shown through more often than not."
Rating: 9.0
Sentiment: 0.25416666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: mjs2212wrote on 23.05.2021:[9.0] "Sami Zayn is a great wrestler! I've always believed him to be the true heart and soul of NXT because he is a natural babyface. The crowd was (is) always so into everything that he does and it's a treat to watch him perform. He's got a great moveset, he's good on the mic, and his matches (especially with Owens) are always fun to watch. As strong of a babyface as he is, I'm not the biggest fan of his heel character. He makes it work because he is a true professional, but it feels wrong to boo Sami for whatever reason. His moveset is also more limited as a heel, which effects his matches nowadays. But aside from that, he is a great worker and a true workhorse."
Rating: 9.0
Sentiment: 0.3474603174603174
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The A-Listerwrote on 08.05.2021:[8.0] "He's a great wrestler but WWE did horrible job with him. He delivers his gimmicks but the problem is his gimmicks are awful and don't let him progress."
Rating: 8.0
Sentiment: -0.39999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: mjp28wrote on 28.04.2021:[1.0] "To me, this guy epitomises the exact type of pro wrestler thats driven away the mainstream/casual fan in their droves, and will likely bring the demise of pro wrestling as we know it. He has the look of someone who has never set foot in a gym, move set of a someone who can't lift their own bodyweight, and persona of a super-privileged 12 year old girl. Whether he is playing this super-privileged 12 year old girl, or just being himself, he really just tries way too hard and bitches and moans far too much. It would be great if he'd just chill and wake up to the fact that the world doesn't revolve around himself, because wow does he make you want to punch him in the face. Some might say that's just some great heel work right there. Except its not if it makes you change the channel and---worse---join the mainstream/casual fan exodus from pro wrestling."
Rating: 1.0
Sentiment: 0.22457482993197278
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Divus Rolexuswrote on 25.04.2021:[10.0] "I want to see El Generico back because he was so damn cool in ROH. He has been well used in NXT but for 3 years in the Main Roster, they never did something great of him, but his heel turn refreshed his character and his alliance with Nakamura and Cesaro is great. WWE shouldn't have stripped him of the Intercontinental Championship."
Rating: 10.0
Sentiment: 0.42333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: michmoose21wrote on 26.11.2020:[10.0] "Sami Zayn is one of my all-time favorite babyfaces. His heel work isn't totally for me, but I wouldn't call it bad. I wasn't watching during his El Generico days, so this rating is based on Sami Zayn. His NXT run as the lovable underdog babyface was AMAZING. He was so over with the crowd, and wrestled his ass off. I wish he could've been as successful on RAW and SmackDown as he was NXT, but injuries happen. I love this dude."
Rating: 10.0
Sentiment: 0.2399038461538462
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Dennisiztheman02wrote on 01.11.2020:[10.0] "Sami Zayn is one of my all time favorites as he is great in the ring and incredible on the microphone. His run as El Generico was also fun to watch and I'm glad WWE is actually pushing him after years of mistreatment. Sami makes the best out of bad segments and feuds with his microphone skills. Plus, he can fit in the role of the babyface underdog and chicken shit heel pretty good. On top of that, the guy is helping people that are affected by the Syrian Civil War and his humanitarian efforts are amazing. Sami Zayn is an amazing guy and I'm glad WWE is finally giving him a push."
Rating: 10.0
Sentiment: 0.32647058823529407
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: BlakeFR37wrote on 26.09.2020:[10.0] "El Generico was one of the best wrestlers in this industry. I like Sami Zayn when he was in NXT, but I think the MR destroy him. But he's still a 10 as my pov."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: znezaaljwrote on 17.08.2020:[10.0] "This rating is as El Generico. He had some of the most brutal matches I have seen in PWG and ROH and his friendship and rivalry with Steen were legendary and: what a surprise, WWE tried to replicate it. As Sami Zayn probably a 6 and because of his NXT run."
Rating: 10.0
Sentiment: 0.20833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: mjboyerwrote on 15.06.2020:[9.0] "I could never get behind the El Generico character, but I love Sami Zayn. The WWE has done him well."
Rating: 9.0
Sentiment: 0.04999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: shittylittlerasslinwrote on 02.06.2020:[8.0] "If only he was the great, great wrestler (he's good to my eyes) as he achieves greatness with the microphone (who would guess it after witnessing the rise and fall of El Generico? ) and with his humanitarian values. Essentially, a superb human being, an awesome entertainer and a good wrestler."
Rating: 8.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Caaswrote on 05.03.2020:[10.0] "Pretty good wrestler, all-round. I was a big fan of Sami Zayn's mentor El Generico, and Zayn does well to emulate that long lost legend of the indy world."
Rating: 10.0
Sentiment: 0.22499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Iceqwrote on 09.10.2019:[9.0] "Zum Wohl seiner eigenen Karriere sollte er die WWE verlassen. Natürlich wird er das nicht machen und das auch vollkommen verständlich, denn er verdient so viel Geld ohne sich groß anzustrengen. Nur würde ich einfach gerne den Zayn aus NXT oder eben den Generico aus den Indys wieder sehen, der mit jedem ein klasse Match auf die Beine gestellt hat. Vielleicht geht er ja auch nach NXT wie Balor zurück und kann seiner Karriere so wieder einen Aufschwung verschaffen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TheV2wrote on 30.09.2019:[9.0] "From El Generico's indie days I didn't experience much more than his feud with Steen, but it already gave me the hype before his NXT debut. Sami Zayn's NXT run was probably one of the best. Amazing title victory followed up with the resumption of his rivalry with Owens and his match against Nakamura was an instant classic. Since the call-up it still went fine for him. He gets his moments to shine and he turns shit into gold. His missing title gold didn't stop him. He doesn't really suffer more from the uninspired long-term booking than other wrestlers. His heel turn was one of the best in the WWE history and unfortunately the WWE wants the antagonists to be weak, just to eliminate the last resort of challenge for their babyfaces. It's the usual upsets. However the biggest disappointment so far is the over-booking of Owens vs Sami without any development of their rivalry. However it doesn't change that Sami uses his opportunities and he manages to get something out of everything."
Rating: 9.0
Sentiment: 0.09206349206349206
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: KyleEnjoysWrestlingwrote on 09.08.2019:[9.0] "Pretty great in most every area that you can ask for, but he's not a Vince guy, so he's pretty much reached his ceiling on the main roster. He was one of the first real stars to get NXT to the next level. I was never the biggest El Generico fan from the indie days, but I appreciate how he connected with the fans & built his legendary feud with Steen."
Rating: 9.0
Sentiment: 0.3287878787878788
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TechnicalWrasslinwrote on 26.07.2019:[10.0] "Man is all rounded performer with all different moves like half and half suplex blue thunder bomb Michinoku Driver 450 and Koji Clutch people say keith lees limitless look sami and kevin And Amazing tag team both all rounded and who does not like a package piledriver and brainbusta"
Rating: 10.0
Sentiment: 0.05333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: PuroresuLoverwrote on 12.05.2019:[5.0] "Mediocre wrestler with no charisma at all. I really don't get why people like Sami Zayn so much, but don't get me wrong, there's some few matches that I enjoy, like the one against Shinsuke Nakamura. But still, he's nothing but a 5. 5/10."
Rating: 5.0
Sentiment: -0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: blackx18wrote on 02.05.2019:[9.0] "Micwork : (9/10) In-Ring : (9/10) Gimmick : (Heel-Gimmick) (8/10) Charisma : (8/10) (34/40) = 8, 5. Finde ihn immer noch konstant sehr gut, liefert schon seit Jahren bei der WWE sehr gute Leistungen ab, als Babyface sowie als Heel. leider sieht es gerade so aus als ob die WWE gerade nicht mit ihm vorhat, da er nur unbedeutende Promos hält obwohl er auch da abliefert."
Rating: 9.0
Sentiment: -0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ZestyZuluWarriorwrote on 10.04.2019:[10.0] "Sami Zayn tells a story unlike no other when he steps into the ring. He can play babyface or heel to perfection. He can be the ultimate underdog or ultimate chicken shit heel. When it comes to the mic he's solid and funny as well. Incredibly charismatic in every aspect and if it wasn't for his size I'm sure he would've been a world champ in WWE."
Rating: 10.0
Sentiment: 0.056944444444444436
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ErycK24wrote on 08.04.2019:[9.0] "Sami Zayn gives his all every time he steps in the ring. That heart combined with his great in ring ability puts him in the same class as the great Daniel Bryan. Edit: Sami has been completely Misused on the WWE main roster and is treated as a joke."
Rating: 9.0
Sentiment: 0.3733333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: zephyrwrote on 28.03.2019:[7.0] "Very talented in-ring wrestler who can have tremendous charisma (as evidenced by being one of the most expressive masked wrestlers) but for some reason his hipster persona in WWE just doesn't let him show any of that."
Rating: 7.0
Sentiment: 0.6358333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Steamboat2511wrote on 05.12.2018:[9.0] "Sami Zayn aka El Generico ist ein echter Indy-Star gewesen. Diesen Status konnte er in der WWE so bisher nicht ganz halten. Technisch ist er natürlich herausragend, garniert mit exzellenten Highflying. Eine so innovative Moveset sieht man nicht alle Tage. Im Ring gibt es wenige, die ihm etwas vormachen können. Am Mic ist er durchaus stark und hat sogar noch Luft nach oben. Nun fehlt noch der ganz große Run und der Beweis, auch als Personality an der Spitze der WWE stehen zu können."
Rating: 9.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: KINGwrote on 09.11.2018:[9.0] "He's just amazing, a fantastic in ring performer, underrated talker and he surprised me with his heel work, it was actually very entertaining despite him being jobbed out, sad that he couldn't reach his NXT level, had high hopes for his SmackDown stint but he was back on Raw, in the end the WWE is just the wrong federation for a guy like him, I'll be happy if he wins an IC or a US Title, but even a Tag Title with KO."
Rating: 9.0
Sentiment: 0.16174825174825175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TylerWhitewrote on 03.11.2018:[9.0] "Einer der besten Wrestler überhaupt aktuell. So unglaublich stark im Ring, aber auch was seine schauspielerischen Fähigkeiten, seine Mic-Skills etc. angeht ist er einer der besten überhaupt. Er kann sowohl Heel als auch Face perfekt verkörpern, wie es kaum ein anderer kann. Ich hoffe so sehr, dass er auch in der WWE seinen großen Push bekommt und wir irgendwann Owens vs Zayn im WM Main Event sehen."
Rating: 9.0
Sentiment: -0.016666666666666677
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: RatingsMachinewrote on 01.11.2018:[8.0] "Like a lot of wrestlers who did great in NXT, Sami hasn't come close to that level of success on the main roster, and like most of those wrestlers, it's for reasons having little if anything to do with his talent and ability."
Rating: 8.0
Sentiment: 0.31583333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MrFridayNightwrote on 20.10.2018:[7.0] "He's a fun character but I can't really see the appeal that everyone else gets out of him. Probably the most generic of the "indie" talents that the WWE has brought in, but still not horrible by any means."
Rating: 7.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Summerslam Fan 01wrote on 30.09.2018:[9.0] "Sami Zayn ist ein Top Gesamtpaket.  Im Ring sehr gut ich muss da immer an das Nxt Match von 2013 oder 14 gegen Cesaro denken das Weltklasse. Hat zwar Ausstrahlung aber nicht wirklich die eines Heels. Mit Kevin Owens im Team und als Gegner auch beeindruckend. Am Mic seit Cm Punk vlt sogar der beste Wrestler (Paul Heyman ausgeschlossen) , in jeder Promo überzeugt der Typ mich. Ich hoffe das jetzige Verletzung nicht das Ende von seinem Push ist."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: taabr2wrote on 14.09.2018:[10.0] "While WWE could only get him to work as a heel on the main roster, thankfully we all have his independent run and his NXT run to know that Sami Zayn is one of the best in-ring babyfaces in the world today. Solid on the mic and amazing in the ring Zayn is still a full 10/10 for me, easily the most underutilized guy in WWE right now."
Rating: 10.0
Sentiment: 0.3335714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Cal Vamwrote on 16.08.2018:[10.0] "Without a doubt the best babyface in WWE's modern era - aside from Bryan, who is also able to be a great heel and Gargano, who might end up replacing Sami in that spot, if he stays heel.  Also, his in-ring work is always very entertaining to watch and when put into a good story, he ALWAYS delivers great matches (Cesaro, Owens, Nakamura, etc.. ). A shame his heel turn didn't really work out. He's a natural babyface, but I'm sure he would do a good heel if there was better booking."
Rating: 10.0
Sentiment: 0.5541666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: jamzell00wrote on 16.04.2018:[8.0] "The wwe has tried their damn best to make Zayn an unlikable loser but he just won't let it happen. He is one of the best wrestlers in the world and a legitimately likable guy but the wwe won't let him do anything aside from him being a loser, not an underdog, and wanting to kill KO. I doubt it'll happen but hopefully by next year he is doing SOME THING"
Rating: 8.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Oliver95xwrote on 23.03.2018:[9.0] "Einer der besten im Ring mit einem sehr Interessanten Moveset. Er hat wirklich mehr und größere Chancen in der WWE verdient."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: fablexwrote on 21.03.2018:[10.0] "From an in-ring point of view, Zayn is a god. Capable of making 5 star matches with different superstars (Neville, Nakamura, Rollins, Owens... ) The fact that he didn't win a single title in the main roster in almost 3 years is an insult to pro wrestling, this guy deserves A LOT more. If we want to make a comparison, his path is similar to Daniel Bryan. And please WWE, stop making him be around Kevin Owens all the freaking time, it has become annoying."
Rating: 10.0
Sentiment: 0.09940476190476191
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: StonedCold420wrote on 14.02.2018:[8.0] "Definitely one of the most skilled workers in WWE at the moment along with AJ Styles, Seth Rollins, and Finn Balor. He still needs to add a bit of charisma to his promos for me to bump up his rating."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Klabauterwrote on 12.02.2018:[8.0] "Sami Zayn ist ein sehr, sehr guter Wrestler, der nun zeigt, warum sein Wechsel zu WWE derart gehypt wurde. Rückblickend muss man nun auch sagen, dass es eine sehr, sehr gute Entscheidung war ihm die Maske zu nehmen. Der Mann bringt eine Ausstrahlung mit, die ihn zu einem absoluten Topstar macht. //Update: 25. 04. 2017// Leider durch die Darstellung bei RAW etwas verbrannt, weswegen ich zwei Punkte abziehen, mal sehen, ob Sami Zayn bei SmackDown sein Potenzial wieder voll abrufen kann. //Update: +1 Punkt für die Darstellung an der Seite von Kevin Owens gegen die SmackDown-Authority."
Rating: 8.0
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CHN325wrote on 01.02.2018:[7.0] "Zayn is a really good wrestler and performer who is easy to like. He seemed to lose his footing on the WWE main roster for awhile but has since found it again with his buddy Kevin Owens."
Rating: 7.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Dragon Fighterwrote on 09.12.2017:[9.0] "Sami is a really great wrestler. Great in ring work, very underrated on mic. He has charisma, too. Awesome theme song that fits with his character. He is more natural as a face and has potential to be a big star. Sadly, vince doesn't see anything special in zayn. He involves in some of the best wwe matches in last few years, which proves how awesome he is."
Rating: 9.0
Sentiment: 0.3571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TooSweetPhilwrote on 24.06.2017:[9.0] "Sami Zayn ist der unterbewertetste Wrestler der WWE zurzeit. Er ist der perfekte Underdog Babyface, kann dies durch quasi alles beweisen. Geniale InRing Skills, wunderbare Mimik und vor allem sein bravouröses Selling. Zudem immer wissend, wie man einem Match Struktur verleiht. Leider sieht die WWE anscheinend nicht das, was ich sehe."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: NikoWrestling7wrote on 04.06.2017:[10.0] "Arguably the best worker in WWE right now... He's a hell of a talent... He can work with anyone... his ring skills are great and his match with Nakamura is arguably the greatest WWE match in history... He's quite underrated on the microphone... His facial expressions are spot on.. This guy is more talented than those who are getting pushed (For Example Seth, Corbin and Braun).. He has a lot of charisma and he's got the crowd behind him... My only problem with Sami is his finisher... Helluva kick is good... But he should bring back the Super Brainbustah..."
Rating: 10.0
Sentiment: 0.40992063492063485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Blood Pumpwrote on 18.04.2017:[6.0] "The little guy who could can't seem to get into the good graces of the writing team in WWE. Maybe that'll change now that hes on Smackdown but first you've gotta let him have more of a personality beyond 'I hate Kevin Owens' or 'I'm an Underdog watch me yelp'. He was never a standout even in the Indy scene unless he was feuding or tagging with Owens. He was a damn good choice for a first match against a debuting Nakamura a year ago, and really his work in NXT in general was solid but hes just not that special."
Rating: 6.0
Sentiment: 0.18360389610389607
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: SeanDonwrote on 12.04.2017:[10.0] "One of my favorite wrestlers today, he already was amazing as El Generico in the indy circuit, but he got even better as Sami Zayn. I hope his career goes somewhere and who knows, maybe a world championship in the future."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: warmongerswrote on 11.04.2017:[8.0] "Pretty hard not to say anything but nice things about Sami Zayn. His matches in NXT with Neville, Joe and Kevin Owens were awesome and he's probably one of the most likable Babyfaces on the current WWE roster.   His high flying does have the potential to go wrong, but much more often than not he's exciting, with some of the best fire ups going.   I dont especially like the Helluva Kick as a finisher, but it fits him well and he can hit it on anyone.   I hope his best moments are still ahead of him."
Rating: 8.0
Sentiment: 0.33455555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Yabbawrote on 10.04.2017:[8.0] "So far he's been poorly booked, almost like a jobber, and it's a real shame, from what i've seen, this guy puts on great matches, one of my favourites was battleground vs Owens. Hoping he gets to shine more in the near future."
Rating: 8.0
Sentiment: 0.18571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Chekerwrote on 22.02.2017:[9.0] "An excellent babyface, wrestler and high flier. Again, another guy you could make a valid case for being the best in the world... but then WWE happened."
Rating: 9.0
Sentiment: 0.7200000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: umarthegreat15wrote on 22.02.2017:[10.0] "One of the best in the world today. He has it all. Charisma. Wrestling skills. Mic skills. I love watching him wrestle. One of the best parts of RAW, of which there are not quite a lot. Sami Zayn is one of my favorites."
Rating: 10.0
Sentiment: 0.5673076923076923
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Lardo Parcelwrote on 09.02.2017:[10.0] "SAMI FUCKING ZAYN. He's an incredible wrestler with great sense of psychology. His abilities in-ring are nothing short of incredible. His selling is almost as good as Shawn Michaels, maybe even better. Also, for a wrestler who, for the longest time in his career, wore a mask and pretended to be a Mexican luchador, he's already one of WWE's better talkers. 2016 was his year in the WWE, as he was involved in most of WWE's best matches that year. Now, hopefully WWE gives Zayn a legitimate push, at least in the midcard level because this dude is TALENT."
Rating: 10.0
Sentiment: 0.4083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Real Raterwrote on 06.02.2017:[7.0] "In-Ring Skills:Aktuell der beste Wrestler der WWE. 10/10 (50%) Promos/Schauspieltalent:Leider nicht mehr als Solide. 4/10 (25%) Charisma/Erscheinung/Gimmick:Seine extreme Schwäche aber + Punkt als EL Generico. 3/10 (25%) Sind dann insgesamt 6, 75 Punkte für The Underdog From The Underground. Er rettet sich durch seine starken In-Ring Skills zu einer Bewertung, im grünen Bereich.  = 7 Punkte"
Rating: 7.0
Sentiment: 0.037500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TrevPuroFanwrote on 07.01.2017:[10.0] "Sami Zayn is my favorite wrestler in the WWE. He plays the underdog role fantastically well, and is one hell of a storyteller in the ring. He is fantastic"
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: hrikygwrote on 23.12.2016:[9.0] "Sami is a good wrestler... he not only is the future champ of wwe but also a former indie darling. Though i gave him a 9 due to his lack of exposure in 2016. I hope that he is gonna be great again in 2017."
Rating: 9.0
Sentiment: 0.19642857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Titansrevengerwrote on 13.12.2016:[6.0] "Zayne makes for a good under dog for fans to get behind but comes off as very generic. He hits all the right notes and excels in the ring but lacks that it factor. I also feel that at this point he needs to stay away from his bitter rival Kevin Owens. At this point the two are polar opposites in terms of success. Zayne can only rebound from defeat by his arch rival for so long before it becomes to contrived."
Rating: 6.0
Sentiment: 0.015238095238095228
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: arrancarwrote on 06.12.2016:[7.0] "Pretty entertaining wrestler. His high-flying is pretty good, even very good at times, but somehow his style just looks very unflattering at the same time. He really just doesn't have the look of a wrestler. This may sound superficial, but it can be very hard to take Zayn seriously when he looks so odd. His general acting is mostly fine, but when trying to be inspirational or passionate Zayn will often come across as melodramatic and cringeworthy. This is mostly on mic however, as in the ring I feel the acting communicated through his wrestling moves is actually rather good. Apart from Zayn's high flying he also impresses with his power moves and even some of his striking. He's an all rounder to the point that I definitely consider him a good wrestler and one of the more exciting people in WWE currently. Zayn does a very good job playing the underdog, and with his impressive move set he has definitely won me over from someone that used to despise his squeaky clean babyface persona."
Rating: 7.0
Sentiment: 0.2838802083333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: SomeDudeOnTheInternetwrote on 16.11.2016:[10.0] "Sehr schnelle Moves, gutes selling, saubere Technik, gute Konter.. definitiv einer der besten im Ring (10/10). Leider kein besonderer Micworker wie CJ oder KO aber dafür ganz solide. Promos und auch sein "der nette Kanadier von nebenan"-Gimmick bei der WWE (Obwohl er auch anders kann olé olé olé olé) sind sehr Standard (7/10). Dafür umso mehr Charisma (10/10). Meine persönliche Meinung (10/10)."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: tobiwwewrote on 11.11.2016:[7.0] "Ich finde Sami Zayn gut, seine in ring skills sind fast perfekt. Er hat nur das problem das ihm finde ich das gewisse etwas fehlt, etwas für das nur er steht, etwas was die massen begeistert neben seinen in ring skills."
Rating: 7.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: tatewrote on 30.10.2016:[6.0] "Ich finde ihn hier schon wirklich überbewertet.  Klar er ist immer für ein gutes Match gut und gegen seine In Ring Leistung kann man wirklich nicht viel sagen. Allerdings finde ich ihn ansonsten ein wenig Nichtssagend für einen wirklichen Superstar gehört schon ein wenig mehr für mich."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Squared Circlewrote on 24.10.2016:[4.0] "Not much to see here.  Great ring entrance, (although you can say it's getting stale), has some nice high speed moves.  Can put together a good match, but will need a better personality to get anyone interested.  Matches are entertaining but not memorable, as is the entire sport today.  OK interview and Ok physical presence.  Nothing special"
Rating: 4.0
Sentiment: 0.2678095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: akm0wrote on 18.10.2016:[10.0] "The true underdog. Sami Zayn has something few have, which his the ability to make the crowd go nuts for him. He reminds me of the late Danielson, in some ways, which had the same supernatural power. He's god-tier in the ring, he's versatile, has a great in-ring psychology, can be both serious or comedy, he's great single or tag team and his storytelling is just unparalleled. This guy it's just what every face would want to be. You just can't hate him, which is why is such a good face. Taking off the mask was the best decision he ever made in his career."
Rating: 10.0
Sentiment: 0.16245421245421246
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: shosa94wrote on 11.10.2016:[9.0] "Possibly the best American in-ring storyteller in the business today.  Absolute genius at structuring a match and that alone makes him one of the best.  El Generico was a fun character, but Sami will likely play second fiddle to Kevin for most of his career because, though certainly likable, he's not a truly magnetic personality.  Still, his rivalry with Steen/Owens, along with excellent matches with PAC/Neville, Bryan Danielson, and Shinsuke Nakamura, and his excellent tag work with Paul London will ensure him a spot in history."
Rating: 9.0
Sentiment: 0.4583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: JordanACEwrote on 01.10.2016:[9.0] "Ole, ole ole ole... What is there to not like about Sami? He's just an amazing wrestler. A well rounded guy who can work many different styles. Hope he'll get a championship soon in the WWE."
Rating: 9.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TwistOfFatewrote on 06.09.2016:[10.0] "Schaue seine Matches immer sehr gern und er riskiert sehr viel immer für seine Fans.  Am Mic ist er auch gut anzuhören. Mal schauen wo es noch hinführt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rasslin Ruleswrote on 31.08.2016:[10.0] "Als El Generico zur Independent Legende, als Sami Zayn zur NXT Legende. Jetzt liegt es an Vince ihn zu pushen. Denn im Ring ist er genial, dazu kann er im Ring eine Story besser erzählen als jeder andere in der WWE. Over ist er bei den Fans ja schon seit seinem Main Roster Debut."
Rating: 10.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: croatiantwat1950wrote on 22.08.2016:[10.0] "Brutally underrated. Had 3 MOTY contenders already and neither the creative or IWC give him that much credit. Excellent both in-ring and on the mic and deserves a singles title by the end of 2016."
Rating: 10.0
Sentiment: 0.20625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: KevinZaynwrote on 23.07.2016:[10.0] "Er einer der besten Wrestler ever! Unglaublich gut im Ring 10/10 Charisma 10/10 hat auch eine exzellente Ausstrahlung 9/10 und kann Auch wirklich göttliche Promos halten 9, 5/10"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: AmbroseAsylum12wrote on 05.07.2016:[9.0] "Great wrestler with very good promo skills. Unfortunately, he didn't show much of his character on the main roster, even though down in NXT it was really great. I think that it is booking's fault and that he will show his great pure babyface character when/if WWE pushes him."
Rating: 9.0
Sentiment: 0.3594885361552028
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Zedwrote on 27.06.2016:[7.0] "Sehr guter Ringworker, wenig Charisma. Er grinst ja nur fröhlich. Würde ihn gerne mal in einer ernsthafteren Rolle sehen. Dazu noch zu klein und schmächtig, um im Mainstream was zu reißen. Top Typ für die indies, aber in der WWE wird er immer unter Wert bleiben."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: AMHTPwrote on 21.06.2016:[8.0] "Sami is a fantastic wrestler and one of the rare pure babyfaces of the modern era.  He could sometimes stand to work a little slower and with a little better psychology -- and I say that as a fan of indy wrestling, by whos standards he is incredible -- but almost every one of his matches leaves you wanting more.  Sami has a high ceiling, especially now that he's finally found his footing when it comes to promos.  He's a magnet for fan support, and honestly, who wouldn't love the guy?  I look forward to seeing where he goes from here, and his athleticism and heart are both tremendous additions to the WWE roster."
Rating: 8.0
Sentiment: 0.2821746031746032
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: sXe27wrote on 20.06.2016:[9.0] "Großartiger Wrestler, der uns hoffentlich noch viel Spaß bescheren wird. Unglaublich, dass er mir als Sami Zayn sogar noch einen Tick besser gefällt als zu seiner Indy-Zeit. Im Ring hoch talentiert und auch ohne Maske mit viel Charisma ausgestattet. Atmet wie kaum ein zweiter den Geist Daniel Bryans als "Independent-Legende goes WWE-Underdog-Favourite" ein und könnte der legitime Nachfolger des American Dragon werden."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mantafahrerwrote on 14.06.2016:[10.0] "In der heutigen Zeit gibt es niemanden, den ich für den Spot als #1-Babyface der Wrestlingwelt besser finden würde. Top Micwork, Top In-Ring-Work, charismatisch ohne Ende, intensiv, leidenschaftlich... es wird einem einfach nicht langweilig, wenn man ihm zusieht."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Penkerwrote on 14.06.2016:[7.0] "Als El Generico fand ich ihn recht unterhaltsam. Er wirkt sympathisch und auch im Ring kann er einiges. Was mich halt stört ist zum einen sein Finisher (er und Del Rio sind zurzeit irgendwie die beiden, die keinen richtigen Finisher haben), der mMn nicht so recht zu ihm passt. Eine Suplex-Variante oder was vom dritten Seil fände ich besser. Zum anderen ist sein Match Ablauf (zumindest in der WWE) oft viel zu ersichtlich."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Alex Maedawrote on 06.06.2016:[10.0] "Starker Wrestler mit unfassbarer Leidenschaft und einer erfrischend natürlichen Ausstrahlung. Hat das Zeug zu einem der Top-Faces weltweit. Spätestens durch das Match gegen Nakamura ist Sami Zayn zu einem meiner absoluten Favoriten geworden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Luv all wrestlingwrote on 05.06.2016:[10.0] "He is the first wrestler i connected with, I gave him a 5 star match - vs pac in pwg, gave me my most emotional respone in wrestling when he faced cena and above all else has made me want to be a pro wrestler"
Rating: 10.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Sick Lebowskiwrote on 23.05.2016:[10.0] "Ich habe ihn als El Generico geliebt und ihn sowohl vor dem Bildschirm als auch live beim Carat oftmals abgefeiert. Als Sami Zayn gefällt er mir nicht ganz so gut wie in seinem Maskengimmick, aber seine In Ring-Fähigkeiten sind ja noch die gleichen und seine Rolle als oftmaliger Underdog gefällt mir auch sehr gut, weswegen ich ihn auch da im ganz oberen Bereich sehe und somit insgesamt nur die Höchstnote ziehen kann."
Rating: 10.0
Sentiment: -0.288961038961039
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: DB992wrote on 17.05.2016:[8.0] "A really solid and good "organic babyface" (as he's recently been called), Generico is a really good all-rounder as well. Reminds me a lot of Ricky Steamboat, character-wise: he doesn't excel at the microphone, but he can get basically most people behind with great non-verbal/ in-ring skills."
Rating: 8.0
Sentiment: 0.32857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: prowrestlingisrealwrote on 15.05.2016:[10.0] "Sami Zayn is a guy that proved that dedication, hard work and passion to the wrestling business will pay off, he is now without a doubt one of the best there is, and in the future he will be one of the best there was, Olé!"
Rating: 10.0
Sentiment: 0.4270833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Veyron22wrote on 12.05.2016:[6.0] "Ich muss leider sagen, dass ich absolut kein Fan von ihm bin. Im Ring relativ gut aber nicht wirklich grandios (7/10). Am Mikrofon ziemlich gut, aber wirkt monoton. Wenn er die Monotonie los wird bewerte ich seine Mikrofonkünste besser (5/10). Charisma ist durchaus vorhanden aber wirklich viel sehe ich in seinem Charakter leider nicht. (6/10)"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Longa-46wrote on 11.05.2016:[10.0] "Sami Zayn - das Gesicht von NXT. Seine NXT Zeit war schon echt der Hammer. Aber auch in der Indy Szene sehr überzeugend. Den Sprung ins Main Roster hat er sich verdient und man sollte ihn auch richtig einsetzen. Früher oder später sollte man ihn auch einen Titel geben. Im Ring sehr gut, am Mic ebenfalls, er besitzt viel Ausstrahlung, sowie auch sehr viel Charisma. Er hat sich 10 Punkte völlig verdient."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mettstetter619wrote on 07.05.2016:[10.0] "Perfekter Wrestler, kann alles im Ring. Hat unglaublich viel Charisma, deshalb macht es auch nichts aus, dass er am Mic nicht auf 10 Punkte kommt. Ich würde mich freuen, wenn er auch im ein oder anderen Mania Mainevent wäre. Er ist einer meiner Favourites. Schon als El Generico war er klasse."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: killowenskillwrote on 19.04.2016:[10.0] "The phenomenal wrestler, whose face for a long time kept in awkward mask. One of those people who are obliged to win the main title of the largest federations in the world. In Sami have all the makings for it. Good luck."
Rating: 10.0
Sentiment: 0.25277777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: NastyYaffawrote on 06.04.2016:[10.0] "Quite possibly the best wrestler in the world, and one of the greatest wrestlers of all-time. El Generico was such an awesome gimmick in the indies, and he played it to perfection, and put on some great matches while doing that. Then he came to the big E and he has been killing it as Sami Zayn ever since. He's such a natural babyface, totally up there w/ Steamboat, Kobashi, Bryan & others when it comes to that. Zayn rules."
Rating: 10.0
Sentiment: 0.39
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: SteveTheBeastwrote on 06.04.2016:[10.0] "Früher als El Generico meiner Meinung nach einen Ticken unterhaltsamer, aber auch jetzt als Sami Zayn ein erstklassiger Wrestler und einer der besten, den die WWE zur Zeit zu bieten hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Corwowrote on 04.04.2016:[10.0] "Sami Zayn is one of the most well-rounded individuals on the current WWE roster. His selling is tremendous, he's a phenomenal wrestler, and he can cut one heck of a promo."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Psychospherewrote on 02.04.2016:[10.0] "Phenomenal wrestler, in the indies and WWE. If you aren't impressed with his work in WWE, go watch the matches he had with Steen in the indies, especially the match between the two at Final Battle 2010. Can't wait to see this guy on the main roster, he had the perfect send off with his showdown against Nakamura."
Rating: 10.0
Sentiment: 0.4444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mizzle Assault Antwrote on 19.03.2016:[10.0] "Even if you just look at his WWE run he's been a great talent, world class matches with high quality talents like Cesaro, Owens, and Neville but also getting great stuff out of non-indy darlings like Bo Dallas, Tyler Breeze, and Jack Swagger. But truly there is no question if you are at all familiar with his utterly fantastic indy resume, as El Generico he frequently ranked among the best wrestlers in the whole world. I hope nothing but good things for this guy."
Rating: 10.0
Sentiment: 0.5038888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: FightSashaFightwrote on 11.03.2016:[10.0] "Sami Zayn ist die Definition von Perfektion. Das was er im Ring abliefert ist unglaublich !  Bei Ihm stimmt einfach alles!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CorvinLEwrote on 08.03.2016:[9.0] "Sami ist ein Hammer Wrestler, seine Matches sind sehr schön anzuschauen und sehr unterhaltsam, mein absulutes favorite Matches waren die gegen (Adrian) Neville. Seine Moves sind schnell und teilweise sehr extrem anzuschauen."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Delirious434wrote on 05.03.2016:[10.0] "One of the best Wrestlers in the World today, he has the Talent, the Mic Skills, and the Charisma, 3 of the most important things that any Wrestler should have, especially a WWE Superstar, hope he get a great career and become the top guy in WWE, him and Owens have everything to be the top babyface and Heel of the company"
Rating: 10.0
Sentiment: 0.5285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TheLoudMouthwrote on 18.02.2016:[10.0] "Ein absolutes Total Package und neben Seth Rollins das aktuell wohl beste Komplettpaket, dass es bei WWE aktuell zu bestaunen gibt. Überragend im Ring - gehört meiner Meinung nach zu den Top 5 der gesamten Wrestlingwelt - und überragend am Mic. Wird seinen Weg ohne Zweifel noch gehen."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: blackmileswrote on 07.01.2016:[10.0] "Dieser Typ ist einfach so Gut in allem. Da musst man garnicht mehr viel hinzufügen, aber wartets ab. Beim Rumble kommt er und dann verkackst di wwe komplett"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Kevin434wrote on 03.01.2016:[10.0] "Mein absoluter Lieblingswrestler! Aktuell der viertbeste Wrestler der Welt (nach AJ, Tanahashi und Nakamura). Dieser Mann besitzt das total package. Sein Mic Work ist gut und er kann super dramatische Promos halten. Er ist so verdammt charismatisch (das sieht man vor allem in seinem Match gegen Kevin Owens bei TakeOver Rival, wo er das beatng von Owens SUPER verkauft). Kommen wir zum wichtigsten: Das In-Ring work. Er beherrscht sowohl Technik, High-Flying als auch Brawling. Er ist in der Lage mit jedem ein gutes Match auf die Beine zu stellen. Besonders gut ist er darin den Gegner stark darzustellen. Das beherrscht kein anderer so gut wie Sami. Zudem ist er natürlich ein grandioser seller und jede Aktion von ihm hat meistens einen Sinn. Unterm Strich ein Grandioser Wrestler, der die 10 mehr als Verdient hat."
Rating: 10.0
Sentiment: 0.11666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: HouseWhiteWillRisewrote on 02.01.2016:[10.0] "Zayne might be the best wrestler in the world today he has everything you want and he has shown he can deliver a promo and that is all he needed to show because he has charisma now he has some above average mic skills and he is fantastic in ring when he recovers fully from the injury and gets going he will be along side the likes of Cesaro Ziggler Owens Rollins and Ambrose as one of the top in ring workers the reason i gave him a ten is because he has everything and it would be crazy to rate him less because he is the full package"
Rating: 10.0
Sentiment: 0.14814814814814814
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: LSEstrelawrote on 24.11.2015:[9.0] "El Generico is the true definition of "underdog". After years of battles with is real life best friend Kevin Owens, he finnaly reached the pinnacle of his profession. There is no doubt that the future is bright for Sami Zayn!"
Rating: 9.0
Sentiment: 0.48500000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: roy-harperwrote on 12.11.2015:[10.0] "Gehört zu den Top 10 vielleicht Top 5 Worker der Welt. Wenn man es richtig anstellt, ist er das neue Babyface der Liga. Das auch "Ernst" genommen wird."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mandzukic9wrote on 13.09.2015:[9.0] "Rami ist auf jeden Fall einer der besten In-Ring-Worker der Welt. Es gibt fast nich, das dieser Mann nicht kann.  Er kann fast jeden Mann sauber durch das Match bringen und es ansehnlich aussehen lassen. Im Ring gehts eigentlich nicht besser. Zumindest könnte ich jetzt nichts sagen, das er verbessern sollte.  Er kratzt an der 10. Wenn er sich auch in den Main Shows behaupten kann, werde ich um diese kaum herum kommen. Doch zunächst wünsche ich ihm ernstmal eine schnelle und unkomplizierte Genesung."
Rating: 9.0
Sentiment: 0.18888888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: HeadCheesewrote on 02.09.2015:[10.0] "Sami Zayn and El Generico are two of the best sellers, high flying, and explosive wrestlers of all time."
Rating: 10.0
Sentiment: 0.58
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: WWEfan802wrote on 25.07.2015:[10.0] "I don't Know about his ROH days but based of his time in NXT I can definitely say this guy is the future of WWE, Great ring personality and just exciting to watch, he preforms his moves with perfection. I can't wait until he gets his chance to be on the main raw roster fulltime, him and Owens together are going to be the next big thing that WWE needs"
Rating: 10.0
Sentiment: 0.1294871794871795
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: UnstableBlazewrote on 15.07.2015:[10.0] "Ich weiß nicht was ich zu Sami Zayn noch sagen muss...  Im Ring einfach Weltklasse, sein Mic Work ist absolut in Ordnung...  Auch schon als EL Generico einfach Grandios  Ist einer meiner All-Time Favorites!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MusSanwrote on 26.04.2015:[10.0] "Als El Generico einfach spitze. Als man ihm seine Maske abnahm, dachte ich, das wars fuer ihn. Aber ich habe mich geirrt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: SapolBlackwrote on 27.03.2015:[8.0] "Als El Generico war er mein Liebling, Samy ist auch noch gut. Aber mir fällt einfach seine Maske.  Die hat ihn einfach nur Ausgemacht. Auch wenn er nicht zu Stark limitiert wurde bei der WWE (NXT). Hoffe ich das er nicht noch stärker limitiert wird, wenn er sein Debüt im Hauptroster feiert. Ansonnsten weiß man durch seine Indy Zeit , das er einfach nur gigantische Schlachten abliefern kann. Bestes beispiel ist die Fehde gegen Kevin Steen ( Kevin Owens )."
Rating: 8.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Gad Chablewrote on 20.02.2015:[9.0] "Sami Zayn ist begnadet im Ring, hat eine gute Ausstrahlung, ist unfassbar charismatisch und außerdem stark am Mic. Seit er ohne Maske kämpft, hat er wirklich nochmal einen riesigen Sprung nach vorne gemacht."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: RawIsJerichowrote on 20.02.2015:[10.0] "The single best performer in the WWE right now, maybe even the best period. He tells excellent stories in the ring, and has one of the most exciting movesets anywhere. His personality and charisma are off the charts. He will become a fan favorite on the main roster, if they tell the same story that they have in NXT, it will be huge."
Rating: 10.0
Sentiment: 0.461904761904762
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Millewrote on 10.02.2015:[10.0] "Extrem unterhaltsamer Worker. Von der Theme, über das Charisma bis zu seinen überragenden In Ring Fähigkeiten, einfach absolute Weltklasse. Er kann wie kaum ein anderer bei der WWE in jedem Match eine unglaubliche Intensität rüber bringen. Und das mit einem für einen WWE Wrestler sehr untypischen Look."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Arrow-Squadwrote on 22.12.2014:[10.0] "Gefällt mir als Sami Zayn sogar noch einen Tick besser als El Generico. Bei ihm ist einfach alles vorhanden. Er kann mich persönlich in ein Match mit einbeziehen wie kein Anderer. Ole Ole Ole!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Nino96wrote on 21.12.2014:[10.0] "Sami Zayn ist definitiv einer für die Zukunft. Man hat ja schon seit langer Zeit das Problem, dass die meisten Faces sehr schlecht bei den Fans ankommen. Sami Zayn jedoch kommt bei allen Fans super an, egal ob jung oder alt, Attitude-Era oder PG-Era. Seine Ausstrahlung, sein Move-Set und neuerlich auch die Mic-Skills werden ihn in ein paar Jahren an die Spitze des WWE-Eisbergs bringen."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Triple Hwrote on 19.12.2014:[10.0] "Zayn ist und wird wenn er sich bei einem seiner waghalsigen Manöver nicht mal ernsthaft verletzt der Superstar des Wrestlings der kommenden Jahre. Ein unglaublich talentierter Athlet und zur Zeit der beste High Flyer in der WWE. Seine Matches sind eine Augenweide. Mich hat es gewundert, das bei den Slammy Awards dieses Jahr nicht sein Match gegen Antonio Cesaro als Match of the Year nominiert wurde.  Er holt alles aus seinen Gegnern heraus, selbst aus den weniger talentierten. NXT ist eh meine absolute Lieblingsshow. Das beste was die WWE zu bieten hat. Hier werden die Superstars von morgen geboren. Er gehört dazu."
Rating: 10.0
Sentiment: 0.18
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: RooneyDXwrote on 17.12.2014:[10.0] "Dieser man sollte in raw und smackdown auftreten dann hätten raw und smackdown jede woche eine 8-10 bewertung. ich weiß ehrlich gesagt nicht was er nicht kann. NXT stellt raw und smackdown seit ner weile in den Schatten wegen .... und diesem Kerl."
Rating: 10.0
Sentiment: -0.23076923076923075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Heel MaSchwrote on 16.12.2014:[10.0] "Unglaublich was für ein guter Wrestler Zayn geworden ist. Momentan ist Sami für mich sogar der beste der Welt. Er kann wie kein Zweiter eine Geschichte während eines Matches erzählen und dies seit er die Maske abgelegt hat auch noch durch seine tolle Mimik und sein gutes Mic-Work untermauern. Des weiteren kann ich mich eigentlich an kein schlechtes Zayn/Generico Match in den letzten Jahren erinnern."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ROHfan99wrote on 16.12.2014:[10.0] "Dieser Mann, ist einer der Besten Wrestler der Welt! Im Ring macht es jedesmal so viel Spaß ihm zuzusehen, er haut Krasse Sachen raus ohne ende und kann richtig gute Matches Worken. Bei NXT ist er in meinen Augen auch der beste Schauspieler und (neben Sasha Banks und Enzo Amore) der beste Mic Worker. sein Gimmick bringt er immer super im Match rüber. Und auch sonst ist er einfach ein klasse Wrestler. Ein Gesamtpaket, das es einfach drauf hat, ich hoffe das er in seiner Karriere noch viele Erfolge feiern darf, die er auf jeden Fall verdient! Er ist einer meiner Lieblingswrestler, und hatte mir den geilsten Moment aller Zeiten geliefert als er NXT Champion wurde, dieser Mann ist der beste Wrestler der Welt, (natürlich einer von vielen), viel mehr gibt es nicht mehr zu sagen, Zayn is Awesome!"
Rating: 10.0
Sentiment: 0.7083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Dallichenkowrote on 15.12.2014:[10.0] "Meine Wertung bezieht sich auf El Generico aus den Indies da ich die WWE nur noch schriftlich verfolge.  Generico konnte mich einfach immer in seinen Bann ziehen wenn er im Ring stand. Ich halte es für eine Gabe,  meiner Meinung nach kann man so etwas nicht erlernen. Er verkörpert diesen 'against all odds' Charakter um Welten besser als ein John Cena was natürlich auch an seiner 'drahtigen' Figur liegt. Im Ring kann er auch alles und stellt mit jemanden Wrestler ein tolles Match auf die Beine.  Ich wünsche ihm natürlich alles erdenklich gute in der WWE. OLEEEEE."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Wrestlingfan96wrote on 15.12.2014:[10.0] "Ja man! Endlich ist er Champion, was er sich auch verdient hat! Für mich der beste Wrestler in NXT, der einfach auch mal überall gute Stimmung verbreitet, sodass man ihn nicht nicht mögen kann. Beispiel bei Takeover, da gabs nur jubel für ihn- kein einziger hat gebuht. Im Ring ist er natürlich wie schon erwähnt klasse, am Mic auch, sehr charismatisch- Was will man mehr?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Viper99wrote on 31.10.2014:[10.0] "Fand ohn vor seiner WWE zeit schon großartig als EL Generico und dachte eigentlich das er als Sami Zayn ohne Maske floppt! Aber die WWE hat mich zum glück eines besseren belehrt! Er hat bisher einige echt gute Matches gehabt ua. Die Matchserie Gegen Cesaro! Ich hoffe er gewinnt bald auch den NXT Title! Ich denke für die Main Show ist es noch ein bisshen früh. Er soll erstmal den Titel holen und denn dann ein paar Monate halten bevor er in die Main Show komnt! Habe keine lust das er dort wie zb.. Big E versaut wird!"
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: GlobalSportsGamerwrote on 20.10.2014:[10.0] "This guy oozes charisma. Everyone loves him and he's a great wrestler. The definition of a great talent."
Rating: 10.0
Sentiment: 0.46666666666666673
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: eldenaaaaawrote on 02.09.2014:[10.0] "The Canadian grappler has competed for Pro Wrestling Guerrilla, Chikara, Ring of Honor and Dragon Gate, and he is a former ROH World Tag Team and ROH World Television Champion. A great wrestler who deserves to be on the main shows"
Rating: 10.0
Sentiment: 0.32222222222222224
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: 8BitLegendwrote on 30.08.2014:[7.0] "Technisch der beste Wrestler in der WWE. Vor allem der kreativste. Gerade im Verbund mit Cesaro Weltklasse. Finde ihn als Typ jedoch viel zu ironisch um seinen Matches die Story dahinter abzunehmen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: stytcheswrote on 14.08.2014:[10.0] "Seit Jahren einer meiner Lieblingswrestler. Stimmungskanone mit einem vielfältigen Repertoire, super Techniker, der Mann kann alles und mit jedem."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: PWFwrote on 11.08.2014:[10.0] "I have never met El Generico but I have met Sami Zayn ever since his debut in NXT. I have heard people talking about his fantastic in-ring skills and they weren't wrong, he is awesome. I find him surprisingly good in the mic. I believe he could have some small improvements on his gimmick but nevertheless he's one of the most complete wrestlers in the entire WWE roster. He has quickly become the undisputed face of NXT and I believe that he could become the face of WWE in the future."
Rating: 10.0
Sentiment: 0.22833333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Blade Bourdeauxwrote on 08.08.2014:[7.0] "Ich mache mir doch ernsthaft Gedanken, ob er es in der WWE packt. Das Handwerk wird nie sein Problem sein, jedoch sehe ich aktuell Null IT Faktor und das ist ein Problem. Er ist ein schmächtigerer Cesaro, und ein nüchternerer Bryan. Hoffentlich findet sich eine Nische."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Matzinhowrote on 07.08.2014:[5.0] "Ich fand ihn als El Generico passabel und jetzt ohne das Gimmick einfach nur farblos und unbrauchbar. Als Generico hatte er wenigstens den Brainbuster, funktionierte also in zwei oder drei Kämpfen als debil grinsender Comedywrestler. Ohne Maske ist er ein kümmerlicher, dünner Typ mit bleicher Haut der mich im Ring nicht überzeugen kann und dem ich den Wrestler auch nicht abkaufe. Passt angesichts seiner Statur auch nicht in die WWE, aber mal sehen was die aus ihm machen. Bei einer Sache bin ich mir absolut sicher: der wiegt NIEMALS 90 Kilo!"
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: zackwoowoowooryderwrote on 02.08.2014:[9.0] "Ein sehr guter Athlet, der bestimmt eine große Zukunft vor sich hat, aber nur unter Bedingung, dass ihn die WWE nicht fallen lässt, wie sie es schon mit dem ein oder anderen vielversprechenden Talent gemacht haben. Im MainRoster konnte ich ihn mir erstmal gut in einem Team Adrien Neville vorstellen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: wwetnafangirlwrote on 03.06.2014:[10.0] "Einer der besten Wrestler und er hat eine tolle Zukunft vor sich im Main Roster. Hoffe das die WWE ihn pusht und nicht fallen lässt. Live konnte er auch vollkommen überzeugen."
Rating: 10.0
Sentiment: 0.1515151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Titanwrote on 31.05.2014:[9.0] "Ich kenn ihn nur als Sami Zayn da ich kein Indy gucke, aber ich weiß, was für einen Ruf er in den Indies genießt. Bei NXT ist er bei weitem der beste, der da rumläuft. In Sachen Selling und Ringpsychologie macht Zayn keiner so schnell was vor. Von seinen Promos bin ich nicht wirklich überzeugt, dafür lässt Zayn mehr Taten als Worte sprechen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: New Strategywrote on 10.03.2014:[9.0] "Ein großartiger Techniker und High-Flyer. Ähnlich wie Adrian Neville, konnte er bereits in seiner Independent -Zeit für Aufsehen sorgen. Dort trat er als Wrestler namens "El Generico" auf.  Mittlerweile ist er ein fester Bestandteil von WWE-NXT, der dort im letzten Jahr ein FOTY-Match gegen Cesaro bestritt. Wenn die WWE es richtig anstellt, könnte ich mir hier einen ähnlichen Charakter wie den von Daniel Bryan vorstellen. Dann könnte es auch auf der großen Bühne klappen. Ich bin Fan von Zayn und hoffe, dass wir noch viele großartige Matches von ihm sehen werden."
Rating: 9.0
Sentiment: 0.06818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: JeffHardy3107wrote on 05.03.2014:[8.0] "Als El Generico top! Als Sami Zayn top! Klasse Typ im Ring. Guckt euch das Match gegen Cesaro an, Zucker! 8 Punkte."
Rating: 8.0
Sentiment: 0.703125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: AriesMarkwrote on 05.03.2014:[9.0] "Been a huge fan of the man formerly known as El Generico for years now (even before he was in ROH) He was one of the actual good things that come out of the IWS promotion in Quebec (along with Steen). The only thing that keeps me from giving him 10 points is the fact that his promos are kind of blah and generic. Great seller overall. Although I highly doubt WWE would ever let him use the brainbuster (at least not the turnbuckle version)"
Rating: 9.0
Sentiment: 0.21454545454545457
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: yanuswrote on 31.01.2014:[9.0] "Brilliant in the ring (phenomenal seller), but I'm somewhat worried about his lack of mic-skills and size. Seems rather bland outside the ropes."
Rating: 9.0
Sentiment: 0.3083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: apc24wrote on 23.01.2014:[10.0] "As El Generico, he was arguably the best wrestler in the indy scene. Now as Sami Zayn, he has perfected his abilites as a complete wrestler and now has a bright future in the WWE."
Rating: 10.0
Sentiment: 0.45000000000000007
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: LS Incwrote on 19.01.2014:[10.0] "A fantastic performer. I had a lot of doubts when he signed with WWE but at NXT he has immediately become a fan favourite and he's done great things.."
Rating: 10.0
Sentiment: 0.6000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CmPunk2803wrote on 15.01.2014:[10.0] "Einfach ein mega Wrestler. Die matches die ich von ihm gesehen habe sind richtig gut. Am mic habe ich noch nicht viel von ihm gehört aber da denke ich das er da auch mindestens solide ist. Bitte schnell in die Hauptshows mit ihm !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ShawnDravenwrote on 04.01.2014:[9.0] "Sami is one of the few guys that probably could have gone straight to the main roster from the indies."
Rating: 9.0
Sentiment: 0.05555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: HammertonWaywrote on 25.12.2013:[9.0] "Coming into the WWE, I heard great things about El Generico. I can say now that as Sami Zayn, he has not disappointed. We can only wait to see how far he can go."
Rating: 9.0
Sentiment: 0.31875000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: salvatore9787wrote on 29.11.2013:[10.0] "This is the best high-flyer I ever seen in my life in the history of wrestling."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ProRedstonewrote on 02.11.2013:[9.0] "Ein solider Worker .... ich find ihn genial, damals als Generico aber noch besser ...."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Kitanoyamawrote on 02.11.2013:[10.0] "Einer der besten Indy-Wrestler überhaupt. Er ist schnell, agil und technisch sehr fähig. Für die WWE ist er definitiv ein Gewinn wenn er auch entsprechend eingesetzt wird. Ein World Champion wird er wahrscheinlich zwar nicht, aber ich sehe ihn durchaus als Material für die Upper Midcard an. Die WWE muss ihn nur entsprechend einsetzen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Leonewrote on 08.09.2013:[10.0] "Sami Zayn was excellent in Ring Of Honor and on the indies as El Generico.  I still remember seeing him wrestle in CZW back in 2004 (in a match that also introduced me to Kevin Steen) and hoped he would get somewhere.  Thankfully, he appears to be on that route.  While he might not be the ginger french canadian of arab descent playing a mexican luchador anymore (or at least not at the moment), his work in NXT, the booking that has gone into it, as well as the crowd reaction, indicates that he does have a real star quality that cannot be forced.  Like Daniel Bryan, it appears that 10 years of travelling the world has been of great benefit to his talent and reputation.  His matches against Kevin Steen in ROH were brilliant, and deserve to be seen by any wrestling fan, and his matches against Antonio Cesaro and Jack Swagger in NXT, have shown that he has "it".  I feel he'll be reaching his prime soon - lets hope WWE doesn't mess it up."
Rating: 10.0
Sentiment: 0.2125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TAWPTierJustinwrote on 05.09.2013:[10.0] "I've always loved watching Sami Zayn's in-ring work in ROH when he was El Generico. Even though I was never a fan per se of the El Generico character, I'll give credit where credit is due because he got that character over with the people so much that when it was announced that he signed with the WWE, people were chanting, "Ole" in the WWE arenas and even now in NXT obviously! Now that he's in NXT, I've become a hell of a lot more impressed with Sami than ever before in his career and that says a hell of a lot! He showed me that he can be himself and still be awesome as a character and with his incredible in-ring skills, he's been putting on really great matches lately in NXT with Antonio Cesaro and even with Jack Swagger this week! He is completely blowing me away and he is getting super over with the NXT crowd as well as his matches are! Plus no one in WWE developmental has had a debut like Sami Zayn had 3 months ago where he defeated 2 WWE superstars in one night! I would not be surprised if Sami Zayn gets called up to WWE's main roster sooner rather than later and if he does, it's truly well deserved!"
Rating: 10.0
Sentiment: 0.3658333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Navidwrote on 30.08.2013:[8.0] "Riesiges Potenzial zeigte er als Generico nur im Ring, doch was er nun als Zayn leistet lässt das völlig vergessen. Natürlich hat er seinen Stil deutlich umgestellt, doch das was er nun zeigt lässt für mich keine Schranken mehr erkennen. Ich kann mir in 2 Jahren sogar einen Mainevent mit WWE Titelgewinn vorstellen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Lions Denwrote on 30.08.2013:[9.0] "Als El Generico natürlich schon super, aber mit der Ergänzung seiner Mikro-Persönlichkeit bei NXT absolutes Top-Material!"
Rating: 9.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CanadianDestroyerwrote on 01.08.2013:[10.0] "Würde man mir eine Waffe an den Kopf halten mit der Aufforderung, ein schlechtes Match dieses Mannes in den letzen acht Jahren zu nennen... man müsste mich erschießen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Paul Allainwrote on 06.07.2013:[10.0] "Simply put, the Greatest Wrestler I have ever seen is El Generico. Athleticism, Emotion, Humor, Charisma, he mix it all to create a mythic character that is the quintessence of likeability, and we should hope to enjoy is performance for many years into the future."
Rating: 10.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: mintaquewrote on 29.06.2013:[10.0] "Er ist einfach ein genialer Wrestler, er ist sich für nichts zu Schade und kann einfach alles"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rene21racerwrote on 10.05.2013:"Ich mach mir schon ein bisschen Sorgen um ihn dass er bei der WWE richtig eingesetzt wird. Aufgrund seiner Statur befürchte ich fast dass er größtenteils als Jobber herhalten muss. Ich hoffe die WWE erkennt relativ schnell dass in ihm einiges mehr steckt als das. Es gab und gibts in der WWE genug Beispiele wo es nicht gut ausging für die jeweiligen Worker. Wäre schade um jemanden wie ihn. Wünsche ihm viel Erfolg und dass man ihn bald in den Mainshow sieht!"
Rating: No rating found
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Babuswrote on 20.11.2012:[6.0] "Toller Athlet und in jedweder Kombination mit Steen wirklich gern gesehen. Nichtsdestotrotz weiß der Indy-Main Event Status, den Generico seit einiger Zeit genießt, mir viel zu oft seine Auftritte zu trüben. Es ist wahrlich nicht so, dass ich ein Verfechter der McMahonschen Bodybuilder-Ideale wäre, aber bei Generico geben der magere Körperbau, das noch immer Comedy-lastige Gimmick und sein Auftreter in ihrer Kombination für mich wirklich kein glaubwürdiges Zugpferd einer ernstzunehmenden Liga mit. Insofern wundert es mich auch, dass diejenigen, die Jay Lethals oder Rey Mysterios Abstecher in den Main Event stets mit empörtem Aufschrei begleiten, überhaupt gar kein Problem damit zu haben scheinen, dass jemand Generico nun quasi die letzte Hoffnung ROHs gegen den dominanten World Champ Kevin Steen sein soll. Denn wo diese zwei auf ihre geringe Größe wenigstens eine durchaus bemerkenswerte Statur bringen, scheinen Generico die zusätzlichen Zentimeter Höhe eher noch schlacksiger wirken zu lassen. Mal im Ernst, der Kerl sieht aus, als hätte man Peter Fox 'ne Maske aufgesetzt."
Rating: 6.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: alewrote on 03.11.2012:[10.0] "BRAINBUSTAAAAAAAH! Dafür eigentlich schon 10:D Ach ja El Generico noch so eine Indy Legende , Comedy Gold in jeglichen Promos im Ring der Hammer, spricht also alles für die Höchstnote!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: acidwrote on 24.09.2012:[10.0] "Fantastic wrestler! He's travel all around the world. His style is outstanding. I will give him 10 of 10!"
Rating: 10.0
Sentiment: 0.5625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: CHris FN ANDREWSwrote on 31.08.2012:"hab erst 2 Matches von ihm live gesehn aber er ist einfach der hammer OLE :)"
Rating: No rating found
Sentiment: 0.3181818181818182
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Damon Strikerwrote on 28.05.2012:[10.0] "Toller "Luchador", dem man, wenn man ihn das erste mal sieht, kaum zutrauen würde, dass er ein so hochkarätiger Performer ist! Liefert erstklassige Matches und weiss immer, wie er das Publikum mitreißen kann!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rated R Champwrote on 24.05.2012:[10.0] "El Generico wirkt auf den ersten Blick seht unscheinbar, steht allerdings weit über den vielen technisch guten aber farblosen Indy Talenten. Das er im Ring was kann steht wohl ausser Frage und auch wenn er, allein schon des Gimmicks wegen, keine großen Promos hält, so hat er im Lauf der Zeit doch eine sehr spezielle Ausstrahlung entwickelt. Weltweit gibt es derzeit kaum Bessere als den Generic Luchador."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Sascha311wrote on 24.05.2012:[4.0] "Für mich total überschätzt und er wird seinem großen Namen meiner Meinung überhaupt nicht gerecht auch bei Carat 2012 hat er mich nicht besonders gut Unterhalten ich fand sogar das er einer der schlechtesten der Carat- Show war und auch falsch ihn gewinnen zu lassen!"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ARIZAwrote on 23.05.2012:[10.0] "Der beste Mann in den Indys momentan. Hat mit jedem einfach nur großartige Matches."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: 7TheEwrote on 05.04.2012:[9.0] "Klasse mann von dem ich leider viel zu wenig sehen kann und konnte, aber das was ich gesehen hab war Atemberaubend, er ist definitiv einer der besten Wrestler auf der Welt und wird trotzdem nie das allergrößte Gold halten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: azirufwrote on 07.03.2012:[8.0] "Gute Ausstrahlung und klasse im Ring, aber einige kleine Makel wie zum Beispiel die gimmickbedingte Einschränkung beim Sprechen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: sign squadwrote on 05.03.2012:[10.0] "Punk, Danielson, so sieht der Best in the World aktuell aus. Mit JEDEM ein gutes Match haben können ist nett, es aber mit wirklich JEDEM zu haben, ist das, was zählt. Bester Pro-Wrestler weil glaubwürdig, sauber, präzise und verdammt noch mal verlässlich."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Aesopwrote on 05.03.2012:[10.0] "Nachdem ich ihn beim Carat gesehen habe muss ich ihm die 10 Punkte einfach geben, er hat gute Matches abgeliefert und hat für eine fantastische Stimmung gesorgt. Auch vorher war ich Fan, doch seit dem Carat weiß ich wie gut er wirklich ist. Außerdem noch ein richtig sympatischer Kerl."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: shoopdawoopwrote on 30.10.2011:[9.0] "El Generico ist ein wunderbarer Typ, guter Wrestler, überdurchschnittlich am Mic und mit einem völlig einzigartigen Gimmick :) Hoffe ihn bald mal in einer der großen Ligen zu sehen."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ShakDragoonwrote on 04.10.2011:[9.0] "El Generico ist Kult. Gemeinsam mit Kevin Steen rockte er einfach derbe, aber auch jetzt, wo er solo unterwegs ist, weiß er zu überzeugen. Egal ob bei ROH oder sonst wo! Ich hoffe, dass er es sein wird, der Kevin Steen in einer finalen Schlacht den PWG Gürtel abnehmen darf."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Obermackerwrote on 08.09.2011:[7.0] "Mal ne kleine Aufwertung: nachdem ich persönlich mit ihm gearbeitet habe, muß ich sagen, er ist sehr unterhaltsam & schafft es toll, das Publikum hinter sich zu bringen. Sicher einer der besseren Indy-Worker da draussen, obwohl er auschaut wie ein Permanent-Bluspender!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MotorCitywrote on 05.08.2011:[10.0] "Der Kerl brachte schon so manche Mark-Out Momente! Generico ist ein Klasse Wrestler, mit einem sehr lustigem großartigem Gimmick."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: SoulTouchaZwrote on 28.05.2011:[10.0] "Er ist einfach genial! Einer der unterhaltsamsten Wrestler der Indy-Szene. ^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Double Jwrote on 21.05.2011:[10.0] "Einer meiner absoluten Lieblinge: Toll im Ring, unglaublich charismatisch für einen (zugegebenermaßen kanadischen^^) Maskenträger und auch sehr fasnfreundlich! Eine 9 hat sich der Mann echt verdient! Edit: Tut mir Leid, ich weiß ne 10 ist nicht ganz objektiv, aber ich liebe Generico einfach, der Mann ist riesig im Ring und weiß seine minimalen Schwächen perfekt zu verstecken^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Sandmannwrote on 23.03.2011:[10.0] "9 Punkte für den Generic Luchador. Generico braucht nicht mal zu reden um mich zu überzeugen. Sehr guter, technisch versierter Wrestler, der auch gerne mal einen High Risk Move dazupackt. Dazu einfach ein total positiver Typ der eigentlich immer over ist beim Publikum. Dazu in einem der besten Tag Team der letzten Jahre gewesen mit Steen. Bei ihm braucht man aber auch nicht vor seiner nur anstehenden Singleskarriere Angst haben, er wird immer oben mitmischen. BRAINBUSTAAAAA Edit: Ich gehe jetzt auf die volle Punktzahl denn Generico konnte in der Fehde gegen Steen und seit dem das Team gesplittet nahezu in jedem Singles Match, egal gegen wen, egal in welcher Liga wirklich überzeugen."
Rating: 10.0
Sentiment: 0.05333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: downtown2wrote on 23.03.2011:[5.0] "El Generico ist ein technisch ansprechender Wrestler, der es manchmal sogar schafft, verblüffend neue Move-Variationen aus dem schieren Nichts zu bringen. Er hat es außerdem geschafft seiner Figur trotz Maske eine Persönlichkeit zu geben, davon können sich einige Luchadors eine Scheibe abschneiden. Und obwohl er zudem ein durchaus physisch betont kämpfender Wrestler ist, kann man ihn oft nicht richtig ernst nehmen. Der knöcherne Körperbau, die oft unpassend eingestreuten Comedy-Einlagen, die mäßige Darbietung am Mic und einige Details mehr. All das sind Faktoren, die mir eine überschwängliche Beurteilung unmöglich machen und mich zudem ernsthaft daran zweifeln lassen, ob er es je in höhere Gefilde schaffen wird."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TheRock 7 Champwrote on 15.03.2011:[10.0] "Ich bin ein richtiger Fan von El Generico. Im Ring ist er technisch brillant. Er hat zwar keine bewegenden Promos, dafür aber eine unglaubliche Ausstrahlung. El Generico numre uno!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Quackeltikkiwrote on 15.03.2011:[10.0] "Hab ihm beim 16 Karat dieses Jahr gesehen und war begeistert, klasse Wrestler der trotz Maske sehr charismatisch wirkt. "You want to buy a mask amigo? ""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Matt4Wrestlingwrote on 29.12.2010:[9.0] "Ein sehr technischer Wrestler, der allerdings sich nicht vor der Härte drückt! Die einzige Schwäche die ich bei ihn sehe, ist das er zu sehr immer einen auf Clown macht mitten im Kampf. Er würde weiterhin auch ein super Face sein, wenn er ein wenig ernster zur Sache käme. Ansonsten Top!"
Rating: 9.0
Sentiment: 0.47916666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Excellence of Executionwrote on 14.11.2010:[10.0] "Grundsätzlich ist es mit Maskenmännern oft so, dass sie gut wresteln können aber mimisch und dadurch charismatisch stark eingeschränkt sind (was ja nicht in jedem Fall ein Nachteil sein muss^^). Aber gerade hier fasziniert mich El Generico. Denn er schafft es wirklich sehr gut, Emotionen durch Körpersprache und seinen Ausdruck zu transportieren und das Publikum so auf seine Seite zu ziehen. Und auch was seine Intensität im Ring anbelangt, kriegt man von El Generico weit mehr als sein vergleichsweise schmächtig wirkender Körper verheißt. Der Mann gibt einfach alles und das finde ich großartig! Profitiert im Moment natürlich auch von der bärenstarken Fehde mit Steen. Ändert aber nichts an ..... 10 Punkten! Ich bin ein Generico Mark!"
Rating: 10.0
Sentiment: -0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: umaga the samoan bulldozerwrote on 21.08.2010:[10.0] "Kenne ihn nicht so gut, weil ich nicht weiß, wo man ROH schauen kann, aber wenn man sich Videos ansieht erkennt man sein Talent..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Crown Jewelwrote on 13.08.2010:[9.0] "Kann mich sowohl in Tag Team als auch in Singlesmatches voll überzeugen, da er technisch wirklich sehr stark ist. Obwohl er auf den ersten Blick eher unscheinbar aussieht und eher selten zum Mic greift, hat er eine gewisse Ausstrahlung. Nicht umsonst ist er bisher eigentlich immer und überall over gewesen, wenn ich ihn gesehen habe. Seine Aktuelle Fehde mit Stenn ist für mich die beste bei ROH seit langem."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: catchfanwrote on 14.04.2010:[7.0] "Schaut nach nix aus, kann aber die Fans voll begeistern. Irgendwie ganz witzig."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Aquifelwrote on 14.04.2010:[10.0] "Egal ob zusammen mit Steen oder auch alleine, El Generico enttäuscht eigentlich nie und hat eigentlich immer gute Matches, oft sogar sehr gute oder erstklassige. Verdient er 10 Punkte? Vielleicht nicht, aber ich habe einfach immer gute Laune wenn ich ihn sehe, werde immer unterhalten und er gehört zu den Workern, die mich bisher nie enttäuschten und beständig ordentliche Matches abliefern. Daher 10 Punkte, gerade weil sein Gimmick darüberhinaus dermaßen deppert ist, dass man es einfach nur als Kult bezeichnen kann. So läuft Comedy mit ordentlichem Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: homicidal cena michaelswrote on 03.02.2010:[8.0] "Zeigt durchweg gute Matches und macht nicht zu viele Spots."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Hypocrisywrote on 24.01.2010:[7.0] "Hm... Liebe auf den ersten Blick war es nicht. Ich habe eine ganze Menge an Matches gebraucht, um festzustellen, wie gut der Kerl eigentlich ist. Ich bin mal gespannt, was er nach der Trennung von Kevin Steen jetzt auf die Reihe bringt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: MrSmackdownwrote on 30.11.2009:[9.0] "Ole! Großartig! Ich seh ich so gerne Live, einfach nur gut!"
Rating: 9.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: DJ MaSchwrote on 26.11.2009:[8.0] "Einer der besten Spotaffen der Welt im Ring wirklich gut und weiss auch sein Gimmick ein und umzusetzten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: kingbogwrote on 24.11.2009:[9.0] "sehr unterhaltsamer wrestler, der trotz seiner so oft bemängelten statur unglaublich schöne matches abliefert. auch das gimmick ist totaler kult. alleine schon seine promo bei pwg threemendous II ist gold wert."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Ryklon Stephenswrote on 07.09.2009:[7.0] "Er zeigt ständig gute bis sehr gute Leistungen und weiß es sein Gimmick ans Crowd weiterzugeben. Allerdings sehe ich in ihm keinen 10 Punkte Kandidat. Noch nicht. Wer weiß was die Zeit mit sich bringt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Psycho Shooterwrote on 04.07.2009:[9.0] "Fantastischer Wrestler, egal ob im Tag Team mit Kevin Steen oder als Singles Wrestler. Einer der wenigen Independent Wrestler die mich im Ring IMMER unterhalten bei jedem seiner Matches."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Eddiewrote on 03.06.2009:[8.0] "Der "Mexicaner" macht mir unglaublich spaß und ist total genial im Team mit Steen. Alleine doch noch etwas schlechter als im Team, 8 Punkte, da er live übelst genial anzusehen ist."
Rating: 8.0
Sentiment: 0.06818181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: STRIGGAwrote on 23.12.2008:[8.0] "Was ich von Generico gesehen habe, war ausnahmslos gut und verdammt unterhaltsam."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Blazewrote on 18.12.2008:[8.0] "Hat sich trotz seiner Statur richtig gut gemacht. Ob er es irgednwann im Main Stream auch schaffen kann, ist eine andere Frage, aber bei PWG und ROH ist er gut dabei und durfte ja auch schon das ein oder andere Mal im World Title Match stehen. Im Tag Team mit Steen gefällt er mir gut, obwohl ich ihn als klar besseren sehe. Technik + Beweglichkeit sind noch ein weiterer wichtiger Punkt. Im Tag Team Bereich wird er sicher über die nächsten Jahre ober nmitspielen und vielleicht als Single Wrestler mal für Furore sorgen."
Rating: 8.0
Sentiment: 0.047619047619047616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Instant Classicwrote on 28.11.2008:[8.0] "Guter Wrestler mit hohem Unterhaltungs-Faktor, den sein Körperbau von mehr abhält."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Robert Taylorwrote on 12.11.2008:[8.0] "Hat schon im Alter von 24 Jahren im Indy-Bereich ein Kult Gimmick in meinen Augen! Er ist ein klasse Wrestler, der sehr konstante und gute Leistungen liefert und zudem auch sein Gimmick super rüberbringt. Noch ist ein wenig Luft nach oben, daher noch 8 Punkte aber mit steigender Tendenz."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Mick Funkwrote on 25.09.2008:[8.0] "Klasse Wrestler, den ich immer wieder sehr unterhaltsam finde. Nimmt auch immer wieder krasse Bumps. Wird wohl leider nicht den ganz großen Durchbruch schaffen, da man von seinem Körperbau im Mainstream wahrscheinlich wenig begeistert sein wird. Bei RoH trotzdem super."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: TNA Dan Timewrote on 23.09.2008:[10.0] "Göttlich El Generico. Finde er ist im Moment einer der besten Wrestler der Welt~!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: El Rapidezwrote on 14.08.2008:"Ich bin einfach ein riesen Fan von ihm, seine Matches, Technik, Moves, sein Gimmick / seine Art, begeistern mich einfach immer wieder aufs Neue. Mein absoluter Lieblingswrestler. So einen kann jede Promotion gebrauchen!"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Moonbloodwrote on 03.08.2008:[9.0] "Es ist schon fast gruselig, wie gut und unterhaltsam der Kerl ist. Mit Generico kann wirklich keine Promotion etwas falsch machen."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Matt Hardywrote on 20.07.2008:[10.0] "Genialer Wrestler. Das Gimmick ist cool, und garantiert immer hervorragende Stimmung. Genauso ist Generico ein Garant für unterhaltsame Matches. Sein einziges Manko ist anfangs vllt der etwas unscheinbare Körperbau, was aber auf der anderen Seite dazu beiträgt, dass er in großartiger Underdog ist."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rob the bobwrote on 11.07.2008:[9.0] "Ich liebe diesen Mann. Endgeiles Gimmick und so ne art Bump-Maschiene. Was der Mann schon eingesteckt hat traut man ihm gar net so zu. Stiff und einfach ein sehr guter worker. Im TT mit Steen bei Roh auch sehr gut aufgehoben."
Rating: 9.0
Sentiment: -0.10714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Rob Van Duesenschrauberwrote on 10.06.2008:[9.0] "Generico macht einfach Spaß. Sowohl live, als auch auf Tape."
Rating: 9.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Baron-Bwrote on 14.05.2008:[9.0] "Oh, was hat es mich zu Beginn gekräuselt, als ich das Streichholz mit der lustigen Maske die ersten Male im Ring sah. Es war auch mit Sicherheit keine Liebe auf den zweiten bis fünften Blick, doch irgendwann wollte ich dann doch noch einmal einen Blick auf Kevin Steen werfen und so war ich eben gezwungen, den lustigen Hampelmann ebenfalls zu betrachten. Und was soll ich sagen ... ? Es machte "Klick" und ich begann zu begreifen, was der Gute da so im Ring treibt und es begann mir zu gefallen. Dann kam die unendlich geile Fehde gegen die betenden Südstaatler-Twins und irgendwann kam zu deim einen "Klick" ein zweiter und gar ein dritter hinzu. Mittlerweile mag ich sein Gimmik sehr und auch die Leistungen im Ring sind schlicht vom Allerfeinsten. Ja El, es hat gedauert, aber was lange währt, wird dann doch unendlich gut ... !"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: jimpanse1980wrote on 10.04.2008:[8.0] "Hat sich in letzter Zeit vom reinen comedy-Wrestler zum ernsthaften Gegner entwickelt. Nur sein Overacting mag ich teils immer noch nicht, es sein denn im Spiel mit den Fans. Technisch gibts rein gar nichts zu meckern. Ich bin gespannt wohin sein Weg, insbesondere bei ROH, noch führen wird."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: LexLuger4everwrote on 26.03.2008:[8.0] "Beim diesjährigen 16 Carat Gold Tournament hat Generico u. a. mal wieder bewiesen, dass er im Ring einfach zur Creme de la Creme gehört... brainbustaaaaa!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Kaffoe 666wrote on 24.03.2008:[10.0] "Geniale Offensive, noch geilers Selling inklusive passendem Kill-me-Gimmick. Kann mit größeren, kleineren, schwereren etc. Gegnern, egal ob Single oder Multiman Matches. Rockt!"
Rating: 10.0
Sentiment: -0.08928571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: ZuluBunsenwrote on 21.03.2008:[8.0] "Sehr guter Wrestler und in Zukunft zu wohl noch höherem bestimmt. Auf jeden Fall sehr unterhaltsam im TagTeam mit Steen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Baszdmegwrote on 12.03.2008:[10.0] "Genialer Highflyer, guter Techniker und einer der wahrscheinlich unterbewertetsten Hard Hitter aller Zeiten. Er bringt eine ganz eigene Dynamik ins Match und weiß seine vielen Fähigkeiten perfekt zu verknüpfen; leider ist sein totales Over-Selling manchmal ein richtiger Stimmungsdämpfer. Ansonsten aber top!"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Aaronwrote on 12.03.2008:[8.0] "Ein toller Worker mit innovativem In Ring Style! Konnte mich bisher immer überzeugen! Einziger Kritik sind seine zu gimmicklastigen Bumps! Deshalb nur die 2 aber mit einem dicken Plus! Ist zusätzlich noch sehr jung und kann es weit bringen!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Joeevil123wrote on 19.02.2008:[10.0] "Ole Ole Ole!  Super im Ring und ein klasse Party Flair. Für mich der überflieger der letzten Jahre."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Blue Meaniewrote on 30.01.2008:[10.0] "Einer der besten Highflyer der Independent Szene derzeit!  Olé! ~"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: AnFuwrote on 26.01.2008:[6.0] "Ja, was soll ich zu ihm sagen... Im Ring stark, aber auch oft glanzlos. Seine Statur wird ihn zudem nie über einen Midcarder hinausbringen."
Rating: 6.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: GothicBearwrote on 17.01.2008:[10.0] "Starker Wrestler, starkes Charisma, kann von Comedy-Matches bis zu stiffen Sachen alles mitgehen. Leider ein wenig ZU schmal, und manchmal kommt er mir einfach ein wenig zu überdreht rüber. Das ist aber für mich kein Grund abzuwerten. Deshalb klar die 1!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: D-Stylewrote on 17.01.2008:[8.0] "Brainbustaaah! Aber darauf reduzier ich ihn nicht; Generico kann für seine Statur mega einstecken und austeilen. Sehr guter Mann, der es mit dem Gimmick zwar nie on top schaffen wird, dennoch kann ich nur die 2 geben, da er mich bestens unterhält"
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: The Showstopperwrote on 12.01.2008:[8.0] "Reichts, wenn ich iOlé! schreibe? Sein Selling ist genial, und er versteht es, auch ohne Mic-Work allein mit seiner Gestik zu unterhalten. Mit dem Gimmick gehört er natürlich zu den Exoten der Szene, nichtsdestotrotz ist Generico inzwischen fast überall ein gern gesehener und etablierter Charakter."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: shannonmoorewrote on 25.12.2007:[6.0] "Cooler Wrestler der aber nie über Midcard hinaus kommen wird."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: aulitwrote on 08.11.2007:[8.0] "Ein Kanadier der einen durchschnittlichen mexikanischen Luchador in Amerika spielt. Schon alleine die Konstellation ist ein Grund zum Schmunzeln. Ansonsten ein Top-Athlet der sowohl im Team mit Kevin Steen als auch Solo überzeugt. Olé!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: caterwrote on 08.09.2007:[8.0] "Olé. Bietet gute Unterhaltung inner- und außerhalb des Rings. Kann man nicht meckern."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1523&gimmick=Sami+Zayn
Comment: Sabu316wrote on 24.06.2007:[8.0] "Hat sich immer mehr gesteigert und bietet mittlerweile wirklich immer wieder unterhaltsame Matches und der Entrance ist natürlich eine Klasse für sich."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Nolan Greenwrote on 07.02.2025:[10.0] "The man that put ROH on the map. His massive size and submission holds made him a must see everywhere we went. Even if WWE failed him, he still was a force to be reckoned with in AEW. Glad he's back and I want to see him back in the main event scene once the Christian feud is over."
Rating: 10.0
Sentiment: 0.023809523809523808
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: wrestlingswiftiewrote on 30.01.2025:[9.0] "Samoa Joe has a believable aura about him that just screams 'legit tough guy.' He's also a savage on the mic, and has a wrestling style that can mesh with anyone's."
Rating: 9.0
Sentiment: 0.05555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TripleCrownwrote on 24.12.2024:[9.0] "Without a doubt the second best wrestler of that indie generation (Danielson being the first.) Samoa Joe is just a star. Doesn't matter if it's in ROH, TNA, WWE or AEW, he's a star. I didn't watch too much of his ROH run, but I first really began to notice him during TNA. He was just an absolute badass, with fitting entrance music to along with it. His TNA run was going really well, until Kurt Angle came in. I think they saw him as the shiny new toy, and an incredible wrestler who had just been a top star in WWE, so they decided to put Joe away and play with Angle instead. After that, I don't think he really recovered. Whilst he was still a star and had fantastic matches, I don't think he was ever positioned as the absolute top guy ever again, which is a damn shame. Was really happy to see him go to WWE, but I feel like that entire run was just a huge waste of Samoa Joe and his talents. Obviously his NXT run was pretty good, but NXT back then was just indie wrestling under the WWE umbrella so it would take a monumental amount of effort to ruin his run there during that time. Really anticipated his main event roster run, but it just didn't really play out like I had imagined it would. He did do some memorable stuff, but Vince & co. just didn't really know how to bring the absolute best out of him. It's insane to me that he never won a world title there, he was just a star waiting to be given a world title run that never materialized. He had everything it takes to be a huge player in WWE, the only thing I felt that held him back was his age. But even then, he wasn't even remotely considered an old wrestler by any means. Especially when you had the likes of Goldberg getting world title runs there. Haven't kept up too much with his AEW stuff, but from what I've seen it's basically just Samoa Joe. Which is fantastic. I couldn't rate him as a 10 simply because I leave that for the absolute best of the best to ever do it. But for me, Samoa Joe is as close as you can possibly be to a 10. I'd rate him a 9.9 if I could. Sidenote: loved his matches against Kobashi & Misawa in NOAH. He complemented that style really well and I wish we had seen more of him over there during that time."
Rating: 9.0
Sentiment: 0.273060606060606
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ItsAllAWorkAnywaywrote on 11.12.2024:[9.0] "The hype around Samoa Joe was real when he was first starting out - With wrestling journalists fawning over this size and athleticism (even if he had a little baby-fat at the time because he was a young guy lol.) Yet on a long enough timeline, he found himself as a solidified and proven national league main eventer (and major league midcard champion.) It would've been nice to see him main event in WWE (or even New Japan), but if AEW can regain some of its former momentum, it would ultimately bode well for Joe's legacy, too."
Rating: 9.0
Sentiment: 0.14964646464646464
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: AceHagannwrote on 26.11.2024:[8.0] "Joe's presence is something else. He always looks like he's about to off his opponent. And he sure wrestles like it. While his work in WWE's main roster was disappointing, TNA, NXT, and to some extent AEW and even ROH, is where he looked his best. Proving that was more of an exception to a rule of how great his skills are. His moveset is brutal and effective, fitting like a glove to his persona."
Rating: 8.0
Sentiment: 0.287962962962963
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: XNoWayKemoSabeXwrote on 25.11.2024:[8.0] ""Joe's gonna kill you! " Watching this dude's TNA run was something magical. His feud with Kurt Angle was immaculate, and his mic work is absolute savagery."
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TreyHalowrote on 17.10.2024:[10.0] "One of the coolest professional wrestlers of all time man and he has the match catalog, the accolades, and the acclaim to back it up, one of the best ever and if someone told me Joe was their GOAT, I wouldn't bat an eye, that's how great the guy is..."
Rating: 10.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: NoaHS106wrote on 16.10.2024:[9.0] "Großartiger Look wie ich finde, er wirkt wie ein richtiger Zerstörer. Auch im Ring kann er für seine Statur doch sehr viel. Am Mikrofon weiß er auch zu überzeugen. Jedoch sehe ich ihn nicht als den World Champion."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TallNick2wrote on 21.09.2024:[10.0] "He's just incredible, having good matches with a variety of people from cruiserweights to heavyweights. While not in his 2000s prime anymore he's still able to go in the ring and on the mic. A true all rounder and a good heel"
Rating: 10.0
Sentiment: 0.6300000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: jsbortswrote on 19.09.2024:[10.0] "Has some of my favorite matches of all time, some all time classics in several different companies, some all time promos, and is just generally one of those guys who has an incredibly high floor in terms of what he can do. But boy can this guy GO in the ring, and he has been able to for 20+ years. There's really no weakness in this dudes entire presentation. I love Samoa Joe."
Rating: 10.0
Sentiment: 0.17888888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: CrayJeVwrote on 08.09.2024:[9.0] "All round an incredible wrestler. Does everything to a high level and their isn't really anything he cannot do. A great promo, absolutely outstanding in-ring, hard to find any true criticisms of him. He has had some of the greatest matches in TNA history as well as some incredible matches in both WWE and now AEW. Always an incredible heel, however maybe could be a better face but if you're a booker you are never going to having Samoa Joe as a white hot baby face. He is a destroyer and is one of the best destroyers in recent wrestling history."
Rating: 9.0
Sentiment: 0.4355208333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: maven loverwrote on 07.09.2024:[10.0] "Probably one of the best wrestlers in contemporary culture, ever. Carries himself with swiftness that defies logic for a man his size, a diverse moveset, treacherous on mic, great theme music, & the general sense that when Joe arrives, whomever has the misfortune of being in his crosshairs is probably going to get fucked up. His "Nope! " walking out of the way move is a fantastic use of comedy that doesn't make him look ridiculous at all, his finishers always look crisp and devastating, & I can't really remember an even "relatively good" Samoa Joe match; they are all excellent."
Rating: 10.0
Sentiment: 0.20694444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: BULLETCLUB4EVERwrote on 28.08.2024:[10.0] "The King of Television is one of the best wrestlers of the twentieth century. A true pillar of wrestling, legendary in TNA, but also won in ROH, NXT and AEW where he was world champion. He's a tough ass kicker, his rivalry with CM Punk is legendary and his rivalry with AJ Styles is very good. Good skills on the microphone and in the ring he is a pleasure to watch. The match with Kenta Kobashi is perfection and the one against Daniels and Styles is sublime. It often doesn't get the credit it deserves."
Rating: 10.0
Sentiment: 0.653015873015873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: OctagonEnjoyerwrote on 19.08.2024:[10.0] "One of my GOATs. Samoa Joe is important in the modern wrestling landscape for the same reasons Danielson, Styles, and Punk are. He helped showcase indie wrestling and changed how mainstream wrestling companies perceive it. But also he helped bring 90s Japanese-influenced wrestling over the states and popularized it in ROH. You can see it in his moves like the island driver, kicks, Tenryu-like jabs, and powerbomb, with hints of Kawada. Even his ROH champion run showcased a little bit, as while yes there were long world title reigns before, after, and during Joe's, his title reign was more kin to that of AJPW and NOAH runs where we see the power/status of the different variety of styles and challengers build up over time, and saving big moves to win the bigger matches, making the opponent and belt seem more important while also building Joe's legacy more. This is in comparison to say 80s/NWA title reigns where they fight the same opponents over and over again across territories with similar finishes and sometimes just lie about the belt status (dropping it to the local hero and then winning it back the next day, still being counted as 1 full reign). Also unlike modern wrestlers now who take from Kings Road/"Strong Style" (they just no sell and call it fighting spirit or copy from dudes like Misawa or Kobashi), JOE IS JOE, he takes influence, but he still does his shit his way as well as some original stuff. But other than ROH or his AEW run since 2023, no company has used Joe right. His TNA run did have some good things in it like the obvious Styles/Daniels X-Division stuff and he DID at least become a world champion there. Still, Joe was never the main character he shouldve been in the company, always having to play second and forced on the level of guys like Nash, Sting, or Golden Goose Kurt Angle. Also they never even gave him a sniff at the world title again, despite being one of the best wrestlers in company history and having the potential of dominance like Brock Lesnar or Goldberg shouldve probably been given. Then his WWE run started alright with his NXT stuff but then became shit because of WWEs bullshit injury system that has been called out by guys like Punk and Bryan allowing Joe to get the dumb injury-prone label slapped on him, and him being in 2017-2019 WWE where ONLY ROMAN REIGNS CAN BE WORLD CHAMPION, YOU GOT THAT? -Vince McMahon probably. But then 2022-2024 AEW happened and it reminded me and everyone that Samoa Joe if used right is awesome, mind you its not been perfect, but Tony Khan should get at least a silver medal for being smart enough to think of putting a world title on this guy after years. Joes run was a breath of fresh air after the MJF debacle run and gave us a great match in HOOK. Overall, Samoa Joe is one of the top 10 GOATs."
Rating: 10.0
Sentiment: 0.1974125364431487
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Willie 19200wrote on 24.07.2024:[10.0] "Joe is a guy that proved you didn't have to be a ripped bodybuilder to be an amazing superstar and athlete. Joe is so awesome in the ring and an awesome entertainment. His ROH and TNA run was some of my favorite wrestling to re-watch. His NXT and WWE stuff was good as well, but they never did put the world championship on it. His AEW career has been great, his world title reign is criminally underrated. Overall deserves to be recognized as one of the greatest of his generation."
Rating: 10.0
Sentiment: 0.5777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: woolyshamblerwrote on 21.07.2024:[10.0] "HOW is this king not in the top fifty? joe's consistency and longevity are unbelievable, and he manages to excel even when his booking is against him (late in his TNA run). he's been a boon to every card he's been on for the past 20+ years"
Rating: 10.0
Sentiment: -0.075
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Zak22wrote on 11.06.2024:[8.0] "Whilst as Joe has gotten older he has dropped off, from about 2003-2008, Joe was one of the best wrestlers going. Joe could strike, he could grapple and he could fly. Great talent in his prime."
Rating: 8.0
Sentiment: 0.6916666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Rassle Fanwrote on 09.05.2024:[10.0] "From Ring of Honor to AEW he's consistently been one of the best wrestlers and promos. It's hard to believe it's been almost 25 years since he got started but he's still as great as he was in 2005."
Rating: 10.0
Sentiment: 0.4395833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MarkMcMarkington2wrote on 02.05.2024:[10.0] "Joe has been poorly booked for the majority of his career, but it doesnt affect how amazing this guy is. Great in the ring and on the mic. Him and Styles should have been the faces of TNA, but Hogan and Bischoff didnt allow that unfortunately."
Rating: 10.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: sobawrote on 30.04.2024:[10.0] "You could watch a match of Joe's from 2004, 2008, 2015, or 2023 and you can see why he's one of the best ever. From his historic ROH run, his great work in TNA, his great menacing run in NXT, his underrated time on the main roster of WWE, and once again being the best wrestler on tv in AEW. While it may sound ridiculous knowing how loved and respected he is, I do believe he still is somehow underrated. One of the best in this sport of pro wrestling. (also he should've beaten Brock in 2017)"
Rating: 10.0
Sentiment: 0.4121212121212121
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Cosmowrote on 23.04.2024:[10.0] "One of the greatest to ever do it greatest ever ROH champion no dispute Joe is a monster like Brock Lesnar but better cause Joe is brown and isnt an alleged sex offender"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: AmirTheEnforcerwrote on 16.04.2024:[10.0] "Behold the beast that is Samoa Joe, you name it he's been there and done that. I think he's not had a bad run in any promotion that he has been to so far (except maybe for his main roster run) and in his mid 40s he's still burning the candle at both ends and giving us bangers from left to right."
Rating: 10.0
Sentiment: -0.02460317460317459
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Bloodshot03wrote on 31.01.2024:[10.0] "This guy is one of the all time greats! Samoa Joe first caught my attention in TNA wrestling around 2007. His rivalry with Kurt Angle was legendary, and I really loved the Main Event Mafia angle with Joe as well. For his WWE career I enjoyed his NXT work more than anything, but one particular main roster match I love is the GBOF match vs Brock Lesnar. He should have won the WWE title in my opinion. Recently he has held the ROH TV title and AEW championship. I cant wait to see how he does with the AEW championship."
Rating: 10.0
Sentiment: 0.39499999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MaximilianBernerwrote on 27.01.2024:[6.0] "Einer der absoluten Lieblinge der Indie Szene mit einer Vielzahl an absoluten Klassikern in seiner Vita, ich persönlich kann mich allerdings nur wenig für ihn begeistern oder mich mit ihm identifizieren, er stellt für mich vorallem optisch nicht den Profiathleten dar den ich mir als Fan wünsche, aber frei nach einem berühmten Zitat: "Was soll der Bruder machen, er ist nunmal Samoaner"."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: No Onewrote on 21.01.2024:[10.0] "One of the best in-ring performers in the world between 2002-2008. One of the main guys that built Independent Wrestling into a cult phenomenon. Rivalries with CM Punk, AJ Styles, & Christopher Daniels are legendary. Put on matches that will forever withstand the "Test of Time" against the likes of Kenta Kobashi, CM Punk, Bryan Danielson, AJ Styles, Christopher Daniels, Low-Ki, Necro Butcher, & Jay Briscoe. Had a memorable feud with Kurt Angle. One of the greatest ROH World Champions of all time. One of the first wrestlers to ever be called a "ROH Legend". First ever 3x NXT World Champion. Is an outstanding promo artist. Years of Injuries & bad booking in TNA greatly derailed his momentum. Never reached his full potential on WWE's Main Roster. Is not the level of in-ring performer that he was from 2002-2008. Coasting off of the aura of intimidation that he never lost to compensate for the battered shape that his body is in from all the years of injuries, which is why his quality of matches are not what they used to be. UPDATED: He has been looking good so far in AEW. I am liking what I am seeing. I hope that he can stay healthy and continue to deliver quality. UPDATED x2: Samoa Joe has become to AEW what he was supposed to be to both TNA & WWE. He has become the Final Boss of AEW and looks very close to his 2002-2008 form. As an OG fan of his, I am very happy."
Rating: 10.0
Sentiment: 0.3891666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Chris777wrote on 09.01.2024:[10.0] "The true common denominator in every promotion he goes, you look at the legendary run in ROH-TNA, NXT, Smackdown and now in AEW, the historic feuds he had with CM Punk, Kurt Angle, and AJ Styles, infamous promos such as the AA meeting or scaffolds and wires, the all-timer matches he had with Kobashi and Necro Butcher, compelling and charismatic, technical and brutal, this is the man"
Rating: 10.0
Sentiment: 0.04750000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TheGreatMOKOLovewrote on 05.01.2024:"Not many other wrestlers have managed to maintain the sense of danger & charm Samoa Joe has. First ballot Observer Hall of Famer for sure."
Rating: No rating found
Sentiment: 0.09375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: hamstermatchwrote on 03.01.2024:[6.0] "Doesnt really know how to talk or bring a compelling story to the ring, at least not in the current year which Im basing my rating on. The last few months when he started dealing with MJF have been a slight improvement on what he did before though so I dont hate him. Curious to see where he will take his character now with the belt but I hope its a short transitional reign."
Rating: 6.0
Sentiment: -0.10666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: thedman0310wrote on 31.12.2023:[10.0] "One of the best to ever do it. His run of matches in 2005 is some of the best work in the history of the business. From Strong Style wars with Kenta Kobashi to X-Division spotfests with AJ Styles and even to brutal brawls with Necro Butcher, Joe can do it all. He's still going strong at the age of 44, and I predict him to continue kicking ass for a long time."
Rating: 10.0
Sentiment: 0.3236111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: LGL19wrote on 27.12.2023:[10.0] "Let's put it this way Joe is one of the greatest wrestlers I've ever fucking seen and I wish he was used better in WWE & TNA cause he is world championship material for whatever company he works for he is a draw heel or face."
Rating: 10.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: danzitorockwrote on 18.12.2023:[10.0] "Joe is a legend, amazing in every company he worked for, he's one of a kind. The guy is truly a rare specimen in US wrestling, really big and strong, with powerful and hard-hitting moves, but also extremely technical and incredibly athletic for his size too. His mere presence is intimidating and scary, he was born to be dominant, and does the job in a fantastic way. One of the best primes in wrestling history and an outstanding career."
Rating: 10.0
Sentiment: 0.31025641025641026
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Wrestling Foreverwrote on 17.12.2023:[10.0] "Bei ROH war Joe absolut Top und einer der Besten. Man denke nur an seine Matches gegen CM Punk. Homicide oder Jay Lethal um nur die zu nennen. Bei TNA dann auch viele Jahre stark tolle Fehden gegen AJ, Christopher Daniels und Kurt Angle um auch nur die zu nennen. Wurde später leider Opfer von vielen TNA Bullshit Booking und ist auch nicht mehr so schnell wie früher. Stark ist er immer noch und vielleicht bekommt er nun endlich wieder bessere Fehden. Edit 21. 08. 2016 Auch bei Joe hat sich viel geändert nun ist er wieder bei der WWE wo er schon zu WWF Zeiten ein Try-Out hatte und aktuell ist er bei NXT wo er auch überzeugt. Edit 20. 12. 2019 Vielleicht fragt man sich warum Joe aktuell nur Play-by-Play-Kommentator ist. Er hat einen gebrochenen Daumen der inzwischen verheilt sein müsste und man ist mit ihm als Kommentator sehr zufrieden. Edit: 15. 04. 2021 Joe Entlassung ist für mich ein Schock. Weil er ja bei WM noch als Kommentator dabei war. Das ist von allen aktuellen Entlassungen für mich der heftigste Schlag. Edit 17.01.2022 auch wenn Joe wieder zurückkam ist seine zweite Entlassung der nächste Schocker da auch William Regal entlassen wurde, wird Joe sicher nicht ein drittes Mal zurückkommen. Edit 17.12.2023, 2023 stellte Joe einen neuen ROH Rekord auf er brach Jay Lethal ROH World TV Championship Regentschaft und ist neuer Rekordhalter."
Rating: 10.0
Sentiment: 0.033333333333333326
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: JediSaiyanMaster1203wrote on 22.11.2023:[10.0] "Back in the years of 2004/2005, Samoa Joe was the main subject of discussion in professional wrestling, and there's a very good reason. Samoa Joe is easily one of the best talents in general in the 21st century, a man with amazing in ring skills, psychology and charisma. He mostly thrived in ROH and TNA during it's prime years, having amazing matches and feuds with the likes of CM Punk, AJ Styles, Christopher Daniels, Kurt Angle, Kenta Kobashi, etc., feuds and matches still talked about to this very day. His run in NXT was also great, having a great run as NXT Champion, being booked dominantly and always having stellar matches. His main roster run had it's moments, but mostly booked poorly. Currently, his AEW run has been fairly good with some highlights here and there, it's nice to see Samoa Joe is still able to go after all these years. Overall, Samoa Joe is a total badass, has an aura to him that you can believe can mess anyone up when put in the ring with, this man had the whole wrestling world in his hands at one point for a reason."
Rating: 10.0
Sentiment: 0.3359615384615384
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: skillgullwrote on 17.11.2023:[10.0] "Samoa Joe's a guy who when you walk down the street and you see him, anyone and their grandmother would thing "damn, he's cool". Even though I only started seeing him well after his top run in TNA, ROH and NXT, I still think he's great."
Rating: 10.0
Sentiment: 0.29888888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: coppercowrieswrote on 22.10.2023:[10.0] "Every time this man touches a microphone the calm cadence and intelligence with which he talks he sounds like the hardest, baddest man alive. Like he could smoke an opponent just as easily as he smokes a cigar. He might not be as versatile in the ring anymore as he ages, and that's perfectly normal, but he can still turn in great matches and really get the crowd on board."
Rating: 10.0
Sentiment: 0.33055555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: SoaKaswrote on 14.09.2023:[9.0] "See, I loved Joe back when he was still capable of delivering those high quality matches. He is still great on the mic, has charisma written all over him but he is not that 10/10 performer that he once was. When his career is over, he will for sure be a 9 or 10 out of 10 but in his current state, I can't rate him more than that even if he still has everything that made him a top tier performer. Time just catches up with every performer sadly but he'll go down as a legend. EDIT: I like what he is doing with the ROH TV title and all of the stuff with MJF. Well deserved bump in his rating."
Rating: 9.0
Sentiment: 0.24585858585858586
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: devourblastwrote on 08.09.2023:[10.0] "The only man intelligent enough to walk out of the way of an incoming aerial maneuver. In all seriousness this man is a monster. He's had an incredible work rate for decades, a ruthless and believably painful moveset, and an unmistakable aura that demands attention. Whenever the crowd cheers "Joe is gonna kill you", you believe it."
Rating: 10.0
Sentiment: 3.700743415417188e-17
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Ricky Steambrowrote on 03.09.2023:[10.0] "this dude is the fucking goat. a true student of the game. his ability to work against any opponent and somehow have good chemistry with all of them is nearly unmatched. Joe's run in the 2000s is insanely great, and his work since then has still been brilliant because he has always had fantastic psychology."
Rating: 10.0
Sentiment: 0.28125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: benny5bellyswrote on 29.08.2023:[10.0] "Samoa Joe has carried an aura nearing on 20 years now and although he can't go like he used to, you know you are still going to get a hell of a match when he is asked to deliver. Some of his best work was in TNA back in the day and is always worth going back to watch."
Rating: 10.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: s0mbr1tvwrote on 18.07.2023:"Joe is a beast, he shows that he is a power bastard wherever he is, and with whomever they put him in front of"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: eltetechoriwrote on 12.07.2023:[10.0] "Samoa Joe is a great wrestler with a great career in this business. Undoubtedly, he must have a great valuation because he deserves it for all his journey in wrestling."
Rating: 10.0
Sentiment: 0.8000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: KTG1515wrote on 03.07.2023:[7.0] "Didn't grow up watching Joe in TNA or ROH, and my first exposure was his debut in NXT. He hasn't been interesting since his main roster debut, and his return to ROH and work in AEW have been sub-par."
Rating: 7.0
Sentiment: 0.3055555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: crs285wrote on 18.06.2023:[9.0] "Joe was a beast in TNA. His promos were great, and he might have been right there with AJ as the best wrestler in the company. The crowd loved Joe and he could do anything management needed to do. WWE was not his best stop but proved he could do commentary well and had several good matches in that time. AEW has been a nice place for him although age and injuries have slowed him down quite a bit"
Rating: 9.0
Sentiment: 0.547795414462081
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Giantfan1980wrote on 31.05.2023:[7.0] "Internet darling of the early 2000's. When TNA first kicked off, this was probably the top guy everybody lauded. Well, him and AJ Styles anyway. Their matches were the toast of the internet town in the early 2000's. Just a shame he took so long getting to the WWE. When he finally got there, they misused him like a dozen other guys who made it big elsewhere then were made into jokes."
Rating: 7.0
Sentiment: 0.09687499999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Leth99wrote on 17.05.2023:[7.0] "I don't really remember a good promo by him. In the ring he was great on a good day. His WWE run was cursed beyond comprehention. His AEW run is not that good, but he can still go"
Rating: 7.0
Sentiment: 0.6199999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: benh2wrote on 28.04.2023:[8.0] "Joe just keeps going. Even his ROH run alone was tremendous then he went to NXT and hit it out of the park there as well. He was a bit hit and miss on the main roster but he's now doing some good heel work in AEW. A brilliant worker who looks believable in everything he does while still adhering to the fundamentals of wrestling."
Rating: 8.0
Sentiment: 0.52
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: mintaquewrote on 22.04.2023:[10.0] "Samoa Joe hat mit zunehmenden Alter leider etwas abgebaut, sicherlich auch auf Grund einer Vielzahl von Verletzungen. Früher gehörte er zur absoluten Weltklassen. Die absoluten Spitzenmatches wird man von ihm nicht mehr bekommen, aber er hat immer noch eine enorme Ausstrahlung und ist ein absolut stabiler Wrestler mit Ausreißern nach oben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: KKeanelwrote on 26.02.2023:[9.0] "Few years back I wasn't a fan of him, but after analyzing highlights of his career (classic match with Kobashi, solid ROH and TNA run, NXT's one of the most influential guy), I admire his work."
Rating: 9.0
Sentiment: 0.09333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: kewf1988wrote on 26.02.2023:[9.0] "Samoa Joe is an amazing powerhouse wrestler, despite not having "the look". In his TNA run, he felt like TNA's Vader, only with mic skills, and the same with his NXT run. Very rarely do you have power wrestlers able to carry feuds, and Joe was one of them, and his style was convincing enough to where his look did not matter, similar to Vader and Umaga."
Rating: 9.0
Sentiment: 0.24875000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Thomerikwrote on 03.02.2023:"He can Wrestle with powerhouse style, he can fly, this guy have one of the best capacity to made great matches, and great rivaliries with anyone, one of the greatest of ALL time in ROH, NXT, and top 3 TNA wrestlers easily, If not the GOAT of promotion."
Rating: No rating found
Sentiment: 0.6690476190476191
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Kyle135wrote on 01.02.2023:[10.0] "Bona fide stud and one of the realest feeling acts in all of wrestling. Still going strong after over 20 years."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Daigotsuwrote on 15.01.2023:[9.0] "Joe was an absolute stud as a worker and a bona fide monster during his prime. His work in TNA stands against almost anybody's work in any other promotion. His intensity and stiffness in the ring made his matches a must-see during his prime. In AEW, he's been a little more uneven, but sometimes you see glimpses of the old Joe and it's great."
Rating: 9.0
Sentiment: 0.15535714285714283
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: nothingleftinsidewrote on 05.01.2023:[9.0] "Probably the greatest of the indie era; which is to say any league besides WWE from 2001-2019. His record holding ROH title run pretty much cements this, as it was the definitning run for the company. A believable, exceedingly dominant performer. Perhaps the key in-ring performer for bringing MMA style work into American pro wrestling, something that needed to be done, for better or worse. Still one of the best practitioners of this style. Great feuds and matches with other serious fan favorites such as CM Punk, Jay Lethal, Kurt Angle, Bryan Danielson, and AJ Styles just to name a few. He elevates his opponents, and rarely has a bad match. Plus he's great on the mic. You never expect him to be as good as he is. He's like the quiet kid in class who's finally had enough and is gonna tell you how he really feels. The only negatives I can come up with are that he became injury prone in his later years and never had success on the grandest stage that is WWE. But that kinda makes sense, since Joe is the quintessential American indie wrestler- he's the standard you compare them all to. A worker, B- look, B+ talker."
Rating: 9.0
Sentiment: 0.16522988505747127
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TheNomadMagicianwrote on 01.12.2022:[9.0] "Kraft, Schnelligkeit, großes Moveset, Ausstrahlung und gute Promofähigkeiten. Ein ziemlich gutes Gesamtpaket!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Sick Lebowskiwrote on 02.11.2022:[10.0] "Ist, wie einer seiner Spitznamen schon sagt, eine richtige Maschine. Knallharte Powermoves, knallharte Submissions und eine Intensität, wie sie sonst nur der Lord Voldemort des Wrestlings Chris Benoit hatte. das Seine Three Ways gegen AJ Styles und Christopher Daniels sind Kämpfe, die man Leuten zeigen sollte, um sie für das Wrestling zu interessieren. Zählt zur Gruppe meiner Alltime-Faves. Zwei dicke Daumen nach oben."
Rating: 10.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TeamCanadaTwoPointOhwrote on 15.10.2022:[6.0] "I get that it's blasphemy to slag Joe, and I really don't even feel like I'm slagging him, but I think WWE had the right idea. He seems a lot slower in the ring and better as an announcer or character at this point. Still, he's one of wrestling's better actors and I love him, he's just not the 10/10 he once was."
Rating: 6.0
Sentiment: 0.39714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: KELLANwrote on 05.08.2022:[10.0] "Unfassbar starker Worker, der trotz seiner gewaltigen Masse sehr athletisch im Ring sein kann. AEW hat mit diesem Mann einen glaubwürdigen Main-Eventer, der sowohl als Face als auch als Heel funktioniert. Aufjedenfall jemand, den ich beim World Title sehen möchte. Potenzial: 2 - 3x AEW World Champion - 500 Days insgesamt. - Main Event"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Benwerderwrote on 01.08.2022:[9.0] "Joe ist einfach klasse! Einer der immer weiß wie man ein instensives Match macht und so gut wie nie enttäuscht. Vielleicht nicht mehr so wie früher aber immer noch sehr gut. Am Mic kann er als Heel, sowie als Face seine Rolle sehr gut verkörpern."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: BradJohnson34wrote on 26.07.2022:[5.0] "A lot of people tout Joe's combination of size and agility but I don't actually see the agility come into play all that much in his matches. He doesn't leave his feet often. The size is definitely there but not always accompanied by commensurate strength. Muscle-buster is a cool finisher but not a fan of the rest of his move-set and his character is often one-note."
Rating: 5.0
Sentiment: 0.1375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: KuczyPLwrote on 07.07.2022:[10.0] "One of the absolute GOATs and my favourite wrestler ever. Joe has the unique combination of size, speed and agility - not only that, he's got the aura of a guy you just don't want to provoke. He's been booked like a legitimitate threat over many years and hell, he even got to choke out Brock Lesnar. Unfortunately, the injuries kept him from holding major titles in WWE, but despite that, his feuds with the likes of AJ and Brock were special. And this is only stuff he did in the past couple of years - trilogy with CM Punk, rivalries with Styles and Daniels... Joe can just do anything. Also, how can I forget about his mic skills? This man once got one minute during a segment on SmackDown in 2019 (that was a build up to Elimination Chamber) and - with that little time - he roasted EVERYONE: Orton, Hardy, Ali, Bryan and AJ. Joe will always be my favourite guy in wrestling history and there is nothing that can change my opinion.Wishing him good and - most importantly - healthy run in AEW."
Rating: 10.0
Sentiment: 0.17362637362637362
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: PhenomenalGunwrote on 13.06.2022:[8.0] "He's wayyy past his prime but can still go in the ring to the point a company like AEW wants to push him front and center. Honestly I can see some dream matches with him and some of the bigger guys in AEW like Hager, Archer, Cage, Hobbs, etc. and on the other side others like Matthews, Omega, Jericho, Angelico, and Allin, among others, who would put on a great match with him out of a clashing of styles. I guess that's all Joe's there for now, which isn't necessarily a bad thing, if they can still get great matches out of him I'm not complaining, he doesn't need to be world champion or anything, an uppercard gatekeeper role might suit him. Now, if he regains that killer instinct character with the awesome mic work he had on the main roster he'd definitely be a main eventer."
Rating: 8.0
Sentiment: 0.21319444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: mjp28wrote on 06.06.2022:[7.0] "Samoa Joe is good (great move set, and makes things look real), but could have been so much better had he have gotten on top of his weight and thus health. Its obvious that his weight and thus health really held him back. Firstly, it made him a poor fit in an industry that (rightfully so) prioritises those with an athletic look (low and behold real world-class fighters in the real work don't carry that kind of weight), and secondly the unnecessary extra weight on his frame made him incredibly injury prone. This had massive implications for his marketability, longevity, and ultimately his push. It's a shame because in an alternative universe there is a Joe that took responsibility for his weight, dropped 60-odd pounds of fat, and became a multiple world title holder in WWE, AEW, and heck maybe even NJPW."
Rating: 7.0
Sentiment: 0.2113636363636364
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: texasyoshwrote on 30.05.2022:[9.0] "Samoa Joe is a legend of American professional wrestling, especially in regards to his early work in ROH and TNA. However, he might've also been the biggest wasted opportunity in TNA and eventually WWE. The total package, who had great work with the likes of Punk, Angle, Kobashi, Danielson, Daniels, AJ Styles, etc, etc etc."
Rating: 9.0
Sentiment: 0.1142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: zags7000wrote on 19.05.2022:[10.0] "A complete star. In the ring he's taken part of some of the best matches of the last 25 years and of all time. On the mic, he's pretty good and can cut an epic promo. Charismatic and uses his size well. He moves pretty quick for someone his size while keeping a powerhouse role and that create a great dynamic no matter who his opponent is. He can make his opponent look good and can sell a program very well. Not many weak spots if he has any. Just all around a great and complete star. The only downside is injuries in his WWE run hurt some of his time there, but he had great moments in a limited run while building legendary runs in Impact and ROH."
Rating: 10.0
Sentiment: 0.330328798185941
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Okaro143wrote on 12.04.2022:[9.0] "Joe is one of the best wrestlers in the world. His matches are really good. And for a big man, he can really move. He is also a great striker and very technically sound. His work in ROH was his best: He had one of the greatest Championship reigns in professional wrestling history as the ROH World Championship and at one time was voted the most outstanding wrestler. His run in TNA was pretty good in the early years where he was build like a monster being undefeated the first 18 months of his time at TNA before ultimately being cast aside alongside other TNA originals when Bischoff and Hogan took over; If Joe had been pushed like he should have been, maybe TNA wouldn't have needed all the restructuring. By the time he came to NXT and RAW, although he still had a very impressive gimmick and promo ability, his in ring ability had gone a bit down since his ROH days. His match with KENTA KOBASHI, CM PUNK 2 and the Triple Threat match at UNBREAKABLE 2005 is a must watch for any professional wrestling fan."
Rating: 9.0
Sentiment: 0.38517501017501016
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: GriffinXwrote on 08.02.2022:[10.0] "Joe set the bar for what an ROH champion should be. He also was a big part of some of TNA's best years."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Roodolphwrote on 15.01.2022:[10.0] "Joe is a complete wrestler. He can do everything well, and in the ring he is an animal. I love him and hope he comes back to wrestling."
Rating: 10.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: mjs2212wrote on 28.12.2021:[9.0] "Samoa Joe is a KILLER. Such an intimidating character and a legitimate striker all throughout his career. Almost always has great chemistry with anyone who he's in the ring with. His move set is great and I adore his muscle buster. His promos feel real and intimidating, sometimes coming off as grave and intense depending on the vibe he is trying to give off. His rivalries with Brock Lesnar and AJ Styles are some of my favorites, and speaking of AJ, who could forget the legendary triple threat at Unbreakable w/ Joe, AJ, and Daniels...So amazing! I wish I took a larger appreciation for Joe when I was younger because he really is a monster (in a positive way) in the ring. It's too bad he is prone to injuries a lot more nowadays, but he has historically been a valuable player in TNA and anywhere he goes. Blessed be the Power Game!"
Rating: 9.0
Sentiment: 0.23181818181818187
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ProWrestlingGuy316wrote on 01.12.2021:[10.0] "Ein Wrestler, der die längste Zeit bei TNA komplett verschwendet wurde. Joe war nur einmal World Champion, danach ging es steil bergab. Man hätte ihn 2010 entlassen können und es hätte keinen Unterschied gemacht. Es ist fast absurd, wie man so einen Wrestler derart verschwenden kann. Bei ROH war er ein absoluter Killer und perfekt eingesetzt. In der WWE ist er leider ziemlich verletzungsanfällig, weshalb ich es durchaus verstehen kann, dass man nicht zu sehr auf ihn setzt. Mit besserem Booking wäre er mindestens einer, wenn nicht der größte TNA- Wrestler überhaupt gewesen. Aber durch pure Inkompetenz ist er nicht das geworden, was Joe hätte werden müssen."
Rating: 10.0
Sentiment: -0.02857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Luchagang13wrote on 09.11.2021:[9.0] "One of the greats. One of the original Indy darlings. His TNA and ROH run was golden. WWE has done a great job of wasting a great talent and a monster heel. I hope one day he becomes a world champion in WWE but i doubt it. Great look, great in ring work. Very fast for his size. MMA style striker and submission specialist. Him and AJ used to put on straight bangers in TNA"
Rating: 9.0
Sentiment: 0.541875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: kfztkfzt2021wrote on 14.10.2021:[9.0] "Samoa joe is extremely talented, one of the best on the mic, impressive powerhouse and technical skills, perfect combination between wrestling styles, very vicious in the ring, he truly looks like a treath to most male wrestlers.His matches, mainly the big ones are usually great, of course he was way better before, and the only complaining i have about him is the poor care of his health, which lead to his damaged physic and match qualities today.Still amazing, i hope he takes better care of himself."
Rating: 9.0
Sentiment: 0.3354166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: medousewrote on 25.08.2021:[6.0] "For me, he is extremely overrated wrestler. Terrible physique and a very simple and boring attire. Looks more like a security or a mid-card jobber. He sure can talk, take big bumps and had some awesome matches in the past, especially in ROH."
Rating: 6.0
Sentiment: -0.0375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: BrayanLaPrewrote on 19.08.2021:[10.0] "One of the greatest wrestlers in the history of professional wrestling. One of the most important wrestlers in the history of professional wrestling. Samoa Joe was the face of Ring of Honor, and in turn, independent wrestling as it shaped the way that American companies styled their cards and in-ring performers honed their craft. Joe was also the epitome of what made the X-Division so special as it did exactly the same with more mainstream exposure. In the ring, the absolute complete package as a striker, submission artist, and aerial assailant while moving in ways that his build suggests he shouldn't be able to. On the mic, one of the most exhilarating characters in the industry. Hand him a microphone and magic will transpire. Countless classic matches with a wide variety of opponents. Even more incredible memories and moments. A five-star wrestler, 10 out of 10."
Rating: 10.0
Sentiment: 0.3260822510822512
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Suzukigunwrote on 23.06.2021:[10.0] "I rarely give out 10s, but I have to give one to Joe. He was a legend in ROH, where his epic title reign really put ROH on the map and turned the title into a true world title. He had some of the best matches in ROH history, including an all-time classic with Kobashi that many believe is the best match in ROH history. Then he went to TNA and became a legend there, with tons of great matches, including another all-time classic, this time against AJ Styles and Christopher Daniels, which is viewed as the best in that promotion's history. His NXT title run didn't have epic matches, but it was still quite memorable and he was a great presence there. His main roster run wasn't epic, but he did have some great promos, feuds and matches there too, including the unforgettable fatal fourway for the Universal Title at Summerslam a few years back. He's had a long list of great matches, great promos, has a great presence, great charisma, everything. He was the complete package and continued to be one even when he was past his prime. He's the consummate pro wrestler who deserves his props."
Rating: 10.0
Sentiment: 0.43448275862068975
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: AndoCommandowrote on 22.04.2021:"Would be an all-time great if it weren't for him slowing down significantly since late 2007. Still has plenty of great matches on his resume and deserves more eyes on his past work. EDIT: Had a fun style distinct from many of his peers given his influence from 90's UWFi and NJPW heavyweights. He's actually a great example of someone not trying to emulate King's Road or old school NWA like a certain "jobber" would have you believe."
Rating: No rating found
Sentiment: 0.30644078144078146
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: joshjackalwrote on 15.04.2021:[10.0] "At his peak, Joe was one of the best workers you will ever see in any era of wrestling. His feuds with CM Punk, AJ Styles, Christopher Daniels, and Kurt Angle are legendary. He was used poorly in his later TNA run and then in WWE, but that speaks poorly of TNA and WWE, not Joe."
Rating: 10.0
Sentiment: 0.24000000000000005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Shadow Explosionwrote on 26.01.2021:[10.0] "From 03-06 Samoa Joe was one of the best workers on the planet, and then he declined a bit when TNA didn't push him that much and waited till 2008 to give him the world title which at that point he slowed down a bit. And then his run in WWE has been.. just sad. He's not the same guy he used to be but he still carries that swagger, that's the one thing Joe still has in spades."
Rating: 10.0
Sentiment: 0.10888888888888885
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: plaguespreaderwrote on 29.11.2020:[9.0] "Can't believe I lived to see this dude demolish Brock Lesnar, even if their match was just decent. Good technician, better promo, incredible striker with a fluid moveset of submissions, power maneuvers, and strikes. Happy to see him in WWE even if he is past his prime. Minus one point because of that weird stair dropkick spot from TNA that shattered his future career ceiling. Was Unbreakable 2005 his peak? Possibly. Maybe his fight vs Necro Butcher. But it is a testament to his abilities that he continued to produce quality work to this day. Really sucks he's injury prone now."
Rating: 9.0
Sentiment: 0.15972222222222218
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Ma Stump Pullerwrote on 15.03.2020:[8.0] "If purely based off of his ROH work, he'd be much higher. However, Joe suffered a lot after his ROH run ended, while TNA did respect his work and placed him in the main event during his early years there, over the years he was given bad gimmick after bad gimmick, and became a mid carder to ex WWE talent. His fall was quick afterwards as he gained a good amount of weight and his moveset massively reduced. By the time he got to WWE he was a lot slower but could still go pretty well for a guy his size, but by then he was far past his prime. At this point, he's just another low mid card act and can't be relied on for main event matches or titles due to being massively injury prone. That being said, his promos are solid and he's knows how to work well, so he's still pretty good, but nowhere near his young years, which I would say at the time he was one of the best wrestlers, period. However his later years drag that legacy down, sadly"
Rating: 8.0
Sentiment: 0.06787131519274378
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: taabr2wrote on 31.08.2019:[10.0] "During his peak Samoa Joe was a specimen, a big guy who could wrestler the technical style and throw in some high flying moves with everything he did look as punishing as his stiff strikes. His in-ring peak was definitely the start of his career where he was a book as an unstoppable force of nature in ROH and TNA which worked amazingly well considering how he could wrestle so much styles. Nowadays he has clearly slowed down and although he still exudes the same intensity, he doesn't do as much. He was definitely someone WWE missed the ball on as they signed him after his peak. However before that he was definitely one of the top guys outside WWE in the 2000s"
Rating: 10.0
Sentiment: 0.09267724867724868
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: KyleEnjoysWrestlingwrote on 09.08.2019:[9.0] "Was one of the best in the world during his early TNA days. An amazing talent in pretty much every area of focus. He felt fresh & had super buzz about him due to his matches from ROH; specifically against Punk. TNA has made many bad business decisions during their time, but one of the worst has to be booking Joe to lose to Angle & to rush through that program the way they did. That was really the start of the TNA decline. Joe did have that terrible angle in TNA when he was running around with a machete. Since coming to WWE, he's gained a lot of weight and even though he still moves well & is still a killer on the mic, he's just not as badass as he was back in the early & mid 2000s."
Rating: 9.0
Sentiment: 0.047395833333333366
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Taker bestwrote on 07.07.2019:[10.0] "One of the best wrestlers. His work at ROH and TNA is incredible. By far great work at NXT, best on mic and best in wrestling! I love him very much"
Rating: 10.0
Sentiment: 0.695
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TylerWhitewrote on 02.06.2019:[10.0] "Für mich eines der besten Gesamtpakete der gesamten Wrestlinggeschichte und das wohl beste Powerhouse aller Zeiten und auch einer meiner absoluten Lieblingswrestler überhaupt. Ich glaube es gibt keinen Wrestler mit seiner Masse, der so viele unglaublich gute Matches hervorgebracht hat und jahrelang ein Meisterwerk nach dem anderen kreiiert hat. Mitte der 2000er war er einer der Topguys sowohl bei ROH als auch bei TNA und hat mit den besten Athleten überhaupt wie Danielson, Styles, Punk, Daniels, Low Ki, Kenta, Kobashi etc. gewrestlet und konnte mit jedem mithalten, egal wie spektakulär und schnell sein Style auch war. Was ihn so besonders gemacht hat war, dass er in jedem Match einfach Big Time Feeling aufkommen lassen konnte und das alleine schon durch seine Ausstrahlung. Joe muss nur im Ring stehen und es sagt schon so viel aus und du bist schon gefesselt. Ich kenne kaum einen Wrestler, der so viel Charisma hat und so viel Coolness ausstrahlt. Es gibt glaube ich auch keinen Wrestler, der mehr badass rüberkommt. Noch dazu ist er genial am Mic und kann hervorragende Promos halten. Noch dazu, woran dann viele scheitern, kann er seine Rolle perfekt rüberbringen und allein mit kleinen Gesten so viel erzählen. Auch gibt es kaum jemanden der eine so konstante Karriere hatte wie er. Bei ROH konnte er sich sehr früh als einer der Topguys etablieren und hielt den Titel in Rekordlänge, wo er unter anderem auch seine geniale Trilogie gegen Punk hatte. Mitte der 2000er setzte er sich auch bei TNA durch und war bei beiden Promotions einer der MVPs. Seine späte Phase bei TNA war zugegeben dann nicht mehr die stärkste, doch bei NXT konnte er dann wieder einen starken Run hinleden, der klar nicht mehr so gut war wie bei ROH, aber dennoch beachtlich ist. Im Main Roster bleibt der große Push leider bisher aus, weil Vince wohl auch wiedermal nicht sieht welches Talent er mit Joe hat, nämlich einen der besten Wrestler überhaupt."
Rating: 10.0
Sentiment: 0.05555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: JustAWrestlingFanwrote on 24.04.2019:[10.0] "By far one of my all time favorites. One of the best on the mic in the entirety of wrestling history. Loved the stuff he did back in ROH and TNA and despite not beign booked as strong in the WWE as i have been hoping for he has been given plenty of time to shine on the mic and has been part of many memorable moments. Also one of the more agile big men."
Rating: 10.0
Sentiment: 0.42333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Matt Mackswrote on 21.04.2019:[10.0] "The body of work that Samoa Joe has accumulated over the past twenty years includes a ton of impressive stuff: really awesome and memorable matches against Kobashi, Punk, Styles, Daniels, Angle, Danielson, and more. He has the ability to somehow stay fresh despite ridiculous mismanagement of his push in TNA and periods of creative-has-nothing-for-you in WWE. He is a believable bad ass character and after having seen and experienced so much in his career, he has a swagger and directness on the microphone that has become really entertaining and lacks the dreaded sense of being scripted like many of today's WWE promos. His ROH World title reign made that championship in the early 2000s and started a half-decade run of awesomeness for the promotion. Today Joe is one of the few WWE wrestlers I thoroughly enjoy watching in the ring, because his wrestling style is unique, tough and believable. I hope WWE will reward him with a stint at the very top for at least a few months to give him another career highlight and the distinction of being the only (? ) wrestler who has held the top titles for WWE, TNA and ROH -- at least for a time these three promotions were the undisputed top 3 in North America."
Rating: 10.0
Sentiment: 0.23664529914529914
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: AJStylopzwrote on 18.04.2019:[10.0] "I can't give anything less than a 10 to this man. This guy really is Pro Wrestling. Joe has had some of the most outstanding matches of ROH era and the best TNA matches for FUCKING sure! He is so great at everything, from facial expressions, to his insane agility for his size, his MMA-ish and jiujitsu ability, probably the best and most underrated promo guy in Pro Wrestling at the moment, he says everything with such fucking passion and agression and he makes you believe he is really gonna do it which is what Pro Wrestling should be all about. Also held one of the greatest title reigns in ROH and very underutilized in the E."
Rating: 10.0
Sentiment: 0.29739583333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: SED12345wrote on 15.04.2019:[9.0] "God bless Samoa Joe. One of the greatest promo guys in wrestling history, one of the great submission specialists in wrestling history, and one of the greats period. His match with Bryan Danielson in 2004 is absolutely stunning. His best opponents in my eyes include AJ Styles, Brock Lesnar, Necro Butcher, and as mentioned before, Bryan Danielson. God bless Samoa Joe. Night night."
Rating: 9.0
Sentiment: 0.825
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: zephyrwrote on 28.03.2019:[7.0] "Samoa Joe has put on many great matches but for the majority of his work I just feel like I'm missing something that makes people love him so much. I mean, he's a very good wrestler and shockingly agile for someone his size but I really can't see him being a 9 or 10."
Rating: 7.0
Sentiment: 0.3621875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Cibswrote on 29.01.2019:[10.0] "One of my favorites. I prefer to see Samoa Joe more like heel than babyface but in general he is great, I love his intensity in the ring and the agility he has for his weight; he's also a good talker and knows perfectly how to adapt to different types of opponents. It's a shame that he wasted so many years in TNA."
Rating: 10.0
Sentiment: 0.42777777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: KINGwrote on 09.11.2018:[8.0] "He's just amazing, fantastic to watch in the ring and fantastic to hear on the microphone, the only thing he lacked in his career was booking but that's not to blame on him, but I can understand the fact that towards the end of his TNA stint he was demotivated, I would be the same if I was put in a program with Crimson, his ROH and early TNA work deserves a 10 tho, he was the best monster in these years. In WWE they will never make him win the big one but he already had some great matches, he gave Reigns his best match (at least IMO) and he was simply terrifying during his feud with AJ Styles, a real badass."
Rating: 8.0
Sentiment: 0.2857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: RatingsMachinewrote on 22.09.2018:[9.0] "Samoa Joe has the look, the aura, he can talk, and he can still be a great worker. If TNA had kept with the booker who knew what he was doing when Joe was there, Joe could have been a major star long before he arrived in WWE."
Rating: 9.0
Sentiment: 0.2708333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: HereIsMigwrote on 05.08.2018:[7.0] "There is not too much to say about Joe that fans do not know. I just want to point out that Joe is, in the personal trait, a really cold person. I had the luck to interview him, and he was really mean towards me - us all. Is not the first time that happened, according to several people working in the business of information. You can not expect to be the face of a company if you do not treat media and fans properly."
Rating: 7.0
Sentiment: -0.06607142857142856
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Alex Maedawrote on 21.07.2018:[10.0] "Weltklasse-Performer, sehr starker Redner, noch besser im Ring. Jede Promotion, die Samoa Joe jemals unter Vertrag hatte, sollte wissen, was für ein Glücksgriff dieser Mann ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Doshin92wrote on 09.06.2018:[9.0] "Samoa Joe ist ein Wrestler der im Ring und am Mic immer Glaubhaft ist. Von seiner Zeit bei ROH über TNA und jetzt bei NXT war er immer sehr beeindruckend und überzeugend. Ein Big Man der jederzeit in der Lage ist ein Klasse Match abzuliefern. Hoffe die WWE wird auch im Main Roster seine Leistungen würdigen und dementsprechend einsetzen."
Rating: 9.0
Sentiment: 0.08333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: lew kazamawrote on 02.05.2018:[10.0] "Samoa Joe is one of the most genuinely terrifying heels in world wrestling, and by far the most intense and threatening promos in the WWE. His matches are often melting pots of strong style, submission battles and beat downs by the Samoan destroyer. If anybody could easily carry the weight of the Universal Title convincingly it is Samoa Joe. A truly consistent and unique talent that has earned his spot at the top the Smackdown card in 2018."
Rating: 10.0
Sentiment: 0.23263888888888892
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: LrockBesnarwrote on 18.04.2018:[10.0] "I don't know exactly what to write about Joe. He is a true legend i think. He's a guy who wrestled with great legends like Misawa, Kobashi, Liger. Especially the match that he did with Kobashi was very epic. He is a very careful and realistic wrestler in the ring both emotionally and technically. a perfect speaker. His sentences always logical and on some real points. I watch his promos with excitement. So realistic. He's a very successful man of course but his rating is very low on this site."
Rating: 10.0
Sentiment: 0.2970238095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Dragon Fighterwrote on 27.11.2017:[10.0] "The samoan submission machine SAMOA Fucking JOE. From 2004-2006 he was easily in top 5 best wrestlers in the world. Specially in 2005, he was the second best just after kobashi. His in work was so great. He was so smooth at his size. Good psychology for sure. Had a bunch of great matches. His mic work was quite underrated. Since 2010s, he has slowed down a lot. He is now pretty slow and sloppy, but he still manages to have good matches all the time."
Rating: 10.0
Sentiment: 0.3459325396825396
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TooSweetPhilwrote on 30.06.2017:[8.0] "Joe ist einer der Wrestler, die man zukünftig, als auch jetzt als das monströse Konstrukt des Flaggschiffs aufbauen könnte. Im Ring hat er im Vergleich zu seiner Prime etwas nachgelassen, ist nicht mehr so schnell und athletisch, doch hat trotzdem seinen eigenen Style zwischen Härte und Submissions gefunden. Ansonsten hat er wie gesagt eine monströse Ausstrahlung, basierend auf guter Mimik, tollen Mic-Skills und Charisma. Gerade so auf eine gute 8 abgerundet."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: LSEstrelawrote on 07.05.2017:[8.0] "Samoa Joe is that one guy every promoter should want to have in his company. A very solid all-rounder, Joe has proven time and time again that he is one of the best heels in the bussiness today, while also playing a serviceable babyface."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: awsmpwniewrote on 24.04.2017:[7.0] "Für mich overrated. Ich finde ihn zwar nicht schlecht, aber der Fakt das ein massiger Kerl ab und zu mal ein paar schnelle athletische Moves auspackt, macht ihn noch lange nicht zu dem was viele in ihm sehen. Er ist sicher gut für den einen oder anderen Midcard title run, aber ansonstem ist er gut als Aufräumer für die HHH und Stephanie aufgehoben.  Mal sehen vielleicht überzeugt er mich ja noch"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Blood Pumpwrote on 07.04.2017:[8.0] "Joe can hang with the best of 'em. He hits hard, moves fast and has a ton of endurance. Hes had classics with a large number of people and continues to have great matches after moving to the big leagues. He makes a great heel, and while his feud with Nakamura has been a little disappointing match-wise the story behind it has been quite intriguing."
Rating: 8.0
Sentiment: 0.1668290043290043
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TheWrestlingFanwrote on 05.03.2017:[9.0] "Amazing in ring performance, strong personality (especially as a heel), and outstanding promo skills. Joe has it all to be a main eventer."
Rating: 9.0
Sentiment: 0.34
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Mouthwrote on 10.02.2017:"Tyson Kidd hat er beinahe ins Grab gebracht. Seth Rollins hat jetzt erst mal Pause wegen ihm. WhoŽs next?"
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Pellipariuswrote on 07.02.2017:[9.0] "Joe ist eine echte Kategorie für sich ... Sein Körper ist nicht besonders gut definiert, weshalb man ihn erstmal für behäbig und langsam hält ... Wenn er dann aber Moves wie den Jumping Enzugiri oder den Suicide Dive bringt, wundert man sich oft, woher ein Kerl mit diesem Körperbau solche Aktionen nimmt ... Natürlich hat er die üblichen Big Man Moves wie die Running Senton, den Powerslam, die Powerbomb oder seinen Finisher den Musle Buster genauso drauf und richtet damit entsprechenden Schaden an ... Und zuletzt natürlich seine Submission Holds wie der Crossface, STF und natürlich der Kokina Clutch ...   Sein Entrance Theme zusammen mit seinem Heel Gimmick machen echt was her und sind in sich stimmig. Ich glaube, als Face wird man ihn nie erfolgreich einsetzen können :-)   Ich bin gespannt, wie er sich jetzt seinen Platz im RAW Kader erarbeiten wird ... vielleicht sehen wir ihn ja bald bei einem Main Event ... Er ist n guter Worker und kann solche Matches bestreiten."
Rating: 9.0
Sentiment: 0.10897435897435898
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Real Raterwrote on 21.01.2017:[9.0] "Ring: War in den Jahren 2004 und 05 einer der besten der Welt, wenn nicht sogar der beste Wrestler der Welt, aber er hat auch einfach dannach abgebaut deshalb -1. 9/10 (50%)  Promos/Schauspieltalent:Sicherlich auch ganz oke bis gut. 8/10 (25%)  Charisma/Statur/Gimmick:Überzeugender Big Man, besonders zu seiner TNA Anfangszeit. 8/10 (25%)  Sind dann insgesamt 8, 5 Punkte für The Samoan Submission Machine.   = 9 Punkte"
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: rjsbx11wrote on 07.01.2017:[10.0] "Joe in the mid 2000's was a strong contender for baddest motherfucker in wrestling history. He was s stud in TNA, and survived horrible booking that could've derailed his career until he found his way into NXT. In my opinion, one of the best all-round wrestlers in WWE: very unique look, great promo, ring work is obviously exceptional and he is very versatile in terms of character. He could be either an incredible heel or an ass-kicking babyface on the main roster, and every day he's in NXT, whilst he's great there, he continues to reverse the misconception originally placed upon him by the WWE brass."
Rating: 10.0
Sentiment: 0.40243055555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: PrincessTeemowrote on 28.11.2016:[7.0] "Total overhyped.  Ihm fehlt es viel zu viel an Charakter und deshalb wird er sich auch nicht durchsetzen in den Main Shows. Er ist der klassische Typ für indies und NXT. Ein gut technischer Big man, den aber das gewissen Etwas fehlt.  Er wird so enden, wie KO am Anfang seiner WWE Karriere als er Kanonenfutter für Cena wurde.  Erst als KO zeigte, dass er n Superentertainer war, wurde er zum Main Eventer. Diese Seite kann Joe nicht zeigen, weil er sie nicht besitzt und deshalb wird aus ihn nur n Big man, der vll mal kurz den WWE titel halten darf, aber er wird keine langfristig große Nummer in der WWE sein."
Rating: 7.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ImperatorFlowrote on 19.10.2016:[10.0] "Egal ob in der Independent Szene oder bei WWE. Joe ist und bleibt einer der Besten. Im Ring ein absolutes Biest und am Mic der Hammer. Joe als Heel ist ein absoluter Show Stealer und seine Fehde mit Nakamura zeigt, dass Kayfabe noch nicht gestorben ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: DevilsSkywrote on 13.10.2016:[10.0] "Holy moly this guy has everything. Promo skills for a monster heel, technical prowess, agility even despite his larger size. A theme which says "you've done screwed up now pal", and a career to be very proud of. NXT's treating him well, and I hope he gets an even greater level of fame on the main roster."
Rating: 10.0
Sentiment: 0.33333333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Luv all wrestlingwrote on 08.10.2016:[10.0] "Samoa Joe bust's muscles with his muscle buster. He is a badass wrestler, simple as that, always having a good aura of seriousness about him, Joe is a beast who can excell in any wrestling promotion."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: JordanACEwrote on 01.10.2016:[9.0] "A legit ass kicker. Joe is the prefect combination of brawling while having a technical side to him.  Watching hm is just fun. The guy is a beast, had one of my all-time favorite matches ever with Punk (Joe vs Punk II)"
Rating: 9.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Rattlesnake3-16wrote on 01.09.2016:[10.0] "Great performer and technical athlete. He deserves more than the NXT title and I think he will have a good run on raw or SmackDown. It would be fantastic if he had matches against aj in the main roster and I think it will arrives."
Rating: 10.0
Sentiment: 0.3336996336996337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: croatiantwat1950wrote on 22.08.2016:[10.0] "In his prime, he was the guy. Along with Punk, made ROH a better known promotion. He never cuts below-average promos, he always works his ass off in the ring and is very agile for his size. If he doesn't win a World/Universal title on the main roster, the creative should really electrocute themselves."
Rating: 10.0
Sentiment: 0.4694444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Strezemannwrote on 10.08.2016:[9.0] "Joe's career looked to be on the downslope for a while there, going from one of the best in the business to someone who'd clearly lost their way. Ever since coming to NXT, however, he's seemed invigorated, turning in consistently good in-ring performances and really delivering the goods in promos. In general, at least on the indies and in NXT (I don't remember him turning in anything stellar in TNA), Joe's been a fairly underrated mic worker, I feel. He can deliver almost Arn Anderson-esque low-key promos that are straight to the point and believable, but he does 'seething with rage' very well, too. Somewhere around '03-'05, Joe was consistently one of the best heavyweight wrestlers on the planet, and his ROH title run alone has secured his legacy as a great performer. Add to that his successes in TNA and the new leash on life he's gotten in NXT, and you have a guy who really has nothing left to prove. One of the best big men ever, whose best matches (vs. Punk, vs. Daniels and Styles, vs. Kobashi) are among the premier outings of the new Millennium."
Rating: 9.0
Sentiment: 0.3867965367965368
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Legendkiller96wrote on 02.08.2016:[9.0] "Einer der stärksten Big Men der heutigen Zeit, für mich ist nur Cage im Ring noch davor. Als Heel ist er der perfekte Mann, mit seiner düsteren Ausstrahlung, der einzige Grund warum er keine 10 Punkte von mir bekommt ist, dass er für mich als Face eigentlich nicht funktioniert. Man ist beeindruckt wenn er gewinnt, aber richtig Jubeln tut man nicht. Trotzdem ein sehr starker Wrestler"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: killowenskillwrote on 25.06.2016:[10.0] "When people ask me why I love Joe, I have always the same answer: "Versatility". No matter good or bad, he always wins back his role at the highest level. He can make you laugh (which is only a segment with a coffin in the TNA), it may be feared, it can not be allocated, if it does not it needs, it simply can do everything. He is not a god of the microphone, but good enough. We can always understand his attitude, learn from the very first words of what he wants, but it can be unpredictable. Calling it a better speaker? No. To ascribe to the best? Definitely. And his manner of conducting divine battle. He fights mostly at a slow pace. But due to his charisma, it is rather a plus than a minus. Because in this case, it can show a match with any wrestler, with fast, nimble, even with the bag as Baron Corbin he gave a good fight, considering all the mediocrity of the Wolf. And all the matches that were rated 5 stars - not too different speeds. Samoa Joe - a vivid example of the fact that even at a slow pace, you can make a masterpiece. A conditional Kalisto shows a high rate, but watch his matches simply not interested. Failing that, I mean, Joe - a living legend. Legend, which can delight us for at least another 10 years. I hope that in his new home in the WWE, he will find himself and become a star of the top-level. He certainly deserves it."
Rating: 10.0
Sentiment: 0.10723383387445888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: AMHTPwrote on 22.06.2016:[9.0] "Samoa Joe is an utterly unique version of the monster brawler, blending his strength and ferocity with one of the best technical wrestling repertoires in the world.  He's equally fantastic in three-minute squash matches and hour-long iron man contests, which very few wrestlers can say.  For years, he's been one of the best-regarded wrestlers outside of the WWE, and his matches with Kenta Kobashi, CM Punk and Kurt Angle should be required viewing.  TNA earned the only legitimacy it ever had on Samoa Joe's back, and he was a highlight of both that company and Ring of Honor during his time there.  Now, Joe's made his way to NXT at long last, and he's still putting on excellent matches even if he's a little slower and less fit than he used to be.  Even so, a slightly-weathered Joe puts on better matches than most WWE stars in their prime.  Here's hoping he gets a good main roster run sometime soon, even if he doesn't plan on sticking around too long."
Rating: 9.0
Sentiment: 0.22776315789473686
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: prowrestlingisrealwrote on 21.06.2016:[10.0] "Samoa Joe is one of the G. O. A. T, since his early years in the business he showed his talent, and his incredible ring ability + he had memorable matches against the likes of Kobashi, Punk, Aries, Danielson, Angle ... and now he is the best champ. Vince's company have right now."
Rating: 10.0
Sentiment: 0.5571428571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Cleanerwrote on 13.06.2016:[10.0] "Samoa Joe hat sich über Jahre als Wrestler bewiesen - ich sage nur 2 5-Sterne-Matches. Er ist definitiv ein sehr sehr gutes Gesamtpaket und kommt hoffentlich auch bei der WWE noch groß raus, man kann ihn im Zuge des Rostersplits äußerst gut als Top-Heel eines Brands etablieren"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ErycK24wrote on 05.06.2016:[9.0] "Joe is one of the best brawlers in Wrestling today. His excellent mobility combined with his intensity puts him in a brawler class with Lesnar."
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: JoshuaWrestling63wrote on 28.05.2016:[9.0] "Samoa Joe ist ein Super wrestler Aubwohl er etwas breiter ist hat er viel drauf Im Ring 9/10 Mic 9/10 Und Charisma hat er auch 9/10 Mal Gucken was die wwe noch mit dem macht"
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ApexOfEvolutionwrote on 02.05.2016:[8.0] "Ein toller Wrestler, der trotz seiner Masse unglaublich agil und beweglich ist. Seine Zeit bei ROH kann ich nur in der Retrospektive bewerten, aber die Matches, die ich gesehen habe, waren allesamt gut. Es spricht natürlich auch für ihn, dass er immer noch der Titelträger mit der längsten Regentschaft als ROH World Champion ist.  Bei tna wurde er dann gut aufgebaut, aber im Laufe der folgenden Jahre immer falsch eingesetzt, so dass man immer mehr das Intersse an ihm verlor. Die beste Zeit hatte er dann bei seinem World Title Run, in der er sehr stark dargestellt wurde und selbst Legenden wie Booker T auseinandernehmen durfte. Bei NXT gefällt er mir ebenfalls gut, aber es ist die Frage, wie sehr er dazu geeignet ist, junge Talente stark darstellen. Samoa Joe liefert seine besten Matches immer nur gegen Gegenr, die ebenfalls verdammt stark sind. Aber wenn er seinen Titel jetzt nur gegen Leute wie Eric Young, Austin Aries verteidigen kann, erfüllt es nicht den Sinn von einem Nachwuchstitel und bekommt einen Beigeschmack von tna 2. 0, wo NXT ja nun mit Sicherheit nicht hin will. Bin gespannt wie es weitergeht."
Rating: 8.0
Sentiment: -0.12500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: NastyYaffawrote on 15.04.2016:[9.0] "Samoa Joe is the man. From 2004 to 2007 the man was without a doubt one of the best pro wrestlers on the planet. His ROH World Title reign is legendary; and for a good reason. Some of his title defenses were just SO good. And he has been a part of some of the best matches in TNA history, too. Since arriving in WWE, he has been totally killing it, too. Brought out the best in Finn Bálor. Samoa Joe rules."
Rating: 9.0
Sentiment: 0.7714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: WrestlingNerdwrote on 07.04.2016:[9.0] "Ich bewerte nun nur das was ich von TNA und WWE kenne. Seine ROH Zeit kenn ich leider nicht.  Er ist ein super Wrestler, der trotz eines fast schon ziemlich untypischen Wrestlingkörpers wirklich extrem viel drauf hat. Er ist einfach Agil. Überrascht immer wieder mit Moves und hat es einfach drauf. Er muss auch nicht viel sagen, er glänzt auch schon so, mit einer extremen intensität. Und btw. die Musik bei NXT von ihm, einfach herrlich."
Rating: 9.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: JuliTheCage87wrote on 02.04.2016:[10.0] "Ehemalig einer der besten Wrestler der Welt mit einer phänomenalen Agilität und perfekten, schmerzhaften Power- und Technik-Moves, zudem ein wahnsinnig guter Submission-Wrestler. Auf der Matte nahezu unschlagbar. Einen Punkt Abzug jedoch für seine nach und nach schwindende Kondition, hat am Ende langer Matches definitiv immer nachgelassen und wirkte nicht gesund. UPDATE: Zwei Punkte Abzug. Seine Ausdauer macht ihm schwer zu schaffen, er wird mit jedem Match langsamer und "normaler". Den alten Joe wird er wohl aufgrund seines körperlichen Zustandes nie mehr erreichen. Schade eigentlich. UPDATE #2: Und bei NXT wieder genau da, wo er hingehört. Der böse, zerstörerische Heel, der, anders als bei TNA, auch mal über 5 Minuten gehen darf. So will ich ihn sehen! Wirkt wieder viel ambitionierter und fitter."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ShooterMcShootwrote on 25.12.2015:[10.0] "Why Samoa Joe isn't on the main roster being pushed as the world champion is a mystery to me. Well, not really a mystery. But McMahon's logic is ridiculous nonetheless."
Rating: 10.0
Sentiment: -0.08888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TrevPuroFanwrote on 21.12.2015:[10.0] "Samoa Joe is one of the best fat guy wrestlers ever and my personal favorite samoan wrestler of all time. This guy had so many classics vs the likes of AJ Styles, Kurt Angle, Kenta Kobashi, CM Punk, Bryan Danielson etc. And he has basically won every World Title in the main companies he has been. Lets hope he wins the WWE strap soon. Joe is amazing. 10/10"
Rating: 10.0
Sentiment: 0.43809523809523804
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MoonsaultsEdgecutionwrote on 28.11.2015:[7.0] "Das mag vielleicht hart klingen, aber für mich ist Joe längst über seinen Zenith hinaus und 2015 gibt es etliche andere, denen ich eher das Spotlight geben würde. ;-)"
Rating: 7.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Dowkesywrote on 09.10.2015:[10.0] "How can I give this man any less. So many brilliant matches, 3 classics with CM Punk, vs. Kenta Kobashi and not to mentioned the dozens of great matches between him and the likes of AJ Styles, Low Ki, Christopher Daniels, Bryan Danielson and Kurt Angle as well as more throughout his career. A great talent. 10/10."
Rating: 10.0
Sentiment: 0.47619047619047616
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Matzinhowrote on 27.07.2015:[10.0] "Als World Champion bei RoH zeitweise der vielleicht beste Wrestler der Welt. Über die Jahre hat er mich aber in zu vielen Matches enttäuscht oder ist einfach meinen Erwartungen nicht gerecht geworden. So zum Beispiel gegen Angle, Kobashi und Misawa. Vom Booking will ich gar nicht anfangen - TNA hat ihn in meinen Augen kaputtgemacht. Am Ende des Tages gebe ich ihm 9 Punkte, weil er immer noch ein überdurchschnittlich guter Wrestler ist, trotz aller Widrigkeiten. Sein Potenzial hat er aber nie abgerufen. UPDATE: Revitalisiert sich gerade völlig bei NXT und ist so heiß, wie seit Jahren nicht mehr!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ShawnDravenwrote on 10.06.2015:[9.0] "Probably every bit as important to the history of TNA as AJ Styles is. I don't see him hanging around NXT for long before he gets called up to the main roster."
Rating: 9.0
Sentiment: 0.17222222222222225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Unstable8383wrote on 25.05.2015:[8.0] "Ja er ist gut..... Promos sind auch nicht die schlechtesten!   Aber: Mit 36 Lenzen jetzt noch über NXT in die WWE? Ich weiß nicht ob das für ihn wirklich sinn macht... klar wird er sicherlich ne menge geld machen, aber ich denke er hätte im Indy-Bereich bleiben sollen! N langer Run wird es für ihn sicherlich nicht geben..  Hoffe er wird richtig eingesetzt!  Ansonsten ist er natürlich jetzt schon eine Legende, wie man bei TakeOver Unstoppable gesehen hat, welche Pops er bekommen hat!  Wünsche ihm das beste in der großen Liga und hoffe das er ein zwei Titelregentschaften bekommt! Verdient hat er es schon... Freue mich auf Matches gegen Ziggler, Bryan oder auch Rollins..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MusSanwrote on 24.05.2015:[8.0] "Ich finde Samoa Joe einfach fantastisch. Hat viel Charisma und im Ring ist er gut. Jetzt ist er bei der WWE.  Einfach zuruecklehnen und seine Fehde gegen Kevin Owens geniessen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: downtown2wrote on 22.05.2015:[9.0] "Nachdem die gefühlt letzten fünf Jahre reine Stagnation waren, bekommt Joe immer mehr Feeling zurück für seine Rolle. Der Weg weg von TNA war bitter nötig, weder er noch die Liga selbst wussten so recht, wohin man mit ihm noch gehen sollte. Fairerweise muss man Joe zugestehen, dass die vielen Booking-Fehlgriffe seine Karriere auch fast ruiniert haben, da wäre wohl niemand noch sonderlich motiviert. Aber der alte Samoa Joe, den man heute wieder bewundern kann, hat alle Tools um im Spätsommer seiner Karriere nochmal richtig durchzustarten. Top im Ring und am Mic, sensationelle Ausstrahlung - alles vorhanden. Nur weiss die WWE hoffentlich, dass man ihm nicht nochmal ein paar Jahre klauen sollte, sonst ist er einfach zu alt."
Rating: 9.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Maryanwrote on 04.03.2015:[8.0] "Joe's one hell of a talent. Too bad TNA hasn't used him right in the past few years but now he is back in ROH. And if the WWE rumors turn out to be legit, then I wish the Samoan Submission Machine all the best!"
Rating: 8.0
Sentiment: 0.02261904761904765
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Le Wrestling Fanwrote on 26.02.2015:[10.0] "You don't see big man and awesome in one sentence very often. Samoa Joe is an awesome big man. He has be great throughout his career and he can easily be called the best Samoan wrestler in history, hands down."
Rating: 10.0
Sentiment: 0.47530864197530864
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: eldenaaaaawrote on 23.02.2015:[10.0] "A dominant force in pro wrestling over the last 15 years. The longest reign with the ROH World Championship in their history. Held every belt in TNA, some on multiple occasions. His track record speaks for itself."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Triple Hwrote on 17.12.2014:[8.0] "Klar hat Joe nicht mehr die Stärken, die in bei ROH noch prägten, aber man wird halt nicht jünger und die lange Zeit, die er schon im Buisness tätig ist, hinterlassen ihre Spuren. Dennoch gehört er für mich zu einem der besten im Kader, die TNA noch präsentiert. Für Mitte 30 immer noch sehr agil und beweglich wenn man seine knapp 130 Kg Körpergewicht berücksichtigt. Seine Submission Moves bleiben sein Markenzeichen und er trägt zurecht den Spitznamen "Samoan Submission Maschine "Seine Matches können mich immer noch gut unterhalten auch nach über 10 Jahren, die ich ihn schon kenne."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Viper99wrote on 25.11.2014:[10.0] "Kriegt trotzdem noch 10 Punkte obwohl er schlechter als Von vor 2Jahren ist.... aber er wird halt auch nicht jûnger. Trotzdem ist er ein Super Agiler und Technich versierter , , Big Men" der five star Matches gegen ua. Punk oder Daniels gezeigt hat"
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: yanuswrote on 09.10.2014:[8.0] "Great worker, but is now well past his prime and really isn't able to portray a "wrestling" character other than tough, silent dude."
Rating: 8.0
Sentiment: 0.08935185185185186
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Baldrickwrote on 10.08.2014:[9.0] "Seine Athletik lässt immer mehr nach, sein Selling ist nicht mehr zeitgemäß. Aber Joe zeigt zu ausgewählten Anlässen immer wieder bockstarke Matches und hat ein unfassbares Gespür für Wrestling. Diese Ringinteligenz, gepaart mit dem rein subjektiven Bonus von Ausnahmeleistungen independent und bei TNA in den letzten 8 Jahren, lassen aber nach wie vor eine sehr gute Bewertung zu."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Kings Roadwrote on 02.07.2014:[8.0] "Im Indybereich und bei ROH gehörte Samoa Joe ganz klar in die 10 Punkte-Kategorie. Bei TNAW hatte er zunächst einen starken Run und fiel dann unter die Bullshit Booking-Räder. Schade. Aktuell finde ich seine Rolle annehmbar und mit Mitte 30 hat Joe ja sicher noch einige Jahre, in denen er hervorragen kann."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Hirnklopswrote on 12.05.2014:[7.0] "Es schmerzt mich, Joe abzuwerten, immerhin würde ich heute kein Wrestling mehr schauen, hätte es damals nicht diesen bösen Typen gegeben, der einfach Alles und Jeden einplaniert hat, aber ich habe mich an Joe satt gesehen. Klar, was TNA mit ihm gemacht hat, spielt da sicherlich eine große Rolle, aber Joe funktioniert für mich einfach nicht mehr. Er ist lange nicht mehr die Planierraupe, die er mal war, er ist behäbig geworden und langweilig, ein Schema-F-Abspuler wie es irgendwann auch Bret Hart war, und dafür kann und will ich keine Höchstwertung geben. Es ist immer noch cool, Joe ab und an mal zu sehen, aber als Dauerbespaßung kann ich mir das nicht mehr geben."
Rating: 7.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: LowJomoKiwrote on 20.04.2014:[7.0] "Eigentlich ein technisch richtig guter Big Man, der bei RoH mich stets überzeugt hat und mehrfach richtig starke Matches zeigte... auch bei TNA war er lange Zeit eine Bereicherung für deren Roster, aber mittlerweile geht er leider etwas unter trotzdem kann er auf eine starke Wertung zählen, denn er kann es ja schliesslich... auch wenn er es momentan nicht zeigen kann oder darf..."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TheLoudMouthwrote on 19.04.2014:[9.0] "Sehr, sehr starker Big-Men mit außerordentlich guten Mic-Skills und einem guten Maße an Charisma. Alles in Allem ein Wrestler auf absolutem Top-Niveau."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Undertalkerwrote on 30.03.2014:[8.0] "Was Joe kann, das kann er gut: Vom Wrestlingstil her, stellt er eine optimale Mischung aus Stiffness, Powermoves, Technik und Submission-Wrestling dar. Zudem wirkt er extrem aggressiv, was seinen Wrestlingstil aufs Beste unterstreicht. An seinem Micwork gibts meinerseits auch nichts auszusetzen. Er hat sich charakterlich jedoch nie weiterentwickelt, und ihm fehlt es hier einfach an der nötigen Tiefe. Er müsste mehr von sich zeigen, als nur die aggressive Samoan Submission Machine. Ich weiß es nicht, aber anscheinend kann er nur diese Rolle richtig verkörpern; was mir etwas zu wenig ist. Daher denke ich, sind 8 Punkte angemessen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: HongKongPhooeywrote on 22.02.2014:[9.0] "The true pearl of the TNA roster. Ever since his stand out run in Ring of Honor, Samoa Joe has been an incredible competitor inside the ring. Joe's in ring skills can stand toe to toe with anyone in the world wrestling today and is someone who should be considered one of best of this era."
Rating: 9.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TAWPTierJustinwrote on 02.01.2014:[10.0] "Samoa Joe has always been one of my most favorite wrestlers on the TNA roster! What can I say that hasn't been said already about this guy? I really love watching Joe wrestle! For a guy his size he can do things in the ring that a lot of other guys his size can't do and of course he's always had the ability to put on amazing matches with other awesome workers as well! I've always loved Joe's character on TV too. He has such an intimidating presence every time he shows up on TNA television and he can cut a serious, believable promo with the best of them and can add some humor to his mic work too if necessary. Joe has always been one of the top TNA guys you think of who everyone wants to see in WWE someday and you always wonder whether or not he'll go to WWE eventually. I would love to see him in WWE just like everybody else would, but at the same time, at this point for me, I'm perfectly happy that he's still with TNA cause at least he's still on global television wrestling the kind of matches he loves to wrestle in. However considering how much of a world champion caliber talent Joe really is, how he hasn't received multiple title world title reigns in TNA is just mind-boggling to me."
Rating: 10.0
Sentiment: 0.3266666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: FollowTheBuzzardwrote on 22.12.2013:[10.0] "ich vergebe ja ganz oft 10. 0 an Wrestler die es verdient haben, aber hier wären wohl 11 Punkte etwas angebrachter. Dieser Mann ist der Allrounder schlecht hin. Kaum einer verbindet Schnelligkeit, Stärke, Technik so wie Samoa Joe. Das war ja noch nicht alles. Rekordhalter des ROH-Championbelts und immer für ein 5-Sterne Match verfügbar siehe die Schlachten gegen CM Punk damals bei ROH, oder diesen sagenhaften Tree-Way Dance mit AJ Styles und dem "fallen Angel" Christopher Daniels. Mic-Work ist noch ausbaufähig, aber muss er das ? NEIN ! Dieses leichte geheimnisvolle verleiht seinem Gimmick den letzten Schliff."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: CLPSKYLINERwrote on 14.12.2013:[7.0] "Von seiner Statur her, wirklich hervorragende Technik."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: HammertonWaywrote on 23.08.2013:[10.0] "It's the Samoan Submission Machine, of course he's going to be a 10! Samoa Joe is one of TNA's greatest wrestlers. He can play any role to its best and then some. Though I'd like to see him as the world champ again, it's always a treat to watch him in action."
Rating: 10.0
Sentiment: 0.7000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: todd1928wrote on 13.08.2013:[10.0] "Samoa Joe used to be the most dangerous man in pro wrestling, while those days have passed he is still better than 95% of the guys in the back of any company. His strikes are the best in the business and his submissions skills are still rock solid, while he doesn't fly well anymore he is still very quick on his feet for a guy his size and is still only 34."
Rating: 10.0
Sentiment: 0.2925925925925926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Valancewrote on 02.08.2013:[6.0] "In the days of ROH Samoa Joe was a real Samoan Submission Machine. And now it has become very tired and lazy."
Rating: 6.0
Sentiment: -0.19000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: dudemanbearpigwrote on 05.07.2013:[9.0] "This guy is just amazing. Quite agile for his size, and a heck of an in-ring worker. It's too bad TNA dropped the ball on him numerous times."
Rating: 9.0
Sentiment: 0.10000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ThatGuywrote on 27.06.2013:[6.0] "Was ist nur aus Samoa Joe geworden, der einstige König der Indy-Szene, das absolute Talent, ein ungeschliffener Diamand und nun ? Ein übergewichtiger Midcard Wrestler der mehrfach die Chance nicht genutzt hat zur WWE zu wechseln.   In TNA ist er verheizt worden, seine matches mit Kurt Angle waren exzellent, das will und kann ich auch gar nicht abstreiten aber seine performance hat doch stark nachgelassen. Nach seiner Fehde mit Angle kam nicht mehr viel, er hatte ein Tattoo im Gesicht, war in der Main Event Mafia, wurde entführt (Und von den Entführern anscheinend sehr gut gefüttert) und er schwebte generell in einem luftleeren raum von einer bedeutungslosen Fehde zur nächsten.   Und als man ihn endlich mal wieder vernünftig eingesetzt und mit Magnus in ein Team gesteckt und dieses zunächst gebooked hat wurde er wieder als Solo-Talent ins Nirvana gebooked  Er ist ein guter wrestler aber er hat sich wie bereits angesprochen doch sehr gehen lassen, er hat über die Jahre zugenommen und ist am Mikrofon sogar noch schlechter geworden als vorher."
Rating: 6.0
Sentiment: 0.05555555555555555
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Davros77wrote on 25.04.2013:[8.0] "Immer noch ein äußerst fähiger In-Ring-Performer. Sein letzter echter Klassiker liegt allerdings schon ein paar Jahre zurück und er dümpelt momentan bei TNA etwas ziellos umher. Ein Tapetenwechsel könnte ihm gut tun..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Leonewrote on 22.03.2013:[10.0] "In TNA, he's great, particularly with his matches against the likes of Kurt Angle, AJ Styles and Chris Daniels.  In ROH, he's a legend.  The longest reigning ROH world heavyweight champion in history, and one of the best strong style wrestlers in North America.  While looks can be deceiving, Joe has a combination of strength and agility that not only is surprising from a 280lb wrestler, but also plays a big role to his hard-hitting style.  His matches against CM Punk are amazing.  His match against Kenta Kobashi was not only 1 of the best matches ever, but it had 1 of the best crowds as well.  On top of this, Joe has a natural charisma and good mic skills that you don't always see, and he knows a lot more wrestling styles than many wrestlers of similar builds.  One of the greats."
Rating: 10.0
Sentiment: 0.47058823529411764
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Bowlenwrote on 16.03.2013:[8.0] "Toller Wrestler, gerade wenn man seine Maße berücksichtigt. Leider wird Joe seit 2009 bei TNA völlig verbookt. Da er noch viele gute Jahre vor sich hat, hoffe ich mal, dass sie ihn bald wieder mehr zu schätzen wissen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: NightShadowWarriorwrote on 16.03.2013:[8.0] "Einer der All Time Greats von TNA  In Ring und Mic Skils sind super"
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Woerpwrote on 23.11.2012:[8.0] ""Mit Joe kann ich gar nichts anfangen. Der ist farblos und formlos (4 Punkte). " So hab ich ihn vor ein paar Jahren bewertet. Das kann ich nicht mehr so stehen lassen. Joe ist cool, grandios im Ring, nur seine Promos hauen mich immer noch nicht vom Hocker."
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Steenericowrote on 15.11.2012:[10.0] "Samoa Joe ist ein klasse Wrestler mit einem richtig tollen Gesamtpaket. Über seine In Ring Skills braucht man gar nicht erst zu diskutieren, diese sind herausragend. Er hat nicht umsonst drei Matches mit *****. Er gehört definitiv zum Besten, was TNA zu bieten hat, und kann aus fast jedem Gegner ein tolles Match rausholen. Schade, dass er bei TNA in den letzten Jahren nicht seinen Fähigkeiten entsprechend eingesetzt wurde, aber ich hoffe immer noch, dass sich das noch ändern wird und wir ihn irgendwann mal wieder im Main Event sehen werden."
Rating: 10.0
Sentiment: 0.18333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Wolkywrote on 20.09.2012:[10.0] "Überrangender Wrestler, hat sehr viel drauf und nen ganz eigenen Stil. Im Ring sicherlich einer der besten dies gibt. Kann aber auch am Mic was und ist in Sachen Schauspiel und Charisma kein Schlechter. Sollte aber ein deutlich höheres Standing bei TNA haben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Fahqallwrote on 30.08.2012:[10.0] "Der Mann für den die 10 Punkte geschaffen wurden.  Perfekter In-Ring-Performer, der technisch mit allem gesegnet ist. Zudem starker Brawler. Die Intensität, die er an den Tag legt, sucht (für mich), gerade bei Impact, seines Gleichen.  Auch sein Mic-Work ist für mich genial."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Awesome Arieswrote on 10.06.2012:[10.0] "Einer der wenigen Wrestler, auf die der Ausdruck "Total Package" zutrifft. Joe ist im Ring super und weiß auch am Mic zu unterhalten. Ich sehe ihn einfach sehr gerne, weshalb Samoa Joe die Höchstpunktzahl von mir bekommt."
Rating: 10.0
Sentiment: 0.4444444444444444
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: jjchiofalowrote on 15.12.2011:[10.0] "Oh how the mighty have fallen. Samoa Joe was once TNA's biggest and baddest wrestler. He is strong. He is agile. He has misc skills. He is intense. He is a complete damn bad ass. Joe's career had a promising start with the x Division in the palm of his hand. He then began to move upwards until he reached the very top. Then his career fell."
Rating: 10.0
Sentiment: 0.2229166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Undertaker555wrote on 11.12.2011:[7.0] "Ich finde es immer wieder toll seine Matches zu sehen(auch wenn es in letzter Zeit weniger werden). Wenn ich mir so seinen Körperbau anschaue und wie er das Umsetzt das ist unglaublich gut. 7 Punkte für den Samoa Joe"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Rated R Punkwrote on 06.09.2011:[8.0] "Ich hoffe für ihn echt das die WWE ihn bald aus seinen "leiden" bei TNA erlöst, früher zu seinen Anfangszeiten in TNA war er echt gut gebraucht und ging voll auf! Mittlerweile wird er echt unter Wert verkauft und lächerlich gemacht! Dabei ist Samoa Joe für seine Statur sein sehr guter Wrestler vielleicht nicht am Mic so begabt oder viel Charisma aber trotzdem ein guter Worker!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: HHH Pedigreewrote on 18.08.2011:[9.0] "I am a fan of the samonan submission machine. He is like Benoit, he has no micro charisma, his shows his charisma in the ring. He is an unstoppable wrestling machine, fat, but strong. Also, his moveset is amazing, pele kicks, musce buster... he can do a great match with RVD."
Rating: 9.0
Sentiment: 0.6111111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Marco2911wrote on 01.08.2011:[1.0] "Kann mich im Ring und am Mic nur wenig überzeugen.  Außerdem fehlendes Charisma. Macht 1 Punkt."
Rating: 1.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: treeofworldswrote on 01.08.2011:[8.0] "JOE! OH JOE! Was ist bloß passiert. In den Jahren 2004-2006 hätte ich vermutlich die Administratoren angeschrieben warum ich Joe nicht doch ausnahmsweise 11 Punkte geben kann. Nun ich verfolge TNA zwar nicht hunderprozentig regelmäßig aber es wurde schon auffällig, wie das Feuer in ihm in letzter Zeit schwächer wurde. Meiner Meinung nach sollte Joe TNA verlassen, weil sie ihm ja doch nur die Karriere versauen. Hoffentlich bekommt er dort genug Kohle, dass sich das für ihn rentiert. Für mich als Fan Schade wie sein unglaubliches Talent verschwendet wird."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Benji1706wrote on 28.07.2011:[9.0] "Joe ist eigentlich ein guter Main-Eventer, der in jeder Liga dieser Welt zu den besten gehört. Leider sieht man das in Florida nicht so und lässt ihn in der Mid- oder sogar Undercard versauern.  Joe würde eine Luftveränderung sehr gut tun... und bei WWE. inc sucht man doch nach neuen Hauptkämpfern. Dort hätte er auch viele neue und frische Möglichkeiten gegen Leute wie Cena und Orton oder gar Revivals mit Bryan und CM Punk.  Mit Sicherheit würde ihm auch ein bisschen weniger Gewicht gut tun, aber hey... das ist gar nicht so einfach ;)"
Rating: 9.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Play2Xwrote on 15.06.2011:[9.0] "Zur Zeit etwas unmotiviert... aber trotzdem einer der ganz großen In-Ring Worker! Hoffe, dass er bald wieder inŽs main Event kommt"
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: SoulTouchaZwrote on 28.05.2011:[10.0] "Warum wird dieser Kerl nur sporadisch eingesetzt? Er gehört in die selben Regionen wie ein Sting oder ein Anderson!  TNA sollte mal auf ihre Fans hören! ... Joe ist ein einzigartiger, talentierter Wrestler! Mic-Skills (Erinnere mich an die eine Promo mit Shoot gg. Scott Hall), In-Ring Skills ('nuff said) ... Joe reißt sich den Arsch auf & der dank dafür? Midcard-Region!  Main-Event, meine Lieben, da gehört er hin!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Excellence of Executionwrote on 01.03.2011:[8.0] "Ist zwar schon einen Moment her, dass ich TNA verfolgt habe, aber ich muss dem Mountie mit seiner Einschätzung Recht geben. In meinen Augen wäre Samoa Joe dann am besten dran, wenn man ihn zu einem ernst zu nehmenden Heel turnt und ihm einen guten Manager an die Seite stellt - dann könnte ich mir durchaus vorstellen, dass da noch was geht. Was ich zuletzt von ihm sah, stand alles auf verlorenem Posten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Matt4Wrestlingwrote on 27.02.2011:[9.0] "Er verschwindet leider mehr und mehr in der Bedeutungslosigkeit. Er sollte sich in der Independent-Szene wieder seinen Wurzeln erinnern und dann ein Comeback starten, dass könnte seiner Karriere gut tun. Ansonsten Top!"
Rating: 9.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Big Jackwrote on 25.02.2011:[10.0] "Samoa Joe ist technisch erste Sahne. Und das obwohl er nicht körperlich nicht gerade ein CM Punk oder ein Shawn Michaels ist. Zwar ist er wegen seiner Schwächen am Mic nicht in der Lage das Gesicht einer Mainstream Company zu werden, jedoch schafft er es stehts die Leute zu unterhalten. Ich finde es eine Verschwendung, wie man mit ihm im Moment bei TNA umgeht. Diese Schweine Story zwischen iihm und Dinero, dafür ist Joe wirklich zu schade."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Hu-Manwrote on 22.02.2011:[8.0] "Unglaubliches Talent, dass bei TNA leider nicht mehr zum Zuge kommt. Wirklich traurig zu sehen, dass ein Matt Morgan auf Teufel komm raus gepusht wird und ein 5-Star Wrestler abgeschoben wird. Joe könnte einer der dominantesten Heels überhaupt sein, stattdessen verkommt er in der Lower-Midcard. Toller Wrestler, toll am Mic, nettes Gimmick, keine Einsätze. Zur Zeit leider nur 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Mountiewrote on 07.02.2011:[8.0] "Joe funktioniert auf seine authentische Art als schlecht gelaunte, bös guckende und fast unbesiegbare Dampfwalze, aber er kann auch eben nur das - und die Tour nutzt sich halt irgendwann ab. Es geht dabei nicht darum, dass ich von Joe verlangen würde, sich zu einer Entertainment-Bombe zu entwickeln, es krankt für mich schon an einem grundsätzlicheren Problem. Joe ist für mich mit seiner daueraggressiven Art unfähig, Sympathie zu erzeugen, alles läuft nur über die Schiene ab, dass man sehen will, wie er seine Gegner zusammenprügelt. Das ist die Eindimensionalität, die mich an Joe stört und wegen der er für mich eine Stufe unter den wirklichen, auch rein wrestlerischen Komplettpaketen steht. Nach einem halben Jahrzehnt im Mainstream-Wrestling ist aber auch festzuhalten, dass Joe hunderte von Meilen weit davon entfernt ist davon, der Star zu sein, den die Hardcore-Fans gerne in ihm sehen würden. Und das liegt auch viel weniger am TNA-Booking als die meisten glauben. Es ist mit Joe tatsächlich einfach so gekommen, wie es die WWE-Verantwortlichen vor einigen Jahren vorausgesehen haben: Dass es laufen wird wie mit Taz: Ein Indy-Phänomen, das im Mainstream eine Fußnote bleibt. Und ja, auch mit einem World-Title-Run bei TNAW ist Joe nach den Maßstäben, die der Marktführer vorgibt, eine Fußnote. Ein Daniel Bryan ist nach einem Jahr WWE schon ein viel größerer Star als Joe - nicht zu reden von einem Punk, der ihn in der Hinsicht mit seiner WWE-Karriere exponentiell überrundet hat."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Rated R Champwrote on 01.01.2011:[6.0] "Dem Ring of Honor Joe, wie er 2005 zu TNA kam, hätte ich sofort die 10 gegeben. Sehr intensiver, technisch versierter und für seine Statur unglaublich beweglicher Wrestler. Die letzten Jahre über hat Joe aber einfach an Feuer verloren. Das kann an ihm liegen, ist aber sicher auch dem Booking um ihn zuzuschreiben. Hinzu kommt, dass er im letzten Jahr kaum ein Match über 5 Minuten bestreiten durfte."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Necronwrote on 08.12.2010:[7.0] "Beeindruckend authentischer Stil - aber Joe hat es nie verstanden, sich selbst ins beste Licht zu rücken. Dazu fehlt ihm einfach der letzte, entscheidende Teil Charisma."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: P92wrote on 07.12.2010:[8.0] "Ein gute Wrestler, der nicht nur gute Promos hält, sondern auch im Ring zeigt, was er kann. TNA kann sich froh schätzen, einen Wrestler wir Samoa Joe zu haben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Aesopwrote on 19.10.2010:[9.0] "Joe ist ein starker Wrestler, doch in letzter Zeit hat er sich verschlechtert. Ich wieß nicht woran es liegt, aber er sagt mir nicht mehr so zu wie früher. Wenn ich die Matches von Joe heute mit denen von Joe 2005 vergleiche muss ich schon feststellen das er nicht mehr so gut ist."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Damon Strikerwrote on 17.10.2010:[8.0] "Als Joe zu TNA kam, sah es so aus, als ob er seine Mission, vom Indy zum Mainstream-Star aufzusteigen, ohne Probleme erfüllen würde. Einige Zeit und einige schlimme Booking-Entscheidungen später, muss man leider festhalten, dass es nicht so einfach ist. Doch langsam aber sicher scheint sich der Charakter Samoa Joe wieder zu erholen und vielleicht gelingt es ihm im zweiten Anlauf, sich dauerhaft im Main Event zu etablieren. Er bringt eigentlich alles mit, was es braucht."
Rating: 8.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Homicide187wrote on 10.10.2010:[8.0] "Joe ist ein toller Wrestler, der unheimlch gute Matches zeigen kann und er hätte zu RoH Zeiten sicherlich eine 10 vedient, aber das was man momentan von ihm bei TNA sieht, reicht einfach nicht. Man sollte ihn wirklich wieder besser einsetzten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Pyromaticwrote on 18.09.2010:[4.0] "Schon wieder jemand der etwas Overrated ist. Wird mich nie überzeugen können."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Sephirodwrote on 15.08.2010:[9.0] "Alleine wenn man sich Joe ansieht, sieht man die Zukunft des Pro Wreslting. Ein Mann der in vielen Indy Promotions überzeugen konnte und bei RoH zu einer unvergesslichen Legende des Indy Wrestlings wurde. Legendäre Matches, doch irgendwann war die Zeit gekommen das man so einen Athleten der breiteren Masse präsentieren musste und dann war sein Weg zur TNA geebnet. Statt in kleinen Hallen sah man ihn nun Bundesweit im TV. Starke Titelregentschaften als X-Division Champ mit noch besseren Matches als der starken Regentschaft, alleine der 3 Way gegen Christopher Daniels und AJ Styles gehören wohl zu einem der besten Matches die es jemals bei TNA gab. Nach der X-Division kam wohl imo eine kleine Flaute wo man ihn nicht einzusetzen wusste, aber er war auf dem Weg nach oben den er dann zum Glück wieder eingeschlagen hat und es dann endlich schaffte ohne Titel einer der wichtigsten Wrestler der TNA zu werden. Seine starken Matches gegen Kurt Angle gehören auch dazu, dass er nun endgültig so over wurde und die Fans ihn einfach lieben musste. Bei Lockdown holte er sich dann endlich den Titel von seinem "Erzfeind" Kurt Angle. Dazu wurde er noch der erste Champion der das King of the Mountain Match als Champion betrat und als Champion wieder verlassen, hat was kein anderer Wrestler gechafft hat bis auf Samoe Joe eben. Mit Kevin Nash wurde ihm ein charismatischer Wrestler an die Seite gestellt der den übermütigen Joe bremsen sollte und wie er dann Joe bremste weiß man durch die jüngsten E"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Finlay Thornwrote on 10.08.2010:[10.0] "Als ich TNA-Fan geworden bin, war Samoa Joe einer von denen, auf die ich am meisten gespannt war, da ich so viel Lob über ihn gehört habe und ich muss sagen, das Lob kam zurecht. Seine Intensität und Beweglichkeit hat mich gleich begeistert und so habe ich mir seitdem viele Matches von ihm aus der Vergangenheit angeschaut, vor allem gegen AJ Styles und Daniels. Einfach genial! Auch frühere Promos habe ich mir angesehen und fand ihn sehr gut am Mic. Umso schlimmer ist es, dass Joe seit diesem seltsamen Entführungs-Angle kein einziges Wort mehr bei TNA sagen durfte. Pure Verschwendung!"
Rating: 10.0
Sentiment: 0.26785714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: umaga the samoan bulldozerwrote on 20.07.2010:[10.0] "Wrestlerisch stark, Mic-Work auch, zieht Heat, leider nur Midcard bei TNA.. Er hat viel mehr Potenzial, auch für das Main Event"
Rating: 10.0
Sentiment: -0.016666666666666677
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: homicidal cena michaelswrote on 10.07.2010:[8.0] "Samoa Joe ist ein wirklich guter Wrestler aber er zeigt oft die gleichen Matches, sogar früher bei ROH. Er ist nicht der einfallsreichste Wrestler und manchmal wirken seine Matches zu Standardmäßig. Aber insgesamt zeigt er gute Matches und ist agil für sein Gewicht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Robert Taylorwrote on 04.07.2010:[10.0] "Was derzeit bei TNA mit Samoa Joe geschieht ist eine absolute Frechheit. Joe hat für mich alles was ein Wrestler braucht: Er ist sehr gut im Ring, er besitzt Mic-Skills, sein Auftreten und das Drumherum passt ebenfalls. Joe hat nicht umsonst sowohl bei TNA als auch bei ROH jeweils das erste ***** Match hingezaubert. Es wird höchste Zeit, dass man ihn wieder in die Main Event Region pusht. Da gehört er hin, Joe kann Top-Matches in Serie zeigen und ist zudem auch Rekordhalter des ROH Titles. Das ist ebenfalls ein Zeugnis seiner Klasse, auch wenn ROH damals noch weniger Events als heute veranstaltete. Dennoch gehört Joe neben Kurt Angle, Desmond Wolfe und AJ Styles zu den besten Wrestlern, die in TNA rumlaufen. Zu Mounties vorwürfen kann ich sagen, dass du in dem Punkt Recht hast, dass er mittlerweile fast immer nur ein böses Gesicht mit aggressiven Verhalten an den Tag legt, allerdings bin ich der Meinung, dass Joe auch anders kann, wenn man ihn denn anders booked. Aber TNA und gutes Booking sind eh 2 Dinge, die nur bedingt zueinander passen."
Rating: 10.0
Sentiment: 0.18888888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The-Game91wrote on 26.05.2010:[7.0] "Ein weiterer der wenigen Stars die TNA selbst erschaffen hat. Ich schaue ihm gerne zu und es ist auch beeindruckend wie viel dieser Mann kann."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Big Bad Booty Babywrote on 13.05.2010:[9.0] ""Joe what are you doing with that Cheeseburger in your hand? ", das (oder so ähnlich) sagte einst Monty Brown und dieser Spruch ist mir irgendwie in Erinnerung geblieben. Der Zusammenhang leider nicht. Auf jeden Fall symbolisiert dieser imaginäre Cheeseburger sehr gut das Booking um Joe bei TNA. Schnell, intensiv, lieblos hingeschmiert und nicht lange vorhaltend. Was hat trägt der gute Samoaner nicht alles an angefangenen, unvollendeten und misslungenen Booking-Fetzen mit sich herum. Das ganze ließe sich durch qualitative, zeitintensive Storys beseitigen und das könnte Joe wirklich wertvoll für TNA machen. Wie groß dafür die Chancen sind? Richtig. Joe sollte wahrscheinlich zurück zu ROH gehen, denn dort konnte man sehen, dass er die 9 Punkte redlich verdient hat."
Rating: 9.0
Sentiment: -0.3499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: El-Chupakneebraywrote on 12.05.2010:[10.0] "Beim Rauskramen einiger Special DVDs von TNA ("Unstoppable: The Best of Samoa Joe" und "Kurt Angle Champion") ist mir wieder aufgefallen zu was Joe in der Lage ist. Der Mann strahlt genau die Intensität aus, die viele andere Big Men im Business einfach vermissen lassen und ist darüberhinaus auch noch technisch stark. Seine Promos sind solide und einzig sein doch recht limitiertes Gimmick ist kritisierenswert. Doch mir macht das irgendwie nicht viel aus. Joe tut Leuten weh und zu sehen wie er das tut bereitet mir eigentlich immer Freude. Wenn Joe keine 10 Punkte bekommt, wer dann?"
Rating: 10.0
Sentiment: 0.2892857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Danicheckwrote on 05.05.2010:[10.0] "Joe ist für sein Gewicht ein sehr guter Wrestler. Dazu sehe ich immer gerne seine Matches, vor allem gegen Daniels und Styles. Da er für mich einer der besten in TNA ist= 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Sandmannwrote on 04.05.2010:[8.0] "Mr. ROH aber nie so ganz mein Fall. Wrestlerisch über jeden Zweifel erhaben aber mich persönlich spricht er nicht so ganz wirklich an. Ich kann nicht mal so wirklich erklären woran es liegt aber ich finde ihn irgendwie unsympatisch. Bei TNA wars am Anfang noch ok aber mittlerweile hängt er dort auch nur noch rum und hat kaum noch große Fehden. Vielleicht wird 2010 ja wieder besser für ihn"
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: element-41wrote on 18.03.2010:[10.0] "Er ist trotz seines Gewichts so beweglich, dass es unwirklich wirkt (Im positiven Sinne). Er kombiniert direkt mehrere Wrestlingstile. Er ist einer der ganz großen bei TNA und außerdem Rekordhalter des ROH World Titles, was eigentlich schon alles sagt. Dieser Mann hat es einfach drauf! 10 Punkte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Grandmaster Sexaywrote on 07.03.2010:[9.0] "Joe ist einer derjenigen, die ich immer wieder gerne im TNA-Ring sehe!  Allein schon die Tatsache mit 127 kg ein (erfolgreicher) Wrestler der X-Division zu sein, spricht schon Bände! Allein sein Micwork könnte Joe noch verbessern um bei mir áuf die 10 Punte zu kommen. Ansonsten TOP!"
Rating: 9.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Fat Mikewrote on 24.02.2010:[8.0] "Joe ist ein sehr guter und intensiver Wrestler der, egal ob als Heel, Face oder Tweener, zu überzeugen weiß und auf dessen Matches ich mich eigentlich immer freue. Das TNA-Booking hat aber leider einiges von seiner Glaubwürdigkeit zerstört und sein Mic-Work ist zwar solide aber bei Weitem nicht so gut wie es von einigen gerne gemacht wird. Nichtsdestotrotz zusammen mit AJ mein Fave bei TNA."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: coldbeer316wrote on 18.02.2010:[10.0] "Joe war mir schon ein Begriff bevor ich TNA geschaut habe - als ursprünglicher WWE - Fan;-)! Die Geschwindigkeit die er plötzlich aus dem Nichts entwickelt beeindruckt mich immer wieder. Das Micwork überzeugt mich auch es paßt zu seinem jeweiligen Gimmick, ob es jetzt Joe das Babyface , Heel oder als Teil der Nation of Violence. Schade das diese Storyline Aufgrund der Rückkehr Hogans und dem Split der Mafia nicht fortgeführt wurde. Hoffe das er unter den mehr oder weniger neuen Kreativen auch dementsprechend gebookt wird."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Manu Adamswrote on 16.02.2010:[6.0] "Ich habe keine Ahnung, aber ich werde mit Samoa Joe einfach nicht warm. Mag natürlich für sein Gewicht ein klasse Wrestler sein und seine Aktionen wirken auch realistisch, aber ich kann mich nicht für ihn begseistern, tut mir Leid."
Rating: 6.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: tnawrestlingfanwrote on 09.02.2010:[7.0] "Ich muss zugeben, dass ich kein Fan von ihm bin! (ehrlich nicht! ) aber ihn stehtig gleich unterhaltsam fand/finde und das er tolle Matches abliefert. (z. B. Styles vs. Daniels vs. Joe usw. )"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Telecinewrote on 31.01.2010:[8.0] "Jetzt als Heel gefällt er mir wieder etwas besser. In seinen TNA Face Zeiten hat er mich ziemlich gelangweilt und das obwohl er ein sehr guter In Ring Worker ist. Sein Gimmick und sein ganzes Auftreten sind einfach perfekt für eine Heel Rolle ausgelegt."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Denzwrote on 26.01.2010:[10.0] "Dank ihm bin ich auf TNAW gekommen. Ein klasse Wrestler, der echt gute Moves zeigen kann. Ich habe ihn gerne als TNA World Heavyweight Champion gesehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: nwowrote on 25.01.2010:[10.0] "Gott sei Dank hat man diese bescheuerte "Nation of Violence" beerdigt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ShakDragoonwrote on 19.01.2010:[10.0] "Einfach nur genial! Schade dass er nicht mehr bei ROH zu sehen ist, aber auch bei TNAW gefiel er mir zeitweise sehr gut! Hoffentlich wissen Hogan und Bischoff ihn richtig einzusetzen. Ich zweifle ja noch daran."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Rated R Superstar EDGEwrote on 09.01.2010:[9.0] "Joe hat sehr gute Iin Ring Fähigkeiten und auch ein ansprechendes Micwork. Trotzdem hat er in den Letzten Monaten abgebaut. Aber mehr als ein CM Punk im Moment für die WWE ist solte für Joe bei TNAW nicht drin sein. Ich meine wenn er sich halt noch drei mal oder so den X-Devision und den Global Titel holt und noch mal eine Regentschaft als World Champion hat ist das ja auch nicht so schlecht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Mizisawesomewrote on 09.01.2010:[8.0] "Ich sah ihn einmal live und war echt baff (bin ich auch ständig bei seinen TV-Auftritten). Er ist verdammt agil, ein guter Techniker und verdammt stiff (und ich gebe zu meiner Schande zu, dass ich stiffe Wrestler sehr cool finde). Gefällt mir als Heel richtig gut, als face kann ich mit ihm nicht viel anfangen. Ich erwarte auf jeden Fall noch viel von ihm. Das Ende der Fahnenstange hat dieses Talent noch lange nicht erreicht."
Rating: 8.0
Sentiment: 0.09069264069264067
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: BaptisteZorGwrote on 08.01.2010:[9.0] "Sein momentanes Gimmick ist nicht das beste - schon klar.. Aber wie man Ihm hier teilweise Talent abredet oder Ihn gar als unwürdigen Gegner sog. "Bigman" betiteln kann ist mir wirklich ein Rätsel. Der Kerl wiegt so am Rande knapp 130kg... Joe ist ein Phänomen und einer der agilsten schwereren Wrestler der letzten Jahrzehnte. Sein InRingStyle ist absolut überzeugend und nur ein bisschen davon würde auch dem zeitweiligen Kinderprogramm der WWE gut stehen. Er gehört wrestlerisch und charismatisch ganz sicher zum besten was TNA zu bieten hat und ich hoffe das er bald wieder mitkämpfen darf um den "World Title" - denn genau da ist sein Platz. Und das Gimmick wird, so glaube ich, auch bald wieder bisschen umgekrempelt...... 9punkte"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Aquifelwrote on 06.01.2010:[10.0] "Sicherlich fehlt Joe im Mainstream Bereich momentan noch das gewisse "Etwas", damit er wirklich ganz oben mitspielen kann. Führ ihn hat man halt noch nicht das gefunden, was man bei einem Angle, einem Styles oder einem Desmond Wolfe schon hat: Etwas Herausstechendes, ein dauerhaft "Superstar"-taugliches Gimmick. Dennoch braucht man sich nichts vor zu machen: Joe ist ein herausragender Big Man, der über Technik, Stiffness, Storytelling und all das verfügt, was für großartige Matches benötigt wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Mukahidowrote on 06.01.2010:[8.0] "Joe ist meiner Meinung nach von Charisma, Ringskills und Micwork sehr gut nur leider fehlt ihn das gewisse etwas noch das ihn ganz nach oben katapultieren würde. Vllt wäre ein neues Gimmik bei ihm angebracht."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Mick Funkwrote on 06.01.2010:[9.0] "Großartiger In-Ring Performer, aber ohne die ganz großen Starqualitäten. Für den Main Stream Bereich kein Komplettpaket."
Rating: 9.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Scotty 2 Hottywrote on 03.01.2010:[6.0] "Kann mich ehrlich gesagt nicht wirklich für Samoa Joe begeistern. Im Ring für seine Statur sicherlich richtig gut, aber gefallen tut er mir persönlich nicht."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Killerswitchwrote on 22.11.2009:[10.0] "Joe stellt immer gute matches auf die Beine. Sah man ja auch bei turning Point"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: mongowrote on 17.11.2009:[10.0] "Joe verbindet Technik und Power auf perfekte Weise miteinander. Ich freue mich jedesmal auf Joe im Ring"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: teekay86wrote on 25.10.2009:[8.0] "Einer jener Worker auf die TNA unbedings bauen sollte. Anstatt Steiner, Foley, Booker T und Kevin Nash die alle ihre besten Jahre hinter sich haben sollten Samoa Joe, AJ Styles, Hernandez und Matt Morgan im Fokus der Shows stehen. Joe hat Charisma, ist klasse im Ring und unheimlich over. Zudem hat er schon bewiesen, das er im ME gut aufgehoben ist. Von daher ist es ihm zu gönnen möglichst bald erneut den World Titel zu tragen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Kurt Winkelwrote on 20.10.2009:[10.0] "Joe ist einer der am realsten wirkenden Wrestler überhaupt. Ob am Mic oder im Ring, ich glaubs ihm und er schlägt in beiden Disziplinen die meisten anderen Worker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: BoeserLobowrote on 05.10.2009:[10.0] "Für seinen Körperbau unheimlich beweglicher Wrestler. Absolute Ikone von TNA. Liefert immer wieder spannende Matches ab. Hat auch immer wieder sehr gute Storylines."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: TheBastion90wrote on 29.09.2009:[5.0] "Ich finde ihn überbewertet. Hat in der World Title Region absolut nichts verloren, vor allem bedingt durch das fehlende Charisma, dass versucht wird durch einen schäbigen brutalen Heel Charakter over gebracht zu werden. Ansonsten passabler Wrestler, wenn auch hier nicht überragend. Kein Glaubhafter Gegner irgendwelcher Big Men."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: batze22wrote on 23.09.2009:[7.0] "Hat sich leider in den letzten paar monaten verschlechtert. Hoffentlich sehen wir in naher zukunft den alten Samoa Joe wieder."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Knurkselwrote on 23.09.2009:[8.0] "Hat deutlich an Gewicht zu- und an Leistung abgenommen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: DJ MaSchwrote on 12.09.2009:[9.0] "Super In-Ring Worker. Mit einer unglaublichen Intensität ausgestattet, bringt er dazu noch das nötige Charisma mit. Seine Promos erfüllen auch ihren Zweck. Leider muss ich einen Punkt abziehen, da es TNA nicht geschafft hat ihn nach dem World Title Run nachhaltig interesant zu halten. Das neue Gimmick ist bissher auch nicht wirklich das Gelbe vom Ei."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Desperadowrote on 18.07.2009:[8.0] "Toller Wrestler, der klasse Matches zustande bringen kann. Auch sein Mic-Work ist gut. Schauspielerisch ist Joe in meinen Augen allerdings weniger begabt und oft haben seine Matches wegen zu großer Dominanz auch einen gewissen Boring-Faktor. Seinen Heel Turn sehe ich zunächst mal positiv, denn das macht ihn wieder interessanter. Ich hoffe mal er darf auch ein paar Heel Promos halten und wird nicht nur als Kurts Aufräumer eingesetzt. Eine längere World Title Fehde gegen AJ würde sich demnächst anbieten, hoffe mal die TNA Booker sehen das ähnlich."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Christino Hardcorewrote on 07.07.2009:[10.0] "Meiner Meinung nach, ener der besten Wrestler Weltweit. Ich hoffe er darf sich auch einmal den WWE-Titel umschnallen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Ryklon Stephenswrote on 05.07.2009:[7.0] "Mein einstiger Lieblingswrestler ist nicht mehr viel mehr als eine Randerscheinung. Ich finde es traurig zu sehen das aus dem so mit Vorschuss-Lohrbeeren getadelte Wrestler zu einem von vielen geworden ist."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: JohnnyCashwrote on 05.07.2009:[10.0] "Ich denke, wenn es bei jemand im aktuellen Amerikanischen Wrestling-Markt verdient hat 10 Punkte zu bekommen, dann ist es Joe. Er ist einfach ein komplettes Paket."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Tomkowrote on 02.07.2009:[8.0] "Ich mochte Joe immer sehr gerne als RoH Champion oder in seinen anderen Rollen im Indy Bereich, aber seit den letzen Jahren im Mainstreambereich ist mir sein Stil zu eintönig geworden. Sicherlich ändert sich ein Wrestler, wenn er vom Indy in den Mainbereich geht, aber trotzdem gefällt mir Joe gar nicht mehr."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Blade Bourdeauxwrote on 24.06.2009:[7.0] "Update: Mit seiner neuen Ausrichtung kann ich nicht viel anfangen. Man muss einfach mal sehen, dass TNA jetzt Stars braucht die man sehen, oder besser für die man Geld ausgeben möchte. Das sehe ich derzeit nicht und daher ist er in meinen Augen einen Schritt zurück gegangen in seiner Entwicklung. Klar, im Ring ist das immer noch gutes Handwerk aber das zieht keinen mehr groß vom Hocker."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: mugel 187wrote on 22.06.2009:[10.0] "Was soll man sagen, was nicht schon längst gesagt wurde Joe ist Pro Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Big Daddy Swrote on 01.06.2009:[9.0] "An und für sich ein guter Wrestler, dem man das "Nation of Violence" Gimmick komplett abnimmt. ich hoffe nur TNA hat sich das gut überlegt, ein Stable voller ausgediehter ehemaliger Hardcore Champions zu schaffen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Jar Jar Binkswrote on 10.05.2009:[9.0] "Muss ihm für das aktuelle Nation of Violence Gimmick, einen Punkt abziehen... Nichtsdestotrotz ein geniales Powerhouse der sich unglaublich schnell bewegen kann für seine Masse und die tollsten Matches zeigt."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Die Gurkewrote on 08.05.2009:[9.0] "Samoa Joe ist auf jeden Fall eine Präsenz im Ring, wie kaum jemand sonst. Ich hoffe nur das tatsächlich Tazz als sein Mentor auf der Bildfläche erscheint, ansonsten wird sein jetziges Gimick auf jeden Fall ein ganz schlechtes Kapitel seiner Karriere."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Weihnachtsmannwrote on 04.05.2009:[4.0] "Was soll das? Verhält sich wie ein Heel soll aber Face sein? Dazu noch die alberne Bemalung und das ebenso alberne Getue mit dem Messer. Eigentlich schade, denn da ist Potenzial für mehr."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Royal Rambowrote on 20.04.2009:[8.0] "Normalerweise würde ich ihm glatt die volle Punktzahl, aber momentan ist es einfach nicht das wahre. Scheiss Gimmick, dicke Wampe. Russo, gib Joe sein altes Gimmick wieder und dann passt es."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: gerybundy68wrote on 11.04.2009:[9.0] "Dachte als ich ihn zum ersten mal sah - der ist doch wohl ein Witz. Tja, so kann der erste Eindruck täuschen. Kräftig, erstaunlich beweglich, technisch absolut Top und ein klasse Finisher der absolut glaubwürdig wirkt. Einziges Manko , sein Mic- Work. Dafür ein Punkt Abzug."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: DerSchengstwrote on 28.01.2009:[8.0] "Genial zu ROH zeiten, auch bei TNA noch sehenswert"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Father Nelsonwrote on 18.01.2009:[10.0] "he looks so untrained. And thats the amazing thing!"
Rating: 10.0
Sentiment: 0.7500000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Atze20wrote on 02.01.2009:[8.0] "Ganz am Anfang, als ich anfing TNA zu schauen, hat er mir sehr gut gefallen. Im RIng wirklich genial und das bei seiner Masse. Am Mic ordentlich und auch recht charismatisch. Aber mit der Zeit wurde er einfach langweilig. Sein langer Titelrun, war dermaßen schwach, dass ich für TNA nur noch bei den PPVs vorbeigeschaut habe. Ein richtigig, grosser Topstar wird Joe wohl nie sein. Dennoch ein toller Athlet"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ScrWwe94wrote on 22.12.2008:[9.0] "Macht akribische Moves und das mit seinem Gewicht, ist das ein Wahnsinn."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Flame286wrote on 09.12.2008:[6.0] "Ich mag seinen Stil nicht besonderst. Gute Ausstrahlung aber es fehlt das gewisse etwas."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: King of Queenswrote on 03.12.2008:[9.0] "Für mich der glaubwürdigste Wrestler der Welt. Mehr sage ich dazu nicht. Dem kaufe ich wirklich alles ab."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Rattlesnakewrote on 30.11.2008:"Woran liegt es nur, dass ich kaum ein Match von ihm kenne, welches mich begeistern kann? Aufgrund der etwas merkwürdigen Ausstrahlungspolitik im deutschen Fernsehen verfolge ich Wrestling seit Jahren nicht mehr so intensiv; wenn man sich an Sendeplätze gewöhnt, kann man bald feststellen, dass sich diese nach hinten verschieben etc. Nun ja, egal ... die Matches, die ich bei youtube von ihm gesehen habe, bestehen aus wenigen guten Aktionen und sonst nur sehr stiffen Tritten und Schlägen. Ich verstehe den Hype um ihn nicht - in Matches gegen Styles oder Daniels wissen eher die beiden Letztgenannten zu überzeugen. Lass mich gern vom Gegenteil überzeugen, aber ausser Chops und Kicks habe ich noch nicht viel von ihm gesehen. Seine Figur im Übrigen würde ihm bei mir keinen Punktabzug bringen; ich kann eher die Steroid-Monster nicht mehr sehen."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Eddiewrote on 28.11.2008:[10.0] "Joe ist einfach ein Ausnahmetalent. Seine Zeit bei ROH ist einfach unglaublich genial, und seine TNA Zeit mindestens genauso gut. Nur sein Run als Champ war nicht das gelbe vom Ei, aber dafür kann ja er nichts. Technik, Submission, Brawling, Stiffness, High Impact, er kann einfach alles mitgehen, und wenn ein so schwerer Mann mit einem so geilen Tope Con Hilo angeflogen kommt, verdient das einfach volle Punktzahl, 10 Punkte."
Rating: 10.0
Sentiment: 0.16
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Perry Coxwrote on 27.10.2008:[10.0] "Erstaunliche flexibilität im Ring, trotz seiner Masse!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Blazewrote on 25.10.2008:[8.0] "Samoe Joe gehörte bei ROH zu den ganz großen genauso wie auch bei TNA. Wrestlerische Fähigkeiten besitzt er allemal und das er mit diesem Körperbau und Gewicht zu solchen Aktionen wie einem Corkscrew Plancha in der Lage ist, sprechen nur noch mehr für sein Können. Zu seinen Leistungen am Mikro kann ich sagen zufriedenstellend, letztendlich überwiegt hier eh das wrestlerische. Einen augefallenen Look bringt er auch noch mit, also was soll da noch schief gehen. TNA hätte ihm nur früher die World Championship geben sollen. Nach all diesen Positiven Dingen muss ich sagen, dass der Funke bei mir aber noch nicht ganz übergsprungen ist."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: DirtiestPlayerwrote on 17.10.2008:[7.0] "Wrestlerisch sicher einer der besten bei TNA. Aber Mic-Work und Auftreten sind meiner Meinung nach verbesserungswürdig. Ohne ihn beleidigen zu wollen, aber für mich sieht er optisch eher aus wie der Dicke aus "Eis am Stiel" als wie ein World Champion. Vielleicht sollte er mal was an seiner Kleidung ändern."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: caterwrote on 10.10.2008:[10.0] "Hat in der jeweiligen Promotion einige bahnbrechende Mateches auf die Beine gestellt. Dass er auch lange Distanzen gehen kann, hat er bei Joe vs Punk gezeigt, aber seine Stärke sind ehr kürzere, dafür aber extrem intensive Matches, die in der Regel immer schön anzusehen sind. Mit solchen In-Ring-Skills und so einer Erscheinung wie Joe sie hat, könnte er auch stumm sein und würde trotzdem überzeugend rüberkommen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MrWrestlingwrote on 02.10.2008:[9.0] "Ich finde ihn super, aber vor seinem Titelrun hat er mir irgendwie besser gefallen."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Mathias Rekaschwrote on 24.09.2008:[8.0] "Joe ist wirklich ein beeindruckender Superstar. Ist man zunächst von seinem Äußeren etwas skeptisch, so zeigt er im Ring, doch sehr schnell sein Können. Er ist durchaus schnell und beweglich und wrestlet einen sehr stiffen Style, der im Mainstream noch etwas neu ist, mir persönlich aber sehr gut gefällt. Als Champion gefällt er mir im Moment allerdings nicht so richtig, was jedoch nicht an ihm, sondern eher an der Tatsache liegt, wie man ihn zur Zeit einsetzt. Man sollte sich wieder zu dem Charakter zu seinen Zeiten als X-Division zurück erinnern. Dann wird er auch wieder mehr glänzen können. Auf jeden Fall ein Star der Zukunft."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Fanthaizawrote on 21.09.2008:[8.0] "Einer der besten bei TNA. Im Ring ist er überragend, und am Mic solide teilweise etwas zu "intensiv". Leider ist irgendwie die Luft raus seit er dem Title hat, hat ein wenig was an Unterhaltungswert verloren aber trotzdem noch einer die TNA nach vorne bringen!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Akkuswrote on 16.09.2008:[7.0] "Fand ihm an Anfang sehr gut, doch durch seinen Titel Run hat er einiges verloren und unterhält mich nicht mehr so, trotzdem einer der besten aus TNA."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Clevermindwrote on 07.09.2008:[8.0] "Zur Zeit einer meiner klaren Favoriten bei TNA. Kommt durch seine Masse durchaus glaubhaft als ME durch, und strahlt auf eine ganz eigene Weise enorm Charisma und Sympathie aus. Im Ring erstaunlich gut für einen Mann seines Kalibers. Aber als er noch mehr im "Submission Machine" Stil kämpfte, hat er mir besser gefallen. Trotzdem endlich ein Champion und Headliner, der nicht aus dem Baujahr "WWE" stammt. "Are you mad? Go ahead, fire me, I don't care". Einfach cool. Jetzt mal 8 Punkte, aber da is noch reichlich Luft nach oben da"
Rating: 8.0
Sentiment: -0.1375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Typicalwrote on 06.09.2008:[9.0] "Heutzutage der beste Somoaner im Wrestling-Biz. Die Leute, die meinen, ihm schlecht zu bewerten nur weil er etwas mehr Masse hat, sollten mal offener für die Welt werden. Dikriminierung oder Neid ist kein Grund von einer neutralen Bewertung abzuweichen. Der Grund warum er sich als Champ nicht weiterentwickelt liegt an TNA, es ging bei ROH, also warum nicht bei TNA? TNA konzentriert sich zu sehr auf die EX-WWE'ler und die Midcard. Im Ring ne Glatte 10. Einen Punkt abstrich wegen dem Teils schlechten Mic Work."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Babuswrote on 05.09.2008:[8.0] "Natürlich mit seinen beeindruckenden wrestlerischen Fähigkeiten, seiner Stiffness und seiner Overness die Zukunft von TNA. Aber auch wenn ich es liebe seine Matches zu sehen, finde ich Joe abseits des Ringes ziemlich langweilig. Seine Promos magen für den ein oder anderen zwar "real" und "glaubwürdig" sein, für mich ist das aber eher eine schwache Ausrede dafür, dass er rhetorisch maximal Durchschnitt ist."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: GeneralUwewrote on 27.08.2008:[6.0] "Im Ring natürlich sehr, sehr stark. Aber es gibt doch gravierende Schwächen am Mic-und die lassen sich nicht wegdiskutieren. Zudem wird er bei seiner Masse nicht lange sein hohes In-Ring-Niveau halten können. Die Zeit wird zeigen, was aus ihm wird."
Rating: 6.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Wise Warriorwrote on 22.08.2008:[6.0] "Wrestlerisch definitiv gut, aber er bietet einfach nicht das komplette Paket. Er ist einfach wenig unterhaltsam: ein fetter Kerl mit anhaltend schlechter Laune. Zudem stagniert er in der TNA und entwickelt sich in keiner Richtung weiter."
Rating: 6.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: mdbnasewrote on 13.08.2008:[10.0] "Da gibt's nicht viel zu sagen, einfach Top in allen Belangen. Ich seh ihn immer gerne und er zeigt absolut überzeugende Matches! Für mich der einer der besten Indie-Wrestler!"
Rating: 10.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MVPKennedywrote on 11.07.2008:[6.0] "Da muss ich Dave Concordio zu 100% zustimmen. Mir gefällt sein Stil nicht und Charisma sehe ich auch fast keines. Natürlich ein guter Wrestler, aber nicht mein Fall."
Rating: 6.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ecw foreverwrote on 08.07.2008:[10.0] "Einer der wenigen Wrestler den ich 10 gebe. Mic Work ist gut und seine Ring Skills genial. Es ist einfach so wenn ich Samoa Joe sehe, bin ich gebannt, da bin ich total fokussiert. Würde ohne Frage sagen einer meiner Faves."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Joeevil123wrote on 27.05.2008:[10.0] "Für mich mit Bryan Danielson der beste Wrestler der Welt!  Er hat von A - Z alles."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Neuhofwrote on 07.05.2008:[10.0] "Einer der besten der Welt und der zurzeit wohl beste Wrestler bei TNA. Das Total Package."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Dave Concordiowrote on 06.05.2008:[6.0] "Fett, overrated, Samoa Joe. Ich halte es für einen fatalen Fehler von TNA ihn als Zugpferd für den Mainstream zu benutzen. Joe hat kein unterhaltsames Gimmick und ist schwach am Mic. Er ist def. sympatisch, aber auch völlig overrated."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: LexLuger4everwrote on 28.04.2008:[10.0] "Ist im Ring zu ganz erstaunlichen Aktionen im Stande, die er insbesondere in den X-DivisionTitle Matches ein ums andere Mal gezeigt hat! Mir gefällt auch, dass Joe ein Wrestler ist, der im Gegensatz zu anderen Leuten noch "menschlich" ist und auch mal verlieren kann, was ihm aber dennoch nicht schadet. Da er sich am Mic zuletzt auch stark verbessert hat, muss ich die Note nun auf 10 aufwerten."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Amurebkuwrote on 18.04.2008:[10.0] "Ein toller Wrestler. Zielstrebig und Kompromisslos. Endlich ist er Heavyweight-Champion. Das hat er lange verdient. Ich kann mir nicht helfen, aber TNAW ist einfach zu dumm aus ihren tollen jungen Talenten etwas zu machen. Alles dreht sich nur um Kurt Angle und Co. Ein großer fehler. Joe hat eine Menge drauf und beweist das immer wieder."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[9.0] "JoeMoe MoJoe ist einer der besten Big Men auf dem Planeten. Da gibt es kein "Der ist nicht durchtrainiert! " Wrestlerisch ist er einfach ne Wucht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Dave525wrote on 17.04.2008:[10.0] "Für mich hat er einfach alles das, was Pro-Wrestling ausmacht. Absolute wrestlerische Klasse, Charisma und er wirkt extrem glaubwürdig. Außerdem kann er fast jedes Tempo mit seiner Statur mitgehen. Was mich bei ihm aber am meisten beeindruckt ist seine Intensität. Ich kenne wirklich keinen anderen Wrestler, der seine Moves, aber auch Interviews mit soviel Intensität durchzieht wie Joe."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: real americanwrote on 14.04.2008:[10.0] "Der beste den TNA im Moment hat, super im Ring da können auf der Welt nur wenige mithalten, am Ring besticht er immer mal wieder mit feinen sehr intensiven Promos, die wachrütteln, Charisma hat er auch und seine unvorteilhaften genetischen Vorraussetzungen kann man ihm nicht ankreiden. Endlich und vollkommen verdient zum ersten Mal TNA World Heavyweight Champion."
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Instant Classicwrote on 13.03.2008:[6.0] "Gut im Ring, Gut am Mikrofon, ragt allerdings nirgends besonders heraus."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: The Meanbeastwrote on 04.03.2008:[10.0] "Aus meiner Sicht gesehen der vollkommenste Wrestler! Beherrscht fast alle Stilrichtungen, ist trotz seiner Statur unglaublich schnell und beweglich und besitzt ein Move-Repertoire, ein welches auch mir im Training zum Vorbild geworden ist! Ich finde ihm einfach nur klasse!"
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Manuelwrote on 30.01.2008:[10.0] "Einer der besten Wrestler der TNA neben Daniels und Styles."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: jimpanse1980wrote on 27.01.2008:[10.0] "Zusammen mit CM Punk und B. Danielson die Zukunft des Wrestlings. Er kann sowol Mat-Wrestling als auch Highflying-Action und ist wenigstens kein Steroid-ausgebauter-Luger-lookalike. Was er kann wenn man ihn lässt zeigen die Matches mit AJ Styles und/oder Christopher Daniels. TNA sollte mal endlich den Mut aufbringen ihn ganz nach oben zu pushen. Heutzutage sind authentische Wrestler gefragt, keine Freaks. Und wenn Joe nicht authentisch ist, wer dann?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Joe710wrote on 27.01.2008:[10.0] "Ein Wrestler der neuen Generation. Und würde man ihn richtig aufbauen könnte mit solchen Leuten eine neue Ära starten. Wer will den schon noch aufgepumpte Drogenmonster wie Chris Masters sehen. Ich habe solche Leute jedenfalls langsam satt. Noch dazu ist Joe meines Erachtens einer der besten Wrestler der Welt und mit seinem durchaus harten Stil hat er mich schon längst in seinen Bann gezogen. "Wrestling is ja nur Fake". Ein Satz den jeder Wrestlingfan schon zu oft gehört hat. Würde solche Leute wie Joe an der Spitze stehen, würden einige Kritiker schnell verstummen."
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ghostwrote on 07.01.2008:[8.0] "Top-TNA-Star welcher nicht auf eine WWE Karriere zurückblickt - also definitiv ein Mann der Zukunft. Definiert vor allem durch seine "Realness" und direkter, ehrlicher und aggressiver Art - ist da etwa ein gewisser Stone Cold das Vorbild.. ? Fehlt aber vielleicht noch etwas der "Feinschliff" und noch eine eindeutigere Persönlichkeit."
Rating: 8.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: AnFuwrote on 05.01.2008:[10.0] "Joe ist einer der coolsten und besten Wrestler! Ein super Techniker, ein symphatischer Kerl (außerhalb des Rings^^) , bei ROH klasse, bei TNA wird er aber nicht ordentlich weitergepusht und stagniert daher ein bisschen. Seine Matches sind aber fast immer ****+ und daher ist die Note klar!"
Rating: 10.0
Sentiment: 0.29166666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MA Excellentwrote on 29.12.2007:[8.0] "Samoa Joe gehört zu den besten Wrestlern der Gegenwart und braucht Vergleiche mit Umaga, Rikishi und anderen Samoanern mit Sicherheit nicht zu scheuen. Seine Matches sind interessant, immer stiff und auf hohem Tempo. Auch seine Promos sind sehr intensiv und autentisch. Was mir noch zu einer 1 fehlt, ist der große Durchbruch. Da nutzt das Gimmick der Submission Machine wenig, wenn die Machine immer nur den X-Division Belt gewinnt. Daher könnte ein längerer Run als TNA Wold Champion der Durchbruch sein, jedoch führt der Weg zum absoluten Top-Status wohl über die WWE, auch was die Geltung innerhalb von TNA anbetrifft."
Rating: 8.0
Sentiment: -0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: D-Stylewrote on 07.12.2007:[10.0] "Ein Mann der das Business liebt; er kämpft mit viel Einsatz, versteht was von Stiffness und lieferte etliche geniale Matches. Joe gehört an die Spitze. Note 1"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Steven McWheelerwrote on 07.12.2007:[10.0] "Echt klasse Wrestler, aber ich finde er ist zu stiff, hat mittlerweile mehr als passables MicWork und nicht mehr so wenig Charisma, finde ich! Er sollte vll. mal ein paar Kilo am Bauch abspecken, dann würde er meiner Meinung nach noch besser over kommen, das wäre aber auch schon das einzige! Seine Promo gegen Hall und Konsorten hat mich so begeistert, dass er ab sofort die Note 10 sein eigen nennen darf^^"
Rating: 10.0
Sentiment: -0.33482142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: shannonmoorewrote on 02.12.2007:[10.0] "Irgendwie habe ich das Gefühl das man ihn nicht pushen will dabei ist er die Zukunft von TNA hat alles, kann alles und wird es hoffentlich noch gepushed. LexLuger4ever es nervt mich richtig dass du bei jedem Wrestler noch dazuschreibst das du Cena nicht leiden kannst. Wir haben es jetzt verstanden, ich glaube der Mann hat in den letzten Monaten genug bewiesen dass er es kann das solltest du mal einsehen. Im Gegensatz zu Lex Luger hat er das können und die Mic Stärke um ein richtiger Maineventer zu sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Lorendorwrote on 27.11.2007:[10.0] "Samoa Joe zieht einfach jeden noch so schlechten Wrestler mit. Anfangs dachte ich er wär wieder einer der Wrestler die ihre Masse ungekonnt einsetzen um alles zu squashen was groß und fett Jobber auf der Stirn stehen hat. (kannte ihn vor TNA nicht) Aber das war zum glück ein Trugschluss. Joe is TNA"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Baszdmegwrote on 15.11.2007:[10.0] "Großartiger, sehr vielschichtiger Wrestler. Micskills reichlich überbewertet, passen aber. Geht bei TNA kaputt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Benny110106wrote on 28.10.2007:[8.0] "Wohl einer der härtesten Wrestler im Ring. Ein kommender World Champ. In 10 Jahren bestimmt eine Legende dieses Sportes"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Jigsawwrote on 13.10.2007:[10.0] "Hatte eine unglaubliche Zeit bei RoH mit dem bis dato besten Title Run. Wird hoffentlich irgendwann zurückkehren."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Jericho Onewrote on 04.10.2007:[10.0] "Joe ist eindeutig der Top-Mann der Zukunft. Er hat Charisma und ein unglaubliches Movearsenal für sein samoanischen Körper! Außerdem kann er durch sein super Micskill überzeugen!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Nick Toxicwrote on 23.09.2007:[10.0] "JoeŽs Gonna Kill You! Der Mann hat alles was ein guter Wrestler braucht: Können, gutes Mic-Work und Charisma. Einfach nur top, nur hat er in der WWE nix verloren ( weil der da wohl nix mehr zeigen darf, was ihn ausmacht^^ )"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Bullit69wrote on 16.09.2007:[6.0] "Mag ja wirklich klasse sein... aber hat es sich ziemlich einfach gemacht fast 130 Kg zu wiegen!"
Rating: 6.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Templeton Peckwrote on 06.07.2007:[8.0] "Ich kann Joe zwar absolut nichts abgewinne, aber der Mann ist zweifellos eine ganz grosse Nummer im Ring und deshalb unmöglich schlechter als mit einer Zwei zu bewerten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: ShaneOwrote on 28.06.2007:[8.0] "Stiffer, guter Worker. Bei richtigem Einsatz die Zukunft von TNA."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: MGStylezwrote on 24.06.2007:[10.0] "EIn Gott im Ring, ein Halbgott am Mic! Noch ein bis zwei Jährchen und er ist die absolute Nummer!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Trevedaswrote on 24.06.2007:[8.0] "Im Ring Klasse, allerdings mangelt es ihm an MicWork. Charisma hat er in meinen Augen auch nicht so viel und ehrlich gesagt wirkt er auf mich eher wie ein Riesenbaby als wie ein Wrestler, weswegen ich seine Matches bzw. seine moves nicht gerade Ästhetisch finde. Aber für das wirklich sensationelle InRing Können gibt es noch eine 8"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Masterpiecewrote on 24.06.2007:[6.0] "Die Ringleistungen sind gut ... aber mehr hat Samoa Joe auch nicht zu bieten!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: STK1983wrote on 24.06.2007:[10.0] "Auf Knie vor den besten Indy Worker der USA. Bei Something Prove der IWA-MS war er einfach nur Hammer. Stiff Stiff Stiff"
Rating: 10.0
Sentiment: -0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Aaronwrote on 24.06.2007:[10.0] "Bei ROH besser als bei TNA! Trotzdem super In Ring Skills für sein Gewicht! Joe's gonna kill you!"
Rating: 10.0
Sentiment: 0.5208333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Sebastian Bogowrote on 24.06.2007:[10.0] "An alle die hier Joe wegen seiner eher fülligen Figur schlecht bewerten: Ich finde das macht diesen Ausnahme Wrestler sympathisch und eben auch menschlich. 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Undertaker13wrote on 24.06.2007:[4.0] "Hat keinerlei Charisma und auch keine gute Figur. Wegen seines guten Wrestlings im Ring bekommt er noch eine 4."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Hunter2007wrote on 24.06.2007:[10.0] "Samoa Joe kann die stärksten Tricks und zeigt in keinen seiner Aktionen Schwäche. Er ist die Zukunft des Wrestlings!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Hit Manwrote on 24.06.2007:[4.0] "Ist für mich überbewertet. Außerdem ist er einfach nicht durchtrainiert. Erinnert mich an die meisten Wrestler der 80Žer oder der heutigen "Kirmeswrestler"."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Für Indy Wrestling reichts für Pro Wrestling nicht... Jemand der so eine unqualifizierte Aussage tätigt hat in seinem ganzen Leben wohl noch nie eine Independent Show gesehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: Anti-Championwrote on 24.06.2007:[10.0] "Auch wen er mir irgendwie nicht gefällt kriegt er eine 1. Seine Matches und sein Micwork sind Top."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: metaltyrantwrote on 24.06.2007:[10.0] "Bester Mainstream-Wrestler der Gegenwart, braucht ähnlich wie Benoit kein überragenes Mic-Work."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=676&gimmick=Samoa+Joe
Comment: therockingkingwrote on 24.06.2007:[10.0] "Samoa Joe ist der perfekte Worker einer neuen Wrestling-Generation. Sein Stil trifft genau die Zeit. Er hat brutal wirkende, populäre MMA-Einflüsse (seine Choks, seine Knieschläge, seine Kicks) und zeigt darüber hinaus spektakuläre High-Risk-Manöver (seine Dives übers Top-Rope lassen mir immer wieder den Atem stocken). Dazu hat er ein gutes Mic-Work und strahlt eine Atmosphäre der Ernsthaftigkeit und Realität aus, er wirkt wie ein "richtiger Fighter". Das ist eine sehr gut tuende Alternative zum"
Rating: 10.0
Sentiment: -0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: Wrestling Foreverwrote on 22.11.2024:[9.0] "Seit Jahren eine Top Joshi mit unfassbarer Kraft und dann auch noch ordentlicher Beweglichkeit. Dazu bildet mit der sympathische Yuu das erfolgreiche Tag Team, Team 200kg."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: rgpickwrote on 22.09.2024:[10.0] "Easily one of my favorite wrestlers since I first saw her a few years ago. If you were putting together a wrestler in a lab you'd be hard pressed to make someone better than Hashimoto. Awesome power, scary acceleration, and surprising agility in one package. The closest person I can compare her to would be Jeff Cobb but Hashimoto is her own person. Her matches are just a joy to watch."
Rating: 10.0
Sentiment: 0.3446969696969697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: Zak22wrote on 16.06.2024:[8.0] "Strong, hard-hitting, excellent wrestler. She maybe doesn't have the showmanship but her in-ring work is excellent. Suplex city comes to Joshi wrestling."
Rating: 8.0
Sentiment: 0.8111111111111112
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: Mugendaiwrote on 20.07.2023:[9.0] "Absolutely spectacular, perhaps the best suplexer in joshi ever. You can't go wrong with a Chihiro Hashimoto match."
Rating: 9.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: ShineyxDiverwrote on 15.07.2022:[9.0] "I love Chihiro Hashimoto. Absolutely adore this woman, and is unequivocally one of the best wrestlers out there. Even from her first match you could tell in her battles with Aja Kong and Meiko Satomura that she was gonna be incredible."
Rating: 9.0
Sentiment: 0.5700000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: Golden Loverwrote on 14.07.2021:[9.0] "She's absolutely brilliant, such great, simple, powerful offence that always looks good and then there's her German suplex which is genuinely a thing of beauty. I thought I didn't have time to add anymore wrestling to my already enormous "to watch list" but she has grabbed my attention over the last month with some excellent matches and a Great feud with Momono."
Rating: 9.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: teenagehonvedfanwrote on 24.06.2021:[9.0] "Gets ignored due to her looks (she's not an idol) and iirc she had a drug arrest years back which is basically the worst crime a wrestler in Japan can commit. Pretty much why she's done little outside Sendai Girls where Meiko has pretty much booked it into the abyss in terms of exposure. A fantastic powerhouse, capable of pretty much doing anything. Hopefully GAEAISM will give her a little more exposure with non-Japanese watchers so she can get bookings elsewhere."
Rating: 9.0
Sentiment: 0.056249999999999994
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: Kungwrote on 09.05.2021:[8.0] "Chihiro Hashimoto was the reason I decided to watch Sendai Girls, and I have to say that I'm impressed. Expect her rating to go up over time!"
Rating: 8.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: ElPolloLocowrote on 18.08.2020:[8.0] "Four years in the business? She's ridiculously good, sometimes even mind-boggingly so. The only thing she needs is more exposure both in other promotions and around the world, not so much because she needs the experience but because more people need to see how truly good she is."
Rating: 8.0
Sentiment: 0.35357142857142854
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: TylerWhitewrote on 24.07.2020:[9.0] "Chihiro Hashimoto gehört für mich zu den derzeit absolut besten und herausragendsten Joshi-Wrestlerinnen und ist auch zurecht das Face von Sendai Girls. Sie ist sozusagen das weibliche Pendant zu Tomohiro Ishii und dass, obwohl man es sich schwer vorstellen kann, im allerbesten Sinne, denn sie hat den Körper und die in-Ring Härte eines Ishii, sieht dabei aber immer noch super aus. Wie Ishii ist sie mit diesem Stil fast schon ein Garant für gute Matches, im Gegensatz zu ihm bekommt sie aber auch den Push, den sie verdient hat und hält seit Jahren jetzt schon, mit mehreren kurzen Unterbrechungen, den Sendai Titel. Dabei hat sie natürlich die besten Herausfordererinnen und jede Titelverteidigung bei den Big Shows ist eigentlich sehenswert. Sie passt mit ihrem Stil einfach perfekt zur sehr sportlichen Ausrichtung von Sendai Girls und gehlört, nicht nur dort, zu meinen absoluten Lieblingswrestlern."
Rating: 9.0
Sentiment: 0.17777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: NEVERoverweightChampionwrote on 11.07.2019:[8.0] "Hashimoto is one of my favorite joshi wrestlers. Despite doing this for only 3 years she already wrestles like she has done this for way longer than that. All of her offense look great, the strikes are impactful, her grappling is obviously on point thanks to her background in (legit) wrestling, and she has awesome suplexes. She doesn't have any major flaws or anything, she just needs to keep going, gain more experience and continue to be consistent to cement herself as one of the best in the history of joshi pro wrestling."
Rating: 8.0
Sentiment: 0.43125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: Makai Clubwrote on 16.02.2019:[9.0] "One of my favourite wrestlers today. Easily one of the best and more consistent champions when it comes to having a great match. With only being in wrestling for 3 years, it's amazing how she went from the best rookie to best champion with seamless transition which most don't. So unique offensively too which makes her even better. Love her."
Rating: 9.0
Sentiment: 0.5398809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: HeadCheesewrote on 07.12.2016:[8.0] "Chihiro Hashimoto is very good and shows a lot of potential for being a rookie. I am excited to see her grow as her experience grows. Her two title matches she has had have been very good."
Rating: 8.0
Sentiment: 0.54875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=17195&gimmick=Chihiro+Hashimoto
Comment: LooseExplosionwrote on 21.11.2016:[9.0] "As far as rookies go, I can't remember someone with a hotter start and faster rise than Hashimoto (well, besides Matt Riddle lol). Hashimoto has great strength, speed, and technical abilities. Under the leadership of Satomura, Hashimoto could become one of the greatest joshi of all time. Top, top talent."
Rating: 9.0
Sentiment: 0.5285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: ChocoboSagewrote on 04.01.2025:[9.0] "Shoko has evolved in the past couple of years, going from her Big Kaiju persona focusing on lucha style. To being a versatile player in TJPW. Having really fun and comedic matches with everyone. Her series of matches with Hyper Misao is an annual staple of TJPW now, and she makes everything work. She may not be a main eventer anymore, but she's an absolute key part of the promotions continued success. Her recent match as Shoko Nakajama, after drinking snake poison was amazing and shows her range as a performer. She can work any match anywhere on the card and that's something people just don't appreciate."
Rating: 9.0
Sentiment: 0.14629629629629629
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: A Lexwrote on 30.09.2024:[10.0] "Shoko always puts on a fun match and has had some of the best matches in TJPW. She has a great gimmick too! What's not to love about the Big Kaiju?"
Rating: 10.0
Sentiment: 0.5599999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Aspionwrote on 22.07.2024:[9.0] "(Sorry english is not my firtst language) This is one of persons for who im watching TJPW, Im just cant wait for her fights she is unexpectly good and dynamic in ring.. Also its still funny for me that her gimmick is kaiju when she looks that good i mean its kinda hillarious"
Rating: 9.0
Sentiment: 0.11964285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: UBVenuswrote on 28.06.2024:[10.0] "Shoko is so damn good she is a jack of all trades. She can put on amazing emotional stories for the big events, she can present herself as a strong to champ whenever the opportunity arises and she can play the comedy goofball character perfectly. Not to mention her abilities as a professional wrestler are amazing. Her moveset has so much depth, and in combination with her size, speed and athleticism, The Big Kaiju can put on some of the best matches in all of TJPW. Out of the four pillars, Shoko probably ranks 2nd right behind Yamashita for me. Also her charisma is off the charts considering she's in a company that is full of wacky hilarious characters. Such a fun watch every time."
Rating: 10.0
Sentiment: 0.23345238095238097
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: somerandommarkwrote on 23.06.2024:[10.0] "The Big Kaiju is so smooth, her moves are so clean, and full of personality and happy energy! Every time I watch a match from her, my day gets better. She can do big-time, tense main event matches just as well as she can do light-hearted comedy matches, she's truly versatile in a way others struggle to be. Even when she's just outside the ring for a tag match, she's so 100% commited to the character she plays, she can truly steal the show with just her expressive and fun mannerisms! Also, the little "Eeya" noise she makes on her dives and 619s gives me so much life. She is one of the best wrestlers in the world!"
Rating: 10.0
Sentiment: 0.3425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: edgyfrwrote on 01.04.2024:[10.0] "I have never seen Shoko Nakajima miss a move, she always pulls the most clean wrestling in any joshi. Her moveset is insane, she has a lot of personality, she trully is the best joshi of this generation"
Rating: 10.0
Sentiment: 0.21666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Machinedwrote on 22.03.2024:[9.0] "Most might highlight how fast she is which is very, but I also want to point out of crazy good her mat/chain wrestling skills are even though she doesn't look like she is the type to pull that off : she does that in a pretty effortless way. Obviously her move set is awesome and cool to watch, ranging from Northern Lights suplexes to suicide dives."
Rating: 9.0
Sentiment: 0.2888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Neon Aussiewrote on 07.03.2024:[7.0] "Fun move set, interesting gimmick. I think Shoko Nakajima is good but I feel like these ratings are exaggerating how good she really is. She brings the best out of everyone, she's able to pull off a nice wide range of moves. Solid all around performer"
Rating: 7.0
Sentiment: 0.44000000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: MegaSPSwrote on 24.01.2024:[10.0] "shoko is probably my favorite high speed-type wrestler. shes very high energy and fun to watch no matter what role shes in. she could be having a very intense technical match with rika tatsumi or she could be causing the most absurd chaos ever with hyper misao and thrives at both. shes been on top in tjpw and has more than proven that she deserves the position on top. shoko is definitely one to seek out if you havent yet."
Rating: 10.0
Sentiment: 0.244
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Wrestling Foreverwrote on 14.01.2024:[9.0] "Shoko Gear könnte auch aus einen Ghibli Film sein wie Princess Mononoke. Auf ihrem Insta Account habe ich gesehen das sie großer Godzilla Fan ist. Eine Top Joshi bei TJPW."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: teenagehonvedfanwrote on 24.12.2023:[6.0] "She's fine. By far the weakest of TJPW's pillars but if given the right opponent she can still put on a good match. When not, she's annoyingly inconsistent. There's very little to truly nipick her one, but she just isn't a good as Yuka, Miyu or Mizuki. Hell, Itoh, Miu and several others are more consistent than she is."
Rating: 6.0
Sentiment: 0.19086309523809525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: ThreedomLegacywrote on 11.11.2023:[5.0] "While she's able to have good matches from time to time with some of the best in TJPW, more often than not Shoko Nakajima is inconsistent on most days. Her last Princess of Princess Championship reign was mostly a miss outside of the pillar matches, showcasing in many ways that she is the worst of the four. She's a fine wrestler but is on a level that isn't of the best ever -- as her overall rating would illustrate."
Rating: 5.0
Sentiment: 0.35512820512820514
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Animagowrote on 01.09.2023:[10.0] "Shoko Nakajima is just one of the best and most important wrestler TJPW ever had the fortune to have in their roster. She was there from the beginng, contributing to the development of the company with growing as a wrestler. Her in-ring work is simply excellent, top mat-wrestling skills, and great athleticism that mesh so well her lucha inspired wrestling elements and more traditional japanese style wrestling. She is such a likeable underdog that can put the fight to anyone in spite of her small size. She is also very giving to rookiees, always willing to bump and sell for them."
Rating: 10.0
Sentiment: 0.37692307692307697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: theshelfableswrote on 02.05.2023:[10.0] "As a fellow fan of Tokusatsu, Shoko was an early favorite for me getting into TJPW. I couldn't not love someone calling themselves the Big Kaiju and landing Rider Kicks off the top rope and her gear and entrance music are fantastic. As I've gotten more familiar with the promotion and grown to appreciate everyone there in one way or another, Shoko is still right there at the top for me. She does it all. Her character work is top notch. She embodies her kaiju character at all times. Whether its with her animalistic in ring movement and growls or how she reacts to comedy spots and promos. She's even entertaining just cheering her tag partners on from the apron. Her speedy lucha style is so fun to watch and I love how she leverages her low center of gravity and muscular physique to power out of holds and bring her opponent to the mat. Everything she does looks so believable and smooth and it really feels like only the 1.47m Big Kaiju could do the things she does. Shoko is also an excellent in ring storyteller. She sells so well that despite being one of the best pure wrestlers in TJPW and a legitimate threat to anyone on that roster, you can't help but root for her after she's taken some damage and it starts showing. No matter where she is on the card or who her opponent is, you're getting a good match out of Shoko Nakajima. I recommend checking out the Summer Sun Princess 2022 main event vs Rika Tatsumi, her 2022 Princess Cup match vs Miu Watanbe and any of her yearly 1.4 matches vs Hyper Misao to get a feel for her work. Can't say enough good things about The Big Kaiju. Shoko rules."
Rating: 10.0
Sentiment: 0.3272988505747126
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Enriquepollazzowrote on 19.01.2023:[9.0] "I really like Nakajima. One of the strongest in-ring competitors at Tjpw. Tons of fire. Lives her gimmick. By that I mean is a thousand feet tall and weighs many mega tons."
Rating: 9.0
Sentiment: 0.12916666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Bullshark1wrote on 12.01.2023:[8.0] "Shoko is everything you'd want in a joshi. She's talented in the ring, has a fun character, and the right amount of charisma. TJPW has been good to her, and her match with Miyu Yamashita was extremely fun to watch."
Rating: 8.0
Sentiment: 0.45714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Penguinowrote on 24.07.2022:"Far and away the best wrestler in TJPW. She does everything flawlessly and effortlessly. She brings the best out of everyone and everyone on the roster has their best matches vs her."
Rating: No rating found
Sentiment: 0.82
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: tresgrumpywrote on 19.06.2022:[7.0] "I really liked Nakajima in tag matches, but I feel like her title matches this time have been really inconsistent. What I like in a champion is someone who gives everyone their best match, which I don't think Nakajima does. It's weird, when she's a tag wrestler she uses more moves that make sense for her, she does way more technical wrestling, and finishes with her spectacular northern lights suplex. As the champion she finishes her matches with.... a top rope senton? She's such a good wrestler but the end of every match feels confusing. I loved her singles match with Mei Suruga in ChocoPro though, I thought that was spectacular, and really showed what Nakajima is great at."
Rating: 7.0
Sentiment: 0.38125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: GriffinXwrote on 06.05.2022:[10.0] "Shoko is fantastic to watch. She's able off a nice wide range of moves. Her selling is really good and she has that it factor that allows you to care about her match even if some super goofy show down with Misao or a big title match"
Rating: 10.0
Sentiment: 0.30864197530864196
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: TheMrPollardwrote on 25.04.2022:[9.0] "one of my fave TJPW wrestlers, I could watch her matches all day, some of the most fun and entertaining ones around at the moment"
Rating: 9.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: killowenskillwrote on 25.04.2022:[6.0] "I watched quite a lot of her matches, but couldn't give any rating. Now I'm starting to watch TJPW on a regular basis, and it seems to me that I don't understand it at all. I don't understand how she behaves in matches, I don't understand what kind of storytelling she adheres to, and why she is one of the top faces of this company, a two-time main champion. At first glance, Shoko is difficult to distinguish from the conditional Neko, Misao and Harajuku, she looks like a secondary character entertaining in her category, and only then you encounter reality, where she competes on equal terms with Yamashita and Sakazaki, is positioned higher than Mizuki and Maki Ito, and all you feel is misunderstanding. I thought that I would have to unravel her phenomenon, but so far I am infinitely far from it. Nakajima is certainly a good wrestler who especially entertains in some tag team matches, and now she is clearly better than in 2019, when she won the championship for the first time and looked clumsy. But I still can't perceive it the way the status requires. Not because she hasn't won any awards and nominations, as the commentator stated below, but because I don't see her having such an aura, and many matches just pass me by. Nevertheless, I hope that this will change someday, and I will consider Shoko's candidacy a good choice."
Rating: 6.0
Sentiment: 0.1825757575757576
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: NoSellwrote on 04.01.2022:[9.0] "I love the Big Kaiju. My favorite TJPW wrestler apart from Miyu. She's funny, great in the ring and always shows great fire in all her matches."
Rating: 9.0
Sentiment: 0.4749999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: 10speedwrote on 16.08.2021:[10.0] "Shoko Nakajima should be in more conversations for best joshi going today. She's scary good and can have a great match with anyone. With TJPW's popularity seeing an upswing, I think more people will see her as a standout."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Kishikaisei37xwrote on 28.07.2021:[10.0] "Shoko is really really good and has been one of the best in Tokyo Joshi for years. Very underrated by fans outside the promotion."
Rating: 10.0
Sentiment: 0.475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: AmarantCoralwrote on 29.05.2021:[9.0] "The Big Kaiju is seriously underrated in the conversation for the best female wrestler in the world. She's not, of course, but she is certainly in the top 10 for me. I love her speed, her workrate is impressive and I've yet to see her put on a bad match."
Rating: 9.0
Sentiment: 0.24232804232804236
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Grissomwrote on 08.05.2021:[9.0] "Shoko ist eine der schnellsten Joshis im TJPW Roster und auch eine der besten. Vielleicht sogar etwas unterschätzt, aber Big Kaiju ist wirklich großartig und ihr 8-Bit Theme Song ist mega."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: automaticawrote on 06.05.2021:[10.0] "She's super underrated and one of the most consistent wrestlers going for my money. Hopefully she gets more of a push at some point."
Rating: 10.0
Sentiment: 0.3958333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Kungwrote on 29.04.2021:[8.0] "Shoko is one of the strongest in-ring competitors at Tokyo Joshi and has what is perhaps my favorite gimmick in the entire promotion!"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: Makoto92wrote on 26.02.2021:[10.0] "Shoko has one of the most unforgettable appearance in all of prosfessional wrestling. Her gimmick is the funniest thing I've ever seen in ToJo (except for Misao, maybe), which is perfectly suits her really small size. And her ring work is perfect every time, of course."
Rating: 10.0
Sentiment: 0.61
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: nWo-Joshi-Guywrote on 19.01.2021:[10.0] "She may be my favourite TJPW wrestler. She is a very good wrestler and her gimmick is awesome. Shoko Nakajima is ridiculously fast in the ring which really fits her style and ironic 'Big Kaiju' (monster) gimmick extremely well. She really gets all in to her gimmick as well which I really like. She has a great move-set, is very athletic and is really fun to watch. She is also surprisingly muscular and her costume is amazing. She is pretty funny and really cute; I love everything about her to be honest. Her current Shin Ultra Shoko gimmick is also pretty entertaining."
Rating: 10.0
Sentiment: 0.3743181818181819
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: cuervonegro83wrote on 02.01.2021:[8.0] "My favorite wrestler in TJPW, her gimnick "147cm Big Kaiju" is so funny, I love her attire and her suicide dive is one of the best, she really can fly. She has a good moveset, but maybe the finisher (Northern Light Suplex) is not so good as a finisher and I like the move and the way she does it and even she used a double version to beat Miyu Yamashita for the Princess of Princess Championship, but for her size maybe is not the best move. I feel a bit sad with her match in AEW, cause it really looks like they put her and Riho as the weakest in the match just because they were smaller, and didn't let them show how hard they can hit. Anyway Shoko is fun to watch and I really enjoy every time I have the opportunity to watch a match of the "Big Kaiju"."
Rating: 8.0
Sentiment: 0.3241228070175439
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=15712&gimmick=Shoko+Nakajima
Comment: dontkilldylwrote on 07.04.2019:[9.0] "Shoko Nakajima currently finds herself in the grizzled vet role, working the undercards against a seemingly endless supply of TJPW's rookies, and it makes sense that she does that, because I truly think shes incapable of having a bad match. She's smooth on the mat, shes lightning quick on her feet and always manages to get the best out of her opponents, oh and she has the best entrance music, without equal."
Rating: 9.0
Sentiment: 0.23854166666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Zak22wrote on 11.06.2024:[8.0] "I find Kenoh a bit dull tbh but he is technically a brilliant wrestler and his matches with Nakajima really show off how good Kenoh can be. Good all-rounder with strikers and power moves."
Rating: 8.0
Sentiment: 0.4416666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: tlaustinwrote on 16.04.2024:[8.0] "My introduction to this man was through his match with Wagner, and then his immediate stinker with Ryohei, and I was left with a very negative opinion of him. Especially in the Ryohei match, where everything that went wrong was demonstrably his fault. Since then, I've really started to come around on him. I don't think I like his wrestling style, but his mic skills and charisma are borderline transcendent. The obsessed counterpoint to Kaito character he's currently running, combined with this "dangerous maniac goof" vibe he gives allows him to mold himself into virtually any wrestling situation (see: being the only maskless man in the dragon Bane/alpha Wolf/Marufuji sunny voyage match) in a way that stays true to his character and works well with others. I find him captivating in ways that have little to do with his in ring work, that's pretty remarkable in a promotion that bills itself as work rate first. I think he will probably convert me to being a total fan in the long run at this rate, whether I want him to or not."
Rating: 8.0
Sentiment: -0.023749999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: CDProsProwrote on 27.03.2024:[10.0] "Kenoh is the master of mosh! Humble and very traditional in heart while dark in theory. His battles with Go which steals the show, Manabu far as pride, El Hijo de Dr Wagner Jr in defeat & most people talk about Kaito Kiyamura new year shows back to back for the GHC national & heavyweight championships respectively. Overwhelming wins in key battles earlier on in his time in M-PRO and yes his entrance music is the most iconic 2000s theme tune in the ongoing wrestling career span. KONGO was the stuff of legend, Asura left an impact while highlighting rival Fujita Jr Hayato, I reckon he can keep going making Pro Wrestling NOAH as chivalrous than it was in the 2000s. Very angry with flames kindred to his melanochaita entrance lion robe, Kenoh can hit P.F.S knees or stomps on any heavyweight or interchangeable cruiserweight on the green mat"
Rating: 10.0
Sentiment: 0.07860962566844922
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: ImperialUnowrote on 24.01.2024:[10.0] "Kenoh is an amazing and complete pro wrestler, he has a compelling character, is an amazing striker and has some of the best kicks the business has to offer but he's also a great technician and can do some flashy stuff well. My favorite thing about Kenoh is his character work, his grumpy persona is great and a lot of fun especially when he calls people "assholes" and he can even do some comedy stuff from time to time and he does it so well. He's also great at selling and tells stories extremely well, he has a great sense of details which makes his matches even more enjoyable, he can do it all and is one of the best wrestling in the world without the shadow of a doubt, he's also a great entertainer. One of my favorites for sure."
Rating: 10.0
Sentiment: 0.4881578947368421
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: GoldenHomieswrote on 02.01.2024:[6.0] "He is an effective striker but the shouty angry man personality doesn't do much for me. I'd be more invested in him if he were to have some depth and complexity as a character instead of doing the same yelling thing he continues to do. Not a fan of his gear or haircut either, find them so ugly."
Rating: 6.0
Sentiment: 0.01666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Khalid Acewrote on 07.07.2023:[7.0] "I enjoy Kenoh being one of the top guys in NOAH right now because it's well deserved however I think 7 is a fair rating for him"
Rating: 7.0
Sentiment: 0.4714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: DangoDaisukiwrote on 30.06.2023:[7.0] "Hmm, ich würde ihn gerne sehr viel lieber mögen, aber leider gibt er mir nicht viel. Im Matchguide sieht man eigentlich dass er nicht wirklich viele sehr gute Matches abgeliefert hat und seine drei besten Matches sind gegen Nakajima, was ich aber finde liegt aber mehr an ihm und nicht Kenoh selbst."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: MooGatiwrote on 03.06.2023:[10.0] "NOAH's not-so-secret weapon. He is in prominent feuds in all of the major Japanese wrestling promotions and is in-demand everywhere because he has maybe the most clear character in all of wrestling: Kenoh is pissed off, and that's all you need to know. He's even taken to opening shows with a promo calling all the fans bastards. I really think putting the title on Kenoh is the right move right now; he's much hotter than last year when he lost the title to Kaito."
Rating: 10.0
Sentiment: 0.21339285714285716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Vivalajadywrote on 22.05.2023:[10.0] "Kenoh is a very angry kicky boy who is an amazing wrestler one of the main reasons i watch NOAH. Fingers crossed he gets another singles title run."
Rating: 10.0
Sentiment: 0.03888888888888891
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: TheOneAndOnlyCactuswrote on 12.04.2023:[10.0] "What is there that this man can't do, and can't do it well? Kenoh is a jack of all trades, and arguably master of all of them. Hardcore, comedy, tag, mid-card, main event, technical, striking, high-flying, selling, dominating, changing of pace, portraying emotions. He is so damn complete in the ring, and he is so captivating on the mic. I fucking love Kenoh."
Rating: 10.0
Sentiment: 0.29444444444444445
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: TerwilligerTheLuchawrote on 18.01.2023:[10.0] "My favorite wrestler in Japan. An elite wrestler who is able to work long, grueling, Noah style matches and make himself and everyone involved look good in the process. And let's not forget, pound for pound the angriest wrestler in the world. One of the best promos in the game, his antics are comedic gold under the right foil and absolutely menacing in the right circumstances. Would love to see him once again hold the red belt, as I strongly believe his run was cut way too short (although Kaito was the right guy to win it)"
Rating: 10.0
Sentiment: 0.256031746031746
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: heartbreakmoshwrote on 30.08.2022:[10.0] "Kenoh is an undeniable talent. He understands wrestling at a base level and always wants to push himself to new heights with every match. He is a true martial artist from every sense of the term, always wanting to expand his understanding of martial arts and apply that through wrestling. His sense of self is second to none, and you can see that in every single match. His psychology is simple but always effective, and always tells an easy story for the viewer to bite into. Amazing reflexes and ring-awareness as well, with one of the highest fight IQs I've ever seen. His love of wrestling and fighting really does bleed through in everything he does, and he always believes in himself all the while. Plus his kicks are always so sharp and impressive, and his character is never not entertaining. Dedicated Youtuber and fantastic on variety shows as well, with humor that bridges his serious in-ring persona with the more comical side of his personality. Really just an incredible wrestler. Easily my favorite."
Rating: 10.0
Sentiment: 0.22666396103896105
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Christopher Endwrote on 25.07.2022:[10.0] "Not only is he good in the Pro Wrestling NOAH style but he also showed that he can do hardcore type matches in Cyberfight 2022. He has surpassed Okada as the best wrestler in Japan."
Rating: 10.0
Sentiment: 0.5666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Ma Stump Pullerwrote on 18.05.2022:[9.0] "While many gush about Go or Nakajima, I believe that Kenoh is the ultimate utility talent. You want him to get over guys in tags? He can do that. You want him to do goofball comedy with a 50+ Kendo Kashin and make it work? Yeah, it's not hard. He can do stiff battles, longform bouts, hard-hitting affairs, heel cut-offs, building underdog talent up for big comebacks, you name it. Hardcore bollocks with Great Muta? He'll knock it out of the park WHILE not making himself look bad when ultimately losing. You want him cutting angry pissy promos that get yourself noticed out of everyone else during inter-promotional bouts, he's perfected that as well. He's literally fantastic in any field, and it's a bit of a shame that he hasn't had a proper main event run yet. That's half because of the above: Kenoh can literally pull any role off either at the bottom or top of the card, having fantastic matches with a sensational range of workers. You can look at his workrate stuff on one side, his stiff shit in the middle, and everything else on the other. His range dominates everyone else on the roster by a good mile and while his "angry kid throwing kicks" shtick can be grating at times and his technical work is lacking (something they addressed with the Funaki squash as something he thinks he's better than what he actually is, leading to that in question) but as a whole package, he's easily one of the modern pillars of NOAH, but the least appreciated by far. Could have easily a extra 10 years behind his belt if he plays his cards right: here's hoping his loyalty gets him a proper run with the big belt sooner than later."
Rating: 9.0
Sentiment: 0.058409645909645924
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: jamzell00wrote on 17.05.2022:[10.0] "Just the angriest dude in the world. You can feel every strike and move in all his matches and his intensity always matches it. His rise in NOAH as a top guy and now a consistently great member of the roster has been fun to witness. Love him and I dont think he gets enough praise despite the high rating. That's how good he is"
Rating: 10.0
Sentiment: 0.4228571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: plaguespreaderwrote on 11.02.2022:[9.0] "Really angry striker is a time-honored archetype and KENOH pulls it off to a tee. Delivers great matches consistently. Best striker in the world currently."
Rating: 9.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: GriffinXwrote on 20.01.2022:[10.0] "An ultra talented wrestler who plays the pissed off bad ass very well. Able to land great kicks. His work with the GHC National Title made it a title worth watching"
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: dinosaurjrwrote on 14.09.2021:[10.0] "Kenou is hands down the most compelling professional wrestler in NOAH and imo the second most in japan only beaten by hiroshi tanahashi. The amount of passion in (most) of his matches and the way he bumps is literally a thing of beauty and I just wish they'd give him a good run the top belt (but everyone is enamored with shiozaki right now) However make no mistake Kenou is the best to do it in NOAH and has been for while if I'd give him a comparison I'd be Hashimoto. UPDATE: It makes me sick to admit this but NOSAWA has booked Kenou like a god amongst men (aside from the typical Muta loss) feeding him the stars of yesteryears japanese mma world with the exception of Fujita who is still one to overcome, It actually draws yet another comparison to Hashimoto mirroring his first two IWGP Heavyweight Title runs feeding him the stars of 80's japan it gives him an aura of authenticity and credibility that makes it damn near impossible to beat the man 1-2-3 in the middle of the ring and with his deviating blows most of which being feasible ko's it makes seem that the only way to beat him at times is to shoot him he's the best striker in japan right now... 10/10"
Rating: 10.0
Sentiment: 0.20076058201058203
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: mamboKENTAwrote on 03.03.2021:[8.0] "Kenoh is really starting to come into his own. He's a fan favorite with a unique look, and his bombastic promos keeps the crowd engaged all of the time. He's got plenty of charisma but I think he's missing one more layer of that, which would easily put him in the same class as Tanahashi, Okada, Miyahara, or Naito in terms of charisma. Otherwise, he's a really good wrestler. Brutal striker, you always hear his kicks, and he's won a couple of matches via knockout by just palm striking his opponent to death. Konogh is a good faction to put behind him to solidify him more, until the inevitable moment that Nakajima usurps him and the two feud. Kenoh deserves another run at the GHC Heavyweight, and will get one when the company is a bit larger. Kaito Kiyomiya is his finest rival, and it's always special when they are in the ring together. I love Kenoh."
Rating: 8.0
Sentiment: 0.23280423280423282
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: pierreMinnewrote on 27.01.2021:[9.0] "This man is absolutely awesome in the ring. His kicks are incredible, he is a great storyteller and a great leader for Kongo. I don't give him a 10 because he is really not charismatic but I love him !"
Rating: 9.0
Sentiment: 0.6458333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Makoto92wrote on 23.01.2021:[10.0] "Damn, Kenoh is one of the most realistic badasses in pro wrestling history and one of the workhorses of NOAH. I think, it's impossible to not admire his skills not only as a wrestler, but as an entertainer too."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: PuroresuLoverwrote on 10.11.2019:[8.0] "Kenoh is an awesome wrestler with an amazing look and a great arsenal of moves. The only thing in him that bothers me is his gut, despite that, he has a very amazing character and is a great wrestler."
Rating: 8.0
Sentiment: 0.6633333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: trinidadchainzwrote on 20.11.2018:[10.0] "Kenoh has The Look, The ability in the ring, a resume of fantastic Matches in 2017, one of the breakout stars in Japan with all the momentum in the world."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: PlanetMan21wrote on 02.05.2015:[7.0] "I enjoy his work for NOAH. Certainly better than his tag partner Ohara. Would like to see how he'd do more as a face of the Jr. Division. I think he could get over as a face personally."
Rating: 7.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: Matzinhowrote on 06.09.2014:[7.0] "Kenou ist agil, kämpft realistisch, hat einen guten look und in meinen Augen nur kleinere Defizite im Bereich des Sellings. Er ist vergleichsweise noch nicht so lange im Geschäft, hat sich dafür aber bereits zu einem guten Wrestler in seiner Gewichtsklasse entwickelt. Seine besten Jahre dürften jetzt unmittelbar bevorstehen und ich bin gespannt, wie es für ihn weitergeht. Wenn er Nakajima im Ring gegenübersteht finde ich ihn besonders stark - hoffentlich kommen noch ein paar mehr Singles Matches zwischen den beiden."
Rating: 7.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=6653&gimmick=Kenoh
Comment: STRIGGAwrote on 15.06.2011:[6.0] "Macht auf mein keinen so schlechten Eindruck. Erst seit 3 Jahren akitv, aber seine Ringpräsenz spricht bereits eine andere Sprache."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: docphantomswrote on 29.01.2025:[10.0] "my favorite wrestler and i am hoping his latest run, in 2025 wwe, gets him the accolades that he deserves. Very happy for him and looking forward to his work"
Rating: 10.0
Sentiment: 0.6666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Wrestling Foreverwrote on 24.01.2025:[10.0] "Ich finde ihn noch besser als Fenix. Ikaro kann ich nicht bewerten da er bei Ligen antritt die ich nicht verfolge. Wäre auch schön wenn er auch in besseren Ligen wie LU wrestlen würde. Ein Triple Threat Match zwischen den Brüder würde ich sehr gerne mal sehen. Akutell ist für mich Pentagon Jr. einer der besten Heel Wrestler der Welt. Edit 10. 04. 2018 Auch bei Penta bleibt die Bewertung gleich. Einfach nur genial der Mann, privat auch sehr nett sieht man in vielen Videos. Edit 24.01.2025 Cero Miedo er ist endlich in der WWE da wollte er auch schon lange hin. Penta zeigte jetzt schon seine Klasse in der WWE. Er wird hier noch für viel Freude sogar."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: crs285wrote on 21.01.2025:[8.0] "Penta has a great in ring ability and charisma. In the ring he has a good mix of submission wrestling and exciting high flying moves. His charisma attaches to any audience despite not speaking English. Lucha Underground took him to the next level."
Rating: 8.0
Sentiment: 0.32666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: 77mega6wrote on 19.01.2025:[7.0] "Ok ok first off I didn't even realize how old Penta is, and honestly, it's wild because the dude still moves like he's in his prime. His in-ring skills, intensity, and charisma are on another level. Whether he's flying around the ring or delivering those devastating moves, Penta is a legend in the making, and he's showing no signs of slowing down. Straight up, I thought he was younger just based on how he performs. Mad respect for this guy he's a gem in the business! We need more"
Rating: 7.0
Sentiment: 0.01938131313131315
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: darkflame4527wrote on 14.01.2025:[10.0] "Been following him since around late 2023 and gone back to watch his best matches. His selling is unbelievably convincing. His in-ring work is obviously spectacular and is honestly my favorite luchador of all time. His matches with the Elite and Young Bucks in AEW with his brothers were simply captivating. His intergender stuff in Lucha Underground was also awesome to watch with him wrestling great matches against Chelsea Green and pulling a TRIPLE duty on a show wrestling Kairi Sane, IYO SKY, and MAYU IWATANI? His stamina is excellent. His WWE debut against Chad Gable was awesome to watch and to see that WWE really hasn't nerfed him that much as he's still pulling out Canadian Destroyers and Drivers. His promo work gets the crowd unbelievably hot and his English skills have considerably improved from years past."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: CDProsProwrote on 14.01.2025:[10.0] "30 titles, 20 years experience, 15 as a tag team, The Crash Cruiserweight Champion which is the lightest champ in that titles limit, 10 years of major exposure leading to a transformation to stardom in Lucha Underground as Dark, Impact Wrestling as Jr, Warrior Wrestling as 0 miedo & All Elite Wrestling as El 0 Miedo! 5 years of tag team excellence in bring the AAA tag team gold to the mainstream in combate de escalera de la muerte to reach for the sky in tribute to another great tag team, The Briscoes. 2 years as Oscuro while being back as Jr faced Psycho Clown in the most bloody main event in Triplemania history to travel to the winning team in Wembley Stadium ALL IN 2023 that year & this year, one year of a lifetime ready to take WWE ie those Americans down, maybe break some arms and grab the trophy by the handles, bassinet to his fingers as he say proudly, porque él es Pentagon Jr., ¡Cerooooo miedo!"
Rating: 10.0
Sentiment: 0.18964646464646462
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: MasteroftheMatchGuide99wrote on 01.01.2025:[10.0] "AAA, AEW, and LU knew what they had when he was there. He also made huge noise in TNA with his real-life brother Rey Fenix. Already a bonafide legend in Mexico and the U.S. and still having years left in the tank makes Penta a surefire WON hall of Famer at some point. He has held almost as many titles as Adam Copeland and more than who many people consider to be the best. As a long-time fan, I've enjoyed seeing him be as evil as possible like when he kayfabe broke the arm of his opponents in Lucha Underground and even lured Vampiro out of retirement for 1 last brutal and bloody match. Now, he'll be in WWE. I really hope WWE use him properly. Sin Cara, Alberto el Patron, and Hunico just couldn't match the charisma of their luchador legend Rey Mysterio. Now, we can find out if Penta will be WWE's Penta Dark or Penta Job"
Rating: 10.0
Sentiment: 0.05166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: gxldenjaywrote on 28.12.2024:[9.0] "Penta El Zero Miedo is one of my absolute favorite wrestlers of all time. I've been watching his matches since when he was on Lucha Underground, He really stood out to me and his whole gimmick was amazing. Also his matches are really good, Him and his brother Rey Fenix are absolute beasts in the ring. They wrestled in TNA, AEW LUCHA UNDERGROUND TRIPLE A and now in the WWE, hopefully they present Penta as a dominant force heel or as a face, but where ever he goes i will still watch his matches."
Rating: 9.0
Sentiment: 0.325
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Its Clobbering Timewrote on 17.12.2024:[9.0] "Penta is One of my favorite Wrestlers in the World. Penta is amazing he's a great singles star and tag team wrestler with his brother Rey Fenix as the Lucha Bros. Penta is super cool and has so much swagger to him and his look is great its very unique and sick and he's also Super charismatic. I Love Penta so much and will always be one of my favorites."
Rating: 9.0
Sentiment: 0.37614468864468875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: ItsAllAWorkAnywaywrote on 14.11.2024:[8.0] "Pentagon Jr. is a fantastic wrestler who doesn't embarrass himself as either a singles wrestler or tag wrestler. He'll always be compared to his brother Rey Fenix, but both of them are exciting to watch. He might not have Rey's high-end athleticism, but he's got charisma for days and can really pull a viewer into a match with his psychology. He's also not afraid of the rough stuff either and helped put Lucha Underground on the map because of it."
Rating: 8.0
Sentiment: 0.21999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Brando Calrissianwrote on 02.11.2024:[7.0] "Penta is one of my favorite wrestlers to watch and has been since his Lucha Underground days. He has an amazing look, great character work, and an amazing moveset. HAVING SAID THAT I feel like a lot of his most recent work has been more one note and repetitive. I'm not even solely talking about the constant Cero Miedo stuff with the taunting and posing being a bit too much for me, but it feels like his last few matches in AEW just blended together and were him hitting the same moves and spots in the same order. That's the only reason I have ranked him a bit lower than I would have, as personally I love his career but wish he would evolve or change. Hopefully when he finally arrives in WWE, he'll be able to do that."
Rating: 7.0
Sentiment: 0.2361111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Wh4tUpwrote on 01.11.2024:[10.0] "Just the total package. Great look, charisma, in ring ability, and intense on the mic. Total star in not only tag team but also in singles matches."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: kingofaurawrote on 16.10.2024:[9.0] "Penta has always been one of my favorites. I watched a match of his in Lucha Underground vs Vampiro and I was hooked ever since. He is a proven commodity and I cant wait to see him in WWE. He should be able to get 8-10 rated matches even without the violence he usually presents in his AEW and AAA matches."
Rating: 9.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Semicorrectwrote on 05.08.2024:"Pentagon Jr (or Dark, or 0M, or whatever you want to call him) has been one of my favorites, although he's been in very different roles over the years. In my view he was best in Lucha Underground, where he got to be as violent as he could reasonably be and his armbreaker was put over as more dangerous than it was anywhere else, but no matter where he's been he is a reliable utility guy. He leans a bit heavy on schtick, and he's not as athletic as his brother, but he's a consistent performer. He'll never be the top guy, but he's great in the midcard."
Rating: No rating found
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Willie 19200wrote on 28.07.2024:[8.0] "Penta is crazy cool in the ring and I really enjoy watching his matches, however, he can't get booked to win a big match to save his life. I love watching his matches and he delivers almost every time, but when it comes to big matches, he loses and gets put right back to the lower-mid card. I personally think he should be in a mid-card title division where he can continue to win and be on my TV screen. Overall great wrestler but needs to be booked better."
Rating: 8.0
Sentiment: 0.2357142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: woolyshamblerwrote on 21.07.2024:[6.0] "penta has been been slumming it for many years at this point but he has enough goodwill with the fans that it's not too noticable. still don't really want to see him in singles matches. he was absolutely class in lucha underground with his arm taking gimmick"
Rating: 6.0
Sentiment: 0.22499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Erncredible824wrote on 20.07.2024:"He is an awesome luchador. Excellent in ladder and no dq matches. The destroyer he does is awesome. Definitely needs to be in wwe"
Rating: No rating found
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Chris777wrote on 14.06.2024:[10.0] "Used to be my favorite wrestler as Pentagon Dark, he is the embodiment of a rare instance of phenomenal character work from a luchador. With one of the best moveset ever, it hides everything away from his standard wrestling ability and really captured me at his peak. Such intense and unspoken charisma, seeing lost in times now that he is a midcard act and a tag team partner of what he admits himself to be a much more talented brother. Personally, he could of been so much more, a main event, the best rudo of this era, but it is what it is. still likes him, even if now i understand how formulaic his matches are."
Rating: 10.0
Sentiment: 0.3385416666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: migrationswrote on 10.06.2024:[8.0] "I say 8 but only because Fenix is the 9. I wish I could comment a bunch on his Mexican history but I can't. The first I remember him was from Lucha Underground and from there he was all over the American scene. I remember how excited I was for his match at All In with Omega but I thought it fell short. AEW has made this man an entirely new creature though. With Fenix he has become one of my favorite tag teams and he's put on great matches back and forth. His cagematch with the Young Bucks is one of the best matches in AEW history. First of all Penta has the look and the charisma. He legitimately looks scary - like if you were a kid he would intimidate the hell out of you. All his mannerisms and movement are awesome. He used to spam his taunt non stop but he has gotten much better when it comes to TV time. He has still a good future to come."
Rating: 8.0
Sentiment: 0.28396464646464653
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: KesagakeOKwrote on 13.05.2024:[9.0] "Capable of great technical work, impressive high flying work, and well-rounded psychological work, Penta is the platonic ideal of a modern luvhador, even though his booking may not always reflect that."
Rating: 9.0
Sentiment: 0.40750000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Cleanerwrote on 04.04.2024:[6.0] "Der Mann hatte 2015-18 eine heiße Phase und war da unterhaltsam, keine Diskussion. Vor allem bei Lucha Underground war er ein Assett. Dass er sich aber nie weiterentwickelt hat und im Ring stets die gleichen Overkill-Moves aneinanderreiht, hat ihn über die Jahre uninteressant werden lassen. Bei AEW ist er mit seinem Bruder oder bei Death Triangle nur noch ein Spotmonkey."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: mxkamiwrote on 11.02.2024:[9.0] "My first time seeing Penta was in a GIF on wrestling Twitter, where he absolutely killed another worker with a Package Piledriver on the apron on the indies in 2017. Then, I found Lucha Underground, and he was my guy for a while shortly after. His deathmatch with Vampiro genuinely is one of my hidden gem matches that I feel like not a lot of people talk about, considering that Vampiro was already so limited back then. Penta is all about mystique, and barring his overuse of taunt spamming over the past couple of years in AEW (look even those of us who love him, can't and shouldn't deny it), he puts on absolute bangers when given time. Great brawling Lucha, great tag worker with his brother, and I've always been a big fan of his look."
Rating: 9.0
Sentiment: 0.17399267399267399
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Captain Memowrote on 05.02.2024:[10.0] "One of the most effortlessly cool wrestlers today. I think a lot of people first saw him on Lucha Underground, which I think as far as American exposure goes was his best work. Him and his brother haven't really been used as well as I'd like them to be in AEW but they still get to show how unique they are anytime they're on TV."
Rating: 10.0
Sentiment: 0.34687500000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: JediSaiyanMaster1203wrote on 26.11.2023:[9.0] "Very good wrestler, great character, knows how to work the crowd, insanely over, Lucha Bros is a great tag team, was awesome in Lucha Underground, very charismatic, I like the guy, he's aight."
Rating: 9.0
Sentiment: 0.5266666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TheSuperstarwrote on 17.11.2023:[7.0] "Based more of his aew work hes good, knows how to work the crowd, and is charismatic as hell. My major gripes are too many poses during the match and how he goes from selling to no-selling moves of opponents. I can deal with the poses but when theres an opponent working over a body part and he doesnt react thats pretty bad."
Rating: 7.0
Sentiment: 0.2589285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: djones06wrote on 20.10.2023:[7.0] "Great charisma, excellent fan interaction and immersion, a character that has to say very little but still remain over with any audience through animal like magnetism. Lucha underground produced some wildly entertaining matches, aew work has been steadily reliable to sometimes excellent."
Rating: 7.0
Sentiment: 0.5371527777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: HenrideSadewrote on 02.09.2023:[9.0] "I don't think there are many guys as versatile at such a high level has him. Yes, he can end up in spot heavy wrestle crap in some matches. But if you want a guy who can bring the goods in tag, trios, hardcore, lucha, brawling, technical or anything else, then Penta can do it. His work in Lucha Underground was just phenomenal and I actually think breaking up the Lucha Bros would help better showcase them (as much as I love them). Great look, crazy charisma even behind a mask and with little English. Also delivers the best sling blades in the world from any man not called Finn Balor."
Rating: 9.0
Sentiment: 0.11078125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: 2bitterforyouwrote on 05.05.2023:[7.0] "I think Penta is a great wrestler, but solely based on his work in AEW, his matches rely too much on poses, fan reactions, and the Cero Miedo thing, much more than in his amazing ability."
Rating: 7.0
Sentiment: 0.525
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: benh2wrote on 24.04.2023:[6.0] "Did some outstanding work in the past as the dark, brooding character incorporating a lot of brawling and ground work into his style. In recent years (ie. AEW) he's descended into co-operative sequential wrestling mode and that's just not for me. He's much better when he attempts to tell a story."
Rating: 6.0
Sentiment: 0.12
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: gargoylesmainwrote on 14.03.2023:[7.0] "Top notch character work. Gets over with the crowd through a combo of charisma, natural brutality and athleticism, and exceptional chemistry when paired with a similar style opponent or adaptable opponent like Omega."
Rating: 7.0
Sentiment: 0.31666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: benny5bellyswrote on 06.03.2023:[6.0] "A brilliant look and gimmick but I can't pretend I ever actually want to see him in a single match which generally speaking are painfully mediocre outside of the heavily edited world of Lucha Underground"
Rating: 6.0
Sentiment: 0.025510204081632664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Okaro143wrote on 22.01.2023:[9.0] "One half of the Lucha Brothers, he is both a brilliant singles wrestler as well as tag team wrestler. Not quite as athletic or spectacular as his little brother but more charismatic and a better storyteller."
Rating: 9.0
Sentiment: 0.3779761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Daigotsuwrote on 15.01.2023:[9.0] "Penta is absolutely top notch. His work in AEW has been otherworldly good at times. He clearly demonstrates that you can be charismatic as fuck without being able to cut a promo. Most of all, he's just cool. The only complaint I have is that he hasn't been given enough of an opportunity in the main event scene as a singles guy."
Rating: 9.0
Sentiment: 0.21805555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: WhatIsLooveeewrote on 12.01.2023:[9.0] "Penta El Zero Miedo was initially not the most remarkable luchador, who performed mainly in AAA and did not flash in the first roles. In this status, he moved to the Lucha Underground, and the transformation of the old Penta into the Pentagon Dark may have been the best work on the character in the company. Now he is not progressing much as a character and all he does is show high-fly moves, mainly participating in 2-on-2 and 3-on-3 tag team matches, and makes his "Zero Miedo" taunt. He is a good wrestler from the point of view of in-ring performance, in addition, he is especially good at helping veterans in the ring, which proved his participation in the Ruleta de la Muerte tournament, in which his every match against the stars of the past came out at least good. Now Pentagon and his brother are considered one of the best tag teams on the American stage, and although he impresses mainly with doing amazing moves, I still consider him a very gifted performer, not least because of his tremendous success in the temple of Dario Cueto."
Rating: 9.0
Sentiment: 0.34927536231884065
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Enriquepollazzowrote on 12.12.2022:[10.0] "Extremely exciting wrestler to see whether its the first time or the 100th. He has no fear if you didn't know that. I bet you did though. Can wrestle in all styles and is very spooky when he wants to be, Wish I could give him a 9.5."
Rating: 10.0
Sentiment: 0.2375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TheNomadMagicianwrote on 27.10.2022:[8.0] "Penta El Zero Miedo ist ein guter Luchador-Wrestler mit einem ordentlichen Set an Moves die er regelmäßig zeigt. Was man anmerken sollte ist dass sich Penta Singles-Matches jedoch nach einer Zeit recht ähnlich anfühlen da seltener ein neuer Move gezeigt wird, den man vielleicht noch nicht kennt. Was mir aber besonders gefällt ist seine Art, wie er sich bewegt und generell das Gimmick plus die richtig coolen Outfits die er trägt. Auf jeden Fall ein Topstar."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Leonewrote on 22.10.2022:[10.0] "While his brother Rey Fenix is a more exciting and innovative luchador - Penta is 1 of the best Jack-Of-All-Trades wrestlers to come out of Mexico. He can more or less work and adapt to any wrestling style. He can fly, he can do submissions, he's very powerful for 200lbs, he can hit hard with his strikes, he's technical, he can do death matches, he can trash-talk like a Mexican Stone Cold...and more importantly for him, he can sell merchandise like hot cakes due to a good look, fun character and memorable catchphrase that can be utilised in the real world and even inspire children."
Rating: 10.0
Sentiment: 0.32929824561403515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TheCoolGuywrote on 28.09.2022:[7.0] "Seems to be the one doing the least in all of his tag matches that Ive seen and I cant recall any promo hes ever cut. Hes a good wrestler but hes definitely overhyped."
Rating: 7.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: nWo-Joshi-Guywrote on 27.09.2022:[10.0] "Maybe my favourite male wrestler today. Incredible look and charisma. Part of the best tag team in the world."
Rating: 10.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: GwenCube64wrote on 05.09.2022:[8.0] "Incredibly solid talent but I struggle to find myself excited to watch him unless with Fenix on his side."
Rating: 8.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: JaybirdJaredwrote on 08.08.2022:[10.0] "Great look, awesome move set, incredibly charismatic and able to get the fans involved. He has done some brutal gimmick matches, and he thrives solo or in a tag team. World traveler. Hard worker. One could maybe dock him for spamming his taunts too much or not being consistent with selling, but I do not see anyone more complete today. His promo ability is good too, but I think he is limited in AEW with its booking. He could be a world champion. I would dig it if he did promos in Spanish without a translator like Asuka sometimes does in Japanese."
Rating: 10.0
Sentiment: 0.23656462585034008
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: KingsCrossingwrote on 05.07.2022:[6.0] "I honestly have no clue why Pentagon is so highly regarded. He has a fantastic look, but consistently manages to underwhelm me in the ring. I really liked him in Lucha Underground but have not been very impressed with any of his work since then. His matches feel very disjointed to me, and he relies a lot on doing big crowd popping spots without much to really connect it all together. Some of his offense really looks quite poor, such as his fake looking superkicks or his sloppy Canadian Destroyer. His overuse of the Ciero Miedo taunt is also highly annoying. He has charisma and his mask looks great, but there isn't a lot of substance beneath that."
Rating: 6.0
Sentiment: 0.1433333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Wright15wrote on 28.06.2022:[9.0] "Pentagon is one of those guys who has been consistently great in both tag team and singles action for many years, but he has never been quite at the level to give a main event singles push in a big company. Even so, the tag team of him and his brother Fenix is one of the three best of the last several years, and their clashes with the Young Bucks are legendary."
Rating: 9.0
Sentiment: 0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: GM56 Championwrote on 02.06.2022:[10.0] "His run from Lucha Underground was tremendous and made me a fan of him. Wish AEW would book him like that, but he's still very good performer to watch and follow."
Rating: 10.0
Sentiment: 0.6216666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: jamzell00wrote on 21.05.2022:[7.0] "I'm all for guys knowing theyre over and doing the same shit to pop a crowd but man. You can tell when youre getting a real performance from him. The Omega all in match? Bland as hell. His series with Sami Callihan of all fucking people? Always exciting and full of hate. He's such a captivating performer especially in person but also extremely frustrating with his on and off switch. I want to like him so much more than I do lol"
Rating: 7.0
Sentiment: 0.03452380952380952
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: texasyoshwrote on 09.05.2022:[8.0] "Penta is a very impressive in-ring worker who has gotten himself over with the American audience in AEW. The Lucha Bros are a great unit but I feel Penta is the better of the two strictly in singles competition. Great natural charisma."
Rating: 8.0
Sentiment: 0.5333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: UWF Rules Enthusiastwrote on 06.05.2022:[8.0] "He is a very good luchador. He has cool moves, he's quick and he's able to react promptly. His best matches always seem to be happening when he's teaming with Fenix though."
Rating: 8.0
Sentiment: 0.6186666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: NiceRaterwrote on 12.04.2022:[7.0] "When I first saw Pentagon Jr in Lucha Underground, he was something different. He felt legitimate, terrifying and original. But it's been so long since then that the act has just gotten a little bit stale. While he'll change gear or name, he is ultimately still rooted in the exact same character and it's just not hitting like it used to. He's now regressed to be much better in a tag team and I think it's now the right place for him. He can focus on his high impact sports and fantastic wrestling skills without needing to do too much fresh or original character work."
Rating: 7.0
Sentiment: 0.07238839285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: LoloFareswrote on 07.04.2022:[6.0] "I've never been a fan of Penta and I see that what he does other than his work at the Lucha Brothers was not for me, even when it comes to the Lucha Brothers he is much less than Rey Fenix and he was the weak point of all the matches that this team offers, another thing which is the strange gimmicks And the ridiculousness that he presents that I can never take seriously and frankly I am so amazed at how much people love it, and finally the thing I hate the most about him is that he was a part - or actually the most part - of the intergender segments in Lucha Underground which is the most thing that make me not a fan of him."
Rating: 6.0
Sentiment: 0.03214285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: GriffinXwrote on 24.01.2022:[9.0] "A great talent that shows Lucha is more than dives and flips. A nice mix of power and brawling. Showed in LU and Impact he can be a great singles wrestler. Also a hell of a tag team worker"
Rating: 9.0
Sentiment: 0.675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: PhenomenalGunwrote on 14.01.2022:[9.0] "Sick look, fun quips and segments during matches, and an amazing wrestler to boot, Penta really broke out of the Lucha Libre scene to become an undisputed international star. He's both amazing as a singles and a tag team wrestler, and all you have to do is watch his work in the ring to understand how damn good he is. Zero Miedo is a great lifestyle to live and Penta's shtick is not a shtick since it comes across as genuine if you see what he and his brother do in no rule matches! ZERO MIEDO!"
Rating: 9.0
Sentiment: 0.3247077922077922
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Pentadustwrote on 16.11.2021:[9.0] "pentagon jr/penta el zero m was an amazing wrestler in both the singles and tag team divisions. he had great title reigns, for example the lucha underground title. he had a great feud with sami callihan. and an amazing tag team with fenix as the lucha bros. whats left to say other than he is a great wrestler everywhere he goes"
Rating: 9.0
Sentiment: 0.4964285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Uweuwesenwrote on 15.10.2021:[10.0] "Pentagon ist einfach sehr speziell. Er workt ziemlich spektakulär aber nie zu viel. Seine Matches wirken immer sehr hart ohne übertrieben zu sein. Über Mic Skills kann ich nicht sagen. Er braucht diese aber auch nicht, denn, wie bei seinem Bruder, sind es die Taten die zählen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Luchagang13wrote on 26.09.2021:"I had not followed wrestling for around 12 years after being a huge fan as a kid not only of WWE, WCW, TNA etc but also indies. I heard about the network and subscribed to WWE out of curiosity which sparked more curiosity and I searched matches on YouTube and came across Penta and he is the reason that after all these years I am a fan again and he reminded me how much I loved wrestling. He is the most charismatic guy around. He doesn't need to do anything to get over whatsoever. Good presence, nice mix of lucha an indy style. Just as good at brawling and hardcore matches. His 0 Miedo taunt is just hilarious when he takes of his glove. Deadly moveset. Coolest look in the business. Only issue is he knows little english but like I said he doesn't even need to talk to get over"
Rating: No rating found
Sentiment: 0.3366071428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: AmericanNumberswrote on 19.09.2021:[10.0] "If I could give one guy the ability to speak english? It would be Penta Zero Miedo. The man is a charisma machine and can cut a killer promo in spanish. He lives in a cross section of old school southern wrestling violence and lucha and he's a joy to watch."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Josh50wrote on 09.09.2021:[10.0] "Penta has been a tremendous luchador since 2018 and has shown it to this day, together with his brother they have dominated the tag team scene"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Kungwrote on 06.09.2021:[10.0] "Pentagon Jr. has been my favorite luchador in the business ever since he started breaking arms over at Lucha Underground. He's got a supremely cool look. His move set is memorable and interesting. And while he has a limited grasp on the English language, at least from a promo perspective, he's still able to get the message across that he's a badass. Oh and not to mention, he's in my favorite tag team in all of wrestling right now."
Rating: 10.0
Sentiment: 0.2764285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Kinsanewrote on 02.09.2021:[10.0] "In one word : Charisma. Fenix is the spark, Penta is the fuel. He is fun to watch and I love every match of him. I'm not gonna lie, I kinda miss his trash talking. He and his brother need gold, and I hope All Out 2021 is the place."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Jorhorgewrote on 02.09.2021:[9.0] "He is one of the most extreme nowadays, it is impossible to get bored watching his match either in team alone, he is a beast with a lot of potential."
Rating: 9.0
Sentiment: -0.15833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Kaswrote on 16.08.2021:[7.0] "On his day Pentagon is as good as anyone, but after a certain point in time, he really started to phone in his work and only occasionally gives us glimpses of how good he can be."
Rating: 7.0
Sentiment: 0.30238095238095236
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: allurvibewrote on 16.08.2021:[10.0] "Penta has the coolest attire in wrestling today and he has the personality and moves to back it up. He's such a standout presence that he really should be given a bigger spotlight."
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: blastostgwrote on 28.07.2021:[10.0] "It is a travesty he is not a main event player in AEW. He oozes charisma and can connect with any audience regardless of his lack ability to speak English. When it comes to big time matches, he delivers in spades."
Rating: 10.0
Sentiment: -0.07083333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Z001Awrote on 17.07.2021:[10.0] "Er strahlt Charisma aus und obwohl er nicht so auffällig ist wie sein Bruder, strahlt er immer noch genauso hell. Und wie sein Bruder verdient er mehr, als er in AEW bekommt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: BrayanLaPrewrote on 09.07.2021:[8.0] "At the end of the day, the name of the game is telling stories that connect with the audience. Penta El Zero Miedo does that quite well. Between the Cero Miedo taunt that gets the entire audience engaged and his unique combination of power and athleticism between the ropes, Penta gets you hooked. He also has one of the best looks in the business. I truly believe he could be one of the biggest stars in the world within the next few years."
Rating: 8.0
Sentiment: 0.12916666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Matt Mackswrote on 15.06.2021:[8.0] "Penta can seemingly do it all in the ring, but for some reason in 80% of his matches I feel he is holding back a little bit too much on the believable excitement, preferring gimmicky stuff instead. I have not seen his Lucha Underground work (shame on me), maybe my rating would be higher if that were the case. I believe given time, motivation and maybe a real high level feud, even the AEW version of Penta has potential for the top rating. Too much postering and grandstanding and not enough believable intensity for my personal liking."
Rating: 8.0
Sentiment: 0.15403846153846154
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: JTIwrote on 30.04.2021:[7.0] "In terms of actual wrestling skill, Penta's really quite mediocre, with nothing really that sets him apart from any other luchador you could pull out of a hat, especially when you put him next to his brother, who is legit one of the best wrestlers in the world. But what sets him apart is two simple things: his look, and his intensity. Really that's it. He's one of the coolest-looking wrestlers ever, which really goes a long way, and his presence both in and out of the ring makes for a great atmosphere. Aside from that you've got the hokey catchphrase/hand signal combination that feels like it was ripped straight out of 2002, a good workrate, and a rather generic moveset including the obligatory superkick with obnoxiously obvious thigh slap. I think the fact that he broke out in America on the ground floor of one of the most beloved wrestling shows ever, and as easily one of its most well-booked and well-written members of the roster, has given him an insanely high amount of goodwill among wrestling fans that's persisted over the last seven years. I dunno, he never really puts on bad performances, but I've just never been like, "Wow that match was particularly good *because* of Pentagon". The overwhelming majority of his most highly rated matches on this site are multi-man and/or gimmick matches, and I don't think that's a coincidence."
Rating: 7.0
Sentiment: 0.2092777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Android17wrote on 17.04.2021:[10.0] "On his own he's incredible, in his team with his brother he's incredible. One of the best going today top to bottom."
Rating: 10.0
Sentiment: 0.78
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: marexcelwrote on 21.03.2021:[8.0] "Die AEW-Darstellung des ersten Jahres hat hier wirklich einen Punkt gekostet. Dieses Gimmick mit den Handschuhen und das Spamen der Catchphrase war eigentlich nur noch nervig. Im Ring war es dann offensiv gut, aber dennoch ließ er viel zu Oft die Seriosität im Ring vergessen. Kein angemessenes Selling etc. Er hat für mich definitiv das gewisse Etwas, aber an seiner Darstellung muss dann doch wieder etwas geschraubt werden, wenn ich es ins oberste Regal stellen soll."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: GulakBusickwrote on 14.03.2021:[10.0] "Great worker with bags of charisma, a box office look and genuine presence. Something many wrestlers are still sorely lacking these days."
Rating: 10.0
Sentiment: 0.5666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: plaguespreaderwrote on 10.03.2021:[9.0] "Only thing holding me back from a 10 is that he has not shined as a main eventer yet, but maybe he doesn't need to main event to be considered one of the topmost wrestlers as a whole package. He looks incredible, he has a strong Samoa Joe-like penchant for violence that not many so-called brawlers possess, and has tons of physical charisma that makes people interested in him. I have been sort of disappointed with how AEW has been booking him as a tag team star but we'll see how that goes. His lucha underground run is legendary full stop."
Rating: 9.0
Sentiment: 0.18974358974358976
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TENzuwrote on 22.02.2021:[9.0] "His Lucha Underground run was incredible, and from there he rocketed off into superstardom. He has perhaps the best look in wrestling today but even without that he'd still have tons of charisma. Both as a singles and team with his brother, he's must-see."
Rating: 9.0
Sentiment: 0.95
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Matidut09wrote on 12.02.2021:[10.0] "Pentagon Jr. he is the best fighter in lucha and all promotions, his fighting style is simply amazing. Piledrivers and Pentagon Drivers are amazing. He is also supposedly very nice. Cero Miedo, brother. Pentágono Jr. él es el mejor luchador en lucha y todas las promociones, su estilo de lucha es simplemente asombroso. Piledrivers y Pentagon Drivers son increíbles. También supuestamente es muy agradable. Cero Miedo, hermano. Pentagon Jr. Er ist der beste Kämpfer in Lucha und bei allen Beförderungen. Sein Kampfstil ist einfach unglaublich. Piledrivers und Pentagon Drivers sind unglaublich. Er ist angeblich auch sehr nett. Cero Miedo, Bruder."
Rating: 10.0
Sentiment: 0.7450000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Brett1980wrote on 15.01.2021:[9.0] "Was the best wrestler in Lucha Underground. His look is incredible. I do feel him and Fenix are a bit underused in AEW."
Rating: 9.0
Sentiment: 0.95
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Legend003wrote on 03.12.2020:[9.0] "Einer der besten Wrestler aus Mexico meiner Meinung. Unglaubliche Charisma, solide am Mic und kann 5 Star Matche abliefern."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: ethwrote on 27.11.2020:[4.0] "I don't quite understand why this man is so loved. What makes him so special? His mask and costume? His charisma? Anyone who has watched wrestling for a long time and knows a little about it, can know that he is not an overly skilled wrestler. His exciting moves include almost exclusively chops and leg kicks. He's a tough guy, but that won't be enough for his career. He is not a very satisfying wrestler to be honest. For him, i have to say that it would be perfect if Super Dragon and him have a match."
Rating: 4.0
Sentiment: 0.2476483007733008
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: SSEighty7wrote on 21.09.2020:[9.0] "Fantastic wrestler. One of the smoothest I've ever seen in the ring despite a very high risk style. Great standout look, and very charismatic despite rarely ever even speaking."
Rating: 9.0
Sentiment: 0.4716
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Shutupwillwrote on 27.07.2020:[10.0] "Pentagon Jr is everything you could want in modern day professional wrestling. The guy has such an amazing look and appears to be hugely popular wherever he goes be Mexico or the U. K. or the United States. Not to mention Pentagon is an amazing wrestler and has had many classics, he can work a normal singles match as well as a brutal Death match or a tag team war. He never feels out of place. Pentagon is perhaps inferior to his brother when it comes to in ring ability but his look and stature and over ? Cero Miedo? taunt easily makes him over with the crowd. I love this guy"
Rating: 10.0
Sentiment: 0.2553030303030303
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: NastyYaffawrote on 03.06.2020:[6.0] "Immediately stood out in Lucha Underground with his badass presentation & charisma, and while that same thing translated well into his first stints in PWG & other companies, nowadays he doesn't do much for me. He's DEFINITELY a more-than-solid wrestler though, but his matches generally are very hit-or-miss for myself these days. Rarely when I see a match of his getting recommended or something I go "oh shit, I really need to watch that Pentagon match everybody is talking bout! " -- you kinda know what to expect when he steps into the ring, and sometimes it works, sometimes it doesn't click for me."
Rating: 6.0
Sentiment: 0.0925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: jchiofalwrote on 27.05.2020:[6.0] "This isn't to say I dislike Pentagon, nor am I trying to be a contrarian. He's talented, athletic, and agile. Even will "okay"conditioning, he moves quickly and suddenly, and as a striker looks like he's hurting his opponents. He's intense and a badass. That being said, when it comes to the nitty gritty, I can't get into his matches because he doesn't sell moves. Sure, he bumps like death, and makes his opponents look tougher because of how well he bumps, but he's wrestled matches where someone works on his leg all match before popping up like it never happened. It's one of those things that completely takes me out of the match. He isn't the athlete, or storyteller that his brother is in the ring, but he's the charisma of the LB. Again, a good wrestler, and entertaining, but he doesn't tell great stories for my taste."
Rating: 6.0
Sentiment: 0.40277777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Ein absolut genialer Luchador! Im Ring ein sehr guter Wrestler mit einem harten Style, am Mic stark und Charisma ist auch vorhanden und sein Gimmick ist absolut genial noch dazu ist er ein sehr netter und sympathischer Typ. Alles in allem die vollen 10 Punkte völlig verdient. Cero Miedo!"
Rating: 10.0
Sentiment: 0.14583333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: PathosLogosEthoswrote on 23.01.2020:[9.0] "Not to be a sheep, but yeah, he's fantastic. Just, truly a joy to watch. Incredible technique, striking, and character. He's very adaptable, and flat out a fantastic asset to every company he's in. The reason I knock off a point is that his selling is less than ideal. He could use some help in that department, especially in American style matches."
Rating: 9.0
Sentiment: 0.39083333333333337
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TylerWhitewrote on 02.12.2019:[9.0] "Einer der größten Luchadores dieser Generation, selten habe ich einen maskierten Wrestler mit so unglaublich viel Charisma gesehen. Er war sicherlich auch zur richtigen Zeit am richtigen Ort und wurde besonders bei Lucha Underground sehr populär und erreichte einen hohen Bekanntheitsgrad auch außerhalb von Mexiko. Dort war er einer der absoluten Stars, vielleicht der konstanteste Wrestler der Liga, der nie irrelevant war und immer interessante Stories hatte. Sein Gimmick haben sie dort perfekt umgesetzt und somit wurde er zum mit Abstand oversten Wrestler bei LU, ja sogar zu einem der oversten Wrestler die ich in den letzten Jahren bei irgendeiner Liga gesehen habe. In der vierten Season als Topface bekommt er absolut overpowertes Showing, wo sich jeder bei anderen Wrestlern aufgeregt hätte, doch die Crowd chantet Cero Miedo und liebt Pentagon einfach. So etwas habe ich selten gesehen, bei solch einem Booking. Auch in anderen Promotions wie Impact, MLW und PWG konnte er sich einen Namen machen und war sogar kurzzeitig Impact World Champion. Nun bei AEW hat er mit am meisten Talent und ich hoffe, dass er nach dem bisher starken Tag Team Run auch als singles Wrestler gut gepusht wird. Im Ring ist Fenix sicherlich der spektakulärere Wrestler doch Pentagon ist dennoch ein absolutes Gesamtpaket, der Spotfeste, Hardcore-Matches, Brawls, einfach alles worken kann. Was mir einzig bei seinem Stil missfällt ist, dass er es teilweise etwas übertreibt mit der Crowd Interaction und seinem Cero Miedo, aber dennoch bringt ihn das auch absolut over. Insgesamt ist er einer meiner aboluten Lieblingswrestler derzeit und trotz dieser spektakulären Karriere hoffe ich, dass er auch im Mainstream bei AEW ein großer Star wird."
Rating: 9.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Helor146wrote on 10.10.2019:[10.0] "Just the total package. Great look, charisma, in ring ability, and intense on the mic. Total star in not only tag team but also in singles matches."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: VikingWarriorwrote on 27.07.2019:[8.0] "Deutlich schwächer als Fenix Mmn. Passte auch in LU besser rein als in alle anderen Ligen. Wrestling (8, 5/10); Charisma (9, 5/10); Ausstrahlung (7/10) und Gesamteindruck (8/10). Insgesamt 8, 25/10 ? 8 Punkten."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: KyleEnjoysWrestlingwrote on 26.07.2019:[9.0] "The top star to be born from Lucha Underground. He is one of my favorite characters currently. His stuff with Fenix is solid, although he shines a bit brighter as a singles. Ready to see what he can do in AEW going forward."
Rating: 9.0
Sentiment: 0.24
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Fab96wrote on 11.05.2019:[10.0] "An absolute KILLER, and one of the best in the world right now. This is what happens if you mix violence and skills, you get Pentagon."
Rating: 10.0
Sentiment: 0.49523809523809526
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Garrettwrote on 09.05.2019:[10.0] "Do I need a reason? Ok I'll give you some. Penta is the baddest mother fucker in all of wrestling, Look no further than his time in Lucha Underground where he was Pentagon Dark and destroyed everyone in his path. How about him tag teaming with his brother Rey Fenix as part as the phenomenal Lucha Bros. His style is so hard hitting and brutal that you can feel the hits yourself. He even gives off this aura where you can feel intimidated by him."
Rating: 10.0
Sentiment: -0.05277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: zephyrwrote on 22.03.2019:[8.0] "His look, character, and wrestling style are all absolutely fantastic. He's very charismatic and just has that special aura that makes wrestlers feel important. I find his in-ring work a little too weak though; it's not that he's sloppy or bad, there's just not quite enough impact to most of his moves"
Rating: 8.0
Sentiment: 0.06279761904761907
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Mahanxwrote on 07.01.2019:[10.0] "brilliant brilliant brilliant (as Mel B said :D - AGT Judge) Oh my god ! this guy Pentagon jr. , Penta El Zero , Pentagon Dark , in any name he is full full full package. im his BIG FAN. He is one of afew CHARISMATIC wrestlers at this Era in the world. He is Great in every thing."
Rating: 10.0
Sentiment: 0.5363636363636363
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Cibswrote on 02.01.2019:[9.0] "Probably the best mexican wrestler/luchador right now. His style is a very peculiar combination of everything and that allows him to adapt against any rival in practically any company. Also, his character is simply AMAZING."
Rating: 9.0
Sentiment: 0.4171428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Redywrote on 13.11.2018:[8.0] "The real CERO MIEDO. He is an awesome wrestler, i love his strong style and brawler. It's fantastic when he make an extreme match. It's a complete wrestler with a lot of charisma."
Rating: 8.0
Sentiment: 0.35833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Klabauterwrote on 11.11.2018:[8.0] "Acht Punkte bekommt Pentagon Dark von mir. Er ist überzeugend bei seinen Promos und man merkt die Intensität. Allerdings baut prinzipiell jede Promo auf zwei Worte auf "Cero Miedo". Ich mag es wenn Wrestler ihr klares Mantra haben, aber bei ihm ist es ein wenig drüber.  Ansonsten ist bei ihm aber auch das Problem, dass seine Moves zwar bei Lucha Underground mit entsprechender Produktion Value und seiner Zerstörer-Mentalität cool wirken, weil sie einfach übertrieben krass dargestellt werden und auch sehr gut gesellt wird. In weniger gut produzierten Produkten wirken seine High Impact Moves nicht mehr so gut und das ständige Armbrechen bei den Gegnern ist auch etwas ausgelutscht mit der Zeit. Alles in Allem natürlich dennoch einer der herausragenden Wrestler unserer Zeit."
Rating: 8.0
Sentiment: 0.12
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: MogGuywrote on 06.11.2018:[8.0] "One of the best luchadors to come out of Mexico in a long time. I'm talking in terms of also being a major name in the U. S. also."
Rating: 8.0
Sentiment: 0.33749999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: RatingsMachinewrote on 25.10.2018:[8.0] "Penta El Zero M is a top talent, versatile enough to be able to have great matches in a variety of styles."
Rating: 8.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: JEK 1991wrote on 25.10.2018:[9.0] "He is excellent at his character good or evil.  Great at his wrestling style and how he performs. He deliberately injuries wrestlers with his arm breaker."
Rating: 9.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Oliver95xwrote on 04.10.2018:[9.0] "Penta sticht ganz klar aus der Menge. Keiner hat ein auftreten und Charisma wie er wenn es zu Lachadors kommt. Sein Moveset ist gut und abwechslungsreich mit vielen harten Moves."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TheYetiwrote on 26.03.2018:[10.0] "Wrestle Circus does not disappoint and take great pride in setting and keeping a very very high bar.  Each and every time we get the opportunity to witness these talents we are the lucky ones.  Last night was not different.  Delivered on EVERY LEVEL!"
Rating: 10.0
Sentiment: 0.26826666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: KamiyaKojimawrote on 22.02.2018:[5.0] "Ich habe sehr viele Matches von ihm gesehen und bei mir hat es leider immer noch nicht Klick gemacht wie bei seinem Bruder Fenix oder auch bei anderen Luchadores. Seine Moves sind ziemlich super, jedoch reiht er sie mehr aneinander an, als dass diese schön flüssig ineinander übergehen, sein Gimmicks waren alle vom Ansatz gut, jedoch fand ich, von ihm schlecht umgesetzt. Noch dazu hab ich des Öfteren das Gefühl, dass er keine Lust hat und dann nicht einmal ansatzweise zeigt was er kann."
Rating: 5.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Dragon Fighterwrote on 23.11.2017:[9.0] "Very charismatic, very good on mic, spectacular in the ring. He is really total package for me. His tag team work with fenix is freaking awesome, outstanding. I don't give him 10 because I want to see an outstanding single match from him. Other than that, he is a joy to watch."
Rating: 9.0
Sentiment: 0.47635714285714287
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: My Bloody Doobwrote on 20.09.2017:[9.0] "Awesome look, great wrestler, unique charisma, and can cut a compelling promo. I prefer his matches in PWG, but he has had a few good to great ones in LU as well. I'd love to see him go to Japan and mix it up with some guys over there because he has unlimited potential to be legendary. Can't give him a 10 yet because I am still waiting for him to have that one perfect singles match that makes me think he's a GOAT."
Rating: 9.0
Sentiment: 0.45625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: JuliTheCage87wrote on 14.08.2017:[0.0] "Anfangs war ich noch sehr überzeugt von seiner Persona. "Cero miedo" wurde zur Religion um ihn und seinen Meister Vampiro bei Lucha, aber schnell kam die Ernüchterung, denn er hat ein großes Manko: Er funktioniert nicht im amerikanischen Mainstream. Weder bei PWG, noch bei AAW waren seine Performances nicht mal in der Nähe von "gut". Weiterhin ist sein Moveset ein Overkill aus brutalen Moves, die alle Finisher sind bzw sein könnten. Wo ist da der Build-up? Mir fehlt da die Logik gänzlich. Abgesehen davon ist er ein passabler Wrestler, obwohl das wenig mit Wrestling zu tun hat; die Mic Skills lassen wir mal außen vor. UPDATE: Und der nächste De-Rank. Er kann austeilen, aber absolut nicht einstecken. Das schlechteste Selling (short-time, bumping und long-time) in der Geschichte des mir bekannten Wrestlings, und er lässt seine Gegner jedes Mal mickrig aussehen. Ich verabscheue diesen Charakter einfach."
Rating: 0.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: TooSweetPhilwrote on 10.06.2017:[9.0] "Pentagon mag vielleicht nicht der Beste Wrestler der Welt sein, noch der Beste in LU doch er weis was er mit seinem Charakter machen muss und er weiß, wie er alles perfekt verkaufen soll um dadurch nicht nur Heat sondern auch Publikumsreaktionen zu ziehen. "Cero Miedo" ist schon fast zum geflügelten Sprichwort geworden. Im Ring hat er brutal aussehende Offensive und kann immer mal nette Matches worken. Wie bei seinem Bruder gebe ich 9."
Rating: 9.0
Sentiment: -0.3375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Hypocrisywrote on 26.05.2017:[7.0] "Kenne ihn nur von Lucha Underground und gerade mal bis Ausgabe 2. 10. Mir gefällt sein Auftreten und insbesondere gefällt mir seine Zusammenarbeit mit Vampiro. Mal schauen, was da noch kommt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Matt4Wrestlingwrote on 15.05.2017:[10.0] "Mehr als ausgeprägtes Charisma und ein Könner im Ring! Er kann es noch sehr weit bringen, vor allem da er weiss, wie er das Publikum gut gebrauchen kann. TOP!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Changeling45wrote on 21.02.2017:[8.0] "One of the top tier guys in Lucha Underground.  Thankfully LU has allowed him to not only develop a good character, but allow him to evolve over time and change.  He's a vicious heel and also somehow a loveable face.  He's a blistering promo when given the opportunity, even though I can't understand what he's saying."
Rating: 8.0
Sentiment: 0.04999999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: LSEstrelawrote on 01.01.2017:[8.0] "Arguably the most entertaining wrestler (or should i say LUCHADORE) in Lucha Underground. Stellar character work and above-solid ring work."
Rating: 8.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Headlockwrote on 26.07.2016:[8.0] "Hat durch Lucha Underground viele Fans gewonnen. Er ist zwar nicht der beste Wrestler, aber er verkauft sich und seinen Charakter mit einer Mystik und presens, welche ihres gleichen sucht. Verdienter Lucha Underground Champion. Und das er Prince Puma aus Lucha Underground verbannt hat ist auch cool. Jetzt kann Ricochet ja wieder nach DG."
Rating: 8.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Viper99wrote on 10.07.2016:[9.0] "Er ist bei Lucha underground einfach großartig! Er ist auch warscheinlich der beliebteste Kerl bei LU. Er bringt einen speziellen Stil zu Lucha Underground und bringt eine schöne Abwechslung in die ganzen Spottigen Matches."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Penkerwrote on 10.06.2016:[10.0] "Ich freu mich immer, wenn Pentagon Jr. im Ring steht. Ob nun bei Lucha Underground oder bei AAA. Auch seine Promos schau ich mir jedesmal gerne an. CERO MIEDO"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: The Sick Lebowskiwrote on 14.05.2016:[9.0] "Sein Gimmick und seine Story bei Lucha Underground mit Vampiro sind grandios. Wrestlerisch gefällt er mir auch sehr gut, allerdings wird er da von diversen seiner LU-Kollegen wie seinem Bruder Fenix oder Prince Puma überschattet, da deren Aktionen oftmals viel spektakulärer sind. Daher reicht es nicht ganz für die Höchstnote, aber ich sehe ihn definitiv sehr gerne."
Rating: 9.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: The Chosen Onewrote on 27.02.2016:[10.0] "In my opinion Pentagon JR is the best Luchador in Lucha Underground. His matches with Prince Puma, Fenix, and Vampiro are amazing. He has a great look, a great move-set, amazing selling abilities, and can tell a great story in the ring. Every time I watch his matches I get hooked every single time. Cero Miedo 10/10."
Rating: 10.0
Sentiment: 0.6469387755102042
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Mizzle Assault Antwrote on 14.09.2015:[10.0] "My favorite guy to get exposure in Lucha Underground and one of my favorite guys working right now. Fantastically good presentation, great in the ring working multiple styles, just all around awesome performer."
Rating: 10.0
Sentiment: 0.5408163265306122
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Marcywrote on 07.08.2015:[9.0] "Ich kenne ihn zwar nur durch Lucha Underground und habe ihn auch nur dort gesehen, aber der Mann hat mich sofort in seinen Bann gezogen. Ich hätte nicht gedacht, dass ein Wrestler mit Maske so stark polarisieren kann. El Generico mal ausgenommen. Pentagon Jr. gefällt mir als Heel außer ordentlich gut und strahlt auch durch seinen kampfsportlastigen Stil eine gewaltige Intesität aus. Sauber im Ring ist er außerdem und kann offenbar auch die (sehr) brutale Gangart mitgehen. Für mich ein absolutes Highlight bei LU und ein allgemeiner Favorite. Cero Miedo!"
Rating: 9.0
Sentiment: 0.2125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Codebreakerwrote on 06.08.2015:[10.0] "Noch so ein großartiges Talent was dank Lucha Underground auch außerhalb von Mexico bekannt werden dürfte. Pentagon Jr. ist zur Zeit einer der besten Heels überhaupt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: DanTalksRasslinwrote on 26.07.2015:[8.0] "Pentagon Jr. sets himself apart from other luchadors with a convincing vicious streak augmenting a style filled not only with high-flying maneuvers, but also hard-hitting offense and submissions.  A mainstay with AAA who has now been getting his shot north of the border with Lucha Underground, and has quickly become one of that company's most interesting heels."
Rating: 8.0
Sentiment: 0.13854166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: ApexOfEvolutionwrote on 22.04.2015:[9.0] "Meiner Meinung nach der Beste der drei Brüder (Fenix, Nino de Fuego). Schafft es trotz der Maske eine gewisse Ausstrahlung mitzubringen. Durch die Kombination von Lucha libre mit ostasiatischen Kampfkünsten hat er einen sehr interessanten Kampfstil.  Besonders seine Rolle bei Lucha Underground gefällt mir sehr gut. Es ist schon seltsam zu sehen, wenn die Crowd einen Heel-Wrestler anfeuert und auch noch jubelt, wenn er seinen Gegnern den Arm bricht. Cero Miedo!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: robrosellwrote on 04.04.2015:[10.0] "A very oung and talented wrestler, one of the best new faces of AAA along with Phoenix, a shame that can't shine with his last character, Dark Dragon but now, is one of the best rudos and his moment is now, good moves, quality on the ring, strong moves, wow, what a wrestler, i bet that in few years he will be one of the best wrestlers ever in AAA."
Rating: 10.0
Sentiment: 0.40997474747474744
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: NewBreedwrote on 29.01.2015:[8.0] "Ihm stiehlt seinem Maske ein wenig die Show. Er verliert dadurch an Charisma, das er vielleicht besitzt. Technisch gibt es kaum etwas auszusetzen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: zackwoowoowooryderwrote on 27.01.2015:[7.0] "Ich finde ihn bei Lucha Underground sehr überzeugend in dem was er macht. Seine Highflyer-Künste sind unumstreitbar, doch leider magelt es ihm ein wenig an Charisma."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: thebosspaulwrote on 18.12.2014:[9.0] "Starker man kenn ihn schon ein bisschen jetzt und muss sagen verschlechtert sich nich! Grandiose Matches gegen Fenix. Alles in allem super guter heel Lucha"
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Matzinhowrote on 14.08.2014:[7.0] "Als Dark Dragon hatte er eine gute Phase. Inzwischen hat er das Pentagon-Gimmick übernommen und sich damit zum Uppercarder bei AAA emanzipiert. Ich hätte den Gimmickwechsel nicht gebraucht, immerhin hat sich das Repertoire von ihm dadurch kein Stück verändert, aber er ist jetzt over und wird bestimmt in der nahen Zukunft einen Einzeltitel gewinnen."
Rating: 7.0
Sentiment: -0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10334&gimmick=Penta
Comment: Christian Classic Cagewrote on 22.09.2011:[9.0] "Für mich derzeit einer DER innovativsten Midcarder, den AAA zu bieten hatt. Konstant gute Ringleistungen und Atemberaubende Moves zeichnen ihn aus. Ich kann mir Dark Dragon in ein paar Jahren durchaus als AAA Main Eventer vorstellen, soltle CMLL ihn nicht an Bord holen."
Rating: 9.0
Sentiment: 0.04583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: wrestlingswiftiewrote on 29.01.2025:[10.0] "The greatest luchador to ever do technical wrestling. If you haven't seen his stuff, I automatically recommend his bouts with Zack Sabre Jr (another great technician) or the TV match with Bryan Danielson (the best wrestler alive)."
Rating: 10.0
Sentiment: 0.58
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: jsbortswrote on 13.01.2025:[9.0] "Probably my favorite guy from CMLL, just think he's so good that even his "mediocre" matches are so fun to watch. He really embodies charisma and pulls off a character that should kinda stink. He has terrific creative offense, and he's a bright spot on any card he's featured on. Really really good speaker too, and he's had good matches all over the world."
Rating: 9.0
Sentiment: 0.38
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: LJAwesome 03wrote on 06.01.2025:[8.0] "I hadn't see such a unique style of holds & agility til I seen Hechicero in action! He truly lives up to the of The Mad Scientist making any match a great one you don't wanna miss that instantly made me a fan!"
Rating: 8.0
Sentiment: 0.1125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: Luv all wrestlingwrote on 23.12.2024:[10.0] "Hechicero is a very unique power based luchador who excells at everything. His ROH debut would be a great way to get exposure, a joy to watch on the mexican indie scene and in cmll. EDIT: Eight years later and the world finally knows"
Rating: 10.0
Sentiment: 0.29821428571428577
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: JuanLocowrote on 08.12.2024:[9.0] "After so many years watching all types of wrestling I thought that all the moves were already created and this guy appears and suddenly he uses 10 totally new ones, this guy is great, a spectacular technician and has an interesting gimmick, if you know Spanish you will see what he has a great charisma but in the United States he will not be able to demonstrate it due to the language barrier, I hope AEW calls him more times."
Rating: 9.0
Sentiment: 0.38285123966942153
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: Brando Calrissianwrote on 11.11.2024:[9.0] "Hechicero is one of the best and most exciting technical wrestlers in the entire world. He is able to so fluidly and expertly fuse two styles that always seem to be opposites and contradictive into something so unique and so exciting to watch. His match with Bryan Danielson was one of the most exiciting and best AEW television matches I think ever, and he is somebody I really want to see more of in the bigger promotions to show off his skills. For now, I only ever see in CMLL shows or co-branded shows, and I would love for him to have a long run in somewhere like a New Japan against the likes of DOUKI and Desperado and other Jr. Heavyweights. Or heck have him go up against the larger guys and go on a great run in the Never Open picture. Would be very exciting."
Rating: 9.0
Sentiment: 0.296798418972332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: BrettThousandwrote on 10.11.2024:[10.0] "One of the best in-ring workers in the world today, he'd surely be in my top 5 minimum there. Every time I see him wrestle live I'm seeing something new or exciting. Seemingly can have a great match with just about anyone and anchored the 91 Anniversario mask match which is one of the best bouts of 2024."
Rating: 10.0
Sentiment: 0.5532467532467532
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: EddyZwrote on 23.09.2024:[10.0] "Amazing, Emotional. Beautiful. Watch this. Words cannot describe it, and Clips would not do it justice."
Rating: 10.0
Sentiment: 0.4833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: juanwrote on 22.09.2024:[9.0] "He is the perfect example that you can carry the old and new style of Lucha Libre, a spectacular technical wrestler with good aerial movements and has a few "own" techniques that make him stand out, due to his weight he is very agile, charismatic and He has that aura of a masked wrestler that no one knows but you want to see fight, I don't know his level of English in order to be more mainstream with the more casual audience but it is still interesting."
Rating: 9.0
Sentiment: 0.31008522727272725
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: JoseNEOwrote on 15.09.2024:[10.0] "Quite possibly the second greatest wrestler to ever come out of Nuevo Leon, and the only reason he is not the first is that the man above him is one of the most legendary men in the entire history of this sport. A certain wrestler likes to say he went from undesirable to undeniable, but Hechicero should be the real owner of that quote as this year he has gone from being taken for granted in CMLL to being given some of the biggest chances any wrestler can get including an Aniversario Apuestas match. Whenever Hechicero has a match, you know he will put his most into it and do his best to get a good match out of whoever he is wrestling. He is simply one of the best ever."
Rating: 10.0
Sentiment: 0.3977678571428572
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: Luna100wrote on 24.01.2023:[9.0] "He has an amazing look and charisma, he is such a talented rudo, and his presence really adds to a match he is in, the best of the Los Infernales team. He has provided a lot of the best matches in CMLL of 2022, I did not know he was before then, but now I know who he is, he is one of the most enjoyable acts in all of CMLL."
Rating: 9.0
Sentiment: 0.5625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: MatZeClownwrote on 05.07.2022:[7.0] "A great luchador, though it appears that CMLL begrudgingly gave him the World Heavyweight title in 2021. He's capable of some truly cool technical wrestling, but you wouldn't know it given how he has been booked in 2022 so far. Hardly any title defenses, at times, he's not even booked with his fellow Infernales stable members, or on fridays at all for that matter. It's bizarre."
Rating: 7.0
Sentiment: 0.22261904761904766
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: ElPolloLocowrote on 03.03.2020:[8.0] "In my opinion Hechicero's greatest asset is not so much his in-ring skill, as great as it is, but how amazingly varied his arsenal his. Besides being extremely adept at improvisation, he seems to have an almost encyclopedic knowledge of holds: I've seen him do stuff only very original workers like Super Muñeco have done before. It's almost scary how he can pull moves out of a hat to vary his moveset from one match to the next: it's a good thing CMLL picked him up but he really needs more international exposure, especially in singles matches."
Rating: 8.0
Sentiment: 0.32805555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: Graveyardwrote on 23.01.2020:[10.0] "I think Hechicero is the most undervalued, underrated, and less known talent in the business. Check out his match vs Zack Sabre Jr, or really any match that he's in. Very solid in-ring work!"
Rating: 10.0
Sentiment: 0.13333333333333336
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: tobimexicanwrote on 04.12.2014:[9.0] "Rey Hechiceo ist der Meister der Submission Holds, ein Brawler aber auch ein Techniker vor dem Herrn. Ein Perfekter Gegner für Highflyer jemand der es auch versteht Moves einzustecken und sie Glaubwürdig zu machen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=9312&gimmick=Hechicero+
Comment: Mike09wrote on 20.07.2014:[10.0] "Great Monterrey luchadore who has gained a spot in CMLL due his top level matches. He deserves a great place in CMLL top cards and is the next bigger Monterrey star in last times after Hector Garza (†)."
Rating: 10.0
Sentiment: 0.309375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: perconflncnswrote on 20.12.2024:[10.0] "Akira taue is easily the weakest link in the four pillars, but i saw someone say something about barry windham that i think applies to taue as well which was windham is the least of the four horseman but thats like being shorter than andre the giant. The biggest thing misawa, kobashi and kawada have on taue are the legendary singles careers of all of them, although taue does have a lot of really solid singles matches, it just doesnt even hold a candle to what the other three did. But it'd be wrong to not point out how talented taue still is, easily one of the greatest tag team wrestlers of all time and one of the most important wrestlers to all japan"
Rating: 10.0
Sentiment: 0.2951388888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Zak22wrote on 07.08.2024:[8.0] "This unlucky bastard. Taue is a pretty good wrestler in an era of exceptional wrestlers (Misawa, Akiyama, Kawada, Kobashi), and because of that he often seems below the level, despite being great in his own right. I've not seen Taue's NOAH work but based of his AJPW (that I've seen), Taue was a talented big man who was unlucky in certain facts, which were that his peers where freaks of nature. But still a great wrestler, top 50 wrestler of all-time."
Rating: 8.0
Sentiment: 0.5015151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: danzitorockwrote on 26.07.2024:[9.0] "Akira Taue is the least famous, or the least noticeable wrestler of the Four Pillars of Heaven, but still a Pillar, and by no means can be disrespected or considered less because of that, I like to say that he is the Ringo Starr of All Japan, he's freaking awesome, just couldn't match the revolutionist and popularity impact that his fellow co-workers had. Taue is the tallest of the Pillars, and I love his imposing posture, he was the physical successor of Giant Baba, and also had shades of Jumbo Tsuruta in him, that's why he turned heel and joined Tsuruta-gun at some point, he was the perfect wingman and the perfect man for the job. This natural old-school vibe that he had is what set him apart of the others, he wasn't focusing on flashy moves and innovative exhibitions, just destroying the opponents and telling stories trough matches, and that's why his value is inestimable. His pairing with Toshiaki Kawada is the most legendary of all time, and despite not getting so much solo recognition because of the brilliant competition around, Taue is the example of a perfect tag team wrestler."
Rating: 9.0
Sentiment: 0.3543859649122807
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Taper1994wrote on 01.06.2024:[10.0] "Although the weakest of the four pillars, Taue is still one hell of a professional wrestler. Spectacular in both singles and tag matches, the man was the ultimate liuetenent whether for Jumbo in Tsuruta-gun or Kawada in the Holy Demon Army."
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: InsertFunnyNameHerewrote on 19.06.2023:[8.0] "When the other 3 are each among the 10 greatest wrestlers of all time. It makes me realize Taue was really just alright, by no means a top tier singles guy, but a world class tag wrestler, those kind of wrestlers usually get a 7 in my book due to their lack of versatility."
Rating: 8.0
Sentiment: 0.2571428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: TheOneAndOnlyCactuswrote on 06.04.2023:[9.0] "Akira Taue is one of the four Pillars of Heaven of AJPW, along with Kenta Kobashi, Mitsuharu Misawa and Toshiaki Kawada. Thing is, Taue being in the same group as them is a blessing and a curse for his legacy. Because while he wasn't as good as them, being the worst in a group of some of the absolute best the industry had/has to offer is nothing to be ashamed of. Taue didn't have Kobashi's babyface fire, Misawa's stoic badassary or Kawada's fierce and ruthless offense. Taue was the Big Man, but not just any Big Man. He was arguably the best Big Man of all-time. With his freakish agility, speed and strength, he was able to do moves that no one at his size should have been able to in the 90s. Add in his great ring psychology, and you have a top class worker. Not the most charismatic wrestler, it took time for him to get over, and was best served as a heel, but once he found his role, he played it perfectly. He was amazing as this big bully, and while his work as a singles wrestler was great and underrated, its obvious that he was at his best in tag action with Toshiaki Kawada, with whom he made probably the best team of all-time: The Holy Demon Army. Taue is a name you can't pass in the history of japanese wrestling."
Rating: 9.0
Sentiment: 0.37307692307692314
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Strong Zero Machinewrote on 18.02.2023:[10.0] "Taue started his career in pro sports as a rikishi (sumo wrestler) from 80 to 87 in 86 he was promoted to the rank of juryo (the 2nd highest rank in sumo wrestling) he was given the shikona of Tamakirin Yasumasa. Shortly after Taue meet Baba and started to practice pro wrestling under Baba instruction. For the next years Taue teamed with guys and formed a band with Misawa, Kobashi and Kawada (Super Generation Army) and they start a feud with Tsuruta Gun. However, he became better known for his tag team especially with Kawada (The Holy Demon Army). During his tenure with AJPW Taue won a Carnival and the Triple Crown once, 1 All Asia Tag Team, 7 World Tag Team and 2 Tag League. In August 2000 Taue left AJPW for Mitsuharu Misawa's new promotion the Pro Wrestling Noah and continued wrestling mostly as a tag team wrestler and eventually won the GHC title once before his retirement in 2013. After his retirement Taue served as the Noah president until 2017 (also own a steakhouse ahah). Yes Taue is not the best of the four pillars Misawa, Kobashi and Kawada was far better than him but he's a big part of ajpw golden era, He's like a modern version of Baba and he's like Baba outside the ring a really good guy who respect the workers and a good trainer Akiyama, Sugiura and Morishima. He's probably not a 10 for a lot but for me he's. Respect and love mr Taue."
Rating: 10.0
Sentiment: 0.21317523056653492
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: GeneBlastKyodaiwrote on 31.01.2023:[7.0] "Im gonna get crucified for this, but I never really got Taue. I think he was good in the ring when it counts, but hes one of the four pillars and I do love me some all Japan, so I cant rate him lower than a 7"
Rating: 7.0
Sentiment: 0.3666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: No Onewrote on 15.07.2022:[10.0] "He was the most limited athlete out of the legendary "Four Pillars of Heaven" for sure, but in the case of Akira Taue, he found another way to fit in with that group. If you have a good eye for presentation & psychology, you should be able to see it with Akira Taue. His entire psychology was based on what it is to be a True Boss. He literally & figuratively put his foot down and established his authority in every match. He did so in a way that always commanded attention & respect. If you watch his mentor, Jumbo Tsuruta, in the early 1990's as the Final Boss Heel, and then compare that character to Akira Taue, you will see that it is nearly one in the same thing. That is what made Akira Taue special. Along with his legendary tag team partnership with Toshiaki Kawada, their famous rivalry against Mitsuharu Misawa & Kenta Kobashi, his innovation of several different types of Chokeslams, him being the greatest master of Chokeslams ever, etc. It is his mastery of psychology as a "Big Bad Boss"."
Rating: 10.0
Sentiment: 0.2763708513708514
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: munrapido3wrote on 02.05.2022:[8.0] "Akira Taue was an above average wrestler, having remarkable tag team matches but for a godly trio like Misawa, Kobashi, and Kawada, Taue is unquestionably the black sheep of the group. He wasn't on the level of the trio i mentioned earlier, but people calling him the 'weakest pillar' or the 'worst of the four pillars' is such an understatement."
Rating: 8.0
Sentiment: -0.08095238095238096
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: arrancarwrote on 27.02.2022:[8.0] "There's been a lot of historical revisionism regarding Taue in the last 10 years, the entirety of which stems from his attachment to the Four Pillars, since people assume simply because he was part of those famous Four Pillars matches that that must mean he was on equal or near enough level to those other 3. That really, really isn't the case. Now, Taue was of course a great wrestler, fantastic at playing the big bruiser bully heel who could grind an opponent down and smash them with his long and powerful limbs. He was a very welcome addition to 90s AJPW after fellow stiff giant Jumbo departed, though Taue's style (as well as his look) more so mimicked Giant Baba, given their similarly lanky builds and jumbled movements. Despite being great, Taue definitely wasn't on the level of Kobashi, Misawa, or Kawada, since he wasn't as athletic, explosive, or emotive as any of them, and he was definitely the one of the four with the most 'awkward' offence, since a few of his signature moves would often have rather messy technique or underwhelming impact as a result of his lankly build. He could still crush opponents when he wanted to, but it's not like his strikes nor his power moves were outright destructive compared to actual all-time greats. If you want to say that Taue is one of the best "tag wrestlers" ever then I would totally get that, but to consider him one of the best all-around wrestlers ever seems ill-fitting."
Rating: 8.0
Sentiment: 0.13836167800453514
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: dantethescrubwrote on 10.02.2022:[9.0] "Dynamic T. It's a mystery why people do not value Taue in the same vein as the other 3 of the Pillars or even Akiyama. Is it the body ? Is it his movements ? I never understood how of the greatest Pro Wrestlers is easily dismissed. He was neck and neck with the best was the greatest steady tag hand in Japan. Has had credible years of superiority--what more do you want from Dynamic T ?"
Rating: 9.0
Sentiment: 0.3977272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: GriffinXwrote on 22.01.2022:[10.0] "I've seen him called "The worst of the pillars" except that means he's 4 on a list of 4 of the best to ever do it. Guy was still pretty damn good. Excellent tag wrestler as well as able to go in singles matches."
Rating: 10.0
Sentiment: 0.4083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Lalo Camposwrote on 28.09.2021:[10.0] "One of the greatest heels of all time and the greatest powerhouse wrestler of all time, he had most of the greatest tag team bouts of all time, he is a legend"
Rating: 10.0
Sentiment: 0.875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Kungwrote on 02.09.2021:[10.0] "If you ask me, Taue might be the most underrated Japanese wrestler of all time. Maybe he wasn't as flashy or as monumentally talented as the other three pillars or Jumbo or Jun, but Taue is a legendary competitor from the most beloved era in pro wrestling history."
Rating: 10.0
Sentiment: 0.34687500000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Shadow Explosionwrote on 17.08.2021:[10.0] "Akira Taue was a mix of Giant Baba's presence, Masanobu Fuchi's devilish heel tactics, and his own awesome style of chokeslamming you 40 different ways to Sunday, Incorporating his Sumo background into alot of his moves. He also like the other pillars was a great seller and whilst he didn't create the craziest moves, The Ore Ga Taue and Chichibu Cement are still sick moves. I think getting the rep of the "4th Best Pillar" whilst true, doesn't mean he wasn't as good as the rest of All Japan's roster during the 90s. Jun Akiyama might've been better than him but that would have to have started in 1998. Not to mention his work in one of the greatest tag teams of all time with Toshiaki Kawada: The Holy Demon Army, they just gelled so well as two ass kickers who acted so evil, and not like goofy over over top stuff you see today, I'm talking about stone cold killers who do what it takes to win."
Rating: 10.0
Sentiment: 0.27767857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: BH62wrote on 27.07.2021:[10.0] "Taue is always pointed as the weakest of the Four Pillars, maybe he was but he's compared to demi-gods. Dynamic T was a unique wrestler. He was Baba's protege and learn the craft of wrestling during his early years. Taue may be underated, people underestimate his heel performance. He was always that bastard who destroyed every fan favorite. I loved the way he was stiff and dangerous in the ring. In my opinion, he was way more better in tag team matches, his matches with Kawada are the very best I've seen. His solo run in underestimated, 1995's Carnival Final against Misawa is a masterpiece of Taue being booed as fuck by the crowd. Maybe one step behind the three others but they would be not same with Taue. He was a workhorse as well, he wanted to be like his pairs. 1995's Taue was wild, he was unstoppable. Taue's work will always be overshadowed and that's sad, the man was an excellent wrestler surrounded by gods. Real men know how Taue is a top-class and great worker."
Rating: 10.0
Sentiment: 0.19266917293233088
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: BEER CATwrote on 25.06.2021:[10.0] "Taue's style was so perfectly out-of-step with the other three Corners, half Giant Baba Jr. , half Southern territory technical roughneck. One of the most gifted psychological tag wrestlers ever - has anybody ever heeled it up on the outside of the ring better? I love Taue's rope-based offense, I love how he worked the apron, I love how he got real heat as a native main-eventer, I love his cutoff spots. I just love his GRIT. Maybe I'm a man of strange taste but give me 1995 Akira Taue over any Kenta Kobashi, any day."
Rating: 10.0
Sentiment: 0.24692982456140355
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: axebombertsurutawrote on 16.04.2021:[9.0] "Taue, Taue, Taue. Always one step behind the other four Kings of Heaven and often considered to be the weak link, Taue does not get enough credit for his fantastic heel performances or for being great at getting beaten on and showing his fighting spirit. He's still a top wrestler but had the bad luck to be around at the same time as the other Kings; and payed the price in booking. However, you can't discount his amazing run with Kawada as Holy Demon Army."
Rating: 9.0
Sentiment: 0.0522727272727273
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Ma Stump Pullerwrote on 01.12.2020:[9.0] "Not hard to see how Taue was so low, to be honest. He was always the odd one out of the Four Pillars and the least successful by far in terms of accolades outside of his tag work. Taue also never got to work with Jumbo Tsuruta in any real capacity beyond some tag runs, which might explain why he's not really regarded as the rest in terms of singles work as well. First off, the downsides: Taue was the least dynamic of the four and compared to Kobashi's legendary babyface fire, Misawa's stoic nature, or Kawada's fiery offence, he really had nothing to stand out beyond his height. Taue wasn't exactly bursting with charisma as well and struggled to get over initially, hence why he was a clear cut heel for most of his starting ring work. However, as a big man, he undoubtedly revolutionised the role with the crazy amount of agility he had on top of his naturally occurring strength, making him capable of moving in ways that guys his size just shouldn't do. It should be mentioned as well that Taue DID have really good singles matches throughout the years, and even if he was a bit awkward at times his ring psychology and surprisingly quick counters were always a great quality of them. Ofc his tag material is by far his best quality, with dozens of four star+ matches, namely because Taue knew the role he played (the big bully) and operated it to perfection alongside Kawada. His later years were a lot more inconsistent, and despite his experience and skill the guy just couldn't work the level of quality needed for the main event: he WAS over, but he was by far the worst in terms of post AJPW work. That being said, Taue in his best years was a world class performer who really took the "big man that can move" gimmick and took it arguably the best possible way (probably only surpassed by Jumbo himself)"
Rating: 9.0
Sentiment: 0.1797480620155039
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: znezaaljwrote on 29.08.2020:[10.0] "Akira Taue is probably the most underrated performer of all time. Most of the time he is compared to the other three pillars calling him the worst of them four. But being worse than three of best the 5 wrestlers of all time it? s not something you should be ashamed of. He revolutionized the role of the giant wrestling and make people see that there could be talented big guys. Definitely a legend."
Rating: 10.0
Sentiment: 0.11749999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: zephyrwrote on 25.03.2020:[9.0] "Definitely the weakest of the Four Pillars but still a tremendous world class performer who was consistently great."
Rating: 9.0
Sentiment: 0.37777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: JEK 1991wrote on 21.10.2019:[9.0] "One of the greatest wrestlers to use take downs. Reminds me a bit of Giant Baba. Very skilled in the ring."
Rating: 9.0
Sentiment: 0.5499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: PuroresuLoverwrote on 13.05.2019:[9.0] "Akira Taue is the less-great of the Four Pillars, but please, oh please, don't get me wrong. I like Taue a lot, but he was like an 9 in the middle of three 10s, he was The Ugly Duckling of the four of them. But still, he was a good Tag Team Worker, and I rather to see his Tag Team Matches than his Single ones."
Rating: 9.0
Sentiment: -0.11428571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: RatingsMachinewrote on 01.11.2018:[7.0] "Taue had the misfortune of ascending to the top of All Japan at the same time as three of the best who ever stepped foot inside a ring. As such, he was compared to them, and because he wasn't as good as they were, Taue was unfairly maligned as a poor worker. He wasn't; Taue, at his peak, could be very good. But very good looks poor in comparison to greatness."
Rating: 7.0
Sentiment: 0.272
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Makai Clubwrote on 05.09.2018:[10.0] "Is Akira Taue tall enough to be considered the best big man in wrestling ever? If so, he absolutely is that. Not just big man but in general. For someone of his size, he is surprisingly spry. Agile in good ways where he can use it to create more excitement for his matches, makes his move seem more impactful. Great chemistry with the likes of Hanen, Akiyama, Ogawa, Kawada and Misawa. Has an almighty presence to him but also a gentle look as well which makes him very likable. The most underappriacted of the Four Pillars but just as awesome as all of them."
Rating: 10.0
Sentiment: 0.45625000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: InactiveGuruwrote on 11.05.2018:[8.0] "I have only seen Taue's later work but even then you can clearly see this is a man who knows what he's doing in that ring. The only problem I have with Taue is he just wrestles, he doesn't offer you a character you can immerse yourself in. But it does suit the style he wrestles and the promotions I have seen him in."
Rating: 8.0
Sentiment: 0.024999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Blood Pumpwrote on 08.04.2017:[8.0] "Towered over most of his peers, Taue was a pretty awkward guy, especially early on in his career. He was often able to work excellent matches because of the fantastic talent around him. Not a wrestler I'd ever call bad but hes certainly not in the same class as a lot of the others. That being said he was the perfect partner for Kawada and did get a lot better by the mid 90s."
Rating: 8.0
Sentiment: 0.2263736263736264
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Chekerwrote on 22.02.2017:[9.0] "I like Akira Taue. He was very good for a man his size, but to me he was still the obvious weak link of the four pillars. I'd go as far as saying Jun Akiyama is/was better than him, but then again, there's really no shame in that."
Rating: 9.0
Sentiment: 0.17249999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: RonAyyyyyyyywrote on 25.11.2016:[10.0] "Arguably the most solid of AJPW's big 5 other than Misawa. 2nd greatest workhorse of all time, in the top 10 technical wrestlers of all time, formed one of the greatest tag teams of all time with Toshiaki Kawada. But like Kawada, he has an embarrassingly low amount of titles and accolades for someone of his talent, which comes from being in the same company as Misawa and Kobashi. Taue is a true legend and very underrated in my opinion. Not to mention he is the mentor of Takashi Suigura and Takeshi Morishima"
Rating: 10.0
Sentiment: 0.26346153846153847
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: PistolPeteMattywrote on 04.09.2016:[10.0] "One of the four pillars of heaven, and easily one of the greatest minds in professional wrestling history. He might be considered the weakest of the pillars, but being the weakest of the greatest wrestlers of all time still puts him ahead of 95% of people in the industry."
Rating: 10.0
Sentiment: 0.6333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: TrevPuroFanwrote on 07.04.2016:[9.0] "Very underrated performer in my opinion. Taue has always been considered the weakest of the 4 pillars, but to me he was always amazing in his role. He proved that he can work great singles matches vs. the likes of Misawa, Nagata, Kobashi etc. His work as a tag team was phenomenal. I guess people don't appreciate him so much because he didn't have any strikes in his moveset where as Kobashi had chops, Misawa had elbows, and Kawada had kicks. Great wrestler."
Rating: 9.0
Sentiment: 0.5166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: DerHitmanwrote on 02.12.2014:[10.0] "Früher natürlich eine 10, doch seine Leistung im Ring hat doch sehr nachgelassen. Sollte er seine Karriere irgendwann beenden bekommt er eine 10 von mir."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: joshimaniawrote on 23.06.2013:[10.0] "One of the best wrestlers of all time great psychology and selling and a lot of charisma."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Leonewrote on 14.03.2013:[10.0] "At first glance, Taue is 1 of the most unlikely looking men to have worked in some of the best wrestling matches ever.  At 6'4 and 265lbs, he is the largest member of the All-Japan Famous Five in the 1990s (Along with Misawa, Kawada, Kobashi & Akiyama), and some could argue that he was perhaps the weakest member, but in reality, I think he was there for a good reason.  For one thing, he was full of surprises, pulling out dropkicks, suicide dives and even hurricanranas at times.  A big guy, who didn't look like an athlete, he kept up with his peers with excellent timing and selling.  He is also a creative wrestler, who took the chokeslam and innovated several variations of it.  In matches were he had the powerhouse role, he made an art form of it, using more creative reversals than what would be expected.  His world title wins were usually very impressive, but those title reigns were often short, his best work was as a tag team wrestler.  To this day, Taue and Kawada remain 1 of the best tag teams in wrestling history."
Rating: 10.0
Sentiment: 0.4473684210526316
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Kenshin Uesugiwrote on 23.12.2011:[10.0] "Die bis heute anhaltende These, Taue sei das schwächste Mitglied der „ Vier Säulen des Himmels “ von AJPW, ist für mich großer Blödsinn. Diese coole, kauzige und speziale Aura und Art die er hat, unterscheidet ihn deutlich von Misawa, Kobashi und Kawada. Im Ring stand er ihnen aber in nichts nach, konnte jeden Stil mitgehen und jede Rolle einnehmen oder wer konnte gleichzeitig so leicht wechseln zwischen einer bösartigen Sau wie Kawada, der technischen Klasse eines Misawas und dem kämpferischen Willen eines Kobashi ? War mit Kawada wohl ein Teil des besten Tag Team das es auf der Welt gab und brachte auch als Einzel-Wrestler die Welt zu staunen. Selbst im hohem (Wrestling-)Alter und trotz dünner Arme, zog er immer noch wenn er gebraucht wurde alle Register und es brannte jedes mal die gesamte Hütte. Sieht zwar heute wahrlich wie Giant Baba Version 2 aus, aber immer noch mit einen Coolness Faktor ausgestattet und Comedy beherrscht er schon seitdem er im Midcard so manches Tag Team Match bereicherte. Und ganz nebenbei ist er der beste Sänger im NOAH-Roster, ganz knapp vor Morishima. ^^"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Berlin Dragonwrote on 18.09.2010:[9.0] "Zurecht eine der 4 Himmelssäulen ! Einer der best Tag-Team Wrestler of all time !"
Rating: 9.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: hatebreederwrote on 05.10.2009:[10.0] "Ich weiß nicht warum, aber ich finde nicht wirklich, dass Taue wrestlerisch sehr arg abgebaut hat. Ich mag diesen Mann irgendwie einfach. Allein schon der Fakt dass er seine Gegner reihenweise chokeslammt (Nodowa Otoshi) trotz seinen schmächtigen Armen ^^ Akira Taue ist einfach Kult und verdienterweise eine japanische Wrestlinglegende, immerhin stand er nicht umsonst in vielen 5-Sterne Matches. Taaauue!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Fountain of Misinformationwrote on 26.09.2009:[8.0] "Wie kann man diesen seltsamen Kauz nicht mögen? Zu Hochzeiten ganz ohne Zweifel ein großartiger Wrestler, auch wenn er nie wie ein solcher ausgeschaut und gewirkt hat, und er hat auch im Alter noch absolut seine Daseinsberechtigung im Ring. Taue!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Aquifelwrote on 30.06.2009:[8.0] "Sicherlich nicht ganz so top wie Kawada, Misawa, Kobashi oder auch Akiyama (den ich hier einfahc auch mal einwerfe), dennoch eine Institution im japanischen Wrestling. Ist heutzutage auch nicht mehr das, was er einmal war, aber das, was er geleistet hat, verbietet einfach, selbst heute, weniger als 8 Punkte zu geben."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: LexLuger4everwrote on 27.04.2008:[9.0] "In den 90ern Spitze, in den letzten Jahren hat er aber merklich nachgelassen. Befindet sich ähnlich wie Misawa und Co. schon seit einigen Jahren im Spätherbst seiner Karriere und sollte langsam einsehen, dass seine beste Zeit vorbei ist. 9 Punkte aber in jedem Falle deshalb, da seine Matches Mitte der 90er mit Kobashi, Misawa, Kawada und Co. einfach zeitlos gut sind!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Kaffoe 666wrote on 24.03.2008:[10.0] "Eine Legende und suuuuuuuper cool! Wegen der Vergangeheit und dem Coolness-Faktor gebe ich hier noch die 10. 0, weil es keine 9. 00 gibt ;)"
Rating: 10.0
Sentiment: 0.34375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: D-Stylewrote on 07.12.2007:[6.0] "Big Man von NOAH, auch in die Jahre gekommen, seine Matches kann man aber gut anschauen. Note 3"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=626&gimmick=Akira+Taue
Comment: Carlito ICWwrote on 18.09.2007:[6.0] "Sehr guter Wrestler, der allerdings in die Jahre gekommen ist. Allerdings umgibt ihn immer noch so etwas wie eine besondere Aura."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MichaelCataldi2001wrote on 09.02.2025:[10.0] "In my opinion Ric Flair is THE GOAT of professional wresting, has had countless classics with Windham, Steamboat, Sting Garvin and countless many more"
Rating: 10.0
Sentiment: 0.22000000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: jesuissashawrote on 21.01.2025:[10.0] "He is GOAT. I just can't imagine who would give grades below a 10. They probably only saw Ric in the 00s. The man's charisma, the man's skill, the man gives 100% in the ring. The greatest."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: neuuwavewrote on 22.12.2024:[7.0] "Definitely an icon of the industry and was a star of his time. But i do think he's a tad bit overrated for his early works (was still an amazing wrestler don't get me wrong). Also not a big fan of his work past '04/05. For me the age started to show around that time and while i still enjoyed his character his in-ring stuff got very boring to me. An icon of the industry and a legend of now & then but just didn't know when it was truly time to hang it up IMO."
Rating: 7.0
Sentiment: -0.06874999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: perconflncnswrote on 21.12.2024:[10.0] "There probably isnt a better heel in the history of pro wrestling than ric flair, the influence flair had on heel wrestlers after him cant be overstated. Little things like the way he over exaggerated his opponents moves and would flee to the outside constantly and act cowardly, these are all common tropes for heels in modern wrestling and flair was one of the first to do it. One of the greatest promos of any wrestler ever, high technical in ring ability, one of the most iconic looks ever, ric flair is the blueprint for what a great wrestler is and should be"
Rating: 10.0
Sentiment: 0.20875000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: AceHagannwrote on 26.11.2024:[8.0] "A star of his time. While now one can think he always was just an old man barely getting by in the ring, he once was an amazing performer. He knew his strengths in the ring and played to them greatly, while also delivering amazing promos in a consistent basis."
Rating: 8.0
Sentiment: 0.4000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: WWFanwrote on 17.11.2024:[8.0] "One of the greatest ever but at the same time one of the most overrated ever as well. He was never on the level of Shawn Michaels or Bret Hart or a dozen other guys off the top of my head in that ring."
Rating: 8.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ItsAllAWorkAnywaywrote on 15.11.2024:[10.0] "Ric Flair is a legend. Through the '80s and early '90s, he was the great heel champion that everyone wanted to see get his comeuppance. Even as his days in the main event became numbered, he could still entertain the audiences with his outlandish promo style. When even non-wrestling fans can identify the "Woo! " with Ric Flair, then you know he transcends wrestling as a pop culture icon."
Rating: 10.0
Sentiment: 0.36944444444444446
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Its Clobbering Timewrote on 18.10.2024:[10.0] "Wooooo! The Nature boy Ric Flair has hit all. The look, fashion, promos, in ring, charisma, he is gifted at everything that makes a professional wrestler great. He is one of the best athletes in any sport of all time. He Wrestled for 36 years full with a full time schedule, his love for the business is undeniable. His Charisma and promo ability is up there with the best. He's tied for the most World Championships of all time with John Cena at 16x. He is the most influential wrestler of all time and has changed the business how as we know today. From his time in NWA, to WCW and finally the WWE he has cemented himself as a legend and one of the best to ever do it."
Rating: 10.0
Sentiment: 0.5499999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: face painted legendwrote on 09.10.2024:[10.0] "Built different. That is the best way to describe Ric. I don't think there has ever been another athlete alive, let alone professional wrestler alive who had the god given genetics that Ric had. To work for as many years as he did, 36 total I believe full time (1972-2008), to do all of the world wide traveling he did (especially when he was the world heavyweight champion), take all of the punishment that his body took, being in the ring all of the hours literally that he was in the ring for, and to still be able to walk around as a fully functional human being is unreal. It is almost super human. Couple that with the fact that if you make a list of everything that it takes to be a great pro wrestler -- looks, fashion sense, promos, in ring performance, charisma, character work, etc. , he is one of the guys who was not just gifted with every single thing that would be on the list, but was able to have it or do it at a very high level. You could argue he's at the top of the list in a lot of those categories. Also, without question, my favorite world champion of all time. There will never be another like him, ever."
Rating: 10.0
Sentiment: 0.2771383219954649
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Wrestling Foreverwrote on 04.10.2024:[9.0] "Genaue Infos ob es stimmt ist jetzt nicht klar aber sein bürgerlicher Name soll Phillips sein. Seine Adoptiveltern sind schon Jahre verstorben. Angeblich starb 2000 sein Adoptivvater und 2003 seine Adoptivmutter. Das findet man im Internet. Ich weiß das es viele Skandale hatte aber im Ring war er lange in seiner Prime echt einer der besten Wrestler der Welt und auch in seiner WWF und dann WWE Zeit war er super. Die WCW Zeit hatte wie in anderen Ligen auch Hoch und Tief."
Rating: 9.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: dangfoolianwrote on 27.09.2024:[10.0] "An all time great, despite the plane ride from hell, the alcoholism and public drunkenness, the debt problems, the endless shilling for "Woooooo! " branded products, allegedly yelling in a blind woman's face... wait why am i giving this guy a perfect 10? Oh yeah, his program with Steamboat. The fantastic rivalries with Savage. Being the standard bearer for non-northern style wrestling for so long. Nature Boy's great, just uhhhhhhhh ignore the recent stuff."
Rating: 10.0
Sentiment: 0.19943181818181818
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: jsbortswrote on 19.09.2024:[10.0] "Not going to grade on a curve because he's a truly bad person; however, he is undeniably one of the most well rounded wrestlers of all time and was great through several different eras in several different companies. Hard to tell the story of wrestling in America without Ric Flair, and he has the catalogue of matches to go with it."
Rating: 10.0
Sentiment: 0.03854166666666669
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: OneSuddenBOOMwrote on 04.09.2024:[9.0] "One of, if not the greatest heel of all time, when you think of the NWA, you think of Ric Flair, the big gold, Ric Flair. His bumps were iconic and he always managed to make opponents look credible. A massive draw, and an even bigger name. A main eventer wherever he went and someone who will always be mentioned when it comes to the wrestling mount Rushmore conversation. It is a shame however that he continued to wrestle into his elderly years, where you could clearly see he was not fit for it anymore, I just hope that he doesn't further attempt to tarnish such a great legacy."
Rating: 9.0
Sentiment: 0.23055555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: nothingleftinsidewrote on 02.09.2024:[10.0] "Potentially the greatest ever, which is a hard thing to say, but if you're going to have to pick just one wrestler who is the greatest ever, you'd probably pick Ric. Likely the most influential wrestler of all time as well, plenty of the greats who came after him cite hin as an influence, e.g. Shawn Michaels, Steve Austin. Best promo of all time? Certainly in the top 3, but not a bad choice for #1. Best in the ring? I don't think so, but he was solid for a very very long time, even though later in his career he essentially had just one match that he did. The number of long matches he had in the 70s and 80s is certainly worth noting. Best gimmick of all time? Certainly one of the most enduring, lots of catchphrases, the strut, the clothes, the rolexes. Definitely lived his gimmick harder than anyone else out there. He also had an extremely long career, in which he was effective for most of it, and on top for a lot of it. Might be an A across the board- on the mic, in the ring, and for gimmick."
Rating: 10.0
Sentiment: 0.33161172161172164
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: wrestlingswiftiewrote on 20.08.2024:[10.0] "An example of a perfect wrestler. He could talk you into any building, make his opponents look like a million bucks, and he could sell like no other. The only legitimate criticism you can have for Flair is that he rambled a lot in his promos, which is a trait that you learn to love when you look past it! And of course, there's the heat he has outside of the ring. You can't change that. But allegations aside, he was the exact definition of "living the gimmick." -- for better, or for worse. He is someone you must know as a wrestler, and must watch as a fan."
Rating: 10.0
Sentiment: 0.17777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rassle Fanwrote on 15.08.2024:[7.0] "He's worked very hard to damage his legacy and it's working. In his day he was a great bumper and seller and made every opponent look like a credible threat and better than they actually were in some cases. He's also arguably the greatest promo of all time. He kept working 20 years past his prime and it looked sad. He also didn't have a choice because he continues to be deep in debt."
Rating: 7.0
Sentiment: 0.17453703703703705
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Trombek Kushinikawrote on 11.08.2024:[10.0] "The GOAT? I used to think so but I've soured on him a little recently. I don't think Ive ever seen him had a bad match and his work has certainly stood the test of time. Classics with Sting, Steamboat Funk etc helped shape the industry. Solid at both heel and babyface - although most prefer him as heel. Him being a bit of an idiot of side of the ring and his refusal to hang up the boots for a good 20+ years after his prime are what would prevent him being classed as the greatest in my eyes. Still a 10 though."
Rating: 10.0
Sentiment: 0.042678571428571455
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Zak22wrote on 29.07.2024:[10.0] "Flair is a tricky one to rate. He was at times a formulaic, 5 spots of doom merchant....but when you're traveling to a new audience every week...it isn't as big an issue. At his best flair had some of the greatest matches ever, he was fast and athletic, he portrayed aggression and desperation brilliantly and he was the best wrestler around. His matches with Steamboat, Vader, Funk and so on, all rightfully have a place in history."
Rating: 10.0
Sentiment: 0.5295454545454545
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CMFunk007wrote on 28.07.2024:[10.0] "Holy shit, this guy is the greatest of all-time. His promos were intense and sometimes hilarious. His in-ring work was great. MY favorite recurring bit was him shoving the referee and the referee shoving him to the ground. Bret Hart and Cactus Jack have been critical of Flair over the years, but I don't agree with their criticisms. Flair started in the '70s, but I didn't know him until 1985 when he formed the Four Horsemen with Arn Anderson, Ole Anderson, J.J. Dillon, and Tully Blanchard. Once the original Horsemen run was done, including stints by Lex Luger and Barry Windham, Flair got into a feud with Ricky Steamboat that produced some of the greatest matches of all-time. Then, the feud with Terry Funk was my all-time favorite feud, bringing in Sting as his ally and Great Muta as his rival. When Flair kicked Sting out of the Horsemen with Ole and Arn, I felt the devastation thanks to Flair's mafia-like promo. Then, he went to the WWF, adopted Mr. Perfect as his advisor, and began a feud with Roddy Piper and Hulk Hogan. Flair and Undertaker attacking Hogan on the Funeral Parlor was one of my favorite childhood memories. He also had a great feud with Randy Savage and won one of the best Royal Rumbles in history to win the belt by eliminating Sid Vicious. Mr. Perfect beat Flair to send him back home to WCW and he reformed the Horsemen with The Anderson and...Paul Roma? Geez. He then returned at the end of the year to beat Vader in a great match and the his feud with Hogan in WCW made him lose a retirement match in 1994, only to return in 1995. But, during the Monday Night Wars, I feel like Flair was at his best in leading WCW against the New World Order and later his bitter, personal feud with Eric Bischoff. Towards the end of WCW, he wasn't given the greatest material, but ultimately returned to the WWF and beat the owner, Vince McMahon, to take control of the company. He eventually joined Evolution with Triple H, Randy Orton, and Batista before being retired again by Shawn Michaels at Wrestlemania. He made appearances in TNA to feud with Hogan again. IMO< he's had the greatest career in the history of wrestling."
Rating: 10.0
Sentiment: 0.4537121212121213
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: A 64wrote on 24.07.2024:[10.0] "The GOAT of wrestling, the most accomplished man of wrestling, the most complete career of wrestling, the most complete wrestler of wrestling. Simply the perfect wrestler."
Rating: 10.0
Sentiment: 0.36250000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Willie 19200wrote on 24.07.2024:[8.0] "He is easily considered one of the greatest pro wrestlers of all time, but he doesn't know when to put the boots up. He wrestled 17 matched after his original retirement match. Not to mention he already wants to wrestle again. He needs to accept that he's in his 70's and needs to stop. But his career before that was amazing, he was once known as the greatest wrestlers in North America. not to mention he's a 16 time world champion. overall good wrestler but needs to call it quits."
Rating: 8.0
Sentiment: 0.5385416666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kai Kantewrote on 07.07.2024:[7.0] "Für sein Charisma und die starken Fähigkeiten sich selbst zu verkaufen, hat er es folgerichtig zu Ruhm und Ehre gebracht. Wrestlerisch ging bei ihm eher wenig. Ein paar eingesprungen Knie, reichlich Chops und ein gewisses Sets an Submissions. Doch der Spruch: "Ric Flair hat tausend Mal das gleiche Match gekämpft", kommt nicht von ungefähr."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Ddamnpeggywrote on 01.06.2024:[10.0] "What is there to say about the man that hasn't already been said? Maybe the greatest to ever step in the ring. May not fly as high, or lift as much as some others, but in terms of psychology in the ring, and playing a character, I don't see many better wrestlers in this category. Able to turn a great bout, win or lose, with anyone, in any promo. Long career, all the awards imaginable, memorable reigns, and such an iconic character."
Rating: 10.0
Sentiment: 0.3853846153846154
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: OnlyHalfTheEffinShowwrote on 11.05.2024:[10.0] "While he may have overstayed his welcome in recent years, Flair is a once in a blue moon kind of talent, there will never be another Flair. While Hogan mightve drawn more tickets in the 80s, Flair will always be the wrestlers wrestler. His undeniable charisma, his in ring body of work which speaks for itself, even his longevity in the business for better and worse. Few can say theyve come as close as Flair n any business, let alone that of professional wrestling."
Rating: 10.0
Sentiment: 0.21111111111111114
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: KingKrush29wrote on 24.03.2024:[10.0] "Ric Flair is the greatest of all time. If Ric Flair isn't at the very least on your top 10 greatest professional wrestlers of all time, you are not a professional wrestling fan. He wrestled on the highest level you can reach in professional wrestling from the late 70s to the early to mid 90s. Countless classics and some of the greatest wrestling matches of all time against Barry Windham, Ricky Steamboat, Vader, Sting, and Terry Funk just to name a few. His promos were also the pinnacle of that field during this time period, his battles on the microphone with Dusty Rhodes being especially memorable. He maintained his legend into the mid to late 90s and continued to push forward in the 2000s. He kept himself relevant as part of Evolution in particular and excelled in that role. At Wrestlemania 24 he was able to work with Shawn Michaels to create one of the most beautiful wrestling matches ever. Keep in mind he was 59 years of age when that match took place. His TNA run is best left described with two words: mediocre and sad. His lifestyle on the road for all those years and lack of responsibility relating to his finances caught up to him and he made the decision to bypass his retirement. However, his post - Wrestlemania 24 wrestling career does not negate his previous successes, as their magnitude laps his later short-comings. Ric Flair is the G.O.A.T, and I doubt anyone will dethrone him of that status anytime soon."
Rating: 10.0
Sentiment: 0.1932142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TripleCrownwrote on 03.03.2024:[10.0] "The greatest American professional wrestler of ALL TIME. What is there to say about Ric Flair that hasn't been said thousands of times already? The man is just IT when it comes to what a professional wrestler should be. Obviously he didn't have the physique like a John Cena, but he really didn't need it. His character overshadows his ability in-ring, but that's to be expected when you're the Nature Boy. Wrestled a lot longer than he needed to, those matches can kind of put a downer on his career but you have to look past that considering how old he was and the state of his back following that plane crash. There will never, ever be another Ric Flair."
Rating: 10.0
Sentiment: 0.14583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Green Deliwrote on 25.02.2024:[10.0] "The greatest wrestler that has ever lived. From my point of view, there is not one man alive or dead who better combines in-ring prowess, promo ability, and pure star power all at once. There are better workers (Shawn, Kurt, Danielson), there are better talkers (Punk, Rock, Heenan), and there are bigger stars (Hogan, Austin, Cena), but none are greater at all three than the Nature Boy."
Rating: 10.0
Sentiment: 0.2914285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: PapaTangowrote on 23.02.2024:[10.0] "He gets a 10 rating for his work in 1989 alone. The argument of who is placed on wrestlings Mount Rushmore is endless. But Flair is an absolute icon of the sport. Promo work was always on-point. And his in-ring work was almost peerless."
Rating: 10.0
Sentiment: 0.037500000000000006
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: murielalvarezwrote on 15.02.2024:[10.0] "If WCW challenged the standard in mid 90's it's mainly because of Ric Flair existing in JCP. He was huge and without a doubt was the biggest star of his era next to Hogan. So charismatic and an amazing worker in the ring. He was psychological, one of the best sellers thoughout the match and I consider him as the greatest heel in ring worker like majority of the community does. Unbreakable record with most world championships in the history of this century long business is an achievement that you cannot unsee even though you hate him. There is so much to say about him but I'll finish with my opinion in criticisms about him coming out of retirement. This man is a showman and an on-camera guy and probably best about this. He lives to be in wrestling and that wrestling ring and that seems to be the only reason he wrestled until his 70's. The love he has to this business! I almost don't have anything bad to say about his career and he will be on top of my list until the end of my time. We were so lucky that we have him on our lives via the thing we love the most. Ric Flair is the embodied version of Pro Wrestling and some unrespectful jerks can't take him away from this just by criticising without knowing anything about the history of this business."
Rating: 10.0
Sentiment: 0.2852272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ISimon1912wrote on 11.02.2024:[10.0] "Ric Flair is the GOAT of the American pro wrestling scene, during his prime in the 80s he managed to be a great performer, talker and draw. The man exudes charisma and the vibe of a champion, the true definition of a world champion. My only downside is the fact that he doesn't know when to hang up his boots, it's a shame he decided to have more matches after that perfect retirement in 2008"
Rating: 10.0
Sentiment: 0.44166666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Taper1994wrote on 03.02.2024:[10.0] "The top guy for the NWA during the time which the organisation made the most money wise and responsible for some of the largest gates and crowds in America prior to Hulkamania. Flair's over the top presensation constated his classical wrestling style, well except for his over the top selling. Flair was part of such legendary feuds with guys like Dusty Rhodes and had some of the greatest matches of all time against opponents like Ricky Steamboat. Once the JCP, the main member of the NWA was sold to Ted Turner who created WCW tho, things changed for Flair, althought the first full year in WCW in 1989 produced the greatest year of Ric Flair's career in-ring, for the most part the non-wreslters who now run WCW blamed Flair for WCW not being as large as the WWF. The result was Flair even leaving WCW for a year to go to WWF, producing funny enough probably the best year of Flair's career post 80s in 1992. However Flair returned to WCW where he had to play backseat to Hogan and WCW becoming a lite version of WWF. However with WWF wrestlers like HHH and Austin being more fans of Flair's style of wrestling growing up, we saw a change in style in the WWF that more resembled Flair's wrestling than Hogan's. Hogan might have drawn the most money but Flair I beleive ended up being the longer influence."
Rating: 10.0
Sentiment: 0.40723809523809523
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: BruceMarcos524wrote on 01.02.2024:[9.0] "Arguably, the greatest North American wrestler of all-time. As I disagree with this, Ric Flair surely is one of the best performers in wrestling history. An all-around great performer that can wrestle, cut promos, dress in style, attain charisma, etc. A lot of people revered Flair such as Shawn Michaels, Triple H, Jay Lethal and even her daughter Charlotte Flair. One of the best talkers on his time, had amazing matches with Ricky Steamboat and the Flair Flop is one of the most comedic but iconic wrestling sell of all time. His catchphrase, "WOO" is maybe the most used catchphrase of all time. Every time a wrestler does a Knife Edge Chop or a Figure 4 Leglock, the fans are paying homage to Flair by chanting "WOO" on it. Although that plane crash changed his style from being the brawler to more technical, still he changed his style for the better. Sadly, his slew of retirements tarnished his legacy completely due to his bad life habits as he needed money to recover from his spending issues. What's worse is when Flair had one of the greatest retirement matches in 2008, he'd still manage to continue wrestling until 2022. Despite the negative, still I appreciate him for his contributions in the wrestling business. He and Hogan are one of the reasons of the renaissance of pro-wrestling in the 80's. Unfortunately, he is not a telegenic guy nowadays as watching him on TV today is very sad to look at. Overall, a wrestling legend to remember for generations."
Rating: 9.0
Sentiment: 0.25729166666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Dirty Diegowrote on 12.01.2024:"3rd on my list , could do it all and has done it all, he had the best matches the best feuds been involved in storylines that had realness to them his presence , gimmick, selling and personality and had the best in ring psychologist by far ever WOOOO!"
Rating: No rating found
Sentiment: 0.42083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: greaterdalewrote on 10.12.2023:[10.0] "What Ric Flair did in wrestling history cannot be ignored, being one of the most popular wrestlers of his era and wrestling for decades, it must be noted that Ric Flair abused women, and though for historical value, wrestling ability, and promo skills he's a 10/10. As a human being though he's a 0/10. I previously had rated him down for that, and my no means am I defending his horrendous actions towards femmes but at the end of the day he is one of the goats, so even though it makes me feel a tad guilty I'm going to rate him based on his career not as a human being in the same way I think someone's who's an horrible person but has incredible starts should be in a shoot sports hall of fame. Man should not be employed by any company though, If I worked in AEW I would feel extremely uncomfortable with him in the locker room. He's a liability for a company and anyone who is a women or cares about women should feel unsafe with him around."
Rating: 10.0
Sentiment: -0.02685185185185184
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: JediSaiyanMaster1203wrote on 23.11.2023:[10.0] "For me, the greatest professional wrestler of all time and my personal favorite. He is the undisputed GOAT in my eyes, a throne that will never be dethroned no matter who comes along. No matter how good you may be, you'll never be Ric Flair level in my eyes. Here you have a man who was the perfect wrestler and checked every box. In the ring? Ric Flair was so ahead of his time, that his style is considered "basic" by today's standards. But don't let that fool you, he was an incredible storyteller, a master of having long winded matches in his prime, always wanting to go 60 minutes every week. He's a master of selling and working, the man could do it all in the ring, he could even make his inferior opponents look good. Having iconic and legendary matches with Dusty Rhodes, Harley Race, Ricky Steamboat, Randy Savage, Bret Hart, Terry Funk, Sting, Shawn Michaels, Hulk Hogan, Triple H, Barry Windham, Jumbo Tsuruta, Kerry Von Erich, Ricky Morton, and countless others I could name, he has fought, just about, everyone you could name during his prime. On the microphone? The amount of iconic catchphrases he's created that are still being used by millions of wrestling fans, even used by wrestlers. Hell, other athletes and rappers use them, this man's legacy is far beyond professional wrestling, one of the biggest names of all time just for his promos alone. This man took bragging to a whole new level, so much that you love to hate him despite he was rubbing it in that he's rich and that he can get any girl he wanted, and he could outwrestle anyone you put him in the ring with. He is the ideal cocky heel that has inspired generations upon generations and still has his influence all over today's wrestling. Character work? He is the prototype of what a wealthy heel should be, dressing nice, bragging about his wealth, and oozing confidence, how many heels are like this that you can count? Exactly. Flair was a master at "The Nature Boy" gimmick, despite he got it from Buddy Rogers, but he perfected it and made it his own that people associate the nickname with him more, from historians to modern fans, people think of Ric Flair when they hear "The Nature Boy." Don't even get me started on charisma, this guy is one of those wrestlers that could read a phone book and would make it entertaining, he was very funny and full of great insults and one liners, people still use the "Woo" catchphrase to this day, in and out of professional wrestling. And how can I not mention The Four Horsemen? A faction so legendary, many have tried to capture the magic of this group and still come up short, a faction that showed how a heel faction should be, featuring talented men who all did their roles perfectly and knew how to generate heel heat. While I could go on and on about Ric Flair, I'll stop here and conclude with this. Overall, Ric Flair is the prototypical professional wrestler in my eyes, the man did everything in his career from longevity, being a great world champion, having legendary matches that still hold up 30-40 years later, promos that are still remembered to this day, there's too many reasons to consider Ric Flair the goat in my eyes that I feel he warrants a 10, anything lower is a travesty despite he might not appeal to some fans these days for his antics outside the ring or for overstaying his welcome or not appreciating the older style of wrestling. WOOOOOOOOOOOOO!"
Rating: 10.0
Sentiment: 0.38056032018296165
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: crs285wrote on 21.11.2023:[8.0] "A controversial figure in pro wrestling. Nobody was more charismatic in the ring then Flair. He had amazing mic skills. In the ring the plane crash he was in should have ruined his career, but he made his style unique. His controversies are well known but he is beloved by most of his peers. His career also went too long as he should not have wrestled 2022."
Rating: 8.0
Sentiment: 0.4593750000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: beastmxmwrote on 21.11.2023:[10.0] "He's the greatest to ever do it. Enough said. I would give him a 12 if I could, that's just how good he is. As good as anyone in-ring during his prime, as or more influential than any other pro wrestler in history, no one else is on his level. Not Hogan, not Austin, not Rock, not Cena. There is one true GOAT of wrestling, and that is Ric Flair, undisputed."
Rating: 10.0
Sentiment: 0.44642857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DangoDaisukiwrote on 12.09.2023:[2.0] "Ich habe sehr viele Matches von Ric Flair gesehen, seine besten Matches, zu seiner WWE Zeit, in Japan und auch Impact Wrestling. Alles was später in seiner Karriere war, wäre für mich sogar eine 0. Er hat mich immer zum abschalten gebracht, da ich ihn als Wrestler sehr langweilig finde, als Heel eher nervig und keinen guten Heel, auch nicht wirklich sympathisch finde ich ihn. Ich gebr fairerweise für die Zeit wo er noch jünger war aber jetzt 2 Punkte, da ich ihn damals zumindest einigermaßen okay finde besonders bei WCW und in Japan ist er für mich einigermaßen in Ordnung, aber immer noch bei weitem nicht gut. Ich finde Flair sehr überbewertet, selbst seine besten Matches finde ich ziemlich langweilig und es gibt nicht ein einziges Match was mich wirklich überzeugt hat."
Rating: 2.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: flipflopdoritoswrote on 25.07.2023:[10.0] "someone else said it, but you're insane if you don't give ric flair a 10. a shining star in a sky of many back in 80s and early 90s Jim Crockett and WCW, he truly was a force anywhere he went. one of the best on the mic ever, one of the best in-ring ever, and one of the best storytellers ever. simply a talent unmatched by all but one other, the one other being the late, great mitsuharu misawa."
Rating: 10.0
Sentiment: 0.23750000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: InsertFunnyNameHerewrote on 05.07.2023:[10.0] "Giving Ric Flair anything less than a 10 would be insulting, he was the complete package, the face of pro wrestling in the 1980s and for my money, the best to ever lace up a pair of boots or speak into a microphone, Flair at his peak was untouchable, the only thing that ever held back The Nature Boy was Ric Flair himself."
Rating: 10.0
Sentiment: -0.011111111111111108
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: mizzyshawrote on 25.06.2023:[10.0] "Definitely the greatest wrestler of all time. Fuck, I just can never get enough of this guy. Always loved how expressive he was even in the middle of his matches. If he would have decisively retired after Michaels kicked his ass at Wrestlemania I'd have no complaints whatsoever about his career. Dude just doesn't know when to hang it up. Oh well, at least we got some great promos from his post-09 stuff (thanks Jay Lethal)."
Rating: 10.0
Sentiment: 0.27999999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: KKeanelwrote on 20.05.2023:[10.0] "It's sad how much he did in last 15 years to underestimate his legacy, but I don't care about that. Watching his promos from NWA and WCW days, it's difficult to understand how this kind of pretty basic character can be so charismatic and credible. It's getting me chills. Absolute GOAT of making title reigns interesting - of course he never was outstanding in-ring worker, but I really appreciate his longetivity. Catchphrases, small gestures style, amazing look - that and many other things made Nature Boy so iconic."
Rating: 10.0
Sentiment: 0.19861111111111113
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CurlyHairMetalPunkwrote on 22.04.2023:[10.0] "Between 1984-1989 Ric Flair was arguably the greatest professional wrestler in the world. The Nature Boy had a great look going on with all the beautiful robes and custom made suits. On the microphone Naitch could talk so wonderfully that he could have sold ice to an eskimo. When it comes to the number of incredible wrestling matches Ric Flair has too many to count. Wrestling peaked with the trilogy of matches that Ric Flair had with his best dance partner in Ricky Steamboat over the NWA World Heavyweight Championship."
Rating: 10.0
Sentiment: 0.76875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: AyoWrasslinwrote on 13.04.2023:[9.0] "I just did the math and found out Flair is actually a 22 time world champ. So yeah he is very good and was great in his prime. one of the greatest talkers in history Also very good back in his day so 9/10 / Recommendations: vs HBK [Mania 24], vs Steamboat [Trilogy], vs STing [Clash of Champions]"
Rating: 9.0
Sentiment: 0.6033333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Giantfan1980wrote on 09.04.2023:[8.0] "One of the best obviously from the late 70's up until the late 90's. Last great match IMHO was against Bret Hart at Souled Out 98 and from then on it was a steady decline as he didn't have the cardio anymore. Decent matches with McMahon and Taker in 02 and then a lot of bad stuff up until his retirement match with Michaels. I would go a perfect 10, but Flair hanging around 20 years past his prime for rent money tarnishes his career. That being said, not many could carry a match as well as he did. Being able to call stuff on the fly to help out his opponents made many matches better than they should have been. Except his matches against El Gigante, Flair was great, but he wasn't a miracle worker."
Rating: 8.0
Sentiment: 0.2607843137254902
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: cal9099wrote on 16.03.2023:[7.0] "Another madly overrated wrestler to me. Obviously mic skills and promos were off the charts but his look and in ring were so bland to me that he just never drew me in. Admittedly I didn't watch him during his prime but what I have seen, like the 'classics' vs Steamboat were just good to me, not all timers. Also another wrestler who overstayed his welcome to the highest degree like Undertaker which tarnished his reputation for me."
Rating: 7.0
Sentiment: 0.14166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: WhatIsLooveeewrote on 04.03.2023:[10.0] "Ric Flair is one of the most popular and significant wrestlers of his time, whose career lasted quite a long time. Despite the fact that he mostly copied his gimmick from another wrestler, he really brought him fame. Rick is very charismatic, he is an outstanding speaker who is one of the best villains in the history of the industry, as well as a man who knew how to make a star out of his opponent, even if he lost to him. He was also quite good in non-wrestling roles. He managed to become the first two-time member of the WWE Hall Of Fame and won many championships, still being the most titled world champion in WWE. A unique person who gave his life to favorite deal."
Rating: 10.0
Sentiment: 0.4733333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Leth99wrote on 14.02.2023:[5.0] "He cut the same promo for 30 years and wrestled the same match for 20 and he wasn't even using an original gimmick and he wasn't even the best using it. But hey, it worked, because he is a 22 time world champion"
Rating: 5.0
Sentiment: 0.34375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: damiendemento1wrote on 02.02.2023:"When you see him climb the top rope. You knew he was gonna miss. Never seen him hit a move from top rope. But great charisma way better then Hogan."
Rating: No rating found
Sentiment: 0.575
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: benh2wrote on 11.01.2023:[9.0] "As always, I just rate the wrestling personality and not the person. It's undeniable he was a fantastic worker, especially in the early to mid 80's. Outside of the Steamboat matches, I never really got invested in the Flair match routine but I still appreciate his contribution to the business. His promo style wasn't for me either but I accept I'm in the minority here."
Rating: 9.0
Sentiment: 0.06666666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Conquistador37wrote on 02.01.2023:[10.0] "This is something very special to me, cagematch doesn't have enough space or room for me to truly express all that I feel. I understand those younger than I will surely view him with different eyes - but for me, this single entity did more to elevate the sport/business/industry than any other. The importance Ric Flair had on the territory system and professional wrestling as a whole in the 80's can not be understated. Yes there is some truly disastrous stuff peppering his career post '89 but even things at their most treacherous could not erase the over abundance of positives. Outside of the squared circle: no thanks, but there have been much worse. Reign Forever The Real World's Heavyweight Wrestling Champion: Ric Flair."
Rating: 10.0
Sentiment: 0.06674107142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Enriquepollazzowrote on 27.12.2022:[10.0] "Greatest wrestler of all time. At his peak he was a great worker and worked every night when he was nwa champ, great promos, character, living his character. He was the man. I wish he would have been able to retire and fade away but its not fair to hate him for being still alive like a lot of people do."
Rating: 10.0
Sentiment: 0.2928571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MainEventMasterwrote on 02.12.2022:[9.0] "Outside of the ring, he may be an irredeemable piece of shit, but goddamn was he special inside the ring."
Rating: 9.0
Sentiment: 0.05238095238095238
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: felixshanewesternwrote on 19.11.2022:"One of the best to ever lace up a pair, simple as. Probably should have retired about 20 years ago, but one of the greatest of the 80s and early 90s. For a period, nobody was a bigger draw or better performer than Ric."
Rating: No rating found
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: YourKingMobwrote on 05.11.2022:[10.0] "His every promo: What if your youth pastor went away to Ibiza and came back three years later as a fuckboi to talk mad shit at you with his every breath. While he is a product of his era and his in ring work may not stand up to the modern age, Ric IS WESTERN PRO WRESTLING more than anyone before or anyone after. While not as flexible or adaptable as other, more modern wrestlers, Ric is king carnie back when wrestling was a carnival side show still and could cut a promo that could peel the paint off your car at a moment's notice. While not the greatest wrestler from the United States, when it comes to being a carnie fuck, working the marks and riling up a crowd by being a swaggering, bigger than life figure - there will never be anyone better. Should lose a point for being a sex pest at best, a sexual predator at worst."
Rating: 10.0
Sentiment: 0.11388888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Steve in MDwrote on 03.11.2022:"All things considered, Ric Flair is probably one of the 2 or 3 best professional wrestlers of all time. With the possible exception of Terry Funk, nobody else has delivered such excellence for such a long time in every aspect of pro wrestling."
Rating: No rating found
Sentiment: 0.17500000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheOneAndOnlyCactuswrote on 27.09.2022:[10.0] "Say what you will about him as a person, I'm not gonna argue with you, but judging him strictly as a wrestler, there is no denying his greatness. Technically sound between the ropes, knowing every trick in the book to be a perfect cowardly heel, while also being an insanely charismatic presence on and off the ring, especially with a mic. Flair is simply one of the greatest."
Rating: 10.0
Sentiment: 0.48333333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: UltraNano54wrote on 04.09.2022:[2.0] "Pretty boring wrestler who's most intense battles came from non-televised fights with female flight attendants. It's hard to tell if he is supposed to be a comedy wrestler or not but I would rather just watch Santino Marella if I was looking for a good laugh. Very outdated style and from an in-ring perspective, the average NXT wrestler could easily out wrestle Flair. His promo style was boring too. His average promo was just Step 1: Do Cocaine. Step 2: Do literally nothing else"
Rating: 2.0
Sentiment: -0.056025641025641046
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: conker8wrote on 01.09.2022:[10.0] "9.5 Great wrestler in his prime, a bit repetitive in his last days. Tremendous promo and character. Have classics with Steamboat, Piper, Savage, Funk, Dusty, Windham, Garvin, Wahoo etc."
Rating: 10.0
Sentiment: 0.09666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Benwerderwrote on 01.08.2022:[7.0] "Er hat leider das Karriereende völlig verpasst. Man hätte ihm sicher 10 Punkte geben können, mindestens 9 da er einer der ersten Wrestling Größen war. Aber leider konnte er nicht aufhören und hat seine Legacy beschädigt. Trotzdem ein toller Wrestler bis Anfang 50 und einer der besten in seiner Prime"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: morenightwrote on 01.08.2022:"Great wrestler, though a but repetitive. No doubt inspired many of the greats after him. Well rounded in the ring. His early matches in his prime are classic!"
Rating: No rating found
Sentiment: 0.27166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: zachattack2023wrote on 26.07.2022:[10.0] "The reason for why I give flair a 10 is because of the matches I have seen he has some instant classic he is on of the best talker of all time."
Rating: 10.0
Sentiment: 0.3888888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Ozzywrote on 08.07.2022:[10.0] "Ric Flar was a champion almost everywhere he went and became a 16-22 time world champ depending on whos speaking, Flair wrestled for almost 40 years excluding his upcoming 2022 match, Flair is deserving of a 10 in my eyes and all of his world title wins for his nding in ring abilities with 11 five star matches under his belts including the first 6 star against Ricky Steamboat in 79, Slick Ric might have some controversy around him but that kind of stuff cant take away from the outstanding carer of the dirstiest player in the game WOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO"
Rating: 10.0
Sentiment: 0.2285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Madmanfunaki14wrote on 23.06.2022:[5.0] "Always been a hit or miss with me. Some opponents he worked alright with some he worked terribly with. I don't have enough knowledge of him in the 70's to be completely fair but personally I have never got behind him."
Rating: 5.0
Sentiment: -0.14
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: texasyoshwrote on 19.06.2022:[10.0] "Flair is a great wrestler in every aspect of it. The Flair formula worked fantastic. He was so devoted to the essence OF the business, OF the characters. Now, it seems like he's paying the price. Ric Flair leaves behind a pretty troubled legacy, and it'll be interesting to see what history regards him as more and more comes to light about him."
Rating: 10.0
Sentiment: 0.27222222222222225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: LaothFriuswrote on 26.05.2022:[10.0] "The complete package all-rounder wreslter, a cardio beast, one of the best heels of his generation and one of the reason wrestling is as popular as it is now."
Rating: 10.0
Sentiment: 0.5666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: UWF Rules Enthusiastwrote on 21.04.2022:[6.0] "Ric Flair is one of the most overrated pro wrestlers ever. He was a very repetitive wrestler, which means that if you saw one Flair match, you basically saw them all. To his credit, he had tremendous stamina when he was in his prime, which made him a pretty good candidate for the NWA World Heavyweight Championship, since at the time, it was expected that the World Champion would wrestle long matches on a regular basis. He was an entertaining heel, and he was very popular among smart marks back in the day, but his matches haven't aged well because of his outdated move set. It is also a shame that he kept wrestling way past his prime, which meant that he basically tarnished his own status. Overall, he was a decent wrestler, and he was good at carrying weak opponents to entertaining Flair-style matches. However, he should not be considered one of the all-time greats, because there have simply been dozens of wrestlers who are better than Flair ever was."
Rating: 6.0
Sentiment: 0.1801863354037267
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: hirsty97wrote on 01.04.2022:[10.0] "If I was only allowed to give one 10 on this site it would go to Ric Flair, because he was the consummate wrestler, he was everything a wrestler is supposed to be, he could wrestle 60 minute classics with the best of them sometimes in following weeks, he is the most entertaining speaker and promo guy of all time, he is still a pop culture icon thanks to him being an influence on rappers today. He had a marketable look, from the suits, rolexes, bleached hair and robes, his only fault is that he lived the gimmick which has resulted in controversies and personal problems with alcohol and finances. Still the man is a 20+ time world champion, main evented the first 8 Starrcades, had legendary matches with Steamboat, Harley Race, Funk, Sting, Dusty Rhodes, Windham, Vader etc. Was still entertaining in his final WWF run in his 50s putting on perhaps the greatest retirement matches ever against Shawn Michaels. He's iconic in everything he did from his mannerisms, his chop, the flair flop and his blade jobs."
Rating: 10.0
Sentiment: 0.3627450980392157
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ThatsJustElDandywrote on 30.03.2022:[10.0] "Gun to my head, Ric Flair is the greatest of all-time. I think a common criticism is that Flair would often work the same match but people need to remember that Flair would often do that style of match to give the greatest shine possible to the top babyface in the territory. Remember too that Flair was often working this match with guys like Lex Luger, Sting, Nikita Koloff, Road Warrior Hawk, etc. guys that weren't exactly Jack Briscoe. Ric Flair got 30+ minutes out of Lex Luger and Sting in 1988! TV and streaming wasn't as ubiquitous either. That defense of Flair aside, when you combine all the ingredients of a great world champion you wind up with Ric Flair. The working ability, the drawing ability, the talking ability, the look and presence of a world champion. I understand that younger fans may look at Flair through a modern lens and wonder what the big deal is, but remember that many of your favorites and your favorites favorites follow the blueprint that Ric Flair created."
Rating: 10.0
Sentiment: 0.33437500000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: rishabhwrote on 31.01.2022:[10.0] "Ric Flair was a complete package and had everything you want from a wrestler. He could make anyone look good and have great matches with everyone. He did blade too often but that wasn't the only reason his matches were great. And to people who say he wrestled the same match all the time, well if someone wrestled the same match every time yet people paid to see it, you decide if it's stupidity or just a genuine art that not many wrestlers can say they excelled at. He did wrestle past his prime and was involved in controversies and all but I don't think it really tarnishes his legacy and he will still go down as one of the Greats. WOOOOOOOOOOOOO"
Rating: 10.0
Sentiment: 0.13418803418803418
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CaptainCharisma1997wrote on 19.12.2021:[9.0] "Obviously one of the all time greats and a stellar wrestler and promo. A 9 rather than a 10 simply because he liked to have the same match and cut the same promo a bit too often for my liking."
Rating: 9.0
Sentiment: 0.14166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: benny5bellyswrote on 24.11.2021:[10.0] "Ric Flair had some of my favourite American matches of all times and in his prime you were not going to get anything less then very good."
Rating: 10.0
Sentiment: 0.24777777777777776
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Uweuwesenwrote on 14.11.2021:[9.0] "Ric Flair hat einen unglaublichen Stellenwert für das Wrestling im allgemeinen! Ein klasse Wrestler und ein toller Mic Worker, jedoch gefällt mir sein genereller Stil nicht und für mein Empfinden ist er einfach zu eindimensional."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: IBladeDailywrote on 23.10.2021:[10.0] "Ric Flair carried the entire non-WWF American wrestling scene in the 1980's. He drew huge money, had excellent matches with new opponents night after night, and might be the greatest heavyweight champion I've ever seen. His ability to project intensity and emotion in equal measure is extremely rare. When I was a kid just discovering pro wrestling, I didn't care for Hulk Hogan, though I loved WWF. Flair was everything Hogan wasn't. Athletic, vulnerable, arrogant, and unapologetic. He was a douche bag but he was honest. The Four Horseman defined modern wrestling factions and Flair was always the centerpiece."
Rating: 10.0
Sentiment: 0.3196969696969697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Pete Gallowswrote on 02.10.2021:"OK, I have been watching wrestling since 1992, I have not seen as much of his 70s and 80s stuff (nor the 60s, 50s and 40s - just kidding, kinda). Seriously, when I was a kid in the early 90s, I was sure he must be in his mid 60s, he just somehow looked older than my grandfather. He is considered one of the very best, again, I never quite saw what others have seen in Ric. There was something very interesting about him, not denying that, he lived that gimmick, but I always found him quite annoying- and I do not mean the heel way, I mean the repetitive, boring way. Same promo, same match. The faceplant bump is ridiculous, as is being thrown off the top turnbuckle by absolutely everyone, in every match - and how about the flair turnbuckle flip, when he flips over the turnbuckle, tries to run along the ropes on the ring apron to the other turnbuckle and get up and jump? He gets clotheslined every time. I can honestly, off top of my head only remember one instance, where he actually succeeded- against ddp, in 1999, I think. Yes, wrestlers always use their most known moves, Bret will have his Russian legsweep sequence in every match etc, but at least it s his move - it s what he s doing to somebody else, it s not what others do to him in every match. Like part of Flair s every match is getting his ass kicked in the same way, that is his moveset. I find it weird and phoney = totally fake looking, totally what wrestling should not be. Along with not selling moves by the likes of Hogan, or Hawk (rip). It just does not look like a real competition and it is like when you are watching a movie and film crew members appear in the shot - they are not supposed to be there, they ruin the whole experience, the suspense of disbelief. You know it is just a movie, but you do not need them to interrupt you and tell you - hey btw, this is just a movie, so do not get invested in this. So Flair is yet another legend, along with Dusty, that I just do not see what others see, because I cannot buy into what they re trying to do. Just like looking back at Hogan s face pulling and gesticulating- but with him, I must say I have been captivated as a little kid. Flair to me was just an old man yelling something into the mic and getting back body dropped, thrown off a turnbuckle, faceplanting himself, then somehow, someway winning. It s an art form, I guess, but going through the same old motions was never appealing to me, never looked real and I want it to look like an actual competition. He can obviously go, his fellow wrestlers admire him, just not my cup of tea."
Rating: No rating found
Sentiment: 0.03220108695652175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: No Onewrote on 04.09.2021:[10.0] "May be the #1 greatest professional wrestler of all time (in contention with Lou Thesz). One of the greatest in-ring performers of all time. Possibly the best Ring General in pro wrestling history. The saying "He could wrestle a broomstick", was used to describe how great of a ring general he really was. Took over Buddy Rogers' "Nature Boy" gimmick and elevated it to new heights. The 1980's Wrestler of the Decade without question. One of the most charismatic wrestlers ever. One of the greatest promo artists in pro wrestling history. One of the greatest World Heavyweight Champions of all time. May be the greatest NWA World Heavyweight Champion of all time (in contention with Lou Thesz). One of the greatest workhorses that pro wrestling will ever know. Was an endurance machine who earned the right to call himself the "60 Minute Man". Founding member of the legendary Four Horsemen. Was super popular as a Heel, which was near unheard of in the era that he came up in. One of the main people who helped make you have fun as a wrestling fan. Feuds with Dusty Rhodes, Ricky Steamboat, Harley Race, Barry Windham, Terry Funk, Kerry Von Erich, & Sting are legendary. Achieved career longevity in spades. His 1992 Royal Rumble victory is legendary. Put on way too many re-watch worthy instant classic matches against a VARIETY of opponents that will forever withstand the "Test of Time". Cut way too many awesome re-watch worthy promos. Almost all of his championship wins meant something, and it took many years for him to achieve his famous 16 World Championship victories. Will always be a SERIOUS measuring stick for all pro wrestlers when it comes to true greatness. Rating him below a "10" is disrespectful to his legacy, even if he may have overstayed his welcome at times, regardless. WOOOOOOOO!"
Rating: 10.0
Sentiment: 0.48389943389943396
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TigerDiverwrote on 26.08.2021:[10.0] "The best to ever do it for sure. Just a perfect wrestler in every sense of the words. Had numerous classic matches, promos, angles and more spanning over four different decades, if not more. Not my favorite but it's impossible to deny him as an all-time great."
Rating: 10.0
Sentiment: 0.3227272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Punkman21wrote on 23.08.2021:[10.0] "THE definition of a World Champion. The look, the charisma, the ability to look great in defeat and make another wrestler's career in one promo or one match, the GOAT. Plain and simple."
Rating: 10.0
Sentiment: 0.19523809523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: greatmonkeywrote on 08.07.2021:[10.0] "The greatest wrestling star/champion/wrestler/talker/personality of all of the western world. Some would say the entire world, Japan be damned. 10 is not enough. Has there ever been a more spectacular world champion performer. Has anymore made more stars by just being with them in the ring. We see him now old and sagging, but only after he is gone and we go back and look at the tapes will we realize what we lost. THEE GOAT."
Rating: 10.0
Sentiment: 0.27
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: BrayanLaPrewrote on 06.07.2021:[10.0] "If you're asking who the GOAT is, the conversation isn't complete until Ric Flair is at least acknowledged as a candidate. One of the best and most captivating characters to ever do it, while also being a legitimately elite wrestler who influenced generations to come. Ridiculous longevity that includes some of the greatest wrestling matches, moments, promos, and storylines ever. The Ricky Steamboat trilogy may be the best trilogy of matches ever. Regardless of where you rank Flair all-time, there's no denying that he deserves mention in any GOAT discussion."
Rating: 10.0
Sentiment: 0.29629629629629634
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Daigotsuwrote on 19.06.2021:[10.0] "Might be my pick for the greatest of all time. I think more than anybody else, Ric Flair embodied wrestling. Nobody cut a promo like flair. In his prime, he was a phenomenal wrestler. Likely the best heel in the history of the sport. No matter how many accolades he gets, he might still be underappreciated."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Tomas Cunhawrote on 02.06.2021:[10.0] "Simply a complete package. Flair had the unique ability to make anyone look 500 times better than they were, and the fact that he is still a relevant name in pop culture to THIS VERY DAY ('Ric Flair Drip', appearance on Kevin Hart's 'Cold as Balls' program, etc) should tell you something. His promos were spectacular and would grab your attention just like that, his matches were amazing and, to Flair's credit, he was willing to bump around and sell for anyone and make them look like a star, like Sting or Lex Luger, etc. Not only did he have great performing ability, he had great style and looked very professional every time he was the World Champion, doing the title and the role justice like very few. For all the things I've mentioned as well as his legacy and the influence he's had, Flair can't be anything other than a 10/10. Awesome awesome talent!"
Rating: 10.0
Sentiment: 0.3394117647058823
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rodycaz IIwrote on 29.05.2021:[10.0] "Arguably the greatest heel in wrestling history. Great both in the ring and on the mic. Truly a larger-than-life character."
Rating: 10.0
Sentiment: 0.9
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: AnBwrote on 20.04.2021:[10.0] "Absolute legend. Not much more that can be said about him. Might argue that he stuck around for too long, and I remember being legitimately worried watching his later WWE matches. Possibly one of the most charismatic wrestlers of all time, and brilliant in the ring, though I understand why his style isn't for everyone. The perfect heel."
Rating: 10.0
Sentiment: 0.3111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: axebombertsurutawrote on 16.04.2021:[10.0] "Dick Slender himself, the Nature Boy. Again, I dont need to tell you what he's done for the business. He's Ric fucking Flair. The legend. Nuff said. the people who gave him zeroes are probably all Shane Douglas."
Rating: 10.0
Sentiment: -0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: BEER CATwrote on 31.03.2021:[10.0] "It. The Pinnacle. The point where all lines converge. A master in every aspect of the artform. Longevity, audience, kayfabe importance, actual importance, workrate, mic work, character, everything times a thousand. More great wrestlers have had their best ever match against Ric Flair than anyone - Race, Dusty, Steamboat, Funk, at least two von Erichs, Luger, Windham, Sting, and with arguments to be made for Tsuruta, Savage, Michaels, and the 29 other guys in the '92 Rumble. Let's tack Vader's best North American match on there as well. That alone is enough to warrant a GOAT argument, but he did all of that while cutting some of the greatest promos of all time, week after week, in front of the baby blue JCP studio sets. He led the greatest faction ever in the Four Horsemen and I struggle to think of a challenger to that throne. He toured his championship act around the globe for decades while doing so in a way that respected the babyfaces he beat and the territories he drew record crowds for. The main argument against Flair is one of a situational (and understandably common) ignorance. Flair's career nadir, both in regards to his workrate and the booking around him, happened around 1997-2002. That dip in quality coincided with wrestling's peak viewership and cultural relevance. If you base your fandom on being an Attitude Era kid, you saw Flair's worst work. But I think his best matches from the formation of Evolution up until his WWE retirement match are very significant and substantially underrated. His tag reign with Batista had a wonderful dynamic, and his feuds with Orton, HHH, Foley and Edge produced great matches as well as great story-driven television. Ric Flair's the best to ever do this thing. We're lucky to have a GOAT this obvious."
Rating: 10.0
Sentiment: 0.2665178571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: SUGAMOwrote on 15.03.2021:[7.0] "The epitome of hard to rate since most of his stuff between the early '80s and mid-1990s was good, though sometimes relied on bing to trope driven. example there is a lot DQs and Count-out in his chart. The other side of that is the fact when he was good he was the best in us in his ring in that era. Then there is the other end of run that incudle how he was booked in the NWO era of WCW his lacklustre 2nd WWE run than his TNA run less said about that the better."
Rating: 7.0
Sentiment: 0.2537878787878788
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Zaidwrote on 15.03.2021:[10.0] "One of the best talkers in the business, oozes charisma like no other, a fantastic wrestler, and a proven draw. Definitely in the GOAT conversation, simply phenomenal."
Rating: 10.0
Sentiment: 0.29375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Icon is the bestwrote on 09.01.2021:[10.0] "Ric Flair is one of the best wrestlers ever, but the most influential, just watch what this man did for freestyle wrestling in the 1980s, he always had excellent matches against Harley race and Dusty Rhodes and Sting, even in his last days he made a match of the best in history against Shawn Michaels Real, one of the most unrequited wrestlers among the new generation."
Rating: 10.0
Sentiment: 0.4373737373737374
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Old ride long linewrote on 15.12.2020:[10.0] "You can? t hold this alligator down! One of maybe 5 guys that can lay claim to being called the goat! We are truly lucky to still have wrestling? s babe Ruth alive and well today. The nature boy is the greatest heel ever bar none. His promos and matches are legendary. If you like long drawn out technical matches go back and watch his work with dusty, Harley race, steamboat, sting, macho man, hulk hogan, Bret hart and bob backlund in the 80? s and early 90? s. If you like brawling, watch his second wwe run in the early and mid 2000? s with undertaker, hhh, hbk, and orton. Don? t listen to all the boners out there that want to tell you that there were better ? technical wrestlers? out there - wrestling is fake and ric flair made you forget about that. He literally main evented for 35-40 years that shit doesn? t happen by accident. Wether you like him or not If ric flair isn? t a 10 based on career accomplishments alone I legit don? t take anything you say seriously, and your only doing a disservice to new wrestling fans. Oldest ride Longest line! Woooooooooooooooooo"
Rating: 10.0
Sentiment: 0.07800285463328945
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: medousewrote on 29.10.2020:[10.0] "The greatest wrestler to ever grace God's green Earth. Nobody did better promos, nobody had better entrances, nobody was as charismatic and only a few could physically match this guy. The absolute legend. He IS professional wrestling. Wooooo!"
Rating: 10.0
Sentiment: 0.2425
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: RandySavagePowerwrote on 03.10.2020:[8.0] "Ric Flair ist einer von denen die sich durch zu spätes aufhören die Karriere runtergezogen. Allgemein fande ich ihn immer etwas overradet, im Ring sicherlich gut aber im vergleich zu einem Ricky Steamboat, Randy Savage, Shawn Micheals oder Bret Hart nicht auf einem Level vom In Ring-Work her. Am Mic ist er einer der besten ohne zweifel, die Promo mit Mick Foley bei TNA war mega aber übertrieben gemacht. Insgesamt ist Ric Flair eine 8/10"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Ma Stump Pullerwrote on 18.09.2020:[10.0] "Flair's excellence can be really measured by the amount of guys who have attempted to replicate his character and failed to even get close to it: when it comes to his promo and outside ring talent, it's almost immeasurable. Flair has a charisma and talent on the mic that will likely never be matched, being able to play both the detestable ego driven heel for one moment and then be the cowardly outmatched cheater for the next. For the most part, Flair's heel work elevated anyone he faced to superstardom status merely through his status: anyone he fought, the crowd would cheer unconditionally to see him get trashed by them, and when he cheated to win or used his usual cheap tactics, it didn't really stop their momentum, if anything it'd would only double from his antics. Many careers were set with working with him, as unlike many guys in the business then and even today, Flair would actually get over his opponent both in the ring and out, selling like mad even if the guy he was working with wasn't that good. A lot of people state that Flair's ring work was bad, or very mediocre: that might have been true for his later years when he was significantly more limited (and in the case of his last 10ish years of wrestling bar his retirement match, shouldn't have been wrestling at all) but Flair in his prime and even beyond that to the 1990's was golden, with a moveset that (shockingly) actually made sense, combined with spots that always got a pop from the crowd, great ring chemistry with nearly any wrestler he faced, and solid technical wrestling to boot. His peak days had him wrestle more five star matches than perhaps anyone else at the time while also travelling around the world and defending or gaining championships. I think Flair is one of the very few who could be regarded as perhaps the GOAT of wrestling, even if I disagree with the concept."
Rating: 10.0
Sentiment: 0.09686974789915968
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: taabr2wrote on 05.09.2020:[10.0] "The last major "travelling" NWA world champion before the territory system was done away with. Ric Flair was one of the few pro wrestlers who was a star all over the country before pro wrestling went national in America. Flair has had some of the most legendary feuds against the likes of Sting and Dusty Rhodes, he has had some of the most legendary matches against the likes of Ricky Steamboat and Barry Windham, leader of one of the greatest stables of all time, the Four Horsemen. Hell even WWE recognizes Flair as an all time great despite Flair mostly wrestling for the competitor. His character and wrestling style inspired a whole generation. Arguably the GOAT."
Rating: 10.0
Sentiment: 0.4135416666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: THATSGOTTABEKANEwrote on 26.06.2020:[10.0] "Legend. An absolute pure legend among legends. They say you gotta beat the man in order to be the man. The stylin', profilin', limousine riding, jet flying, kiss-stealing, wheelin' n' dealin' son of a gun. The dirtiest player in the game. Woooooo! . The nature boy Ric Flair."
Rating: 10.0
Sentiment: -0.02857142857142858
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: AndoCommandowrote on 17.06.2020:[10.0] "Is Ric Flair the greatest professional wrestler of all time? Maybe. Don't quote me on it, but maybe."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: King of Strong Stylewrote on 22.04.2020:[10.0] "Einer der absolut besten Wrestler aller Zeiten und schafft es locker in die Top 10 der Besten aller Zeiten. Im Ring zu seiner Zeit einer der besten oder der Beste sogar, am Mic absolut genial und auch Charisma in übermenge. Immer wenn man Ric Flair gesehen hat wusste man das man gut unterhalten wird, einziger Manko ist das er nach seinem großem Retirement nochmal in den Ring gestiegen ist aber dennoch völlig verdient die vollen 10 Punkte! Wooooo!"
Rating: 10.0
Sentiment: 0.6072916666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Keksteurwrote on 11.04.2020:[10.0] "The absolute GOAT of wrestling, he nailed everything that makes a great wrestler and a great world champion."
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: James Rowwrote on 06.04.2020:"I get that my opinion is completely opposite to almost every fan but I will never understand Ric Flair's popularity. Just listening to him talk made me want to change the channel. I've just never seen the appeal. I go back and listen to old promos and watch old matches, but I just don't see anything there. He seems really good at bleeding though (those faces can be terrifying)."
Rating: No rating found
Sentiment: -0.01666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Caaswrote on 25.03.2020:[10.0] "Ric Flair's overall rating being barely above 9 is an absolute travesty. With the exception of Frank Gotch, Ric Flair is the greatest professional wrestler of all time. There were bigger draws and better workers, but nobody has since or likely ever will reach the strength of Flair's median."
Rating: 10.0
Sentiment: 0.225
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: AAA3000wrote on 07.03.2020:[4.0] "Ich schließe mich der Offenbarung an. Ric hat nicht gewusst wann seine Zeit abgelaufen war und damit seine Karriere unnötigerweise ruiniert. Alles was davor war wurde somit heruntergezogen was sich in meiner Bewertung widerspiegelt."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Liam Willowswrote on 17.11.2019:[7.0] "I love Ric Flair on the mic , and he's a good wrestler. The only thing is that alot of his matches focus on his opponent being on the ground and him targetting the legs , having the match go slowly. However , this does add to the realism."
Rating: 7.0
Sentiment: 0.22499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Excellence of Executionwrote on 04.11.2019:[7.0] "Ric Flair war ein klasse Entertainer und eine echte Rampensau, auch wenn mich seine Promos nur bedingt angesprochen haben - aber das ist in dem Fall wirklich Geschmackssache. An sich auch kein schlechter Heel Worker. Allerdings spulte er gut und gerne die letzten zwei bis drei Jahrzehnte seiner Karriere nur noch sein Standardprogramm runter, sodass ich ihn im Ring nur wohl dosiert noch unterhaltsam fand. Vor allem weil Flair dadurch jemand war, dessen Match-Qualität extrem vom Gegner abhing. Denn meist hing es an eben jenem, mehr aus Flair rauszuholen. Wozu Flair durchaus fähig aber von alleine viel zu selten willens war. Insofern kann ich auch den fast schon unumstrittenen Hype um ihn nicht wirklich nachvollziehen. Denn sind wir mal ehrlich: Die meisten von uns kennen ihn nur als den durchgeknallten Elder Statesmen des Wrestlings, dessen beste Tage ALLERspätestens seit Beginn der 90er hinter ihm lagen."
Rating: 7.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheV2wrote on 30.09.2019:[9.0] "It's tough to rate Ric Flair. He was revolutionary in his time. In his time. Fighter from heart. He could be everything the business needed him to be. At a certain point he was sticking to the top due to the stardom he already had. Unlike other similar cases, he could back it up with amazing storytelling and except for few cases he didn't steal the show of others. His presence alone was surely so much momentum for many legends and veterans of today. Truly you can't imagine some wrestlers' career without him. One other similar man was rather taking others' moments away, while Ric gave them life."
Rating: 9.0
Sentiment: 0.0807997557997558
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Zo-Zuwrote on 09.09.2019:[8.0] "Formulaic, but I guess since the formula is so good it balances out. As long as you're running through the same spots, better make sure they're excellent, entertaining spots. He skyrockets into 'legend' territory on the back of his innate charisma more than anything else."
Rating: 8.0
Sentiment: 0.365
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: KyleEnjoysWrestlingwrote on 08.08.2019:[9.0] "I get the appeal of Flair concerning his drawing power & his character work, but I've never been of the mind that he's the great in ring worker that people paint him as. That said, I know he's one of the best & most honored to ever do it. But I personally have never been much of a Flair guy."
Rating: 9.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: LeafKingwrote on 17.07.2019:[10.0] "I think in the ring that Ric Flair is one of the most overrated wrestlers of all time. The way he's praised as the "greatest" to ever do it is complete nonsense. Too much of his stuff revolved around clown crap and ridiculous selling. Not a fan of that. However, he's still gets a 10 from me. Why? Promos and character. Just freakin' excellent and transcended the business with his appeal as 'The Nature Boy' Ric Flair. And while I know I just dumped on his in-ring work, he still did have many classic matches throughout his historic career despite my criticisms, and I highly respected his ability to go an hour any night multiple nights a week, sometimes dozens straight. He was a one of a kind machine... just an incredible once in a lifetime talent."
Rating: 10.0
Sentiment: 0.2795555555555556
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Grekkowrote on 03.07.2019:[10.0] "The very fact that all promoters chose him as the world champion on so many different occasions should be reason enough, however if you insist... He also inspired Triple H and helped launch the careers of Sting, Randy Orton, Batista, Barry Windham and many others. He created the best female wrestler of the decade, Charlotte. His trilogy of matches with Ricky Steamboat is considered by many the greatest of all time. His "Retirement" match with Shawn Michaels was perfect from a psychology standpoint. He was the most humble top star ever, as he jobbed for the NWO constantly. And no matter what the idiots that can't spell below me (Devitchiu & LordGabriel said) his promos are untouchable, top 5 of alltime easily."
Rating: 10.0
Sentiment: 0.3313725490196079
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Aurtletheturtlewrote on 04.06.2019:[10.0] "Quite possibly the most charismatic wrestler to ever live. Ric Flair was the king of style and substance, from his promos to in-ring work, he bled buckets of both charisma and blood. A lot of people want to write him off for his later years but shoddy TNA booking aside, Flair could still somehow go better than most in his 60s and for a long period of time during the 80s and 90s, Flair was the best North America had to offer. For being such a substantial force for multiple decades make Flair automatically in contention for Greatest of all-time and personally? I hold him just above Misawa, Kobashi and Hansen as the overall GOAT."
Rating: 10.0
Sentiment: 0.23664772727272726
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Sick Lebowskiwrote on 13.05.2019:[10.0] "Letzter großer Fackelträger des territorialen Wrestlings und neben Sting das Aushängeschild der WCW. Am Mikro einer der Besten überhaupt und auch im Ring ein Großer, auch wenn er mit der Zeit teilweise einen ziemlichen Routineablauf in seinen Matches hatte. Sein größtes Manko ist, dass er nicht aufhören konnte und selbst nach seinem eigentlichen groß gefeierten Retirement noch in den Ring steigen musste. Aber nichts desto trotz ist der Nature Boy einer der ganz großen Legenden dieses Geschäfts."
Rating: 10.0
Sentiment: -0.7142857142857143
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Steamboat2511wrote on 05.12.2018:[8.0] "Ric Flair ist eine große Legende und eine der Persönlichkeiten des Wrestlings schlechthin. Einen Ausdruck hat dies u. a. in den ungewöhnlich zahlreich gewonnenen Titeln gefunden. Im Ring gehörte er weder zu den besten, noch zu den schlechtesten. In Vor-WCW-Zeiten, WCW-Zeiten und auch noch frühen WWE-Zeiten sind durchaus sehr ansehnliche Matches dabei. Am Ende ist Flair für mich leider zum klassischen Beispiel des zu späten (bzw. nie stattfindenden) Karriereendes geworden. Die größte Moveset hat er nie gehabt, am Ende wars dann deutlich zu wenig (Figure-4-Legn und Chops). Seine Person ist hingegen purer Kult und er konnte mehrfach (Horsemen, Nature Boy, Evolution) in seiner Karriere mit Gimmicks richtig überzeugen. Am Mic war Flair einer der besseren, auch wenn mich sein beständiges Nuscheln manchmal nervt. Doppelter Hall of Famer."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: RatingsMachinewrote on 15.10.2018:[10.0] "Ric Flair wasn't the greatest at every aspect of wrestling, but he was so good at the things that he wasn't the best at that he was still the best American-style wrestler of all time."
Rating: 10.0
Sentiment: 0.925
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: JEK 1991wrote on 01.10.2018:[10.0] "Excellent wrestler and was great at everything. Very technical which made him become successful in his career.  I loved his colorful coats he had. WOO!"
Rating: 10.0
Sentiment: 0.6041666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Oliver95xwrote on 27.09.2018:[8.0] "Er hat Charisma und einige gute Matches in seiner Karriere gehabt. Er hat mich oft Unterhalten auch wenn ich ihn nie als die Elite gesehen habe."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DaWizWithADwrote on 07.07.2018:[10.0] "He's the GOAT of American wrestling, and whether you like it, or you hate it, learn to love it. Great promo always and yeah, he stayed around too long but honestly it was only his TNA matches where I actively wished he'd never wrestle again. Over 20 years of sustained excellence."
Rating: 10.0
Sentiment: 0.11458333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: thehitman613wrote on 27.05.2018:[6.0] "Ric Flair was great on the mic and had amazing feuds over the years but on the squared circle he wasn't more than satisfactory. Growing up, I only had access to the WWF programming and all I could see from him in there wasn't that great. He was outstanded by Bret Hart or even Mr. Perfect, and didn't had any memorable matches because of his floppy work. In the past years I've been watching a lot of WCW programming on the WWE Network and it's just more of the same. There are a lot of examples where you can see his opponents carrying him through the match. He misses spots, overdo his reactions, he's simply floppy. I respect Flair but when it comes to the wrestling itself, he wasn't that good."
Rating: 6.0
Sentiment: 0.4291666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sebastian Vwrote on 14.04.2018:[10.0] "Er ist in meinen Augen einer der besten aller Zeiten. Im Ring war er in vielen Belangen in seiner Hochzeit der damaligen Zeit voraus. Er zeigte Selling von einem anderen Stern, hat Psychologie wie kaum ein Anderer und war ein begnadeter Techniker, der auch in dem Bereich mit Moves wie dem Figure Four Generationen prägte. Das tolle an ihm war immer, dass er nicht nur Weltklassematches auf großen Bühnen gegen große Gegner a la Steamboat zeigte, sondern aus jedem Gegner überall ein gutes Match rausholte und wenn es nur ein 6 Minutenmatch bei Nitro war. Selbst im hohen Alter wie bei seinem WWE Abschied gegen Shawn Michaels war er noch zu tollen Matches im Stande, wenn auch mit anderen Mitteln als in den 1980ern. Im Ring daher klare 10 Punkte. Gleiches gilt für das Charisma. Er ist eine Jahrhundertpersönlichkeit, der hassenswert und liebenswert sein konnte und der das Motiv des Gauners, den die Leute trotzdem mochten ( wie später Eddie Guerrero), prägte. Am Mic würde ich ihm 9 Punkte geben. War immer perfekt in seinem Charakter und 100 prozentig authentisch. Sind für mich knapp keine 10 Punkte weil mir dafür ein stückweit etwas innovatives gefehlt hat und dennoch: Ein begnadeter Redner. Alles in Allem 10 Punkte für einen der besten Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: pappahousewrote on 22.03.2018:[7.0] "Was soll man großartig zu Ric Flair sagen, mega Promos, mega Mic-Work, für mich allerdings auch sehr eingeschränkte Wrestling-Skills. In den 2000ern kaum Weiterentwicklung immer wieder mit dem Salto über die Ringecke, immer wieder der Slam wenn er aufs Turnbuckle geht. Das Charisma war und ist aber immer weltklasse."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: A-Doublewrote on 05.02.2018:[9.0] "Einer der erfolgreichsten Wrestler aller Zeiten. In Sachen Bedeutung hat er sicher ne 10 verdient. Er war over wie nur irgendwas, und hat über einen längeren Zeitraum als jeder andere an der Spitze gestanden. In den 80ern war er DER World Champion. Jedes Mal, wenn der Titel woanders war fühlte sich das nur wie ein Zwischenspiel an. Als Heel besser als in der Face Rolle.  Allerdings muß ich ganz persönlich zumindest einen Punkt abziehen. Flairs Zeit waren die 80er, und schon in den 90ern wirkte er alt. Bei jedem Chop wabbelte da die Brust. Da hätte er aufhören sollen, statt noch weit in die 2000er weiter in den Ring zu steigen. Es wirkte einfach nicht mehr glaubwürdig. Wäre er bloß, nachdem er endlich gegen Hogan angetreten war zurückgetreten und Manager geworden.  Außerdem: Obwohl Ric wohl mit die beste Kondition der Wrestling Geschichte hatte und 60-Minuten-Matches wie kein anderer überstanden hat, hatte er imo technisch nicht annähernd drauf, was ihm nachgesagt wird. Den Fans war es meist egal, aber einige Promoter und Booker wie zB Ole Anderson sahen es auch so: Flair hat in den allermeisten Matches das gleiche gemacht. Es gab die typischen Flair-Spots, die immer dabei und nicht glaubwürdig waren. Der Flip über den Turnbuckle, dann ein paar Schritte laufen und umkippen. Aufs oberste Seil klettern, und von dort in die Mitte des Rings geworfen werden. Der umgedrehte Figure-4-Leglock. Natürlich hat er extrem viel gewrestlet, und es gibt auch sehr guten Matches. Aber zu oft spulte er seine Formel ab.  Ändert alles nichts daran, wie over er war. Aber eben für mich ein Punkt Abzug."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CHN325wrote on 01.02.2018:[9.0] "Simply the man. All the star power of Hulk Hogan with 10x the skill in the ring. Great at selling, great at telling stories, one of the best on the mic. Held on a little too long when he should of walked away after his Mania match with Shawn. At least he won the KFC Colonel Rumble to cap off his career. WOOOO!"
Rating: 9.0
Sentiment: 0.2839285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TylerWhitewrote on 29.01.2018:[9.0] "Definitiv eine der Legenden der Wrestlinggeschichte. Er hatte eines der besten und ikonischsten Gimmicks seinerzeit und war technisch weit seiner Zeit voraus. Vor allem ist er unglaublich charismatisch und sein ganzes Auftreten ist so besonders und so legendär. einer der besten Wrestler aller Zeiten. 9/10."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Big Blue Machinewrote on 22.01.2018:[10.0] "If not the best, one of the greatest of all time without a doubt. Ric Flair has done incredible things over the years, not only his incredible trilogy with Steamboat or the Wrestlemania classic with Randy Savage. Even at an advanced age, Flair has had excellent matches with Triple H, Edge and Shawn Michaels. Technically gifted, a natural-born storyteller and an expert in-ring psychologist, if you want to know something more of the american wrestling history, you can't take Flair out."
Rating: 10.0
Sentiment: 0.4897435897435897
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: kldub4lifewrote on 19.01.2018:[10.0] "Wow, so much has been said!  It's funny to me that even with the idiots rating Ric Flair as a 2 or a 4 the average is still a 9 lol.  The are numerous reasons I rank him a 10 but I'm only going to mention1 here.  Flair simply made anyone who entered the ring with him look good.  This is the biggest reason the NWA kept the belt on him for the better part of a decade.  He could travel from territory to territory and no matter the quality of that region's top guy Flair would put on a match leaving the local favorite looking better even though they very rarely took home prize."
Rating: 10.0
Sentiment: 0.16117647058823528
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Devitciiuwrote on 07.01.2018:[2.0] "I don't get Ric flair. Maybe it's because I didn't seem him until 1999, but I just don't see what's to like. His in ring work isn't great. There's no real athleticism or strength, just old holds and dirty moves. I've heard the story he tells in the ring is incredible, but watching Steamboat VS Flair I still don't see it. His promos are annoying and epitomise every negative thing about professional wrestling: incoherence, loud and angry poorly delivered lines, repetition, out of date references. He's the king of repetition. I don't want to see him get beaten in the ring; I don't want to see him at all. Flair is one of those wrestlers who makes me change the channel."
Rating: 2.0
Sentiment: -0.06363636363636363
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Dragon Fighterwrote on 16.11.2017:[10.0] "The natural boy Ric Flair, WOOO. A true icon, legend of this business. Great charisma, excellent talker, excellent in ring worker for sure. Also a proven draw. He can sell his ass off, make his opponents look like million bucks, put on a good match with various guys with various levels. He also put over his opponents crazily on microphone as well. Even in his 50s, he still bumped, sold like a badass motherfucker. Sure, his personal life is not very well-received. Even you can call him bad boy or something else, but you can't deny his contribution to the industry. That's enough for me. A well-deserved 10."
Rating: 10.0
Sentiment: 0.2366666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheRainmaker28wrote on 09.11.2017:[10.0] "My favorite american wrestler of all-time. A master in structuring matches, amazing selling, psychology, character work and a ring general. Extraordinary talker, charisma and a proved draw. Fantastic always will describe Ric Flair for me."
Rating: 10.0
Sentiment: 0.3138888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: BigMikewrote on 18.09.2017:[10.0] "You talk about 1980-1990 you talk about Ric Flair. He had everything: Charisma, Mic work and he could wrestle 60 minute matches with ease. He had many classic matches with Steamboat, Funk and Sting.  Even after 2000 he still managed to put on classic matches"
Rating: 10.0
Sentiment: 0.27777777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: coolserazwrote on 31.08.2017:[10.0] "Nature Boy Ric Flair is the greatest overall wrestler of all time. Promo, work rate, drawing power. Flair is glorious in all of them. He carried on a bit too late in his career but his legacy is so strong that it cannot be ruined. He is also responsible for giving us Charlotte who is more than carving her own legacy as a great wrestler."
Rating: 10.0
Sentiment: 0.4041666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kenshin Uesugiwrote on 20.08.2017:[7.0] "Bei Wrestlemania 24 ging zweifelsohne ein der größten Wrestler der Welt aus dem Ring, es wurde geweint, es wurde getrauert und man ehrte diesen einmaligen Wrestler und seine Karriere. Das Denkmal des Ric Flair strahlte so hell und jeder erinnerte sich an die tolle Zeit. Jetzt nach etlichen Verfehlungen, merkwürdigen und schlichtweg unverschämten Handlung, hat das Denkmal überall Risse bekommen. Ich hoffe das es dabei bleibt und der Name Ric Flair nicht nur mit negativen Meldungen und Ereignissen in Erinnerung bleibt, da das Psoitive immer noch überwiegt und das Lebenswerk so groß ist. Aber sehr oft kommt es mir so vor das Flair selbst mit einen Vorschlaghammer sein Denkmal beschädigt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Serspidermonkeywrote on 20.08.2017:"the Sept 1st 1992 title change was NOT an episode of Superstars, but rather an episode of WWF Prime Time."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: acutelockwrote on 24.04.2017:[10.0] "What is there to even say....... I'm not one to crap on people's opinions and one of my favorite aspects of pro wrestling is its subjectivity. That said, Ric Flair is one of a few guys ever where I just think it's fundamentally impossible for someone to like pro wrestling as an art form and dislike Ric Flair as a performer. He just truly embodies so many of the things that make it great."
Rating: 10.0
Sentiment: 0.022222222222222254
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: LSEstrelawrote on 15.04.2017:[10.0] "The one. The only. The Nature Boy Ric Flair.  The best talker of all time. An all round 10/10.  Best matches: VS Steamboat, Chi-Town Rumble; VS Michaels, WM 23; VS Steamboat, Clash of Champions VI."
Rating: 10.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Blood Pumpwrote on 30.03.2017:[10.0] "Ive seen some consider him as a routine man or boring. Hell Bret Hart wasn't a fan of his in ring work but man if you can get past the pacing and the 'routine man' slander hes one of the best. He played the narcissistic heel to a T because that's what he was; a narcissistic money driven maniac who went insane for the women and could last longer then you in a match or in bed. Thing is he could back up his ego stroking. That being said he was a man of the 70s and 80s so he wrestled a much different pace then some would have preferred. He was fast for the early 80s, but by the time the 90s rolled on the pace of an average wrestling match had shifted. This makes the lack of appreciation understandable. Unfortunate, but understandable. Not everyone can chill for an hour and appreciate a long style story telling from one of the best in ring story tellers ever."
Rating: 10.0
Sentiment: -0.05000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: WrestleArtswrote on 28.03.2017:[10.0] "Bester Heel, bester Micworker, bester Wrestler und größter World Champion aller Zeiten. Entwickelte einen Wrestlingstyle, dem es ihm ermöglichte jeden noch so untalentierten Jobber in jedem Territory dieser Welt wie einen Star aussehen zu lassen und durch ein 60-Minuten Draw zu ziehen, bei dem sein Selling alleine die Massen in die Hallen zog, sobald er für die nächste NWA Titelverteidigung wieder in der Region war. Niemand war besser darin den Fans zu geben was sie wollen; Prügel zu kassieren, wie der größte Lappen und die größte Pussy auszusehen, nur um am Ende noch irgendwie die Kurve zu kriegen, den Titel zu behalten und die Halle mit noch mehr Heat zu verlassen. Seine Promos als Anführer der Hourseman warscheinlich die unterhaltsamsten aller Zeiten, kreierte geniale Catchphrases und Punchlines am laufenden Band, hatte eine Ausstrahlung wie kein anderer, volle 10 Punkte, ohne Zweifel."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: LordGabrielwrote on 24.02.2017:[4.0] "Boring wrestler... boring gimmick i don't what some people see at this guy... it was the same thing for a lot of years , ok he was a god tehnician but that's all , he was bad at mic , and overrated , John Cena's 16 times championship is clearly better than Ric Flair's reignins all over the places... really? WCW? NWA? 16 championship in 2 different companies"
Rating: 4.0
Sentiment: -0.18749999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Titansrevengerwrote on 04.02.2017:[7.0] "The Nature Boy is an overrated prima donna. His matches were contrived and basic. Sure he had a great character and loads of charisma but his in ring work was unremarkable. To me Ric Flair could hype his matches and trash his opponents but he never truly delivered in the end. Everything was pomp and circumstance which is half the battle but from bell to bell he never fully delivered. Then he eventually became a one trick pony and overstayed his welcome."
Rating: 7.0
Sentiment: 0.23888888888888893
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Real Raterwrote on 21.01.2017:[8.0] "Ring: Klar ist er wahrscheinlich der beste US Wrestler der 80er aber er hätte auch einfach Mitte der 90er aufhören sollen, deshlab nur 8 P. . 8/10 (50%)  Promos/Schauspieltalent:Auch hier sehr stark. 9/10 (25%)  Charisma/Statur/Gimmick:Früher mit viel Charisma ausgestattet, aber als alter Mann nur noch langweilig. 6/10 (25%)  Sind dann insgesamt 7, 75 Punkte für The The Nature Boy.   = 8 Punkte"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: SrHunterwrote on 20.12.2016:[10.0] "Just one of the best american wrestlers in history, Flair is legendary, the guy breathe charisma and is a beast on the microphone, his feud with Steamboat is legendary, and was given 4 FIVE STARS, the guy don't have his reputation for less, and his post prime work in 2002-2008 was pretty decent too. Anyway one of the best of all-time for sure."
Rating: 10.0
Sentiment: 0.5277777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Coltwrote on 08.12.2016:[10.0] "Zweifellos einer der ganz großen im Business und für mich auch immer noch - neben Triple H - der beste Heel-Champion den die WWE je hatte. Großartig am Mic, unvergessen seine Fehde mit dem Macho Man, dazu im Ring ein sehr versierter Techniker und Stratege der selbst gegen schwache Gegner noch gute Matches abliefern konnte. Besondere Aufmerksamkeit verdient die Tatsache, dass er zu Beginn seiner WWE-Karriere bereits über 40 war und trotzdem spritziger wirkte als so mancher Jüngling. Es hat generell eine gewisse Komik wenn sich ein Wrestler "Real World Champion" nennt, doch bei Flair wirkte es überhaupt nicht lächerlich. Er hatte einfach diese Ausstrahlung von Coolness und Überlegenheit, mit der er selbst als Neuling wie eine ernst zunehmende Gefahr wirkte."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: SPKMwrote on 06.11.2016:[10.0] "As far as I'm concerned Flair is the best wrestler who has ever lived. He's the total package, fantastic on the mic, great wrestling, amazing brawling, extremely over with any crowd he's in front of. He's just the best, the best storyteller in wrestling ever AND he's got the best most iconic mannerisms ever (WOOO, elbow dropping the jacket, strutting) he's just the best."
Rating: 10.0
Sentiment: 0.5339285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MAGICIANwrote on 13.10.2016:[10.0] "Ric Flair gehört zu den besten, den allerbesten aller Zeiten. Einer der einflussreichsten Wrestler aller Zeiten, der wohl Platz in jeder Top20 finden wird. Im Ring eine Ikone, seine Einflüsse sieht man heutzutage sehr, ganz besonders bei jedem einzelnen Chop. Einer der besten Worker aller Zeiten, der beste Worker der 80er im Ring (10/10). Am Mikrofon ist es ebenfalls die volle Punktzahl (10/10), Charisma hat Flair wie kein zweiter (10/10) und auch über seine Ausstrahlung muss man nicht diskutieren (10/10). Ric Flair ist eines der besten Gesamtpakete aller Zeiten und völlig zurecht 20x World Champion gewesen. Insgesamt sind das dann 10. 00 von 10 Punkten - 'göttlich'."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: NastyYaffawrote on 10.10.2016:[10.0] "Ric Flair is without a doubt one of the greatest to ever lace up a pair of rasslin' boots. Incredible as the champ, elevating everyone he faced, a great babyface wrestler (vs. Vader, Starrcade '93), a great heel wrestler (vs. Ricky Morton, Great American Bash '86), charismatic, one of the best talkers in wrestling, brilliant when working on top, brilliant when it comes to selling & still kicked ass from 2002 to 2008 in his last WWE run having quality matches against the likes of Triple H, Edge & Shawn Michaels. Ric Flair is the man."
Rating: 10.0
Sentiment: 0.6749999999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mantafahrerwrote on 17.09.2016:[10.0] "Der einzige Grund, warum Flair hier bei Cagematch nicht der Spitzenreiter der Wresterbewertungen ist, ist weil viele ihn auf seinen eher unschönen zweiten Run bei der WWE reduzieren. Hätte er in den Mittneunzigern aufgehört, würden für ihn nur Komplimente fließen, er war in seiner Prime eines der größten Gesamtpakete der Geschichte mit unglaublichem Charisma und der Fähigkeit, Klassiker mit den richtigen Leuten (siehe Steamboat) zu worken."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CrushBanoncawrote on 05.09.2016:[10.0] "Despite my dislike for Flair nowadays, there's no denying that he is, without a shadow of a doubt, the greatest American wrestler of all time. His work in the ring, on the microphone and in almost every aspect of wrestling in the NWA, WCW and Japan between 1978-1990 is unmatched. In his prime, he could have a great match with a broom, as Dave Meltzer once famously said. He never played politics and worked hard to put everyone over, most importantly Sting and Lex Luger, and in the case of good old Stinger, he made Sting into a star and the face of WCW. His programs and matches with guys like Ricky Steamboat, Terry Funk and Dusty Rhodes are legendary. His run in the WWF had its moments too, with a great program and match with Randy Savage. Nowadays, and really for a quite a long bloody time, ever since 1993 in fact, he's just been an embarrassing shambles of his former self. There's still been some highlights, such as his renewed feuds with Savage and Sting in WCW, his match with Bret Hart in January 1998 and his emotional "retirement" (in quotations because he selfishly broke that after how much WWE gave him a great send off) match Vs HBK at Wrestlemania 24, but in both his personal life and on screen, he's just been an embarrassing old man who just won't go away. His TNA run from 2010-12 was particularly bad. So congratulations on tarnishing your legacy, Ric, but nevertheless he is still one of the all time greats."
Rating: 10.0
Sentiment: 0.18159722222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Marcoboowrote on 02.09.2016:[2.0] "I just can rate his in Ring working since 2003 and never liked him. This Old school style in his last years – even in time of Evolution was the worst that I have ever seen. A slap here, a whoo there and one FFL in each match. Wow but no thanks. As a manager instead his performance was good - every time. But here I am just rating his in ring skills."
Rating: 2.0
Sentiment: -0.07142857142857142
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Lutzwrote on 25.08.2016:[10.0] "Ohne Zweifel eine Legende und besten aller Zeiten. Hat leider den richtigen Zeitpunkt zum In-Ring Karriereende verpasst. Für mich klare 10 Punkte"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: tobiwwewrote on 13.07.2016:[10.0] "Ich bewerte Ric Flair mit 10 , weil er die Legende ist. Ein Mann der alles mit gemacht hat, er wurde Gehypte, er hat sich hingelegt für Neue Kräfte. Er wahr im Ring sehr gut, sein Charisma ist einzigartig, seine Mic Skills unbezahlbar. Immer gab es Reaktionen auf ihn von den Fans. Whooooooo!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: YetiFaunwrote on 29.06.2016:[7.0] "Ric der Nature-Boy... einer mit dem meisten Charisma of all Time... the dirtiest Player of the World.. aber trotzdem kann ich ihm nur 7 Punkte geben... warum? Ich wiß nicht seine Promos waren nie mein Ding, wrestlerisch sicherlich besser als 7 P. aber trotzdem gibt es für mich weltweit viel mehr Leute die eine höhere Bewertung verdient haben.. aktuell als Manager seiner unfassbar nervigen Tochter sehr unnötig, was meine Bewertung sicherlich nochmal etwas herunterzieht."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: mdkarlwrote on 13.06.2016:[10.0] "an argument can be made hes the best ever... people make a fool of themselves with some of these rankings.  even if you personally dont like flairs gimmick when hes 55 years old dont embarrass yourself ranking him if you are completely clueless about flairs career and wrestling history"
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Chosen Onewrote on 09.06.2016:[10.0] "WOOOOOOOO! Ric Flair is a true legend and pioneer to the wrestling business. He has captured title and championships such as the WWE and WCW World Heavyweight Championship and is the only two time WWE Hall of Famer among other accomplishments. He has had great feuds, rivalries, promos, and matches in both WWE and WCW. Overall 10/10."
Rating: 10.0
Sentiment: 0.1708333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ErycK24wrote on 07.06.2016:[9.0] "Back in the 70s, 80s and early 90s he was great. But due to the extra unnecessary 10 years that he wrestled as an old man, Flair buried talent and didn't help bolster some talent. The fact that he could even wrestle in his 60s is remarkable but he shouldn't have wrestled in his 60s."
Rating: 9.0
Sentiment: 0.153125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Randomuser12345wrote on 01.06.2016:[10.0] "It's Ric Flair people. He looked like a million bucks and he made his opponents look the same. The man oozed greatness, and has every right to be considered one of the greatest to ever lace up a pair of boots."
Rating: 10.0
Sentiment: 0.42857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rastarazor1970wrote on 13.05.2016:[9.0] "My idea & opinion of a particular wrestler. Good guy or bad guy got to have some swagger, look good body and outfit. Know how to talk smack or shut it down, and of course have some skills, moves and ability.  Outfit: 9 Body build: 7 Swagger: 10 Smack Talker: 10 Ability: 9 Moves: 9 Single: 9 Tag Team: 8 Longevity: 10 *Comment: "The Nature Boy" Ric Flair is the best of all time. He is the reason for the continuation into the ECW, WWF and TNT. The NWA was the best. No other wrestling character had or has ever had what Flair brought (Period).  Overall Rating: 9. 0"
Rating: 9.0
Sentiment: 0.27021825396825394
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: JordanACEwrote on 11.05.2016:[10.0] "Probably the greatest of all time.  Flair had it all. The look, the skills, the charisma. Basically, the total package!  He had so many classics, the guy is just iconic. Oh, yeah... WOOOOOOOOOO!"
Rating: 10.0
Sentiment: 0.53125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mizzle Assault Antwrote on 05.05.2016:[10.0] "Perhaps the best of all time, classic matches in no less than 4 decades and an iconic character to boot. Amazing promos, amazing charisma, anybody who doesn't see Flair as an all time great is crazy in my book. He can't be judged on his very, very late career, because that's only the tiniest tail end of the incredible complete package that was Flair."
Rating: 10.0
Sentiment: 0.3133333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: EGeraldhuebnerwrote on 28.04.2016:"(wie z. B. auch Hogan) "Meister" seiner berühmten Aktionen (im Unterschied zu diesem nur dermaßen gut, witzig unterhaltend bzw. talentiert) ... 1. laufen, stolzieren (auch der beste Gegner sieht dabei lächerlich aus), - sobald er getroffen wird, taumeln, umfallen (auch der schlechteste Gegner sieht dabei gut aus), 2. üble, aber immer wieder herrlich gerissene, verschlagene, listige Aktionen ("the dirtiest Player in the Game"), genau so muß ein "perfekter" Heel einfach nur sein, 3. Chops (Schläge gegen den Hals, die Brust ... wird als Referenz von anderen imitiert) 4. der Figer for Leg Lock (zwar unspektakulär, aber grandios ... gerade durch seine geniale Schow dabei) , 5. sein ganzes abfeiern hinterher oder auch mal zwischendurch ... inklusive dem berühmten "Wooooooo". Ric ist der größte Entertainer von allen in diesem Geschäft. Wie oft hat er eigentlich schon aufgehört und kurz darauf erneut ein Comeback gemacht ? ^^ Mr. Flair wird eines Tages vor laufender Kamera im Ring sterben (wie Terry Funk oder Mick Foley) und ich glaube inzwischen, das würde allen von ihnen sogar sehr gefallen."
Rating: No rating found
Sentiment: -0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: killowenskillwrote on 27.04.2016:[10.0] "The best wrestler of his era and the owner of the nine honored the highest ratings. Especially, of course, remember the matches with Steamboat, which have become a real breakthrough in its time. As Flair terrific speaker and winner of extraordinary gimmick, played with enthusiasm. The greatest man."
Rating: 10.0
Sentiment: 0.4222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mean Smark Callouswrote on 13.04.2016:[7.0] "Way overrated. Sure he was awesome back in the 70-s to early 90's but he continued WELL past his prime. Notorious for holding other wrestlers back while he continued to hoard the main event spot despite clearly being too old to be believable in a fight. incredibly lazy conditioning, flabbiest crappiest body I've ever seen on a World Champion. Sure he had Mic skills but the man constantly oversold everything, and again, put on a shirt bro. Bonus points for his penchant for blading though. Also, Scott Steiner made him cry. Seriously, just ask him and Shane Douglas about "Dick Flair"."
Rating: 7.0
Sentiment: 0.10598958333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Doctoriusefulwrote on 05.04.2016:[10.0] "Hat mehrere Jahrzehnte technisch im Ring und am Mic auf Weltklasselevel geworked. Hat das wohl einflussreichste stable mitbegründet. Hatte auch Talent zum Humor. Niemand anderes konnte so lange so überzeugen. Zu Recht Rekordchampion und der GOTT des Wrestlings."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: BadAssChonowrote on 12.03.2016:[8.0] "Ich verstehe diesen Hype um Flair gar nicht. Ich fand seine Ring Performance nie so toll und sein Moveset ist sehr begrenzt. Die starke Ringpsychologie von ihm kann da auch nicht alles ausbügeln. Sein komplettes Micwork ist einfach nur schlecht. Man kann ihn dadurch in keinster Weise ernst nehmen. Er lispelt und spricht so als hätte er vor jedem Auftritt 10 Bier konsumiert. Und auch diese ganzen "Woooooo" Chants verhelfen ihm nicht zur Glaubwürdigkeit. Vll war er in den 80zigern ja Weltklasse aber ich kennen ihn erst seit Anfang der 90er und war nie von ihm begeistert.  EDIT: Früher wesentlich besser als in seiner WWE Zeit -> korrigiere meine Wertung um 2 nach oben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: inZideoutwrote on 27.02.2016:[9.0] "One of wrestling's greatest heels had legendary rivalries with the likes of sting and Hulk Hogan a true legend"
Rating: 9.0
Sentiment: 0.7833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MrPogowrote on 19.02.2016:[5.0] "Ric Flair ist nicht leicht zu bewerten; auch zu seinen besten Zeiten technisch an der ein oder anderen Stelle oftmals unsauber gewesen und hat im Prinzip seine gesamte Karriere über ein und das gleiche Match nach dem gleichen Schema und mit dem gleichen begrenzten moveset gewrestled. Andererseits sehr charistmatisch, war jederzeit in der Lage die crowd mitzureißen und sehr gutes Selling. Ist unterm Strich jedoch meilenweit davon entfernt (einer) der beste(n) Wrestler aller Zeitet zu sein; diese (Fehl-)Einschätzung ist wohl vor allem dem hypen Dave Meltzers geschuldet."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheLoudMouthwrote on 17.02.2016:[7.0] "Toller Wrestler, toller Micworker, haufenweise Charisma - in den 80ern und 90ern hätte er wohl die volle Punktzahl bekommen. Für das Trauerspiel in den letzten Jahren muss ich aber ein paar Punkte abziehen, da er dort sein Lebenswerk schon arg eingerissen hat. Zudem als Manager seiner Tochter etwas penetrant und in meinen Augen nicht sonderlich förderlich."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DanTalksRasslinwrote on 25.01.2016:[10.0] "There isn't much to say about Ric Flair that hasn't already been said thousands of times before.  Perpetually in the conversation of "greatest of all time, " Flair essentially innovated the concept of the "cool heel" and, with the Four Horsemen, the concept of an elite heel stable.  One of the most charismatic promo men wrestling has ever seen, he knew exactly how to push the crowd's buttons to draw maximum heat, and had the technical prowess in the ring to back up his words and dirty tactics.  Possibly the top-drawing heel of all time.  Part of innumerable mat classics over the course of a near-four-decade in-ring career (including one of my personal favorite match series, a trilogy against Ricky Steamboat in 1989 NWA; the finale of which at Music City Showdown is one of my top five matches).  Even after his in-ring career started down he continued finding ways to contribute as an ambassador, on-air official and in somewhat underrated managerial roles, including as a manager/semi-active wrestler with Evolution, for AJ Styles, Fo(u)rtune and Gunner in TNA, and currently for his daughter Charlotte in WWE.  There will truly only ever be one Nature Boy."
Rating: 10.0
Sentiment: 0.16635802469135802
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: HeinrichC75wrote on 20.01.2016:[4.0] "Hab nie den Hype um ihn verstanden. Hat mir als aktiver Wrestler nie gefallen, andere waren da einfach um längen besser. Warum 16 mal den Titel? Und an der Seite seiner Tochter nervt er nur noch. Zudem verstehe ich ihn nur sehr schlecht, da er sich anhört, als wäre er dauerbesoffen."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Oddark123wrote on 08.01.2016:[9.0] "Ric Flair is a legend to the business. He has done a lot and even if his ring work in his older age deteriorated his presence and mic work has not. Ric Flair's name will always be mentioned in wrestling circles because in some respects when he said he was the best he went out of his way to prove it. I give him a high score and will wooo proudly to back it up."
Rating: 9.0
Sentiment: 0.33166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Squared Circlewrote on 09.11.2015:[10.0] "He belongs with Hogan, Bruno and Andre on the Mount Rushmore of Wrestling.  Fantastic on the mic and mat.  Along with the Roadwarriors, kept the NWA afloat and relevant while Hulkamania was running wild.  He could tag with anybody and feud with anybody.  His longevity was incredible.  The consumate wrestling professional, with a gimmick all his own."
Rating: 10.0
Sentiment: 0.35714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Titanwrote on 28.10.2015:[10.0] "Flair hätte seine Karriere vllt. 2-3 Jahre früher beenden sollen und uns das Elend ersparen sollen. Nichtsdestotrotz muss man ihn für seine illustre Karriere, seine Mic-Skills und sein Engament, Gegner und Fehden over zu bringen, loben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sascha Legendkillerwrote on 16.10.2015:[8.0] "WOOO! The dirtiest player in the game war immer schon ein guter Wrestler, der fast allen unfairen Tricks kannte. Ric Flair war auch als Face nicht schlecht. The Nature Boy war ein sehr guter Wrestler, aber nicht Weltklasse."
Rating: 8.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ggultra2764wrote on 08.10.2015:[9.0] "Easily among the all-time pro wrestling greats. Ric's gimmick as a high-class and flamboyant playboy gave him plenty to show off his excellent promo delivery and charisma that allowed him to get over with fans as both a heel and face, especially during his times with the different formations with the Four Horsemen. While his moveset was somewhat limited due to injuries he sustained during a 1970s plane crash, he made up for this with great in-ring psychology as he knew when to deliver moves and resort to rule-breaking gimmicks to get his act over and make his foes look good in the ring, having memorable rivalries with the likes of Ricky Steamboat, Sting and Vader. His more reserved pro wrestling style was serviceable as such where he wrestled well into his 50s and could still carry his end of a match during his 2000s run in the WWE. His legacy is somewhat tarnished in that he still doesn't know when to let go of being in the ring as he still wrestled during his TNA run in spite of having a rather memorable sendoff in 2008 from WWE following his Wrestlemania loss to Shawn Michaels. Still, there's no denying that the Nature Boy is easily among one of pro wrestling's most memorable characters."
Rating: 9.0
Sentiment: 0.354389880952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DanielBryan1986wrote on 24.09.2015:[6.0] "In der WCW manches Mal fehl platziert. Gegen Macho Man aber gerne gesehen. Ich sah ihn gerne in der WWE gegen Undertaker, Vince McMahon, Triple H und natürlich zuletzt gegen Shawn Michaels. Würde voller Abgang, hätte aber wie HBK dann auch wirklich aus dem Ring bleiben."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Vertebreakerwrote on 10.09.2015:[10.0] "The fact that Flair doesn't have at least a 9. 00 overall rating is a joke, he is easily one of the ten greatest wrestlers ever, any time period, any nation."
Rating: 10.0
Sentiment: 0.22666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: New Strategywrote on 24.08.2015:[10.0] "Ich muss gestehen, dass ich lange Zeit kein Freund von Ric Flair war. Für mich galt die Regel, kennst du ein Match mit ihm, kennst du alle. Außer Chops kann der nichts. Das muss ich mittlerweile revidieren.  Klar gab bzw. gibt es Wrestler, die ein größeres Repertoire an Moves auf dem Kasten haben. Ebenfalls gab/gibt es größere Highflyer und Muskelprotze im Wrestling-Business.  Aber es gibt so gut wie kaum einen, der nur halb so gut wie er, die Wirkung von Schlägen, Tritten und Moves verkaufen konnte. Dazu hatte er eine Ausstrahlung und Fähigkeit am Mikrophone, wie sie kaum ein anderer hat/hatte.  Gerade seine Fehde gegen „Ricky Steamboat“ und „Kerry von Erich“ hat mich eines besseren belehrt und mich tatsächlich zu einem Fan des „Nature Boys“ gemacht."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kevin434wrote on 23.08.2015:[10.0] "Was anderes als eine 10 kann man nicht geben, richtig gut im Ring, dazu mic work und natürlich das charisma, er ist eine wahrhafte Legende und alles andere als eine 10 ist auch hier undenkbar."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Gorillapresswrote on 08.08.2015:[10.0] "Ich weiß nicht warum, aber ich habe ihn immer gerne gesehen! Auch wenn er bei vielen verhasst war. Allein seine Showeinlagen Whhoouu ;) waren sein Geld wert! Gehört ganz klar zu denn besten überhaupt!"
Rating: 10.0
Sentiment: 0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Viper99wrote on 15.07.2015:[10.0] "Der mann war UNANTASTBAR! Er war einer der besten im Ring und am Mic! Er ist vor Charisma fast explodiert! Aber die betonung liegt auf War! Denn wenn heute mal der Nature Boy am Mic ist ist er meistens betrunken und lallt vor sich hin. Trotz seines alters hatte er aber noch solide Matches gegen ua. Mr Kennedy, MVP und Shawn michaels gezeigt! Am Mic war er vor einen paar jahren auch noch der hammer gerade in TNA mit seinen unglaublichen duellen gegen Jay Lethal! Trotzdem allem Noch und ich hoffe das bleibt erstmal so der Rekord World Champion und einer der besten aller zeiten! 1 Punkt abzug für teils peinlich betrunke auftritte und für sein , , Karriereende" was nach 2 Wochen bei TNA vorbei war"
Rating: 10.0
Sentiment: 0.6103515625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: PWCwrote on 24.06.2015:[8.0] "Ric Flair was a trendsetter for the WWE since the company's heydays in the 1980's. Ric Flair left such an impact to the company, that fans STILL often chant "WOOOO! " before the show goes live. A lot people in 2015 STILL regard the legacy Ric Flair left behind and not that many people (of his age) can do that. I thought about giving him a 9 or even a 10, but I obliged given his time in TNA (2010-2013) was nothing but a complete waste of time."
Rating: 8.0
Sentiment: 0.017045454545454537
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Movadowrote on 29.05.2015:[9.0] "Hätte er es bei dem Karriereende 2008 belassen, dann wäre es noch eine 10. Ohne wenn und aber. Da er jedoch seit dieser Zeit sein eigenes Vermächtnis mit den Auftritten bei TNA (die Australien Tour lasse ich außen vor, war auch Schrott aber verzeihbar) definitiv beschmutzt hat und seine Art Promos zu halten mir heuer bei einem alten Mann wie ihm sehr unpassend vorkommt, ist es nichts mehr mit der 10. Sorry Ric, aber du hättest es sein lassen sollen."
Rating: 9.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Zedwrote on 20.05.2015:[10.0] "Wieso sich alle wegen seinem nicht-Karriere Ende aufregen verstand ich noch nie. Er war nicht der erste der das so gemacht hat, und wird auch nicht der letzte sein. Nun ja, wie auch immer. Ric hat die 80er geprägt, zumindest für NWA und Jim Crockett. als er denn in der WWF auftauchte war es so als sei der Feind gerade einmarschiert. Später in der WCW in fast jedem wichtigen Angle involviert gewesen, aber niemals in der nWo. Und dann wäre da natürlich noch das beste und prägenste Stable aller Zeiten, die Four Horsemen, auf deren Legacy auch später die Evolution entstand, ebenfalls mit Flair.  Promos hielt er immer sehr gute, siehe seine letzte WCW Promo, welche nur so vor Wahrheiten strotzt. Und außerdem ebnete er den Weg für viele Heels damit, dass Ric Flair immer schon "the dirtiest player in the game" war. Alles andere als ein 10 ist lächerlich. Legende!"
Rating: 10.0
Sentiment: -0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CAIIIAwrote on 20.04.2015:[4.0] "Konnte ehrlich gesagt nie was mit seinem Gimmick und seinem Auftreten im und außerhalb des Rings anfangen. Technisch seh ich ihn auch nicht überragend. Dazu das verpasste Momentum bezüglich Karriereende, stattdessen noch mit über 60 in Ring gestiegen... etwas peinlich sogar leider... durfte vieles gewinnen aber nun ja... insgesamt für mich weit weniger "wichtig" für das Business gewesen als ein Hogan."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Damsparkywrote on 07.04.2015:[10.0] "The Nature Boy... the undisputed best mouth in wrestling. Flair had it all and could use it. Very athletic, a great brawler, and a mean mouth with attitude. One of the best."
Rating: 10.0
Sentiment: 0.5375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Valiuswrote on 25.02.2015:[7.0] "Hätte er nach dem Match gegen Shawn Michaels wirklich seine Karrier beendet gäbgs hier die 10. Aber 3 pkt Abzug für die Peinlichkeiten bei TNA..."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Hob-Deeewrote on 29.01.2015:[10.0] "Einfach einer der besten, in der WCW war er genial und seine Evolution Zeit war der Hammer, seine Promo 2003 bei Raw kurz bevor Bad blood gegen HBK einfach zu cool.... WOOOOOOOOO.... Eine wahre Legende, the real World Champion!"
Rating: 10.0
Sentiment: -0.08269230769230765
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: dan7joneswrote on 29.01.2015:[10.0] "Just trace his history and see how this man is on of the foundations of the business, every wrestler has their fans and critic's but this man is one of the greatest of all time, in that ring, on the mic and in front of any crowd."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: hosswrote on 26.01.2015:[10.0] "Der größte den es je im Wrestling gegeben hat. Nicht umsonst hat er so viele WHC-titel bekommen. Er hat technisch einwandfreie Leistung gebracht und war auch nie um eine etwas unsauberere Art verlegen. Aber so muß das ja auch. Unvergessen auch sein Wirken mit den 4 Horseman, allesn voran zusammen mit The Enforcer AA Arn Anderson. Meiner Meinung nach ist Flair Mr. Wrestling, nicht dieser Hogan."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Palace of Wisdomwrote on 24.01.2015:[10.0] "Mein absoluter Favorit und Held aus der Kindheit. Wenn einer den Titel Legende verdient hat, dann er."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: bigdaddy1wrote on 20.01.2015:[10.0] "The greatest of my lifetime.  He could do it all - great promos on the mic; 60 minute matches (often carrying his opponents), charisma; and way overlooked athleticism.   Everyone one either wanted to be Ric Flair or hated him. He is the prototype that all other wrestlers tried to emulate."
Rating: 10.0
Sentiment: 0.19375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: llboxingwrote on 14.01.2015:[6.0] "Had a great gimmick of the high living playboy.  Excellent on the mike.  Great charisma and personality.  In the ring, he was great at selling and had great cardio. Made his opponents look like a million bucks. Always told a good story.  The downside? Lacked an impactful and diverse offence.  Relied on the same 4 or 5 comedy spots in every match.  Lacked chemistry with certain opponents.  Wrestled years past his prime, tarnishing his legacy.  Recent appearances on WWE television are awful."
Rating: 6.0
Sentiment: 0.33535714285714285
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The5thHorsemanwrote on 07.01.2015:[10.0] "Simply one of the best.  Wrestled at an extremely high level for decades and contributed some of the best promos and matches in wrestling history."
Rating: 10.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Matzinhowrote on 03.01.2015:[9.0] "In den 70ern war Flair eine Weile auf der Suche nach dem richtigen Gimmick, hat sich Elemente von den richtigen Leuten abgeschaut und sein Move-Arsenal entwickelt. Ende der 70er hat Flair zunehmend seine Selling-Fähigkeiten verfeinert, Gimmick und Kampfstil gefunden und sein Potenzial bestätigt. In den 80ern kam dann die Hochphase mit den Four Horsemen, Perfektion und Revolution am Mikro, Match-Klassikern und World Heavyweight Title-Gewinnen - kurzum die totale Dominanz der NWA und die Entwicklung zum Zugpferd und Kassenschlager. Alles was von Flair danach kam, ist meines Erachtens beinahe nicht der Rede wert. In der WCW hatte Flair Anfang der 90er nochmal eine gute Phase mit weiteren World Title-Gewinnen und einigen finalen Match-Klassikern. Es wäre DER Zeitpunkt gewesen, um im Alter von etwas über 40 Jahren fünfe gerade sein zu lassen und aufzuhören. Stattdessen hat sich Flair in viel schlechtes WCW-booking einspannen lassen, das ihn und die Horsemen demontiert und zerstört hat. Letzte kleine Glanzlichter von Flair waren danach Auftritte bei der WWE als Nicht-Aktiver und die Mitgliedschaft bei Evolution. Hätte er es wenigstens dann nach dem letzten großen Match gegen Michaels sein lassen ... aber nein, dann der Rücktritt vom Rücktritt, Auftritte bei der Hulkamania-Tour und TNA des Geldes wegen. Er hätte eine überlebensgroße Legende sein können, ist für mich aber nur noch ein armer alter Mann, der den Ausstieg verpasst hat."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: zackwoowoowooryderwrote on 28.12.2014:[9.0] "Einer der besten Männer die es je im Wrestlinggeschäft gab, er ist einfach eine Legende, aber dennoch finde ich ihn nicht so stark wie andere seines Kalibers, z. B. Michaels oder auch Mr. Perferct."
Rating: 9.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Y2J316wrote on 28.11.2014:[7.0] "Warum eigentlich Nature Boy? Woooooo. Kenne nur wenig von ihm als Wrestler. Mehr als Manager von HHH und als mitglied von Evolution. Da war er top und es war immer wieder lustig ihn zu sehen. Er hat halt selber schuld das er heute noch wrestlen muss, wenn er seine Kohle auf den Kopf haut."
Rating: 7.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: 8BitLegendwrote on 21.09.2014:[9.0] "Irgendwie ist er eine tragisch-komische Figur und verkörpert somit die verschiedenen Facetten des Wrestlings wie kein Zweiter. Ich liebe seine überdrehten Promos. Die wurden im Alter sogar noch besser. Wrestlerisch halte ich ihn - wir viele seiner Generation - für limitiert, dennoch gab es zahlreiche großartige Matches mit seiner Beteiligung. Unterm Strich eines der Gesochter des Sports. Ein echtes Original."
Rating: 9.0
Sentiment: 0.375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: GabrielMasterwrote on 07.07.2014:[10.0] "Ric Flair this guy yes I can say is one of the wrestlers that marked me in all my years of wrestling, in addition to having an incredible charisma, is one of the best heel's in my opinion, I can easily say that he is the greatest of all time has always been a big star in wrestling."
Rating: 10.0
Sentiment: 0.5722222222222223
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Hirnklopswrote on 12.05.2014:[9.0] "Ric Flair... 10 Punkte? Nein. Hatte ich ihm mal gegeben... Warum? Weil er einfach eine der coolsten Schlangen ist / war, die jemals in einem Ring gestanden haben, ein "Complete Package", die einfach jede Disziplin beherrscht haben: Reden, wrestlen, cool sein, sich selbst cool inszenieren, mit der Menge spielen, legendär sein. Von daher Alles richtig gemacht. Wer aber das vielleicht emotionalste Retirement nimmt und darauf uriniert, indem er einfach so wieder in den Ring zurückkehrt, der... Der kann einfach keine 10 Punkte bekommen. Geht nicht. Ehrlich nicht. Ich liebe Flair, aber... Nein."
Rating: 9.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: alcoholicmetalmayhemwrote on 22.04.2014:[10.0] "The Man the Myth the Legend! Stylin and Profilin! Slick Ric. The greatest wrestler in all professional sports. Ric Flair war so gut, weil er sich und dem Business immer treu geblieben ist. Er war es, der seine Gegner nicht nur gut aussehen lies, sondern nachhaltig auch besser machte."
Rating: 10.0
Sentiment: 0.2833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Macho Manwrote on 19.04.2014:[5.0] "Guter Wrestler er hatte ein großes Arsenal an guten Techniken.  Er hätte viel früher aufhören müssen."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DieOffenbarungwrote on 03.04.2014:[4.0] "Ein wirklich großer am Mic und im Ring stets unterhaltsam und auch alles andere als untalentiert. Jetzt kann man sich fragen, warum denn eigentlich nur 4 Punkte! ? Das kommt leider daher, das Flair sein eigenes Lebenswerk ruiniert hat. Er hatte mit seinem damaligen Abschied von der WWE eine Legende geschaffen. Stark und emotional das Match und das Ende von Ric gegen Michaels. Hätte er damit aufgehört, wär es wirklich die perfekte  Karriere gewesen. Stattdessen entwürdigte er diesen Moment und seine eigene Karriere, weil er offenbar nicht akzeptieren wollte das seine Zeit nun abgelaufen war. Dies führt leider zu einer unterdurchschnittlichen  Bewertung. Tut mir leid, Flair."
Rating: 4.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Foleysbabytoywrote on 26.02.2014:[10.0] "Eine einzigartige Karriere mit einzigartigen Fehden und einem einzigartigen Stable. Die Momente, die uns Richard Fliehr hinterließ scheinen unbezahlbar. Ob es seine Fehden gegen Steamboat, Rhodes oder Harley Race sind. Seine Promo gegen Bishoff, der Royal Rumble 92 oder seine Zeit bei der Evolution. Flair war immer Gold wert. Ein sehr guter Wrestler. Eine überragende Erscheinung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Phenomenal91wrote on 26.02.2014:[10.0] "The greatest wrestler who ever lived. When I think of wrestling, I think of this man. A living legend, whose work will never be topped or equaled."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MEGAMONKEYwrote on 29.01.2014:[10.0] "Whoooooooooooo! Legende. Ich kann mich an kein Match erinnern in dem er nicht unterhaltsam war, selbst zu seiner gruseligen TNA Zeit."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: yanuswrote on 15.12.2013:[10.0] "Incredible in-ring skills, great on the mic, charismatic and a draw - Flair had it all. Wrestled most matches very similarly - but they were till 1990 always highly entertaining. In regards to stamina maybe the best wrestler ever. His only little weakness was probably his average physique."
Rating: 10.0
Sentiment: 0.38625000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: donkitrk99wrote on 27.11.2013:[10.0] ""Its a shame there is no rating system that encompasses someone's career.  I suggest that for wrestlers past a certain age, or no. of years wrestling, or no. of years since they have been fully active, or maybe when they are eligible for WON HOF they have three different rating scores: The score they have gathered all along can be closed, and finalized. A score representing their prime (which voters could vote on henceforth). And a score representing the voters' opinion of their career as a whole (to be voted on henceforth).   Flair, if he isn't the very best, its got to be a tie. I've given a perfect rating to 11 matches in my lifetime, and 3 of them are Flair's series of matches in '89 with Steamboat. Stories of his cardio and resiliency are legendary - like Terry Taylor (on WWE's Legends of Mid South DVD) talking about how drunk and disheveled Flair still was when he showed up for Taylor's NWA title shot and how livid he was. Going beyond kayfabe, Taylor actually had to ask Flair to go to the finish in this match about 45ish minutes in because he could no longer keep up with the impossibly fit champion. WWF history is missing a few things, but one of the biggest is WM VIII not being main evented by Hogan and Flair with a proper build."
Rating: 10.0
Sentiment: 0.15280112044817926
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: daniel cassidywrote on 18.11.2013:[10.0] "Simply the greatest wrestler of all time. There will never be another pro-wrestler of Ric Flair's level."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Martyrswrote on 03.11.2013:[10.0] "Ric Flair ist in meinen Augen der beste Wrestler aller Zeiten. Nicht nur seine großartigen Promos und seine technischen Fähigkeiten im Ring sprechen für sich, sondern vor allem die Tatsache, dass er jeden, JEDEN seiner Kontrahenten gut aussehen lassen konnte, machen ihn zu einem der ganz Großen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Daneraswrote on 03.11.2013:[7.0] "Er war und ist am Mic fast immer unterhaltend. Seine Kämpfe sahen für mich meist zu theatralisch aus. Er bettelte sogar fast alle Matches, und nach den Schläge ins Gesicht stolperte er oft zu extrem gestürzt. Kein Witz, ich habe ihn ewig alt empfunden, und staunte richtig, dass er doch so lange Wrestling gemacht hat. Er sah für mich wirklich nicht jung aus, sondern alt. Deswegen war das ganze Bild an ihm für mich etwas komisch gewesen."
Rating: 7.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Giftzwergwrote on 13.09.2013:[9.0] "Was soll man da noch sagen. Habe ihn insbesondere als Heel sehr gerne gesehen. Guter Techniker, wenn auch nicht der Beste. Am Mic und in Promos spitzenmäßig, und er ließ dadurch einen Hulk Hogan Anfang der 90er in der WWF ganz alt aussehen. Seine "Kopf über Faller" waren einfach legendär. Den Besten davon zeigte er im Royal Rumble 1992, nachdem er diverse Schläge vom Texas Tornado eingesteckt hatte. Er ist eine Legende und hat diesen Sport wie fast kein Zweiter geprägt. Den einen Punkt Abzug gibt es dafür, daß er den Absprung aus dem aktiven Geschäft einfach zu spät vollzogen hat. Mit über 60 Jahren noch gegen 30 - 40 Jahre Jüngere anzutreten war einfach unclever, da es in diesen Matches aufgrund des Altersunterschieds einfach an Glaubwürdigkeit gefehlt hat. Hätte um das Jahr 2000 herum seine Karriere beenden sollen."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Alex Maedawrote on 08.09.2013:[8.0] "Zwei Punkte Abzug für (fast) alles, was nach dem Retire Match gegen Michaels kam. Bei TNA hat er als Manager von AJ Styles gut funktioniert und ihm ein wenig Glanz übertragen, sonst war sein letzter Run wirklich überflüssig, vor allem die Schmach, dass er noch mal in den Ring gestiegen ist und teilweise sogar deutlich jüngere und fittere Leute gedepusht hat. Sonst ein ausgezeichneter Performer, der selbst in seinen letzten WWE-Jahren ab und zu noch ansehnliche, spannende Matches auf die Beine stellen konnte. Meine Antiphatie gegen ihn hin oder her."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CrIppIL3RTIRiXwrote on 17.07.2013:[7.0] ""Der Alte" Flair. Er war schon seit dem Anfang der 90er ein alter Mann. Seine beste Zeit hatte er in den 80er gegen Funk, Steambot, Sting und den Von Erichs. Er wurde auch zu Recht "Der Ring General" genannt.  Flair war/ist auch ein Mann der sich einfach am Mic hoch reden konnte.  Er war der Mann der die Fans mit seinen Promos unterhalten hat, in den 90er war ein durchschnittliches Jahrzehnt, aber auch mit Schattenseiten wie der Horseman reunion. In der WWE/F Zeit war das beste natürlich die Evolution Zeit und wo er die Jungstars nochmal versucht hat Over zu bringen.  Das beste Match seiner Karriere war für mich auch sein letztes, gegen Shawn Michaels  SORRY RIC, I LOVE YOU"
Rating: 7.0
Sentiment: 0.01666666666666668
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: test85wrote on 25.06.2013:[6.0] "Komplett überbewertet. Hat den richtigen Zeitpunkt(1998-99) verpasst um seine Karriere zu beenden. Sicherlich am Mic toll, aber wrestlerisch fand ich ihn nicht so gut. Da sind und waren HBK, Y2J oder auch Mr. Perfect besser."
Rating: 6.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: HooliNerdwrote on 10.04.2013:[9.0] "In der Wrestlingwelt zuhause. Es gibt wohl nichts, was der Nature Boy bisher nicht vollbracht hat. Ich hoffe bloß, dass er mittlerweile eingesehen hat, dass er zu alt für den Ring geworden ist."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: KASHwrote on 30.03.2013:[10.0] "So, ich musste mal meinen Schwachsinns-Kommentar von vor 3 Jahren revidieren. Damit gehts auch von 7 Punkten rauf auf die Vollpunktzahl. Ric Flairs erster WWE Run gehört heute zu meinen liebsten Phasen im Wrestling. Die Promos, der Glanz und der Charakter den dieser Kerl verkauft hat sind unbeschreiblich. Dagegen wirkte Hulk Hogan direkt wie der Clown der er war. Kann mir vorstellen, dass Flairs Glämmer ein Grund war wieso Vince 2 Jahre danach die Schnauze voll von Hogan hatte.  Ansonsten verdient sein Lebenswerk nur 10 Sterne."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Play2Xwrote on 11.03.2013:[9.0] "Hätte er nach seinem Match gegen Michaels aufgehört, wäre es wohl eine ewige 10 geworden.  Aber mit jedem Jahr, welches verstreicht, wird es schlimmer.  Immerhin scheint er sich jetzt endgültig zurückzuziehen, daher immernoch 9 Punkte.  Die Wertung an sich sollte logisch sein. Große Gestalt im Wrestling, mit atemberaubenden Matches, bis ins hohe Alter. Außerdem blutet wohl niemand so schön wie er..."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Yoyowrote on 21.10.2012:[10.0] "Ric is the greatest and there's no way around it. For all he's done for wrestling over the course of his career he really is the Man. Woooooo!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Nachtfalterwrote on 22.09.2012:[10.0] "Als Person in so ziemlich jeder Hinsicht verabscheuungswürdig, aber das bewerten wir hier ja nicht. Im Ring und am Mikrofon natürlich völlig fraglos einer der Besten aller Zeiten, der zu seinen besten Zeiten selbst mäßig begabte Leute zu herausragenden Matches ziehen konnte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: LM Punkwrote on 30.08.2012:[8.0] "Toller Entertainer der leider zu lange im Ring stand un so doch sein Bild nachhaltig negativ beeinflusst hat."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: rika24143wrote on 23.08.2012:[8.0] "Eigentlich hätte Ric 10 Punkte verdient.  Jedoch versaut er sich seinen Ruf in den letzten Jahren, indem er wie Terry Funk, den Rücktritt vom Rücktritt vom Rücktritt inziniert.  Ich finde es ist die Zeit gekommen, dass Ihm eine Promotion mal die kalte Schulter zeigt und ihn dahin schickt, wo er hingehört, in Rente"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Undertaker555wrote on 20.08.2012:[5.0] "Auf jeden Fall eine Legende aber ich finde hätte er den Wechsel zu TNA gelassen würde ich ihn auch besser bewerten und alle würden sich an ihn besser Errinern. Abgesehen davon ist er einer der Größten und 40 Jahre Erfahrung kann (fast) niemand vorweißen. Woo!"
Rating: 5.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Hankinswrote on 11.08.2012:[6.0] "Ein Mann, der mich persönlich unglaublich nervt. Ich halte von seinen In-Ring Fähigkeiten nicht viel und teile keineswegs diese Begeisterung über seine angeblich so tollen Fähigkeiten im Ring. Fakt ist, er hat das Wrestling geprägt und steht neben Hogan wie kein anderer für den Boom der 80er und 90er. Trotzdem bleibt es für mich ein Phänomen, dass so ein Mann diesen Legendenstatus erreicht hat. PS: Seine lächerlichen Hinfaller fand ich besonders grausam."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: steviecwwrote on 15.07.2012:[3.0] "I wasn't a great fan of his shouty shouty nonsense glory days anyway but the last 15-20 years of his career have been the absolute abyss. They can't bury this guy deep enough in the hall of fame for me. By all means show his old matches where relevant but keep this man as far away from national television and PPV (even IPPV) as possible."
Rating: 3.0
Sentiment: 0.17777777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ARIZAwrote on 15.06.2012:[8.0] "Insgesamt natürlich einer der größten und besten, die je im Ring gestanden sind und hatte bei WrestleMania 24 eigentlich auch den perfekten Abschied. Schade, dass es nicht dabei geblieben ist und er seine Legende so schändet und auch im Privatleben leider nicht so großartig ist, wie er es im Ring einst war, weshalb er erst in der Situation ist, in der er sich heute befindet."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kitanoyamawrote on 19.04.2012:[10.0] "Überall wo er ist, bei TNAW mit Abstrichen, hat er die Massen an sich gezogen. Er ist technisch sehr versiert, hocherfahren und seine Promofähigkeiten gehören natürlich auch zu den besten. Er gibt nach außen hin nicht viel her, aber wenn man ihn eine Weile gesehen hat, kann man ihn lieben/respektieren oder hassen. Meinen Respekt hat er auf jeden Fall. Ich hoffe nur das er sich den Kredit, den er sich über all die Jahre bei den Fans erarbeitet, nicht irgendwann doch wieder verspielt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Senajwrote on 27.01.2012:[10.0] "Wenn man von einer Wrestling Legende spricht, dann spricht man von Ric Flair. WOOOOOOOOO"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sirius Van Grathwrote on 19.01.2012:[9.0] "Mit TNA hat er seiner Legende geschädigt. Nicht wegen TNA selber, sondern da er schon "retired" war und dann wegen Geld-Problemen zu einer Liga unter seinem Niveau ging. Aber weil er wirklich eine wahre Legende und ein großartiger Ring-Worker ist, kann ich ihm einfach nicht schlechter als 9 bewerten!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mark Henry 95wrote on 07.01.2012:[10.0] "10 Punkte , er war der Wrestling - Gott der 80er und ist nicht umsonst ein 16facher World Champion. Da gibt es nur eins zu sagen Woooooooooo"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Teekaywrote on 27.10.2011:[1.0] "Ich mochte Flair noch nie, dennoch hab ich immer respektiert, was er für das Biz getan hat. Sein Rücktritt hätte ein grandioses Finale dargestellt. Leider hat er durch sei Comeback seine Legende zerstört. Heutzutage macht er sich nur noch lächerlich."
Rating: 1.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: VanderVaartwrote on 16.09.2011:[9.0] "So lange wie der Nature Boy hat niemand im Ring gestanden. Viele Matches sind noch heute legendär. Kaum jemand erlebt, der das Wrestling so gelebt hat. Wooooo. Geld auf die hohe Kante zu legen ist nicht sein Ding. Deshalb trat er auch noch mit 55 in den Ring. Die Zeit in der WWE als Wrestler war deshalb nichts besonders. Ausgenommen natürlich die letzten 6 Monate. Flair wäre aber nicht Flair, wenn Natche jetzt nicht bei TNA wäre. In dem hohen Alter ist es auch besser, als Manager zu fungieren. Er wrestlet trotzdem..."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rated R Punkwrote on 06.09.2011:[7.0] "Natürlich ist Ric eine Legende keine Frage, aber er verdierbt all seinen Ruhm immer mehr durch TNA... Ich finds echt traurig wenn ich bedenke was er früher alles geleistet hat und ich ihn gerne volle 10 Punkte geben würde..."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Golgotawrote on 04.09.2011:[9.0] "9 Punkte für seine großartige WCW-Zeit als Natureboy und die ausgezeichnete Unterhaltung, die er bis zu seinem grandiosen zu Tränen rührenden Abschied in der WWE geleistet hat. Alles, was danach und in seinem Privatleben geschah, interessiert mich nicht."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheRatedRLegendKillerwrote on 27.08.2011:[10.0] "Natürlich schon lange nicht mehr die wrestlingtechnische Messlatte, doch was Flair in knapp 30 Jahren für sein Vermächtnis getan hat, kann auch eine diletantische Chaotenliga wie TNAW nicht mehr zerstören. Einer der wirklichen Legenden dieses Businesses..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Fall Out Boywrote on 27.08.2011:[8.0] "Hier bedarf es wohl doch einer Aufwertung. Trotz seinen sehr unrühmlichen Auftritten in der nahen Vergangenheit, ist Flair doch einer der Größten aller Zeiten. Dabei find ich ihn am Mic nicht mal so gut und auch seine Matches liefen oft nach dem selben Schema ab. Das was in diesem Jahrtausend kam, kostet ihm aber die 2 Punkte für die Bestbewertung."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rated R Champwrote on 27.08.2011:"Es ist auf eine traurige Art erstaunlich, wie sehr Ric Flair es in den vergangenen Jahren geschafft hat, sein Vermächtniss selbst in den Dreck zu ziehen. Der Nature Boy war, auch wenn es technisch immer bessere gab, für lange Zeit eines der besten Gesamtpakete im Wrestling und auch wenn er zu seiner WWE Zeit nach der Jahrtausendwende seinen Zenit bereits überschritten hatte, hatte er dank seines Gimmicks und seines einzigartigen Charismas immer eine klare Daseinsberechtigung. Es würde mich auch nicht störem, dass Flair nach seinem grandiosen Abschied gegen Shawn Michaels noch im Wrestling Business verblieben ist, wenn er sich denn auf die Rolle des Managers oä beschränkt hätte. Allerdings sah es in den letzten Jahren regelmäßig danach aus, dass Flair nur noch darauf aus ist, auch noch das letzte bisschen Geld, dass mit seinem großen Namen zu machen ist rauszuholen, wodurch er sein Vermächtniss jetzt schon deutlich verwässert hat. Schade."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: FriarFergusonwrote on 26.08.2011:"Nachdem ich mir den Bericht von Shane Ryan durchgelesen habe ziehe ich meine Bewertung zurück. Ich habe nicht das Recht, über diesen Mann zu urteilen, denn sein nicht enden wollender Niedergang im Ring geht mit persönlichen Problemen Hand in Hand. Über den Menschen Ric Flair gibt es keine Diskusion, der Wrestler kann für mich nicht richtig bewertet werden, da seine Karriere ohne seinen privaten Absturz vermutlich viele andere überstrahlen würde. Diesen Glanz hat er aber schon lange verloren. Schade um ihn."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TeeHaawrote on 26.08.2011:[8.0] "Ich gehe bei meinen Bewertungen in der Datenbank immer danach: "Welches Attribut würde ich nutzen um diesen Wrestler einem Wrestling-Greenhorn näher zu bringen? " Ich denke es wäre "wichtig" Er ist wichtig um die Entwicklung des Wrestlings zu verstehen. Hätte er 1995 aufgehört hätte ich ihm den "legendär" Status gegeben (11/10) wenn er zeitgleich mit der WCW aufgehört hätte Ringe heimzusuchen - nunja... dann wäre er bei 9/10 (mit viel wohlwollen bei 10/10 gelandet. Inzwischen schlurft slick Rick seit sage und schreibe 15 Jahren als Wrestling Randerscheinung durchs bild und meint immer noch wrestlen zu müssen. Das hat seinen Status beschädigt. Wie sollte ich denn das jemandem erklären? - "der Mann ist legendär, aber schau dir bloß keine Matches nach 1995 an! ""
Rating: 8.0
Sentiment: -0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheManwrote on 19.08.2011:[10.0] "Bevor er wirklich wirklich alt wurde wurde alles, das er Angriff zu Gold. Zahlreiche Matches von ihm in den 80ern und auch 90ern, die in den 5Sterne Bereich gehen. Klar is er in letzter Zeit eher senil, aber er ist und bleibt einer der wichtigsten Leute, die das Buisness je hatte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: WWE4evermaybewrote on 17.08.2011:[3.0] "Der Mann weiß nicht, wann er in endlich in Rente gehen soll. Der Oberhammer war als er mehr als würdig nach WM 24 verabschiedet worden war und seine Wrestling-Karriere scheinbar an den Nagel gehängt hatte. Pustekuchen, zwei Jahre später stieg er bei TNA wieder in den Ring. Was für eine Verarschung für die WWE-Fans."
Rating: 3.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Michael Shawn Hickenbottomwrote on 03.08.2011:[10.0] "Woooooooooooooooooo. Woooooooooooo. Der "Nature Boy" begeistert mich immer und immer wieder. Trotz seines hohen Alters. Er weiß einfach wie man die Massen wütend beziehungsweise "geil" auf ihn macht. Dafür kann es nur 10 Punkte geben. Wooooooooooooooo."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MaikBaaderwrote on 29.07.2011:[6.0] "Ich wurde mit Flair wirklich nie warm. Er ist definitiv nicht schlecht und er hat auch gute Matches abgeliefert, aber sein Stil, seine Art zu wresteln gefällt mir einfach nicht. Seine Promos früher waren gut, in der jetzigen Dekade allerdings alles andere als gut."
Rating: 6.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: FNShowwrote on 13.07.2011:[4.0] "War sicherlich bis zur Jahrtausendwende eine der schillernsten Figuren im Wrestling, wirkt meiner Meinung nur noch peinlich und ist fast nur noch da um ein Blutbad im Ring zu veranstalten und seine Schulden zu begleichen. Oh Mann Ric Flair hat über die Millionen verdient und hat eigentlich nichts."
Rating: 4.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: NHJ2102wrote on 11.07.2011:[5.0] "Konnte dem Natur Boy nie viel abgewinnen fand ihn bei der Evolution mal ganz gut aber mehr auch nicht"
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: antihiphop2002wrote on 20.06.2011:[6.0] "Er ist immer noch sehr Unterhaltsam, aber eben nur noch ausserhalb des Rings. Nach so einem grandiosen Abschied noch einmal wieder zu kommen weil man einfach nicht weiss wann Schluss ist ist einfach nur traurig. Wie viele Leute können in seinem Beruf den sagen ich stand so lange im Ring war so lange in der größten Liga. Ric Flair ist in fast allem ein Phänomen, aber leider auch darin das er absolut nicht weiss wann es Zeit ist auf zu hören. Ich hoffe nur das er sein Denkmal nicht noch zu lange demoliert."
Rating: 6.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: C0nspiracywrote on 27.03.2011:[10.0] "Alles andere als eine 10 wäre lächerlich. Was kann ein Wrestler mehr erreichen als Ric Flair? Er ist 16 Facher World Champion, Anführer der 4 Horseman einen der legendärsten Stables der Wrestling Geschichte. Und für mich am ausschlagebensten für die 10er Wertung , er hat unzähligen Wrestlern die Tür geöffnet und war sich so gut wie nie zu schade den Job zumachen um einen jungen aufstrebenden Wrestler den schub zum Star zu verschaffen. Für mich der kompletteste Wrestler der je in den Wrestling Ring gestiegen ist. Er konnte mit jeden ein sehenswürdiges Match bestreiten. Seine Matchserie gegen Ricky "The DRagon" Steamboat gehört handwerklich zum besten was es im Mainstream Wrestling gibt. selbst im fortgeschrittenen alter steckt er noch mit schöner regelmässigkeit seine auch mal gut 35 Jahre jüngeren Gegner in die Tasche. Eine wahre Wrestling Legende ich glaube das mann noch in 100 Jahren von Ric Flair sprechen wird. Mit seinen arbeitswillen und seiner einzigartigen ausstrahlung hat er sich ein Denkmal für die Ewigkeit geschaffen und wird jeden Wrestling Fan für immer ein Begriff sein."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Y2J Problemwrote on 23.03.2011:[10.0] "Ach scheiß doch drauf, was Ric grade macht, in den letzen Jahren seiner Karriere. Was er für das Business getan hat, das er so liebt. Er hat so viele Leute dazu gebracht, Wrestler zu werden, er hat sich einfach so oft den Arsch aufgerißen. Was er alles geleistet hat, kann man nicht in Worten ausdrücken, und das muss man auch nicht... In diesem Sinne: Woooooo!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Elvis6wrote on 21.03.2011:[4.0] "Tja, früher hätte ich Ric bedenkenlos 9 Punkte gegeben. Aber er weiß nicht wann genug ist. Unterhaltend ist er nurmehr außerhalb des Ringes. Im Ring hab ich eher das Gefühl er beginnt schon zu bluten wenn man ihn böse anschaut;) Außerdem gefällt es mir nicht wenn jemand zurücktritt u a es a paar Monate darauf schonwieder vergessen hat. Naja, wahrscheinlich das Alter. Also laß es endlich gut sein Ric"
Rating: 4.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rock93wrote on 20.03.2011:[10.0] "Mal ehrlich: Welcher Mann schafft es seit 40(! ) Jahren, Wrestlingfans zu begeistern? Nur Ric Flair. Das ist einmalig und wird es immer sein. Er war früher ein Gott, in den 90ern schon eine Legende und auch in den 2000ern selten peinlich. Wenn er es sich jetzt bei TNA nicht noch versaut, darf er nach seinem Tod direkt neben dem Wrestling-Gott sitzen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: xXxwrote on 19.03.2011:[7.0] "Schwierige Sache dieser Mann. Eins ist aber klar, der kann nicht vom Ring wegbleiben. Er meint auch mit über 60 Jahren müsse er noch immer bladen. Er will und muss im Rampenlicht stehen. Sein Vertrag bei TNAW nachdem Vince ihm bei WM24 einen Abschied mit Pauken und Trompeten gegeben hat, ihn als Nationalheld und lebende Legende hat feiern lassen, ist eine Frechheit. Er ist ohne Frage nicht nur ein Eckpfeiler einer Company, sondern des Geschäfts an sich. Aber irgendwann muss doch auch mal gut sein! Ich verstehe es einfach nicht(obwohl irgendwo ja schon.. )wieso manche sich in diesem Business so schwer damit tun, sich zurückzuziehen, anderen das Feld zu überlassen, und wenn aktiv sein dann irgendwann halt hinter den Kulissen und nicht mehr vor den Kameras. Sein Status ist um es gelinde auszudrücken geschmälert, für einige wohl ganz offen dahin. Mehr als 6 Punkte kann ich hier nicht geben, nicht zu diesem Zeitpunkt. Ich bin mir auch nicht sicher ob es zu respektieren ist dass er sich das in seinem Alter noch alles antut oder man einfach mal nicht mehr WHOOOOen sollte wenn der Mann die Halle betritt. Flair und Hogan, die können es einfach nicht lassen! EDIT: 1 Punkt nach oben weil er trotz allem eben einfach überzeugt, vielleicht irre ich mich ja und der Mann hat noch einen letzten Trumpf im ärmel von dem nicht nur er profitiert... mal sehen. EDIT END"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Raven Ravnoswrote on 05.03.2011:[10.0] "Der Beste aller Zeiten! Der erste Heel den ich als Mark bewundert habe. Er war der Star in 3 Ligen und das über mehrere Jahrzehnte. Und im Gegensatz zu mach anderen hatte er nie damit Probleme den Job zu machen. Leider will er nicht so recht wahrhaben, dass irgendwann auch seine Zeit vorbei ist. Dennoch der ANture Boy bekommt von mir 10 Punkte für sein Lebenswerk."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: deuss00wrote on 23.02.2011:[4.0] "Er war nie ein großartiger in ring wrestler aber er hat ausstrahlung das muss ich zugeben. Hab ihn nie gerne im ring gesehen weil er immer das selbe match zeigt aber er bekommt von mir eine bessere bewertung als Hogan weil er sich auch für jüngere leute hinlegt um sie zu pushen. Er ist zwar was backstage politik angeht nicht viel besser als Hogan aber er gibt den business wenigstens was zurück. Leider hat er sich mit seinen in ring comeback jegliche glaubwirtikkeit verspielt was schade ist. Aber bei aller Kritik meinerseits dennoch eine Legende dieses Sports!"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Hu-Manwrote on 22.02.2011:[10.0] "Whoooooooooo! Bester Worker aller Zeiten, für mich gibt es keinen besseren. Jedes Mal marke ich völlig aus, wenn ich ihn vor der Kamera sehe. Alles unter 8 Punkten ist lächerlich. Man kann gar nicht in Worte fassen, wie viel wertvoller er für dieses Business ist/war als z. B. ein Triple H. Sein Engagement bei TNA nach diesem unglaublich geilen Abschied bei WM24 ist natürlich mies, aber ich kann ihm nicht böse sein, wenn ich ihn dann am Mic bei Impact sehe... unglaublich!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Matt4Wrestlingwrote on 15.02.2011:[10.0] "16 Titelregentschaften als World Heavyweight Champion sprechen für sich und der Vorwurf eines stets selben Match-Ablaufs scheint mir mehr als unbegründet. Live hat Flair immer und egal in welchem Alter immer sein Bestes gegeben und das er sein Wissen jetzt als Manager zur Verfügung stellt, ist nicht wirklich schlecht, weder für seinen Ruf, noch fürs Business-NUR er sollte wirklich, um noch etwas ernsthafter darzustehen, weitere Ausflüge in den Ring vermeiden!"
Rating: 10.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mizisawesomewrote on 30.01.2011:[10.0] "Top Wrestler. Wer hier weniger als 6 Punkte gibt muss sich wirklich fragen wie "smart" er denn ist. Unglaublich tolle Ausstrahlung, toller Techniker. Seine vielen World-Title sprechen für die gute Qualität, die ihn als Wrestler ausmacht."
Rating: 10.0
Sentiment: 0.35714285714285715
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheEmpirewrote on 26.01.2011:[0.0] "Früher in der WCW ein Gigant, heute eine fürchterliche Lachnummer. Entweder ist er dauer betrunken, oder auf Drogen. Anders kann ich mir sein Verhalten innerhalb und ausserhalb des Rings nicht erklären. Ganz klar einer der größten Nervtöter der Branche in meinen Augen. Sollte sich endlich ein für alle mal zurückziehen."
Rating: 0.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Maxiennewrote on 20.01.2011:[6.0] "Annsich klar ein 10 Punkte man. Weiler einfach alles hatte was einen großen Wrestler ausmacht.  Aber im kann ihm nur 6 Punkte geben weil er mit der TNA Aktion uns alle hintergangen hat.  WM25 sollte sein letztes Match sein und dann sowas tut mir leid hab ich kein verständniss für deswegen 6 Punkte"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kumbaowrote on 11.01.2011:[10.0] "Ein Satz: einer der besten Wrestler aller Zeiten.  Flair kombiniert ein hohes Niveau als Wrestler mit viel Charisma."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheRock 7 Champwrote on 11.12.2010:[10.0] "Die Legende beim Wrestling. Er ist einer der besten Wrestler die es je gab und geben wird. Aber er soll sich seine Karriere nicht verpfuschen indem er bei TNA ist. Als er sein "letztes" Match hatte bei Wrestlemania 24 gegen Shwan Michaels dachte ich mir: Das ist der beste Superstar überhaupt. Nachdem ich ihn aber plötzlich bei TNA gesehen habe dachte ich mir: Mann Ric, du hattest die tollste Karriere und jetzt machst du alles kaputt. Dennoch gebe ich ihm 10 Punkte fürseine Leistungen. WOOOOOOOOOOOO"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Necronwrote on 08.12.2010:[9.0] "Mit Flair tue ich mich immer schwer. Seine Erfolge und Lesitungen sprechen für sich, aber ich war nie begeistert von Slick Ric..."
Rating: 9.0
Sentiment: -0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Aceonwrote on 09.11.2010:[9.0] "Während er früher als der überragende Wrestler Ric Flair bekannt war, macht ihn heute sein unglaublich geniales, überzogenes, und lächerliches Micwork aus. Das ist absolut positiv gemeint und ich genieße jede einzelne Promo von Flair. Whoooo! Whoooo! Whooo!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Gomorrawrote on 04.11.2010:[7.0] "Ein Showman sondergleichen der polarisierte.  Was seine Legende jedoch kaputtmacht ist diese ewige Rücktritt/Wiederkommens Geschichte Es ist zeit aufzuhören Ric..."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Homicide187wrote on 18.10.2010:[10.0] "Unheimlich unterhaltend und das schon seit so vielen Jahren. Im Ring und am Mik einfach göttlich. Natürlich ist er mittlerweile alt geworden und zeigt keine Klassiker mehr aber trotzdem sehe ich ihn noch gerne und im Ring glänzt er nun durch Härte & Comedy und weniger durch Technik. Wobei ich mich doch manchmal ein wenig an Terry Funk erninnert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: A-marwrote on 15.10.2010:"Seine Fehde mit Shawn Michaels war wundervoll, genauso wie der Kampf zwischen den beiden. Dann bei RAW so eine denkwürdiger Abschied. Und dann sowas.."
Rating: No rating found
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DJ MaSchwrote on 13.10.2010:[8.0] "Zerstört im Moment sein eigenes Denkmal. Nichts desto Trotz eine der herausragenden Figuren der Wrestlinggeschichte und ein ohne Frage ein ehemals fantastischer Worker, der die zehn Punkte durch seine weltklasse Schlachten und durch jahrzehntelange Top Unterhaltung eigentlich mehr als verdient hätte. Hoffentich kommt nun so schnell wie möglich das engültige Karrierende, denn dann gibt es an der Höchstnote nichts zu rütteln."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Ramwrote on 26.09.2010:[8.0] "Also ich bin ein großer Fan des Nature Boys aber trotzdem will ich ihn jetzt nicht mehr sehen. Er ist Ü60 hat im Ring nur noch beschränkt was drauf und am Mic fällt es mir schwer ihn noch ernst zu nehmen. Wenn er nicht bald in Rente geht verbaut er sich bei mir noch alles."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: rockysadrianewrote on 10.09.2010:[9.0] "Eigentlich die unumstrittene Nummer 1. Leider wirkt das was er bei TNA tut etwas zweifelhaft."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: jerseyhoolwrote on 29.08.2010:[8.0] "Ich hatte Flair bereits vor einiger Zeit bewertet, muss nun allerdings meine Meinung über ihn korrigieren. Der Mann WAR ein Gott im Ring & als Entertainer ein würdiger Nachfolger von Gorgeous George. Allerdings ist das der Ruhm vergangener Tage & ein Flair, der sich nach einem seiner wahrhaft mehr als würdigen Verabschiedungen bei WM 24 nur des schnöden Mammon wegen nun bei TNA agiert, erweckt bei mir einen mehr bemitleidenden denn einen ehrfurchterbietenden Eindruck bei mir! Ok, der Mann ist nach wie vor einer der Mic-Götter, keine Frage. Aber das alles kann nur schwer darüber hinweg täuschen, dass der Nature Boy sich selbst als lebende Legende demontiert. Sehr schade!"
Rating: 8.0
Sentiment: 0.75
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Double Jwrote on 28.08.2010:[9.0] "Einer der besten Mic worker aller zeiten! Im Ring konnte ihm auch kaum jemand was vormachen! Aber für die Verarsche wegen dem rücktritt vom rücktritt gibts nicht die volle Punktzahl!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: y94wrote on 06.08.2010:[10.0] "Es zeugt vom enormem Sachverstand eine Wrestlinglegende wie Flair nur auf Basis dessen zu beurteilen, was er im absoluten Spätherbst seiner Karriere abliefert. Flair hat einen überwältigenden Teil seinerfast 3 Jahrzehnte langen Karriere auf allerhöchsten Niveau gewrestlet, was viele scheinbar aus welchen Gründen auch immer nicht zu würdigen wissen. Außerdem bezweifle ich, dass die WWE ihm sein Abschiedsmatch nur aus reiner Nächstenliebe ermöglicht hat.... Es ist doch immer wieder schön zu sehen was für Experten sich auf dieser Seite herumtreiben..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Technicowrote on 05.08.2010:[4.0] "Zwar eine echte Legende und das Match gegen Michaels bei WM24 gefiel mir auch sehr gut, aber jetzt mal ehrlich: Wie lange will der noch so weitermachen? Alles was er noch kann sind ein paar Chops den Leglock und vielleicht noch ein heiseres "WOOOOOO! ". Bitte Ric, ich BITTE dich. HÖR AUF!"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: lagunswrote on 24.07.2010:[10.0] "Wie soll man so eine Institution des Wrestling bewerten? Einerseitz MUSS es ne klare 10+ geben für all das was er in seiner Karriere für den Sport geleistet hat. Im Ring, am Microfon, und vom Charisma ganz klar Top.... Nur sollte man fairerweise auch die komplette Karriere betrachten und da muss man ganz deutlich sagen, das er nicht auf dem Höhepunkt abgesprungen ist und diesen seit inzwischen 15 jahren überschritten hat. Und wie soll man diese 15jahre nun bewerten? Speziell die letzten 10 jahre sind mit sicherheit keine volle Punktzahl wert und wenn sein Name nicht zufällig mit Ric anfangen und mit Flair enden würde, hätte er in der WWE sicher keinen PPV aktiv bestreiten dürfen. Also gebe ich ihm ne........ ach was solls. Es ist Ric Flair."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MattBornewrote on 05.07.2010:[9.0] "Bei dem Nature Boy muss man einfach die 80iger und weniger die letzten Jahre bei der WWE betrachten. Sicher kann ein Mann jenseits Ende der 50 nicht mehr den Stil gehen von früher. Das scheinen hier einige völlig zu vergessen. Ich denke beim NatureBoy am Meisten an die Zeiten der AWA bzw. WCW wo er einfach übelst gerockt hat. Man denke nur an die Schlachten mit Ricky Steamboat. Ausserdem hat er viel fürs Wrestlinggeschäft getan und viele Junge Leute die jetzt Stars sind over gebracht. Als Manager kann er gerne noch viele Tage erhalten bleiben."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Manu Adamswrote on 16.06.2010:[8.0] "Für mich ist es schwer Ric Flair zu bewerten. Auf der einen Seite sehe ich den größten Wrestler aller Zeiten, der den Fans Tag für Tag hochklassige Matches auf die Beine stellte und sich den Mund fusselig redete um seine Rivalitäten over zu bringen, doch auf der anderen Seite sehe ich einen Mann der unbedingt seine Karriere zerstören möchte. Ich will Flair gerne alle 10 Punkte geben, doch ich kann es nicht da er besonders in den letzten 2 Jahren sich der Lächerlichkeit preisgegeben hat. Deshalb nur ein gut bzw. 8 Punkte."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Atticuswrote on 07.06.2010:[8.0] "Normalerweise würde es von mir eine glatte 10 geben.  Leider ruiniert er sich und seine glorreiche Karriere unnötiger Weise derzeit noch bei TNA.  Persönlich ruiniert er seinen Ruf den er über 20jahre lang aufgebaut hat jetzt bei einer eher durchschnittlichen Liga, in der er nur noch falsch eingesetzt wird ..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Smido83wrote on 06.06.2010:[5.0] "Hmmm... war mal ein ganz Großer, ist aber leider zu ner Witzfigur geworden, da er sich, nach einem der besten Abschieder der WWE Geschichte, einfach nicht vom Wrestling verabschieden kann! Als rauskam das er und Hogan zur TNA wechseln hatte ich zuerst einen gedanken! McMahon übernimmt irgendwann die TNA und die 2 sollens vorbereiten! Könnte doch stimmen, da die TNA ja viele viele Probleme hat seit die 2 da sind! Im Ring kann er nix mehr, außer zu Bluten und auch am Mic wird er immer unverständlicher! Noch vor 5 Jahren hätte man im 8 oder 9 geben müssen, aber er, genau wie Hogan, zerstört seinen eigenen Mythos mit dem jetzigen getue! Es gibt im Wrestling nix schlimmeres als einen Worker der nicht einsehen will das seine Zeit vorbei ist!"
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: WrestlingFanDuisburgwrote on 03.06.2010:[5.0] "Ich kann mit dem Nature Boy nichts anfangen. Klar ist er eine Legende, aber außer dem Match gegen Shawn Michaels und Mitte/Ende der 80er in der WCW finde ich hat er kaum gute Matches bestritten. Die meisten seiner Matches fande ich doch recht langweilig und auch am Mic finde ich ihn alles andere als überzeugend."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: morph80wrote on 30.05.2010:[9.0] "Wenn er nach seinem Abschiedsmatch gegen Shawn Michaels aufgehört hätte, wäre es ein perfekter Abschluss für eine lange und erfolgreiche Karriere gewesen, aber seine TNA Verpflichtung ist wie ein Tritt in die E... für die WWE, Shawn und seinen Fans."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Erasedwrote on 21.05.2010:[8.0] "In den letzten Jahren natürlich nicht annähernd so gut und unterhaltsam wie zur Anfangszeit seiner Karriere."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Straight Edge Jerichoholicwrote on 21.05.2010:[5.0] "Schade... hab ihn gern gesehn un hab auch paar alte Matches geseen wo er wirklich klasse der Mann hat unterhalten jedoch wird auch von mir etwas was an punkten runtergeschraubt erst sone tolle Abschiedstour und dann beim grössten Konkurrenten unterschreiben ist unter aller Würde!  5 Punkte für verblassten Glanz"
Rating: 5.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: RockerDropperwrote on 10.05.2010:[7.0] "Einer der charismatischsten Heels aller Zeiten und eine verdiente Legende; aber leider nicht ohne Mängel. Ric Flairs Repertoire scheint oft beschränkt, seine Matches gleichen sich schon lange wie ein Ei dem anderen. Zudem hat seine körperliche Verfassung schon vor langer Zeit nachgelassen, schon 1995 wirkte er unansehnlich und sah aus, als sollte er langsam Schluß machen. Zudem schießt er gerne gegen andere Größen wie Bret Hart oder Hogan; schlechter Stil. Loyalität wird von ihm viel beschworen, und dennoch dreht er sein Fähnchen mit dem Wind; als loyaler NWA-Held brachte er den Weltmeistertitel in die WWF, als bekennendes WCW-Aushängeschild wechselte er nach dem Ende zur WWE und pries Vince McMahon, um dann nach dem feierlichen Rücktritt bald schamlos zu TNA zu wechseln. Dabei wirkt er im Ring einfach nur noch traurig und macht sich mehr und mehr seinen Legendenstatus zunichte. 7 Punkte jetzt, und ich erhöhe, wenn er endlich wirklich aufhört."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sandmannwrote on 04.05.2010:[9.0] "Einer der größten den es je gab. Sicherlich hätte er sich schon längst zur Ruhe setzen sollen. Denn sein Wirken in den letzten paar Jahren schaden doch der Reputation einer wirklich großen Karriere die ihre Höhepunkte sicherlich in den epischen Schlachten mit Ricky Steamboat hatte. Ansonsten war Flair eigentlich immer ein Mainplayer und hat im Gegensatz zu manch anderen "Legenden" sich auch nie für etwas zu schade gefunden oder sich geweigert den Job gegen junge Stars zu machen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Felice-del-mondowrote on 24.04.2010:[3.0] "Ich bin Fan der alten Schule. Aber nicht der GANZ-alten Schule. Rick Flair habe ich nie zu seiner Blütezeit wrestlen gesehn, darum kann ich nur das Aktuelle bewerten. Er kann mich nicht überzeugen und auch die Farce die er mit seinem Abschied vom Wrestlen abgezogen hat wirkt sich schlecht auf die Bewertung aus. Erst eine schöne Abschiedstour bekommen und dann bei TNA unterschreiben. Nein, Flair schadet sich und seinem Denkmal damit erheblich."
Rating: 3.0
Sentiment: -0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Baldrickwrote on 23.04.2010:[9.0] "Wenn in 50 Jahren noch irgendwo in dieser Welt ein Chop ausgeführt wird, und sei es vor nur 6 zahlenden Zuschauern, irgendwer von ihnen wird ein "Wooo! " in den Raum rufen. Ein herausragender Wrestler und für mich der Erfinder der Superstaraura. Kratzt zwar nun ein wenig am eigenen Erbe, aber ich seh ihn immer noch gerne, gerade weil er immer noch faszinierende Promos halten kann, die sich allerdings zunehmend dem Irrsinn nähern."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Moyawrote on 19.04.2010:[10.0] "Ein großartiger Performer, muss man einfach so sagen. Kann als Wrestler und als Micworker unterhalten. Ich hoffe nur dass er irgendwann mit Würde abtreten kann, denn das hat er als lebende Legende schon verdient. Den Moment bei WM 24 hat er leider verpasst...."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Brainbreakerwrote on 14.04.2010:[9.0] "Flair ist neben Hogan in meinen Augen das Paradebeispiel für einen ehemaligen Superstar, der seinen Legendenstatus nach und nach durch unnütze Auftritte im hohen Alter demontiert. Allerdings bleibt ihm nach seinem "Sex, Drugs & Rock'n'Roll Lifestyle" in den 80ern auch kaum etwas anderes übrig, als das zu verkaufen was er am besten kann (oder eher konnte). Traurig ist es trotzdem anzusehen. Da kann man nichts anderes machen, als noch einmal die Definitive Collection einzuwerfen und seine besseren Tage im Ring anzuschauen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Icebreakerwrote on 14.04.2010:"Flair möchte ich (noch) nicht bewerten da ich noch nicht allzu viel von ihm kenne. Eine Legende mag er ja sein, aber ich finde es eine Frechheit wenn er seinen Fans sagt er hört auf (und hat nebenbei bemerkt einen der tollsten Abschiede [Raw] mit allen Ehrungen erhalten und diesen damit in den Dreck gezogen) und macht dann weiter nur weil der zu dumm ist sein Geld zusammenzuhalten. Sein Match gegen Michaels war beachtlich für sein Alter, aber bitte einen alten Mann in kurzer Buchse will ich echt nicht sehen. Sein so hochgelobtes Micwork kann ich auch nicht nachvollziehen, schon zum Mitte seiner Karriere fand ich das er nur nuschelt. Guckt euch Leute wie The Rock, Edge, Y2J und HBK an DIE haben was drauf am Mic. Manche kapieren es einfach nicht, wann sie ihren Zenit überschritten haben. Irgendwann ist jeder Legendenstatus dahin."
Rating: No rating found
Sentiment: -0.23076923076923078
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: stay wet my friendswrote on 14.04.2010:[10.0] "Das seine Vergangenheit großartig war lässt sich nicht bestreiten. Gar nicht. In den letzten Jahren waren seine Auftritte ... nicht mehr ganz so Großartig. Sollte sich evtl. auf eine Managerrolle beschränken weil er da mit dem alter kein bischen nachgelassen hat. Wird aber wohl noch in den Ring steigen bis es garnicht mehr geht ... Edit: im Rollstuhl fast unterhaltsamer als im stehn ^^"
Rating: 10.0
Sentiment: 0.05
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: stinger89wrote on 12.04.2010:[8.0] "Die Legende die ich noch nicht bewertet habe, aber gerade ihren eigenen Ruf zerstört. So steht ich zumindest zu seinem Engagement bei TNA. Schon die Tatsache, dass er dort als Manager auftrat, gefiel mir schon nicht. Als er dann aber sogar sein In-Ring Comeback gab war ich sehr entäuscht. Das kommt wohl davon, wenn man nicht mit seinem Geld umzugehen weiß... 8 Punkte noch, Tendenz aber fallend..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Eazyewrote on 11.04.2010:[7.0] "Ja, er ist wirklich eine Legende. In den 80ern und frühen 90ern war er wirklich super. Wer das nicht glaubt soll mal einige NWA Matches sehen. Gut am MIc und im Ring FRÜHER super. Doch dann, ab der NWO in der WCW war er nur noch ein Übergangschampion und liess stark nach. In der WWE mit der Evolution wieder gut, dann der RUn als alter Opa war dann weniger gut(Auch wenn einige Matches wirklich der Hammer waren). Was aber wirklich Grund gibt Punkte abzuziehen ist das er nach dem Carrermatchverlust trotzem weitermacht und nun TNA mit Hogan und Bischoff zugrunde richtet. Ansonsten würden 8-9 Punkte drinligen."
Rating: 7.0
Sentiment: 0.15555555555555553
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: RickRollwrote on 09.04.2010:[7.0] "Ich kann an Flair nichts abgewinnen, wirklich nicht. Ich wunder mich schon oft wieso er so hoch "gehandelt" wird. Ich fand lediglich "einige" seiner Matches stark, vorallem die gegen Steamboat, aber ansonsten wars dann auch schon. Solider Worker, der jedoch in den 80ern alles wegrockte, auch wenn der Observer wie so fast immer echt bei einigen Matches auf Drogen warn. Dazu sollte man auch wirklich retiren, wenn man sagt; Das wird mein letztes Match. EDIT; @DerFlaechenbomber: Ich finds gut das du deine Meinung so gut beschrieben hast und wieso du ihm letztendlich die volle Punktzahl gibt, aber wieso sagst du dann gleich zu mir ich sei auf Drogen?  Ich mag Flair halt nicht so sehr wie du und das ist doch auch okay oder nicht? KEIN Mensch wird jemals einer Meinung sein, irgendwann mal sind Menschen bei einem anderen Wrestler anderer Meinung und dies solltest du auch "respektieren"."
Rating: 7.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Parlaelwrote on 05.04.2010:[2.0] "Ich kann nicht nachvollziehen, warum manche hier wirklich noch so viel von ihm halten. Da ich in den 80ern noch zu sehr mit Windeln beschäftigt war, kenne ich ihn nur aus den letzten Paar Jahren. Und ich hätte gut und gerne auf den Ökobubi verzichten können. Im Ring gefiel er mir gar nicht, und das, was man bei ihm als MicWork bezeichnen könnte möchte ich gar nicht bewerten. Hauptsächlich deswegen, weil er mMn einfach zu schwer zu verstehen ist. Dieses Genuschel und Gebrabbel geht mir ziemlich auf den Keks. Außerdem gefällt mir seine Rolle bei TNA auch nicht. »Macht den weg, den mag ich nicht. «"
Rating: 2.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Turboladerwrote on 02.04.2010:[7.0] "Ein Mann, der seine Arbeit so sehr geliebt hat, dass er sie nicht loslassen konnte, einer der besten überhaupt, einfach eine Legende. Edit: Tja, so kann man sich irren... Der TNA Flair gefällt mir überhaupt nicht und ich finde es Schade, dass er sein Karriereende so mit Füßen getreten hat. Deswegen von 10 auf 7 Punkte runter."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Exist 2 Inspirewrote on 01.04.2010:[8.0] "Ric Flair ist drauf und dran sein Vermächtnis zu ruinieren. Ich persönlich möchte ihn wirklich nicht mehr im Ring sehen. Wenn ich ihn schon Woche für Woche bei TNA blutüberströmt sehe könnte ich grad abschalten. Nichts desto trotz bleibt Flair natürlich eine der größten Wrestler aller Zeiten, allerdings muss ich auf 8 Punkte runtergehen. Flair sollte sich langsam überlegen ob es nicht irgendwann genug ist, sonst macht er sich alles kapput!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Franjisewrote on 31.03.2010:[7.0] "Ric Flair war mit Sicherheit kein schlechter Wrestler. Aber meilenweit davon entfernt, der beste Wrestler der Welt zu sein. Sein In-Ring-Work war ok, aber seine Staerken lagen definitiv am Mikrofon. Naitch hatte Charisma, dass muss man ihm zugestehen. Und die Four Horsemen waren sicherlich eine der besten Stables aller Zeiten. Aber trotzdem ist Ric Flair, trotz seines Rekordes von 16 World Championships, nicht der beste Wrestler aller Zeiten (denn das ist Shawn Michaels! ). Schade ist aber vor allem, dass der Nature Boy seinen grandiosen Abschied vom Wrestling, so in den Hintern getreten hat. Haetten Vince und Co. gewusst, dass Ric Flair keine zwei Jahre spaeter wieder wrestlen wuerde, haette ihm die WWE niemals einen solchen Abschied bereitet!"
Rating: 7.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Viperwrote on 30.03.2010:[5.0] "So ein tolles Karriereende bei der WWE und nun bei TNA? Was ein Schwachsinn! Nun gut, vielleicht ist das seine Art und Weise sich zu bedanken, nachdem er vor 2 Jahren in die Hall of Fame kam."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: 3durch16wrote on 14.03.2010:[3.0] "Sorry, aber was er in den letzten Jahren alles abzog, ließ sein Ansehen bei mir schrumpfen"
Rating: 3.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Aquifelwrote on 14.03.2010:[10.0] "Flair ist zu Recht eine Legende. Seine Promos sind legendär, ebenso viele seiner Matches. Und eine Gabe hat(te) Flair: Er konnte auch einen Niemand gut aussehen lassen. Gerade als Heel konnte er jeden als Face over bringen, und sei es für das gerade stattfindende Match. Wenn man dann noch bedenkt, was der Mann alles über sich hat ergehen lassen in der WCW "unter" Hulk Hogan... Dass er jetzt wieder in den Ring gestiegen ist, sehe ich (noch) nicht als Grund für eine Abwertung, aber im Ernst, er gehört dort nicht mehr hin. Als Manager oder On-Screen-Character okay, aber bitte nicht mehr als Wrestler. Denn die Bereitschaft zu bluten und ein paar Bumps zu nehmen macht ihn nicht gerade wertvoll als Worker und auf Dauer ruiniert er damit nur seinen Ruf."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: tobiasthegreatone1wrote on 11.03.2010:[5.0] "Ich gebe ihm 5 Punkte er war nicht schlecht im Ring am mic auch gut aber alles was er seit 2004 gemacht hat war nur noch Schei** . Flair sollte wirklich mal einen Schlussstrich ziehen. Bei Tna hat er auch noch AJ lächerlich gemacht in dem man Styles als Flair Jr. hinstellt Ric sollte sich echt schämen."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: rv27wrote on 10.03.2010:[10.0] "Was soll man dazu sagen. Er ist hald einfach Ric Flair. Da kann man nur sagen WwwwOOOOOOOOwwwW!  Naja großartiger Wrestler. Wenn auch mit einer sehr sehr undeutlich Aussprache."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MJ Goldbergwrote on 09.03.2010:[9.0] "Früher sehr gut im Ring, am Mic ein Gott, er sollte zwar nicht mehr zu häufig wrestlen, aber ohne Ric Flair geht es auch irgendwie nicht! Absolute Legende!"
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Wizz21wrote on 04.03.2010:[10.0] "L-E-G-E-N-D-E, der beste Wrestler aller Zeiten... 'nuff said!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Solid Snakewrote on 19.02.2010:[0.0] ""King E und K AG" hat alles gesagt, was es zu dieser Frechheit zu sagen gibt. OVR von 9 hier in CM *hehe*"
Rating: 0.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Whopperlewrote on 16.02.2010:[10.0] "Einer der besten Worker aller Zeiten. Genug gesagt."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kankurowrote on 12.02.2010:[9.0] "Ein in sämtlichen Belangen außergewöhnlicher Wrestler, dem ich aber dennoch die volle Punktzahl verwehren muss. Mit dem tollen Abschied bei WM24 hätte einfach Schluss sein müssen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Bisorwrote on 30.01.2010:[5.0] "Absolute Legende aber entwickelt sich mittlerweile immer mehr zum Hulk Hogan. Immerwieder mal einen Auftritt obwohl er schon Zurückgetreten ist usw.. Hätte 10 Punkte verdient, aber seitdem er in Australien wieder in den Ring gestiegen ist, hat er seine Ehre verloren."
Rating: 5.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: nwowrote on 24.01.2010:[9.0] "Absolute Legende. Hatte das Talent auch schlechte Wrestler gut aussehen zu lassen. 1 Punkt Abzug weil ich ihn während seiner ganzen Karriere wirklich niemals leiden konnte. Übrigens: Seine Auftritte bei TNA sind wohl der Grund für manche ihn schlechter zu bewerten. Es mag den einen oder anderen überraschen, aber wer Geld braucht muss arbeiten."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Pinguwrote on 18.01.2010:[8.0] "Hmm habe ihm nach WM 24, 10 Punkte gegeben. Aber auch er hat durch seine TNA Aktionen auf jeden Fall eine Abwertung verdient. Bekommt einen total großen Abschied, mit großen Momente, und ganz ehrlich: Leute mit 60 Jahren gehören einfach in keinen Ring, auch wenn er es noch kann. Aber man muss wissen, wann der richtige Zeitpunkt für einen Abschied ist. Hin und wieder Gastrollen wäre ja schön und gut, aber ehrlich Ric: Es ist Zeit für die Rente. Dennoch eine Legende"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: HeartBKwrote on 14.01.2010:[7.0] "Absolutes Plus aufgrund seiner großen Karriere, aber leider Abzug nach der aktuellen Situation. Es war ein so genialer Abschied. 7 Punkte."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: element-41wrote on 12.01.2010:[7.0] "In den letzten Jahren seiner aktiven Wrestlingzeit haben mir seine Matches nicht besonders gut gefallen, wobei ich dazu sagen muss, dass ich ihn nicht mag. Jedoch hat er mich in seinem letzten Wrestlemania Match gegen Shawn Michaels positiv überrascht, da dies ein sehr gutes Match war. Als Manager kann ich ihn mir sehr gut vorstellen und blicke deswegen mit großer Freude in die Zukunft bei TNA. 7 Punkte!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Ywainwrote on 11.01.2010:[8.0] "Ein Mann, der wrestlerisch eigentlich alles erlebt, gesehen und erreicht hat. Trotzdem ist er (leider) ein gutes Beispiel für jemanden, der den Absprung nicht geschafft hat und sich nun, als ältlicher Alt-Star, mehr und mehr der Lächerlichkeit und des Mitleids preisgibt. Sein Abschied bei WM 24 hätte einer der großartigsten Schlusspunkte sein können, der einem Worker je gegönnt wurde. Leider hat er es verpasst, in Würde den Ruhestand zu genießen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: devilsoldierwrote on 05.01.2010:[7.0] "Hätte als einziger von der älteren Generation noch die Berechtigung im Ring zu stehen weil er kann es noch( im Gegensatz zu Duggan oder Hogan) aber hat den besten Zeitpunkt zum Aufhören selber gewählt. Er ist einfach einer der besten im Ring. Ric genieß dein Lebensabend und die Gewissheit besser als Vince zu sein. Update: Hat den Zeitpunkt zum aufhören gehabt und verpasst, ab jetzt wirkt es nicht mehr schön. Zerstört seinen eigenen Ruf."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Aesopwrote on 20.12.2009:[10.0] "Einfach nur legendär. Im Ring war er super und Charisma hatt zte er auch. Er hat klasse Matches abgeliefert wie das I Quit Match gegen Steanboat. Er war für die NWA das was Hogan für die WWF wahr."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Blazewrote on 09.12.2009:[6.0] "In den Siebzigern und vielleicht bis Mitte der Achtziger ein guter Wrestler. Spätestens zum Ende der Achtziger im Ring nicht mehr zeitgenössisch. Fehlende Dynamik, zudem gab es in puncto Ringpsychologie seitdem weitaus bessere. Am Mic liefert er bis heute eine ganz große Show. Im Ring zu einseitig, langweilig. Anerkennung für die große Hingabe zum Sport, einstiges Pioniertum, aber Abzug für die letzten 15 Karrierejahre und deutliches Überschreiten seines Zenits."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mister MOwrote on 01.12.2009:[5.0] "Nur 5 Punkte, weil er einfach eine Rampensau ist, der nicht weiß wann es genug ist. Sein toller Abschied bei WM24 war jetzt betrachtet voll für den Allerwertesten. Die 5 Punkte hat er, aufgrund seienr unnachahmlichen Karriere, dann doch verdient, aber mehr nicht, da im Ring auch sehr limitiert."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: MrSmackdownwrote on 30.11.2009:[6.0] "Hat seine Karriere längst hinter sich, nun durch die Rückkehr macht er sich alles kaputt, däfür gibts nurnoch befriedigend, schön er war ein Mega Star, vor 15- 20 Jahren....."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: brianpillmanwrote on 27.11.2009:[9.0] "Vielleicht die größte lebende Legende im Business. Nicht völlig zu unrecht. Viel Charisma, unglaubliche Promos. Im Ring sehr solide, auch wenn ich ihn technisch für teilweise überschätzt halte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: chimpwrote on 18.11.2009:[3.0] "Ich habe Flair seid etwa 1990 erlebt und fand ihn wirklich zu keiner Zeit richtig gut, oft hat er mich gelangweilt! Mag sein, dass er davor wichtiges fuers Business geleistet hat, aber das ist 20 fast durchwegs aktive Jahre her, die man einfach mit einbeziehen muss. Zudem hat er sein Leben nicht im Griff und nie gehabt, weshalb es immer und immer wieder zu diesen unsaeglichen Comebacks kommt. Das aktuelle mit Hogan ist nach WM25 echt eine Frechheit!"
Rating: 3.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Shikawrote on 17.11.2009:[6.0] "Mit meinen 16 Jahren habe ich zwar nicht alles von Flair gesehen aber das was ich gesehen hab fand ich nicht gut. Hat seinem Ruf zu sehr geschadet als er noch mit über 50 in den Ring stieg. Sein Mic Work find ich auch gar nicht soo gut wie es viele immer wieder sagen. Durch seinen Legenden Status und den vielen Titeln die er erringen konnte bekommt er dennoch 6 Punkte"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: downtown2wrote on 13.11.2009:[10.0] "Dieser Mann ist schlicht und ergreifend der Inbegriff von Wrestling. Mehr Wrestler geht einfach nicht. Er trug die NWA allein auf seinen Schultern, setzte sich sowohl in der WWF/WWE als auch in der WCW durch. War in einigen der aufregensten und berühmtesten Stables in der Geschichte des Pro Wrestling. Über 35 Jahre Ringerfahrung. Einen Mann der das Wrestling nicht nur so stark verkörpert, sondern es auch so liebt, für den ist das Wort Legende das Mindeste, was man über ihn verlieren muss."
Rating: 10.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Big Bad Booty Babywrote on 06.11.2009:[8.0] "Viele verehren ihn für seine technischen Fähigkeiten, andere hassen ihn für die vielen Chops und den unspektakulären Stil. Er ist im klassischen Sinn ein toller Wrestler, allerdings im Vergleich zu vielen Attitude- und Post-Attitude- oder gar heutigen Indy-Wrestlern wie Danielson langweilig und viel zu unbeweglich. Dazu kommt ein Rücktritt in einem Alter, das ihm jegliche Beweglichkeit oder gar Flugmanöver nahm und er kann immer noch nicht die Finger vom Wrestling lassen. Einzig am Mic ist und bleibt er über jeden Zweifel erhaben und auch durch seinen etwas fragwürdigen Lebenswandel ist der "diriest player in the game" Kult und hat nach seiner langen Karriere auf jeden Fall Legendenstatus verdient."
Rating: 8.0
Sentiment: -0.36666666666666664
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Orton7wrote on 21.10.2009:[5.0] "War in meinen Augen zu lange aktiv und hat sich dadurch doch noch einiges kaputt gemacht.."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Cool Papa Bellwrote on 14.10.2009:[10.0] "Mir fällt kein Größerer ein; guter Wrestler mit Love for the game"
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheBrainwrote on 04.10.2009:[4.0] "Wenn ich Ric Flair mit einem Rock, Austin, Undertaker, HHH, Hulkster, etc vergleiche, dann kann ich einfach keine 10 Punkte geben. Flair war zu WCW Zeiten schon bei weitem zu alt. Physisch nicht an zu sehen, alles hing herunter und trotzdem gewann er gegen die Größten. Das konnte ich als Junge nie verstehen. Abgesehen von seinem faden Wrestlingstil der sich so erklärt dass er einfach zu wenig Kraft hatte. Also man sieht ich bin kein Flair Fan darum auch die Punkte!"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: NewGuywrote on 07.09.2009:[4.0] "tja eigentlich eine richtige legende aber menschlich überhaupt nicht ertragbar! selbst total lebensunfähig (was man an seinen schuldenberg ja sehen kann der immer und immer wieder kommt) aber kritisiert andere wo es nur geht^^"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: N3m35i54wrote on 30.08.2009:[8.0] "Ric Flair hätte glorreich bei WM 24 abtreten können, und nun ist er so tief gefallen. Ich werte daher auf 8 Punkte ab"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: teekay86wrote on 25.08.2009:[10.0] "Eine Legende. Wenn es nach mir ginge würde sein Rekord für die meisten World Titel ein Rekord für die ewigkeit sein. Leider hat er es nicht verstanden Rechtzeitig seinen Hut zu nehmen. Allerdings schmälert das seinen Status nur minimal"
Rating: 10.0
Sentiment: -0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Woerpwrote on 23.08.2009:[9.0] "Die Legende des Wrestling! Wer war noch mal Hulk Hogan?"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Muthmasterwrote on 14.08.2009:[2.0] "Der in meinen Augen größte Witz im Pro Wrestling. Und das beste ist, er überbewertet sich selber bis ins unmenschliche. Nicht mehr schön. Im Ring kann er leider fast nichts außer Choppen oder mal vom obersten Seil zu fliegen. Sah schon zu Beginn aus wie ein alter Mann, was man ihm aber lassen muss, er war am Mic nicht schlecht. Ansonsten frag ich mich wie er 20 World Title gewinnen konnte. Keine Legende in meinen Augen."
Rating: 2.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: 1234wrote on 08.08.2009:[5.0] "Ohne Zweifel ein legendärer Wrestler, aber wer jahrelang das Gleiche abspult und zudem den idealen Rücktrittszeitpunkt verpasst hat, kommt nicht über eine 3- hinaus."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: wweinspectorwrote on 02.08.2009:[7.0] "Also ich finde das RIc Flair viel zu überwertet wurde/wird. Sicherlich ist er gut. Aber in den letzten Jahren wahr er einfach nur schlecht!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: 108 Sternewrote on 24.07.2009:[9.0] "Eine ganz große Legende; und einer der wenigen Wrestler, die nicht mit Verbitterung zurückblicken, sondern das Business vorbehaltlos lieben. Seinem Körper hat man das zunehmende Alter schon Mitte der 90iger angesehen, trotzdem blieben seine Leistungen im Ring solide."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mick Funkwrote on 15.07.2009:[10.0] "DIE Wrestlinglegende überhaupt. Hat zwar den richtigen Zeitpunk zum Absprung verpaßt, aber für das Lebenswerk kann es nur 10 Punkte geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Basket Casewrote on 21.06.2009:[8.0] "Durch seine weiteren Auftritte nach seinem Abschied bei WM24 zerstört er selbst sein Denkmal, ich will ihn nicht mehr sehen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Matt Mackswrote on 14.06.2009:[9.0] "Ric Flair war einer der größten Stars des Wrestlings in den 80er und 90er Jahren, der sich diese Position durch zahllose Stunden Hochklasse-Wrestlings und -Unterhaltung verdient hat. Sein "Abschied" bei WrestleMania 24 war einer der emotionalsten Momente des Jahres und in meiner Zeit als Fan überhaupt, was durch die exzellenten Szenen bei der Hall Of Fame-Veranstaltung und der RAW-Sendung danach noch unterstrichen wurden. Was Flair jedoch mittlerweile betreibt, ist Raubbau an seiner eigenen Reputation. Mit seinen selbst auferlegten Zwänge nach weiteren Matches für viel Geld sowie seiner vollständig respektlosen Behandlung des Vertragspartners Ring Of Honor treibt Flair ein gefährliches Spiel, das damit enden könnte, dass wir uns nicht mehr an Flair, den Star, erinnern werden. Nicht nur wegen der unakzeptablen Komplettverarschung von ROH seitens Flair habe ich persönlich NULL Interesse, Flair noch einmal zu sehen, geschweige denn als Aktiver im Ring."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Theron083wrote on 07.06.2009:[6.0] "Eigentlich eine große Legende, aber massive Abzüge für sein "Comeback". Der ganze große Abschied von WM 24 mit Michaels wird damit lächerlich gemacht. Bähh.."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Unrated Superstarwrote on 04.06.2009:[8.0] "Der alte Mann und das Wrestling! Hat auch jetzt immer noch einiges drauf, wenngleich die Ring-Skills mit dem Alter immer mehr nachlassen. Erfahrener Ringfuchs und eine wesentlich größere Respektperson als andere sogenannte "Legenden" wie u. a. Hulk Hogan, da er sich nicht auf den Lohrbeeren von Vorgestern ausruht und stehts bemüht ist das Publikum im Ring zu unterhalten. Bekommt aber dennoch einen Punkteabzug, da er zur Zeit mit seinem In Ring-Comeback-Gehabe dabei ist an seinem eigenen Thron zu sägen. Ric, lass es einfach sein!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: heiniwrote on 10.04.2009:[10.0] "Man bewertet hier einen der besten Pro-Wrestler aller Zeiten. Flair hat nicht nur heute bekannte Moves wie den Chop oder den Figure-Four Leg Lock erfunden, er konnte diese auch perfekt einsetzen und wurden dadurch ein 16faches World Champion. Ebenfalls bewundernswert am Nature Boy ist, dass er von den Fans sowohl als Face als auch als Heel angenommen wurde und sich auch perfekt in die Rollen heineinversetzen konnte. Das größte was Flair wohl neben seinen World Championships geleistet hat, ist sein Abschied vom aktiven Wrestling. Dies wird wohl der größte Abschied eines Wrestlers für lange Zeit sein und die nächsten werden einfach klein im Vergleich zu Flairs scheinen. Es bleibt nur zu sagen: WOOOOOOOOOOOOOOOOOOOOOOOOOOO!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The-Game91wrote on 01.02.2009:[10.0] "35 Jahre hat er sich dem Wrestling gewidmet und wurde zur Legende. The greatest of all time!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rattlesnakewrote on 31.01.2009:[10.0] "Sicher gibt es bessere Techniker. Aber er war ein perfekter Wrestler. Grundsolide Aktionen; umfassende Ringpsychologie - herausragendes Micwork und unglaubliches Charisma. Grandiose Kämpfe mit Steamboat, Sting, Vader und vielen anderen - und dabei immer glaubwürdig. Im Alter sich auch nicht zu schade, für andere zu jobben. Kurz: einer der größten aller Zeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: vida-locawrote on 29.01.2009:[6.0] "Wenn er früher zurück getreten wäre hätte er 10 punkte bekommen, aber so leider nur sieben da es am ende einfach unrealistisch aussah wenn die jungen stars besiegt"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ScrWwe94wrote on 10.01.2009:[10.0] "Fand ihn wirklich Klasse und hat ein perfektes Abschiedsmatch gegen Shawn Micheals geliefert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sallywrote on 31.12.2008:[3.0] "Flair stand einfach zu lange im Ring. Er hätte schon viel früher aufhören sollen. Am Ende seiner Karriere wirkte er einfach nur noch unglaubwürdig (Verteilte nur einen Chop nach dem anderen). Früher mal ein einigermaßen guter Wrestler aber die letzten Jahre vor seinem Karrierenende nur noch lächerlich."
Rating: 3.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Jar Jar Binkswrote on 18.12.2008:[10.0] "Was will man da noch Großes sagen außer "Whoooooo! "?  Dieser Mann hat Wrestling geprägt und ist einfach die Legende schlecht hin."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: manager1977wrote on 10.12.2008:[10.0] "Nicht unbedingt einer meiner Lieblingswrestler aber sicher einer der ganz großen des Business. Ric Flair war ein Wrestler der das Geschäft gelebt hat. Dafür auf jeden Fall die Höchstwertung."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Amazing Bluewrote on 19.11.2008:[10.0] "Einer der besten Wrestler aller Zeiten, der mich fast immer überzeugen konnte. Dazu das großartige Karrieende. Einfach top!"
Rating: 10.0
Sentiment: 0.47500000000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: domi1984wrote on 10.11.2008:[10.0] "Flair gehört zu den besten Wrestlern die je in diesem Geschäft gearbeitet haben. WHOOOOOOOOOOOOOOOOO & 10 Pkt. !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Animal360wrote on 24.10.2008:[10.0] "Er hat dem Business mit all seinen Taten geholfen es groß zu machen. Er lebte das Business mit Blut, Schweiß und Tränen. Er ist einfach Legendär. Deswegen ein WOOOOOOOOOOOOO! und 10 Punkte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: thxthxwrote on 20.09.2008:[3.0] "War nie ein großer Flair Fan - mochte shcon eine Aufmachung nicht."
Rating: 3.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Niklas1106wrote on 28.08.2008:[10.0] "Eigentlich hätte Ric auf dieser Skala eine 11 verdient, aber leider geht sie nur bis 10. Ric ist über Jahre hinweg ein Meilenstein im Sportsentertainment gewesen und zu Recht "Hall of Famer" Seit dem ich Wrestling schaue ist er dabei und stets hatte er Kultstatus bei mir. Sein Matches sind stets sehr unterhaltsam gewesen und seine Abschiedsfede mit Vince (mit der Klausel dass er bei der nächsten Niederlage gefeuert wird) haben mit dem Match bei Wrestlemania ein würdiges Ende für seine großartige Karriere gebildet. Sein Abschiedsmatch bei Wrestlemania ist für mich bis jetzt das beste und unterhaltsamste Matche des Jahres! WHOOOOOOO"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: SelfEsteemwrote on 31.07.2008:[10.0] "Mehr als "WOOOOOOOOOOOOOOOO" kann man hier wohl nicht sagen!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CenaSuckswrote on 29.07.2008:[10.0] "Was soll man sagen außer ein kräftiges 16-Times: Wooooooooooooooooooooooooooooooo!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Weihnachtsmannwrote on 23.07.2008:[5.0] "Oh ja, Ric Flair... Hmh. Sein In-Ring-Stil gefiel mir nie (gerade in den letzten Jahren seiner Karriere extrem langweilig), sein Micwork fand ich immer grenzwertig. Verdient aber Anerkennung für seine lange Karriere und für das, was er für den Sport geleistet hat. Daher noch 5 Punkte."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Dirkiboywrote on 06.07.2008:[10.0] "ein ganz Großer des Geschäfts. Mehrfacher Champion in allen Ligen. Top ! Er hat große Schlachten geschlagen und auch wrestlerisch recht viel drauf (ganz im Vergleich zu z. B. Hogan). Eine wahre Ikone und von daher gibts die Topwertung !"
Rating: 10.0
Sentiment: 0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: andrekoenigwrote on 20.06.2008:[10.0] "Der Nature Boy ist ohne Zweifel einer der größten Wrestler in der Geschichte dieses Sports. Er hat sich legendäre Matches mit z. B. , Dusty Rhodes geliefert und war Mitglied eines der dominierensden Stables überhaupt: der Four Horsemen. Er hat seine 16 World Titles auch ohne Zweifel verdient. Er hatte wirklich, eine der größten Karrieren im Sports Entertainment."
Rating: 10.0
Sentiment: -0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: LordTrailerwrote on 16.06.2008:[10.0] "Ich muß zugeben, dass er persönlich nie mein Fall war, aber ich erkenne seine Leistungen klar an. Er hat über mehrere Jahrzehnte eine tragende Rolle gespielt. Zwar hat er den Absprung meines erachtens um ein paar Jahre zu lange verzögert, aber das schmälert nicht seinen Beitrag zur Wrestlingwelt. Auch wenn er für mich nicht der größte aller Zeiten ist, bleibt mir nichts anderes als die Höchstpunktzahl zu ziehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Blue Meaniewrote on 07.06.2008:[10.0] "Einer der besten aller Zeiten, wenn nicht sogar DER BESTE. Naitch war klasse und sein Abgang das emotionalste, was ich bisher im Wrestling miterleben durfte."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DeadHeadwrote on 04.06.2008:[10.0] "The jet flying, limousine riding, kiss stealin, wheelin dealin, son of a gun! WOOOOOOOOOO!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kevichenkowrote on 01.06.2008:[10.0] "Er hat das Wrestling geprägt. Er war einer der komplettesten Wrestler aller Zeiten , und auch ohne seine 16 World-Title Gewinne wäre er was einzigartiges. Wooooooooooooooooooooooooooooooooooooooo ... !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Frutzwrote on 15.05.2008:[10.0] "Seltsam. Die einzig wirklich bewusste Zeit war 92, 93 in der WWF. Ich habe ihn gehasst, gegen den Macho Man, noch mehr gegen Bret Hart, gegen Mr. Perfect, der Vorzeige-Mark. Und trozdem, wenn ich seine Matches sehe, wenn ich sie lese, wenn ich ihn sehe, seine ganze Erscheinung, ich gebe es zu, da bin ich Mark: 10 Punkte."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Haribowrote on 14.05.2008:[10.0] "Hat eine einzigartige Karriere hingelegt. Einer der charismatischsten Leute, die je einen Ring bestiegen haben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Timmiwrote on 30.04.2008:[10.0] "Er ist für mich einer der besten der Welt er hat fast alles erreicht was man erreichen kann. Hamma!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Riley Mathewswrote on 28.04.2008:[10.0] "Hab ihn sicherlich nicht so oft gesehen da ich erst 2005 angefangen hab zu gucken aber bei seinem Abschied bei RAW kamen mir trotzdem die Tränen. Thank you Ric!"
Rating: 10.0
Sentiment: -0.2884615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Bigkev82wrote on 26.04.2008:[10.0] "WHOOOOOOOOOOOO! zwar sagt man immer als erstes Hulk Hogan, aber für mich is Flair die absolute Wrestling Legende. Hätte nicht gedacht, dass er so ei super match gegen Shawn zeigt. Schade dass er geht, aber er geht wenigstens wo es noch nicht peinlich ist ihm im Ring zu sehen the dirtiest player in the game... In Zwanzig Jahren werden die fans bestimmt immer noch "WHOO" bei chops rufen"
Rating: 10.0
Sentiment: 0.04444444444444443
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Champwrote on 26.04.2008:[10.0] "10 Punkte für den Dirtiest Player in the Game! Mehr muss man zu ihm einfach nicht sagen. Nur das er grade im Mic-Work seine große Stärke hatte, an die nur ganz wenige ran kommen."
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Undertalkerwrote on 22.04.2008:[8.0] "Einer der größten, wenn nicht gar der größte Name des Wrestlings, und das zurecht. Er ist unglaublich beständig und überall wo er die Finger im Spiel hatte, überzeugte er. Sein Micwork ist auch klasse, ebenso wie sein ganzes Auftreten. Ich finde ihn im Ring unheimlich unterhaltsam. Flair ist ein begnadeter Entertainer! Und trotzdem gefällt mir sein Wrestling-Stil nicht, da er keine große Aktionsvielfalt an den Tag legte und sich auch nie Mühe gab, sich mal etwas Neues draufzuschaffen. Da ich ein Fan von gutem, technischem und abwechslungreichem Wrestling bin, kann ich ihm, auch wenn's mir selber wehtut, nicht die volle Punktzahl geben. Hierauf lege ich nunmal viel Wert!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Julian007wrote on 21.04.2008:[10.0] "Ric ist einer der Besten Wrestler die es je gab dieser mann ist einfach eine Legende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: e-trom995wrote on 21.04.2008:[10.0] "Dieser Wrestler hat für seine Karriere einfach nur eine 10 verdient!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheAdaawrote on 13.04.2008:[10.0] "Die Legende des Wrestling! Nicht so bekannt wie Hogan, aber geschichtlich gesehen weitaus bedeutender. Die Four Horseman, die Art wie sich Wrestling entwickelte und sein Auftreten prägten das Wrestling wie niemand anderes. Was er anpackte machte er zu Gold. Thx for evrything Flair."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Muffiwrote on 13.04.2008:[10.0] "Einfach eine Legende. Hat sogar im hohen Alter gezeigt das er klasse Geschichten im Ring erzählen kann, die nicht nur aus Chops und Whoooos bestehen, wie manche Leute gerne behaupten. Eine großartige Karriere."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Dynamite4wrote on 11.04.2008:[10.0] "Legende. Hat eine Unglaubliche Kariere. Schade das sie zuende ist"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Aglaoswrote on 10.04.2008:[10.0] "9 Punkte für den Wrestler und einen Bonuspunkt für seine Einstellung zum Biz. Goodbye, Ric. Danke für die vielen schönen Stunden!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Tomkowrote on 10.04.2008:[10.0] "Diesen Mann kann man nicht mit Worten beschreiben..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Yukkowrote on 07.04.2008:[4.0] "Naja.... er mag früher mal was gewesen sein aber in seinen "aktuelleren" Matches bringt er immer das selbe. Chops... mehr nich -. -*"
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Bomberman2000wrote on 07.04.2008:[8.0] "Man braucht nur ein Wort um Ric Flair zu beschreiben: Woooooooo!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Fire Devil1990wrote on 06.04.2008:[10.0] "Ich finde er machte trotz seines Alters eine gute Figur. Aber ich denke, dass trotz seines "Ruhestandes" ihn die WWE noch anderweitig einsetzen wird."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Timetoplaythegamewrote on 04.04.2008:[10.0] "THE DIRTIEST PLAYER IN THE GAME. ! DER! Wrestler schlechthin. Eine lebende Legende, mit niemanden zu vergleichen!"
Rating: 10.0
Sentiment: -0.78125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Steven McWheelerwrote on 03.04.2008:[10.0] "Eine Ikone dieses Sports, keiner redet sich so schön in Rage und kriegt nen so lustig roten Kopf wie er^^ Der Größte auf lange Zeit gesehen"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: TheROCKwrote on 03.04.2008:[10.0] "Ric Flair ist einfach ''The Man''. Natürlich hat Hulk Hogan Wrestling zum weltweiten Phänomen gemacht, aber niemand hat, nichtmal Hogan, dieses Business so gelebt wie der Nature Boy Ric Flair. Thank You Ric !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ReY-mYsTeRiOwrote on 03.04.2008:[10.0] "Schon nur für sein Match gegen HBK sollte man Ric 10 Punkte geben Thank you Nature Boy wir werden dich vermissen !  WHOOOOOOOOOOOOOOOOOOOOOOOOOOOO"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sabu316wrote on 03.04.2008:[10.0] "Habe ihm bei der ersten Bewertung 10 Punkte gegeben da er einer der besten (evtl. der beste) Wrestler aller Zeiten war. Muss nun aber noch ein dickes DANKE loswerden dafür das ich ihn in den letzten 18 Jahren (! ) im Ring erleben durfte!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Eaterwrote on 02.04.2008:[10.0] "Wenn diese einzigartige Karriere keine volle Punktzahl verdient hat dann hat es keine. Danke Ric!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ultimate-warrior-xwrote on 02.04.2008:[10.0] "The show must go one! Leider nun ohne Ric Flair. Wer so lange oben war wie Flair hat eine 1 verdient. Eine der grössten Legende diese Geschäfts. Wrestlemania 24 hätte mit dem Kampf HBK vs. Flair abschliessen müssen, es spricht aber für Flair, dass er abgelehnt hat um Jüngere den Vortritt zu lassen. Thank you Ric!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Eddiewrote on 02.04.2008:[10.0] "Jetzt nach Wrestlemania muss man erst recht die 10. 0 geben, das Match gegen HBK war genial. Mit einem Cross Body vom Top Rope, sowas habe ich von ihm noch nie gesehen! Thank you Ric!  Einfach einer der Besten (wenn nicht DER Beste) aller Zeiten."
Rating: 10.0
Sentiment: 0.390625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: fairywrote on 02.04.2008:[10.0] "einer der besten Wrestler aller Zeiten " thank you Ric""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Dave Concordiowrote on 01.04.2008:[10.0] "Ric Flair... welche Worte wären dem Mann schon gerecht? Der Michael Jordan, Babe Ruth, Joe Montana, Muhammad Ali, Pele des Pro Wrestlings... Hogan hat es vergleichsweise nicht verdient in dem Schatten derer zu gehen, die im Schatten von Flair gehen. Thank you Ric Flair."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Instant Classicwrote on 01.04.2008:[10.0] "Wahrscheinlich DIE Legende schlechthin. Hat aufgrund seiner Geldsorgen allerdings das rechtzeitige Karriereende verpasst und verliert von Jahr zu Jahr an wrestlerischen Fähigkeiten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: xXJohnCenaXxwrote on 01.04.2008:[10.0] "The greatest Wrestler of all time - so formulierte es Shawn Michaels und als HBK Fan kann ich mich dem nur anschließen.... 16-times World Champion, das schafft niemand anderes mehr, zu Ehren Rics sollte das ein Rekord für die Ewigkeit werden, dass Match bei Wrestlemania war nur großartig, besser hätte ich es aber gefunden wenn Shawn Michaels nach der SCM das Cover bei 2 abgebrochen hätte und dann unter Kopfschütteln einfach gegangen wäre, bei der nächsten RAW Show hätte er verkünden sollen, dass er es einfach nicht konnte und Ric hätte von selber retired. Trotzdem zu das Ende von Monday Night RAW war gut gemacht und wer weiß vllt. kommt er ja doch nochmal zurück holt sich den Title und geht dann wirklich in Rente, er ist ja der dirtiest payer in the game, ein letztes mal noch.... Woooooooooooooooooooooooooooooooooooooooooooooooo"
Rating: 10.0
Sentiment: 0.034615384615384576
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Pink and Black Attackwrote on 01.04.2008:[10.0] "mir ist klar, dass jetzt nach seinen karriere ende und dem match bei WM24 die kommentare fast nur positiv ausfallen werde. ich werde mich dem anschließen, denn lässt man seine karriere revue passieren, haben nur wenige so für den sport gelebt und soviel zum sport beigetragen wie ric. und das er bei WM noch so ein match aus dem hut zauberte, natürlich mit einfluss von HBK, dann kann man nur sagen, hut ab, tolle leistung!"
Rating: 10.0
Sentiment: -0.005555555555555554
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Asumawrote on 01.04.2008:[10.0] "Das einzige was ich zu diesem Mann sagen kann ist: "Thank you Ric""
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Muutzwrote on 01.04.2008:[10.0] "Ric Flair, eine Wrestlinglegende, ich weiß gar nicht wo das Problem liegt " Er ist ale wie mein Opa den will ich nicht sehen". Wir sind hier beim Wrestling und nicht auf ner Modenschau oder auf Partnersuche.. Eine tolle Karriere ging zuende, eine schöne Rente dir RIC !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: D3adm4nwrote on 01.04.2008:[10.0] "Whoooo! Gelungener Abschied mit dem Wrestlemania Match... wird für immer unvergessen bleiben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: mdbnasewrote on 31.03.2008:[10.0] "Ich mag ihn als Typ überhaupt nicht. Sieht scheisse aus und hat 'ne blöde Frisur. Allerdings ist er der wahre Wrestlingkönig und ein Stehaufmännchen der alle Höhen und Tiefen des Biz gemeistert hat!  Auch wenn ich ihn nicht mag hat er nach seinem Abschiedsmatch bei WM 24 nun doch eine 10 verdient"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Hardcoremaniacwrote on 31.03.2008:[10.0] "Ich denke man kann es wahrlich sagen: Der beste aller Zeiten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Kain Wolfsheadwrote on 31.03.2008:[10.0] "Wird wohl von niemandem mehr erreicht. Diamonds are forever. So is Ric Flair!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: HCN007wrote on 30.03.2008:[10.0] "Die Legende schlechthin - Die HOF-Aufnahme fehlte noch um Ihm ein Denkmal zu setzen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Joe710wrote on 28.03.2008:[10.0] "Einer der besten Mic Worker, des gesamtem Buissnes. In der RAW Ausgabe vor Wrestlemania hat er, dass mal wieder eindrucksvoll unter Beweis gestellt. Wird als Wrestler, meiner Ansicht nach etwas überbewertet. Doch die Leidenschaft, die Liebe und die Bereitschaft, die er für dieses Buissnes zeigt, ist selten. Deßhalb die volle Punktzahl, für eine wahre Legende des Professional Wrestlings."
Rating: 10.0
Sentiment: -0.06538461538461539
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Ruppiwrote on 27.03.2008:[10.0] "Im Ring sehr gut. Am Mic sehr gut. 20 World Titles. Jede Halle betet ihn an. Passt perfekt in die Rolle des Nature Boy. Was kann man sonst noch sagen. Er hat (ohne Zweifel) seinen Zenit überschritten. Aber man kann ihn nach über 30 Jahren Wrestling, in denen er meistens im Main Event stand, meiner Meinung nach, nicht nach den letzten paar Jahren beurteilen. Deswegen steht die 1."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ZuluBunsenwrote on 24.03.2008:[10.0] "Für jemanden wie ihn gibt es nur eine gerechtfertigte Note, was hab ich den Mann damals als junger Mark bei WCW gehasst. Unterdessen bin ich mir aber Flairs Verdiensten im Business bewusst und kann kaum eine andere Note als die 10 geben."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Heatwrote on 13.03.2008:[10.0] "Heute klar kein überragender Wrestler mehr, doch er kann nach wie vor tolle Promos halten und was Ric Flair früher war, zeigen seine etlichen exzellenten Matches und auch seine vielen World Heavyweight Titelregentschaften sprechen doch für sich, oder? !"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: stryker9wrote on 27.02.2008:[10.0] "Die Statistiken von ihm sagen ja schon alles. Bekommt jetzt seinen verdienten Abschied. Wenn er nicht mehr da ist fehlt doch was. Er gehörte halt immer dazu. Aber die Zeiten ändern sich halt auch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: mr sledgehammerwrote on 26.02.2008:[8.0] "Der Nature- boy ist eine lebende Legende, schon klar. Aber ausser ein paar Back Chops schafft er doch auch nicht mehr. Und noch etwas kann er: WHOOOOOOOOOOOOOOOOO! .......... Gratulation! Aber weil er einfach Charisma hat......... eine Noch-2!"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Amurebkuwrote on 25.02.2008:[6.0] "Er ist eine Legende, ohne Frage. Aber er konnte mich niemals in seinen Bann ziehen. War nie ein Fan von Ric Flair. Trotzdem ist er ein guter Mann der viel im Wrestling-Business bewegt hat."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: FifaFrancescowrote on 21.02.2008:[10.0] "Zu Ric Flair muss man ja wohl nicht viel sagen, oder?"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Staniwrote on 21.02.2008:[8.0] "Zusammen mit Sting der Mann der WCW. Leider schaffte er nicht den Absprung vor ca. 10 Jahren. Hatte ab der Zeit in der WCW kein vernünftiges Gimmick mehr udn auch in der WWE wusste er nur noch kurzzeitig bei der Evolution zu überzeugen. Leider hat er den Karriereabsprung einfach nicht geschafft und zerstört sich somit seinen Ruf"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Showstopperwrote on 10.02.2008:[10.0] "Wenn man Flair bewertet, sollte man sich nicht auf seine letzten Jahre beschränken, sondern seine ganze Karriere würdigen. Er war der Top Draw der NWA in den 80ern, er war neben Sting der Name in der WCW, und selbst jetzt in der WWE hat sein Name noch Zugwirkung. Außerhalb der McMahonschen Comicwelt dürfte er einer der bekanntesten Namen sein, wenn man nach Wrestlern fragt. Anders ausgedrückt: der Mann ist eine Legende und hat die 10 Punkte mehr als verdient."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Meanbeastwrote on 26.01.2008:[8.0] "War maßgeblich beteiligt an dem Durchbruch des Wrestlings zu dem Status, den das Wrestling heute einnimmt! Meiner Meinung nach einer der wenigen, die auch überzeugend den World Champion mimten! Ne 2 nur deshalb, weil er sich durch sein schlechtes Booking in der WCW Ende der 80er, Anfang der 90er keine wirklichen Freunde machte und weil er bei der kleinsten Berührung anfängt zu Bluten! ;D"
Rating: 8.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DarkWarrior86wrote on 24.01.2008:[6.0] "Konnte mich noch nie wirklich mit Ric Flair anfreunden, trotzalledem hat er viel fürs Wrestlingbuiz getan und kommt Wrestletechnisch lange nicht so lächerlich rüber wie ein Hogan.. Andererseits sollte er so langsam aber sicher seinen Mantel (bzw. Bademantel) nehmen und in Richtung Sonnenuntergang schlendern :-)"
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: FreezyWwrote on 16.01.2008:[4.0] "ich kann bis heute nicht verstehen was man an ihm toll finden kann. ich hab maatches von ihm frpher gesehen und muss zugeben das er auch damals nie mehr als ein durchschnittswrestler war aber heute ist er einfach nur noch lächerlich. Ein Opa mit Hänge-Brustmuskeln und Schwabelwampe der durch den Ring hinkt und einen chop nach dem anderen austeilt. Wegen einigermassen guter Promos gibts von mir noch ne Vier. Auf das er nach Wrestlemania gehen mag..."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Yetiwrote on 05.01.2008:[8.0] "Tja, ich kann wohl nicht anders als nach seinen zuletzt gezeigten Leistungen wieder acht Punkte zu vergeben."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: AnFuwrote on 05.01.2008:[10.0] "Der Nature Boy, eine echte Legende, 16 World Titles, auf seiner Abschlusstournee, in einem der besten Stable des Wrestlinggeschäfts gewesen, drei *****-Matches gegen Ricky Steamboat, ich kann nur volle Punktzahl geben!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Brahma Bullwrote on 03.01.2008:[10.0] "Der nächste Nature Boy und 20malige Champ zieht ebenfalls die 1! Absoluter Superstar, es wird aber langsam Zeit, dass er seine erfolgreiche und lange Karriere beendet-hoffentlich mit einem gebührenden Abschied bei WM 24!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Cactus Danielwrote on 02.01.2008:[10.0] "Ein hervorragender Wrestler. Selbst mit 58 Jahren ist der den meisten Wrestlern im WWE Roster im Hinblick auf Wrestling-Skills und Mic-Work um längen überlegen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: real americanwrote on 02.01.2008:[10.0] "Er ist wohl tatsächlich der größte Wrestler aller Zeiten. Im Ring und am Mic einfach nur un glaublich, dazu massenhaft Charisma und auch hinter den Kulissen absolut respektiert und geachtet. Heute natürlich nicht mehr ganz so stark wie früher aber er hat einen würdigen Abschied vollkommen verdient, inklusive HoF Aufnahme."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: jimpanse1980wrote on 01.01.2008:[10.0] "Wenn ich mir hier einige Kommentare ansehe, dann dürften Alle, die noch mit 50 oder älter im Ring stehen keine 10 P mehr bekommen, da sie ja mit dem Alter (verständlicher Weise) schwächere Leistungen zeigen. Soll man aber deswegen Männern wie Flair nicht die volle Punktzahl geben? NEIN, denn ist eine Legende und hat diesem Sport einfach so viel gegeben, dass hier nur die Bestnote stehen darf."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Wuschl 85wrote on 15.12.2007:[4.0] "Ohne Zweifel hat dieser Mann viel erreicht, was allein seine 16 WorldTitle zeigen, und er hat auch zweifelsohne einen großen Anteil daran gehabt ( die Betonung liegt auf "gehabt")wo das Wrestling heute steht. Seinen Absprung scheint er dennoch nicht zu schaffen. Denn ein so alter Herr im Ring wirkt einfach nur unglaubwürdig, vor allem dann wenn er wirklich nocheinmal einen großen Titel gewinnen sollte. Zudem zeigt er ähnlich wie der Hulkster immer die gleichen Aktionen ( Chops, Chops und noch mehr Chops). Ohne Frage hat dieser Wrestler Ausstrahlung wie fast kein Zweiter, aber er lebt halt nur noch von vergangenen Tagen. Mir reicht es halt nicht das ein Mann immer wieder das selbe Match durchzieht (wenn auch solide)."
Rating: 4.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Reno Cortavillawrote on 09.12.2007:[10.0] "Meiner Meinung nach, der beste Wrestler aller Zeiten!  WOOOOOOOOOOOOOOOOOO! :-)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Locutuswrote on 08.12.2007:[10.0] "Ric Flair ist der größte Wrestler aller Zeiten, ohne Zweifel. Neben seinen großen Verdiensten in der Vergangenheit war es sich nie zu schade, sich für irgendjemanden hinzulegen und nimmt noch mit Mitte 50 unglaubliche Bumps wie einen Back Suplex von einer Leiter. Wenn irgendjemand die 1 verdient hat, dann er. Er wir dem gesamten Business fehlen wenn er aufhört."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: mugel 187wrote on 28.11.2007:[8.0] "Einer der besten! Gefiel MIR aber besser in wCw! Zur eins fehlt aber noch Abwechslung!  WOOOOOOOOOOOOOO"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Pulpulwrote on 28.11.2007:[10.0] "Verdient den Begriff Legende einfach. Egal ob heute, vor 5, 10 oder 15 Jahren... Wrestling OHNE Ric Flair einfach unvorstellbar. Unfassbar unterhaltsam, egal in welcher Form und für so viele Klassiker verantwortlich. Einfach eine Bereicherung in der großen Welt des Wrestlings."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rock is Jerichowrote on 27.11.2007:[10.0] "The Dirtiest Player in the Game! Einer der Besten aller Zeiten, nicht mein absoluter Fave, aber die 1 hat er sich auf jeden Fall verdient."
Rating: 10.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Davewrote on 26.11.2007:[8.0] "Top Wrestler der göttlich in der WCW war ... Hätte jedoch einfach schon lange aufhören sollen und eine Talentscout Tätigkeit oder ähnliches machen sollen. Mittlererweile ist es ne Schande ihn hinterseinen Hängebrüsten hinterher kriechen zu sehn."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Undertaker13wrote on 22.11.2007:[10.0] "Die Legende schlecht hin. Ich hoffe er bekommt noch einen richtig großen Abschiedspush bis WrestleMania 24."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: bastinhowrote on 20.11.2007:[10.0] "Eine Legende des Wrestlings. Ist über Jahrzehnte immer an der Spitze der Promotion gestanden, in der er tätig war und ist nicht um sonst 20-facher World Champion. Er hat natürlich auf Grund seines Alters einiges an In-Ring-Skills eingebüßt, aber mit dem richtigen Gegner ist er immer noch ein Garant für ein gutes Match. Und in Sachen Mic-Work kann ihm auch heute noch keiner das Wasser reichen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Frommeltwrote on 20.11.2007:[8.0] "Schade das er am Ende seiner Karriere nicht öfter zu sehen ist. Woooooo"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: DrBreswrote on 12.11.2007:[8.0] "Sicherlich eine Legende, aber es wird Zeit für den letzten großen Run - damit Flair abtreten kann, wenn es am schönsten wird... und dann als Heel-Manager auftrumpfen kann, wenn er sich zu schade ist, dem Wrestling den Rücken zu kehren..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Scotty 2 Hottywrote on 12.11.2007:[10.0] "Natürlich gibt es für den Nature Boy volle 10 Punkte. Seine Karriere ist unbeschreiblich, wobei er sich auch im höheren Alter für nichts zu Schade ist."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Figure4wrote on 28.10.2007:[10.0] "Ric Flair ist einzigartig. Mit seinen großartigen Matches, insbesondere früher, hat er mich besser unterhalten als alle anderen Wrestler der Vergangenheit und Gegenwart. Forever the man."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Benny110106wrote on 28.10.2007:[10.0] "Einfach der Nature Boy. Wirkt als Wrestler manchmal sehr langweilig, aber wer über 30 jahre dabei ist auf hohen Level verdient die 1."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: King of Queenswrote on 27.10.2007:[10.0] "Um diesen Mann zu beschreiben, braucht es unzählige Superlative. Seit Jahrzehnten sorgt er für gute Stimmung, volle Arenen und tolle Matches, die noch immer auf hohem Niveau spielen. Und auch heute noch können manche junge Wrestler von den heutigen Qualitäten des "Nature Boy" im Ring und am Mic nur träumen. Flair kann noch immer in den brutalsten Matches einstecken, austeilen und einfach nur gut aussehen, wie er bei WrestleMania22 und im TLC-Match mit Edge anfang 2006 eindrucksvoll beweisen konnte. Vor diesem Mann muss man einfach seinen Hut ziehen für dieses einmalige Lebenswerk. Und auch wenn er bei WM24 aufhören wird mit dem, was er am besten konnte, dem Wrestling, so bleibt er auf Ewigkeit der wahrscheinlich größte Wrestler aller Zeiten. WHOOOOOOO!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Rated-R-Fanwrote on 21.10.2007:[8.0] "Früher einfach klasse! Doch er hat mittlerweile etwas von seinem Glanz verloren."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: HBK-Xwrote on 17.10.2007:[10.0] "Wooooooooooooooooooooooooooooooooooooooooooooooooooooo! Der beste Wrestler aller Zeiten! Ric Flair based on Ric Flair being Ric Flair! Der iss so drauf, er ist DER MANN, und mehr ist dazu nicht zu sagen!  Doch eins: Er muss zum 17. mal World Champion werden!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CM Dannywrote on 15.10.2007:[10.0] "Das Wort Legende reicht nicht aus um Flair zu beschreiben. Im Gegensatz zu Luger ist Flair wirklich das "Total Package". Im Ring auch im hohen Alter noch gut dabei, am Mikro unverwechselbar und charismatisch bis in die Haarspitzen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Hunter2007wrote on 04.10.2007:[10.0] "In Vergangenheit sowie in Gegenwart immer mit bester Qualität bei der Sache und am Mic zeigt er auch sonderbare Leistungen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Jerichoholicwrote on 02.10.2007:[10.0] "Die Wrestlinglegende schlechthin - tut sich selbst einen großen Gefallen wenn er seine Schuhe im kommenden Jahr an den Nagel hängt, wenngleich er noch immer zu starken Leistungen im Stande ist. Die jungen Worker dürfen sich gerne eine Scheibe davon abschneiden!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: dariawrote on 30.09.2007:[8.0] "eine Legende, am Mic ungeschlagen, allerdings finde ihn als Wrestler nicht so toll, deswegen auch nur gut"
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Medeawrote on 29.09.2007:[4.0] "Große Anerkennung für seine früheren Erfolge und Leistungen, aber ich finde, dass es Zeit wird zu gehen, wenn die Kondition und die Auswahl an Moves nicht mehr ausreichen und man in seinem Stil einfach nicht mehr hineinpaßt. Da ist Wrestling wie jedes andere Business, es unterliegt Veränderungen und eine neue Generation rückt nach. Auch ein Ric Flair bleibt davon nicht verschont."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Nick Toxicwrote on 24.09.2007:[8.0] "Sorry, aber hat man ein Flair-Match gesehen kennt man echt alle, weil er wirklich immer das gleiche Programm abspult. Aber, bevor man mich in der Luft zerfetzt, Flair hat Charisma ( viel davon ) und kann auch wirklich die letzte Wrestlinggurke gut im Ring aussehen lassen. Das macht einen guten Wrestler auch aus und deswegen bekommt der gute Mann saubere 8 Punkte xD"
Rating: 8.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: The Mountiewrote on 17.09.2007:[10.0] "Jede Wrestling Hall of Fame, die was auf sich hält, muss für Flair einen eigenen Flügel einrichten. Weltklasse im Ring, sprudelnd vor Charisma, top am Mikro und füllt die Hallen - wer kann all das gleichzeitig sonst von sich behaupten? Er erfreut den Puristen ebenso wie den Showfan, er ist der Frank Sinatra des Wrestling und vielleicht wirklich der Größte aller Zeiten."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Bullit69wrote on 16.09.2007:[10.0] "Der Nature Boy! Für mich der Beste aller Zeiten und wird hoffentlich einen grandiosen Abschied feiern nächstes Jahr bei WM24 oder vielleicht hängt er noch ein Jahr ran bei Flair weiß man nie! Jedenfalls DIE Legende des Wrestling! WOOOOOOOOOOOOO"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Zombrerowrote on 04.09.2007:[4.0] "Sicher, der war mal echt gut und hat auch heute noch Unterhaltungswert und echte Story- Qualitäten. Doch beim wrestlen kann ich ihm die letzten zehn Jahre fast nicht mehr zusehen. Schwerfällig, keine Ausdauer mehr. Man sollte ihm noch einen letzten großen Kampf geben. Vielleicht einen Tag-Titel- Gewinn mit Batista, oder so."
Rating: 4.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: sebigentnerwrote on 02.09.2007:[6.0] "Ansehenswerte Matches, auch wenn er an sich mittlerweile "ausgelutscht" rüberkommt. Hätte ihn gerne Backstage oder als GM."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: JesseBodywrote on 28.08.2007:[8.0] "Hat mittlerweile den gleichen Maskenbildner wie Sylvester Stallone. Gruselig. Seine "Ich fliege gestreckt auf die Fresse" und "Ich mach einen Kusselkopp über den Ringpfosten" fand ich immer daneben. Ansonsten aber sehr viel Charisma. Wer über Jahrzehnte! an der Spitze des Wrestlings steht, hat schon mal viel Respekt verdient. Ich denke, der hat in seiner Karriere nichts ausgelassen..."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: CSHincwrote on 18.08.2007:[10.0] "der beste der größte und der bedeutenste wrestler aller zeiten"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: jupp365wrote on 18.08.2007:[10.0] "In meiner frühen Zeit als Fan habe ich Ric Flair gehasst. Er hat immer einen spitzen Heel abgegeben. Heute empfinde ich nur noch Respekt für ihn! Eine wahre Ikone, eine wahre Legende!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: shannonmoorewrote on 17.08.2007:[10.0] "ich finde irgenwan hat er den perfekten zeitpunkt verpasst aufzuhören so um das jahr 2002 herum. Auch wenn ich ihn nicht mag respektiere ich seine Leistungen und sein unendliches Charisma."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Liebeskugelwrote on 13.08.2007:[6.0] "WAR früher ein extrem guter Wrestler, der leider nicht aufhören kann. Flair sollte lieber abtreten, bevor er völlig unter die Räder kommt oder sich gar sehr schlimm verletzt."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ecw foreverwrote on 04.08.2007:[10.0] "Er war mal ein genialer Wrestler und er faszinierte durch sein Charma. Doch heutzutage ist er einfach in die Jahre gekommen. Er sollte zu sich selber sagen. "STOP RIC" jetzt ist genug du bist keine Mid Carder Legende. echt schade das WWE zu dumm ist um was mit ihm anzufangen. E iner der allergrössten!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: RhinoRaineswrote on 03.08.2007:[10.0] "Er ist eine Legende! Trotz seines Alters, hat er mehr Talent im kleinen Finger als viele andere WWE-"Superstars" im ganzen Körper."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: HHH-Stephwrote on 31.07.2007:[10.0] "Riesen Legende des Wrestlings! Überragendes Ringkönnen und eine gewatlige Portion Charisma zeichnen den Nature Boy aus!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: H-Scorpiowrote on 19.07.2007:[8.0] "Ich kann nicht sagen, dass er mir immer sonderlich sympathisch war. Erst gegen Ende seiner WCW-Zeit bei den "glorreichen Sieben" fand ich etwas Gefallen an ihm. Aber seine Ringpräsenz war zweifelsohne immer beeindruckend und sogar sehr unterhaltsam. Er ist eine absolute Wrestling-Legende."
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Azraelwrote on 13.07.2007:[4.0] "Eine Wrestlinglegende, die leider den richtigen Zeitpunkt in den Ruhestand zu gehen verpasst hat. Sobald er im Ruhestand ist, kriegt er von mir die 10."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mr Lovewrote on 03.07.2007:[8.0] "Ric Flair ist sicher einer der größten Wrestler, er hat sehr viel Ausstrahlung und Charisma, sein Micwork ist gut, die Matches verkauft er noch teilweiße gut. Früher hatte er die immer super verkauft. Im Ring ist er nicht mehr so gut wie früher, was ohne Zweifel an seinem hohem Alter liegt, er ist auch einer, der nicht weiß wann genug ist, er soll noch einen Vertrag bei der WWE haben bis er 60 Jahre alt ist, ob er es so lange noch schafft? Er bekommt nur 8 Punkte von mir, weil er nicht weiß, wann genug ist"
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Svaniwrote on 02.07.2007:[10.0] "Ach ja, der Ric. Ich mag ihn, auch wenn seine Matches nicht mehr das sind, was man gerne sehen würde. Für sein Alter ist der gute Nature Boy aber noch ziemlich agil und daher gibt's von mir die Note 1. Wooooooooooooooooooo!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Foerstawrote on 24.06.2007:[8.0] "Jetzt zu alt und wird seine Karriere baldig beenden müssen. Jedoch ist er aufgrund seiner Vergangenheit und der Tatsache, dass er immer noch wrestlelt ist schon ganz groß. Alles in Einem ein cooler Typ."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Elvis33wrote on 24.06.2007:[6.0] "Sollte sich für den aktuellen WWE-Kram einfach nicht mehr opfern..."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: kaupi 1909wrote on 24.06.2007:[10.0] "Wenn jemand diesen Satz - "Leidenschaft und Hingabe zum Sport sind genauso wichtig wie der Sport" - mit Leib und Seele verkörpert, dann ist es der Nature Boy. The greatest of all time - Whooo. No doubt about it, whoooo!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Chris Cagewrote on 24.06.2007:[8.0] "Ganz klar eine der größten Legenden überhaupt, mit seinem 16-fachen gewinn der World Championship hat er sich in der Geschichte des Wrestlings verewigt. Doch seine Zeit ist langsam abgelaufen und er sollte sich lieber zur Ruhe setzen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: WCWlerwrote on 24.06.2007:[10.0] "Flair ist einfach der größte. Eine ganz große Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: BigVanVaderwrote on 24.06.2007:[10.0] "To be "The Man", you gotta beat the Man! Wooooooooo"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: timbo7111wrote on 24.06.2007:[10.0] "WHOOOOOOO! Ric Flair ist eine lebende Legende und hat mit den Besten der Besten absolute Topmatches abgeliefert. Auch mit fast 60 Jahren ist er immer noch over the top! Klarere 10 Punkte gibt es nicht! IMO der größte Wrestler aller Zeiten!"
Rating: 10.0
Sentiment: 0.4588541666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: ShakDragoonwrote on 24.06.2007:[8.0] "Sicher ein herausragender Wrestler, der viel fürs Biz getan hat, aber irgendwie konnte er mich nie richtig fesseln. Naja und Mittlerweile ist er auch arg in die Jahre gekommen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Garvinwrote on 24.06.2007:[10.0] "Hat das Wrestling geprägt. War genauso wichtig für das Business wie Hulk Hogan. Er bringt einfach alles mit, was ein guter Wrestler braucht. Und trotz seines Alters immer noch in der Lage Matches interessant zu gestalten und immer noch so over. WHOOOOOO!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Blade Bourdeauxwrote on 24.06.2007:[10.0] "Was habe ich ihn 1992 nicht leiden können, der perfekte Heel eben sowohl im Ring als auch am Mic."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Dangerouswrote on 24.06.2007:[10.0] "Nur ein "Wort": WOOOOOOOOO! Sollte aber langsam mal ein Ende finden, bevor er seine eigene Legende zerstört."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Mediwrote on 24.06.2007:[8.0] "Woooooooo........ nicht der beste Techniker oder Worker insgesamt; doch wenn man mal sieht, wie fit dieser Mann in seinem Alter noch ist muss man schon seinen Hut ziehen."
Rating: 8.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: affenmannwrote on 24.06.2007:[4.0] "Sagt, was ihr wollt: Flair ist für mich der überschätzteste Wrestler aller Zeiten."
Rating: 4.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: joerillawrote on 24.06.2007:[10.0] "Charisma, Skills, Micwork, Ausstrahlung - einfach nur grandios. A true legend."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Die Ikone des Wrestlings schlechthin. Und meiner Meinung nach auch über Hulk Hogan einzuordnen, da er sich für dutzende Wrestler hingelegt hat und diese somit over brachte. Außerdem Ist er trotz seines hohen Alters noch in der Lage starke Matches zu bestreiten(Edge vs. Flair, HHH vs. Flair, Foley vs. Flair, um mal nur die letzten zwei Jahre zu beleuchten)"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Cpt Dave Charismawrote on 24.06.2007:[8.0] "Ric Flair war absolute Weltklasse. Aber er sollte doch wissen, wann es genug ist. Deswegen nur ne 2 (aber mit imaginären +)"
Rating: 8.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: suntan superstarwrote on 24.06.2007:[10.0] "der beste wrestler aller zeiten. er vereinte alle fähigkeiten miteinander die man für dieses business braucht: charisma, ringskills und ringpsychologie. nuff said"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Sandman16wrote on 24.06.2007:[10.0] "Er bringt alles mit, was man beim Wrestling braucht. Er ist ein guter Wrestler, hat viel Charisma, super Mic-Work, geniales Gimmick etc. Bei ihm stimmt einfach alles. Einer der besten und größten Wrestler aller Zeiten."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Anti-Championwrote on 24.06.2007:[10.0] "Ein Mann den ich jetzt schon vermisse, Flair ist für sein Alter immer noch solide im Ring. Saugeil am Mikro und eine Charismabombe wie er im Buche steht. 10 Punkte für eine lebende Legende."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=1091&gimmick=Ric+Flair
Comment: Giant2wrote on 24.06.2007:[10.0] "Absolut eine lebende Legende, aber so langsam sollte er sich aus dem Ring zurückziehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: DecentWrestlingwrote on 31.01.2025:[7.0] "Gotta be honest most of her matches are quite disappointing. They get insane hype and never live up to them. The last 5-6 matches i saw from her all left me with the feeling of "that's it? " and that's not what you want. Her storytelling and selling is inconsistent. Lots of people will give 10 cause she failed in WWE and they want to stick it to them (Like WWE cares lol), or because she does unprotected headbutts which seems to make people happy for some reason. (why potential brain injuries are fun to people, idk)."
Rating: 7.0
Sentiment: 0.06931818181818183
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Thenwoagedbadlywrote on 29.01.2025:[10.0] "The thing about Sareee is she's never been bad per se. Even as a rookie she was completely proficient and she's just gotten better and better and better to the point now where she's clearly one of the best wrestlers alive. Also, I get a special kind of enjoyment out of Sareee's career, because for me, it's like if Sakie Hasegawa had had a career twice as long."
Rating: 10.0
Sentiment: 0.27337662337662344
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: venuswrote on 25.01.2025:[10.0] "Easily the best women's wrestler in the world. Ever since she departed WWE, I find it very hard to find a mediocre let alone a bad match since. Nuts that she's an under-30 going this hard in her career. Best wishes to her"
Rating: 10.0
Sentiment: 0.08035714285714289
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: ChocoboSagewrote on 23.01.2025:[10.0] "Had to reconsider my rating, after the past year or so of her freelance run. Along with her own SareeeISM shows, she's up there with the greats now. Easily the best womens wrestler around right now, have to give her a 10."
Rating: 10.0
Sentiment: 0.41380952380952374
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: BigRossManWPwrote on 23.01.2025:[10.0] "The absolute best in the world at the time of me writing this. Sareee was the best joshi wrestler on the indies prior to her WWE move and picked up exactly where she left off upon returning. Everything she does feels must-see."
Rating: 10.0
Sentiment: 0.4083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: LIGERISMwrote on 21.01.2025:[10.0] "Sareee is the best wrestler in the world and has been since atleast 2019. Now that Meiko Satomura is retiring, Sareee should and will take the stop as the Final Boss of women pro wrestling in Japan."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: KnivesBrandowrote on 14.01.2025:[10.0] "Sareee est tout simplement la Ace de tout le Joshi . Elle ne manque jamais les grands rendez-vous, elle est intouchable depuis son départ dès États-Unis et son retour au Japon . Les show qu'elle organise promettes à chaque fois un Main Event mémorable , Sareee est la meilleure dans le ring mais également dans le booking de show ."
Rating: 10.0
Sentiment: 0.13333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: NiagraDriverwrote on 29.12.2024:[10.0] "The Michael Jordan of Joshi right now. She's like a female Bryan Danielson, nearly perfect at everything she does."
Rating: 10.0
Sentiment: 0.42857142857142855
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: coleeeeeeewrote on 17.11.2024:[10.0] "One of IF NOT THE BEST women's wrestlers in the world. She has had one hell of an upgrade she's had an I can't wait what she has in store for next year."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: ConnorLynxwrote on 15.11.2024:[10.0] "Man, Sareee has really been on a roll this year, hasn't she? I remember wondering what the hell had happened to Sarray around the time she left NXT UK, and now I'm sat wondering why WWE never thought there was any potential with her. She's been delivering some of the best work of her entire career this year, her matches with Bozilla, Mayu Iwatani, Big Hash and VENY being some of her best performances. She can only go up from her, and I'm looking forward to seeing her cement herself as one of the best wrestlers in the world."
Rating: 10.0
Sentiment: 0.35555555555555557
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Dweeeabwrote on 10.11.2024:[10.0] "The best womens wrestler in the world right now imo. She knows how to fight from underneath and mount amazing babyface comebacks against bigger opponents and she can have absolute hard hitting bangers with others. One of my favorites in the whole world and she keeps getting better."
Rating: 10.0
Sentiment: 0.3117559523809524
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Wrestlingfan0808wrote on 04.11.2024:[10.0] "The best womens wrestler in the world. When I found out she was in Nxt at point playing a fuckin school girl character I was so pissed cause how the hell do you fumble saree? ! ? ! ? ! ? Seeing what shes doing right now as a freelancer is so sick. The best for a reason"
Rating: 10.0
Sentiment: 0.3928571428571428
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Kb2295wrote on 15.10.2024:[10.0] "Shame it didn't work out for her in WWE, came in at an awful time with the 2.0 experiment and was on the bad side of some writing. Glad I kept up with her career since though, she's had a hell of a year & has firmly cemented herself as a top 3 womens wrestler in the world right now with Mayu & Io"
Rating: 10.0
Sentiment: -0.10238095238095234
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: edgyfrwrote on 11.10.2024:[10.0] "She is 28 years old, get that in your head. The sky is the limit for her, one of the most talented performances (men or female) i have ever seen. Wrestling perfection"
Rating: 10.0
Sentiment: 0.32499999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Galmondiwrote on 21.09.2024:[9.0] "Truly a shame what happened to her in WWE, hope to see her back one day. Fantastic wrestler, one hell of a year she's having."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Dodoremiwrote on 05.09.2024:[10.0] "La meilleure catcheuse actuelle tout simplement. Depuis son retour au Japon, elle enchaine les excellents combats. Elle est parfaite: technique, charisme, brutalité! Je l'adore"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: thunderrockwrote on 03.09.2024:[10.0] "A very strong candidate for womens wrestler of the year and possibly one of the best Joshi wrestlers of all time. I think its honestly between Sareee, Iyo and Mayu Iwatani. And Mayu vs Sareee was just amazing. Its honestly disgraceful how she was treated and had her character reduced to a Japanese schoolgirl in NXT, and she had that bad match with Mandy that wed all like to forget."
Rating: 10.0
Sentiment: 0.33291666666666675
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Itsover9000manwrote on 26.08.2024:[9.0] "Fucking great wrestler, she is very smooth in ring, her style is very stiff with her Suplex and dropkick of death."
Rating: 9.0
Sentiment: 0.34714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Joe907wrote on 18.08.2024:[10.0] "Sareee is one of the top joshi wrestlers. Her matches are amazing to watch. Shes a really good striker with technical ability. Very good moveset. Her nickname "Sun God" suits her very good."
Rating: 10.0
Sentiment: 0.6033333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Fangoonwrote on 17.07.2024:[10.0] "She really took the NXT fumble and became one of the best wrestlers in the world currently, an absolute workhorse and a pleasure to watch perform."
Rating: 10.0
Sentiment: 0.4666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Chris777wrote on 14.06.2024:[9.0] "a below average stature and look compensated with one of the most passionate, stiff, shonen/odo wrestling style of her own (Sareeism, question mark? ) that it doesn't even matter, really carrying the freelance scene on her shoulder in these couple years. Unfortunately she just wouldn't able to work anything meaningful out character wise but really that it's okayit's that outgoing unspoken charisma that is already enough"
Rating: 9.0
Sentiment: 0.19047619047619047
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: StardomIconwrote on 21.05.2024:[9.0] "The WWE had a good run of completely dropping the ball on amazing wrestlers in the 90s with mind numbingly stupid gimmicks. Whether it be dentists, fitness fanatics, or teachers, the promotion had a knack for wasting talent. WWE must have been feeling with nostalgic with Sareee and decided to drop a magical schoolgirl gimmick on the best worker in their women's division. As it followed, Sareee left NXT and is now working freelance back in Japan. Sareee has an awesome main event worthy look, at least in joshi promotions. Her in-ring ability is up there with just about any women's division worker on the planet. She has solid strikes and arguably the best looking drop kick in wrestling. Sareee also boasts suplexes that would make Taz proud as she isn't averse to dropping opponents on their heads. Sareee's recent match against Mayu Iwatani at All Star Grand Queendom as well as her recent tag match against Giulia and Utami in the main event of Marigold Fields Forever are great examples of her in-ring skill. If you watch them, you'll be left scratching your head wondering how in the world did NXT let such an amazing talent go to waste."
Rating: 9.0
Sentiment: 0.2586666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: HC7wrote on 08.03.2024:[9.0] "My comment in February 2023: (In March 2021 I rated her an 8, I am going to keep it at an 8 because as Sareee she is very good. In WWE so far she has not hit at all and has barely done anything since she moved to Florida. Unlike some other Joshis that WWE has brought in like Io Shirai, KAIRI and Kana/Asuka, Sareee didnt really have as much exposure to non hardcore Japanese fans. Kairi, Shirai and Kana had some popularity amongst some hardcore fans. Shirai and Kana had multiple matches in North America prior to WWE and Shirai and Kairi were coming from the hottest joshi promotion which boosted them. Sareee didnt really have this and a lot of non Japanese wrestling fans wouldnt have had much reason to care for her in WWE. On top of this once she finally got to wrestle for WWE they dropped the ball with her fast and the anime schoolgirl thing really hurt her. Unfortunately I think shell be viewed by people who know of her outside of WWE in the same way that KUSHIDA and Hideo Itami/KENTAs wwe runs are viewed. Hopefully this changes.) A little more than a month after this Sareee has departed from WWE, I hope that she makes a splash wherever she ends up and people can see her talent that never got to be fully showcased in NXT!"
Rating: 9.0
Sentiment: 0.08284090909090908
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: RusherBryan29wrote on 13.02.2024:[10.0] "One of the best women wrestler in the world. And one of my favorites currently. Amazing worker, always having great matches. She has amazing striking offense. Also she is a big match specialist."
Rating: 10.0
Sentiment: 0.5833333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Kungwrote on 11.11.2023:[10.0] "Ever since she came back to Japan from her underwhelming WWE run, Sareee has lowkey been the best women's wrestler not on a major roster (WWE, AEW, Stardom, etc.). She's got a gravitas to her that I don't see in many big match wrestlers today."
Rating: 10.0
Sentiment: 0.3125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: MegaSPSwrote on 10.11.2023:[10.0] "sareee is one of the best wrestlers out there currently. she had an unfortunately lackluster wwe run which i was nervous would slow her down, but i couldnt be any more incorrect. her return to japan have been some of the best matches of the year and no one is more consistent than her. in 2023, she is tied with rika tatsumi as my wrestler of the year. the sun goddess is one to always seek out"
Rating: 10.0
Sentiment: 0.25493827160493826
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Wrestling Foreverwrote on 23.10.2023:[10.0] "Als Sareee zu WWE kam war ich so voll Vorfreude und dachte auch hier kommt die Nächste die es wie Asuka schaffen kann. Teilweise zeigte sie bei NXT ja ihre Klasse aber es klappte einfach nicht auch dieser Gimmickwechsel ne das war nix. Sicher hat sie dadurch Erfahrung gesammelt aber insgesamt war es einfach ein Flop. Wie gut oder wie großartig sie einfach ist zeigt sie wieder seit ihre Rückkehr nach Japan."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Pertinaxwrote on 08.09.2023:[10.0] "An incredible worker who is being absolutely wasted in NXT 2.0 right now. She came back from being stuck in Japan due to covid to a bunch of hype but that also coincided with big changes coming to NXT. She was basically meandering in the dying days of the black and gold NXT and I was hopeful when she was repackaged a little bit in 2.0 with the Sailor Moon-esque gimmick with the necklace transforming her. After a strong start they've basically been jobbing her out which is a big shame. She's easily the best female wrestler not named Io Shirai on that roster. EDIT: Had to bump this up to 10 because she's killing it in Japan since she left WWE."
Rating: 10.0
Sentiment: 0.169515306122449
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: tommyyy1714wrote on 28.02.2023:[10.0] "It sucks to see the bad ratings on here purely from her WWE run because her stuff in Japan is on another level. From the small amount I've seen, Sareee never steps off the intensity and always brings it in every single match. Her striking is insane, whether its forearms, slaps or headbutts it all looks brutal. Her uranage finisher is awesome too and all of her big main event matches haven't dropped below "really great" for me. Sad that WWE used weird stereotypes for her character so fuck them but Sareee fucking rules."
Rating: 10.0
Sentiment: -0.15721726190476187
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: VitorRomeu100wrote on 27.11.2022:[5.0] "I just don't see what WWE saw in her. Because WWE brought her. Thought she was going to be an Asuka/ Kairi or Io and she wasn't even close to being a Gail Kim. Very boring and with a ridiculous and super dull gimmick."
Rating: 5.0
Sentiment: -0.3229166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: aoPSIwrote on 22.09.2022:[5.0] "Yeah... I don't know how big Sarray was back in Japan, but in NXT she just didn't make it. Some boring little matches, without fun, without emotion, doesn't even look like a Japanese wrestler."
Rating: 5.0
Sentiment: -0.14791666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: CTFBwrote on 05.07.2022:[9.0] "Very solid worker throughout sadly sapped with a generic, unimpressive gimmick. The truth about Sarray is that she came into the company at the wrong time. If she was able to get into NXT around 2018 or so she would've excelled as much as the other Joshi's have, but it seems that the timing made it unlikely for her to properly shine."
Rating: 9.0
Sentiment: -0.10277777777777779
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: HopelessHelenawrote on 13.05.2022:[7.0] "She's really fun inside the squared circle but lacks a little in charisma and personality. I that she finally has a gimmick but she's still a little bland."
Rating: 7.0
Sentiment: -0.04833333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Ma Stump Pullerwrote on 16.03.2022:[6.0] "From what I've seen she's a pretty middle of the road Joshi act: competent enough to have relatively good matches with talent (namely people like Iroha, who could honestly have great matches with virtually anyone so it's not THAT much of a feat all in all) better than her but usually can't do the same herself. She's most definitely a project worth working on given her talent, but her main weaknesses are charisma and character: she doesn't really have any to speak of at all. Unlike other Japan exports like Io, Asuka and Kairi, she hasn't had the immense experience and time to really put together anything interesting either in terms of persona, so it's definitely a unique situation that is seemingly being worked on in NXT. Either or not her current gimmick is able to survive intact or be forced to evolve is another matter, but as of now, she's a good wrestler that needs to learn the intangibles beyond just wrestling competently. Has promise, but certainly a way to go before deserving of the scores she's getting at the moment."
Rating: 6.0
Sentiment: 0.2725340136054422
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Dy1789wrote on 09.10.2021:[6.0] "Good in the ring, stiff with her offense but cannot speak english and cut promos. She does not have the charisma of an Asuka or Io Shirai to make up for it. I don't see her getting very far in NXT or main roster without serious character development."
Rating: 6.0
Sentiment: 0.07484126984126983
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Damianwrote on 17.07.2021:[4.0] "A Joshi that has nothing to offer from a character standpoint. She has the least menacing look I've ever seen, she can't cut a promo and even though her in-ring skills are supposed to be strong suit she ain't that good in it the ring either."
Rating: 4.0
Sentiment: -0.041666666666666685
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Suzukigunwrote on 14.07.2021:[8.0] "Sareee, now known as Sarray, is really good. She had some great matches at Sendai and also at Diana. Only 25, I hope she gets to excel in NXT."
Rating: 8.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: metagodzillawrote on 07.05.2021:[5.0] "They don't seem to know what to do with her already in NXT. Her work is good but not really standout in anyway."
Rating: 5.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Traum Einhornwrote on 25.04.2021:[6.0] "Sie bewegt sich gut und alles, aber noch nicht auffällig. Wird ihr mehr Zeit geben, sich zu entwickeln, aber die Erfolgsbilanz mit WWE und japanischen Talenten ist nicht gut."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: yzarcniogmiwrote on 19.04.2021:[6.0] "It's easy to see who her influences are, and she'll have to find an identity beyond that if she wants to stand out more."
Rating: 6.0
Sentiment: 0.37777777777777777
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: nWo-Joshi-Guywrote on 14.04.2021:[9.0] "She has always looked really good from what I have seen of her. She is confident has a great look and often looks absolutely vicious/brutal with her strikes, stomps and best of all suplexes; I am looking forward to finally see her in NXT (though I am assuming she will be somewhat toned down? ). Her entrance theme was amazing too; I am hoping WWE will get that singer to record a new one for them (unlikely I know)."
Rating: 9.0
Sentiment: 0.3280808080808081
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Swendivewrote on 14.04.2021:[5.0] "She's good but has no personality... yet. Willing to give her time to develop, after all, she is still very young. Perhaps needs more of an identity in-ring as well that she'll find in time."
Rating: 5.0
Sentiment: 0.395
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: chinomorenowrote on 30.03.2021:[7.0] "Sareee is a good wrestler and that's it, but the bombastic way they tend to sell her is a bit laughable as I think she's a couple of notches below the level of wresltlers like Takumi Iroha, Miyu Yamashita, Arisa Nakajima, etc... also her matches have a certain pattern and lack of structure which makes them somewhat boring for me."
Rating: 7.0
Sentiment: -0.14642857142857144
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: ElPolloLocowrote on 28.10.2020:[6.0] "I don't know... hearing people talk it seems like Sareee is the second coming of Mima Shimoda and Manami Toyota all rolled into one. And it's not like she's bad, far from it, but expectations have been set so insanely high it's easy to get disappointed: you walk in expecting a once in a generation talent (Ric Flair, Shawn Michaels, Hiroshi Tanahashi etc) and you "just" see a good and promising wrestler. Nothing more, nothing less. I have the strong suspicion the WWE didn't sign Sareee because she's a very promising in-ring talent, they have literally more than enough of them, but for her looks and because she's Japanese: if they wanted a ultra-talented japanese wrestler under 30 they could have picked Chihiro Hashimoto but let's be honest. Chicchi is not marketable, Sareee is."
Rating: 6.0
Sentiment: 0.1335294117647059
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: jdt79wrote on 15.05.2019:[9.0] "Sareee is one of the best going today. A guaranteed exciting match. It's unfortunate she's somewhat unknown due to being signed to Diana which is one of the more difficult promotions to follow. Sareee is great."
Rating: 9.0
Sentiment: 0.17187500000000003
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: Mikamaniawrote on 24.03.2019:[10.0] "If being young and talented is a crime, than saree would be considered one of those that would have the key thrown away.  at 22, saree has demonstrated she is not only capable but comfortable against the widest range of opponents from aja kong to command bolshoi. she's already held a world title 7 years in. 7 YEARS AT 22. god knows how the upcoming years will be but if it's anything like now. she will a force to be reckoned with"
Rating: 10.0
Sentiment: 0.2333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=10904&gimmick=Sareee
Comment: paijowrote on 23.03.2015:[8.0] "she is the most toughest young lady in modern era! it's hard to describe this. very unique personallity, trained by legendary Kyoko Inoue and Kaoru Ito make this young lady very stiff moveset as hell, she had a taekwondo, karate background. hope she still do the best. not to compare with anybody in Joshi puroresu but she is a really Hardworker"
Rating: 8.0
Sentiment: 0.30672619047619054
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: kaeleighwrote on 12.10.2024:[4.0] "Er lebt ganz stark von seiner Reputation aus den Neunzigern. Als vorzeige Junior neben Liger, Ultimo und mir Abstrichen Delfin und Samurai. Aber nach dem Osaka Pro split, ging es stetig immer weiter Berg ab. Die unzähligen Plunder matches sind ja lustig das erste oder Zweite mahl, gefühlt passieren diese aber seit 2007 gefüht in jeder Show und es sind immer die gleichen Spots und immer gegen die Brahams. Sasukes Hochzeit ist im großen Spektrum seiner Karriere wirklich nur noch ein kleiner Teil, dass man ihn jetzt immernoch in der Fukumen World League bringen muss ist einfach nur zum kotzen. 4 Punkte sind für seine Hochzeit noch drin."
Rating: 4.0
Sentiment: -0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Zak22wrote on 26.05.2024:[10.0] "One of the best high-flyers ever, any match with Sasuke in was exciting, his match with Liger at the 1st Super J cup is one of the best matches ever wrestled. Legend."
Rating: 10.0
Sentiment: 0.6583333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: All Cops Are Bossmanwrote on 06.01.2024:[10.0] "You could limit your lens of Sasuke to only his NJPW appearances and he'd easily be an all time great, but the man went above and beyond. Michinoku Pro, especially in the 1990s is Sasuke's gift to the world and we're all better for it. While he rose to fame thanks to the spotlight people like Liger shone on him, a lot of his MPro time is spent putting on great shows and matches in front of just hundreds of people in school gyms. He is unable to say no to the most insane match proposals put in front of him / dreamed up, especially later in his career. He's also done death matches with Onita, cross promoted Battlarts events with his pal Yuki Ishikawa, spent a brief but impressive time in CMLL where announcers still recognize the Sasuke special, and innovated The Great Space War where you can watch Ninja Turtles and Ultraman wrestle before the ring gets torn open and something dangerous happens to Sasuke, probably involving a barrel. Sasuke is proof that God is real and he wants us to be happy."
Rating: 10.0
Sentiment: 0.1956190476190476
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Giantfan1980wrote on 07.06.2023:[6.0] "The guy the WWF wanted to make the first light heavyweight champion, but business stuff intervened so Taka Michinoku, the guy who was brought into put Sasuke over, got the belt. Only seen a handful of his matches, but good enough."
Rating: 6.0
Sentiment: 0.27
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Wrestling Foreverwrote on 29.04.2023:[10.0] "Was soll man noch groß erwähnen eine der Japanischen Wrestling Legenden der besonders in den 90er seine Hochphase hatte. Selbst heute noch wrestlet er."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: TheOneAndOnlyCactuswrote on 03.04.2023:[10.0] "Mostly known as the phenomenal aerial worker that wowed audiences, he had plenty of good technical matches too. He could strike with the best of them in his division and make it look like a martial arts fight. He could become a hardcore wrestler too if needed, or even act as a comedy goof. He was simply a joy to see perform, no matter the environment."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: benh2wrote on 13.01.2023:[8.0] "If you're looking for someone who is accomplished in a variety of styles, add Sasuke to the list. Most known as the phenomenal high flyer but also had plenty of good technical matches too. He was a bit too much of a spot monkey at times and some of his bumps were frankly insane but he was absolutely great at doing it. Also managing to keep his own promotion afloat for 30 years is worthy of appreciation."
Rating: 8.0
Sentiment: 0.22641025641025642
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: GriffinXwrote on 06.02.2022:[10.0] "An amazing highflyer at his peak who managed to make a fairly large name for himself even while working for his own smaller Indie promotion."
Rating: 10.0
Sentiment: 0.28285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: mmcoorwrote on 28.09.2021:[9.0] "a great high flying wrestler who was also good on the mat, maybe not as great as liger, ultimo, or hayabusa but he is still one of the best"
Rating: 9.0
Sentiment: 0.692
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: CyberVolteswrote on 30.08.2020:[10.0] "The Great Sasuke is one of a kind. For starters, there's just too much to his skills and career than people usually give him credit for. While Sasuke will probably always be best remembered for his athleticism and flying moves from his time in the 90s', since that's the decade in which his most famous matches took place, it's hard to pinpoint if that's even his strongest suit. Depending on his opponent and the atmosphere of the match, you may get very different sides from The Great Sasuke. Athleticism-based spotfests? Yes, he can do that. Ground-based matwork and submission competitions? Oh, he's more than up to the task. Strike-heavy matches agains opponents with legit martial arts background? He can hold his own pretty nicely. Borderline hardcore matches with dangerous spots? He will take them - and keep on fighting like a superhero. A fun, comedy match with people dressed up as Star Wars characters? For somebody who has a reputation of taking things very seriously and being very short-fused, he will shockingly pull those off as well. A combination of any of those? Sure, why not? So, based on his ability alone, The Great Sasuke should be reknown as a legendary wrestler and one of the best junior heavyweights of all time. That said, what keeps me from rating him 10 points is the other side of the coin: The Great Sasuke may be just too over the top for his own good. Sometimes, the bumps he takes and the way he performs the simplest of the moves are more exaggerated than they need to be (conversely, his Thunder Fire Powerbomb seems pretty tame when compared to most of his regular moves). While that doesn't necessarily take too much from his matches, it just keeps many would-be classics of ever reaching that status, since they just don't flow naturally. Also, there's just too many painful bumps one can take before the audience stops being impressed and just wonders "Why? ". Apparently, Sasuke doesn't really believe in the proverb "less is more". Granted, age and injuries finally made him catch a break, but he will still do something unecessarily risky once a while, just because he can. Nevertheless, Sasuke's resumé is impressive any way you look at it and had he got more exposure instead of remaining mostly working on his long-lasting niche promotion, Michinoku Pro (which is really hard to follow unless you're local or a bootleg collector with a lot of disposable income), he would probably be as adored worldwide as someone like Ultimo Dragon or even Jushin Thunder Liger. EDIT: After some consideration, I've decided to raise his score to 10, as the negatives I've mentioned above are far outweighted by the positives."
Rating: 10.0
Sentiment: 0.2577272727272727
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: InactiveGuruwrote on 31.05.2018:[9.0] "One of the most well known and well respected Japanese wrestlers around. I can honestly say that Sasuke is indeed Great has his name suggests and deserves all the credit he has been given in wrestling. All I am going to say is watch a few Great Sasuke matches to discover the greatness for yourself."
Rating: 9.0
Sentiment: 0.4166666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Chekerwrote on 24.02.2017:[10.0] "I honestly feel like Sasuke is one of the best wrestlers of all time, overall. Excellent wrestler, excellent high flier, pretty cool costumes, willing to take ridiculous bumps even now. As one of the founders of Michinoku Pro, he's helped establish the japanese lucha style and inspire an entire generation that followed in his footsteps."
Rating: 10.0
Sentiment: 0.35638888888888887
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Wrestle fanboywrote on 20.09.2015:[9.0] "This man needs no introduction, he is one of the most fast and agile wrestler in junior heavyweight division and perhaps the greatest junior heavyweight champion in his prime to hold many of championship titles came from Morioka, Iwate, Japan no doubt he is a truly and rightful owner of Michinoku Pro"
Rating: 9.0
Sentiment: 0.54
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Viper99wrote on 02.04.2015:[10.0] "Einer der absoluten Pioniere für die heutigen High-Flyer und das obwohl er ja selbst noch nicht der älteste ist. Er hatte sau starke Matches in den Jahren zwichen 1990 bis 2000 und ist einer meiner absoluten Lieblinge wenn es um NJPW geht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Matzinhowrote on 16.04.2014:[10.0] "44 Jahre alt und so ein Körperbau, dazu die Bereitschaft bis zum heutigen Tage sein abgefahrenes Repertoire zu zeigen. Ich finde wenn Sasuke aufdreht ist er weiterhin eine Augenweide - und er schont seinen Körper ausreichend, indem er seine Auftrittsrate heruntergefahren hat. Eine Legende und einer, der seinem guten Namen bis heute Ehre macht."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: jerseyhoolwrote on 07.12.2011:[9.0] "Leider naht auch für Sasuke die Zeit des Abschieds, aber objektiv gesehen ist bzw war er einer der Besten im Wrestling.... jedoch auch ein absolut Irrer! Diese Dives & Bumps macht doch kein normaler Mensch freiwillig, das war ja zeitweise noch schlimmer als bei Mck Foley. Der Asai Moonsault gegen Jushin Liger DIREKT auf die Absperrung tut schon beim Zusehen weh, "bemerkenswerte Schmerzresistenz" ist da noch schmeichelhaft formuliert! Anyway, er hat das japanische Wrestling entscheidend mitgeprägt, was soll man da noch meckern? 9 Punkte!"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Necronwrote on 06.12.2010:[7.0] "Ein aboluter Pionier der Highflyer-Szene. Leider kann ich zu etwaigen Sprech- oder Schauspieleinlagen nichts sagen..."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Fountain of Misinformationwrote on 23.11.2010:[8.0] "Da er sich im Rahmen seiner Möglichkeiten nachwievor den Arxxx aufreißt, sehe ich mich mit Berücksichtigung seiner damaligen Glanztaten zu dieser Note genötigt. Natürlich ist er mit über 40 Jahren nicht mehr dort, wo er Mitte bis Ende der Neunziger wreslerisch stand, dennoch nachwievor ein herrlich bekloppter und dadurch ungemein sympatischer Kerl, der, wenn er es will, auch heute noch richtig aufdrehen kann."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Raywrote on 01.04.2010:[7.0] "Hat einen gewissen Status durch die Super J Crown und seinen Politik-Run, aber sollte langsam wirklich endgültig aufhören. Er ist nicht mehr auf dem Niveau von früher."
Rating: 7.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Super Dragonwrote on 25.12.2009:[8.0] "Früher gern gesehen, er hatte unglaubliche Matches in Japan bestritten aber heute hatt er sehr nachgelassen sollte wirklich schon langsam ans aufhören denken."
Rating: 8.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: T-Waynewrote on 18.12.2009:[9.0] "Ein Jr. Heavyweight, der diesen Stil über die Jahre wirklich geprägt hat. Trotz der riskanten Aktionen und vielen Verletzungen hat er seinen Highflying-Stil beibehalten. Trotzdem sollte er langsam mal an einen Rücktritt denken."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: STRIGGAwrote on 16.01.2009:[7.0] "Da ist heutzutage nicht mehr viel. Für seine früheren Verdienste gibt es allerdings einen Legendenbonus. Trotzdem naht die Zeit des Rücktritts."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: MrWrestlingwrote on 23.10.2008:[10.0] "Eine lebende Legende und super Wrestler. Seine Matches schaue ich mir immer wieder gerne an."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Baszdmegwrote on 07.09.2008:[10.0] "Heute wohl nicht mehr das Wahre, aber eine Junior Heavyweight Legende mit Matches, die man sich immer wieder gerne anschaut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Masadawrote on 19.06.2008:[10.0] "Legendär, der Mann hat ne Austrahlung dat is nich mehr Feierlich, der brauch bloß zum Ring zu schländern und mann bekommt den Mund nicht mehr zu. Mit Sicherheit einer der besten Worker die man finden kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Rob Van Duesenschrauberwrote on 18.04.2008:[9.0] "Diesem Mann haben wir japanisches Indy-Wrestling zu verdanken^^ ... Und ganz nebenbei ist er auch ein verdammt guter Wrestler."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: AnFuwrote on 11.04.2008:[9.0] "Sasuke, ein riesen Wrestler! Der Junior Heavyweight schlechthin, klasse Matches, unter anderem mit J. T. Liger und einer netten Titelsammlung aus vielen verschiedenen Ligen. Dazu sein Stil, außerdem noch Besitzer einer eigenen Wrestlingliga, fast die Bestnote!"
Rating: 9.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Pulpulwrote on 09.04.2008:[8.0] "Gehört ohne Zweifel zu den größten Junior Heavyweights Japans. Heute allerdings etwas lustlos und nicht mehr mit früher zu vergleichen, aber gut, jeder wird irgendwann mal älter."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: Texas Tornardowrote on 23.12.2007:[10.0] "Êin super Wrestler und Highflyer. Ein meister seines faches!"
Rating: 10.0
Sentiment: 0.41666666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=990&gimmick=Great+Sasuke
Comment: jollietwrote on 24.06.2007:[10.0] "Toller Wrestler; 10 Punkte auch für den Autor der "Wissenswertes"-Rubirk: ... zwei Schädel... :-)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Zak22wrote on 29.10.2024:[9.0] "Already one of the best of this current joshi generation, she has all the tools and potential to ascend to the Toyota, Iwatani, Aja Kong levels of greatness. She is super exciting in the ring and incredibly talented. Big claim but if she keeps on the right track, she has what it takes to be a top 20 wrestler of all-time."
Rating: 9.0
Sentiment: 0.3465608465608465
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Thenwoagedbadlywrote on 21.10.2024:[10.0] "A 9 for a while but her work and development from the 2023 5STAR onwards clearly position Suzu as one of the best wrestlers alive under 25. It might be a cliché but she doesn't really have a weak spot. She can work comedies to death matches with equal brilliance, she can talk, she's charismatic, she has a great build, she works babyface or heel equally well, she can wrestle up a storm whilst also making her opponent look amazing, she always looks good gear-wise and she's a draw. A future red belt champion, no doubt."
Rating: 10.0
Sentiment: 0.27884615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Gabiwrote on 04.08.2024:[10.0] "Suzu Suzuki is so so talented and still so young. Cool presentation and awesome in-ring. She will be the ace of Stardom someday"
Rating: 10.0
Sentiment: 0.5375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Aspionwrote on 22.07.2024:[9.0] "(Sorry english is not my firtst language) This women is the future of the Wrestling, Im still waiting for her big moment in Stardom. This is one of this persons that jest on her entrance you kno that she is something special"
Rating: 9.0
Sentiment: -0.02857142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Daigotsuwrote on 23.04.2024:[8.0] "Suzu is a fantastic talent for her-- or any-- age. She's got a lot of charisma and is a great worker. She has all the makings of a star, and it seems inevitable that she'll be a champion in any promotion she's in."
Rating: 8.0
Sentiment: 0.4000000000000001
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: gabriarewrote on 23.02.2024:"Suzu Suzuki carries herself and has the presence of a veteran, i was shocked when i found out she wasnt already a 10 year legend, and she hasnt even hit her peak yet. I am sure she will be major player in any company that she decides to stay in no time."
Rating: No rating found
Sentiment: -0.03437499999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: mxkamiwrote on 11.02.2024:[9.0] "Still INSANELY young, and appears to be on the way to absolute prodigy status. Her program with MAIKA ending 2023 was killer, and showed that she can in fact be booked in long term feuds. I pissed myself laughing at the behind the scenes of MAIKA/Suzu rolling around on a bathroom floor pouring alcohol on each other, then the follow up match where MAIKA got her crowning moment while Suzu looked on with envy was great. Suzu has a ton of promise, and I really enjoy that she branches out into other companies as a freelancer that can have any number of matches including what inspired her to get into the business in the first place; deathmatches. Her finish also helps set her apart, and something about her death sells gets me. Genuine joy for me to watch, and I look forward to seeing what the future brings for this rising Joshi."
Rating: 9.0
Sentiment: 0.1875
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Animagowrote on 31.10.2023:[10.0] "The word "genius" is often overused when it comes to young wrestlers that are good really fast, in the case of Suzu Suzuki it is totally deserved. More than a prodigy, she is a complete natural at wrestling. She excels in every aspect of it, everything she does just seems so organic. Not just in-ring, but alose promos, aura, her expressiveness in general. She can do anything from stiff brawl to high-fly moves, from deathmatches to even comedy, adapt to her opponent seamlessly. It is crazy to think she is just 21 and barely 5 years in her career, there is no doubt she will become an all-time legend."
Rating: 10.0
Sentiment: 0.08961038961038964
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: ImperialUnowrote on 03.10.2023:[9.0] "Only 21 years old and she's already one of the best wrestlers in the world. Even in her Ice Ribbon days, we can see all the potential she had, i remember the excellent match she had against Maya Yukihi in august 2020 and after the match finished, i understood that she had the potential to be a major star and damn i wasn't wrong because now Suzu Suzuki is already a big star in Stardom. Suzu Suzuki is extremely charismatic, has great facial expressions, has a great in ring presence, knows how to tell a compelling story and damn she can do absolutely everything inside the ring, she's a great technician, brawler, high flyer (she can do outstanding Sky Twister Press) and death matches. She has the potential to be an all timer, she has everything to be one whatever if it's the charisma or the ringwork."
Rating: 9.0
Sentiment: 0.3011842105263158
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Kamilahclanwrote on 29.04.2023:[7.0] "She's showing good potential so far in her career and I'd like to think that there are big things in her future. I've liked what I've seen so far."
Rating: 7.0
Sentiment: 0.21428571428571427
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Mugendaiwrote on 08.04.2023:[8.0] "Suzu has great fundamentals and has always had solid potential. I wish she wasn't so obsessed with the deathmatch stuff, but I guess you have to chase your dreams, even if your dreams are nightmares to others. Hopefully she stays healthy and lives up to the reputation she's developed."
Rating: 8.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: TheOneAndOnlyCactuswrote on 06.04.2023:[10.0] "Suzu Suzuki is not nicknamed the Violent Prodigy for no reason. At the age of 20, she is as good as they come and she has the charisma of a true badass as well. While her current promotion Prominence showcases her in death matches, her Stardom matches show she is more than a mere deathmatch wrestler, and is already an all round great talent. I hope she gets to stick around in Stardom after her current reign is over, as it would be a damn shame if she just is remembered for her hardcore matches and not much else."
Rating: 10.0
Sentiment: 0.07499999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Wishtapwrote on 01.03.2023:[10.0] "Suzu Suzuki is one of the best wrestlers in the world and at only 20 years of age. She truly is a prodigy, her skillset, interactions with the crowd and her passion for the sport is unmatched. Her adoption of the Tequila Shot from Tequila Saya matches her character perfectly and looks flawless every time. She is destined to become a world champion one day and possibly will be the one to take the belt off of Giulia, as each time the two lock up, magic is created. She has not had a single bad match since her debut over 3 years ago."
Rating: 10.0
Sentiment: 0.3410714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: JUmbo Akiyamawrote on 26.10.2022:[10.0] "Suzu is just an amazing perfomer, her skills in the ring and ways of delivering stories always give me a great vibe of bad ass coming from this young little girl, it's scary to imagine what she will show us when she grown up more."
Rating: 10.0
Sentiment: 0.08750000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: No Onewrote on 26.09.2022:[10.0] "Suzu Suzuki is dope as hell. She has Attitude, "IT" Factor, has the charisma of a believable badass, has an aura that tells me that she should have come up during the 1990's era of AJW, JWP, & LLPW. She would have went to war with the likes of Akira Hokuto, Aja Kong, Bull Nakano, Devil Masami, & Shinobu Kandori, and she probably would be seen as a Legend today. She can work any type of match, can work with any type of opponent, male or female, (She is even a Death match wrestler as well) and produce a great match, clearly is a Ring General, can do anything inside a wrestling ring (technical wrestling, move variety, brawl, strike, aerial, all of it), has a very interesting backstory with Guilia of all people, who is one of the biggest stars in all of Joshi for the 2020's decade. Has impressed so many who knew nothing about her before the Stardom 2022 5 Star Grand Prix, It goes on and on, and she just turned 20, freakin' 20! A Future Legend, indeed."
Rating: 10.0
Sentiment: 0.3520833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: inauricwrote on 07.09.2022:[10.0] "Suzu Suzuki is already working at the top of the world in terms of quality at the age of 20, and the only thing standing in the way of being booked as such by major companies is her strong commitment to her company Prominence and to freelance shows in general - which is no flaw. She has the ability, the natural charisma and the personality to rule the industry in the years to come. She's hitting the main events of Korakuens now, wait til she hits the main event of even bigger shows."
Rating: 10.0
Sentiment: 0.1479166666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Wright15wrote on 15.08.2022:[9.0] "As of December 2021, Suzu Suzuki will have her third anniversary since her debut in a couple weeks, but she already wrestles with the timing, emotion, and psychology of a ten year veteran. Watch her deathmatch with Rina Yamashita and tell me with a straight face that you can believe she was only 19 years old. She, along with a plethora of extremely promising young wrestlers in the industry today, makes up the foundation for a bright future. I will probably upgrade this rating within the next year as she continues to show what she can do. EDIT: Yeah, she's easily top 100 in the world right now."
Rating: 9.0
Sentiment: 0.16043956043956045
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: LIGERISMwrote on 26.07.2022:[9.0] "I don't mean to be hyperbolic and I don't want to crown anyone of anything this early on in their career, but if Suzu Suzuki's career trajectory continues in the way it is as the face of the women's hardcore/deathmatch movement, she may be remember as this era's Megumi Kudo. She showed great ability very early on and was pushed accordingly by Ice Ribbon. Now as one of the face of Prominence, she has the chance to carve out a legacy truly unique to any of her peers. She has been showing up in places like Stardom, Wave and Sendai Girls and putting on great performances, as well as having awesome hardcore/death matches with the best in FREEDOMS."
Rating: 9.0
Sentiment: 0.4865625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: R0n1nwrote on 22.07.2022:[9.0] "Not many young joshis have such potential as Suzu Suzuki. And I'm really happy that she's doing deathmatches because that's what she loves and that's why she became a wrestler, not giving a damn about people who think "wrestling in deathmatches is such a waste for her". She still has some polishing to do, but for almost 20-year old wrestler, she's a full package."
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: nWo-Joshi-Guywrote on 04.06.2022:[9.0] "Insanely talented. Awesome look and massively charismatic. I will be shocked if she is not considered a legend in the future."
Rating: 9.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Suzukigunwrote on 17.05.2022:[9.0] "She's only 19 and has only been wrestling for three years, yet she excels at everything. She's really good in the ring, awesome on the mic, has an intense charisma to her and is a budding star on the rise. She could be an ace-caliber player for any company she'd want to join, but is opting to be a freelancer so that she can do deathmatches too. I can't speak about her as a deathmatch wrestler since I don't watch deathmatches, but I've a lot of her non-deathmatch stuff and have been impressed every time. If she's this good already, I can't imagine how great she could be a few years from now."
Rating: 9.0
Sentiment: 0.43
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: NoSellwrote on 27.03.2022:[10.0] "She's absolutely fucking unbelievable especially for someone who's been wrestling for 3 years. I'm all for doing what you love but if she only does deathmatches with the formation of Prominence it'll be such a waste because she's legit one of the best in the world. Has everything to be a legend of the joshi scene."
Rating: 10.0
Sentiment: 0.15
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Grissomwrote on 26.03.2022:[9.0] "Suzu Suzuki sollte man nicht nur auf ihre Hardcore Matches reduzieren. Suzu ist eine sehr gute Wrestlerin und hatte vorallem bei Ice Ribbon von 2020-2021 ein ziemlich starkes Jahr als Champion mit klasse Matches. Mit ihrerer Prominence Gruppe mischt sie aktuell die Joshi Szene auf und mit erst 19 steht ihr noch die große Karriere bevor. Tolle junge und charismatische Wrestlerin."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: chinomorenowrote on 25.06.2021:[9.0] "Can you believe she is only 18 years old? damn, for her young age and little experience she is extremely talented, probably to this day Suzu is the best young wrestler in the world."
Rating: 9.0
Sentiment: 0.25892857142857145
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: EleceRockwrote on 10.06.2021:[10.0] "She's very skilled in the ring, very compelling as a character and everything she does is just so good you can't stop watching her. She is my favourite joshi wrestler along with Mayu Iwatani and Momo Watanabe."
Rating: 10.0
Sentiment: 0.58
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=20600&gimmick=Suzu+Suzuki
Comment: Edgewrote on 14.05.2021:[9.0] "Suzu Suzuki ist unglaublich talentiert und in so jungen Jahren bereits richtig gut im Ring. Sie hat sich zuletzt in Death Matches versucht und durchaus eine gute Figur gemacht. Suzu hat eine große Zukunft vor sich und dürfte schon in wenigen Jahren eine der besten Wrestlerinnen der Welt sein."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ak47al123wrote on 05.01.2025:[10.0] "Might be the best indie wrestler between his two NXT runs. He never had a chance to showcase what he can truly do on a global scale, but if you watch more than a few of his matches you will instantly know he is a brilliant wrestler. He can do it all, striking, lucha style, delivering epic matches or shining in a three minutes match, I don't think I have seen anyone else that was so good in every aspect."
Rating: 10.0
Sentiment: 0.35
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DangoDaisukiwrote on 30.11.2024:[7.0] "Chris Hero war schon immer ein guter Wrestler den ich gerne bei großen Promotions gesehen hätte, dann wurde er dort eingesetzt und hat einfach nicht komplett überzeugt. Ich weiß nicht ob er sich selbst im Weg steht, aber ich denke immer er hätte mehr Potential gehabt als er gezeigt hat."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Wrestling Foreverwrote on 23.11.2024:[10.0] "Irgendwie bin ich froh das er nicht mehr bei der WWE ist. Er ist halt für das Independent Wrestling perfekt geschaffen. Er hat unfassbar viel Charisma, kann mit dem Mikro umgehen, er ist ein absoluter Allrounder und kann auch fliegen. Trotz seiner Größe ist er sehr beweglich und hat auch einen sehr harten Finisher. Edit 14. 06. 2016 Es hat sich wieder viel bei ihm getan. Viele neue Matches, zweiter Carat Sieg, neues Tag Team und so weiter was sein aktuelles Gewicht angeht so hab ich durchs Internet erfahren das er eine Schilddrüsenerkrankung hat die zu dieser starken Gewichtszunahme führte. Trotzdem ist der Mann immer noch sehr beweglich. Edit: 08. 01. 2017. Jetzt ist er doch wieder zu NXT gegangen. Ich hoffe das es nun besser mit ihm wird. Ich hätte es nicht gedacht. Ich bin sehr gespannt wie man ihn nun bei NXT einsetzt. Edti 05. 09. 2020 Kassius zweiter NXT Run war etwas besser als der erste aber echt so Schade das er Teil der großer Entlassungswelle war. Edit 22.10.2022 man hat ihn jetzt schon Jahre nicht mehr im Ring gesehen es ist aber nicht so das er von der Bildfläche verschwunden ist er macht inzwischen für Highspots den Podcast Shoot Conversations. Edit 23.11.2024 Leider hat Chris diese Woche seine Mutter an Krebs verloren. Auf seinem Instagram Account hat er einen langen Nachruf verfasst. Auch einiges zu seiner Mutter hat er geschrieben was sehr interessant war. Da dies nirgendwo zu finden ist. Eine kleine Info zu seiner Mutter so ist sie in Kettering, Ohio aufgewachsen. Ich wollte das einfach mal wissen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Fabibiwrote on 01.09.2024:[7.0] "He had great matches on the independent scene during the 2000s and the 2010s. He spent some time in NXT but he unfortunatly never made it to the main roster. He got in pretty rough shape during the 2010s so it might have limited his sucess in WWE but he still had a good career with many great matches."
Rating: 7.0
Sentiment: 0.2945238095238095
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: AnthoTheKIDwrote on 30.08.2024:[10.0] "Chris Hero is a student of a game and now, he's sort of a historian of it, his knowledge of the business is indecent as he knows obscure stuff that I wouldn't put my nose in. Excellent worker in the indies, the one who has a shop of Cravates and doesn't look that corporate. The man, the myth, the legend."
Rating: 10.0
Sentiment: 0.19999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Joe907wrote on 25.08.2024:[10.0] "Chris Hero one of the greatest wrestlers. His in-ring skill are super good. Technical wizard and heavy hitter. He's also one of the smartest wrestlers too. He's learned different styles of wrestling and adds them to his matches. He's been in some of the best indie wrestling matches with Bryan Danielson, ZSJ, Claudio, CM Punk, and a bunch of other ROH and PWG wrestlers. Even wrestling internationally, Chris is one of the best Indie wrestlers ever."
Rating: 10.0
Sentiment: 0.30902777777777773
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Aspionwrote on 23.07.2024:[8.0] "(Sorry english is not my firtst language) This guy is good at everything expect having more interesing gimmick"
Rating: 8.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: JediSaiyanMaster1203wrote on 26.06.2024:[10.0] "No matter if he's going by Chris Hero or Kassius Ohno, singles or tagging with Claudio Castagnoli, skinny or big, this man is a bonified legend in professional wrestling (especially on the "Indy Scene"). Here you have a man who, doesn't care about the fortune and fame, just loves professional wrestling and only cares to give it his all and know everything about the business, adapt to any style put in front of him and can work with, almost, anyone. His best work would be his classics with CM Punk in IWA, where they would have some of the longest matches you'll come across, and they're totally worth it. Not only that, his days with Claudio in the "Kings Of Wrestling" tag team is amazing, having natural chemistry and being a perfect heel duo that had some amazing bouts with so many great tag teams in ROH. Then you get to his days as KO, while not having a prominent presence in WWE/FCW, he still went out of his way to deliver a solid match when given the chance to. His run in PWG from 2014/2016 is of legends, a great example of someone who's "passed their prime" (only in the sense that his peak is behind him), but still able to go and still has "it." He's a great wrestler who blends tons of different in ring styles when he wrestles, he especially shines as a technical wrestler, having some of the best looking elbow strikes you'll come across, can play the role of a heel perfectly well, naturally knowing how to be a prick to his opponents. I seriously hope he starts wrestling in AEW soon, I'd love for him to face off against some of the best AEW has to offer and, possibly, get a Kings of Wrestling reunion. Anyways, Chris Hero is a legend and a phenomenal wrestler, one of the best talents of the past 25 years."
Rating: 10.0
Sentiment: 0.3475490196078431
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: kwadiavawrote on 29.04.2024:[10.0] "I don't rate wrestlers as much or give easy 10s, even to the ones who are alleged legends, but man... Chris is awesome; he's as hot as he gets. And... He's truly legendary. His theme song lyrics tell you everything you need to know about him. While it's true he has slowed down and put on some weight while also adjusting more to backstage work, I wishfully wait to watch him on the AEW screen before he goes on to a potential retirement tour. He deserves to be promoted on national TV. And, as the others nailed it, Chris really never needed anything; he was always relatively big and well-known for the passionate PW fans. Amongst the fandom, Hero earned every bit of his reputation by grinding years after years in the independent circuit. He delivered banger matches wherever he went, from Midsouth to PWG to CHIKARA to NOAH to ROH and even in WWE. In his words, he couldn't keep himself out of wrestling in any way. While some of his work in ROH/NOAH/CHIKARA will always be memorable, especially the Kings of Wrestling, even his lackluster runs were something. He played the cocky heel perfectly against Matt Riddle and put him over. And, unironically delivered some more great matches under Kassius Ohno moniker post-WWE. He has one of the longest matches up to date, being a 3-hour gauntlet match. As passionate as he was, he also has been notably charitable. Incredible stamina that he can still go over 40 minutes against Timothy Thatcher in 2023. He can adapt to different styles, be it strong style, your British/European (fka Lanceshire) style as he considers it physical & mental chess, or lucha libre, after studying all of the styles while traveling around the globe. He helped Punk to make a name, he helped Cassidy by a great deal, still helps people. Has a huge library of incredible matches against Fenix, Pentagon, Tommy End/Malakai Black, Zack Sabre, Danielson, Angelico, Thatcher, Cole, Shibata, Ishii, (Christopher) Daniels and many more you can't name in one breath without running out of it. There is almost nobody he hasn't wrestled with (yet) in a high caliber match. Hero is on the Rushmore of independent wrestling and the first contender to the indie HOF if it were a thing."
Rating: 10.0
Sentiment: 0.29876876876876884
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Horatiowrote on 22.03.2024:"How many guys his height can spring-board off the top-rope in one hop? Or put on an extra 100 lbs and still nip-up in circles with one arm lock'd? An easy contender for best wrestler of all-time. No one gives it more every time than Chris Hero. Using a vast array of skills with widespread knowledge to boost, he's the guy to beat even though he doesn't have the greatest win-loss record."
Rating: No rating found
Sentiment: 0.4904761904761905
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Nilesmaniawrote on 17.02.2024:[6.0] "I have nothing against him, just has never really been for me. What Ive seen in some of his indies matches, he can work, but I just dont think hes anything special. Not to say hes bad at all, as 6/10 is still a satisfactory rating, just hasnt been my cup of tea."
Rating: 6.0
Sentiment: -0.14761904761904757
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Mariano14wrote on 27.12.2023:[10.0] "Never needed lots of championships. Never needed to be mainstream. Never needed heavy marketing production. Never needed to win everything. Never needed to make a name in WWE. Chris Hero was always just himself, enjoying what he does and what he loves. He doesn't wrestle for championships or fame, just passion. A guy who came from the bottom to became a wrestling legend because of him and only him, with his love for this business, his effort, his talent and his profesionality. This gentlemen, is one of the greatest of all time."
Rating: 10.0
Sentiment: 0.43333333333333335
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Messallawrote on 04.08.2023:[9.0] "Ohno/Hero is extremely talented; he obviously deserve the spotlight, and indeed he still can steal the show. Nonetheless, he seems unable to control his body, possibly for some medical issues, or at least he doesn't care anymore. Still, he's a potential 10."
Rating: 9.0
Sentiment: -0.01428571428571429
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: benh2wrote on 15.04.2023:[8.0] "One of the best indie workers of all time. Unfortunately he doesnt really have the look to succeed on the national stage."
Rating: 8.0
Sentiment: 0.175
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: macisbetterwrote on 26.02.2023:"I love everything about Chris Hero. He is easily one of the best of all time, and easily my favorite wrestler of all time."
Rating: No rating found
Sentiment: 0.6083333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Minorsmile09wrote on 25.11.2022:[10.0] "One of the best independent wrestlers of all time. Can't give this guy enough love. I hope he comes back for one last run in the indies or in AEW."
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Vukowrote on 24.11.2022:[10.0] "This guy was.. EH is one of the best technical wrestler ! I mean, if you never watch his matchs at ROH or NOAH, go on google."
Rating: 10.0
Sentiment: 0.22916666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ROCKETMANwrote on 22.08.2022:"Easily the best technical wrestler only got better by adding more aggression and nastiness to his wrestling style !"
Rating: No rating found
Sentiment: 0.42638888888888893
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: GriffinXwrote on 04.06.2022:[9.0] "In another era Chris Hero would of been a much bigger star. Hell if he was at his peak today he would thrive in places like AEW or New Japan strong. A guy who was able to mix numerous styles. Able to work great tag team matche and singles matches. And there is a very good reason why it was vs. Chris Hero that the name CM Punk started to gain a lot of attention"
Rating: 9.0
Sentiment: 0.4099621212121213
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: jamzell00wrote on 25.05.2022:[9.0] "It is a tragedy Hero went back to the fed after the 2016 he had. He's one of the best wrestlers of our generation and even that is an understatement. He mastered the ability to be a bully in matches to perfection yet that didn't stop him from knowing when to eat shit and let his opponent look good. Guy was one of the foundations of an entire promotion in evolve and gave progress its best matches ever when he decided to stop by the UK. Not to mention the legacy he built in companies like WXW CZW ROH and PWG. This isnt even me diving into his stuff before his 2nd wwe run the guy was just a different kind of shark before re-signing. You can credit him along with Bryan for the style of indie wrestling we got in the 00s and most of the 10s. It's a shame he hasn't done anything since getting released but when he does pop back up I'll be there happily watching"
Rating: 9.0
Sentiment: 0.3384615384615385
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: k1ngFreire - k1nghoFFFwrote on 24.05.2022:[10.0] "Lendário, uma das maiores estrelas das Indys de todos os tempos e certamente um dos melhores wrestlers do mundo, apesar de ser bem Underrated. Hero é tão bom que mesmo não estando em sua forma ideal nos ultimos anos, esteve em uma fase fantástica em 2014-2018 com várias matches absurdas que fizeram ser um grande fã, dele e do seu estilo de luta, é lindo de ver o homem lutar, simplesmente o Knockout Artist!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: CLUCKwrote on 19.05.2022:[7.0] "i follow him since ROH, he is doing good in indy wrestler but in NXT he didnt like in ROH, so that why i rated him just 7"
Rating: 7.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Dcarter1153wrote on 19.05.2022:[7.0] "Chris Hero pre nxt is incredibly awesome. Everything else after that I'm not a fan of. Kassius Ohno is not good. And not being offensive but when he got fatter he got worse and I just don't enjoy him anymore"
Rating: 7.0
Sentiment: 0.1625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DanTalksRasslinwrote on 27.04.2022:[9.0] "A very strong technical wrestler known both for his holds and strikes. My favorite work of Hero's to date was, by far, his tag run with Claudio Castagnoli as the Kings of Wrestling, but his singles work has also resulted in compelling matches. Has sometimes suffered from issues with his physical shape, which in WWE likely placed a lower ceiling above him than that of his former partner, but that never seemed to affect the quality of his in-ring work very much. In a setting like the independent scene or NXT, Hero is a reliable veteran performer who can be placed in virtually any position on the card and can be counted on to put on a good match versus virtually any opponent."
Rating: 9.0
Sentiment: 0.18641025641025644
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: CoolKylewrote on 27.04.2022:[7.0] "I prefer early, baby-faced and baby-fat lucha armdrags and Euro chain wrestling Hero to later Japanese strong style tribute act Hero. The former is a small-time act, but it's an endearing one and could produce fun matches. The latter is pretty grating. Part of the problem is that, despite his size, Hero just doesn't look like an intimidating guy, so him playing this badass just strikes an odd chord. Then there's the constant thigh slapping. Not every strike (and there are plenty of them) needs to make a slapping sound, and elbows certainly shouldn't. Still, he's a charismatic guy, who never seems to have a problem getting fans into his matches."
Rating: 7.0
Sentiment: 0.18078231292517005
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: jaytodadeewrote on 26.03.2022:[10.0] "Eine absolute Indy-Legende. Für alle, die ihn lediglich aus seiner WWE-Zeit kennen, lohnt es sich eines seiner unzähligen überragenden Indy-Matches zu schauen. Bis heute definitiv in den Top5 meiner absoluten Lieblings-Wrestlern!"
Rating: 10.0
Sentiment: 0.25
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: mjs2212wrote on 12.02.2022:[9.0] "Chris is awesome (sorry, I had to lol). I appreciate his singles runs over the years, but I truly admire Hero for his involvement with the Kings of Wrestling. Him and Claudio worked so well together, and the Kings are easily in my top 5 favorite tag teams of all time. Hero's elbows are so fun to watch, and as a singles guy, maybe even a bit underrated when compared to Claudio, who has found much greater mainstream success. Regardless, I greatly enjoy watching Chris Hero and is a major player in the tag team division."
Rating: 9.0
Sentiment: 0.3862499999999999
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Seshwrote on 12.01.2022:[4.0] "I'm surprised to see Chris Hero ratings so high. He is not a great wrestler. He hasn't offered many good matches especially since his second WWE comeback. His sell moves are pretty bad. He have a bit of charisma but not a charisma that caught my eye."
Rating: 4.0
Sentiment: 0.0677777777777778
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: benny5bellyswrote on 12.12.2021:[9.0] "He gave everything he had to this sport. A highlight in independent wrestling across the world in good times and bad."
Rating: 9.0
Sentiment: 3.700743415417188e-17
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: 7PercentAquilawrote on 05.09.2021:[9.0] "Fantastic technical wrestler who soaks up knowledge and has a true love for professional wrestling. Chris Hero has traveled across the world in order to hone his style as well as learn new ones to great success, and helps spread what he's learned to both wrestlers and fans alike. I do think his promo work is a little bit forgettable, and his aesthetic always came off as a bit lame when he wasn't working a cocky heel, but he truly is one of the best technical wrestlers in the world and one of the best US independent wrestlers of all time."
Rating: 9.0
Sentiment: 0.19992897727272724
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Upgrayeddwrote on 04.08.2021:[10.0] "One of the best modern day wrestlers ever. This man is a legend, I wish he would've done more in NXT. However, those poor runs of his in the WWE don't have a notable effect on his overall career. He's always been an extraordinary talent, and I hope to see him back in an ROH ring soon"
Rating: 10.0
Sentiment: 0.26666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Burninghammercriticwrote on 25.02.2021:"A real unsung hero. Pun intended. One of the most complete arsenals and was over but was doomed due to management. He is a favourite of mine."
Rating: No rating found
Sentiment: 0.16874999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ZSJGunWwrote on 02.02.2021:[9.0] "One of the most complete wrestlers I've seen in my entire life. Amazing striker, solid technician, a great seller and a really smart athlete. You can try, but it's impossible to find a defect on him."
Rating: 9.0
Sentiment: 0.193452380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: chrisbbbbbwrote on 14.10.2020:[10.0] "Chris Hero is the best independent wrestler of all-time. He has worked various styles in promotions all over the world. While performing in the United States, Hero found an abundance of success. ROH, PWG, CZW, and Chikara all had eyes for his talent. He competed in a series of stellar matches with C. M. Punk in IWA:MS. Over the years, Hero spent ample time wrestling for European promotions, such as wXw and RevPro. Also, Hero has some experience in Japan, specifically for NOAH. Hero also found success in tag team wrestling. Partnering with none other than Claudio Castagnoli (Cesaro), Chris Hero formed The Kings of Wrestling, which would be one the most successful tag teams in the indies. Before signing with WWE in 2017, Hero showed that his size increase would not slow him down. Perhaps 2016 was the best year of his career. Hero was released by WWE in April of 2020, so it will be interesting to see where he ends up next."
Rating: 10.0
Sentiment: 0.25702614379084965
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Ma Stump Pullerwrote on 12.08.2020:[7.0] "Honestly, I never got the hype with Hero. Zero mic skill, bland look, and relied almost completely on being a solid worker in the ring. This is fine in the earlier years, when you'd be forgiven for stuff like that, but when he moved into the WWE, it was clear that he was out of his depth. There's only so far ring work can take you in the business, and Hero's a really good example of that. Doesn't help that he reportedly had a bad attitude backstage and he got pretty fat after he left NXT and went back to the indies. Later years also exposed another problem for Hero: his lack of ring psychology and pacing. Usually when wrestlers get into their later years, they have to rely more on working smart, rather than just going all out. This was shown tons of times with the likes of Tanahashi, Kojima, Misawa, Jericho, Joe, Austin, etc and is something pretty well established. Hero seemed to be unable to do this, and had to try and work at a noticeably slower and more clunky pace as compared to the smooth stuff he was pulling out before. His inability to work around it is a massive failure in general for himself, and likely why he wasn't exactly used often in NXT outside of the occasional average match. Usually the good matches I DO see him having were because the other guy in the ring was a far smoother worker. Hero was one of the big indie breakouts of the early 2000's, but his lack of development beyond the ring restricts him massively, and that's a shame."
Rating: 7.0
Sentiment: 0.05057997557997559
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ChopChopChopwrote on 01.08.2020:[10.0] "I don't think we will ever see another wrestler who has what Chris has. Here's a guy who mastered every style of pro-wrestling and fused them together to become this best-bout machine."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Divus Rolexuswrote on 16.07.2020:[10.0] "Chris Hero had so many excellent matches in the US and Japan. I'm really disappointed that Hunter never saw his potential in NXT, they could have done so many things in the Tag Team Division with him, they could have brought back the Kings of Wrestling with Cesaro or his team with Aleister Black. I hope he will have others great runs on the US Indy Scene"
Rating: 10.0
Sentiment: 0.23541666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: haroldanthony3wrote on 14.05.2020:[8.0] "One of the best ballroom wrestlers of all time. Very technically sound in many different styles of pro wrestling was able to be popular in the American and European indie scenes. His success did not transfer to the larger stages he wrestled such as Pro Wrestling Noah or the WWE to the same degree. In the WWE it is because he had trouble maintaining his weight especially when he first entered the WWE he was a bit overweight but not in a marketable degree. In the American and European scene he was able to stand out with his size and had the technical ability to match but once he moved to the WWE he no longer was the big guy in the company and since he did not have a bodybuilder figure, his biggest strength became his biggest weakness because he was no longer the biggest guy in the room. I need to watch some matches in this time in Noah to understand why he had a lack of matches in the Matchguide from his time there. It might just be when he was doing his tours there he was overshadowed by the likes of Kobashi, KENTA, Marufuji, and Misawa."
Rating: 8.0
Sentiment: 0.18333333333333332
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: BDDwrote on 05.03.2020:"Chris Hero was once one of the best wrestlers in the world, in 2016 being one of the strongest wrestlers of the year, he has a collection of amazing matches from many different places, he could adapt to any style, and managed to get the best out of his opponents, his current pace may not be the same, but he still manages to have a good match when he has the chance."
Rating: No rating found
Sentiment: 0.475
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DeathByElbowwrote on 21.12.2019:[10.0] "Für mich die Definition vom Allrounder. Technik, sowie viele powermoves und teilweise etwas highflying. Seine Elbow Strikes sind immer schön anzusehen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: JOEvsISHIIwrote on 13.08.2019:[7.0] "Kassius Ohno is getting up there in age and his in ring work is starting to show it. He's still very good but he's not the 9 or 10 rated wrestler that he used to be."
Rating: 7.0
Sentiment: 0.45499999999999996
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TechnicalWrasslinwrote on 08.07.2019:[8.0] "A guy that would be great for AEW he? s underrated because of his work In roh Pwg Czw A man that is big and got lethal elbow strikes and a man that can flying hurricaranas He deserves a few North America title runs maybe a nxt world title Either uk or not But he would be decent on smackdown or possibly raw"
Rating: 8.0
Sentiment: 0.10717948717948719
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: steviecwwrote on 11.05.2019:[9.0] "I hope that when Chris Hero/Kassius Ohno retires that his latest run in WWE/NXT will not be too detrimental to his legacy. He was Indie royalty and made contributions to PWG, ROH, CZW, EVOLVE, Progress, Chikara, WXW, IWA Mid-South and many more. I still believe there's room for him to have success in WWE but they have to want him to."
Rating: 9.0
Sentiment: 0.36
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ErycK24wrote on 08.04.2019:[6.0] "I find Ohno/Hero to be incredibly over rated, I don? t see the appeal, I? m not a big fan of his in ring work, and overall I? m just really not impressed, I hope this changes but I really don? t see it happening."
Rating: 6.0
Sentiment: 0.12000000000000002
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: miguelucedawrote on 01.03.2019:[9.0] "One of the best strikers in the business and at his 39, he is still making great performances with an amazing level. Love also the stiff side of his moveset. Besides, Ohno is a living pro-wrestling encyclopedia, one of the smartest guys in the business. He is going to be a great trainer in a future."
Rating: 9.0
Sentiment: 0.4979591836734694
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Shadow Explosionwrote on 31.12.2018:[10.0] "One of the most talented wrestlers of all time, Kassius Ohno knows his way around that ring bettger than anybody, A Big Man good at Tag Team, Technical, Powerhouse, Striking, and even High Flying Wrestling, Kassius Ohno is a Legend."
Rating: 10.0
Sentiment: 0.3657142857142857
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: The Stott Onewrote on 30.11.2018:[8.0] "A very talented wrestler who is not thriving in the world of WWE. However, he can be a great asset if they could find some way to utilize him. It's a shame, but you can't overlook his performance pre-WWE. Amazing singles competitor, amazing tag matches with Colt Cabana and Claudio Castagnoli aka Cesaro. What's with the alliterative C's with Mr. Hero anyway?"
Rating: 8.0
Sentiment: 0.7275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: zephyrwrote on 09.11.2018:[7.0] "Another one of those cases where I'm just not quiet seeing what everyone else seems to see in a wrestler. He's good and can definitely put on great matches but for the most part, he doesn't exceed "good"."
Rating: 7.0
Sentiment: 0.45
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: RatingsMachinewrote on 12.10.2018:[9.0] "Chris Hero was a great wrestler. but Kassius Ohno? Not so much. Whether it's down a decline in abilities or a restrictive environment,  Ohno is not the wrestler Hero was. But that shouldn't detract from the fact that Hero, in his prime, and for quite some time, was a great wrestler, and had some incredible matches."
Rating: 9.0
Sentiment: 0.5088888888888888
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Oliver95xwrote on 23.03.2018:[10.0] "Eine legende und einer besten Indie Wrestler der Geschichte. Er liefert immer ab und zeigt nur selten ein schlechtes Match."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: cpatchjwrote on 05.03.2018:[7.0] "He's hardhitting and talented and I'm definitely a fan, but I'm more interested in stories and emotions, and I just don't get that from him."
Rating: 7.0
Sentiment: 0.3625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Dragon Fighterwrote on 25.11.2017:[10.0] "An independent wrestling legend for sure. Ohno ( former chris hero ) had a long career and wrestled in various indy promotions in usa in Europe. His in ring performance is absolutely outstanding. Like AJ and bryan, he can make anyone look good in the ring and has at least good matches with anyone. His indy run from 2013-2016 was tremendous. Every time he stepped into the ring, you could expect very good matches. He stole the shows all the time. Now, he is in nxt for the second time. Hopefully, he has opportunities to prove how good he is."
Rating: 10.0
Sentiment: 0.3071794871794872
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Klabauterwrote on 13.11.2017:[6.0] "Er ist ein solider Wrestler, mehr sehe ich in ihm nicht. In seiner aktuellen NXT Rolle, wo er andere Wrestler die besser sind als er, oder in denen man mehr Potential sieht over bringt finde ich ihn sehr gut aufgehoben. Er selbst wird wohl nie eine größere Rolle spielen, vielleicht darf er ja irgendwann mal in ein Tag Team mit einem Ähnlichen Wrestler. Singles Wrestler gibt es weit bessere als ihn."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: LonelyVillainwrote on 06.11.2017:[10.0] "Chris is awesome, my favourite wrestler of all time, instantly became a favourite of mine ever since he started his KO gimmick, knocking everyone out with stiff elbows, kicks and piledrivers. Hard hitting as hell, up there with shibata with his strong style, and athletic as all hell, doing head scissors, high jump planchas and moonsaults at 6’4 260 pounds, simply the best All round wrestler ever."
Rating: 10.0
Sentiment: 0.2097089947089947
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: freddnwrote on 17.10.2017:[6.0] "Im Ring sehr talentiert. Darüber hinaus jedoch nur Mittelmaß. Sowohl Promos, Ausstrahlung als auch körperliche Form (Fitness) lassen hier etwas zu wünschen übrig. Im Gesamten jedoch durchaus brauchbar, wengleich auch kein absoluter Top Player."
Rating: 6.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TooSweetPhilwrote on 25.09.2017:[8.0] "Chris Hero - er wird immer in der Diskussion sein, wenn man um den Besten Indy Wrestler reden muss. Der Typ hat sich nach und vor seinem schwachen WWE Run in den Indy's (PWG;PROGRESS etc. ) einen unglaublichen Namen gemacht. Im Ring kann er trotz Statur ziemlich alles, schnell, athletisch, Stiff, brutal und kann eine Story mit Struktur aufbauen. Dazu tolles Selling, als Team oder alleine grandios. 9 Punkte ! ---EDIT: Ich muss doch eins runtergehen, da ich ihn in der WWE weiterhin kaum mehr wirklich sehen kann und er so selten glänzt."
Rating: 8.0
Sentiment: -0.6071428571428571
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Phil272wrote on 12.06.2017:[7.0] "Liefert bei der WWE jetzt keine großartigen Matches. Da waren die Indy-Zeiten bei ihm besser. Er braucht auch ein neues Attire."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Lardo Parcelwrote on 27.02.2017:[9.0] "Honestly, I doubt that the WWE crowd would embrace someone like Ohno. He's extremely skilled in the ring, his mic skills are believable, but once again there's that doubt about his "looks". But other than that, Ohno, as Chris Hero, has been fucking killing it in the past 2 or 3 years. He would usually have the best matches against a variety of people. If anything, I feel that he belongs in the same sentence with the great wrestlers of the 2000's, from Punk to Bryan, to Styles and Daniels."
Rating: 9.0
Sentiment: 0.21749999999999997
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TheWrestlingFanwrote on 12.02.2017:[10.0] "Hands down to one of the best, if not the best, wrestler in independent scene. He can adapt to any kinds of wrestling style easily. Most of his matches are truly 4. 5-5 stars. His movement is still as smooth as ever despite he has reached his late 30s and has weight issues. If independent wrestling scene has a Hall of Fame ceremony, Hero should be the first ballot for the induction."
Rating: 10.0
Sentiment: 0.2993827160493827
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: umarthegreat15wrote on 11.02.2017:[10.0] "I've got noting but love for this guy. Truly had the best year in 2016 of anyone in the biz. Seems to only be getting better. He can work babyface, heel, anything and knows how to work a crowd. People complain about the weight, but I think he shuns those people pretty much with what he's able to do. Go, Ohno!"
Rating: 10.0
Sentiment: 0.43928571428571433
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: csp6713wrote on 23.01.2017:[9.0] "Despite size and his weight, Hero/Ohno has a had a career year in 2016. Great matches with multiple guys, notably Andrews and Strong in my opinion, and one hell of an improvement as an all-around wrestler. As long as he's the Hero we know, WWE/NXT will give him a platform to excel."
Rating: 9.0
Sentiment: 0.3138888888888889
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: JokeyZockeywrote on 02.01.2017:[10.0] "Mein Lieblings-Indie-Wrestler aller Zeiten! Chris is awesome, dieser Satz beschreibt diesen Mann wirklich perfekt! Im Ring zu jeder Phase seiner Karriere einfach genial, sowohl früher als grandioser Allrounder als auch natürlich in der Neuzeit als ''Young Knockout Kid'', was sogar ehrlich gesagt das Gimmick ist, das ich mehr mochte. Dazu ist er auch noch ordentlich charismatisch und verkauft sich und seinen Gegner in seinen Matches stets nahezu perfekt. Auch wenn er besonders in den letzten Jahre wirklich sehr extrem an Bauch zugelegt hat (ich finde, er sollte es wie Owens machen und einfach mit Oberteil wrestlen), seinem Talent hat das keinen Abbruch getan. Sollten wir ihn 2017 tatsächlich wieder in der WWE bzw. bei NXT sehen, das Wrestling-Jahr 2017 hätte für mich schon mal einige Pluspunkte! Also: Chris Hero = einer der besten im Business momentan!"
Rating: 10.0
Sentiment: 0.578125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: MrMaggowrote on 30.12.2016:"Ich mag ihn sehr, nur soll er sich bitte ein anderes Attire aussuchen. Das jetzige ist sehr unvorteilhaft."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: SanthoshVNwrote on 16.12.2016:"Chris Hero is a genius in the ring. Very athletic, brutal, incredible in the ring. He uses the elbow & Piledrivers very well. I feel that he should go to promotions like ROH/Progress/NJPW than staying on small promotions. He is completely diffferent from the body shape he has"
Rating: No rating found
Sentiment: 0.04583333333333334
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Jobbswrote on 12.12.2016:[9.0] "This guy was and still is absolute beast. The guy hasn't had a bad match in a couple of years and proved in 2016 that he is truly one of the G. O. A. T. as he just his one of the most elite professional wrestlers in the world as well. He is just amazing to watch in the ring and knows how to pace his matches and has had numerous classics too. Just a phenomenal athlete and his 2016 compares to Bryan Danielson's 2006 run. Chris Hero is truly that Awesome!"
Rating: 9.0
Sentiment: 0.275
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: NastyYaffawrote on 12.12.2016:[10.0] "Truly a legend of independent wrestling, and one of the greatest wrestlers of all-time. He's always been a quality worker - he's had A LOT good-to-great matches throughout his career, legendary battles vs. the likes of CM Punk, Bryan Danielson, William Regal & others - but it's 2016 when he became a bonafide legend in my eyes, as Chris Hero's 2016 is quite simply one of the best years any wrestlers have ever had - totally up there w/ stuff like Flair's '89, Danielson's '06 etc. As his fantastic theme song is called; Chris is awesome."
Rating: 10.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TrevPuroFanwrote on 12.12.2016:[10.0] "I have always liked Chris Hero and his ring work. Had some classics throughout his career from 2002 till 2015, but its the 2016 Chris Hero that made me love him. He's just been on fire this year, delivering back to back classics. He's always been fantastic. Love him."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: AtticusFinchwrote on 25.11.2016:[10.0] "In my opinion, probably the best active wrestler in the world. Everyone knocks Hero on his size and weight, which I can understand, but I'm honestly fine with it. His cardio is off the charts too. If anything, it just makes it more impressive when he's throwing his body around. Looks aside, Hero is a true student of the game. Everything he does looks smooth and brutal. Has no issue making upcoming independent talent looking great. I really hope Chris can get another chance to shine in the WWE, but if not, he'll continue his legacy as the best independent wrestler out there."
Rating: 10.0
Sentiment: 0.3041666666666667
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: mdgeistwrote on 05.11.2016:[9.0] "I've been watching Chris Hero since his early days in CZW & CHIKARA when he was rocking the indy-riffic baggy yellow firemans pants. In hindsight, I think Chris was a victim of his own wrestling intellect - in that he was such a student of the game - he appeared to want to fit EVERYTHING into every match, every night. Ironically, what appeared to hold him back was his inability to hold back.   Ever since he left WWE developmental in 2013, I have mostly been seeing Hero in PWG - and what a joy he's been to watch (and indeed listen to - whilst Chuck T almost fills the comedic void left by Steen, Hero provides a wonderfully geeky insight into each match perhaps rivalled only by his mentor Mike Quackenbush's commentary turns in CHIKARA) - Hero seems to have refined everything that gave him such great potential into one of wrestling's unsung... well, heroes. Chris appears to be one of very few wrestlers in this era capable of really improvising and adding to the story being told in the ring - and it's a totally different, wonderful story every time. Look at PWG matches with 'Speedball' Mike Bailey & Timothy Thatcher - Hero can raise lesser opponents up to his level in what should be just another match by raising the intensity and making it a classic.   Contrary to some, I see Hero's slightly podgy belly and all around shape to be a plus. He looks different, and he just looks like a hard bastard who would own most people in a bar fight - much like Steen.   Hero seems to be enjoying this part of his journey on the indies, but surely something bigger looms, as he is now in his absolute prime."
Rating: 9.0
Sentiment: 0.2020952380952381
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: MAGICIANwrote on 22.10.2016:[9.0] "Chris Hero gehört zu den besten Wrestlern auf der Welt derzeit. Jedes Match mit ihm ist so einzigartig, sein Storytelling göttlich! Im Ring ist er damit grandios (10/10), Ausstrahlung gut (8/10) und sehr charismatisch (9/10). Insgesamt sind das 9, 00 von 10 Punkten - 'sehr gut'."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Zedwrote on 08.10.2016:[5.0] "Hab ihn vorgestern nach langer Zeit mal wieder gesehen, Herrgott der ist ja aufgegangen wie ein Luftballon. Und langsam ist er geworden, jetzt nicht so mega langsam, aber im Vergleich zu früher doch arg die Handbremse gezogen. Er wirkt nicht in Form und seine runder Bauch steht ihm doch im weg. Schade was diese Indy Ikone mit sich gemacht hat. Für früher 8 Punkte, für heute 3 Punkte abzug. Find ihn nicht mehr so toll."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DerMilanowrote on 02.10.2016:[8.0] "Immer noch ein ziemlich starker Wrestler, der jedoch aufgrund seines Alters auf dem absteigenden Ast ist. Seine Matches werden von Jahr zu Jahr langsamer. Dennoch ist er immer noch gut anzusehen und definitiv noch in der Lage gute Matches zu worken."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Pro Wrestling Walruswrote on 16.09.2016:[10.0] "Perhaps the best wrestler I have ever seen live. He is just that good. He can work any style, and his stuff looks incredibly believable. Aesthetically, he's really let himself go and doesn't look good, but it doesn't seem to affect his performance. I'd give a 9. 5 if possible, simply because his current look is so sloppy."
Rating: 10.0
Sentiment: 0.281969696969697
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: adp125wrote on 12.09.2016:[8.0] "Whilst he looks physically out of shape, his conditioning is good and he can still put in solid performances. Not over rated, but it would have been interesting to see where his career could have gone"
Rating: 8.0
Sentiment: 0.3
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ECW444lifewrote on 05.07.2016:[10.0] "the best wrestler in the world point blank when you think of indie wrestling you think of chris hero if you dont your not a pro wrestling fan"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Luv all wrestlingwrote on 04.07.2016:[10.0] "King of the indies. Chris Hero has faced virtually everyone on this continent from redneck briscoes to arm breaking luchadors to former multitime wwe champions. Now that he freelances he shows up everywhere from aaw to progress. Man has a amazing workrate and is just all around a king of wrestling."
Rating: 10.0
Sentiment: 0.30000000000000004
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Alex Maedawrote on 04.06.2016:[9.0] "Charismatisch, wrestlerisch vielseitig talentiert, starker Crowdworker. Auch abseits des Rings ein sehr sympathischer Mensch. Who's your hero? It's Chris Hero."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: prowrestlingisrealwrote on 13.05.2016:[10.0] "What can I say about this guy ? Chris Fn' Hero, he don't need an introduction, he is without a doubt an Indy legend, and one of the best pro wrestlers in the world, good with a mic on his hands, awesome charisma and a devastating moveset with a combination of technical wrestling, hard hitting style and some high flying stuff lol, and I don't care about his weight."
Rating: 10.0
Sentiment: 0.29604166666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: skranserwrote on 08.05.2016:[6.0] "Le habría puesto una nota superior hace unos años, pero el Chris Hero de ahora es alguien bajo de forma que hace tiempo pasó su mejor tiempo. Además, la nota media que tiene me parece una barbaridad."
Rating: 6.0
Sentiment: 0.7
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: downtown2wrote on 11.04.2016:[5.0] "Eine Tragödie, wie es mittlerweile um Chris Hero steht. Seit seinem Scheitern bei NXT sind drastische Verfallserscheinung zu beobachten, man erkennt ihn irgendwie kaum mehr wieder. Seit er von der WWE mangels Fitness und Einstellung entlassen wurde, ging es wegen genau diesen Kritikpunkten immer weiter bergab. Halbherzige Matches und Micwork, dazu aufgedunsen und träge. Sollte ihm aufgrund dieses geplatzten Traums der Zahn gezogen worden sein, sollte er die Stiefel an den Nagel hängen, bevor sein glänzender Ruf in den Indies noch weiter zu bröckeln beginnt. Ich glaubte vor NXT persönlich, dass er einen ähnlich Weg wie CM Punk gehen könnte. Irre wie zwei ähnlich großartig veranlagte Männer (Nicht nur Punk, sondern viele andere seiner ehemaligen ROH Kollegen) so derart unterschiedliche Erfolge in ihren Karrieren erzielen könnte. Sehr sehr schade um Hero, ich dachte ihm gehöre die Zukunft - nun scheint es zu spät."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: NoNamewrote on 30.03.2016:[8.0] "Ich kann Leider nur 8 Punkte geben, das liegt an seiner Aktuellen Situation, Ich hätte ihm liebend gerne 9, sogar 10 Punkte gegeben, allerdings hat er einiges an Awesomeness verloren, seit seinem NXT Run. Hoffentlich findet er zu alter stärke zurück, dann gibts auch die volle Punktzahl."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ApexOfEvolutionwrote on 29.03.2016:[7.0] "Technisch sicherlich ein klasse Wrestler und volle 10 Punkte wert. Hat mich aber am Mic nie wirklich 100% überzeugt, auch wenn er nicht schlecht ist (8 Punkte). Charisma ließ auch immer ein wenig zu wünschen übrig, vor allem mit diesem Superman-Krams und auch bei seinem WWE-Run (6 Punkte). Damit wären wir bei 8 Punkten, aber ich muss leider noch einen für die Leistungen in der letzten Zeit abziehen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DaBBwrote on 17.02.2016:[6.0] "Vor einigen Jahren hätte ich ihm noch 2-3 Punkte mehr gegeben, was er seit seinem Aufenthalt bei NXT allerdings abliefert ist ziemlich traurig anzusehen. Kaum noch etwas ist übrig vom agilen, aufregenden Wrestling Talent Chris Hero. Ich dachte ja, schlimmer als sein Superman Outfit kann es nicht werden, nachdem er das glücklicherweise irgendwann eingemottet hat. Aber bei seiner Riesenwampe die engen Eierquetscher auszupacken grenzt schon an Körperverletzung, das ist echt nicht feierbar. Ab und zu haut er noch die Tempowechsel raus, die ihn zu einem meiner ersten Indy Favs gemacht haben, den Rest seines Arsenals hat er aber gegen eine gemächliche Matchführung und immer weniger kreative Elbow Strikes eingetauscht. Es scheint fast so, als würde er nur noch mit angezogener Handbremse wrestlen. Für einen Großteil der Fans scheint das ja offensichtlich zu reichen, also kann man ihm das nicht mal unbedingt vorwerfen. Ich bin allerdings schwer enttäuscht von seiner jüngsten Entwicklung, hoffentlich überwindet er sich irgendwann doch mal und schwingt seinen Arsch ins Gym."
Rating: 6.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Haberfeldtreiberwrote on 16.01.2016:[7.0] "Mag ein solider Wrestler sein und zeigt von Zeit zu Zeit tolle Matches, doch in seiner langen Karriere nie den großen Durchbruch geschafft. Ich selbst werde mit ihm auch nicht richtig warm irgendwie ein ewiger Midcarder der in der Indy Szene aber besser aufgehoben ist als in den Top Promotions deshalb 7 Punkte."
Rating: 7.0
Sentiment: 0.55
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Bedderwrote on 19.10.2015:[9.0] "Chris Hero has to be one of the best technical wrestlers out there.  He can have an absorbing match with seemingly anybody.  Has had some unbelievable matches for PWG in the last year or so with Bola 2014 and his recent wars with Tommy End and Mike Bailey standing out as brilliantly entertaining."
Rating: 9.0
Sentiment: 0.20714285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: letsgeweirdBAYBAYwrote on 18.10.2015:[9.0] "In my personal opinion Chris Hero is sensational.  I see where a lot of users are saying that he is boring or overrated and while they are definitely entitled to their own opinion I have to strongly agree.  To me, Hero is very diverse in the ring but its mainly subjective to a match by match basis.  I personally wouldn't mind if all he did was throw strikes because he is so damn good at it.  As far as his weight or body type is concerned, I could care less.  I see a lot of people attacking his weight and appearance in various forums. I don't watch wrestling to look at the bodies of the performers but if you do then I just say to each his own.  Dusty Rhodes sure didn't suffer from having an unconventional physique... and to say that Chris Hero's weight is causing his in-ring performance to suffer then I strongly advise you to watch his match with Tommy Dreamer at House of Hardcore 9, he does multiple kip ups only to follow it up by a kip up without using his hands/arms.  The guy is a beast to me, and enjoy every match that I have seen him in.  I agree that everyone is entitled to their opinion and I respect other's opinions but facts are facts."
Rating: 9.0
Sentiment: 0.148015873015873
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: CGNRavenswrote on 18.10.2015:[7.0] "Chris is awesome! Ja er war awesome, sagen wir so. Als er zu WWE ging war ich tot traurig, kein Spaß! Da ging einer meiner Lieblinge zum Branchenprimus und ich konnte mich absolut nicht freuen, weil ich ihn wirklich vermissen werde (dachte ich). Hero kam dann, ohne TV Auftritt in den Main Shows, zurück in den Indy-Zirkus und sah chubby aus, und außer Form. Auch bei wXw wollte der Funke nicht mehr überspringen."
Rating: 7.0
Sentiment: 0.7222222222222222
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Blade Bourdeauxwrote on 08.10.2015:[5.0] "Handwerklich über jeden Zweifel erhaben. Formmäßig noch nicht auf WWE Niveau und Sorry aber die WWE ist eben auch Optik (in beide Richtungen). Dieses Manko begleitet ihn schon lange und nicht nur Samoa Joe ist ein gutes Beispiel dafür was eine beliebige Optik einem vieles verbauen kann. Entweder man ist Six-Pack Träger oder man trägt das ganze Fass. Update: 6 Punkte Der Vergleich ist sehr schlecht für ihn: Punk -> längster Champion Bryan -> mehrfacher Titelträger Cesaro -> US Champ er hat es nicht geschafft, seine Fähigkeiten reichen nicht für die WWE und damit ist er nicht auf einer Stufe mit den letzt genannten. Stand jetzt ist er der Marty Jannetty der Kings of Wrestling. Auch 2014 bisher nicht besser, insgesamt extrem overrated"
Rating: 5.0
Sentiment: -0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Claudio Herowrote on 25.04.2015:[10.0] "Chris Hero ist für mich einer der 10 besten Indy Wrestler aller Zeiten ... Für mich grandios im Ring und am Mic ... für seine WWE Zeit konnte er nicht viel, da scheiterte er an einem blinden und talentfreien Triple H der für mich eh keine Ahnung vom wirklichen Wrestling hat. Seine Zeit bei IWA Mid-south und die Fehde gegen CM Punk ist legendär, aber auch seine Super Matches bei ROH, NOHA, Chikara, Evolve, Dragon Gate USA vor allem auch WxW ... er konnte eigentlich immer überzeugen ... für mich mehr als verdiente 10 Punkte für einen Mann der nie einen großen Titel gewann"
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Viper99wrote on 14.04.2015:[10.0] "! Er ist leider nicht eines der Arbeitstiere im bezugs auf das tägliche Trainieren, wesshalb er leider aus der WWE entlassen wurde, aber er ist ein verdammt guter Worker. Selbst Heutzutage mit mehr Gewicht ist er super wie man vor kurzem bei PWG auch gesehen hat. Ansonsten ist er auch noch stark am Mic und besitzt das nötige Charisma. Die Kings of Wrestling Zeit war auch fantastisch und ich hatte immer auf eine Reunion in der WWE gehofft...."
Rating: 10.0
Sentiment: 0.06666666666666665
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Uap09wrote on 10.03.2015:[8.0] "Immer noch einer der Besten im Indybereich, auch wenn er in letzter Zeit körperlich etwas nachgelassen hat. Schade, dass er es bei der WWE nicht zu mehr gebracht hat, verdient hätte er es allemal."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Maryanwrote on 04.03.2015:[8.0] "Chris is awesome, just like his song suggests but over the years the age put his amprent on him... I'm not saying he doesn't have it anymore, but he got a bit of belly :) and he's kind of stiff in the ring. Overall, when I think about Chris I think about his elbows, brouge kicks and King of Wrestlings. Heeeerooo, Heeerooo, Heeerooo...."
Rating: 8.0
Sentiment: 0.37714285714285717
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TAWPTierJustinwrote on 29.12.2014:[9.0] "I'm glad Chris Hero is back on the indies and he's still doing what he loves to do which is wrestle and he's free to go all out in his matches again. At the time though when Chris got released from WWE cause he wasn't trying to get himself more fit, I didn't understand why that was and just looked at it as a bad mistake by WWE for letting him go. But nowadays, I still feel it's somewhat of a mistake but looking at Chris Hero's matches from PWG and Evolve a couple months ago, I honestly see now why WWE released him cause Chris has gained a significant amount of weight which I feel is kind of bringing him down in the ring a bit. Either way I feel bad for him cause he's such a gifted wrestler and he's such a world champion caliber talent that his talents and abilities deserve to be showcased at Wrestlemania. Like I said, I'm glad Chris Hero has been back on the indies for a little over a year now and he's still doing what he loves to do but I just hope he gets himself back in better shape than he was before not for any of us but for himself."
Rating: 9.0
Sentiment: 0.16483918128654973
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Leonewrote on 24.12.2014:[9.0] "The man was never built.  He's either thin, fat or a bit flabby, and that's basically the only reason he didn't get far in the WWE, because he didn't have the physique of his best tag partner, Cesaro.  Other than that, he's easily 1 of the best 6'5 technical wrestlers in the world, while also having an intense and brilliant strong style, submission wrestling background and the ability to be very acrobatic.  Other than Kevin Steen, he was the best CZW Iron Man Champion (and put on great title defenses), and he has a lot of charisma.  Compared with his potential, he's an underachiever - and hopefully we'll see great things from him within the next 5 years."
Rating: 9.0
Sentiment: 0.3453703703703704
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: 8BitLegendwrote on 03.11.2014:[7.0] "Ich habe nicht so viel von ihm mitbekommen. Ein paar ROH-Auftritte und seine komplette NXT Zeit. Von den Anlagen her ähnelt er CM Punk und man hätte bei WWE sicherlich deutlich mehr aus ihm herausholen können, wenn es denn geklappt hätte. Mag sein, dass er nicht 100% durchtrainiert war, aber so oberflächlich sollte man nicht sein einen Wrestler über das Vorhandensein eines Sixpacks zu definieren. Ich denke er befindet sich jetzt im letzten Drittel seiner Karriere und wird noch 5-6 Jahre die Indies beackern, es ist nur schade dass er die großen Bühnen wahrscheinlich nicht mehr sehen wird."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: GlobalSportsGamerwrote on 20.10.2014:[10.0] "Extraordinary wrestler. WWE really made a mistake in letting him go. Extremely agile and quick for a big guy and an amazing innovator, technician and ring general. One of the best of all time in terms of brawling."
Rating: 10.0
Sentiment: 0.3770833333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: MrJamesssswrote on 05.06.2014:[8.0] "He's (maybe) the best wrestler in USA behind D-Bryan. But I prefered him when he was "Mr. Cravate" instead of "Mr. Elbow" as he's today. He has a big moveset, charisma and solid psychology, but sometimes he's sloppy and slow. Anyway, he's overall one of the best wrestlers today."
Rating: 8.0
Sentiment: 0.11041666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DieOffenbarungwrote on 29.05.2014:"Werde hier mal nur ein Kommentar hinterlassen, weil ich Ihn nicht wirklich bewerten kann und auch nicht möchte. Weiß einfach nichts mit Ihm anzufangen, klar er kann was im Ring, gehört definitiv zu den bessere, aber und das ist das großer ABER, er ist von den der Form her nicht konstant. Zudem bin ich am Mic von Ihm nicht überzeugt und es fehlt ein wenig an Charisma. Vermutlich außerhalb der WWE besser platziert."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: SRwrote on 12.05.2014:[9.0] "Meist ein Garant für gute Matches und völlig zurecht einer der wohl meist gebookten Indyleute seit seiner Rückkehr in diese Szene."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: elpegadowrote on 23.03.2014:[8.0] "Very good all-around wrestler, a bit sloppy sometimes. Has improved loads throughout his career."
Rating: 8.0
Sentiment: 0.23111111111111104
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: RJLwrote on 05.03.2014:[10.0] "Chris Hero is nothing short of pure wrestling talent, It's a shame that the WWE dropped the ball on him."
Rating: 10.0
Sentiment: 0.10714285714285714
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: LS Incwrote on 28.12.2013:[10.0] "Chris Hero is, if not the best, one of the best wrestlers in the world."
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: yanuswrote on 26.12.2013:[8.0] "Very good wrestlers, but not on the level of Danielson, Punk or Samoa Joe (during his time in ROH). Excels in long matches, but isn't really suited for the short wwe-style of match (although there are exceptions, like his match with Bobby Fish). Should really work on his physique. His main strengths remain his stamina, technical-prowess and his mic-skills."
Rating: 8.0
Sentiment: 0.23777777777777775
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: daniel cassidywrote on 13.11.2013:[10.0] "Chris Hero is the perfect wrestler; there is nothing bad about him at all, it's WWE's mistake to have released him."
Rating: 10.0
Sentiment: 0.15000000000000008
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Martyrswrote on 09.11.2013:[10.0] "Was zum Teufel ist los mit der WWE? Warum entlässt man einen so guten Wrestler, ohne ihm jemals die Chance im Main-Roster gegeben zu haben und gibt Pfeifen wie Big E. Langston oder Ryback einen Push...  Chris Hero back with the Indy-Circuit. Vielleicht besser so.  Von mir klare 10 Punkte für seine Fähigkeiten im Ring und sein überdurchschnittliches Charisma."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: That 70s Blokewrote on 26.07.2013:[10.0] "The only reason he isn't on the roster yet is because Vince thinks he's too fat!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Rinskywrote on 26.07.2013:[10.0] "Sehr gut im Ring, tolle Ausstrahlung, tolles Gimmick und spitze Micwork. Ich frage mich schon seit Jahren, warum er nicht längst den ROH World Title halten durfte. Jetzt, da er auch etwas durchtrainerter ausschaut, könnten sich die Tore für die beiden großen Ligen öffnen. Das Können um sich dort zu beweisen hat er auf alle Fälle."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Lecterwrote on 06.06.2013:[8.0] "Good at everything, really. Quality matches, decent promos, believable character."
Rating: 8.0
Sentiment: 0.39166666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: PhenomenalTLDwrote on 21.01.2013:[10.0] "He is already one of the greatest independent wrestlers of all time. A former PWG World Champion, CZW Champion, and IWA MS Champion. He has won tag team titles in ROH, CHIKARA, and CZW. The man is a true force in wrestling and he is making his mark in FCW/NXT. When he gets called up to the main WWE roster, he will show his skills in the ring and on the microphone. Hero/Ohno is poised to be a TRUE star in the world of wrestling."
Rating: 10.0
Sentiment: 0.3111111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Luke1984wrote on 04.01.2013:[10.0] "Betrachtet man seine Gesamtkarriere kanns hier nur die 10 geben. Ich habe früher ein wenig CZW und IWA-Mid South geguckt und schon da hat er mir sehr gut gefallen. Bei CHIKARA und ROH hat er noch mehr aufgetrumpft und so wie er sich jetzt in der WWE entwickelt wird aus ihm mal ein Main Eventer im Hauptroster. Ist sowohl im Singles als auch im Tag Team Bereich bestens aufgehoben und Charisma und Mic-Skills sind ebenso mehr als nur verhanden."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: VanderVaartwrote on 12.09.2012:[9.0] "Wife Beater und seine Mitgliedschaft bei Sweet & Sour waren zwar großer Mist und auch seine Statur ist noch ausbaufähig. Dafür auch nicht die volle Punktzahl, aber Heros Entrance und Wrestling sind jedesmal Main-Event würdig. Mehr Pops als er bekommt doch kaum jemand."
Rating: 9.0
Sentiment: 0.09999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Sascha311wrote on 25.08.2012:[5.0] "Zwar ganz annehmbar im Ring aber zum Maineventer fehlt ihm einiges was man immer wieder an seinen Matches sieht."
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: BrotchMrToastwrote on 16.08.2012:[10.0] "Sehe ich richtig, dass nur manche ihn wegen seinen Körperbau bewerten, und deshalb sagen, dass er nichts in WWE zu tun hat? Und auch noch sein gimmick? Ich versteh euch echt nicht, Man soll den Wrstler an sich bewerten, und mit dem Gimmick, hat er ja nichts zu tun, das entscheidet die Liga, in dem Fall FCW, aber er ist einer der Technich besten, die ich schon lange gesehen habe, und das ist Fakt!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Damon Strikerwrote on 28.05.2012:[10.0] "Look, Ausstrahlung und Mic-Skills sind über jeden Zweifel erhaben. Im Ring ebenfalls begabt und mit einem aussergewöhnlichen Stil. Ich hoffe, er wird es weit bringen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: alewrote on 27.04.2012:[10.0] "Wie kann die WWE Chris Hero nur in die Farmliga stecken? Raus mit ihm rein ins Main Roster und gleichmal ab ins Main Event, Dreiecksfehde mit CM Punk und Daniel Bryan und die Welt ist in Ordnung.  Ansonsten zum Wrestler Chris Hero muss man wohl nicht viel sagen, meiner Meinung nach auch der bekannteste Indy Wrestler der Welt."
Rating: 10.0
Sentiment: 0.16666666666666666
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: devilsoldierwrote on 20.12.2011:"Gerüchte besagen das die WWE ihr Angebot zurückgezogen hat weil der durch den Drogentest gerasselt ist wegen zu hoher Testosteronwerte. Ich hoffe er fährt die wieder runter und wird noch eingestellt. Nicht Nigel 2. 0 bei TNA das muss nicht sein."
Rating: No rating found
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: cookie monsterwrote on 27.10.2011:[10.0] "He is my Hero^^ Ach wie ich solche großartigen Wrestler nur in ROH liebe."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: chaoswrote on 24.09.2011:[10.0] "Unglaublicher Typ. Nahezu perfekt im Ring! Hoffe das er zur WWE kommt und sein können zeigen kann."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: treeofworldswrote on 01.08.2011:[10.0] "Nicht nur, dass ich schon 2007 ein großer Hero-Fan war. Er hat es auch noch geschafft sich seit dem deutlich weiterzuentwicklen und sogar noch zu verbessern. Ich hoffe mal wir dürfen auch in der WWE noch seine unfassbaren technischen Fähigkeiten zu Gesicht bekommen. Chris is awesome!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Double Jwrote on 23.05.2011:[10.0] "Chris Hero, was soll man da groß sagen? Charismatisch, grandioser Look (wie ich finde^^), unglaubliche In-Ring Fähigkeiten - meines Erachtens nach der beste aktive US-amerikanische Wrestler!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Hu-Manwrote on 18.05.2011:[10.0] "Hero ist einfach der Kracher. Ich liebe seine harten und stiffen Aktionen und fast noch lieber ist mir sein überragendes Selling. Am Mic ist er ebenfalls ne Bombe und so kann man dem charismatischen K. O. Kid nur 10 Punkte geben."
Rating: 10.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Jerichoholicwrote on 05.05.2011:[9.0] "Meiner Meinung nach einer der besten und vielseitigsten Wrestler der Indy Szene, der durch seine tolle Ausstrahlung und seinen durchaus Mainstream kompatiblen Look eigentlich schon lange in den Fokus der großen Ligen hätte geraten müssen. Gerade mit seinem Gimmick als "Young Knockout Kid" hätte ich mir Hero so gut im WWE Programm vorstellen können - er ist eben nicht der leichtgewichtige und gesichtslose Indy Wrestler, sondern ein echter Entertainer. Im Tag Team mit Castagnoli einfach grandios, als Singles Wrestler allerdings nicht minder gut."
Rating: 9.0
Sentiment: 0.1
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Aquifelwrote on 04.05.2011:[10.0] "Technisch und athletisch ist Hero sowieso einer der besten Wrestler, die sich im Ring tummeln. Dazu kommt ein schön stiffes Striking (zumindest sieht es oft so aus) und ein erkennbarer Sinn hinter seinen Aktionen. Sowohl als Singles Wrestler, als auch im Team mit Claudio, erstklassig."
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Baszdmegwrote on 02.05.2011:[10.0] "Phänomenaler Wrestler mit sehr viel Ausstrahlung und gutem Micwork. Verrückt, dass die WWE sich noch nicht gemeldet hat! Spätestens seit er den Look verändert und etwas an Muskelmasse zugelegt hat, hätte er sich seine Chance verdient. Wer weiß, vielleicht muss ja noch die Mähne ab. Aber dann wird es allerspätestens Zeit, kann ihn mir sehr gut bei NXT oder innerhalb einer Storyline mit CM Punk vorstellen."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: SoulTouchaZwrote on 30.04.2011:[10.0] "Grandios, einfach grandios! Als "That Young Knockout Kid" auf jeden Fall besser als der Superhero, in meiner Ansicht! Wrestlerisch auf sehr sehr hohem Niveu!"
Rating: 10.0
Sentiment: 0.15625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Rated R Champwrote on 09.03.2011:[10.0] "Chris Hero bringt eigentlich alles mit, was man von einem Wrestler verlangen kann, er ist fantastisch im Ring und kann dort verschiedene Stile mitgehen, er ist sehr beweglich und seine Aktionen sehen quasi nie unsauber aus. Zudem hat er einiges an Charisma und kann hervorragende Promos halten. Fantastisches Gesamtpaket. Ausserdem gefällt mir in letzter Zeit (bei ROH) wieder deutlich besser als zu Sweet 'n Sour Zeiten."
Rating: 10.0
Sentiment: 0.09999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Sandmannwrote on 09.03.2011:[9.0] "Hero zu bewerten ist echt schwierig. In letzter Zeit als Young Knockout Kid gefiel er mir sehr gut. Seine Zeit bei Sweet ŽnŽ Sour fand ich ehrlich gesagt zum kotzen. Mit Castagnoli als Kings of Wrestling natürlich auch Gold wert. Sehr cooles Tag Team. Als Führer der CZW Invasion auch sehr unterhaltsam. Allerdings hab ich mittlerweile auch mehr alte Sachen von ihm gesehen so dass es noch ne Nummer mehr gibt. Genialer Wrestler"
Rating: 9.0
Sentiment: 0.09999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Matt4Wrestlingwrote on 17.02.2011:[10.0] "Einer der besten und Fan-freundlichsten Wrestler, die ich je getroffen hab! Das er trotz die härte und Masse die er jetzt aufbringt immer noch so eine guter High-Flyer sein kann beeindruckt mich zutiefst!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Necronwrote on 03.12.2010:[7.0] "Ein toller, kreativer und innovativer Wrestler. Wenn er etwas "bodenständier" im Ring arbeiten würde, träfe er meinen persönlichen Geschmack wohl noch besser, aber man kann's sich ja nich aussuchen."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Excellence of Executionwrote on 14.11.2010:[9.0] "Sehr guter Mann, der sowohl im Team mit Castagnoli als auch allein zu überzeugen weiß. Am Mic und was seine Psychologie im Ring anbelangt für mich einer der besten bei ROH. Hat im Grunde genommen alle Qualifikationen, um auch auf prominenter Bühne zu bestehen. Aber als nun regelmäßiger ROH Gucker sehe ich ihn ganz gerne da, wo er gerade ist^^."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Aesopwrote on 18.10.2010:[10.0] "Hero ist nachdem Bryan und Nigel weg sind, der beste Indy Wrestler, die anderen beiden hatten ihm immer etwas vorraus. Das ändert aber nichts an der Tatsache das er einfach großartig ist und war, im Ring meistens ziemlich unterhaltsam und auch außerhalb des Rings gut."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ARIZAwrote on 06.09.2010:[10.0] "Einer der besten, die es gibt und das schon seit einigen Jahren. Konnte schon immer überzeugen und das, obwohl er sich über die Jahre sehr verändert hat."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Ryklon Stephenswrote on 25.08.2010:[7.0] "Auch nach einigen Jahren bin ich von Hero nicht wirklich begeistert. Starke Matches kann er durchaus zeigen, allerdings ist das auch das einzige was mir an ihm gefällt."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: alsb683wrote on 23.08.2010:[10.0] "Chris Hero hat eine Entwicklung hinter sich, die ihresgleichen sucht. Vom etwas nerdig aussehenden Indy-Wrestler (Der trotzdem schon immer super war) zu einem Top-Wrestler mit Superstar-Look. Hier kommt man an einer 10 nicht vorbei, da jedes Hero Match eine Klasse für sich ist.  Es ist zu hoffen, dass ihm noch der letzte große Schritt gelingt und er CM Punk und Bryan Danielson folgen kann. Verdient hätte er es allemal."
Rating: 10.0
Sentiment: 0.3333333333333333
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Whole FN Showwrote on 18.08.2010:[9.0] "Chris Hero fand ich als Teil der King of Wrestling, als CZW Leader, als That Young Knockout Kid und in seiner Zeit bei IWA-MS ziemlich unterhaltsam und gut. Einziges Manko war mMn die Zeit bei Sweet and Sour Inc. die mir irgendwie überhaupt nicht gefallen hat."
Rating: 9.0
Sentiment: 0.125
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Erasedwrote on 22.05.2010:[9.0] "Liefert fast immer gute und vorallem sehenswerte Matches ab. Technisch sehr begabt."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Straight Edge Jerichoholicwrote on 28.04.2010:[10.0] "Chris is Awesome!  Eindeutig einer der besten die ROH bzw. die Indy Szene hat!  Der Kerl rbingt klasse Matches zustande wie z. B bei IWA MS gegen CM Punk die waren der Hammer!  Deswegen 10 Punkte"
Rating: 10.0
Sentiment: 0.6
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Blazewrote on 28.04.2010:[10.0] "Goßartiger Wrestler, der sowohl im Ring als auch am Mic Weltklasseleistungen bringt. Jahrelang konstant hohes Level mit wahren Schlachten im Ring. Wer ihm verwirft, er habe keine Ahnung von Ringpsychologie hat noch nicht viel von ihm gesehen. Kann außerdem von Matwrestling bis Brawling, europäischem Catchen bis Puroresu alles gehen und holt aus beinahe Jedem ein gutes Match heraus. Was will man ihm vorwerfen? Selbst sein schlechtes Wrestling Gear hat er aussortiert. Neigt manchmal zu stark zum langsamen Brawling, hat erst vor kurzem angefangen ins Gym zu gehen, aber seine Klasse ist einzigartig. Höchste Wrestlingskills, Micwork, Charisma und einen beinahe Rockstarähnlichen Hype unter Indy Fans hat er sich mittlerweile aufgebaut. Egal ob im Tag Team oder als Single Wrestler - absolutes Championship Material!"
Rating: 10.0
Sentiment: -0.14464285714285713
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: StefanKwrote on 21.04.2010:[10.0] "Chris Hero ist einer der Wrestler, die ich sehr gerne sehe, da er immer 100 % gibt und z. B. beim Carat 2010 oder the Vision, ausschliesslich geniale Matches abliefert."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: catchfanwrote on 14.04.2010:[7.0] "Muss sich noch körperlich verbessern, um in der WWE oder TNA mithalten zu können. Sonst gut."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: THE GAME 4-EVERwrote on 11.04.2010:[8.0] "2003 - 2008 sind das 10 Punkte gewesen. Der momentane Stil und Young KnockoutShit sind allerdings sowas zum vergessen und schlecht. Wie man sich freiwillig so auf seine Elbows festbeißen kann, die allerdings gewaltig knallen, ist mir schleierhaft. 2009- Heute sind das nur noch 6 Punkte !"
Rating: 8.0
Sentiment: -0.1375
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Finswogglewrote on 19.03.2010:[10.0] "Chris Hero ist einfach grandios. Habe diverse Matches von ihm gesehen und wurde noch nie enttäuscht. Technisch brilliant und äußerst stiff- 10 Punkte."
Rating: 10.0
Sentiment: 0.34285714285714286
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Perfectionwrote on 07.03.2010:[10.0] "Chris is awesome! Ein super netter Kerl... hab ihn gestern bei der WXW persönlich kennengerlent und er ist einfach nur cool und freundlich. Im Ring überzeugt er mich komplett und am Mikro hat er es drauf. Ich hoffe, dass er bald noch einen nächsten Schritt gehen kann und den Durchbruch in der WWE oder TNA schafft."
Rating: 10.0
Sentiment: 0.561111111111111
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: The Rated R Superstar EDGEwrote on 03.03.2010:[10.0] "Chris Hero ist jetzt wo Desmond Wolfe und Daniel Bryan weg sind der beste Indy-Wrestler. Er hat unglaublich viel Charisma und seine in Ring Skills sind der Hammer. Er solte es auch mal bei der WWE oder TNA versuchen. Das Potential dazu hat er alle mal."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: The Crown Jewelwrote on 08.02.2010:[9.0] "Ist immer im Stande ein gutes bis sehr gutes Match abzuliefern. Dazu noch ungemein charismatisch. Zur Zeit einer meiner Favoriten."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Anti-Championwrote on 06.02.2010:[9.0] "Nachdem ich mir in den letzten 2 Wochen mehrere Hero Matches angeschaut habe (alte und neue) muß ich meine Meinung ändern, er hat verdammt gute Matches abgeliefert, vorallem beim BOLA 2008 (und ein paar anderen Indyshows) konnte er mich voll überzeugen."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: RoHSupporterwrote on 27.01.2010:[10.0] "Chris Hero ist mit Bryan Danielson das beste was die Wrestlingwelt zu bieten hat. Er hat eine Menge Charisma seine IOn-Ring Skills sind überragend und am Mic ist er auch noch stark, nur sein neues Attire ist Müll. Er wird mal ein ganz großer da leg ich mich fest, er ist einfach AWESOME! 10/10"
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TheLoudMouthwrote on 25.01.2010:[10.0] "CHRIS IS AWESOME! Chris Hero gehört einfach zu den besten Wrestlern der Welt - zudem besitzt er haufenweise Charisma und ist einfach stark am Mic. 10 Punkte."
Rating: 10.0
Sentiment: 0.4
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Hypocrisywrote on 24.01.2010:[10.0] "Ist natürlich nur meine subjektive Einschätzung, aber was gibt es für Gründe hier nicht die 10 Punkte zu vergeben? Chris Hero ist sowohl von den in-ring-skills wie auch am mic einfach einer der Besten. Im Team mit Larry Sweeney, Sara del Ray und Bobby Dempsey einfach göttlich!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: lapenowrote on 14.12.2009:[10.0] "Hero ist für mich ein möglicher Champion in ROH. Auf seinen Schultern ruht die Zukunft."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: alexshelley84wrote on 09.12.2009:[10.0] "Würde ich auch mit 11 Punkten bewerten wenn es gehen würde!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: MrSmackdownwrote on 30.11.2009:[9.0] "Sollte er aus den Jobber Klamotten raus kommen und seinen Penner Bart abrasieren und endlich wieder Chris HERO sein. Dann bekommt er wieder 10 Punkte."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: DJ MaSchwrote on 12.09.2009:[10.0] "Mein Lieblings Wrestler zur Zeit. Er kann so gut wie jeden Wrestling Style gehen, holt gegen nahezu jeden Gegner ein gutes Match raus und ist zudem charismatisch as hell. Am Mic ist zudem er auch sicher. Chris Hero is my Hero."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: AMMOwrote on 28.08.2009:[10.0] "Einer, wenn nicht DER beste WRestler der Welt. Live der helle Wahnsinn!"
Rating: 10.0
Sentiment: 0.17045454545454544
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Marco Ewrote on 12.08.2009:[6.0] "Strahlt schon etwas aus und ist sicher ganz unterhaltsam, als Wrestler finde ich ihn aber irgendwie etwas überbewertet! Natürlich hab ich auch von ihm schon einige sehr gute Matches gesehen, aber alles in allem, ist er nicht mein Fall und für mich nicht viel mehr als Mittelmaß."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Thomas Carlsonwrote on 19.07.2009:[8.0] "Eigentlich bringt Hero alles mit was man braucht. Gut die Klamotten sollte er wechseln. Ich weiß aber auch nicht was ihn bremst. Zwar zeigt er bei ROH gute Matches aber er bleibt nach guten Ansätzen immer wieder stecken. Vielleicht funktioniert er nur in einer Liga wo er der alleinige Star ist. Wenn die WWE mal anrufen würde dann hätte er wohl die wenigsten Probleme sich umzustellen. Er könnte jederzeit sein Move Arsenal umstellen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: homicidal cena michaelswrote on 29.06.2009:[10.0] "Chris ist am Mic sehr gut Wrestlerisch sehr gut und besitzt Ausstrahlung. Er weis immer zu überzeugen. Chris is awesome!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Babuswrote on 01.05.2009:[6.0] "Technisch sicherlich kein schlechter, aber bisher ist der Funke bei mir nie wirklich übergesprungen. Könnte vielleicht daran liegen, dass die meisten Matches, die ich von ihm gesehen habe, RoH-Material sind und seine Auftritte dort anscheinend als seine schwächeren gelten. Dass Hero aber irgendwann ein Mainstream-Star werden sollte, kann ich mir wirklich nicht vorstellen. Denn optisch fällt mir wirklich kein ernstzunehmender Wrestler ein, der so weit vom Superstar-Look entfernt ist."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Mick Funkwrote on 17.04.2009:[8.0] "Göttlicher Worker, dem alleine der Look zum absoluten Star fehlt (schlechter Körperbau und albernes Outfit)."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Soerenwrote on 03.02.2009:[9.0] "Einer der komplettesten Worker überhaupt. Kann fast alles, aber zur Bestwertung fehlt ihm einfach noch etwas."
Rating: 9.0
Sentiment: 0.2
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: ShakDragoonwrote on 19.01.2009:[10.0] "Gehört für mich in eine Reihe mit Chris Jericho und CM Punk... also ein absolutes Total-Package, das alles mitbringt, was ein perfekter Wrestler braucht! Allerdings gefällt mir seine derzeitige Position bei ROH nicht so sehr, obwohl ich die Sweet 'n' Sour Inc. eigentlich mag. Da muss einfach noch mehr drin sein."
Rating: 10.0
Sentiment: 0.09999999999999998
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Herr der Kritikwrote on 30.12.2008:[7.0] "Mir persönlich unsymphatisch, spreche ihm Charisma klar ab, im Ring jedoch immerhin gut."
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Father Nelsonwrote on 24.12.2008:[10.0] "YouŽve got to see this guy live to belive how good he really is."
Rating: 10.0
Sentiment: 0.34545454545454546
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: 150pwrote on 14.12.2008:[9.0] "Wurde nach seinem Carat Sieg etwas schwächer, dazu kommt, dass er bei ROH nie die Leistungen zeigt (zeigen darf), die er woanders bringt. Bei PWG (u. a. ) jedoch großartig."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: domi1984wrote on 04.12.2008:[5.0] "Für mich ist er overated... ich weiß nicht, ich mag ihn irgendwie nicht. Ist nicht mein Geschmack. Da gefallen mir andere im Indy Bereich deutlich besser"
Rating: 5.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Eddiewrote on 28.11.2008:[9.0] "Jedes mal wenn Hero nach Deutschland kommt, muss ich ihn einfach sehen. Seit meinem ersten Live Event im Oktober 07 in Essen bin ich schon von ihm begeistert. Einziges Problem ist, das er es in ROH nicht schafft, richtig rüber zu kommen. Mittlerweile mit der Fehde gegen Strong schon etwas mehr, aber noch nicht so wie man es gerne hätte, deshalb 1 Punkt abzug, 9 Punkte."
Rating: 9.0
Sentiment: 0.28484848484848485
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: nacho83wrote on 17.08.2008:[10.0] "Der Mann hat alles was ein Wrestler braucht: Technik, Kraft, Charisma."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Knurkselwrote on 22.07.2008:[10.0] "Live einfach der beste Wrestler der Welt. Und auch auf DVD immer wieder überzeugend."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: wXw Fanwrote on 22.07.2008:[10.0] "Neben American Dragon das beste Komplettpaket zurzeit im Wrestling."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Chris Herowrote on 22.07.2008:[10.0] "Chris is awesome! Best in the world, best in the world! :-D"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: dariawrote on 26.05.2008:[9.0] "ich finde ihn ein klein wenig überbewertet, aber er gehört in jedem Fall zu den Besten"
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Baron-Bwrote on 15.05.2008:[10.0] "Es gibt Wrestler, die kommen einfach in einen Ring, wrestlen gut, weniger gut oder einfach nur so vor sich hin, verlieren oder gewinnen ein wenig in der Gegend herum, peppen das Ganze ggf. durch ein mehr oder weniger lustiges Gimmick auf, bluten vielleicht auch mal brutalst in der Gegend herum, ziehen sich irgendwann vom Wrestling-Geschäft zurück und hinterlassen eigentlich gar bis überhaupt nichts. Und es gibt Wrestler wie Chris Hero. Charisma pur, extrem hoher Unterhaltungswert, im Ring ein Allrounder wie er im Buche steht und so ganz nebenbei einer der besten Wrestler, weltweit. Im Team mit Claudio Castagnoli gottgleich, bei ROH ein Genuss, die Eddie Kingston-Fehde knüppelhart und selbst in den Abbruch-Hallen von IWA-MS ein stetiger Lichtblick. Ich hoffe, er bleibt dem Independet-Wrestling noch viele viele Jahre unverletzt erhalten."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Bogo Bogaczykwrote on 13.05.2008:[10.0] "Das beste seit geschnitten Brot. Best wrestler in the world!"
Rating: 10.0
Sentiment: 1.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Muffiwrote on 15.04.2008:[10.0] "Der beste Allrounder im US Wrestling. Schafft bei Ring of Honor im Moment leider nicht den Durchbruch, aber das kommt noch."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: AnFuwrote on 11.04.2008:[7.0] "Etwas überbewertet aus meiner Sicht! Hier kann ich auf keinen Fall die volle Punktzahl geben, Gründe dafür: als Heel bei ROH gefällt er mir überhaupt nicht; im Ring ist er 1, dass ist klar. Zudem hat er noch keine großen Titel gewonnen, dass ist zwar meckern auf sehr hohem Niveau, aber mehr als eine 3 gibts nicht!"
Rating: 7.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Matt Mackswrote on 10.04.2008:[9.0] "Der Grund für Heros Popularität ist wohl der, dass er in einer Live-Umgebung ungleich viel imposanter und besser wirkt als auf Tape. Bei Ring Of Honor leider noch nicht vollständig angekommen, ansonsten aber neben Bryan Danielson der wohl bekannteste und wichtigste amerikanische Wrestler ohne Mainstream-Vertrag."
Rating: 9.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Urbaner1982wrote on 26.03.2008:[8.0] "Yeah, Chris Hero. Our Hero, your Hero, my Hero. Auch schon sehr oft live gesehen und auch immer überzeugt gewesen. Bei ROH wirklich gut... kann sein Potential dort voll ausnutzen. Leider irgendwie im falschen Stable (Sweet & Sour Inc. ) darum auch keine 1 ;-)"
Rating: 8.0
Sentiment: 0.11727272727272726
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Kaffoe 666wrote on 24.03.2008:[10.0] "Einer der genialsten Wrestler überhaupt! Im US-Indy bereich seit Jahren unter den Top 5 und nun auf einem guten Weg in Japan. Zu seinen verdiensten in Europa muss man nicht viel sagen!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: TheBastion90wrote on 15.03.2008:[10.0] "Um Shaggy 2 Dope aus einer JCW Show zu zitieren: "This Guy should not be called Hero, he should be called Homo! ... Chris Homo" Das ging das ganze Match lang so weiter und ich habe mich nicht mehr eingekriegt vor lachen. Ich finde ihn sehr gut und er verkauft sich wirklich wunderbar. Ok, viele meinen, dass sein Talent etwaseingeschrängt ist, doch ein Spitzen Entertainer muss ja auch gut labern können und er kann das wirklich sehr gut!"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Aaronwrote on 25.02.2008:[6.0] "Hero hat sicherlich die richtige Einstellung zum Wrestling, aber er konnte mich bei ROH im Ring absolut nicht überzeugen! Er unterhält gut, aber er ist im Ring einfach noch nicht da wo er hingehört! Da ich bisher wenige gute Matches gesehen habe (außer ein paar einzelne von CZW und IWA Mid South) reicht es bisher noch nicht zu der Super Note! Kann ja alles noch kommen!"
Rating: 6.0
Sentiment: 0.26041666666666663
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Joeevil123wrote on 19.02.2008:[10.0] "Hero hat alles was ein Wrestler haben muß!  Tolles Charisma , klasse Micwork und was am wichtigsten ist , er ist verdammt gut im Ring."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Joe710wrote on 18.02.2008:[10.0] "Charismatischer Typ, mit enormer Ausstrahlung. Wer ihn schon einmal live gesehen hat, weiß was ich meine. Trotz seiner größe und Statur einer der besten Athleten im Pro Wrestling, die ich je zu Gesicht bekommen habe. Und ein Gimmick und entsprechendes Auftreten, dass jeden Zuschauer in seinen Bann zieht. Nur schade, dass er nur im Indy Bereich bekannt ist. Ich würde mir so sehr wünschen, dass er es einmal in eine Main Stream Liga schafft. Diesen Typen muss einfach jeder Wrestlingfan einmal zu Gesicht bekommen."
Rating: 10.0
Sentiment: 0.1515151515151515
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Giant2wrote on 23.01.2008:[6.0] "Um bei mir mehr als eine 3 zu bekommen, muss man sich schon auf großer Bühne durchgesetzt haben, was bei ihm (noch) nicht der Fall ist."
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: GothicBearwrote on 17.01.2008:[10.0] "Wohl derzeit definitiv einer der besten Wrestler Amerikas, der jeden Stil perfekt mitgehen kann. Leider fehlt bei ROH bisher noch der letzte Funke und das wirkliche "Breakout-Match". Ansonsten könnte er auch dort problemlos dauerhaft im ME stehen. Mic-Work, Charisma und Talent sind zweifellos im Überfluss vorhanden."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: mdbnasewrote on 13.01.2008:[6.0] "Guter Techniker und Indy-Ikone. MMN aber overrated!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: WCWlerwrote on 12.01.2008:[10.0] "Sehr guter und vor allem sehr unterhaltsamer Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Benny110106wrote on 11.01.2008:[8.0] "Der Indy-Wrestler der lezten Jahre ! ER kann jeden Stil gehen und ist der beste Allrounder der USA. In Europa so beliebt wie vorher nur Rambo oder Wanz. Genau wie Danielson würde ihn TNA oder WWE nur schaden."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: shannonmoorewrote on 10.01.2008:[8.0] "I know Chris Hero is ein sehr guter Wrestler und ich mag ihn vor allem bei seinen Deutschland Auftritten. Aber der letze Funke will trotz aller Sympathien noch nicht rüberkommen."
Rating: 8.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Remootwrote on 05.01.2008:[10.0] "Der Shawn Michaels der heutigen generation.. im gegensatz zu Colt Cabana und Bryan Danielson würde ich ihn z. b auch eine grosse karriere bei der WWE zutrauen!  Warum?  Weil er alles hat Die erforferliche grösse , das erforderlich micwork... interressantes auftreten auch ohn ein grossartiges gimmick (wie solls erst werden wenn er mal nen richtig gutes gimmick verpasst bekommt) Er kann alle matchrichtungen mitgehen ( selbst ultraviolent ist für ihn kein problem) Kurz gesagt er ist der Kompletteste und damit beste Wrestler der Welt neben Shawn Michaels, Kurt Angle und dem Undertaker."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Kathywrote on 26.11.2007:[10.0] "Meine Nummer eins! Chris ist einfach nur Klasse! Was er in einem Match zeigt, schaffen manche Wrestler nicht in Ihrer gesamten Karriere. Hero rocks...."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: LexLuger4everwrote on 17.11.2007:[10.0] "Abgesehen vom American Dragon ist der Hero wohl der Mann schlechthin im Indypendent Bereich und das zu Recht! Auch er verfügt über sensationelles In-Ring Talent. Von keinem Charisma kann überhaupt nicht die Rede sein!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Blue Meaniewrote on 25.10.2007:[10.0] "Einer der Besten und Innovativesten Wrestler der Welt! Frage mich, warum WWE und TNA sich den noch nicht "geschnappt" haben. Ist aber denke ich auch besser so, dass wir ihn "noch" im Independent Bereich sehen, denke mal, dass sich das auch schnell ändern kann. Die Verpflichtung von Colt Cabana bei WWE kam ja auch relativ schnell und übberaschend ..."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: CaptainCarnagewrote on 27.09.2007:[10.0] "Alles andere als 10 Punkte wäre IMO bei Chris Hero lächerlich. Wahnsinnig gut im Ring und am Mic. Daumen hoch!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Mediwrote on 07.09.2007:[10.0] "Hat u. a. gegen Eddie Kingston ja so was von einer geilen Fehde gehabt. Ist mein Lieblings Indy-Wrestler."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: PuroDragonwrote on 24.06.2007:[10.0] "Was soll man sagen, im Ring fantastisch genau wie am Mic, zurzeit mit Larry Sweeney wohl das unterhaltsamste Manager/Wrestler Duo"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Obermackerwrote on 24.06.2007:[6.0] "Kein schlechter Wrestler, hat aber noch nie ein Studio von innen gesehen! Deswegen wird er nie weiter kommen!"
Rating: 6.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Alex Shelleywrote on 24.06.2007:[10.0] "IMO zur Zeit Weltbester Wrestler knapp vor Bryan Danielson! Reicht schon als Kommentar, bringt es ja schließlich auf den Punkt. :)"
Rating: 10.0
Sentiment: 0.5
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: STRIGGAwrote on 24.06.2007:[10.0] "Our hero! Seit 2002 verfolge ich die Karriere Heros nun und immer wieder wusste er mich aufs neue zu begeistern. Ob seine Matches gegen CM Punk, von denen ich schon eines live miterleben durfte, oder seine neuerlichen Matches im wXw 16 Carat Tournament 2007... Hero ist ein absoluter Ausnahmewrestler."
Rating: 10.0
Sentiment: 0.13636363636363635
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Shellshockwrote on 24.06.2007:[10.0] "Best Wrestler On The Planet... who's Danielson? ! ;-)"
Rating: 10.0
Sentiment: 0.625
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: UltimateCarebearwrote on 24.06.2007:[10.0] "Das perfekte Paket: Großartig im Ring und am Mikro und hat zudem noch tonnenweise Charisma."
Rating: 10.0
Sentiment: 0.0
----------------------------------------
Wrestler URL: https://www.cagematch.net/?id=2&nr=870&gimmick=Chris+Hero
Comment: Sabu316wrote on 24.06.2007:[10.0] "Kann eigentlich jede Art von Wrestling im Ring mitgehen und gerade als Face ist er für mich unschlagbar gut!"
Rating: 10.0
Sentiment: 0.0
----------------------------------------
import pandas as pd

df = pd.DataFrame(wrestler_rating_comments)

df['numeric_rating'] = pd.to_numeric(df['rating'], errors='coerce')

correlation = df['sentiment'].corr(df['numeric_rating'])
print("Correlation between sentiment and rating:", correlation)
Correlation between sentiment and rating: 0.1421363898862226
import pandas as pd

# Save DataFrame to CSV
df.to_csv("df.csv", index=False)

Task 3

Perform any type of topic modeling on the comments. What are the main topics of the comments? How can you use those topics to understand what people value?

import pandas as pd
from langdetect import detect, DetectorFactory

DetectorFactory.seed = 0  # Ensures consistent results

# Load the CSV file
file_path = "G:/My Drive/MSSA60250 Unstructured Seth/unstructured_notes/df.csv"
df = pd.read_csv(file_path)

# Function to detect language
def is_german(text):
    try:
        return detect(text) == "de"
    except:
        return False  # In case of errors

# Apply to all text columns and drop German rows
df_cleaned = df[~df.astype(str).applymap(is_german).any(axis=1)]
C:\Users\pauly\AppData\Local\Temp\ipykernel_42040\2158628715.py:18: FutureWarning:

DataFrame.applymap has been deprecated. Use DataFrame.map instead.
import re
from sklearn.decomposition import LatentDirichletAllocation
from sklearn.feature_extraction.text import CountVectorizer

# Sample data
documents = df_cleaned['comment']  # Assuming df is your DataFrame and 'comment' is the column with text

# Function to preprocess the text by removing numbers
def preprocess_text(text):
    # Remove numbers and any unwanted characters (e.g., special characters)
    text = re.sub(r'\d+', '', text)  # Remove digits
    text = re.sub(r'[^\w\s]', '', text)  # Remove punctuation
    text = text.lower()  # Optional: Convert to lowercase
    return text

# Apply preprocessing to the documents
documents_clean = documents.apply(preprocess_text)

# Vectorize the documents with CountVectorizer (exclude numbers and other unwanted tokens)
vectorizer = CountVectorizer(max_df=0.95, min_df=2, stop_words='english')
dtm = vectorizer.fit_transform(documents_clean)

# Fit the LDA model
lda = LatentDirichletAllocation(n_components=5, random_state=0)
lda.fit(dtm)

# Function to display topics
def display_topics(model, feature_names, no_top_words):
    for topic_idx, topic in enumerate(model.components_):
        print(f"Topic {topic_idx}:")
        # Display the top words for each topic
        print(" ".join([feature_names[i] for i in topic.argsort()[:-no_top_words - 1:-1]]))

# Display the topics
display_topics(lda, vectorizer.get_feature_names_out(), 10)
Topic 0:
best wrestler matches wrestling time world great wwe wrestlers match
Topic 1:
matches wrestling hes like match wrestler just time best great
Topic 2:
good great wrestler shes best like just wwe wrestling match
Topic 3:
hes great ring time good matches work best just like
Topic 4:
wrestling greatest time wrestler flair best world matches professional ric

Main Topics: Best, Time, Great, Wrestling, Wrester

Fans on the site value greatness in wrestlers, with a focus on who is the “best” over time. They discuss wrestlers’ legacies, careers, and compare top talents from different eras, showing a deep appreciation for wrestling’s history and the athletes who define it.